diff --git a/.RDataTmp b/.RDataTmp
new file mode 100644
index 00000000..3e6d77c5
Binary files /dev/null and b/.RDataTmp differ
diff --git a/.RDataTmp1 b/.RDataTmp1
new file mode 100644
index 00000000..12959759
Binary files /dev/null and b/.RDataTmp1 differ
diff --git a/.gitignore b/.gitignore
index 5b6a0652..d48a9155 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,7 @@
.Rhistory
.RData
.Ruserdata
+.positai
+
+/.quarto/
+**/*.quarto_ipynb
diff --git a/DannyDataBranch_Flood_Mask/new - Copy_DMARX_6_14_2026_1909.qmd b/DannyDataBranch_Flood_Mask/new - Copy_DMARX_6_14_2026_1909.qmd
new file mode 100644
index 00000000..06925dde
--- /dev/null
+++ b/DannyDataBranch_Flood_Mask/new - Copy_DMARX_6_14_2026_1909.qmd
@@ -0,0 +1,279 @@
+---
+title: "Green Space Landscape Metrics"
+author: "Hassan, Danny and Akhil"
+format: html
+editor: visual
+---
+
+# Step 1. Load packages and data
+
+```{r}
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+green <- rast(
+ "D:/ARFW0501/newest/Data/green_binary_local_v2.tif")
+# Step 1 - change this line:
+
+grid <- st_read(
+ "D:/ARFW0501/newest/Data/grid.gpkg",
+ quiet = TRUE
+)
+
+plot(green)
+plot(st_geometry(grid), add = TRUE)
+```
+
+# Step 2. Test one grid cell
+
+```{r}
+test_cell <- vect(grid[500, ])
+
+green_test <- crop(green, test_cell)
+
+green_test <- mask(green_test, test_cell)
+
+plot(green_test)
+
+```
+
+# Step 3. Calculate landscape metrics one grid cell
+
+```{r}
+lsm_p_area(green_test)
+lsm_p_gyrate(green_test)
+lsm_p_contig(green_test)
+lsm_p_enn(green_test)
+lsm_p_PROX(green_test)
+
+```
+
+# Step 4. Calculate metrics for all grid cells
+
+```{r}
+results <- data.frame(id = grid$id)
+
+results$area <- NA
+results$gyrate <- NA
+results$contig <- NA
+results$enn <- NA
+results$prox <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ results$area[i] <- mean(lsm_p_area(green_cell)$value[lsm_p_area(green_cell)$class == 1], na.rm = TRUE)
+
+ results$gyrate[i] <- mean(lsm_p_gyrate(green_cell)$value[lsm_p_gyrate(green_cell)$class == 1], na.rm = TRUE)
+
+ results$contig[i] <- mean(lsm_p_contig(green_cell)$value[lsm_p_contig(green_cell)$class == 1], na.rm = TRUE)
+
+ results$enn[i] <- mean(lsm_p_enn(green_cell)$value[lsm_p_enn(green_cell)$class == 1], na.rm = TRUE)
+
+ results$prox[i] <- mean(lsm_p_prox(green_cell)$value[lsm_p_prox(green_cell)$class == 1], na.rm = TRUE)
+}
+
+head(results)
+```
+
+# Step 5. Join metrics to grid
+
+```{r}
+grid_metrics <- merge(
+ grid,
+ results,
+ by = "id"
+)
+```
+
+# Step 6. contitguity
+
+```{r}
+plot(grid_metrics["area"], main = "Mean Patch Area")
+
+```
+
+# Step 7. Division
+
+```{r}
+plot(grid_metrics["gyrate"], main = "Mean Radius of Gyration")
+
+```
+
+# Step 8. Aggregation index
+
+```{r}
+plot(grid_metrics["contig"], main = "Mean Contiguity Index")
+
+```
+
+# Step 9. Mesh
+
+```{r}
+plot(grid_metrics["enn"], main = "Mean Nearest-Neighbor Distance")
+
+```
+
+# Step 10. Mean patch area
+
+```{r}
+plot(grid_metrics["prox"], main = "Mean Proximity Index")
+
+```
+
+# Step 11. Load flood raster
+
+```{r}
+file.exists("D:/ARFW0501/Delft_Sentinel/Afterminusbefore_floodmask_Delft_28992.tif")
+# 1. Check file size - if near 0 bytes it's empty
+file.info("D:/ARFW0501/Delft_Sentinel/Afterminusbefore_floodmask_Delft_28992.tif")$size
+
+# 2. Try with GDAL info directly
+library(terra)
+describe("D:/ARFW0501/Delft_Sentinel/Afterminusbefore_floodmask_Delft_28992.tif")
+flood <- rast(
+ "D:/ARFW0501/Delft_Sentinel/Afterminusbefore_floodmask_Delft_28992.tif"
+)
+
+# Check it loaded correctly
+plot(flood, main = "Flood change mask (1 = newly flooded)")
+flood # print metadata - check CRS and resolution match green
+```
+
+# Step 12. Align flood raster to green raster CRS
+
+```{r}
+# Only reproject if CRS does not match - check first
+crs(flood) == crs(green)
+
+# If FALSE, reproject:
+#flood <- project(flood, green)
+```
+
+# Step 13. Extract flood metrics per grid cell
+
+```{r}
+
+# Step 1: Snap flood to green raster grid exactly
+flood_aligned <- resample(flood, green, method = "near")
+
+# Step 2: Classify with NaN handled
+flood_binary <- classify(flood_aligned,
+ rbind(c(-Inf, 0.05, 0),
+ c(0.05, Inf, 1)),
+ others = NA)
+
+# Compare extents
+ext(flood_binary)
+ext(grid)
+
+# Plot both to see if they overlap
+plot(flood_binary, main = "Flood Binary Mask with Grid Overlay (Delft)")
+plot(st_geometry(grid), add = TRUE)
+
+# Step 3: Confirm - should show only 0 and 1
+freq(flood_binary)
+unique(values(flood_binary))
+
+# Set up results data frame
+flood_results <- data.frame(id = grid$id)
+flood_results$pland_flood <- NA
+flood_results$np_flood <- NA
+flood_results$cohesion <- NA
+flood_results$clumpy <- NA
+flood_results$division <- NA
+flood_results$lpi <- NA
+
+for (i in 1:nrow(grid)) {
+ tryCatch({
+ cell <- vect(grid[i, ])
+ flood_cell <- crop(flood_binary, cell)
+ flood_cell <- mask(flood_cell, cell)
+
+ vals <- na.omit(values(flood_cell))
+ if (length(vals) == 0 || length(unique(vals)) < 2) next
+
+ pland <- lsm_c_pland(flood_cell)
+ np <- lsm_c_np(flood_cell)
+ coh <- lsm_c_cohesion(flood_cell)
+ clumpy <- lsm_c_clumpy(flood_cell)
+ division <- lsm_l_division(flood_cell)
+ lpi <- lsm_c_lpi(flood_cell)
+
+ if (nrow(pland[pland$class == 1,]) > 0)
+ flood_results$pland_flood[i] <- pland$value[pland$class == 1]
+ if (nrow(np[np$class == 1,]) > 0)
+ flood_results$np_flood[i] <- np$value[np$class == 1]
+ if (nrow(coh[coh$class == 1,]) > 0)
+ flood_results$cohesion[i] <- coh$value[coh$class == 1]
+ if (nrow(clumpy[clumpy$class == 1,]) > 0)
+ flood_results$clumpy[i] <- clumpy$value[clumpy$class == 1]
+ if (nrow(division) > 0)
+ flood_results$division[i] <- division$value
+ if (nrow(lpi[lpi$class == 1,]) > 0)
+ flood_results$lpi[i] <- lpi$value[lpi$class == 1]
+
+ }, error = function(e) {
+ message("Skipping cell ", i, ": ", e$message)
+ })
+}
+
+print(flood_results)
+
+# Check how many cells actually have flooding
+sum(!is.na(flood_results$pland_flood))
+
+# Join green metrics + flood metrics (grid_metrics must exist from Step 5)
+grid_full <- merge(grid_metrics, flood_results, by = "id")
+
+# Count cells with both green and flood values
+sum(!is.na(grid_full$contig) & !is.na(grid_full$pland_flood))
+sum(!is.na(grid_full$area) & !is.na(grid_full$pland_flood))
+
+# Plots
+par(mfrow = c(2, 3))
+plot(grid_full["pland_flood"], main = "% Cell Flooded (pland)")
+plot(grid_full["np_flood"], main = "Number of Flood Patches")
+plot(grid_full["cohesion"], main = "Flood Patch Cohesion")
+plot(grid_full["clumpy"], main = "Flood Clumpiness")
+plot(grid_full["division"], main = "Landscape Division")
+plot(grid_full["lpi"], main = "Largest Flood Patch Index")
+par(mfrow = c(1, 1))
+
+# Save outputs
+st_write(grid_full,
+ "D:/ARFW0501/Delft_Sentinel/grid_full_metrics.gpkg",
+ delete_if_exists = TRUE)
+
+writeRaster(flood_binary,
+ "D:/ARFW0501/Delft_Sentinel/flood_binary_delft.tif",
+ overwrite = TRUE)
+```
+
+# Step 14. Join flood metrics to green metrics
+
+```{}
+```
+
+# Step 15. Correlate green configuration vs flood extent
+
+```{r}
+cor.test(grid_full$contig, grid_full$pland_flood, use = "complete.obs")
+cor.test(grid_full$enn, grid_full$pland_flood, use = "complete.obs")
+cor.test(grid_full$prox, grid_full$pland_flood, use = "complete.obs")
+cor.test(grid_full$area, grid_full$pland_flood, use = "complete.obs")
+```
+
+# Step 16. Plot: green contiguity vs flood extent
+
+```{r}
+plot(grid_full$contig, grid_full$pland_flood,
+ xlab = "Mean Green Contiguity",
+ ylab = "% Cell Flooded",
+ main = "Green contiguity vs flood extent per cell (Delft)")
+```
diff --git a/HassanScripts/DELFT_Hassan.qmd b/HassanScripts/DELFT_Hassan.qmd
new file mode 100644
index 00000000..c543df80
--- /dev/null
+++ b/HassanScripts/DELFT_Hassan.qmd
@@ -0,0 +1,303 @@
+---
+title: "Green Space Landscape Metrics"
+author: "Hassan, Danny and Akhil"
+format: html
+editor: visual
+---
+
+# Step 1. Load packages and data
+
+```{r}
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+green <- rast(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/delft_green_binary_compressed_new.tif"
+)
+
+grid <- st_read(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/grid_10000x10000_delft.gpkg",
+ quiet = TRUE
+)
+
+plot(green)
+plot(st_geometry(grid), add = TRUE)
+```
+
+# Step 2. Test one grid cell
+
+```{r}
+test_cell <- vect(grid[500, ])
+
+green_test <- crop(green, test_cell)
+
+green_test <- mask(green_test, test_cell)
+
+plot(green_test)
+
+```
+
+# Step 3. Calculate landscape metrics one grid cell
+
+- **Largest Patch Index (LPI):** Measures how much of the landscape is occupied by the largest green patch.
+
+
+
+- **Division Index:** Measures how fragmented the green space is, with higher values indicating greater fragmentation.
+
+
+
+- **Aggregation Index (AI):** Measures how clustered and connected green patches are across the landscape.
+
+
+
+- **Effective Mesh Size (MESH):** Measures the degree of landscape connectivity by estimating the size of connected green areas.
+
+
+
+- **Mean Patch Area (AREA_MN):** Measures the average size of green patches within the grid cell.
+
+
+
+- **Patch Area (AREA):** Measures the size of each individual green patch.
+
+
+
+- **Radius of Gyration (GYRATE):** Measures how far a patch extends from its centre, indicating its spatial reach.
+
+
+
+- **Contiguity Index (CONTIG):** Measures how internally connected and continuous a patch is.
+
+
+
+- **Euclidean Nearest Neighbour Distance (ENN):** Measures the distance to the nearest neighbouring green patch, indicating patch isolation.
+
+```{r}
+lsm_c_lpi(green_test)
+lsm_c_division(green_test)
+lsm_c_ai(green_test)
+lsm_c_mesh(green_test)
+lsm_c_area_mn(green_test)
+
+lsm_p_area(green_test)
+lsm_p_gyrate(green_test)
+lsm_p_contig(green_test)
+lsm_p_enn(green_test)
+
+```
+
+# Step 4.1 Calculate metrics for all grid cells
+
+```{r}
+
+results_class <- data.frame(id = grid$id)
+
+results_class$lpi <- NA
+results_class$division <- NA
+results_class$ai <- NA
+results_class$mesh <- NA
+results_class$area_mn <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ results_class$lpi[i] <- lsm_c_lpi(green_cell)$value[1]
+ results_class$division[i] <- lsm_c_division(green_cell)$value[1]
+ results_class$ai[i] <- lsm_c_ai(green_cell)$value[1]
+ results_class$mesh[i] <- lsm_c_mesh(green_cell)$value[1]
+ results_class$area_mn[i] <- lsm_c_area_mn(green_cell)$value[1]
+}
+
+head(results_class)
+```
+
+# Step 4.2 Calculate metrics for all grid cells
+
+```{r}
+results_patch <- data.frame(id = grid$id)
+
+results_patch$area <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ area <- lsm_p_area(green_cell)
+
+ results_patch$area[i] <- mean(area$value[area$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 4.3 radius of gyration
+
+```{r}
+results_patch$gyrate <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ gyrate <- lsm_p_gyrate(green_cell)
+
+ results_patch$gyrate[i] <- mean(gyrate$value[gyrate$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 4.4 contiguity index
+
+```{r}
+results_patch$contig <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ contig <- lsm_p_contig(green_cell)
+
+ results_patch$contig[i] <- mean(contig$value[contig$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 4.5 nearest neighbor distance
+
+```{r}
+results_patch$enn <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ enn <- lsm_p_enn(green_cell)
+
+ results_patch$enn[i] <- mean(enn$value[enn$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 5.1 Combine class and patch metrics
+
+```{r}
+results <- merge(
+ results_class,
+ results_patch,
+ by = "id"
+)
+
+head(results)
+```
+
+# Step 5.2 Join metrics to grid
+
+```{r}
+grid_metrics <- merge(
+ grid,
+ results,
+ by = "id"
+)
+```
+
+# Step 5.3 Load/calculate FWEI change
+
+```{r}
+fwei_before <- rast(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/wetransfer_fwei_7_22_2023_xian-tif_2026-06-10_1523/CLIPPED_28992_FWEI_6_14_2023_Delft.tif"
+)
+
+fwei_after <- rast(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/wetransfer_fwei_7_22_2023_xian-tif_2026-06-10_1523/CLIPPED_28992_FWEI_9_7_2023_Delft.tif"
+)
+
+fwei_change <- fwei_after - fwei_before
+
+plot(fwei_change, main = "FWEI Change Delft")
+```
+
+#
+
+# Step 5.4 extract FWEI to grid
+
+```{r}
+fwei_mean <- terra::extract(
+ fwei_change,
+ vect(grid),
+ fun = mean,
+ na.rm = TRUE
+)
+
+names(fwei_mean)[2] <- "fwei_change_mean"
+
+head(fwei_mean)
+```
+
+#
+
+# Step 5.5 Join FWEI to metrics
+
+```{r}
+grid_metrics$fwei_change_mean <- fwei_mean$fwei_change_mean
+
+head(grid_metrics)
+```
+
+#
+
+# Step 6. plotting
+
+```{r}
+plot(grid_metrics["lpi"], main = "Largest Patch Index")
+plot(grid_metrics["division"], main = "Division Index")
+plot(grid_metrics["ai"], main = "Aggregation Index")
+plot(grid_metrics["mesh"], main = "Effective Mesh Size")
+plot(grid_metrics["area_mn"], main = "Mean Patch Area")
+plot(grid_metrics["area"], main = "Patch Area")
+
+```
+
+#
+
+# Step 7 corelation
+
+| Metric | Correlation |
+|----------|-------------|
+| LPI | -0.224 |
+| Division | +0.227 |
+| AI | -0.246 |
+| Mesh | -0.227 |
+| Area_MN | -0.187 |
+| Area | +0.112 |
+
+```{r}
+cor(grid_metrics$lpi, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$division, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$ai, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$mesh, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$area_mn, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$area, grid_metrics$fwei_change_mean, use = "complete.obs")
+```
+
+More fragmentation → more flooding
+
+More connectivity → less flooding
+
+Larger patches → less flooding
diff --git a/HassanScripts/XIAN_Hassan.qmd b/HassanScripts/XIAN_Hassan.qmd
new file mode 100644
index 00000000..26580523
--- /dev/null
+++ b/HassanScripts/XIAN_Hassan.qmd
@@ -0,0 +1,297 @@
+---
+title: "Green Space Landscape Metrics"
+author: "Hassan, Danny and Akhil"
+format: html
+editor: visual
+---
+
+# Step 1. Load packages and data
+
+```{r}
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+green <- rast(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/xian/UGS-1m/reprojected_green_cropped_xian_binary.tif"
+)
+
+grid <- st_read(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/grid_10000x10000_xian.gpkg",
+ quiet = TRUE
+)
+
+plot(green)
+plot(st_geometry(grid), add = TRUE)
+```
+
+# Step 2. Test one grid cell
+
+```{r}
+test_cell <- vect(grid[500, ])
+
+green_test <- crop(green, test_cell)
+
+green_test <- mask(green_test, test_cell)
+
+plot(green_test)
+
+```
+
+# Step 3. Calculate landscape metrics one grid cell
+
+- **Largest Patch Index (LPI):** Measures how much of the landscape is occupied by the largest green patch.
+
+
+
+- **Division Index:** Measures how fragmented the green space is, with higher values indicating greater fragmentation.
+
+
+
+- **Aggregation Index (AI):** Measures how clustered and connected green patches are across the landscape.
+
+
+
+- **Effective Mesh Size (MESH):** Measures the degree of landscape connectivity by estimating the size of connected green areas.
+
+
+
+- **Mean Patch Area (AREA_MN):** Measures the average size of green patches within the grid cell.
+
+
+
+- **Patch Area (AREA):** Measures the size of each individual green patch.
+
+
+
+- **Radius of Gyration (GYRATE):** Measures how far a patch extends from its centre, indicating its spatial reach.
+
+
+
+- **Contiguity Index (CONTIG):** Measures how internally connected and continuous a patch is.
+
+
+
+- **Euclidean Nearest Neighbour Distance (ENN):** Measures the distance to the nearest neighbouring green patch, indicating patch isolation.
+
+```{r}
+lsm_c_lpi(green_test)
+lsm_c_division(green_test)
+lsm_c_ai(green_test)
+lsm_c_mesh(green_test)
+lsm_c_area_mn(green_test)
+
+lsm_p_area(green_test)
+lsm_p_gyrate(green_test)
+lsm_p_contig(green_test)
+lsm_p_enn(green_test)
+
+```
+
+# Step 4.1 Calculate metrics for all grid cells
+
+```{r}
+
+results_class <- data.frame(id = grid$id)
+
+results_class$lpi <- NA
+results_class$division <- NA
+results_class$ai <- NA
+results_class$mesh <- NA
+results_class$area_mn <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ results_class$lpi[i] <- lsm_c_lpi(green_cell)$value[1]
+ results_class$division[i] <- lsm_c_division(green_cell)$value[1]
+ results_class$ai[i] <- lsm_c_ai(green_cell)$value[1]
+ results_class$mesh[i] <- lsm_c_mesh(green_cell)$value[1]
+ results_class$area_mn[i] <- lsm_c_area_mn(green_cell)$value[1]
+}
+
+head(results_class)
+```
+
+# Step 4.2 Calculate metrics for all grid cells
+
+```{r}
+results_patch <- data.frame(id = grid$id)
+
+results_patch$area <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ area <- lsm_p_area(green_cell)
+
+ results_patch$area[i] <- mean(area$value[area$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 4.3 radius of gyration
+
+```{r}
+results_patch$gyrate <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ gyrate <- lsm_p_gyrate(green_cell)
+
+ results_patch$gyrate[i] <- mean(gyrate$value[gyrate$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 4.4 contiguity index
+
+```{r}
+results_patch$contig <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ contig <- lsm_p_contig(green_cell)
+
+ results_patch$contig[i] <- mean(contig$value[contig$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 4.5 nearest neighbor distance
+
+```{r}
+results_patch$enn <- NA
+
+for (i in 1:nrow(grid)) {
+
+ cell <- vect(grid[i, ])
+ green_cell <- crop(green, cell)
+ green_cell <- mask(green_cell, cell)
+
+ enn <- lsm_p_enn(green_cell)
+
+ results_patch$enn[i] <- mean(enn$value[enn$class == 1], na.rm = TRUE)
+}
+
+head(results_patch)
+```
+
+# Step 5.1 Combine class and patch metrics
+
+```{r}
+results <- merge(
+ results_class,
+ results_patch,
+ by = "id"
+)
+
+head(results)
+```
+
+# Step 5.2 Join metrics to grid
+
+```{r}
+grid_metrics <- merge(
+ grid,
+ results,
+ by = "id"
+)
+```
+
+# Step 5.3 Load/calculate FWEI change
+
+```{r}
+fwei_before <- rast(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/wetransfer_fwei_7_22_2023_xian-tif_2026-06-10_1523/CLIPPED_FWEI_7_22_2023_Xian.tif"
+)
+
+fwei_after <- rast(
+ "D:/Documents/TU Delft/GEOMATICS/spatial/week 5/Data/qgis/wetransfer_fwei_7_22_2023_xian-tif_2026-06-10_1523/CLIPPED_FWEI_8_16_2023_Xian.tif"
+)
+
+fwei_change <- fwei_after - fwei_before
+
+plot(fwei_change, main = "FWEI Change Xian")
+```
+
+#
+
+# Step 5.4 extract FWEI to grid
+
+```{r}
+fwei_mean <- terra::extract(
+ fwei_change,
+ vect(grid),
+ fun = mean,
+ na.rm = TRUE
+)
+
+names(fwei_mean)[2] <- "fwei_change_mean"
+
+head(fwei_mean)
+```
+
+#
+
+# Step 5.5 Join FWEI to metrics
+
+```{r}
+grid_metrics$fwei_change_mean <- fwei_mean$fwei_change_mean
+
+head(grid_metrics)
+```
+
+#
+
+# Step 6. plotting
+
+```{r}
+plot(grid_metrics["lpi"], main = "Largest Patch Index")
+plot(grid_metrics["division"], main = "Division Index")
+plot(grid_metrics["ai"], main = "Aggregation Index")
+plot(grid_metrics["mesh"], main = "Effective Mesh Size")
+plot(grid_metrics["area_mn"], main = "Mean Patch Area")
+plot(grid_metrics["area"], main = "Patch Area")
+
+```
+
+#
+
+# Step 7 corelation
+
+| Metric | Correlation |
+|----------|-------------|
+| LPI | -0.106 |
+| Division | +0.099 |
+| AI | -0.081 |
+| Mesh | -0.099 |
+| Area_MN | -0.089 |
+| Area | +0.111 |
+
+```{r}
+cor(grid_metrics$lpi, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$division, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$ai, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$mesh, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$area_mn, grid_metrics$fwei_change_mean, use = "complete.obs")
+cor(grid_metrics$area, grid_metrics$fwei_change_mean, use = "complete.obs")
+```
diff --git a/README.md b/README.md
index f443a2dd..ee5aa893 100644
--- a/README.md
+++ b/README.md
@@ -1,36 +1,127 @@
-# Report template for the Applied Spatial Analytics 2026 course
+# Green Space Configuration and Pluvial Flooding
-This is a template repository used as a starting point for the group
-reports produced in the Applied Spatial Analytics 2025 course at
-TU Delft.
+## Comparing Delft and Xi’an using FWEI derived flood indicators and landscape metrics
-By starting this assignment in GitHub Classroom, you created a copy
-of this repository that you have write access to. You will continue to
-work on your report in that repository throughout the quarter. A great
-way to practice and apply what you learned in the "Intro to Git and GitHub"
-assignment!
+CC BY 4.0
-### Getting started with the report
+The report of this project is available online:
-1. In RStudio, create a new project from version control. Use the
- URL of your repository to clone it.
-
-2. To start working on the report, open the `report.qmd` file, add the
- names of your group members, and press on the "Render" button. Next,
- stage and commit all changed files and push them to GitHub. You will
- follow this **stage -> commit -> push** workflow every time you make a
- change.
+https://applied-spatial-analytics.github.io/create-your-report-groupc/
-### Feedback
+## Context
-In the **Pull requests** section of your repository, you will find a
-**Feedback** pull request. We will use this pull request to provide
-feedback on your report throughout the quarter. You can also use this
-pull request to ask questions about the feedback.
+Urban green space is often discussed as a way to reduce pluvial flood risk. However, the relationship between green space and flooding does not only depend on the total amount of green area. The spatial configuration of green space, such as patch size, compactness, connectivity, and fragmentation, may also influence how surface water appears across an urban landscape.
-### Asking for help
+This project investigates this relationship by comparing Delft, the Netherlands, and Xi’an, China. The two cities represent different urban and environmental contexts. Xi’an was analysed around a pluvial flood event in August 2023, while Delft was used as a non-event comparison case. Because directly comparable pluvial flood-depth maps were not available for both cities, the project used the Flood/Water Extraction Index (FWEI) as a shared proxy for detected surface-water change.
-If you have questions about the assignment, please ask them in
-[Discussions](https://github.com/sdgis-edu-tud/asa2025/discussions).
+Both cities were analysed within a 10 km by 10 km study area using a shared grid-based workflow. Green-space metrics, FWEI-derived flood indicators, and Digital Elevation Model (DEM) variables were calculated per 100 m grid cell. These metrics were then used for correlation analysis, metric selection, and combined typology construction.
+## Research Questions
+**Main question:**
+How does the spatial configuration of green spaces influence pluvial flooding in urban areas such as Delft and Xi’an?
+
+**Sub-questions:**
+
+1. How can green-space configuration and flood-related surface-water patterns be measured and compared between Delft and Xi’an?
+
+2. What spatial patterns can be identified when green-space, flood-related, and topographic indicators are combined?
+
+3. How do the identified patterns differ between Delft and Xi’an, and what do they suggest for urban flood-related planning?
+
+## Analysis Method
+
+The analysis used a grid-based spatial workflow. Each city was represented by a 10 km by 10 km study area divided into 100 m by 100 m grid cells.
+
+The main steps were:
+
+1. Prepare and clip the input datasets for Delft and Xi’an.
+2. Convert green-space layers into binary green rasters.
+3. Calculate FWEI before-and-after rasters from Sentinel-2 imagery.
+4. Derive continuous FWEI change and binary flood masks.
+5. Calculate green-space, flood-pattern, and DEM variables per grid cell.
+6. Check metric redundancy and select a final metric set.
+7. Run correlation analysis between green-space metrics and flood indicators.
+8. Construct a shared green+flood+DEM typology using k-means clustering.
+9. Render the final report with Quarto.
+
+## Authors
+
+| Name | Student number | Institution | Email |
+| -------------- | -------------: | ----------------------- | --------------------------------------------------------------------- |
+| Hassan Osman | 5169550 | TU Delft, MSc Geomatics | [H.Osman@student.tudelft.nl](mailto:H.Osman@student.tudelft.nl) |
+| Akhil Veeranki | 6305105 | TU Delft, MSc Geomatics | [A.veeranki@student.tudelft.nl](mailto:A.veeranki@student.tudelft.nl) |
+| Daniel Marx | 4624475 | TU Delft, MSc Geomatics | [d.marx@student.tudelft.nl](mailto:d.marx@student.tudelft.nl) |
+
+## Repository Structure
+
+```text
+.
+├── .github/ # GitHub Classroom and workflow files
+├── data/ # Data folders used by the scripts
+│ ├── context/ # Context layers used for mapping
+│ ├── processed/ # Processed input files needed for the R scripts
+│ └── results/ # Output tables, metric files, and typology layers
+├── docs/ # Rendered Quarto website
+├── figures/ # Figures used in the report
+│ ├── discussion/
+│ ├── preliminary/
+│ └── results/
+├── sections/ # Quarto report chapters
+├── src/ # Main R scripts
+│ ├── 01_green_metrics_delft.R
+│ ├── 02_green_metrics_xian.R
+│ ├── 03_make_maps_and_plots.R
+│ ├── 04_metric_redundancy_check.R
+│ └── 05_shared_combined_typologies.R
+├── index.qmd # Report landing page
+├── references.bib # References
+├── _quarto.yml # Quarto settings
+├── README.md
+└── report.qmd
+```
+
+## Data
+
+The data needed to run the scripts are available in the project SURFdrive folder:
+
+https://surfdrive.surf.nl/s/aqgEpftfT7bXpX4?dir=%2Fgroup-c
+
+The processed input files should be placed in the same folder structure as used in the repository, especially:
+
+```text
+data/processed/
+data/context/
+```
+
+The scripts write their outputs to:
+
+```text
+data/results/
+figures/results/
+```
+
+## Software
+
+Software used during the project:
+
+* QGIS 3.x for data preparation, FWEI calculation, raster clipping, flood-mask creation, and visual checks.
+* R 4.5.3 for metric calculation, correlation analysis, typology construction, and map/plot generation.
+* Quarto 1.x for rendering the report.
+* GitHub Pages for publishing the rendered report.
+
+Main R packages:
+
+```text
+terra
+sf
+landscapemetrics
+dplyr
+readr
+ggplot2
+grid
+```
+
+## License
+
+This work is licensed under a Creative Commons Attribution 4.0 International License.
diff --git a/_quarto.yml b/_quarto.yml
new file mode 100644
index 00000000..8d5d333d
--- /dev/null
+++ b/_quarto.yml
@@ -0,0 +1,46 @@
+project:
+ type: book
+ output-dir: docs
+
+book:
+ author:
+ - name: "Hassan Osman"
+ affiliation: "MSc Geomatics"
+ - name: "Akhil Veeranki"
+ affiliation: "MSc Geomatics"
+ - name: "Daniel Marx"
+ affiliation: "MSc Geomatics"
+
+ repo-url: https://github.com/Applied-Spatial-Analytics/create-your-report-groupc.git
+ repo-actions: [edit, source, issue]
+
+ title: "Green Space Configuration and Pluvial Flooding"
+ subtitle: "A comparative spatial analysis of Delft and Xi’an"
+ date: today
+
+ chapters:
+ - index.qmd
+ - sections/problem_statement.qmd
+ - sections/preliminary.qmd
+ - sections/methods.qmd
+ - sections/metrics.qmd
+ - sections/typology.qmd
+ - sections/discussion.qmd
+ - sections/conclusion.qmd
+ - sections/reproducibility_statement.qmd
+ - sections/ai_statement.qmd
+ - sections/references.qmd
+
+ appendices:
+ - sections/appendix.qmd
+
+bibliography: references.bib
+biblio-title: "References"
+nocite: |
+ @*
+
+format:
+ html:
+ toc: true
+ lightbox: true
+ theme: flatly
diff --git a/data/context/delft/delft_buildings.gpkg b/data/context/delft/delft_buildings.gpkg
new file mode 100644
index 00000000..0437adfc
Binary files /dev/null and b/data/context/delft/delft_buildings.gpkg differ
diff --git a/data/context/delft/delft_landuse_grass.gpkg b/data/context/delft/delft_landuse_grass.gpkg
new file mode 100644
index 00000000..3c07e25b
Binary files /dev/null and b/data/context/delft/delft_landuse_grass.gpkg differ
diff --git a/data/context/delft/delft_landuse_greenfield.gpkg b/data/context/delft/delft_landuse_greenfield.gpkg
new file mode 100644
index 00000000..a6e0034d
Binary files /dev/null and b/data/context/delft/delft_landuse_greenfield.gpkg differ
diff --git a/data/context/delft/delft_landuse_meadow.gpkg b/data/context/delft/delft_landuse_meadow.gpkg
new file mode 100644
index 00000000..b039ca8a
Binary files /dev/null and b/data/context/delft/delft_landuse_meadow.gpkg differ
diff --git a/data/context/delft/delft_landuse_residential.gpkg b/data/context/delft/delft_landuse_residential.gpkg
new file mode 100644
index 00000000..ca317f27
Binary files /dev/null and b/data/context/delft/delft_landuse_residential.gpkg differ
diff --git a/data/context/delft/delft_municipality_boundary.gpkg b/data/context/delft/delft_municipality_boundary.gpkg
new file mode 100644
index 00000000..61380d74
Binary files /dev/null and b/data/context/delft/delft_municipality_boundary.gpkg differ
diff --git a/data/context/delft/delft_parks.gpkg b/data/context/delft/delft_parks.gpkg
new file mode 100644
index 00000000..e03826ba
Binary files /dev/null and b/data/context/delft/delft_parks.gpkg differ
diff --git a/data/context/delft/delft_primary_roads.gpkg b/data/context/delft/delft_primary_roads.gpkg
new file mode 100644
index 00000000..34ecc637
Binary files /dev/null and b/data/context/delft/delft_primary_roads.gpkg differ
diff --git a/data/context/delft/delft_secondary_roads.gpkg b/data/context/delft/delft_secondary_roads.gpkg
new file mode 100644
index 00000000..2611ba56
Binary files /dev/null and b/data/context/delft/delft_secondary_roads.gpkg differ
diff --git a/data/context/delft/delft_tertiary_roads.gpkg b/data/context/delft/delft_tertiary_roads.gpkg
new file mode 100644
index 00000000..0b433504
Binary files /dev/null and b/data/context/delft/delft_tertiary_roads.gpkg differ
diff --git a/data/context/delft/delft_tourism_attraction.gpkg b/data/context/delft/delft_tourism_attraction.gpkg
new file mode 100644
index 00000000..0b247a93
Binary files /dev/null and b/data/context/delft/delft_tourism_attraction.gpkg differ
diff --git a/data/context/delft/delft_water.gpkg b/data/context/delft/delft_water.gpkg
new file mode 100644
index 00000000..c724afbb
Binary files /dev/null and b/data/context/delft/delft_water.gpkg differ
diff --git a/data/context/xian/xian_buildings.gpkg b/data/context/xian/xian_buildings.gpkg
new file mode 100644
index 00000000..69ffcc09
Binary files /dev/null and b/data/context/xian/xian_buildings.gpkg differ
diff --git a/data/context/xian/xian_landuse_grass.gpkg b/data/context/xian/xian_landuse_grass.gpkg
new file mode 100644
index 00000000..aad82128
Binary files /dev/null and b/data/context/xian/xian_landuse_grass.gpkg differ
diff --git a/data/context/xian/xian_landuse_greenfield.gpkg b/data/context/xian/xian_landuse_greenfield.gpkg
new file mode 100644
index 00000000..64b4e950
Binary files /dev/null and b/data/context/xian/xian_landuse_greenfield.gpkg differ
diff --git a/data/context/xian/xian_landuse_meadow.gpkg b/data/context/xian/xian_landuse_meadow.gpkg
new file mode 100644
index 00000000..0ad32e52
Binary files /dev/null and b/data/context/xian/xian_landuse_meadow.gpkg differ
diff --git a/data/context/xian/xian_landuse_residential.gpkg b/data/context/xian/xian_landuse_residential.gpkg
new file mode 100644
index 00000000..7b68e30e
Binary files /dev/null and b/data/context/xian/xian_landuse_residential.gpkg differ
diff --git a/data/context/xian/xian_parks.gpkg b/data/context/xian/xian_parks.gpkg
new file mode 100644
index 00000000..f28793c2
Binary files /dev/null and b/data/context/xian/xian_parks.gpkg differ
diff --git a/data/context/xian/xian_primary_roads.gpkg b/data/context/xian/xian_primary_roads.gpkg
new file mode 100644
index 00000000..75056fd8
Binary files /dev/null and b/data/context/xian/xian_primary_roads.gpkg differ
diff --git a/data/context/xian/xian_secondary_roads.gpkg b/data/context/xian/xian_secondary_roads.gpkg
new file mode 100644
index 00000000..689d4b97
Binary files /dev/null and b/data/context/xian/xian_secondary_roads.gpkg differ
diff --git a/data/context/xian/xian_tertiary_roads.gpkg b/data/context/xian/xian_tertiary_roads.gpkg
new file mode 100644
index 00000000..d55b1c30
Binary files /dev/null and b/data/context/xian/xian_tertiary_roads.gpkg differ
diff --git a/data/context/xian/xian_tourism_attraction.gpkg b/data/context/xian/xian_tourism_attraction.gpkg
new file mode 100644
index 00000000..df74a4ac
Binary files /dev/null and b/data/context/xian/xian_tourism_attraction.gpkg differ
diff --git a/data/context/xian/xian_water.gpkg b/data/context/xian/xian_water.gpkg
new file mode 100644
index 00000000..0e4655aa
Binary files /dev/null and b/data/context/xian/xian_water.gpkg differ
diff --git a/data/processed/delft_dem.tif b/data/processed/delft_dem.tif
new file mode 100644
index 00000000..3947880c
Binary files /dev/null and b/data/processed/delft_dem.tif differ
diff --git a/data/processed/delft_dem.tif.aux.xml b/data/processed/delft_dem.tif.aux.xml
new file mode 100644
index 00000000..6fae42fa
--- /dev/null
+++ b/data/processed/delft_dem.tif.aux.xml
@@ -0,0 +1,11 @@
+
+
+
+ -5.8481550216675
+ 19.755783081055
+ -2.0579478815317
+ 1.8878829766351
+ 100
+
+
+
diff --git a/data/processed/delft_fwei_after.tif b/data/processed/delft_fwei_after.tif
new file mode 100644
index 00000000..b65d4134
Binary files /dev/null and b/data/processed/delft_fwei_after.tif differ
diff --git a/data/processed/delft_fwei_before.tif b/data/processed/delft_fwei_before.tif
new file mode 100644
index 00000000..061419cb
Binary files /dev/null and b/data/processed/delft_fwei_before.tif differ
diff --git a/data/processed/delft_green_binary.tif b/data/processed/delft_green_binary.tif
new file mode 100644
index 00000000..d7dc5235
Binary files /dev/null and b/data/processed/delft_green_binary.tif differ
diff --git a/data/processed/delft_grid.gpkg b/data/processed/delft_grid.gpkg
new file mode 100644
index 00000000..3de1a13a
Binary files /dev/null and b/data/processed/delft_grid.gpkg differ
diff --git a/data/processed/xian_dem.tif b/data/processed/xian_dem.tif
new file mode 100644
index 00000000..18f1413c
Binary files /dev/null and b/data/processed/xian_dem.tif differ
diff --git a/data/processed/xian_dem.tif.aux.xml b/data/processed/xian_dem.tif.aux.xml
new file mode 100644
index 00000000..b92fe01c
--- /dev/null
+++ b/data/processed/xian_dem.tif.aux.xml
@@ -0,0 +1,11 @@
+
+
+
+ 381.87280273438
+ 425.2522277832
+ 398.89799854137
+ 7.49920752969
+ 99.44
+
+
+
diff --git a/data/processed/xian_fwei_after.tif b/data/processed/xian_fwei_after.tif
new file mode 100644
index 00000000..efa8754e
Binary files /dev/null and b/data/processed/xian_fwei_after.tif differ
diff --git a/data/processed/xian_fwei_before.tif b/data/processed/xian_fwei_before.tif
new file mode 100644
index 00000000..f1fa7f51
Binary files /dev/null and b/data/processed/xian_fwei_before.tif differ
diff --git a/data/processed/xian_green_binary.tif b/data/processed/xian_green_binary.tif
new file mode 100644
index 00000000..bd098f55
Binary files /dev/null and b/data/processed/xian_green_binary.tif differ
diff --git a/data/processed/xian_grid.gpkg b/data/processed/xian_grid.gpkg
new file mode 100644
index 00000000..8fcf2430
Binary files /dev/null and b/data/processed/xian_grid.gpkg differ
diff --git a/data/results/city_specific_flood_pattern_type_summary.csv b/data/results/city_specific_flood_pattern_type_summary.csv
new file mode 100644
index 00000000..7716f646
--- /dev/null
+++ b/data/results/city_specific_flood_pattern_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,4474,44.74,21.871047337834977,0.09788743136924917,9.681990354537396,0.3259561823273023,18.075058720702792,-0.004269472360214368,0.13098887137378537,13.098887137378538,1.9244523915958873,75.60778070044121,0.8312084941536714,10.965255393736912,20.51258668643775,11.706018967558139,-1.9743549291046205,-2.1952849560906342,0.2897998944869374
+Delft,Type 2,1880,18.8,36.853079507278835,0.2845425321311685,17.151292185327154,0.4813990722590324,16.987925479593915,0.08181404340333444,0.6973656215005599,69.73656215005599,1.4606382978723405,98.28200360530663,0.854134278356701,67.80590005599105,34.10922566090954,14.668376431566603,-2.529015794544567,-2.8407502257690096,0.4013615774343126
+Delft,Type 3,1555,15.55,32.29484684379759,0.10865662495828197,10.205886416371396,0.34759891988730085,15.681082494251763,0.015897770897459133,0.1769614994076832,17.69614994076832,4.828295819935692,76.26148260998757,0.6980557781966729,10.822541885259774,8.289347878578107,1.4932310024641717,-1.0296558204996347,-1.2792451158554108,0.3221116472263334
+Delft,Type 4,2091,20.91,8.499383322006596,0.06128245228502339,6.811897762101188,0.23458353663665366,21.60694352051927,-0.05548195451961973,3.4804550831886026e-4,0.03480455083188603,0.1291248206599713,1.352466524033474,0.24422494219448493,0.030380830124090714,17.10277763393754,16.579253801386407,-2.5728020400930323,-2.72606820194162,0.20376074696033214
+Xi'an,Type 1,1472,14.719999999999999,24.642023684963267,0.19482173117695087,17.094320053037194,0.5906351861623295,23.030534878006776,-0.008364529102704726,0.001121475569564297,0.1121475569564297,0.35905349794238683,2.5710281837523676,0.23029864553716056,0.08280115787447095,32.688557083869824,30.13306975553906,393.5891424983308,393.20115394177645,0.4752586170438433
+Xi'an,Type 2,3312,33.12,26.66185456729161,0.16011345620510797,16.136662980361397,0.566792623970071,22.78638900694403,0.02850375553034123,0.18717040143147806,18.717040143147806,4.965277777777778,77.93156528676494,0.6962741306762512,11.268386538626114,19.369993389055953,4.322790608457896,400.7984997773772,400.35880727353305,0.5494708733811554
+Xi'an,Type 3,3884,38.84,23.18220143154243,0.16555005794968586,15.948590207743218,0.5697872621973847,24.70640913985096,0.01343166009963143,0.06920715533877334,6.920715533877333,2.292996910401648,64.40489637478437,0.750677114367105,5.416969055122403,24.37152463715668,13.047928650887444,398.73238686852847,398.30525548524395,0.5426064232056446
+Xi'an,Type 4,1332,13.320000000000002,47.73835504479549,0.3577924996534019,22.926695940577943,0.6818349909904629,21.660979958668122,0.05849596963336178,0.544951996086576,54.49519960865759,2.2072072072072073,96.13680948642381,0.8103051055882119,49.217602528659775,10.368680214544325,1.2629104505430109,400.4082948864799,399.80749147432346,0.7486661715785221
diff --git a/data/results/city_specific_green_type_summary.csv b/data/results/city_specific_green_type_summary.csv
new file mode 100644
index 00000000..540e671e
--- /dev/null
+++ b/data/results/city_specific_green_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,4659,46.589999999999996,14.174145118107567,0.024382785276436277,5.136043969583936,0.21245387515110123,19.76684979175084,-0.0012100718201271314,0.13059847380847484,13.059847380847483,2.1538956857694784,71.02835260155476,0.7837875314492618,10.896061386563641,11.887299712013029,3.0830344021503366,-1.7981607243457025,-1.9920050275688599,0.2570757543361416
+Delft,Type 2,691,6.909999999999999,79.297813999543,0.7594717800289436,35.69726732840829,0.8551376527297989,11.095223110273244,0.03122786043983186,0.4615816132226369,46.15816132226369,1.903039073806078,91.07862105883429,0.817412111127369,42.84113413055069,1.3903519586864999,0.04960353809660203,-1.657556602561801,-2.086423470424099,0.5294080219808426
+Delft,Type 3,2408,24.08,47.17251158419304,0.1753277936130407,16.265532706536174,0.5101631886235661,14.613534522655959,0.0182783159236101,0.30759420353208605,30.759420353208604,2.409468438538206,85.31347305290888,0.8106371782188789,26.68356028151775,4.797286563957663,0.691593481365003,-1.6697334769208472,-2.0005504206271394,0.4280217634844734
+Delft,Type 4,2242,22.42,0.31311916052396827,0.006474788962894499,2.254262476364133,0.10148751087805852,11.784639551231303,-0.007376388311467829,0.22519912906709236,22.519912906709234,0.8840321141837645,84.76722136669802,0.8774431318407614,21.768169867129913,87.08984754897966,55.14087296982682,-3.1333349124652488,-3.2613535365895645,0.17121255028127144
+Xi'an,Type 1,3096,30.959999999999997,17.627320257753727,0.057452242411396216,9.851559375807858,0.44914659822502234,29.76817233974176,0.021986047896180694,0.14728268020017862,14.728268020017863,3.228542578256479,71.7082494755896,0.7308937939822878,10.520177039171829,17.33630519008574,4.301056143826742,399.56134982202167,399.15416023589535,0.5180878958538804
+Xi'an,Type 2,1702,17.02,0.4868054854806631,0.012139687160726222,4.285224697740326,0.25282875972413116,14.448098144719536,0.017956608116415522,0.08857337408704048,8.857337408704048,2.614856429463171,62.88785162115901,0.7266122905829145,6.340987552600561,59.42444157748549,36.853707851013006,399.883574202254,399.43180377390917,0.5639104077201208
+Xi'an,Type 3,4019,40.19,33.054611957467955,0.1668753073771448,19.133371282583997,0.6517336102413108,16.457405910236595,0.022946134641708357,0.17920103012389219,17.92010301238922,3.1575613618368963,73.95595240069453,0.7340775210136172,13.589724229255102,13.131109273326278,3.047921195453135,398.9033585547056,398.46451793555804,0.5506300182642114
+Xi'an,Type 4,1183,11.83,76.03978745524665,0.7331655263433479,35.239103175116824,0.8764282929923592,13.072350675918067,0.031045146527051017,0.31389367540965696,31.389367540965694,2.5439367311072054,82.76998683282349,0.7727135647000034,27.322987849174627,3.304379607679065,0.38198580261418996,395.5975553962763,395.0114552360012,0.7162952005858954
diff --git a/data/results/correlations_all.csv b/data/results/correlations_all.csv
new file mode 100644
index 00000000..cbb132ef
--- /dev/null
+++ b/data/results/correlations_all.csv
@@ -0,0 +1,99 @@
+city,metric,target,correlation
+Delft,green_percent,fwei_change_mean,0.24240825972242247
+Delft,area,fwei_change_mean,0.206870165537551
+Delft,gyrate,fwei_change_mean,0.20169315944744587
+Delft,contig,fwei_change_mean,0.1962389621535968
+Delft,enn,fwei_change_mean,-0.08677831602852933
+Delft,mean_dist_green,fwei_change_mean,0.16750106018255612
+Delft,min_dist_green,fwei_change_mean,0.03304087809704355
+Delft,green_percent,flood_share,0.34418681306127746
+Delft,area,flood_share,0.396678499113786
+Delft,gyrate,flood_share,0.3721487397140917
+Delft,contig,flood_share,0.3438027267044306
+Delft,enn,flood_share,-0.08275562523872548
+Delft,mean_dist_green,flood_share,0.18561276395148055
+Delft,min_dist_green,flood_share,0.054285301129623244
+Delft,green_percent,pland_flood,0.3441868130612774
+Delft,area,pland_flood,0.396678499113786
+Delft,gyrate,pland_flood,0.3721487397140917
+Delft,contig,pland_flood,0.3438027267044306
+Delft,enn,pland_flood,-0.08275562523872548
+Delft,mean_dist_green,pland_flood,0.18561276395148055
+Delft,min_dist_green,pland_flood,0.05428530112962324
+Delft,green_percent,np_flood,0.26441559891933364
+Delft,area,np_flood,-0.005162181914250307
+Delft,gyrate,np_flood,0.03248945622677135
+Delft,contig,np_flood,0.07750276812814831
+Delft,enn,np_flood,-0.14736849479269729
+Delft,mean_dist_green,np_flood,-0.23533196620777394
+Delft,min_dist_green,np_flood,-0.21646707899653722
+Delft,green_percent,flood_cohesion,0.24728754564194247
+Delft,area,flood_cohesion,0.2621979018399225
+Delft,gyrate,flood_cohesion,0.2685805054692098
+Delft,contig,flood_cohesion,0.25822507254814214
+Delft,enn,flood_cohesion,-0.07631367418595661
+Delft,mean_dist_green,flood_cohesion,0.11263806128857319
+Delft,min_dist_green,flood_cohesion,0.0035417419091347845
+Delft,green_percent,flood_clumpy,-0.06947786506470734
+Delft,area,flood_clumpy,0.05394541111148807
+Delft,gyrate,flood_clumpy,0.06063176859792655
+Delft,contig,flood_clumpy,0.05127968768597321
+Delft,enn,flood_clumpy,0.043467559139144574
+Delft,mean_dist_green,flood_clumpy,0.213928183656601
+Delft,min_dist_green,flood_clumpy,0.18530681944915062
+Delft,green_percent,flood_lpi,0.3013828580358627
+Delft,area,flood_lpi,0.3860215153347979
+Delft,gyrate,flood_lpi,0.3540774293381101
+Delft,contig,flood_lpi,0.32028689555229983
+Delft,enn,flood_lpi,-0.06376574130547535
+Delft,mean_dist_green,flood_lpi,0.2105424353479165
+Delft,min_dist_green,flood_lpi,0.07868932611081114
+Xi'an,green_percent,fwei_change_mean,0.1577618514497029
+Xi'an,area,fwei_change_mean,0.11959176313535864
+Xi'an,gyrate,fwei_change_mean,0.09813860657204089
+Xi'an,contig,fwei_change_mean,0.07260802326509797
+Xi'an,enn,fwei_change_mean,-0.038733710503465725
+Xi'an,mean_dist_green,fwei_change_mean,-0.1440590400097602
+Xi'an,min_dist_green,fwei_change_mean,-0.19939051932506438
+Xi'an,green_percent,flood_share,0.3673477934562205
+Xi'an,area,flood_share,0.3088103883329201
+Xi'an,gyrate,flood_share,0.2615590112723611
+Xi'an,contig,flood_share,0.21613680916697034
+Xi'an,enn,flood_share,-0.05440364345401814
+Xi'an,mean_dist_green,flood_share,-0.23741430167072788
+Xi'an,min_dist_green,flood_share,-0.2678628438939555
+Xi'an,green_percent,pland_flood,0.36734779345622043
+Xi'an,area,pland_flood,0.3088103883329201
+Xi'an,gyrate,pland_flood,0.2615590112723611
+Xi'an,contig,pland_flood,0.21613680916697034
+Xi'an,enn,pland_flood,-0.05440364345401815
+Xi'an,mean_dist_green,pland_flood,-0.23741430167072786
+Xi'an,min_dist_green,pland_flood,-0.2678628438939555
+Xi'an,green_percent,np_flood,-0.02485352603849207
+Xi'an,area,np_flood,-0.13593646419770578
+Xi'an,gyrate,np_flood,-0.09133460102021158
+Xi'an,contig,np_flood,-0.09587893646753422
+Xi'an,enn,np_flood,-0.06935069107563767
+Xi'an,mean_dist_green,np_flood,-0.05256098098001195
+Xi'an,min_dist_green,np_flood,-0.1908098096099477
+Xi'an,green_percent,flood_cohesion,0.23662407262324997
+Xi'an,area,flood_cohesion,0.18534925253184692
+Xi'an,gyrate,flood_cohesion,0.16125482781648726
+Xi'an,contig,flood_cohesion,0.1382768217348668
+Xi'an,enn,flood_cohesion,-0.019325972302887025
+Xi'an,mean_dist_green,flood_cohesion,-0.20411964721278228
+Xi'an,min_dist_green,flood_cohesion,-0.33956787963797186
+Xi'an,green_percent,flood_clumpy,0.09270234443149142
+Xi'an,area,flood_clumpy,0.12486371196469759
+Xi'an,gyrate,flood_clumpy,0.08736697146775789
+Xi'an,contig,flood_clumpy,0.09788188605502568
+Xi'an,enn,flood_clumpy,0.051303730851404605
+Xi'an,mean_dist_green,flood_clumpy,-0.013460171062153123
+Xi'an,min_dist_green,flood_clumpy,0.03302964250590546
+Xi'an,green_percent,flood_lpi,0.372685214395149
+Xi'an,area,flood_lpi,0.33709067126281694
+Xi'an,gyrate,flood_lpi,0.280144402713463
+Xi'an,contig,flood_lpi,0.23063894712760438
+Xi'an,enn,flood_lpi,-0.0479410561559143
+Xi'an,mean_dist_green,flood_lpi,-0.22089446205849406
+Xi'an,min_dist_green,flood_lpi,-0.22500154774330533
diff --git a/data/results/delft_combined_typology.gpkg b/data/results/delft_combined_typology.gpkg
new file mode 100644
index 00000000..c7042528
Binary files /dev/null and b/data/results/delft_combined_typology.gpkg differ
diff --git a/data/results/delft_flood_metrics_base.csv b/data/results/delft_flood_metrics_base.csv
new file mode 100644
index 00000000..3eaddb2d
--- /dev/null
+++ b/data/results/delft_flood_metrics_base.csv
@@ -0,0 +1,10001 @@
+"id","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green"
+1,-0.0132482940851878,0.08,8,5,68.905460693053,0.644648829431438,3.75,4.51451909542084,0
+2,0.0122060774183404,0.1075,10.75,10,59.2974498955266,0.502023031434796,2.25,3.40780648519827,0
+3,0.0225364814764544,0.1225,12.25,6,76.0818992252151,0.701533034866368,6.75,3.56117295245735,0
+4,-0.00453372105140062,0.005,0.5,2,0,1,0.25,8.09016990661621,5
+5,0.0062092954743639,0.055,5.5,4,62.8485903840066,0.657640834111422,2.25,12.8268286098133,0
+6,0.0127040984360792,0.035,3.5,3,61.1205432937182,0.740932642487047,2.25,12.0250735964094,0
+7,0.00684899571966525,0.0275,2.75,3,51.9827926012797,0.520137103684661,1.25,7.18752687627619,0
+8,0.00147056546918975,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+9,0.00236812719536374,0.015,1.5,1,62.2896536353828,1,1.5,31.5525849660238,26.9258232116699
+10,-0.0120799146125955,0.005,0.5,1,30.8308651382582,1,0.5,25.962911605835,25
+11,0.00790768031272591,0.0625,6.25,3,73.6830947056261,0.706666666666667,4.25,6.74373466491699,0
+12,0.0229201636928337,0.205,20.5,2,88.7965939829438,0.852526566905227,10.75,6.64716222809582,0
+13,0.0168948485527562,0.14,14,5,80.7473807855023,0.832174538479981,9.75,9.44754893439157,0
+14,0.0224845976972892,0.125,12.5,3,86.9003876325198,0.784873949579832,11.25,0.782842712402344,0
+15,-0.0144060538485473,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,0.588235294117647,0
+16,-0.0240852190738224,0,0,0,NA,NA,0,NA,NA
+17,-0.00257968183722369,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10
+18,0.018433863814098,0.06,6,7,57.352048162113,0.496080627099664,2.75,9.687952597936,0
+19,0.00660683532490111,0.0125,1.25,1,58.1880425789518,1,1.25,4.41421356201172,0
+20,-0.0240995823496792,0.01,1,2,30.8308651382582,0.494949494949495,0.5,9.76569890975952,5
+21,-0.0253473863029285,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,12.9222150530134,5
+22,-0.0285181098982866,0,0,0,NA,NA,0,NA,NA
+23,-0.0084293115429864,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+24,0.00735359336368873,0.0025,0.25,1,0,NA,0.25,22.3606796264648,22.3606796264648
+25,0.00122166137341992,0,0,0,NA,NA,0,NA,NA
+26,-0.0021234510883005,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+27,0.00478323103581602,0.02,2,2,54.1958020619036,0.795918367346939,1.5,23.2678112983704,14.1421356201172
+28,-0.00544209845888872,0.04,4,3,66.2624149457428,0.782986111111111,3.25,6.49352240562439,0
+29,-0.00465437617482166,0.0425,4.25,2,72.393173884463,0.91644908616188,3.75,2.96014561372645,0
+30,0.0162115760873712,0.035,3.5,3,61.1566244922223,0.481865284974093,1.75,1.07142857142857,0
+31,0.00441364722153594,0,0,0,NA,NA,0,NA,NA
+32,0.00263595702294424,0.0275,2.75,3,56.7578274850337,0.657240788346187,2,46.5069163929332,36.4005508422852
+33,-0.0152271027000643,0.04,4,3,63.8789508712094,0.652777777777778,2.25,2.94194173812866,0
+34,0.0112096217666112,0.125,12.5,3,84.8484076799867,0.677310924369748,9.25,3.45432037353516,0
+35,-0.00132667758054595,0,0,0,NA,NA,0,NA,NA
+36,-0.00955150522440817,0,0,0,NA,NA,0,NA,NA
+37,-0.011334457764824,0.0625,6.25,3,70.2190284878621,0.733333333333333,4,0.8,0
+38,0.0713293780795357,0.54,54,1,98.1009071848445,0.848583171101017,54,2.63011213585182,0
+39,0.0771194066700264,0.7325,73.25,1,99.1136185490844,0.905015519785606,73.25,4.17236906839312,0
+40,0.0863831855109311,0.5725,57.25,2,97.5247224405912,0.863045592122383,56,13.0868285066696,0
+41,0.0240664336783811,0.23,23,3,88.6250553783568,0.825783972125436,16.5,4.20724499743918,0
+42,-0.0155816891520226,0.09,9,1,87.719298245614,0.945054945054945,9,56.1178866492377,30.4138145446777
+43,-0.00912238526459987,0.2125,21.25,1,93.8457653779655,0.966361820666456,21.25,15.8403375513413,0
+44,0.058534262836256,0.57,57,3,94.286775818402,0.792065663474692,38,31.0012475482205,0
+45,0.0130707454893309,0.22,22,2,91.0169976608093,0.787685774946921,18,31.7141015963121,0
+46,-0.0396978174192645,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,5.23606796264648,0
+47,-0.0474855381945963,0.02,2,2,53.5230890372948,0.591836734693878,1.25,2.5,0
+48,-0.0352575736765721,0,0,0,NA,NA,0,NA,NA
+49,-0.0588450962654315,0,0,0,NA,NA,0,NA,NA
+50,-0.12804747890681,0,0,0,NA,NA,0,NA,NA
+51,-0.115935123246163,0,0,0,NA,NA,0,NA,NA
+52,-0.102616598290624,0,0,0,NA,NA,0,NA,NA
+53,-0.0254504361954605,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+54,-0.0314232621259725,0,0,0,NA,NA,0,NA,NA
+55,-0.0032786851883975,0.0525,5.25,4,62.916704714492,0.670184696569921,2.75,8.2449951171875,0
+56,0.0181976962237968,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,27.1935138702393,15.8113880157471
+57,0.0436469843439409,0.3375,33.75,1,96.2035477281698,0.963184537505752,33.75,34.3014850333885,7.07106781005859
+58,-0.0389025579939334,0.0625,6.25,2,79.5813418312097,0.733333333333333,5.5,15.7718663024902,5
+59,-0.0149322366899651,0.005,0.5,2,0,1,0.25,100.588459014893,96.1769180297852
+60,0.195345680655737,0.6175,61.75,1,98.5654235476234,0.977364683247036,61.75,125.014215229977,96.0468673706055
+61,0.224364785321013,0.795,79.5,1,99.3602931148206,0.967479674796748,79.5,63.0620860393692,5
+62,-0.037864233909786,0.235,23.5,1,94.4060921446443,0.968876439464675,23.5,74.3676394604622,40.3112869262695
+63,0.00544988962050411,0.4,40,1,96.9413745785043,0.96031746031746,40,149.567132949829,105
+64,-0.0306721316059702,0.2425,24.25,1,94.5753035249093,0.954478206441334,24.25,179.0307340327,162.864974975586
+65,-0.0229542573852086,0,0,0,NA,NA,0,NA,NA
+66,-0.0332962122320896,0,0,0,NA,NA,0,NA,NA
+67,-0.0789173687295988,0,0,0,NA,NA,0,NA,NA
+68,-0.153136727983383,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+69,-0.0101573390924023,0.2025,20.25,3,89.978885174785,0.860675722744688,18.75,6.91841996746299,0
+70,-0.0245814430491191,0.09,9,3,79.2502931851766,0.78021978021978,6.75,18.2581995328267,0
+71,-0.0145296669572781,0,0,0,NA,NA,0,NA,NA
+72,-0.0106300566221739,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,171.031489054362,155.72412109375
+73,-0.0124921362940222,0,0,0,NA,NA,0,NA,NA
+74,-0.019902125241133,0,0,0,NA,NA,0,NA,NA
+75,-0.0180550002633754,0,0,0,NA,NA,0,NA,NA
+76,-0.0010829954050223,0,0,0,NA,NA,0,NA,NA
+77,0.0272019118310118,0.145,14.5,1,91.4414281200292,0.953216374269006,14.5,73.7716937887258,55
+78,0.0022107130015047,0.27,27,1,95.1342058036908,0.971900245872849,27,34.473129219479,0
+79,-0.159805011425051,0,0,0,NA,NA,0,NA,NA
+80,-0.125568979755044,0,0,0,NA,NA,0,NA,NA
+81,-0.120846571436341,0,0,0,NA,NA,0,NA,NA
+82,0.0338249138921674,0.565,56.5,1,98.2611567869712,0.90717230458405,56.5,112.152412380792,65
+83,0.0971191233838908,0.9525,95.25,1,99.8703629518046,0.825047383000437,95.25,40.6242396437277,0
+84,0.285588442580774,1,100,1,100,NA,100,55.3783812427521,0
+85,0.227963043004274,0.8625,86.25,1,99.5959799783351,0.944227551589515,86.25,40.5454135784204,0
+86,-0.0361902852584535,0.0725,7.25,2,83.1260972137714,0.885301370648621,7,7.25171464065026,0
+87,0.0456274222352295,0.485,48.5,1,97.7057035934975,0.973031283710895,48.5,34.1335990551821,0
+88,0.0375847122195955,0.33,33,1,96.1011760023317,0.938068991143866,33,83.3957612875736,47.1699066162109
+89,-0.0623233358410653,0,0,0,NA,NA,0,NA,NA
+90,-0.109675797512755,0,0,0,NA,NA,0,NA,NA
+91,-0.0766574764379766,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,95.1725146953876,87.3212432861328
+92,0.124212148926126,0.5925,59.25,1,98.4255810267197,0.950144718802365,59.25,108.411329695947,80.6225738525391
+93,0.00690173629438505,0.3175,31.75,1,95.9225630587777,0.942914228628514,31.75,67.5495813024326,15
+94,0.00833877064320404,0.1625,16.25,1,92.2068700432412,0.936600184916127,16.25,23.3554098862868,0
+95,0.0219563468636807,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,117.466274714066,81.3941040039062
+96,-0.0143774141819449,0.0925,9.25,1,87.9580013362782,0.855484803323849,9.25,102.585119298986,80.777473449707
+97,-0.0404215954735264,0,0,0,NA,NA,0,NA,NA
+98,-0.00241690580641716,0.1025,10.25,4,78.9560931545028,0.757781276492673,7.25,11.0152659997707,0
+99,-0.0450096403535281,0.055,5.5,2,76.4902019111937,0.844382197323374,4.75,8.3390815041282,0
+100,-0.0176357661581096,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,24.7262778074845,15
+101,0.00858032840825217,0.1225,12.25,6,77.9787993592683,0.647266313932981,7.5,14.6405956112609,0
+102,0.0162892683787504,0.0975,9.75,7,69.9158297229616,0.659066695077775,5.5,4.14109782683544,0
+103,0.00991780264846966,0.1075,10.75,3,80.843864091981,0.766573295985061,7.25,3.03825467131859,0
+104,0.00416598913148846,0.0475,4.75,2,78.0010569187133,0.710381029957462,4.5,3.50014817087274,0
+105,0.0186945541408932,0.045,4.5,6,52.4592539595781,0.495830909443475,2.25,15.0359932581584,0
+106,0.00840696156198987,0.0175,1.75,5,20.6476234428033,0.236641221374046,0.75,13.1671273367746,5
+107,-0.000239072048207163,0.0025,0.25,1,0,NA,0.25,10,10
+108,-0.00018214629277054,0.01,1,2,34.5233986084855,0.494949494949495,0.75,50.7072992324829,46.0977210998535
+109,-0.00582569155842066,0.005,0.5,2,0,1,0.25,13.0901699066162,11.1803398132324
+110,-0.0113669183860543,0,0,0,NA,NA,0,NA,NA
+111,0.0188392993279717,0.205,20.5,1,93.6387867289635,0.930600737367166,20.5,11.1857073016283,0
+112,0.0057854063465129,0.0275,2.75,6,33.3589644488846,0.383033419023136,1.25,22.7578183954412,0
+113,-0.00287852343848499,0.0075,0.75,1,44.4894453484604,1,0.75,5,5
+114,0.0160036967168026,0.0675,6.75,4,66.6983312008518,0.65085105056425,2.5,6.36511682581019,0
+115,0.0168538960852902,0.2275,22.75,4,86.1244968159939,0.776259538934836,12.75,3.05572920579177,0
+116,0.00280849765968696,0.05,5,1,81.7256002368443,0.864176570458404,5,7.32678394317627,0
+117,0.0136794926700168,0.0875,8.75,2,81.0754154020223,0.773264052905054,5.75,5.97768096923828,0
+118,0.0116622473771065,0.065,6.5,5,67.2619658834722,0.686970131733403,3,13.5927666884202,0
+119,0.0103004249626974,0.0175,1.75,5,18.0603026582958,0.236641221374046,0.5,13.0332409994943,7.07106781005859
+120,0.0105945329502219,0.0175,1.75,2,51.615396620588,0.618320610687023,1.25,11.8579472133092,10
+121,-0.0129133047929645,0.0175,1.75,3,38.8779033563773,0.491094147582697,0.75,14.5356273651123,5
+122,-0.03197039804734,0,0,0,NA,NA,0,NA,NA
+123,-0.0282253083403157,0.0025,0.25,1,0,NA,0.25,28.2842712402344,28.2842712402344
+124,0.0028916175876202,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10
+125,0.00312378760027059,0.01,1,2,34.5233986084855,0.494949494949495,0.75,18.8553247451782,11.1803398132324
+126,-0.0062580292883149,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,24.8632423400879,11.1803398132324
+127,-0.00183542142533042,0.015,1.5,2,45.0766242787986,0.709934735315446,1,9.49862130482992,0
+128,-0.00587989649911833,0.04,4,2,74.2500702543702,0.826388888888889,3.75,3.82582521438599,0
+129,0.0184037301227727,0.1125,11.25,2,86.7611807060954,0.851742031134173,10.5,3.20315856933594,0
+130,0.00210240829188479,0.07,7,3,73.1877269694959,0.7610513739546,4.5,3.41589110238212,0
+131,-0.00271099435377664,0.0775,7.75,3,75.0508813194549,0.78319783197832,4.25,5.13536293275895,0
+132,-0.00173996450943378,0.025,2.5,3,55.0674816235405,0.763313609467456,2,19.2121528625488,7.07106781005859
+133,-0.00146727906902925,0,0,0,NA,NA,0,NA,NA
+134,0.016698347538495,0.22,22,2,91.7231152388375,0.853013228809407,19.75,4.83943182771856,0
+135,0.00710082657904422,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,54.549498966762,49.4974746704102
+136,-0.0181610356340752,0,0,0,NA,NA,0,NA,NA
+137,-0.0276954737565211,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,10.2548650105794,0
+138,0.0976534342385276,0.6725,67.25,1,98.8451498857927,0.836747033481974,67.25,3.64808579625693,0
+139,0.0443294300101843,0.38,38,3,95.3933272171149,0.895941727367326,36.75,13.6075503198724,0
+140,-0.0949810328191597,0.06,6,2,81.1979054936838,0.776035834266517,5.75,10.2086706161499,0
+141,-0.0393613302191443,0.0025,0.25,1,0,NA,0.25,32.0156211853027,32.0156211853027
+142,-0.0240506623149849,0,0,0,NA,NA,0,NA,NA
+143,-0.0267506836168468,0,0,0,NA,NA,0,NA,NA
+144,-0.0286467191178235,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,63.1992017957899,60
+145,-0.00206935487891315,0.0625,6.25,4,65.0532184749907,0.653333333333333,2.75,31.5667636108398,5
+146,0.0398025485155176,0.535,53.5,4,96.8048485973541,0.951369751985735,52.75,27.9762720660629,0
+147,0.00306273623195011,0.3525,35.25,1,96.3984008308788,0.952111580018557,35.25,86.3699728512595,35.355339050293
+148,-0.0580854818707303,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,125.625579833984,122.983741760254
+149,-0.0575542663548913,0,0,0,NA,NA,0,NA,NA
+150,-0.0974067480722442,0,0,0,NA,NA,0,NA,NA
+151,-0.123778561614454,0,0,0,NA,NA,0,NA,NA
+152,-0.0535409132485504,0.105,10.5,1,89.0207000039903,0.889841844362263,10.5,27.3094382513137,7.07106781005859
+153,-0.0212663433360649,0.03,3,2,62.8738722138861,0.696785930867192,2,3.18761730194092,0
+154,0.0158492759484307,0.1525,15.25,5,76.0593326855386,0.6660544331274,4.5,3.8009533491291,0
+155,-0.0445944630631129,0,0,0,NA,NA,0,NA,NA
+156,-0.0200314061585232,0,0,0,NA,NA,0,NA,NA
+157,-0.0223425114677372,0.065,6.5,1,84.6193541959806,0.97391417764445,6.5,15.3136094900278,7.07106781005859
+158,-0.063027659460422,0.0175,1.75,1,65.4774238937655,1,1.75,2.14285714285714,0
+159,-0.0166982039688446,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,20.8489393506731,7.07106781005859
+160,0.32282032331801,0.9425,94.25,1,99.8418294460568,0.975676497415628,94.25,73.7559671832016,11.1803398132324
+161,0.169778848822989,0.64,64,2,97.5493950496681,0.936342592592593,61.75,46.9983425587416,5
+162,-0.133990289862268,0,0,0,NA,NA,0,NA,NA
+163,-0.0983971456161817,0,0,0,NA,NA,0,NA,NA
+164,-0.0711596926694619,0,0,0,NA,NA,0,NA,NA
+165,-0.0210041407997778,0,0,0,NA,NA,0,NA,NA
+166,-0.0310433412832208,0,0,0,NA,NA,0,NA,NA
+167,-0.0770323679991998,0,0,0,NA,NA,0,NA,NA
+168,-0.0940835686246282,0.11,11,1,89.3941397590651,1,11,58.4599131670865,41.2310562133789
+169,0.0219604046801942,0.35,35,5,91.3988605905819,0.801682692307692,28,18.1166482244219,0
+170,0.0175602459271613,0.2075,20.75,5,82.8664878053212,0.751067619476813,9.75,4.24646821079484,0
+171,-0.00615806954363507,0,0,0,NA,NA,0,NA,NA
+172,-0.0155797143683594,0,0,0,NA,NA,0,NA,NA
+173,-0.0124114136486469,0,0,0,NA,NA,0,NA,NA
+174,-0.0368243828378763,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+175,-0.167766462581749,0,0,0,NA,NA,0,NA,NA
+176,-0.0417672999508795,0,0,0,NA,NA,0,NA,NA
+177,-0.0171479698757412,0.0025,0.25,1,0,NA,0.25,133.135269165039,133.135269165039
+178,-0.0487932256225031,0,0,0,NA,NA,0,NA,NA
+179,-0.0266815717737882,0,0,0,NA,NA,0,NA,NA
+180,-0.14081460403715,0,0,0,NA,NA,0,NA,NA
+181,-0.0761957189929672,0,0,0,NA,NA,0,NA,NA
+182,-0.0740746466103155,0,0,0,NA,NA,0,NA,NA
+183,0.00602514421916567,0.415,41.5,2,96.4397124552866,0.927378358750908,41,51.143269228648,20
+184,0.17673509520886,0.8775,87.75,1,99.6446261822776,0.803294811900664,87.75,103.370563344059,44.7213592529297
+185,0.26267057065852,1,100,1,100,NA,100,54.0633878087997,0
+186,0.0640383140374797,0.3225,32.25,3,93.47677131144,0.87438172254063,29.75,22.3224699774454,0
+187,-0.00030181189533323,0.155,15.5,3,85.9296537317838,0.835634451019066,13.25,21.3803183647894,0
+188,0.11452690884762,0.85,85,3,97.6775984929639,0.813374805598756,80.75,67.7527339430416,15.8113880157471
+189,0.0667617658008385,0.5975,59.75,1,98.4542502383879,0.955535175844484,59.75,102.567861788442,56.5685424804688
+190,-0.0549630102451192,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,101.548982832167,95.1314926147461
+191,-0.0908254768355255,0,0,0,NA,NA,0,NA,NA
+192,-0.00226350333003211,0.025,2.5,2,58.1880425789518,0.763313609467456,1.25,89.981623840332,74.3303451538086
+193,0.0489951409118294,0.4875,48.75,1,97.7251065890586,0.881417598706374,48.75,24.4536670293563,0
+194,0.0863201707226835,0.53,53,1,98.0336545290164,0.951398639161896,53,65.6520890019975,5
+195,0.112046582499606,0.5575,55.75,1,98.2142154717639,0.94567579313342,55.75,54.2174642331932,11.1803398132324
+196,0.0078767083650564,0.1425,14.25,2,88.5902869367462,0.785803534241685,12.75,9.14025226392244,0
+197,0.00594593715475639,0.075,7.5,3,72.8736768642254,0.669056811913955,3.5,4.62022488911947,0
+198,-0.0742328608082607,0.02,2,1,68.0470115164975,0.795918367346939,2,4.63388347625732,0
+199,-0.0412515177523892,0.195,19.5,1,93.3444522721621,0.954991448375191,19.5,27.8122861813276,11.1803398132324
+200,0.00645023471020977,0.18,18,4,84.9762951671943,0.807950835413866,14,42.5074349774255,0
+201,0.0123922558036884,0.145,14.5,4,86.0783581021694,0.83625730994152,13,1.46551724137931,0
+202,0.0372359916869937,0.3725,37.25,3,92.6801093341371,0.70228974213038,20.5,5.58693258554343,0
+203,0.0145764669660267,0.25,25,1,94.7368421052632,0.866666666666667,25,2.60677814483643,0
+204,0.00328985613097757,0.02,2,3,46.9544081498484,0.693877551020408,1.5,18.2580187320709,14.1421356201172
+205,-0.000138756966680376,0.0025,0.25,1,0,NA,0.25,35,35
+206,0.00458778045564031,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,9.22041257222494,5
+207,-0.00314745350464364,0.005,0.5,1,30.8308651382582,1,0.5,23.0553131103516,20.6155281066895
+208,-0.00139290833257519,0.015,1.5,2,46.9371480234533,0.419869470630892,1,11.4942932128906,0
+209,-0.00366643144437148,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+210,-0.0113934956580124,0,0,0,NA,NA,0,NA,NA
+211,0.0102462709578322,0.0875,8.75,5,69.65204738413,0.697685403873406,5.5,6.26112997872489,0
+212,0.0208014848125185,0.1325,13.25,5,78.0262550297624,0.797320834784812,8,23.2340796848513,10
+213,0.00909684933574681,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,16.8316993713379,0
+214,0.00153207989990733,0.03,3,1,74.8763016215986,0.878714372346877,3,22.091611067454,15
+215,-0.0104305763770753,0.15,15,2,90.6512323696132,0.864253393665158,14.75,2.58925565083822,0
+216,0.00145273046567354,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,17.6967233022054,10
+217,0.0326611707840044,0.21,21,7,79.6783586690955,0.711154532325206,10.25,10.4972807112194,0
+218,0.0121615230709358,0.055,5.5,3,73.1774035114053,0.657640834111422,4.25,15.4534360712225,7.07106781005859
+219,-0.0072871672029396,0,0,0,NA,NA,0,NA,NA
+220,-0.000809911734896218,0.01,1,1,52.6315789473684,0.747474747474748,1,18.786524772644,14.1421356201172
+221,-0.0186690825008009,0.0125,1.25,1,58.1880425789518,1,1.25,7.6502815246582,5
+222,-0.00447253580023244,0,0,0,NA,NA,0,NA,NA
+223,-0.0129972092648654,0,0,0,NA,NA,0,NA,NA
+224,-0.0318358190494473,0,0,0,NA,NA,0,NA,NA
+225,-0.00151637717504173,0,0,0,NA,NA,0,NA,NA
+226,0.00978043751549194,0,0,0,NA,NA,0,NA,NA
+227,-0.0215935575878575,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,11.1002731323242,5
+228,0.00448846352326655,0.01,1,3,15.8692205350002,0.242424242424242,0.5,14.1421937942505,5
+229,-0.0147147616793154,0.0025,0.25,1,0,NA,0.25,25,25
+230,-0.0440459168621601,0.005,0.5,1,30.8308651382582,1,0.5,43.7206878662109,42.7200164794922
+231,-0.0603052601890158,0.0025,0.25,1,0,NA,0.25,0,0
+232,-0.0043587775456399,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+233,0.0039518696196501,0.045,4.5,2,73.385208133316,0.767306573589296,3.75,31.0205691655477,15.8113880157471
+234,0.039762375588034,0.4725,47.25,2,97.0842304494745,0.815842924847664,46.5,2.03350178148381,0
+235,0.0465395671112609,0.36,36,2,96.1324878704321,0.840198863636364,35.75,1.29561487833659,0
+236,-0.0393766088664756,0.02,2,1,68.0470115164975,0.795918367346939,2,1.25,0
+237,0.0845610651871539,0.58,58,1,98.352293007383,0.890025294182338,58,2.06190073079076,0
+238,0.0408921416894373,0.3125,31.25,7,84.7071524508876,0.724469363235883,15,8.02789854431152,0
+239,0.0149253957102337,0.065,6.5,6,58.9821183180147,0.556541019955654,2,8.6215281853309,0
+240,-0.0275421769039167,0.0575,5.75,3,70.4640532101323,0.793692897141173,4,46.1072463989258,0
+241,-0.0276839218998066,0.04,4,1,78.9473684210526,0.956597222222222,4,24.2414312362671,15
+242,-0.0147191324095911,0.05,5,1,81.7256002368443,0.762308998302207,5,18.1910440444946,5
+243,-0.0224242287450409,0.035,3.5,2,69.0285060247284,0.844559585492228,3,10,0
+244,-0.020025401303883,0.0025,0.25,1,0,NA,0.25,78.2623825073242,78.2623825073242
+245,-0.00139495628856821,0.0875,8.75,2,80.2658085917115,0.73547472838923,6.5,2.20203050885882,0
+246,-0.0293437613072456,0.165,16.5,2,88.651084012257,0.864618588909138,14.25,43.7426180984035,0
+247,-0.00158284882141743,0.405,40.5,1,96.992903144017,0.813885285657887,40.5,122.597703674693,80
+248,0.0421679290031898,0.645,64.5,1,98.7097599330033,0.930014871839734,64.5,161.268184928007,120.830459594727
+249,-0.0781242959597148,0,0,0,NA,NA,0,NA,NA
+250,-0.0435429523023777,0,0,0,NA,NA,0,NA,NA
+251,-0.0585476798856689,0,0,0,NA,NA,0,NA,NA
+252,-0.0108916221275013,0.0875,8.75,3,79.7837876815672,0.792158715162966,7.25,8.24049791608538,0
+253,0.0320016408604533,0.1175,11.75,7,73.4064100854278,0.645892351274788,6.75,15.0260196848119,0
+254,0.0278133069008254,0.07,7,5,63.3940169795165,0.59378733572282,2.25,19.2941654750279,0
+255,0.00262447276816431,0.04,4,2,71.3827116079853,0.869791666666667,3.5,29.1402523517609,10
+256,-0.0145404165204309,0,0,0,NA,NA,0,NA,NA
+257,-0.0492248243378708,0.0025,0.25,1,0,NA,0.25,0,0
+258,-0.00976965571064284,0.09,9,2,84.5249616403217,0.78021978021978,8.25,2.09229098425971,0
+259,0.019994614381676,0.2375,23.75,3,88.8614239713639,0.783992285438766,15.5,4.53374728152626,0
+260,0.229767833306687,0.8575,85.75,1,99.5794816088838,0.891704570067143,85.75,56.2000592568178,10
+261,0.0829195997200441,0.595,59.5,1,98.4399608047141,0.811346927451796,59.5,76.3596261930065,31.6227760314941
+262,-0.0273137148062233,0,0,0,NA,NA,0,NA,NA
+263,-0.0508263758280373,0.0025,0.25,1,0,NA,0.25,78.2623825073242,78.2623825073242
+264,0.015838741911848,0.2775,27.75,1,95.2720210973421,0.965397923875433,27.75,62.2879931131999,25
+265,-0.0019152658108942,0.06,6,1,83.7764057650598,0.972004479283315,6,117.475345293681,102.95630645752
+266,-0.0480909790095575,0,0,0,NA,NA,0,NA,NA
+267,-0.0287119863310363,0.03,3,2,68.9081048780414,0.757428744693754,2.75,27.5098387400309,18.0277557373047
+268,0.001038186148362,0.225,22.5,3,92.3052389566146,0.823682628731717,21.5,53.8649072011312,7.07106781005859
+269,0.0170553836934414,0.255,25.5,4,86.7306378341493,0.794623537609565,13.5,12.1781629300585,0
+270,-0.00625079914039816,0.06,6,2,78.8706482445601,0.888017917133259,5.5,6.45833333333333,0
+271,-0.000293883382742024,0,0,0,NA,NA,0,NA,NA
+272,-0.0186255565979809,0,0,0,NA,NA,0,NA,NA
+273,-0.0144214264558104,0,0,0,NA,NA,0,NA,NA
+274,-0.0435840059578186,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.48027504814996,0
+275,-0.283951625776535,0,0,0,NA,NA,0,NA,NA
+276,-0.270508251553401,0,0,0,NA,NA,0,NA,NA
+277,-0.0896436505159363,0,0,0,NA,NA,0,NA,NA
+278,-0.0387148078135215,0,0,0,NA,NA,0,NA,NA
+279,-0.0443932327395305,0,0,0,NA,NA,0,NA,NA
+280,-0.0308165054959682,0,0,0,NA,NA,0,NA,NA
+281,-0.0227871428316212,0,0,0,NA,NA,0,NA,NA
+282,-0.0852089169062674,0,0,0,NA,NA,0,NA,NA
+283,-0.180876400387933,0,0,0,NA,NA,0,NA,NA
+284,0.0116553375754302,0.16,16,4,83.6341918373823,0.766156462585034,10,142.788184165955,115.108642578125
+285,0.113514509881497,0.8,80,2,99.1114513100288,0.925496688741722,79.75,71.4607417583466,25
+286,0.305869740042835,1,100,1,100,NA,100,40.4239600563049,0
+287,0.14710516806299,0.515,51.5,1,97.9291261653514,0.940782213130198,51.5,87.2704112969556,30.4138145446777
+288,-0.0215570703699632,0.055,5.5,4,69.7290243085658,0.626517273576097,4,33.428276235407,18.0277557373047
+289,0.0708205972755604,0.525,52.5,4,94.2313061498468,0.833086552698883,46.75,56.2921366282872,7.07106781005859
+290,0.0834937397056638,0.8175,81.75,1,99.442091962007,0.973357607513154,81.75,60.1982048687949,11.1803398132324
+291,-0.0278772206348367,0.14,14,1,91.1967767414513,0.928074802205706,14,78.2360187258039,60.2079734802246
+292,-0.0358587811180041,0,0,0,NA,NA,0,NA,NA
+293,-0.00601767128130632,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,11.1755295859443,0
+294,-0.0539760064620009,0.0075,0.75,1,44.4894453484604,1,0.75,57.1000061035156,54.0832710266113
+295,-0.0054972273184103,0.21,21,1,93.778005777053,0.940531815478719,21,14.6664778845651,0
+296,-0.000700597110231911,0.07,7,5,63.2623683540652,0.6415770609319,3.25,2.08040741511754,0
+297,-0.0343789217880476,0.135,13.5,1,90.9386564749522,0.850829759462987,13.5,0.648148148148148,0
+298,-0.0923362600943074,0,0,0,NA,NA,0,NA,NA
+299,-0.00682977990873042,0.3675,36.75,1,96.5811989595545,0.976490294899863,36.75,35.3655529541223,15
+300,0.0192002867673,0.26,26,2,91.0391062034469,0.869923399335164,18.5,21.1851830482483,0
+301,0.0311412530858433,0.32,32,3,93.9457408877403,0.848523100227216,30.25,1.56527608633041,0
+302,0.0293001675412233,0.465,46.5,1,97.5448886830867,0.858726363833949,46.5,0.683177783925046,0
+303,-2.95734730025288e-05,0.0625,6.25,1,84.2105263157895,0.946666666666667,6.25,0.2,0
+304,0.014718141548783,0.04,4,7,38.7871402570056,0.392361111111111,1.25,12.5754704475403,0
+305,-0.00633828042158712,0.0075,0.75,1,44.4894453484604,1,0.75,12.167605082194,11.1803398132324
+306,-0.0281340512330803,0.0075,0.75,1,44.4894453484604,1,0.75,9.41713587443034,7.07106781005859
+307,-0.0215142426010425,0,0,0,NA,NA,0,NA,NA
+308,0.00779376213798969,0.07,7,4,69.8464961377848,0.66547192353644,3.75,4.92959124701364,0
+309,-0.00452699153288449,0.01,1,3,15.8692205350002,0.242424242424242,0.5,11.9018139839172,0
+310,-0.00423596224722132,0.0225,2.25,5,30.2509337271146,0.403239556692242,1,10.4104270935059,0
+311,-0.0030682654019779,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0
+312,0.00103706352676454,0.0075,0.75,1,44.4894453484604,1,0.75,34.9839566548665,33.5410194396973
+313,0.00159594450655277,0.0025,0.25,1,0,NA,0.25,30,30
+314,-0.00317339325512194,0,0,0,NA,NA,0,NA,NA
+315,-0.0271643165243768,0.0275,2.75,2,61.172968273306,0.794344473007712,1.75,5,0
+316,0.00155295988609851,0.0125,1.25,1,58.1880425789518,0.594936708860759,1.25,15.1335750579834,7.07106781005859
+317,0.0165514152781179,0.115,11.5,5,74.6145210045704,0.666811531218311,7,12.6814904420272,0
+318,0.00868883571436527,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,8.43446795145671,0
+319,0.00357222642861416,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,8.23862457275391,5
+320,-0.0199127785953215,0,0,0,NA,NA,0,NA,NA
+321,0.00267304032720858,0,0,0,NA,NA,0,NA,NA
+322,-0.0055748754842466,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,22.5084101359049,14.1421356201172
+323,0.00705057006321226,0,0,0,NA,NA,0,NA,NA
+324,-0.00801941182155133,0,0,0,NA,NA,0,NA,NA
+325,-0.0374014093409278,0,0,0,NA,NA,0,NA,NA
+326,-0.0265344830307731,0,0,0,NA,NA,0,NA,NA
+327,-0.0095620920423417,0.005,0.5,1,30.8308651382582,1,0.5,19.6204795837402,18.0277557373047
+328,-0.000937056659786322,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+329,0.00631933060437405,0.015,1.5,2,46.1375166841518,0.564902102973169,1,20.3453203837077,14.1421356201172
+330,0.00907769690273199,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,28.5452098846436,11.1803398132324
+331,0.0119357638941096,0.07,7,3,71.4720035684139,0.71326164874552,3.25,4.6017815044948,0
+332,0.0107330444176478,0.075,7.5,4,68.62691852289,0.669056811913955,2.5,2.38342717488607,0
+333,0.0128450894138223,0.1025,10.25,3,78.9390277782437,0.757781276492673,5,14.5768432617188,0
+334,0.00600857767084562,0.0925,9.25,5,67.8174064731434,0.620647608725105,3.75,6.45917098586624,0
+335,0.0568737370261806,0.5125,51.25,1,97.9112600445307,0.843865670637324,51.25,0.762015626488662,0
+336,0.0725399635603389,0.485,48.5,3,95.651657077361,0.897518878101402,44.75,1.74998698283717,0
+337,0.0576742386120168,0.4875,48.75,3,94.2344771369114,0.789785743161299,28.75,9.46537790542994,0
+338,0.0260656649315388,0.1675,16.75,6,82.5427679408254,0.753599753599754,12.5,16.7953677106259,0
+339,-0.0177757585159998,0,0,0,NA,NA,0,NA,NA
+340,-0.0160004889266656,0,0,0,NA,NA,0,NA,NA
+341,-0.00249527337655877,0.0725,7.25,2,82.9583442133051,0.908241096518897,7,61.2551528667582,45
+342,-0.0267837664528633,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,11.3542652130127,7.07106781005859
+343,-0.0374250878160819,0.0025,0.25,1,0,NA,0.25,15,15
+344,-0.00683450082710806,0.0625,6.25,3,72.5001726893926,0.786666666666667,4.75,17.0239389038086,0
+345,-0.0483384836489859,0.0025,0.25,1,0,NA,0.25,35,35
+346,-0.0755538470298052,0,0,0,NA,NA,0,NA,NA
+347,-0.101105482159182,0,0,0,NA,NA,0,NA,NA
+348,-0.152110358059872,0.055,5.5,1,82.8209772257252,0.906629318394024,5.5,204.654224742543,192.35383605957
+349,-0.149245310220867,0,0,0,NA,NA,0,NA,NA
+350,-0.130679193846881,0,0,0,NA,NA,0,NA,NA
+351,-0.0951640924066305,0,0,0,NA,NA,0,NA,NA
+352,-0.0466942901886068,0,0,0,NA,NA,0,NA,NA
+353,-0.0265484414851744,0,0,0,NA,NA,0,NA,NA
+354,0.0251091208442085,0.0925,9.25,3,79.1636686905868,0.729034006232218,6.25,52.7558266923234,22.3606796264648
+355,0.0160992611195979,0.02,2,2,55.2425944039245,0.693877551020408,1.5,43.5146837234497,32.0156211853027
+356,-0.0219180196339198,0,0,0,NA,NA,0,NA,NA
+357,-0.151924661706726,0,0,0,NA,NA,0,NA,NA
+358,-0.0134997879426737,0.345,34.5,3,91.0960996327497,0.854598327880771,24.75,13.8157022033913,0
+359,0.0509991675289348,0.465,46.5,4,94.0842808803625,0.798956748532928,39.25,5.63936804699641,0
+360,-0.0281024417564913,0.1875,18.75,3,88.5698020150732,0.832167832167832,16.25,24.5911411031087,0
+361,0.0015322417486459,0.08,8,3,79.5248084282746,0.686454849498328,6.25,94.3900940418243,77.6208724975586
+362,-0.0277283867392543,0,0,0,NA,NA,0,NA,NA
+363,-0.0280805918145052,0.09,9,2,83.6124735069624,0.798534798534798,8,138.823201709323,101.118743896484
+364,0.165414449087111,0.985,98.5,1,99.9600766120013,1,98.5,105.37322242853,65
+365,0.0370103068393655,0.3375,33.75,2,95.3934496484126,0.932504985427213,33.25,81.7943219220197,49.2442893981934
+366,-0.169124977160245,0,0,0,NA,NA,0,NA,NA
+367,-0.0739468731079251,0,0,0,NA,NA,0,NA,NA
+368,-0.183555987214786,0,0,0,NA,NA,0,NA,NA
+369,-0.0470684578430337,0.0275,2.75,2,60.6707818475244,0.657240788346187,1.5,4.01292142001065,0
+370,-0.0302697185465149,0.01,1,3,15.8692205350002,0.242424242424242,0.5,9.39154148101807,0
+371,-0.042603906388249,0,0,0,NA,NA,0,NA,NA
+372,0.0096104457758338,0.15,15,1,91.6737426448862,0.97737556561086,15,21.7447371164958,0
+373,0.000708576716133393,0.03,3,4,48.88668404307,0.454214675560946,1.5,10.9951966603597,0
+374,0.0176225044115563,0.06,6,5,63.7276437889433,0.664053751399776,3,29.6038329601288,5
+375,-0.00254734935268061,0.035,3.5,4,54.5128799649893,0.430051813471503,1.75,57.3257187434605,18.0277557373047
+376,-0.20541276862903,0,0,0,NA,NA,0,NA,NA
+377,-0.316990726785734,0,0,0,NA,NA,0,NA,NA
+378,-0.0919538265804294,0,0,0,NA,NA,0,NA,NA
+379,-0.0312222116650082,0,0,0,NA,NA,0,NA,NA
+380,-0.0252470049640397,0,0,0,NA,NA,0,NA,NA
+381,-0.0146861192174356,0,0,0,NA,NA,0,NA,NA
+382,-0.0206523167159321,0,0,0,NA,NA,0,NA,NA
+383,-0.138870568407947,0,0,0,NA,NA,0,NA,NA
+384,-0.184216127947438,0,0,0,NA,NA,0,NA,NA
+385,0.0113850806893532,0.22,22,3,89.0239183701391,0.738690184550057,14.75,116.467536059293,51.4781532287598
+386,0.0793218510329825,0.705,70.5,1,98.9948280613114,0.94243684042213,70.5,90.6214239648048,45
+387,0.329390485165641,0.92,92,1,99.7759364721822,0.964131994261118,92,138.152129131815,89.0224609375
+388,0.269280299411075,0.725,72.5,1,99.081892426161,0.966638865721435,72.5,109.435945024161,73.8241119384766
+389,-0.00788190229392058,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,74.1301216125488,11.1803398132324
+390,0.0194769033922057,0.2425,24.25,2,93.7834943063542,0.939304275255112,24,27.4773670865088,10
+391,0.0628839035867532,0.6425,64.25,2,97.8552817338622,0.9534768765538,62.75,40.7448248065399,7.07106781005859
+392,-0.0158315974240827,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,8.17487589518229,0
+393,-0.0168200983897623,0.005,0.5,1,30.8308651382582,1,0.5,23.0553131103516,20.6155281066895
+394,-0.0305736981823975,0,0,0,NA,NA,0,NA,NA
+395,-0.0224249835394585,0.035,3.5,2,71.6522426099107,0.844559585492228,3.25,43.8896203722273,35.355339050293
+396,0.00473939956427785,0.175,17.5,2,87.5277363887595,0.862034983986204,9.5,4.25816225324358,0
+397,-0.0336361233544369,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,2.5,0
+398,-0.0724233678344171,0,0,0,NA,NA,0,NA,NA
+399,-0.160233806651086,0,0,0,NA,NA,0,NA,NA
+400,-0.0602285899322305,0.06,6,1,83.7764057650598,0.664053751399776,6,3.33333333333333,0
+401,0.064752310645199,0.7275,72.75,2,98.885054110292,0.825570669037117,72.5,0.0687285223367698,0
+402,0.0332080568851961,0.4325,43.25,3,93.8387400653091,0.784569069089804,33,1.04046242774566,0
+403,-0.00150263347743021,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,0,0
+404,0.0163558137684231,0.07,7,3,74.7177535028173,0.73715651135006,4.25,11.0044548852103,0
+405,-0.00338637836620364,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+406,-0.192552139097825,0.01,1,1,52.6315789473684,1,1,0,0
+407,-0.0948426907835892,0.0175,1.75,3,44.8240830231146,0.491094147582697,1.25,4.87744794573103,0
+408,-0.00586245671555844,0.02,2,3,42.6244177316702,0.489795918367347,1,2.75888347625732,0
+409,-0.00931612728069012,0.0275,2.75,4,50.1987135339383,0.520137103684661,1.75,13.3159838589755,0
+410,-0.00768622699237312,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,21.0573558807373,15.8113880157471
+411,2.29745547721905e-05,0,0,0,NA,NA,0,NA,NA
+412,0.024403918727221,0.1625,16.25,5,87.1105320990008,0.778100647206446,14.5,12.2700503716102,0
+413,0.015936155406398,0.0875,8.75,2,85.1251268461301,0.924421350968351,8.5,5.1950083051409,0
+414,0.00680234642830328,0.0275,2.75,4,44.7451879129179,0.520137103684661,1.25,15.0261816544966,0
+415,-0.00682719496853679,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4,0
+416,0.00353813907580843,0.045,4.5,2,70.2169158242117,0.767306573589296,2.75,16.7796886232164,0
+417,0.00488691111513958,0,0,0,NA,NA,0,NA,NA
+418,0.00377103978218202,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0
+419,-0.00400850634061499,0.005,0.5,1,30.8308651382582,1,0.5,18.2134580612183,15.8113880157471
+420,-0.0131629544530369,0,0,0,NA,NA,0,NA,NA
+421,0.00285296300956816,0.0275,2.75,4,43.1328600236377,0.451585261353899,1,6.87681371515447,0
+422,0.00696691620308798,0.0625,6.25,3,68.7517175038734,0.68,2.25,7.08722518920898,0
+423,0.00373098572781601,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,8.47870864868164,5
+424,0.00544177325264698,0,0,0,NA,NA,0,NA,NA
+425,-0.0103089504776312,0,0,0,NA,NA,0,NA,NA
+426,-0.0412663140549557,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,6.4287602351262,0
+427,-0.00867640489490441,0,0,0,NA,NA,0,NA,NA
+428,0.00415089182251108,0,0,0,NA,NA,0,NA,NA
+429,0.0033534889711791,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+430,-0.000940036508472986,0.0425,4.25,3,65.2973013131925,0.62402088772846,2.75,5.94905079112333,0
+431,0.000560124032645035,0.0225,2.25,3,51.2568226763031,0.48849104859335,1.5,10.1348003811306,0
+432,0.00145466754869091,0.0125,1.25,2,43.859649122807,0.594936708860759,1,23.7483551025391,20
+433,0.00201593990152105,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,22.6480236053467,18.0277557373047
+434,0.00732276486956835,0.1025,10.25,3,83.7111122397613,0.838520850995115,9.25,4.77450031187476,0
+435,-0.0135051448545073,0.1825,18.25,1,92.9430371372494,0.952217125382263,18.25,3.79635826528889,0
+436,0.108828579741821,0.785,78.5,1,99.3228142317568,0.92928975487115,78.5,2.38114138317716,0
+437,0.00916388323814317,0.155,15.5,5,82.2779558220605,0.747972824895902,10.75,4.48158780990108,0
+438,-0.00775589836965082,0.0475,4.75,4,59.1283162488617,0.637976287446828,2.25,4.75381449649208,0
+439,-0.0657069026972886,0,0,0,NA,NA,0,NA,NA
+440,-0.0528069667503587,0,0,0,NA,NA,0,NA,NA
+441,-0.0334692340797119,0,0,0,NA,NA,0,NA,NA
+442,-0.0202843731275061,0,0,0,NA,NA,0,NA,NA
+443,-0.015829866442873,0,0,0,NA,NA,0,NA,NA
+444,-0.0232458541105007,0,0,0,NA,NA,0,NA,NA
+445,-0.120961212757438,0,0,0,NA,NA,0,NA,NA
+446,-0.135883014053106,0,0,0,NA,NA,0,NA,NA
+447,-0.125826676990837,0,0,0,NA,NA,0,NA,NA
+448,-0.292626661732793,0,0,0,NA,NA,0,NA,NA
+449,-0.189204632994042,0,0,0,NA,NA,0,NA,NA
+450,-0.183338288528466,0,0,0,NA,NA,0,NA,NA
+451,-0.106104418328032,0,0,0,NA,NA,0,NA,NA
+452,-0.0580702486401424,0,0,0,NA,NA,0,NA,NA
+453,-0.0304258472678157,0,0,0,NA,NA,0,NA,NA
+454,-0.0331334317080473,0,0,0,NA,NA,0,NA,NA
+455,-0.0289488549841553,0,0,0,NA,NA,0,NA,NA
+456,-0.0795395817546523,0,0,0,NA,NA,0,NA,NA
+457,-0.225553540578112,0,0,0,NA,NA,0,NA,NA
+458,0.0714743563454249,0.73,73,1,99.1030975159931,0.979761181946974,73,89.4406386728156,31.6227760314941
+459,0.195090987719595,1,100,1,100,NA,100,59.0269784021378,0
+460,0.12268535924567,0.595,59.5,1,98.4399608047141,0.977805520876682,59.5,56.0474176727423,0
+461,0.00125671308418987,0.0025,0.25,1,0,NA,0.25,95.5248641967773,95.5248641967773
+462,-0.0319612608850002,0,0,0,NA,NA,0,NA,NA
+463,0.0232884577666664,0.395,39.5,1,96.8888706928871,0.971501852379595,39.5,174.044696180126,160
+464,0.151662263875696,0.9225,92.25,1,99.7833767758384,0.981540449490055,92.25,116.167180234501,60
+465,-0.048488861039732,0.055,5.5,2,73.5629824239236,0.782135076252723,3.25,37.7905946211381,5
+466,-0.108619506249433,0,0,0,NA,NA,0,NA,NA
+467,-0.0688207463966683,0,0,0,NA,NA,0,NA,NA
+468,-0.262608265867457,0,0,0,NA,NA,0,NA,NA
+469,-0.0315639965290757,0.0125,1.25,2,45.1127819548872,0.392405063291139,1,2,0
+470,0.0179928032996395,0.295,29.5,1,95.572898758965,0.900576655398688,29.5,29.0776721986674,14.1421356201172
+471,0.0290825882391073,0.4975,49.75,1,97.8012504735965,0.962248378702693,49.75,69.0727606155165,35
+472,-0.107739275016647,0,0,0,NA,NA,0,NA,NA
+473,-0.0202170672484499,0.1,10,2,83.6255307862086,0.867330016583748,8.5,17.7011451244354,7.07106781005859
+474,0.102222397218211,0.8175,81.75,1,99.442091962007,0.98223840500877,81.75,55.3227969819982,5
+475,0.037820035258992,0.195,19.5,2,90.0829313447508,0.882977765775497,17,131.531279441638,98.2344131469727
+476,0.0340213790617418,0.16,16,1,92.1052631578947,0.819302721088435,16,213.557781219482,173.277221679688
+477,-0.0770748065846965,0.3,30,1,95.6539902192076,0.842726081258191,30,197.665958404541,160
+478,-0.0847468258732988,0.3875,38.75,1,96.8082175905,0.919799498746867,38.75,192.170039712229,146.372817993164
+479,-0.0834730718517676,0,0,0,NA,NA,0,NA,NA
+480,-0.0237728345188953,0,0,0,NA,NA,0,NA,NA
+481,-0.0253565830612206,0,0,0,NA,NA,0,NA,NA
+482,-0.0368205511455017,0,0,0,NA,NA,0,NA,NA
+483,-0.0201967880084612,0,0,0,NA,NA,0,NA,NA
+484,-0.117052295750473,0,0,0,NA,NA,0,NA,NA
+485,-0.175090245033825,0.01,1,2,34.5233986084855,0.494949494949495,0.75,150.25749206543,148.070922851562
+486,-0.0252967052080203,0,0,0,NA,NA,0,NA,NA
+487,0.0190915896136721,0.0925,9.25,1,87.9580013362782,0.891613602492887,9.25,184.908001873944,169.189239501953
+488,0.126068948908996,0.4225,42.25,1,97.165991902834,0.972249972249972,42.25,152.694827062844,116.619033813477
+489,-0.0762699035508558,0,0,0,NA,NA,0,NA,NA
+490,-0.0265740246201403,0,0,0,NA,NA,0,NA,NA
+491,-0.00842251915157249,0.0275,2.75,3,58.772474842622,0.520137103684661,2,15.7207528894598,7.07106781005859
+492,-0.020463189320144,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0
+493,-0.0242293263087231,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,4.02368927001953,0
+494,-0.0156069546824801,0.0275,2.75,4,44.869666347291,0.451585261353899,1.25,2.46100616455078,0
+495,-0.0309356767841382,0.1275,12.75,3,85.5143851036305,0.868260712050851,11.5,23.4746104221718,5
+496,-0.0383688655667356,0.0375,3.75,2,67.3959324613699,0.669421487603306,2.25,28.0379021962484,7.07106781005859
+497,-0.0717462968101609,0,0,0,NA,NA,0,NA,NA
+498,-0.0965273659490049,0,0,0,NA,NA,0,NA,NA
+499,-0.175135680288076,0,0,0,NA,NA,0,NA,NA
+500,0.0536609584069811,0.6175,61.75,1,98.5654235476234,0.983023512435277,61.75,25.5278438691668,0
+501,-0.0300041975513659,0.17,17,1,92.4981249980877,0.949377341297965,17,1.13339805603027,0
+502,0.0608279755944386,0.7025,70.25,2,98.7616902932448,0.847211611917494,70,0.676156583629893,0
+503,0.0683580969666946,0.7525,75.25,1,99.1958903399554,0.836103539807243,75.25,0.79734219269103,0
+504,0.0330574919370156,0.3,30,3,93.3541246591436,0.921363040629096,28.5,1.3851100285848,0
+505,-0.00447626314175068,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0
+506,-0.122118747615023,0,0,0,NA,NA,0,NA,NA
+507,-0.072424769121526,0.0575,5.75,2,75.7382605681555,0.852637783672267,4.25,2.48135077435037,0
+508,-0.0320225088414099,0,0,0,NA,NA,0,NA,NA
+509,-0.00568405790680117,0.0875,8.75,3,79.5513811496792,0.73547472838923,6.75,2.37728375026158,0
+510,0.0179346519992578,0.145,14.5,7,71.8788866192124,0.672514619883041,5,2.47541177683863,0
+511,0.0031022517265319,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,4.87588301159087,0
+512,0.00668103558817165,0.035,3.5,3,60.2894839529434,0.689119170984456,1.75,1.07142857142857,0
+513,0.000604913380650487,0,0,0,NA,NA,0,NA,NA
+514,0.00283504305940369,0.035,3.5,1,77.1303955881659,0.740932642487047,3.5,7.94380024501256,5
+515,-0.000532961794642688,0.04,4,3,63.5997204177922,0.609375,2.5,3.25444173812866,0
+516,-0.00725325962848729,0.015,1.5,4,23.8418219056571,0.274836838288615,0.75,2.6967233022054,0
+517,0.00362925803685357,0.02,2,5,25.5687026184117,0.285714285714286,0.75,6.9153094291687,0
+518,-0.00111849467994261,0,0,0,NA,NA,0,NA,NA
+519,-0.00197803054776159,0.0625,6.25,2,79.5305749927826,0.706666666666667,5.25,6.33005630493164,0
+520,0.00358263691953084,0.0275,2.75,2,66.702712212269,0.794344473007712,2.5,29.2583510658958,10
+521,-0.0148183735008752,0,0,0,NA,NA,0,NA,NA
+522,0.00108913653145237,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5
+523,0.00236522767824681,0.025,2.5,3,49.6074439197622,0.526627218934911,1.25,27.1747798919678,18.0277557373047
+524,0.0121560597489588,0.0525,5.25,3,68.451524888486,0.637203166226913,3,2.67525427682059,0
+525,-0.0265028375978727,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+526,-0.00825379853939012,0.005,0.5,1,30.8308651382582,1,0.5,32.8845767974854,30.4138145446777
+527,-0.016409054212927,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,20.0999641418457,0
+528,-6.47946337630856e-05,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0
+529,0.0037901604417516,0.0325,3.25,2,70.3625424207658,0.827734711455642,3,0.769230769230769,0
+530,-0.000230056443324429,0.075,7.5,3,75.2128576159162,0.691119691119691,5.25,3.65956954956055,0
+531,-0.00414581641449331,0,0,0,NA,NA,0,NA,NA
+532,0.00070807320127642,0.0125,1.25,2,43.859649122807,0.594936708860759,1,27.690308380127,15
+533,-0.00733412511596271,0.0025,0.25,1,0,NA,0.25,0,0
+534,0.012027950881893,0.24,24,3,87.0648418903985,0.770501835985312,11.5,2.62303831179937,0
+535,0.0321004651126896,0.345,34.5,1,96.3025628341184,0.927299163940385,34.5,6.09509394825369,0
+536,0.0178188150718415,0.1625,16.25,4,83.5226360141196,0.788667283053758,12.25,3.09825577369103,0
+537,-0.00414892822047477,0.01,1,2,30.8308651382582,0.494949494949495,0.5,0,0
+538,-0.00944978436080419,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+539,-0.055384870107423,0,0,0,NA,NA,0,NA,NA
+540,-0.0875862074438191,0,0,0,NA,NA,0,NA,NA
+541,-0.0128241894139182,0,0,0,NA,NA,0,NA,NA
+542,0.000272034169756807,0,0,0,NA,NA,0,NA,NA
+543,-0.00383976928167613,0.0225,2.25,2,62.5208930833619,0.658994032395567,2,83.3399158053928,65
+544,-0.00355358965194682,0.15,15,1,91.6737426448862,0.95475113122172,15,2.2267791112264,0
+545,-0.0533603417687118,0,0,0,NA,NA,0,NA,NA
+546,-0.141838283995166,0,0,0,NA,NA,0,NA,NA
+547,-0.176142820455134,0,0,0,NA,NA,0,NA,NA
+548,-0.202274377960712,0,0,0,NA,NA,0,NA,NA
+549,-0.362126267791609,0.05,5,1,81.7256002368443,0.796264855687606,5,94.5861042022705,77.6208724975586
+550,-0.254629984535277,0,0,0,NA,NA,0,NA,NA
+551,-0.198106820303947,0,0,0,NA,NA,0,NA,NA
+552,-0.122208918860997,0,0,0,NA,NA,0,NA,NA
+553,-0.0272171949274889,0,0,0,NA,NA,0,NA,NA
+554,-0.043642023871987,0.0175,1.75,1,65.4774238937655,1,1.75,5.29586683000837,0
+555,-0.0308501934428932,0,0,0,NA,NA,0,NA,NA
+556,-0.127579881511629,0,0,0,NA,NA,0,NA,NA
+557,-0.198774096667767,0.0825,8.25,1,86.9391941099265,0.878897971541023,8.25,115.708309289181,105.948104858398
+558,0.170632331210654,0.9875,98.75,1,99.9667936270881,1,98.75,155.696338972261,109.201652526855
+559,0.222782846093178,1,100,1,100,NA,100,153.319524688721,95.1314926147461
+560,0.062047249682405,0.3425,34.25,2,95.4424887235526,0.939163498098859,33.75,138.631630890561,95
+561,0.00328539124710233,0.01,1,2,30.8308651382582,0.494949494949495,0.5,119.541500091553,110.113571166992
+562,-0.0253015870354875,0,0,0,NA,NA,0,NA,NA
+563,0.0848364319113898,0.665,66.5,1,98.8090595843688,0.982053659557922,66.5,198.402623628315,170
+564,0.0852056232313771,0.635,63.5,1,98.6583599459141,0.971221365258432,63.5,164.93895517184,113.357841491699
+565,-0.0839883711434231,0,0,0,NA,NA,0,NA,NA
+566,-0.0472448239070763,0,0,0,NA,NA,0,NA,NA
+567,-0.0564795651729219,0,0,0,NA,NA,0,NA,NA
+568,-0.191514538582414,0,0,0,NA,NA,0,NA,NA
+569,-0.355832219655276,0,0,0,NA,NA,0,NA,NA
+570,-0.0285617947237733,0.245,24.5,2,93.8423613577426,0.939795304033715,24.25,17.1204788441561,0
+571,0.0873051158047019,0.67,67,1,98.8331871391418,0.951804325561781,67,49.7464689354398,10
+572,-0.0674213617806345,0.005,0.5,2,0,1,0.25,20.1942176818848,18.0277557373047
+573,-0.0125261600157319,0.32,32,2,93.3665169110183,0.90532693764201,27.75,38.7061918824911,14.1421356201172
+574,0.110309094374534,0.9675,96.75,1,99.9123308655226,1,96.75,107.426233030413,40.3112869262695
+575,0.120817006540019,0.9425,94.25,1,99.8418294460568,0.975676497415628,94.25,187.291051788735,120.933868408203
+576,0.0611510601881309,0.395,39.5,1,96.8888706928871,0.943003704759191,39.5,272.77791721006,221.415893554688
+577,0.0375542353950732,0.37,37,2,96.1637540775773,0.912141978562643,36.75,240.262764286351,215
+578,0.0504858496238012,0.705,70.5,1,98.9948280613114,0.94243684042213,70.5,263.683182844879,215.232421875
+579,0.031216032019438,0.395,39.5,1,96.8888706928871,0.977201481903676,39.5,275.738108284866,233.773406982422
+580,0.0115647569539578,0.1625,16.25,1,92.2068700432412,0.957733456610751,16.25,229.536825326773,196.468826293945
+581,0.000287994173668267,0,0,0,NA,NA,0,NA,NA
+582,-0.00156649688058678,0,0,0,NA,NA,0,NA,NA
+583,-0.0308838423151246,0,0,0,NA,NA,0,NA,NA
+584,-0.0365042065131274,0,0,0,NA,NA,0,NA,NA
+585,-0.0620767766713107,0,0,0,NA,NA,0,NA,NA
+586,-0.0544838380254805,0,0,0,NA,NA,0,NA,NA
+587,-0.0362343898681866,0,0,0,NA,NA,0,NA,NA
+588,-0.0304917136759468,0,0,0,NA,NA,0,NA,NA
+589,-0.0267853060794005,0,0,0,NA,NA,0,NA,NA
+590,-0.0909998248193006,0,0,0,NA,NA,0,NA,NA
+591,-0.04287443630094,0.0025,0.25,1,0,NA,0.25,5,5
+592,-0.00256584729966562,0.0275,2.75,2,61.3556756349917,0.588688946015424,1.75,5.75012796575373,0
+593,-0.040525086854957,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,7.6502815246582,5
+594,-0.0729864670702955,0.0025,0.25,1,0,NA,0.25,0,0
+595,-0.0455732100459863,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,83.2179587227958,78.1025009155273
+596,-0.0474275839727488,0,0,0,NA,NA,0,NA,NA
+597,-0.0887323667295277,0,0,0,NA,NA,0,NA,NA
+598,-0.145349142681807,0,0,0,NA,NA,0,NA,NA
+599,-0.18729235239327,0,0,0,NA,NA,0,NA,NA
+600,0.103073477045109,0.7925,79.25,1,99.350989933666,0.97582302453963,79.25,36.3659259423096,0
+601,0.0511902012526116,0.5925,59.25,3,97.059354246222,0.750723594011827,55.5,0.325194378945395,0
+602,0.0444429497253441,0.4275,42.75,4,92.8564570101636,0.733832397587856,26.75,1.37302389758372,0
+603,0.0393083454096632,0.5925,59.25,1,98.4255810267197,0.867052583472974,59.25,0.713679897131296,0
+604,0.0168205638734162,0.2925,29.25,3,93.5874723867267,0.753316887792519,27.25,1.36752136752137,0
+605,0.0263039135208965,0.2475,24.75,5,87.5573523337184,0.783493224831088,17.75,0.858585858585859,0
+606,0.0292858784937016,0.2525,25.25,3,91.858793324024,0.852177608603263,23,0.99009900990099,0
+607,0.0078372872005275,0.17,17,4,82.3037669919093,0.817758428672674,7.25,1.25,0
+608,-0.0157030538012077,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,6.01015254429409,5
+609,-0.00237708860748626,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,2.43872397286551,0
+610,0.00969840920564366,0.1,10,3,78.3524875281143,0.66832504145937,5,2.40533008575439,0
+611,0.00625400381863074,0.065,6.5,6,59.4001652385838,0.608712664666754,3.25,5.28638040102445,0
+612,0.00412216244571937,0.04,4,2,68.0630069279063,0.696180555555556,2.5,9.10424220561981,0
+613,-0.00584985844197035,0,0,0,NA,NA,0,NA,NA
+614,-0.0245089929008236,0.005,0.5,2,0,1,0.25,22.4767894744873,18.0277557373047
+615,-0.0124965202661951,0,0,0,NA,NA,0,NA,NA
+616,-0.0211351510018721,0.0075,0.75,1,44.4894453484604,1,0.75,9.41713587443034,7.07106781005859
+617,-0.00960993390641306,0.0075,0.75,1,44.4894453484604,1,0.75,33.7397689819336,31.6227760314941
+618,-0.000381947868427233,0.0125,1.25,1,58.1880425789518,1,1.25,11.6409862518311,7.07106781005859
+619,-0.0391711426310792,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,5.59173366001674,5
+620,0.017520457376304,0.27,27,2,94.3124407666573,0.873551106427819,26.5,1.64253280780934,0
+621,0.00460974483899463,0.06,6,1,83.7764057650598,0.972004479283315,6,0.416666666666667,0
+622,0.00785458275443489,0.0325,3.25,3,63.8929039360284,0.770312948607522,2.75,30.9968041640062,25
+623,0.0135125615664037,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,27.4474877251519,20
+624,-0.00120610300069529,0.0325,3.25,4,49.3286888608125,0.540625897215045,1.5,8.66948905357948,0
+625,-0.0155157638252422,0.025,2.5,2,58.1880425789518,0.605522682445759,1.25,21.9185459136963,0
+626,0.00135107283918842,0.03,3,3,56.9777156919704,0.575500303214069,1.75,2.91666666666667,0
+627,-0.0240419790457236,0.03,3,3,53.6515440961723,0.575500303214069,1.5,2.91666666666667,0
+628,-0.0115818136898179,0.07,7,3,79.4270457812905,0.8805256869773,6.5,11.6177881785801,0
+629,0.00407185000109166,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,3.55486180232121,0
+630,-0.00563212483834832,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,7.61932033962674,0
+631,-0.00465045299889084,0,0,0,NA,NA,0,NA,NA
+632,-0.00136228831359631,0,0,0,NA,NA,0,NA,NA
+633,0.0107883943380102,0.1575,15.75,1,92.0012465610797,0.881305637982196,15.75,3.18024347698878,0
+634,0.0930339134220412,0.63,63,2,97.1105549384265,0.89120476408612,59,6.70196806438385,0
+635,0.0538475232757514,0.49,49,2,97.4282138525017,0.886877828054299,48.75,9.41646385192871,0
+636,-0.00878983461987446,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4.41421356201172,0
+637,-0.0382686261439085,0,0,0,NA,NA,0,NA,NA
+638,-0.0470656124933885,0,0,0,NA,NA,0,NA,NA
+639,-0.0276077884528604,0,0,0,NA,NA,0,NA,NA
+640,0.0109095261410494,0.0625,6.25,2,81.4026561082449,0.84,6,10.4122883605957,0
+641,-0.00739936330503951,0.0325,3.25,2,65.4338549075391,0.655469422911283,2.25,34.8246974945068,7.07106781005859
+642,-0.0328440664105028,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,30.0507627214704,25
+643,-0.0150980059994993,0.0025,0.25,1,0,NA,0.25,5,5
+644,0.00990376397427553,0.13,13,1,90.6657843098624,0.935425545654139,13,1.64081683525672,0
+645,-0.0367537191174779,0,0,0,NA,NA,0,NA,NA
+646,-0.0872382181198572,0,0,0,NA,NA,0,NA,NA
+647,-0.175281072342768,0,0,0,NA,NA,0,NA,NA
+648,-0.204199904175475,0,0,0,NA,NA,0,NA,NA
+649,-0.201485660821199,0,0,0,NA,NA,0,NA,NA
+650,-0.205543858669698,0,0,0,NA,NA,0,NA,NA
+651,-0.0013871117826784,0.57,57,1,98.2919349628155,0.972640218878249,57,139.230071017617,100.498748779297
+652,-0.0478516823735845,0.3675,36.75,1,96.5811989595545,0.982367721174897,36.75,90.8940374932322,56.5685424804688
+653,-0.0775031848572871,0,0,0,NA,NA,0,NA,NA
+654,-0.0703270294955291,0.045,4.5,3,62.3335933120036,0.650959860383944,2.5,7.7509421242608,0
+655,-0.184881270135193,0,0,0,NA,NA,0,NA,NA
+656,-0.183543954039924,0,0,0,NA,NA,0,NA,NA
+657,-0.0931491272593848,0.3475,34.75,1,96.3348533717898,0.963797628744683,34.75,131.060114249909,112.361022949219
+658,0.169255058243871,1,100,1,100,NA,100,192.534381332397,134.629119873047
+659,0.204091840811307,0.95,95,1,99.8632718311308,0.972260748959778,95,217.837885324579,190.394317626953
+660,-0.114700013304282,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,196.701448880709,192.418823242188
+661,-0.00881106276812716,0,0,0,NA,NA,0,NA,NA
+662,-0.00810941858406295,0,0,0,NA,NA,0,NA,NA
+663,0.0901555981316778,0.73,73,1,99.1030975159931,0.979761181946974,73,163.549532302438,116.619033813477
+664,0.0249006990501948,0.3675,36.75,1,96.5811989595545,0.970612868624829,36.75,128.290528589365,93.9414672851562
+665,-0.110221205798443,0,0,0,NA,NA,0,NA,NA
+666,-0.0153446287966619,0,0,0,NA,NA,0,NA,NA
+667,-0.0476065140674473,0,0,0,NA,NA,0,NA,NA
+668,-0.232624693652615,0,0,0,NA,NA,0,NA,NA
+669,-0.36647820468992,0,0,0,NA,NA,0,NA,NA
+670,-0.0294816444923345,0.045,4.5,3,66.5798684792646,0.650959860383944,2.5,0.277777777777778,0
+671,0.050468295429564,0.5825,58.25,2,98.0044924584924,0.955950168628261,58,1.35664855564101,0
+672,-0.034465440160966,0.09,9,3,75.3585149481611,0.725274725274725,4.5,19.0753909216987,5
+673,0.0504137833531877,0.61,61,1,98.5243747403739,0.949392712550607,61,89.5152142008797,25
+674,-0.0213751205612425,0.39,39,2,93.3818139464019,0.868623978979837,21.75,168.735538238134,126.194297790527
+675,0.105713345537661,0.8875,88.75,1,99.6763695533234,0.96031746031746,88.75,246.71552614024,180.623916625977
+676,0.0212227812322089,0.5575,55.75,1,98.2142154717639,0.929378531073446,55.75,309.662753939094,260.048065185547
+677,0.0503496365662431,0.47,47,1,97.5860530790582,0.934938191281718,47,351.488138077107,311.4482421875
+678,-0.018566854760893,0.0075,0.75,1,44.4894453484604,1,0.75,318.223724365234,317.529541015625
+679,-0.0442682967078872,0.115,11.5,1,89.742951983695,0.942054179342315,11.5,233.579182168712,205.548034667969
+680,0.143407352624772,0.745,74.5,1,99.1654268803843,0.965048407954982,74.5,162.128511851266,93.0053787231445
+681,0.0482598768924026,0.2925,29.25,1,95.5315755048205,0.939995999733315,29.25,100.639885339981,75
+682,0.0153214030907839,0.0225,2.25,3,52.2992512649976,0.658994032395567,1.75,23.9671785566542,15.8113880157471
+683,0.0119622811597947,0.065,6.5,1,84.6193541959806,0.97391417764445,6.5,46.0612317598783,35
+684,-0.0267462102966965,0.03,3,1,74.8763016215986,0.939357186173438,3,24.7327783902486,15
+685,-0.0275463962070353,0.0275,2.75,1,73.5251216233933,1,2.75,91.4882236827504,83.8152694702148
+686,-0.0178006747881227,0.045,4.5,2,70.5144465099844,0.806088811324413,3,7.48558945126004,0
+687,0.0399117392556218,0.475,47.5,1,97.6265657883157,0.864718614718615,47.5,22.6276888194837,0
+688,0.000618776983646967,0.155,15.5,3,85.191143976158,0.824676747753671,11,15.9177207023867,0
+689,-0.00506410862961502,0.0375,3.75,4,52.1550716075299,0.480519480519481,1.25,6.10018768310547,0
+690,-0.039128357181944,0.0225,2.25,2,57.1671054080984,0.573742540494459,1.5,6.89678531222873,5
+691,-0.0403680436641116,0.025,2.5,3,52.7822223034531,0.526627218934911,1.5,4.5,0
+692,-0.0923643061689472,0.035,3.5,2,65.4774238937655,0.689119170984456,1.75,7.88017681666783,5
+693,-0.170700752632692,0,0,0,NA,NA,0,NA,NA
+694,-0.0510838970122859,0,0,0,NA,NA,0,NA,NA
+695,-0.000846066176454769,0,0,0,NA,NA,0,NA,NA
+696,-0.0530851553194225,0,0,0,NA,NA,0,NA,NA
+697,-0.109312825478773,0,0,0,NA,NA,0,NA,NA
+698,-0.159557587411255,0,0,0,NA,NA,0,NA,NA
+699,-0.118171736649238,0.0425,4.25,1,79.7330921014386,0.7911227154047,4.25,1.76470588235294,0
+700,0.121297195308107,0.71,71,2,98.6886855942237,0.838563864135348,70.5,48.0601198505348,0
+701,0.025275548392674,0.3075,30.75,3,93.0089868738248,0.857538327046672,28,1.5714168393515,0
+702,-0.0110843226664292,0.1675,16.75,3,89.2253540172289,0.774133107466441,15.25,0.0746268656716418,0
+703,0.0112119161830924,0.2675,26.75,4,89.8385867941243,0.766574121558295,20.25,1.46844313077838,0
+704,0.0272498161580734,0.41,41,4,92.4432809272389,0.769895611179706,26.75,5.29140299122508,0
+705,0.0122578314325983,0.0875,8.75,3,76.0789223527767,0.754369390647142,5.25,6.32951534816197,0
+706,0.0406610378539517,0.385,38.5,3,95.0823104362545,0.810393863655951,35.25,3.35878221090738,0
+707,0.0270619132013962,0.3875,38.75,3,92.1860425213194,0.776584317937701,20.5,1.61498371247322,0
+708,0.0206357884833051,0.2675,26.75,4,91.2023250741994,0.837309236237599,24,0.373831775700935,0
+709,0.00755594745998678,0.205,20.5,1,93.6387867289635,0.895901106050748,20.5,0.48780487804878,0
+710,0.0177102145924619,0.24,24,4,89.9616182847875,0.80110159118727,19,2.6543744802475,0
+711,-0.0222936893126609,0.0175,1.75,2,53.5456806074901,0.872773536895674,1.5,1.42857142857143,0
+712,-0.00118544419299269,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4,0
+713,-0.00178856148371324,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,4.57024683271136,0
+714,0.000209857403706337,0.015,1.5,3,37.593984962406,0.419869470630892,1,9.01046593983968,5
+715,0.018061340583663,0.185,18.5,2,89.1727280561854,0.848985370457763,14.25,5.27487664609342,0
+716,0.00024156801717254,0,0,0,NA,NA,0,NA,NA
+717,-0.0195976229314476,0,0,0,NA,NA,0,NA,NA
+718,0.00772896031096934,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,15.2291638510568,7.07106781005859
+719,-0.0147054956901957,0.0325,3.25,2,70.3625424207658,0.827734711455642,3,2.24267372718224,0
+720,0.0290402597055481,0.375,37.5,2,94.841200334701,0.848727272727273,33.75,1.82426406860352,0
+721,0.0766562615224393,0.7575,75.75,1,99.2159474776692,0.927780887211801,75.75,1.37647217099029,0
+722,0.08688867920544,0.7075,70.75,3,97.9082020283852,0.89075252233147,69.25,2.27910949653113,0
+723,0.0487444082661568,0.4,40,1,96.9413745785043,0.892290249433107,40,3.15003700256348,0
+724,-0.026968547836841,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0
+725,-0.00187247667240626,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,19.3604955673218,15
+726,-0.00117323060126637,0,0,0,NA,NA,0,NA,NA
+727,-0.00280127522448083,0.0025,0.25,1,0,NA,0.25,15,15
+728,-0.0234505174442165,0.07,7,3,79.6316802616589,0.7610513739546,6.25,6.75615562711443,0
+729,-0.00832061664807952,0,0,0,NA,NA,0,NA,NA
+730,-0.00247252479253802,0,0,0,NA,NA,0,NA,NA
+731,-0.0200229166012286,0.005,0.5,1,30.8308651382582,1,0.5,23.6803398132324,22.3606796264648
+732,0.00917405145541125,0.1375,13.75,2,88.3871579302679,0.829138062547674,12.5,5.9367168079723,0
+733,0.00267604163556825,0.2,20,3,90.3640460614912,0.88556338028169,18.75,5.39142031669617,0
+734,0.131645131896075,0.8525,85.25,1,99.5628383044854,0.800289055314676,85.25,7.9287902406933,0
+735,0.0179644977340286,0.125,12.5,4,79.9182011449919,0.757983193277311,8,5.8187036895752,0
+736,0.0122789893150616,0.1025,10.25,5,71.1333699987191,0.693189616890719,4.5,9.35412355748618,0
+737,0.0226039420522284,0.0675,6.75,1,85.0052537126447,0.850364735956107,6.75,31.4479429456923,20.6155281066895
+738,-0.0317817823200312,0,0,0,NA,NA,0,NA,NA
+739,-0.02442355103718,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,42.2336485726493,36.0555114746094
+740,-0.00892474377236795,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,9.70437405904134,5
+741,-0.0387786489924474,0.0075,0.75,1,44.4894453484604,1,0.75,25,20
+742,-0.0525596813115408,0.1425,14.25,2,88.0711209732918,0.857202356161123,12.5,3.20554418731154,0
+743,0.0292683652184496,0.2925,29.25,5,86.1864518093751,0.746649776651777,18.25,2.15291468302409,0
+744,0.0187023385909561,0,0,0,NA,NA,0,NA,NA
+745,0.010082643772671,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,148.282071794782,138.293167114258
+746,0.0129576274787723,0.01,1,1,52.6315789473684,0.747474747474748,1,184.031051635742,178.044921875
+747,-0.0509360581110923,0,0,0,NA,NA,0,NA,NA
+748,-0.0123686353982703,0,0,0,NA,NA,0,NA,NA
+749,-0.106921208799431,0,0,0,NA,NA,0,NA,NA
+750,-0.0962829627562314,0.185,18.5,1,93.0265643427559,0.952807928268051,18.5,89.0174461570946,60
+751,0.128250339246879,0.7825,78.25,1,99.3133324321661,0.961036430937074,78.25,120.533773367397,61.8465843200684
+752,0.00445006090638344,0.22,22,1,94.042067560231,0.975502204801568,22,123.893282110041,102.95630645752
+753,-0.0591571854008362,0,0,0,NA,NA,0,NA,NA
+754,-0.222416279613972,0,0,0,NA,NA,0,NA,NA
+755,-0.232949501089752,0,0,0,NA,NA,0,NA,NA
+756,-0.186736214840785,0,0,0,NA,NA,0,NA,NA
+757,0.0235560586448992,0.4825,48.25,1,97.686149992119,0.983806979191968,48.25,141.534663225085,106.066017150879
+758,0.183753427847987,0.995,99.5,1,99.9867925566623,1,99.5,175.542950098239,115.108642578125
+759,0.0962687001706217,0.6425,64.25,1,98.697022509981,0.982553828707675,64.25,151.275731186922,96.1769180297852
+760,-0.096172366165556,0,0,0,NA,NA,0,NA,NA
+761,-0.00672535503989252,0,0,0,NA,NA,0,NA,NA
+762,-0.0199224318586812,0,0,0,NA,NA,0,NA,NA
+763,-0.0340722737891792,0,0,0,NA,NA,0,NA,NA
+764,-0.0435012107774674,0,0,0,NA,NA,0,NA,NA
+765,-0.0688941690193678,0,0,0,NA,NA,0,NA,NA
+766,-0.0232536300072024,0,0,0,NA,NA,0,NA,NA
+767,-0.0464380422467366,0,0,0,NA,NA,0,NA,NA
+768,-0.294418192626908,0,0,0,NA,NA,0,NA,NA
+769,-0.37319505225867,0,0,0,NA,NA,0,NA,NA
+770,-0.125359322589211,0.0325,3.25,3,57.0700072594823,0.598047660063164,1.75,16.1247385465182,0
+771,0.0199298994537094,0.275,27.5,5,85.3493859980493,0.798994974874372,14,1.27595762772994,0
+772,-0.0184830209452775,0.0925,9.25,1,87.9580013362782,0.945806801246444,9.25,0.675675675675676,0
+773,-0.0710583624608989,0.0075,0.75,1,44.4894453484604,1,0.75,153.360209147135,150
+774,0.0312503548823588,0.5175,51.75,1,97.9468626646641,0.940784603997039,51.75,182.039918245325,157.003189086914
+775,-0.0486057481344324,0.295,29.5,2,94.3368242899093,0.927089547292371,28.75,194.73454724328,160.078109741211
+776,-0.123116102975328,0,0,0,NA,NA,0,NA,NA
+777,-0.100901724953437,0.09,9,1,87.719298245614,0.926739926739927,9,310.849931504991,286.574584960938
+778,-0.010061080003361,0.225,22.5,1,94.1674468064267,0.927870166299339,22.5,254.28915049235,219.203109741211
+779,-0.18194119096559,0,0,0,NA,NA,0,NA,NA
+780,-0.104364652377553,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,88.5063995361328,74.3303451538086
+781,0.109040317765703,0.6225,62.25,1,98.5923763102686,0.97157718216184,62.25,45.3738036864254,5
+782,0.00405106147547485,0.1275,12.75,2,84.4093715978921,0.841912854461022,6.5,27.5990875842525,0
+783,-0.00116769004762318,0.04,4,2,68.381247698108,0.826388888888889,3,20.6828261613846,5
+784,0.00197126411966565,0.095,9.5,3,77.8120160244772,0.824607559414189,7,5.11209236948114,0
+785,-0.017129434098988,0.0575,5.75,2,77.1254332313562,0.705275567344533,4.5,13.6479659702467,0
+786,-0.0248200243606811,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,3,0
+787,0.00979667331936071,0.115,11.5,4,78.9136662773754,0.811676082862524,8.75,4.75933091536812,0
+788,0.00259526126614674,0.0825,8.25,7,61.1300503397353,0.535775557573923,2.5,9.52984526663116,0
+789,-0.0029196179563769,0.02,2,3,48.963481806847,0.591836734693878,1.5,3.75,0
+790,-0.05329985676246,0,0,0,NA,NA,0,NA,NA
+791,-0.0465062732214642,0,0,0,NA,NA,0,NA,NA
+792,-0.152521208735416,0,0,0,NA,NA,0,NA,NA
+793,-0.139749415777624,0,0,0,NA,NA,0,NA,NA
+794,-0.0417157671826135,0,0,0,NA,NA,0,NA,NA
+795,0.00282348306603126,0.0025,0.25,1,0,NA,0.25,95.5248641967773,95.5248641967773
+796,-0.051679907295038,0,0,0,NA,NA,0,NA,NA
+797,-0.159100946211256,0,0,0,NA,NA,0,NA,NA
+798,-0.17544428858906,0,0,0,NA,NA,0,NA,NA
+799,-0.0893565368653799,0.205,20.5,1,93.6387867289635,0.913250921708957,20.5,9.26714869243343,0
+800,0.0555538235114,0.49,49,1,97.7443609022556,0.913811678517561,49,44.9380348263955,11.1803398132324
+801,0.0539384789735777,0.6175,61.75,2,97.121489077831,0.722717369776193,55,0.947943868907357,0
+802,0.0414360464231868,0.565,56.5,1,98.2611567869712,0.841646872525732,56.5,0.199115044247788,0
+803,0.0350746997669921,0.565,56.5,1,98.2611567869712,0.90717230458405,56.5,0.350186440796979,0
+804,0.0115413978470224,0.0575,5.75,8,48.626001002288,0.440023577954612,2,5.88443299998408,0
+805,0.0188068081359961,0.105,10.5,6,69.6997615264347,0.62231489495633,4.25,6.27174563634963,0
+806,0.0427671423621541,0.4125,41.25,4,93.3205970689906,0.664053751399776,29,3.27162005106608,0
+807,0.0363020269877143,0.3375,33.75,5,87.4127339200773,0.717748120877435,12.75,3.362195248074,0
+808,0.0327281483742991,0.2625,26.25,5,91.4206589595005,0.741727199354318,23.5,5.83391017005557,0
+809,0.0117411789281323,0.09,9,6,67.6737002205507,0.652014652014652,4.5,1.02975188361274,0
+810,0.0198800545828271,0.2075,20.75,4,85.7903908643113,0.751067619476813,12.5,0.180722891566265,0
+811,0.0203056184123125,0.215,21.5,2,93.1936191051187,0.883435327421839,21.25,0.314779858256495,0
+812,0.0175753376331704,0.1525,15.25,4,85.4299971257324,0.8330272165637,13.25,0.0819672131147541,0
+813,-0.00103392623839227,0.115,11.5,2,85.4622080461387,0.869621903520209,10.25,1.95652173913043,0
+814,-0.0121372493585659,0.0025,0.25,1,0,NA,0.25,0,0
+815,-0.00329974296044384,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0
+816,-0.0023870945848148,0,0,0,NA,NA,0,NA,NA
+817,0.000397386671629647,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,12.9805335998535,5
+818,-0.0183401089146355,0,0,0,NA,NA,0,NA,NA
+819,0.00526703308452852,0.1125,11.25,2,83.1849485409543,0.836916234247591,6.25,3.09994388156467,0
+820,-0.0454284478839691,0.065,6.5,2,81.6967792615868,0.895656710577801,6.25,0.430013069739709,0
+821,0.00555920692289874,0.06,6,2,77.724916451809,0.860022396416573,5.25,3.39595063527425,0
+822,0.0417154718787879,0.3575,35.75,1,96.460610420978,0.91089197136662,35.75,2.14383596140188,0
+823,0.105386032200768,0.8675,86.75,2,99.3768336941664,0.873446847676024,86.5,1.7381472189076,0
+824,0.0210381726136984,0.2675,26.75,4,88.7697243725607,0.816088701833808,17,1.72698211669922,0
+825,0.0209624285333166,0.1575,15.75,7,76.8028187648472,0.708659293229026,9.25,3.31738384186275,0
+826,0.00627807407170621,0.0125,1.25,2,43.859649122807,0.594936708860759,1,27.7201889038086,18.0277557373047
+827,0.0121084502153826,0.0325,3.25,4,49.3251963757179,0.540625897215045,1.25,6.57086915236253,0
+828,-0.00569164409924269,0.0025,0.25,1,0,NA,0.25,10,10
+829,-0.0146665892277269,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,22.2212480545044,15.8113880157471
+830,-0.00178630281789083,0.04,4,4,56.9549598982244,0.652777777777778,2.5,7.88617038726807,0
+831,0.001962164489305,0.145,14.5,2,90.3996561109976,0.859649122807018,14.25,5.04967876960491,0
+832,0.019089066754168,0.2625,26.25,2,94.0651936750131,0.899560577526679,25.75,7.52344669160389,0
+833,-0.080448467246606,0.1475,14.75,4,80.3200124134323,0.712494968661952,7.25,17.5001672971047,0
+834,0.0428532371699112,0.6025,60.25,2,95.9113416800251,0.79874213836478,46.75,14.1015788509638,0
+835,0.0153459116461636,0.085,8.5,4,71.5213944032274,0.668227946916471,4.75,4.77724726059858,0
+836,0.00113132184262213,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,4.41421356201172,0
+837,0.0258283300889315,0,0,0,NA,NA,0,NA,NA
+838,0.0226141488780559,0.0025,0.25,1,0,NA,0.25,138.654235839844,138.654235839844
+839,0.00823113328506224,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,126.557551574707,99.6242904663086
+840,-0.00549080563723692,0,0,0,NA,NA,0,NA,NA
+841,-0.0256284857696301,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,51.9694951375326,44.7213592529297
+842,0.00839746167999692,0.175,17.5,3,87.7610620196771,0.763488543976349,13.25,6.75183244432722,0
+843,0.0448659780812477,0.4225,42.25,4,92.464199344312,0.872349872349872,36.75,1.21512034941002,0
+844,0.00792131523630815,0.0275,2.75,2,68.062694823769,0.588688946015424,2.5,21.3744527643377,10
+845,0.00295411028357648,0.025,2.5,2,58.7318836713039,0.605522682445759,1.5,138.418934631348,110.113571166992
+846,0.00908611494511206,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,72.738929601816,60.4152297973633
+847,-0.00338243728640009,0.07,7,3,77.5515856366424,0.80884109916368,6,60.65586239951,44.7213592529297
+848,0.0112918767736846,0,0,0,NA,NA,0,NA,NA
+849,-0.0115796047770255,0,0,0,NA,NA,0,NA,NA
+850,-0.0228290704950632,0.02,2,1,68.0470115164975,0.897959183673469,2,52.3082242012024,46.0977210998535
+851,-0.00717288984589686,0.09,9,1,87.719298245614,0.963369963369963,9,52.3700175815158,40
+852,-0.0325902458629571,0,0,0,NA,NA,0,NA,NA
+853,-0.101957330661826,0,0,0,NA,NA,0,NA,NA
+854,-0.328828494176269,0,0,0,NA,NA,0,NA,NA
+855,-0.197092497572303,0,0,0,NA,NA,0,NA,NA
+856,-0.18341206136065,0,0,0,NA,NA,0,NA,NA
+857,-0.128571698596061,0,0,0,NA,NA,0,NA,NA
+858,0.0301234490280331,0.445,44.5,1,97.3733506421488,0.928804184123333,44.5,100.98527443275,55.2268028259277
+859,-0.00498963622027077,0.415,41.5,1,97.093152360986,0.949723479135244,41.5,58.9333052807544,5
+860,-0.0554506093794407,0,0,0,NA,NA,0,NA,NA
+861,-0.0145046423706708,0,0,0,NA,NA,0,NA,NA
+862,-0.0488433743260293,0,0,0,NA,NA,0,NA,NA
+863,-0.0424067186304455,0.0075,0.75,1,44.4894453484604,1,0.75,43.251335144043,40.3112869262695
+864,-0.0505612173671398,0,0,0,NA,NA,0,NA,NA
+865,-0.0451323654968292,0,0,0,NA,NA,0,NA,NA
+866,0.0837143631550134,0.52,52,1,97.9644711022996,0.940783807062877,52,123.724877284123,82.4621124267578
+867,-0.0293043321960067,0.14,14,1,91.1967767414513,0.892112203308559,14,157.530277252197,145
+868,-0.160415026918054,0,0,0,NA,NA,0,NA,NA
+869,-0.321919646281749,0,0,0,NA,NA,0,NA,NA
+870,-0.0612825061967305,0.175,17.5,2,88.1407043663321,0.89159891598916,12.75,30.6017872401646,14.1421356201172
+871,-0.0173054208554817,0.0575,5.75,2,74.3586532700877,0.705275567344533,3.25,0,0
+872,-0.0674348876157455,0,0,0,NA,NA,0,NA,NA
+873,-0.0230668220026564,0,0,0,NA,NA,0,NA,NA
+874,-0.0514242354375892,0,0,0,NA,NA,0,NA,NA
+875,0.0589700909655016,0.41,41,1,97.0434862163892,0.943876978336514,41,174.712513528219,150.416091918945
+876,-0.0152337499821442,0.485,48.5,1,97.7057035934975,0.956850053937432,48.5,149.867565666277,120
+877,-0.0517617177230932,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,134.440979003906,130
+878,-0.0424234423734652,0,0,0,NA,NA,0,NA,NA
+879,-0.0625353712663673,0,0,0,NA,NA,0,NA,NA
+880,-0.165674983132631,0,0,0,NA,NA,0,NA,NA
+881,-0.0712821204675129,0,0,0,NA,NA,0,NA,NA
+882,-0.0218212098161894,0.0225,2.25,2,56.58687201489,0.658994032395567,1.5,3.33333333333333,0
+883,0.000194471811992116,0.095,9.5,3,79.3395831420961,0.771989827238446,5.25,6.74245272184673,0
+884,-0.0457409350663693,0.0725,7.25,3,74.487246347766,0.610024660205311,4.25,6.04560260114999,0
+885,0.0764811493961952,0.4175,41.75,3,93.9140057822291,0.894097318990023,38,17.7873110742626,0
+886,-0.053972689501752,0.055,5.5,2,77.6847378303052,0.875505757858699,5,19.3682149540294,5
+887,0.0117923440775849,0.215,21.5,1,93.912339662796,0.975021855876108,21.5,31.8714549707812,15
+888,-0.0171828793053282,0.07,7,2,79.5497525511541,0.83273596176822,6,12.6283630643572,5
+889,0.0181320653281091,0.1,10,3,77.342357828089,0.78441127694859,5.5,26.1390851020813,0
+890,-0.0512118753132381,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,29.2516937255859,25
+891,-0.0281359886195014,0,0,0,NA,NA,0,NA,NA
+892,-0.203932174269576,0,0,0,NA,NA,0,NA,NA
+893,-0.131840394013561,0,0,0,NA,NA,0,NA,NA
+894,-0.0432875471774514,0,0,0,NA,NA,0,NA,NA
+895,-0.0132039171797805,0,0,0,NA,NA,0,NA,NA
+896,-0.0710949905496091,0,0,0,NA,NA,0,NA,NA
+897,-0.191344677265733,0,0,0,NA,NA,0,NA,NA
+898,-0.189560793563724,0,0,0,NA,NA,0,NA,NA
+899,-0.0280862675048411,0.415,41.5,1,97.093152360986,0.97206859951958,41.5,19.3075611275363,0
+900,0.0502725814015139,0.3425,34.25,1,96.2699193924551,0.96958174904943,34.25,54.8876436609421,30.4138145446777
+901,0.0561324150650762,0.645,64.5,4,96.1713731421784,0.655906453212026,54.75,0.843860537506813,0
+902,0.0755338292422675,0.835,83.5,1,99.5034141561623,0.827114248667339,83.5,0.965348523533987,0
+903,0.0747441941360012,0.935,93.5,1,99.8201295789998,0.913203862428122,93.5,0.433345101096413,0
+904,0.0549819559146999,0.5775,57.75,6,95.615006979724,0.758371202240558,52.75,0.807513761313963,0
+905,0.0380980874862507,0.375,37.5,7,92.6190736468968,0.674181818181818,31,2.81883720397949,0
+906,0.035587413666226,0.2425,24.25,8,84.0781555705114,0.734456204241114,10.75,3.19114751914113,0
+907,0.0344549107590865,0.3125,31.25,6,84.1706049445207,0.698838606327593,10.5,1.97914834594727,0
+908,0.0370937287413471,0.3575,35.75,4,92.4049585015422,0.72079484361541,26,4.04899245042067,0
+909,0.000982167241591014,0.005,0.5,2,0,1,0.25,2.5,0
+910,0.0141723215055208,0.1225,12.25,4,75.5573861880214,0.715099715099715,4.5,4.58091042966259,0
+911,0.00776747903537313,0.035,3.5,1,77.1303955881658,0.689119170984456,3.5,0.714285714285714,0
+912,0.0204415778785187,0.1475,14.75,4,85.0179825442078,0.792996377436605,12,1.00240907830707,0
+913,0.0369436698436039,0.3775,37.75,5,92.5429369671839,0.872413843098024,33.5,0.364238410596026,0
+914,0.0125820535157618,0.1975,19.75,3,87.1500314994743,0.848687138406765,13.75,1.07594936708861,0
+915,0.0174911565316597,0.1175,11.75,4,79.1452838766873,0.759206798866855,5.75,0.531914893617021,0
+916,-0.0126985324607995,0.065,6.5,2,76.2789912180676,0.869570888222251,4.25,1.50546675461989,0
+917,-0.0302658468869322,0,0,0,NA,NA,0,NA,NA
+918,-0.0088808589329534,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+919,0.0187696381443948,0.155,15.5,5,77.5515634146095,0.715099715099715,5,3.20333462376748,0
+920,-0.0162874900121926,0.08,8,3,75.1676020260744,0.790969899665552,4.75,10.2776180505753,0
+921,-0.0305713390930032,0.1325,13.25,2,84.8453413926557,0.733983595655066,7.5,1.45417109075582,0
+922,0.0107096451574034,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+923,0.0271293946750802,0.165,16.5,4,81.5106522313125,0.770892996615465,9,3.75443510575728,0
+924,0.0407807576951745,0.4125,41.25,4,92.2854624363991,0.748040313549832,23.75,1.33028772527521,0
+925,0.0564380441458979,0.5375,53.75,3,94.8289058188597,0.772972972972973,28.75,2.02422396637673,0
+926,0.0306867072184832,0.22,22,5,86.8826130895459,0.746856116282868,14.5,1.58445167541504,0
+927,0.0124345039763966,0.0825,8.25,4,77.9389075824068,0.737612271672217,6.75,2.16675197716915,0
+928,-0.00434777253674838,0.0125,1.25,2,43.859649122807,0.594936708860759,1,17.718673324585,11.1803398132324
+929,-0.00978929047260294,0.0025,0.25,1,0,NA,0.25,10,10
+930,-0.0114926982460111,0.0425,4.25,2,74.792243767313,0.91644908616188,4,2.54420044842888,0
+931,0.0364816219060594,0.4075,40.75,3,93.2312992773098,0.80309423347398,22,4.00500726992367,0
+932,0.00935521935731231,0.0875,8.75,4,74.9280607019921,0.73547472838923,5.75,3.44699859619141,0
+933,0.0767279574780878,0.71,71,2,98.7561066412976,0.903138318481209,70.75,13.1660030727655,0
+934,-0.00517639252600929,0.2125,21.25,6,79.7086705167299,0.730894565331651,7.25,11.8156720329733,0
+935,-0.0174469960853457,0.05,5,1,81.7256002368443,0.796264855687606,5,3.76776695251465,0
+936,-0.00981296706435387,0,0,0,NA,NA,0,NA,NA
+937,0.0108680078885391,0.005,0.5,1,30.8308651382582,1,0.5,171.491424560547,169.705627441406
+938,0.0242305094056064,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,201.603428890831,194.164886474609
+939,0.0248716276905725,0.0075,0.75,1,44.4894453484604,1,0.75,201.403610229492,199.123077392578
+940,0.0303438651352189,0,0,0,NA,NA,0,NA,NA
+941,-0.00717492599738762,0,0,0,NA,NA,0,NA,NA
+942,-0.0236149223348184,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,6.29468509129116,0
+943,0.0129491495768252,0.1775,17.75,3,87.0509515248635,0.747112462006079,12,6.54372387201014,0
+944,-0.0086358427816549,0,0,0,NA,NA,0,NA,NA
+945,-0.010496403773559,0,0,0,NA,NA,0,NA,NA
+946,0.0449236595355978,0.575,57.5,2,97.0016257002676,0.9232140408611,56,87.2022539221722,50
+947,-0.00902897999039851,0.15,15,2,90.7154798922843,0.841628959276018,14.75,50.9148742039998,22.3606796264648
+948,-0.0194328926887101,0,0,0,NA,NA,0,NA,NA
+949,-0.0266495199579731,0,0,0,NA,NA,0,NA,NA
+950,-0.00193322620749313,0.0375,3.75,3,62.7958923130164,0.669421487603306,2.25,3.60947570800781,0
+951,-0.0101253196490279,0.0575,5.75,2,79.1007648475903,0.793692897141173,5.25,1.30434782608696,0
+952,-0.0372468198492425,0,0,0,NA,NA,0,NA,NA
+953,-0.0587381723285216,0.0775,7.75,1,86.3573366287605,0.89159891598916,7.75,8.83610590042606,0
+954,-0.198123988006701,0.025,2.5,2,61.4794562732788,0.763313609467456,2,4.94317474365234,0
+955,-0.170866680024192,0,0,0,NA,NA,0,NA,NA
+956,-0.133646925015855,0.005,0.5,2,0,1,0.25,151.36442565918,147.648223876953
+957,-0.13229653097922,0.0625,6.25,2,78.6198186841535,0.84,5.5,142.843885498047,134.629119873047
+958,0.0368987574075072,0.3775,37.75,1,96.6969635918825,0.96520377539037,37.75,87.9873010243801,55
+959,0.0241330431016104,0.47,47,2,96.4925934123938,0.951203643461288,46,54.9395972921493,0
+960,0.0211151906743999,0.4175,41.75,1,97.1176501838512,0.966557048102113,41.75,55.3662865233279,0
+961,-0.0181958818927706,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+962,-0.0644287613860797,0,0,0,NA,NA,0,NA,NA
+963,0.00343018091736667,0.405,40.5,1,96.992903144017,0.960521121200158,40.5,38.4852289505947,10
+964,-0.0277999702691159,0.045,4.5,2,77.0630168225469,0.728524335854179,4.25,12.1603749593099,0
+965,-0.0396224434481701,0,0,0,NA,NA,0,NA,NA
+966,0.0914185793657089,0.8425,84.25,1,99.5291083083911,0.940195858563206,84.25,113.605800798456,56.5685424804688
+967,-0.10076099658967,0.01,1,1,52.6315789473684,0.747474747474748,1,165.33712387085,163.783401489258
+968,-0.212215235391632,0,0,0,NA,NA,0,NA,NA
+969,-0.159493591725477,0.0075,0.75,1,44.4894453484604,1,0.75,80.3578720092773,79.0569381713867
+970,0.0576797379512573,0.4375,43.75,3,93.2058998756388,0.851393188854489,36.5,51.26288142613,10
+971,0.0288385749234658,0.405,40.5,2,93.4919759930552,0.870283683943376,27.75,51.2665533018701,10
+972,-0.0946474036294967,0,0,0,NA,NA,0,NA,NA
+973,-0.0846443613993324,0,0,0,NA,NA,0,NA,NA
+974,-0.0507266802491358,0,0,0,NA,NA,0,NA,NA
+975,-0.0150345012898902,0.015,1.5,1,62.2896536353828,1,1.5,59.9271380106608,56.5685424804688
+976,0.0425979804618692,0.2475,24.75,3,92.0216759342655,0.910410989585278,23.5,99.7161845197581,25
+977,-0.0430249998320505,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,117.68978396329,98.6154174804688
+978,0.0167786212147985,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,133.994086045485,124.197425842285
+979,-0.0327052229605033,0,0,0,NA,NA,0,NA,NA
+980,-0.0214409018849346,0,0,0,NA,NA,0,NA,NA
+981,-0.0553448606761231,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,7.89870423537034,0
+982,0.00897482562897494,0.1525,15.25,5,79.1369104396809,0.688317470918907,6,9.74548458662189,0
+983,-0.0436503922187694,0.0975,9.75,1,88.4075627573592,0.931813339015555,9.75,38.9762459779397,25
+984,-0.0659396130344248,0.115,11.5,1,89.742951983695,0.88410835868463,11.5,11.4932858010997,5
+985,0.194293126693992,0.7475,74.75,1,99.1756322950922,0.985931097550252,74.75,22.3088758207085,0
+986,-0.0497210062984232,0.23,23,1,94.2887150496276,0.984162179284131,23,22.665785913882,7.07106781005859
+987,0.0358280765971722,0.1475,14.75,3,81.7159699627588,0.723995169915474,8,25.9828859102928,7.07106781005859
+988,0.00748164677324894,0,0,0,NA,NA,0,NA,NA
+989,0.021699335493613,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,69.3980773925781,65
+990,-0.0703566518349544,0,0,0,NA,NA,0,NA,NA
+991,-0.0519770586164486,0,0,0,NA,NA,0,NA,NA
+992,-0.177226843312383,0,0,0,NA,NA,0,NA,NA
+993,-0.0709236399721704,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,6.34122975667318,0
+994,-0.0271058454463673,0.03,3,1,74.8763016215986,0.878714372346877,3,51.7520790100098,46.0977210998535
+995,-0.0270363719698798,0,0,0,NA,NA,0,NA,NA
+996,-0.0827548581175506,0,0,0,NA,NA,0,NA,NA
+997,-0.196584901064634,0,0,0,NA,NA,0,NA,NA
+998,-0.177003796771169,0,0,0,NA,NA,0,NA,NA
+999,0.0386297234194353,0.6325,63.25,1,98.6453198582955,0.9827779212951,63.25,27.4752142231455,0
+1000,0.0201995755157486,0.0875,8.75,1,87.4704367425575,0.905526688710439,8.75,61.0120846339634,50.9901962280273
+1001,0.0439191154199216,0.53,53,3,96.7705917893137,0.773193649422184,50.5,0.996495462813467,0
+1002,0.0507714496423432,0.5575,55.75,5,96.1938293096883,0.858757062146893,53.5,0.767772212691371,0
+1003,0.0527665943070315,0.665,66.5,2,98.3321914231911,0.772679687733676,65.5,0.383725818834807,0
+1004,0.0705619669961743,0.71,71,3,98.0006000874074,0.773989409789487,68.25,0.0880281690140845,0
+1005,0.0417769833296188,0.485,48.5,2,96.5815286311676,0.88133764832794,46.5,0.180412371134021,0
+1006,0.00860061085491907,0.065,6.5,4,68.8202078662777,0.608712664666754,3.5,1.15384615384615,0
+1007,0.0456109468940485,0.4325,43.25,4,92.7179164601296,0.795616809136481,31.75,2.1036371220054,0
+1008,0.0289625213137356,0.245,24.5,5,84.2256056323788,0.714027694160144,8.25,7.21423369037862,0
+1009,0.00726963727816838,0.0875,8.75,5,73.4597785920536,0.73547472838923,5.5,7.27166987827846,0
+1010,0.00450114140715414,0.06,6,5,59.449903163217,0.524076147816349,2.25,8.35503840446472,0
+1011,0.00270574848239448,0.1025,10.25,3,82.778562461756,0.741633361592184,8.5,10.3302516472049,0
+1012,0.0306594268427216,0.16,16,2,90.2927724016935,0.925595238095238,15.5,6.97025737166405,0
+1013,0.0295721518546725,0.1525,15.25,4,85.3596716598851,0.79963265987644,13,10.4411934399214,0
+1014,0.00289661547321884,0.035,3.5,4,55.8100973190062,0.637305699481865,2.25,2.14285714285714,0
+1015,0.0285633388994029,0.2375,23.75,4,90.7986819117649,0.868852459016394,21.75,2.82867437663831,0
+1016,0.00950053554417536,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,1,0
+1017,-0.00436102624822524,0.04,4,2,74.5830091831985,0.782986111111111,3.75,0,0
+1018,0.0186206753698207,0.245,24.5,1,94.6299732152399,0.932269717037929,24.5,2.02330889020647,0
+1019,-0.018650570947184,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,1,0
+1020,0.0107869026340632,0.05,5,4,60.2197771885984,0.626485568760611,2,6.83172512054443,0
+1021,0.0265876505817505,0.1425,14.25,5,81.6532858099391,0.726304515975486,10.25,5.90466492636162,0
+1022,0.024481336710196,0.1225,12.25,4,77.2456604702364,0.715099715099715,6.5,2.80462054817044,0
+1023,0.0292597278203175,0.32,32,5,91.7214851297833,0.823276950265085,28.5,1.83427411317825,0
+1024,-0.00250184848033314,0.0675,6.75,3,74.1418925188635,0.800486314608143,5.25,1.00263214111328,0
+1025,0.0152631773565372,0.115,11.5,2,88.4252220221303,0.840648993191366,11.25,1.22202616152556,0
+1026,0.0537753689654346,0.5425,54.25,2,97.1064732070268,0.826867932694909,51,2.9710442327684,0
+1027,0.0162317924932086,0.23,23,5,85.5451305400418,0.738675958188153,11.25,2.84664149906324,0
+1028,0.0148491987917441,0.1325,13.25,3,81.5495565928874,0.746651043481015,6.25,4.22208570084482,0
+1029,-2.38025976796052e-05,0.02,2,3,46.3643391766074,0.489795918367347,1.25,5.63735294342041,0
+1030,-0.00575205991182202,0.005,0.5,2,0,1,0.25,13.462911605835,0
+1031,-0.00856826391840514,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,17.8025585810343,5
+1032,0.0402246928133536,0.39,39,3,93.7323446281935,0.857199977151996,34.75,11.5997623052353,0
+1033,0.0338747934698949,0.28,28,5,86.1433186592591,0.77997799779978,14.5,0.787958996636527,0
+1034,-0.0267505415442793,0.0675,6.75,5,66.1654285503679,0.65085105056425,4.25,4.54625489976671,0
+1035,-0.0700955804628393,0,0,0,NA,NA,0,NA,NA
+1036,-0.0116789162424539,0,0,0,NA,NA,0,NA,NA
+1037,0.020581057138188,0.0425,4.25,2,74.792243767313,0.91644908616188,4,66.2504330803366,54.0832710266113
+1038,0.0247043666142417,0.1075,10.75,1,89.2106768070942,0.844382197323374,10.75,80.43882139339,62.6498222351074
+1039,0.0402927971637109,0.12,12,2,88.0710885381505,0.722838137472284,11.25,149.268421490987,105.118980407715
+1040,0.0280133992657647,0.095,9.5,2,81.2668121593922,0.789529071297027,5.5,68.0271800191779,26.9258232116699
+1041,0.00237976184161653,0.0975,9.75,4,72.3052888390124,0.659066695077775,3.25,5.48670690487593,0
+1042,0.0419915311184741,0.475,47.5,1,97.6265657883157,0.956709956709957,47.5,0.747742462158203,0
+1043,0.0530914509262948,0.7275,72.75,2,98.6948382102818,0.912785334518558,72.25,1.04921812863694,0
+1044,0.034661762114647,0.5125,51.25,1,97.9112600445307,0.935392691298203,51.25,2.76151147237638,0
+1045,-0.0216591174067253,0,0,0,NA,NA,0,NA,NA
+1046,-0.00080718767208964,0.3625,36.25,1,96.5215284364484,0.970403255641879,36.25,125.151211547852,86.0232543945312
+1047,-0.0697908685803122,0.01,1,1,52.6315789473684,0.747474747474748,1,85.7728080749512,80.6225738525391
+1048,-0.0306916225792702,0,0,0,NA,NA,0,NA,NA
+1049,-0.0362684083794011,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+1050,-0.0506115841560859,0,0,0,NA,NA,0,NA,NA
+1051,-0.010377045095529,0.0425,4.25,1,79.7330921014386,0.7911227154047,4.25,1.59241575353286,0
+1052,-0.00518733961886028,0.185,18.5,1,93.0265643427559,0.924492685228882,18.5,24.5906090092015,0
+1053,-0.00180967984088511,0.1175,11.75,2,87.4644966966367,0.915014164305949,11.25,6.14198948474641,0
+1054,-0.0034535949727433,0.09,9,3,74.9683257062991,0.743589743589744,4,11.3606515460544,0
+1055,-0.0878232517896686,0,0,0,NA,NA,0,NA,NA
+1056,-0.0356482723618319,0.11,11,2,87.8706617775683,0.878530215608867,10.75,152.645398226651,139.283889770508
+1057,-0.149536134044174,0,0,0,NA,NA,0,NA,NA
+1058,0.0650466617590428,0.415,41.5,1,97.093152360986,0.977654879615664,41.5,130.829247991723,100
+1059,-0.0216547565914516,0.355,35.5,2,92.7568259450866,0.838998211091234,20.25,105.271948908416,69.6419448852539
+1060,0.0595766517536867,0.655,65.5,1,98.7599782819451,0.840609226954751,65.5,39.2742961417628,0
+1061,0.0888234474184173,0.8125,81.25,1,99.4242084607871,0.973898858075041,81.25,41.6528399599515,5
+1062,-0.0418945538165281,0.055,5.5,1,82.8209772257252,0.875505757858699,5.5,13.8122827356512,5
+1063,0.048532029463895,0.6325,63.25,1,98.6453198582955,0.965555842590201,63.25,32.0686208250023,0
+1064,-0.0458952918756404,0.0025,0.25,1,0,NA,0.25,30.4138145446777,30.4138145446777
+1065,-0.0228337916047894,0.03,3,2,62.8738722138861,0.696785930867192,2,25.0174016952515,0
+1066,0.042164798957092,0.59,59,1,98.4111099483777,0.972346662242133,59,57.7833111488213,5
+1067,-0.126702039344236,0,0,0,NA,NA,0,NA,NA
+1068,-0.110940124206245,0,0,0,NA,NA,0,NA,NA
+1069,-0.0282079436815548,0.2125,21.25,1,93.8457653779655,0.932723641332913,21.25,74.4090752994313,60
+1070,0.0444823476476588,0.375,37.5,4,90.6121451170683,0.808,17.75,38.7348914082845,10
+1071,-0.000646812645136379,0.3325,33.25,2,95.6116509412169,0.92571269384344,33,58.1398076795994,25
+1072,-0.0942745934147388,0,0,0,NA,NA,0,NA,NA
+1073,-0.0290945991547369,0,0,0,NA,NA,0,NA,NA
+1074,-0.0602483343875065,0,0,0,NA,NA,0,NA,NA
+1075,-0.021983937144978,0.0925,9.25,2,80.9111799480726,0.873549202908368,5.5,32.5741236403182,11.1803398132324
+1076,-0.00352613660164934,0.1125,11.25,2,83.0593831150515,0.881393624907339,6,30.290932337443,7.07106781005859
+1077,-0.0258170134540887,0,0,0,NA,NA,0,NA,NA
+1078,-0.00360066748595273,0,0,0,NA,NA,0,NA,NA
+1079,0.00626032775411659,0.0125,1.25,2,43.859649122807,0.594936708860759,1,12.8704814910889,5
+1080,-0.00244062383928394,0.0825,8.25,3,81.4482397503137,0.838530628721364,7.5,7.46565454656428,0
+1081,0.00412808538043464,0.19,19,3,88.9966718434403,0.742030587801732,13.5,16.0818347679941,0
+1082,0.0274590869544772,0.27,27,2,92.0992203221845,0.873551106427819,22,74.4466043401648,28.2842712402344
+1083,-0.0732044816127745,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,70.4237403869629,58.3095169067383
+1084,0.0498716747690924,0.3925,39.25,1,96.8622433213934,0.971422039323274,39.25,19.1480356447256,0
+1085,0.0693049265621812,0.4675,46.75,1,97.5655534302407,0.978289777198838,46.75,22.1656031685079,0
+1086,-0.0779166402407282,0,0,0,NA,NA,0,NA,NA
+1087,0.0237072293116762,0.1875,18.75,3,89.0222229922548,0.794871794871795,16.25,29.7970620727539,10
+1088,0.0276123981160617,0.135,13.5,2,87.6271848701385,0.900553172975325,12.5,20.7244935918737,0
+1089,0.0113267667453329,0.0025,0.25,1,0,NA,0.25,80.6225738525391,80.6225738525391
+1090,-0.0902276287530549,0,0,0,NA,NA,0,NA,NA
+1091,-0.0840451787598431,0,0,0,NA,NA,0,NA,NA
+1092,-0.127488456778228,0,0,0,NA,NA,0,NA,NA
+1093,-0.102102133549051,0,0,0,NA,NA,0,NA,NA
+1094,-0.0453139849603394,0,0,0,NA,NA,0,NA,NA
+1095,-0.0307282520028093,0.1075,10.75,1,89.2106768070942,0.984438219732337,10.75,24.9214080987975,15
+1096,-0.0470505262794904,0,0,0,NA,NA,0,NA,NA
+1097,-0.048572698449716,0,0,0,NA,NA,0,NA,NA
+1098,-0.129354566475376,0,0,0,NA,NA,0,NA,NA
+1099,0.0391884697615751,0.4925,49.25,1,97.7634684223253,0.983804575207504,49.25,28.3679065704346,0
+1100,-0.0131511724178381,0,0,0,NA,NA,0,NA,NA
+1101,0.0428826506448968,0.4925,49.25,3,94.0738023681916,0.78945947769755,27.25,0.610940807361893,0
+1102,0.0265957664912798,0.2325,23.25,4,87.1006132133532,0.803775362034457,16.25,0.936248040968372,0
+1103,0.0375675227618194,0.3425,34.25,4,93.0916503423165,0.841825095057034,31.5,1.97102351780355,0
+1104,0.0568926793908759,0.6725,67.25,3,97.9939110670231,0.740004534804626,65.25,0.878659117177517,0
+1105,0.0396839323993481,0.54,54,1,98.1009071848445,0.859398658879515,54,0.509259259259259,0
+1106,-0.0182067837468276,0.165,16.5,1,92.3061588442808,0.916688362405623,16.5,0.303030303030303,0
+1107,0.0214005416583132,0.1325,13.25,6,74.5575466685635,0.670646356525319,5.25,2.26415094339623,0
+1108,0.0183888184318857,0.1725,17.25,9,74.5231735793613,0.670420214226861,8,4.96156327620797,0
+1109,0.00789876851935332,0.08,8,2,79.9631149262165,0.749163879598662,5.25,2.19757735729218,0
+1110,0.0110384574593144,0.1075,10.75,3,82.1282929616582,0.766573295985061,8.25,24.0032267016034,0
+1111,-0.000609887868049554,0.07,7,5,66.3958275657009,0.71326164874552,4.25,2.32142857142857,0
+1112,0.0223413833657833,0.1225,12.25,6,75.2428167351216,0.715099715099715,6.5,5.24696509692134,0
+1113,0.0133839613344185,0.005,0.5,2,0,1,0.25,14.6040477752686,11.1803398132324
+1114,0.0222595935094432,0.1725,17.25,4,87.6191689668196,0.770292876582357,14.25,4.77541417660921,0
+1115,-0.0268405684273057,0.155,15.5,4,81.4670564720597,0.780845934692089,6.75,2.28803474672379,0
+1116,0.0215977951644891,0.22,22,3,88.1666648077965,0.812183570145354,15.75,2.39369262348522,0
+1117,0.00516374973839902,0.115,11.5,4,81.4067024311421,0.710270896711575,8.75,2.07222772681195,0
+1118,0.00667906685794151,0.0525,5.25,4,60.4457776051,0.637203166226913,1.75,2.2414794195266,0
+1119,0.0149710698212357,0.215,21.5,2,93.0692440807625,0.925065567628325,21.25,0.348837209302326,0
+1120,0.00685780592611991,0.1975,19.75,2,90.4846612715492,0.893190921228304,18,1.34754859344869,0
+1121,0.00531792208381376,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,9.63120269775391,0
+1122,0.0283793083772616,0.245,24.5,3,92.1434723298863,0.819385912101144,22.75,2.76550789268649,0
+1123,0.0137850930485911,0.22,22,6,83.2503233403305,0.746856116282868,12.5,1.90586384859952,0
+1124,0.0256926610436494,0.265,26.5,4,93.2694856681393,0.864657905046835,25.75,0.990566037735849,0
+1125,0.0107904408185186,0.025,2.5,3,50.7749378731535,0.605522682445759,1.5,15.2335828781128,0
+1126,0.018021005704486,0.14,14,4,80.1018147709554,0.772236873651403,8.5,3.09437625748771,0
+1127,0.0453399181614441,0.5375,53.75,3,96.3583124821482,0.908108108108108,50.5,1.253476626374,0
+1128,0.041117845216213,0.46,46,4,93.4229237624247,0.678649237472767,32.25,1.41031236233919,0
+1129,0.0493293014832307,0.615,61.5,1,98.5518240730175,0.847543760587239,61.5,1.41691166792459,0
+1130,0.0166985155919792,0.155,15.5,1,91.8947234736642,0.90138067061144,15.5,4.56958859966647,0
+1131,0.0132339606787809,0.1075,10.75,5,74.0213006100163,0.579831932773109,5.5,39.0998031261355,15
+1132,0.0408364460581708,0.43,43,4,95.4825552974902,0.911450550666888,41.75,17.4907823274302,0
+1133,0.00912892842953624,0.0925,9.25,4,73.8980956960323,0.674840807478661,4.5,0.461380211082665,0
+1134,-0.00558108046895086,0.005,0.5,1,30.8308651382582,1,0.5,10.5901699066162,10
+1135,-0.0272032146420952,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+1136,-0.0106113570646266,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,0,0
+1137,0.0183755054408539,0.0975,9.75,1,88.4075627573592,0.931813339015555,9.75,32.3634311969464,14.1421356201172
+1138,0.0329451574140694,0.2175,21.75,1,93.9777627911811,0.950530763681336,21.75,48.0921563554084,11.1803398132324
+1139,0.00978454197338579,0.005,0.5,1,30.8308651382582,1,0.5,40.7711715698242,40.3112869262695
+1140,0.00698886375720576,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,0,0
+1141,0.0426794745788357,0.53,53,1,98.0336545290164,0.918997731936494,53,0.98383907102189,0
+1142,0.0570518359320704,0.6775,67.75,3,95.7823077004932,0.786783631074763,45.75,0.616498405203168,0
+1143,0.0658931486355141,0.9625,96.25,1,99.898450616446,0.525114155251142,96.25,0.974742854725231,0
+1144,0.0749830614216626,0.9175,91.75,1,99.7684657792434,0.59886636145629,91.75,2.32685983018589,0
+1145,-0.0373995544456557,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+1146,-0.057213813837152,0,0,0,NA,NA,0,NA,NA
+1147,-0.0762973210541531,0,0,0,NA,NA,0,NA,NA
+1148,-0.0786819694952283,0,0,0,NA,NA,0,NA,NA
+1149,-0.0181581125856155,0,0,0,NA,NA,0,NA,NA
+1150,-0.0528231203102041,0,0,0,NA,NA,0,NA,NA
+1151,-0.0119487091757765,0.13,13,3,80.556995662742,0.832106418700762,7.25,3.8330318744366,0
+1152,0.159732624378958,0.8075,80.75,1,99.4061591150036,0.965935703640622,80.75,34.0246383206394,0
+1153,0.0669176511611477,0.505,50.5,2,97.1382437430757,0.924579124579125,49.75,29.2079119729524,0
+1154,-0.0244465333804692,0.165,16.5,1,92.3061588442808,0.791720906014059,16.5,6.14299860867587,0
+1155,-0.0711914477776736,0,0,0,NA,NA,0,NA,NA
+1156,0.0161443002408851,0.13,13,1,90.6657843098624,0.922510654784967,13,146.972223428579,134.629119873047
+1157,-0.0609798886172939,0.005,0.5,1,30.8308651382582,1,0.5,133.54817199707,132.003784179688
+1158,0.0341808421671885,0.475,47.5,1,97.6265657883157,0.962121212121212,47.5,54.8931861475894,0
+1159,-0.0181579336765571,0.3875,38.75,1,96.8082175905,0.9484425349087,38.75,79.0054819414693,55.2268028259277
+1160,0.0506456096892362,0.5825,58.25,3,94.8707833430156,0.87335673480625,46.5,22.4834080642897,0
+1161,0.131532103082573,0.9025,90.25,1,99.7229916897507,0.955015744489429,90.25,69.6971128257688,25
+1162,-0.0572025062792318,0,0,0,NA,NA,0,NA,NA
+1163,0.00533959387012146,0.34,34,1,96.2369165714469,0.9816715542522,34,28.7794704998241,0
+1164,-0.0541538125555962,0,0,0,NA,NA,0,NA,NA
+1165,0.00373123877812759,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,38.0319466977506,0
+1166,0.0303513508691685,0.34,34,1,96.2369165714469,0.957233626588465,34,44.0658414924846,7.07106781005859
+1167,-0.169983655856922,0,0,0,NA,NA,0,NA,NA
+1168,-0.108528244560584,0,0,0,NA,NA,0,NA,NA
+1169,0.0339551480245427,0.39,39,1,96.835360326048,0.965727994516479,39,101.290266966208,60.2079734802246
+1170,0.0601027775004331,0.585,58.5,1,98.3818899951514,0.895233106338397,58.5,64.3547400042542,11.1803398132324
+1171,-0.031606874966019,0.205,20.5,1,93.6387867289635,0.947950553025374,20.5,71.0155230266292,45.276927947998
+1172,-0.076327782003209,0,0,0,NA,NA,0,NA,NA
+1173,-0.0342274770070799,0,0,0,NA,NA,0,NA,NA
+1174,-0.0542725475356565,0.0025,0.25,1,0,NA,0.25,10,10
+1175,-0.0554874559608288,0.07,7,4,76.9276012393293,0.73715651135006,6,2.29079055786133,0
+1176,-0.00511727406821592,0.0825,8.25,5,66.7703907669648,0.677061257442729,4,2.67428507949367,0
+1177,0.0158441997895352,0.17,17,3,86.6585266229211,0.777260301711046,10.25,12.617213641896,0
+1178,-0.00371565346920306,0,0,0,NA,NA,0,NA,NA
+1179,0.00103351523008996,0.075,7.5,4,69.2386400291268,0.669056811913955,3.25,19.1195537567139,7.07106781005859
+1180,-0.0261204376850947,0.035,3.5,1,77.1303955881658,1,3.5,12.5177861622402,5
+1181,0.00581885039345707,0.1075,10.75,3,80.071061871981,0.735449735449735,6.25,46.8119552080021,10
+1182,0.0443606392290894,0.42,42,2,94.3606387068998,0.860956618464961,34.75,106.998045966739,50.2493743896484
+1183,-0.0923678495176136,0,0,0,NA,NA,0,NA,NA
+1184,0.133717920229537,0.575,57.5,1,98.3223108063601,0.972576443164678,57.5,25.4636945890344,5
+1185,0.00124698276573326,0.295,29.5,1,95.572898758965,0.960230662159475,29.5,11.0510529178684,0
+1186,-0.0641946290596388,0.0025,0.25,1,0,NA,0.25,30,30
+1187,-0.00733096007570566,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047
+1188,0.025837165939156,0,0,0,NA,NA,0,NA,NA
+1189,-0.00416040985604923,0.035,3.5,3,65.4320051717211,0.792746113989637,3,51.3473783220564,36.0555114746094
+1190,-0.0814523657876998,0,0,0,NA,NA,0,NA,NA
+1191,-0.074538867007941,0,0,0,NA,NA,0,NA,NA
+1192,-0.0731801126274513,0,0,0,NA,NA,0,NA,NA
+1193,-0.115236859750003,0,0,0,NA,NA,0,NA,NA
+1194,-0.0404293644976497,0,0,0,NA,NA,0,NA,NA
+1195,0.0258346530952258,0.4075,40.75,1,97.0183110527583,0.971870604781997,40.75,41.5379065648178,14.1421356201172
+1196,-0.0431954158637382,0,0,0,NA,NA,0,NA,NA
+1197,-0.0392339234147221,0,0,0,NA,NA,0,NA,NA
+1198,-0.131179313264001,0,0,0,NA,NA,0,NA,NA
+1199,-0.101769471710431,0,0,0,NA,NA,0,NA,NA
+1200,-0.060709394779725,0,0,0,NA,NA,0,NA,NA
+1201,0.00885273860310917,0.1775,17.75,3,87.7323633186712,0.87355623100304,15.75,1.35511554127008,0
+1202,0.0420084604660224,0.525,52.5,4,94.6017209929734,0.800780724188989,45.5,0.467863845825195,0
+1203,0.0454382941124823,0.4525,45.25,6,94.2716699041748,0.820077693723165,40.75,0.898801961656433,0
+1204,0.0272991593495499,0.22,22,4,89.0856246299584,0.689694594153193,15.25,6.34880035573786,0
+1205,0.00182367126260033,0.07,7,3,73.7651927325986,0.6415770609319,4.25,1.85968099321638,0
+1206,0.0301875067488254,0.305,30.5,5,89.2557434478918,0.765617370357108,20,0.713697277131628,0
+1207,0.0263622198861776,0.195,19.5,6,81.5760243798309,0.702943559276263,12,2.97982572897887,0
+1208,0.00676984355804052,0.07,7,4,71.4216513319799,0.68936678614098,4.75,2.46936198643276,0
+1209,0.0414505839829144,0.435,43.5,2,95.1563864925872,0.862156424889036,37.75,2.66098563972561,0
+1210,0.0195382523537774,0.2275,22.75,5,87.4637268989886,0.800231731191817,15.5,2.96541553539234,0
+1211,0.0227516085802154,0.2375,23.75,3,91.0575229450894,0.807135969141755,19.5,2.97935256958008,0
+1212,0.0114730390083423,0.1,10,1,88.6195912622717,0.983416252072968,10,2.80177669525146,0
+1213,0.0137868472722766,0.075,7.5,6,62.0056993070289,0.492553778268064,2.25,7.67496687571208,0
+1214,0.0322827371648509,0.285,28.5,4,87.7725873803962,0.755584221603639,15.75,4.08868291085227,0
+1215,0.0102237715306592,0.0725,7.25,1,85.7162801918893,0.862361644778345,7.25,5.37818711379479,0
+1216,0.0105000053151707,0.05,5,2,77.5556366186497,0.898132427843803,4.75,7.4002815246582,0
+1217,0.0146996682271856,0.08,8,3,78.3647449286687,0.853678929765886,6.75,0.78125,0
+1218,0.0296677677093248,0.2975,29.75,3,93.680326480299,0.881376037959668,28.5,2.12843925411962,0
+1219,0.041511731198334,0.3225,32.25,5,90.9634333308311,0.817853497683913,26.5,1.62125686527223,0
+1220,0.0293503448389311,0.22,22,5,86.2124321129429,0.755022048015679,15.5,1.17368490045721,0
+1221,0.0172351770956629,0.1625,16.25,4,84.2327953734555,0.746400739664509,11,5.70628169133113,0
+1222,0.02449863719522,0.2475,24.75,7,81.9010864277907,0.753630221359513,13.25,2.82100076386423,0
+1223,0.0185469836029188,0.3175,31.75,3,92.9226697238377,0.765314051028337,26.5,0.646228880394162,0
+1224,0.0349228430822404,0.425,42.5,2,96.9365562666998,0.777746909292957,42.25,0.818483150706572,0
+1225,0.0385452431874,0.3,30,3,92.7454459983334,0.777195281782438,25,3.12618687947591,0
+1226,0.00617088165723544,0.2125,21.25,5,86.5111716189876,0.705665930831494,12.5,0.847894915412454,0
+1227,0.0416236681341252,0.3275,32.75,6,86.5469375043916,0.776018416263552,21,1.30263321272289,0
+1228,0.0672858969704248,0.805,80.5,1,99.3970714465752,0.738529014844804,80.5,0.124223602484472,0
+1229,0.049875897699967,0.4775,47.75,5,91.0428585161897,0.745897872570486,23.75,0.309644689110561,0
+1230,0.065270418730106,0.7225,72.25,2,98.0966681300334,0.774774774774775,68.5,1.2308327961958,0
+1231,0.0830088489921764,0.8425,84.25,3,98.3472637413985,0.71094664972216,81.5,12.852789909974,0
+1232,0.0206724437669254,0.1025,10.25,5,69.8265904257262,0.677041701990231,4,14.8945049192847,0
+1233,-0.0131084369329255,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+1234,-0.0358243424244984,0.06,6,4,68.7105104983398,0.692049272116461,3,8.16337291399638,0
+1235,0.0521272097580186,0.2875,28.75,3,93.7268286291024,0.932523616734143,28,1.60123596191406,0
+1236,0.00465603830100008,0.085,8.5,1,87.210675248157,0.902419984387198,8.5,3.06300398882698,0
+1237,-0.0106449723708647,0.0325,3.25,1,76.0684107249879,0.770312948607522,3.25,4.95881623488206,0
+1238,0.00199535392733473,0.05,5,2,73.9483257095906,0.762308998302207,3.75,10.8795994758606,0
+1239,0.0225964923094034,0.1975,19.75,4,85.0417767345867,0.813084112149533,14,16.6177270865139,0
+1240,-0.00323134999161994,0.095,9.5,4,76.8501842705545,0.771989827238446,7,5.18047774465461,0
+1241,0.00681519536280121,0.1825,18.25,3,86.8110620302261,0.818425076452599,10.25,0.410958904109589,0
+1242,-0.000961727229441749,0.0925,9.25,5,69.0545680871903,0.638712008309624,3.75,1.21621621621622,0
+1243,0.0196121794317878,0.385,38.5,3,90.6441379512083,0.798902582665403,16.75,1.03339049103972,0
+1244,0.0421240652493725,0.5875,58.75,3,97.5060025467455,0.845378615310278,57.5,0.88996653455369,0
+1245,-0.0386554225751479,0.065,6.5,2,78.0305985487694,0.765227598800052,5,4.64019041794997,0
+1246,-0.0761591977020726,0,0,0,NA,NA,0,NA,NA
+1247,-0.0723195744724944,0,0,0,NA,NA,0,NA,NA
+1248,-0.0392811781291675,0,0,0,NA,NA,0,NA,NA
+1249,-0.0349832822778262,0,0,0,NA,NA,0,NA,NA
+1250,-0.0337650071270764,0,0,0,NA,NA,0,NA,NA
+1251,-0.0185735636758181,0,0,0,NA,NA,0,NA,NA
+1252,-0.0177771157284587,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,35.6667366027832,30.4138145446777
+1253,-1.12524456380925e-05,0.14,14,3,85.5541192630215,0.832174538479981,11.75,31.9558172225952,0
+1254,-0.0195349832299144,0.0925,9.25,2,80.7698014468829,0.873549202908368,5,25.6258307276545,0
+1255,-0.0109865786371302,0.275,27.5,1,95.2267095868885,0.972275168948189,27.5,91.4325857335871,50
+1256,0.03174590650141,0.15,15,1,91.6737426448862,0.97737556561086,15,177.417273712158,160.078109741211
+1257,-0.082072316849999,0,0,0,NA,NA,0,NA,NA
+1258,-0.0114129830595994,0.2025,20.25,2,89.6112610290461,0.82584465343086,14.5,55.6972862526222,5
+1259,0.021812053472886,0.4025,40.25,3,94.4463798081909,0.886916204907837,36.75,73.1357516650087,30
+1260,0.0818793963099597,0.7775,77.75,2,97.0064691466949,0.846608122099935,65.25,30.9073411996725,0
+1261,0.0233109164737107,0.3625,36.25,2,95.3092764390805,0.923048464668886,35.25,95.4784711640457,55.2268028259277
+1262,-0.0635223533958197,0,0,0,NA,NA,0,NA,NA
+1263,-0.0361450869834971,0,0,0,NA,NA,0,NA,NA
+1264,-0.0577496097488233,0.005,0.5,1,30.8308651382582,1,0.5,25.962911605835,25
+1265,0.0432555726009969,0.42,42,1,97.1419289493636,0.977753058954394,42,68.1175706045968,46.0977210998535
+1266,-0.0101535286180297,0.135,13.5,1,90.9386564749522,0.88812231959724,13.5,91.9840275799787,65.7647323608398
+1267,-0.177743736561388,0,0,0,NA,NA,0,NA,NA
+1268,-0.0755147314653732,0,0,0,NA,NA,0,NA,NA
+1269,-0.00535719837050792,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,135.204483032227,129.034881591797
+1270,-0.0492523820662609,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,111.07517450506,105
+1271,-0.0806523628451396,0,0,0,NA,NA,0,NA,NA
+1272,-0.226662264307961,0,0,0,NA,NA,0,NA,NA
+1273,-0.17419273989799,0,0,0,NA,NA,0,NA,NA
+1274,-0.0321887797840645,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+1275,-0.0168067348455293,0.02,2,3,44.8468832832137,0.591836734693878,1.25,1.25,0
+1276,-0.00994559602127992,0.095,9.5,4,77.1674715677599,0.701832851004122,5.25,2.26790367929559,0
+1277,-0.00479210116239983,0.0575,5.75,3,70.7955149260162,0.646330680813439,3.75,0.217391304347826,0
+1278,-0.0234041257666831,0.0875,8.75,3,78.3666148159069,0.73547472838923,4.75,15.5448235648019,0
+1279,-0.029376344726162,0.04,4,4,59.0201665291801,0.696180555555556,2.75,32.8934652805328,21.2132034301758
+1280,-0.029831534969635,0.04,4,2,74.8627476729398,0.739583333333333,3.75,6.93341016769409,0
+1281,-0.0172268475007877,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,65.3131632123675,55.9016990661621
+1282,-0.00514248245686758,0.21,21,1,93.778005777053,0.974513635205165,21,70.0172798520043,35
+1283,-0.0936150271911174,0,0,0,NA,NA,0,NA,NA
+1284,0.212640536094405,0.8225,82.25,1,99.4598121429477,0.981855707514005,82.25,21.60649271794,0
+1285,-0.053924828978561,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,6.46116289885148,0
+1286,-0.0105848624341888,0,0,0,NA,NA,0,NA,NA
+1287,0.0005195653895953,0,0,0,NA,NA,0,NA,NA
+1288,0.0128949633026832,0.0025,0.25,1,0,NA,0.25,36.0555114746094,36.0555114746094
+1289,-0.0540741829973547,0,0,0,NA,NA,0,NA,NA
+1290,-0.096047842586413,0,0,0,NA,NA,0,NA,NA
+1291,-0.0954094885289669,0,0,0,NA,NA,0,NA,NA
+1292,-0.0171227168839084,0.31,31,1,95.8102472617487,0.903381642512077,31,43.6267804176577,25.4950981140137
+1293,-0.0825797242634144,0.0075,0.75,1,44.4894453484604,1,0.75,25.1650327046712,25
+1294,-0.0240632552881289,0,0,0,NA,NA,0,NA,NA
+1295,0.0150716645670764,0.3775,37.75,1,96.6969635918825,0.953605033853827,37.75,56.7003990830175,18.0277557373047
+1296,-0.0643650932484161,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,22.4143733978271,15.8113880157471
+1297,-0.0855486211000971,0,0,0,NA,NA,0,NA,NA
+1298,-0.108128521139261,0.0175,1.75,1,65.4774238937655,1,1.75,3.86729540143694,0
+1299,-0.0143938172064372,0.2525,25.25,1,94.7890822083159,0.985217760860326,25.25,93.1333907854439,60.2079734802246
+1300,0.00436945988325533,0.185,18.5,2,90.311483089746,0.943369513921661,17.5,149.981024767901,123.693168640137
+1301,0.0304841865821618,0.2575,25.75,5,86.121412075952,0.796159796159796,13.75,2.78221885903368,0
+1302,0.0568818164235745,0.4075,40.75,5,91.4809280799244,0.780590717299578,31.5,4.69106847376911,0
+1303,0.0412919323753158,0.41,41,5,90.8489940377466,0.786732517678752,25.5,1.4802949137804,0
+1304,0.0396330897122243,0.3975,39.75,3,93.2555725289007,0.835161712044563,31.5,0.327490992516092,0
+1305,0.0810387045207608,0.6625,66.25,2,98.3331909921224,0.850957597436471,65.5,3.02334008846643,0
+1306,0.029741093263101,0.3475,34.75,3,92.9479430182754,0.843123057893625,30.5,1.8689718452289,0
+1307,0.0225814672446813,0.1825,18.25,5,83.6571231041638,0.827981651376147,13.5,1.50684931506849,0
+1308,0.0384198105391806,0.34,34,3,92.5952387828535,0.731182795698925,24.75,2.74317174799302,0
+1309,0.0407475877855177,0.3625,36.25,3,94.4962785572273,0.881613022567518,34,2.19728790809368,0
+1310,0.00406310984151787,0.1,10,2,82.2896125234628,0.867330016583748,6.5,3.75888347625732,0
+1311,0.0126776524042634,0.1125,11.25,3,80.0103250032402,0.733135656041512,6.75,1.73892016940647,0
+1312,0.0278853686218645,0.2525,25.25,3,89.8037503905994,0.800439771614405,14.75,1.64567528148689,0
+1313,0.016449267760654,0.075,7.5,5,66.24152315956,0.492553778268064,3.5,6.51077582041423,0
+1314,0.0475183914015724,0.41,41,3,93.3439276671634,0.831630935009541,25,5.00414262166837,0
+1315,0.00357339808080724,0.0625,6.25,1,84.2105263157895,0.92,6.25,8.32995063781738,0
+1316,0.00879199834285828,0.0675,6.75,2,80.0476208282059,0.825425525282125,5.75,1.74337288185402,0
+1317,0.0299873152905275,0.23,23,4,90.2494485504275,0.794108330693696,19.5,3.60097719275433,0
+1318,-0.00244077212995762,0.07,7,5,62.9260570907507,0.6415770609319,2,5.0993480682373,0
+1319,0.0160802128927844,0.11,11,4,74.230921377541,0.726692985119952,4.75,3.58339868892323,0
+1320,-0.00269148674817188,0.065,6.5,2,80.469605015409,0.869570888222251,6,1.15384615384615,0
+1321,0.0375663697817799,0.3575,35.75,3,91.9575467616319,0.827724477975465,26.25,2.57539601092572,0
+1322,0.00486471272794006,0.18,18,3,84.9975557023695,0.798348377184559,9.75,2.44740560319689,0
+1323,-0.000658475199961686,0.1725,17.25,2,87.3169580242115,0.780280142817907,11.5,2.25572392560434,0
+1324,0.0143268865503038,0.285,28.5,2,93.7441024262826,0.891370765157173,27,1.87715071962591,0
+1325,0.0291190076424391,0.235,23.5,5,83.3446056434293,0.70432617491441,8.75,1.6120816900375,0
+1326,0.0189084101387834,0.32,32,4,88.0292834613194,0.766473112850291,16.25,0.383922934532166,0
+1327,0.136223581750819,0.91,91,2,98.987199925565,0.887114981454604,89.5,0.164835164835165,0
+1328,0.0923863207492104,0.6975,69.75,4,95.2846026082634,0.741341240300297,56,1.62626265112217,0
+1329,0.0588877380944541,0.63,63,4,95.3861651637392,0.78240952817224,54.75,0.548747108096168,0
+1330,0.0374725901893908,0.455,45.5,4,91.5834964778442,0.771322788773038,19.5,0.137362637362637,0
+1331,0.042834393655703,0.3675,36.75,4,89.0070029966699,0.811922359198907,20.5,1.63704048208639,0
+1332,0.0565076668243046,0.5175,51.75,3,95.7892460406682,0.860036336720274,46.25,0.993453868921252,0
+1333,0.0264873524890572,0.29,29,3,92.5197435198184,0.912810194500335,27.25,5.23712357159319,0
+1334,0.0330508701742656,0.365,36.5,2,92.952592775437,0.876139078120853,20.5,1.30578733470342,0
+1335,0.0109999661839493,0.3425,34.25,2,92.8875820922815,0.841825095057034,26,1.27111047897896,0
+1336,-0.0128801408762956,0.1925,19.25,1,93.2673077410907,0.881624476415953,19.25,1.1038961038961,0
+1337,0.0016071287860359,0.2325,23.25,2,93.1623535917175,0.929359130332404,22.75,2.85185717510921,0
+1338,-0.0218235710590375,0.0025,0.25,1,0,NA,0.25,31.6227760314941,31.6227760314941
+1339,-0.0140608251486174,0.025,2.5,2,58.1880425789518,0.605522682445759,1.25,40.1542343139648,40
+1340,0.00545021379326499,0.1625,16.25,3,83.8818307904627,0.714700832122573,8.75,27.2792407109187,0
+1341,-0.00153027701215706,0.175,17.5,4,83.8792302853077,0.753633899975364,11.5,10.4820784432547,0
+1342,-0.00819567290373925,0.045,4.5,2,77.3869554016877,0.650959860383944,4.25,34.4782998826769,0
+1343,0.00523876634604676,0.14,14,5,77.3152272169512,0.700311675857109,8.75,3.87064089093889,0
+1344,0.00234728897550667,0.1275,12.75,2,84.4300638997701,0.815564996871192,6.75,0.294117647058824,0
+1345,-0.0111538477401336,0.035,3.5,5,45.589195561718,0.430051813471503,1.25,10.3251348223005,0
+1346,-0.0203506737663452,0.105,10.5,1,89.0207000039903,0.716736171217248,10.5,1.19047619047619,0
+1347,-0.08634363193647,0.02,2,1,68.0470115164975,0.795918367346939,2,1.875,0
+1348,-0.0244224569072861,0.0075,0.75,1,44.4894453484604,1,0.75,72.4629287719727,69.6419448852539
+1349,-0.0020795878021454,0.075,7.5,1,86.0448225436784,0.889685603971318,7.5,93.3228530883789,74.3303451538086
+1350,-0.0249161147256382,0,0,0,NA,NA,0,NA,NA
+1351,-0.040797846885398,0,0,0,NA,NA,0,NA,NA
+1352,-0.0282634207973024,0.01,1,1,52.6315789473684,1,1,17.8567290306091,15
+1353,-0.0408078266678785,0.0275,2.75,1,73.5251216233933,0.725792630676949,2.75,10.1073762720281,5
+1354,0.00196017500215021,0.3775,37.75,1,96.6969635918825,0.959404404622098,37.75,49.7271647169101,20.6155281066895
+1355,0.0693618241325021,0.995,99.5,1,99.9867925566623,0.20634920634921,99.5,115.826711242522,61.0327758789062
+1356,-0.0368024596342138,0.1025,10.25,2,86.3135054436428,0.870816680796092,9.75,166.792304806593,154.029220581055
+1357,-0.0209694318909897,0.275,27.5,2,94.101008686059,0.951481545659331,27,118.191298883612,90.5538558959961
+1358,0.0204453317653224,0.1675,16.75,2,87.7534795208807,0.88706655373322,13.5,125.444028598159,93.4077072143555
+1359,0.0491801445016063,0.415,41.5,4,92.0886541687786,0.849170437405732,34.25,72.5194357906479,0
+1360,0.0635342876038339,0.6975,69.75,1,98.9612174727447,0.974764999053687,69.75,33.2603234185113,0
+1361,0.0499560082090466,0.4325,43.25,1,97.260148197161,0.96685677985997,43.25,150.196099782955,131.244049072266
+1362,0.0170172386489139,0.0175,1.75,2,49.299249134574,0.618320610687023,1,74.5642514910017,68.0073547363281
+1363,-0.0556852939220744,0,0,0,NA,NA,0,NA,NA
+1364,0.0273463715970865,0.485,48.5,1,97.7057035934975,0.832793959007551,48.5,21.2323691967836,0
+1365,0.0567817115955404,0.455,45.5,4,91.9037067262509,0.831214439332481,29,36.6024577172248,0
+1366,-0.0794306475404119,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+1367,-0.15483761839103,0,0,0,NA,NA,0,NA,NA
+1368,-0.0418946039610455,0,0,0,NA,NA,0,NA,NA
+1369,-0.00658629115911936,0,0,0,NA,NA,0,NA,NA
+1370,-0.0665482740895823,0,0,0,NA,NA,0,NA,NA
+1371,-0.116599276354536,0,0,0,NA,NA,0,NA,NA
+1372,-0.265758314393461,0,0,0,NA,NA,0,NA,NA
+1373,-0.0759597268759808,0,0,0,NA,NA,0,NA,NA
+1374,-0.0260782663835016,0.0775,7.75,1,86.3573366287605,0.761517615176152,7.75,0.32258064516129,0
+1375,-0.00110521783637409,0.17,17,3,85.2642281062595,0.827882960413081,9.25,1.78254710926729,0
+1376,-0.0329354127859688,0.0075,0.75,1,44.4894453484604,1,0.75,4.02368927001953,0
+1377,-0.0230152862921477,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0
+1378,-0.0407296672328266,0.0075,0.75,1,44.4894453484604,1,0.75,15,10
+1379,-0.0429334803582969,0.0025,0.25,1,0,NA,0.25,25,25
+1380,-0.0431980443894281,0,0,0,NA,NA,0,NA,NA
+1381,-0.0194614916446517,0.03,3,3,58.8962175806842,0.696785930867192,2.25,3.77687295277913,0
+1382,-0.0207708436132452,0.1,10,3,82.8677922855033,0.734660033167496,8.5,3.30177669525146,0
+1383,-0.00978413302771514,0.2325,23.25,1,94.3478768975745,0.905812173776539,23.25,10.5880579794607,0
+1384,-0.0382099225369166,0.0725,7.25,2,83.6145503683688,0.793542467167517,7,12.3671292272107,0
+1385,-0.0694264422939159,0,0,0,NA,NA,0,NA,NA
+1386,-0.0504388885285925,0,0,0,NA,NA,0,NA,NA
+1387,-0.0449553905161156,0,0,0,NA,NA,0,NA,NA
+1388,-0.0402750324593944,0,0,0,NA,NA,0,NA,NA
+1389,-0.0678056284350896,0,0,0,NA,NA,0,NA,NA
+1390,-0.0827359636538313,0,0,0,NA,NA,0,NA,NA
+1391,-0.075485667898156,0,0,0,NA,NA,0,NA,NA
+1392,0.00166184764675563,0.23,23,1,94.2887150496276,0.936648717136522,23,38.929604737655,14.1421356201172
+1393,-0.141297421901254,0,0,0,NA,NA,0,NA,NA
+1394,-0.051399714526633,0.04,4,1,78.9473684210526,0.869791666666667,4,13.5764398574829,5
+1395,-0.0171076065486704,0.2125,21.25,2,90.1118491730098,0.865447282665826,18.25,42.1689207189223,18.0277557373047
+1396,-0.0957928438225508,0,0,0,NA,NA,0,NA,NA
+1397,-0.128151522194967,0,0,0,NA,NA,0,NA,NA
+1398,-0.0651324986709005,0.0425,4.25,2,74.1315351117723,0.74934725848564,3.75,1.88653340059168,0
+1399,0.083661607215181,0.7725,77.25,1,99.2749460632782,0.886711226917412,77.25,92.4133173624675,58.5234985351562
+1400,0.0547347664030514,0.3475,34.75,1,96.3348533717898,0.95776390020213,34.75,133.730592192506,83.8152694702148
+1401,0.032328508650935,0.2825,28.25,4,90.9721063964865,0.829199972671996,23.5,6.81060772448514,0
+1402,0.0389029410275543,0.385,38.5,4,92.7695731301551,0.821885144646499,31.75,3.59866511357295,0
+1403,0.0127921160782034,0.28,28,1,95.316724394494,0.862486248624863,28,6.96968116079058,0
+1404,0.0475355182229271,0.3925,39.25,3,96.1397559700018,0.782807498856882,38.5,5.34727761092459,0
+1405,0.0160503913135472,0.1225,12.25,3,83.9850001344587,0.755799755799756,10.25,0.204081632653061,0
+1406,-0.0166590919333885,0.02,2,5,25.5687026184117,0.285714285714286,0.75,4.67419290542603,0
+1407,0.0233547483384348,0.205,20.5,3,92.2057643347295,0.852526566905227,20,13.933569838361,0
+1408,0.023956951849832,0.3025,30.25,3,93.8264236907919,0.876181166503747,29,0.963104783996078,0
+1409,0.014750077125791,0.0925,9.25,6,64.9943228495179,0.620647608725105,3.5,4.97284275776631,0
+1410,0.00135073928098372,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,2.43872397286551,0
+1411,0.00789412096329897,0.0775,7.75,3,75.4945022088232,0.739837398373984,5,4.99313182215537,0
+1412,0.00627858331696643,0.0775,7.75,2,78.5228097278772,0.826558265582656,4,0.645161290322581,0
+1413,0.0176448423792499,0.0975,9.75,6,67.5479622875599,0.59088003409333,3.75,3.97716825436323,0
+1414,0.0175533824961894,0.155,15.5,2,86.659642623504,0.791803637957484,9.5,5.68870587502756,0
+1415,0.0138050550877961,0.105,10.5,5,71.9670637093162,0.669525533086789,4.5,2.40983817690895,0
+1416,0.00514081571232509,0.0675,6.75,2,77.1298294914489,0.77554710393416,5,6.44182304099754,0
+1417,0.00968863255950282,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,1.11111111111111,0
+1418,0.0117048226127736,0.0725,7.25,4,73.3289378610842,0.793542467167517,5.75,3.91861527541588,0
+1419,0.0021369134813358,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,8.87523460388184,5
+1420,0.00827118641471088,0,0,0,NA,NA,0,NA,NA
+1421,0.00471497350057859,0.0525,5.25,3,67.1033981831812,0.637203166226913,2.25,5.33450435456775,0
+1422,0.0188703623548736,0.1475,14.75,2,87.9205964465898,0.804496578690127,12.25,7.69045283430714,0
+1423,0.0172697242083086,0.1175,11.75,5,80.3249805270516,0.631728045325779,7.75,3.5522761243455,0
+1424,0.0546136992808897,0.525,52.5,5,92.1498488367085,0.730784762417553,33.75,1.47772607349214,0
+1425,0.0155068738239061,0.325,32.5,5,90.5962802973131,0.793717768401313,26.25,1.63131590623122,0
+1426,0.0446401957143098,0.535,53.5,3,94.7013401791344,0.875722699519101,43.25,1.69393974375502,0
+1427,0.0786053558776621,0.88,88,1,99.6526127274839,0.84984984984985,88,0.301742055199363,0
+1428,0.111622766633373,0.9675,96.75,1,99.9123308655226,0.874240201215678,96.75,0,0
+1429,0.0987467843593913,0.6925,69.25,2,98.3217912724408,0.874921826141338,67.75,0.523465703971119,0
+1430,0.0164991044480121,0.1625,16.25,4,83.1355529295617,0.788667283053758,7.75,3.53994125953087,0
+1431,0.0659264292768785,0.67,67,3,97.5810806077625,0.849388517380565,64.25,12.3309106115085,0
+1432,0.0326870864663397,0.3,30,3,88.7571589907568,0.803407601572739,12,6.33348576227824,0
+1433,-0.00467259831897991,0.105,10.5,3,82.2359978947187,0.842631206231804,8.25,0.952380952380952,0
+1434,0.0133777970179244,0.2475,24.75,2,90.7662319874141,0.888013736981597,19,1.44731587111348,0
+1435,-0.0117460983824276,0.08,8,2,82.0949636389506,0.790969899665552,7,8.493696808815,0
+1436,-0.0412598286478169,0.0475,4.75,3,71.7416211426375,0.746583401212779,4,7.64470110441509,0
+1437,-0.0409172896520602,0,0,0,NA,NA,0,NA,NA
+1438,-0.0221301883496926,0.03,3,3,56.7739118937307,0.514857489387508,1.5,8.58929920196533,0
+1439,0.00364127948683745,0.075,7.5,5,64.9561113929684,0.580805295091009,2.5,2.76587359110514,0
+1440,0.00701967647464699,0.1025,10.25,7,66.893734242013,0.596302127487788,3.5,2.22471227878478,0
+1441,0.0292090037950072,0.305,30.5,2,94.3442686777192,0.804681141964257,28.5,2.21374342871494,0
+1442,4.07245524547761e-05,0.0475,4.75,3,63.5218230158654,0.637976287446828,1.75,5.07909553929379,0
+1443,-0.0236475841477113,0.0275,2.75,2,66.0118058066693,0.862896315338475,2.5,17.5408377213912,5
+1444,-0.00152255496498583,0.035,3.5,4,63.1409196670222,0.533678756476684,2.75,6.01105417524065,0
+1445,0.0100404374286154,0.06,6,2,80.9043128629043,0.832026875699888,5.75,8.24376630783081,0
+1446,0.0144329232957534,0.15,15,3,88.0876269246202,0.830316742081448,13.75,6.54373108545939,0
+1447,0.013719372964988,0.1825,18.25,4,84.3461761749769,0.770642201834862,13.25,5.29362012262214,0
+1448,-0.0141786403883088,0.16,16,3,90.1105453262787,0.766156462585034,15.25,2.77126061916351,0
+1449,0.0484470153193479,0.49,49,4,94.7103980569224,0.816849816849817,41.75,45.277437735577,0
+1450,-0.00943694624289492,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,98.4458173116048,93.9414672851562
+1451,-0.0226101119779923,0.015,1.5,1,62.2896536353828,1,1.5,88.3763262430827,82.7647323608398
+1452,-0.0348957716002406,0.005,0.5,1,30.8308651382582,1,0.5,20.1942176818848,18.0277557373047
+1453,-0.0305585353614879,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5
+1454,0.0111538362867577,0.395,39.5,1,96.8888706928871,0.982901111427757,39.5,47.0743597368651,5
+1455,0.0893982969771605,0.78,78,1,99.3038050834495,0.96134817563389,78,134.773237521832,83.8152694702148
+1456,-0.0466178091558686,0.0725,7.25,1,85.7162801918893,0.931180822389172,7.25,82.2141889374832,68.0073547363281
+1457,0.0362736902673419,0.4825,48.25,1,97.686149992119,0.983806979191968,48.25,61.8843871101814,15
+1458,0.00995788150597946,0.225,22.5,1,94.1674468064267,0.919855740332599,22.5,84.6598786671956,60.4152297973633
+1459,0.105793298743665,0.8275,82.75,2,98.245988198511,0.786666666666666,77.25,30.7366860553937,0
+1460,0.0800958352218981,0.54,54,1,98.1009071848445,0.972961280553753,54,42.9775246514214,10
+1461,0.0803523760955431,0.4675,46.75,1,97.5655534302407,0.972862221498548,46.75,148.541972767223,128.549606323242
+1462,0.0179218862830749,0,0,0,NA,NA,0,NA,NA
+1463,-0.0785092286665531,0,0,0,NA,NA,0,NA,NA
+1464,0.0645343976837466,0.3975,39.75,2,94.9173988778506,0.920422895469789,37,23.8676173612007,5
+1465,0.0431492576409073,0.4025,40.25,3,93.0813844421133,0.773832409815674,22.75,19.9451628264433,0
+1466,-0.0538110166805564,0.1525,15.25,2,90.1348767541964,0.888684811042467,14.75,0.491803278688525,0
+1467,-0.0616304161685184,0,0,0,NA,NA,0,NA,NA
+1468,0.00414929696815307,0.1075,10.75,3,79.4991336834262,0.782135076252723,6.5,7.6748464273852,0
+1469,-0.0238505528009114,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,2.45234086778429,0
+1470,-0.0769572733063251,0,0,0,NA,NA,0,NA,NA
+1471,-0.157712369207293,0,0,0,NA,NA,0,NA,NA
+1472,-0.205326689593494,0,0,0,NA,NA,0,NA,NA
+1473,-0.0116332229327236,0,0,0,NA,NA,0,NA,NA
+1474,-0.00311910751090181,0,0,0,NA,NA,0,NA,NA
+1475,-0.0196574990585214,0,0,0,NA,NA,0,NA,NA
+1476,0.000416903906680091,0.0375,3.75,3,62.1481913561713,0.716646989374262,2.25,0.333333333333333,0
+1477,0.0056091107967768,0.02,2,3,41.410345494925,0.591836734693878,1,13.2080543041229,10
+1478,0.00535757993872721,0.045,4.5,5,59.4569413658969,0.612177622648827,3,10.7178568310208,0
+1479,-0.00438029717864993,0.005,0.5,2,0,1,0.25,10,5
+1480,-0.0405610382210307,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,5.83333333333333,0
+1481,-0.0273609628993381,0.03,3,4,50.2805031471807,0.575500303214069,1.75,29.5137802759806,18.0277557373047
+1482,0.0322686851327489,0.34,34,3,89.7108056691656,0.761730205278592,14.25,10.131671035991,0
+1483,0.0145506541147688,0.3325,33.25,1,96.1356845313251,0.894759649611539,33.25,13.6241462822247,0
+1484,-0.0263980443984838,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,37.5266331566705,25.4950981140137
+1485,-0.00887902935251986,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,35.9852923343056,21.2132034301758
+1486,0.00379106638167286,0.47,47,1,97.5860530790582,0.983734547820429,47,30.0978985441492,5
+1487,-0.107923638469947,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,8.69460084703234,5
+1488,-0.00943069706147071,0.415,41.5,1,97.093152360986,0.955309759231328,41.5,27.58600378611,0
+1489,-0.0667379693606927,0.02,2,1,68.0470115164975,0.693877551020408,2,6.65642595291138,0
+1490,-0.114570198386682,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15
+1491,-0.0233972443026141,0.265,26.5,1,95.039096185713,0.985753463689141,26.5,41.6864958709141,14.1421356201172
+1492,-0.0490361258234134,0.0075,0.75,1,44.4894453484604,1,0.75,20,15
+1493,-0.067036125362647,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,5.80358950297038,0
+1494,-0.0504816967694205,0.02,2,4,34.5233986084855,0.387755102040816,0.75,20.5779237747192,5
+1495,-0.0373852541094857,0.045,4.5,3,62.711629952445,0.573395384913709,1.75,10.5254173278809,0
+1496,-0.120098758713184,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,25.6055155436198,20
+1497,-0.154826524404343,0,0,0,NA,NA,0,NA,NA
+1498,-0.0687837900497834,0.075,7.5,2,82.4159966826572,0.867622724765582,7,3.63807118733724,0
+1499,0.0709982062864583,0.775,77.5,1,99.2846122710835,0.840182648401827,77.5,26.8134930764475,0
+1500,0.000643554876805865,0.1225,12.25,2,88.0454022882827,0.891466558133225,11.75,55.4469824810417,0
+1501,0.0198337322204952,0.0625,6.25,5,65.4099246181801,0.626666666666667,2.75,3.29442718505859,0
+1502,0.0271004073917766,0.185,18.5,2,89.8868174314273,0.896177442189712,16.5,6.36118270255424,0
+1503,-0.00737449724238104,0.02,2,2,56.0496280993022,0.591836734693878,1.5,16.755051612854,0
+1504,0.0312561696464763,0.305,30.5,3,92.3430424201095,0.785149256160682,26,3.8180890161483,0
+1505,0.00103405927591666,0.0275,2.75,4,44.197155902927,0.451585261353899,1,2.38003089211204,0
+1506,-0.00245046461364836,0.075,7.5,3,79.9431043807899,0.823496966354109,6.75,9.32346642812093,0
+1507,0.00315051694460635,0.0375,3.75,3,58.8003676892038,0.669421487603306,1.75,3.27614237467448,0
+1508,0.0151549646782951,0.0575,5.75,5,57.1748120313436,0.498968464485706,2,2.78878850522249,0
+1509,0.0199684073765638,0.2,20,3,87.9210421042524,0.841549295774648,12,3.64112377166748,0
+1510,0.00245394852332538,0.0575,5.75,3,70.4640532101323,0.793692897141173,4,4.3632756108823,0
+1511,-0.0101122082624897,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,4.51184463500977,0
+1512,-0.011640972529899,0,0,0,NA,NA,0,NA,NA
+1513,0.0255913153591791,0.1875,18.75,5,83.1212357769083,0.738927738927739,12.5,5.55833017985026,0
+1514,0.000491553858373663,0.075,7.5,1,86.0448225436784,0.911748483177055,7.5,4.74754689534505,0
+1515,0.00871100536929589,0.02,2,1,68.0470115164975,1,2,8.31285190582275,5
+1516,-0.000236016506264605,0.0275,2.75,3,55.3822898769033,0.725792630676949,2,3.18181818181818,0
+1517,0.00330697311846961,0.1275,12.75,3,86.5907635730064,0.907782498435596,12,5.6436388352338,0
+1518,0.0158074351491859,0.115,11.5,5,77.8725508269745,0.637838620889468,6.75,2.65371886543606,0
+1519,0.00340188275300534,0.005,0.5,2,0,1,0.25,36.7171020507812,35.355339050293
+1520,-0.0104450623261437,0,0,0,NA,NA,0,NA,NA
+1521,0.00110247625049851,0.0725,7.25,2,78.3134274440812,0.747663015426966,4.5,10.7320980861269,0
+1522,0.000524310738892382,0.0025,0.25,1,0,NA,0.25,25.4950981140137,25.4950981140137
+1523,0.00283924026609384,0,0,0,NA,NA,0,NA,NA
+1524,0.0424503641603951,0.3625,36.25,5,90.0035527864303,0.733629300776915,22.5,2.3374429110823,0
+1525,0.0249944392713951,0.225,22.5,4,86.2147704475249,0.767581646964536,14,1.21269039577908,0
+1526,0.0149077504684101,0.2625,26.25,3,89.512476244337,0.834992377365259,17.25,1,0
+1527,0.0256049306345813,0.375,37.5,3,93.3770812383547,0.784727272727273,28.75,1.16903559366862,0
+1528,0.0537118615383952,0.575,57.5,1,98.3223108063601,0.890305772658714,57.5,0.889452925972317,0
+1529,0.0123389351674996,0.195,19.5,5,81.9035440302556,0.684940138626339,7,1.3617077362843,0
+1530,-0.0127853843281628,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0
+1531,-0.00949581722292351,0.06,6,2,77.155784368803,0.804031354983203,5,2.55055014292399,0
+1532,0.00414459586987505,0.0875,8.75,4,72.4684352537534,0.565422768068021,3.25,14.3094163622175,0
+1533,-0.0209486565861152,0.1025,10.25,2,85.3191777257007,0.886964595696581,9.5,3.90019067903844,0
+1534,0.0348690010842256,0.4225,42.25,1,97.165991902834,0.922299922299922,42.25,1.99152983716254,0
+1535,0.0465530654770919,0.4625,46.25,3,96.4512857924953,0.798721610227118,44.75,3.72969097446751,0
+1536,0.0322041440706653,0.3875,38.75,5,90.4984777700663,0.747941281775868,24,3.34497117073305,0
+1537,0.0323116031341851,0.3325,33.25,6,88.7603950610659,0.739994428452038,22.25,2.90653039458999,0
+1538,0.0484806114562753,0.3875,38.75,3,94.1565920688287,0.833870390261368,35,2.82764045961442,0
+1539,0.00823596252970106,0.0725,7.25,2,78.1398832203314,0.793542467167517,5.25,2.72903915931439,0
+1540,-0.000251686989668087,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+1541,-0.0097092070992403,0.075,7.5,5,64.7915020705318,0.602868174296746,2.25,5.50146115620931,0
+1542,0.0212233818720051,0.185,18.5,5,87.0791312619978,0.792354884379424,15.75,0.675675675675676,0
+1543,-0.0278794416702294,0,0,0,NA,NA,0,NA,NA
+1544,-0.0210248132077322,0,0,0,NA,NA,0,NA,NA
+1545,-0.0143013881937395,0,0,0,NA,NA,0,NA,NA
+1546,-0.0118635790411645,0,0,0,NA,NA,0,NA,NA
+1547,-0.00360405463301504,0.095,9.5,2,83.5818245529019,0.807068315355608,8,8.68062631707442,0
+1548,0.00622721185617593,0.04,4,3,68.5730794644469,0.652777777777778,3.25,0.625,0
+1549,0.0333049716709229,0.27,27,6,86.024016764162,0.683877766069547,12.5,4.16372723049588,0
+1550,0.0290412488905713,0.235,23.5,2,92.1167982300021,0.782135076252723,20.5,6.52564294287499,0
+1551,-0.0122289202809043,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,2.74058251631887,0
+1552,-0.0124299349693229,0.075,7.5,2,80.9536728762263,0.889685603971318,6.75,14.2734720865885,0
+1553,-0.00145738120141687,0.06,6,6,55.8830061061344,0.524076147816349,2,7.51424829165141,0
+1554,-0.110092468843795,0,0,0,NA,NA,0,NA,NA
+1555,0.0743806130320445,0.5725,57.25,1,98.3071726267885,0.972609118424477,57.25,110.530611129827,51.4781532287598
+1556,-0.0327798119792351,0,0,0,NA,NA,0,NA,NA
+1557,-0.0242755242177918,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0
+1558,-0.0128786575135746,0.175,17.5,1,92.6818041122695,0.871889627987189,17.5,49.22282371521,35
+1559,0.153536659684032,1,100,1,100,NA,100,24.4681158256531,0
+1560,0.0812594323856138,0.445,44.5,3,94.0360496666108,0.879514773131795,36.25,69.8753096762668,31.6227760314941
+1561,0.110574834230356,0.6525,65.25,1,98.7475319937876,0.941151373379824,65.25,116.333542220894,50
+1562,-0.012621891386807,0.0375,3.75,2,72.8063268476367,0.858323494687131,3.5,44.4396853129069,35.355339050293
+1563,-0.0583304224988387,0.005,0.5,1,30.8308651382582,1,0.5,25.2475490570068,25
+1564,0.0743314759188797,0.5775,57.75,2,97.575257817266,0.85172778319307,56,27.6581822267342,0
+1565,-0.155913312263438,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,33.9934641520182,0
+1566,-0.141494405000703,0.02,2,1,68.0470115164975,1,2,0,0
+1567,-0.0111439007941271,0,0,0,NA,NA,0,NA,NA
+1568,-0.0513284040726467,0,0,0,NA,NA,0,NA,NA
+1569,-0.0398295431284737,0,0,0,NA,NA,0,NA,NA
+1570,-0.0880764831032138,0,0,0,NA,NA,0,NA,NA
+1571,-0.162721255463548,0,0,0,NA,NA,0,NA,NA
+1572,-0.0766319653750452,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,6.47237862481011,0
+1573,-0.000415364205473452,0.025,2.5,3,55.3365473562369,0.526627218934911,1.75,5.3251407623291,0
+1574,-0.00856675575905683,0.04,4,4,57.2141030695393,0.609375,2.25,7.15525591373444,0
+1575,-0.0168694132250312,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0
+1576,0.00890818570374904,0.06,6,4,69.0579699263255,0.692049272116461,3.25,2.58629449208577,0
+1577,0.00274686237777132,0.07,7,3,73.8098052827465,0.68936678614098,3.5,6.19457381112235,0
+1578,-0.00694345695490483,0.0375,3.75,5,48.6975807407065,0.480519480519481,1.5,2.94280904134115,0
+1579,0.000152010710426111,0.04,4,4,59.4821833392925,0.522569444444444,1.75,2.88627123832703,0
+1580,-0.0348498866154114,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,0,0
+1581,-0.0267656008954509,0.0325,3.25,2,64.4889415222974,0.770312948607522,2,2.30769230769231,0
+1582,0.0409820486712306,0.5625,56.25,2,95.4370012331053,0.858503401360544,43.25,11.798843866984,0
+1583,0.0471771656254714,0.4325,43.25,1,97.260148197161,0.917141949649925,43.25,31.007546408328,0
+1584,0.0371044269738923,0.2825,28.25,1,95.3608329643832,0.911183985789438,28.25,40.3923634554433,20.6155281066895
+1585,0.02225383654908,0.1725,17.25,2,91.0259503032426,0.820229207760106,16.5,32.1899314825086,11.1803398132324
+1586,0.0622009763296955,0.665,66.5,1,98.8090595843688,0.976071546077229,66.5,38.6125364662113,5
+1587,-0.0986384784078109,0.0025,0.25,1,0,NA,0.25,0,0
+1588,0.0622573964690673,0.69,69,1,98.9270603639069,0.937725744177357,69,46.5529581636622,15
+1589,-0.0413682710059948,0,0,0,NA,NA,0,NA,NA
+1590,-0.105221473248675,0,0,0,NA,NA,0,NA,NA
+1591,0.00281076151368325,0.1775,17.75,1,92.7707193874331,0.970820668693009,17.75,89.9797081745846,66.7083206176758
+1592,-0.0132770374800384,0,0,0,NA,NA,0,NA,NA
+1593,0.100424471962879,0.565,56.5,1,98.2611567869712,0.989079094656947,56.5,41.2228905838148,10
+1594,-0.0226263889420079,0.2275,22.75,1,94.2285806660851,0.944064884733709,22.75,10.3293616326301,0
+1595,-0.12069852273853,0,0,0,NA,NA,0,NA,NA
+1596,-0.0552705860392416,0,0,0,NA,NA,0,NA,NA
+1597,-0.0539614218383213,0.0025,0.25,1,0,NA,0.25,5,5
+1598,-0.0611115465449257,0.0475,4.75,1,81.114133276783,0.855190514978731,4.75,0,0
+1599,0.0384546278243943,0.44,44,3,96.2012344927242,0.796703296703297,42.25,7.34298139268702,0
+1600,-0.0936867488801363,0.02,2,1,68.0470115164975,0.795918367346939,2,3.125,0
+1601,0.0192418460138379,0.305,30.5,5,90.6687414693744,0.752596113154725,24,5.16417514300737,0
+1602,0.0293125166065329,0.255,25.5,7,84.5160902761554,0.677265559100744,15.75,7.03426217097862,0
+1603,0.0416453751279914,0.3875,38.75,5,90.1692618779415,0.667740780522735,20.25,3.87238144413117,0
+1604,0.00838113084395445,0.1675,16.75,4,85.0209997386166,0.774133107466441,11,3.73326933561866,0
+1605,0.0203048434549373,0.195,19.5,2,90.4210800149375,0.927986317400306,17.75,4.5723748818422,0
+1606,-0.00802988699864272,0,0,0,NA,NA,0,NA,NA
+1607,-0.0104245487618934,0,0,0,NA,NA,0,NA,NA
+1608,0.00181542332668869,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,1.57894736842105,0
+1609,-0.00270726557803755,0.0125,1.25,2,43.859649122807,0.594936708860759,1,14.2821701049805,0
+1610,0.0241949284756993,0.24,24,3,87.3706084805862,0.762851897184822,10.75,5.91120950380961,0
+1611,-0.0062871853712204,0.04,4,2,70.9784485168067,0.739583333333333,3.25,3.56694173812866,0
+1612,-0.00802817182119725,0.005,0.5,1,30.8308651382582,1,0.5,8.5355339050293,7.07106781005859
+1613,0.0157769900082758,0.1475,14.75,3,86.106437164034,0.758495773676039,10.25,3.58947142908129,0
+1614,0.0191549290996045,0.16,16,5,78.6790743062546,0.702380952380952,7.25,3.39098340272903,0
+1615,0.000822694355774729,0.01,1,1,52.6315789473684,1,1,1.25,0
+1616,-0.0174367829066478,0,0,0,NA,NA,0,NA,NA
+1617,-0.00974227221913679,0,0,0,NA,NA,0,NA,NA
+1618,0.0181740046626146,0.215,21.5,4,85.9582314214047,0.808500895050164,12.75,1.54981710744459,0
+1619,0.0036984596162165,0.1025,10.25,1,88.8238145380415,0.903112510597069,10.25,14.6415302927901,0
+1620,-0.00812922081627221,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,2.30769230769231,0
+1621,0.00925430235439308,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,2.30769230769231,0
+1622,0.00354403846449713,0,0,0,NA,NA,0,NA,NA
+1623,0.0187778235169571,0.165,16.5,2,89.0685086017329,0.906274407706327,14.25,1.86794350363991,0
+1624,0.030048055558741,0.1875,18.75,6,79.5600175470484,0.757575757575758,11.5,1.95767054239909,0
+1625,0.0139131389119575,0.2925,29.25,3,93.5254438656275,0.92666177745183,28.25,1.22465189094217,0
+1626,0.0340530635981895,0.3975,39.75,2,93.4520639367542,0.869266185414654,20,1.50943396226415,0
+1627,0.0525889695715887,0.5675,56.75,3,97.0027697146843,0.797756186884215,54.25,1.86135166857211,0
+1628,0.0304185464319744,0.32,32,5,92.7230338569433,0.791719262812421,29.25,0.995262056589127,0
+1629,0.00771692273302506,0.055,5.5,5,61.0639092147636,0.564270152505447,2.5,1.45777580954812,0
+1630,-0.0149359584603553,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,0.434782608695652,0
+1631,-0.00409676793124163,0.1225,12.25,7,67.7955634903725,0.60656627323294,3.25,4.84021817421427,0
+1632,0.0289500397651682,0.36,36,1,96.4912280701754,0.810606060606061,36,5.98014495107863,0
+1633,-0.0141441818040039,0.1625,16.25,4,82.9275969530665,0.746400739664509,10.25,9.59964414743277,0
+1634,-0.0127691983637851,0.0525,5.25,2,76.1446640085032,0.802110817941952,4.5,7.69249253045945,0
+1635,-0.00854623352101953,0.1775,17.75,2,87.5737240274238,0.863829787234043,10.5,1.46679064253686,0
+1636,0.0186704317804652,0.28,28,2,94.4468929109825,0.903740374037404,27.5,3.11468580790928,0
+1637,-0.00492372158389117,0.0525,5.25,2,73.3998551301285,0.83509234828496,3.75,9.65185837518601,0
+1638,-0.0131201227628634,0,0,0,NA,NA,0,NA,NA
+1639,0.00394809769545191,0.05,5,3,66.1171598722772,0.728353140916808,3,8.92983932495117,0
+1640,-0.00359896716558069,0.0025,0.25,1,0,NA,0.25,0,0
+1641,0.00649940679660176,0.0175,1.75,2,49.299249134574,0.618320610687023,1,3.86729540143694,0
+1642,-0.0235099056378567,0.005,0.5,2,0,1,0.25,2.5,0
+1643,-0.0275320878836055,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,5.1733147757394,0
+1644,-0.0121905510659053,0.0025,0.25,1,0,NA,0.25,5,5
+1645,-0.0261202750201483,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+1646,-0.0108738014150094,0,0,0,NA,NA,0,NA,NA
+1647,-0.0112931193193754,0,0,0,NA,NA,0,NA,NA
+1648,-0.00833491473513277,0,0,0,NA,NA,0,NA,NA
+1649,0.0103474378315877,0.16,16,4,82.0285332937756,0.808673469387755,11.75,21.9282298088074,0
+1650,0.0200550324825599,0.1675,16.75,2,88.644101780733,0.876799876799877,14,26.1107707806488,0
+1651,0.0142669645231035,0.15,15,2,90.7712347883201,0.819004524886878,14.75,0.867851130167643,0
+1652,0.0312216210046427,0.3225,32.25,3,90.3917612785384,0.742482531208291,18.25,6.81955441023952,0
+1653,-0.033644286587587,0.085,8.5,3,74.9506677186284,0.804839968774395,5.25,2.81308679019704,0
+1654,-0.0578924900819857,0,0,0,NA,NA,0,NA,NA
+1655,0.0299215338679255,0.33,33,1,96.1011760023317,0.975227596457546,33,32.4598058353771,0
+1656,-0.0392483337958038,0,0,0,NA,NA,0,NA,NA
+1657,-0.0161156399447373,0.05,5,1,81.7256002368443,0.966044142614601,5,9.88280811309814,0
+1658,0.0201410194916753,0.28,28,2,92.0712103198856,0.910616061606161,23.75,15.5011898790087,5
+1659,0.0511577673401916,0.415,41.5,1,97.093152360986,0.949723479135244,41.5,17.1614555335907,0
+1660,0.068984988121374,0.4175,41.75,3,93.7902091801929,0.888523493673708,34.5,56.0842010132567,7.07106781005859
+1661,0.145447870437201,0.95,95,1,99.8632718311308,0.972260748959778,95,87.3094373000296,50.2493743896484
+1662,-0.0937923777953256,0.025,2.5,2,59.7635627407876,0.684418145956607,1.75,51.9988681793213,40.3112869262695
+1663,-0.027658845843107,0,0,0,NA,NA,0,NA,NA
+1664,0.0653106890072083,0.4975,49.75,2,96.4139995744084,0.94067602367566,47.25,18.3200462571341,0
+1665,-0.190332072125348,0.01,1,2,30.8308651382582,0.494949494949495,0.5,0,0
+1666,-0.0564624442167042,0,0,0,NA,NA,0,NA,NA
+1667,-0.00871664118920307,0,0,0,NA,NA,0,NA,NA
+1668,-0.0945060846514753,0,0,0,NA,NA,0,NA,NA
+1669,-0.0230043772163117,0.035,3.5,2,65.5940978380291,0.740932642487047,2,7.37178080422538,0
+1670,-0.192000391073525,0,0,0,NA,NA,0,NA,NA
+1671,-0.0374731127169071,0.0025,0.25,1,0,NA,0.25,0,0
+1672,-0.00263869317542003,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,2.5,0
+1673,-0.00323356604619221,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,9.32044792175293,5
+1674,-0.0192820322300577,0,0,0,NA,NA,0,NA,NA
+1675,-0.00334255885107268,0.02,2,2,55.2425944039245,0.693877551020408,1.5,9.26934480667114,0
+1676,-0.0119234349773615,0.01,1,2,30.8308651382582,0.494949494949495,0.5,2.5,0
+1677,-0.0150892989766726,0.0025,0.25,1,0,NA,0.25,5,5
+1678,-0.000232575991612975,0.025,2.5,4,41.6623578643161,0.447731755424063,1,4.62132034301758,0
+1679,-0.0331504678901547,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,10.1820423126221,5
+1680,-0.01375544573561,0.0925,9.25,2,80.8209764281737,0.891613602492887,5.25,0.731650481352935,0
+1681,-0.0358375960076228,0.0575,5.75,1,83.3142722045184,0.882110226937813,5.75,0.217391304347826,0
+1682,0.0457801566251419,0.6825,68.25,1,98.892341761381,0.944635826771654,68.25,17.7157735649919,0
+1683,0.0530292444676161,0.5125,51.25,3,94.3889145016825,0.833097785853691,33.25,46.4344904085485,5
+1684,0.031991024663439,0.2025,20.25,2,90.7069638119257,0.851967955416231,18,39.6996491043656,18.0277557373047
+1685,0.0184905741443799,0.275,27.5,3,92.1425074368103,0.875238260266852,25.5,44.697284004905,25
+1686,0.00905359481810592,0.5025,50.25,1,97.8384672014884,0.967666751990516,50.25,34.7572451444408,10
+1687,-0.0600734675645799,0.07,7,1,85.3702908942512,0.97610513739546,7,0,0
+1688,0.0569621542136883,0.485,48.5,1,97.7057035934975,0.924487594390507,48.5,22.832046125353,0
+1689,-0.052330795022217,0.0075,0.75,1,44.4894453484604,1,0.75,23.4983660380046,20
+1690,-0.0821596712047176,0.005,0.5,1,30.8308651382582,1,0.5,18.2134580612183,15.8113880157471
+1691,0.0021341959964775,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,119.267773946126,107.70329284668
+1692,-0.00429508352566245,0,0,0,NA,NA,0,NA,NA
+1693,0.158204734024876,0.8075,80.75,1,99.4061591150036,0.965935703640622,80.75,68.4299298572836,10
+1694,-0.046716987948289,0.035,3.5,1,77.1303955881658,0.792746113989637,3.5,13.5138559341431,0
+1695,-0.162609658320434,0,0,0,NA,NA,0,NA,NA
+1696,-0.0925270153465681,0,0,0,NA,NA,0,NA,NA
+1697,-0.0903422633366427,0,0,0,NA,NA,0,NA,NA
+1698,-0.0355135854423497,0.04,4,1,78.9473684210526,0.869791666666667,4,1.5625,0
+1699,-0.0159544618292421,0.1,10,4,77.58395479897,0.78441127694859,7.25,0.875,0
+1700,0.00697277846280485,0.31,31,3,90.7564766300428,0.78743961352657,19.5,1.70333228572722,0
+1701,0.0201841090818016,0.19,19,3,85.5248450633835,0.834162520729685,12.5,0.526315789473684,0
+1702,0.0165487022768866,0.355,35.5,3,94.5191342805412,0.821109123434705,33.25,5.25345567246558,0
+1703,0.02582816439829,0.325,32.5,4,88.6872306967781,0.724957024535084,13.75,5.19427849696233,0
+1704,0.0208887649433564,0.14,14,5,79.8926213495168,0.652361543994246,8.75,2.87258659090315,0
+1705,-0.0120332109638821,0.0325,3.25,4,47.1343168217974,0.483204134366925,1,7.58513435950646,0
+1706,-0.0125801439464522,0.0375,3.75,3,59.002942940761,0.716646989374262,2.25,5.78835271199544,0
+1707,-0.00697286169679501,0,0,0,NA,NA,0,NA,NA
+1708,-0.00956288930661685,0,0,0,NA,NA,0,NA,NA
+1709,-0.00442362001071615,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,3.28567420111762,0
+1710,-0.0131241622563473,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+1711,-0.0130345074782963,0.04,4,2,71.3827116079853,0.869791666666667,3.5,0,0
+1712,0.00471166288439576,0.08,8,5,65.7314933921048,0.665551839464883,3,8.79152715206146,0
+1713,0.0218211447930935,0.215,21.5,4,87.4845315174804,0.79184879896757,15.75,4.82008949545927,0
+1714,0.00988306050722258,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,5.3451779683431,5
+1715,0.000727572699888697,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0
+1716,0.00596374959895911,0.02,2,2,52.6315789473684,0.489795918367347,1,6.29441738128662,0
+1717,-0.00060604698217503,0.015,1.5,2,46.1375166841518,0.564902102973169,1,3.33333333333333,0
+1718,0.00387057453339366,0.06,6,1,83.7764057650598,0.944008958566629,6,9.87620035807292,0
+1719,-0.0111652482564386,0.0975,9.75,6,71.068471323739,0.693160025569998,5.25,7.00796909821339,0
+1720,0.00269063434632699,0.165,16.5,2,87.8793940707267,0.833376724811247,13.25,0.984848484848485,0
+1721,0.0220272939828646,0.1325,13.25,3,80.4126387358305,0.809988282610761,6.5,1.68192708717202,0
+1722,0.0111358755191077,0.0125,1.25,1,58.1880425789518,1,1.25,18.7575191497803,15
+1723,0.021604104959406,0.21,21,5,88.8791847284453,0.813099991504545,18.75,2.23126674833752,0
+1724,-0.0104270666906814,0.0075,0.75,1,44.4894453484604,1,0.75,8.04737854003906,7.07106781005859
+1725,0.0410883531620129,0.4025,40.25,5,91.0884536632991,0.824720117607147,26.25,2.43237501345806,0
+1726,0.0164536284503993,0.2925,29.25,2,95.0791202204546,0.846656443762917,29,2.89683095817892,0
+1727,0.00537060954710341,0.1325,13.25,3,85.5004174192455,0.82265573043671,11,0.566037735849057,0
+1728,0.0196682285334032,0.2675,26.75,3,91.3989007698081,0.865603282109321,23.5,17.6036855038081,0
+1729,0.021941490164254,0.3225,32.25,2,94.4952033998833,0.855538980921724,30.75,5.38120731087618,0
+1730,0.0449367967547732,0.455,45.5,2,96.793529982709,0.880216698881115,44.75,3.54136951153095,0
+1731,-0.0242354837292351,0.15,15,2,89.163063425465,0.920814479638009,14.25,2.55473785400391,0
+1732,0.0148196391127385,0.1575,15.75,2,89.9075183218339,0.881305637982196,15,1.48070271809896,0
+1733,0.00326937008278037,0.1125,11.25,3,80.1800748489521,0.733135656041512,7,3.18409491644965,0
+1734,-0.0123745299055008,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.34912618001302,0
+1735,-0.0148064992297441,0.13,13,1,90.6657843098624,0.922510654784967,13,33.7028601719783,20.6155281066895
+1736,-0.0411621339383055,0,0,0,NA,NA,0,NA,NA
+1737,-0.0082994698639061,0,0,0,NA,NA,0,NA,NA
+1738,0.0224925750715875,0.1125,11.25,2,86.0581148728601,0.925871015567087,10.5,12.2249659220378,0
+1739,-0.00857353860349576,0.06,6,4,69.4214085221222,0.608062709966405,4,15.5421647230784,0
+1740,-0.00225631402433009,0.0525,5.25,2,78.2271746334801,0.934036939313984,5,4.87744794573103,0
+1741,-0.0349522604624508,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0
+1742,-0.00846301256553488,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047
+1743,-0.0112185436265099,0,0,0,NA,NA,0,NA,NA
+1744,-0.0241617427057645,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,38.9686075846354,36.4005508422852
+1745,-0.0244101165628308,0.1,10,1,88.6195912622717,0.983416252072968,10,0,0
+1746,-0.00844420148496283,0.0875,8.75,3,77.328745849978,0.829948039678791,5.75,12.8011336735317,0
+1747,-0.0396920919703371,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0
+1748,-0.012811332045294,0,0,0,NA,NA,0,NA,NA
+1749,-0.0142323502761428,0,0,0,NA,NA,0,NA,NA
+1750,-0.0177961732811218,0,0,0,NA,NA,0,NA,NA
+1751,-0.0274883623371716,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+1752,-0.00158409209756428,0.075,7.5,3,75.4348316037414,0.713182570325428,4.5,2.397527440389,0
+1753,0.00794386226603819,0.105,10.5,4,77.3360969481629,0.779683688724526,7,1.45745722452799,0
+1754,0.0720972651983084,0.655,65.5,1,98.7599782819451,0.952773104282889,65.5,30.0626489042326,0
+1755,0.0143675966520095,0.34,34,2,92.9480246466787,0.926686217008798,24.25,13.6031038200154,0
+1756,-0.00572592669748701,0.03,3,1,74.8763016215986,0.939357186173438,3,1.66666666666667,0
+1757,-0.00121886402974894,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,8.80497008103591,5
+1758,0.00996787425672664,0.32,32,1,95.959121300177,0.955819237566271,32,23.1981842070818,5
+1759,-0.0118853782990698,0.0025,0.25,1,0,NA,0.25,15,15
+1760,0.0183628018156287,0.2675,26.75,2,92.6444081345058,0.929264885320695,24.75,26.9529861022379,5
+1761,0.0534105741686653,0.55,55,2,97.0678503786775,0.940379403794038,53.75,32.0209777398543,0
+1762,-0.0822072541576927,0.05,5,1,81.7256002368443,0.966044142614601,5,24.2666772842407,10
+1763,0.0304057243049465,0.4225,42.25,2,93.8444134846811,0.866799866799867,33,23.5213306359285,5
+1764,0.0445700056191345,0.4,40,2,94.9343676259515,0.920634920634921,38,17.7133185625076,0
+1765,-0.108264530067026,0.0975,9.75,1,88.4075627573592,0.948860004261666,9.75,1.71977096948868,0
+1766,0.0159598464248211,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+1767,-0.0314300856449518,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,3.87574502696162,0
+1768,-0.096650555692031,0,0,0,NA,NA,0,NA,NA
+1769,-0.0282916716616455,0.095,9.5,2,85.4475438975786,0.877225291589932,9,15.3229721972817,5
+1770,0.00686200232738884,0.255,25.5,2,94.2952543926266,0.860637400520776,25.25,12.3765100591323,0
+1771,-0.0241431343650038,0.02,2,4,34.5233986084855,0.387755102040816,0.75,1.25,0
+1772,-0.00879446785111213,0.04,4,2,68.4359744004884,0.696180555555556,2.25,2.1875,0
+1773,-0.00594989608530795,0.03,3,3,56.4350514685161,0.514857489387508,1.75,4.51184463500977,0
+1774,-0.00851143715333819,0.05,5,3,64.8756471421547,0.66044142614601,2.25,6.07678394317627,0
+1775,-0.0113745767662749,0.03,3,1,74.8763016215986,0.939357186173438,3,2.91666666666667,0
+1776,-0.0123174122693354,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,3.67851130167643,0
+1777,-0.000611549897093937,0.01,1,1,52.6315789473684,0.747474747474748,1,1.25,0
+1778,0.0062080794263602,0.03,3,3,56.49025899395,0.696785930867192,2,3.33333333333333,0
+1779,-0.0241960668133106,0.0025,0.25,1,0,NA,0.25,0,0
+1780,2.63119383998855e-05,0.095,9.5,1,88.1872188283408,0.894764535648514,9.5,1.57894736842105,0
+1781,-0.0072843165739414,0.0275,2.75,3,54.7017580401744,0.520137103684661,1.5,24.2397880554199,0
+1782,0.0717321222137252,0.94,94,1,99.8346250196906,0.953249181860682,94,18.4303523327442,0
+1783,0.0308146657987527,0.165,16.5,4,82.3252504285619,0.718823223118979,11,53.6750814842455,7.07106781005859
+1784,0.0235506633467639,0.03,3,1,74.8763016215986,0.818071558520315,3,37.5643704732259,30.4138145446777
+1785,-0.0050827373080665,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,24.8431417374384,15
+1786,-0.0411159620650869,0.1825,18.25,1,92.9430371372494,0.904434250764526,18.25,17.74294751311,5
+1787,-0.053616851871011,0,0,0,NA,NA,0,NA,NA
+1788,-0.011014268941035,0.045,4.5,1,80.4523936425773,0.883653286794648,4.5,22.3979513380263,10
+1789,-0.0416921689209994,0.2375,23.75,2,92.890288615988,0.930568948891032,23,31.7266961750231,15
+1790,-0.0446905370615423,0.0575,5.75,2,75.3995572813645,0.764220453875626,3.75,36.8694196783978,10
+1791,0.00233713160181651,0,0,0,NA,NA,0,NA,NA
+1792,0.0167614828666046,0.045,4.5,2,71.2193911433968,0.728524335854179,3.25,83.2574628194173,68.0073547363281
+1793,0.16934344223715,0.8075,80.75,1,99.4061591150036,0.974451777730466,80.75,60.2855005470961,0
+1794,-0.0930112603273301,0,0,0,NA,NA,0,NA,NA
+1795,-0.139462401652709,0,0,0,NA,NA,0,NA,NA
+1796,-0.11257292132359,0,0,0,NA,NA,0,NA,NA
+1797,-0.0722134840930812,0,0,0,NA,NA,0,NA,NA
+1798,-0.0141082968494345,0,0,0,NA,NA,0,NA,NA
+1799,-0.0100930538476132,0,0,0,NA,NA,0,NA,NA
+1800,0.0192008510263986,0.2375,23.75,5,88.5824170397428,0.853423336547734,21,28.4820996936999,0
+1801,0.0055754853858889,0.0525,5.25,3,69.497145719458,0.736147757255937,3,3.67005084809803,0
+1802,0.0310655324409254,0.275,27.5,4,88.0093348163207,0.750476520533703,16.25,3.75812575600364,0
+1803,0.00468069170264243,0.1025,10.25,5,76.1604842948441,0.709337531791207,6,3.06451099674876,0
+1804,-0.0144774519062526,0,0,0,NA,NA,0,NA,NA
+1805,-0.00259722342837449,0.1125,11.25,5,81.338713660371,0.807264640474425,9.5,9.63055008782281,0
+1806,0.0111170391021187,0.0475,4.75,3,71.0646031631072,0.674178658702145,3.75,2.36842105263158,0
+1807,0.0349176795281483,0.3525,35.25,2,94.2282226676585,0.814432372571907,29.5,4.34041090890871,0
+1808,0.00982043855136908,0.1225,12.25,2,86.4187510059411,0.78293311626645,10.5,9.56067828742825,0
+1809,-0.00934663554671715,0.0075,0.75,1,44.4894453484604,1,0.75,35.1184463500977,35
+1810,0.0160208802675629,0.1825,18.25,3,86.5772630588291,0.818425076452599,14,3.5915154757565,0
+1811,0.0116630567885329,0.125,12.5,4,78.3712624625542,0.757983193277311,6,3.28929222106934,0
+1812,-0.0173476003618453,0.0775,7.75,4,67.5448506674899,0.653116531165312,2.5,3.88137017526934,0
+1813,0.0442005853505179,0.4275,42.75,2,96.3571146755977,0.817009773341651,41.5,6.03693356430321,0
+1814,0.0235092578792842,0.24,24,4,87.0594591050797,0.839351285189718,15.75,11.7603156367938,0
+1815,0.00190505681541254,0.01,1,2,30.8308651382582,0.494949494949495,0.5,2.5,0
+1816,-0.0040823181394677,0.03,3,3,58.8962175806842,0.696785930867192,2.25,1.25,0
+1817,0.00308436114051801,0.03,3,2,69.3435483247553,0.696785930867192,2.75,10.6881065368652,0
+1818,-0.00523097430130292,0.0625,6.25,2,77.3827239779975,0.84,5.25,14.0354177093506,0
+1819,-0.00886667852166283,0,0,0,NA,NA,0,NA,NA
+1820,-0.00110463977229301,0.1,10,3,79.186692272218,0.767827529021559,7.5,0.5,0
+1821,0.0288278448096617,0.2625,26.25,4,86.2949645541399,0.777598421666218,14,1.58912527901786,0
+1822,0.0231062189063505,0.1725,17.25,5,78.8484206066425,0.630471149284662,6.5,5.02865031145621,0
+1823,0.025138761894932,0.2175,21.75,5,82.4923302834784,0.785633309285788,9,2.01890748122643,0
+1824,0.0222036287343508,0.34,34,5,88.5849314764888,0.749511241446725,20.5,1.94852941176471,0
+1825,0.0427009307499975,0.4875,48.75,4,92.7218384910833,0.79517585231101,29.5,3.20263752081455,0
+1826,0.0132361439110537,0.135,13.5,7,74.2394897335259,0.639505252035552,7.75,5.91242927975125,0
+1827,0.0081751312286724,0.1875,18.75,2,92.2020817054083,0.906759906759907,18.5,12.026703898112,0
+1828,0.0501283174661876,0.485,48.5,1,97.7057035934975,0.892125134843581,48.5,3.21696459386767,0
+1829,-0.00178919677905469,0.12,12,3,84.8636181376377,0.902993348115299,10.75,4.35821191469828,0
+1830,-0.0208441376878363,0,0,0,NA,NA,0,NA,NA
+1831,-0.0337569476885983,0,0,0,NA,NA,0,NA,NA
+1832,-0.0527491097337042,0,0,0,NA,NA,0,NA,NA
+1833,-0.035405597349054,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+1834,0.0514303992896657,0.46,46,2,96.5109870449001,0.836601307189542,44.5,6.01568396195121,0
+1835,-0.0224213619228499,0.01,1,2,34.5233986084855,0.494949494949495,0.75,0,0
+1836,-0.0307874018573784,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,2.47476869470933,0
+1837,-0.00963201559688059,0,0,0,NA,NA,0,NA,NA
+1838,0.069308697002898,0.3375,33.75,2,95.2578463818866,0.963184537505752,33.25,10.4832800405997,0
+1839,-0.0303986802727013,0.01,1,2,34.5233986084855,0.494949494949495,0.75,1.25,0
+1840,-0.0109416662494914,0.11,11,2,87.8706617775683,0.878530215608867,10.75,12.1496268619191,0
+1841,-0.0261010416118097,0,0,0,NA,NA,0,NA,NA
+1842,-0.00883235785753186,0,0,0,NA,NA,0,NA,NA
+1843,-0.0109316213126112,0,0,0,NA,NA,0,NA,NA
+1844,0.00722966818595751,0.13,13,2,87.4879923267414,0.793361746093246,11.25,55.2571072945228,31.6227760314941
+1845,-0.0217733067384688,0.0325,3.25,1,76.0684107249879,1,3.25,37.9566588768592,29.1547584533691
+1846,-0.0451278257195008,0,0,0,NA,NA,0,NA,NA
+1847,-0.0257504194738613,0.1225,12.25,2,86.1014653339208,0.810066476733144,10,9.191511815908,0
+1848,-0.0422363653903085,0.0075,0.75,1,44.4894453484604,1,0.75,18.1768569946289,14.1421356201172
+1849,-0.0188000104258572,0,0,0,NA,NA,0,NA,NA
+1850,-0.0102717382744959,0,0,0,NA,NA,0,NA,NA
+1851,0.0283821489977493,0.295,29.5,1,95.572898758965,0.893948432425267,29.5,6.2427266492682,0
+1852,0.0130749590578125,0.095,9.5,4,79.2698961171385,0.701832851004122,7.25,1.42479304263466,0
+1853,0.0354197442583518,0.435,43.5,3,91.6417199508222,0.773936536818019,19.75,3.94245809796213,0
+1854,0.0406265430300846,0.3725,37.25,6,88.7772919869566,0.77233921457029,22.75,33.9322552008917,7.07106781005859
+1855,0.0594943440106363,0.58,58,4,96.1494409482314,0.763554382492027,53.5,16.247497665471,0
+1856,0.0258382199198604,0.2675,26.75,2,91.4468718514813,0.787794655962086,19.75,2.80461958412812,0
+1857,-0.00832583033617993,0.17,17,1,92.4981249980877,0.908879214336337,17,22.4888819245731,14.1421356201172
+1858,-0.0245323266730702,0.15,15,1,91.6737426448862,0.909502262443439,15,34.6752092997233,20
+1859,-0.0459968370440606,0,0,0,NA,NA,0,NA,NA
+1860,0.03182894304412,0.385,38.5,1,96.780810904996,0.965526157028355,38.5,11.8150355227582,0
+1861,0.0221789515870478,0.1075,10.75,5,71.892281047608,0.688764394646748,4,17.1954473007557,0
+1862,-0.0746860932573691,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,24.7651363655373,14.1421356201172
+1863,0.0340668362467113,0.355,35.5,2,92.8623608208245,0.821109123434705,20,21.1989733467639,0
+1864,0.0314494068312729,0.295,29.5,5,85.9571959198632,0.741499304036588,13,11.3847099401183,0
+1865,0.0157943689910235,0.185,18.5,4,84.0270049661072,0.820670127418594,13.25,1.35135135135135,0
+1866,0.0172315656492719,0.15,15,1,91.6737426448863,0.898190045248869,15,4.55064156850179,0
+1867,0.02690494397355,0.245,24.5,6,84.0326142200758,0.706502107164359,12.75,3.91842775928731,0
+1868,0.0140037210052105,0.195,19.5,3,90.8793234051996,0.810964083175803,18.25,7.11554248516376,0
+1869,0.00628366423362877,0.205,20.5,2,92.135548554757,0.800477119930601,19.5,7.60392135527076,0
+1870,-0.0152552221034193,0.06,6,2,74.8763016215986,0.832026875699888,3,11.0098447004954,0
+1871,-0.0476814788210686,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,3.67851130167643,0
+1872,-0.0434016969510321,0.01,1,3,15.8692205350002,0.242424242424242,0.5,15.2999558448792,5
+1873,-0.00765044631072669,0.08,8,3,74.8687581136391,0.749163879598662,5.5,9.70676022768021,0
+1874,-0.00314421827136812,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,5.46448680332729,0
+1875,0.00134712843484067,0.055,5.5,4,69.6095076400679,0.657640834111422,4,4.2791879827326,0
+1876,-0.0106253569860655,0,0,0,NA,NA,0,NA,NA
+1877,-0.0063691344563631,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,0.882352941176471,0
+1878,-0.0128125806025037,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,0.454545454545455,0
+1879,-0.0157924292369842,0,0,0,NA,NA,0,NA,NA
+1880,-0.0239798253628396,0.0075,0.75,1,44.4894453484604,1,0.75,43.4365247090658,40.3112869262695
+1881,0.0185118631017758,0.2475,24.75,1,94.6838124709557,0.932808242188958,24.75,23.3729145936292,5
+1882,0.0683741674944758,0.7975,79.75,2,98.1160170241471,0.885156474303761,75.25,24.9609458110176,0
+1883,0.0445923736330587,0.3625,36.25,2,96.100575324952,0.893451720310766,36,85.4653322154078,52.2015342712402
+1884,0.0213733452014276,0,0,0,NA,NA,0,NA,NA
+1885,-0.0100295875889969,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,20.4243105720071,10
+1886,-0.0628435461752088,0.065,6.5,2,77.8621034753678,0.791313421155602,5.25,15.6239825762235,10
+1887,-0.0313372173643779,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,52.4165393829346,43.0116271972656
+1888,-0.016943597694526,0,0,0,NA,NA,0,NA,NA
+1889,0.0076382829646036,0.4875,48.75,1,97.7251065890586,0.962269235952028,48.75,71.300037697034,21.2132034301758
+1890,-0.0146774844308675,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,163.571517944336,159.138305664062
+1891,0.0017420960027053,0,0,0,NA,NA,0,NA,NA
+1892,0.0287678836929263,0.155,15.5,1,91.8947234736642,0.912338373876835,15.5,61.9891720433389,50
+1893,0.0839891657425255,0.5625,56.25,1,98.2456140350877,0.972789115646259,56.25,28.4129405466715,0
+1894,-0.126390112568624,0,0,0,NA,NA,0,NA,NA
+1895,-0.100201040338725,0,0,0,NA,NA,0,NA,NA
+1896,-0.121792855337262,0,0,0,NA,NA,0,NA,NA
+1897,-0.0174407594747026,0,0,0,NA,NA,0,NA,NA
+1898,0.00426302592449019,0,0,0,NA,NA,0,NA,NA
+1899,-0.00779124565600341,0,0,0,NA,NA,0,NA,NA
+1900,0.0384840966218599,0.47,47,1,97.5860530790582,0.913250921708957,47,105.373529454495,55
+1901,0.0129609933446318,0.0775,7.75,6,64.7711683130504,0.501355013550136,3.5,3.40790164086127,0
+1902,0.02201470745611,0.285,28.5,3,91.052210405578,0.694480277004549,18.5,4.41307005965919,0
+1903,-0.00203161000272303,0.0775,7.75,3,76.2059508763118,0.718157181571816,4.75,1.35713121967931,0
+1904,-0.0184588457144855,0.1075,10.75,1,89.2106768070942,0.937752878929349,10.75,1.55979227465253,0
+1905,0.00387315842230237,0.0575,5.75,5,62.1048868348786,0.616858237547893,2.75,4.55453142912492,0
+1906,0.0349252586787043,0.2825,28.25,6,83.5026112196148,0.747215959554554,11.25,2.71053010383538,0
+1907,0.0106363168742973,0.06,6,9,46.8759738761936,0.384098544232923,1.75,9.84759370485942,0
+1908,0.0130392612703554,0.105,10.5,6,70.5495138974291,0.606578015579511,5,2.2414794195266,0
+1909,-0.0142934662817606,0.0425,4.25,3,64.6030965257522,0.74934725848564,2.5,3.68744681863224,0
+1910,0.00727681483440136,0.075,7.5,4,70.2928230477976,0.669056811913955,3.25,3.04044011433919,0
+1911,0.0124960130919499,0.07,7,2,80.1188661936748,0.7610513739546,5.75,4.63124581745693,0
+1912,0.0215132162707596,0.2025,20.25,5,84.232162058589,0.764890282131661,13.75,4.02976358672719,0
+1913,0.0146015327565146,0.1625,16.25,2,90.0716772540665,0.904900277374191,15.5,8.21082658034105,0
+1914,-0.0305602651094523,0.08,8,3,79.3815043696549,0.853678929765886,7,5.63747417926788,0
+1915,-0.0669439948587205,0.0475,4.75,2,77.4113871538258,0.818988143723414,4.5,3.00374041105572,0
+1916,-0.0502760995145218,0.115,11.5,2,86.8548459428713,0.869621903520209,10.75,3.12818170630414,0
+1917,0.00479780736429802,0.2375,23.75,4,89.1725994946916,0.807135969141755,18.25,1.36278537951018,0
+1918,-0.00943943730985707,0.1275,12.75,3,81.723859144675,0.815564996871192,6.25,2.31929943608303,0
+1919,-0.0284995483363673,0,0,0,NA,NA,0,NA,NA
+1920,-0.0356057509233506,0,0,0,NA,NA,0,NA,NA
+1921,0.0173697742580407,0.26,26,1,94.9412560453587,0.942188177482295,26,0.336538461538462,0
+1922,0.0370932853602426,0.3875,38.75,2,96.1968780219536,0.805227354099534,38,0.548387096774194,0
+1923,0.0652910871317727,0.61,61,1,98.5243747403739,0.971884840305893,61,1.04508196721311,0
+1924,0.00275437083088036,0.2925,29.25,2,92.9239342555249,0.879991999466631,25,1.56900754749265,0
+1925,0.00272218096319193,0.2325,23.25,4,87.4508669178553,0.764530434441348,13.25,3.99007514215285,0
+1926,0.0481007222365952,0.545,54.5,3,96.6934925383554,0.794294375575164,51,8.44873079247431,0
+1927,0.0138569049303624,0.1625,16.25,2,86.9475552243494,0.767534011359134,10,9.34814177293044,0
+1928,0.0117702258912615,0.1225,12.25,4,77.5100006992565,0.728666395333062,5,29.0722491205955,0
+1929,-0.0108337303545704,0.13,13,2,86.8439053408564,0.81919152783159,11,65.2188355372502,29.1547584533691
+1930,-0.0347193069340437,0,0,0,NA,NA,0,NA,NA
+1931,-0.0386954343978141,0.0025,0.25,1,0,NA,0.25,68.0073547363281,68.0073547363281
+1932,-0.0371776525431778,0,0,0,NA,NA,0,NA,NA
+1933,-0.0281806286577557,0,0,0,NA,NA,0,NA,NA
+1934,0.0636380555350661,0.5975,59.75,1,98.4542502383879,0.927744660747287,59.75,1.57349797971079,0
+1935,-0.00114775447271654,0.1125,11.25,2,83.2016953178988,0.836916234247591,7.5,2.23655446370443,0
+1936,-0.0251397637954506,0.0025,0.25,1,0,NA,0.25,20.6155281066895,20.6155281066895
+1937,-0.050260817293165,0,0,0,NA,NA,0,NA,NA
+1938,-0.0805901614445611,0,0,0,NA,NA,0,NA,NA
+1939,-0.0446183687228859,0,0,0,NA,NA,0,NA,NA
+1940,0.00489798900495771,0.1175,11.75,2,85.6639681918588,0.815864022662889,10,16.9901395757148,5
+1941,-0.00596660659793997,0,0,0,NA,NA,0,NA,NA
+1942,-0.0113434866666648,0,0,0,NA,NA,0,NA,NA
+1943,-0.0100758168306311,0,0,0,NA,NA,0,NA,NA
+1944,0.00116879808705562,0.03,3,2,67.1088255022683,0.636143117040631,2.5,96.4334309895833,82.4621124267578
+1945,0.00704913688954548,0.075,7.5,4,71.7071137363772,0.646993932708218,3.75,72.4496635437012,11.1803398132324
+1946,0.0067394368807436,0.1125,11.25,2,84.2027160177388,0.851742031134173,8.75,4.36199781629774,0
+1947,-0.015519746559512,0,0,0,NA,NA,0,NA,NA
+1948,-0.0478932159153192,0,0,0,NA,NA,0,NA,NA
+1949,-0.0134268241026389,0,0,0,NA,NA,0,NA,NA
+1950,-0.0149762690693206,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+1951,-0.0118120718131468,0,0,0,NA,NA,0,NA,NA
+1952,0.00727397151782498,0.05,5,3,66.5111507586276,0.728353140916808,2.5,3.66257038116455,0
+1953,-0.00863580099816318,0.1575,15.75,4,81.1240632598159,0.784192069058538,7.25,4.88083121890113,0
+1954,0.0474240959277085,0.53,53,3,95.0765500622607,0.789394103034885,35,18.3151671391613,0
+1955,0.0665342435495404,0.6125,61.25,3,94.8258037446616,0.785885335962812,35,20.4660982093033,0
+1956,0.00454589852859499,0.13,13,4,82.241367491777,0.754617073485729,9.5,1.02406553121713,0
+1957,0.0187339353631978,0.265,26.5,2,92.176386913229,0.821918296114257,20.25,6.10805534866621,0
+1958,-0.0358233366424065,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,0,0
+1959,-0.0501210297763464,0.0475,4.75,1,81.114133276783,0.855190514978731,4.75,54.0410381116365,38.0788650512695
+1960,0.102003436109517,0.6375,63.75,1,98.6713232517353,0.982686481027269,63.75,34.4519998662612,0
+1961,0.0192685554918717,0.1425,14.25,4,80.6718422833071,0.738204319628726,6.25,10.3547634660152,0
+1962,-0.15856259831693,0,0,0,NA,NA,0,NA,NA
+1963,-0.0489647189992138,0.03,3,5,42.6119872609418,0.332929047907823,1,6.45495859781901,0
+1964,0.0215392239011953,0.2025,20.25,6,78.5444953221315,0.71264367816092,9.25,1.50044047979661,0
+1965,0.0270304976030457,0.3575,35.75,4,91.8714260571876,0.798021801764339,22.5,7.26717434062824,0
+1966,0.0334476215656468,0.3175,31.75,3,93.5240522777455,0.854114139828426,29.5,8.25133262093612,0
+1967,-0.0158710827499681,0.105,10.5,4,74.9907008009417,0.716736171217248,5.25,10.6417402539934,0
+1968,-0.0450914063930895,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,17.13323097229,11.1803398132324
+1969,-0.0519059084700666,0,0,0,NA,NA,0,NA,NA
+1970,-0.0335006054515725,0.1125,11.25,1,89.5714527894752,0.836916234247591,11.25,2.09204745822483,0
+1971,-0.0302270434350066,0.0175,1.75,1,65.4774238937655,1,1.75,2.85714285714286,0
+1972,0.00145154652963811,0,0,0,NA,NA,0,NA,NA
+1973,-0.0133263785134295,0.0025,0.25,1,0,NA,0.25,5,5
+1974,-0.0023892738008999,0.025,2.5,4,45.6098816052137,0.526627218934911,1.5,14.5418199539185,5
+1975,-0.00724060380740411,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,10.8929222106934,5
+1976,0.0136934079913044,0.2075,20.75,2,92.656474223752,0.862657996952724,20.25,1.71169961216938,0
+1977,-0.0161540281939051,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,13.242450441633,7.07106781005859
+1978,0.000401667923397326,0.0775,7.75,2,83.1405556190056,0.848238482384824,7.25,15.7347970777942,0
+1979,-0.0192737729436521,0.0025,0.25,1,0,NA,0.25,0,0
+1980,-0.0206151895587391,0.025,2.5,3,49.6074439197622,0.526627218934911,1.25,16.3300201416016,0
+1981,0.0529633867308439,0.5375,53.75,1,98.0842701108371,0.983783783783784,53.75,15.7141378092211,0
+1982,0.0564766078910907,0.5925,59.25,3,94.8232729204154,0.756263069700453,38.25,25.882748937808,0
+1983,0.0339627165812999,0.2725,27.25,2,90.9505329895716,0.853472185880998,21.5,36.2686984560905,0
+1984,0.0124639419832965,0.11,11,2,86.5484166981592,0.848162769511084,10.25,65.7535582455722,55.2268028259277
+1985,0.0247472536712667,0.2575,25.75,2,90.7143418876362,0.83983983983984,14,15.0651762693831,5
+1986,-0.0322830723162588,0,0,0,NA,NA,0,NA,NA
+1987,0.00515695713358582,0.075,7.5,3,74.4958753322947,0.779371207942636,4.75,27.7456995646159,11.1803398132324
+1988,-0.0632499134361024,0,0,0,NA,NA,0,NA,NA
+1989,0.0122916569341032,0.4125,41.25,1,97.0684321667208,0.944008958566629,41.25,140.626898100882,115
+1990,0.0105691451015809,0.115,11.5,1,89.742951983695,0.898594813849051,11.5,179.583660623302,159.138305664062
+1991,0.00343871603461594,0,0,0,NA,NA,0,NA,NA
+1992,0.0461158863733908,0.3475,34.75,1,96.3348533717898,0.963797628744683,34.75,51.7711527707765,25.4950981140137
+1993,-0.00232152638653133,0.2725,27.25,1,95.1807759450405,0.951157395293666,27.25,27.9394102184051,10
+1994,-0.140421474613249,0,0,0,NA,NA,0,NA,NA
+1995,-0.072818283746019,0,0,0,NA,NA,0,NA,NA
+1996,-0.10072609348892,0,0,0,NA,NA,0,NA,NA
+1997,-0.0243035351569415,0,0,0,NA,NA,0,NA,NA
+1998,0.0126273572721402,0.1,10,1,88.6195912622717,0.950248756218905,10,14.7884673118591,0
+1999,-0.0108603327080823,0,0,0,NA,NA,0,NA,NA
+2000,0.0144040352487355,0.1725,17.25,1,92.5909628330769,0.970038201293351,17.25,131.673793626868,114.236595153809
+2001,0.0827563405788169,0.8175,81.75,2,98.5586335062942,0.893430430052619,80.5,3.37304280365644,0
+2002,0.037640619607846,0.3125,31.25,5,88.563567578212,0.79495394473368,20,1.85941125488281,0
+2003,0.00530024870749912,0.095,9.5,3,79.1721543791512,0.824607559414189,6.75,8.63572632639032,0
+2004,0.00287172720003582,0.055,5.5,2,75.0436319559662,0.844382197323374,4.75,8.9759200703014,5
+2005,-0.00873089336936573,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,23.8920356526094,15.8113880157471
+2006,0.0107377879900923,0.1375,13.75,3,85.7760046172056,0.731502669717773,11.25,3.44034243496982,0
+2007,0.0268105834183189,0.1275,12.75,7,70.7859241567578,0.631129993742384,4.25,5.63185224346086,0
+2008,-0.0140911102683094,0.04,4,2,68.3743940518637,0.739583333333333,2.75,3.58709645271301,0
+2009,0.00479168106641737,0.085,8.5,8,56.3444612878353,0.531615925058548,2,12.300435739405,0
+2010,0.00745453381554398,0.035,3.5,4,56.2106261286755,0.481865284974093,2,7.67616871425084,0
+2011,0.0335071392007376,0.2975,29.75,5,85.9317085493403,0.696849874785818,10.5,2.16595699406472,0
+2012,0.00224999031129983,0.02,2,4,37.8666602454306,0.489795918367347,1.25,2.86030697822571,0
+2013,0.0218372329030444,0.1675,16.75,5,84.7335234195297,0.74333307666641,12.75,7.60249795486678,0
+2014,0.0413825389612066,0.3825,38.25,4,89.0961922193712,0.804054346103419,17.5,8.47223908916797,0
+2015,-0.0128129957286365,0.04,4,3,66.0246528150969,0.522569444444444,2.75,7.48463892936707,0
+2016,-0.0281662643226446,0.0675,6.75,1,85.0052537126447,0.975060789326018,6.75,3.00789642333984,0
+2017,-0.0778353923516261,0,0,0,NA,NA,0,NA,NA
+2018,-0.101015619859099,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,0.526315789473684,0
+2019,0.00144911797076929,0.32,32,1,95.959121300177,0.867457712698813,32,1.484375,0
+2020,0.0181225508014177,0.26,26,1,94.9412560453587,0.920508744038156,26,0.673076923076923,0
+2021,0.0130275867232876,0.2325,23.25,1,94.3478768975745,0.905812173776539,23.25,0,0
+2022,0.00190046326544689,0.17,17,2,87.6481131742195,0.858256555634302,11.75,4.99176771500531,0
+2023,0.0318446505814069,0.4675,46.75,1,97.5655534302407,0.951151998697387,46.75,6.0978189050195,0
+2024,0.0345005133577797,0.3575,35.75,5,89.3859891645478,0.73267591409986,20.5,3.55385386860454,0
+2025,0.0430136834681616,0.3825,38.25,3,95.6161601765469,0.804054346103419,37,2.91984676535613,0
+2026,0.00825218143658276,0.1125,11.25,1,89.5714527894752,0.866567828020756,11.25,7.36110064188639,0
+2027,0.00251069992431439,0.0775,7.75,3,74.3711626900813,0.739837398373984,5,13.7207723432972,0
+2028,0.00776323363131269,0.11,11,3,86.5913658532716,0.817795323413301,10.5,1.3155103596774,0
+2029,-0.0247108943183412,0.0575,5.75,3,67.3963548386756,0.675803124078986,2.75,0.959611643915591,0
+2030,-0.0355721392324449,0.05,5,1,81.7256002368443,0.830220713073005,5,0.75,0
+2031,-0.0421967841728292,0.005,0.5,1,30.8308651382582,1,0.5,115.585647583008,114.017547607422
+2032,-0.0300596229933581,0,0,0,NA,NA,0,NA,NA
+2033,0.0268214882174289,0.26,26,1,94.9412560453587,0.927735221852869,26,4.01892313590417,0
+2034,0.00264879619968269,0.18,18,2,88.3454186563604,0.836758210101786,12.25,2.65680419074164,0
+2035,-0.00778247495482901,0.11,11,2,82.8209772257252,0.848162769511084,5.5,2.55439871007746,0
+2036,-0.00698333441344403,0,0,0,NA,NA,0,NA,NA
+2037,-0.0159056277575291,0,0,0,NA,NA,0,NA,NA
+2038,-0.0192074140094246,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,23.5925114949544,10
+2039,-0.0455239122202056,0.02,2,1,68.0470115164975,0.795918367346939,2,1.875,0
+2040,-0.00700771055817313,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,3.18181818181818,0
+2041,-0.00629254540513841,0,0,0,NA,NA,0,NA,NA
+2042,-0.0475759929884953,0,0,0,NA,NA,0,NA,NA
+2043,-0.0907316938544682,0,0,0,NA,NA,0,NA,NA
+2044,0.0114642759354319,0.0475,4.75,2,71.0756591379485,0.710381029957462,3,88.4495076631245,46.0977210998535
+2045,0.0213360323055531,0.2275,22.75,2,93.6611518183569,0.832194654201127,22.5,30.911203447279,7.07106781005859
+2046,-0.00192790157065247,0,0,0,NA,NA,0,NA,NA
+2047,-0.00424474591194667,0,0,0,NA,NA,0,NA,NA
+2048,-0.00769584274759836,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+2049,-0.00105456315608535,0.0775,7.75,2,78.4948604320197,0.826558265582656,4.25,0.645161290322581,0
+2050,-0.0336665174847258,0,0,0,NA,NA,0,NA,NA
+2051,0.00807440451034381,0.1775,17.75,2,91.1245236733251,0.931914893617021,17.25,11.9486088013985,0
+2052,-0.0163413368970214,0.01,1,1,52.6315789473684,0.747474747474748,1,36.6033697128296,31.6227760314941
+2053,-0.00239227793037571,0.12,12,5,77.1535888638826,0.667405764966741,6.75,6.39794353644053,0
+2054,-0.0483661525812408,0.155,15.5,3,84.2078116682649,0.835634451019066,10.75,2.4055183164535,0
+2055,0.0334714832891768,0.4525,45.25,1,97.4390089868719,0.765555782730185,45.25,5.94855937641629,0
+2056,0.0100171298178611,0.32,32,2,92.5784050200126,0.842211562736683,22,0.5078125,0
+2057,0.010827092997024,0.2875,28.75,2,94.1461945449135,0.878542510121457,27.75,0.53974841573964,0
+2058,0.0277340572354296,0.3125,31.25,2,92.2775904436142,0.826992390869043,20.5,0.689705627441406,0
+2059,0.0112110185137499,0.2775,27.75,2,92.0573953365227,0.847750865051903,20.5,6.75760832777968,0
+2060,0.0223760235458326,0.2125,21.25,1,93.8457653779655,0.983180910333228,21.25,40.8881648344152,15.8113880157471
+2061,-0.0526782174601067,0.0225,2.25,2,55.8584010807395,0.744245524296675,1.5,1.66666666666667,0
+2062,-0.0440538109657246,0.0175,1.75,2,56.5210029300127,0.491094147582697,1.5,6.01015254429409,0
+2063,0.00599776807734088,0.12,12,5,75.5334832057581,0.695121951219512,5.25,6.12227845191956,0
+2064,0.0158323870248387,0.24,24,3,89.7427536029249,0.778151774785802,18.5,6.6021835009257,0
+2065,0.00767826717259595,0.265,26.5,4,87.0668434001251,0.800548491647968,11.75,4.81034573968851,0
+2066,-0.0102146763070778,0.1425,14.25,3,86.3069155295779,0.869102159814363,12.75,4.10828697472288,0
+2067,-0.00641671823697379,0.0825,8.25,3,82.4103154051693,0.858714300131194,7.75,2.33548690333511,0
+2068,-0.0752884217479004,0,0,0,NA,NA,0,NA,NA
+2069,-0.0826720846630633,0.0025,0.25,1,0,NA,0.25,0,0
+2070,-0.0215386139805059,0.1125,11.25,3,83.8774804532872,0.807264640474425,9.75,3.32216610378689,0
+2071,-0.0373155647331123,0,0,0,NA,NA,0,NA,NA
+2072,-0.00735441481439921,0.135,13.5,1,90.9386564749522,0.937845733109578,13.5,15.9588096759937,5
+2073,-0.000383821563150377,0.0575,5.75,3,74.9553911323359,0.616858237547893,4.5,2.53266989666483,0
+2074,-0.0251652548927632,0.0325,3.25,2,66.0668178142144,0.770312948607522,2.5,0.384615384615385,0
+2075,-0.0207811085969479,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,6.66666666666667,5
+2076,-0.0125083448447913,0.005,0.5,2,0,1,0.25,2.5,0
+2077,-0.0371363270950678,0,0,0,NA,NA,0,NA,NA
+2078,0.0126018975298894,0.19,19,2,89.717362192717,0.861802100608071,16.75,23.4580907068754,0
+2079,-0.048400938472405,0.005,0.5,1,30.8308651382582,1,0.5,34.0355663299561,32.0156211853027
+2080,0.0207976656203391,0.29,29,3,93.2896299307741,0.832327297116029,26.75,5.44969289056186,0
+2081,0.018193287826216,0.31,31,1,95.8102472617487,0.993558776167472,31,16.1551426764457,0
+2082,0.0373451933685828,0.4525,45.25,2,94.54662848915,0.820077693723165,29,14.9407368443947,0
+2083,0.0194506409723544,0.035,3.5,3,60.018491879345,0.689119170984456,1.75,3.00507627214704,0
+2084,0.00509575718049746,0.195,19.5,2,89.917248832956,0.864974345125574,17.25,54.8433648622953,22.3606796264648
+2085,0.0552219729420926,0.54,54,2,97.227636164641,0.929699329439758,53,32.4842838622906,0
+2086,-0.0176479855979414,0,0,0,NA,NA,0,NA,NA
+2087,0.0660824551312544,0.5825,58.25,1,98.3671391359956,0.900887879413587,58.25,26.9807883987099,0
+2088,-0.0647834580473864,0.185,18.5,2,91.2906729523447,0.886739027843322,17.75,51.2421105359052,35
+2089,0.00713440695486497,0.345,34.5,1,96.3025628341184,0.939415969950321,34.5,140.356504080952,101.118743896484
+2090,0.0207908358076929,0.18,18,2,89.5591308812818,0.855963126560399,15.75,122.609522077772,81.3941040039062
+2091,0.0150933239097208,0.125,12.5,1,90.3766993434411,0.946218487394958,12.5,101.209354858398,90.1387786865234
+2092,0.0389305940658596,0.4,40,1,96.9413745785043,0.988662131519274,40,41.9572063207626,15
+2093,-0.0688676666852552,0.09,9,1,87.719298245614,0.89010989010989,9,16.1650740305583,5
+2094,-0.169193433821201,0,0,0,NA,NA,0,NA,NA
+2095,-0.0587070607463829,0,0,0,NA,NA,0,NA,NA
+2096,-0.0629124850087101,0,0,0,NA,NA,0,NA,NA
+2097,-0.0244005535586484,0,0,0,NA,NA,0,NA,NA
+2098,-0.00561921426728077,0.01,1,1,52.6315789473684,0.747474747474748,1,24.5091123580933,20.6155281066895
+2099,-0.00381039624691766,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,73.9226014879015,40.3112869262695
+2100,-0.000217477762162162,0.165,16.5,2,91.1303623944212,0.937516271804218,16.25,59.3706441359086,31.6227760314941
+2101,0.0554177106648967,0.585,58.5,1,98.3818899951514,0.911775247442861,58.5,1.19062712253668,0
+2102,0.0327620078546283,0.36,36,2,93.9547964434453,0.857954545454545,29.75,3.16519011391534,0
+2103,0.0221707488805168,0.1875,18.75,5,80.5646232763755,0.757575757575758,7.5,10.4110859680176,0
+2104,0.00497835777178352,0.075,7.5,4,70.6488065463538,0.713182570325428,4.75,4.65956954956055,0
+2105,-0.000770151852163963,0.025,2.5,2,65.3357531760436,0.684418145956607,2.25,7.88634948730469,0
+2106,0.0136105785151085,0.2025,20.25,3,90.3438196226249,0.808429118773946,18,5.93451179692775,0
+2107,-0.002058508284033,0.0275,2.75,1,73.5251216233933,0.725792630676949,2.75,6.06812650507147,0
+2108,0.011085387207786,0.125,12.5,2,84.9723359881498,0.825210084033613,10.25,3.27213493347168,0
+2109,-0.0108492574503543,0.05,5,3,69.9885756206132,0.728353140916808,3.75,3.41024656295776,0
+2110,-0.00247462939630168,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2111,0.021033507121756,0.1375,13.75,7,71.156492306302,0.548436308161709,3.75,1.67401941472834,0
+2112,0.0244983324078294,0.205,20.5,3,88.4369355421605,0.791802212101496,15.5,3.1468109037818,0
+2113,0.0108517481095532,0.0325,3.25,4,52.1185727638505,0.540625897215045,1.75,10.4382536961482,0
+2114,0.0533678329865506,0.5975,59.75,2,97.3411242259155,0.772117776202982,56.5,6.03650978918355,0
+2115,0.0192031332300576,0.2225,22.25,4,87.1570561662106,0.822038868328985,15.25,3.02806151315068,0
+2116,0.0350373776324523,0.42,42,4,92.8145203125423,0.860956618464961,33.5,1.07865002041771,0
+2117,-0.0141707430983661,0.17,17,3,88.1861188832171,0.807633896932267,13.5,1.57457452661851,0
+2118,-0.00463988607320744,0.285,28.5,3,93.5517395322627,0.904949419512526,27.5,1.00877192982456,0
+2119,0.0187976097610408,0.18,18,2,88.9261643274838,0.740733627808719,13.75,2.41120481491089,0
+2120,-0.00659187181266134,0.0525,5.25,2,73.2721854568656,0.769129287598945,3.5,4.83346739269438,0
+2121,0.026318922409464,0.27,27,2,94.4433340535962,0.817351598173516,26.5,7.30342344001487,0
+2122,0.054682961375147,0.5475,54.75,2,95.5909050143175,0.842920593651825,40.25,5.01461594289841,0
+2123,0.0382758194092639,0.4075,40.75,5,90.6759314220744,0.780590717299578,23.5,1.41848591061458,0
+2124,0.0456284729869822,0.47,47,3,93.9164704954367,0.837345478204294,39.5,6.77091679674514,0
+2125,-0.00326147641630996,0.0425,4.25,3,67.8227088468955,0.70757180156658,3.25,1.76470588235294,0
+2126,-0.000498866040579742,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2127,0.0026537813476898,0.0725,7.25,3,73.0820458354102,0.678843837816138,3.75,8.12457617397966,0
+2128,0.00715451625212609,0.03,3,1,74.8763016215986,0.939357186173438,3,4.33925565083822,0
+2129,-0.000594321542503167,0.01,1,2,34.5233986084855,0.494949494949495,0.75,3.75,0
+2130,0.0128310436178253,0.2375,23.75,3,89.3522401914586,0.845708775313404,19.75,1.23232702957956,0
+2131,0.0170126432584766,0.1925,19.25,1,93.2673077410907,0.836095428883628,19.25,1.52040347805271,0
+2132,0.0171104594162898,0.3525,35.25,1,96.3984008308788,0.892251055041753,35.25,2.81851171939931,0
+2133,-0.0229348415632194,0.1925,19.25,1,93.2673077410907,0.863412857403023,19.25,4.66688988425515,0
+2134,-0.0222156777945384,0.125,12.5,1,90.3766993434411,0.98655462184874,12.5,5.9843766784668,0
+2135,-0.0329083991106927,0,0,0,NA,NA,0,NA,NA
+2136,-0.00456653946854203,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,15.1996386391776,11.1803398132324
+2137,-0.0204407707866631,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+2138,-0.0125455624860479,0,0,0,NA,NA,0,NA,NA
+2139,0.000797773272416862,0,0,0,NA,NA,0,NA,NA
+2140,-0.0147378653476153,0,0,0,NA,NA,0,NA,NA
+2141,-0.0319235681073769,0,0,0,NA,NA,0,NA,NA
+2142,-0.0160001196579788,0.0375,3.75,1,78.0843273950357,0.811097992916175,3.75,1.33333333333333,0
+2143,0.0125212165624225,0.235,23.5,1,94.4060921446443,0.929971988795518,23.5,12.1045187483443,0
+2144,0.0492772945964134,0.51,51,1,97.8932627156421,0.870766248451887,51,35.390036910188,7.07106781005859
+2145,-0.0116684590611476,0.01,1,1,52.6315789473684,0.747474747474748,1,12.7834658622742,10
+2146,-0.0109834051795042,0,0,0,NA,NA,0,NA,NA
+2147,0.00402306981968593,0.005,0.5,2,0,1,0.25,19.5773792266846,10
+2148,0.012415452006353,0.005,0.5,2,0,1,0.25,8.09016990661621,5
+2149,0.00311504707276981,0.0425,4.25,3,70.7747433345837,0.7911227154047,3.75,6.73255426743451,0
+2150,-0.0181492717747369,0.005,0.5,1,30.8308651382582,1,0.5,12.6612377166748,11.1803398132324
+2151,-0.0335256422290331,0,0,0,NA,NA,0,NA,NA
+2152,-0.0267276546675203,0.005,0.5,1,30.8308651382582,1,0.5,17.5,15
+2153,0.00657418300153722,0.22,22,1,94.042067560231,0.918340682671893,22,13.976355639371,0
+2154,-0.0268720505621968,0.0625,6.25,1,84.2105263157895,0.813333333333333,6.25,16.1888373565674,0
+2155,0.00714628668734804,0.0725,7.25,5,64.9583232685366,0.632964386075586,2.75,4.52185736031368,0
+2156,-0.00242352551853401,0.0725,7.25,2,80.5821920145361,0.770602741297241,6,6.43226478839743,0
+2157,-0.0212619622782586,0,0,0,NA,NA,0,NA,NA
+2158,-0.00019660833706439,0.1775,17.75,3,83.612609813112,0.824924012158055,7,0.973832896057989,0
+2159,0.048337712693974,0.48,48,3,94.2474728508749,0.848746758859118,40,2.71434211730957,0
+2160,0.0132860170887943,0.27,27,2,91.6301733927737,0.845451352300667,19,1.73512540040193,0
+2161,-0.0373453977994359,0.05,5,4,64.3596379912098,0.626485568760611,3.25,1.10355339050293,0
+2162,0.0141921016349443,0.19,19,4,85.2092643239373,0.797309747558504,13,8.48565028843127,0
+2163,-0.030322414595903,0.05,5,2,72.2238122308052,0.762308998302207,3,0.25,0
+2164,-0.0324705435030773,0.005,0.5,2,0,1,0.25,2.5,0
+2165,-0.0898138077306794,0,0,0,NA,NA,0,NA,NA
+2166,-0.0969481722824276,0,0,0,NA,NA,0,NA,NA
+2167,-0.070924248562369,0.03,3,2,68.3714310934689,0.818071558520315,2.75,0,0
+2168,-0.0717401740717469,0.0275,2.75,2,63.5626245791198,0.794344473007712,2.25,0.909090909090909,0
+2169,-0.0384387116594007,0.105,10.5,4,76.95336126997,0.716736171217248,6.25,0,0
+2170,-0.0258599263482756,0.085,8.5,2,81.2893821448882,0.863387978142076,6.75,1.6785608179429,0
+2171,-0.0341084587182195,0,0,0,NA,NA,0,NA,NA
+2172,-0.102599648353644,0,0,0,NA,NA,0,NA,NA
+2173,-0.0833093993944931,0,0,0,NA,NA,0,NA,NA
+2174,-0.0606024371099193,0,0,0,NA,NA,0,NA,NA
+2175,-0.021952130126665,0.055,5.5,4,61.5877829111435,0.595393713040772,2,8.17122025923296,0
+2176,-0.0320992365563143,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2177,-0.0248362687343251,0.04,4,2,72.4151777478817,0.782986111111111,3.5,2.94194173812866,0
+2178,0.020682306586059,0.32,32,3,90.4331294349876,0.867457712698813,23.5,4.05070261657238,0
+2179,-0.0275344416422172,0.0525,5.25,5,56.7280966151408,0.637203166226913,1.75,5.72964168730236,0
+2180,0.00144154564657129,0.2175,21.75,5,85.376099682506,0.802123054725343,13,8.25234748577249,0
+2181,-0.00624837711480723,0.125,12.5,2,88.8888888888889,0.919327731092437,12.25,8.26355876922607,0
+2182,-0.0169950455501385,0.13,13,1,90.6657843098624,0.974170218261656,13,24.8096095231863,7.07106781005859
+2183,0.00746484498878544,0.145,14.5,2,87.3612602935911,0.894736842105263,12.25,17.2287229340652,0
+2184,-0.00940576440103541,0.12,12,1,90.0697297581677,0.930709534368071,12,27.211908698082,5
+2185,0.012200385502947,0.245,24.5,1,94.6299732152399,0.969897652016857,24.5,12.8492396607691,0
+2186,-0.00600112614516547,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,43.7898719787598,41.2310562133789
+2187,0.0977763016073732,0.9325,93.25,1,99.8128381781211,0.979045523599978,93.25,28.4715995890845,0
+2188,-0.0466430296408362,0.2025,20.25,2,90.5581231819591,0.869383490073145,18.5,40.5683882913472,5
+2189,-0.000881951860064873,0.2325,23.25,1,94.3478768975745,0.929359130332404,23.25,60.6138565104495,10
+2190,0.0412684506458197,0.35,35,2,95.1941423704335,0.903846153846154,34,42.3602344240461,0
+2191,-0.0281541945227218,0.0425,4.25,2,74.792243767313,0.91644908616188,4,78.3959866692038,35.355339050293
+2192,-0.016001936720495,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,34.1368743896484,30.4138145446777
+2193,-0.0971336359577253,0,0,0,NA,NA,0,NA,NA
+2194,-0.167736457539722,0,0,0,NA,NA,0,NA,NA
+2195,-0.0635490546133224,0,0,0,NA,NA,0,NA,NA
+2196,-0.0894989681051811,0.0125,1.25,1,58.1880425789518,1,1.25,11.3983455657959,5
+2197,-0.0263423746540957,0.07,7,1,85.3702908942512,0.97610513739546,7,22.6429686546326,11.1803398132324
+2198,0.0403951049178795,0.3525,35.25,1,96.3984008308788,0.832390530064949,35.25,25.7071931987789,0
+2199,0.00273247377248481,0.1075,10.75,3,78.0655448893915,0.813258636788049,4.5,81.3140717439873,61.8465843200684
+2200,-0.0291304845500781,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,40.4548321678525,30
+2201,0.0235647021081058,0.145,14.5,6,77.894029671998,0.754385964912281,9.75,8.76808843941524,0
+2202,0.0531031144588542,0.55,55,2,97.5621402325493,0.75609756097561,53.75,5.14148651469838,0
+2203,0.0594128994164566,0.56,56,2,97.4521579098108,0.853197042192258,54.75,4.14502345664161,0
+2204,0.0494878830591915,0.535,53.5,2,97.6737508708874,0.740638677257254,52.75,3.92815031960746,0
+2205,0.0280177877962524,0.2325,23.25,4,87.2195334597429,0.756681448922727,16,3.28421545541415,0
+2206,0.0185508892967709,0.21,21,4,85.7865612185411,0.770622716846487,10.5,4.93896820431664,0
+2207,0.00235098052889043,0,0,0,NA,NA,0,NA,NA
+2208,0.00517270459850806,0.1325,13.25,1,90.8041511632959,0.847990626088609,13.25,2.26415094339623,0
+2209,0.0318194286529615,0.3325,33.25,2,95.3127712470722,0.857615996533259,32.5,2.621103358448,0
+2210,0.0286278953521105,0.2125,21.25,4,85.6192377287906,0.756123199831809,14.25,4.35182542239918,0
+2211,0.0125314791676283,0.0675,6.75,4,67.3004022709612,0.65085105056425,3.25,5.73285505506727,0
+2212,0.0229085160065824,0.2175,21.75,6,86.7068119116934,0.744408945686901,17.75,1.36944983471399,0
+2213,0.0254085582393418,0.1925,19.25,3,87.4929036013271,0.836095428883628,10.5,2.8474246433803,0
+2214,0.0524961144021654,0.4675,46.75,2,95.6111666333165,0.902303997394773,42.25,7.00198895663501,0
+2215,0.0548845130543486,0.5425,54.25,3,94.5177807266317,0.632094356976681,35.5,3.15566124454621,0
+2216,0.0461910594358051,0.52,52,2,97.6821118254414,0.709302325581395,51.5,0.738335976233849,0
+2217,0.0343030698607618,0.36,36,5,87.1401867988956,0.727746212121212,21,0.625,0
+2218,0.037749526408661,0.43,43,2,95.3803271877456,0.795229398417178,36.25,4.71597288930139,0
+2219,0.00137578719964949,0.1775,17.75,2,88.900346302823,0.90273556231003,15.25,10.5270350012981,0
+2220,0.0258830420891172,0.35,35,3,93.3293218806219,0.795673076923077,29.75,5.40773432595389,0
+2221,0.012187400600269,0.2725,27.25,3,89.9980622459491,0.804629581174665,15.75,3.48007702608721,0
+2222,0.00657675109316187,0.2075,20.75,3,88.5094771371616,0.793986995429086,12.25,0.421686746987952,0
+2223,0.0099250175873749,0.1275,12.75,5,81.1700640961155,0.828738925666107,10.75,0.294117647058824,0
+2224,-0.0144721676138579,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2225,-0.00827814538477469,0,0,0,NA,NA,0,NA,NA
+2226,0.00156434447082574,0.0275,2.75,3,61.1205432937182,0.588688946015424,2.25,9.24963188171387,0
+2227,0.00258417384383392,0.01,1,1,52.6315789473684,0.494949494949495,1,12.7950849533081,10
+2228,0.00159231048629522,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,8.3870792388916,5
+2229,0.00208182770190092,0.0025,0.25,1,0,NA,0.25,0,0
+2230,-0.00191951928343769,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,8.33333333333333,0
+2231,-0.0176011814780941,0,0,0,NA,NA,0,NA,NA
+2232,-0.0281000526672574,0.01,1,1,52.6315789473684,0.747474747474748,1,4.26776695251465,0
+2233,-0.0284140793534971,0,0,0,NA,NA,0,NA,NA
+2234,-0.0203571912583743,0,0,0,NA,NA,0,NA,NA
+2235,0.00993145394092608,0.045,4.5,3,67.3717385621468,0.689742098119062,3.25,2.61505932278103,0
+2236,0.00169523283105264,0.04,4,5,52.7445036954036,0.479166666666667,1.5,6.9153094291687,0
+2237,0.0217664870897352,0.115,11.5,8,70.1509872189186,0.579892800231783,5,9.49505258643109,0
+2238,0.00309596907345622,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,14.968163899013,10
+2239,0.000654477514108294,0.0075,0.75,1,44.4894453484604,1,0.75,9.41713587443034,7.07106781005859
+2240,0.00160934373173859,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,17.8250722018155,11.1803398132324
+2241,-0.0265360273360739,0.0025,0.25,1,0,NA,0.25,25,25
+2242,-0.00523189531716525,0.0125,1.25,1,58.1880425789518,1,1.25,30.6519996643066,26.9258232116699
+2243,-0.00615737577720211,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+2244,-0.00760335560376916,0,0,0,NA,NA,0,NA,NA
+2245,-0.00679926311759118,0,0,0,NA,NA,0,NA,NA
+2246,6.79719897902942e-05,0.0075,0.75,1,44.4894453484604,1,0.75,25.5051460266113,22.3606796264648
+2247,-0.00442168821443602,0.06,6,2,77.9511773564623,0.832026875699888,5,5.68898661931356,0
+2248,0.00701870265249113,0.04,4,4,55.6443768082932,0.565972222222222,1.75,9.36908710002899,0
+2249,0.00180925281295458,0.0375,3.75,2,73.5560880530256,0.763872491145218,3.5,2.94280904134115,0
+2250,0.0100100913626784,0.0325,3.25,5,45.8758855837313,0.540625897215045,1.75,7.58260638897236,0
+2251,0.0119841000702218,0.1575,15.75,3,85.3561605090612,0.838144051793903,8.25,4.20296962677486,0
+2252,-0.0132184764538215,0,0,0,NA,NA,0,NA,NA
+2253,-0.0249894465663829,0,0,0,NA,NA,0,NA,NA
+2254,-0.0120730672427635,0,0,0,NA,NA,0,NA,NA
+2255,-0.0151797039725534,0.04,4,2,68.1291563866194,0.696180555555556,2.25,23.1750670671463,5
+2256,-0.0169454443979339,0.025,2.5,2,60.6037822408496,0.842209072978304,2,40.6209667205811,26.9258232116699
+2257,0.000579893726510363,0.01,1,1,52.6315789473684,1,1,14.7904047966003,11.1803398132324
+2258,0.0502725279554579,0.52,52,1,97.9644711022996,0.913867355727821,52,3.81785026880411,0
+2259,0.0262414161498236,0.325,32.5,3,92.3694336475624,0.868729488982653,26.75,5.53838427617,0
+2260,-0.031244601137987,0.0425,4.25,3,62.446722000152,0.62402088772846,2,4.15558534509995,0
+2261,0.0403109968776698,0.425,42.5,2,94.6603171915973,0.872204472843451,36.5,0.967632203943589,0
+2262,0.0167563611040941,0.2725,27.25,4,89.6706208313493,0.769742006384426,19.5,1.88656707203716,0
+2263,-0.00566827329951593,0.125,12.5,1,90.3766993434411,0.798319327731092,12.5,0,0
+2264,-0.0591792947790964,0.0025,0.25,1,0,NA,0.25,0,0
+2265,-0.0859211175050587,0,0,0,NA,NA,0,NA,NA
+2266,-0.0850128940527793,0,0,0,NA,NA,0,NA,NA
+2267,-0.0424120701223728,0.1425,14.25,2,88.2177101271521,0.785803534241685,12.75,0,0
+2268,-0.0395703792985296,0.1425,14.25,2,86.7020839439872,0.892901767120843,12,0.350877192982456,0
+2269,-0.072112455565948,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,0,0
+2270,-0.0753337895432196,0,0,0,NA,NA,0,NA,NA
+2271,-0.0742803378053941,0,0,0,NA,NA,0,NA,NA
+2272,-0.0877522551524453,0,0,0,NA,NA,0,NA,NA
+2273,-0.0483061627958205,0.0025,0.25,1,0,NA,0.25,15,15
+2274,-0.042379825716489,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,17.1596987588065,10
+2275,-0.0200717892771354,0.1125,11.25,2,86.796696487485,0.940696812453669,10.75,2.20315856933594,0
+2276,-0.0810836130438838,0,0,0,NA,NA,0,NA,NA
+2277,-0.0579213748193797,0,0,0,NA,NA,0,NA,NA
+2278,-0.035509472893682,0,0,0,NA,NA,0,NA,NA
+2279,-0.0341455506913371,0,0,0,NA,NA,0,NA,NA
+2280,0.0198344910973356,0.1675,16.75,1,92.4032163835468,0.928133261466595,16.75,13.2327943773412,0
+2281,-0.0376506299717585,0,0,0,NA,NA,0,NA,NA
+2282,0.111018006042432,0.7,70,1,98.9724810035032,0.987325728770596,70,24.7675419262477,0
+2283,0.0166716188678765,0.125,12.5,1,90.3766993434411,0.892436974789916,12.5,41.0172383880615,30
+2284,0.00816395008394465,0,0,0,NA,NA,0,NA,NA
+2285,0.0307696462909371,0.235,23.5,5,84.2558664938114,0.774354186118892,10,19.3096147699559,0
+2286,0.071272713506587,0.5575,55.75,2,96.3461761645533,0.858757062146893,49.75,16.7982088183074,0
+2287,0.0520427706019836,0.66,66,1,98.7846583695088,0.887106357694593,66,20.8035528515324,0
+2288,-0.0347516477631279,0.05,5,2,73.2254128934661,0.728353140916808,3.5,10.8361199378967,0
+2289,0.0265547689894356,0.2475,24.75,1,94.6838124709557,0.89547948784949,24.75,17.9546589514222,0
+2290,0.00274179845794833,0.135,13.5,2,85.1132402484988,0.850829759462987,8.75,21.1232911569101,0
+2291,-0.0437466502508323,0,0,0,NA,NA,0,NA,NA
+2292,-0.0082110639874827,0,0,0,NA,NA,0,NA,NA
+2293,-0.0460036267269425,0,0,0,NA,NA,0,NA,NA
+2294,0.0135777829927611,0.325,32.5,1,96.0309682178207,0.956243162994218,32.5,28.1757889380822,7.07106781005859
+2295,-0.0496169864571129,0.02,2,1,68.0470115164975,0.897959183673469,2,22.607381105423,15.8113880157471
+2296,-0.0355941173991596,0.02,2,1,68.0470115164975,0.795918367346939,2,5.98530697822571,0
+2297,-0.0399458845097797,0,0,0,NA,NA,0,NA,NA
+2298,0.00402185068847757,0.1575,15.75,3,82.5559734749869,0.838144051793903,7.75,28.0111318315778,5
+2299,-0.0456233533043496,0.015,1.5,2,45.0766242787986,0.709934735315446,1,24.1139386494954,20.6155281066895
+2300,-0.0395968900123989,0,0,0,NA,NA,0,NA,NA
+2301,0.0523505211092015,0.4625,46.25,6,90.6054160998363,0.760641914864681,23,5.06048655123324,0
+2302,0.0317842583218589,0.285,28.5,4,87.5202597208203,0.748794894425962,12.25,7.37243623900832,0
+2303,0.0291308551359907,0.1975,19.75,5,82.8795550350182,0.804183355585225,14.5,7.84636639945115,0
+2304,0.0449435895312854,0.4625,46.25,2,97.2423712040982,0.842241262069903,46,4.26109435622757,0
+2305,0.00932543044653357,0.12,12,4,75.8704776716942,0.695121951219512,4,3.64139763514201,0
+2306,0.00110822841914796,0.0625,6.25,2,75.6672859078419,0.84,4.25,5.60438247680664,0
+2307,-0.0127180511711549,0.0575,5.75,2,74.957192004106,0.764220453875626,4,15.1480383665665,0
+2308,-0.00391024795207613,0.0025,0.25,1,0,NA,0.25,0,0
+2309,-0.00529145708573424,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,4.02368927001953,0
+2310,0.0269811461917197,0.2475,24.75,3,91.7049491758789,0.776027473963194,22.25,2.32682160656862,0
+2311,0.0369831074828289,0.3225,32.25,4,94.2113816230109,0.792729842192039,30.5,3.92367198855378,0
+2312,0.0277720184499594,0.1475,14.75,7,77.5560277774411,0.64349376114082,8.75,6.69405471672446,0
+2313,0.0218488425787837,0.1025,10.25,5,73.6334391812566,0.660893787089742,4.5,4.80848210032393,0
+2314,0.0438310210129566,0.44,44,3,93.8642342391864,0.774725274725275,30.5,3.86644956198606,0
+2315,0.0608438134369499,0.5375,53.75,4,96.125504417386,0.772972972972973,50,1.20681214443473,0
+2316,0.0665774437366053,0.7125,71.25,1,99.0279065499043,0.766385463984426,71.25,0.572927267509594,0
+2317,0.0146249316697822,0.25,25,4,85.0166683602649,0.748148148148148,9.5,7.29033065795898,0
+2318,-0.00224295826126763,0.095,9.5,4,74.0100306677695,0.701832851004122,3.5,7.60549500114039,0
+2319,0.0230444125941659,0.285,28.5,4,87.6475156495673,0.775952203136669,11.25,7.13643975843463,0
+2320,0.0316384469297918,0.31,31,6,86.3194448544809,0.780998389694042,17.25,13.8472323417664,0
+2321,-0.00839446403793772,0.15,15,1,91.6737426448862,0.852941176470588,15,12.5631686528524,0
+2322,0.0422154865874472,0.4375,43.75,1,97.3060110945426,0.972480220158239,43.75,22.7116415514265,0
+2323,0.0668421319397748,0.5625,56.25,1,98.2456140350877,0.891156462585034,56.25,15.7915411207411,0
+2324,-0.0199933968042978,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,3.33333333333333,0
+2325,-0.0175443473315045,0,0,0,NA,NA,0,NA,NA
+2326,-0.0280951517920539,0,0,0,NA,NA,0,NA,NA
+2327,-0.0102232953345265,0,0,0,NA,NA,0,NA,NA
+2328,0.00818635641069704,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047
+2329,0.00371841289939766,0.0225,2.25,4,37.1792809538246,0.403239556692242,0.75,8.36916393703885,5
+2330,-0.00578232361666778,0.005,0.5,1,30.8308651382582,1,0.5,19.0138778686523,18.0277557373047
+2331,-0.0124837117405332,0.025,2.5,5,42.4730329554994,0.368836291913215,1.5,23.8737998962402,0
+2332,-0.0280755712581959,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+2333,-0.0438460445270175,0.015,1.5,3,35.0877192982456,0.564902102973169,1,20.4844156901042,11.1803398132324
+2334,-0.00735942804565639,0.01,1,3,15.8692205350002,0.242424242424242,0.5,11.25,5
+2335,-0.00782953211608401,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2336,0.0153149277519424,0.135,13.5,3,83.6081834714533,0.813537199328734,10.25,5.6697831330476,0
+2337,0.00991808963037329,0.015,1.5,3,34.6304654967883,0.274836838288615,0.75,8.78052584330241,5
+2338,0.00162785551600791,0.0825,8.25,3,76.9372220654738,0.818346957311535,4.75,7.79394282716693,0
+2339,0.00738019536503998,0.0825,8.25,7,63.4406473043933,0.596326571803411,2.5,5.37556191646692,0
+2340,0.00845255961816292,0.065,6.5,3,77.382197567949,0.739141776444502,5.5,11.4942569732666,0
+2341,0.00181664377873517,0.06,6,3,74.2383376570041,0.804031354983203,5,15.2326172192891,5
+2342,-0.00266641885484205,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10
+2343,0.00934089752097862,0.0025,0.25,1,0,NA,0.25,5,5
+2344,0.0156642318422564,0.02,2,3,44.8468832832137,0.591836734693878,1.25,1.25,0
+2345,0.00564931678775793,0,0,0,NA,NA,0,NA,NA
+2346,0.0108687629022188,0.0525,5.25,4,65.6392288233205,0.670184696569921,3,3.29248264857701,0
+2347,0.00906519316125014,0.0625,6.25,2,81.5567131828758,0.813333333333333,6,9.67870864868164,0
+2348,-0.00320800114677695,0.0425,4.25,3,64.6561909374055,0.74934725848564,3,5.7290319554946,0
+2349,0.00626245204433872,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,25.035587310791,0
+2350,0.005188120727762,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,6.05622046334403,0
+2351,0.0127978100746958,0.1025,10.25,4,78.4703875735189,0.628597957288765,5,4.92629548979969,0
+2352,-0.0179769359129114,0,0,0,NA,NA,0,NA,NA
+2353,-0.0278815260203373,0,0,0,NA,NA,0,NA,NA
+2354,0.016713222905455,0.12,12,2,88.0388533908558,0.861419068736142,11.5,0.355647246042887,0
+2355,0.0234050854160523,0.19,19,5,86.6162004239777,0.594619495117008,14.25,4.32027274683902,0
+2356,0.0045496707260827,0.155,15.5,5,82.6636770723906,0.737015121630506,12,9.68567685158022,0
+2357,0.0391271313353354,0.45,45,2,96.1308328719747,0.863499863499863,42.75,4.18528291914198,0
+2358,0.0130913618074919,0.2175,21.75,5,83.454126333177,0.760898691126456,10.5,5.32311636826088,0
+2359,0.0188765963708101,0.2825,28.25,5,91.6690478632524,0.836031973765116,26,1.61124838769963,0
+2360,-0.110753791198367,0.0975,9.75,2,81.5825809614979,0.86362667803111,7,1.02564102564103,0
+2361,-0.0713384551821946,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0
+2362,0.00762868613401224,0.135,13.5,3,87.3836940408601,0.763813785816396,12.25,0,0
+2363,0.00632651718344278,0.2125,21.25,2,91.4987138602605,0.840218648165668,18.75,0.0588235294117647,0
+2364,0.0143719202513967,0.1825,18.25,6,81.7511552460113,0.722859327217125,11.25,0.547945205479452,0
+2365,0.0288348282634979,0.4375,43.75,1,97.3060110945426,0.933952528379773,43.75,0.285714285714286,0
+2366,-0.0200587390486908,0.23,23,1,94.2887150496276,0.936648717136522,23,0.0543478260869565,0
+2367,-0.0688428227347322,0.0675,6.75,2,77.4354064205079,0.875303946630089,5.25,0.37037037037037,0
+2368,-0.0369585936510703,0.185,18.5,2,89.658850438164,0.915054270882492,16,2.96573798720901,0
+2369,-0.0476453729216883,0.14,14,2,89.6329112009824,0.832174538479981,13.5,0.357142857142857,0
+2370,-0.0837636867462425,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+2371,-0.0971965878037736,0,0,0,NA,NA,0,NA,NA
+2372,-0.110252130014123,0,0,0,NA,NA,0,NA,NA
+2373,-0.0580635803194309,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,14.1626258577619,10
+2374,-0.0741909851052333,0,0,0,NA,NA,0,NA,NA
+2375,-0.0608991996937948,0,0,0,NA,NA,0,NA,NA
+2376,-0.0526437642944074,0,0,0,NA,NA,0,NA,NA
+2377,-0.049469194230478,0,0,0,NA,NA,0,NA,NA
+2378,-0.0514602161389485,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+2379,-0.0303785652404622,0.0575,5.75,1,83.3142722045184,0.91158267020336,5.75,0.652173913043478,0
+2380,0.0893225411830645,0.415,41.5,1,97.093152360986,0.966482319423496,41.5,23.9257667610444,5
+2381,-0.0573714445022597,0.005,0.5,1,30.8308651382582,1,0.5,16.9195718765259,15.8113880157471
+2382,0.0972855978264124,0.5925,59.25,1,98.4255810267197,0.950144718802365,59.25,21.7588786354548,0
+2383,0.0115679440358599,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,26.2371018483089,10
+2384,0.013991498158839,0.0025,0.25,1,0,NA,0.25,32.0156211853027,32.0156211853027
+2385,0.0656359339645132,0.47,47,2,97.2628910043583,0.886141834743006,46.75,31.7385641869078,0
+2386,0.14953644127585,0.945,94.5,1,99.849005264488,0.467478128565995,94.5,45.1724525986525,0
+2387,0.109721934118552,0.715,71.5,1,99.0388168843254,0.980434357268636,71.5,62.8711955730732,20
+2388,0.0191762312364881,0.23,23,3,88.4669730489251,0.84954070319924,15.5,31.1192467938299,0
+2389,0.0367910693703652,0.3425,34.25,2,93.8833570412518,0.902661596958175,30.25,11.9949849817875,0
+2390,0.0140887025378424,0.2,20,4,86.6964807642035,0.859154929577465,13.25,13.6054790258408,0
+2391,-0.0102958989731451,0.035,3.5,1,77.1303955881658,0.792746113989637,3.5,6.83884102957589,0
+2392,0.0046677145313879,0.0725,7.25,4,75.6373695711579,0.770602741297241,6,21.5396101721402,0
+2393,-0.0216245712728778,0,0,0,NA,NA,0,NA,NA
+2394,-0.00761379054658391,0.0775,7.75,1,86.3573366287605,0.848238482384824,7.75,40.2436477907242,26.9258232116699
+2395,-0.0753756300825626,0.01,1,1,52.6315789473684,0.747474747474748,1,27.2272453308105,21.2132034301758
+2396,-0.0515707825962454,0,0,0,NA,NA,0,NA,NA
+2397,-0.00212004391898518,0.31,31,1,95.8102472617487,0.967793880837359,31,44.5538969347554,30
+2398,0.0481637776272692,0.3925,39.25,2,94.8519908695701,0.919981710105167,36.5,12.0883692115735,0
+2399,-0.0286590531581169,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,26.7847534179688,20.6155281066895
+2400,-0.0169552259227567,0.02,2,1,68.0470115164975,0.897959183673469,2,44.0297141075134,36.0555114746094
+2401,0.034529839659881,0.2775,27.75,3,88.4949940572478,0.826989619377163,13.75,4.96534852723818,0
+2402,-7.78066382190445e-05,0.005,0.5,2,0,1,0.25,8.09016990661621,5
+2403,0.0122596631628699,0.0525,5.25,3,69.1362577513778,0.769129287598945,2.75,3.44731158301944,0
+2404,0.0363244212196878,0.34,34,2,94.4306316384752,0.883919843597263,31.25,2.43087113604826,0
+2405,0.00228050241072197,0.1,10,2,82.6083829683769,0.751243781094527,7.25,2.83934707641602,0
+2406,-0.0865605362207134,0,0,0,NA,NA,0,NA,NA
+2407,-0.0456527605199517,0.06,6,3,73.878161325217,0.748040313549832,4.25,26.3224360148112,18.0277557373047
+2408,-0.00193391641991184,0.025,2.5,3,50.7749378731535,0.605522682445759,1.5,17.1034538269043,0
+2409,0.0115783947120053,0.08,8,2,79.1248992465258,0.853678929765886,6,16.7149708867073,5
+2410,-0.00885916414822987,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,43.4707657950265,5
+2411,0.00702651125311149,0.0675,6.75,6,59.7647878581007,0.476276575846375,2,4.20003509521484,0
+2412,0.0191137015456206,0.1425,14.25,4,78.3345469303139,0.726304515975486,5.75,9.54203314530222,0
+2413,0.0312033422269087,0.2825,28.25,4,91.0240095412599,0.747215959554554,22.75,6.50194743671248,0
+2414,0.0543474200634228,0.5575,55.75,3,93.2545046172959,0.739243807040417,25.75,2.31419738632681,0
+2415,0.0544584244137877,0.6375,63.75,1,98.6713232517353,0.901890059154523,63.75,0.117647058823529,0
+2416,0.00124046548931801,0.15,15,3,87.1256910884538,0.852941176470588,13.25,11.7747820854187,0
+2417,0.0516535364316587,0.565,56.5,2,97.9347101932045,0.929014115270156,56.25,9.3919058436841,0
+2418,0.0711288204400262,0.805,80.5,1,99.3970714465752,0.88191632928475,80.5,8.35584491824511,0
+2419,0.0726437596042524,0.745,74.5,2,98.9208853970113,0.888154905455943,74.25,4.58817153649042,0
+2420,0.0282944715334452,0.3675,36.75,3,95.3783099206097,0.811922359198907,35.5,1.83277642645803,0
+2421,-0.0274630604406775,0.115,11.5,5,74.4437220912009,0.681297986382732,6.25,5.40831018530804,0
+2422,-0.00252572000797954,0.12,12,3,83.9959652153835,0.805986696230599,10.25,12.3643083572388,0
+2423,0.0634089029860479,0.46,46,1,97.5030549392159,0.950980392156862,46,12.5304227186286,0
+2424,0.000386890194886291,0.0875,8.75,1,87.4704367425575,0.811053377420879,8.75,6.20571752275739,0
+2425,-0.00586596229713905,0,0,0,NA,NA,0,NA,NA
+2426,-0.00233002551554819,0,0,0,NA,NA,0,NA,NA
+2427,-0.00190121674152124,0,0,0,NA,NA,0,NA,NA
+2428,0.00448270413344289,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,5,0
+2429,0.00799582894692662,0.0525,5.25,2,77.6115934770946,0.802110817941952,4.75,9.63766197931199,5
+2430,-0.00107249372467777,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,6.37523460388184,0
+2431,-0.00604252749377338,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2432,0.00493526420323178,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,10.5318984985352,7.07106781005859
+2433,0.00554274078949902,0.0525,5.25,3,72.8206210538575,0.83509234828496,4.5,28.9623904455276,7.07106781005859
+2434,0.00799633706776149,0.0275,2.75,4,46.7379665307417,0.520137103684661,1.25,7.14308027787642,0
+2435,0.0170625882668537,0.1975,19.75,2,92.1689164016113,0.893190921228304,19.25,12.7979153500328,0
+2436,-0.00307133452537528,0.01,1,3,15.8692205350002,0.242424242424242,0.5,3.01776695251465,0
+2437,0.0088650050018623,0.0375,3.75,2,68.3745502901928,0.669421487603306,2.5,16.7983205159505,7.07106781005859
+2438,-0.000420176315219578,0,0,0,NA,NA,0,NA,NA
+2439,0.00340178794402163,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0
+2440,0.0110356993776026,0.055,5.5,2,76.0387038444882,0.875505757858699,4.5,8.96126209605824,0
+2441,0.0143774179259344,0.075,7.5,7,57.0135355118328,0.492553778268064,2,6.62942485809326,0
+2442,0.0209762127141039,0.155,15.5,5,80.9595848162913,0.682226605303528,8,12.5990801472818,0
+2443,0.0255361710128454,0.1375,13.75,3,87.4646854615048,0.841342486651411,12.75,9.29809809598056,0
+2444,0.00791677762888867,0.0725,7.25,4,73.0753174302769,0.72472328955669,4,13.8539580641122,5
+2445,0.00508071514193944,0.0325,3.25,2,70.7892806005518,0.770312948607522,3,12.5654638730563,5
+2446,0.0169921412389695,0.0875,8.75,5,72.6184411489207,0.73547472838923,5.5,9.65868312290737,0
+2447,0.00474779735896846,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+2448,0.00982178688735075,0.0225,2.25,3,52.302732653549,0.403239556692242,1.5,4.48027504814996,0
+2449,0.00983635857311128,0.05,5,5,57.405001194473,0.592529711375212,2.75,7.77448558807373,0
+2450,-0.00501658365271055,0.0675,6.75,5,64.4583706523937,0.625911839890268,2.75,7.443959624679,0
+2451,-0.0161017802558854,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5
+2452,-0.0272121038527621,0,0,0,NA,NA,0,NA,NA
+2453,-0.0287243482880149,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,10.2559464772542,5
+2454,0.0222723875717929,0.2875,28.75,4,93.8782390239646,0.8582995951417,28,6.66353985330333,0
+2455,0.0418972471865345,0.415,41.5,3,94.1074894446644,0.759789955868387,30.5,5.03442457497838,0
+2456,-0.0135684367047088,0.1725,17.25,3,86.173119999799,0.870165538937854,13.25,1.65067186217377,0
+2457,-0.024300298547314,0.0775,7.75,2,83.9718421590685,0.67479674796748,7.25,0.483870967741935,0
+2458,0.0230791015555951,0.2325,23.25,4,85.0368572594243,0.733134492366862,10.75,2.23039147161668,0
+2459,0.0674469672304258,0.6,60,3,96.0488061863108,0.849665924276169,50.25,2.45792027314504,0
+2460,0.00353707088122519,0.11,11,3,78.9996824825328,0.726692985119952,6.75,2.81634733893655,0
+2461,-0.229209194186551,0,0,0,NA,NA,0,NA,NA
+2462,-0.044511893154322,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2463,-0.00744627435749862,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,0,0
+2464,0.00757334118636209,0.1975,19.75,2,91.8156754614608,0.804183355585225,18.75,0.443037974683544,0
+2465,0.00264034107734915,0.2075,20.75,3,86.0393718642724,0.811154745809996,9.25,0.79774943891778,0
+2466,0.035232791639246,0.4975,49.75,1,97.8012504735965,0.832814248540495,49.75,0.42713567839196,0
+2467,0.00150657424979727,0.255,25.5,4,87.9954331600537,0.831297905893571,12.75,0.53921568627451,0
+2468,0.0938716949014633,0.685,68.5,2,96.2749045619486,0.672657649311346,36,3.27319535721828,0
+2469,0.0803700298110925,0.695,69.5,3,97.06828164822,0.780164562527479,61.5,5.54557363935512,0
+2470,0.0404238911997163,0.43,43,3,93.9250379354778,0.916984891250207,38.25,11.0421298049217,0
+2471,-0.0175142085011976,0.03,3,2,69.3435483247553,0.696785930867192,2.75,4.85702260335286,0
+2472,-0.0266531310907612,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+2473,-0.0899754874105565,0,0,0,NA,NA,0,NA,NA
+2474,-0.0645454943178629,0,0,0,NA,NA,0,NA,NA
+2475,-0.040165119136982,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2476,-0.0669612788083032,0,0,0,NA,NA,0,NA,NA
+2477,-0.0717087847457151,0,0,0,NA,NA,0,NA,NA
+2478,-0.0536627444480473,0,0,0,NA,NA,0,NA,NA
+2479,-0.00649343230470549,0.1125,11.25,1,89.5714527894752,0.896219421793921,11.25,8.0280824025472,0
+2480,0.151132166978932,0.7425,74.25,1,99.1551699664667,0.97915834447783,74.25,43.1208981729116,5
+2481,-0.0565851012489293,0,0,0,NA,NA,0,NA,NA
+2482,0.10262269651641,0.5425,54.25,1,98.1174291231355,0.956716983173727,54.25,15.6518747443977,0
+2483,0.00887934620785927,0,0,0,NA,NA,0,NA,NA
+2484,0.0306195668521104,0.15,15,5,83.2554822935152,0.751131221719457,10.5,42.2183251063029,11.1803398132324
+2485,0.082313394700177,0.7975,79.75,1,99.3695525162542,0.696484967802797,79.75,30.4629316060894,0
+2486,0.15973670954816,0.985,98.5,1,99.9600766120013,1,98.5,68.0794135398671,15
+2487,0.066869732583873,0.515,51.5,2,95.2020291292885,0.886947861430379,44,71.3851264379557,7.07106781005859
+2488,0.0745294836872199,0.8575,85.75,1,99.5794816088838,0.772579597141,85.75,41.4175564846562,10
+2489,0.0412440952225734,0.35,35,3,95.2562722043164,0.933894230769231,34.5,6.62645700999669,0
+2490,0.0268819527466167,0.2325,23.25,3,87.3016772258163,0.843020289627566,11.75,11.886043384511,0
+2491,0.018700081291754,0.19,19,2,88.6301597301628,0.82494932743689,15,2.73353792491712,0
+2492,0.0107155969398627,0.11,11,6,70.8845409398195,0.62040692377771,4.5,3.39511979709972,0
+2493,0.00869243404134977,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,4.18318275783373,0
+2494,-0.052134256622594,0,0,0,NA,NA,0,NA,NA
+2495,-0.0682177215721458,0,0,0,NA,NA,0,NA,NA
+2496,-0.0296896619319159,0,0,0,NA,NA,0,NA,NA
+2497,0.0321916989141755,0.3475,34.75,1,96.3348533717898,0.891392886234048,34.75,46.1076695833275,25
+2498,0.0036528742905648,0.3275,32.75,2,95.1373507064611,0.950226314725234,32.25,11.3418171278393,0
+2499,-0.0479639293262153,0.02,2,1,68.0470115164975,0.897959183673469,2,0,0
+2500,0.0386666553475516,0.315,31.5,5,91.9726429588105,0.859752016064769,28.5,65.4716411772228,18.0277557373047
+2501,0.0286789493645665,0.2325,23.25,6,86.0962696738544,0.764530434441348,16.75,2.8466732271256,0
+2502,0.00472914902426339,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+2503,0.0457266935335792,0.2975,29.75,3,91.5871460173277,0.855015157506261,25.75,0.791110383362329,0
+2504,0.0128211049539095,0.1375,13.75,1,91.0694765797212,0.853546910755149,13.75,3.13442805897106,0
+2505,-0.0022969332964567,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,3.41421356201172,0
+2506,-0.0130227069212469,0.05,5,2,77.8661828264503,0.864176570458404,4.75,7.82678394317627,0
+2507,0.00108065756418,0.0525,5.25,7,51.3719864960616,0.472295514511873,2.25,20.4640800839379,0
+2508,0.0267852371566187,0.235,23.5,2,92.7827481180159,0.875505757858699,22.25,14.5344784107614,0
+2509,-0.00699065883588446,0.06,6,2,75.3144668705491,0.804031354983203,4.25,13.3730362256368,0
+2510,-0.00724869004397988,0.04,4,4,57.1874202945987,0.609375,2,10.2962881326675,0
+2511,-0.0334301268948911,0.0225,2.25,2,60.8730533773843,0.829497016197783,2,4.80571195814345,0
+2512,0.0365080313513317,0.255,25.5,4,89.3129116225158,0.875307147834379,22.25,5.54555189843271,0
+2513,0.0366523009225057,0.3575,35.75,4,92.1487327910223,0.762378590310987,26.25,3.63239923223749,0
+2514,0.0385650965325476,0.47,47,3,95.9708443881499,0.859032747777055,45,0.725306226852092,0
+2515,0.0120613933095137,0.28,28,3,92.3098291735325,0.883113311331133,25.5,5.91871041910989,0
+2516,0.0512700748541829,0.4775,47.75,1,97.646583102185,0.935122861081826,47.75,3.3898515451641,0
+2517,-0.00948829125554767,0.125,12.5,4,77.2152590250467,0.74453781512605,5,7.2663793182373,0
+2518,0.016402305246811,0.3675,36.75,3,91.5073838286907,0.776657801548702,17.75,4.52909228266502,0
+2519,0.0595067055590789,0.4925,49.25,3,94.2045138395213,0.854241176867535,40.25,16.7208725111134,0
+2520,-0.0121757769461874,0.025,2.5,1,71.9760246298065,1,2.5,2,0
+2521,-0.0231827434617298,0.0625,6.25,3,69.5121840349285,0.706666666666667,2.75,1.88284271240234,0
+2522,-0.0113334848647128,0.085,8.5,4,75.1344651869757,0.746291959406714,6.25,1.32352941176471,0
+2523,-0.0241131171485176,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,1.80473785400391,0
+2524,-0.00995569054287444,0.0825,8.25,2,80.4366456798843,0.838530628721364,6.25,2.27272727272727,0
+2525,0.00495679562207442,0.11,11,1,89.3941397590651,0.893713938657759,11,3.19647615606135,0
+2526,-0.0152045393139633,0,0,0,NA,NA,0,NA,NA
+2527,0.00422744603359661,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+2528,-0.000382446684250226,0.0025,0.25,1,0,NA,0.25,5,5
+2529,0.0141771871646415,0.0775,7.75,5,72.2525051613521,0.609756097560976,5.25,10.3901538233603,0
+2530,0.0103194176479519,0.0275,2.75,4,46.8309391098864,0.383033419023136,1.25,12.9389488913796,0
+2531,0.00139501400750646,0.055,5.5,2,76.6744248864547,0.813258636788049,4.5,17.5414703542536,0
+2532,0.00385121522664122,0.02,2,3,42.6244177316702,0.489795918367347,1,23.8161082267761,5
+2533,-0.00457258598981753,0,0,0,NA,NA,0,NA,NA
+2534,0.00952533892304928,0.0325,3.25,5,45.8758855837313,0.540625897215045,1.75,10.3882519648625,0
+2535,0.00474689821127413,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,1.11111111111111,0
+2536,-0.00400311231227533,0.0175,1.75,1,65.4774238937655,1,1.75,1.42857142857143,0
+2537,0.00557338809288808,0.0275,2.75,3,55.3822898769033,0.725792630676949,2,8.24045007879084,0
+2538,-0.000974848152964114,0.0125,1.25,1,58.1880425789518,1,1.25,2,0
+2539,-0.000278914640848598,0,0,0,NA,NA,0,NA,NA
+2540,0.00896370089234551,0.015,1.5,2,46.1375166841518,0.564902102973169,1,17.8352018992106,15
+2541,0.00645477010020841,0.0275,2.75,4,43.4900566959791,0.520137103684661,1,12.2371746410023,0
+2542,0.0126941359770899,0.075,7.5,6,66.6868725578929,0.580805295091009,3.25,5.02149836222331,0
+2543,0.0142708526616798,0.0375,3.75,2,72.8063268476367,0.858323494687131,3.5,7.10237859090169,0
+2544,0.0208428665015163,0.1225,12.25,2,86.0748602123365,0.877899877899878,10.75,22.0208211237071,5
+2545,0.0256128133919992,0.135,13.5,8,70.8817615983023,0.651936105413637,6.5,9.21914446795428,0
+2546,0.0113512033849202,0.04,4,3,65.0436343848543,0.739583333333333,3,22.3333361148834,0
+2547,0.0358087912128894,0.3475,34.75,1,96.3348533717898,0.87329170060639,34.75,5.86821469643133,0
+2548,0.018779831699685,0.145,14.5,5,78.1438308969877,0.777777777777778,7.25,6.94969532407563,0
+2549,0.00601656281369742,0.1575,15.75,3,86.5574030653255,0.794982465605611,12.75,15.1215405539861,0
+2550,0.00813619906886743,0.095,9.5,4,73.9707021904349,0.684293606945541,3.75,6.37870793593557,0
+2551,-0.000167170149361482,0.1275,12.75,5,82.3543917808298,0.828738925666107,10.75,6.42704234403722,0
+2552,-0.00331431191356387,0.105,10.5,4,76.7818599217667,0.732473050594067,5.5,4.95329747881208,0
+2553,0.0111016463463056,0.1575,15.75,3,86.6936967844498,0.719449689776099,12.5,7.53392843216185,0
+2554,0.00445485737843228,0.0825,8.25,4,71.2666501167217,0.717428600262388,3.5,3.85063841848662,0
+2555,-0.000890179914076725,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.11900753445095,0
+2556,-0.0554976531170541,0,0,0,NA,NA,0,NA,NA
+2557,0.030551854998339,0.415,41.5,1,97.093152360986,0.849170437405732,41.5,4.17705537037677,0
+2558,0.088895591024193,0.9125,91.25,1,99.7534323937872,0.768451519536904,91.25,0.781795449452857,0
+2559,0.0576358124970284,0.695,69.5,2,96.7929935638406,0.799007600025124,55.75,0.449640287769784,0
+2560,0.0111666131970924,0.295,29.5,2,91.7320640954815,0.834294425664479,16.25,0.169491525423729,0
+2561,0.0178595680969738,0.2175,21.75,2,92.6602412097379,0.934041018241781,21.25,1.22454803291408,0
+2562,0.0194077208165254,0.08,8,7,60.338807495213,0.561036789297659,2.25,0.9375,0
+2563,-0.0629616783070014,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+2564,-0.0141614255893364,0.3075,30.75,1,95.7718985824481,0.954671285878487,30.75,0.609756097560976,0
+2565,0.03375287214134,0.44,44,3,95.3605547046377,0.846153846153846,40,0.369318181818182,0
+2566,0.0368714572691533,0.6425,64.25,1,98.697022509981,0.930215314830699,64.25,0.447470817120623,0
+2567,0.00398032374363538,0.255,25.5,3,87.2348872772783,0.794623537609565,9.75,0.196078431372549,0
+2568,-0.00450520559737925,0.14,14,4,82.3346525910172,0.72428674178854,9.75,14.744574546814,0
+2569,-0.0113214003934809,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,5.6903559366862,5
+2570,0.0870748352236114,0.7125,71.25,1,99.0279065499043,0.922128487994809,71.25,5.08594002305416,0
+2571,-0.0511005731334626,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,2.10060015591708,0
+2572,-0.0556398088004789,0,0,0,NA,NA,0,NA,NA
+2573,-0.0613465187280963,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+2574,-0.0426983601340908,0.02,2,1,68.0470115164975,1,2,1.25,0
+2575,-0.0578277209932639,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+2576,-0.0380202271520466,0,0,0,NA,NA,0,NA,NA
+2577,-0.034592519398052,0.025,2.5,3,47.9024210673189,0.526627218934911,1,2.61803398132324,0
+2578,-0.0323468137434247,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,0,0
+2579,0.129356832844769,0.45,45,1,97.417305342106,0.929019929019929,45,17.4839455074734,0
+2580,0.0545720223348326,0.305,30.5,2,95.1357986803744,0.934893713988086,30.25,50.3230603327517,25
+2581,-0.0443663075678342,0.0875,8.75,1,87.4704367425575,0.867737364194615,8.75,24.0812262398856,0
+2582,0.109408509397181,0.615,61.5,1,98.5518240730175,0.937888198757764,61.5,18.0071786322245,0
+2583,0.0198114517863905,0.0625,6.25,1,84.2105263157895,0.813333333333333,6.25,23.834560546875,18.0277557373047
+2584,0.0511833165830467,0.5575,55.75,1,98.2142154717639,0.858757062146893,55.75,25.4425589642717,5
+2585,0.0979055613838136,0.985,98.5,1,99.9600766120013,0.643493761140819,98.5,26.3242650104658,0
+2586,0.17341112723574,1,100,1,100,NA,100,87.314477596283,35
+2587,0.0665480511449277,0.5375,53.75,2,95.0707164196761,0.864864864864865,35.25,125.734633405818,70
+2588,0.0647207218315452,0.7575,75.75,1,99.2159474776692,0.761676927798942,75.75,89.2070572982133,18.0277557373047
+2589,0.0523973465443123,0.6425,64.25,2,98.384258518637,0.94184609569225,64,33.4666833098297,5
+2590,0.0110431207017609,0.0475,4.75,1,81.114133276783,0.855190514978731,4.75,8.99828559473941,5
+2591,0.017629295470847,0.1925,19.25,1,93.2673077410907,0.972682571480605,19.25,13.0256191105038,0
+2592,-0.022065233201829,0.02,2,3,44.8468832832137,0.591836734693878,1.25,0.883883476257324,0
+2593,-0.0031250320228537,0.0425,4.25,2,69.1697389652099,0.83289817232376,2.75,7.51852013083065,0
+2594,-0.0301033616328277,0.07,7,1,85.3702908942512,0.92831541218638,7,11.3544289043971,0
+2595,-0.0653649591561407,0,0,0,NA,NA,0,NA,NA
+2596,-0.0402110265733063,0,0,0,NA,NA,0,NA,NA
+2597,-0.00425057530165759,0.22,22,2,90.8766799029653,0.910174750939082,19,31.2455740841952,0
+2598,-0.067838313223765,0.14,14,1,91.1967767414513,0.952049868137137,14,9.12775261061532,0
+2599,-0.0928346358850831,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,89.745616367885,77.7817459106445
+2600,-0.00615785742280423,0.1275,12.75,5,77.3476250850072,0.696999637716958,7.75,119.62759848202,85
+2601,0.0129481984574886,0.245,24.5,3,90.7489744521472,0.729078868151716,18.75,2.31783434809471,0
+2602,0.0529012536568462,0.395,39.5,3,91.1059156984617,0.829011114277572,25.5,4.5479495253744,0
+2603,0.013549495731163,0.1975,19.75,3,86.0513758885625,0.768580329327993,11.5,19.6446984689447,0
+2604,-0.0171466229603175,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,1.34122975667318,0
+2605,-0.0192569789401387,0,0,0,NA,NA,0,NA,NA
+2606,-0.00557980554950518,0,0,0,NA,NA,0,NA,NA
+2607,-0.004267858897352,0.1175,11.75,3,80.4583275807095,0.759206798866855,7.5,13.7665872776762,0
+2608,7.73451757095245e-05,0.0725,7.25,4,69.9692576440996,0.72472328955669,3.5,33.6657612241548,0
+2609,-0.000672392664546351,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0
+2610,-0.0107508370992946,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+2611,-0.0087944140406762,0.06,6,2,78.1581530534733,0.692049272116461,5,0.208333333333333,0
+2612,0.0251656614816139,0.31,31,4,92.9579872212232,0.884057971014493,29.25,1.3263275084957,0
+2613,0.0125568080553057,0.17,17,2,88.5306681589503,0.858256555634302,13.25,0.220588235294118,0
+2614,0.0206735658973048,0.3175,31.75,3,93.9201726268581,0.911199911199911,30.5,6.78142571637011,0
+2615,0.044105855904163,0.41,41,3,95.8145802902961,0.848467841508587,39.5,2.17836866146181,0
+2616,-0.0304114833127096,0.0175,1.75,2,51.615396620588,0.618320610687023,1.25,1.7244382585798,0
+2617,-0.0102470692587667,0.235,23.5,2,93.3959996477718,0.891067538126362,23,2.03418301521464,0
+2618,0.0709034037636593,0.845,84.5,1,99.5375969134692,0.757685900348327,84.5,4.77703374377369,0
+2619,0.111716930484399,0.9575,95.75,1,99.8844617862358,0.740722735375142,95.75,41.2791567869659,5
+2620,0.064269491202258,0.565,56.5,2,96.7061950325966,0.90717230458405,52,10.4460794988987,0
+2621,0.0135964439444751,0.1525,15.25,2,86.5729797697068,0.89981632993822,10.5,1.85658045284084,0
+2622,0.0459823091115231,0.4925,49.25,2,96.573314996934,0.940616775760847,48,0.960112363553894,0
+2623,-0.00856551407901861,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,0,0
+2624,0.0189407859221683,0.295,29.5,2,94.1061795486424,0.860807317558163,27.75,1.11924633737338,0
+2625,0.0132801762974123,0.1925,19.25,2,91.9644595672781,0.799672190857767,18.5,1.84926679536894,0
+2626,-0.00207843460011645,0.0775,7.75,3,79.7035945669249,0.804878048780488,6.5,1.7741935483871,0
+2627,0.00468532578001941,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,21.0794258117676,10
+2628,0.0168590757498168,0.0825,8.25,5,75.4562277747864,0.656877586032899,6.25,14.3504958875252,5
+2629,0.00399084637735655,0.0275,2.75,2,60.9733116181825,0.657240788346187,1.75,6.045710476962,0
+2630,-0.00125383699582926,0.0075,0.75,1,44.4894453484604,1,0.75,32.9979120890299,31.6227760314941
+2631,0.00349163347840658,0.0175,1.75,2,49.299249134574,0.618320610687023,1,22.557672228132,7.07106781005859
+2632,-0.00766112449438879,0,0,0,NA,NA,0,NA,NA
+2633,-0.0156308316390664,0,0,0,NA,NA,0,NA,NA
+2634,-0.00529788823947456,0,0,0,NA,NA,0,NA,NA
+2635,-0.0113780073045837,0,0,0,NA,NA,0,NA,NA
+2636,0.00932772552376264,0.0725,7.25,3,81.1121467380364,0.655904111945862,6.5,7.1068659815295,0
+2637,-0.00334564764012612,0.0375,3.75,3,59.6678621602474,0.669421487603306,2,9.56849377950033,0
+2638,-0.00369043289914771,0.015,1.5,1,62.2896536353828,1,1.5,5.8870792388916,0
+2639,0.004817889657661,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,0.333333333333333,0
+2640,0.00347622910104292,0.005,0.5,1,30.8308651382582,1,0.5,13.4958639144897,11.1803398132324
+2641,0.00387650449392822,0.03,3,3,55.5868799243215,0.696785930867192,1.5,24.7904698053996,15
+2642,0.0153796258369402,0.015,1.5,2,45.0766242787986,0.709934735315446,1,4.51184463500977,0
+2643,0.00826015088447093,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+2644,0.0145170054084156,0.045,4.5,3,63.346874184061,0.728524335854179,2.25,4.80312993791368,0
+2645,0.0194176951292866,0.11,11,6,76.7817663151463,0.665958092924385,7.25,6.95343572443182,0
+2646,0.00556897554570241,0.0425,4.25,2,69.4704319562038,0.7911227154047,2.5,5.50434606215533,0
+2647,0.0110680008377039,0.065,6.5,2,77.1835258631473,0.739141776444502,4.25,7.64628483698918,0
+2648,0.00924336741232423,0.0625,6.25,1,84.2105263157895,0.92,6.25,9.28766403198242,5
+2649,0.00517069085572984,0.04,4,3,62.6689795569216,0.652777777777778,2.5,15.1276527643204,0
+2650,0.00460695757778012,0.105,10.5,3,82.504405014024,0.700999291840428,8.25,16.6789772396996,0
+2651,0.0088432690821719,0.06,6,2,80.5161428143405,0.888017917133259,5.75,26.1153388818105,0
+2652,0.0101539844580475,0.2575,25.75,2,93.7394699573425,0.868959868959869,24.75,5.45002900280999,0
+2653,-0.0357642718518218,0,0,0,NA,NA,0,NA,NA
+2654,-0.0121394617883789,0,0,0,NA,NA,0,NA,NA
+2655,-0.0397760064272734,0,0,0,NA,NA,0,NA,NA
+2656,-0.0602218752667977,0,0,0,NA,NA,0,NA,NA
+2657,0.0272415369037481,0.4375,43.75,1,97.3060110945426,0.933952528379773,43.75,0.22366934640067,0
+2658,0.0525289336388232,0.6125,61.25,1,98.5381414210533,0.791519932384843,61.25,0.183673469387755,0
+2659,0.0355784205402961,0.32,32,4,90.3905396692297,0.766473112850291,20.75,0.556096404790878,0
+2660,0.0313322784112461,0.1825,18.25,5,82.1169325652371,0.761085626911315,11.25,2.95782123199881,0
+2661,0.0332098419543581,0.34,34,3,92.8720762479574,0.841153470185728,28.75,3.80521305869607,0
+2662,0.0285138673689744,0.335,33.5,5,87.7587790917066,0.753482065820289,16.75,0.748920440673828,0
+2663,0.00789888047947443,0.115,11.5,7,68.5943386476847,0.594379255396205,4.5,0.978260869565217,0
+2664,0.0658059345101356,0.525,52.5,2,97.6602719516786,0.919235428725266,52.25,1.16258159819103,0
+2665,0.0553723711101338,0.6375,63.75,1,98.6713232517353,0.907661232145434,63.75,0.313725490196078,0
+2666,0.0373705774161863,0.4675,46.75,3,94.8656648118907,0.815463106190127,35.75,0.106951871657754,0
+2667,0.118357694195438,0.565,56.5,2,95.195580868709,0.874409588554891,45.25,1.99537085642857,0
+2668,0.00917068976919836,0.2675,26.75,3,89.8458638552821,0.731206564218642,18.5,4.06742295594973,0
+2669,0.0194023872843536,0.335,33.5,2,92.425739186848,0.852089239492173,17.25,4.77902082187026,0
+2670,0.076341025667316,0.5975,59.75,3,96.3466258346657,0.849931218475134,56,2.69392369481809,0
+2671,0.0684270441086846,0.6,60,1,98.4684502698115,0.916481069042316,60,1.66266160011292,0
+2672,-0.0390390102247329,0,0,0,NA,NA,0,NA,NA
+2673,-0.0364254867427735,0,0,0,NA,NA,0,NA,NA
+2674,-0.0731318194008782,0,0,0,NA,NA,0,NA,NA
+2675,-0.0405220529679173,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2676,-0.081524812062562,0,0,0,NA,NA,0,NA,NA
+2677,-0.0566905426179437,0,0,0,NA,NA,0,NA,NA
+2678,-0.0546023674157914,0,0,0,NA,NA,0,NA,NA
+2679,0.124779064298928,0.565,56.5,1,98.2611567869712,0.972697736642368,56.5,25.2374824591443,0
+2680,-0.00326298994899844,0.0425,4.25,1,79.7330921014386,0.66579634464752,4.25,55.8709766163545,38.0788650512695
+2681,0.0264968710962057,0.2875,28.75,1,95.4473178079967,0.966261808367072,28.75,17.106093050086,0
+2682,0.0551600313875315,0.35,35,3,91.4336782664749,0.84375,23.75,13.5055970191956,0
+2683,0.0129507064157133,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,21.7295750065854,5
+2684,0.0475117893016431,0.515,51.5,2,97.7134454630368,0.773895722860757,51.25,48.3730203572986,18.0277557373047
+2685,0.104519204348326,0.98,98,1,99.9465655549884,0.663978494623657,98,43.7538776981587,0
+2686,0.167747658124426,0.9625,96.25,1,99.898450616446,0.963470319634702,96.25,108.680637032645,50.9901962280273
+2687,0.0676381154364208,0.5125,51.25,3,96.7718177549961,0.92462480651457,50.25,200.136023619117,150.332962036133
+2688,0.0618907112907618,0.8175,81.75,1,99.442091962007,0.813503252592082,81.75,152.683822771825,105.118980407715
+2689,0.0662099230661988,0.91,91,1,99.745869280411,0.758103531688437,91,56.0236439338097,5
+2690,0.0231632383122633,0.2,20,1,93.4943790657906,0.938380281690141,20,19.446835565567,0
+2691,0.00578204062813256,0.0025,0.25,1,0,NA,0.25,20,20
+2692,-0.0238607793852134,0.0375,3.75,3,61.9676316777521,0.669421487603306,2.5,7,0
+2693,-0.00933146501903138,0.1275,12.75,2,87.446250662632,0.855086783255937,11.5,5.48647039076861,0
+2694,-0.017108383792509,0.0275,2.75,3,53.4089368972002,0.657240788346187,1.75,4.01292142001065,0
+2695,-0.0407785761876948,0,0,0,NA,NA,0,NA,NA
+2696,-0.113391594919376,0,0,0,NA,NA,0,NA,NA
+2697,-0.111179724466056,0,0,0,NA,NA,0,NA,NA
+2698,-0.124395888959989,0,0,0,NA,NA,0,NA,NA
+2699,-0.103395288661122,0,0,0,NA,NA,0,NA,NA
+2700,-0.078102092391722,0,0,0,NA,NA,0,NA,NA
+2701,0.0170614384354849,0.095,9.5,4,75.8261899383075,0.771989827238446,6.75,2.68608073184365,0
+2702,-0.000310964009840973,0.095,9.5,2,81.7688540172614,0.859686047531351,7,2.29983008535285,0
+2703,0.0183876706157389,0.2075,20.75,2,91.7511064343639,0.948496748857272,20,21.033800331943,5
+2704,-0.00688920331424015,0,0,0,NA,NA,0,NA,NA
+2705,-0.00665353558890729,0.0025,0.25,1,0,NA,0.25,70.7106781005859,70.7106781005859
+2706,0.00445196922624746,0.0625,6.25,5,60.8867092688808,0.546666666666667,2.25,1.8,0
+2707,0.0145604441892465,0.17,17,3,84.2144605499736,0.827882960413081,10.5,1.99051969191607,0
+2708,0.0154330241767639,0.205,20.5,4,84.0876195314355,0.748427672955975,10,2.41117095947266,0
+2709,-0.00769385796481856,0,0,0,NA,NA,0,NA,NA
+2710,0.0089348707193858,0.0975,9.75,2,85.8269464712375,0.86362667803111,9.25,14.5891442421155,0
+2711,0.0118633390956848,0.1425,14.25,2,86.9329903476319,0.833402748854644,11.5,0.562650312457168,0
+2712,0.00581198086405493,0.2125,21.25,2,90.2818001343756,0.848628192999054,17.25,0.470588235294118,0
+2713,0.0182696392342405,0.27,27,2,94.1076820973739,0.852476290832455,26.25,1.83399405302825,0
+2714,0.00398068888018315,0.1025,10.25,3,83.195330860072,0.870816680796092,9.25,3.27363009569122,0
+2715,0.0159145271174793,0.1825,18.25,3,86.3627086420646,0.732415902140673,9.5,2.11153610438517,0
+2716,0.00615865977702924,0.2075,20.75,3,87.281943523098,0.85407412176227,14.75,2.01718562482351,0
+2717,0.0372806017819676,0.465,46.5,3,92.7038803475964,0.853292762442947,29.75,1.09753836354902,0
+2718,0.0485459225086379,0.48,48,3,94.0641284405136,0.859550561797753,39.25,2.38161621491114,0
+2719,0.080295919450873,0.8625,86.25,1,99.5959799783351,0.821528165086447,86.25,6.85338401241579,0
+2720,0.0155395359386057,0.3275,32.75,1,96.0662730877785,0.888009208131776,32.75,2.643685231682,0
+2721,0.0450365547765432,0.5325,53.25,3,97.0108621727862,0.913574245125047,52.25,0.934939603850315,0
+2722,0.0884088751208037,0.9875,98.75,1,99.9667936270881,0.786666666666663,98.75,0.177215189873418,0
+2723,0.00670303214136993,0.1325,13.25,2,85.0444597713875,0.860658073914558,8.25,2.02629326874355,0
+2724,0.0125685662366413,0.1525,15.25,3,86.8093929120683,0.821895697667947,12.25,1.31147540983607,0
+2725,-0.0227287630519822,0,0,0,NA,NA,0,NA,NA
+2726,0.00761953749519307,0.0625,6.25,2,80.718217335568,0.733333333333333,5.75,2.4,0
+2727,0.00417492576634686,0.04,4,2,67.9080622555761,0.782986111111111,2.75,3.125,0
+2728,-0.0112958905038022,0.025,2.5,1,71.9760246298065,1,2.5,6.6502815246582,0
+2729,0.00577422429631497,0.1,10,4,75.0462056604591,0.684908789386401,4.75,6.04113101959229,0
+2730,-0.00262093778528651,0.0075,0.75,1,44.4894453484604,1,0.75,20.334654490153,18.0277557373047
+2731,0.00745415527499972,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,1.78571428571429,0
+2732,0.0232735352854161,0.2125,21.25,4,86.2146506705353,0.772942289498581,13.75,5.34785472645479,0
+2733,0.00931307154591195,0.1675,16.75,4,87.1314339304858,0.784399784399784,14,1.93989562988281,0
+2734,0.0136124815395306,0.055,5.5,5,60.8194159597436,0.626517273576097,3.25,3.98709175803445,0
+2735,0.00709603487070126,0.0925,9.25,4,71.83855243985,0.674840807478661,4,8.69542389947015,0
+2736,-0.000666733269517863,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172
+2737,-0.000630892500689697,0,0,0,NA,NA,0,NA,NA
+2738,-0.00102143902306125,0.0175,1.75,1,65.4774238937655,1,1.75,25.8586529323033,21.2132034301758
+2739,-0.0121341710024899,0,0,0,NA,NA,0,NA,NA
+2740,0.00838956036743184,0.0325,3.25,2,70.3625424207658,0.827734711455642,3,2.30769230769231,0
+2741,0.0295193729824678,0.265,26.5,5,87.8957362704808,0.736439078249101,19.25,2.62867556877856,0
+2742,0.0185847756876228,0.0475,4.75,4,59.9585418261584,0.601773916191511,2.5,4.74963870801424,0
+2743,0.0193548705354382,0.13,13,5,74.0244571482405,0.63838305566318,4.25,4.68260273566613,0
+2744,0.0053346094956396,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,17.7102600097656,7.07106781005859
+2745,0.00635961361292175,0.01,1,2,34.5233986084855,0.494949494949495,0.75,9.15569400787354,0
+2746,0.00960997385952396,0.035,3.5,2,66.9954634862024,0.689119170984456,2.75,7.39481476375035,0
+2747,0.000313397976274246,0,0,0,NA,NA,0,NA,NA
+2748,0.00906694834077371,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+2749,0.0105994670885411,0.0375,3.75,3,64.7643945182839,0.527744982290437,2.5,12.4858140309652,0
+2750,0.01078354731324,0.085,8.5,4,74.9650227258415,0.804839968774395,4.75,4.89810820186839,0
+2751,-0.00790320578581486,0.01,1,2,30.8308651382582,0.494949494949495,0.5,5,5
+2752,-0.0102088838741474,0.1,10,2,86.5594814299325,0.933665008291874,9.75,3.40533008575439,0
+2753,0.00758523581929694,0.075,7.5,3,78.6728786855926,0.823496966354109,6.5,1.40236892700195,0
+2754,0.00754061845658271,0.035,3.5,3,56.9727844546647,0.637305699481865,1.5,3.71936198643276,0
+2755,-0.0536096401775512,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+2756,-0.0660617269997238,0,0,0,NA,NA,0,NA,NA
+2757,0.0735169188288273,0.715,71.5,1,99.0388168843254,0.973912476358182,71.5,0,0
+2758,0.0623262559204159,0.5525,55.25,2,95.761712351338,0.869826978358735,45,0.32611342900479,0
+2759,0.0261031075100982,0.26,26,4,86.3160440349994,0.775979187743894,14.5,1.40558019051185,0
+2760,0.0497934027889494,0.5225,52.25,1,97.9819530119361,0.746968330663939,52.25,0.51230175985674,0
+2761,0.0583574449007574,0.56,56,3,94.4903625253969,0.83144845585037,33.75,1.54335124152047,0
+2762,0.0733842342105345,0.76,76,1,99.2259017402484,0.781849912739965,76,0.988010983718069,0
+2763,0.035231321775791,0.38,38,5,88.7987902104083,0.762978379003353,16.75,0.493421052631579,0
+2764,0.0408048665412207,0.4275,42.75,4,91.5713299050444,0.844735565259583,28.75,0.380116959064327,0
+2765,0.0150811093354969,0.195,19.5,3,87.4914875916669,0.810964083175803,15,0.667577792436649,0
+2766,0.0127920166196327,0.275,27.5,2,93.478428804578,0.889100675792757,25.75,0.318181818181818,0
+2767,0.087906920255773,0.495,49.5,2,94.6804355294124,0.919065476029892,26,3.64435910696935,0
+2768,0.0714691615926313,0.435,43.5,5,90.2435381990605,0.779450279822458,26,2.67629409658498,0
+2769,0.123703418124933,0.895,89.5,1,99.6998271307191,0.634780165753617,89.5,3.35274360166582,0
+2770,0.0945421414087468,0.5675,56.75,3,93.4952620361531,0.797756186884215,25.75,3.50762284064608,0
+2771,0.0504248469034792,0.4025,40.25,2,95.1935302342336,0.892570394662445,37,2.01799160501231,0
+2772,0.023857857301191,0.37,37,1,96.6105796155075,0.941427985708428,37,0.683872996149836,0
+2773,-0.0486410165281632,0.01,1,1,52.6315789473684,0.747474747474748,1,3.75,0
+2774,-0.0653607530216686,0,0,0,NA,NA,0,NA,NA
+2775,-0.0613691051915521,0,0,0,NA,NA,0,NA,NA
+2776,-0.0436975024089043,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0
+2777,-0.0558916417979708,0,0,0,NA,NA,0,NA,NA
+2778,-0.0667658129490155,0,0,0,NA,NA,0,NA,NA
+2779,0.0449898470193148,0.585,58.5,2,97.9275359965111,0.911775247442861,58,22.4873304448576,0
+2780,0.117616902158334,0.785,78.5,1,99.3228142317568,0.874292897548712,78.5,32.8786267323099,0
+2781,0.0319671066064075,0.2225,22.25,1,94.1052854736172,0.975732572953953,22.25,20.7655237819372,0
+2782,0.0159786688822351,0.075,7.5,1,86.0448225436784,0.845559845559846,7.5,39.9996950785319,30
+2783,-0.00737070337892874,0,0,0,NA,NA,0,NA,NA
+2784,0.0260264797835043,0.395,39.5,1,96.8888706928871,0.965802222855514,39.5,28.6076780874518,0
+2785,0.11381345182599,0.7825,78.25,1,99.3133324321661,0.914280148061562,78.25,45.2229577634281,5
+2786,0.125420570141432,0.755,75.5,1,99.205943814227,0.985653312291525,75.5,84.419445606257,22.3606796264648
+2787,0.0852984694920451,0.7375,73.75,1,99.1344998974781,0.986271986271986,73.75,182.012904952744,126.589889526367
+2788,0.06646654012613,0.9725,97.25,1,99.9261039309117,0.753633899975364,97.25,154.069005461156,91.9238891601562
+2789,0.0660794851416722,0.8375,83.75,1,99.5120172135984,0.97083485235144,83.75,87.3304620885137,35.355339050293
+2790,-0.00594083293175572,0,0,0,NA,NA,0,NA,NA
+2791,0.00513764746698143,0.0125,1.25,1,58.1880425789518,1,1.25,34.1227241516113,31.6227760314941
+2792,-0.0516451540973503,0.005,0.5,1,30.8308651382582,1,0.5,44.5546741485596,43.0116271972656
+2793,-0.0199545877939454,0.07,7,2,80.8368543722702,0.92831541218638,6.5,33.0140651975359,0
+2794,-0.0384623479993752,0,0,0,NA,NA,0,NA,NA
+2795,-0.0693476193817332,0,0,0,NA,NA,0,NA,NA
+2796,-0.119511473681778,0,0,0,NA,NA,0,NA,NA
+2797,-0.0644236207427457,0,0,0,NA,NA,0,NA,NA
+2798,-0.0594975121226162,0,0,0,NA,NA,0,NA,NA
+2799,-0.0628682405191648,0,0,0,NA,NA,0,NA,NA
+2800,-0.0776658145755755,0,0,0,NA,NA,0,NA,NA
+2801,0.0193435500763371,0.2125,21.25,1,93.8457653779655,0.924314096499527,21.25,0.470588235294118,0
+2802,0.00212561883063245,0.04,4,2,70.5124003942702,0.782986111111111,3.25,5.07582521438599,0
+2803,-9.52595068338269e-05,0.02,2,2,58.1510768543717,0.795918367346939,1.75,3.125,0
+2804,-0.00270719562375234,0,0,0,NA,NA,0,NA,NA
+2805,0.00413684076509526,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,2.77777777777778,0
+2806,-0.00250787949347341,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0
+2807,0.00557707008181751,0.0075,0.75,1,44.4894453484604,1,0.75,4.02368927001953,0
+2808,0.00719024449720564,0.09,9,2,85.6605277551928,0.89010989010989,8.75,2.81952264573839,0
+2809,0.0282622344252377,0.25,25,5,87.6925086774537,0.792592592592593,17.25,1.91535678863525,0
+2810,0.0314713808113993,0.2725,27.25,5,85.7020232268526,0.713921886720045,11.5,4.35876177866525,0
+2811,0.0026755661010975,0.22,22,4,84.9297517378762,0.738690184550057,13,3.55188619006764,0
+2812,0.0429336113603495,0.48,48,1,97.6664438264523,0.940579083837511,48,3.74418917298317,0
+2813,0.0389107941130709,0.4525,45.25,2,96.2626490336189,0.836434267021059,43,2.93135062370511,0
+2814,0.045011794415334,0.505,50.5,1,97.8568679502074,0.822222222222222,50.5,3.44364186088638,0
+2815,-0.0143975742648854,0.0775,7.75,2,81.6296771860339,0.89159891598916,7,3.01851235666583,0
+2816,-0.00232061613168298,0.0975,9.75,1,88.4075627573592,0.914766673769444,9.75,0.641025641025641,0
+2817,0.023327094114984,0.3925,39.25,2,96.2894550676601,0.885688157293096,38.75,0.790714239618581,0
+2818,-0.0141363033465495,0.055,5.5,2,73.8467807029537,0.719887955182073,3.25,1.13636363636364,0
+2819,0.0111670304551444,0.225,22.5,3,92.3303376362823,0.935884592266079,22,4.57383600870768,0
+2820,-0.00871818784005882,0.11,11,3,77.801411781424,0.787427877315518,4.5,1.41070608659224,0
+2821,0.0700830558651069,0.835,83.5,1,99.5034141561623,0.894347596407819,83.5,5.58081741675645,0
+2822,0.0904624159354716,0.9475,94.75,1,99.8561526638156,0.655606331545135,94.75,2.47196009794452,0
+2823,0.0563224061167421,0.595,59.5,1,98.4399608047141,0.911222083506728,59.5,5.60970510755266,0
+2824,0.0250765169058286,0.24,24,5,85.9760518197166,0.785801713586291,14.75,24.01539204518,0
+2825,-0.0209348549240872,0,0,0,NA,NA,0,NA,NA
+2826,0.00233107616028065,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471
+2827,0.00546649918338517,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5
+2828,-0.00397203571696764,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,2.82141217318448,0
+2829,-0.00515230467610309,0.05,5,4,63.9982983110902,0.592529711375212,3,4.10355339050293,0
+2830,0.00546880688143574,0.0725,7.25,6,66.643665349636,0.518265756724207,3,6.4227751370134,0
+2831,0.011630325417791,0.06,6,2,75.8503233769603,0.748040313549832,4.25,2.75888347625732,0
+2832,0.000788336715668265,0.115,11.5,4,76.3251829815864,0.724757351875996,5,3.33927710159965,0
+2833,-0.00090320551811601,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,11.6666666666667,5
+2834,0.00699836778620011,0.095,9.5,5,69.4145003277785,0.719372095062703,4.25,3.22088271693179,0
+2835,0.0312533715102472,0.165,16.5,10,71.6082493942483,0.541785993230929,7.75,3.52409397472035,0
+2836,0.00785150092444383,0.0575,5.75,4,67.2276691688115,0.764220453875626,3.25,3.63364708941916,0
+2837,0.000160803563376248,0.0275,2.75,2,60.4891372592007,0.588688946015424,1.5,7.75957627729936,0
+2838,0.0114099028526311,0,0,0,NA,NA,0,NA,NA
+2839,0.0014015376493785,0.0025,0.25,1,0,NA,0.25,0,0
+2840,0.0324436774483377,0.375,37.5,2,95.3777055957279,0.895272727272727,35.5,0.955228474934896,0
+2841,0.0411156238950207,0.425,42.5,3,95.5813583426855,0.78885956382831,39.5,0.808390628590303,0
+2842,0.0391590168288531,0.3225,32.25,5,90.3858438744138,0.805291669937976,26.5,0.506375778553098,0
+2843,0.0318160222529332,0.2625,26.25,6,84.3020105800514,0.770424177203838,15.25,1.57481275285993,0
+2844,0.0166480007515565,0.04,4,5,55.3409139382589,0.479166666666667,2.25,8.12331295013428,0
+2845,0.0123412268336324,0.025,2.5,2,60.6037822408496,0.842209072978304,2,5.12132034301758,0
+2846,0.017937268837486,0.0475,4.75,6,50.16137734717,0.565571544936193,1.75,5.58354668868215,0
+2847,0.00225830644089001,0.0175,1.75,2,53.5456806074901,0.872773536895674,1.5,2.14285714285714,0
+2848,0.00678433249333011,0.0025,0.25,1,0,NA,0.25,5,5
+2849,0.0147967193550721,0.0225,2.25,4,40.2289634834257,0.48849104859335,1.25,5,0
+2850,0.00543768243693535,0.06,6,1,83.7764057650598,0.888017917133259,6,12.2363085746765,0
+2851,-0.00420540597807303,0.0275,2.75,2,62.5248264037368,0.657240788346187,2,19.1686404835094,0
+2852,0.00607267942511953,0.0725,7.25,3,74.349564463268,0.747663015426966,4.5,2.11080011828192,0
+2853,0.0625900568100042,0.695,69.5,1,98.9498932220624,0.905784812511777,69.5,1.03390793834659,0
+2854,0.0240207883887342,0.21,21,6,85.2552853692792,0.736640897120041,12,1.03656033107213,0
+2855,-0.00621958242481924,0.2525,25.25,2,94.2408376963351,0.8595687281731,25,0.495049504950495,0
+2856,0.0139341088046058,0.255,25.5,4,90.6795021839742,0.750614295668757,21.25,3.2937982970593,0
+2857,0.0605448802124738,0.575,57.5,2,97.9531126909392,0.731249143013849,56.75,0.682917686130689,0
+2858,0.0446641492854542,0.405,40.5,2,94.7581810357129,0.808245445829339,31.75,0.691796714876905,0
+2859,0.0591612626545975,0.715,71.5,1,99.0388168843254,0.849996739059545,71.5,1.33851343435007,0
+2860,0.0678899713169085,0.8175,81.75,1,99.442091962007,0.698052885149087,81.75,1.238967662193,0
+2861,0.0422287700908782,0.56,56,1,98.2299673180941,0.847759895606786,56,0.751269068036761,0
+2862,0.0344418061276519,0.34,34,6,90.6252670304974,0.657869012707722,19.25,1.5945452521829,0
+2863,0.00748908006513375,0.0475,4.75,8,42.16862994327,0.34835731740429,1.5,4.24447109824733,0
+2864,0.0119430339199789,0.0625,6.25,5,64.4033531579938,0.653333333333333,3.25,1,0
+2865,-0.00109644958589342,0.045,4.5,4,60.8377345045192,0.573395384913709,2.5,0.277777777777778,0
+2866,-0.0168490298026882,0.0525,5.25,3,73.9536540018238,0.769129287598945,4.5,0.238095238095238,0
+2867,-0.0434713773133262,0.2,20,2,92.5523809915444,0.929577464788732,19.75,2.5151650428772,0
+2868,0.0850133845279925,0.8025,80.25,1,99.3879413454111,0.724276225090863,80.25,2.04805734224409,0
+2869,0.0649207671792828,0.7025,70.25,2,96.6267015291079,0.76445123503947,51.25,3.33146873827082,0
+2870,0.0900031366289477,0.795,79.5,1,99.3602931148206,0.829268292682927,79.5,6.00730860008384,0
+2871,0.0955362903187051,0.7125,71.25,1,99.0279065499043,0.779364049318624,71.25,8.2439328645405,0
+2872,0.0429441109686741,0.425,42.5,2,94.7923313825919,0.894429781914155,37,2.12391774794635,0
+2873,0.0260749961032707,0.3375,33.75,2,95.52542636915,0.889553612517257,33.25,3.03206219143338,0
+2874,0.00148319804917264,0.2475,24.75,2,93.3677100817145,0.89547948784949,24,3.356355763445,0
+2875,-0.0617004797610571,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2876,-0.0635573004063917,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2877,-0.0648082289496233,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2878,-0.0282804788339126,0.06,6,4,64.8134515354827,0.720044792833147,2.25,4.97534147898356,0
+2879,0.0860674185729295,0.8775,87.75,1,99.6446261822776,0.778706663388247,87.75,39.1217079923363,5
+2880,0.210379446037114,1,100,1,100,NA,100,66.1080115890503,15
+2881,0.067585850043688,0.34,34,2,93.2629000313328,0.89613880742913,26.75,48.9558167878319,15
+2882,0.0187743611017504,0.2,20,2,91.2776239892655,0.859154929577465,18.75,35.5600651979446,15.8113880157471
+2883,-0.0278374927538698,0,0,0,NA,NA,0,NA,NA
+2884,0.000753871647757478,0.06,6,3,71.4612437556934,0.720044792833147,4.25,40.1378382047017,5
+2885,0.0305648298709639,0.1375,13.75,5,76.4402298317406,0.69488939740656,4.5,23.2614300467751,0
+2886,0.0704452572623268,0.485,48.5,3,94.1714420557305,0.848975188781014,41.75,57.7089696077956,10
+2887,0.117357280077413,0.9775,97.75,1,99.9397711850087,1,97.75,157.182876996677,111.803398132324
+2888,0.0641333064809442,0.9425,94.25,1,99.8418294460568,0.708117968987534,94.25,113.643843066471,58.5234985351562
+2889,0.0320445333825774,0.1325,13.25,3,85.5010322087894,0.683313804351268,9.75,52.6274656979543,5
+2890,-0.00411863219273755,0,0,0,NA,NA,0,NA,NA
+2891,0.00248286544818257,0.0025,0.25,1,0,NA,0.25,26.9258232116699,26.9258232116699
+2892,-0.0689590098778717,0,0,0,NA,NA,0,NA,NA
+2893,-0.040126476385667,0,0,0,NA,NA,0,NA,NA
+2894,-0.0374391128884417,0,0,0,NA,NA,0,NA,NA
+2895,-0.0580030644475482,0,0,0,NA,NA,0,NA,NA
+2896,-0.105662491377443,0,0,0,NA,NA,0,NA,NA
+2897,-0.0779711923655123,0,0,0,NA,NA,0,NA,NA
+2898,-0.0768076808168553,0,0,0,NA,NA,0,NA,NA
+2899,-0.0768268796872871,0,0,0,NA,NA,0,NA,NA
+2900,-0.0433092594589107,0,0,0,NA,NA,0,NA,NA
+2901,-0.00322375852998448,0,0,0,NA,NA,0,NA,NA
+2902,0.00035927297121134,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5
+2903,-0.000377629367376358,0.08,8,1,86.6550847056172,0.790969899665552,8,22.1627892255783,0
+2904,-0.0157441647899759,0,0,0,NA,NA,0,NA,NA
+2905,-0.00385975400252391,0.0025,0.25,1,0,NA,0.25,5,5
+2906,-0.00249373229345792,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0
+2907,-0.000744113987471735,0.0425,4.25,1,79.7330921014386,1,4.25,6.35520553588867,0
+2908,0.00187909642931118,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,61.3824920654297,56.5685424804688
+2909,0.00668557145731029,0.08,8,2,80.291175928912,0.811872909698997,6.25,1.5625,0
+2910,0.00359916223831533,0.2075,20.75,2,91.3495969555104,0.785403120238632,18.25,2.4468323810991,0
+2911,0.0803593062281652,0.6725,67.25,1,98.8451498857927,0.951628750661326,67.25,5.46622376282419,0
+2912,0.0741443423181772,0.94,94,1,99.8346250196906,0.789621318373071,94,0.391146456941645,0
+2913,0.0652732922749419,0.835,83.5,1,99.5034141561623,0.913557124333669,83.5,0.215781640149876,0
+2914,0.0443736545844877,0.5725,57.25,1,98.3071726267885,0.917827355273429,57.25,0.944162460393781,0
+2915,-0.0825429008292849,0,0,0,NA,NA,0,NA,NA
+2916,-0.0357384518315848,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+2917,0.00200363943467892,0.12,12,3,80.4211614452653,0.778270509977827,6.75,1.44046115875244,0
+2918,0.0263142899089871,0.2625,26.25,6,85.1478168190983,0.763249932741458,12,2.57481275285993,0
+2919,0.0146748290540381,0.2625,26.25,5,86.3253645867194,0.856515110752399,14.25,1.01155431838263,0
+2920,0.030279281842777,0.27,27,4,92.4024109481613,0.894625922023182,25.75,2.0707371323197,0
+2921,0.0266071161139916,0.27,27,6,84.4186157067417,0.683877766069547,12.75,8.88010115093655,0
+2922,0.0654769621530431,0.67,67,2,96.4072737282678,0.83733959877101,47.75,4.9679707697968,0
+2923,0.0241548774064449,0.22,22,2,90.2317402547008,0.853013228809407,16.25,20.7624837918715,0
+2924,0.012269179308696,0.165,16.5,2,88.6204430346081,0.906274407706327,14.25,55.0632563504306,38.0788650512695
+2925,-0.0195104674196227,0.0175,1.75,3,38.8779033563773,0.491094147582697,0.75,13.0115116664342,0
+2926,-0.00747875814720373,0.005,0.5,2,0,1,0.25,13.6803398132324,5
+2927,0.00654734033081695,0.08,8,3,76.4728320833198,0.832775919732441,5.25,10.9506322145462,0
+2928,-0.0201984262928022,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.70710678100586,0
+2929,-0.0308700691213744,0,0,0,NA,NA,0,NA,NA
+2930,-0.00280469754257865,0.1475,14.75,2,86.9962651000919,0.861997584957737,12.5,1.44067796610169,0
+2931,-0.00416955512140703,0.0675,6.75,4,69.4177151703437,0.750607893260178,3,3.54240558765553,0
+2932,-0.00799350978695657,0.0575,5.75,4,63.6381893221379,0.675803124078986,2.5,4.01711057580036,0
+2933,0.0140375877771294,0.275,27.5,2,91.1699507341829,0.798994974874372,16.75,2.63795717412775,0
+2934,-0.0228488152765203,0.0475,4.75,5,57.0588751642663,0.637976287446828,2.25,5.34398309808028,0
+2935,0.0153640260694738,0.145,14.5,5,79.3594066994354,0.754385964912281,9.25,3.21669900828394,0
+2936,0.0418089479003538,0.3825,38.25,3,95.252111895881,0.746423271427954,35.25,1.47851766947827,0
+2937,0.0198137277170326,0.1575,15.75,3,88.4294806155521,0.838144051793903,14,1.41495453365265,0
+2938,0.0145474637173993,0.075,7.5,4,67.6564642864147,0.646993932708218,3,7.08090686798096,0
+2939,-0.0248562297304306,0.0675,6.75,5,65.3844388749575,0.65085105056425,4.5,3.5634519788954,0
+2940,-0.0287150710981314,0.165,16.5,4,86.7977707198692,0.854204634209841,14.75,0.864713148637251,0
+2941,-0.00296208443440264,0.065,6.5,4,69.3924193699278,0.660884309377853,3.75,0.769230769230769,0
+2942,0.0254578947958362,0.24,24,4,88.046229849948,0.709302325581395,17.5,0.104166666666667,0
+2943,0.0452492653149238,0.535,53.5,1,98.0675165576351,0.864915977738153,53.5,0.402865436589606,0
+2944,0.00394841790101054,0.005,0.5,1,30.8308651382582,1,0.5,16.9195718765259,15.8113880157471
+2945,0.0132495704732719,0.035,3.5,3,57.4204791804608,0.689119170984456,1.75,6.77050617762974,0
+2946,0.00663328532124297,0.035,3.5,2,67.5132315290738,0.792746113989637,2.75,4.16787365504674,0
+2947,0.0105575267238873,0.04,4,2,75.3066015506073,0.652777777777778,3.75,4.26776695251465,0
+2948,0.0304551221018664,0.2,20,3,91.9031259953634,0.788732394366197,19.25,4.95806550979614,0
+2949,0.00579007297382759,0.065,6.5,2,81.2099601139639,0.765227598800052,6,5.93614548903245,0
+2950,0.000917164344718913,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+2951,0.00463976509105123,0.13,13,2,89.3320354404243,0.896680873046623,12.75,1.11312415049626,0
+2952,0.0018585883987862,0,0,0,NA,NA,0,NA,NA
+2953,0.013481508982677,0.12,12,2,88.5396408287888,0.73669623059867,11.5,2.98508898417155,0
+2954,0.0208231034725395,0.1925,19.25,5,84.5630218137501,0.672190857767256,9,1.65027360792284,0
+2955,0.030398651737014,0.3,30,3,92.0623556965278,0.809960681520315,25.25,0.600592231750488,0
+2956,0.0359350240932508,0.31,31,4,88.8069525862735,0.813204508856683,20.5,3.15781082645539,0
+2957,-0.057713029612496,0.095,9.5,2,82.3597866631913,0.771989827238446,6.5,1.74245272184673,0
+2958,-0.110146506884485,0,0,0,NA,NA,0,NA,NA
+2959,0.0414237747582956,0.6075,60.75,2,97.8533084507869,0.876539745784113,59.5,0.733680128560635,0
+2960,0.0395117434135136,0.47,47,1,97.5860530790582,0.945781826068098,47,0,0
+2961,0.0292749647095206,0.2275,22.75,3,90.9631224245388,0.832194654201127,20.25,5.30579208541702,0
+2962,0.0162037316150327,0.1475,14.75,3,89.4969941145138,0.838997182450693,14.25,3.71010777101678,0
+2963,0.0168774590705652,0.06,6,6,54.19806652601,0.496080627099664,1.5,5.02824227015177,0
+2964,0.0239928572195276,0.18,18,4,84.7539358930272,0.692721336662185,9.75,6.39220288064745,0
+2965,0.0153465988344396,0.1825,18.25,4,83.8287561325683,0.722859327217125,10.25,3.95793454941005,0
+2966,-0.0270286341811334,0.0425,4.25,1,79.7330921014386,1,4.25,2.35294117647059,0
+2967,0.0252097952913755,0.26,26,4,88.694044835564,0.682034976152623,17.5,0.961538461538462,0
+2968,0.016804231619335,0.1675,16.75,3,83.9357100030248,0.784399784399784,8.25,0.658837845076376,0
+2969,0.0405849522117933,0.34,34,5,85.9731968974959,0.749511241446725,11,2.66072172277114,0
+2970,0.0493965636354551,0.3975,39.75,4,91.2373832284367,0.766952765304382,24.5,2.28906972153382,0
+2971,-0.0026002822786586,0.145,14.5,5,79.0700410865633,0.754385964912281,7,1.2426046174148,0
+2972,0.0604826870391116,0.59,59,2,95.4029312233013,0.773242630385488,45.5,1.6641901792106,0
+2973,0.0692308462312212,0.5375,53.75,2,97.1031243015358,0.816216216216216,50.75,2.87531111961187,0
+2974,0.0255201765608945,0.3775,37.75,2,93.9847466118532,0.855015730793209,29.75,2.22922104083939,0
+2975,0.0110022739876877,0.3275,32.75,2,95.3439440727685,0.894230918791122,32.25,2.46669530504532,0
+2976,-0.014093896549457,0.23,23,1,94.2887150496276,0.936648717136522,23,5.22945491127346,0
+2977,-0.0706931442899804,0,0,0,NA,NA,0,NA,NA
+2978,-0.00656449742993573,0.1975,19.75,3,90.8740260796092,0.875389408099688,18.75,24.8849561667141,0
+2979,0.111515418710187,0.9575,95.75,1,99.8844617862358,0.578674444984605,95.75,78.0427446489857,25.4950981140137
+2980,0.195992485554889,1,100,1,100,NA,100,70.3177279376984,15
+2981,0.0446938953665085,0.38,38,2,93.2011775148065,0.81500751531969,20,35.7000718995144,11.1803398132324
+2982,0.159678653078154,0.79,79,2,98.9152846150989,0.944071588366891,78.5,28.7436014127128,0
+2983,0.0746149240678642,0.315,31.5,3,92.5956423071001,0.929876008032385,29,52.9086746942429,11.1803398132324
+2984,0.0306878518935082,0.2775,27.75,6,84.6500510285839,0.778546712802768,10.25,12.8044375857791,0
+2985,0.0212476993279233,0.14,14,5,78.0179274394405,0.736274274754256,6.5,19.9734264782497,0
+2986,0.0327381358343473,0.27,27,3,88.8164268854864,0.831401475237092,13,69.4657999674479,25
+2987,0.0921127841016278,0.9475,94.75,1,99.8561526638156,0.947016358699252,94.75,126.347914099379,80
+2988,0.0497206802549772,0.475,47.5,2,94.8443677468242,0.821428571428571,33.75,99.5406601755243,60
+2989,0.0391833297087396,0.2675,26.75,1,95.0869843258351,0.858529770641391,26.75,33.7970668044046,0
+2990,0.0069207745498079,0.01,1,1,52.6315789473684,0.747474747474748,1,28.1758394241333,25
+2991,-0.00951331733106599,0,0,0,NA,NA,0,NA,NA
+2992,-0.07244144996861,0,0,0,NA,NA,0,NA,NA
+2993,-0.033769277505744,0,0,0,NA,NA,0,NA,NA
+2994,-0.0192460419505733,0,0,0,NA,NA,0,NA,NA
+2995,-0.0296708313666022,0,0,0,NA,NA,0,NA,NA
+2996,-0.0852725840546191,0,0,0,NA,NA,0,NA,NA
+2997,-0.0894086537417024,0,0,0,NA,NA,0,NA,NA
+2998,-0.289261633614078,0,0,0,NA,NA,0,NA,NA
+2999,-0.270788797438145,0,0,0,NA,NA,0,NA,NA
+3000,-0.138379914476536,0,0,0,NA,NA,0,NA,NA
+3001,0.00720514834197275,0.0175,1.75,3,38.8779033563773,0.491094147582697,0.75,13.5787734985352,7.07106781005859
+3002,-0.00164109916075176,0,0,0,NA,NA,0,NA,NA
+3003,0.0125411270805853,0.1225,12.25,3,81.2472043287172,0.796499796499796,6,2.47373884551379,0
+3004,-0.00153633062586096,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,2,0
+3005,-0.0220922777446685,0,0,0,NA,NA,0,NA,NA
+3006,-0.0222799404071429,0,0,0,NA,NA,0,NA,NA
+3007,-0.00893396593546015,0,0,0,NA,NA,0,NA,NA
+3008,0.00230540331802331,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,24.2753208705357,0
+3009,0.00529956866412249,0.1825,18.25,4,90.2749545375337,0.74197247706422,17,0.891764706128264,0
+3010,0.0685955154477779,0.6625,66.25,1,98.796893507011,0.856919293539012,66.25,8.99737848245873,0
+3011,0.071873139468953,0.935,93.5,1,99.8201295789998,0.717912552891397,93.5,0.374331550802139,0
+3012,0.0743274531373754,0.915,91.5,1,99.7609644895861,0.847211611917494,91.5,0.163934426229508,0
+3013,0.0831485182170945,0.8675,86.75,1,99.6123355042629,0.689369535204786,86.75,0.129682997118156,0
+3014,0.084917366791633,0.86,86,1,99.5877487787664,0.791208791208791,86,0.145348837209302,0
+3015,0.0443773676277851,0.3475,34.75,1,96.3348533717898,0.951730171659577,34.75,0.0719424460431655,0
+3016,-0.0166240069661217,0,0,0,NA,NA,0,NA,NA
+3017,-0.0296327457638836,0,0,0,NA,NA,0,NA,NA
+3018,-0.0313243154634029,0.0575,5.75,1,83.3142722045184,0.82316534040672,5.75,1.48444067913553,0
+3019,0.0331261574560222,0.3675,36.75,4,90.9609963947011,0.835432064299043,26,1.41909351478629,0
+3020,0.0650181684359734,0.7575,75.75,2,99.0250469528652,0.783342661635402,75.5,1.5642313060194,0
+3021,0.0624010347295553,0.8025,80.25,2,98.5619310537169,0.724276225090863,76.25,3.19360945752105,0
+3022,0.040841719590826,0.3875,38.75,5,88.45730073986,0.788041532402435,24,3.1513364607288,0
+3023,-0.0460603262592372,0.04,4,2,69.8932782516112,0.696180555555556,3,38.5075762271881,10
+3024,0.0684471864602892,0.4925,49.25,1,97.7634684223253,0.908225926175855,49.25,31.3808678273622,0
+3025,0.0143649505802023,0.1475,14.75,2,86.099773371159,0.884997987464781,10,40.0737609540002,0
+3026,-0.00125599545537625,0.0725,7.25,3,80.5747893036576,0.839421918908069,6.75,7.02930628020188,0
+3027,-0.0186733381332579,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0
+3028,-0.0109341492580188,0,0,0,NA,NA,0,NA,NA
+3029,-0.0170158670697356,0.0075,0.75,1,44.4894453484604,1,0.75,27.934871673584,25.4950981140137
+3030,0.00793763489123194,0.3125,31.25,2,93.8924450908339,0.833400080096115,27.25,5.6909375,0
+3031,-0.00765626168922609,0.1725,17.25,2,87.2430884762314,0.820229207760106,10,1.2536639890809,0
+3032,0.0325161713324451,0.2775,27.75,3,90.299610457671,0.750865051903114,16.75,3.84173267811268,0
+3033,0.0109250500473718,0.1675,16.75,6,84.785329276756,0.763866430533097,13.75,2.84593752960661,0
+3034,-4.82382254176628e-05,0.1425,14.25,5,78.4097627574212,0.773903730588445,7.25,2.07516265333745,0
+3035,0.0104850250995787,0.175,17.5,2,88.7488973954186,0.832471051983247,13.75,2.38672954014369,0
+3036,0.018791854605297,0.17,17,6,78.2288088254114,0.716513111268604,8.75,1.93860721588135,0
+3037,0.027434366739908,0.38,38,3,94.8217980506685,0.762978379003353,34.25,1.19057517302664,0
+3038,0.0496326102937928,0.625,62.5,2,97.589924820295,0.863247863247863,59.5,1.5294051361084,0
+3039,-0.00434125819508154,0.3,30,3,89.0578402555567,0.829619921363041,14,0.125,0
+3040,0.0222162487105197,0.3575,35.75,2,96.0164636236279,0.899010900882169,35.5,0.189308166503906,0
+3041,-0.00730827243035947,0,0,0,NA,NA,0,NA,NA
+3042,-0.00686324534113282,0.0025,0.25,1,0,NA,0.25,0,0
+3043,0.00699885229563733,0.0425,4.25,5,53.530052576562,0.415143603133159,1.5,10.3856448005227,0
+3044,0.0265644915420307,0.215,21.5,3,88.5308120661374,0.79184879896757,11.75,14.3466581522032,0
+3045,0.0116262892512532,0.0275,2.75,5,40.239965362396,0.383033419023136,1.25,10.2133697162975,0
+3046,0.0106719438481514,0.0275,2.75,3,58.772474842622,0.520137103684661,2,5.77254399386319,0
+3047,0.0148296617045162,0.075,7.5,4,70.1818274463571,0.691119691119691,4.5,9.03038342793783,0
+3048,-0.00296789301416538,0.055,5.5,5,65.2480960047311,0.751011515717398,4.25,4.47851848602295,0
+3049,-0.00887589412392117,0,0,0,NA,NA,0,NA,NA
+3050,0.00677601823246732,0.05,5,6,51.8153241427163,0.524617996604414,1.75,11.9160803794861,0
+3051,-0.00284446995177859,0.03,3,2,62.4651075277459,0.757428744693754,1.75,0.833333333333333,0
+3052,0.00611416365814875,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0
+3053,-0.00560461016124464,0.0275,2.75,2,60.5127517103442,0.725792630676949,1.75,2.27272727272727,0
+3054,0.0335888536373795,0.385,38.5,3,90.9847481976036,0.804648223160677,17.75,1.29313075077998,0
+3055,0.024360006983261,0.235,23.5,2,91.4560180457367,0.844382197323374,19.5,0.898559692058157,0
+3056,0.00822243537419126,0.0325,3.25,3,58.354796280893,0.770312948607522,2.25,4.93401043231671,0
+3057,0.0466714914334625,0.46,46,3,92.6171403929824,0.711328976034858,23.5,1.57335584060006,0
+3058,0.0166970383424814,0.255,25.5,3,88.7031101798389,0.809293284923167,12,1.26609936882468,0
+3059,0.0636924034349249,0.655,65.5,3,97.5763167911241,0.752058797485168,62.5,1.09377306290255,0
+3060,0.059592034223424,0.66,66,1,98.7846583695088,0.845513963161022,66,0.592938177513354,0
+3061,0.04015913802672,0.2775,27.75,7,84.8513717337377,0.70242214532872,15.5,4.56904842617275,0
+3062,0.00468692740210088,0.095,9.5,2,86.1868720262614,0.912303779707095,9.25,1.37029125815944,0
+3063,0.0048849967708702,0.0875,8.75,4,71.7635987058635,0.716580066131318,3.25,1.57142857142857,0
+3064,0.0127496478345347,0.065,6.5,6,59.0913094346657,0.634798487022303,3.25,5.22951639615572,0
+3065,0.0133223587619705,0.095,9.5,5,67.37648860641,0.596597386652635,2.25,3.22088271693179,0
+3066,-0.0208821367403834,0.0725,7.25,1,85.7162801918893,0.931180822389172,7.25,2.8300368210365,0
+3067,0.0492807338145212,0.3,30,2,92.6945522448881,0.921363040629096,26,2.75296115875244,0
+3068,0.0333932833153176,0.4025,40.25,3,94.4645089049175,0.830374307361755,35.75,1.45277241298131,0
+3069,0.0104711853152912,0.155,15.5,2,87.060563333743,0.868507560815253,12.5,2.78874095793693,0
+3070,0.00678952609440785,0.1,10,2,81.9912484325272,0.78441127694859,6.25,2.05177669525146,0
+3071,0.0328647063838071,0.315,31.5,1,95.8855704592132,0.885251649507538,31.5,1.22335028269934,0
+3072,0.0184082988108094,0.2375,23.75,3,86.9305265417615,0.791706846673096,9.5,3.48496969122636,0
+3073,0.0184371875591751,0.1675,16.75,4,84.2339976458152,0.753599753599754,11.25,2.00212142716593,0
+3074,0.0196057967578236,0.2825,28.25,3,91.5514691286077,0.801871968299515,24.5,2.50002747932367,0
+3075,0.0164616411214229,0.41,41,2,95.7477913062767,0.831630935009541,38,1.59493013707603,0
+3076,0.041048302419731,0.4375,43.75,3,93.1736243738055,0.834881320949432,23.75,4.89333972385951,0
+3077,0.0788021455088892,0.5275,52.75,1,98.0165432545104,0.946010150091783,52.75,5.98730908976912,0
+3078,0.0474198587526189,0.4575,45.75,2,94.2739445708072,0.874567120224688,26.75,23.1269766593891,0
+3079,0.113495019720867,0.985,98.5,1,99.9600766120013,0.465240641711228,98.5,81.9779341257163,33.5410194396973
+3080,0.116769561432302,0.92,92,1,99.7759364721822,0.766857962697274,92,58.9281754390053,0
+3081,0.0556752781383693,0.535,53.5,3,95.9103197973801,0.816285729723888,47.25,83.8928070246616,20
+3082,0.302031074492261,1,100,1,100,NA,100,68.962491645813,30
+3083,0.0742150005802978,0.39,39,3,91.4091505144872,0.822927971668475,23.5,39.2703603475522,15
+3084,-0.0133295183160226,0.1025,10.25,3,78.7077628962547,0.741633361592184,6,0.853658536585366,0
+3085,-0.0362228111298464,0.195,19.5,3,90.2506746366116,0.873976055450536,18,2.0182872674404,0
+3086,-0.0965053396474104,0,0,0,NA,NA,0,NA,NA
+3087,0.0194506633867786,0.185,18.5,4,87.7621212246899,0.792354884379424,16,32.5751265190743,0
+3088,0.0383386590299779,0.205,20.5,4,89.248476843329,0.809152027759705,18,38.9954179903356,14.1421356201172
+3089,0.0307850439927824,0.0175,1.75,4,28.9394712793554,0.363867684478371,0.75,55.1735044206892,36.0555114746094
+3090,0.0233062017589327,0.1325,13.25,2,85.0832500210774,0.82265573043671,9.5,25.3674858021286,15
+3091,-0.0407925434594108,0,0,0,NA,NA,0,NA,NA
+3092,-0.0675960634695366,0,0,0,NA,NA,0,NA,NA
+3093,-0.0156695661810227,0,0,0,NA,NA,0,NA,NA
+3094,-0.043961518680444,0,0,0,NA,NA,0,NA,NA
+3095,-0.0313373067662405,0,0,0,NA,NA,0,NA,NA
+3096,-0.0847768741000664,0,0,0,NA,NA,0,NA,NA
+3097,-0.0369904926070376,0,0,0,NA,NA,0,NA,NA
+3098,-0.0526525589159428,0,0,0,NA,NA,0,NA,NA
+3099,-0.30351006758865,0,0,0,NA,NA,0,NA,NA
+3100,-0.338579622507095,0,0,0,NA,NA,0,NA,NA
+3101,0.0111186881326284,0.065,6.5,3,71.0467837264638,0.739141776444502,3.75,10.3913289583646,0
+3102,0.00339648703216085,0,0,0,NA,NA,0,NA,NA
+3103,0.00861010695671212,0.03,3,2,62.1385964668631,0.696785930867192,1.75,2.67258898417155,0
+3104,-0.0158789206079473,0,0,0,NA,NA,0,NA,NA
+3105,-0.0420899214890596,0.035,3.5,3,60.3154293870224,0.585492227979275,1.75,5.88525308881487,0
+3106,-0.0172408874805114,0.0375,3.75,4,51.8962515582823,0.574970484061393,1.25,5.63097407023112,0
+3107,-0.0259049893932752,0,0,0,NA,NA,0,NA,NA
+3108,-0.0145812021869006,0.025,2.5,2,62.1707778778281,0.684418145956607,2,8.31516494750977,0
+3109,0.053554342543066,0.515,51.5,1,97.9291261653514,0.886947861430379,51.5,4.07230978104675,0
+3110,0.0526722776875249,0.58,58,2,96.4849285796696,0.76905311778291,47.75,1.48754121517313,0
+3111,0.00738124090479687,0.26,26,2,93.4945029534454,0.869923399335164,24.5,0.288461538461538,0
+3112,0.0827332254020075,0.7225,72.25,1,99.0712074303406,0.827768945416004,72.25,1.53927395170535,0
+3113,0.130748492686544,0.9225,92.25,2,98.637950737105,0.686187641330933,87.75,0.13550135501355,0
+3114,0.0718930643437852,0.7725,77.25,1,99.2749460632782,0.75831728409048,77.25,0.145631067961165,0
+3115,0.0633699517621426,0.595,59.5,2,97.1089095424543,0.761409349424331,53.25,0.210084033613445,0
+3116,0.0417888413314722,0.4975,49.75,1,97.8012504735965,0.951462201189176,49.75,0.050251256281407,0
+3117,-0.025760267401929,0.005,0.5,2,0,1,0.25,0,0
+3118,-0.0164978087571922,0.06,6,2,75.214492285537,0.804031354983203,3.5,1.04166666666667,0
+3119,0.0147216285887225,0.1275,12.75,5,80.5495021414578,0.644303922537299,8,7.87639086854224,0
+3120,0.0148311157506669,0.2975,29.75,2,92.0072193913103,0.795703176486095,21.25,6.70884876090939,0
+3121,0.0744731736042013,0.8675,86.75,1,99.6123355042629,0.95398067188219,86.75,0.698635178271906,0
+3122,-0.0282693339983962,0.2425,24.25,2,92.9628184632392,0.939304275255112,23.5,8.71199800550323,0
+3123,-0.0350024177717569,0,0,0,NA,NA,0,NA,NA
+3124,0.00334231730706733,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,45.4688270568848,35.355339050293
+3125,0.0064702266144559,0.0275,2.75,3,54.3349392087244,0.657240788346187,1.75,32.5084755637429,18.0277557373047
+3126,-0.0149437607502023,0.0175,1.75,1,65.4774238937655,1,1.75,3.15300968715123,0
+3127,-0.0371937039040495,0.0825,8.25,1,86.9391941099265,0.858714300131194,8.25,12.1424943750555,0
+3128,0.00337124685435811,0.1025,10.25,3,78.4177824574472,0.822372936094627,4.75,17.7681794050263,0
+3129,0.0043517070629332,0.03,3,2,67.6935835135484,0.878714372346877,2.75,1.66666666666667,0
+3130,-0.0138765477755078,0.18,18,3,84.2664815308847,0.788745918955252,7.5,1.57741504245334,0
+3131,0.0104122294269473,0.46,46,1,97.5030549392159,0.891067538126362,46,0,0
+3132,0.0715395476831691,0.61,61,1,98.5243747403739,0.926900584795322,61,0.623242081188765,0
+3133,0.026765305371664,0.215,21.5,7,81.5137778159148,0.650305982265518,10.5,3.18522351287132,0
+3134,-0.00272930480779905,0.0325,3.25,4,49.9379082282791,0.483204134366925,1.25,5.43422698974609,0
+3135,0.0075072470160103,0.0225,2.25,3,51.2568226763031,0.48849104859335,1.5,6.83364613850911,0
+3136,0.00509740710513142,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,0,0
+3137,0.020554186940426,0.1225,12.25,6,75.0684003219718,0.742233075566409,7,1.41106399224729,0
+3138,0.0361925992084434,0.28,28,5,87.7715244064155,0.718096809680968,13.75,2.07523577553885,0
+3139,0.0437572004838421,0.4175,41.75,3,93.5778685063197,0.79376846329636,29,1.05003197036104,0
+3140,0.00801922362999903,0.105,10.5,4,74.0091631177455,0.716736171217248,4.25,2.683714730399,0
+3141,-0.00855512772216571,0.065,6.5,4,67.5532921221715,0.660884309377853,2.75,1.34615384615385,0
+3142,0.0117240214877904,0.0625,6.25,3,75.4135898811094,0.786666666666667,5.25,1.88284271240234,0
+3143,0.0254095652922842,0.2725,27.25,3,93.9328387925051,0.832539641006855,26.5,2.30305858927036,0
+3144,0.0244815314740299,0.1575,15.75,4,85.1142040380339,0.697868896681953,12,14.9376914614723,0
+3145,0.0117003347496393,0.0275,2.75,4,43.4900566959791,0.520137103684661,1,14.0938169305975,5
+3146,0.00973572388895263,0,0,0,NA,NA,0,NA,NA
+3147,-0.00225579935527094,0.0275,2.75,3,54.7608175262403,0.520137103684661,1.75,14.4883325750178,5
+3148,-0.00445285492311086,0.0025,0.25,1,0,NA,0.25,5,5
+3149,-0.00834799864658635,0,0,0,NA,NA,0,NA,NA
+3150,0.00924782310266551,0.0575,5.75,5,63.3803147130953,0.557913351016799,3.25,5.05704465119735,0
+3151,0.00883370453688258,0.16,16,3,82.7165970157,0.798044217687075,7.75,17.3427901864052,0
+3152,0.0006190212723277,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,34.2932746887207,5
+3153,0.0255468658910104,0.215,21.5,5,86.5202247761884,0.79184879896757,16.25,3.1270839779876,0
+3154,0.0377508347477124,0.475,47.5,3,95.9428086169112,0.92965367965368,46,0.655076900281404,0
+3155,0.010492926456136,0.15,15,5,83.2182814285629,0.717194570135747,10.75,2.47305157979329,0
+3156,0.00888708493307604,0.0525,5.25,4,62.2484579018488,0.703166226912929,2.5,5.78363518487839,0
+3157,0.061236235812321,0.545,54.5,2,97.0972600046974,0.886320575975748,52.5,0.481651376146789,0
+3158,0.0559958442297648,0.4325,43.25,4,92.224785519323,0.812188419206496,25.5,0.729556089191768,0
+3159,0.063042756949435,0.7025,70.25,2,98.7113383793404,0.758085052202699,69.75,1.55782520389217,0
+3160,0.0376406445604027,0.51,51,5,95.6423397108886,0.773840934790803,47,0.800413094314874,0
+3161,0.014322653563504,0.2475,24.75,5,83.9021005002208,0.761095972227407,13,1.44731587111348,0
+3162,0.0197113703318882,0.1475,14.75,5,77.4562982584393,0.735495371168996,6,3.32639047655009,0
+3163,0.00717197521789785,0.1375,13.75,4,87.6658599047074,0.74370709382151,12.75,8.25855331420899,0
+3164,0.0160866467131928,0.135,13.5,5,79.8216354523673,0.714090372304059,6.5,0.462962962962963,0
+3165,0.0195037082340059,0.1625,16.25,3,84.4449122652829,0.767534011359134,10.25,3.26738712604229,0
+3166,-0.0459618907299409,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,1.76528894333612,0
+3167,-0.00316847637403725,0.03,3,2,65.3583788268078,0.818071558520315,2.5,7.00523296991984,0
+3168,0.0163462292808072,0.19,19,2,89.4068527246909,0.889441680486457,16.25,1.69923862658049,0
+3169,-0.00253934221693271,0.0275,2.75,2,66.702712212269,0.794344473007712,2.5,4.38947920365767,0
+3170,-0.013706577090361,0,0,0,NA,NA,0,NA,NA
+3171,-0.0122021282811329,0,0,0,NA,NA,0,NA,NA
+3172,0.033418703155412,0.32,32,2,95.5372195421765,0.854834637717748,31.75,3.63647323846817,0
+3173,0.0405646613224235,0.3475,34.75,4,91.0131997822862,0.78881950101065,25.75,3.59555797439685,0
+3174,0.0426841220027563,0.4425,44.25,5,92.0272377650875,0.818982186201506,28.5,1.41928363519873,0
+3175,0.0272418559781363,0.51,51,3,93.737166690872,0.849227289860535,35,0.147058823529412,0
+3176,0.049205288710582,0.6075,60.75,1,98.5105231673728,0.758691321305312,60.75,1.93341543252576,0
+3177,0.0853149791992337,0.695,69.5,2,98.733943988487,0.836693675020413,69.25,1.89556732452173,0
+3178,0.0695812575129821,0.53,53,2,95.0400757961455,0.854195917485689,28,4.14348207329804,0
+3179,0.0949175060477501,0.7625,76.25,1,99.2358070072224,0.963386727688787,76.25,23.6388331866655,0
+3180,0.0777385905350093,0.755,75.5,1,99.205943814227,0.856533122915247,75.5,59.4693734124796,0
+3181,0.0858589722961187,0.8975,89.75,1,99.7075809055868,0.942611190817791,89.75,79.4013050259986,44.7213592529297
+3182,0.352668435087544,0.935,93.5,1,99.8201295789998,0.978300965607031,93.5,34.1529712524006,0
+3183,0.011257406725797,0.32,32,2,94.1382215697609,0.90532693764201,30.5,23.7292108535767,5
+3184,-0.0779114102158928,0,0,0,NA,NA,0,NA,NA
+3185,-0.109446298088878,0,0,0,NA,NA,0,NA,NA
+3186,-0.110553369224071,0,0,0,NA,NA,0,NA,NA
+3187,-0.0602325223898515,0.125,12.5,1,90.3766993434411,0.973109243697479,12.5,17.1827730941772,0
+3188,0.0308457934639591,0.3125,31.25,3,91.130573268736,0.839807769323188,22.75,45.4714604187012,0
+3189,0.0366934054821468,0.31,31,3,89.170211411618,0.864734299516908,19,49.9308776394013,15
+3190,0.0378152913574922,0.3475,34.75,1,96.3348533717898,0.945696443117024,34.75,30.2127524451386,0
+3191,-0.0583013752172701,0,0,0,NA,NA,0,NA,NA
+3192,-0.0567018547002226,0,0,0,NA,NA,0,NA,NA
+3193,-0.0301060171170457,0,0,0,NA,NA,0,NA,NA
+3194,-0.0325651395685418,0,0,0,NA,NA,0,NA,NA
+3195,-0.0577481484559394,0.0075,0.75,1,44.4894453484604,1,0.75,11.3542652130127,7.07106781005859
+3196,0.0407450208138471,0.52,52,1,97.9644711022996,0.940783807062877,52,52.5132948251871,20
+3197,0.0377325246398686,0.465,46.5,2,96.6206279433203,0.961964790262986,45.75,86.184741153512,40.3112869262695
+3198,0.00558786480306594,0.01,1,1,52.6315789473684,0.747474747474748,1,185.055198669434,181.176696777344
+3199,-0.0326076990617366,0,0,0,NA,NA,0,NA,NA
+3200,-0.17298987903916,0.1225,12.25,1,90.2255639097744,0.932166598833265,12.25,121.401686532157,98.4885787963867
+3201,0.00634638184939831,0.095,9.5,3,81.6500537697992,0.771989827238446,7.25,8.87293333756296,0
+3202,0.0161008744282844,0.115,11.5,4,77.04520561307,0.782703172533681,5.5,10.6052030895067,0
+3203,0.0446268457539827,0.3725,37.25,2,95.965191758935,0.912438159450112,36.75,13.3312394698994,0
+3204,-0.0311458119962481,0.0175,1.75,1,65.4774238937655,1,1.75,6.178772517613,0
+3205,-0.00773435854435775,0,0,0,NA,NA,0,NA,NA
+3206,0.0117707632579732,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,6.7131039755685,0
+3207,0.00266800123576104,0.095,9.5,2,84.3894710590195,0.789529071297027,8.25,4.48865925638299,0
+3208,0.0446288237474982,0.36,36,2,95.3356117468041,0.90530303030303,35,5.62681367662218,0
+3209,0.0764856384973973,0.7675,76.75,1,99.2554721522595,0.717230345648696,76.75,1.25250083848786,0
+3210,0.0670592455152655,0.8475,84.75,1,99.546047930594,0.867011073885578,84.75,0.0946049197936832,0
+3211,-0.00631248409194086,0.13,13,4,81.4173724930383,0.806276636962418,8.75,7.36167948062603,0
+3212,0.0969492978765629,0.82,82,1,99.4509723118502,0.766648716567941,82,0.718429728252132,0
+3213,0.0665365992355873,0.81,81,1,99.4152046783626,0.707602339181286,81,0.138888888888889,0
+3214,0.0672756835125574,0.7225,72.25,2,96.811859867778,0.788023317435082,52.75,0.397923875432526,0
+3215,0.0305695293514509,0.3175,31.75,2,92.9177966860159,0.89851418422847,25.25,2.79420302984283,0
+3216,0.0181178096760777,0.245,24.5,2,93.4764611078809,0.932269717037929,24,0.306122448979592,0
+3217,0.0360144022568602,0.38,38,3,92.2787516063743,0.849693606197248,30.25,1.12640265414589,0
+3218,0.00957147093578897,0.115,11.5,3,79.8998747342393,0.797189627698102,7,4.07318587925123,0
+3219,0.0120151032325634,0.0925,9.25,3,82.8918679276768,0.783227204985774,8.25,22.8835969873377,7.07106781005859
+3220,0.0248336413115658,0.1425,14.25,5,76.2100592036931,0.714404712322247,5.25,20.3057220860531,0
+3221,0.0543171924356284,0.4375,43.75,2,94.0001030454473,0.790849673202614,24.5,30.5965332140241,0
+3222,0.0608415961585706,0.4225,42.25,2,95.6176248896332,0.861249861249861,38.75,41.7477738307073,5
+3223,-0.0448554438992869,0,0,0,NA,NA,0,NA,NA
+3224,-0.0184065972519602,0,0,0,NA,NA,0,NA,NA
+3225,-0.00383040053277,0,0,0,NA,NA,0,NA,NA
+3226,-0.0212046101488886,0,0,0,NA,NA,0,NA,NA
+3227,-0.0363495875461922,0.03,3,1,74.8763016215986,0.939357186173438,3,44.155200958252,39.0512504577637
+3228,0.00798364641981607,0.1175,11.75,5,76.3489254289002,0.773371104815864,6.5,3.62458168192113,0
+3229,-0.00171375219217268,0.035,3.5,2,71.13601550507,0.896373056994819,3.25,2.85714285714286,0
+3230,-0.0323201750769567,0.015,1.5,1,62.2896536353828,1,1.5,0,0
+3231,0.041873850092561,0.465,46.5,1,97.5448886830867,0.902195174961965,46.5,0.0806451612903226,0
+3232,0.0455006995167059,0.435,43.5,2,95.403869366768,0.895238882915667,38.25,0.759029125345164,0
+3233,0.0283684758709569,0.245,24.5,5,84.0199541037019,0.77423239012643,10.75,0.918367346938776,0
+3234,0.0172696978131353,0.185,18.5,2,89.6438867312442,0.915054270882492,15.75,4.37742192036397,0
+3235,0.00102030632792776,0.045,4.5,3,62.2131346278103,0.689742098119062,2,4.95234086778429,0
+3236,0.000314980158277649,0.01,1,2,34.5233986084855,0.494949494949495,0.75,8.01776695251465,5
+3237,0.000858021380313403,0.0825,8.25,4,73.992133886693,0.757795943082047,6,2.39824653394295,0
+3238,0.0297881892298028,0.225,22.5,3,89.4202016735713,0.855740332598678,18.5,1.37935706244575,0
+3239,0.0346509113700449,0.245,24.5,2,90.3283124525811,0.834437086092715,13.75,5.45718056815011,0
+3240,0.0195707752843555,0.0775,7.75,5,71.0528232827628,0.653116531165312,4.5,7.72937774658203,0
+3241,0.0139610317780216,0.055,5.5,5,57.1111661076159,0.595393713040772,2.25,13.9795333688909,0
+3242,0.0218190122057331,0.13,13,4,81.9507703377305,0.767531964354901,10,3.82447704902062,0
+3243,0.0108849477315562,0.0875,8.75,4,75.715426049129,0.678790741615494,6,3.66526489257812,0
+3244,0.00795981439998286,0.095,9.5,4,74.84660166972,0.631675874769797,4.75,8.91838093807823,0
+3245,0.000485081068472937,0,0,0,NA,NA,0,NA,NA
+3246,-0.00959935306498664,0,0,0,NA,NA,0,NA,NA
+3247,-0.00782414830828429,0.0025,0.25,1,0,NA,0.25,26.9258232116699,26.9258232116699
+3248,0.0044276547973368,0.005,0.5,2,0,1,0.25,0,0
+3249,-0.000722869381752389,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+3250,0.0052857603774828,0.0525,5.25,6,54.3978474434392,0.538258575197889,2,4.02055940173921,0
+3251,0.013603863940225,0.155,15.5,3,83.6124278400385,0.824676747753671,10,9.7540091852988,0
+3252,-0.00933107905887027,0.0375,3.75,2,70.2677531769664,0.858323494687131,3.25,2.27614237467448,0
+3253,0.0205085550730837,0.145,14.5,9,68.7765493656093,0.590643274853801,6,6.20366277365849,0
+3254,0.0338207970042549,0.375,37.5,3,94.6325751807191,0.802181818181818,34.25,0.333333333333333,0
+3255,0.0290745548319956,0.2425,24.25,8,83.1745157703426,0.764804066613558,16.75,4.67186577787104,0
+3256,0.0184329914208502,0.0825,8.25,5,67.7501691460274,0.596326571803411,2.75,11.1857982404304,0
+3257,0.0405532941880665,0.3475,34.75,6,87.9030191116664,0.698313572872356,22.5,0.986122790000422,0
+3258,0.0480582604151277,0.425,42.5,4,92.9312405933969,0.738852618419225,23.75,1.77878554849064,0
+3259,0.0183740064168978,0.095,9.5,5,72.955827941381,0.631675874769797,5.5,4.53667219061601,0
+3260,0.0237778094953742,0.1775,17.75,6,78.8907409052456,0.659574468085106,6.75,2.63934567948462,0
+3261,0.0270083011146471,0.2275,22.75,7,84.3954388501458,0.672380039154581,15,2.30180891267546,0
+3262,0.024095617117091,0.18,18,7,78.9641764493055,0.683118878432879,9.5,5.33728880352444,0
+3263,0.0167870509959539,0.0875,8.75,7,62.7251810613812,0.622106754841757,2.75,8.42584462847029,0
+3264,0.0238764789127163,0.1575,15.75,5,78.4435786658399,0.708659293229026,8.25,4.75883444528731,0
+3265,-0.0108770877833103,0.1,10,4,73.1517523685151,0.701492537313433,5,2.22855339050293,0
+3266,-0.0223527388136426,0.055,5.5,3,67.1006856569149,0.719887955182073,2.75,4.61376432939009,0
+3267,0.00627488383761374,0.0975,9.75,1,88.4075627573592,0.965906669507778,9.75,2.87361712333484,0
+3268,0.00137654585706514,0.0775,7.75,3,76.3303769129123,0.804878048780488,5.5,2.54319818558231,0
+3269,-0.000483171648097596,0.0675,6.75,3,74.4361316875908,0.825425525282125,4.75,1.48148148148148,0
+3270,-0.022118632578854,0,0,0,NA,NA,0,NA,NA
+3271,-0.0132621027863934,0.015,1.5,2,46.9371480234533,0.419869470630892,1,6.66666666666667,5
+3272,0.00753255893405623,0.125,12.5,2,87.573715374417,0.892436974789916,11.5,2.72426406860352,0
+3273,-0.0208239185346974,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.2426406860352,0
+3274,0.0429410554474816,0.4125,41.25,4,91.1472404297779,0.804031354983203,23,1.24037133419152,0
+3275,0.0575101216965413,0.6225,62.25,3,94.3115978179129,0.772617457294716,37.5,0.0602409638554217,0
+3276,0.0928385490340588,0.86,86,1,99.5877487787664,0.890109890109891,86,0.448087603546852,0
+3277,0.038125068573122,0.4325,43.25,3,95.3548816676221,0.756949718973112,39,2.22960490849666,0
+3278,0.0404830027756543,0.375,37.5,1,96.668457042866,0.947636363636364,37.5,4.87742216746012,0
+3279,0.0629916583639715,0.49,49,2,97.3675356121334,0.929971988795518,48.75,1.62571229740065,0
+3280,0.0610748248324489,0.47,47,3,94.0077641979774,0.826501843417914,27,3.99000873971493,0
+3281,0.0780589212926498,0.5675,56.75,2,97.9777921874228,0.907077166946802,56.5,25.5982904308168,0
+3282,0.234340710723773,0.73,73,1,99.1030975159931,0.979761181946974,73,37.2935813420439,0
+3283,0.0248875820224021,0.305,30.5,1,95.7330793639454,0.947914971190468,30.5,32.3946275085699,14.1421356201172
+3284,-0.0707880000193836,0,0,0,NA,NA,0,NA,NA
+3285,-0.0815389007609338,0,0,0,NA,NA,0,NA,NA
+3286,-0.115923771848902,0,0,0,NA,NA,0,NA,NA
+3287,-0.113757576346397,0,0,0,NA,NA,0,NA,NA
+3288,-0.00301452223648084,0.155,15.5,3,85.1795401901869,0.813719044488275,9.5,76.600501829578,53.1507301330566
+3289,0.0861546053981146,0.7775,77.75,2,98.4114978520983,0.892625685469954,75.25,74.7089396657668,35
+3290,0.0434977376053575,0.41,41,1,97.0434862163892,0.977550791334605,41,23.5137122782265,0
+3291,-0.0535863341402728,0,0,0,NA,NA,0,NA,NA
+3292,-0.0452439928520471,0,0,0,NA,NA,0,NA,NA
+3293,-0.0428015374531969,0,0,0,NA,NA,0,NA,NA
+3294,-0.037263645042658,0,0,0,NA,NA,0,NA,NA
+3295,-0.00164583103545738,0.06,6,3,73.2134712978121,0.776035834266517,4.75,27.585971514384,7.07106781005859
+3296,0.0507299083494581,0.435,43.5,3,95.2809506049276,0.80701899484465,39,80.372029227772,22.3606796264648
+3297,0.071849364163354,0.92,92,1,99.7759364721822,0.802725968436155,92,159.154061960137,96.1769180297852
+3298,0.0669747784599895,0.74,74,1,99.1448611187463,0.868802651567463,74,188.001188535948,155
+3299,0.0264420431935321,0.3025,30.25,2,94.4574631811279,0.876181166503747,29.25,199.125995226143,164.468841552734
+3300,-0.00811879929375209,0.0675,6.75,1,85.0052537126447,0.850364735956107,6.75,143.326833089193,131.52946472168
+3301,-0.0533954017580936,0.025,2.5,2,61.4794562732788,0.763313609467456,2,4.42409591674805,0
+3302,0.000797369520078064,0.255,25.5,3,89.0236060362446,0.853302526863975,19.5,4.94871743520101,0
+3303,0.035648875635693,0.2525,25.25,2,94.0649496080627,0.933479923871468,25,7.52846094641355,0
+3304,-0.026372133066543,0.0125,1.25,1,58.1880425789518,1,1.25,35.921891784668,31.6227760314941
+3305,0.00874801510099132,0.0725,7.25,3,79.499561573421,0.816482193037793,6.5,8.6143899457208,0
+3306,0.00557664109477173,0.1475,14.75,3,87.2451398767188,0.746995572422517,12.25,7.95333516395698,0
+3307,0.0125002757927541,0.2675,26.75,5,86.1035346690665,0.837309236237599,15.75,9.36184654948867,0
+3308,0.0516223446437652,0.5825,58.25,3,94.4103996881707,0.785257072062771,38.25,8.60081372240582,0
+3309,0.0682574423402548,0.9075,90.75,1,99.7382749359844,0.732483575278335,90.75,0.212316991212283,0
+3310,0.0563325972645543,0.7325,73.25,1,99.1136185490844,0.782892616652815,73.25,0.102389078498294,0
+3311,0.0303629386216926,0.43,43,2,96.1465063299203,0.839504123083735,40.75,2.05131151509839,0
+3312,0.0670931429378106,0.5925,59.25,3,96.7433877423522,0.739644642634575,53.75,0.147679324894515,0
+3313,0.0616322440770455,0.755,75.5,2,99.0416021495957,0.705892901976256,75.25,0.271758502682313,0
+3314,0.07979835344202,0.8475,84.75,2,99.3374766759094,0.805631569525076,84.5,3.09601542380004,0
+3315,0.0283024555313023,0.2925,29.25,3,92.6219276813291,0.77998533235549,25.5,4.22755952166696,0
+3316,-0.00132092594794813,0.05,5,4,61.8094949037945,0.626485568760611,2.25,1.5,0
+3317,0.0282658286833976,0.29,29,2,92.4857715015804,0.852448021462106,21.5,1.303562098536,0
+3318,0.0142923804384554,0.41,41,1,97.0434862163892,0.887753956673027,41,0.609756097560976,0
+3319,0.00279663182103832,0.175,17.5,3,83.9822889738035,0.78319783197832,10.25,11.0061094011579,0
+3320,0.118263743613279,0.635,63.5,2,98.3821185476916,0.902152641878669,63.25,45.3756380907194,0
+3321,0.207634123354219,0.9325,93.25,1,99.8128381781211,0.979045523599978,93.25,52.9725448311813,7.07106781005859
+3322,0.0763757842336781,0.4325,43.25,3,91.6683388481942,0.812188419206496,23,33.1364731099564,5
+3323,0.0850742764193274,0.4725,47.25,2,96.1072775086666,0.886255924170616,44.25,42.8277834029425,15.8113880157471
+3324,0.00277283933850413,0.06,6,4,66.0222577715978,0.636058230683091,3,21.0069043636322,0
+3325,-0.0104451378621161,0,0,0,NA,NA,0,NA,NA
+3326,0.00264769580707252,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,21.6064655597393,0
+3327,0.00014461835140537,0.085,8.5,3,76.7408996024947,0.765807962529274,5.25,8.68432039373061,0
+3328,0.0181992136278677,0.0675,6.75,4,68.3567924771267,0.625911839890268,2.75,4.71827937938549,0
+3329,-0.0132809375461102,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0
+3330,-0.0028768742106331,0.025,2.5,2,61.4794562732788,0.763313609467456,2,11.3936979293823,0
+3331,0.0060245605099044,0.1025,10.25,2,82.0155287810807,0.838520850995115,6,4.33014558001262,0
+3332,0.00679159747214726,0.095,9.5,3,76.6888741244984,0.719372095062703,4.25,1.18421052631579,0
+3333,-0.00443062639067648,0.085,8.5,3,77.0220175360927,0.746291959406714,6,1.44535693000345,0
+3334,0.0101691861598374,0.15,15,6,79.1718426251652,0.739819004524887,9,1.58333333333333,0
+3335,0.0092719649249193,0.08,8,2,81.1969936923135,0.874581939799331,6.75,0.9375,0
+3336,0.0120062945505379,0.04,4,3,64.2053482637619,0.652777777777778,2.75,0.9375,0
+3337,0.00191587791399797,0.0025,0.25,1,0,NA,0.25,5,5
+3338,0.0254765430030352,0.2125,21.25,4,83.2185152913492,0.747713654998423,10.5,2.12182751823874,0
+3339,0.0242762540055082,0.235,23.5,2,93.5390541265441,0.844382197323374,23,6.62156376940139,0
+3340,0.0180217000877747,0.0675,6.75,2,81.5222116982841,0.800486314608143,6.25,3.23679789790401,0
+3341,0.0238207301109833,0.215,21.5,2,92.2708416439434,0.85013113525665,20.5,3.15453374108603,0
+3342,0.0114858097710749,0.0775,7.75,2,78.5945182788431,0.739837398373984,4,0.550679606776084,0
+3343,0.0294310554612821,0.2425,24.25,2,90.6273004428476,0.863434619324001,17,3.49697946764759,0
+3344,0.0325299072629059,0.33,33,2,93.8649610773668,0.845172477859665,29.75,2.80930595686941,0
+3345,0.0135087085620762,0.115,11.5,3,80.9709920162463,0.811676082862524,5.75,5.45708606554114,0
+3346,-0.00242745498564545,0.0325,3.25,3,55.8088816938752,0.712891185759403,1.5,10.8454115940974,0
+3347,-0.0126793067021501,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,3.33333333333333,0
+3348,0.00286466053024924,0.0075,0.75,3,0,1,0.25,3.33333333333333,0
+3349,0.00759924875297656,0.0075,0.75,1,44.4894453484604,1,0.75,31.3013127644857,26.9258232116699
+3350,-0.0042851948756288,0,0,0,NA,NA,0,NA,NA
+3351,-0.00185355882091244,0,0,0,NA,NA,0,NA,NA
+3352,0.000348922002945073,0.09,9,1,87.719298245614,0.908424908424908,9,4.37295574612088,0
+3353,0.00454619255098805,0.0475,4.75,4,59.4625064994853,0.637976287446828,2,3.87230963456003,0
+3354,0.00171642989713291,0.0825,8.25,5,73.7512481780211,0.677061257442729,5.5,3.21858192212654,0
+3355,0.0176568295432662,0.1275,12.75,6,75.4549601124302,0.631129993742384,7,5.78358055563534,0
+3356,0.0373372349817146,0.32,32,5,85.7635758230978,0.753850037869225,16.25,5.64927572011948,0
+3357,0.0194388000861181,0.215,21.5,3,88.044363975028,0.85013113525665,11.5,1.2421545427899,0
+3358,0.0315320958433585,0.2425,24.25,2,94.1765015107588,0.711695307461781,24,2.08653137364338,0
+3359,0.0237009194354505,0.185,18.5,6,79.356164876317,0.631901840490797,6.75,1.82868210045067,0
+3360,0.0395573911833526,0.39,39,4,95.4442363947377,0.691551950648312,37,2.20987570591462,0
+3361,0.0501260287679906,0.4675,46.75,5,93.7796628309787,0.788325327688675,39,0.728412852567785,0
+3362,0.0288189778176638,0.2275,22.75,3,89.1666750812105,0.840185384953454,14,2.59253791138366,0
+3363,0.0181327940952542,0.155,15.5,5,78.8748369233497,0.726057418365111,7.25,6.31600392249323,0
+3364,0.0379567260151816,0.335,33.5,6,88.2478279213646,0.765807962529274,23,1.85319482034712,0
+3365,-0.0273586821177742,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,3.82464252818715,0
+3366,-0.00678641656802483,0.0825,8.25,3,74.1404419777226,0.757795943082047,4,2.1309841040409,0
+3367,0.00395599320945621,0.07,7,3,71.7128598992375,0.73715651135006,3,2.67857142857143,0
+3368,-0.00968410526493244,0.0125,1.25,1,58.1880425789518,1,1.25,4,0
+3369,0.000507783166031004,0.155,15.5,4,81.9623131782425,0.791803637957484,9.5,4.729874303264,0
+3370,-0.0222683822534327,0,0,0,NA,NA,0,NA,NA
+3371,0.0110640940261601,0.135,13.5,3,83.5405236796008,0.763813785816396,8,5.89557351006402,0
+3372,0.00732872382917776,0.1075,10.75,4,77.1851106414807,0.782135076252723,6.25,4.90667232247286,0
+3373,-0.0480873272268218,0.05,5,3,70.1193672488412,0.796264855687606,4,2.95710678100586,0
+3374,0.0797278814009769,0.845,84.5,1,99.5375969134692,0.747589479529507,84.5,0.22189349112426,0
+3375,0.0668155095446855,0.875,87.5,1,99.6366054334226,0.625377643504532,87.5,0.0975489589146205,0
+3376,0.125592651766201,0.89,89,1,99.684221684177,0.959536012948476,89,0.140449438202247,0
+3377,0.0460000557501917,0.4775,47.75,3,96.3424818230761,0.940529289325008,46.75,25.6904555914914,0
+3378,0.0116999385266604,0.0775,7.75,4,79.40591667616,0.718157181571816,6.75,16.6271349999212,5
+3379,-0.0186006972487667,0.09,9,3,83.6252713197817,0.853479853479854,8.5,50.0514154434204,7.07106781005859
+3380,0.0161758030699912,0.2925,29.25,3,91.8209424097834,0.866657777185146,25,4.67186337658483,0
+3381,0.0687823402879621,0.555,55.5,2,96.5396256587707,0.891440047766379,50.25,4.04201992997178,0
+3382,0.0620789866083942,0.4725,47.25,4,92.5827074299081,0.794177386594448,30.5,2.97058645379606,0
+3383,0.0225677326581626,0.225,22.5,3,91.0573869203909,0.807653776798237,20.25,6.56999469333225,0
+3384,-0.0399419865960954,0.1475,14.75,1,91.5590620020185,0.861997584957737,14.75,5.2766570398363,0
+3385,-0.0755556159751723,0,0,0,NA,NA,0,NA,NA
+3386,-0.11937598497243,0,0,0,NA,NA,0,NA,NA
+3387,-0.123546979848325,0,0,0,NA,NA,0,NA,NA
+3388,-0.00284633619208307,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,102.794760567801,76.1577301025391
+3389,0.0668036817591201,0.605,60.5,1,98.496585825966,0.977596056906015,60.5,90.0072810748392,41.2310562133789
+3390,0.0105573706226278,0.24,24,1,94.5197818298983,0.954100367197062,24,60.5602171421051,14.1421356201172
+3391,-0.0540284543903545,0,0,0,NA,NA,0,NA,NA
+3392,-0.0184168886396947,0,0,0,NA,NA,0,NA,NA
+3393,-0.0237580870877719,0,0,0,NA,NA,0,NA,NA
+3394,0.00180061305088202,0,0,0,NA,NA,0,NA,NA
+3395,-0.0174365547683919,0,0,0,NA,NA,0,NA,NA
+3396,0.017462645571577,0.04,4,3,65.4532751543838,0.696180555555556,3,160.624940872192,144.222045898438
+3397,0.0376536946160786,0.5775,57.75,1,98.3373505793708,0.950575927731023,57.75,150.418594294296,90.1387786865234
+3398,0.0784951993543655,0.8975,89.75,1,99.7075809055868,0.870875179340029,89.75,110.398424844556,55
+3399,0.0578457260271534,0.6275,62.75,2,98.3088985310162,0.800085677566757,62.25,153.05497000037,89.0224609375
+3400,0.021598182869941,0.1725,17.25,2,88.0431106910161,0.860178272702305,12.75,159.084563766701,105
+3401,-0.00180608580712942,0.0275,2.75,2,64.8325839433609,0.657240788346187,2.25,33.1978773637251,18.0277557373047
+3402,0.00794091929681599,0.23,23,1,94.2887150496276,0.904973075704783,23,9.59406456740006,0
+3403,0.00299524792179,0.065,6.5,2,78.2200880999434,0.843485065866701,5.25,15.407282095689,5
+3404,-0.00378441132823809,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,4.50762899298417,0
+3405,0.0202899307303232,0.2675,26.75,1,95.0869843258351,0.886823816513113,26.75,4.08452723850714,0
+3406,-0.00723423350026678,0.125,12.5,3,84.6114577118969,0.717647058823529,10.25,1.18284271240234,0
+3407,0.0388869431160492,0.3925,39.25,3,92.0137096101913,0.771376314586191,23,6.16862180430418,0
+3408,0.0256782714249857,0.2275,22.75,7,80.7920200669511,0.680370769906908,10,4.36593221308111,0
+3409,0.0794040750525892,0.845,84.5,1,99.5375969134692,0.787975162804786,84.5,0.236686390532544,0
+3410,0.13601428133843,0.9025,90.25,1,99.7229916897507,0.910031488978857,90.25,0.152354570637119,0
+3411,0.0435734158811101,0.5025,50.25,3,93.7532868307588,0.735945141255877,26,2.3170523382538,0
+3412,0.0434328135110991,0.43,43,4,89.9258418785139,0.77862637666722,16,1.98864338009856,0
+3413,0.0707262046032702,0.7975,79.75,2,98.7500517969383,0.721094294737705,78,4.89793841442718,0
+3414,0.0696870303286414,0.81,81,2,99.2221302147334,0.77640178878569,80.75,6.46332283373232,0
+3415,-0.00423326026368159,0.3225,32.25,4,92.8023625447797,0.755044358954228,27.75,6.65082149357759,0
+3416,0.0213410886324345,0.2025,20.25,4,90.5510580704765,0.782305816788575,18.5,5.06402790399245,0
+3417,0.0202061293096995,0.1625,16.25,4,81.3670370676489,0.756967375511821,6.5,9.87325239915114,0
+3418,0.0118702937840862,0.0975,9.75,6,67.2082796554467,0.624973364585553,3.75,12.0408883706117,0
+3419,-0.0336751556253876,0.1025,10.25,2,86.902038910584,0.919260425497558,10,2.08103598617926,0
+3420,-0.125341851896337,0.0675,6.75,2,82.3132184428663,0.875303946630089,6.5,76.5671412150065,0
+3421,-0.0476580872375416,0.2925,29.25,1,95.5315755048205,0.973331555437029,29.25,38.4923487606212,5
+3422,-0.149619978468691,0.1975,19.75,1,93.4201273586734,0.937694704049844,19.75,56.7873421681078,30
+3423,0.0384353697948973,0.475,47.5,2,95.851617520243,0.875541125541126,42.25,76.417200088501,33.5410194396973
+3424,0.0443216586665585,0.32,32,2,92.2639669480693,0.90532693764201,21.5,43.835431098938,11.1803398132324
+3425,-0.0139749219521764,0.0025,0.25,1,0,NA,0.25,35.355339050293,35.355339050293
+3426,-0.00810590451868848,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,4.41421356201172,0
+3427,0.0296847813938803,0.215,21.5,3,88.5196881730337,0.808500895050164,13,3.57898508116256,0
+3428,0.0087607301557,0.0925,9.25,2,86.2068965517241,0.855484803323849,9,7.46028410421835,0
+3429,-0.0304703140398487,0,0,0,NA,NA,0,NA,NA
+3430,-0.00707050143480956,0.0075,0.75,1,44.4894453484604,1,0.75,16.2797145843506,15
+3431,-0.00705010443715537,0.02,2,3,41.2877050769818,0.489795918367347,0.75,0.625,0
+3432,-0.00287136085633392,0.07,7,5,61.8822495318296,0.5221027479092,2.25,3.94126210893903,0
+3433,0.00437081811281132,0.0775,7.75,10,56.5498540983734,0.436314363143631,3.5,3.2649420461347,0
+3434,0.00556261244744746,0.1075,10.75,6,69.9705980708507,0.673202614379085,3.75,3.82475839659225,0
+3435,0.00429577934308327,0.025,2.5,2,62.1707778778281,0.684418145956607,2,10.1456338882446,0
+3436,0.0240874695097591,0.135,13.5,3,85.6293017478072,0.788675492572565,10.75,5.37837106210214,0
+3437,0.021461131854594,0.1475,14.75,6,76.0744778495233,0.677994364901386,7.25,5.1617216983084,0
+3438,0.0117182521020641,0.09,9,1,87.719298245614,0.835164835164835,9,0.972222222222222,0
+3439,0.016695262377325,0.2475,24.75,2,92.3549143412595,0.850684982642129,21.75,1.74134892165059,0
+3440,0.0319708995326437,0.21,21,2,93.2438053871095,0.770622716846487,20.75,1.78782417660668,0
+3441,0.0265578431404356,0.31,31,1,95.8102472617487,0.774557165861514,31,1.99079156691028,0
+3442,0.0255908096819803,0.2275,22.75,4,89.1848301020487,0.79224100043949,17.5,2.04041554377629,0
+3443,0.0249841230711741,0.1,10,5,76.040210911525,0.684908789386401,5.75,3.78757038116455,0
+3444,0.0112512321145368,0.0525,5.25,4,68.0590799590187,0.736147757255937,4,4.49831481206985,0
+3445,0.0257172971273576,0.2275,22.75,4,85.2526216000714,0.768268808182508,8.5,2.680540902274,0
+3446,0.0192088317176103,0.2025,20.25,3,89.590122185558,0.773598049460118,17.25,2.75656332793059,0
+3447,0.0126577368109611,0.16,16,1,92.1052631578947,0.925595238095238,16,4.56652075052261,0
+3448,0.00367036133589863,0.055,5.5,4,67.6638268799795,0.782135076252723,4.25,3.82464252818715,0
+3449,0.0064715133378013,0.025,2.5,1,71.9760246298065,1,2.5,1.5,0
+3450,0.0101746901979459,0.1025,10.25,5,70.5461516555142,0.709337531791207,3.5,2.29614964927115,0
+3451,-0.0508414126151183,0,0,0,NA,NA,0,NA,NA
+3452,-0.049065703125234,0,0,0,NA,NA,0,NA,NA
+3453,-0.0132306018111376,0.0125,1.25,1,58.1880425789518,1,1.25,7.06449508666992,5
+3454,-0.0170167799786759,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+3455,-0.0184009238267572,0.0525,5.25,2,72.8497686088748,0.83509234828496,3,1.05100322905041,0
+3456,0.0450435473454127,0.3925,39.25,4,93.123470698127,0.839963420210334,33.5,1.60213808193328,0
+3457,0.0396726639616827,0.365,36.5,1,96.5515169620803,0.834852104161137,36.5,1.70720340781016,0
+3458,0.0305311850843282,0.28,28,5,86.9538576047316,0.766226622662266,12.75,1.77805478232247,0
+3459,0.0342951048292525,0.285,28.5,4,90.8633435977612,0.762373548781316,18.75,1.87038960373192,0
+3460,0.0469918759727443,0.4575,45.75,3,94.4128940129751,0.754587843917869,35.75,2.45668946980127,0
+3461,0.0455694520912857,0.4375,43.75,3,92.9040322418786,0.763329893360853,25.25,0.847338692801339,0
+3462,0.0314823563124082,0.2775,27.75,6,88.6028756695814,0.750865051903114,19.5,2.52350956684834,0
+3463,0.020161817561202,0.1925,19.25,8,77.114209547995,0.735931524312511,10.25,3.23078626162046,0
+3464,0.0354839839700844,0.3825,38.25,4,93.3579363040155,0.76947570129814,29.5,3.66247430190541,0
+3465,-0.0503858833952927,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+3466,-0.00799126899968542,0.11,11,2,85.8548247370362,0.848162769511084,10,1.18343335931951,0
+3467,-0.026537303267105,0.075,7.5,1,86.0448225436784,0.823496966354109,7.5,0.166666666666667,0
+3468,-0.00444096027329579,0.025,2.5,1,71.9760246298065,0.763313609467456,2.5,4.70710678100586,0
+3469,0.000541512190696949,0.0975,9.75,1,88.4075627573592,0.829533347538888,9.75,1.28205128205128,0
+3470,-0.0123048433805343,0,0,0,NA,NA,0,NA,NA
+3471,-0.0099858238210436,0.05,5,1,81.7256002368443,0.898132427843803,5,1.75,0
+3472,-0.00608642014514771,0.025,2.5,2,61.4794562732788,0.763313609467456,2,1,0
+3473,-0.0457785083478666,0.035,3.5,3,59.833803098894,0.740932642487047,1.75,2.64793341500419,0
+3474,0.0880984535504467,0.7375,73.75,1,99.1344998974781,0.855855855855856,73.75,2.86347239219536,0
+3475,0.0636180719852564,0.6525,65.25,3,98.2564278317512,0.682217416251048,64.25,5.13349809317753,0
+3476,0.0763024372096061,0.5625,56.25,4,94.4864497405634,0.858503401360544,45.75,1.12857432047526,0
+3477,0.0486656574645895,0.49,49,4,95.6478451035427,0.876104287868994,46,24.8034459036224,0
+3478,0.0317989983224834,0.4525,45.25,1,97.4390089868719,0.940025897907722,45.25,37.2563122912665,5
+3479,0.0512268501200015,0.575,57.5,2,97.1507579184842,0.764157411216235,52,93.0584438323975,45.276927947998
+3480,0.0488569837024261,0.5925,59.25,1,98.4255810267197,0.850434156407096,59.25,79.1992896840542,35.355339050293
+3481,-0.0379118128970003,0.0925,9.25,3,79.2952875772722,0.710969606647699,5,20.718423585634,0
+3482,0.0931952346937032,0.725,72.5,1,99.081892426161,0.933277731442869,72.5,13.3601024233062,0
+3483,0.0884034023238564,0.665,66.5,3,98.3343116388704,0.760715460772291,65.75,7.70685202376287,0
+3484,0.0650305649541406,0.4875,48.75,3,95.0450713061905,0.886807707856084,44,2.35530544183193,0
+3485,-0.000728452561015729,0.25,25,2,90.9355288231614,0.792592592592593,16.25,2.63284271240234,0
+3486,-0.0603540747758962,0.18,18,1,92.8577757686571,0.884770501248319,18,2.92562431759304,0
+3487,-0.0532334092630344,0.0925,9.25,1,87.9580013362782,0.855484803323849,9.25,4.46906321757549,0
+3488,-0.0161287466558247,0.04,4,1,78.9473684210526,0.782986111111111,4,32.4275369644165,25
+3489,0.048714286138711,0.465,46.5,4,93.1241253574138,0.864159965224951,36.75,64.1637136397823,5
+3490,0.0555957458612102,0.56,56,1,98.2299673180941,0.940191387559809,56,79.6397051300321,22.3606796264648
+3491,-0.0270272183984889,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,59.3903160095215,53.8516464233398
+3492,-0.0129713009275815,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,3.33333333333333,0
+3493,-0.0140596510386786,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,4.01292142001065,0
+3494,-0.0436613258929583,0,0,0,NA,NA,0,NA,NA
+3495,-0.0322624259166798,0,0,0,NA,NA,0,NA,NA
+3496,-0.0749301495333202,0,0,0,NA,NA,0,NA,NA
+3497,-0.0903899694755819,0,0,0,NA,NA,0,NA,NA
+3498,0.0446230384153569,0.48,48,3,93.456269718358,0.810933448573898,30,38.2753401299318,0
+3499,0.0474822817044333,0.32,32,3,92.6547967361119,0.83590002524615,24.75,88.2918139696121,60.4152297973633
+3500,0.0245992801147077,0.0875,8.75,2,81.3755793163086,0.829948039678791,7.25,73.3377490452358,50.9901962280273
+3501,-0.0310805917345397,0,0,0,NA,NA,0,NA,NA
+3502,0.0202570646857203,0.2275,22.75,1,94.2285806660851,0.952055615486036,22.75,38.6142219920735,11.1803398132324
+3503,0.00743073309598913,0.115,11.5,4,76.5309752658354,0.739243807040417,5,4.9534444394319,0
+3504,0.0105893729847594,0.2425,24.25,1,94.5753035249093,0.863434619324001,24.25,1.39541586649787,0
+3505,0.0064373644378793,0.255,25.5,1,94.8405521791929,0.889976895147981,25.5,1.64111316905302,0
+3506,0.0566950370969789,0.59,59,2,97.2680065668206,0.811957303246502,55,0.614406779661017,0
+3507,0.0325308229280199,0.225,22.5,3,91.618826190019,0.823682628731717,21,2.54007496303982,0
+3508,0.0406759159579087,0.415,41.5,2,95.3717641886998,0.854756717501816,37,0.739253124558782,0
+3509,0.0746043098566588,0.73,73,1,99.1030975159931,0.682925183835931,73,0.768714421415982,0
+3510,0.0993765305168927,0.6775,67.75,1,98.8688764291496,0.920805348684912,67.75,0.0922509225092251,0
+3511,0.0414109740316781,0.435,43.5,3,95.9248005918285,0.784964022826896,41.25,1.33365403098622,0
+3512,0.0175309415392985,0.19,19,6,79.421780076577,0.751243781094527,9,19.4390337090743,0
+3513,0.0100077349405547,0.1025,10.25,2,82.642125103351,0.870816680796092,7.25,8.97016488051996,0
+3514,0.0542923507502542,0.6,60,4,95.5925306410389,0.760579064587973,51.5,2.30727721055349,0
+3515,0.0390147843235536,0.345,34.5,4,94.3206082829361,0.818247909850963,32.75,3.8955483643905,0
+3516,0.0120554286836705,0.2,20,3,86.0044315464611,0.797535211267606,11.75,7.254367852211,0
+3517,-0.000831168603763217,0.2275,22.75,3,91.2275678991582,0.888129769467418,21,17.0936358315604,0
+3518,0.0635520700924098,0.5425,54.25,3,95.1434633767107,0.778174538765352,44.5,7.4860781568536,0
+3519,0.0548869988997467,0.6575,65.75,1,98.7723535160189,0.82825246887076,65.75,0.662137397795122,0
+3520,-0.0175375219976559,0.2725,27.25,1,95.1807759450405,0.916269820503428,27.25,1.10683441162109,0
+3521,-0.218080859278562,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,0.833333333333333,0
+3522,-0.258363930750638,0,0,0,NA,NA,0,NA,NA
+3523,-0.0934968272179503,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,5.80094310215541,0
+3524,0.0479199873921243,0.36,36,1,96.4912280701754,0.940814393939394,36,4.93371285332574,0
+3525,-0.0101404390011885,0.0625,6.25,2,79.7566743110988,0.706666666666667,5.5,47.0872410583496,5
+3526,-0.0239708944309041,0.015,1.5,2,45.0766242787986,0.709934735315446,1,17.3011798858643,11.1803398132324
+3527,-0.0112837893322239,0.045,4.5,2,71.0186110213899,0.844871049059531,3,8.50322098202176,0
+3528,-0.051884969303519,0,0,0,NA,NA,0,NA,NA
+3529,-0.0480281496873249,0,0,0,NA,NA,0,NA,NA
+3530,-0.0217940398838391,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0
+3531,-0.0727452505275869,0.0025,0.25,1,0,NA,0.25,0,0
+3532,0.0241702915251517,0.135,13.5,6,72.2286754102752,0.602212691901299,3.75,5.10964722103543,0
+3533,0.00435410922479605,0.0425,4.25,3,63.2191204886279,0.66579634464752,2,5.45388345157399,0
+3534,-0.0074771838196466,0,0,0,NA,NA,0,NA,NA
+3535,0.0133230527942669,0.0625,6.25,2,81.0200477655928,0.893333333333333,6,1.28284271240234,0
+3536,0.00463764926882504,0.0275,2.75,2,64.2650533028319,0.725792630676949,2.25,6.7665224942294,0
+3537,0.0318215066455923,0.255,25.5,3,89.940699349119,0.801958411266366,16,6.65176741282145,0
+3538,0.034575137306656,0.3075,30.75,3,94.709782167501,0.896391510579398,30.25,0.569105691056911,0
+3539,0.0415035141712906,0.445,44.5,3,93.4136914497279,0.879514773131795,33.25,0.140449438202247,0
+3540,0.0266355951785226,0.25,25,6,83.2449538244658,0.725925925925926,11.25,0.98251407623291,0
+3541,-0.0128373190450111,0.0425,4.25,3,65.1582854089214,0.70757180156658,2.5,0.294117647058824,0
+3542,0.0104640802284484,0.0575,5.75,2,80.190713001571,0.852637783672267,5.5,0.217391304347826,0
+3543,0.0148292224137731,0.0225,2.25,3,46.3840245365161,0.573742540494459,1.25,13.5124354892307,0
+3544,0.0162556423209298,0.1,10,6,78.8365965320653,0.701492537313433,8,5.37049875259399,0
+3545,0.0314423540555981,0.2375,23.75,3,87.2842703301253,0.776277724204436,13.75,4.46121191727488,0
+3546,0.0286139238612668,0.26,26,5,89.5490151226451,0.761526232114467,21.75,2.70192586458646,0
+3547,0.00451039370964281,0.0975,9.75,3,79.4343956020836,0.795440017046665,5.25,2.59521034436348,0
+3548,0.0234360903923516,0.1975,19.75,5,79.828627147816,0.724076546506453,7.75,2.5762962872469,0
+3549,0.00791990296218501,0.125,12.5,3,84.7841179392924,0.852100840336134,11,3.74694133758545,0
+3550,0.00360857332418277,0.01,1,1,52.6315789473684,1,1,4.26776695251465,0
+3551,0.00251672309402238,0.005,0.5,2,0,1,0.25,12.8077640533447,5
+3552,-0.0124886428622085,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,4.08088022867839,0
+3553,0.00429359887099963,0.0375,3.75,6,45.0087641818347,0.433293978748524,1.5,3.66666666666667,0
+3554,0.0326871888935057,0.3575,35.75,3,93.8201216147299,0.863367689428818,31.75,2.05942289979308,0
+3555,0.0367778789400609,0.3075,30.75,3,89.859783566224,0.831636204691522,19.25,1.91345804105929,0
+3556,0.0327145348189515,0.3825,38.25,3,94.4363178730747,0.90202717305171,35,1.392408458236,0
+3557,0.0232027511766773,0.1725,17.25,5,81.1091889240224,0.780280142817907,9.25,1.10453918014748,0
+3558,0.0265489427078683,0.16,16,6,84.3280986749943,0.798044217687075,13.75,1.59486043453217,0
+3559,-0.00142954640397875,0.0925,9.25,7,64.1705161159507,0.584518809556067,3,3.3879821364944,0
+3560,0.0335473809828909,0.2975,29.75,4,88.2538604884499,0.756161855805984,16.25,3.63176999773298,0
+3561,0.0194450818013229,0.195,19.5,4,85.4358004721323,0.801962372850842,10.75,1.59570014171111,0
+3562,0.0267034309403152,0.23,23,5,86.1236016416244,0.762432689261958,14.25,3.45379219884458,0
+3563,0.0158724718545182,0.1475,14.75,5,78.0500359450053,0.723995169915474,5.75,3.42544558896857,0
+3564,0.00909132854587369,0.085,8.5,4,74.4476012839751,0.590163934426229,5,2.56091375911937,0
+3565,-0.0192944634429318,0.09,9,3,78.1889578211371,0.853479853479854,5.25,2.47617043389214,0
+3566,-0.0196852991573087,0.04,4,3,66.2624149457428,0.782986111111111,3.25,3.69638347625732,0
+3567,0.0058838941698923,0.035,3.5,4,59.3757884937328,0.585492227979275,2.5,2.08158111572266,0
+3568,0.015091666025437,0.145,14.5,2,86.7683092855191,0.824561403508772,10.75,4.22046700839339,0
+3569,0.000158812206414041,0.0325,3.25,3,58.5463350269874,0.598047660063164,2,2.85162060077374,0
+3570,-0.0151655129351457,0.0025,0.25,1,0,NA,0.25,15,15
+3571,0.0145310819132646,0.1575,15.75,4,84.0879820246975,0.773401672511465,9,1.03174603174603,0
+3572,-0.0137622521212325,0.025,2.5,4,41.6623578643161,0.447731755424063,1,6.66227760314941,0
+3573,-0.00441095875023166,0.12,12,2,88.3920881242357,0.930709534368071,11.75,6.88912113507589,0
+3574,0.020975534088401,0.375,37.5,1,96.668457042866,0.901090909090909,37.5,1.98856180826823,0
+3575,0.0554834261606447,0.6125,61.25,4,96.1688827789402,0.752077757430624,54.25,0.836734693877551,0
+3576,0.034925371293939,0.2725,27.25,3,88.927690178756,0.804629581174665,17,1.95673643339665,0
+3577,0.0138430907164002,0.01,1,2,34.5233986084855,0.494949494949495,0.75,11.25,0
+3578,0.0460803833055252,0.5275,52.75,1,98.0165432545104,0.913616240146852,52.75,44.5462657422251,5
+3579,0.0666692553739995,0.825,82.5,2,99.1106475094932,0.880761293281358,82,119.480169330944,74.3303451538086
+3580,0.0282579536845878,0.4875,48.75,1,97.7251065890586,0.967659345101738,48.75,143.849557808118,109.201652526855
+3581,-0.0611757053248584,0,0,0,NA,NA,0,NA,NA
+3582,-0.0614773401734419,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471
+3583,-0.0644525741898178,0.0475,4.75,2,77.8316651557823,0.746583401212779,4.5,20.5420955858733,10
+3584,-0.0593507336975745,0.045,4.5,1,80.4523936425773,0.844871049059531,4.5,1.66666666666667,0
+3585,-0.0129980194898235,0.3575,35.75,1,96.460610420978,0.958416253304423,35.75,1.35763731202879,0
+3586,0.0431546778776101,0.4375,43.75,1,97.3060110945426,0.95046439628483,43.75,1.84409153529576,0
+3587,0.0515010804595659,0.49,49,2,95.1605552031628,0.892264598146951,41.25,2.31142088831687,0
+3588,0.0148725050146459,0.4275,42.75,2,94.2060181310192,0.855825882026755,31.75,7.24890921966374,0
+3589,0.035776229785406,0.4825,48.25,2,97.3319519890616,0.913637222357164,48,12.0401996256774,0
+3590,0.000372348040327779,0.2925,29.25,3,93.2856102296687,0.813320888059204,27.5,10.8022578638843,0
+3591,-0.00509212401186232,0.02,2,3,44.0901705406037,0.489795918367347,1,6.76776695251465,0
+3592,0.0933865671581316,0.5075,50.75,1,97.8751325648042,0.956913382434124,50.75,35.371233869656,0
+3593,0.0606723021968992,0.455,45.5,1,97.4605335088305,0.972776522472981,45.5,83.3771736857655,47.1699066162109
+3594,-0.00922776612489542,0.085,8.5,1,87.210675248157,0.921935987509758,8.5,102.822690851548,91.2414398193359
+3595,-0.0256774679065893,0.03,3,1,74.8763016215986,0.878714372346877,3,71.4941148757935,55.9016990661621
+3596,-0.0196722778141702,0.0675,6.75,2,77.0326683961247,0.850364735956107,4.75,78.3994474057798,69.6419448852539
+3597,-0.0274806655092107,0.225,22.5,1,94.1674468064267,0.871769184532158,22.5,97.7765421549479,72.1110229492188
+3598,0.0828851376660168,0.8475,84.75,1,99.546047930594,0.918160660852664,84.75,97.4894837573566,50
+3599,0.0845278782537207,0.9675,96.75,1,99.9123308655226,0.958080067071894,96.75,80.9406573470557,40
+3600,0.0228725353086884,0.335,33.5,1,96.169806046512,0.870578084555651,33.5,28.4300861928,0
+3601,-0.00322854723392084,0.0725,7.25,3,75.9249779267682,0.816482193037793,5.75,1.37931034482759,0
+3602,-0.0143954999983544,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,3,0
+3603,0.0243537228320383,0.3125,31.25,3,93.9648190376201,0.891069283139768,30,2.44568542480469,0
+3604,-0.00342547548718358,0.135,13.5,2,89.732352335363,0.875691466219156,13.25,2.06486694901078,0
+3605,0.0528414918488124,0.5975,59.75,1,98.4542502383879,0.799908291300179,59.75,0.711297071129707,0
+3606,0.0614736155702849,0.7575,75.75,2,99.0094832782249,0.819452218029501,75.5,0.442713318878275,0
+3607,0.0265743616595864,0.185,18.5,3,89.2973308018499,0.830108541764983,16.5,1.61438663585766,0
+3608,0.0110127766228106,0.04,4,3,69.6811656412875,0.739583333333333,3.5,7.01963770389557,0
+3609,0.0763335178201669,0.8625,86.25,1,99.5959799783351,0.843837144450641,86.25,1.77004100412562,0
+3610,0.0255807476414338,0.225,22.5,2,89.65582628905,0.767581646964536,12.5,0.0555555555555556,0
+3611,0.0101521881460258,0.085,8.5,3,74.8115841678086,0.60967993754879,4.5,1.44535693000345,0
+3612,-0.0396862344392866,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,54.288402557373,46.0977210998535
+3613,-0.0334084815624874,0.02,2,1,68.0470115164975,0.795918367346939,2,8.76235294342041,0
+3614,0.018442282470287,0.2025,20.25,2,89.3100895226803,0.851967955416231,13.25,1.04277297596873,0
+3615,0.0436457948146563,0.405,40.5,2,96.1800756764388,0.706728328915459,39,5.14606581793891,0
+3616,-0.0174138611790841,0.085,8.5,4,70.9400545663034,0.668227946916471,3.5,4.17229865579044,0
+3617,0.0124424800062525,0.18,18,3,88.7613300370451,0.769541002496639,15.75,3.18450779385037,0
+3618,0.0640352136545698,0.82,82,1,99.4509723118502,0.856399210195656,82,0.106707317073171,0
+3619,0.057027814041212,0.68,68,1,98.8806414464123,0.847113502935421,68,0.581927467794979,0
+3620,0.0573222380805964,0.6425,64.25,2,96.9312170101714,0.825538287076749,57.75,0.606877145136377,0
+3621,-0.00777371163119824,0.1525,15.25,3,87.7526988377664,0.86642177325096,14,0.491803278688525,0
+3622,-0.0872086000019772,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+3623,0.0596607919151211,0.48,48,2,96.35530999768,0.918971477960242,46,14.9877467056115,0
+3624,0.203893555393443,1,100,1,100,NA,100,38.6461522817612,5
+3625,0.03347833698258,0.2375,23.75,2,93.0594784849603,0.899710703953713,22.75,22.7535114689877,0
+3626,-0.0151035812436021,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,6.93261591593425,0
+3627,-0.000586560773298288,0,0,0,NA,NA,0,NA,NA
+3628,-0.0033960003176395,0,0,0,NA,NA,0,NA,NA
+3629,-0.00751815120901483,0,0,0,NA,NA,0,NA,NA
+3630,0.00202459468899178,0.11,11,1,89.3941397590651,0.954448830853325,11,0.454545454545455,0
+3631,0.006869129723691,0.0325,3.25,4,52.3946295034838,0.655469422911283,1.75,8.42185343228854,0
+3632,0.0072211932181682,0.085,8.5,5,66.0158419027934,0.629195940671351,2.75,8.22043626448687,0
+3633,0.0161083963338115,0.08,8,5,69.8555880530902,0.728260869565217,5.5,5.27553182840347,0
+3634,-0.00264039036177564,0.15,15,6,79.6911279717689,0.773755656108597,11,2.62377344767253,0
+3635,0.0230673934188235,0.1175,11.75,6,70.4810076696394,0.631728045325779,3.75,3.94443479497382,0
+3636,0.00802060363073906,0.04,4,1,78.9473684210526,0.956597222222222,4,10.4785101413727,0
+3637,0.0197555937980724,0.1075,10.75,4,79.2449235402913,0.626517273576097,6.75,2.4219101307004,0
+3638,0.0588800569002342,0.5225,52.25,2,97.4431984224353,0.930012516992153,51.75,0.450440840287642,0
+3639,0.0263925495379226,0.2425,24.25,4,87.9705766847963,0.787564963392891,16,0.360824742268041,0
+3640,0.0355564936898008,0.2625,26.25,4,89.6910239608897,0.791946910590978,20.5,1.15441146123977,0
+3641,0.0267942235674582,0.26,26,3,91.0886755223691,0.812111576817459,21.75,1.50205003298246,0
+3642,0.0144939452548351,0.065,6.5,4,65.9504077844542,0.634798487022303,2.25,2.65931290846605,0
+3643,0.0116845568225835,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,2.8451779683431,0
+3644,0.0133515323189158,0.0325,3.25,2,68.6830534279938,0.712891185759403,2.75,12.9028684175931,0
+3645,0.0193008730942347,0.115,11.5,2,83.4695586329334,0.840648993191366,7,15.7526564390763,0
+3646,0.003930197622376,0.01,1,1,52.6315789473684,0.747474747474748,1,8.31285190582275,5
+3647,-0.0127596176065072,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+3648,0.00753145041702282,0.1025,10.25,3,83.6257991591721,0.838520850995115,9.25,2.5609756097561,0
+3649,0.0472111040648451,0.4825,48.25,1,97.686149992119,0.919034895959841,48.25,1.29089189440475,0
+3650,-0.0130014914645653,0.145,14.5,2,85.6585579500072,0.859649122807018,9.75,3.64160695569269,0
+3651,0.0176504989632849,0.1175,11.75,5,78.6972799323955,0.702549575070822,7.5,1.87838874979222,0
+3652,0.0243690867706027,0.2275,22.75,4,90.7066992869987,0.808222461944145,20.25,3.24614476633596,0
+3653,0.0236507120583428,0.2275,22.75,3,88.8554138685406,0.79224100043949,12.25,6.79654886434366,0
+3654,0.0359389333133549,0.415,41.5,3,93.3249941778878,0.782135076252723,21,1.66587758351521,0
+3655,0.0250675515753028,0.2575,25.75,7,80.0179743111503,0.67967967967968,8,1.19693467223529,0
+3656,0.0168612942255641,0.0925,9.25,6,68.255801066795,0.674840807478661,5.25,0.27027027027027,0
+3657,-0.0289420616729331,0.005,0.5,2,0,1,0.25,0,0
+3658,0.00239996144056931,0.0625,6.25,3,69.8210805165151,0.653333333333333,2.75,0.8,0
+3659,0.0270825391133121,0.3075,30.75,4,92.5845465214213,0.831636204691522,26.5,0.660269946586795,0
+3660,0.00734150312015117,0.0875,8.75,3,77.5425798579055,0.716580066131318,6.25,1,0
+3661,-0.0127733831339174,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0
+3662,0.00601179467511884,0.105,10.5,4,74.7253002115051,0.763946809347706,5.75,1.52719370524089,0
+3663,-0.00388508093295968,0.055,5.5,2,73.9871629170036,0.782135076252723,3.5,0.909090909090909,0
+3664,-0.0213588754095326,0.045,4.5,4,58.0675381704942,0.534613147178592,1.75,0.277777777777778,0
+3665,-0.021715283597805,0.0875,8.75,1,87.4704367425575,0.943316013226264,8.75,2.20203050885882,0
+3666,0.0105378555311108,0.2275,22.75,2,92.6034158693668,0.79224100043949,21,1.42857142857143,0
+3667,0.00597730291868629,0.09,9,3,76.9432185098331,0.725274725274725,5.75,0.833333333333333,0
+3668,0.0123957070295364,0.11,11,2,84.9697428974216,0.787427877315518,8.75,1.5243424502286,0
+3669,-0.00642230397219578,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,0.714285714285714,0
+3670,-0.00429261466678327,0.055,5.5,2,72.9675780225572,0.813258636788049,3.75,0.227272727272727,0
+3671,-0.00663589859074705,0.0975,9.75,1,88.4075627573592,0.948860004261666,9.75,0,0
+3672,-0.00975532974325688,0.065,6.5,2,76.2166124170089,0.817399243511152,4.25,4.94514934833233,0
+3673,-0.00226480246554274,0.0575,5.75,2,77.7607066677127,0.793692897141173,5,3.92504343779191,0
+3674,0.012233978701679,0.2175,21.75,5,86.0282026885184,0.826857672884675,16.25,0.632183908045977,0
+3675,0.0476727151981322,0.4225,42.25,3,93.995748423634,0.672549672549673,31,0.29585798816568,0
+3676,0.0440504378514379,0.4425,44.25,5,89.6445012842432,0.731215973450721,17.75,4.28448282662085,0
+3677,-0.0142062098799488,0,0,0,NA,NA,0,NA,NA
+3678,2.19998990905879e-05,0.15,15,2,86.0979814327583,0.819004524886878,10.75,57.8782714207967,29.1547584533691
+3679,0.0427109763484259,0.5775,57.75,1,98.3373505793708,0.901151855462046,57.75,68.3852783797623,25
+3680,-0.000592753972196078,0.2525,25.25,1,94.7890822083159,0.970435521720652,25.25,80.6212089085343,36.0555114746094
+3681,-0.0421685529872775,0,0,0,NA,NA,0,NA,NA
+3682,-0.0738616884313524,0,0,0,NA,NA,0,NA,NA
+3683,-0.0671090559220465,0,0,0,NA,NA,0,NA,NA
+3684,-0.0256689625791023,0,0,0,NA,NA,0,NA,NA
+3685,-0.0556543688542797,0,0,0,NA,NA,0,NA,NA
+3686,-0.0669821552378817,0,0,0,NA,NA,0,NA,NA
+3687,-0.057366705870445,0.0625,6.25,1,84.2105263157895,0.866666666666667,6.25,1.8,0
+3688,0.0526661875577702,0.46,46,2,94.2930058855651,0.863834422657952,37.25,7.97775696671527,0
+3689,0.12754326548792,0.7675,76.75,1,99.2554721522595,0.947910853145813,76.75,9.28424251817337,0
+3690,0.0814509955091489,0.585,58.5,2,97.1321545887246,0.944859529651788,56.75,3.7444277543288,0
+3691,0.0626463477969628,0.5,50,2,94.7368421052632,0.83288409703504,25,3.07547974586487,0
+3692,0.0205226968221723,0.285,28.5,3,91.3475793886333,0.796320184669699,22.25,12.0133612448709,0
+3693,0.10162685971417,0.575,57.5,2,95.332841346355,0.835458658988071,36.5,37.8582616888958,0
+3694,0.141700762759428,0.7675,76.75,2,97.6834254209594,0.873497786211259,71.5,61.9731082357102,0
+3695,0.0942332396437632,0.555,55.5,1,98.1983573135366,0.962004016718233,55.5,60.3176275889079,25
+3696,-0.0171840394205228,0,0,0,NA,NA,0,NA,NA
+3697,-0.0413750877429266,0.045,4.5,1,80.4523936425773,1,4.5,88.9046991136339,78.1025009155273
+3698,-0.0164591071206814,0.115,11.5,4,75.3125998384731,0.65232507605389,3.75,83.7401486272397,46.0977210998535
+3699,0.0211098028554261,0.1475,14.75,4,80.891188306055,0.769995974929561,10.25,28.5395759970455,0
+3700,0.0208185148162738,0.2025,20.25,4,82.9132763346574,0.773598049460118,8.25,20.4438475149649,0
+3701,0.0387126201013416,0.3225,32.25,4,89.4813012911474,0.824134411556882,21.25,0.348837209302326,0
+3702,0.0284603854620241,0.3675,36.75,1,96.5811989595545,0.964735442349795,36.75,0.858593220613441,0
+3703,0.00483180695700867,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,0.748171790171478,0
+3704,0.0179898017999221,0.105,10.5,3,81.5470286112894,0.842631206231804,7.75,2.22105407714844,0
+3705,0.00546115541787003,0.0525,5.25,1,82.2928536593692,0.967018469656992,5.25,0.238095238095238,0
+3706,-0.0154479127788545,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,5,0
+3707,0.0209582914781822,0.145,14.5,2,85.7532497382572,0.812865497076023,8,4.50419698912522,0
+3708,0.00925458051786336,0.0825,8.25,4,74.5419276988125,0.757795943082047,5.25,3.99570164535985,0
+3709,0.00692203277136286,0.095,9.5,5,73.9425352982044,0.614136630711216,4.25,7.97005573071932,0
+3710,0.00862191260301188,0.095,9.5,4,76.5226441824495,0.789529071297027,6,6.39452678278873,0
+3711,-0.0203908663477614,0,0,0,NA,NA,0,NA,NA
+3712,0.00656561731191459,0.1625,16.25,2,88.7194678318791,0.820367190595694,13,2.51702687190129,0
+3713,0.023912560098297,0.2375,23.75,2,89.9765724510926,0.830279652844744,12.25,0.473684210526316,0
+3714,0.0130891414531288,0.135,13.5,3,85.4797658144723,0.763813785816396,10.5,0.408723477964048,0
+3715,0.0492654414560457,0.5525,55.25,1,98.1823916421441,0.837283722948419,55.25,1.08389732740583,0
+3716,0.0520821865396283,0.4375,43.75,4,92.4118246391356,0.785345717234262,32.75,1.93508348737444,0
+3717,0.0342933429991535,0.3375,33.75,6,87.0669252532718,0.809786777113054,22.25,1.08124019481518,0
+3718,0.0163564474655368,0.14,14,4,81.6730022365788,0.664349076959962,8.5,3.42027997970581,0
+3719,0.0181676899381819,0.1825,18.25,4,83.7801241193824,0.761085626911315,9.75,2.61157466940684,0
+3720,0.0423171856574481,0.435,43.5,5,93.4696553909781,0.823560223857966,38.25,2.93462060511797,0
+3721,0.0442031078608852,0.43,43,3,92.9564902822143,0.690076927334108,24,1.43852562128111,0
+3722,0.0242413025822134,0.1675,16.75,8,76.498445221388,0.691999691999692,7.5,2.59979060158801,0
+3723,0.0419726431722302,0.4075,40.75,5,91.5319689458275,0.763713080168776,30.75,2.38831614862922,0
+3724,0.0955878919360112,0.55,55,2,96.7840818735015,0.83739837398374,52.25,9.4322171384638,0
+3725,0.0336560087226826,0.335,33.5,2,93.1006098568339,0.827437446074202,26,4.51468840641762,0
+3726,-0.0139225601621729,0.03,3,1,74.8763016215986,0.878714372346877,3,3.92258898417155,0
+3727,-0.0328842021334276,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,15.4429086797378,7.07106781005859
+3728,-0.0255420365775717,0,0,0,NA,NA,0,NA,NA
+3729,-0.0161603765604013,0,0,0,NA,NA,0,NA,NA
+3730,0.000794775342997127,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+3731,0.0244136812802026,0.1675,16.75,2,90.5534564163247,0.784399784399784,15.75,3.34654976004985,0
+3732,0.0211778357275216,0.0725,7.25,5,67.3197040443909,0.632964386075586,3.25,3.1859842497727,0
+3733,0.0181739907589173,0.0825,8.25,7,59.8762284075553,0.495408214754264,3,2.03245660030481,0
+3734,0.0265650078120962,0.165,16.5,6,76.9292404264908,0.718823223118979,7,5.21967081590132,0
+3735,0.0193551696062241,0.0575,5.75,5,62.140590637079,0.587385794282346,2.75,3.65835372261379,0
+3736,0.0360802222214625,0.255,25.5,5,88.7017043151828,0.728609674698353,19.5,2.53536026150573,0
+3737,0.0497414472688979,0.4625,46.25,2,95.0920257784979,0.749762001903985,34.25,1.42315822292019,0
+3738,0.029385503991507,0.2175,21.75,10,72.7804620615284,0.628980727610018,5,0.655989285173087,0
+3739,0.043017627968643,0.455,45.5,3,93.7652817876832,0.776767484278442,23.25,0.940731886978988,0
+3740,0.04230933585537,0.415,41.5,3,95.5649968702945,0.837997877213564,39.75,1.35199847853327,0
+3741,0.0275911245800899,0.15,15,9,66.9530588439498,0.558823529411765,3,5.28872146606445,0
+3742,0.018865995565684,0.1775,17.75,2,91.9491358603769,0.854103343465046,17.5,0.492957746478873,0
+3743,0.0235746276770078,0.1825,18.25,4,86.6189836100404,0.761085626911315,14.25,1.10030788264862,0
+3744,0.0207993350947618,0.1475,14.75,4,86.9274457567348,0.746995572422517,13,5.85738802764375,0
+3745,0.00436643258890399,0,0,0,NA,NA,0,NA,NA
+3746,-0.00147670364733358,0.05,5,2,72.3925942250362,0.728353140916808,3,14.7147754669189,0
+3747,0.022228529445747,0.2325,23.25,4,87.0294540157517,0.843020289627566,12.25,4.28110955351142,0
+3748,-0.0107358637291327,0.1775,17.75,4,81.5498698472521,0.756838905775076,8.25,1.28469300605881,0
+3749,0.0426890215765161,0.3975,39.75,4,95.1013478048087,0.761268686409367,36.75,1.13431030849241,0
+3750,0.0231391830963457,0.1625,16.25,6,78.6877185005255,0.756967375511821,8.5,2.6522083575909,0
+3751,0.0126234069149314,0.1175,11.75,3,81.3981254480752,0.759206798866855,5.75,2.53493905574717,0
+3752,0.0196209528458439,0.1475,14.75,2,87.3090378790321,0.873497786211259,12.25,1.73001809847557,0
+3753,0.0310377009689228,0.2925,29.25,4,92.1198153205153,0.799986665777719,25.75,4.07062315329527,0
+3754,0.0352993186612002,0.34,34,4,93.1346892032082,0.786168132942326,30,1.81276234458475,0
+3755,-0.00121299434220418,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,0.961538461538462,0
+3756,-0.0149866240068695,0,0,0,NA,NA,0,NA,NA
+3757,0.00607982282521334,0.0975,9.75,2,86.2765838040978,0.778393351800554,9.25,1.90850634452624,0
+3758,0.023125719693885,0.19,19,7,79.4954023665047,0.705177814630551,9.5,1.81205287732576,0
+3759,0.0412159357461496,0.415,41.5,3,96.0343831793363,0.759789955868387,40,1.67076546312815,0
+3760,0.0362932004935647,0.3225,32.25,3,94.9544681189962,0.767606186700165,31.25,1.69212613364523,0
+3761,0.00985307135657422,0.125,12.5,4,79.8444977847766,0.757983193277311,7.25,1.78284271240234,0
+3762,0.0129209012369597,0.115,11.5,2,83.5989703784527,0.855135448355787,8,4.24614077029021,0
+3763,0.000847071435928228,0.0075,0.75,3,0,1,0.25,0,0
+3764,-0.0251179469494673,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,0.833333333333333,0
+3765,-0.000803060464249938,0.0875,8.75,1,87.4704367425575,0.962210675484176,8.75,1.68977530343192,0
+3766,0.0268511702035539,0.2525,25.25,5,87.5288213924638,0.770875293335058,15,1.90169374069365,0
+3767,0.0188796728495822,0.1825,18.25,5,87.0893501979634,0.808868501529052,15.75,1.02739726027397,0
+3768,0.0085184321054976,0.11,11,1,89.3941397590651,0.893713938657759,11,2.15909090909091,0
+3769,-0.014308930873799,0,0,0,NA,NA,0,NA,NA
+3770,0.0113257386928672,0.0825,8.25,3,77.969194715952,0.777979614491876,6,1.33764047333688,0
+3771,-0.0107007635799641,0,0,0,NA,NA,0,NA,NA
+3772,0.0136424503294256,0.1175,11.75,3,80.7848086016422,0.787535410764873,6,3.00453624319523,0
+3773,-0.0194230496666319,0,0,0,NA,NA,0,NA,NA
+3774,0.0337802504786669,0.41,41,2,94.6624648737291,0.921427769671119,36,0.457317073170732,0
+3775,0.0662305622905842,0.655,65.5,2,96.0960860970316,0.834705864990112,39,0.17175572519084,0
+3776,0.0524774099034403,0.455,45.5,2,95.1905755044986,0.831214439332481,40.5,0.423467405549772,0
+3777,-0.0605325603612437,0,0,0,NA,NA,0,NA,NA
+3778,-0.0728075636038557,0.13,13,1,90.6657843098624,0.922510654784967,13,67.0504561937772,20
+3779,0.00511437469671364,0.4,40,1,96.9413745785043,0.96031746031746,40,49.2047668933868,10
+3780,-0.0608702421111593,0,0,0,NA,NA,0,NA,NA
+3781,-0.0472602090390319,0,0,0,NA,NA,0,NA,NA
+3782,-0.0709430204465752,0,0,0,NA,NA,0,NA,NA
+3783,-0.0821604650818335,0,0,0,NA,NA,0,NA,NA
+3784,-0.0561664300521079,0,0,0,NA,NA,0,NA,NA
+3785,-0.0259331865430795,0,0,0,NA,NA,0,NA,NA
+3786,-0.0161968160272068,0,0,0,NA,NA,0,NA,NA
+3787,-0.0465108495298773,0,0,0,NA,NA,0,NA,NA
+3788,-0.0520648229122162,0,0,0,NA,NA,0,NA,NA
+3789,-0.0248192972799734,0.0975,9.75,1,88.4075627573592,0.86362667803111,9.75,37.2877033429268,15.8113880157471
+3790,0.0563023523622542,0.5725,57.25,1,98.3071726267885,0.874001944752592,57.25,27.0386163303425,0
+3791,0.1464277592898,0.865,86.5,1,99.6041754676792,0.762147468569487,86.5,26.8896916670606,0
+3792,0.108503250283684,0.78,78,1,99.3038050834495,0.80674087816945,78,10.610048532486,0
+3793,0.0732711103846668,0.62,62,1,98.5789406842005,0.977313974591652,62,4.47404143118089,0
+3794,0.0371315643940761,0.4225,42.25,2,93.7310764104156,0.833499833499833,27.75,1.77217440633379,0
+3795,0.0311757143017894,0.3475,34.75,3,91.4086058309712,0.78881950101065,21,11.9932800402744,0
+3796,0.00773590478864207,0.1925,19.25,1,93.2673077410907,0.881624476415953,19.25,5.15457128549551,0
+3797,-0.000138158596673748,0.115,11.5,2,83.5580835324086,0.782703172533681,6.75,21.0799056758051,0
+3798,-0.00833329860757658,0.0375,3.75,1,78.0843273950357,0.811097992916175,3.75,31.9469342549642,18.0277557373047
+3799,-0.018826180912115,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+3800,-0.0533137015903776,0.0025,0.25,1,0,NA,0.25,0,0
+3801,0.032677023213098,0.34,34,3,94.3347599428561,0.847262952101662,32.25,1.84378318225636,0
+3802,0.00384703059149615,0.1925,19.25,4,82.620448102437,0.717719905299581,7,12.4126953521332,0
+3803,0.0763198839651886,0.8,80,1,99.3787684802637,0.875827814569537,80,0.740847086906433,0
+3804,0.0203633335098857,0.3425,34.25,3,92.2442682866859,0.83574144486692,21.5,0.109489051094891,0
+3805,-0.01734973957693,0.0675,6.75,2,76.6536165090006,0.800486314608143,3.75,2.56081983778212,0
+3806,-0.0333057194957291,0.0825,8.25,2,82.3599866446219,0.899081642950853,7.5,1.70343040697502,0
+3807,0.00439075733185746,0.2125,21.25,3,90.7152121021987,0.831809103332282,19.25,1.46049571317785,0
+3808,0.00281262474360119,0.0525,5.25,2,77.3416134336187,0.83509234828496,4.75,0.238095238095238,0
+3809,-0.024053042346045,0.0125,1.25,1,58.1880425789518,1,1.25,0,0
+3810,-0.0114307410057518,0.0575,5.75,2,76.7307922521525,0.882110226937813,5,3.87574502696162,0
+3811,-0.00513609366649575,0.0025,0.25,1,0,NA,0.25,35,35
+3812,-0.0114283475570846,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,9.02368927001953,7.07106781005859
+3813,-0.0119551384913575,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,8.3983455657959,0
+3814,-0.0164499226694443,0.0325,3.25,6,36.3623845194002,0.368360608670686,0.75,13.0397660182073,7.07106781005859
+3815,-0.00786863203484245,0.0475,4.75,6,49.520790239472,0.565571544936193,2.25,2.32327029579564,0
+3816,0.0346634625752631,0.35,35,6,92.9966029642039,0.849759615384615,32.5,5.35906306675502,0
+3817,0.0183197134359852,0.095,9.5,8,62.7666589603867,0.614136630711216,3.25,9.96293273725008,0
+3818,0.0205329846820541,0.0625,6.25,8,52.2609745942464,0.44,2.25,8.00003196716309,0
+3819,0.0242843682690727,0.115,11.5,7,76.9568865885954,0.637838620889468,7.75,9.10378447822903,0
+3820,0.0150652813566376,0.05,5,3,64.9446155287094,0.728353140916808,2.5,8.45673542022705,0
+3821,0.0101614135392811,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,2,0
+3822,0.0174444754800697,0.165,16.5,5,77.8450416401321,0.718823223118979,8.25,3.06706677061139,0
+3823,0.0112302756158715,0.125,12.5,3,83.5128282347047,0.878991596638656,10.5,5.7779271697998,0
+3824,0.0209456609760673,0.1325,13.25,2,85.405896718819,0.885992969566457,10.25,2.09836232887124,0
+3825,0.00436587785603479,0.1275,12.75,3,81.5348893216212,0.776043210486447,6.5,1.74788501215916,0
+3826,-0.0277239577648834,0,0,0,NA,NA,0,NA,NA
+3827,-0.0351791635656946,0,0,0,NA,NA,0,NA,NA
+3828,-0.0360844578717024,0,0,0,NA,NA,0,NA,NA
+3829,-0.0165782829136697,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+3830,-0.00496252216154744,0.035,3.5,2,71.6522426099107,0.844559585492228,3.25,0.357142857142857,0
+3831,-0.0307826932278113,0.015,1.5,2,46.1375166841518,0.564902102973169,1,0,0
+3832,0.00646824951145732,0.0325,3.25,5,46.7891302011801,0.540625897215045,1.75,2.3550406235915,0
+3833,0.0169564208393422,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172
+3834,0.0270152794316209,0.1475,14.75,4,83.452690211427,0.70099476740843,10.25,9.98875714964786,0
+3835,0.0195012591124578,0.065,6.5,3,77.6859806194748,0.713055954088953,5.5,6.49601378807655,0
+3836,0.0139374053238953,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,4.41421356201172,0
+3837,0.0189584473598734,0.12,12,5,73.0804530961048,0.653547671840355,4.25,4.52381038665771,0
+3838,0.0243090497466346,0.14,14,6,77.0055309329637,0.748261807719971,9.25,4.41393981661115,0
+3839,0.014128248912275,0.03,3,6,33.3339461453335,0.332929047907823,0.75,10.4044205347697,0
+3840,0.0265910108989738,0.1525,15.25,3,88.3089212192867,0.710580508710414,13.25,5.08223949494909,0
+3841,0.0229929104809935,0.1625,16.25,5,80.0568309728109,0.756967375511821,8.5,12.1616407541128,0
+3842,0.0346312521330947,0.3175,31.75,3,94.2589822032967,0.816056958914102,30,2.89845843577948,0
+3843,0.0112905979067409,0.09,9,2,85.1312371433222,0.816849816849817,8.5,3.42456309000651,0
+3844,0.028077439153767,0.295,29.5,2,91.5837852075304,0.834294425664479,16,2.4709198515294,0
+3845,0.0233427877584768,0.2425,24.25,5,89.7458248976763,0.757217101020447,20,1.88952856948695,0
+3846,0.0402789503720123,0.3875,38.75,3,94.4098469005072,0.828141783029001,35,1.17465205038747,0
+3847,0.0625492522686545,0.68,68,1,98.8806414464123,0.853228962818004,68,1.34637207143447,0
+3848,0.0392344347866947,0.3975,39.75,3,93.981350084839,0.840845790939578,33.75,1.0062893081761,0
+3849,0.0353616088757371,0.2425,24.25,6,87.015227451425,0.787564963392891,20,1.57991141879681,0
+3850,0.0420498655246047,0.3925,39.25,3,94.0987718160381,0.811385459533608,35,2.37214271885574,0
+3851,-0.0352524872732465,0.16,16,2,90.8173346757834,0.819302721088435,15.5,1.015625,0
+3852,-0.00997813354849995,0.0475,4.75,4,59.0810207824286,0.637976287446828,2.5,1.57894736842105,0
+3853,-0.000589920153543062,0.1125,11.25,4,82.5630160604689,0.807264640474425,9.5,2.53649190266927,0
+3854,0.000885863383039123,0.04,4,4,55.2401117590713,0.565972222222222,1.5,3.38388347625732,0
+3855,-0.0231439978228286,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,1.66666666666667,0
+3856,-0.000948702718187633,0.035,3.5,4,56.4246256514146,0.585492227979275,2.25,0.357142857142857,0
+3857,0.00387742727481054,0.1175,11.75,5,75.2393937306467,0.631728045325779,5.25,1.81537181773084,0
+3858,0.0145535552621459,0.1975,19.75,3,85.0457291101057,0.786381842456609,10.25,2.22335380843923,0
+3859,0.0220977839802617,0.1875,18.75,5,83.2619118615224,0.785547785547786,10.25,4.26838727315267,0
+3860,0.000575377017353276,0.03,3,3,52.8348194941446,0.575500303214069,1.25,5.69585259755452,0
+3861,0.0237787806916822,0.2225,22.25,6,81.0101782490323,0.692612590750066,10,2.93621084663305,0
+3862,0.00967494000069337,0.0725,7.25,5,67.3209220477973,0.72472328955669,4.5,2.03938398690059,0
+3863,0.0157134654430411,0.1125,11.25,5,73.1125078225726,0.629355077835434,4.75,3.37935706244575,0
+3864,-0.000302694366328069,0.075,7.5,3,76.4895436045393,0.735245449531164,5.5,1.16666666666667,0
+3865,0.00662036986238945,0.1125,11.25,3,80.2993654774927,0.77761304670126,6.25,2.11900753445095,0
+3866,0.0216198061406612,0.1425,14.25,6,73.104332248144,0.666805497709288,3.75,2.26565150210732,0
+3867,0.0213204387591327,0.19,19,5,83.7839231773107,0.769670167680118,11.5,3.18644593891345,0
+3868,0.0138629083674596,0.1275,12.75,3,82.7256610501808,0.789217139281362,9.25,1.94396344353171,0
+3869,0.0150628429923427,0.0875,8.75,3,77.7780179506658,0.829948039678791,7,3.69898888724191,0
+3870,0.000980991782926139,0.02,2,3,41.2877050769818,0.489795918367347,0.75,2.5,0
+3871,-0.00610486767196562,0.0175,1.75,1,65.4774238937655,1,1.75,7.9032107761928,5
+3872,0.0168768791260663,0.2025,20.25,2,91.2370618308376,0.869383490073145,18.25,3.41402072671019,0
+3873,-0.0278260244106605,0.09,9,1,87.719298245614,0.926739926739927,9,3.81648731231689,0
+3874,0.0201395439189946,0.405,40.5,3,94.2075107162253,0.887203203429023,36.25,0.154320987654321,0
+3875,0.0838119998463662,0.6475,64.75,2,97.1766705067086,0.929809168677341,60.25,0.424710424710425,0
+3876,0.0173938429504778,0.3175,31.75,1,95.9225630587777,0.936571365142794,31.75,0.69489297341174,0
+3877,-0.0900625726114958,0,0,0,NA,NA,0,NA,NA
+3878,-0.0225746794251609,0.3275,32.75,1,96.0662730877785,0.956448025384579,32.75,99.7691231938719,62.6498222351074
+3879,-0.0210244340366626,0.25,25,1,94.7368421052632,0.940740740740741,25,75.8246483230591,57.0087738037109
+3880,-0.0604590040177573,0,0,0,NA,NA,0,NA,NA
+3881,-0.0572027657501167,0,0,0,NA,NA,0,NA,NA
+3882,-0.0553758437512442,0,0,0,NA,NA,0,NA,NA
+3883,-0.113143571802157,0,0,0,NA,NA,0,NA,NA
+3884,-0.0608552165138826,0,0,0,NA,NA,0,NA,NA
+3885,-0.0116206984300152,0,0,0,NA,NA,0,NA,NA
+3886,-0.0245151971398263,0,0,0,NA,NA,0,NA,NA
+3887,-0.0437657609954476,0,0,0,NA,NA,0,NA,NA
+3888,-0.0560630711633712,0,0,0,NA,NA,0,NA,NA
+3889,-0.0532488256203942,0,0,0,NA,NA,0,NA,NA
+3890,-0.00365351149135677,0.0575,5.75,1,83.3142722045184,0.882110226937813,5.75,64.331923775051,55
+3891,0.0306256370962365,0.2925,29.25,1,95.5315755048205,0.939995999733315,29.25,95.5088763114734,65.192024230957
+3892,0.00981383473197638,0.2325,23.25,5,86.0452070074492,0.819473333071701,17,102.004583830475,36.4005508422852
+3893,0.0692966124456507,0.3725,37.25,5,92.377972283675,0.842388687010201,32.5,49.6319599407631,5
+3894,0.0336182178002491,0.3475,34.75,2,93.0277665163722,0.879325429148943,23.25,27.5195800726362,0
+3895,0.0915865694894092,0.6375,63.75,1,98.6713232517353,0.948059443081806,63.75,7.1299986670999,0
+3896,0.0736888700953568,0.585,58.5,2,98.0612246396199,0.928317388547324,58.25,3.64186340723282,0
+3897,0.054765044646083,0.49,49,2,94.5943555951849,0.833010127127774,27.75,4.17756403708945,0
+3898,0.0262043732742313,0.2625,26.25,2,94.1131962391188,0.885212088601919,25.75,5.28735854739235,0
+3899,0.0124538126368861,0.1825,18.25,1,92.9430371372494,0.904434250764526,18.25,6.72261977522341,0
+3900,0.000812228948179836,0.0625,6.25,1,84.2105263157895,0.92,6.25,29.2858939361572,15.8113880157471
+3901,0.00340517218336572,0.155,15.5,4,83.9769817268739,0.813719044488275,12.5,2.80470146671418,0
+3902,0.0219800707441755,0.2525,25.25,4,87.0629992317904,0.815222010754079,13.75,2.53933047304059,0
+3903,0.0562336554888839,0.54,54,2,97.868960185494,0.81613670776552,53.75,0.208333333333333,0
+3904,-0.0639182360642008,0.05,5,2,76.3172662672173,0.830220713073005,4.5,0,0
+3905,-0.00564773758273077,0.0675,6.75,1,85.0052537126447,0.925182367978054,6.75,0,0
+3906,-0.0508797420014162,0.0225,2.25,2,55.8584010807395,0.744245524296675,1.5,0,0
+3907,-0.0459818269852258,0.0175,1.75,2,49.299249134574,0.618320610687023,1,0,0
+3908,-0.0174191122916091,0.0925,9.25,3,79.6565942225259,0.69290520706318,6.75,0,0
+3909,-0.0467171279528702,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,0,0
+3910,-0.018911405140534,0.125,12.5,2,85.1564048165705,0.811764705882353,9.75,0,0
+3911,0.0021643980434601,0.0825,8.25,1,86.9391941099265,0.919265314360682,8.25,0,0
+3912,0.0276616765641575,0.27,27,1,95.1342058036908,0.922725676150334,27,0.185185185185185,0
+3913,-0.017114126479828,0.045,4.5,2,74.3332443231453,0.844871049059531,4,2.73011864556207,0
+3914,-0.0245851391218639,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,0,0
+3915,-0.0134880577176136,0.1025,10.25,5,71.789766756321,0.660893787089742,4.25,4.41383966585485,0
+3916,0.0583057103598912,0.6375,63.75,2,97.7887574086435,0.867263021209061,62.25,1.43943064072553,0
+3917,0.0197482731532091,0.19,19,4,84.441360343839,0.778883360972913,12.25,0.712396521317331,0
+3918,0.00611648056909189,0.0625,6.25,3,71.8178928946382,0.6,3,1.8,0
+3919,0.00670419305455653,0.035,3.5,2,65.3750124249461,0.792746113989637,2,3.92857142857143,0
+3920,0.0133832171540053,0.0625,6.25,4,66.7450276360751,0.573333333333333,3.5,3.41289901733398,0
+3921,0.0125131668796348,0.035,3.5,3,58.3216942398678,0.637305699481865,1.5,6.03083910260882,0
+3922,0.0105773056892031,0.03,3,4,47.6856322087627,0.514857489387508,1.25,8.49931065241496,0
+3923,0.00644563762933558,0.0575,5.75,3,74.2815363368755,0.852637783672267,5,10.5390330604885,0
+3924,-0.0037696607002789,0.0525,5.25,3,69.2042535454862,0.736147757255937,3.25,3.53057788667225,0
+3925,-0.00024984382216644,0.0225,2.25,2,55.8151493223867,0.573742540494459,1.25,5.49606789482964,0
+3926,-0.0283711161901192,0.005,0.5,2,0,1,0.25,6.0355339050293,5
+3927,-0.0298786582557295,0,0,0,NA,NA,0,NA,NA
+3928,-0.0370075797713071,0,0,0,NA,NA,0,NA,NA
+3929,0.00494231999976364,0.02,2,1,68.0470115164975,1,2,21.9311845302582,15.8113880157471
+3930,-0.00771991850383785,0,0,0,NA,NA,0,NA,NA
+3931,0.00571443457076384,0.08,8,1,86.6550847056172,0.832775919732441,8,0,0
+3932,0.015246067936223,0.105,10.5,5,71.5825301600966,0.669525533086789,3.5,2.93533979143415,0
+3933,0.0176181205347166,0.0575,5.75,5,59.6673571496253,0.587385794282346,2.5,9.92787352852199,0
+3934,0.0168615861159196,0.0325,3.25,4,49.3286888608125,0.540625897215045,1.5,13.1458204709567,0
+3935,0.00890555933860014,0,0,0,NA,NA,0,NA,NA
+3936,0.00511147938850627,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,16.4645992914836,5
+3937,0.00347540845315052,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+3938,0.00490509672529697,0.0025,0.25,1,0,NA,0.25,5,5
+3939,0.00654939369842396,0.005,0.5,1,30.8308651382582,1,0.5,33.6854801177979,32.0156211853027
+3940,0.0177302536569914,0.02,2,3,43.0810370501115,0.591836734693878,1,21.3440024852753,15.8113880157471
+3941,0.00764925651663361,0.01,1,3,15.8692205350002,0.242424242424242,0.5,5.51776695251465,0
+3942,0.0222738960794322,0.14,14,4,81.7052140789344,0.628386478062815,7.5,4.82196824891227,0
+3943,0.0175265348886842,0.0475,4.75,3,70.5370126938154,0.710381029957462,3.75,11.6503505706787,0
+3944,0.0450835981696127,0.4125,41.25,4,94.538162469856,0.876819708846585,38.5,2.44413108825684,0
+3945,0.0100879226536563,0.08,8,5,66.7304741950268,0.665551839464883,4,4.10410970449448,0
+3946,0.0135884466061816,0.09,9,3,83.3966977368433,0.871794871794872,8.5,4.30859894222683,0
+3947,0.0367059052309196,0.3125,31.25,7,84.5258593340864,0.647577092511013,10.25,1.90885397338867,0
+3948,0.0105644550493889,0.13,13,4,78.9537696479056,0.793361746093246,6,1.09752053480882,0
+3949,0.00765982746983354,0.1275,12.75,3,84.1875948599615,0.841912854461022,10.25,3.81303158928366,0
+3950,0.0096115847297915,0.2175,21.75,2,93.1681485639896,0.917551272802226,21.5,0.172413793103448,0
+3951,0.0276043526666035,0.3175,31.75,5,85.6553449013564,0.746285460571175,13.75,1.26939530259981,0
+3952,0.0329075973216459,0.2775,27.75,4,86.2642273414842,0.764705882352941,13,2.24452374432538,0
+3953,0.0199363322781483,0.275,27.5,4,88.3772847865562,0.805926182637325,15,2,0
+3954,0.0153042597974854,0.185,18.5,5,83.700008376345,0.754601226993865,11.25,2.79057858441327,0
+3955,0.0101627206489502,0.1625,16.25,5,84.7151227708903,0.830933826443006,13.75,0.615384615384615,0
+3956,0.0325004730406908,0.25,25,7,82.0936671722372,0.711111111111111,7.75,1.15,0
+3957,0.0407498146220678,0.4175,41.75,4,93.7078519175726,0.788194637980046,35.75,1.98504679788372,0
+3958,0.046652076487153,0.48,48,3,93.520860453919,0.800129645635264,25.75,0.442708333333333,0
+3959,0.0307915179054908,0.22,22,4,88.2117051903746,0.853013228809407,18.25,2.47038117322055,0
+3960,0.0104739948364113,0.0675,6.75,3,76.5703526868339,0.825425525282125,5.75,1.97227435641819,0
+3961,0.0183735250509483,0.08,8,7,60.5565353255727,0.519230769230769,3,7.0630669593811,0
+3962,0.0155037330826508,0.0875,8.75,6,65.8908705412835,0.641001417099669,4.5,3.29492786952427,0
+3963,0.0147641002040336,0.135,13.5,5,78.1162358168439,0.726521225682143,8,2.53441026475694,0
+3964,-6.58945114264497e-05,0.2875,28.75,1,95.4473178079967,0.892037786774629,28.75,1.5577577010445,0
+3965,-0.00827086454272376,0.0575,5.75,2,78.0090690070094,0.73474801061008,4.75,12.7415532651155,0
+3966,0.0265004882057838,0.2625,26.25,2,93.8106267592021,0.806295399515738,25,1.38402357555571,0
+3967,0.00922644671147282,0.045,4.5,4,60.7589582982191,0.612177622648827,2.25,4.5173348320855,0
+3968,0.0130408243126385,0.1725,17.25,3,85.5727923374144,0.770292876582357,12,2.03833262125651,0
+3969,0.0175056434594444,0.1275,12.75,3,82.2301652244034,0.815564996871192,9,1.5175204557531,0
+3970,-0.00106205058882551,0.0675,6.75,2,76.6488469684613,0.825425525282125,4.75,1.37300251148365,0
+3971,0.000420919720594384,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,4.41421356201172,0
+3972,0.00568352713242348,0.105,10.5,2,82.2337263702782,0.858368085608624,6,2.26190476190476,0
+3973,0.028799430209765,0.3,30,2,93.4166259202685,0.934469200524246,27.5,1.53468015988668,0
+3974,0.0780064263040549,0.7025,70.25,1,98.9836843550327,0.783549783549783,70.25,2.98529636478085,0
+3975,0.0978242304967608,0.715,71.5,1,99.0388168843254,0.889128024522272,71.5,0.27972027972028,0
+3976,0.0377304065604949,0.365,36.5,1,96.5515169620803,0.935120469491875,36.5,8.54804717024712,0
+3977,-0.0671660164300988,0,0,0,NA,NA,0,NA,NA
+3978,0.00924472623522888,0.2375,23.75,5,85.173864716533,0.814850530376085,13.25,56.5132441872045,15
+3979,-0.0419295271134933,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,48.4065628051758,39.0512504577637
+3980,-0.0460515898265294,0,0,0,NA,NA,0,NA,NA
+3981,-0.0618882528226823,0,0,0,NA,NA,0,NA,NA
+3982,-0.0791266338666901,0,0,0,NA,NA,0,NA,NA
+3983,-0.102251657484594,0,0,0,NA,NA,0,NA,NA
+3984,-0.042525068953546,0,0,0,NA,NA,0,NA,NA
+3985,-0.0184532999446674,0,0,0,NA,NA,0,NA,NA
+3986,-0.0230525015113744,0,0,0,NA,NA,0,NA,NA
+3987,-0.0354530080407858,0,0,0,NA,NA,0,NA,NA
+3988,-0.0267790423915721,0.1475,14.75,1,91.5590620020185,0.884997987464781,14.75,63.3516868332685,43.0116271972656
+3989,0.0197368917119456,0.17,17,1,92.4981249980877,0.979750936519186,17,74.3196103152107,52.2015342712402
+3990,-0.0101906538621188,0,0,0,NA,NA,0,NA,NA
+3991,-0.0212378330699266,0,0,0,NA,NA,0,NA,NA
+3992,0.0156285690374762,0.03,3,2,62.2896536353828,0.696785930867192,1.5,154.873147328695,136.014709472656
+3993,0.0349506536582294,0.275,27.5,3,91.2390638205452,0.826719805926183,21.75,142.638413585316,109.201652526855
+3994,0.0395856319047743,0.19,19,5,80.713852148134,0.732817394508937,11,121.004411195454,74.3303451538086
+3995,0.0402079033737391,0.295,29.5,4,89.1765366331483,0.754755749983429,17,94.1275544570664,36.4005508422852
+3996,0.0162298177481716,0.1925,19.25,5,83.547362050965,0.781460571844837,10.5,77.4435998000108,5
+3997,0.0246946980794019,0.2825,28.25,1,95.3608329643832,0.945343991255039,28.25,2.42415240802596,0
+3998,0.0844071214547148,0.5525,55.25,1,98.1823916421441,0.945761240982806,55.25,2.60546090484205,0
+3999,0.0516041132326063,0.4575,45.75,3,95.5122481637776,0.901835137567147,43.75,2.19947052001953,0
+4000,0.0336973473159924,0.375,37.5,2,94.8740057814841,0.877818181818182,34.75,4.18020534515381,0
+4001,3.44813493029505e-05,0.0825,8.25,4,74.8089732923595,0.777979614491876,5.5,3.12142620664654,0
+4002,0.0326998290171832,0.3975,39.75,2,93.79024763254,0.852213948729608,25.75,0.125786163522013,0
+4003,0.00348891764377186,0.085,8.5,4,73.4077094546301,0.590163934426229,5,5.18499710980584,0
+4004,-0.000705150682824751,0.125,12.5,4,77.973204840646,0.74453781512605,5.25,3.99793296813965,0
+4005,-0.0255945934253396,0.07,7,3,73.9318044345165,0.78494623655914,5,0.357142857142857,0
+4006,-0.0374738862787899,0.0025,0.25,1,0,NA,0.25,0,0
+4007,-0.0172661934538949,0.1725,17.25,1,92.5909628330769,0.960050935057801,17.25,0.36231884057971,0
+4008,-0.0402757389705948,0.03,3,1,74.8763016215986,0.939357186173438,3,0,0
+4009,-0.0581678172656757,0.0025,0.25,1,0,NA,0.25,0,0
+4010,-0.0185988688374164,0.1225,12.25,1,90.2255639097744,0.864333197666531,12.25,0.204081632653061,0
+4011,-0.0472708206339303,0.08,8,3,82.1681795165348,0.728260869565217,7.25,0.598191738128662,0
+4012,-0.00188782754408749,0.2175,21.75,1,93.9777627911811,0.950530763681336,21.75,0.172413793103448,0
+4013,-0.0538093387979461,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0
+4014,-0.0303729312308133,0.0425,4.25,3,63.9588260140201,0.70757180156658,2.75,0,0
+4015,-0.010938766654117,0.1225,12.25,1,90.2255639097744,0.918599918599919,12.25,0,0
+4016,-0.0082210840262087,0.0425,4.25,3,61.0472407741546,0.66579634464752,1.75,6.85503993314855,0
+4017,-0.00446669648239549,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,1.9047619047619,0
+4018,0.0178181355994775,0.2725,27.25,1,95.1807759450405,0.930224850419523,27.25,1.26435635068001,0
+4019,0.000638292443727551,0.0875,8.75,2,84.306248254537,0.886632026452527,8.25,3.62357973371233,0
+4020,-0.0062706240464118,0.035,3.5,2,70.070453198383,0.740932642487047,3,4.75020108904157,0
+4021,0.00789419167875167,0.0825,8.25,5,70.7513562202132,0.656877586032899,4.5,1.70343040697502,0
+4022,0.0203761223243328,0.14,14,6,72.9769530997116,0.676336609925677,3.5,11.1008442129408,0
+4023,0.0148692962314999,0.0675,6.75,4,71.2763122056695,0.700729471912214,4.75,8.83963203430176,0
+4024,-0.00740521272758087,0,0,0,NA,NA,0,NA,NA
+4025,-0.00326682204712824,0,0,0,NA,NA,0,NA,NA
+4026,0.00227917145732135,0.0025,0.25,1,0,NA,0.25,5,5
+4027,-0.0186876007620958,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+4028,-0.00653201646995512,0,0,0,NA,NA,0,NA,NA
+4029,0.00705586077456246,0.01,1,1,52.6315789473684,0.747474747474748,1,38.9056434631348,35
+4030,0.00398513541128295,0.0175,1.75,1,65.4774238937655,1,1.75,42.0300500052316,38.0788650512695
+4031,-0.0308539021491742,0.0675,6.75,2,77.6982105934207,0.850364735956107,4.75,0.185185185185185,0
+4032,-0.0425337803039292,0,0,0,NA,NA,0,NA,NA
+4033,-0.0105442942148147,0.0675,6.75,1,85.0052537126447,0.825425525282125,6.75,4.79864572595667,0
+4034,0.00873173278589093,0.0325,3.25,4,49.0805680465096,0.598047660063164,1.5,11.4193493769719,0
+4035,0.0102509087901853,0.0125,1.25,1,58.1880425789518,1,1.25,36.220768737793,33.5410194396973
+4036,0.0173188965242298,0.1,10,4,79.8939676284337,0.734660033167496,7.75,10.3002525806427,0
+4037,0.0122325025581858,0.005,0.5,1,30.8308651382582,1,0.5,47.7975978851318,46.0977210998535
+4038,0.00728616936454273,0,0,0,NA,NA,0,NA,NA
+4039,0.00455473654696107,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,16.4149459203084,15
+4040,0.00398681253203449,0.0325,3.25,2,64.4889415222974,0.770312948607522,2,5.63725163386418,0
+4041,0.00850487222893321,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047
+4042,0.0271444015950237,0.12,12,2,87.458216774975,0.847560975609756,11.25,4.80578780174255,0
+4043,0.0103771951056979,0.0325,3.25,3,58.4284697750696,0.770312948607522,2,2.46700521615835,0
+4044,0.0254285659679863,0.1475,14.75,3,84.6842056590128,0.792996377436605,8.25,1.65902467501366,0
+4045,0.00608779723469297,0.0375,3.75,3,67.2858037951689,0.622195985832349,3,2.58927625020345,0
+4046,0.0269285064206633,0.175,17.5,5,84.5000435467624,0.753633899975364,12.25,1.74894866943359,0
+4047,0.0283838908916732,0.2025,20.25,6,80.3451785818861,0.747474747474748,10.75,5.48496196888111,0
+4048,0.0200705774145763,0.1725,17.25,7,73.8182800996932,0.660432947991311,5,2.75877302971439,0
+4049,0.00502138189041943,0.145,14.5,6,74.0522741882347,0.684210526315789,5.75,1.50122530706998,0
+4050,0.00357504524843534,0.12,12,3,80.9099378697055,0.792128603104213,5.75,2.90551273028056,0
+4051,-0.0359837966789564,0.02,2,3,46.9544081498484,0.693877551020408,1.5,3.125,0
+4052,0.000690747344051488,0.045,4.5,3,71.0526315789474,0.844871049059531,4,1.94444444444444,0
+4053,-0.0083009577978919,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,4.45760515001085,0
+4054,0.0071981643575964,0.12,12,2,85.2085386959614,0.83370288248337,10,1.81398057937622,0
+4055,0.00470064325483691,0.25,25,2,90.5567761371746,0.866666666666667,16.75,0.45,0
+4056,0.0359034983005631,0.37,37,2,95.933702574572,0.912141978562643,36.5,1.88247801806476,0
+4057,0.0509465949752394,0.545,54.5,4,96.8813268598933,0.805120987386997,52.75,1.87842878289179,0
+4058,0.056495208244196,0.625,62.5,2,98.2831150000722,0.680911680911681,61.75,1.7248528137207,0
+4059,0.046434429954752,0.42,42,5,90.4198095836908,0.799777530589544,20,1.43068654196603,0
+4060,0.0467377122543712,0.4625,46.25,1,97.5240566095389,0.864001087991296,46.25,1.41660036654086,0
+4061,0.0550392338854363,0.535,53.5,3,95.5154620321723,0.729831955476306,42,1.75550380599833,0
+4062,0.0395293630398373,0.425,42.5,4,89.5792431289259,0.78885956382831,17.75,0.394535693000345,0
+4063,0.0101685515847566,0.1475,14.75,2,86.2546505195446,0.838997182450693,10.5,1.13679775949252,0
+4064,-0.0333288239259491,0.1225,12.25,1,90.2255639097744,0.918599918599919,12.25,1.61514562490035,0
+4065,0.0137847355820941,0.1525,15.25,1,91.785591586011,0.888684811042467,15.25,3.14467689639232,0
+4066,0.0201327888874584,0.19,19,3,85.818925825476,0.815736134144094,10,4.5258304947301,0
+4067,0.0136737895046826,0.05,5,5,56.4038012741402,0.592529711375212,2.25,2.76776695251465,0
+4068,0.00890243015686792,0.075,7.5,3,77.1617628582901,0.823496966354109,6.25,1.13807118733724,0
+4069,0.0375554722466222,0.325,32.5,3,94.2787051656578,0.881231442412877,31.25,3.29508438110352,0
+4070,0.00684224268718026,0.125,12.5,5,74.1901977593032,0.717647058823529,4,0.7,0
+4071,0.0238078478149492,0.2475,24.75,3,87.6340624345455,0.74616447049162,12.5,1.75901147091027,0
+4072,0.0154511622798691,0.1675,16.75,2,89.6970368270247,0.774133107466441,14.25,2.61194029850746,0
+4073,0.103359811923074,0.585,58.5,2,97.6249560580831,0.961401670756252,57.75,2.24314807011531,0
+4074,0.0398947186045552,0.255,25.5,5,84.8635787234452,0.743279422011956,10.25,3.97524368061739,0
+4075,0.0605946968559874,0.6425,64.25,1,98.697022509981,0.779015163630548,64.25,4.99964836506528,0
+4076,0.0783967141222092,0.7375,73.75,1,99.1344998974781,0.931359931359931,73.75,15.8388178615247,0
+4077,-0.00959600399524788,0.025,2.5,1,71.9760246298065,0.763313609467456,2.5,65.160871887207,58.5234985351562
+4078,0.034692970979886,0.55,55,1,98.166317237229,0.967479674796748,55,47.9869675116106,15.8113880157471
+4079,-0.0199582282515257,0,0,0,NA,NA,0,NA,NA
+4080,-0.0443819046371937,0,0,0,NA,NA,0,NA,NA
+4081,-0.0606077746945084,0,0,0,NA,NA,0,NA,NA
+4082,-0.104629181465134,0,0,0,NA,NA,0,NA,NA
+4083,-0.135137707814574,0,0,0,NA,NA,0,NA,NA
+4084,-0.0730409932642942,0,0,0,NA,NA,0,NA,NA
+4085,-0.0477669482491183,0,0,0,NA,NA,0,NA,NA
+4086,-0.0349692599048558,0,0,0,NA,NA,0,NA,NA
+4087,-0.0106638133026718,0.2425,24.25,1,94.5753035249093,0.954478206441334,24.25,35.5910102018376,0
+4088,0.019668102592882,0.295,29.5,2,94.1499872291778,0.907204878372108,28.5,67.4793400198726,10
+4089,0.0399398220914009,0.4075,40.75,2,93.6790647275495,0.853727144866385,24.5,24.4089429305375,0
+4090,0.0386562521574342,0.26,26,2,93.2769101238485,0.862696921520451,24.5,30.3378058580252,0
+4091,0.0361892275810169,0.3175,31.75,2,95.0610992303466,0.854114139828426,31,62.345606435941,26.9258232116699
+4092,0.0201671121687832,0.145,14.5,4,81.0482731503438,0.789473684210526,8,67.3068831871296,36.4005508422852
+4093,0.0200840260830955,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,65.0040855407715,53.1507301330566
+4094,-0.00271155612579605,0,0,0,NA,NA,0,NA,NA
+4095,0.053110906807924,0.47,47,2,96.921859874017,0.956625460854479,46.5,79.8227582282208,25.4950981140137
+4096,0.132259506492046,0.9725,97.25,1,99.9261039309117,0.852180339985219,97.25,52.7810734354132,10
+4097,-0.0697306133274105,0.08,8,1,86.6550847056172,0.895484949832776,8,13.7153840661049,5
+4098,-0.0176775531010935,0.135,13.5,2,85.7508731534955,0.875691466219156,10,24.8280951888473,11.1803398132324
+4099,-0.0190039384852389,0.1125,11.25,3,84.4710310673487,0.881393624907339,10.25,3.7007928636339,0
+4100,0.0742624867029372,0.5,50,1,97.819928619089,0.956873315363881,50,2.91768129348755,0
+4101,-0.00936896354076453,0.025,2.5,3,47.9024210673189,0.526627218934911,1,4.5,0
+4102,0.00507032929665002,0.1525,15.25,3,83.8676468887045,0.788501140980687,8.5,1.47540983606557,0
+4103,-0.0231824804780263,0.0075,0.75,1,44.4894453484604,1,0.75,5,5
+4104,0.00483197843343078,0.1275,12.75,2,85.8509438597251,0.894608569640681,10.75,3.28437461105047,0
+4105,0.00833058872811307,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0
+4106,0.0303642045126503,0.3225,32.25,4,91.3059164410728,0.849258067048756,27.25,4.3168809136679,0
+4107,0.0128498709763153,0.2075,20.75,6,80.4385006597396,0.648061117191356,8.75,1.67641127253153,0
+4108,-0.0402870570692176,0.1225,12.25,1,90.2255639097744,0.864333197666531,12.25,0,0
+4109,-0.0501116649771575,0.035,3.5,4,49.9491485217681,0.533678756476684,1.25,0,0
+4110,-0.0178060229955361,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+4111,-0.0296997664310356,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4,0
+4112,-0.0519822266064148,0.03,3,2,62.3313604517085,0.757428744693754,2,3.75,0
+4113,-0.0365462880938139,0.055,5.5,3,71.1141350867235,0.782135076252723,4.25,1.09736980091442,0
+4114,-0.0426536741551081,0.035,3.5,3,60.3695132574486,0.637305699481865,2.25,1.42857142857143,0
+4115,-0.064240673191307,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+4116,-0.00723704795061167,0.0175,1.75,4,32.8947368421053,0.363867684478371,1,0,0
+4117,-0.00670877485215897,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859
+4118,-0.00672372751527291,0,0,0,NA,NA,0,NA,NA
+4119,-0.0127786030124253,0,0,0,NA,NA,0,NA,NA
+4120,0.0107661509980426,0.13,13,3,85.2941544814523,0.767531964354901,11,3.72383865943322,0
+4121,-0.0060790668077243,0,0,0,NA,NA,0,NA,NA
+4122,-0.00218171685506604,0.0675,6.75,3,74.3247211519702,0.825425525282125,5.25,6.34729625560619,0
+4123,-0.000674431017032475,0,0,0,NA,NA,0,NA,NA
+4124,0.00150798025673794,0.02,2,2,54.1958020619036,0.795918367346939,1.5,6.03142595291138,0
+4125,-0.0102427563055244,0,0,0,NA,NA,0,NA,NA
+4126,0.00138092044380755,0.0625,6.25,4,66.4192984331372,0.733333333333333,3,1.88284271240234,0
+4127,0.00235023663921311,0.04,4,2,69.8932782516112,0.826388888888889,3,1.5625,0
+4128,0.0250447002222245,0.1575,15.75,3,87.8061964148488,0.751820879417319,13.25,1.93763599698506,0
+4129,0.00962334565689162,0.0425,4.25,3,61.6259047094115,0.70757180156658,2,4.77724726059858,0
+4130,0.027097200049102,0.255,25.5,5,87.5520506057562,0.750614295668757,19,4.59217421213786,0
+4131,0.00742069061662505,0.0975,9.75,3,79.5295564104063,0.795440017046665,7.25,2.72341547256861,0
+4132,0.0207080071175255,0.2075,20.75,3,86.9158852539652,0.759651494667268,10,2.4281407091991,0
+4133,0.00341483511340812,0.0075,0.75,1,44.4894453484604,1,0.75,26.5499521891276,25
+4134,-0.0240299086573759,0,0,0,NA,NA,0,NA,NA
+4135,0.0110539335534304,0.0575,5.75,3,73.0479770648937,0.73474801061008,4.5,3.54360066289487,0
+4136,0.0135477418831761,0.03,3,4,45.8904501860257,0.514857489387508,1.25,3.92258898417155,0
+4137,0.000861672837941114,0.035,3.5,2,71.13601550507,0.896373056994819,3.25,2.64793341500419,0
+4138,0.0116856098105632,0.025,2.5,3,48.7490195044348,0.605522682445759,1.25,14.025276184082,5
+4139,0.0134818797726257,0.035,3.5,5,52.8690006627922,0.637305699481865,2.5,14.3732858385359,5
+4140,0.012111058067494,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,6.43138398064507,0
+4141,0.00839189225465816,0.04,4,1,78.9473684210526,0.782986111111111,4,4.15642595291138,0
+4142,0.00067928578122519,0,0,0,NA,NA,0,NA,NA
+4143,0.0033974486459465,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+4144,0.0160545195828036,0.03,3,3,54.6658847081426,0.636143117040631,1.75,3.01502831776937,0
+4145,0.0209585662826066,0.12,12,6,74.816164494393,0.667405764966741,7.5,3.13446172078451,0
+4146,0.0351541341791199,0.285,28.5,6,82.4004728357964,0.660533641116165,7.5,3.37657466687654,0
+4147,0.0438404660966228,0.35,35,5,91.6422810588885,0.783653846153846,28.75,3.87029928479876,0
+4148,0.0224493141225139,0.16,16,7,79.056194899553,0.638605442176871,8.5,1.25,0
+4149,-0.0261372185045911,0.05,5,3,65.9190959828982,0.694397283531409,2.75,1.75,0
+4150,-0.0432807808781217,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,2.01184463500977,0
+4151,0.00300561077082421,0.085,8.5,5,76.6652872608395,0.687743950039032,6.75,5.31103639041676,0
+4152,0.000416211232318346,0.0375,3.75,2,71.305744570345,0.763872491145218,3.25,6.05325876871745,0
+4153,0.0289954082038184,0.3025,30.25,2,91.7529033526453,0.869664385793418,15.5,18.0054272107842,0
+4154,0.0373028532868557,0.29,29,3,93.3242594828928,0.832327297116029,27.25,3.12742884405728,0
+4155,0.00802732232281414,0.085,8.5,3,74.8465569484731,0.746291959406714,5,0.735294117647059,0
+4156,0.0232596047015068,0.0925,9.25,6,74.1797618213171,0.584518809556067,6,2.84744159595386,0
+4157,0.0287100596437995,0.2125,21.25,6,78.586626447692,0.680437296331336,5.5,3.41266703886144,0
+4158,0.0316885210602049,0.26,26,6,85.8523563291427,0.747073276485041,13.5,2.29119491577148,0
+4159,0.0228176413328492,0.13,13,6,73.9375513644768,0.728787291747385,7.5,3.68894789769099,0
+4160,0.0526823974327999,0.51,51,3,96.3346548959344,0.833073070917021,47.5,3.20907289841596,0
+4161,0.0397362959436941,0.385,38.5,4,95.6917073056586,0.787411301674854,37.5,1.51483293013139,0
+4162,0.0304081646085615,0.4075,40.75,1,97.0183110527583,0.864978902953587,40.75,0.626202870000359,0
+4163,0.00964848863406587,0.3125,31.25,2,92.1450275463605,0.89747697236684,19.75,0.72,0
+4164,-0.0408871685872145,0.0925,9.25,1,87.9580013362782,0.963871200830962,9.25,1.62162162162162,0
+4165,0.0021136376229515,0.0425,4.25,4,61.2204737286666,0.62402088772846,2.75,1.17647058823529,0
+4166,0.00661348403709781,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,1.76470588235294,0
+4167,0.0119853521470975,0.0175,1.75,3,44.8240830231146,0.491094147582697,1.25,5.29586683000837,0
+4168,0.0137415878893808,0.145,14.5,5,79.4175718326221,0.707602339181287,7,3.90522095252728,0
+4169,0.0662583590100439,0.6125,61.25,1,98.5381414210533,0.836596703761093,61.25,1.6017404361647,0
+4170,0.0232229344116786,0.3275,32.75,6,87.6357592052281,0.813348680219626,17.75,0.534351145038168,0
+4171,0.0139744255200185,0.27,27,3,92.2402787060982,0.859501229364243,23.5,0.972222222222222,0
+4172,-0.00478228657506406,0.1725,17.25,3,88.5082667983625,0.870165538937854,15.75,1.54495128686877,0
+4173,-0.0105853858377304,0.0375,3.75,3,58.764858570913,0.480519480519481,1.5,27.1755532582601,15
+4174,0.0481302623310694,0.335,33.5,1,96.169806046512,0.963022309873043,33.5,0.335820895522388,0
+4175,-0.00711132857424673,0.4275,42.75,3,93.9541385245942,0.866916198793928,36.75,26.555118817335,0
+4176,0.0110430652324794,0.51,51,1,97.8932627156421,0.951537343169458,51,22.4135376705843,0
+4177,-0.0180803335003384,0,0,0,NA,NA,0,NA,NA
+4178,0.0112309715314586,0.1325,13.25,3,86.3380688960196,0.898660417392406,12.25,27.1596158585458,11.1803398132324
+4179,-0.0204234205929697,0.0325,3.25,2,68.6830534279938,0.712891185759403,2.75,40.2039513221154,35
+4180,0.00948003755802347,0.21,21,1,93.778005777053,0.983009090136777,21,119.194898968651,100
+4181,-0.0414567033577453,0.0075,0.75,1,44.4894453484604,1,0.75,97.1645914713542,96.1769180297852
+4182,-0.123720083199441,0,0,0,NA,NA,0,NA,NA
+4183,-0.148822790700942,0,0,0,NA,NA,0,NA,NA
+4184,-0.049070392572321,0,0,0,NA,NA,0,NA,NA
+4185,-0.0387685814734141,0,0,0,NA,NA,0,NA,NA
+4186,-0.0567997875926085,0,0,0,NA,NA,0,NA,NA
+4187,0.038258665926769,0.4975,49.75,3,94.8745566009676,0.854386603567528,37.75,25.9362550284994,0
+4188,0.0794338675122708,0.655,65.5,2,97.034043740896,0.911449570530417,60,81.7263225671899,38.0788650512695
+4189,0.0985541050264146,0.7175,71.75,1,99.0496701463057,0.882005899705015,71.75,84.4048017707851,29.1547584533691
+4190,0.0488255283807302,0.44,44,2,96.6417541339063,0.950549450549451,43.5,74.8396249684421,15.8113880157471
+4191,0.00423647573676135,0.34,34,2,92.8877860006827,0.883919843597263,26.25,32.2797461397508,5
+4192,0.035595645683934,0.455,45.5,3,92.8202911012874,0.814880352816269,23.75,33.9166911827339,10
+4193,0.0816238620898366,0.765,76.5,2,97.9891198630169,0.882001548729673,73,81.5502303005044,40
+4194,0.0343366369208888,0.3925,39.25,2,96.4994412527648,0.874256973022405,39,40.6946603447009,0
+4195,0.0253841560085948,0.2625,26.25,2,94.2599403169796,0.827818132902879,25.75,14.9354828062512,0
+4196,0.0564280059484736,0.71,71,1,99.016938641085,0.922510654784967,71,31.1101549712705,0
+4197,-0.0203496822854504,0.16,16,2,90.79710342609,0.946853741496599,15.75,15.7293988466263,0
+4198,-0.00999453330012329,0.17,17,3,86.5660393141272,0.878505619115116,11.75,19.070626932032,0
+4199,-0.0419402158109369,0.0075,0.75,1,44.4894453484604,1,0.75,5,5
+4200,-0.0190388597235142,0.2875,28.75,1,95.4473178079967,0.939271255060729,28.75,73.635941049327,43.0116271972656
+4201,-0.00472539441458139,0.0025,0.25,1,0,NA,0.25,0,0
+4202,0.0102759998777765,0.125,12.5,2,89.0144825150124,0.892436974789916,12.25,4.77213493347168,0
+4203,0.00757643176679267,0.0925,9.25,2,82.9489990500574,0.837420403739331,7.75,2.75867750837996,0
+4204,0.00944033034307722,0.11,11,2,83.2925665299046,0.787427877315518,7.25,2.95454545454545,0
+4205,0.0235119285607652,0.2425,24.25,1,94.5753035249093,0.939304275255112,24.25,1.08247422680412,0
+4206,0.018947605295939,0.16,16,4,83.2603852769114,0.819302721088435,12.5,6.53124892711639,0
+4207,0.0459906075318213,0.4425,44.25,5,89.4268826291943,0.731215973450721,19,7.52933195081808,0
+4208,0.0126219165131079,0.1525,15.25,4,84.7164801825392,0.73284354650192,11.75,12.6750350702004,0
+4209,0.0188842056296335,0.1375,13.75,5,84.1460298293126,0.731502669717773,11.5,2.09090909090909,0
+4210,0.0182042792381435,0.155,15.5,3,88.1335930157995,0.90138067061144,14.5,0.51727528725901,0
+4211,0.00578852449606529,0.22,22,1,94.042067560231,0.88567695574065,22,0.397727272727273,0
+4212,0.000373131134401774,0.17,17,3,85.3301935699518,0.777260301711046,12,0.735294117647059,0
+4213,-0.00496345490115345,0.12,12,5,75.4749011023078,0.611973392461197,6.5,0.459813912709554,0
+4214,-0.0127181594251215,0.175,17.5,2,91.0889198445999,0.921162847992116,17,4.31686613900321,0
+4215,-0.0439847073185956,0.0675,6.75,3,75.9252764268604,0.800486314608143,5.25,0,0
+4216,-0.0261978468377492,0.0675,6.75,2,81.5222116982841,0.800486314608143,6.25,0,0
+4217,-0.00119672384858859,0.035,3.5,2,68.5078421627077,0.689119170984456,2.75,7.12530163356236,0
+4218,-0.00704705654487043,0,0,0,NA,NA,0,NA,NA
+4219,0.00603427636187917,0.0325,3.25,5,52.6315789473684,0.540625897215045,2.25,4.41488794180063,0
+4220,0.00233689193520149,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,17.1895917256673,11.1803398132324
+4221,0.0100425098598635,0.0425,4.25,3,61.9812491572988,0.66579634464752,2.25,13.8037092545453,0
+4222,0.0201184377951358,0.115,11.5,3,79.4957701595074,0.797189627698102,6,4.91519811879034,0
+4223,0.00532815162247971,0.02,2,2,58.1510768543717,0.795918367346939,1.75,25.9614682197571,7.07106781005859
+4224,0.00911920167257904,0.03,3,3,53.8251783921332,0.636143117040631,1.25,22.0206432342529,10
+4225,0.00290592349876533,0.08,8,2,82.45961647842,0.853678929765886,7.25,2.47319173812866,0
+4226,0.014520084747096,0.2125,21.25,2,92.8070961834859,0.865447282665826,20.75,2.22520159553079,0
+4227,0.0163444209013988,0.1675,16.75,3,84.6754811074483,0.835733169066502,11.5,2.91044776119403,0
+4228,0.0508911092688504,0.5825,58.25,3,95.9683878418727,0.867850505884782,52,0.631206299613985,0
+4229,0.0239792227333146,0.26,26,2,92.2776355921477,0.913282266223443,23,2.24590272169847,0
+4230,0.000958690652187215,0.0375,3.75,3,58.8003676892038,0.669421487603306,1.75,12.901576868693,0
+4231,-0.0367333227057225,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,5,0
+4232,-0.00553074414242474,0.055,5.5,3,69.3191633835973,0.782135076252723,3.75,2.78241833773526,0
+4233,0.0161940883161878,0.1075,10.75,3,83.2137930141788,0.859943977591036,9.5,4.5092176393021,0
+4234,0.0155873594906552,0.0675,6.75,4,67.6747851381951,0.65085105056425,2.5,4.35985254358362,0
+4235,0.0125128141023015,0.1325,13.25,4,79.7822125504897,0.771985939132913,8.75,8.73114261987074,0
+4236,-0.0157457144136788,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+4237,0.00622366771694033,0.06,6,4,67.1984746734843,0.58006718924972,3.25,8.81475957234701,0
+4238,0.0189949548379354,0.075,7.5,5,66.3124794113863,0.646993932708218,2.75,16.3514472961426,0
+4239,0.0148915645388189,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,2.5,0
+4240,0.0190916524904605,0.0625,6.25,5,70.5362662379784,0.573333333333333,4.5,15.8938111114502,5
+4241,0.00358793481028442,0,0,0,NA,NA,0,NA,NA
+4242,-0.000161992399580413,0,0,0,NA,NA,0,NA,NA
+4243,0.0157317502160254,0.07,7,1,85.3702908942512,0.73715651135006,7,3.79332869393485,0
+4244,0.0362609785646646,0.2825,28.25,3,91.350788998183,0.781375965020154,22.75,3.58562202791197,0
+4245,0.031419356368674,0.2725,27.25,5,87.0047838843971,0.651124252097615,12.75,1.94099580257311,0
+4246,0.0137406972842746,0.0875,8.75,4,72.5449713249592,0.678790741615494,4.5,1.97548958914621,0
+4247,0.017358146872557,0.195,19.5,4,85.3504167840203,0.783958952200918,13.5,2.2591436337202,0
+4248,0.017170299094505,0.1075,10.75,4,76.0106866849247,0.797696856520386,7.75,2.73008240100949,0
+4249,0.0113603668216092,0.1075,10.75,3,81.036747905842,0.797696856520386,6.75,1.49167757256086,0
+4250,-0.0195691539532169,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+4251,0.010461410216958,0.0925,9.25,4,72.4221520962428,0.747098405816737,3.25,6.37681806409681,0
+4252,0.00530857283154546,0.0925,9.25,4,74.2158962476294,0.747098405816737,5,20.6612610688081,0
+4253,0.00526881491757194,0.1875,18.75,3,86.4908861480266,0.878787878787879,10.25,15.0226747131348,0
+4254,0.0217672672311164,0.2275,22.75,5,85.5947286506208,0.744296615925526,14,2.39872825538719,0
+4255,0.0550476988981245,0.4825,48.25,3,95.6351010301355,0.848865139125037,43.25,3.51097688032555,0
+4256,0.0405625311857875,0.355,35.5,8,89.3162076036347,0.713774597495528,28.25,1.04041509225335,0
+4257,0.0191686581359704,0.1975,19.75,3,90.7746740155064,0.777481085892301,18,3.51677950122688,0
+4258,0.0362229951757035,0.3525,35.25,5,88.7072707023068,0.754571847595104,21.5,2.98697932899421,0
+4259,0.0164197963181505,0.1625,16.25,8,72.7209059180274,0.640734381191388,6.75,3.59891110933744,0
+4260,0.0403545763732473,0.44,44,3,93.8433967970534,0.791208791208791,29.75,0.920858339829878,0
+4261,0.0231355787022517,0.1475,14.75,7,78.6612643711596,0.689494566154908,9.25,0.593220338983051,0
+4262,0.0716970811576175,0.7725,77.25,1,99.2749460632782,0.765869868962652,77.25,0.718676594854559,0
+4263,0.0381975716160377,0.485,48.5,2,94.5753035249093,0.82740021574973,24.25,0.902061855670103,0
+4264,-0.013197931476825,0.1925,19.25,4,89.1528682762288,0.826989619377163,17.5,2.43368237978452,0
+4265,0.0106933248009409,0.1125,11.25,7,67.3310826440284,0.599703484062268,2.5,1.33333333333333,0
+4266,0.0142340703628315,0.0775,7.75,5,64.1755305478591,0.609756097560976,2.25,2.52529907226562,0
+4267,0.00705677131569246,0.0475,4.75,3,65.9103482695844,0.710381029957462,2.75,3.5300562005294,0
+4268,0.00918681638184353,0.2425,24.25,3,90.4788445542235,0.886195516103334,21.25,1.02208387237234,0
+4269,0.0280116825485311,0.3175,31.75,3,91.4968007441127,0.822399822399822,26,1.62372601126123,0
+4270,-0.135920156427746,0,0,0,NA,NA,0,NA,NA
+4271,-0.00835553471479216,0.19,19,2,90.8970666498295,0.907868067072047,18,0.723684210526316,0
+4272,-0.0544854522530659,0.0175,1.75,1,65.4774238937655,1,1.75,2.14285714285714,0
+4273,0.0506500156660604,0.3825,38.25,2,93.6520262320533,0.90202717305171,31.75,6.58228629866457,0
+4274,0.0378283163488959,0.3775,37.75,3,93.3548796842672,0.866614472329752,34,1.59574494772399,0
+4275,0.0208752040813488,0.6225,62.25,1,98.5923763102686,0.965892618594207,62.25,33.204558039286,7.07106781005859
+4276,-0.0271405869588489,0.2875,28.75,1,95.4473178079967,0.9527665317139,28.75,22.2502705283787,5
+4277,-0.00991715152071265,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,3,0
+4278,-0.00860198537057386,0,0,0,NA,NA,0,NA,NA
+4279,-0.0209367775471901,0,0,0,NA,NA,0,NA,NA
+4280,0.0216431823307357,0.3775,37.75,1,96.6969635918825,0.96520377539037,37.75,149.490637469765,110.453605651855
+4281,-0.0357556696358142,0,0,0,NA,NA,0,NA,NA
+4282,-0.0651294542686082,0,0,0,NA,NA,0,NA,NA
+4283,-0.0660932759568095,0,0,0,NA,NA,0,NA,NA
+4284,-0.0458583453856409,0,0,0,NA,NA,0,NA,NA
+4285,-0.0430313008482335,0,0,0,NA,NA,0,NA,NA
+4286,-0.034075760304404,0.0125,1.25,1,58.1880425789518,1,1.25,0,0
+4287,0.0277856083170627,0.3825,38.25,4,94.0598348286078,0.763712593830594,33.5,4.24033504062229,0
+4288,0.0403989824204473,0.325,32.5,1,96.0309682178207,0.906235349273324,32.5,51.6580120673546,25
+4289,0.0179883102617714,0,0,0,NA,NA,0,NA,NA
+4290,0.0068652342385019,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,91.7477486020043,82.4621124267578
+4291,0.0418751176061232,0.39,39,1,96.835360326048,0.960015993602559,39,84.3327536216149,60.4152297973633
+4292,0.00244759214667283,0.12,12,2,88.2989819813811,0.944567627494457,11.75,96.4148406982422,72.8011016845703
+4293,0.103679548613363,0.6875,68.75,1,98.9155506404681,0.975193798449612,68.75,100.791978399103,50
+4294,0.117393014410627,0.81,81,1,99.4152046783626,0.922600619195047,81,56.7873988445894,5
+4295,-0.055675702256849,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,12.2250385284424,5
+4296,-0.0469483639261307,0.0525,5.25,1,82.2928536593692,1,5.25,11.6807753245036,5
+4297,0.0105262080141983,0.1175,11.75,2,84.8304359692,0.844192634560907,9.75,19.6443409209556,0
+4298,0.0253206335500909,0.31,31,1,95.8102472617487,0.916264090177134,31,24.8968240368751,0
+4299,-0.0494524271963746,0,0,0,NA,NA,0,NA,NA
+4300,-0.00933485313181905,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,99.36803654262,95
+4301,0.0438417769775333,0.405,40.5,2,93.7207569776173,0.836444644972083,26.75,2.02293838689357,0
+4302,0.033498730238789,0.31,31,2,92.038561171401,0.800322061191626,20.25,1.3070247404037,0
+4303,0.0208102572262214,0.21,21,1,93.778005777053,0.881063630957438,21,1.39370318821498,0
+4304,-0.00736297306568304,0.135,13.5,3,86.9596003639597,0.813537199328734,12,1.55818769666884,0
+4305,0.000798920019396974,0.065,6.5,2,78.1238490241854,0.765227598800052,5.25,1.53846153846154,0
+4306,0.0164255639866678,0.165,16.5,4,83.2091712714526,0.802134860713356,9.25,0.788955572879676,0
+4307,0.0207154614328829,0.22,22,1,94.042067560231,0.934672546137514,22,1.875,0
+4308,0.0103755591718618,0.0975,9.75,3,83.205456717178,0.744300021308332,8.5,4.02746327718099,0
+4309,-0.00497926060001191,0.0675,6.75,1,85.0052537126447,0.875303946630089,6.75,4.5211506596318,0
+4310,-0.00742270088592704,0.05,5,1,81.7256002368443,0.762308998302207,5,3.95710678100586,0
+4311,-0.00438029246612132,0.06,6,1,83.7764057650598,0.860022396416573,6,10.2332697709401,5
+4312,0.000341143593632296,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,11.7714273012601,5
+4313,-0.0018295082957593,0.105,10.5,2,86.5433109935193,0.874104964985443,10,0.595238095238095,0
+4314,0.0202934436371288,0.2775,27.75,2,92.3788349395914,0.896193771626298,22.75,1.43371293351457,0
+4315,-0.00326269630568277,0.3,30,2,94.6497311296921,0.947575360419397,29.5,1.6351100285848,0
+4316,-0.0175800341688955,0.115,11.5,4,80.532833884629,0.797189627698102,9,0.217391304347826,0
+4317,0.00766464256941617,0.0875,8.75,5,69.0773029259772,0.641001417099669,3,1.68977530343192,0
+4318,0.00787809238490354,0.0275,2.75,5,34.7904595213921,0.383033419023136,0.75,9.04400860179554,0
+4319,0.0101173128165101,0.0425,4.25,4,60.5048564501201,0.540469973890339,2.5,5.90713523415958,0
+4320,0.0199353219592194,0.16,16,2,89.6795265549484,0.787414965986394,14.5,3.08478760719299,0
+4321,0.0259810441576701,0.19,19,5,84.7476494309238,0.751243781094527,9,4.03013028596577,0
+4322,0.0065378716205214,0.015,1.5,2,45.0766242787986,0.709934735315446,1,1.66666666666667,0
+4323,0.00920904478601642,0.025,2.5,3,52.9103541849425,0.684418145956607,1.75,35.4884601593018,14.1421356201172
+4324,0.0183464671953243,0.085,8.5,5,70.5568845296337,0.668227946916471,3.75,14.4839447806863,0
+4325,0.0152775613756785,0.04,4,3,67.9341673846635,0.696180555555556,3.25,2.88832521438599,0
+4326,0.0176453258514084,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,5.39344660441081,0
+4327,0.0301560771612435,0.24,24,4,87.8670859500461,0.785801713586291,17,1.59671115875244,0
+4328,0.0775353155014454,0.8375,83.75,2,98.9972764697019,0.79584396646008,83,0.447761194029851,0
+4329,0.0456527375750011,0.415,41.5,5,91.3210039690628,0.726272275291883,22.5,2.35620081568339,0
+4330,0.00590236631822336,0.1225,12.25,5,75.5134173625166,0.755799755799756,7,10.1578339557258,0
+4331,0.0189668603396967,0.16,16,3,87.0264258793707,0.840561224489796,12.25,2.24334192276001,0
+4332,0.00642888725436933,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,7.48479189191546,0
+4333,-0.00689168427013101,0.0675,6.75,2,76.6092397242206,0.825425525282125,3.5,10.7660011715359,0
+4334,0.00118032966502142,0.0725,7.25,4,70.7949918534607,0.701783563686414,3.5,6.12881042217386,0
+4335,0.0187386548882569,0.26,26,4,88.7394968717383,0.804885099002746,20.5,1.96632187183087,0
+4336,0.0227414390874765,0.1475,14.75,4,85.0060399985609,0.827496981197171,12.5,1.65073802107472,0
+4337,0.00351510066349874,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,5.90492553710938,0
+4338,0.00217675985557435,0.0125,1.25,2,43.859649122807,0.594936708860759,1,8.6502815246582,5
+4339,0.0069991405896144,0.075,7.5,4,69.8550017770202,0.713182570325428,3.5,8.81384976704915,0
+4340,0.0106764520761908,0.04,4,3,61.8167382747864,0.609375,2,7.53535068035126,0
+4341,0.0130962720673324,0.045,4.5,3,71.3191782238097,0.689742098119062,3.75,12.4658483929104,5
+4342,0.0159027390781694,0.04,4,4,55.7718973752911,0.565972222222222,2,5.83438944816589,0
+4343,0.00978453446443382,0.0325,3.25,3,56.873919087992,0.540625897215045,1.5,18.9451675415039,0
+4344,0.00933794533198124,0.0425,4.25,2,72.6514752200981,0.66579634464752,3.25,7.40640662698185,0
+4345,0.0132896741346394,0.09,9,4,71.8980291976573,0.688644688644689,3.5,3.98907629648844,0
+4346,0.00477548756844044,0.0675,6.75,4,70.1158604911101,0.625911839890268,4,6.71509622644495,0
+4347,0.00542777313220085,0.03,3,4,53.0874156553448,0.393571861734384,1.75,17.4196960131327,7.07106781005859
+4348,-0.000719893005712038,0.0025,0.25,1,0,NA,0.25,0,0
+4349,-0.00136886994893757,0.0025,0.25,1,0,NA,0.25,10,10
+4350,0.00616037664048577,0.0175,1.75,2,53.5456806074901,0.872773536895674,1.5,7.02030508858817,5
+4351,0.0120563809469604,0.0475,4.75,1,81.114133276783,0.963797628744683,4.75,45.4163734034488,36.0555114746094
+4352,-0.00451008051883036,0,0,0,NA,NA,0,NA,NA
+4353,0.00719631218802533,0.115,11.5,2,83.2869681561077,0.869621903520209,7,3.29425388833751,0
+4354,0.0243502557996544,0.31,31,3,89.7559886806588,0.748792270531401,17.75,2.9562863995952,0
+4355,0.0252982749988587,0.2575,25.75,5,82.6505638106579,0.650559650559651,9.25,1.79956639854653,0
+4356,0.051795176329033,0.515,51.5,4,93.7273965626607,0.779279158030739,33.5,2.31224643373952,0
+4357,0.0366301115939405,0.3575,35.75,3,93.1885320779504,0.756438055068762,29,1.54920055149318,0
+4358,0.0728547201420588,0.5725,57.25,3,95.5846652178839,0.791829300026021,43.25,2.39506782298525,0
+4359,0.0317502858901571,0.225,22.5,5,84.7555208556586,0.799639350831497,13.25,1.3829401228163,0
+4360,0.0699395675794221,0.6575,65.75,3,96.9471134629745,0.822330140211131,61.5,0.975420832180705,0
+4361,0.0519937369692343,0.48,48,4,91.6581981396755,0.783923941227312,26,1.13689724604289,0
+4362,0.0728406825021375,0.81,81,1,99.4152046783626,0.819401444788442,81,0.385802469135802,0
+4363,0.00973945275949518,0.205,20.5,4,82.6542820556348,0.731077857297766,8,1.48867155865925,0
+4364,0.00682495431260804,0.1,10,4,73.1357287916804,0.701492537313433,4,1.42677669525146,0
+4365,0.0375361695979518,0.395,39.5,3,94.1125056755951,0.811912225705329,31.5,0.716989058482496,0
+4366,0.00666205411405826,0.1025,10.25,5,76.242338395323,0.5801542125873,4.75,4.32067722227515,0
+4367,-0.00916148949199851,0.06,6,4,68.2169357308006,0.692049272116461,3.75,4.64731995264689,0
+4368,0.0101680327850863,0.1575,15.75,3,85.2341238474815,0.751820879417319,8.75,2.68991446116614,0
+4369,0.015850802919158,0.1075,10.75,5,79.2322288576993,0.688764394646748,8,2.65446827023528,0
+4370,-0.0701207327693191,0.0275,2.75,3,51.437012348381,0.588688946015424,1.25,3.37009707364169,0
+4371,0.0146775338651605,0.21,21,2,89.3343749702417,0.864072721094215,14.25,1.19047619047619,0
+4372,0.021376677469616,0.1475,14.75,6,79.5232845337442,0.746995572422517,10,5.62445572675285,0
+4373,0.0578301441687654,0.5025,50.25,2,94.9842749878422,0.865278133293815,32.25,15.6957574436321,0
+4374,-0.0380716608273269,0.1825,18.25,1,92.9430371372494,0.971330275229358,18.25,0.205479452054795,0
+4375,0.0440707899298741,0.4675,46.75,1,97.5655534302407,0.826318217590708,46.75,22.5536513303053,0
+4376,-0.0653961663948212,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,12.4642382229076,5
+4377,-0.0167830424314161,0,0,0,NA,NA,0,NA,NA
+4378,-0.0204555479915143,0,0,0,NA,NA,0,NA,NA
+4379,-0.0545541757991305,0,0,0,NA,NA,0,NA,NA
+4380,0.0369210822347486,0.4625,46.25,1,97.5240566095389,0.972800217598259,46.25,149.494217207625,105.948104858398
+4381,-0.0376148232414562,0,0,0,NA,NA,0,NA,NA
+4382,-0.0780311085376889,0,0,0,NA,NA,0,NA,NA
+4383,-0.055889689074902,0,0,0,NA,NA,0,NA,NA
+4384,-0.0510796008573379,0,0,0,NA,NA,0,NA,NA
+4385,-0.0456256871292135,0,0,0,NA,NA,0,NA,NA
+4386,-0.0117921955311022,0.235,23.5,1,94.4060921446443,0.891067538126362,23.5,0,0
+4387,0.0761874714447185,0.72,72,2,98.5841161938501,0.775962045334739,71,0.651905841297574,0
+4388,0.00948195573742851,0.35,35,3,91.2833559973971,0.855769230769231,24.25,21.4591242517744,0
+4389,-0.0275137244939106,0.055,5.5,1,82.8209772257252,0.906629318394024,5.5,76.2567310333252,60.8276290893555
+4390,-0.0141225836487047,0.07,7,1,85.3702908942512,0.95221027479092,7,219.910575321742,205.548034667969
+4391,-0.0346180939460464,0,0,0,NA,NA,0,NA,NA
+4392,-0.0219211659746361,0,0,0,NA,NA,0,NA,NA
+4393,-0.0550191403955978,0,0,0,NA,NA,0,NA,NA
+4394,-0.00492771910060583,0.0575,5.75,2,80.7944553712876,0.73474801061008,5.5,61.7791631947393,40.3112869262695
+4395,-0.016948582183777,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,71.4839884440104,66.7083206176758
+4396,-0.0273516831364032,0.1175,11.75,3,81.8858794913731,0.830028328611898,6,35.0476296607484,5
+4397,-0.0689794082799517,0.04,4,2,72.803776664771,0.739583333333333,3.5,10.495866894722,0
+4398,-0.0261057887440256,0,0,0,NA,NA,0,NA,NA
+4399,-0.106352323889732,0,0,0,NA,NA,0,NA,NA
+4400,-0.0791211421697517,0,0,0,NA,NA,0,NA,NA
+4401,0.000236537512423638,0.0275,2.75,3,51.932222811463,0.588688946015424,1.25,16.4260357943448,0
+4402,-0.00252685474544251,0,0,0,NA,NA,0,NA,NA
+4403,-0.00773094005201528,0,0,0,NA,NA,0,NA,NA
+4404,-0.0345718621970263,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,1,0
+4405,-0.0244220749012698,0,0,0,NA,NA,0,NA,NA
+4406,-0.0194410557913397,0,0,0,NA,NA,0,NA,NA
+4407,-0.0349977038020734,0,0,0,NA,NA,0,NA,NA
+4408,-0.0322242152405119,0.0025,0.25,1,0,NA,0.25,5,5
+4409,-0.0192746821861056,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,3.70118291754472,0
+4410,-0.0204531906527336,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,9.71404520670573,5
+4411,-0.021239157279324,0,0,0,NA,NA,0,NA,NA
+4412,-0.0148230615121065,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,0,0
+4413,-0.00674854148477607,0.0125,1.25,1,58.1880425789518,1,1.25,0,0
+4414,-0.015652647699153,0.005,0.5,1,30.8308651382582,1,0.5,21.4881038665771,20.6155281066895
+4415,0.00479908001649164,0.17,17,3,90.4705015866516,0.807633896932267,16.25,1.90389133902157,0
+4416,0.0110584997200021,0.21,21,3,87.3112465936188,0.813099991504545,13.5,1.45706599099295,0
+4417,0.0107271890440643,0.2925,29.25,2,94.7637059136826,0.879991999466631,28.75,0.512820512820513,0
+4418,0.00492954663836827,0.08,8,2,81.1777435341838,0.874581939799331,7.25,3.20391345024109,0
+4419,0.0155992107689417,0.0825,8.25,3,78.054792375198,0.717428600262388,5.25,6.39852911053282,0
+4420,0.0244928517903827,0.1875,18.75,6,81.1611136919249,0.72027972027972,10,3.75836850484212,0
+4421,0.00266167164532817,0.065,6.5,3,78.8255740930129,0.843485065866701,6,3.1565795311561,0
+4422,-0.00250274755546343,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,5.83110323819247,0
+4423,-9.95698901533615e-07,0.0025,0.25,1,0,NA,0.25,44.7213592529297,44.7213592529297
+4424,0.0383242202995461,0.3675,36.75,1,96.5811989595545,0.923593458424556,36.75,5.1222661336263,0
+4425,0.0242360688755434,0.1875,18.75,1,93.1084153854816,0.878787878787879,18.75,4.22832285563151,0
+4426,0.0383619074477429,0.27,27,2,93.6233411758223,0.824376536705304,24.75,3.99175788738109,0
+4427,0.0342438547899451,0.2525,25.25,4,86.7248601265035,0.785657532474731,14,4.06563065783812,0
+4428,0.0565400451561436,0.5525,55.25,5,93.1938734737566,0.783044963931225,39.25,2.18513694176307,0
+4429,0.0275314530309811,0.2625,26.25,3,91.2108227581519,0.799121155053358,20.75,5.67376545497349,0
+4430,0.0183385973374789,0.09,9,3,79.3912461272194,0.853479853479854,7,4.88770797517565,0
+4431,0.0337864227656792,0.2,20,3,87.6330614798417,0.841549295774648,15.25,17.8577258110046,0
+4432,0.0128040608589163,0.0425,4.25,4,58.1614031190891,0.66579634464752,1.75,25.9876323026769,0
+4433,0.0113579203649806,0.075,7.5,3,75.7417808744913,0.779371207942636,5,7.61048310597738,0
+4434,-0.0126269955067619,0.0225,2.25,3,52.2992512649976,0.658994032395567,1.75,13.7077460818821,10
+4435,0.00886835006902402,0.07,7,3,74.6927519411831,0.71326164874552,4.5,2.15437412261963,0
+4436,0.00116604817230836,0.0375,3.75,3,64.9626786721516,0.763872491145218,3,6.02368927001953,0
+4437,0.023148840845588,0.175,17.5,4,82.1761928030724,0.793052475979305,8.5,4.27463863917759,0
+4438,-0.00380493872740772,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,7.55863952636719,0
+4439,0.000422070685972358,0,0,0,NA,NA,0,NA,NA
+4440,-0.00363887024712312,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5
+4441,-0.000281328336677689,0.0625,6.25,4,65.7049094975663,0.626666666666667,2.75,33.9561855316162,15
+4442,0.0247582525419421,0.1775,17.75,3,87.649923703157,0.815197568389058,14.75,4.28177352690361,0
+4443,-0.00627452136373904,0,0,0,NA,NA,0,NA,NA
+4444,0.00286259912692003,0.0125,1.25,2,43.859649122807,0.594936708860759,1,35.9125968933105,33.5410194396973
+4445,-0.0120562266243542,0,0,0,NA,NA,0,NA,NA
+4446,-0.022640057239114,0.0225,2.25,3,48.4271621843021,0.403239556692242,1.25,3.5956310696072,0
+4447,-0.0156595238391242,0,0,0,NA,NA,0,NA,NA
+4448,-0.0179712926397951,0,0,0,NA,NA,0,NA,NA
+4449,-0.00844973915955052,0.015,1.5,1,62.2896536353828,1,1.5,10.6771326065063,5
+4450,0.0266578396209343,0.1675,16.75,2,87.161009935801,0.85626652293319,10,0.777180116568039,0
+4451,0.0294042318437891,0.2175,21.75,4,84.8823719909743,0.793878182005565,10.75,3.78661760790595,0
+4452,0.0116865447711825,0.12,12,2,88.0388533908558,0.861419068736142,11.5,10.4518103202184,0
+4453,0.0301439644330094,0.235,23.5,5,84.7485765645482,0.774354186118892,15.75,3.99346341478064,0
+4454,0.0289988148627162,0.4275,42.75,2,96.8443713288168,0.900187149095446,42.5,3.71863138745403,0
+4455,0.0397266737589547,0.34,34,5,87.8075230736121,0.767839687194526,19,3.76471014583812,0
+4456,0.0375896660980288,0.35,35,5,90.8644258803267,0.825721153846154,30,0.514793341500419,0
+4457,0.0307001742737839,0.325,32.5,4,90.3597149051986,0.837474605407095,26,2.12307915320763,0
+4458,0.0140003782406529,0.215,21.5,5,82.7361159863945,0.783522750926273,7.75,2.15491250503895,0
+4459,0.0172363413453877,0.15,15,6,75.9575354099241,0.649321266968326,4.75,1.28451779683431,0
+4460,0.064251694950035,0.6325,63.25,2,98.1462847194271,0.690002583311806,61.75,2.19564333829013,0
+4461,0.0436393277163734,0.475,47.5,6,94.032160554378,0.772727272727273,40.25,2.00970811341938,0
+4462,0.0399118382980305,0.4325,43.25,4,92.8000313933882,0.86742711943988,36.75,0.722543352601156,0
+4463,0.0102598002536797,0.195,19.5,5,86.3035106506875,0.783958952200918,16,2.11538461538462,0
+4464,0.0130190816084212,0.055,5.5,5,66.4083617800683,0.719887955182073,4.25,8.35320646112615,0
+4465,0.0209314905891279,0.19,19,4,86.8192356346527,0.705177814630551,12,3.65840123829089,0
+4466,0.031366182895872,0.165,16.5,4,83.1194608896204,0.82296277011195,8.5,3.30411148071289,0
+4467,0.0301011102781467,0.2425,24.25,6,85.0531848618799,0.719282273054892,15,3.2284376793301,0
+4468,0.000472461667477546,0.01,1,1,52.6315789473684,1,1,12.9979319572449,10
+4469,0.014804002301421,0.1225,12.25,4,75.9521955199903,0.647266313932981,4.5,6.17191357515296,0
+4470,0.00273544239397779,0.01,1,1,52.6315789473684,0.747474747474748,1,5,0
+4471,0.0155885421431594,0.1325,13.25,6,77.1164307520485,0.708648700003167,6.75,2.79781643849499,0
+4472,0.00534361617248578,0.115,11.5,6,75.6145099179521,0.623352165725047,6.25,3.50463485717773,0
+4473,-0.0426837320391178,0.03,3,4,48.1770522231756,0.514857489387508,1.25,2.5,0
+4474,-0.0248800235437409,0.15,15,3,84.3526737001981,0.796380090497738,8.25,3.69763590494792,0
+4475,0.0292486231881776,0.315,31.5,2,91.9314542855231,0.847002199343384,16.75,12.4050226060171,0
+4476,-0.0174438944645954,0.0325,3.25,1,76.0684107249879,0.770312948607522,3.25,0,0
+4477,-0.00718550757448611,0,0,0,NA,NA,0,NA,NA
+4478,-0.0349668549927264,0.025,2.5,2,59.7635627407876,0.684418145956607,1.75,12.6008047103882,7.07106781005859
+4479,-0.0785611970771788,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,91.1582919034091,86.3133850097656
+4480,0.00226942578370654,0.2425,24.25,2,92.8972064101684,0.946891240848223,23.75,97.4226100960958,68.0073547363281
+4481,-0.0478634166705888,0,0,0,NA,NA,0,NA,NA
+4482,-0.0778550725150853,0,0,0,NA,NA,0,NA,NA
+4483,-0.070561112430878,0,0,0,NA,NA,0,NA,NA
+4484,-0.0581652488077088,0,0,0,NA,NA,0,NA,NA
+4485,-0.0631835233839229,0,0,0,NA,NA,0,NA,NA
+4486,-0.0244586572249682,0.1875,18.75,2,89.5768465754486,0.897435897435897,16.5,0.788561808268229,0
+4487,0.00641801174046122,0.35,35,1,96.3667973186472,0.795673076923077,35,2.26787932259696,0
+4488,0.0571146006051276,0.6375,63.75,3,97.9279243652024,0.84994950223633,62.75,32.7408360724356,0
+4489,0.0695450818398967,0.89,89,1,99.684221684177,0.824656056110062,89,108.78807853313,60
+4490,0.0138739857364635,0.0925,9.25,2,81.8967258511709,0.801291604570293,6.5,171.052432498416,160
+4491,-0.0216902025334457,0,0,0,NA,NA,0,NA,NA
+4492,-0.0469448661967908,0,0,0,NA,NA,0,NA,NA
+4493,-0.0802290566591546,0,0,0,NA,NA,0,NA,NA
+4494,-0.0228146468194063,0,0,0,NA,NA,0,NA,NA
+4495,0.0131854151064726,0.065,6.5,1,84.6193541959806,0.921742532933351,6.5,65.7664125882662,46.0977210998535
+4496,0.00285524788429029,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,19.4585297902425,11.1803398132324
+4497,-0.016548373915648,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+4498,-0.0518530162748539,0,0,0,NA,NA,0,NA,NA
+4499,-0.111026012790389,0,0,0,NA,NA,0,NA,NA
+4500,-0.0964818931091577,0,0,0,NA,NA,0,NA,NA
+4501,-0.00672462503032875,0,0,0,NA,NA,0,NA,NA
+4502,-0.0054201467418784,0,0,0,NA,NA,0,NA,NA
+4503,-0.0148991075298181,0,0,0,NA,NA,0,NA,NA
+4504,-0.00484740809785762,0.0075,0.75,1,44.4894453484604,1,0.75,45.4264183044434,43.0116271972656
+4505,-0.00772409566293845,0,0,0,NA,NA,0,NA,NA
+4506,-0.0244378323006094,0,0,0,NA,NA,0,NA,NA
+4507,-0.0273090300481908,0.0025,0.25,1,0,NA,0.25,5,5
+4508,-0.00300360619102094,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+4509,0.00664088932825507,0,0,0,NA,NA,0,NA,NA
+4510,-0.0164870405212423,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,16.3983455657959,11.1803398132324
+4511,-0.0271477194041381,0,0,0,NA,NA,0,NA,NA
+4512,-0.0331256621855209,0.0025,0.25,1,0,NA,0.25,0,0
+4513,-0.0197427639897796,0.1025,10.25,1,88.8238145380415,0.903112510597069,10.25,0.78222116609899,0
+4514,-0.035222055119732,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,3.7599048614502,0
+4515,-0.029300766277247,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+4516,0.0127353796747047,0.1025,10.25,4,80.2276168424402,0.741633361592184,8,9.2800860986477,0
+4517,0.0344662767164846,0.375,37.5,3,92.6968097413281,0.877818181818182,31.5,2.77367855072021,0
+4518,-0.0386546752420327,0.0125,1.25,2,43.859649122807,0.594936708860759,1,2.82842712402344,0
+4519,-0.00713310394915197,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,4.35727691650391,0
+4520,0.0159699320091647,0.185,18.5,4,87.0788653092123,0.735724398301085,14.25,2.98649040428368,0
+4521,-0.00493820098789911,0,0,0,NA,NA,0,NA,NA
+4522,0.00247277710728667,0.0775,7.75,2,83.73164788394,0.739837398373984,7.25,4.10946913688414,0
+4523,0.0167481107276399,0.095,9.5,4,72.930730483331,0.596597386652635,3.75,2.47742462158203,0
+4524,0.0177039720131415,0.1275,12.75,2,88.7625674960991,0.841912854461022,12.25,3.99861219817517,0
+4525,0.00142425023434953,0,0,0,NA,NA,0,NA,NA
+4526,0.0308558442811227,0.2375,23.75,3,89.0578208206274,0.830279652844744,15.75,5.48758924383866,0
+4527,0.0220049817879772,0.17,17,2,87.175538521556,0.868381087374709,13,3.34089161367977,0
+4528,0.0287780542521432,0.3225,32.25,4,90.3407828834384,0.817853497683913,25.5,3.64101931845495,0
+4529,0.0211092593661579,0.1525,15.25,3,82.8495683961313,0.8330272165637,7.25,4.42802560524862,0
+4530,0.0338533866434955,0.24,24,2,93.9128000541575,0.869951040391677,23.75,10.2340726852417,0
+4531,0.0264340891069151,0.11,11,4,75.7076871308036,0.757060431217735,4.75,12.0996283617887,0
+4532,0.0174059754159839,0.1025,10.25,3,77.3251825777349,0.757781276492673,5,7.70895241528023,0
+4533,0.0132949172533131,0.1,10,2,82.3278514836259,0.867330016583748,7.75,22.8831892967224,0
+4534,0.0223758923047171,0.1475,14.75,4,78.1480715505769,0.758495773676039,5.5,3.89469638113248,0
+4535,0.00639297316551165,0.025,2.5,3,47.9024210673189,0.526627218934911,1,9.00194835662842,0
+4536,0.0112983427979975,0.0775,7.75,3,75.174031671689,0.826558265582656,4.75,3.78688849172285,0
+4537,0.00701630189028947,0.015,1.5,2,46.1375166841518,0.564902102973169,1,6.17851130167643,5
+4538,0.0074404022374074,0.02,2,3,43.0810370501115,0.591836734693878,1,8.20151090621948,0
+4539,0.0170335757903376,0.055,5.5,5,60.677244642946,0.533146591970121,2.75,9.85872953588312,0
+4540,0.0212188111836622,0.2075,20.75,2,92.2764363485203,0.785403120238632,19.75,3.96593201878559,0
+4541,0.0105852627483728,0.0425,4.25,2,69.5200953136286,0.7911227154047,2.75,23.1891317928539,0
+4542,-0.0278365049605236,0,0,0,NA,NA,0,NA,NA
+4543,-0.0687030425489502,0.015,1.5,1,62.2896536353828,1,1.5,20,15
+4544,-0.00954537997789885,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,33.3919542486017,25
+4545,-0.00495421058247302,0.0425,4.25,1,79.7330921014386,1,4.25,41.4069256502039,32.0156211853027
+4546,-0.043249951609445,0.0075,0.75,1,44.4894453484604,1,0.75,53.68439356486,52.2015342712402
+4547,-0.0429004361375883,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,41.8138144356864,35.355339050293
+4548,-0.0284101905283569,0.0025,0.25,1,0,NA,0.25,36.0555114746094,36.0555114746094
+4549,-0.0161178395796378,0.0975,9.75,1,88.4075627573592,0.948860004261666,9.75,4.73070447872847,0
+4550,0.00266983047198664,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,2.85714285714286,0
+4551,0.0311237618252744,0.2025,20.25,5,80.5023550557281,0.73876698014629,9.25,4.15017389368128,0
+4552,0.0206633916282408,0.155,15.5,5,83.8959218334649,0.726057418365111,10.75,2.24422799387286,0
+4553,0.0442014821741031,0.3675,36.75,6,87.4852216734402,0.670864128598087,14,3.80101477694349,0
+4554,0.0273831226180478,0.2225,22.25,5,82.6705263648706,0.652166879006653,11.25,5.8140077483788,0
+4555,0.0542726400650281,0.565,56.5,2,97.3767238778352,0.792502798481994,53.75,3.61765095195939,0
+4556,0.0292856603306791,0.31,31,3,94.0077963494735,0.793880837359098,29,4.72173486217376,0
+4557,0.0618515737153939,0.6025,60.25,3,94.9090928306231,0.720475192173305,38.75,5.3647740550061,0
+4558,-0.0127644854644495,0.0825,8.25,2,83.4509865174781,0.777979614491876,7.5,4.2827236291134,0
+4559,-0.00387926248697113,0.1725,17.25,6,81.537322100504,0.740331077875709,11.5,2.49845714845519,0
+4560,0.0336572233644983,0.4375,43.75,4,92.0376918588962,0.807361541107671,30.75,3.13533397129604,0
+4561,0.0163682222392242,0.265,26.5,5,88.1922556811961,0.772055419026249,17,1.02964278886903,0
+4562,0.0448262710419658,0.45,45,1,97.417305342106,0.961779961779962,45,1.80078964233398,0
+4563,0.0213644016216676,0.1425,14.25,8,74.8787772412604,0.726304515975486,10,6.19592174730803,0
+4564,0.0127065972735818,0.065,6.5,4,67.8794629579283,0.739141776444502,3.5,10.8924802633432,0
+4565,0.0508161527502671,0.4425,44.25,4,93.8538145436405,0.813496797904582,37.25,3.08183719613458,0
+4566,0.0249832499234617,0.1175,11.75,5,79.718455413152,0.71671388101983,8.25,3.33054635879841,0
+4567,0.0197766232767641,0.1575,15.75,3,90.6252541080983,0.697868896681953,15.25,1.46144552079458,0
+4568,-0.000559405851236079,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,3.33333333333333,0
+4569,0.0152191609280146,0.15,15,4,85.1201348762213,0.830316742081448,12.75,3.36785113016764,0
+4570,0.00848696635721353,0.0275,2.75,3,54.1168226130773,0.657240788346187,1.5,3.47740069302646,0
+4571,0.00548761540911528,0.085,8.5,2,81.5493577776897,0.843871975019516,7,2.91594516529756,0
+4572,0.0759972127035144,0.7075,70.75,1,99.0059126497077,0.903605166763061,70.75,4.07738490155223,0
+4573,0.0957717255974421,0.8175,81.75,2,97.0336558258527,0.769099265114007,48,1.36040615816729,0
+4574,0.0665977303116961,0.525,52.5,3,95.3325915906038,0.811549333692287,44.25,0.839110492524647,0
+4575,0.071021351573072,0.745,74.5,3,96.3703902496425,0.832232358183915,47.25,1.57646673317724,0
+4576,0.0508568766634562,0.4625,46.25,3,94.2528704591706,0.912960696314429,41.25,2.12471004176784,0
+4577,-0.0398224802688992,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+4578,0.00448655364428305,0.1325,13.25,4,79.0626243174227,0.721316147829116,7,4.829574081133,0
+4579,-0.0341240909237968,0.07,7,3,72.7591443453761,0.78494623655914,4.75,7.0997314453125,0
+4580,-0.039389275340709,0.0025,0.25,1,0,NA,0.25,0,0
+4581,-0.102300942786969,0,0,0,NA,NA,0,NA,NA
+4582,-0.101572376294062,0,0,0,NA,NA,0,NA,NA
+4583,-0.053357951302969,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+4584,0.00243622517093172,0.1525,15.25,3,85.1692829274866,0.721712027606167,9.75,7.70402483080254,0
+4585,-0.0566337795035361,0.02,2,1,68.0470115164975,0.897959183673469,2,10,5
+4586,0.057204978119662,0.5825,58.25,1,98.3671391359956,0.862344276963315,58.25,2.27111466043497,0
+4587,0.0342424800150184,0.465,46.5,2,94.6716763975522,0.80439034992393,35,2.47561774715301,0
+4588,-0.0181178821019103,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,73.6262020111084,58.3095169067383
+4589,0.011122057745124,0.3475,34.75,1,96.3348533717898,0.963797628744683,34.75,135.329062537324,85
+4590,0.0179135981014406,0.0475,4.75,2,72.4101107744032,0.818988143723414,3.75,224.584755345395,174.642486572266
+4591,0.0357121461455245,0.055,5.5,3,69.1187784637777,0.657640834111422,3.5,251.866560502486,220.056823730469
+4592,0.0109769866252282,0,0,0,NA,NA,0,NA,NA
+4593,-0.0274589459096933,0,0,0,NA,NA,0,NA,NA
+4594,-0.00650672674822999,0.01,1,1,52.6315789473684,0.747474747474748,1,95.2323112487793,92.195442199707
+4595,-0.00677887333793478,0,0,0,NA,NA,0,NA,NA
+4596,0.000214080185605781,0,0,0,NA,NA,0,NA,NA
+4597,-0.0142416677896108,0,0,0,NA,NA,0,NA,NA
+4598,-0.0253095768408821,0,0,0,NA,NA,0,NA,NA
+4599,-0.00579368732962394,0,0,0,NA,NA,0,NA,NA
+4600,-0.109924200133537,0,0,0,NA,NA,0,NA,NA
+4601,-0.00884598965501027,0.0075,0.75,1,44.4894453484604,1,0.75,57.0227979024251,53.8516464233398
+4602,-0.0111434472990913,0,0,0,NA,NA,0,NA,NA
+4603,-0.00994056082547104,0,0,0,NA,NA,0,NA,NA
+4604,-0.0109491415244929,0,0,0,NA,NA,0,NA,NA
+4605,-0.0105955595586784,0,0,0,NA,NA,0,NA,NA
+4606,-0.034913741430355,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,1.80473785400391,0
+4607,-0.00622019081416511,0.01,1,1,52.6315789473684,0.747474747474748,1,1.25,0
+4608,-2.89888791303383e-05,0.0075,0.75,1,44.4894453484604,1,0.75,13.9972426096598,11.1803398132324
+4609,0.00301371767228375,0,0,0,NA,NA,0,NA,NA
+4610,-0.00175729484537442,0,0,0,NA,NA,0,NA,NA
+4611,-0.00309203417951721,0.01,1,2,34.5233986084855,0.494949494949495,0.75,7.98145580291748,0
+4612,-0.0148963453630131,0.03,3,2,62.733446895491,0.696785930867192,1.75,0.416666666666667,0
+4613,-0.0488641574451322,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0
+4614,-0.0425851386488648,0.03,3,3,55.6416293904177,0.696785930867192,2,7.79782358805339,0
+4615,-0.00195815541804222,0.0725,7.25,3,77.2712295471706,0.862361644778345,6.25,14.914400100708,0
+4616,-0.00449684289528705,0,0,0,NA,NA,0,NA,NA
+4617,-0.00119083474368381,0.1525,15.25,1,91.785591586011,0.79963265987644,15.25,14.8707318227799,7.07106781005859
+4618,-0.006071134146041,0.0775,7.75,6,65.2262607863484,0.609756097560976,3.5,15.9258273340041,10
+4619,-0.00218907523511916,0.11,11,3,80.9962894205273,0.817795323413301,8,5.34384194287387,0
+4620,0.0258546976363368,0.25,25,6,82.2195213268201,0.711111111111111,9,2.7038556098938,0
+4621,0.0122341286110895,0.1925,19.25,2,90.035696423435,0.872518666909488,16.25,0.12987012987013,0
+4622,0.0403717890588814,0.4375,43.75,2,95.0648304255716,0.90092879256966,38.25,0.801842716761998,0
+4623,0.012054824219731,0.25,25,5,83.4102685756427,0.725925925925926,9,0.670710678100586,0
+4624,-0.000193355022256583,0.025,2.5,2,58.7318836713039,0.605522682445759,1.5,3.20710678100586,0
+4625,0.00939975361050983,0.1525,15.25,4,83.4041730063982,0.73284354650192,9.75,3.32725565550757,0
+4626,0.0202897551834576,0.1125,11.25,5,75.0464720389263,0.659006671608599,6,7.91376436021593,0
+4627,0.0430276385265461,0.3525,35.25,6,89.2406797661675,0.778516057585825,23.5,2.32389746321009,0
+4628,0.0112870921206195,0.115,11.5,3,81.1081624927711,0.797189627698102,7.5,4.32383388021718,0
+4629,0.00667890550275388,0.0525,5.25,4,68.8519905456903,0.703166226912929,4,2.97112110682896,0
+4630,0.00930404172286217,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,3.64565717256986,0
+4631,0.0184711572818196,0.065,6.5,2,75.8851035062131,0.739141776444502,3.5,0.769230769230769,0
+4632,0.0225459768326073,0.085,8.5,5,70.6665671202728,0.668227946916471,5,7.83302935431985,0
+4633,0.0216597342896785,0.1275,12.75,5,76.1039612912478,0.657477851332213,6.25,6.25437366261202,0
+4634,-0.00852369981897937,0,0,0,NA,NA,0,NA,NA
+4635,0.0110568218585649,0.04,4,2,68.1529391607007,0.782986111111111,2.25,5.6653094291687,0
+4636,0.0211895838472446,0.2025,20.25,1,93.5672514619883,0.895506792058516,20.25,65.7711113823785,40.3112869262695
+4637,0.00484352994418259,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+4638,0.0170014157319952,0.105,10.5,6,71.5177600838592,0.653788653709969,5.5,8.74945776803153,0
+4639,0.0155017648316061,0.03,3,5,39.9860247601969,0.393571861734384,1,10.6939706802368,0
+4640,0.0191528138600916,0.0825,8.25,4,71.0032956098986,0.737612271672217,3.75,7.44128880356297,0
+4641,0.0273016451150033,0.135,13.5,5,76.4497913846522,0.738952079060227,6.25,4.23381907851608,0
+4642,0.00791512222606116,0.0475,4.75,2,71.7732068996853,0.782785772468097,3.25,13.2681457117984,5
+4643,0.00365966647012101,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,6.2440857357449,0
+4644,-0.00834122297750582,0.0225,2.25,2,55.8704762942355,0.744245524296675,1.25,10.9548185136583,0
+4645,-0.00449515312641552,0.0025,0.25,1,0,NA,0.25,28.2842712402344,28.2842712402344
+4646,-0.00806593348091383,0,0,0,NA,NA,0,NA,NA
+4647,-0.0364761819559499,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,22.8579610188802,21.2132034301758
+4648,-0.0455228999133396,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,15.1294784545898,5
+4649,-0.0240054421499599,0.04,4,2,67.9738222173253,0.826388888888889,2.25,7.68785190582275,0
+4650,-0.000883503041886797,0.1025,10.25,2,86.195059041911,0.886964595696581,9.75,4.45648826040873,0
+4651,0.0293987301896232,0.2225,22.25,8,76.1036413746122,0.635988594309288,5,5.01041371634837,0
+4652,0.0377533104663962,0.255,25.5,7,84.5843082959244,0.743279422011956,15.5,1.8340300765692,0
+4653,0.0506097613750899,0.3875,38.75,3,95.02683746641,0.833870390261368,36,1.26589163503339,0
+4654,0.0157322796196377,0.0325,3.25,5,44.000729295247,0.425782371518806,1,2.08238983154297,0
+4655,0.00369197044416069,0.15,15,2,86.5057275821684,0.830316742081448,10.25,1.95118446350098,0
+4656,0.0161922426455203,0.06,6,4,66.2448928334697,0.608062709966405,3.25,5.35861444473267,0
+4657,0.0514244924203012,0.4275,42.75,1,97.2134830220855,0.905732307479032,42.75,4.16506772849992,0
+4658,0.018102603555717,0.205,20.5,2,89.6558270754278,0.852526566905227,15.75,2.17379765394257,0
+4659,0.065489692889123,0.54,54,2,96.5830041377912,0.745836037205278,46,4.29354455735948,0
+4660,0.0450417311537603,0.365,36.5,5,87.9590288561321,0.681500486596479,13.75,4.2678608437107,0
+4661,-0.0181054904927441,0.15,15,4,82.8235566654453,0.751131221719457,7,0.652368927001953,0
+4662,-0.00184574298154985,0.1525,15.25,4,80.6418972249758,0.688317470918907,8,5.7233751015585,0
+4663,0.0234688698393074,0.1275,12.75,6,76.3726023055503,0.696999637716958,8.25,5.14418141982135,0
+4664,0.0258223447348064,0.14,14,6,80.3853170934931,0.72428674178854,10.5,4.17013226236616,0
+4665,0.0295990999866081,0.325,32.5,3,93.905298411619,0.74996093139553,29.25,1.6565795311561,0
+4666,0.0265382736380775,0.2525,25.25,7,79.7514601478503,0.630444021508158,6.5,1.13331298072739,0
+4667,0.0152188919084711,0.0925,9.25,4,75.8730734294058,0.747098405816737,6,1.59843609784101,0
+4668,0.00602454821997526,0.055,5.5,6,53.371361802444,0.533146591970121,2.25,4.16467163779519,0
+4669,0.00852660097602893,0.035,3.5,4,49.2807863341098,0.533678756476684,1.25,3.21428571428571,0
+4670,0.0144811419099096,0.0475,4.75,4,58.1941823606998,0.601773916191511,2,3.37590187474301,0
+4671,0.0173595065998234,0.2475,24.75,3,91.7164165982093,0.932808242188958,23.25,2.58180277275317,0
+4672,0.113236372754909,0.96,96,1,99.8914698623176,0.793956043956045,96,1.87705045938492,0
+4673,0.0920586998539511,0.77,77,3,96.7616752412561,0.820089955022489,68.75,0.574906064318372,0
+4674,0.0969121895995522,0.705,70.5,2,97.399783895795,0.750559641829229,59.75,1.67984506593528,0
+4675,0.0596694186555396,0.5525,55.25,2,96.1358785914631,0.766773336226067,43.25,2.01679039864519,0
+4676,0.0616081398793904,0.61,61,1,98.5243747403739,0.848178137651822,61,1.80883454494789,0
+4677,0.0420489358644772,0.4625,46.25,2,95.3290412205599,0.842241262069903,38,0.0810810810810811,0
+4678,0.0412647839527926,0.415,41.5,3,91.0871132043551,0.759789955868387,18.25,1.43544741710985,0
+4679,0.0134289177331902,0.2025,20.25,2,91.7210080338381,0.851967955416231,18.75,0.544964637285397,0
+4680,0.0182814421975854,0.3625,36.25,1,96.5215284364484,0.928967813540511,36.25,0.862068965517241,0
+4681,0.0272010194332324,0.4025,40.25,2,94.4246384651125,0.915187153680878,34.75,0.031055900621118,0
+4682,0.00324963703562389,0.245,24.5,3,89.8136925399751,0.887116195063215,19.75,6.43100771612051,0
+4683,-0.0452700962608469,0.0925,9.25,2,81.8165148167256,0.873549202908368,7,6.39540043392697,0
+4684,-0.046104005412999,0.0025,0.25,1,0,NA,0.25,0,0
+4685,0.0166545850793773,0.205,20.5,4,88.0763566853778,0.835176751247018,15.75,1.36672033914706,0
+4686,0.00856817742450403,0.14,14,3,82.9137506834997,0.784224406617118,7,0,0
+4687,-0.068950217483507,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,0.928543677696815,0
+4688,-0.0722505901974307,0.0225,2.25,1,70.1754385964912,1,2.25,0,0
+4689,-0.0591705455802003,0,0,0,NA,NA,0,NA,NA
+4690,-0.0705997845414095,0,0,0,NA,NA,0,NA,NA
+4691,-0.0120126366349018,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,220.434921264648,203.531326293945
+4692,-0.00339302349428181,0.035,3.5,2,66.4957355443448,0.740932642487047,2.5,169.452151707241,150.416091918945
+4693,0.0227074835730548,0.075,7.5,3,75.1503979967916,0.735245449531164,5.25,35.953413772583,14.1421356201172
+4694,-0.062805355362143,0,0,0,NA,NA,0,NA,NA
+4695,-0.017074271978272,0,0,0,NA,NA,0,NA,NA
+4696,-0.0091314013389092,0.065,6.5,2,76.5078419501691,0.843485065866701,4.25,102.218149625338,61.0327758789062
+4697,-0.00125064282317908,0.1025,10.25,3,80.7197157637104,0.79007710629365,7.5,23.3612075433498,0
+4698,0.0241691496143176,0.1725,17.25,2,91.5727230142321,0.910114603880053,17,56.9616651120393,10
+4699,0.00968804847458841,0.0675,6.75,1,85.0052537126447,0.77554710393416,6.75,113.424112955729,100.124923706055
+4700,0.0150722387268252,0.02,2,2,55.2425944039245,0.693877551020408,1.5,94.0576982498169,35
+4701,-0.0145659823184178,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0
+4702,-0.0167483145330334,0,0,0,NA,NA,0,NA,NA
+4703,-0.0110196898152822,0,0,0,NA,NA,0,NA,NA
+4704,-0.0136568147724756,0,0,0,NA,NA,0,NA,NA
+4705,-0.0256473673381697,0,0,0,NA,NA,0,NA,NA
+4706,0.00545339644060732,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,1.47058823529412,0
+4707,0.00632970951185172,0.015,1.5,1,62.2896536353828,0.564902102973169,1.5,23.8015594482422,18.0277557373047
+4708,-0.00764702687973113,0,0,0,NA,NA,0,NA,NA
+4709,-0.00767400248032573,0,0,0,NA,NA,0,NA,NA
+4710,7.76854730156629e-05,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+4711,0.0128562944494843,0.0275,2.75,3,51.932222811463,0.588688946015424,1.25,15.642392245206,0
+4712,-0.0065656824205962,0.0125,1.25,1,58.1880425789518,1,1.25,29.9619979858398,25
+4713,0.001666294344177,0.1,10,2,85.906953061,0.767827529021559,9.25,1.30177669525146,0
+4714,0.00416799777229244,0.0825,8.25,4,70.68025552943,0.717428600262388,4.25,4.93078844475024,0
+4715,0.0201694697628409,0.235,23.5,4,89.261837105346,0.782135076252723,18.5,4.03242902552828,0
+4716,-0.0135478668685028,0,0,0,NA,NA,0,NA,NA
+4717,-0.0116087280937427,0,0,0,NA,NA,0,NA,NA
+4718,-0.0100867353866852,0.0375,3.75,2,68.2820249404777,0.716646989374262,2.75,4.04299672444661,0
+4719,0.00761366064234608,0.1225,12.25,4,75.6719378604741,0.687966354633021,4.5,2.64213491945851,0
+4720,0.0338606977070049,0.3325,33.25,3,90.2508198789428,0.808091125762219,17,1.99772404548817,0
+4721,0.00680097933707202,0.1425,14.25,4,80.2438736415218,0.702504908669007,6,0.738088908948396,0
+4722,-0.0241437736291664,0.085,8.5,3,74.2049035511315,0.765807962529274,4.5,0.588235294117647,0
+4723,-0.00297873901648927,0.165,16.5,2,88.5155935840078,0.875032543608435,13.75,0.757575757575758,0
+4724,-0.00943305449016933,0.0325,3.25,3,58.1653013090477,0.712891185759403,1.75,2.46700521615835,0
+4725,0.0130998189941693,0.105,10.5,5,69.317724204076,0.685262412463609,4.25,0.714285714285714,0
+4726,0.0342634143485702,0.2775,27.75,4,87.6159520874349,0.785467128027682,15.25,1.99611299531954,0
+4727,0.0282489159448778,0.245,24.5,6,83.1112666676721,0.781757977122216,10.25,2.85175784753293,0
+4728,0.00512410587602062,0.0725,7.25,1,85.7162801918893,0.862361644778345,7.25,2.14038164862271,0
+4729,0.0324881716214986,0.32,32,1,95.959121300177,0.936884625094673,32,5.48183287680149,0
+4730,0.0161840736007798,0.1025,10.25,3,77.0991764134538,0.806225021194138,4.75,1.75783092219655,0
+4731,0.0149842088959213,0.065,6.5,1,84.6193541959806,0.895656710577801,6.5,4.18832148038424,0
+4732,0.00991770062518754,0.1075,10.75,3,83.3029886588808,0.859943977591036,9,6.02618328360624,0
+4733,0.0362340829213281,0.305,30.5,2,94.9640272503197,0.895829942380937,30,1.58694054650479,0
+4734,0.0279502467921702,0.1575,15.75,6,79.7310457646264,0.676288103587807,9.25,22.8582792130728,0
+4735,0.0171080898257696,0.1225,12.25,2,86.9113564173292,0.850766517433184,10.75,29.7732348928646,5
+4736,0.0199743098064937,0.1425,14.25,2,88.6147166761258,0.857202356161123,13,30.7685811561451,0
+4737,0.00904151352099689,0.025,2.5,3,47.9024210673189,0.526627218934911,1,5.23935432434082,0
+4738,-0.00427936925781069,0.0325,3.25,1,76.0684107249879,0.770312948607522,3.25,23.0830968710092,11.1803398132324
+4739,0.000203563566287812,0.03,3,3,53.8251783921332,0.636143117040631,1.25,12.4224150975545,5
+4740,0.014880894529224,0.095,9.5,5,72.3882656670693,0.631675874769797,5.75,8.05352406752737,0
+4741,0.010293521075364,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,20.4084008534749,15
+4742,0.0147976873668995,0.0575,5.75,4,63.336672152895,0.705275567344533,2.25,13.4716247890307,0
+4743,0.00278985121547521,0.04,4,2,74.2500702543702,0.826388888888889,3.75,4.19811820983887,0
+4744,0.00641455896142475,0.015,1.5,2,46.1375166841518,0.564902102973169,1,16.8370234171549,0
+4745,0.00453419397010293,0.0025,0.25,1,0,NA,0.25,5,5
+4746,0.00515660080972566,0.015,1.5,3,35.0877192982456,0.564902102973169,1,25.7086162567139,0
+4747,-0.0171592345373574,0.01,1,2,30.8308651382582,0.494949494949495,0.5,14.2236728668213,7.07106781005859
+4748,0.00776018405843729,0.0325,3.25,4,49.9379082282791,0.483204134366925,1.25,6.39248877305251,0
+4749,-0.00420261147907695,0.01,1,1,52.6315789473684,0.747474747474748,1,5,5
+4750,-0.02542271570499,0.0025,0.25,1,0,NA,0.25,0,0
+4751,-0.0152836936711537,0.02,2,2,53.5230890372948,0.591836734693878,1.25,1.25,0
+4752,0.0124510567071047,0.145,14.5,3,86.1928433701907,0.801169590643275,12,1.32881151396653,0
+4753,0.0136165271434857,0.08,8,3,75.6362748807133,0.770066889632107,5.25,12.3922607302666,0
+4754,0.0316613938628052,0.2225,22.25,3,88.9006326552902,0.708790875447431,13.25,9.22512238748958,0
+4755,0.0241140229683515,0.285,28.5,5,85.4975948723792,0.789530857492022,15.25,2.77691703930236,0
+4756,0.0274781448837166,0.18,18,5,82.8788650413539,0.721528711350106,11.75,2.21478626463148,0
+4757,0.0217033316675952,0.1925,19.25,5,85.2121635482532,0.726825714806046,14,5.49396980582894,0
+4758,0.021717475428959,0.1575,15.75,4,83.2330848081871,0.719449689776099,10,1.40081599402049,0
+4759,0.0213807725122388,0.165,16.5,5,81.6515864731918,0.677167404321791,8,4.02980948939468,0
+4760,0.0584282287301721,0.555,55.5,2,97.9135598548881,0.886012050154698,55.25,2.11258986189559,0
+4761,0.0187460269352778,0.2725,27.25,1,95.1807759450405,0.90929230554538,27.25,1.29553397642363,0
+4762,0.00729067898938411,0.11,11,4,76.2985192548679,0.681141815973277,5.5,4.62009707364169,0
+4763,0.0283142097026212,0.32,32,5,87.466927080496,0.690734662963898,14.75,5.04055237770081,0
+4764,0.0451628371952393,0.4075,40.75,9,88.891106571738,0.639943741209564,22,3.09089038123382,0
+4765,0.003470343519366,0.02,2,2,52.9470541148176,0.693877551020408,1.25,5.81285190582275,0
+4766,0.008850102191318,0.135,13.5,4,83.584993487523,0.738952079060227,9.75,3.01325960512514,0
+4767,0.0158708836052028,0.1375,13.75,3,85.995813937085,0.780320366132723,11.25,1.20327890569513,0
+4768,0.0210288773013417,0.1825,18.25,7,76.5248211756225,0.646406727828746,5.75,2.24852240575503,0
+4769,0.00890935498689942,0.0025,0.25,1,0,NA,0.25,0,0
+4770,0.00782877772800475,0.025,2.5,3,50.582681473338,0.684418145956607,1.5,3.20710678100586,0
+4771,0.0771472108910166,0.4125,41.25,1,97.0684321667208,0.966405375139978,41.25,5.26232104445949,0
+4772,0.262117945789359,0.915,91.5,1,99.7609644895861,0.779305661658603,91.5,1.49280491813284,0
+4773,0.0757532567598173,0.69,69,2,96.8499427257815,0.701083572051314,46.25,1.49275572403618,0
+4774,0.0518038514783348,0.5075,50.75,3,92.9536281530777,0.833039356932233,29.5,2.137582374911,0
+4775,0.0636786176543683,0.59,59,2,96.3532523445066,0.823018638349649,49.75,0.432504524618892,0
+4776,0.0351228396718398,0.37,37,5,91.2155122996115,0.859427165700228,31,0.135135135135135,0
+4777,0.0477466518174333,0.4975,49.75,3,93.2277875486572,0.784276449729671,27.25,0.150753768844221,0
+4778,0.0590132137834462,0.665,66.5,2,97.4051670367959,0.904286184308916,63.25,0.128353893308711,0
+4779,0.0652110584371258,0.735,73.5,1,99.1240858576863,0.836227779862841,73.5,0.405245359252099,0
+4780,0.0487389751880983,0.57,57,2,96.7483895051248,0.759233926128591,49.75,1.33019417210629,0
+4781,0.00248503685674223,0.1425,14.25,4,82.8272680681212,0.845302552507884,11,3.07454949094538,0
+4782,0.105147612080327,0.8325,83.25,1,99.4947723752506,0.724746695773913,83.25,15.9877422722252,0
+4783,-0.0139610784964862,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,38.164909362793,30.4138145446777
+4784,-0.0261477128664865,0,0,0,NA,NA,0,NA,NA
+4785,-0.041987764427613,0.0975,9.75,1,88.4075627573592,0.897720008523333,9.75,0.641025641025641,0
+4786,-0.00453095489175212,0.225,22.5,3,88.6988787238119,0.871769184532158,14.75,4.84812728034125,0
+4787,-0.0782090622908436,0.025,2.5,4,42.102215676649,0.526627218934911,1.25,7.85738830566406,5
+4788,-0.105747848339306,0,0,0,NA,NA,0,NA,NA
+4789,-0.102776920748875,0,0,0,NA,NA,0,NA,NA
+4790,-0.0675915152952075,0,0,0,NA,NA,0,NA,NA
+4791,-0.0689169759047218,0,0,0,NA,NA,0,NA,NA
+4792,-0.0544418767490424,0,0,0,NA,NA,0,NA,NA
+4793,-0.0461586813588838,0,0,0,NA,NA,0,NA,NA
+4794,-0.077478357203363,0,0,0,NA,NA,0,NA,NA
+4795,-0.14520407574164,0,0,0,NA,NA,0,NA,NA
+4796,-0.118580737555967,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,63.4396438598633,53.8516464233398
+4797,-0.0715850360972036,0.0325,3.25,1,76.0684107249879,1,3.25,44.7484345069298,36.0555114746094
+4798,0.00724247492863469,0.2225,22.25,1,94.1052854736172,0.93528686121054,22.25,81.8186111450195,47.4341621398926
+4799,0.0371615347744046,0.505,50.5,1,97.8568679502074,0.92996632996633,50.5,75.105143159923,40.3112869262695
+4800,0.0632986270598485,0.5875,58.75,1,98.3965465994375,0.889556153793056,58.75,32.9283681585434,0
+4801,-0.00170517791139673,0,0,0,NA,NA,0,NA,NA
+4802,-0.00622405140196248,0,0,0,NA,NA,0,NA,NA
+4803,-0.0120113711187747,0,0,0,NA,NA,0,NA,NA
+4804,-0.0312621521728124,0,0,0,NA,NA,0,NA,NA
+4805,-0.00836076504491871,0,0,0,NA,NA,0,NA,NA
+4806,0.000602676508297009,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,16.3470359075637,0
+4807,0.00607342793831776,0,0,0,NA,NA,0,NA,NA
+4808,0.00856981416800181,0.02,2,2,59.8245365374189,0.591836734693878,1.75,5.4105339050293,0
+4809,0.00618459873124891,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,13.0009384155273,5
+4810,0.00337559287323529,0.01,1,1,52.6315789473684,0.747474747474748,1,19.3532567024231,15.8113880157471
+4811,0.0102212652858361,0.07,7,2,77.5009217169574,0.83273596176822,4,8.27151564189366,0
+4812,0.00507893345696175,0.065,6.5,4,71.4949218597925,0.660884309377853,4.5,2.19504106961764,0
+4813,0.002124899676528,0.0175,1.75,2,55.7829931777349,0.618320610687023,1.5,2.43872397286551,0
+4814,0.0045220901456014,0.055,5.5,6,52.146327057223,0.502023031434796,1.25,4.29833793640137,0
+4815,0.0126679353731743,0.085,8.5,3,82.490748401098,0.687743950039032,7.5,4.69239145166734,0
+4816,-0.0102734081798963,0.145,14.5,2,85.7296115226131,0.871345029239766,7.75,4.37441911368535,0
+4817,-0.0280776643534773,0.01,1,2,30.8308651382582,0.494949494949495,0.5,2.5,0
+4818,-0.00772672236604194,0,0,0,NA,NA,0,NA,NA
+4819,-0.00117934350257428,0.085,8.5,4,72.7874143460285,0.726775956284153,3.75,1.38444317088408,0
+4820,0.00333282611776667,0.0725,7.25,3,75.7003326867018,0.793542467167517,5.5,2.00866922838935,0
+4821,0.0421497084297152,0.42,42,1,97.1419289493636,0.899888765294772,42,2.27547769319443,0
+4822,0.0649858571342338,0.715,71.5,2,98.6234684458713,0.810865453596817,70.5,0.546200011993622,0
+4823,0.0542703711906506,0.64,64,2,98.3196676444472,0.74537037037037,63.25,0.1171875,0
+4824,0.0227792903643376,0.2225,22.25,2,91.5619026442049,0.846306295375033,19.75,0.449438202247191,0
+4825,-0.00512047740307025,0.035,3.5,1,77.1303955881658,1,3.5,3.51015254429408,0
+4826,0.0155589993448666,0.165,16.5,2,90.3983436907883,0.875032543608435,15.75,0.151515151515152,0
+4827,0.0395419985670742,0.2725,27.25,6,83.4488607332329,0.734854431594188,13.5,1.07404649367026,0
+4828,0.0495149770286298,0.4875,48.75,2,95.5416245676708,0.876027489556664,43.5,4.39736818166879,0
+4829,0.0103464706558407,0.025,2.5,1,71.9760246298065,0.763313609467456,2.5,19.3174654006958,14.1421356201172
+4830,0.00834647464859188,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,22.7669397989909,18.0277557373047
+4831,0.0151900019510163,0.0925,9.25,4,77.5416552251493,0.729034006232218,6.75,3.17368667190139,0
+4832,-0.00580552227663702,0.035,3.5,3,60.5745129160863,0.740932642487047,2.5,3.51721136910575,0
+4833,0.0199205931026245,0.0925,9.25,4,74.9647821066023,0.747098405816737,6,21.0745904252336,0
+4834,0.018437731932172,0.0525,5.25,7,50.3818991896626,0.406332453825858,1.5,17.8759029933384,0
+4835,0.00422483438524978,0.0325,3.25,3,62.7191086127874,0.827734711455642,2.75,3.23623598538912,0
+4836,0.0129285971173522,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0
+4837,0.0154422280195286,0.07,7,3,79.6316802616589,0.7610513739546,6.25,3.31723056520735,0
+4838,0.00346688827768503,0.0025,0.25,1,0,NA,0.25,5,5
+4839,-0.00148098950101845,0.01,1,3,15.8692205350002,0.242424242424242,0.5,18.1843028068542,5
+4840,-0.01462821618612,0.0375,3.75,6,44.7402736753127,0.480519480519481,1.75,9.29764073689779,0
+4841,-0.0191803536601947,0.02,2,3,41.2877050769818,0.489795918367347,0.75,5.15165042877197,0
+4842,0.0174709733558393,0.0975,9.75,3,80.4977789984568,0.761346686554443,6.5,6.94292298341409,0
+4843,-0.0010957807947716,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,4.90468173556858,0
+4844,-0.0060017790706479,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,7.01184463500977,5
+4845,0.00487451297263306,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,3.54360066289487,0
+4846,0.00163882095488589,0.01,1,1,52.6315789473684,1,1,24.8743686676025,21.2132034301758
+4847,-3.17625844218128e-05,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+4848,0.0078973884336483,0.035,3.5,3,59.270360875528,0.689119170984456,2,19.0142984390259,7.07106781005859
+4849,0.00127777295489068,0,0,0,NA,NA,0,NA,NA
+4850,-0.000574608555871237,0,0,0,NA,NA,0,NA,NA
+4851,-0.00182517749025465,0,0,0,NA,NA,0,NA,NA
+4852,0.00110979134162335,0.02,2,1,68.0470115164975,0.795918367346939,2,14.1712143421173,10
+4853,-0.000217364773507143,0.05,5,3,66.789305607889,0.728353140916808,2.5,10.3389407157898,5
+4854,0.0252432735358661,0.2725,27.25,1,95.1807759450405,0.930224850419523,27.25,15.6132341437384,0
+4855,0.00360346781923909,0.0875,8.75,4,73.7070180033392,0.754369390647142,5.5,1.57142857142857,0
+4856,0.0274011746513133,0.2,20,4,85.4342204129589,0.744718309859155,12.25,7.81080820560455,0
+4857,0.0165422589124591,0.0425,4.25,3,68.4345785580466,0.66579634464752,3.25,6.12600797765395,0
+4858,0.0522833743409137,0.54,54,1,98.1009071848445,0.826952195544019,54,2.88937273731938,0
+4859,-0.0054167161011901,0.0775,7.75,4,73.8333223492161,0.761517615176152,6,2.26846694946289,0
+4860,0.0320761198873515,0.4525,45.25,3,96.1279772709793,0.814625502623867,43.25,1.69848843569255,0
+4861,0.0148544208052675,0.2925,29.25,1,95.5315755048205,0.899993332888859,29.25,0.530521947094518,0
+4862,0.0178883456335143,0.1525,15.25,4,84.2956717313877,0.710580508710414,11.25,4.88784352286917,0
+4863,0.0408204928461055,0.3425,34.25,6,90.4464687878889,0.774904942965779,27.5,4.99278056012453,0
+4864,0.0427563721813931,0.3575,35.75,8,86.1357880583743,0.584162533044227,15,4.20522004240876,0
+4865,0.00642985739340929,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,8.73898051335261,5
+4866,0.0116219751138851,0.17,17,2,89.3362055792284,0.807633896932267,14.25,3.79820405735689,0
+4867,0.0160969076043693,0.1125,11.25,4,81.5667202669702,0.659006671608599,8.25,3.29520602756076,0
+4868,0.0235893851314995,0.19,19,6,81.5401748489275,0.723604201216142,10.25,1.6879509373715,0
+4869,0.020629977057506,0.105,10.5,4,78.5700374564919,0.779683688724526,6.5,5.38252975827172,0
+4870,0.011564649292086,0.1225,12.25,3,80.9340484571144,0.728666395333062,6.25,3.63845451510682,0
+4871,0.0421187194796948,0.3625,36.25,2,94.4948842232861,0.875693673695893,33,0.890635418069774,0
+4872,0.223677480579063,0.93,93,1,99.8055173961557,0.716312056737588,93,0.888051986694336,0
+4873,0.0741040036466438,0.7425,74.25,1,99.1551699664667,0.749900133733956,74.25,0.826112252694589,0
+4874,0.0466790536119106,0.5575,55.75,1,98.2142154717639,0.91851368970013,55.75,1.37893769131648,0
+4875,0.0295299940072437,0.36,36,3,94.0740543164378,0.757339015151515,30.5,0.535215748680962,0
+4876,0.0446963733929442,0.42,42,4,93.81099832504,0.788654060066741,35.5,0.178571428571429,0
+4877,0.0576570449021528,0.4375,43.75,3,94.1363954670958,0.840385276917785,37,0,0
+4878,0.00786228717195627,0.2175,21.75,2,89.338467347909,0.785633309285788,12.25,0.541046756437455,0
+4879,0.00038422392346547,0.055,5.5,2,79.8050134223298,0.813258636788049,5.25,0.681818181818182,0
+4880,0.0382184117291035,0.43,43,1,97.2369173509155,0.966793956500083,43,0.583270206007847,0
+4881,0.0301368273832486,0.2825,28.25,3,90.563416620966,0.842863974858236,15,6.00222616280075,0
+4882,0.091494633283728,0.73,73,1,99.1030975159931,0.85832827362882,73,20.4656813503945,0
+4883,-0.00506580021701666,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,41.7268402099609,40
+4884,0.00960343964223284,0,0,0,NA,NA,0,NA,NA
+4885,-0.0246184225650632,0,0,0,NA,NA,0,NA,NA
+4886,0.0981334639713168,0.6175,61.75,1,98.5654235476234,0.966047024870554,61.75,38.8757398968283,7.07106781005859
+4887,0.00666938651040255,0.25,25,1,94.7368421052632,0.97037037037037,25,34.637114276886,11.1803398132324
+4888,-0.0351761500093562,0.19,19,2,88.2112353292236,0.889441680486457,10,36.2872716000206,15.8113880157471
+4889,-0.101242437668152,0,0,0,NA,NA,0,NA,NA
+4890,-0.0815150842709613,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+4891,-0.0561255314014124,0.01,1,1,52.6315789473684,1,1,1.25,0
+4892,-0.0874119767639786,0,0,0,NA,NA,0,NA,NA
+4893,-0.0678363741422072,0,0,0,NA,NA,0,NA,NA
+4894,-0.0632369194924831,0,0,0,NA,NA,0,NA,NA
+4895,-0.0574597166819149,0,0,0,NA,NA,0,NA,NA
+4896,-0.081027293127263,0,0,0,NA,NA,0,NA,NA
+4897,-0.265714448541403,0,0,0,NA,NA,0,NA,NA
+4898,-0.247715851666871,0,0,0,NA,NA,0,NA,NA
+4899,-0.148133415013508,0,0,0,NA,NA,0,NA,NA
+4900,0.0484444343768701,0.4275,42.75,1,97.2134830220855,0.872461357177514,42.75,47.4940740797255,0
+4901,-0.0430707901397545,0,0,0,NA,NA,0,NA,NA
+4902,-0.0187329973959822,0,0,0,NA,NA,0,NA,NA
+4903,-0.00474951808332662,0.0325,3.25,4,50.0616168529462,0.598047660063164,1.25,6.96561431884766,0
+4904,0.00379848439007219,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,2.77777777777778,0
+4905,0.0052036764731838,0.0025,0.25,1,0,NA,0.25,5,5
+4906,0.0111699747872899,0,0,0,NA,NA,0,NA,NA
+4907,0.00774723083505705,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,9.78814021023837,5
+4908,9.44138035265496e-06,0,0,0,NA,NA,0,NA,NA
+4909,0.00550323341958574,0,0,0,NA,NA,0,NA,NA
+4910,0.00655835465262499,0.035,3.5,1,77.1303955881659,0.844559585492228,3.5,2.88017681666783,0
+4911,0.0287163540193433,0.255,25.5,1,94.8405521791929,0.911981516118385,25.5,3.44257564170688,0
+4912,0.0115413732069464,0.0025,0.25,1,0,NA,0.25,5,5
+4913,-0.0107307131044399,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+4914,-0.0042031508033017,0.0275,2.75,4,45.875772491231,0.451585261353899,1.25,7.17617884549228,0
+4915,-0.0188526476662082,0,0,0,NA,NA,0,NA,NA
+4916,-0.00242751226252949,0.045,4.5,2,72.5141018795214,0.844871049059531,3.75,2.5,0
+4917,0.00780415311111938,0.125,12.5,3,83.3670732440826,0.73109243697479,8.75,3.48929222106934,0
+4918,-0.00804001174987207,0.04,4,2,68.0470115164975,0.739583333333333,2,3.58709645271301,0
+4919,0.0140782095778923,0.15,15,4,83.9297643286764,0.773755656108597,8.75,0.867851130167643,0
+4920,0.013455679091021,0.0525,5.25,4,62.6587117622427,0.703166226912929,3.25,10.3201142265683,0
+4921,0.0169011331562069,0.185,18.5,2,90.3212913021258,0.848985370457763,16.75,2.73984976072569,0
+4922,0.0455462676275602,0.44,44,3,92.1955813508261,0.818681318681319,27,2.80076785521074,0
+4923,0.0540295869503825,0.585,58.5,2,97.6081894154282,0.86214882412947,57.25,0.551889468462039,0
+4924,0.0242037753929981,0.2425,24.25,3,90.20856676665,0.772391032206669,16.5,0.412371134020619,0
+4925,-0.0168590633711574,0.055,5.5,2,76.4902019111937,0.844382197323374,4.75,0,0
+4926,0.00365685901929282,0.105,10.5,1,89.0207000039903,0.937052482492722,10.5,3.15222722008115,0
+4927,0.0352424536730427,0.325,32.5,2,95.594462042648,0.868729488982653,32.25,0.862085137000451,0
+4928,0.0229903178135828,0.265,26.5,1,95.039096185713,0.900274245823984,26.5,1.89014470802163,0
+4929,0.0466849440856276,0.4,40,2,95.8847059741097,0.909297052154195,38.5,4.40105783939362,0
+4930,0.016079038145981,0.095,9.5,3,81.2868170091389,0.859686047531351,7.75,8.18775518316972,0
+4931,0.0159058586928768,0.0975,9.75,1,88.4075627573592,0.897720008523333,9.75,0.694129943847656,0
+4932,0.00649237805006123,0.0275,2.75,2,61.172968273306,0.794344473007712,1.75,1.55191525545987,0
+4933,0.00434149160735615,0.0025,0.25,1,0,NA,0.25,5,5
+4934,0.0144479554525662,0.04,4,3,66.2624149457428,0.782986111111111,3.25,11.5632457733154,0
+4935,-0.000317241845727949,0,0,0,NA,NA,0,NA,NA
+4936,-0.0018510839251303,0,0,0,NA,NA,0,NA,NA
+4937,0.00350916774383222,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15
+4938,0.00531819349660964,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,7.51661682128906,0
+4939,0.0144125788415113,0.0775,7.75,2,80.0561092657327,0.761517615176152,5.5,18.2045369302073,5
+4940,0.00445747424417959,0.025,2.5,1,71.9760246298065,1,2.5,1.5,0
+4941,0.0114460157470694,0.1275,12.75,6,70.3106598438986,0.617956064947469,4,8.48651025809494,0
+4942,0.0183211707301723,0.0725,7.25,7,56.2670313103282,0.518265756724207,1.75,3.11456811839137,0
+4943,0.0097462877964881,0.0425,4.25,2,69.4258805220027,0.70757180156658,2.75,6.33623639275046,0
+4944,0.02039742002602,0.065,6.5,1,84.6193541959806,0.921742532933351,6.5,13.5899403645442,5
+4945,0.0146935633729481,0.015,1.5,2,46.1375166841518,0.564902102973169,1,13.2465693155924,0
+4946,0.00846322736762431,0.0375,3.75,2,66.706117556603,0.763872491145218,2,2.47140452067057,0
+4947,0.00691366962674692,0.0075,0.75,3,0,1,0.25,14.0236892700195,5
+4948,0.00556533150837652,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,11.0515256609235,5
+4949,0.0025249192804813,0,0,0,NA,NA,0,NA,NA
+4950,0.00158333091334043,0,0,0,NA,NA,0,NA,NA
+4951,0.00385324591019412,0,0,0,NA,NA,0,NA,NA
+4952,0.00203445257677004,0,0,0,NA,NA,0,NA,NA
+4953,0.0078534533802781,0.05,5,2,75.9413455967301,0.864176570458404,4.5,31.8325025558472,22.3606796264648
+4954,-0.000738573454100333,0,0,0,NA,NA,0,NA,NA
+4955,-0.00897242808434385,0,0,0,NA,NA,0,NA,NA
+4956,-0.022478745759654,0,0,0,NA,NA,0,NA,NA
+4957,-0.0231592952481151,0,0,0,NA,NA,0,NA,NA
+4958,-0.00920225183232105,0.155,15.5,1,91.8947234736642,0.912338373876835,15.5,2.00229251000189,0
+4959,-0.0128248847336363,0.0725,7.25,4,67.5821915544928,0.632964386075586,2.5,3.53081183597959,0
+4960,0.0345281581677227,0.41,41,2,93.6266754367002,0.848467841508587,21.75,0.609756097560976,0
+4961,0.0211205196089941,0.0875,8.75,5,78.8641518751854,0.603212092583845,7,2.33796375819615,0
+4962,0.0304560692857376,0.255,25.5,3,93.3248100571861,0.743279422011956,24.25,2.09943270215801,0
+4963,0.0106700343464581,0.035,3.5,2,69.0285060247284,0.844559585492228,3,4.44070652553013,0
+4964,0.0245342409205296,0.21,21,3,89.1430051773069,0.821595446436157,17.5,0.896696136111305,0
+4965,0.012415844307252,0.0325,3.25,4,52.4153934420662,0.598047660063164,1.5,7.42329348050631,0
+4966,0.0407711025139906,0.3625,36.25,4,91.5577099042891,0.840177580466149,28.25,4.1420272169442,0
+4967,0.0111557264810472,0.05,5,6,53.3643255806968,0.558573853989813,2.5,10.8041816711426,0
+4968,0.0276631116967292,0.315,31.5,1,95.8855704592132,0.898001466228923,31.5,1.78146516709101,0
+4969,0.0100005411615166,0.03,3,3,56.8821676030257,0.636143117040631,2,6.62205092112223,0
+4970,-0.014038088629186,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,1.3131590623122,0
+4971,0.0526036852534162,0.48,48,2,97.3948956978562,0.837942955920484,47.75,1.50316013892492,0
+4972,0.0986862202634802,0.7925,79.25,1,99.350989933666,0.758230245396301,79.25,2.23519756666117,0
+4973,0.0515866459060999,0.5175,51.75,4,93.913166359534,0.822353811991118,33.5,1.5276000165709,0
+4974,0.0808300931419944,0.8625,86.25,1,99.5959799783351,0.877300613496932,86.25,2.02309566995372,0
+4975,0.0398345635253645,0.4825,48.25,3,95.8117642804462,0.821876771111651,45,0.509244928705878,0
+4976,0.0335917778886869,0.33,33,5,89.373262463087,0.851365578745278,24.25,0.227272727272727,0
+4977,0.0637215329837636,0.6825,68.25,2,98.6001741759901,0.790846456692913,67.75,0.0183150183150183,0
+4978,0.0434107849650536,0.505,50.5,4,94.1931982499304,0.822222222222222,44,0.0495049504950495,0
+4979,0.0326549831918237,0.365,36.5,4,90.4976087529195,0.769972573653012,24,0.787671232876712,0
+4980,0.0807643783511594,0.7275,72.75,2,98.4846253291342,0.805444207772169,71.25,0.189003436426117,0
+4981,0.0759162934117558,0.5225,52.25,2,94.9801758179383,0.843874076367111,32,4.40183681506289,0
+4982,0.0158915439456632,0.23,23,4,83.8929567672209,0.762432689261958,9,22.8614192838254,0
+4983,0.0168871018723075,0.1075,10.75,2,87.3361671092643,0.937752878929349,10.5,28.5137117075366,15
+4984,-0.0139803038494165,0,0,0,NA,NA,0,NA,NA
+4985,-0.00533391052758816,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,69.1477228800456,65
+4986,0.0874842421789435,0.6975,69.75,2,96.4976854214121,0.854898744558703,51.5,53.4532048625331,11.1803398132324
+4987,0.0422907991737884,0.525,52.5,2,96.6704580865269,0.84385516220218,50.25,16.1037924993606,0
+4988,0.0489595479576928,0.5175,51.75,2,96.9971199884729,0.89233564363098,50,39.8157289569505,14.1421356201172
+4989,0.0153529693805831,0.135,13.5,1,90.9386564749522,0.838398906084903,13.5,11.5804847434715,0
+4990,-0.00499081538297105,0,0,0,NA,NA,0,NA,NA
+4991,-0.0481493005517405,0,0,0,NA,NA,0,NA,NA
+4992,-0.0942497670022385,0,0,0,NA,NA,0,NA,NA
+4993,-0.0596795117678994,0.1075,10.75,3,81.7731928980946,0.735449735449735,7,5.23587036132812,0
+4994,-0.00493071662896,0.09,9,1,87.719298245614,0.963369963369963,9,85.3015028635661,66.7083206176758
+4995,0.00651975379707437,0.245,24.5,1,94.6299732152399,0.969897652016857,24.5,89.0198843041245,66.7083206176758
+4996,-0.0573043390971225,0,0,0,NA,NA,0,NA,NA
+4997,-0.234030914232135,0,0,0,NA,NA,0,NA,NA
+4998,-0.256396050285548,0,0,0,NA,NA,0,NA,NA
+4999,-0.276025678934529,0,0,0,NA,NA,0,NA,NA
+5000,0.101234748983406,0.765,76.5,1,99.2456636792102,0.963125483978023,76.5,56.1371991338294,5
+5001,-0.0160186869859172,0.0375,3.75,2,73.5560880530256,0.763872491145218,3.5,4.55228474934896,0
+5002,-0.0311909472009029,0.005,0.5,1,30.8308651382582,1,0.5,21.2132034301758,21.2132034301758
+5003,-0.0158522189508949,0.0025,0.25,1,0,NA,0.25,21.2132034301758,21.2132034301758
+5004,0.00616578159089841,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047
+5005,-0.00580657443180939,0,0,0,NA,NA,0,NA,NA
+5006,0.00341460466467652,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859
+5007,0.00290051495750959,0,0,0,NA,NA,0,NA,NA
+5008,0.00466616673126737,0.0225,2.25,2,55.8584010807395,0.744245524296675,1.5,6.66883150736491,0
+5009,0.0122017003287169,0.0525,5.25,2,77.0265364828171,0.868073878627968,4.75,1.42857142857143,0
+5010,0.00748604142746444,0.09,9,1,87.719298245614,0.871794871794872,9,1.25,0
+5011,-0.00920278815900019,0.0025,0.25,1,0,NA,0.25,5,5
+5012,0.0029173958381034,0,0,0,NA,NA,0,NA,NA
+5013,-0.00457631750343353,0.01,1,2,34.5233986084855,0.494949494949495,0.75,5.81285190582275,0
+5014,0.00345559742982005,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+5015,-0.00435785099130953,0.005,0.5,2,0,1,0.25,2.5,0
+5016,0.00933334989106697,0.1,10,4,78.1661763294126,0.684908789386401,6.5,5.63580093383789,0
+5017,0.0213306242173712,0.255,25.5,6,88.9191420674506,0.699270180071148,18,3.3441089555329,0
+5018,0.0428114750932582,0.445,44.5,2,96.8902008288083,0.764506147484871,43.75,1.86737945642364,0
+5019,0.0270113601268167,0.275,27.5,3,93.3706358257172,0.798994974874372,26,4.65478333559903,0
+5020,0.0281789078545808,0.265,26.5,2,94.4320031312769,0.900274245823984,26.25,4.54935964548363,0
+5021,-0.00116036761976375,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,2.77777777777778,0
+5022,0.00530726190343557,0.09,9,3,79.2984921875539,0.78021978021978,6.25,2.62401697370741,0
+5023,0.0121201100986718,0.05,5,2,76.3172662672173,0.830220713073005,4.5,1.5,0
+5024,0.0397373749367216,0.4375,43.75,3,94.8220774918512,0.856897144822841,39.25,0.771428571428571,0
+5025,0.0211053305776113,0.29,29,3,92.2614371950921,0.765258215962441,22.5,0.664405756983264,0
+5026,0.017764756415927,0.1425,14.25,6,77.7979487893316,0.666805497709288,7.5,0.913527505439624,0
+5027,0.0171731043600425,0.2625,26.25,2,92.5974912503282,0.921083310913819,24,1.39250669933501,0
+5028,0.00324027978348568,0,0,0,NA,NA,0,NA,NA
+5029,0.0276489436129964,0.2325,23.25,3,88.6763763874864,0.850869275146187,18.5,7.51207275800807,0
+5030,0.0560564083329518,0.5075,50.75,3,93.6737070333249,0.795338566562092,35.25,3.74456753284473,0
+5031,0.030024255035496,0.2275,22.75,4,87.1863232937829,0.720324423668545,15.25,2.51804544637491,0
+5032,0.00322059859162437,0.015,1.5,3,33.3339461453335,0.419869470630892,0.75,6.2322572072347,0
+5033,0.0021181215972274,0.0325,3.25,1,76.0684107249879,1,3.25,6.78856981717623,0
+5034,-0.00273126700950115,0.01,1,1,52.6315789473684,0.747474747474748,1,44.8058099746704,38.0788650512695
+5035,0.00156061475224305,0,0,0,NA,NA,0,NA,NA
+5036,0.0104771031008931,0.005,0.5,2,0,1,0.25,5.59016990661621,0
+5037,0.00826406170093833,0.065,6.5,2,75.9874103064922,0.791313421155602,3.5,7.36247422144963,0
+5038,0.0127128286894234,0.125,12.5,5,78.6388632321236,0.717647058823529,7.75,23.6766566467285,0
+5039,0.00717576815011853,0.0725,7.25,4,70.5222397370398,0.747663015426966,4.25,10.4233711505758,0
+5040,0.0208902856616078,0.105,10.5,5,74.3821340990601,0.700999291840428,6.5,4.52641814095633,0
+5041,0.00232546396422549,0.12,12,6,75.8811563801711,0.667405764966741,7,5.44422427813212,0
+5042,0.0511629205937788,0.4875,48.75,5,92.6893291603292,0.746664869963617,35.75,2.11996837518154,0
+5043,0.0267469118481131,0.17,17,6,77.8274154069638,0.665890452566569,7.25,5.18676123899572,0
+5044,0.014920841754938,0.08,8,5,68.2633656199126,0.686454849498328,4,5.59431582689285,0
+5045,0.0169047033121478,0.0875,8.75,5,70.5273911883726,0.716580066131318,3.75,7.79407762799944,0
+5046,0.0125716390428715,0.0725,7.25,5,64.2050196276152,0.655904111945862,2.75,16.1244835031444,0
+5047,-0.00717798930549179,0.025,2.5,6,35.5048353375862,0.211045364891519,1.25,2.11803398132324,0
+5048,-0.0166137529550724,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,7.06449508666992,5
+5049,-0.00172879223291687,0.0725,7.25,2,77.5825456465957,0.793542467167517,4,7.82910603490369,0
+5050,0.00386893629498218,0,0,0,NA,NA,0,NA,NA
+5051,0.00542809150851099,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+5052,0.000575868395353609,0,0,0,NA,NA,0,NA,NA
+5053,0.00396116558049471,0.01,1,2,30.8308651382582,0.494949494949495,0.5,8.01776695251465,5
+5054,0.000570029576251727,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+5055,-0.00346459802396566,0,0,0,NA,NA,0,NA,NA
+5056,0.00377878759669329,0,0,0,NA,NA,0,NA,NA
+5057,-0.00929445715839393,0,0,0,NA,NA,0,NA,NA
+5058,-0.0144276344949907,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,38.8709476695341,25
+5059,-0.0105307270369622,0.0475,4.75,2,77.4113871538258,0.818988143723414,4.5,2.36842105263158,0
+5060,-0.0132869857842525,0.015,1.5,1,62.2896536353828,1,1.5,1.66666666666667,0
+5061,0.000159239666500071,0.0875,8.75,3,78.5875856552017,0.848842701936703,7,4.51371372767857,0
+5062,0.021222555100212,0.3625,36.25,3,93.8260136742394,0.79874213836478,29.75,2.12665110620959,0
+5063,0.00483175598579692,0.18,18,2,87.6556575485763,0.846360668331093,12.75,4.15069280730353,0
+5064,0.0414298629108271,0.3825,38.25,5,90.5696685859945,0.775238808765687,27.25,3.9519664789337,0
+5065,0.0136902455475774,0.1375,13.75,3,88.5916069644314,0.865751334858886,13.25,2.93114915327592,0
+5066,0.0122472555443892,0.1425,14.25,7,77.4025230563014,0.58350687213661,6.25,7.9078421676368,0
+5067,0.0178922615524061,0.09,9,4,79.1315433379221,0.706959706959707,7.25,6.41721593009101,0
+5068,0.0122313934629051,0.1325,13.25,3,86.9493979744503,0.911327865218355,12.5,0.660377358490566,0
+5069,0.0138243959272404,0.0425,4.25,4,57.5863751631355,0.5822454308094,1.75,4.36130209530101,0
+5070,-0.0105315809269086,0.0225,2.25,4,38.4629500951775,0.403239556692242,1,0.555555555555556,0
+5071,0.0504424179882881,0.3275,32.75,4,93.5300949583669,0.925339472087851,31.5,2.10194915305567,0
+5072,0.0400755189038273,0.3975,39.75,4,92.6579116851052,0.795373159779458,29.5,3.69469577861282,0
+5073,0.0366117158763154,0.355,35.5,4,90.065691944626,0.779367918902803,18.75,2.69564609796229,0
+5074,0.0498730815500858,0.5775,57.75,2,97.2917687078153,0.939592800560139,56.5,2.2084931130017,0
+5075,0.0336959259754417,0.435,43.5,2,94.02377864116,0.784964022826896,26,1.99790110533265,0
+5076,0.0517942357849097,0.4675,46.75,4,92.5197866677617,0.810035550489837,34.25,1.11381963230072,0
+5077,0.0650719485827722,0.6425,64.25,3,97.84641645479,0.744122821045898,62.5,0,0
+5078,0.057504564778792,0.6825,68.25,2,98.3916400605444,0.790846456692913,66.75,0.396645682198661,0
+5079,0.0608055320153653,0.6425,64.25,1,98.697022509981,0.877876800953724,64.25,1.89117958573516,0
+5080,0.0605511000644037,0.635,63.5,1,98.6583599459141,0.815816737653966,63.5,0.31496062992126,0
+5081,0.0464571121695553,0.39,39,2,95.8036830869689,0.897183983549437,38,4.28958709423359,0
+5082,0.00921482186041885,0.04,4,5,50.9234260275385,0.522569444444444,1.5,13.0167655944824,5
+5083,0.0012793176696141,0.0975,9.75,1,88.4075627573592,0.965906669507778,9.75,112.835964691945,99.6242904663086
+5084,-0.0359423692683049,0,0,0,NA,NA,0,NA,NA
+5085,0.0443671734828604,0.2975,29.75,1,95.613700031282,0.947278239093186,29.75,85.8011338049624,60
+5086,0.0704473801026688,0.6,60,3,94.639797349338,0.810690423162584,29.5,35.1036227623622,0
+5087,0.0799731776257977,0.8675,86.75,1,99.6123355042629,0.735388863322596,86.75,22.0910952125571,0
+5088,0.0284312333343405,0.1825,18.25,2,88.2210000582554,0.78019877675841,11,56.9099262707854,38.0788650512695
+5089,0.0183027608936027,0.175,17.5,2,87.5635619302482,0.881744271988175,10.75,11.3973777226039,0
+5090,0.00572879666904555,0,0,0,NA,NA,0,NA,NA
+5091,-0.0214360658562418,0,0,0,NA,NA,0,NA,NA
+5092,-0.0611146664386615,0,0,0,NA,NA,0,NA,NA
+5093,-0.0458085884354659,0.15,15,2,86.8029259249605,0.830316742081448,11.25,18.8575923283895,0
+5094,0.0760995871843625,0.5275,52.75,2,94.7935131904616,0.848828420256992,33,18.9999298891185,0
+5095,0.0371328984412685,0.2925,29.25,3,92.1032478628144,0.846656443762917,25.75,10.0276650485829,0
+5096,-0.0120066095596053,0.1325,13.25,2,89.3250663717934,0.784653386958862,12.75,4.16981679088665,0
+5097,-0.057649744305636,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,35.8702708973604,10
+5098,-0.0885837579303188,0,0,0,NA,NA,0,NA,NA
+5099,-0.113530017937483,0.0025,0.25,1,0,NA,0.25,0,0
+5100,-0.00146082443163323,0.0325,3.25,2,64.4889415222974,0.770312948607522,2,41.2532122685359,7.07106781005859
+5101,-0.00127958358491014,0.0075,0.75,1,44.4894453484604,1,0.75,7.35702260335286,5
+5102,-0.0290608094691197,0,0,0,NA,NA,0,NA,NA
+5103,-0.0156526968878461,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471
+5104,0.00426187684477554,0,0,0,NA,NA,0,NA,NA
+5105,0.00352522685034273,0.0125,1.25,2,43.859649122807,0.594936708860759,1,23.0390830993652,10
+5106,0.010048744394644,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,21.2052555084229,10
+5107,0.00452101999570914,0.0025,0.25,1,0,NA,0.25,0,0
+5108,0.0189648943407337,0.1175,11.75,3,83.5887424126546,0.773371104815864,9.25,6.99125188462278,0
+5109,0.030616255069217,0.2525,25.25,2,94.1295546558704,0.911306565161958,25,2.56430642911703,0
+5110,0.0153949559723696,0.105,10.5,3,84.329024435403,0.748209929970887,9.25,4.26021957397461,0
+5111,-0.00671479198979796,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,5.19400133405413,0
+5112,-0.0104236478942494,0.005,0.5,2,0,1,0.25,6.0355339050293,5
+5113,-0.00243086940312423,0.01,1,2,30.8308651382582,0.242424242424242,0.5,4.7855339050293,0
+5114,0.0017086297584774,0.0625,6.25,3,71.6645375984106,0.733333333333333,3.5,7.38165237426758,0
+5115,-0.00646601409389518,0.0675,6.75,1,85.0052537126447,0.875303946630089,6.75,6.14522036799678,0
+5116,0.0286779994471362,0.27,27,5,88.0159848410479,0.782226905514577,14.75,4.26384373064394,0
+5117,0.0763751383436011,0.6425,64.25,4,97.867712152931,0.779015163630548,63,1.68848324193101,0
+5118,0.0386904359809705,0.4425,44.25,3,94.1784111597606,0.769613691529189,37,1.7386942502469,0
+5119,0.0144519273976493,0.185,18.5,4,84.8712655030717,0.773478055686645,9.25,3.13321830130912,0
+5120,0.0103601136212546,0.1775,17.75,1,92.7707193874331,0.863829787234043,17.75,3.00054217056489,0
+5121,0.0210398769926178,0.2725,27.25,1,95.1807759450405,0.860449700839046,27.25,3.08257146712837,0
+5122,0.00276826251508282,0.045,4.5,1,80.4523936425773,0.883653286794648,4.5,11.000638961792,5
+5123,-0.0124400914599937,0,0,0,NA,NA,0,NA,NA
+5124,-0.00301780512037112,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+5125,0.00605780318791176,0.06,6,3,71.7893364729839,0.748040313549832,3.25,0.416666666666667,0
+5126,-0.00173223530868199,0.1225,12.25,1,90.2255639097744,0.82363315696649,12.25,2.08966414782466,0
+5127,-0.0265107471552437,0,0,0,NA,NA,0,NA,NA
+5128,0.00290584613743704,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,9.78161512102399,0
+5129,0.00593175462277941,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,3.36916393703885,0
+5130,0.0192333181097638,0.2125,21.25,4,87.0037137242113,0.806580468832124,12.25,5.85674045787138,0
+5131,0.0130340162856919,0.14,14,1,91.1967767414513,0.820187005514265,14,3.82972519738334,0
+5132,0.0376193033910022,0.3225,32.25,2,92.2319657671551,0.836696239302818,17.25,3.15228868824567,0
+5133,0.0142987224487479,0.075,7.5,3,74.4999381242418,0.823496966354109,5.5,6.90602099100749,0
+5134,-0.00134563329788762,0,0,0,NA,NA,0,NA,NA
+5135,0.00931128997033738,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+5136,0.0120854063603292,0.0225,2.25,2,56.58687201489,0.658994032395567,1.5,19.5062446594238,0
+5137,0.0209791162507167,0.1325,13.25,4,80.6657436403374,0.721316147829116,9,24.6787021564987,0
+5138,0.0352905470808696,0.22,22,6,84.3691395026327,0.722358321084436,13,11.5176951885223,0
+5139,0.0170357574882246,0.08,8,3,73.0006111776685,0.749163879598662,3.25,4.27681732177734,0
+5140,0.0269484637372989,0.2225,22.25,3,90.4894755992606,0.797771441282938,19.25,3.62037632974346,0
+5141,0.0074747268787155,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,0.588235294117647,0
+5142,0.023898216638554,0.2525,25.25,3,90.9822691970953,0.733919695485874,20,1.62836248567789,0
+5143,0.0315071919302864,0.25,25,4,87.4122635106964,0.8,14,3.2951188659668,0
+5144,0.0199666052814246,0.1025,10.25,6,71.5799921017568,0.693189616890719,5.25,9.60706459603658,0
+5145,0.0300788776280751,0.155,15.5,8,72.8128361959118,0.660311198772737,5.25,5.31730639549994,0
+5146,0.0235023234671462,0.13,13,6,74.959963086555,0.586723492186491,4.5,2.27406553121713,0
+5147,0.0145578790869513,0.1475,14.75,3,85.161767681849,0.873497786211259,12.5,3.82088198904264,0
+5148,-0.00369848973662556,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471
+5149,0.0133493240708776,0.26,26,4,88.8204206579908,0.855470443705738,20.25,36.6546765657572,11.1803398132324
+5150,0.0375830434100681,0.155,15.5,3,86.7905924570581,0.857549857549858,13.75,26.8951395711591,0
+5151,0.00388186379735998,0,0,0,NA,NA,0,NA,NA
+5152,0.00568536797517481,0,0,0,NA,NA,0,NA,NA
+5153,0.00265713685616447,0.0125,1.25,1,58.1880425789518,1,1.25,2,0
+5154,0.00565637288843391,0,0,0,NA,NA,0,NA,NA
+5155,-0.00277457116739242,0,0,0,NA,NA,0,NA,NA
+5156,0.00817953510813368,0.01,1,2,30.8308651382582,0.494949494949495,0.5,20.0266904830933,0
+5157,0.0105215220804905,0.075,7.5,2,79.6623670967835,0.7573083287369,5.75,1.90236892700195,0
+5158,0.0311206162026247,0.355,35.5,2,96.0810876053689,0.827072152653548,35.25,12.9554985476212,0
+5159,0.0196210722373962,0.2525,25.25,4,88.939378253928,0.770875293335058,15.25,2.87237190019966,0
+5160,0.01212599023032,0.165,16.5,1,92.3061588442808,0.854204634209841,16.5,0.606060606060606,0
+5161,0.00704728869670362,0.1,10,1,88.6195912622717,0.867330016583748,10,3.86161527633667,0
+5162,0.0185179742619948,0.2125,21.25,2,92.5571335991024,0.840218648165668,20.5,6.13070413926068,0
+5163,-0.000964924349127614,0.0525,5.25,5,57.1552604075627,0.571240105540897,2.5,10.5646740141369,0
+5164,0.0200303585868312,0.215,21.5,2,89.1769681231061,0.816826943091462,12.75,4.2695422061654,0
+5165,0.0360440100874257,0.355,35.5,3,91.1241036602118,0.749552772808587,18.25,3.73589975061551,0
+5166,0.0201063697916061,0.2,20,5,84.0210132678204,0.700704225352113,13.25,4.42838976383209,0
+5167,0.00542919670523588,0.1325,13.25,6,72.3726960057982,0.619976565221522,4,4.14542917935353,0
+5168,0.0129149631859582,0.075,7.5,4,75.3950334175579,0.801434087148373,6.25,3.64617570241292,0
+5169,0.0105173972543798,0.015,1.5,3,33.3339461453335,0.419869470630892,0.75,2.01184463500977,0
+5170,0.0152450869389213,0.1925,19.25,2,92.4035041885147,0.899836095428884,19,2.39145630675477,0
+5171,0.00656139706705289,0.185,18.5,2,91.5232221168933,0.839546956111373,17.75,1.08108108108108,0
+5172,-0.163993445588858,0.0425,4.25,2,70.5473617155285,0.7911227154047,3.25,0.294117647058824,0
+5173,-0.0265585890921648,0.065,6.5,3,74.9780626833141,0.713055954088953,5,4.00546675461989,0
+5174,0.0106001860904416,0.1275,12.75,6,75.4559182105454,0.670651780127128,6.25,0.980392156862745,0
+5175,0.0189994394505266,0.1375,13.75,4,82.126968758787,0.74370709382151,8.5,0.909090909090909,0
+5176,0.0517549821551074,0.535,53.5,3,93.7653361991955,0.805479007942941,30.25,1.11347790299175,0
+5177,0.0664461498335004,0.74,74,1,99.1448611187463,0.723795055931501,74,2.41831162169173,0
+5178,0.0964546880312264,0.985,98.5,1,99.9600766120013,0.465240641711228,98.5,3.24197981200242,0
+5179,0.0732693985573133,0.7375,73.75,4,97.5458313243925,0.89017589017589,71.5,1.01815369169591,0
+5180,0.0343966728978739,0.3025,30.25,4,88.2862492981767,0.771912675138482,14.5,0.595628659587261,0
+5181,0.0249642047805901,0.22,22,1,94.042067560231,0.967336273068757,22,0.909090909090909,0
+5182,6.8652582122013e-05,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+5183,0.00111414134393272,0.13,13,2,84.6314109001852,0.870851091308278,6.75,111.3973435622,86.3133850097656
+5184,-0.0359028550445873,0,0,0,NA,NA,0,NA,NA
+5185,0.109245242315865,0.675,67.5,1,98.8570461110507,0.975724472765893,67.5,68.8756191394947,20
+5186,0.0756565330084413,0.8525,85.25,1,99.5628383044854,0.695178031796085,85.25,29.2458809324024,0
+5187,0.0843663416965865,0.86,86,1,99.5877487787664,0.725274725274725,86,32.6047592662102,0
+5188,-0.00357824288315896,0.0775,7.75,3,75.0886341003228,0.761517615176152,4.75,60.3914521740329,47.4341621398926
+5189,-0.00805844563172286,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,4.2167605082194,0
+5190,-0.00595413713515882,0,0,0,NA,NA,0,NA,NA
+5191,-0.0254523093697207,0.02,2,1,68.0470115164975,0.693877551020408,2,38.0203099250793,26.9258232116699
+5192,-0.0617879330227152,0,0,0,NA,NA,0,NA,NA
+5193,0.028053057971656,0.3825,38.25,1,96.7531359636374,0.965421355194721,38.25,98.3074236851112,50
+5194,0.0883223848324269,0.6225,62.25,1,98.5923763102686,0.909046982917886,62.25,99.8520160200127,46.0977210998535
+5195,0.0141574514942113,0.23,23,3,90.4423793933378,0.841621792841305,18.5,53.9094845315684,0
+5196,0.0966333366967956,0.6925,69.25,1,98.9385077039357,0.818636647904941,69.25,17.1477868255725,0
+5197,0.0442010621089412,0.33,33,5,89.0581298496793,0.684151854833715,21,11.4250062306722,0
+5198,0.0189272061685551,0.1675,16.75,5,79.8723278104882,0.722799722799723,10.75,6.50706413610658,0
+5199,0.0342531127284383,0.32,32,2,94.9546451026158,0.899015400151477,31.25,5.87759175896645,0
+5200,0.0768286170219289,0.3175,31.75,1,95.9225630587777,0.955599955599956,31.75,30.5985818547527,0
+5201,-0.00230502997001167,0.0075,0.75,3,0,1,0.25,22.7020543416341,11.1803398132324
+5202,0.00476324364522952,0.025,2.5,2,60.6037822408496,0.842209072978304,2,6.94317474365234,0
+5203,-0.0183891772246477,0.01,1,1,52.6315789473684,0.747474747474748,1,12.043016910553,10
+5204,0.00115287441120927,0.005,0.5,1,30.8308651382582,1,0.5,24.6432514190674,22.3606796264648
+5205,-0.000184531298497177,0.0075,0.75,1,44.4894453484604,1,0.75,22.4754689534505,21.2132034301758
+5206,0.0115637126600913,0.0125,1.25,2,43.859649122807,0.594936708860759,1,16.2399646759033,11.1803398132324
+5207,0.0215218494347209,0.1125,11.25,2,87.9214008814579,0.911045218680504,11,2.16503126356337,0
+5208,0.0100985407471671,0.1775,17.75,1,92.7707193874331,0.883282674772036,17.75,3.38682959113323,0
+5209,0.00403921237083523,0.0775,7.75,4,73.5053457685632,0.739837398373984,4.75,7.25070387317288,0
+5210,-0.0151277934893869,0.0575,5.75,2,80.190713001571,0.852637783672267,5.5,3.0962262360946,0
+5211,-0.0188264991739925,0.0125,1.25,1,58.1880425789518,1,1.25,4.82842712402344,0
+5212,-0.00743585077673686,0.0025,0.25,1,0,NA,0.25,0,0
+5213,-0.00160867376558599,0.06,6,2,76.1024811026653,0.804031354983203,4.5,7.81537771224976,0
+5214,-0.0100315000640694,0.0125,1.25,2,43.859649122807,0.594936708860759,1,3.41421356201172,0
+5215,0.0353591690796748,0.3725,37.25,2,96.1655195676762,0.807363950790246,36.75,2.83940508541645,0
+5216,0.0666188737024913,0.6025,60.25,2,97.2570384665228,0.882599580712788,57,1.03512286744177,0
+5217,0.00117283182858955,0.1875,18.75,4,89.1494211393546,0.776223776223776,16.5,1.17668543497721,0
+5218,0.0181673319925903,0.32,32,2,92.081037365507,0.861146175208281,16.75,1.13558858633041,0
+5219,0.0080752453221794,0.24,24,4,89.4380578499867,0.747552019583843,19.75,1.70981391270955,0
+5220,-0.0822826819973852,0.1475,14.75,1,91.5590620020185,0.861997584957737,14.75,1.47578081033998,0
+5221,0.0759885958093219,0.89,89,1,99.684221684177,0.81116806042622,89,0.475118358483475,0
+5222,0.0597571318006612,0.68,68,1,98.8806414464123,0.896037181996086,68,0.633920613457175,0
+5223,0.00655041097399362,0.1425,14.25,1,91.3207120308943,0.916701374427322,14.25,4.63599469368918,0
+5224,0.00300704458190012,0.175,17.5,1,92.6818041122695,0.901453559990145,17.5,11.101615851266,0
+5225,0.0665511515719663,0.62,62,2,97.0112811615012,0.869555353901997,55.25,1.47939926578153,0
+5226,0.0388599774454724,0.3025,30.25,4,90.9632296996428,0.817530140110785,25,1.43210141520855,0
+5227,-0.00644182957063094,0.055,5.5,2,75.0425938808522,0.844382197323374,4,1.81818181818182,0
+5228,0.0161166173654692,0.165,16.5,3,86.6126091833521,0.854204634209841,13.25,1.77869004914255,0
+5229,0.0053262334934243,0.0625,6.25,2,77.9292199694423,0.786666666666667,5,7.36875335693359,0
+5230,0.0169449266788456,0.2,20,1,93.4943790657906,0.806338028169014,20,1.9674192905426,0
+5231,-0.00369934140740952,0.0425,4.25,2,75.187969924812,0.87467362924282,4,15.3589796178481,0
+5232,0.0211335021605191,0.135,13.5,5,77.955528092943,0.68922866554789,7.25,3.4001249383997,0
+5233,0.0142904710374569,0.09,9,5,69.5369157876516,0.688644688644689,5.25,2.24013752407498,0
+5234,0.00106310241142637,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,7.8451779683431,0
+5235,0.00143276777782376,0.07,7,2,79.2487354916399,0.85663082437276,6,1.75507627214704,0
+5236,-0.00134268859801523,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,3.33333333333333,0
+5237,0.0185332881919021,0.0875,8.75,5,70.3858769121403,0.659896079357582,4.5,11.0835694449288,0
+5238,0.0198787061193798,0.1275,12.75,4,77.0813013567471,0.749695352896617,5,5.14337876263787,0
+5239,0.0171161893356111,0.07,7,4,74.5534285416858,0.71326164874552,5.5,9.86134317943028,0
+5240,0.0231795310169616,0.1225,12.25,4,79.6215753702475,0.769366436033103,5.5,14.555762933225,0
+5241,0.0168040912791184,0.07,7,4,68.3435286766296,0.68936678614098,3,7.87164402008057,0
+5242,0.0207110373099385,0.175,17.5,1,92.6818041122695,0.862034983986204,17.5,9.08394579206194,0
+5243,0.0256003385082613,0.11,11,6,68.3372474150577,0.681141815973277,3.5,4.61090486699885,0
+5244,0.0220705214030022,0.11,11,6,72.0121941120588,0.590039477679927,3.75,7.64667493646795,0
+5245,0.0298215123093541,0.22,22,7,78.8756968366266,0.640699003756329,6.5,3.23988138545643,0
+5246,0.0268737720304489,0.25,25,3,89.2889375649214,0.785185185185185,15,2.31535678863525,0
+5247,0.0187018385063675,0.1625,16.25,4,81.6887940109055,0.672434288733325,7.25,16.1726363255427,0
+5248,0.0117546992056464,0.0725,7.25,1,85.7162801918893,0.954120548259448,7.25,3.07386674552128,0
+5249,-0.0183341371318238,0.0525,5.25,4,64.8678241100257,0.670184696569921,3,27.6572085789272,0
+5250,0.0468938880154508,0.265,26.5,2,90.8234487037017,0.893150977668554,15.25,11.2740817519854,0
+5251,0.00567835016558092,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,68.209348042806,60.2079734802246
+5252,-0.0601096414318363,0,0,0,NA,NA,0,NA,NA
+5253,-0.00610645950009712,0.06,6,2,77.4557184380648,0.776035834266517,5,6.36728509267171,0
+5254,-0.00264256109720009,0.04,4,2,73.3496291899809,0.913194444444444,3.75,10.5126430988312,5
+5255,-0.00576165468085492,0.0025,0.25,1,0,NA,0.25,5,5
+5256,-0.0204599521715863,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0
+5257,0.0516061065303802,0.56,56,1,98.2299673180941,0.80426272292301,56,2.69738377843584,0
+5258,0.0661380900409131,0.76,76,2,98.3780962636084,0.927283304246655,74.25,0.460526315789474,0
+5259,0.0273637394820616,0.26,26,5,89.0056493425988,0.768752709929181,20.25,1.28982822711651,0
+5260,0.0203739063911962,0.1775,17.75,2,89.7116301565753,0.786018237082067,14.25,1.67805824817066,0
+5261,0.0215988480715532,0.1725,17.25,3,86.0107378143672,0.830216473995656,10.5,5.23070011968198,0
+5262,0.0126877524156589,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+5263,-0.000600126060571711,0,0,0,NA,NA,0,NA,NA
+5264,-0.0154516412917656,0.035,3.5,2,68.0553838449148,0.740932642487047,2.75,6.50790187290737,0
+5265,0.0221129066854473,0.1625,16.25,2,88.1162935848653,0.862633733984943,13.5,6.8073248056265,0
+5266,0.0185686874674866,0.2875,28.75,2,92.0930354025602,0.824561403508772,23.25,4.8686665078868,0
+5267,0.036404445408225,0.4275,42.75,3,95.2563826324989,0.855825882026755,40.25,3.44459164491174,0
+5268,0.0846346006577369,0.71,71,2,97.0705040352501,0.825648973266176,56.75,1.58991436219551,0
+5269,0.0790139963332331,0.7075,70.75,1,99.0059126497077,0.884326200115674,70.75,2.32003018544335,0
+5270,0.0550753457259998,0.49,49,1,97.7443609022556,0.924585218702866,49,2.33545348109031,0
+5271,-0.0182435873066424,0.05,5,1,81.7256002368443,0.830220713073005,5,0.5,0
+5272,-0.22193737231195,0,0,0,NA,NA,0,NA,NA
+5273,-0.0581182327956776,0,0,0,NA,NA,0,NA,NA
+5274,-0.011050281004791,0.085,8.5,2,83.7838779856093,0.785323965651835,7.75,1.47058823529412,0
+5275,0.0871238067554077,0.755,75.5,1,99.205943814227,0.75610630895592,75.5,1.30344241818055,0
+5276,0.0644437738992565,0.6725,67.25,2,98.1740236732486,0.764190159473963,65,1.83405564886044,0
+5277,0.0718600659007461,0.7925,79.25,2,97.4385766374972,0.798525204496918,64.75,1.52940047351344,0
+5278,0.0831149391585495,0.8525,85.25,1,99.5628383044854,0.674155827092366,85.25,1.56240981205468,0
+5279,0.0573366002740659,0.6225,62.25,2,98.2621556602899,0.693033567347867,61.5,2.21597159818473,0
+5280,0.0663843216998066,0.6425,64.25,2,96.2799830010029,0.889507581815274,51.5,4.56061432241002,0
+5281,0.0247176744921671,0.385,38.5,1,96.780810904996,0.89083283058979,38.5,0.519480519480519,0
+5282,-0.0294291805744433,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,0.384615384615385,0
+5283,-0.0547534863125475,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,3.33333333333333,0
+5284,-0.0173395292394343,0.06,6,1,83.7764057650598,0.944008958566629,6,31.2631154060364,10
+5285,0.0800395499491424,0.7475,74.75,1,99.1756322950922,0.767863109579164,74.75,36.2244949021866,5
+5286,0.0770228193560615,0.91,91,2,99.1702351181993,0.822609256571521,90,23.8275911781814,0
+5287,0.0915247382689267,0.9525,95.25,1,99.8703629518046,0.79588861350051,95.25,41.6615201344327,0
+5288,0.0186886082206911,0.2875,28.75,1,95.4473178079967,0.8582995951417,28.75,20.2990523960279,0
+5289,-0.00613222536128887,0.135,13.5,1,90.9386564749522,0.88812231959724,13.5,14.9830584349456,0
+5290,0.112527372824261,0.905,90.5,1,99.7306491449722,0.923165578179024,90.5,22.609852627496,0
+5291,0.0598078624266964,0.565,56.5,1,98.2611567869712,0.989079094656947,56.5,56.6343219048154,30
+5292,-0.06654907616321,0,0,0,NA,NA,0,NA,NA
+5293,0.115328687853762,0.6675,66.75,1,98.8211572488199,0.987993936938154,66.75,94.0201155273209,50
+5294,0.0826771340845153,0.965,96.5,1,99.9054042256917,0.570647931303671,96.5,152.663559157614,106.301460266113
+5295,0.058571404135364,0.31,31,2,92.3006294815445,0.851851851851852,24.75,118.001834131056,57.0087738037109
+5296,0.162817182922736,1,100,1,100,NA,100,94.9666474246979,45
+5297,0.129667366473004,0.99,99,1,99.9734851828463,0.867021276595747,99,74.6493070823978,14.1421356201172
+5298,0.109612981340615,0.755,75.5,2,98.8004478278978,0.806319715935583,74.75,43.9867512342946,0
+5299,0.0500445183546253,0.4,40,5,93.5351892349442,0.852607709750567,36.5,15.6054746389389,0
+5300,0.0482567731439485,0.4125,41.25,2,93.5521415761774,0.843225083986562,26.5,10.6674117348411,0
+5301,0.00601366718943609,0,0,0,NA,NA,0,NA,NA
+5302,0.0110403367237814,0.0875,8.75,2,80.9627098638407,0.811053377420879,6.25,22.4327122279576,10
+5303,-0.0139981826662552,0.01,1,1,52.6315789473684,0.747474747474748,1,18.1395816802979,14.1421356201172
+5304,-0.00516587105553299,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.3251407623291,0
+5305,0.0229659143041499,0.1575,15.75,2,88.6981087887809,0.794982465605611,13.5,37.3790868123372,11.1803398132324
+5306,0.00764125783480949,0.045,4.5,3,70.1539628083604,0.767306573589296,3.75,0.833333333333333,0
+5307,0.0180286289925789,0.2125,21.25,2,92.2058266392636,0.840218648165668,20,1.63696630141314,0
+5308,-0.00784719410183243,0,0,0,NA,NA,0,NA,NA
+5309,0.00520228055367625,0.035,3.5,2,69.0285060247284,0.844559585492228,3,2.79586683000837,0
+5310,0.000916759950505366,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859
+5311,-0.0137693604044443,0,0,0,NA,NA,0,NA,NA
+5312,0.0094231924921587,0.045,4.5,3,66.6428185985891,0.689742098119062,2.5,23.5237125820584,0
+5313,0.00558689113757282,0.0925,9.25,1,87.9580013362782,0.801291604570293,9.25,8.80020430281356,0
+5314,0.0235841300369384,0.2725,27.25,1,95.1807759450405,0.881382245713189,27.25,2.0216086151403,0
+5315,0.0656244720948868,0.7175,71.75,1,99.0496701463057,0.836119305145854,71.75,1.55896782293552,0
+5316,0.0465327745686227,0.47,47,2,94.8014788124744,0.826501843417914,30.25,1.30508159069305,0
+5317,-0.0345650860280148,0.0525,5.25,2,74.9292782083333,0.901055408970976,4.5,0.952380952380952,0
+5318,-0.0325479260161228,0.15,15,2,87.7162726179733,0.852941176470588,12.75,0.75,0
+5319,-0.0726135333082493,0.08,8,2,81.8066549469335,0.707357859531773,6.5,0.78125,0
+5320,0.0138322179135866,0.6075,60.75,1,98.5105231673728,0.831645107887427,60.75,0.246913580246914,0
+5321,0.0474170970403065,0.425,42.5,4,92.3829607510022,0.833310181969718,32,0.820380065020393,0
+5322,0.068163589662654,0.7,70,1,98.9724810035032,0.740177439797212,70,0.601015254429409,0
+5323,0.0710173635109095,0.6975,69.75,1,98.9612174727447,0.741341240300297,69.75,0.595746248853677,0
+5324,0.0459872700862616,0.4325,43.25,1,97.260148197161,0.895046469556571,43.25,1.9915682621774,0
+5325,0.0629355442912856,0.6,60,3,95.783396495158,0.749443207126949,45,1.3175550142924,0
+5326,0.0377913120532685,0.335,33.5,6,91.4001495228454,0.808948601010724,29.5,0.373134328358209,0
+5327,0.034195429736662,0.3125,31.25,1,95.8481348315798,0.903884661593913,31.25,1.08970562744141,0
+5328,0.0351576988978559,0.3225,32.25,3,89.7222516196918,0.824134411556882,17.75,2.14045424054759,0
+5329,0.0048190984412031,0.135,13.5,2,88.6602386726794,0.850829759462987,12.75,1.11111111111111,0
+5330,0.00251505090047885,0,0,0,NA,NA,0,NA,NA
+5331,0.00349719071031359,0.03,3,1,74.8763016215986,0.939357186173438,3,2.5,0
+5332,-0.00418492917511685,0.0075,0.75,1,44.4894453484604,1,0.75,6.3807118733724,5
+5333,0.00132950942896059,0.0525,5.25,2,76.1446640085032,0.802110817941952,4.5,3.44731158301944,0
+5334,0.0157429573987974,0.2325,23.25,3,90.5273254797307,0.850869275146187,20,3.22757437921339,0
+5335,0.00266786509353551,0.0125,1.25,1,58.1880425789518,1,1.25,8.88634948730469,5
+5336,-0.00363270414950421,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+5337,0.000191534567366034,0.08,8,3,78.1534801697676,0.790969899665552,6.25,3.00666260719299,0
+5338,0.0103934295987347,0.075,7.5,4,78.6496218400943,0.713182570325428,6.5,6.84773457845052,0
+5339,0.0166578177088013,0.105,10.5,8,64.692232583066,0.559367377449052,3.75,2.52888579595657,0
+5340,0.0323982383698058,0.2925,29.25,6,83.9597420553207,0.713314220948063,10.5,1.9334461831639,0
+5341,0.0278582945745984,0.2225,22.25,5,84.6894884897476,0.676434306052701,9.75,8.41517409849703,0
+5342,0.0203498198337547,0.1775,17.75,4,85.5664074776858,0.737386018237082,12,2.96336864417707,0
+5343,0.00960086850191146,0.1225,12.25,3,80.2253221429685,0.728666395333062,6.5,3.67570534530951,0
+5344,0.0369159353533541,0.3125,31.25,3,91.2258221390781,0.7436924309171,18.25,8.0587979888916,0
+5345,0.112562802448228,0.77,77,1,99.2652328179138,0.707646176911544,77,7.46379934038435,0
+5346,0.0361958102266453,0.375,37.5,4,93.0181791576122,0.744,30.75,4.03152900695801,0
+5347,-0.0356853274335913,0.095,9.5,8,61.8565605496866,0.491361922301149,2.75,15.6834586294074,0
+5348,0.0034389519314675,0.1275,12.75,6,75.5015962082583,0.736521424101703,7.25,8.58694016699697,0
+5349,-0.0197957490909539,0.0425,4.25,2,69.1697389652099,0.83289817232376,2.75,3.01254137824563,0
+5350,-0.000520438626153918,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,2.01184463500977,0
+5351,0.00572280736264474,0.0775,7.75,4,69.209934680401,0.696476964769648,3.25,0.645161290322581,0
+5352,0.0186536898391023,0.245,24.5,1,94.6299732152399,0.917218543046358,24.5,1.62389934306242,0
+5353,-0.0161619555553557,0.04,4,2,74.2500702543702,0.826388888888889,3.75,24.2305688858032,0
+5354,-0.00779687643903344,0,0,0,NA,NA,0,NA,NA
+5355,0.00167173374269623,0,0,0,NA,NA,0,NA,NA
+5356,0.0188791700084266,0.12,12,4,84.0410920631382,0.83370288248337,10.75,0.796904325485229,0
+5357,0.0359306299982381,0.32,32,5,88.8634389525963,0.810653875284019,20.5,3.85957346856594,0
+5358,0.0402502961169375,0.57,57,1,98.2919349628155,0.967168262653899,57,0.0657894736842105,0
+5359,0.0225882671564545,0.225,22.5,2,93.5691605449061,0.839711480665197,22.25,0.833333333333333,0
+5360,0.00186882773994512,0,0,0,NA,NA,0,NA,NA
+5361,-0.00223348061374054,0.095,9.5,2,86.0224991721307,0.771989827238446,9,2.64705828616494,0
+5362,0.000181001901964919,0.0625,6.25,3,74.2791497993851,0.76,4.75,3.08284271240234,0
+5363,0.00584042185779254,0.0725,7.25,1,85.7162801918893,0.885301370648621,7.25,2.48520923482961,0
+5364,0.00409939541816129,0.065,6.5,3,69.976126859703,0.660884309377853,3,1.61811799269456,0
+5365,-0.00728184302239924,0,0,0,NA,NA,0,NA,NA
+5366,-0.0114108825754738,0,0,0,NA,NA,0,NA,NA
+5367,-0.00538073981600064,0.0575,5.75,2,79.9790455901811,0.882110226937813,5.5,8.94336078477942,0
+5368,0.0410180223349016,0.39,39,1,96.835360326048,0.965727994516479,39,4.94887786033826,0
+5369,0.0722338782025326,0.655,65.5,1,98.7599782819451,0.834705864990112,65.5,1.72026976374269,0
+5370,0.0753540218510898,0.665,66.5,1,98.8090595843688,0.826518709059911,66.5,1.78060003868619,0
+5371,0.0575672352354741,0.3925,39.25,2,95.0289443229582,0.925697302240512,37,1.99544121809066,0
+5372,-0.00579539301139448,0.07,7,1,85.3702908942512,0.90442054958184,7,3.21428571428571,0
+5373,-0.037478163033461,0.025,2.5,2,60.3016612897646,0.605522682445759,1.75,2.5,0
+5374,-0.00291456002414634,0.385,38.5,1,96.780810904996,0.896578471085064,38.5,1.19572815337738,0
+5375,0.0975488891665736,0.92,92,1,99.7759364721822,0.928263988522238,92,0.0271739130434783,0
+5376,0.0819329523952911,0.85,85,1,99.5544616363511,0.751166407465008,85,1.41385493558996,0
+5377,0.0694329569549882,0.7625,76.25,1,99.2358070072224,0.802288329519451,76.25,1.21709247026287,0
+5378,0.0308975217953684,0.3475,34.75,4,93.6518080096277,0.849156786436178,31.75,1.8689718452289,0
+5379,0.0445182020781795,0.4475,44.75,3,93.5645030061169,0.759401785348116,26.25,1.63727015489973,0
+5380,0.0537375743353914,0.605,60.5,2,98.2391717755468,0.876778312983085,60.25,1.8046361119294,0
+5381,0.0465402560120856,0.605,60.5,3,97.3825747401077,0.915985213397558,59.25,0.165289256198347,0
+5382,0.0297086530416709,0.415,41.5,2,95.0094428837261,0.88827439807832,38.75,0.0602409638554217,0
+5383,0.0466779029872487,0.525,52.5,1,97.9993099016594,0.892313904967021,52.5,1.68230605352493,0
+5384,0.0656275744116647,0.3925,39.25,2,96.0671828175272,0.959990855052583,38.75,22.6243741831202,0
+5385,0.0754933298472315,0.685,68.5,3,95.3052403626646,0.777654252362424,50.75,23.7362659830247,0
+5386,0.0837688674009405,0.77,77,1,99.2652328179138,0.775112443778111,77,15.7195825391002,0
+5387,0.0838775496836752,0.8325,83.25,3,97.1645318458513,0.753221175521439,76.25,49.3999088104065,15
+5388,-0.0244852970472857,0.2,20,1,93.4943790657906,0.911971830985915,20,17.9299684047699,0
+5389,0.0803257975141423,0.65,65,1,98.735013968989,0.929598122616603,65,26.4931430156414,0
+5390,0.104607831585599,0.8275,82.75,2,98.4492316334923,0.897971014492754,80.75,60.7953959692641,25.4950981140137
+5391,-0.0414958181715338,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,58.9337156790274,43.0116271972656
+5392,-0.0583867638441734,0,0,0,NA,NA,0,NA,NA
+5393,0.137894146293183,0.8925,89.25,1,99.6920407997372,0.958717490023394,89.25,83.7201955351843,45
+5394,0.0985400710022805,0.7825,78.25,1,99.3133324321661,0.968829144749659,78.25,123.748989665851,60.2079734802246
+5395,0.133556956144093,0.625,62.5,1,98.6057312417508,0.971509971509972,62.5,194.843089416504,149.164337158203
+5396,0.126668122187257,1,100,1,100,NA,100,192.383389892578,142.302490234375
+5397,0.197190434653312,1,100,1,100,NA,100,163.361795463562,105.948104858398
+5398,0.203043938744813,1,100,1,100,NA,100,97.2995850563049,46.0977210998535
+5399,0.118847706113011,0.9075,90.75,1,99.7382749359844,0.6852747944451,90.75,28.2938244664636,0
+5400,0.237403516191989,0.995,99.5,1,99.9867925566623,1,99.5,48.8305775915558,0
+5401,0.00603384126807214,0.025,2.5,2,65.3357531760436,0.684418145956607,2.25,23.4266883850098,5
+5402,-0.00460863638984392,0,0,0,NA,NA,0,NA,NA
+5403,0.0157988590814875,0.1225,12.25,4,78.4897264574708,0.701533034866368,6.5,16.8412946973528,5
+5404,0.03084422766442,0.235,23.5,3,93.3158302661182,0.813258636788048,23,10.2869731213184,0
+5405,-0.0376968142138139,0,0,0,NA,NA,0,NA,NA
+5406,-0.0124097216896917,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,1.66666666666667,0
+5407,-0.0157482497226738,0.0025,0.25,1,0,NA,0.25,0,0
+5408,0.00590389100800166,0.0025,0.25,1,0,NA,0.25,5,5
+5409,-0.00479817633533457,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5
+5410,0.013384811876158,0.0275,2.75,2,67.2501647699269,0.725792630676949,2.5,13.8958029313521,5
+5411,0.00315336900361217,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,10.102014541626,7.07106781005859
+5412,0.0124106108054184,0.1225,12.25,1,90.2255639097744,0.877899877899878,12.25,21.6494515866649,5
+5413,-0.0100048997872125,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,32.0722314394437,21.2132034301758
+5414,0.0319669930649252,0.1525,15.25,3,85.154143579998,0.79963265987644,7.75,10.7025056745185,0
+5415,0.0193690001661344,0.2875,28.75,2,92.6530810911146,0.844804318488529,24,2.27633751578953,0
+5416,-0.00397149108757276,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,0.333333333333333,0
+5417,-0.00480185174345024,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,0,0
+5418,-0.019893317509559,0.0425,4.25,3,66.6524689638038,0.66579634464752,2.75,0.882352941176471,0
+5419,0.015394308452087,0.37,37,3,93.7465767784051,0.841855561412757,30.25,0.202702702702703,0
+5420,0.0817914124415256,0.805,80.5,1,99.3970714465752,0.856612685560054,80.5,0.062111801242236,0
+5421,0.05422580180777,0.5975,59.75,2,97.4990622492641,0.749885364125224,57.25,1.18170044711444,0
+5422,0.149867355939932,0.9125,91.25,1,99.7534323937872,0.751912342360968,91.25,0.219178082191781,0
+5423,0.133381684127962,0.87,87,1,99.620460342959,0.859714753331775,87,0.668913062961622,0
+5424,0.0433693698293791,0.3925,39.25,2,93.4952626680843,0.862825788751715,22.75,0.963141423122139,0
+5425,0.0721939002524596,0.765,76.5,1,99.2456636792102,0.749253291050555,76.5,0.942105461569393,0
+5426,0.0435242611110516,0.445,44.5,3,96.6905371083002,0.726169938935897,43.5,1.13566160737798,0
+5427,0.0500362483355127,0.57,57,1,98.2919349628155,0.857729138166895,57,0.834891837939881,0
+5428,0.0155144691519445,0.1675,16.75,2,87.7885965940422,0.876799876799877,11.5,2.05064989915535,0
+5429,0.0355208220544046,0.38,38,3,93.8467492646226,0.867036651636027,30.75,1.66494314294112,0
+5430,0.0319194532899769,0.31,31,3,94.4903042621512,0.838969404186795,30,0.574300027662708,0
+5431,0.0258146797977679,0.1775,17.75,6,80.8805407456046,0.717933130699088,9.5,4.52140526032784,0
+5432,0.0133618097361273,0.1225,12.25,4,77.4409936522763,0.674399674399675,5.75,2.88848324211276,0
+5433,0.0104141908192832,0.105,10.5,3,79.4962027658268,0.826894326854985,7.75,3.70661463056292,0
+5434,0.00783564093185077,0.13,13,2,89.5205369366759,0.845021309569934,12.75,0.384615384615385,0
+5435,-0.0147612288534719,0,0,0,NA,NA,0,NA,NA
+5436,-0.00733791119855141,0,0,0,NA,NA,0,NA,NA
+5437,0.0113483654308629,0.0625,6.25,2,78.2831090920657,0.866666666666667,5.5,4.21421356201172,0
+5438,0.00786572793639607,0.035,3.5,4,53.4653723515938,0.481865284974093,1.75,10.6507193701608,0
+5439,0.0208817874203851,0.14,14,4,81.7340314814477,0.712299208822824,9,4.12500517708915,0
+5440,0.0395207561225834,0.37,37,5,91.5431619524581,0.812569554266971,30.5,1.22441353669038,0
+5441,0.0366533418211475,0.385,38.5,3,96.2134544822597,0.770174380189032,38,2.60611849945861,0
+5442,0.0258469529518061,0.28,28,5,88.120927259356,0.773102310231023,17,0.706626210893903,0
+5443,0.0204029381295368,0.055,5.5,5,60.8854636910973,0.595393713040772,2.25,11.3660961497914,0
+5444,0.0314207216452269,0.225,22.5,4,86.1766575167512,0.751552795031056,14,7.2914064195421,0
+5445,0.0763459974742364,0.5575,55.75,2,96.4240575386291,0.913081269013472,50.25,9.8441036463853,0
+5446,0.0115586497023173,0.1125,11.25,3,79.7794116476351,0.733135656041512,6.75,8.95005476209852,0
+5447,0.00966870599379035,0.0925,9.25,7,65.8384179813453,0.638712008309624,4.75,5.4886247274038,0
+5448,0.0236137626943673,0.145,14.5,2,85.6281725375841,0.801169590643275,8.25,5.25797600581728,0
+5449,0.0116231525161265,0.0825,8.25,4,70.9576805675919,0.697244928852558,3.75,1.4263959942442,0
+5450,0.00279496159777409,0.01,1,1,52.6315789473684,1,1,6.0355339050293,5
+5451,0.00847188776175244,0.0825,8.25,3,74.4656851042894,0.697244928852558,3.75,4.13644894686612,0
+5452,0.0505578626882925,0.475,47.5,2,97.0860263889005,0.913419913419913,47,5.23047230369166,0
+5453,0.0708859941014089,0.725,72.5,2,98.6994636481338,0.899916597164304,72,0.742491294597757,0
+5454,0.0522591896005179,0.46,46,1,97.5030549392159,0.918300653594771,46,1.0345398861429,0
+5455,0.0162960286658154,0.1475,14.75,1,91.5590620020185,0.873497786211259,14.75,0.677966101694915,0
+5456,0.00664300744228058,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,34.9556217193604,28.2842712402344
+5457,0.00886609981869697,0.035,3.5,2,67.5132315290738,0.792746113989637,2.75,28.5394139971052,18.0277557373047
+5458,0.00874691043417442,0.1275,12.75,3,83.2120552180998,0.723347495306788,9,2.00139348647174,0
+5459,0.00349268366511978,0.085,8.5,1,87.210675248157,0.941451990632318,8.5,0.147058823529412,0
+5460,0.00513614208090985,0.0925,9.25,3,80.7216757248599,0.801291604570293,7.75,1.97976777360246,0
+5461,0.00379494098184296,0.0475,4.75,5,61.3569784935917,0.565571544936193,2.75,29.8292820579127,0
+5462,-0.00808599128777587,0.0725,7.25,3,75.9095445700403,0.770602741297241,4.75,9.14997436260355,0
+5463,-0.0107508843212599,0.005,0.5,2,0,1,0.25,28.2390766143799,5
+5464,-0.00186435475580311,0.0425,4.25,1,79.7330921014386,0.87467362924282,4.25,57.548355326933,46.0977210998535
+5465,-0.00618179631593193,0,0,0,NA,NA,0,NA,NA
+5466,-0.00595301090622343,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,5.3451779683431,0
+5467,-0.00906456245331356,0,0,0,NA,NA,0,NA,NA
+5468,-0.00947648879533517,0.02,2,1,68.0470115164975,0.795918367346939,2,4.63388347625732,0
+5469,-0.0186294820120384,0,0,0,NA,NA,0,NA,NA
+5470,0.0277079037464864,0.4375,43.75,1,97.3060110945426,0.884416924664603,43.75,1.52324881417411,0
+5471,0.0995565628563054,0.925,92.5,1,99.7907868956838,0.695672848311935,92.5,1.19110994081239,0
+5472,0.128201458093245,0.97,97,1,99.9192307098231,0.864130434782609,97,2.0192256711193,0
+5473,0.080007783248584,0.6775,67.75,2,98.5208916340707,0.853794489879837,67.25,3.39902900329815,0
+5474,-0.00127031701242231,0.2475,24.75,1,94.6838124709557,0.858150733510023,24.75,1.8304363982846,0
+5475,0.060211927840719,0.7275,72.75,1,99.0925222972574,0.939620616205156,72.75,0.171821305841924,0
+5476,0.0699468981288374,0.915,91.5,1,99.7609644895861,0.626517273576097,91.5,0.150273224043716,0
+5477,0.0778602756885812,0.8675,86.75,2,99.3986483737564,0.815922687528762,86.5,0.582337371210544,0
+5478,0.0353414810676622,0.3025,30.25,3,90.1326924697147,0.824046920821114,14.5,0.909090909090909,0
+5479,0.0239770514913835,0.3875,38.75,1,96.8082175905,0.9656283566058,38.75,0.290322580645161,0
+5480,-0.0112824797732901,0.035,3.5,3,63.5119947148021,0.740932642487047,2.75,0,0
+5481,0.0366667797301488,0.555,55.5,1,98.1983573135366,0.831732074037887,55.5,0.247747747747748,0
+5482,-0.0113020113616949,0.2975,29.75,2,91.7682029312121,0.848424937392909,18.25,0.521605611849232,0
+5483,0.0450598042937054,0.4,40,4,92.7915842164816,0.824263038548753,32,1.34375,0
+5484,0.0577835372451773,0.475,47.5,1,97.6265657883157,0.983766233766234,47.5,24.5383008354589,0
+5485,0.0567126557632582,0.4075,40.75,4,92.4431563560803,0.859353023909986,31,37.5220786369651,5
+5486,0.0506452550821996,0.4625,46.25,4,92.6433234602169,0.869441044471644,30.25,22.0156559815278,0
+5487,0.057555153752437,0.5975,59.75,2,97.0128393260026,0.861047424514014,54.25,37.5756260460889,0
+5488,-0.0364126681376365,0.115,11.5,1,89.742951983695,0.913081269013472,11.5,31.852549345597,20
+5489,0.110085134104011,0.905,90.5,1,99.7306491449722,0.754129850172877,90.5,25.456945456194,0
+5490,0.0880035458967541,0.7225,72.25,1,99.0712074303406,0.980127186009539,72.25,30.0762022209827,0
+5491,-0.0554276101132473,0,0,0,NA,NA,0,NA,NA
+5492,-0.028060526848567,0.13,13,1,90.6657843098624,0.896680873046623,13,43.596307351039,15
+5493,0.166721885185689,1,100,1,100,NA,100,32.477774438858,0
+5494,0.0966658881737385,0.5875,58.75,2,96.6885974635456,0.911644923034445,54.25,75.3001744209452,40
+5495,0.158087817220949,0.95,95,1,99.8632718311308,0.972260748959778,95,192.135598875347,140.089248657227
+5496,0.13783468385227,1,100,1,100,NA,100,264.028444786072,234.093994140625
+5497,0.154219107634854,0.8025,80.25,1,99.3879413454111,0.941513138655638,80.25,202.476504982446,145
+5498,0.131733084698208,0.95,95,1,99.8632718311308,0.944521497919556,95,103.347348895826,45
+5499,0.209003967903554,1,100,1,100,NA,100,51.9214111185074,0
+5500,0.217568306401372,1,100,1,100,NA,100,108.907988185883,45.276927947998
+5501,0.0127174146686411,0.065,6.5,2,80.469605015409,0.869570888222251,6,12.876180428725,0
+5502,-0.0111105679668617,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+5503,0.0125850847900438,0.115,11.5,7,66.5798669285238,0.579892800231783,3.5,7.97680017222529,0
+5504,0.00696020288216914,0.085,8.5,2,84.2963148647428,0.843871975019516,8,0.441176470588235,0
+5505,-0.0216677550692475,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+5506,-0.032845947642345,0,0,0,NA,NA,0,NA,NA
+5507,-0.0113675166426674,0.0275,2.75,1,73.5251216233933,1,2.75,0,0
+5508,-0.0081967854659888,0.01,1,1,52.6315789473684,0.747474747474748,1,13.3375577926636,10
+5509,-0.0168052006593825,0,0,0,NA,NA,0,NA,NA
+5510,-0.00355817798327735,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,19.6024524143764,5
+5511,-0.00285214782959883,0.0025,0.25,1,0,NA,0.25,25,25
+5512,0.000740779392508557,0.0775,7.75,2,79.612505752468,0.89159891598916,6,7.61354108010569,0
+5513,-0.00794856790127597,0.055,5.5,3,68.2775604035065,0.719887955182073,3.25,7.70492935180664,0
+5514,0.0423573383011535,0.355,35.5,3,89.9747502317861,0.809183064997019,15,7.37954977868309,0
+5515,0.00466597172453476,0.0775,7.75,3,80.946724255699,0.804878048780488,7,1.45161290322581,0
+5516,0.00418964827127638,0.08,8,2,82.8157980848341,0.811872909698997,7.25,2.03125,0
+5517,0.00735627316571481,0.1275,12.75,4,82.7409474209399,0.710173566511873,10.25,2.42366169948204,0
+5518,-0.0164406410659285,0.215,21.5,1,93.912339662796,0.900087423504434,21.5,0.581395348837209,0
+5519,0.0554221754759783,0.575,57.5,1,98.3223108063601,0.764157411216235,57.5,0.108695652173913,0
+5520,0.0891520722163841,0.815,81.5,1,99.4331707829294,0.74511096462316,81.5,0.497150514754781,0
+5521,0.0962188403587788,0.915,91.5,1,99.7609644895861,0.864188099482217,91.5,0.368852459016393,0
+5522,0.0867369741073344,0.5825,58.25,3,96.6989996018839,0.878862963727717,55.25,0.189451225837413,0
+5523,0.0640321663137365,0.685,68.5,2,97.5822163044076,0.796183064665555,63,1.29300934728915,0
+5524,0.0967756485223072,0.8575,85.75,1,99.5794816088838,0.826727312107429,85.75,0.858593220613441,0
+5525,0.0637581178457185,0.705,70.5,2,98.748051759347,0.88487368084426,70.25,0.195035460992908,0
+5526,0.0457969323135649,0.4,40,2,95.6006628673428,0.886621315192744,38.5,1.96308135986328,0
+5527,0.0651233996776864,0.74,74,2,98.8894969566059,0.903328269576025,73.75,0.219594594594595,0
+5528,-0.0132319321309853,0.07,7,1,85.3702908942512,0.95221027479092,7,2.14285714285714,0
+5529,-0.0719871488192803,0.05,5,2,76.3172662672173,0.830220713073005,4.5,0.25,0
+5530,0.0250096977992507,0.2825,28.25,5,88.4254846187582,0.829199972671996,20.75,0.486725663716814,0
+5531,0.0301754619166604,0.2625,26.25,6,84.4979388360586,0.784772666128598,11.5,1.41530234927223,0
+5532,0.00488015200526206,0.0925,9.25,3,80.7722900226046,0.819356004154812,7.5,0.945945945945946,0
+5533,-0.0116041279526507,0.055,5.5,2,79.4049244770798,0.875505757858699,5.25,2.23373343727805,0
+5534,-0.0280698729646747,0.015,1.5,1,62.2896536353828,1,1.5,0,0
+5535,-0.0183803121303481,0.0075,0.75,1,44.4894453484604,1,0.75,21.4136530558268,18.0277557373047
+5536,0.0245719834975898,0.175,17.5,4,83.8615670595442,0.773343187977334,9.75,13.7507613863264,0
+5537,0.0591436065645394,0.5625,56.25,1,98.2456140350877,0.891156462585034,56.25,1.65938208685981,0
+5538,0.0168203358483697,0.055,5.5,8,46.223495552917,0.502023031434796,1.5,4.54545454545455,0
+5539,0.0163941325431915,0.065,6.5,6,58.9767711216088,0.530455197600104,2,2.88461538461538,0
+5540,0.00338044437003191,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+5541,0.00569122894848988,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,1.34122975667318,0
+5542,0.0050411690654073,0.0675,6.75,3,72.0079631906891,0.675790261238232,3.5,3.0846026385272,0
+5543,0.0303922218148364,0.2425,24.25,6,81.5502923300484,0.711695307461781,10.25,1.23159392838626,0
+5544,0.0501913136929215,0.475,47.5,4,93.9561527063352,0.794372294372295,29.75,1.47368421052632,0
+5545,0.0262808378045884,0.185,18.5,5,85.6495760417684,0.707409155261916,13.5,1.37933875418998,0
+5546,0.0481448495970108,0.4825,48.25,2,96.3388091938909,0.859660486330392,45.5,0.995186879844863,0
+5547,-0.00321651883445156,0.0925,9.25,3,76.9716624100661,0.837420403739331,6.75,5.90703433268779,0
+5548,0.00697176153450414,0.0475,4.75,2,71.052023261746,0.637976287446828,2.5,16.1090877934506,0
+5549,0.012271311686427,0.05,5,2,72.8212875767485,0.864176570458404,3.5,2.35355339050293,0
+5550,0.0111006924747198,0.055,5.5,2,76.6744248864547,0.813258636788049,4.5,2.68827889182351,0
+5551,0.0363044147134133,0.425,42.5,2,96.3593293031142,0.922211418252535,41.5,0.147058823529412,0
+5552,0.0296682335119021,0.215,21.5,4,84.1614925272669,0.79184879896757,10.5,3.08965904768123,0
+5553,0.0137045348360152,0.1625,16.25,4,82.8688735709845,0.683000924580637,8.5,3.49812733576848,0
+5554,0.0231571163584363,0.21,21,6,83.7324046920313,0.719649987256818,14.75,3.23602487927391,0
+5555,0.02844807194635,0.3025,30.25,1,95.6937799043062,0.941348973607038,30.25,0.247933884297521,0
+5556,0.0374881410847047,0.42,42,1,97.1419289493636,0.916573971078977,42,0.667089689345587,0
+5557,0.0399482052248641,0.4225,42.25,4,94.0813260412332,0.777999777999778,36,2.68390386908717,0
+5558,0.00930317247765743,0.06,6,2,75.3144668705491,0.804031354983203,4.25,0.208333333333333,0
+5559,-0.000270776877368917,0,0,0,NA,NA,0,NA,NA
+5560,-0.00727580804325044,0,0,0,NA,NA,0,NA,NA
+5561,0.0076763644307357,0.16,16,3,84.8122880197423,0.819302721088435,9.75,3.7976371049881,0
+5562,0.00785604414379122,0.1075,10.75,4,76.1165407083883,0.751011515717398,7,19.9984114447305,0
+5563,0.00415180690990383,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,39.9566189692571,10
+5564,-0.00703150966489375,0.0025,0.25,1,0,NA,0.25,52.2015342712402,52.2015342712402
+5565,-0.00917926473861371,0,0,0,NA,NA,0,NA,NA
+5566,-0.02364871892672,0,0,0,NA,NA,0,NA,NA
+5567,-0.0139871714295396,0,0,0,NA,NA,0,NA,NA
+5568,-0.0082446901279036,0.03,3,2,63.6107546195582,0.757428744693754,2,0.416666666666667,0
+5569,-0.00305303134579844,0.0375,3.75,1,78.0843273950357,1,3.75,3.13807118733724,0
+5570,0.0603726550280408,0.55,55,2,97.5993223658118,0.804878048780488,54,1.5352221922441,0
+5571,0.121912241405807,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,1.63339410058718,0
+5572,0.106512427264825,0.995,99.5,1,99.9867925566623,0.735449735449744,99.5,1.01562521086266,0
+5573,0.102476004268974,0.995,99.5,1,99.9867925566623,0.735449735449744,99.5,1.99816952518482,0
+5574,0.10135532326065,0.995,99.5,1,99.9867925566623,0.20634920634921,99.5,1.06226569324283,0
+5575,0.0910977193294093,0.9,90,1,99.7153023505818,0.618768328445748,90,1.66486191219754,0
+5576,0.0895613402035087,0.9025,90.25,1,99.7229916897507,0.745089218773429,90.25,1.12385229390744,0
+5577,0.0352460016965051,0.3875,38.75,3,92.6543518567605,0.810955961331901,27.5,0.800917004000756,0
+5578,0.0512505511956988,0.4625,46.25,1,97.5240566095389,0.907520739834081,46.25,0.632816582757074,0
+5579,0.00132946062542032,0.285,28.5,4,87.7143162533035,0.755584221603639,12.75,0.087719298245614,0
+5580,0.0136966846339055,0.205,20.5,4,84.194725598427,0.809152027759705,9.25,0.365853658536585,0
+5581,0.0139612165435756,0.2225,22.25,4,88.7461180400122,0.87057372242108,18.25,0.0561797752808989,0
+5582,-0.00275875506224111,0.295,29.5,2,93.2055571843807,0.781268641877113,24.75,1.03450057466151,0
+5583,0.0466287412034944,0.4625,46.25,3,93.0165481109796,0.79328165374677,26.75,6.66350037858293,0
+5584,0.086596825751385,0.6475,64.75,1,98.7224235157768,0.953206112451561,64.75,20.6859258261427,0
+5585,0.0207422044803025,0.1225,12.25,2,86.1014653339208,0.810066476733144,10,12.3893766597826,0
+5586,0.0385011464240188,0.25,25,4,89.8368810954636,0.777777777777778,20.5,3.42416017532349,0
+5587,0.0383291527476104,0.2825,28.25,2,91.3724366670602,0.863359978137597,19.75,43.2531573033966,10
+5588,0.0474793789423529,0.53,53,3,96.0778592458434,0.908197429528027,49.75,63.6101643004507,22.3606796264648
+5589,0.174156084861606,1,100,1,100,NA,100,49.4301954364777,10
+5590,0.0491414361860006,0.4525,45.25,1,97.4390089868719,0.97273904450351,45.25,38.4795384064564,0
+5591,-0.00481839525033138,0.1825,18.25,1,92.9430371372494,0.971330275229358,18.25,19.8987587445403,5
+5592,-0.00166591129789595,0.2325,23.25,1,94.3478768975745,0.976453043444135,23.25,21.2956857168546,5
+5593,0.114257156078675,0.925,92.5,1,99.7907868956838,0.904897765097479,92.5,40.6879451957909,0
+5594,0.103369899239624,0.71,71,1,99.016938641085,0.845021309569934,71,121.075362353258,60
+5595,0.127409351468086,1,100,1,100,NA,100,200.573335609436,150.416091918945
+5596,0.182795427872334,0.9675,96.75,1,99.9123308655226,1,96.75,252.708486118366,197.294189453125
+5597,0.0500931095919805,0.3475,34.75,2,92.7425287522938,0.867257972063837,22,239.531060747105,188.215301513672
+5598,0.166338807088323,0.975,97.5,1,99.9329506995597,0.83783783783784,97.5,172.348690150334,105.118980407715
+5599,0.238079512640834,1,100,1,100,NA,100,141.04449596405,95
+5600,0.158551771487109,0.955,95.5,1,99.8774262095089,0.877225291589933,95.5,136.935624886558,90
+5601,0.00265627281174602,0.01,1,3,15.8692205350002,0.242424242424242,0.5,13.9038820266724,0
+5602,0.00259726954276175,0.035,3.5,4,50.6993553062848,0.533678756476684,1.5,21.5848434993199,5
+5603,0.00856877496871675,0.2275,22.75,1,94.2285806660851,0.944064884733709,22.75,1.49684838934259,0
+5604,0.0494436134831631,0.3,30,3,93.3911678394327,0.921363040629096,28.5,1.81698745091756,0
+5605,-0.015075650778308,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,5.97696702376656,0
+5606,-0.0169409744750499,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,54.9720024108887,46.0977210998535
+5607,-0.0224962775575477,0,0,0,NA,NA,0,NA,NA
+5608,0.00244138868054051,0.0325,3.25,3,59.5396962454495,0.712891185759403,2.25,18.3319103534405,7.07106781005859
+5609,-0.0105534101443664,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+5610,-0.0166286306420079,0,0,0,NA,NA,0,NA,NA
+5611,-0.000491732429762415,0.0125,1.25,1,58.1880425789518,1,1.25,12.3071357727051,7.07106781005859
+5612,-0.00905984616786554,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,6.87708309718541,0
+5613,0.0237089649018071,0.25,25,3,93.5185845546423,0.866666666666667,24.5,7.88415691375732,0
+5614,-0.0970701668893889,0.1,10,4,73.7632261258441,0.635157545605307,5,2.8098385810852,0
+5615,-0.023194571926324,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,0,0
+5616,-0.00604818279711253,0.0125,1.25,1,58.1880425789518,1,1.25,1,0
+5617,0.000770402456480497,0.035,3.5,3,57.751632375124,0.585492227979275,1.75,0.714285714285714,0
+5618,0.0526147087983554,0.625,62.5,2,98.4324301102714,0.726495726495727,62.25,0.24,0
+5619,0.0552198965721618,0.5575,55.75,2,96.5530314515592,0.837027379400261,48.75,0.36019047279529,0
+5620,0.0829670292319497,0.83,83,1,99.48609157949,0.709165963035932,83,0.416518889277814,0
+5621,0.0706280587878427,0.765,76.5,1,99.2456636792102,0.771378000663741,76.5,0.642273460338318,0
+5622,0.0634244550111907,0.635,63.5,1,98.6583599459141,0.827328191550593,63.5,2.44912314227247,0
+5623,0.0973992349114269,0.7225,72.25,3,95.6975924852613,0.721780604133546,39.75,0.866281450001014,0
+5624,0.076417568163015,0.8925,89.25,1,99.6920407997372,0.64221824686941,89.25,0.669865926106771,0
+5625,0.017376736262313,0.42,42,2,96.086402078359,0.866518353726363,40,0.476190476190476,0
+5626,0.00119506223842109,0.1875,18.75,3,84.1319088828175,0.804195804195804,7.75,0.937633005777995,0
+5627,0.0739382057264447,0.875,87.5,1,99.6366054334226,0.697885196374623,87.5,0.342857142857143,0
+5628,0.00905242780729168,0.235,23.5,1,94.4060921446443,0.922191098661687,23.5,0.531914893617021,0
+5629,-0.0838908664415794,0,0,0,NA,NA,0,NA,NA
+5630,0.0177457454733303,0.2375,23.75,5,85.969588685132,0.760848601735776,15.5,1.92027796695107,0
+5631,0.0372136182512804,0.33,33,4,88.65954894851,0.777048368117917,12.75,0.265151515151515,0
+5632,0.0170053487249606,0.1025,10.25,5,71.4354207541582,0.660893787089742,3.5,2.12255101087617,0
+5633,0.0175074143226084,0.15,15,3,83.219560605062,0.785067873303167,8,3.95838508605957,0
+5634,-0.00439562658233626,0.035,3.5,4,49.9491485217681,0.533678756476684,1.25,1.93364770071847,0
+5635,0.0157035596375044,0.195,19.5,3,90.6014625250081,0.891979476100459,18.5,8.17576887668707,0
+5636,0.0121994872889627,0.065,6.5,4,66.2621410296599,0.660884309377853,2.75,7.79460011995756,0
+5637,0.0597367969274274,0.56,56,3,96.4021251875779,0.744454110482819,48.25,2.7566767675536,0
+5638,0.0347843663622189,0.3825,38.25,3,92.6523239996467,0.844396098376244,32,1.01539437287773,0
+5639,0.00958151780218031,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,11.6409862518311,7.07106781005859
+5640,0.00248754110366917,0,0,0,NA,NA,0,NA,NA
+5641,0.0172534587260873,0.1175,11.75,3,80.3448141694889,0.773371104815864,8,8.3676380400962,0
+5642,0.0197251811085152,0.0525,5.25,5,56.1608105398994,0.604221635883905,1.75,4.77726073492141,0
+5643,0.0441135042603423,0.3775,37.75,3,93.902219228713,0.715830832354689,31.75,0.617558990882722,0
+5644,0.0394066037957236,0.34,34,5,90.7043851210608,0.718963831867058,22.5,1.8040833753698,0
+5645,0.0531039615536793,0.62,62,2,98.262296102908,0.807168784029038,61.5,0.540895708145634,0
+5646,0.0374965667799188,0.385,38.5,3,93.07206362956,0.787411301674854,30.5,1.57419744714514,0
+5647,0.00202974312376682,0.0275,2.75,2,67.6946396934892,0.657240788346187,2.5,8.37009707364169,5
+5648,-0.0263294309627236,0.035,3.5,2,65.5940978380291,0.740932642487047,2,1.07142857142857,0
+5649,-0.0316833451768707,0.01,1,2,34.5233986084855,0.494949494949495,0.75,5.51776695251465,0
+5650,-0.00360142762325268,0.145,14.5,2,88.2317015569267,0.91812865497076,13.75,1.2426046174148,0
+5651,-0.000586643220685801,0,0,0,NA,NA,0,NA,NA
+5652,-0.00191911412293848,0,0,0,NA,NA,0,NA,NA
+5653,0.0284818068828645,0.2225,22.25,6,85.6961033743507,0.789682298934256,16,3.73147516572074,0
+5654,0.0130654127375055,0.175,17.5,3,85.6945221386202,0.78319783197832,9.5,9.27707386016846,0
+5655,-0.00270265726047001,0,0,0,NA,NA,0,NA,NA
+5656,0.0333590672016251,0.3575,35.75,2,95.8319484142514,0.881189295155493,35.25,3.06599767724951,0
+5657,0.0439742392742482,0.565,56.5,2,96.4492328995738,0.808884156496573,49.5,0.993351657833673,0
+5658,0.032200998999906,0.4025,40.25,1,96.9672588816937,0.892570394662445,40.25,0.623120965424532,0
+5659,0.0324134428167599,0.315,31.5,3,91.0288512075846,0.866126924425461,18,1.32340786949037,0
+5660,0.0282876731901251,0.35,35,1,96.3667973186472,0.915865384615385,35,2.32451455252511,0
+5661,0.00537144304980302,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,1.11111111111111,0
+5662,0.00903886018592857,0.1025,10.25,2,84.5856217918724,0.870816680796092,8.75,6.83407276432689,0
+5663,0.0199417457180677,0.2,20,3,85.6834965906238,0.867957746478873,11.5,2.45669598579407,0
+5664,0.012314275663748,0.125,12.5,2,85.2487543426608,0.825210084033613,8.75,0.8,0
+5665,-0.0135477044498111,0.0025,0.25,1,0,NA,0.25,0,0
+5666,-0.0184869407897349,0,0,0,NA,NA,0,NA,NA
+5667,-0.0166767046929181,0,0,0,NA,NA,0,NA,NA
+5668,-0.00665068997753224,0,0,0,NA,NA,0,NA,NA
+5669,0.0215897824408694,0.2175,21.75,1,93.9777627911811,0.793878182005565,21.75,2.2618254519057,0
+5670,0.094850577935722,0.81,81,1,99.4152046783626,0.793601651186791,81,0.849862157562633,0
+5671,0.136179309021682,1,100,1,100,NA,100,1.04053300857544,0
+5672,0.0981006229575723,0.9475,94.75,1,99.8561526638156,0.708589972845884,94.75,1.89408560478593,0
+5673,0.114453554525971,1,100,1,100,NA,100,0.981066017150879,0
+5674,0.0887807231629267,0.895,89.5,1,99.6998271307191,0.775249332771457,89.5,1.15292983880922,0
+5675,0.0854311864543706,0.9425,94.25,1,99.8418294460568,0.586500456065673,94.25,1.8563735111955,0
+5676,0.101080531090192,0.9725,97.25,1,99.9261039309117,1,97.25,2.13515286090135,0
+5677,0.0185958694646251,0.355,35.5,5,89.3972877487099,0.773404889683959,17,1.51031416234836,0
+5678,0.0800662860140437,0.7775,77.75,1,99.2942318197501,0.808260152624919,77.75,2.03294648541515,0
+5679,0.0814516538800672,0.81,81,1,99.4152046783626,0.742002063983488,81,1.58640416463216,0
+5680,0.0744967105193064,0.6725,67.25,2,97.8095642789397,0.842793439649308,65,1.93704839089546,0
+5681,0.00845030119940929,0.2825,28.25,2,92.0444069818416,0.897519983603197,22.25,0.575221238938053,0
+5682,0.0113860672447299,0.25,25,4,89.8363926329891,0.77037037037037,20,1.25,0
+5683,0.131717044212855,0.83,83,2,98.1059125331414,0.887419082465522,77.5,42.1529620756586,0
+5684,0.125218122118222,0.9575,95.75,1,99.8844617862358,0.967590341921894,95.75,46.3568440031445,0
+5685,-0.106864047071631,0.2425,24.25,2,93.3298475820494,0.946891240848223,23.75,66.5302713531809,25
+5686,-0.194906505983836,0.0475,4.75,2,71.2678745650251,0.818988143723414,3.5,2.05593661258095,0
+5687,-0.0724215019107214,0.0825,8.25,2,79.6991052139412,0.798163285901705,5,26.5610664830063,0
+5688,-0.0118642797949724,0.1375,13.75,3,86.2798435857877,0.841342486651411,12,45.5619182239879,25
+5689,0.020335172556006,0.3675,36.75,1,96.5811989595545,0.970612868624829,36.75,31.6188152339183,5
+5690,-0.0355040977162571,0.105,10.5,2,86.1458307946562,0.921315603115902,10,45.5697918846494,30
+5691,-0.00426920413086009,0.12,12,2,86.9894628299558,0.902993348115299,11.25,24.838923573494,0
+5692,-0.00312835178163368,0.2525,25.25,1,94.7890822083159,0.940871043441305,25.25,30.5333525591558,10
+5693,0.093958940783632,0.675,67.5,1,98.8570461110507,0.951448945531786,67.5,59.3046793478507,26.9258232116699
+5694,0.115464509883896,0.81,81,1,99.4152046783626,0.965600275197799,81,104.276185141669,49.2442893981934
+5695,0.0743168038705335,0.7725,77.25,1,99.2749460632782,0.962237075639138,77.25,137.432655309782,72.8011016845703
+5696,0.0682280824917143,0.3875,38.75,2,95.4941677276599,0.9484425349087,37.75,175.260441540134,130.384048461914
+5697,0.0761387626070064,0.805,80.5,1,99.3970714465752,0.966261808367072,80.5,187.475277444591,131.52946472168
+5698,0.225496176369488,1,100,1,100,NA,100,201.976337165833,156.205001831055
+5699,0.221358963247039,0.9475,94.75,1,99.8561526638156,0.920524538048878,94.75,141.961714007295,81.3941040039062
+5700,0.115592469298281,0.93,93,1,99.8055173961557,0.696048632218844,93,61.672962193848,0
+5701,0.0144286269655277,0.0475,4.75,3,69.6198191795422,0.674178658702145,3.5,28.1544804824026,15.8113880157471
+5702,0.0315639204347462,0.3025,30.25,2,95.0193116026074,0.850114043662431,29.75,3.0452110038316,0
+5703,0.0746142962837985,0.615,61.5,1,98.5518240730175,0.841897233201581,61.5,3.37721883572214,0
+5704,0.102399466706265,0.6475,64.75,2,98.1747163580875,0.824522921693354,63.5,1.98143036301072,0
+5705,0.115753585678631,0.56,56,1,98.2299673180941,0.940191387559809,56,1.08226074491228,0
+5706,-0.0125719726870011,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,0.869565217391304,0
+5707,-0.0205623073762581,0,0,0,NA,NA,0,NA,NA
+5708,-0.00404131897546904,0,0,0,NA,NA,0,NA,NA
+5709,0.000231289874791401,0.0175,1.75,1,65.4774238937655,1,1.75,18.8030174800328,11.1803398132324
+5710,0.0118541810084389,0.1275,12.75,4,79.085239718967,0.789217139281362,6.25,7.63223898644541,0
+5711,-0.00122542689612601,0,0,0,NA,NA,0,NA,NA
+5712,-0.0427406129620067,0.0075,0.75,1,44.4894453484604,1,0.75,9.81058247884115,7.07106781005859
+5713,-0.013200091469671,0.03,3,3,54.3403644704551,0.575500303214069,1.5,4.33925565083822,0
+5714,-0.038110210950108,0.055,5.5,5,63.5955415391761,0.657640834111422,3,3.37009707364169,0
+5715,0.00275149112637337,0.0675,6.75,3,73.7173960895189,0.675790261238232,4.25,0.555555555555556,0
+5716,-0.00609134862687142,0.125,12.5,2,88.5334060400009,0.852100840336134,12,0.4,0
+5717,0.0365418615764065,0.5,50,1,97.819928619089,0.838274932614555,50,1.14019247055054,0
+5718,0.00318872311647283,0.3125,31.25,2,93.9462814025751,0.833400080096115,28,0,0
+5719,0.0694579595280811,0.7525,75.25,3,97.8300218084517,0.850355405910961,73,0.332225913621262,0
+5720,0.0957891505397856,0.99,99,1,99.9734851828463,0.335106382978722,99,6.153758800391,0
+5721,0.097402908993804,0.885,88.5,1,99.6684841741817,0.974042829331603,88.5,2.57561967063085,0
+5722,0.0470304441798362,0.5075,50.75,4,92.4817720189259,0.703779504234607,30,1.5814441060785,0
+5723,0.096303403545171,0.93,93,1,99.8055173961557,0.513677811550151,93,0.551075268817204,0
+5724,0.0812881580989051,0.88,88,1,99.6526127274839,0.937437437437437,88,0.298295454545455,0
+5725,0.00546907041828717,0.3825,38.25,1,96.7531359636374,0.896264065584163,38.25,0.0326797385620915,0
+5726,0.015315887222896,0.2875,28.75,2,93.426489676332,0.939271255060729,27,0.130434782608696,0
+5727,0.059630336749542,0.725,72.5,2,98.1078299524991,0.919933277731443,70.75,0.63608486570161,0
+5728,0.0381266352547391,0.625,62.5,1,98.6057312417508,0.846153846153846,62.5,0.48,0
+5729,-0.0175395605509539,0.05,5,2,71.9760246298065,0.728353140916808,2.5,3.61967716217041,0
+5730,0.0227226758119286,0.3625,36.25,2,95.8165084888866,0.8283388827229,35.25,1.02265014648437,0
+5731,0.0396642958787015,0.3725,37.25,6,89.4364792266241,0.743151934386994,20,1.29145239503592,0
+5732,0.0422013342886203,0.53,53,3,94.2696675853972,0.789394103034885,33.75,1.19473712849167,0
+5733,0.0228408441408465,0.1875,18.75,4,84.5774299163479,0.766899766899767,10,3.15810872395833,0
+5734,0.0121176435732423,0.135,13.5,4,81.0215059252431,0.664366958791721,8.25,2.32139516759802,0
+5735,0.00247304612789776,0.1275,12.75,5,75.4225872104283,0.710173566511873,5,2.75206547157437,0
+5736,-0.00410052206636919,0.0075,0.75,1,44.4894453484604,1,0.75,6.3807118733724,5
+5737,0.0157195772009345,0.1925,19.25,2,88.4664736846487,0.781460571844837,12,1.44432731727501,0
+5738,0.0305228014742715,0.2375,23.75,6,84.8008509869711,0.668273866923819,13.25,6.14377935309159,0
+5739,0.0066185250320359,0.0275,2.75,3,51.3242173142448,0.657240788346187,1.5,4.73373343727805,0
+5740,0.00357342853609225,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+5741,-0.00784768677430065,0,0,0,NA,NA,0,NA,NA
+5742,0.0183242942453398,0.13,13,5,81.9427244064427,0.81919152783159,10.75,4.76376958993765,0
+5743,0.0291533909195823,0.2675,26.75,2,92.0924005981534,0.865603282109321,21.75,2.65323699523355,0
+5744,0.0231570206966717,0.23,23,2,89.711307757116,0.881216344630979,13.75,0.67468551967455,0
+5745,0.0521455789524407,0.525,52.5,1,97.9993099016594,0.816933638443936,52.5,1.98365972609747,0
+5746,-0.0221316923392988,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,0.952380952380952,0
+5747,-0.0327806638184848,0,0,0,NA,NA,0,NA,NA
+5748,0.00551298294899027,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+5749,0.0124514689000898,0.15,15,2,86.1440376476599,0.875565610859729,8.5,2.75592231750488,0
+5750,-0.0226428554695281,0,0,0,NA,NA,0,NA,NA
+5751,-0.0186068588923081,0.0275,2.75,2,66.0118058066693,0.862896315338475,2.5,3.74665485728871,0
+5752,-0.0208434958129283,0,0,0,NA,NA,0,NA,NA
+5753,0.00176537832708163,0.22,22,3,88.4661601645773,0.804017638412543,14,4.88588341799649,0
+5754,-0.0603798794915201,0.05,5,6,55.400633236788,0.490662139219015,2.25,33.30881690979,5
+5755,-0.00023396135410735,0.015,1.5,3,33.3339461453335,0.419869470630892,0.75,16.4918454488118,0
+5756,0.0376734097277767,0.47,47,1,97.5860530790582,0.815658208631533,47,1.05470357042678,0
+5757,0.0511774032891844,0.5925,59.25,2,95.5933424346319,0.81719730227534,29.75,1.26144339967881,0
+5758,-0.00929150010901594,0.015,1.5,2,46.1375166841518,0.564902102973169,1,0.833333333333333,0
+5759,-0.0118112929276322,0.0525,5.25,5,61.9522751764967,0.604221635883905,3.25,3.83883467174712,0
+5760,-0.0278227990965752,0.0875,8.75,7,63.9658127891957,0.546528105810109,4,10.7574452536447,0
+5761,0.00804050030939834,0.1775,17.75,4,81.1306669130679,0.795744680851064,8,1.40091001483756,0
+5762,-0.0267553548207638,0.01,1,2,30.8308651382582,0.494949494949495,0.5,1.25,0
+5763,-0.0113075053122157,0,0,0,NA,NA,0,NA,NA
+5764,0.016393748541899,0.19,19,2,91.8756820909629,0.797309747558504,18.25,17.7415672603406,0
+5765,0.0271631975150376,0.3175,31.75,1,95.9225630587777,0.879485593771308,31.75,1.4524772523895,0
+5766,0.00934022328061474,0.185,18.5,2,91.5612298148894,0.830108541764983,17.75,1.10906848391971,0
+5767,-0.00534067049853547,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+5768,-0.012530815304508,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+5769,0.0212763419778275,0.15,15,4,83.045804530405,0.785067873303167,9.75,1.18467636108398,0
+5770,0.074188756269114,0.56,56,1,98.2299673180941,0.951065680730753,56,1.55101074491228,0
+5771,0.117177355615422,0.985,98.5,1,99.9600766120013,0.286987522281638,98.5,0.71591641576157,0
+5772,0.105011383220553,0.9425,94.25,1,99.8418294460568,0.635147461234418,94.25,1.75189628904631,0
+5773,0.102180235479027,1,100,1,100,NA,100,0.933210678100586,0
+5774,0.0955257618706673,0.86,86,2,99.0192016244123,0.846153846153846,85,0.80294535880865,0
+5775,0.089813201664947,0.9175,91.75,1,99.7684657792434,0.790712884238064,91.75,2.41862277828705,0
+5776,0.00353040203395722,0.4425,44.25,3,94.7471003105125,0.846409127686126,37,1.64042564435194,0
+5777,0.035437175028037,0.43,43,3,92.9157589076668,0.795229398417178,31.5,2.11399271321851,0
+5778,0.0738158212866983,0.81,81,1,99.4152046783626,0.862401100791194,81,1.08873111819044,0
+5779,0.0724655925482511,0.8225,82.25,1,99.4598121429477,0.836701367626046,82.25,0,0
+5780,0.0940249610319734,0.9575,95.75,1,99.8844617862358,0.740722735375142,95.75,0.391644908616188,0
+5781,0.0564679139033251,0.6325,63.25,3,97.9803679365595,0.810557134246103,62.25,1.24307302241269,0
+5782,0.0245862550935635,0.325,32.5,2,94.3842254829876,0.881231442412877,30.5,2.20164002638597,0
+5783,0.0643938471417823,0.51,51,1,97.8932627156421,0.989230520704324,51,26.8615136894525,0
+5784,0.109187224104244,0.81,81,1,99.4152046783626,0.931200550395597,81,44.5773112214642,0
+5785,-0.190718031961005,0.1375,13.75,1,91.0694765797212,0.914569031273837,13.75,70.9939303311435,25
+5786,-0.102545381177624,0.3125,31.25,1,95.8481348315798,0.935923107729275,31.25,0.562579803466797,0
+5787,-0.00412981266861607,0.1625,16.25,1,92.2068700432412,0.841500462290318,16.25,0.0769230769230769,0
+5788,-0.0434826348194838,0,0,0,NA,NA,0,NA,NA
+5789,-0.0449996795510742,0,0,0,NA,NA,0,NA,NA
+5790,-0.0494301146344515,0,0,0,NA,NA,0,NA,NA
+5791,-0.0388954942211421,0,0,0,NA,NA,0,NA,NA
+5792,0.00377781882612908,0.1175,11.75,4,77.9618431639894,0.787535410764873,7,15.3327193564557,0
+5793,0.0212582830595056,0.2025,20.25,5,86.9189877569161,0.869383490073145,18,25.7044445555887,10
+5794,0.0616434439139994,0.6075,60.75,2,95.8159595247135,0.870927916047027,49,28.8061625790694,0
+5795,0.00101981168936618,0.185,18.5,1,93.0265643427559,0.962246342614441,18.5,50.1250336879009,11.1803398132324
+5796,0.0375390202639028,0.415,41.5,1,97.093152360986,0.955309759231328,41.5,64.2843361820083,18.0277557373047
+5797,0.137694252575748,0.9775,97.75,1,99.9397711850087,0.580712788259958,97.75,93.0340666124583,36.0555114746094
+5798,0.227501155696809,0.9825,98.25,1,99.9533339757335,0.846801991574109,98.25,119.498912112403,60.8276290893555
+5799,0.058326983588704,0.525,52.5,2,97.2481979356173,0.881545295463723,51.25,97.8837031409854,18.0277557373047
+5800,0.184780411318643,0.7425,74.25,1,99.1551699664667,0.951369470448269,74.25,6.6923068332351,0
+5801,0.00558204628683143,0.0825,8.25,4,72.1087539926824,0.656877586032899,4.25,6.75255532698198,0
+5802,0.0475918145815149,0.39,39,1,96.835360326048,0.908607985377278,39,2.01257747258895,0
+5803,-0.00803047666569693,0.0575,5.75,1,83.3142722045184,0.764220453875626,5.75,4.14588430653448,0
+5804,-0.00602429198122991,0,0,0,NA,NA,0,NA,NA
+5805,0.0299656518485244,0.215,21.5,3,91.6368591381366,0.825152991132759,20.25,2.17890832590502,0
+5806,0.0465714008617215,0.3925,39.25,4,92.2230080260902,0.834247828074989,20.75,0.586439922357061,0
+5807,-0.00736332832040716,0.0425,4.25,2,72.9569086624483,0.87467362924282,3.75,1.76470588235294,0
+5808,-0.0139849424169734,0,0,0,NA,NA,0,NA,NA
+5809,-0.0149067697573264,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5
+5810,-0.006249330511273,0,0,0,NA,NA,0,NA,NA
+5811,-0.00835740848033311,0.1125,11.25,2,83.8886736880599,0.836916234247591,8.75,8.18296665615506,0
+5812,-0.0190611011502551,0,0,0,NA,NA,0,NA,NA
+5813,-0.00300482115515479,0,0,0,NA,NA,0,NA,NA
+5814,0.00411596213878738,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,4.16316223144531,0
+5815,0.0187496480842788,0.12,12,4,80.9230087537187,0.805986696230599,9.75,1.96129449208577,0
+5816,0.004143842255653,0.22,22,2,89.4882793265835,0.787685774946921,13,0.511363636363636,0
+5817,0.0462593118513541,0.4925,49.25,3,94.9515843583059,0.740873203320062,37.25,0.477878861015823,0
+5818,-0.0545727320320657,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+5819,0.0292320807464421,0.4625,46.25,1,97.5240566095389,0.864001087991296,46.25,0.135135135135135,0
+5820,0.0314138532457582,0.6125,61.25,1,98.5381414210533,0.876038878715312,61.25,8.40865376530861,0
+5821,0.0616384419921087,0.58,58,2,95.4845591594388,0.76905311778291,30.25,1.48629288837827,0
+5822,0.0765577883935475,0.7275,72.75,3,95.379860942608,0.698103081025779,58.25,0.877509756186574,0
+5823,0.026799556394144,0.445,44.5,2,96.2306756991488,0.863084969467948,42.25,0.224719101123595,0
+5824,-0.0175290837059583,0.045,4.5,2,70.1754385964912,0.767306573589296,2.25,0,0
+5825,0.0205282613519375,0.2625,26.25,3,93.6264914345891,0.849340866290019,25.5,0.411918167840867,0
+5826,0.0571631301753223,0.685,68.5,3,97.1829425307685,0.709715273917608,58,0.387639428577284,0
+5827,0.0764750817773165,0.67,67,4,97.282248629654,0.903608651123562,65,1.30637896238868,0
+5828,0.0716121623283834,0.8375,83.75,1,99.5120172135984,0.8541742617572,83.75,0.779733020156177,0
+5829,0.0327542013273342,0.3625,36.25,4,88.4982998633363,0.769145394006659,17.25,2.09551642845417,0
+5830,-0.0311808873450995,0.045,4.5,4,57.8137685927342,0.612177622648827,2,1.94444444444444,0
+5831,0.0531200358286151,0.5,50,4,91.7613458449774,0.762803234501348,27.5,0.775,0
+5832,0.0505360278790613,0.5275,52.75,2,96.3862153840683,0.805636540330418,44.75,1.45023834083883,0
+5833,0.0185742606913118,0.15,15,4,81.5592184308302,0.717194570135747,8.75,7.01252746582031,0
+5834,0.0154341556790132,0.07,7,4,65.9837565249193,0.6415770609319,2.25,11.5356020246233,0
+5835,0.0355197717488682,0.3175,31.75,5,88.6573926823032,0.758971187542616,21,4.98881963294322,0
+5836,0.0548525115210214,0.595,59.5,3,95.3460125462867,0.805798307670967,38.5,4.50445632774289,0
+5837,0.00449179697814543,0.095,9.5,4,74.8946790201481,0.771989827238446,5.25,1.05263157894737,0
+5838,0.0159039327218716,0.0425,4.25,3,64.5607527263618,0.62402088772846,2.5,6.3708091062658,0
+5839,0.00601050503382794,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,2.85714285714286,0
+5840,-0.00377557908490417,0.0175,1.75,1,65.4774238937655,1,1.75,3.15300968715123,0
+5841,0.00935384789877844,0.1125,11.25,3,86.2865489506695,0.881393624907339,10.75,1.8701057434082,0
+5842,6.88456995703746e-05,0.0025,0.25,1,0,NA,0.25,36.0555114746094,36.0555114746094
+5843,0.000117876663280185,0.02,2,1,68.0470115164975,0.693877551020408,2,40.8262467384338,36.4005508422852
+5844,0.0205415907704264,0.16,16,3,88.9617154264189,0.744897959183673,14.25,3.76267793774605,0
+5845,0.00261668310400637,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0
+5846,-0.0228631704663349,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,2.8451779683431,0
+5847,0.0178692669153679,0.26,26,3,89.4280878095524,0.848243965891025,17.75,2.37363609900841,0
+5848,0.0471937234881034,0.3975,39.75,1,96.9152464661248,0.931791053259819,39.75,5.81833819023468,0
+5849,0.00986004177333371,0.06,6,5,58.6063816118502,0.552071668533035,2.25,5.96687213579814,0
+5850,-0.0139031077182881,0.04,4,3,68.9413506964927,0.782986111111111,3.5,1.5625,0
+5851,0.00343146378008896,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859
+5852,-0.0238169051167642,0.0575,5.75,2,75.1033148733524,0.82316534040672,4.5,0.217391304347826,0
+5853,-0.00167078728074557,0.0375,3.75,3,61.4288139205841,0.763872491145218,2,3.74754689534505,0
+5854,0.00999713193385105,0.0925,9.25,1,87.9580013362782,0.909678002077406,9.25,0.5965153462178,0
+5855,-0.030448474268378,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,15.8889736599392,11.1803398132324
+5856,0.0604786579415668,0.6625,66.25,1,98.796893507011,0.803264028616141,66.25,1.99485648533083,0
+5857,0.033530192195812,0.3425,34.25,2,93.7214764144676,0.872243346007605,29,0.97913967605925,0
+5858,-0.00806334670167416,0.035,3.5,2,69.6004318449248,0.792746113989637,3,2.85714285714286,0
+5859,0.00525241540301067,0.1,10,4,73.0236170028263,0.734660033167496,3.5,2.42677669525146,0
+5860,-0.089087393993359,0.01,1,3,15.8692205350002,0.242424242424242,0.5,1.25,0
+5861,0.024629608710602,0.225,22.5,4,85.8960617140126,0.735523943097576,10.25,0.781360838148329,0
+5862,-0.0229964749705323,0.0975,9.75,5,71.7998002565617,0.693160025569998,4.25,2.85162060077374,0
+5863,-0.0034570899060418,0.075,7.5,3,78.2404380797693,0.845559845559846,6.5,3.77504692077637,0
+5864,-0.0037817505095154,0.1325,13.25,3,84.2852885823626,0.873325521740507,11.5,5.20257150901938,0
+5865,0.0518191582227155,0.43,43,2,96.8431938157587,0.916984891250207,42.75,4.89846835025521,0
+5866,0.00381364491742715,0.09,9,2,81.646720703688,0.835164835164835,7.75,5.88035191429986,0
+5867,-0.00328810079991854,0,0,0,NA,NA,0,NA,NA
+5868,0.0019593195537891,0.055,5.5,3,69.6465250956313,0.782135076252723,4,0.909090909090909,0
+5869,0.0131318150780135,0.165,16.5,4,82.7558704974253,0.739651132517574,9.75,0.378787878787879,0
+5870,0.103293884387786,0.8275,82.75,1,99.4773714744283,0.795942028985507,82.75,1.32412166537835,0
+5871,0.106847190540284,0.97,97,1,99.9192307098231,0.547101449275363,97,0.92653988317116,0
+5872,0.082176776509732,0.975,97.5,1,99.9329506995597,0.297297297297296,97.5,0.217948717948718,0
+5873,0.10308551998809,0.9975,99.75,1,99.9934086913499,0.472295514511877,99.75,1.40735759113666,0
+5874,0.0926188540644944,0.8225,82.25,1,99.4598121429477,0.745979905196072,82.25,1.02919983791363,0
+5875,0.104695148207247,0.9875,98.75,1,99.9667936270881,0.893333333333336,98.75,2.84230698211284,0
+5876,0.0116413811404345,0.3575,35.75,2,93.3571266418952,0.863367689428818,25.5,2.20528209126079,0
+5877,0.0215601338005581,0.3525,35.25,4,90.9601472020143,0.778516057585825,20.5,2.87311746042671,0
+5878,0.0796537640294991,0.8525,85.25,2,99.3748164328144,0.737222441203521,85,0.651234802962049,0
+5879,0.073514054317493,0.835,83.5,1,99.5034141561623,0.798299956778562,83.5,0.62874251497006,0
+5880,0.0839153596066171,0.7825,78.25,1,99.3133324321661,0.805182154685369,78.25,0.399361022364217,0
+5881,0.0598571918886591,0.595,59.5,2,95.635539755969,0.739214870301013,31.25,0.752698048824022,0
+5882,-0.00853827357306727,0.4625,46.25,1,97.5240566095389,0.907520739834081,46.25,2.25520807214685,0
+5883,-0.0526003708801773,0,0,0,NA,NA,0,NA,NA
+5884,0.0142447448657185,0.2375,23.75,2,93.566901792855,0.961427193828351,23.5,38.9902422854775,0
+5885,-0.01612235399778,0.2,20,2,92.380762576146,0.964788732394366,19.75,18.338526391983,0
+5886,0.0110674773745268,0.2025,20.25,5,86.3554927939329,0.756182514803205,14.5,5.98649620715483,0
+5887,-0.0307903980335323,0.0375,3.75,2,69.8118255760756,0.716646989374262,3,2.33333333333333,0
+5888,-0.0393065468618806,0,0,0,NA,NA,0,NA,NA
+5889,-0.029484695256956,0,0,0,NA,NA,0,NA,NA
+5890,-0.0362100950483,0,0,0,NA,NA,0,NA,NA
+5891,-0.0143230379129818,0,0,0,NA,NA,0,NA,NA
+5892,0.034163791130195,0.3125,31.25,2,94.8048343586167,0.903884661593913,30.5,70.7085588073731,5
+5893,0.0286378686826174,0.2075,20.75,7,80.7191122161053,0.630893366810447,9,36.0121200285762,0
+5894,0.193082726132125,1,100,1,100,NA,100,36.5930682039261,0
+5895,0.135374500342587,0.84,84,1,99.5205818358949,0.970472440944882,84,16.4131959449677,0
+5896,0.00324126567866188,0.1575,15.75,2,86.6949651342759,0.805772862152684,9,12.4813488854302,0
+5897,0.0734822587063172,0.4375,43.75,1,97.3060110945426,0.972480220158239,43.75,25.5134134674072,5
+5898,0.131884314045019,0.7325,73.25,1,99.1136185490844,0.952507759892803,73.25,38.9735956224565,0
+5899,0.123098435484972,0.6725,67.25,2,96.0930439646797,0.800468596477969,45.25,23.2627084866775,0
+5900,0.315219397190958,1,100,1,100,NA,100,3.98740871429443,0
+5901,0.00405394476723814,0.12,12,2,83.8173725795448,0.778270509977827,6.5,6.17444705963135,0
+5902,-0.0149691026578603,0.0025,0.25,1,0,NA,0.25,0,0
+5903,-0.0183581026252796,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+5904,0.00549092690351245,0,0,0,NA,NA,0,NA,NA
+5905,0.00328310573524504,0,0,0,NA,NA,0,NA,NA
+5906,0.0198147534173404,0.2075,20.75,5,88.3130238897847,0.83690637138136,18.5,5.2641738983522,0
+5907,0.0326775351725519,0.325,32.5,3,92.388790437119,0.724957024535084,25,0.887348761925331,0
+5908,-0.0019424835961604,0.02,2,1,68.0470115164975,0.795918367346939,2,4.00888347625732,0
+5909,-0.00594839386075819,0.1425,14.25,3,84.1685331961422,0.773903730588445,10.75,3.72812465199253,0
+5910,-0.016603633221257,0,0,0,NA,NA,0,NA,NA
+5911,-0.0212781248627471,0.02,2,1,68.0470115164975,0.897959183673469,2,4.89276695251465,0
+5912,-0.009649382414309,0,0,0,NA,NA,0,NA,NA
+5913,0.00461390937434771,0.0225,2.25,4,38.5289898720462,0.48849104859335,1,3.42348755730523,0
+5914,0.0041716938931566,0.06,6,1,83.7764057650598,0.832026875699888,6,2.88092231750488,0
+5915,-0.00111210192229919,0,0,0,NA,NA,0,NA,NA
+5916,0.00843154262981443,0.0875,8.75,2,81.1443654111035,0.848842701936703,6.5,12.8449124472482,0
+5917,0.0424142228768324,0.38,38,4,93.485947143135,0.832350560758469,33.25,2.02435793374714,0
+5918,0.0291544442376471,0.4225,42.25,3,95.4260912128432,0.816849816849817,38.5,0.355029585798817,0
+5919,0.00287068162404466,0.2275,22.75,2,92.0278729125519,0.856166846458108,20.75,0.827719510256589,0
+5920,0.0562510262722208,0.545,54.5,3,95.2914627981773,0.853840740540248,48.25,1.5776569821419,0
+5921,0.0724155098572373,0.67,67,2,96.3951696827346,0.668654738237243,39.75,1.50640413654384,0
+5922,0.0416246322208099,0.4425,44.25,2,95.9876724828422,0.82446757449843,40,0.282485875706215,0
+5923,-0.0263170955166061,0,0,0,NA,NA,0,NA,NA
+5924,-0.0300520348467398,0,0,0,NA,NA,0,NA,NA
+5925,-0.0189557980756217,0.0625,6.25,2,79.7107959003771,0.866666666666667,5.75,1.35356575012207,0
+5926,0.0333420006283177,0.3375,33.75,5,91.9034776209023,0.779107225034514,27.5,2.77423092877423,0
+5927,0.0624593244714197,0.7075,70.75,2,98.2261361206391,0.781505044662939,68.5,0.19434628975265,0
+5928,0.0178505590627901,0.145,14.5,3,88.8228852784744,0.906432748538012,14,0.172413793103448,0
+5929,0.00117657577389991,0.0475,4.75,4,59.1283162488617,0.637976287446828,2.25,1.42479304263466,0
+5930,0.0435386138711328,0.4725,47.25,2,96.3374209360566,0.826675693974272,43.5,0.789111828677869,0
+5931,0.066736622012686,0.72,72,3,97.6577427746378,0.789140748550343,68,0.190972222222222,0
+5932,0.0626498887341586,0.655,65.5,2,98.5174159576545,0.870126036777945,65.25,1.71891350782555,0
+5933,0.0299476534187488,0.3875,38.75,1,96.8082175905,0.856784819190834,38.75,1.41935483870968,0
+5934,0.00675862722350871,0.0725,7.25,2,78.2701035031027,0.839421918908069,5,2.48520923482961,0
+5935,0.0185388865051664,0.1025,10.25,4,74.2277199471408,0.725485446691696,5.75,12.234761493962,0
+5936,0.0193536387212953,0.23,23,3,88.5014117234045,0.83370288248337,16.75,9.6116014148878,0
+5937,0.029950856483174,0.41,41,2,95.9344934092183,0.927040071837468,40,1.88174845532673,0
+5938,0.023200353075963,0.16,16,3,86.7017035711716,0.787414965986394,12.25,1.25503867864609,0
+5939,0.0121574689405679,0.09,9,2,80.4523936425773,0.835164835164835,4.5,6.34125195609199,0
+5940,0.0114641524900298,0.045,4.5,4,56.2468071120173,0.612177622648827,1.75,5.19854905870226,0
+5941,-0.00265973705502802,0.0025,0.25,1,0,NA,0.25,5,5
+5942,0.0060189255352077,0.0025,0.25,1,0,NA,0.25,0,0
+5943,0.00577685997513981,0,0,0,NA,NA,0,NA,NA
+5944,0.0117039644817942,0.05,5,4,58.4792009459564,0.558573853989813,1.75,2.25,0
+5945,-0.00352112056583792,0,0,0,NA,NA,0,NA,NA
+5946,0.00587839337493278,0.0325,3.25,2,63.7958532695375,0.712891185759403,2.25,1.53846153846154,0
+5947,0.0320117103601478,0.2425,24.25,6,86.1070529141377,0.688934410682448,13.75,2.49304423381373,0
+5948,0.020452145206782,0.19,19,4,83.5302274508764,0.760456974387323,10.25,1.84210526315789,0
+5949,-0.000195413958581412,0.0375,3.75,2,68.798930366971,0.811097992916175,3,2.66666666666667,0
+5950,0.0055655523954556,0.1175,11.75,5,73.6588238466914,0.688385269121813,5.5,2.49087378319274,0
+5951,-0.00899875769504433,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,2,0
+5952,-0.00555397509020622,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,0,0
+5953,-0.0138838146216858,0.1575,15.75,2,88.4228089641175,0.870515241435123,13.25,2.06861072116428,0
+5954,0.00299007626956154,0.2025,20.25,3,88.7364328897978,0.817136886102403,17,1.35802469135802,0
+5955,-0.00847359637013142,0.1025,10.25,3,80.4667891803082,0.79007710629365,5.75,3.03572222081626,0
+5956,0.0152241693963697,0.25,25,4,85.4824475996408,0.762962962962963,14.5,1.59142135620117,0
+5957,-0.00521174102643272,0.135,13.5,2,87.5854481173737,0.900553172975325,12,1.14946421870479,0
+5958,-0.0201861439943968,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,10.5592811291034,5
+5959,-0.0237312864659907,0.075,7.5,1,86.0448225436784,0.889685603971318,7.5,1.80473785400391,0
+5960,4.82660191846662e-05,0.11,11,2,86.9786256956069,0.893713938657759,10.5,0.227272727272727,0
+5961,0.0319201278534092,0.365,36.5,2,95.306250376997,0.929222330354773,35.25,0,0
+5962,0.0656028081959812,0.67,67,1,98.8331871391418,0.939755406952226,67,0.149253731343284,0
+5963,-0.0188210141684976,0.1225,12.25,2,87.3127129052834,0.891466558133225,11.5,0.204081632653061,0
+5964,0.00986045766527241,0.22,22,2,92.503659574908,0.820349501878164,20.5,0.340909090909091,0
+5965,0.0049865275213233,0.1425,14.25,5,79.2260920749891,0.762003926935206,9.25,4.24091820967825,0
+5966,0.0279696760950901,0.26,26,6,82.4429395989768,0.689261453967336,8.5,3.59351013256953,0
+5967,0.0162157566289511,0.1625,16.25,2,90.4987647252432,0.830933826443006,15.5,2.2730597275954,0
+5968,-0.00377836899326667,0.0325,3.25,4,49.3251963757179,0.540625897215045,1.25,3.84615384615385,0
+5969,0.000663289077969154,0.045,4.5,4,60.0413245205646,0.612177622648827,2.5,3.44839265611437,0
+5970,0.0252655161245093,0.3,30,4,88.8274137464354,0.73132372214941,15,2.39790735244751,0
+5971,0.0575219694879979,0.5425,54.25,3,96.7680579210343,0.870150949521182,52,1.41746637019144,0
+5972,0.0671797584481828,0.695,69.5,2,98.7059326173539,0.880660762514918,69.25,1.57794903679717,0
+5973,0.0900922498782165,0.8975,89.75,1,99.7075809055868,0.583931133428982,89.75,0.989847741087167,0
+5974,0.0883622972341254,0.855,85.5,2,99.2517132038116,0.808133027767415,85,1.19485266166821,0
+5975,0.0880346852261573,0.965,96.5,1,99.9054042256917,0.648711943793913,96.5,1.61878967285156,0
+5976,0.0600472254632723,0.6475,64.75,1,98.7224235157768,0.801125977919134,64.75,2.23467967501018,0
+5977,0.0319523982064129,0.3675,36.75,2,94.5225142293824,0.853064343124146,32.5,1.53302951734893,0
+5978,0.0326904384829686,0.5175,51.75,1,97.946862664664,0.854653118901823,51.75,2.16045165868197,0
+5979,0.0708194239529257,0.805,80.5,1,99.3970714465752,0.789136302294197,80.5,0.895292767826815,0
+5980,0.0867140934383497,0.695,69.5,2,98.2507632075606,0.786445575026694,67,0.842237897914091,0
+5981,0.0655464338511229,0.8125,81.25,1,99.4242084607871,0.79989124524198,81.25,0.0769230769230769,0
+5982,-0.0911576520438655,0.07,7,1,85.3702908942512,0.95221027479092,7,0,0
+5983,-0.0419751760578708,0,0,0,NA,NA,0,NA,NA
+5984,0.0253509450875572,0.3075,30.75,2,92.0305474925468,0.88991597999061,18.25,112.798563577295,65
+5985,0.112937247658388,0.74,74,1,99.1448611187463,0.986189752796575,74,60.9828254983232,22.3606796264648
+5986,0.163963255230337,1,100,1,100,NA,100,28.2672837781906,0
+5987,0.126655050702393,0.9075,90.75,2,98.6711121034053,0.826901136944805,88.5,35.1607220862523,0
+5988,0.0881417989517831,0.67,67,2,97.0697083046633,0.825290680161456,61.5,18.6407942487233,0
+5989,0.00585136101261014,0.1875,18.75,2,91.2432647057661,0.906759906759907,17.75,10.5425435638428,0
+5990,-0.0036279690043375,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,14.8545204162598,0
+5991,0.00193829350383567,0.055,5.5,2,77.9968052670883,0.844382197323374,5,15.0455170544711,5
+5992,0.0574486479355255,0.5825,58.25,1,98.3671391359956,0.972468855392663,58.25,51.8702053921417,14.1421356201172
+5993,0.0859002840926405,0.565,56.5,3,96.0791843339928,0.847107325197259,52.25,55.6731277820283,5
+5994,0.202866024039686,1,100,1,100,NA,100,50.8879779577255,10
+5995,0.107510473613002,0.815,81.5,1,99.4331707829294,0.80663590419688,81.5,7.77582208949364,0
+5996,0.00603167437072443,0,0,0,NA,NA,0,NA,NA
+5997,-0.0141924650653004,0,0,0,NA,NA,0,NA,NA
+5998,-0.048944318259928,0,0,0,NA,NA,0,NA,NA
+5999,-0.0203316122770048,0.1125,11.25,1,89.5714527894752,0.925871015567087,11.25,5.97547463311089,0
+6000,0.0145609132119239,0.3925,39.25,1,96.8622433213934,0.959990855052583,39.25,15.0556235100813,0
+6001,-0.00415886250848416,0.1075,10.75,1,89.2106768070942,0.859943977591036,10.75,16.1211334494657,7.07106781005859
+6002,0.00405485572311591,0.1175,11.75,2,88.0632470985481,0.815864022662889,11.25,8.89191225741772,0
+6003,0.0077404834920813,0.015,1.5,3,35.0877192982456,0.564902102973169,1,19.1164658864339,18.0277557373047
+6004,-0.00391538610479074,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5
+6005,0.00673300782946171,0,0,0,NA,NA,0,NA,NA
+6006,0.0214925919283269,0.0975,9.75,6,67.6406136608767,0.624973364585553,4.25,6.35970653631748,0
+6007,0.0195775348595998,0.27,27,1,95.1342058036908,0.831401475237092,27,3.37885307382654,0
+6008,0.0327463945168233,0.35,35,3,93.3482647072994,0.813701923076923,29.75,2.37756031581334,0
+6009,0.0133296171810071,0.2775,27.75,3,92.3910362476397,0.896193771626298,26.25,7.64615906036652,0
+6010,-0.0302133344864706,0.0275,2.75,1,73.5251216233933,0.725792630676949,2.75,5.56483667547053,0
+6011,-0.00753849766861634,0.0025,0.25,1,0,NA,0.25,5,5
+6012,0.00240588546398612,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,7.55374590555827,5
+6013,-0.0101727457773541,0,0,0,NA,NA,0,NA,NA
+6014,-0.000840806414216786,0,0,0,NA,NA,0,NA,NA
+6015,-0.0109651057522024,0,0,0,NA,NA,0,NA,NA
+6016,0.00524334427116628,0.0275,2.75,3,56.7578274850337,0.657240788346187,2,4.12022503939542,0
+6017,0.023984547714208,0.115,11.5,8,68.3278402307062,0.608865710560626,4.25,5.58490064869756,0
+6018,0.0260831088048963,0.1575,15.75,5,77.6773036618974,0.654707310493661,7,2.47957465762184,0
+6019,0.035880954190834,0.405,40.5,3,94.2233869020886,0.859004004286278,33.5,3.50121752421061,0
+6020,0.0536291011939466,0.6175,61.75,2,97.5131357486212,0.756670344905639,58.5,3.42155998631528,0
+6021,0.0728483379134559,0.7275,72.75,1,99.0925222972574,0.812153028193818,72.75,0.446735395189003,0
+6022,0.00108033639782661,0.075,7.5,1,86.0448225436784,0.779371207942636,7.5,0.833333333333333,0
+6023,-0.0648537956457585,0,0,0,NA,NA,0,NA,NA
+6024,-0.0604672934953123,0,0,0,NA,NA,0,NA,NA
+6025,-0.044927274575457,0,0,0,NA,NA,0,NA,NA
+6026,0.0128008273144405,0.26,26,3,91.5301788953077,0.768752709929181,22.25,7.45586842757005,0
+6027,0.015575448552263,0.165,16.5,2,87.2882480818771,0.916688362405623,11,0.454545454545455,0
+6028,-0.0090122015340603,0.035,3.5,4,49.299249134574,0.481865284974093,1,4.37237167358398,0
+6029,0.00618282072311558,0.0375,3.75,5,48.3436292159939,0.527744982290437,1.75,9.50382258097331,5
+6030,0.00590032564752619,0.12,12,3,80.6681610414211,0.764412416851441,8,1.69194173812866,0
+6031,0.0078786561738525,0.1025,10.25,3,78.446983922493,0.660893787089742,5.25,1.93735969357374,0
+6032,0.0488666975562228,0.4575,45.75,3,94.1367401400925,0.678237395358983,35,0.541760303935067,0
+6033,0.0740390451613348,0.8425,84.25,1,99.5291083083911,0.730881363534425,84.25,0.885116531870132,0
+6034,0.0510818573558936,0.5,50,2,97.2719757508955,0.84366576819407,49,0.825,0
+6035,-0.0116974110720003,0,0,0,NA,NA,0,NA,NA
+6036,-0.0295132922330231,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+6037,0.041725180465728,0.46,46,2,96.4961462516724,0.836601307189542,44,7.70025763304337,0
+6038,0.0331798411257114,0.34,34,2,92.5072565504053,0.865591397849462,17.75,5.312696723377,0
+6039,-0.0151009368571431,0.015,1.5,1,62.2896536353828,1,1.5,6.37523460388184,0
+6040,0.00514517253133818,0.0525,5.25,2,75.8036735892983,0.83509234828496,4.5,5.98309289841425,0
+6041,0.00453429269310845,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859
+6042,0.00616343205907569,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,6,0
+6043,0.0155780012843331,0.1025,10.25,5,75.3108552121514,0.725485446691696,6,6.1713442453524,0
+6044,0.00395245477455546,0.0275,2.75,3,52.3625639110009,0.588688946015424,1.5,1.36363636363636,0
+6045,0.0107433771860178,0.075,7.5,2,79.9034757320981,0.801434087148373,5.75,11.7471871058146,0
+6046,0.0220170818832867,0.1675,16.75,3,88.2226041900521,0.74333307666641,13.75,2.54261700075064,0
+6047,0.0234303645042321,0.265,26.5,5,83.9171905648823,0.786301955337109,11,3.09501280874576,0
+6048,0.00509700435951345,0.0675,6.75,5,67.4667687800166,0.65085105056425,4,3.56051346107765,0
+6049,0.034711734718403,0.24,24,3,92.3007718386838,0.793451652386781,21.5,2.8508692185084,0
+6050,0.0112035063612166,0.0425,4.25,3,64.6995737630074,0.70757180156658,2.25,5.26069102567785,0
+6051,0.0253660313129876,0.115,11.5,6,71.3883842598405,0.681297986382732,3.5,1.30434782608696,0
+6052,-0.0149564346535772,0.0975,9.75,4,73.2266637638044,0.693160025569998,3.75,2.77651977539062,0
+6053,0.0115423868427388,0.1075,10.75,5,72.4418472432696,0.719887955182073,5.75,1.42279860030773,0
+6054,-0.0792524745363335,0.1575,15.75,3,85.835408210129,0.838144051793903,11.5,2.47107642037528,0
+6055,-0.0555615774139915,0.2425,24.25,2,92.9976302739402,0.878608550510223,23.25,0.463917525773196,0
+6056,0.0461372065613978,0.485,48.5,5,91.1338923024029,0.741100323624596,26.5,0.908315481598844,0
+6057,0.0619030024611857,0.6375,63.75,1,98.6713232517353,0.919203578127254,63.75,0.137254901960784,0
+6058,0.0451956758808956,0.44,44,2,94.2365602436001,0.818681318681319,27.75,3.28493213653564,0
+6059,0.0295909373083305,0.3725,37.25,3,93.2627208782167,0.789851582680268,30.75,1.65078809597348,0
+6060,0.0128630007611628,0.1225,12.25,5,72.856894340365,0.647266313932981,3.75,5.43303695990115,0
+6061,0.00812938642269728,0.0975,9.75,2,81.9928397555265,0.914766673769444,7,27.7833519960061,14.1421356201172
+6062,-0.00111443489859084,0.1925,19.25,4,90.2546465550749,0.808778000364232,18,7.80058806283133,0
+6063,-0.00979354742648866,0.065,6.5,2,78.8073067298194,0.895656710577801,5.75,2.75010827871469,0
+6064,0.0214616785626004,0.2,20,2,90.6075317072378,0.929577464788732,18.5,0.3125,0
+6065,0.00273471734028135,0.06,6,3,70.2447992008092,0.804031354983203,3.75,6.21745141347249,0
+6066,0.0169374580745352,0.2125,21.25,4,86.3947332733341,0.697256385998108,10.75,5.63665273329791,0
+6067,0.00865338157587757,0.05,5,1,81.7256002368443,0.966044142614601,5,0,0
+6068,0.0245027127271169,0.1825,18.25,3,88.5987718187896,0.799311926605505,15.5,1.77790529433995,0
+6069,-0.00179419964373665,0.07,7,2,79.2732248959665,0.7610513739546,5.5,1.21936198643276,0
+6070,0.00287444176151439,0.0675,6.75,2,77.5569125005367,0.800486314608143,5,2.08197049741392,0
+6071,-0.013171887369499,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,3.15300968715123,0
+6072,0.00915796890305501,0.2475,24.75,2,93.6288382921075,0.828287730038449,24,1.09378051757812,0
+6073,0.0339286932302639,0.3975,39.75,3,93.3129385748168,0.801057238674473,34,1.95171368197075,0
+6074,0.0570903889855253,0.54,54,3,96.2073594553567,0.740428293316029,48.75,2.48725165261163,0
+6075,0.0845865230582422,0.795,79.5,1,99.3602931148206,0.886178861788618,79.5,1.38949105124803,0
+6076,0.0350166704208823,0.3875,38.75,2,94.34873612343,0.851056211958467,32.5,0,0
+6077,0.0369902002116214,0.46,46,1,97.5030549392159,0.874727668845316,46,0.0543478260869565,0
+6078,-0.000570555329904892,0.2175,21.75,3,88.1592577635421,0.793878182005565,15,1.27831268310547,0
+6079,0.0545016717218095,0.61,61,3,96.7753062213576,0.797570850202429,55,0.874115865738666,0
+6080,0.089580230305437,0.905,90.5,2,99.1073525340569,0.600461006530926,89,0.550116396740655,0
+6081,0.0659860428725369,0.7875,78.75,2,98.3833215774562,0.865319865319865,77,0.158730158730159,0
+6082,-0.0949228507181397,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+6083,-0.102699477979913,0.0425,4.25,1,79.7330921014386,0.87467362924282,4.25,129.498962402344,114.12712097168
+6084,0.0230242758531858,0.3375,33.75,2,94.6026690563703,0.926369075011505,32.5,162.039088948568,127.475494384766
+6085,0.166513797975458,0.93,93,1,99.8055173961557,0.979736575481256,93,74.6296613344582,20
+6086,0.182777206972241,1,100,1,100,NA,100,36.7552628517151,0
+6087,0.156745953895152,1,100,1,100,NA,100,103.789458789825,65
+6088,0.141215678919107,1,100,1,100,NA,100,94.4607888507843,35.355339050293
+6089,0.0958516368071332,0.7175,71.75,1,99.0496701463057,0.980334316617502,71.75,65.2609397542601,10
+6090,0.0291514937531156,0.3225,32.25,1,95.995253617625,0.905786291905472,32.25,30.5125283973162,0
+6091,0.0329013250281423,0.3275,32.75,1,96.0662730877785,0.950226314725234,32.75,21.9248958471167,0
+6092,0.00961250192998705,0.1175,11.75,2,88.3714095114287,0.90084985835694,11.5,41.321376475882,20
+6093,0.0919538347221896,0.6225,62.25,1,98.5923763102686,0.960208055026575,62.25,49.4711775032871,5
+6094,0.190397176556289,1,100,1,100,NA,100,47.4437326478958,7.07106781005859
+6095,0.091278496490977,0.6925,69.25,1,98.9385077039357,0.974984365228268,69.25,19.4253973702661,0
+6096,0.00272346209603711,0,0,0,NA,NA,0,NA,NA
+6097,0.0107621699252422,0.0825,8.25,2,80.7534789434012,0.798163285901705,6,128.048666058165,104.40306854248
+6098,-0.0125711207757558,0.0175,1.75,1,65.4774238937655,1,1.75,132.896711077009,128.160064697266
+6099,-0.0182463589586587,0,0,0,NA,NA,0,NA,NA
+6100,-0.0194079994675849,0.0875,8.75,1,87.4704367425575,0.905526688710439,8.75,15.9592632293701,0
+6101,-0.00910242428031779,0.09,9,2,80.4523936425773,0.761904761904762,4.5,21.3361829121908,0
+6102,0.014876638499918,0.1925,19.25,1,93.2673077410907,0.781460571844837,19.25,20.7432494473148,5
+6103,0.0121537901350166,0.1125,11.25,1,89.5714527894752,0.911045218680504,11.25,24.9870776706272,7.07106781005859
+6104,0.0174323484752676,0.04,4,3,63.4534875697327,0.739583333333333,2.25,12.257795214653,0
+6105,0.0102612170977591,0.0425,4.25,3,71.3822151414983,0.74934725848564,3.75,0.710062812356388,0
+6106,0.0138344642775519,0,0,0,NA,NA,0,NA,NA
+6107,-0.00401135582841107,0,0,0,NA,NA,0,NA,NA
+6108,0.020389351100057,0.4225,42.25,1,97.165991902834,0.911199911199911,42.25,2.15868229837813,0
+6109,0.013221643156794,0.1625,16.25,3,86.0687827471272,0.735834103817197,12.5,0.538461538461538,0
+6110,-0.026831977316433,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0
+6111,-0.0294193368063861,0,0,0,NA,NA,0,NA,NA
+6112,-0.00617718744542799,0,0,0,NA,NA,0,NA,NA
+6113,0.00209247356472702,0,0,0,NA,NA,0,NA,NA
+6114,-0.00717664820642312,0,0,0,NA,NA,0,NA,NA
+6115,-0.000553439138420799,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+6116,0.00731035640067603,0.05,5,3,64.8416808841178,0.694397283531409,2.25,3.91421356201172,0
+6117,0.0358302276344693,0.3275,32.75,3,92.2534590406087,0.738688152307477,25.75,5.61764401151934,0
+6118,0.051182655767916,0.4425,44.25,3,93.6870749561859,0.758642914935341,32.5,2.36362129685569,0
+6119,0.019946062872923,0.1925,19.25,6,81.6326741454906,0.781460571844837,9,1.47498549424209,0
+6120,0.0440232974043647,0.53,53,2,97.1995909601925,0.864996219894157,51.5,1.36159949932458,0
+6121,0.0473806386295473,0.6075,60.75,1,98.5105231673728,0.803585959201998,60.75,0.461197809917937,0
+6122,-0.00106921780850826,0.0375,3.75,2,66.8904594781932,0.669421487603306,2,0.804737854003906,0
+6123,-0.0679357977537438,0,0,0,NA,NA,0,NA,NA
+6124,-0.0898716363683343,0,0,0,NA,NA,0,NA,NA
+6125,-0.0650421622907743,0,0,0,NA,NA,0,NA,NA
+6126,-0.0301794108409376,0.0225,2.25,1,70.1754385964912,1,2.25,0,0
+6127,0.0254852191188547,0.2475,24.75,3,91.467681381592,0.820821979170555,21.75,0.727990583939986,0
+6128,0.0180468573871076,0.1275,12.75,3,82.7955421768717,0.881434640845766,10,1.41315819235409,0
+6129,0.00428838406580326,0.065,6.5,4,65.6776994365871,0.634798487022303,2.75,1.73076923076923,0
+6130,-0.00255616652701633,0.0325,3.25,2,66.0668178142144,0.770312948607522,2.5,1.53846153846154,0
+6131,-0.0131310240272433,0.05,5,2,78.5400859266239,0.762308998302207,4.75,10.0048090934753,0
+6132,-0.000282550377110056,0.22,22,3,89.0794612040256,0.828515433610975,14.5,5.13506516543302,0
+6133,0.0534230424039561,0.625,62.5,1,98.6057312417508,0.925925925925926,62.5,0.834426986694336,0
+6134,0.0133226810923291,0.1525,15.25,1,91.785591586011,0.910947848833973,15.25,0.327868852459016,0
+6135,-0.0145222714059082,0,0,0,NA,NA,0,NA,NA
+6136,-0.0124757395146662,0,0,0,NA,NA,0,NA,NA
+6137,-0.00498710313800984,0.0525,5.25,4,62.0559142467603,0.604221635883905,2,11.0836727505638,0
+6138,0.02147216292542,0.1725,17.25,4,86.0689814858851,0.720356545404609,13,6.15679168701172,0
+6139,-0.00668344418380002,0.0375,3.75,3,59.1088832689987,0.574970484061393,1.5,3.55009384155273,0
+6140,0.0115088995858241,0.0625,6.25,4,64.9723667340588,0.653333333333333,3,1.28284271240234,0
+6141,0.01454983773756,0.0725,7.25,6,59.6243235574025,0.541205482594483,2,3.58149982320851,0
+6142,0.0121728881402316,0.075,7.5,5,67.8170359206013,0.691119691119691,4.25,6.93428516387939,0
+6143,0.0222269461816268,0.1475,14.75,6,74.9317797983118,0.689494566154908,6.75,5.43912354162184,0
+6144,-0.0220942283766954,0.0475,4.75,6,48.2419854481387,0.493166802425559,1.75,23.8322169655248,10
+6145,0.0261145515000317,0.21,21,4,87.1066255417716,0.762127261914876,15,3.55230753762381,0
+6146,0.0279175883438438,0.18,18,3,84.5845228107319,0.779143460725946,8,3.90680419074164,0
+6147,-0.0130843308230396,0.215,21.5,1,93.912339662796,0.866783231339245,21.5,1.55979227465253,0
+6148,-0.0336300345463587,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,11.7741584777832,10
+6149,0.01659276639788,0.0575,5.75,4,67.1008561631457,0.646330680813439,3,15.0646069568136,0
+6150,0.0146324502227617,0.045,4.5,4,60.9119514728441,0.650959860383944,2.5,6.50394821166992,0
+6151,0.0231654632593563,0.145,14.5,4,86.9689126324757,0.824561403508772,13.25,4.31929542278421,0
+6152,0.0281605876401591,0.2875,28.75,3,91.6050782681603,0.817813765182186,23.75,1.53974841573964,0
+6153,0.00848090005244899,0.15,15,5,78.7004718660919,0.728506787330317,6.75,1.23570226033529,0
+6154,-0.0286337497593195,0.0925,9.25,4,76.8750082392278,0.69290520706318,5.5,0.27027027027027,0
+6155,0.00464299929549725,0.2775,27.75,2,92.5843573010575,0.875432525951557,23.5,0.36036036036036,0
+6156,0.0199850463599432,0.295,29.5,2,93.9543712737375,0.8409226486379,27.25,0.949754811949649,0
+6157,0.0346190067575753,0.3325,33.25,1,96.1356845313251,0.882378431918779,33.25,1.04618147082795,0
+6158,0.036797083308702,0.4875,48.75,4,93.7678554570751,0.80595607061043,37.25,4.61071194379758,0
+6159,0.0145471720824753,0.315,31.5,2,92.153774711734,0.815127657539923,20,1.08786561754015,0
+6160,0.00818053054557822,0.15,15,2,89.0783316152399,0.852941176470588,13.5,1.86785113016764,0
+6161,0.0442289414362676,0.3725,37.25,2,93.4857630090956,0.842388687010201,27.5,21.4140529376548,0
+6162,0.380731459483504,0.99,99,1,99.9734851828463,1,99,32.4221308496263,0
+6163,0.025391455817346,0.145,14.5,4,83.5597575533491,0.801169590643275,10.75,7.10305621706206,0
+6164,0.00385104543087692,0.165,16.5,1,92.3061588442808,0.875032543608435,16.5,1.80518387303208,0
+6165,-0.0222654900443558,0.055,5.5,2,74.4436028906616,0.813258636788049,4.25,8.41407099637118,5
+6166,-0.0406014637981571,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0
+6167,-0.00343275272714891,0.045,4.5,3,67.3731244668155,0.728524335854179,3.25,5.361267513699,0
+6168,0.0348149799369276,0.28,28,3,90.7662324229312,0.814356435643564,18.25,4.29262496743883,0
+6169,0.029267614866767,0.465,46.5,1,97.5448886830867,0.951097587480982,46.5,1.81412046699114,0
+6170,-0.0103031229141561,0.185,18.5,2,89.5835321382604,0.735724398301085,15.25,2.12258199743322,0
+6171,-0.0429619806898609,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0.833333333333333,0
+6172,-0.047476898451896,0.0025,0.25,1,0,NA,0.25,0,0
+6173,-0.0114525659384526,0.045,4.5,4,63.3227805680526,0.650959860383944,3,0.948392656114366,0
+6174,0.0391918711518792,0.4075,40.75,2,94.4160255423113,0.90436005625879,33.5,2.36283696648533,0
+6175,0.0673115917346877,0.6425,64.25,2,96.3238578324606,0.819722896645974,48.5,1.70581258039066,0
+6176,0.0505256056868893,0.5325,53.25,2,97.3692328725818,0.789337222492303,51.5,0.140845070422535,0
+6177,0.0644588662218303,0.74,74,1,99.1448611187463,0.716889932329789,74,0.202702702702703,0
+6178,0.0429440781985613,0.54,54,2,97.6161473878024,0.735020549426779,53,2.18052583270603,0
+6179,0.0639169423503154,0.7,70,2,98.1064777458471,0.727503168567808,67.5,0.525253813607352,0
+6180,0.0738884095195681,0.76,76,2,97.4134093965584,0.716404886561955,62.5,0.328947368421053,0
+6181,0.0354571681293237,0.59,59,3,96.1827119429456,0.845141308555943,54.25,0.127118644067797,0
+6182,-0.116097991871675,0,0,0,NA,NA,0,NA,NA
+6183,-0.0513011267572438,0.33,33,1,96.1011760023317,0.96284139468632,33,98.3555191502427,75.6637268066406
+6184,0.0412477219166522,0.3625,36.25,2,92.9024661854633,0.852016278209397,23.75,104.172059526115,53.8516464233398
+6185,0.205607409998775,1,100,1,100,NA,100,87.6391767215729,43.0116271972656
+6186,0.172537299729884,1,100,1,100,NA,100,80.1428661441803,25
+6187,0.156554037593305,1,100,1,100,NA,100,141.04642988205,74.3303451538086
+6188,0.138381647858769,1,100,1,100,NA,100,186.787981910706,129.807556152344
+6189,0.0601584408613053,0.4575,45.75,1,97.4818813583729,0.978185586126033,45.75,162.974562598056,114.017547607422
+6190,0.046127567925505,0.565,56.5,1,98.2611567869712,0.90717230458405,56.5,122.59804035288,77.6208724975586
+6191,0.0539817402863167,0.53,53,2,96.0871350728603,0.832595312668755,43.75,104.064742736097,49.2442893981934
+6192,-0.0031919219721658,0,0,0,NA,NA,0,NA,NA
+6193,-0.0230780842152672,0,0,0,NA,NA,0,NA,NA
+6194,-0.0380073754978002,0.165,16.5,1,92.3061588442808,0.906274407706327,16.5,13.504212177161,5
+6195,0.0629075744011971,0.425,42.5,2,93.9466079392949,0.905542436449507,28,15.4190880943747,0
+6196,0.0072074129411476,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,6.17851130167643,5
+6197,0.0309224847197765,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,92.4506225585938,76.4852905273438
+6198,0.0187442719326646,0.0175,1.75,1,65.4774238937655,1,1.75,124.085578918457,120.208145141602
+6199,-0.0371630968100456,0,0,0,NA,NA,0,NA,NA
+6200,-0.0660017789975973,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,4.87744794573103,0
+6201,0.00748759016303666,0.0625,6.25,7,61.9387073168408,0.573333333333333,4,15.856704864502,5
+6202,0.0210384568608424,0.12,12,5,79.4336829140515,0.73669623059867,9,12.8998550971349,0
+6203,0.0129769618285536,0.0325,3.25,4,48.1809419678784,0.598047660063164,1.5,7.19799100435697,0
+6204,0.0139075619877258,0.11,11,4,77.3198784494588,0.71150926207106,5,11.4658451513811,0
+6205,0.00708396286573588,0.035,3.5,3,62.3846730506608,0.792746113989637,2.75,4.8138245173863,0
+6206,-9.18088970956887e-05,0.025,2.5,3,51.3198758158094,0.605522682445759,1.25,2.70710678100586,0
+6207,0.0246329710725695,0.2175,21.75,3,87.4969104905086,0.785633309285788,15,3.78079565640154,0
+6208,0.0611559667616166,0.5875,58.75,3,96.2811612553974,0.86194519224132,53.25,2.34846117547218,0
+6209,0.013017516155378,0.225,22.5,4,89.1167813553802,0.847725906631937,19.5,0.902368927001953,0
+6210,-0.00187762974353973,0.005,0.5,1,30.8308651382582,1,0.5,12.6612377166748,11.1803398132324
+6211,-0.0197202268082583,0,0,0,NA,NA,0,NA,NA
+6212,-0.0393915523223404,0,0,0,NA,NA,0,NA,NA
+6213,-0.0276817050080535,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+6214,-0.00536793272019168,0.05,5,2,77.5556366186497,0.898132427843803,4.75,16.2358595848083,5
+6215,-0.00174111376210931,0,0,0,NA,NA,0,NA,NA
+6216,0.0225385433811607,0.1375,13.75,6,73.7089346644628,0.682684973302822,7.75,10.0818404457786,0
+6217,0.058962064483203,0.6025,60.25,3,97.6689203968019,0.77078965758211,58.75,7.90633966912867,0
+6218,0.03602083756914,0.2675,26.75,3,93.9988125958094,0.858529770641391,26.25,0.506001267477731,0
+6219,0.0640930336000019,0.675,67.5,2,97.0116051915598,0.866484600212411,57.75,3.88291356828478,0
+6220,0.0416727447166522,0.555,55.5,1,98.1983573135366,0.853444064484612,55.5,2.22373798301628,0
+6221,0.0678517001960427,0.825,82.5,2,98.522950811127,0.862416876863105,79,0.61233656912139,0
+6222,0.0120809601578367,0.195,19.5,3,88.3809689287179,0.909982896750383,15.25,0.576923076923077,0
+6223,-0.0350732986068761,0.055,5.5,2,74.7764965583772,0.782135076252723,4,10.7347311540083,5
+6224,-0.0627085502026603,0,0,0,NA,NA,0,NA,NA
+6225,-0.0850833448208868,0,0,0,NA,NA,0,NA,NA
+6226,-0.0466799191950122,0.0325,3.25,1,76.0684107249879,0.712891185759403,3.25,17.4112248053918,14.1421356201172
+6227,0.0412491382574081,0.385,38.5,2,93.32531312855,0.827630785141774,20.25,1.16548113389449,0
+6228,0.0256469930640014,0.2,20,2,91.1210222710059,0.823943661971831,18,0.1875,0
+6229,-0.0184105837581228,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,0.555555555555556,0
+6230,-0.0225418460156652,0,0,0,NA,NA,0,NA,NA
+6231,-0.00793552636634558,0.0725,7.25,2,83.705155371197,0.770602741297241,7,19.0127304340231,0
+6232,-0.0917121961840894,0,0,0,NA,NA,0,NA,NA
+6233,-0.0163385852276406,0.13,13,4,76.6355548802237,0.728787291747385,5.75,2.68264374366173,0
+6234,0.0219068473747757,0.24,24,2,92.631357295189,0.869951040391677,22.25,1.09745144844055,0
+6235,-0.0157458860307815,0.0025,0.25,1,0,NA,0.25,0,0
+6236,0.00887946364318395,0.23,23,1,94.2887150496276,0.952486537852391,23,4.26146536288054,0
+6237,0.0628693848681723,0.555,55.5,4,93.3005010609115,0.826304076426206,38.75,1.54667103397954,0
+6238,0.0277591071224379,0.2175,21.75,2,92.2096120669936,0.934041018241781,21,1.59933489218526,0
+6239,0.000301237012079696,0.055,5.5,2,76.0387038444882,0.875505757858699,4.5,1.81818181818182,0
+6240,0.00798871516193685,0.0425,4.25,3,70.7747433345837,0.7911227154047,3.75,2.05882352941176,0
+6241,0.0152561211949433,0.11,11,4,77.3537926838159,0.71150926207106,7,3.97115161202171,0
+6242,0.00744199789940267,0.1125,11.25,7,71.1658575616716,0.599703484062268,5.75,6.12144224378798,0
+6243,0.0116995113816336,0.1225,12.25,3,85.2916573984237,0.78293311626645,10.75,1.69900831884267,0
+6244,0.0133227224539587,0.1225,12.25,2,86.0556343849858,0.877899877899878,10.5,4.47954029939613,0
+6245,0.0165263393931673,0.1475,14.75,6,75.3185281759659,0.70099476740843,4.75,1.6452723357637,0
+6246,0.0334569069319241,0.2675,26.75,5,85.9693050093404,0.780721144494156,11,2.6701932532765,0
+6247,-0.0157773495199945,0.0225,2.25,1,70.1754385964912,0.744245524296675,2.25,1.11111111111111,0
+6248,-0.0625305906533322,0.0175,1.75,1,65.4774238937655,1,1.75,0.714285714285714,0
+6249,-0.0526198717021907,0,0,0,NA,NA,0,NA,NA
+6250,0.00140869162216404,0.0025,0.25,1,0,NA,0.25,5,5
+6251,-0.0476031098248495,0.0475,4.75,3,65.8757303178702,0.674178658702145,3,1.31578947368421,0
+6252,0.0108229885429489,0.1875,18.75,1,93.1084153854816,0.869463869463869,18.75,2.14950937906901,0
+6253,0.0264400717848184,0.2375,23.75,3,90.3212912352851,0.853423336547734,20.25,4.11987886930767,0
+6254,0.0442822638409598,0.3875,38.75,2,95.6903216056853,0.868242033655567,37.5,4.22701460315335,0
+6255,0.0352726584539778,0.3425,34.25,2,92.8292869501106,0.878326996197719,22.25,0.766423357664234,0
+6256,0.0269420352779173,0.275,27.5,3,88.7274354681983,0.812857390400277,14.75,2.41525285894221,0
+6257,0.0288549995385983,0.2425,24.25,3,90.2308780254839,0.764804066613558,19,4.34432436756252,0
+6258,0.0480135314782092,0.5275,52.75,4,93.3438474503408,0.713853795486449,33.25,2.16059810403399,0
+6259,0.0379740899609033,0.34,34,3,92.4221806464319,0.914467253176931,29.5,0.692221585442038,0
+6260,-0.00169802588428865,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0
+6261,-0.0105090968882587,0.0875,8.75,4,77.6430387119807,0.73547472838923,6.75,4.84403741019113,0
+6262,-0.00732308637296228,0.1075,10.75,3,83.8611517583996,0.828820417055711,9.5,11.4704518872638,0
+6263,0.0043954449247758,0.185,18.5,2,90.4372746305744,0.764039641340255,16,1.23261085716454,0
+6264,0.0274907568530762,0.245,24.5,5,89.4645877097475,0.77423239012643,20.25,2.29045521483129,0
+6265,0.00963526539582745,0.185,18.5,3,85.0208758010163,0.773478055686645,9,1.64960902446025,0
+6266,-0.0411622483706378,0,0,0,NA,NA,0,NA,NA
+6267,0.020857892635031,0.3175,31.75,3,93.1185809368004,0.873142730285588,28.75,1.83688402551366,0
+6268,0.0237560252791445,0.22,22,4,88.9402204312072,0.795851706679732,18,24.2331601923162,0
+6269,0.0702048983518034,0.83,83,1,99.48609157949,0.962473027488508,83,0.894792372921863,0
+6270,0.0666187086753416,0.7175,71.75,2,98.8183169004236,0.862340216322517,71.5,0.24390243902439,0
+6271,-0.0717323622072581,0,0,0,NA,NA,0,NA,NA
+6272,-0.0527308973357867,0.2525,25.25,1,94.7890822083159,0.940871043441305,25.25,0.346534653465347,0
+6273,0.00707773547850593,0.18,18,3,85.1303730534966,0.788745918955252,10.75,0.960307439168294,0
+6274,0.0347190278491689,0.42,42,2,96.0185922299812,0.838709677419355,39.75,0.50084604535784,0
+6275,0.00885467202895597,0.2125,21.25,2,91.1678515474091,0.789761379165353,17.75,2.7833885417265,0
+6276,0.011181116630778,0.26,26,2,92.8663814550729,0.804885099002746,24,1.765449487246,0
+6277,0.00870169228484883,0.27,27,3,90.5500180903881,0.810326659641728,18.5,2.6556636845624,0
+6278,0.0628832832695616,0.6525,65.25,1,98.7475319937876,0.782260081505348,65.25,0.708812260536398,0
+6279,0.0282083009869166,0.395,39.5,2,96.5040173189716,0.891707039042462,39.25,1.49706125862991,0
+6280,0.069649606840976,0.7625,76.25,1,99.2358070072224,0.802288329519451,76.25,0.531380550196913,0
+6281,-0.0450735425316088,0.4175,41.75,1,97.1176501838512,0.92754027088791,41.75,0.0598802395209581,0
+6282,-0.12757950768806,0,0,0,NA,NA,0,NA,NA
+6283,-0.000519678180244227,0.41,41,1,97.0434862163892,0.966326187001908,41,96.4600678420648,72.8011016845703
+6284,0.094032168913684,0.5125,51.25,1,97.9112600445307,0.983848172824551,51.25,52.4043622831019,20
+6285,0.189977813586593,1,100,1,100,NA,100,46.0325643920898,0
+6286,0.165205521993339,1,100,1,100,NA,100,100.131197633743,45
+6287,0.146022433899343,1,100,1,100,NA,100,165.483298454285,100.623054504395
+6288,0.141070163249969,1,100,1,100,NA,100,242.764177474976,195.256225585938
+6289,0.0151875450495118,0.1775,17.75,1,92.7707193874331,0.922188449848024,17.75,244.87314917336,218.288803100586
+6290,0.0742047163116877,0.6875,68.75,1,98.9155506404681,0.968992248062015,68.75,210.261656105735,164.924224853516
+6291,0.0297041402830291,0.265,26.5,2,91.3633658941877,0.829041564269687,19.5,193.526342284005,143.961807250977
+6292,0.00854600166510863,0,0,0,NA,NA,0,NA,NA
+6293,-0.0388248916112389,0,0,0,NA,NA,0,NA,NA
+6294,-0.0676062743154578,0,0,0,NA,NA,0,NA,NA
+6295,0.2037210478208,0.8375,83.75,1,99.5120172135984,0.980556568234293,83.75,72.112765633882,15
+6296,0.0190506242503761,0.45,45,2,94.157335102783,0.858039858039858,23.75,37.690175819397,0
+6297,0.0799803727108997,0.68,68,1,98.8806414464123,0.975538160469667,68,12.0132994020686,0
+6298,0.0467964765043871,0.39,39,1,96.835360326048,0.965727994516479,39,11.7933941009717,0
+6299,0.0215314170353849,0.2225,22.25,3,89.3483696560748,0.83821715302635,17.5,17.6027813386381,0
+6300,-0.027329453423381,0.2275,22.75,2,93.2283684847592,0.880139038715091,22.25,1.8394894861913,0
+6301,0.0109219331569602,0.06,6,3,70.4261822192427,0.636058230683091,3.5,12.2794773578644,0
+6302,0.0264952007246029,0.1175,11.75,9,71.1504789854387,0.61756373937677,7.25,9.0139108617255,0
+6303,-0.0142669067071256,0.0425,4.25,3,65.0001857459207,0.66579634464752,2.5,13.6017489713781,0
+6304,0.00473025877239706,0.1825,18.25,4,88.0893119001939,0.789755351681957,16,2.1443243679935,0
+6305,0.0181534967799598,0.1275,12.75,6,73.1748997647013,0.657477851332213,5.5,1.96775174608418,0
+6306,0.0291467869141161,0.2825,28.25,4,90.3407691787056,0.808703969392635,17.75,3.00508117675781,0
+6307,0.0468193490704289,0.3375,33.75,4,89.2588121242692,0.730019941708851,14,5.3643069797092,0
+6308,0.0624053668313172,0.4825,48.25,2,94.5237531382585,0.821876771111651,25.75,2.15266788067595,0
+6309,0.0019461269065323,0.075,7.5,3,73.4560473384328,0.779371207942636,3.75,7.73412456512451,0
+6310,-0.00598619627577705,0,0,0,NA,NA,0,NA,NA
+6311,0.0077128089151438,0,0,0,NA,NA,0,NA,NA
+6312,-0.0128658741724576,0,0,0,NA,NA,0,NA,NA
+6313,-0.0381344160558365,0,0,0,NA,NA,0,NA,NA
+6314,-0.0303063517810642,0,0,0,NA,NA,0,NA,NA
+6315,0.00082122635579708,0.0125,1.25,1,58.1880425789518,1,1.25,15.9554294586182,11.1803398132324
+6316,0.00365375752437103,0.02,2,2,52.9470541148176,0.693877551020408,1.25,8.85142350196838,0
+6317,0.0514673509777458,0.44,44,3,94.1161785885481,0.857142857142857,34.25,3.55302664366635,0
+6318,0.0104758974732431,0.0225,2.25,1,70.1754385964912,0.744245524296675,2.25,0,0
+6319,0.0564373883345979,0.5625,56.25,2,96.5424708495163,0.853061224489796,51,0.440631713867188,0
+6320,0.069149294346571,0.82,82,1,99.4509723118502,0.784598815293484,82,1.03130492931459,0
+6321,0.0748989442177117,0.8175,81.75,1,99.442091962007,0.689172087653471,81.75,1.74661380872814,0
+6322,0.0708767394867027,0.8075,80.75,1,99.4061591150036,0.812646370023419,80.75,0.816119958741746,0
+6323,0.0423900809668885,0.46,46,3,95.5046962986832,0.852941176470588,42.75,0.850558778514033,0
+6324,-0.0652688754459814,0.0125,1.25,1,58.1880425789518,1,1.25,1,0
+6325,-0.0780272509214956,0,0,0,NA,NA,0,NA,NA
+6326,0.0465204808210001,0.48,48,1,97.6664438264523,0.82713915298185,48,6.44600705305735,0
+6327,0.0294855958031258,0.24,24,3,88.999264159939,0.877600979192166,15.75,0.43824028968811,0
+6328,0.00228121895031506,0.0325,3.25,2,64.9662647106596,0.712891185759403,2.5,0,0
+6329,-0.00167260734613137,0.1325,13.25,1,90.8041511632959,0.936662760870254,13.25,9.84303657963591,0
+6330,0.00578848710451894,0.085,8.5,2,85.1988007169034,0.629195940671351,8,15.2395348829382,0
+6331,-0.0221779280839655,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+6332,-0.100620492431335,0,0,0,NA,NA,0,NA,NA
+6333,-0.091584287652513,0.0025,0.25,1,0,NA,0.25,5,5
+6334,0.0372346725558964,0.3975,39.75,3,95.5837499945975,0.909054737679759,38.5,1.65475002024908,0
+6335,0.0399647516714867,0.43,43,1,97.2369173509155,0.811832420167137,43,1.02449536878009,0
+6336,0.0419759169569397,0.4425,44.25,3,94.6939326595666,0.786069856419961,35.25,1.21669683079262,0
+6337,0.0574562805709866,0.5925,59.25,2,97.2793063443302,0.81719730227534,55.75,0.815545448271031,0
+6338,0.0166830848241079,0.2475,24.75,4,85.6041311947154,0.7685617230953,8.5,2.21681425306532,0
+6339,0.0181778903378108,0.215,21.5,4,85.5733478750689,0.79184879896757,10.25,1.994218781937,0
+6340,0.0149221464843504,0.165,16.5,2,91.0185062261396,0.958344181202812,16.25,0.0757575757575758,0
+6341,0.00461668635500246,0.01,1,1,52.6315789473684,1,1,2.5,0
+6342,-0.00297751151372722,0.07,7,4,68.6338431451317,0.56989247311828,3.5,1.68110956464495,0
+6343,0.0382990729895937,0.3925,39.25,4,92.5395211205812,0.828532235939644,32.75,0.920156758302336,0
+6344,0.0531248876178142,0.6225,62.25,2,97.6800142317681,0.772617457294716,58.75,1.12636506413839,0
+6345,0.0409882090658232,0.2825,28.25,6,83.9574338928164,0.733551957368313,10.5,1.41907379690525,0
+6346,0.0704341181745985,0.535,53.5,1,98.0675165576351,0.864915977738153,53.5,11.8339427876695,0
+6347,-0.00913787263752965,0.02,2,2,55.2425944039245,0.693877551020408,1.5,17.4428992271423,5
+6348,-0.018305192452608,0.07,7,1,85.3702908942512,0.8805256869773,7,3.33158111572266,0
+6349,-0.092132949277875,0,0,0,NA,NA,0,NA,NA
+6350,-0.0993399385656812,0,0,0,NA,NA,0,NA,NA
+6351,-0.0207075778936996,0.035,3.5,4,49.7723889961533,0.585492227979275,1.25,8.45958600725446,0
+6352,0.011752106940221,0.11,11,3,78.7240775302404,0.802611600364409,6.25,2.57464252818715,0
+6353,0.0341008719727051,0.3,30,2,93.8232577925418,0.842726081258191,27.25,4.13602304458618,0
+6354,0.0658749100974751,0.645,64.5,1,98.7097599330033,0.912518589799668,64.5,2.4994192714839,0
+6355,0.00267603504123144,0.2075,20.75,2,89.4802710213103,0.879825747333634,14.75,1.20481927710843,0
+6356,0.0250538137850981,0.26,26,2,91.0056765142645,0.869923399335164,20.25,2.16890010466942,0
+6357,-0.00933478417556671,0.075,7.5,5,69.2997495605692,0.646993932708218,4,0.333333333333333,0
+6358,0.0255219469490112,0.3275,32.75,2,92.6678947551096,0.807126969560281,23.5,5.51933582684466,0
+6359,0.0480557868603864,0.4275,42.75,2,96.2298255491612,0.911277465862619,41.75,8.14971076117622,0
+6360,0.081933774985373,0.485,48.5,1,97.7057035934975,0.946062567421791,48.5,12.2465897294664,0
+6361,0.0585290717802127,0.7175,71.75,1,99.0496701463057,0.92133726647001,71.75,0.658289972498026,0
+6362,-0.0489660580831333,0.0025,0.25,1,0,NA,0.25,0,0
+6363,-0.166476118771243,0.03,3,1,74.8763016215986,0.878714372346877,3,0.416666666666667,0
+6364,-0.0178064910569083,0.335,33.5,1,96.169806046512,0.870578084555651,33.5,0.553299519553113,0
+6365,0.0480452252032774,0.255,25.5,4,86.2733061817783,0.772618916639161,14.25,0.882352941176471,0
+6366,0.0624413043732056,0.44,44,1,97.328648826901,0.851648351648352,44,2.26664330742576,0
+6367,0.0439998815552826,0.445,44.5,1,97.3733506421488,0.912374380459487,44.5,1.40329823868998,0
+6368,0.042894375049782,0.45,45,3,93.7984316368673,0.808899808899809,24,18.5516807980008,0
+6369,0.0418498126057602,0.38,38,4,91.3645522126427,0.716730257833275,21.75,2.31507248627512,0
+6370,0.0378958118891023,0.4875,48.75,4,93.5544184259688,0.865247271257243,35.5,0.0256410256410256,0
+6371,-0.00248536981227517,0.335,33.5,2,92.8050617331072,0.932207568100579,25.5,0.149253731343284,0
+6372,-0.0162034663181112,0.1775,17.75,4,82.6262966699594,0.77629179331307,9.5,0.352112676056338,0
+6373,0.0400093453664886,0.3925,39.25,2,96.3214880731104,0.765660722450846,38.5,0.414012738853503,0
+6374,0.0118885236781352,0.2025,20.25,6,82.9573872397954,0.721351445489377,10,0,0
+6375,0.0376460513983875,0.4325,43.25,3,93.5341113851656,0.756949718973112,27.25,0.260115606936416,0
+6376,0.0410818095200648,0.39,39,4,91.0173330858854,0.840063974410236,19.75,9.19619711851462,0
+6377,-0.00939162852373556,0.1275,12.75,2,87.3885365575967,0.934130356025426,12,10.0982008915321,0
+6378,0.00497468170025968,0.245,24.5,3,92.3994847126646,0.864539434075858,23.25,1.11369526142977,0
+6379,-0.018165384702661,0.1,10,2,81.7010134096932,0.800995024875622,6,0.801776695251465,0
+6380,0.0687103937329084,0.695,69.5,1,98.9498932220624,0.74247848753219,69.5,0.503597122302158,0
+6381,-0.081352611862967,0.25,25,2,91.4386364260126,0.925925925925926,20.75,1.2532247543335,0
+6382,-0.107422379727941,0,0,0,NA,NA,0,NA,NA
+6383,-0.0592736491461983,0,0,0,NA,NA,0,NA,NA
+6384,0.0939090668690915,0.665,66.5,1,98.8090595843688,0.988035773038615,66.5,76.0053640093122,25
+6385,0.160779490554705,1,100,1,100,NA,100,41.5896962785721,0
+6386,0.162295479271561,1,100,1,100,NA,100,47.2308880519867,0
+6387,0.141291455924511,1,100,1,100,NA,100,140.619824542999,90
+6388,0.143796055171988,0.9475,94.75,1,99.8561526638156,0.973508179349626,94.75,212.849876061593,172.046508789062
+6389,0.00604022922632581,0.04,4,2,69.6584485569959,0.696180555555556,2.75,202.87553691864,161.941360473633
+6390,0.101220977626217,0.8825,88.25,1,99.6605653114489,0.898076188049433,88.25,149.80653742285,100
+6391,0.0302197834559775,0.305,30.5,2,95.1357986803744,0.934893713988086,30.25,178.059018244509,128.062484741211
+6392,0.0152578138130775,0,0,0,NA,NA,0,NA,NA
+6393,-0.0596634760030429,0,0,0,NA,NA,0,NA,NA
+6394,-0.021129658969345,0.0775,7.75,1,86.3573366287605,0.89159891598916,7.75,209.489478818832,172.409393310547
+6395,0.235818305324356,0.9675,96.75,1,99.9123308655226,1,96.75,163.951441052656,103.07763671875
+6396,0.0470463827392086,0.575,57.5,2,96.2353283547927,0.917729329494035,52.5,109.475992368615,53.8516464233398
+6397,0.112466926677153,0.9925,99.25,1,99.9801514397,1,99.25,76.7197463950823,30
+6398,0.0921072895720135,0.855,85.5,1,99.5711782059382,0.88274796141342,85.5,18.7194304549903,0
+6399,0.0749686283036135,0.79,79,1,99.3416426267051,0.776286353467561,79,11.1130050647108,0
+6400,0.0606318905997614,0.485,48.5,7,89.2844286557136,0.730312837108954,18.75,1.85474201084412,0
+6401,0.00738864328753834,0.07,7,2,78.265617197666,0.85663082437276,5.25,2.03825242178781,0
+6402,0.0085377004226757,0.1925,19.25,4,84.7631156331875,0.754143143325442,12.5,4.88851601736886,0
+6403,-0.00806236346164951,0.0325,3.25,2,65.015479876161,0.712891185759403,2.25,6.17507685147799,0
+6404,0.00867964086516622,0.09,9,3,76.1789600256796,0.725274725274725,5.25,7.10450749927097,0
+6405,0.00976175791278365,0.0525,5.25,2,72.8497686088748,0.83509234828496,3,2.2414794195266,0
+6406,0.0188446761843943,0.07,7,6,62.7813238026564,0.59378733572282,3,5.61953810283116,0
+6407,0.023934654918412,0.1925,19.25,3,90.2824705075199,0.717719905299581,17.25,2.06678098207944,0
+6408,0.0114094087391845,0.085,8.5,3,81.5368936496304,0.785323965651835,7.5,8.83258847629323,0
+6409,-0.000976069124294554,0.0075,0.75,1,44.4894453484604,1,0.75,22.2762438456217,20.6155281066895
+6410,-0.00241248606530462,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+6411,0.00194427388288204,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,6.6502815246582,5
+6412,-0.00761641107519722,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,11.5920949935913,7.07106781005859
+6413,-0.0211661230281425,0,0,0,NA,NA,0,NA,NA
+6414,-0.00841703518282884,0,0,0,NA,NA,0,NA,NA
+6415,-0.00986780910187918,0.01,1,1,52.6315789473684,0.747474747474748,1,8.31285190582275,5
+6416,-0.000338777772340109,0.1025,10.25,1,88.8238145380415,0.919260425497558,10.25,4.87991947081031,0
+6417,0.050429954668507,0.3775,37.75,5,90.1516366515768,0.739028315427776,23.75,2.08186264543344,0
+6418,0.018209585380464,0.275,27.5,4,92.916230587703,0.81978859816323,26,1.47630493857644,0
+6419,0.0163044634778635,0.53,53,3,95.3630900084187,0.789394103034885,44,0.875838747564352,0
+6420,0.0659162405878305,0.8,80,1,99.3787684802637,0.933774834437086,80,0.566291260719299,0
+6421,0.0562195151095511,0.6375,63.75,3,95.963348253332,0.867263021209061,49.75,9.19051907857259,0
+6422,0.0783439364191145,0.8125,81.25,3,98.4996486519973,0.834692767808592,79.75,3.67127765362079,0
+6423,0.0615732601424679,0.74,74,1,99.1448611187463,0.723795055931501,74,0.27027027027027,0
+6424,0.0571267276674916,0.6325,63.25,3,97.9156320555571,0.845001291655903,62.25,1.8902164202905,0
+6425,0.0270793310465558,0.2975,29.75,3,92.0627146439193,0.868195597732964,24.5,0.689672838739988,0
+6426,0.0344100888668618,0.38,38,3,93.2843819917512,0.861255636489768,30.5,2.82839560508728,0
+6427,0.00132562335382772,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,0,0
+6428,-0.0167792126670884,0,0,0,NA,NA,0,NA,NA
+6429,-0.127644639567861,0,0,0,NA,NA,0,NA,NA
+6430,-0.0520510696896235,0.0025,0.25,1,0,NA,0.25,5,5
+6431,-0.010981635580174,0,0,0,NA,NA,0,NA,NA
+6432,-0.110251420522109,0,0,0,NA,NA,0,NA,NA
+6433,-0.0534632318747754,0.1375,13.75,1,91.0694765797212,0.951182303585049,13.75,1.16622064763849,0
+6434,0.0673397815418502,0.7325,73.25,1,99.1136185490844,0.782892616652815,73.25,0.464891479283876,0
+6435,0.0781308282585815,0.9025,90.25,1,99.7229916897507,0.760083970610287,90.25,0.0692520775623269,0
+6436,0.0649892264034133,0.7225,72.25,2,98.3239884491998,0.82114467408585,70.5,2.59857526864972,0
+6437,0.0230340144877664,0.2925,29.25,2,93.5996162363547,0.819987999199947,26.75,2.24296074239617,0
+6438,0.0184643952314218,0.1075,10.75,5,71.2577855271659,0.688764394646748,4.75,1.95679385163063,0
+6439,0.0287196586553182,0.275,27.5,5,87.6592914036915,0.757407728296656,17,0.272727272727273,0
+6440,0.0232665611390257,0.17,17,5,81.5143776220653,0.807633896932267,11.75,1.55360221862793,0
+6441,0.00397300700540654,0.0275,2.75,2,61.6023954152147,0.725792630676949,1.75,4.65275816483931,0
+6442,-0.00327098762822061,0.1225,12.25,2,88.8214443456101,0.701533034866368,11.75,2.23397165415238,0
+6443,-0.00640116248432605,0.0375,3.75,2,72.3135955990145,0.622195985832349,3.25,2,0
+6444,0.0252111593401605,0.245,24.5,2,90.2620438383955,0.766706803130644,16.25,0.459183673469388,0
+6445,0.033649379644994,0.3175,31.75,4,91.2753767654062,0.854114139828426,25.25,1.04948245071051,0
+6446,0.0582554299305048,0.66,66,1,98.7846583695088,0.82174688057041,66,2.22491397279682,0
+6447,0.0384983988185195,0.53,53,4,93.4641616905541,0.832595312668755,42,3.54402298297522,0
+6448,-0.00248233939761121,0.1375,13.75,2,88.0050396679281,0.804729214340198,12,1.08117474642667,0
+6449,-0.0514844220087252,0.0025,0.25,1,0,NA,0.25,0,0
+6450,-0.0908260990975032,0,0,0,NA,NA,0,NA,NA
+6451,0.0153105085335847,0.1275,12.75,3,80.5952974758194,0.762869281691532,6.5,19.7064220952053,0
+6452,0.0141049795010917,0.1475,14.75,3,85.8642526596704,0.861997584957737,11.75,6.08632233183263,0
+6453,0.0267345068817076,0.2175,21.75,4,82.8639226956426,0.711429454807791,7,4.0106807138728,0
+6454,0.0561592874214693,0.5925,59.25,1,98.4255810267197,0.833815729341218,59.25,1.03013559333383,0
+6455,0.00306426932711474,0.1625,16.25,2,91.3180386864597,0.85206709813763,16,0.692307692307692,0
+6456,-0.0111656648438122,0,0,0,NA,NA,0,NA,NA
+6457,-0.0407878584701757,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+6458,0.0213477678457275,0.2075,20.75,2,92.6160139529838,0.974248374428636,20.5,0,0
+6459,0.0410012877036115,0.2875,28.75,2,91.7285796210723,0.885290148448043,19.75,0,0
+6460,0.0505082016038068,0.4525,45.25,3,93.2493313767676,0.852790840318953,36.25,2.3313941007161,0
+6461,0.0496755452427806,0.3275,32.75,3,94.2898067689431,0.925339472087851,31.75,5.53242791154002,0
+6462,0.0390378813384086,0.4125,41.25,2,95.5837412609522,0.876819708846585,38,8.81771433281176,0
+6463,0.0270939719449962,0.3325,33.25,1,96.1356845313251,0.888569040765159,33.25,4.15750576678972,0
+6464,0.0349496385545353,0.465,46.5,4,94.1829220037349,0.891327972179961,41.5,0.264205030215684,0
+6465,0.0479854808670643,0.3775,37.75,5,87.6035966095198,0.750627056964319,16,0.377954091457342,0
+6466,0.023624223804627,0.21,21,6,81.9312593227266,0.702659077393594,9.5,0.119047619047619,0
+6467,0.062697977855878,0.605,60.5,3,96.1571908345003,0.82636944102162,52.75,4.88013212345848,0
+6468,0.0453261694851517,0.405,40.5,3,93.4884910748483,0.768766567029496,30.5,9.76798300095546,0
+6469,0.0556946760950814,0.4475,44.75,3,93.7862626430747,0.846892045221528,35.75,0.402631663743344,0
+6470,0.041407495366584,0.4275,42.75,4,90.1403493946058,0.811464614958065,21.25,0,0
+6471,0.0550704876253712,0.5075,50.75,2,95.5829877250434,0.843811011323702,40.5,0.123152709359606,0
+6472,0.0197319201484061,0.245,24.5,2,90.9685778698639,0.804334738109573,17.5,1.16471566959303,0
+6473,0.0511827344883568,0.485,48.5,2,97.1587268981969,0.919093851132686,48,0.618556701030928,0
+6474,0.00492780969456362,0.18,18,3,83.9508612761417,0.750336086038026,9,0,0
+6475,0.013000159056246,0.2475,24.75,3,90.6199996447199,0.798424726566874,19.25,0.980515836465238,0
+6476,0.0637912962644623,0.575,57.5,3,94.7508099163504,0.868366927190457,49.5,18.4847912663999,0
+6477,-0.011302664315981,0.085,8.5,3,81.7665378292013,0.765807962529274,7.5,6.01333595724667,0
+6478,0.0371831604748149,0.5825,58.25,2,97.8450690639084,0.944937710785326,57.75,26.8261016632866,0
+6479,-0.0500780046818909,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,0.714285714285714,0
+6480,0.0141633907151925,0.2625,26.25,2,94.230482276273,0.949780288763339,26,0.619047619047619,0
+6481,-0.0490380563971121,0.045,4.5,4,61.5052550829673,0.612177622648827,2.75,6.37706036037869,0
+6482,-0.0340554307965544,0,0,0,NA,NA,0,NA,NA
+6483,-0.0189460662661986,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,48.9101594289144,11.1803398132324
+6484,0.100397347757607,0.9175,91.75,1,99.7684657792434,0.982559407019839,91.75,56.6581808812612,0
+6485,0.103711436078302,0.955,95.5,1,99.8774262095089,0.662369551872315,95.5,46.5827428807763,0
+6486,0.126898824730888,0.9175,91.75,1,99.7684657792434,0.773272291257903,91.75,91.9071220896874,40
+6487,0.136048534661531,1,100,1,100,NA,100,155.084028224945,103.07763671875
+6488,0.0781136559925653,0.685,68.5,1,98.9039779649455,0.981471187696869,68.5,181.832324842467,140.356689453125
+6489,0.00815026534823119,0.45,45,2,96.6753999688446,0.967239967239967,44.5,65.4887921015422,25
+6490,0.102372100427747,0.9775,97.75,1,99.9397711850087,0.520814615154239,97.75,63.0866150624307,0
+6491,0.0226735755836035,0.2825,28.25,1,95.3608329643832,0.897519983603197,28.25,109.953366710021,80
+6492,0.00624676339118537,0,0,0,NA,NA,0,NA,NA
+6493,-0.086156305708937,0,0,0,NA,NA,0,NA,NA
+6494,0.0688507054036563,0.36,36,1,96.4912280701754,0.964488636363636,36,289.17466184828,234.093994140625
+6495,0.169450502372347,0.7475,74.75,1,99.1756322950922,0.978896646325379,74.75,252.445343936167,187.949462890625
+6496,0.0999651629322761,0.805,80.5,1,99.3970714465752,0.974696356275303,80.5,201.952329694855,143.17822265625
+6497,0.108761726939119,0.9075,90.75,1,99.7382749359844,0.984263739722255,90.75,133.330472604631,65
+6498,0.0477552498481236,0.365,36.5,2,94.3242266909093,0.876139078120853,32,62.9083204922611,26.9258232116699
+6499,0.0810786245390773,0.8225,82.25,1,99.4598121429477,0.736907758953074,82.25,13.4250118812167,0
+6500,0.0677265116665512,0.6225,62.25,5,93.242336448114,0.738510075888924,24.5,0.542168674698795,0
+6501,0.00905516204926243,0.0675,6.75,7,63.5177351777592,0.675790261238232,4.75,9.49615944756402,0
+6502,0.0271082504840888,0.2025,20.25,8,76.8788750109486,0.686520376175549,8.5,6.71214313271605,0
+6503,-0.000348577292279515,0.0975,9.75,1,88.4075627573592,0.982953334753889,9.75,2.82878142136794,0
+6504,-0.0208301057422432,0.0875,8.75,4,76.140885149532,0.697685403873406,4.75,4.17940466744559,0
+6505,0.00291901757137566,0.0925,9.25,3,76.3120963516624,0.837420403739331,6,2.48840723810969,0
+6506,0.0217913050695824,0.1725,17.25,4,87.7530558356697,0.830216473995656,15,0.8995806928994,0
+6507,-0.0201534617489233,0.0275,2.75,2,60.517542786349,0.725792630676949,1.5,0.909090909090909,0
+6508,0.00134679962277801,0.035,3.5,2,66.9463328122734,0.689119170984456,2.5,10.3189007895333,0
+6509,0.00303702795032223,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+6510,0.00404519430909943,0.005,0.5,1,30.8308651382582,1,0.5,12.6612377166748,11.1803398132324
+6511,-9.15579754655482e-05,0,0,0,NA,NA,0,NA,NA
+6512,-0.0158275393273834,0,0,0,NA,NA,0,NA,NA
+6513,-0.0111012127279901,0,0,0,NA,NA,0,NA,NA
+6514,0.00508571377515182,0.0175,1.75,1,65.4774238937655,1,1.75,13.303655896868,10
+6515,0.00726682604403322,0.0425,4.25,4,62.6890698911149,0.74934725848564,3.25,18.0933237636791,0
+6516,0.0175472059939602,0.095,9.5,4,77.6071855324068,0.719372095062703,4.75,10.9768953323364,0
+6517,0.0489014284102996,0.5525,55.25,2,97.5469949979813,0.701686825405435,53.5,1.95989631204044,0
+6518,0.0192061181550162,0.4025,40.25,2,95.521759242803,0.869953635644012,38,2.46514519401219,0
+6519,0.062547245392343,0.8575,85.75,1,99.5794816088838,0.902534113060429,85.75,0.0291545189504373,0
+6520,0.0597011770842073,0.765,76.5,1,99.2456636792102,0.859876839116486,76.5,0.468249252419067,0
+6521,0.0724355720262975,0.8625,86.25,1,99.5959799783351,0.799219185722253,86.25,0.670183198348336,0
+6522,0.0756958459923044,0.825,82.5,1,99.4686117624928,0.706489337307957,82.5,1.99272440708045,0
+6523,0.0602031801380508,0.65,65,3,96.7080633404743,0.700792021120563,51.75,1.22335137587327,0
+6524,0.0546758039441193,0.5925,59.25,2,97.7695558695321,0.795039399520835,57.25,0.557261889493918,0
+6525,0.0532536824898534,0.4775,47.75,4,95.4903159792149,0.848620009190928,44.75,2.95024024004712,0
+6526,0.0187793383845565,0.2925,29.25,2,92.6126851955786,0.913327555170345,25,1.27014313396226,0
+6527,0.00405088525109932,0.0275,2.75,3,58.9473684210526,0.725792630676949,2.25,15.946964784102,5
+6528,-0.144699469815569,0,0,0,NA,NA,0,NA,NA
+6529,-0.142095520425573,0,0,0,NA,NA,0,NA,NA
+6530,-0.0137731449520709,0,0,0,NA,NA,0,NA,NA
+6531,-0.0316309390333754,0,0,0,NA,NA,0,NA,NA
+6532,-0.0785485412571506,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,2,0
+6533,0.0599494374143978,0.6375,63.75,1,98.6713232517353,0.896118886163613,63.75,0.333333333333333,0
+6534,0.0744309659535065,0.895,89.5,1,99.6998271307191,0.747155499367888,89.5,0.446927374301676,0
+6535,0.0853048296459019,0.99,99,1,99.9734851828463,0.468085106382976,99,0.0505050505050505,0
+6536,0.0730513067106949,0.85,85,1,99.5544616363511,0.668221876620011,85,0.751045114853803,0
+6537,0.0673668784924666,0.845,84.5,1,99.5375969134692,0.818264425261245,84.5,0.502958579881657,0
+6538,0.0518800710534561,0.5725,57.25,1,98.3071726267885,0.819220181601545,57.25,0.965996521529152,0
+6539,0.0464777703856817,0.3925,39.25,3,95.2580283017238,0.845679012345679,37.25,0.828025477707006,0
+6540,0.0457761401469861,0.45,45,2,96.7852676816624,0.858039858039858,44,0.344839265611437,0
+6541,0.00169108243118899,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+6542,-0.0662077280793164,0.0575,5.75,1,83.3142722045184,0.91158267020336,5.75,0.652173913043478,0
+6543,-0.0930792918130464,0,0,0,NA,NA,0,NA,NA
+6544,0.0260598275969278,0.29,29,3,90.6046396517672,0.738430583501006,20.5,25.441514344051,0
+6545,0.0356127523292525,0.38,38,3,91.9864919891456,0.734073303272055,20.5,2.30921243366442,0
+6546,0.0130139835332557,0.14,14,3,86.8078585060154,0.856149604411412,12.75,0.714285714285714,0
+6547,0.0117994069915949,0.1375,13.75,4,84.0386451932339,0.74370709382151,10.5,0.363636363636364,0
+6548,0.0192991781640194,0.3,30,1,95.6539902192076,0.927916120576671,30,1.1351100285848,0
+6549,0.0337605885630455,0.445,44.5,1,97.3733506421488,0.956187190229743,44.5,2.05980472350388,0
+6550,0.0306879036282317,0.2975,29.75,5,88.870957514319,0.81547383682615,18.5,2.12860298156738,0
+6551,0.0407187213384304,0.485,48.5,1,97.7057035934975,0.929881337648328,48.5,1.40741491809334,0
+6552,0.0469887714413471,0.53,53,2,96.8995826322063,0.870396371098391,51,1.04837422101003,0
+6553,0.0591766417604504,0.6225,62.25,3,96.4596859600683,0.789671147997612,55,0.832905796158266,0
+6554,0.0747750279592765,0.7575,75.75,4,98.0553308183788,0.906115153375341,74.5,0.138848408614055,0
+6555,0.0201222485946028,0.2675,26.75,1,95.0869843258351,0.915117862384834,26.75,1.06674893102913,0
+6556,-0.0328372969317343,0.025,2.5,1,71.9760246298065,1,2.5,0,0
+6557,-0.0165643720868684,0.06,6,3,72.5244459478541,0.776035834266517,4,3.80055014292399,0
+6558,0.022960487859782,0.225,22.5,3,86.6827099200548,0.831697054698457,11.75,0.745234086778429,0
+6559,0.0276399095664783,0.2775,27.75,3,91.1962841821246,0.903114186851211,22.25,0.18018018018018,0
+6560,0.0519171442210791,0.54,54,2,96.722158848994,0.832359939433268,50.5,0.863591105849655,0
+6561,-0.00299268753981778,0.1775,17.75,3,86.4264778256288,0.87355623100304,14.25,0,0
+6562,0.060720560425616,0.545,54.5,2,97.5641192678035,0.79970768148108,53.25,11.3379786955107,0
+6563,0.0439086729479095,0.4925,49.25,2,95.2452696173119,0.908225926175855,40.25,6.33102248525862,0
+6564,0.031686490140778,0.3475,34.75,3,91.5886319031766,0.758650858297885,18.25,0.533396659137534,0
+6565,0.0306172240701562,0.285,28.5,3,90.6809405226609,0.830266820558083,21,0.63220234921104,0
+6566,0.03034882733367,0.255,25.5,4,89.3155954319634,0.76528404298236,16.5,0.0980392156862745,0
+6567,0.0302745492760369,0.3225,32.25,3,91.2843307398484,0.805291669937976,17,28.0666546045348,0
+6568,0.0676062092763641,0.665,66.5,2,98.5726243152689,0.862411389944067,66.25,2.55025127955845,0
+6569,0.0888228748567053,0.735,73.5,1,99.1240858576863,0.720222457265686,73.5,0.731292517006803,0
+6570,0.0311868161426901,0.3225,32.25,2,92.415987381553,0.842977153175787,24,0,0
+6571,0.00970334068395459,0.11,11,3,79.1412612074861,0.772244154266626,4.75,2.20616063204679,0
+6572,0.0348237853046157,0.3375,33.75,2,94.5555352080388,0.932504985427213,32.25,0.0740740740740741,0
+6573,0.0298719614565925,0.4375,43.75,2,95.7885515700858,0.933952528379773,41.5,0.257142857142857,0
+6574,-0.0392887927079573,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,0,0
+6575,0.0110925795447292,0.315,31.5,1,95.8855704592132,0.885251649507538,31.5,1.00850053817507,0
+6576,0.000618686556917964,0.155,15.5,1,91.8947234736642,0.967126890203813,15.5,16.103569492217,0
+6577,-0.0187073972731014,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,27.2877222782857,5
+6578,-0.0502405299272505,0.3925,39.25,1,96.8622433213934,0.971422039323274,39.25,30.6847291812775,7.07106781005859
+6579,-0.14698818936944,0,0,0,NA,NA,0,NA,NA
+6580,-0.0683311018043605,0.0975,9.75,1,88.4075627573592,0.846580012784999,9.75,20.6738397647173,0
+6581,0.0467099845562188,0.445,44.5,2,96.3365316559829,0.928804184123333,43.5,15.3933272308178,0
+6582,-0.0150231243333292,0.0375,3.75,3,58.6488496964614,0.669421487603306,1.5,1,0
+6583,-0.00168185079226532,0.1325,13.25,1,90.8041511632959,0.923995313044304,13.25,34.1685304101908,7.07106781005859
+6584,0.0424685261084232,0.4875,48.75,1,97.7251065890586,0.935318690203477,48.75,27.6980042090783,0
+6585,0.117160341723284,0.8225,82.25,1,99.4598121429477,0.918350683813023,82.25,40.2391145410509,0
+6586,0.092952995384112,0.985,98.5,1,99.9600766120013,0.821746880570409,98.5,44.2190742444266,0
+6587,0.100481078606099,1,100,1,100,NA,100,100.077348203659,38.0788650512695
+6588,0.0204669686164925,0.4275,42.75,1,97.2134830220855,0.972274208082068,42.75,101.418665724191,47.1699066162109
+6589,0.0701449422747828,0.755,75.5,1,99.205943814227,0.856533122915247,75.5,50.3411753319747,10
+6590,0.107804039241746,1,100,1,100,NA,100,43.3776465702057,0
+6591,0.0532572343270294,0.5675,56.75,1,98.2765967200003,0.978135803987483,56.75,115.542062902241,80.1560974121094
+6592,-0.0212963970395867,0,0,0,NA,NA,0,NA,NA
+6593,-0.077448815440348,0,0,0,NA,NA,0,NA,NA
+6594,0.138019857570162,0.5875,58.75,1,98.3965465994375,0.983433423068958,58.75,357.834841074842,320.351379394531
+6595,0.10039373023581,0.575,57.5,2,95.6300247077124,0.879336349924585,48.75,311.803167525582,242.744720458984
+6596,0.141574387811124,0.9975,99.75,1,99.9934086913499,1,99.75,219.109920606876,156.524765014648
+6597,0.0599101050395984,0.3925,39.25,1,96.8622433213934,0.954275262917238,39.25,159.032701820325,134.164077758789
+6598,0.0573108765413053,0.645,64.5,3,97.9029228175528,0.88335811973289,63.5,38.4126714735992,0
+6599,0.0879959375364706,0.7675,76.75,1,99.2554721522595,0.680023812181419,76.75,1.20643525014871,0
+6600,0.0416356614804863,0.33,33,6,85.7034619709552,0.74608286368985,12.5,0,0
+6601,-0.0122063543388663,0.05,5,4,63.8807374306771,0.558573853989813,2.5,3.91421356201172,0
+6602,0.0184732298999734,0.1425,14.25,3,86.9723062820246,0.762003926935206,12,3.16978621901127,0
+6603,0.00317887164630292,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,14.6130479176839,10
+6604,-0.00420445640484104,0.01,1,2,30.8308651382582,0.494949494949495,0.5,9.29247283935547,0
+6605,-0.00727492897141929,0.0775,7.75,3,79.1307726586835,0.913279132791328,7,5.41338200722971,0
+6606,0.00564548683226064,0.08,8,7,59.3046197807963,0.561036789297659,2.75,1.72882735729218,0
+6607,0.0181485458630232,0.1975,19.75,3,87.5197188993046,0.777481085892301,13,4.68590202814416,0
+6608,0.0178759991370725,0.08,8,4,76.775995855102,0.686454849498328,6,11.9041886925697,0
+6609,0.0135326033653473,0.005,0.5,2,0,1,0.25,14.1421356201172,14.1421356201172
+6610,-0.000178026638204756,0,0,0,NA,NA,0,NA,NA
+6611,-0.0121194680743611,0.005,0.5,2,0,1,0.25,5,5
+6612,-0.0139001338149683,0,0,0,NA,NA,0,NA,NA
+6613,0.00344898832907347,0.0025,0.25,1,0,NA,0.25,20.6155281066895,20.6155281066895
+6614,-0.000281792771343134,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,1,0
+6615,0.00287007566936154,0.04,4,2,74.2500702543702,0.826388888888889,3.75,4.19811820983887,0
+6616,0.00191515898761281,0.1125,11.25,4,82.2040086429256,0.673832468495182,8.75,1.60874540540907,0
+6617,0.0704247207305525,0.66,66,2,98.0942245170617,0.904931669637552,65,7.16260027162956,0
+6618,0.0965188135555945,0.9425,94.25,1,99.8418294460568,0.756764974156279,94.25,2.55535216293537,0
+6619,0.052151833658354,0.54,54,1,98.1009071848445,0.913476097772009,54,0.634588276898419,0
+6620,0.0747063647699542,0.87,87,1,99.620460342959,0.731119943885902,87,1.41440659007807,0
+6621,0.0533396513477783,0.5275,52.75,4,96.1875435072803,0.827232480293705,49.75,1.06971885355728,0
+6622,0.0685280188670731,0.655,65.5,3,98.2995653796284,0.840609226954751,65,5.48240180415962,0
+6623,0.0801059451606125,0.7875,78.75,2,99.0848702861244,0.897009308774015,78.5,1.23639559064593,0
+6624,0.0653158251759078,0.69,69,1,98.9270603639069,0.757130402291693,69,1.95614727683689,0
+6625,0.0444050596469606,0.4975,49.75,4,95.2306031559546,0.746524828432364,43.5,1.93436310159501,0
+6626,0.0114686646834525,0.13,13,3,81.000370324091,0.806276636962418,7,0.809058996347281,0
+6627,-0.056889110599077,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,3.79357062445747,0
+6628,-0.181714986497536,0,0,0,NA,NA,0,NA,NA
+6629,-0.0348281455878532,0,0,0,NA,NA,0,NA,NA
+6630,-0.0190517651007576,0,0,0,NA,NA,0,NA,NA
+6631,-0.00163176880898391,0,0,0,NA,NA,0,NA,NA
+6632,0.0664691379998476,0.61,61,1,98.5243747403739,0.971884840305893,61,1.98946473637565,0
+6633,0.0780929749179631,0.9575,95.75,1,99.8844617862358,0.578674444984605,95.75,0.195822454308094,0
+6634,0.0303375208513535,0.3875,38.75,2,95.219539739798,0.839598997493734,35,0.413820229807208,0
+6635,0.0533641760428918,0.62,62,1,98.5789406842005,0.920598911070781,62,0.161290322580645,0
+6636,0.0630749388798722,0.6175,61.75,3,95.7867729735805,0.756670344905639,39.25,0.832570651282183,0
+6637,0.0539811618320527,0.5375,53.75,1,98.0842701108371,0.886486486486487,53.75,0.0465116279069767,0
+6638,0.037458508881391,0.355,35.5,2,95.3361328335121,0.88670244484198,34.25,0.246478873239437,0
+6639,0.0682580209290609,0.815,81.5,1,99.4331707829294,0.75390024170512,81.5,0.406115163323338,0
+6640,0.04885924510716,0.465,46.5,3,93.2900063376388,0.766355140186916,24.5,0.955462466004074,0
+6641,-0.0564568205181422,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,1.36363636363636,0
+6642,-0.0202090148823845,0.0325,3.25,3,60.7522026964716,0.770312948607522,2.5,0,0
+6643,0.00379056883943122,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,2.22222222222222,0
+6644,0.0277949117347021,0.2275,22.75,5,89.6602564180061,0.824203923448799,20.75,4.88836456131149,0
+6645,0.0056627464016492,0.2325,23.25,2,93.3595307167392,0.882265217220674,22.75,3.95220916501937,0
+6646,0.0216035101331681,0.185,18.5,3,87.5046206116123,0.915054270882492,16,0.990327989732897,0
+6647,0.0256484007189374,0.2825,28.25,5,85.3771262997022,0.726719956275193,13.25,1.91339118079802,0
+6648,-0.015815589269987,0.0925,9.25,3,80.2800706978058,0.765162805401255,6.75,1.89189189189189,0
+6649,0.0185963688632069,0.2225,22.25,2,92.2600787033744,0.894841149467128,21.5,2.60590812597382,0
+6650,-0.00586955035672872,0.12,12,4,85.8526547340865,0.681263858093126,10.75,2.08670576413473,0
+6651,0.00240067679971617,0.0475,4.75,2,73.8602038269029,0.818988143723414,4,7.55407403644763,0
+6652,0.0206550638819317,0.29,29,2,91.9365483534084,0.812206572769953,20.75,6.92929726633532,0
+6653,0.016346121288243,0.2575,25.75,4,87.7732290162546,0.832559832559833,18.75,4.07321659569601,0
+6654,0.0483928440437012,0.4925,49.25,5,92.9056435925909,0.811053377420878,27.5,2.06553554050813,0
+6655,0.0510311937652659,0.54,54,2,96.1964336711574,0.881029634436513,47.25,0.981810499120642,0
+6656,0.0577207883996016,0.625,62.5,2,97.8551214974652,0.863247863247863,61,15.1335633239746,0
+6657,0.0356511061658966,0.4425,44.25,2,96.0097259311225,0.873836069170746,42.5,17.179445611555,0
+6658,0.01740755937426,0.2675,26.75,4,91.8183454934336,0.900970839448973,25.25,25.3287592201589,0
+6659,0.0207830813434748,0.245,24.5,1,94.6299732152399,0.82691149909693,24.5,5.31700017500897,0
+6660,0.0249158053137216,0.3275,32.75,4,91.4091006440447,0.819570390878972,28,0.565970500916925,0
+6661,0.051662595547532,0.45,45,1,97.417305342106,0.87987987987988,45,1.48239534166124,0
+6662,0.0269620114254212,0.51,51,1,97.8932627156421,0.870766248451887,51,45.9282458155763,0
+6663,-0.0381977739221475,0.105,10.5,2,82.2607976660941,0.795420568101346,7,31.3560738790603,0
+6664,0.0489085105739923,0.535,53.5,2,97.2172729263097,0.870319338628627,51.75,0.497676706759729,0
+6665,0.0348685112627572,0.43,43,1,97.2369173509155,0.784160717250539,43,0.0872093023255814,0
+6666,-0.0133044721972328,0.135,13.5,2,86.1175372745653,0.875691466219156,10,0.871686440927011,0
+6667,-0.0255610229022932,0.185,18.5,2,91.4395598676943,0.858423784804153,17.75,26.401390900483,0
+6668,0.0560020117842942,0.545,54.5,6,92.5126880492554,0.723921398798246,42.75,1.93380065358013,0
+6669,0.0556368328515236,0.5325,53.25,2,96.966615737584,0.800140441851672,49.25,0.610328638497653,0
+6670,0.0198278844777815,0.27,27,2,94.5331139580391,0.90165086055497,26.75,0.138888888888889,0
+6671,0.0434979200147791,0.4225,42.25,4,91.1342282876495,0.766899766899767,19.5,0.14792899408284,0
+6672,0.056787148341391,0.445,44.5,3,95.4291940298076,0.802842356033845,38.25,0.168539325842697,0
+6673,0.0360582832060754,0.3125,31.25,2,95.0047280713211,0.92310772927513,30.75,0.48,0
+6674,-0.0342586751053841,0,0,0,NA,NA,0,NA,NA
+6675,-0.00400949134244001,0.18,18,3,86.8599656364179,0.846360668331093,13.5,0.625,0
+6676,-0.0320785126532428,0,0,0,NA,NA,0,NA,NA
+6677,0.00277758393140175,0.3925,39.25,1,96.8622433213934,0.971422039323274,39.25,26.7191400102749,5
+6678,-0.0873169955678895,0.165,16.5,1,92.3061588442808,0.906274407706327,16.5,17.2641552144831,0
+6679,-0.115834181797691,0,0,0,NA,NA,0,NA,NA
+6680,-0.0424166401091497,0.2625,26.25,1,94.9905255479102,0.94260604430096,26.25,72.6914551144555,50
+6681,0.0409914134972496,0.6225,62.25,1,98.5923763102686,0.960208055026575,62.25,39.1969880253436,0
+6682,-0.0176789231006478,0.155,15.5,1,91.8947234736642,0.90138067061144,15.5,9.66172673625331,0
+6683,0.0119936379140154,0.25,25,2,93.8582098110828,0.866666666666667,24.5,21.209375,0
+6684,-0.015020128333199,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0
+6685,0.0200120959032574,0.22,22,3,92.4623534658784,0.828515433610975,21.25,23.5714709542014,0
+6686,0.100817556864931,0.8275,82.75,2,99.2311120695325,0.897971014492754,82.5,16.4751203657997,0
+6687,0.0839558364928234,0.875,87.5,1,99.6366054334226,0.830815709969788,87.5,49.4231033379691,0
+6688,0.0340231590462099,0.3025,30.25,2,92.1677228030182,0.843597262952102,22.75,36.931211203583,0
+6689,0.098941815844737,0.9175,91.75,1,99.7684657792434,0.73839110529758,91.75,33.4025745963531,0
+6690,0.0934736070875078,0.985,98.5,1,99.9600766120013,0.643493761140819,98.5,92.8986367743633,45
+6691,0.0228885824424833,0.295,29.5,1,95.572898758965,0.946974216212633,29.5,137.381050691766,105.118980407715
+6692,-0.0400956687470898,0,0,0,NA,NA,0,NA,NA
+6693,-0.0459265815950494,0,0,0,NA,NA,0,NA,NA
+6694,0.126806839933924,0.64,64,1,98.6842105263158,0.959490740740741,64,306.916791856289,248.39485168457
+6695,0.0250547027554421,0.4525,45.25,2,94.4630429464966,0.890956178014039,29.75,252.560661189464,195.576080322266
+6696,0.113317127767468,0.815,81.5,1,99.4331707829294,0.97363216875412,81.5,181.585316710677,140.890029907227
+6697,0.0156083082938193,0.105,10.5,2,86.0994547209726,0.826894326854985,9.75,56.470232918149,38.0788650512695
+6698,0.0478692623823372,0.4825,48.25,6,88.265043508824,0.703127951852751,20.75,17.5902486613377,0
+6699,0.0209088343407348,0.215,21.5,6,81.6977625960804,0.766870654843678,8,0.290697674418605,0
+6700,0.0449232476380166,0.3775,37.75,3,93.0567357711405,0.808620764647036,23.25,0.165562913907285,0
+6701,0.0326442277629212,0.3,30,5,88.8084332251232,0.724770642201835,15,2.66812740961711,0
+6702,0.0125989462473808,0.0325,3.25,3,58.0282779749979,0.712891185759403,2,22.4743122687707,15.8113880157471
+6703,0.015142916043751,0.0175,1.75,4,26.6441421219611,0.363867684478371,0.5,9.14049366542271,0
+6704,0.00448839358346959,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,5.82842712402344,0
+6705,0.00544877182524942,0.025,2.5,2,58.3790172198822,0.684418145956607,1.5,11.1033386230469,5
+6706,-0.0131292431845213,0.0725,7.25,1,85.7162801918893,0.931180822389172,7.25,10.2889489141004,0
+6707,0.00134412103865849,0.095,9.5,4,76.8910368347435,0.771989827238446,6,9.02985989420038,0
+6708,0.0025500236220978,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,13.8137962341309,7.07106781005859
+6709,0.000328606578596009,0,0,0,NA,NA,0,NA,NA
+6710,0.00603300750910421,0.03,3,1,74.8763016215986,0.818071558520315,3,9.0642941792806,0
+6711,-0.0184531649010205,0.0025,0.25,1,0,NA,0.25,5,5
+6712,0.000143877491427702,0.085,8.5,2,79.6323309394513,0.843871975019516,5,13.3806675742654,0
+6713,0.00312588279471584,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0
+6714,0.0113551592212843,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15
+6715,0.0297039447851239,0.2025,20.25,3,86.4612274136874,0.730059212817833,12.5,4.6653247880347,0
+6716,0.0263931544531079,0.54,54,2,96.4451880614423,0.913476097772009,50.25,2.70388325938472,0
+6717,0.0917224594624713,0.9425,94.25,1,99.8418294460568,0.610823958650045,94.25,1.57353667808148,0
+6718,0.0687881180131808,0.8275,82.75,1,99.4773714744283,0.84231884057971,82.75,0.707378053232982,0
+6719,0.0452822051112526,0.4475,44.75,2,96.6425526442701,0.759401785348116,42.75,1.66160003832599,0
+6720,0.0746253331843764,0.935,93.5,1,99.8201295789998,0.522621243354671,93.5,2.27232666321617,0
+6721,0.0521474884117197,0.54,54,1,98.1009071848445,0.843175427211767,54,1.55257101412173,0
+6722,0.0177808446466224,0.3275,32.75,3,90.60121275797,0.807126969560281,20,0.435657006183653,0
+6723,-0.0181143277933006,0.08,8,3,76.7094089027815,0.749163879598662,4,6.82959032058716,0
+6724,0.0365896127491578,0.3825,38.25,1,96.7531359636374,0.878974743181524,38.25,16.3714204800674,0
+6725,-0.0560154675720696,0.02,2,5,23.4585531379581,0.285714285714286,0.5,10.0485544204712,0
+6726,0.0107695630261151,0.355,35.5,1,96.4296699126664,0.86881335718545,35.5,3.22104662237033,0
+6727,0.0141430303383095,0.3025,30.25,3,89.5893190909275,0.824046920821114,17,2.28393081791145,0
+6728,-0.0229797033614111,0.09,9,2,85.4080655988713,0.926739926739927,8.75,0.416666666666667,0
+6729,0.0082414193097793,0.1625,16.25,1,92.2068700432412,0.926033549068815,16.25,9.20406954838679,0
+6730,-0.00313551218299835,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,51.9241386413574,44.7213592529297
+6731,0.0544079182544374,0.4325,43.25,2,93.8786074712757,0.839807769323188,28,20.4680799803982,0
+6732,0.0815133250271902,0.955,95.5,2,98.9644111968639,0.693063228974831,91.75,0.353403141361257,0
+6733,0.087131099421531,0.9525,95.25,1,99.8703629518046,0.679253535500802,95.25,0.643044619422572,0
+6734,0.0626556135753344,0.65,65,1,98.735013968989,0.906130830155471,65,0.400546675461989,0
+6735,0.0228804565668179,0.2575,25.75,3,88.6119180373195,0.854399854399854,13.5,1.95352624689491,0
+6736,0.0322196057722613,0.295,29.5,7,83.99461994185,0.688473520249221,13.5,3.18218444565595,0
+6737,0.0361849685158677,0.295,29.5,3,92.5279940093444,0.787896864850534,25.25,1.49333223245912,0
+6738,0.0137101867846673,0.07,7,3,77.3984439434929,0.73715651135006,5.75,1.68110956464495,0
+6739,0.031476849731007,0.2525,25.25,3,92.0180421141178,0.8595687281731,23.25,3.64589260592319,0
+6740,0.035276634155889,0.305,30.5,6,91.5307272835382,0.746085484553534,26,5.19262912625172,0
+6741,-0.0134864804893732,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,9.02368927001953,5
+6742,0.0112816473277053,0.07,7,3,74.5215880515101,0.7610513739546,3.75,3.07904297964913,0
+6743,0.00479902127990499,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,1.66666666666667,0
+6744,0.00629023490668033,0.045,4.5,3,62.4104322863097,0.728524335854179,1.75,3.67851130167643,0
+6745,-0.00628109087042276,0.0025,0.25,1,0,NA,0.25,22.3606796264648,22.3606796264648
+6746,-0.0444919400907384,0,0,0,NA,NA,0,NA,NA
+6747,0.00399522025505576,0.1125,11.25,3,81.4817742551216,0.807264640474425,8,5.86779933505588,0
+6748,-0.0235749814569499,0.09,9,5,74.6148068707121,0.725274725274725,6.25,4.3308392100864,0
+6749,-0.0464686638336434,0.0775,7.75,2,79.3751909073719,0.78319783197832,5.25,3.32919133094049,0
+6750,-0.00357674903209954,0.0225,2.25,3,46.3840245365161,0.573742540494459,1.25,3.00789642333984,0
+6751,-0.0016529799687487,0.075,7.5,3,72.4938682090577,0.713182570325428,4.25,0.166666666666667,0
+6752,0.0409761735691427,0.465,46.5,2,94.8513445832795,0.880460769397957,38.75,1.99934213904924,0
+6753,0.0423377480091585,0.4825,48.25,1,97.686149992119,0.962216284781259,48.25,3.76169943933042,0
+6754,0.0245110842222857,0.31,31,3,92.6239356945628,0.851851851851852,24.25,10.5533299292288,0
+6755,0.034867011998258,0.41,41,2,93.6316061134922,0.831630935009541,24,7.65781592159736,0
+6756,0.0316018845365033,0.35,35,3,90.0130431959017,0.735576923076923,14.5,2.40406101771763,0
+6757,0.0126044213213754,0.3475,34.75,3,92.4340220909081,0.806920686638308,24.5,3.75520733620623,0
+6758,-0.0181799456640692,0.33,33,2,92.294870298653,0.808013872545984,16.75,20.0476200797341,5
+6759,-0.0414242782698784,0.04,4,4,53.4990879091673,0.565972222222222,1.25,5.07582521438599,0
+6760,-0.014682787092861,0.0675,6.75,1,85.0052537126447,0.875303946630089,6.75,1.11111111111111,0
+6761,0.0025358077439887,0.185,18.5,2,88.1469902929818,0.848985370457763,10.75,4.40433716129612,0
+6762,-0.0183838455094246,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,61.4453362358941,56.5685424804688
+6763,-0.0346345363087403,0.025,2.5,2,58.1880425789518,0.684418145956607,1.25,41.5303894042969,10
+6764,-0.278753984773357,0,0,0,NA,NA,0,NA,NA
+6765,-0.183159254247876,0.15,15,2,89.5239094849231,0.875565610859729,14.25,0.166666666666667,0
+6766,-0.0864218937110854,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+6767,-0.00392838132242559,0.2525,25.25,6,85.6690886710573,0.682181858497016,10.5,15.3968463746628,0
+6768,0.051192120796768,0.47,47,3,94.04393485009,0.745174582520061,27.75,1.09687874164987,0
+6769,0.0667866448883433,0.64,64,1,98.6842105263158,0.809027777777778,64,1.28374847769737,0
+6770,0.0654867945346632,0.52,52,4,92.3438837995845,0.795434969853575,36.25,0.456730769230769,0
+6771,0.0398901634227423,0.2725,27.25,5,88.5080210500812,0.776719521342474,16.75,0.0458715596330275,0
+6772,0.0739886251624762,0.7725,77.25,1,99.2749460632782,0.826290547940033,77.25,0.194174757281553,0
+6773,0.0580674035310835,0.4125,41.25,3,94.0331616525337,0.882418812989922,36,0.575757575757576,0
+6774,-0.00375420905233113,0.06,6,3,68.0886290408693,0.720044792833147,2.5,0.625,0
+6775,0.0272968822167286,0.325,32.5,3,90.8202423511374,0.837474605407095,16.5,12.9299421457144,0
+6776,0.00855305512937775,0.2425,24.25,1,94.5753035249093,0.969652137627556,24.25,21.1709397896049,0
+6777,0.0206396748944462,0.5025,50.25,1,97.8384672014884,0.956889002654021,50.25,23.6723768699228,5
+6778,-0.102398709720583,0,0,0,NA,NA,0,NA,NA
+6779,-0.044605551538989,0,0,0,NA,NA,0,NA,NA
+6780,0.0331378916784888,0.455,45.5,2,96.6451912226409,0.92921895842975,44.75,45.6995562354287,14.1421356201172
+6781,-0.0264911715555354,0.2775,27.75,1,95.2720210973421,0.951557093425606,27.75,17.1442393225593,0
+6782,-0.0274204591607486,0,0,0,NA,NA,0,NA,NA
+6783,-0.0493676710657019,0.05,5,1,81.7256002368443,0.694397283531409,5,23.4302787780762,7.07106781005859
+6784,-0.0551848268568574,0,0,0,NA,NA,0,NA,NA
+6785,-0.0209953703643805,0,0,0,NA,NA,0,NA,NA
+6786,-0.0047143915610468,0.0225,2.25,2,62.5208930833619,0.658994032395567,2,3.33333333333333,0
+6787,0.0152810746791511,0.2325,23.25,1,94.3478768975745,0.992151014481378,23.25,12.3376541137695,0
+6788,0.0124952885205857,0.1825,18.25,4,87.6962625697636,0.847094801223242,15.75,3.14776830803858,0
+6789,0.0901098635862581,0.7975,79.75,1,99.3695525162542,0.868750256347156,79.75,32.5198379444852,0
+6790,0.0570338017538597,0.64,64,2,96.0257411754766,0.855324074074074,41.25,85.3487666100264,32.0156211853027
+6791,-0.0140211079823894,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,131.361009216309,120.415946960449
+6792,-0.070885835607387,0,0,0,NA,NA,0,NA,NA
+6793,0.00357223837389938,0.1675,16.75,2,90.0242004443591,0.815199815199815,15.5,145.009002343932,108.166542053223
+6794,0.0500583766269847,0.4825,48.25,1,97.686149992119,0.956818611178582,48.25,216.363054344691,161.012420654297
+6795,0.0466309791867934,0.59,59,1,98.4111099483777,0.977877329793706,59,191.273215407032,152.643371582031
+6796,0.0396645346881451,0.2975,29.75,1,95.613700031282,0.947278239093186,29.75,159.572166763434,140.890029907227
+6797,0.00662096085085068,0.1425,14.25,1,91.3207120308943,0.797703337894925,14.25,6.60560393751713,0
+6798,0.05720738635624,0.62,62,2,96.6539149735407,0.807168784029038,55.5,12.7845988119802,0
+6799,0.0436852282649852,0.3975,39.75,2,96.303118572263,0.818109475359518,39,0.473726260587104,0
+6800,0.0441800203838648,0.335,33.5,2,92.4028582526989,0.827437446074202,17,0.335820895522388,0
+6801,0.0157233912155115,0.1575,15.75,5,80.7885450448001,0.730240086323172,10,6.39401490347726,0
+6802,0.042815504050559,0.3775,37.75,3,95.2304881668159,0.831818247720122,35.75,5.3817673740008,0
+6803,0.0118621445860208,0.0725,7.25,3,72.1763404541935,0.678843837816138,3.25,7.09958918341275,0
+6804,0.00851110476376846,0.1,10,4,79.6921587534009,0.718076285240464,6.5,4.97124705314636,0
+6805,0.0102508175859111,0.22,22,3,88.0296491126479,0.844847297076596,16.5,7.30028796195984,0
+6806,-0.00566946989267308,0.175,17.5,1,92.6818041122695,0.931017491993102,17.5,12.0664165224348,0
+6807,-0.0323481461955134,0,0,0,NA,NA,0,NA,NA
+6808,-0.0150681411006462,0,0,0,NA,NA,0,NA,NA
+6809,-0.0247851378562154,0.0075,0.75,1,44.4894453484604,1,0.75,5,5
+6810,-0.00798743196927148,0.01,1,2,34.5233986084855,0.494949494949495,0.75,1.25,0
+6811,0.00244609951821531,0,0,0,NA,NA,0,NA,NA
+6812,0.0061167793844379,0.0425,4.25,4,62.0175290953649,0.5822454308094,2.25,17.9545256670784,7.07106781005859
+6813,-0.00510810826697707,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,13.4408251444499,11.1803398132324
+6814,0.00966075227772308,0.0825,8.25,3,80.2453423091583,0.63669391462307,6.5,2.61252131606593,0
+6815,-0.00257352075568633,0.1425,14.25,6,75.7672956130946,0.654905694056048,6,2.02377787807532,0
+6816,0.0727137205182225,0.6825,68.25,1,98.892341761381,0.778543307086614,68.25,3.29928907457289,0
+6817,0.0915008093602955,0.985,98.5,1,99.9600766120013,0.376114081996433,98.5,0.802571582310091,0
+6818,0.087660158071667,0.9825,98.25,1,99.9533339757335,0.923400995787055,98.25,0.962555397557848,0
+6819,0.0660328432032838,0.785,78.5,1,99.3228142317568,0.795725958516656,78.5,1.98611340856856,0
+6820,0.0919709356618114,0.9625,96.25,1,99.898450616446,0.671232876712328,96.25,3.05307450727983,0
+6821,-0.00471056594395122,0.1675,16.75,1,92.4032163835468,0.917866584533251,16.75,15.1925907704368,0
+6822,-0.0564866886345408,0,0,0,NA,NA,0,NA,NA
+6823,-0.0893939482234055,0,0,0,NA,NA,0,NA,NA
+6824,-0.051652466914602,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,8.36769757952009,5
+6825,-0.0796926582604647,0,0,0,NA,NA,0,NA,NA
+6826,0.0281852702478136,0.5,50,1,97.819928619089,0.924528301886792,50,3.84030437469482,0
+6827,0.0167040248087869,0.315,31.5,2,93.123214314764,0.853377107704077,24,3.62672790648445,0
+6828,0.0313439799790967,0.2175,21.75,7,82.9348852475548,0.769143563846233,15.25,3.89114934548564,0
+6829,-0.0100056958338246,0.0525,5.25,2,72.9754577050405,0.736147757255937,3.25,2.10200645810082,0
+6830,-0.0607750516501983,0,0,0,NA,NA,0,NA,NA
+6831,0.0236676544375587,0.3075,30.75,3,94.0875654318821,0.812209612925159,29.25,0.684082403415587,0
+6832,0.0798910896293819,0.9475,94.75,1,99.8561526638156,0.947016358699252,94.75,0.171503957783641,0
+6833,0.0780384141951799,0.995,99.5,1,99.9867925566623,-0.0582010582010683,99.5,0.0376884422110553,0
+6834,0.0867364214081317,1,100,1,100,NA,100,0.378033008575439,0
+6835,0.0401170669987789,0.2975,29.75,3,89.4905895282835,0.756161855805984,14,1.70827118689273,0
+6836,0.0481561655696714,0.5175,51.75,5,96.4570047011328,0.773904851625059,49.5,2.93118262175777,0
+6837,0.0155658786045387,0.1425,14.25,7,72.3347092035745,0.643005890402808,4.5,4.73876424421344,0
+6838,0.0242841125099312,0.0725,7.25,5,67.1046651855973,0.655904111945862,3.25,4.75994807276232,0
+6839,0.017348496587465,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,4.09879009540264,0
+6840,0.00234404182954677,0.0625,6.25,3,68.9949404657305,0.706666666666667,2.75,17.1010899353027,0
+6841,0.00962583932883717,0.0225,2.25,3,47.6809287864226,0.573742540494459,1.25,30.7867952982585,18.0277557373047
+6842,0.00305773535477783,0,0,0,NA,NA,0,NA,NA
+6843,0.00351331386250422,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,4.90468173556858,0
+6844,0.00222358432612964,0.0275,2.75,3,51.3242173142448,0.657240788346187,1.5,1.81818181818182,0
+6845,0.00539810804889385,0.0425,4.25,2,70.804392268477,0.74934725848564,3,2.05882352941176,0
+6846,0.00183058457152583,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471
+6847,0.00542920206698113,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,31.6413040161133,29.1547584533691
+6848,0.00196481834476913,0,0,0,NA,NA,0,NA,NA
+6849,-0.00546915425838051,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,1.5,0
+6850,0.00341952988979756,0.0925,9.25,4,75.6416590484342,0.620647608725105,4.25,2.89041220175253,0
+6851,-0.00673207190015091,0.005,0.5,2,0,1,0.25,7.07106781005859,7.07106781005859
+6852,-0.0121789198688566,0.1225,12.25,1,90.2255639097744,0.905033238366572,12.25,1.02040816326531,0
+6853,0.0125726523680714,0.175,17.5,5,78.5487152520628,0.724069967972407,6,0.357142857142857,0
+6854,0.00999402470761197,0.1125,11.25,5,75.041094271745,0.71830985915493,6.75,1.55555555555556,0
+6855,0.0377760256422698,0.3825,38.25,2,96.0606841648451,0.844396098376244,37.5,1.20915032679739,0
+6856,0.0422299987765382,0.4375,43.75,2,95.9960636846712,0.90092879256966,42.25,1.62366934640067,0
+6857,0.0503587562756366,0.5175,51.75,2,97.405431814605,0.930018168360137,51.25,2.63768255998547,0
+6858,0.0449733354648924,0.5575,55.75,2,97.4971319178766,0.940243372446762,55,6.02562363799912,0
+6859,0.0228782759397291,0.365,36.5,4,91.4995274861553,0.823055825886933,28.75,6.12717440356947,0
+6860,0.0124581811687494,0.215,21.5,3,88.2091729497606,0.725240414637192,12.5,10.6123244263405,0
+6861,-0.00207390905266948,0.085,8.5,4,74.4690287440167,0.60967993754879,4,5.55614650950712,0
+6862,0.00623679217811514,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,7.60734394618443,5
+6863,-0.0582718282709857,0,0,0,NA,NA,0,NA,NA
+6864,-0.419970758128911,0,0,0,NA,NA,0,NA,NA
+6865,-0.151901943311677,0,0,0,NA,NA,0,NA,NA
+6866,-0.0425695077091223,0.14,14,1,91.1967767414513,0.892112203308559,14,8.21576016289847,0
+6867,0.116563284978802,0.905,90.5,1,99.7306491449722,0.953899346907414,90.5,1.57310666036869,0
+6868,0.0911576364618577,0.6325,63.25,3,97.5386080517922,0.879445449065702,61.25,2.40357399740709,0
+6869,0.0523528149589038,0.4925,49.25,3,93.2248557091816,0.838045752075039,36.5,2.04152603923972,0
+6870,0.0771598239854939,0.625,62.5,3,95.6997947292367,0.783475783475783,49.75,1.51798989868164,0
+6871,0.0147524045001774,0.2925,29.25,5,89.9794823340984,0.846656443762917,25,0.0427350427350427,0
+6872,0.0528106396400835,0.5025,50.25,2,96.9070994149881,0.827556010616083,47.75,0,0
+6873,0.0794621384915445,0.7075,70.75,1,99.0059126497077,0.85862091125249,70.75,0.527004012791934,0
+6874,0.0336642260827921,0.3275,32.75,4,89.2990361400988,0.76357499494486,21,0.99236641221374,0
+6875,0.0895021281378286,0.6525,65.25,2,96.8292232243258,0.917611922731753,59.75,23.5021420986716,0
+6876,0.0505852625498665,0.4525,45.25,1,97.4390089868719,0.950930280106318,45.25,21.815818080586,0
+6877,-0.0244042800405032,0.0975,9.75,1,88.4075627573592,0.914766673769444,9.75,21.4476554577167,10
+6878,-0.0703392535168678,0,0,0,NA,NA,0,NA,NA
+6879,-0.0201597740661236,0,0,0,NA,NA,0,NA,NA
+6880,0.0287664676837903,0.3975,39.75,1,96.9152464661248,0.98863184220997,39.75,22.0777178830321,0
+6881,-0.069384121557232,0.0075,0.75,1,44.4894453484604,1,0.75,5.6903559366862,5
+6882,-0.0412814696013811,0,0,0,NA,NA,0,NA,NA
+6883,-0.134010349484088,0,0,0,NA,NA,0,NA,NA
+6884,-0.0495717055119167,0,0,0,NA,NA,0,NA,NA
+6885,-0.0317736922354561,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,55.105510075887,51.4781532287598
+6886,-0.0145369152350395,0.0875,8.75,1,87.4704367425575,0.943316013226264,8.75,45.6767786298479,35.355339050293
+6887,0.128386841759639,0.6675,66.75,3,98.0620782379474,0.921960590097999,66,28.1294794332669,0
+6888,-0.0137714281812441,0.055,5.5,3,70.4993035660702,0.719887955182073,3.75,7.82939043912021,0
+6889,6.74485381750856e-06,0.11,11,2,87.1763607281996,0.863346492559976,10.5,10.2045875462619,0
+6890,-0.0152880184132755,0.0775,7.75,2,82.792198480001,0.89159891598916,7.25,16.5098452414236,5
+6891,-0.0201226495599258,0.13,13,2,84.6565442134301,0.81919152783159,6.75,9.77987872637235,0
+6892,-0.0611152803539881,0.0475,4.75,1,81.114133276783,0.746583401212779,4.75,48.553820559853,25.4950981140137
+6893,0.143378350078128,0.82,82,1,99.4509723118502,0.811523963381799,82,90.1811343867604,29.1547584533691
+6894,-0.0584449653394404,0.205,20.5,1,93.6387867289635,0.921925829538061,20.5,134.025775723341,99.6242904663086
+6895,0.0826758602751943,0.635,63.5,1,98.6583599459141,0.948198457465178,63.5,122.534953335139,61.8465843200684
+6896,-0.0224851207769825,0,0,0,NA,NA,0,NA,NA
+6897,0.0287834429683608,0.39,39,2,95.9061039283818,0.925743988119038,38.25,13.3978055318197,0
+6898,0.0171650708707239,0.2475,24.75,4,85.6891467349417,0.738698719623726,9.75,17.502758796769,0
+6899,0.0298792977811536,0.3075,30.75,4,88.1108071310034,0.792783021158796,12.5,0.382691608211858,0
+6900,0.0549657128452236,0.4825,48.25,1,97.686149992119,0.875853507138423,48.25,0.207253886010363,0
+6901,0.0228197194752647,0.125,12.5,5,75.543721857919,0.704201680672269,6.25,6.03869705200195,0
+6902,0.0300603046375181,0.205,20.5,11,78.8537850402266,0.574929516373889,11.75,3.75870751171577,0
+6903,0.0271340659342241,0.1975,19.75,5,82.7731248562027,0.777481085892301,12.75,4.7376098874249,0
+6904,0.0460279024253214,0.3675,36.75,1,96.5811989595545,0.935348310974624,36.75,12.0156604221889,0
+6905,-0.111534256917876,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,5.1733147757394,0
+6906,-0.0362487783601318,0,0,0,NA,NA,0,NA,NA
+6907,-0.040032474566251,0,0,0,NA,NA,0,NA,NA
+6908,-0.0343762519261509,0,0,0,NA,NA,0,NA,NA
+6909,-0.0363181439731488,0.01,1,1,52.6315789473684,1,1,16.7924728393555,14.1421356201172
+6910,-0.0083925173139869,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+6911,0.00577272889244341,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,2.22222222222222,0
+6912,0.00434926191083605,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,5.41321126152487,0
+6913,0.0115362051929742,0.0375,3.75,3,59.1088832689987,0.574970484061393,1.5,9.8464714050293,0
+6914,-0.000736053409855231,0.0825,8.25,7,59.7117715744212,0.495408214754264,2.5,3.46862457737778,0
+6915,0.0128750719790605,0.24,24,6,82.4875802066505,0.739902080783354,9.25,3.27601536115011,0
+6916,0.0711562422501447,0.7225,72.25,1,99.0712074303406,0.807896131425543,72.25,2.64777907533217,0
+6917,0.0781648779549869,0.89,89,2,99.4609068255905,0.824656056110062,88.75,2.15359018090066,0
+6918,0.0715719645656645,0.9025,90.25,1,99.7229916897507,0.625131204078572,90.25,0.676294004487859,0
+6919,0.0673795396555215,0.84,84,2,97.5565579572522,0.744094488188977,68.75,1.28443018595378,0
+6920,0.0676829521593754,0.84,84,1,99.5205818358949,0.822834645669292,84,14.4253250076657,0
+6921,-0.0351127297897074,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,31.3174991607666,22.3606796264648
+6922,-0.0806803214495812,0,0,0,NA,NA,0,NA,NA
+6923,-0.0471116895364685,0.0525,5.25,1,82.2928536593692,0.901055408970976,5.25,36.952402024042,26.9258232116699
+6924,-0.0857373538124375,0,0,0,NA,NA,0,NA,NA
+6925,-0.0182730237332726,0.2125,21.25,1,93.8457653779655,0.957952275833071,21.25,6.88723685320686,0
+6926,0.0553807300466633,0.6125,61.25,2,96.5481941096129,0.814058318072968,49.75,2.44313927475287,0
+6927,0.0755318489839556,0.775,77.5,1,99.2846122710835,0.931506849315068,77.5,1.34214844242219,0
+6928,-0.0199781199558038,0.2725,27.25,2,92.2743878462217,0.916269820503428,24.5,2.03099803749574,0
+6929,-0.0794018453088938,0.06,6,5,62.2199855658663,0.608062709966405,3.25,3.43306430180868,0
+6930,-0.154490593709052,0,0,0,NA,NA,0,NA,NA
+6931,-0.0477852157503003,0,0,0,NA,NA,0,NA,NA
+6932,-0.0243316302660605,0.0675,6.75,1,85.0052537126447,0.800486314608143,6.75,0.555555555555556,0
+6933,0.0234684294486146,0.2775,27.75,4,88.3302143864194,0.833910034602076,19.75,1.83006592484208,0
+6934,0.0416876213482465,0.4575,45.75,3,95.0670664410625,0.781855861260328,38.25,1.75215820145737,0
+6935,0.0284046089297408,0.18,18,5,85.2925179364795,0.865565584789706,15.5,4.55340366893344,0
+6936,0.0361123399899225,0.365,36.5,5,90.0928538117789,0.76407443451591,19.25,5.87688677278283,0
+6937,0.0279142893639801,0.195,19.5,5,80.9634577179305,0.729948690251148,8.5,3.75217361939259,0
+6938,0.0265057917838749,0.1575,15.75,2,89.7461782413062,0.902886431076342,15,1.97562874688043,0
+6939,0.00991568847419103,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,9.41421356201172,5
+6940,0.0021669773685062,0,0,0,NA,NA,0,NA,NA
+6941,0.0154335567896851,0.06,6,2,75.214492285537,0.804031354983203,3.5,22.7273000876109,10
+6942,0.00294817111685916,0,0,0,NA,NA,0,NA,NA
+6943,-0.00449600372725399,0.005,0.5,1,30.8308651382582,1,0.5,28.0402908325195,26.9258232116699
+6944,0.00228146060720064,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,6.27085304260254,0
+6945,-0.0241513199737437,0.0375,3.75,4,51.8962515582823,0.574970484061393,1.25,7.45501937866211,0
+6946,0.0329066962682555,0.24,24,5,90.212987841252,0.694002447980416,20,11.7130764722824,0
+6947,0.00756963156232814,0.0525,5.25,3,66.7244318786597,0.670184696569921,2.75,11.8683939434233,0
+6948,-0.00824534247882639,0.02,2,2,53.5230890372948,0.591836734693878,1.25,9.53489542007446,0
+6949,-0.0124772283619495,0.0025,0.25,1,0,NA,0.25,0,0
+6950,-0.00672242083332094,0.03,3,4,50.0489292668278,0.514857489387508,1.25,17.2530585924784,5
+6951,-0.0184665858643575,0,0,0,NA,NA,0,NA,NA
+6952,-0.0378072452791093,0,0,0,NA,NA,0,NA,NA
+6953,-0.0503136742141942,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,0,0
+6954,0.00801669267676971,0.1325,13.25,2,86.4889408264244,0.873325521740507,10.75,2.05928557773806,0
+6955,0.0299336025235425,0.2425,24.25,2,93.6094290709772,0.886195516103334,23.75,1.36733615521303,0
+6956,0.0162602325067564,0.0925,9.25,5,71.9225286876423,0.602583209140586,4,11.5153033797805,0
+6957,-0.00424668750683395,0.025,2.5,2,59.7635627407876,0.684418145956607,1.75,2,0
+6958,0.042251269795197,0.435,43.5,1,97.2831784886431,0.823560223857966,43.5,1.49425287356322,0
+6959,0.0243323495859659,0.415,41.5,3,91.4325655911851,0.754203675772303,16.75,7.25299451437341,0
+6960,0.0324173524846992,0.4625,46.25,4,93.50468784024,0.858561131510948,39.75,5.47005000758815,0
+6961,0.04050974413738,0.6025,60.25,1,98.4825618273597,0.955276030747729,60.25,4.17985300404402,0
+6962,0.0177347263475531,0.3475,34.75,3,94.8965298314729,0.849156786436178,33.25,2.39187224134267,0
+6963,-0.0205923826482785,0.15,15,2,90.5763918507171,0.886877828054299,14.75,5.07360801696777,0
+6964,-0.0200962450326551,0.18,18,3,89.5208289969825,0.91357787593624,17,15.4361744456821,0
+6965,0.0214811147381261,0.3725,37.25,1,96.6396639945364,0.953300351706726,37.25,23.6824493920243,5
+6966,0.0581909970853303,0.6,60,1,98.4684502698115,0.938752783964365,60,35.2369996945063,0
+6967,0.00554309160688717,0.335,33.5,3,90.941922603404,0.833600394428695,26.75,31.995178550037,0
+6968,-0.000331803511071485,0.22,22,3,90.7079004856936,0.893842887473461,20.25,3.22001101753928,0
+6969,0.0742455863417126,0.5775,57.75,1,98.3373505793708,0.917626546218372,57.75,2.13976000500964,0
+6970,0.0596393041110059,0.47,47,4,94.1329600646398,0.853610930383865,39,0.804325550160509,0
+6971,0.00861515718048395,0.1575,15.75,1,92.0012465610797,0.924467224170488,15.75,1.19047619047619,0
+6972,-0.0219178273505531,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+6973,-0.0535667513426097,0.0475,4.75,1,81.114133276783,0.963797628744683,4.75,0.526315789473684,0
+6974,-0.0020353446111767,0.1725,17.25,3,83.3356056440176,0.820229207760106,8.25,1.08695652173913,0
+6975,0.102271736092516,0.785,78.5,1,99.3228142317568,0.976429918290384,78.5,32.9428561629763,5
+6976,0.040150570221831,0.455,45.5,2,97.014829253441,0.950997740451365,45.25,34.8946013712621,0
+6977,-0.0354142245891853,0,0,0,NA,NA,0,NA,NA
+6978,-0.0371779663139023,0,0,0,NA,NA,0,NA,NA
+6979,-0.0428034485042542,0,0,0,NA,NA,0,NA,NA
+6980,-0.0476155123156786,0,0,0,NA,NA,0,NA,NA
+6981,-0.0589852373930626,0,0,0,NA,NA,0,NA,NA
+6982,0.00151329651977903,0,0,0,NA,NA,0,NA,NA
+6983,-0.117305376525751,0,0,0,NA,NA,0,NA,NA
+6984,-0.0468671749427449,0,0,0,NA,NA,0,NA,NA
+6985,-0.00859231633489344,0.17,17,1,92.4981249980877,0.858256555634302,17,96.1303384444293,58.5234985351562
+6986,0.109546223969664,0.585,58.5,3,97.5098641894123,0.933831435582145,57.75,71.4281385046804,31.6227760314941
+6987,0.140433413327628,0.715,71.5,1,99.0388168843254,0.960868714537272,71.5,30.668500039961,0
+6988,0.0263770248315268,0.34,34,4,95.1256712509248,0.810606060606061,33.25,37.5280933941112,0
+6989,0.0639258744942345,0.5825,58.25,2,97.559825942534,0.922912795099456,56.75,11.419316091251,0
+6990,-0.00728428937767603,0.06,6,4,71.0360227171017,0.748040313549832,4.75,4.38649996121724,0
+6991,-0.0201146612297453,0.03,3,2,63.3223247384763,0.636143117040631,2,4.53597895304362,0
+6992,-0.0212244461235468,0.115,11.5,3,80.0767790431256,0.826162538026945,6.75,5.72502239890721,0
+6993,0.0408152654500918,0.2325,23.25,3,88.4793397771994,0.897963188257918,18.25,36.1806496035668,0
+6994,-0.0414166180327447,0.0925,9.25,4,72.333390586694,0.674840807478661,3.5,31.179090448328,5
+6995,0.0371209173946451,0.25,25,1,94.7368421052632,0.955555555555556,25,41.6401853942871,10
+6996,0.011263881633713,0.13,13,3,80.3981835992426,0.70295751000904,5,8.16781044006348,0
+6997,0.00917752730543725,0.2825,28.25,3,91.9103644948574,0.815535970485755,21,19.6629343286025,0
+6998,0.0507718449073946,0.4675,46.75,4,93.2759165527071,0.777470216288095,27.5,5.4280848273619,0
+6999,0.0377923587085388,0.3525,35.25,3,91.877461782685,0.832390530064949,28,0.640022237250145,0
+7000,0.0463121270420743,0.3275,32.75,5,88.4265622451937,0.757353284285514,15.75,4.31442450021059,0
+7001,0.0207395322997399,0.14,14,4,84.1824331774954,0.784224406617118,11.5,9.09421781131199,0
+7002,0.0124753749331671,0.0575,5.75,3,69.2190063129372,0.587385794282346,3,3.67237439362899,0
+7003,0.00865007213629724,0.0375,3.75,5,50.0195455599699,0.433293978748524,1.75,5.27614237467448,0
+7004,-0.0562832637521205,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0
+7005,-0.13492546499474,0.0275,2.75,1,73.5251216233933,1,2.75,78.9187753850763,69.4622192382812
+7006,-0.0511446291992525,0.005,0.5,1,30.8308651382582,1,0.5,73.873420715332,71.589111328125
+7007,-0.0434010001893694,0,0,0,NA,NA,0,NA,NA
+7008,-0.0478037891728309,0,0,0,NA,NA,0,NA,NA
+7009,-0.037419839258655,0.115,11.5,2,83.3142722045184,0.869621903520209,5.75,13.469004838363,0
+7010,0.0334814036243552,0.405,40.5,1,96.992903144017,0.943601601714511,40.5,36.5990683944137,0
+7011,-0.00355849439351005,0.025,2.5,3,51.4230928509252,0.526627218934911,1.25,4.3251407623291,0
+7012,-0.00319398379017002,0.175,17.5,3,84.8530686141576,0.793052475979305,8.5,8.74712172916957,0
+7013,0.0123902260079922,0.0925,9.25,7,64.8507618270782,0.656776407894143,4,2.60035684946421,0
+7014,0.0110102460013786,0.24,24,4,89.8025822715402,0.770501835985312,19.5,5.25421973069509,0
+7015,0.0211152560250048,0.3375,33.75,3,93.4973744367183,0.877281791685841,31.25,2.8785684938784,0
+7016,0.0972241574269719,0.9375,93.75,1,99.8273917947966,0.932489451476794,93.75,2.60485474650065,0
+7017,-0.0235120187095163,0.0875,8.75,2,85.26105520347,0.905526688710439,8.5,2.46323438371931,0
+7018,0.00478766646960594,0.3525,35.25,1,96.3984008308788,0.898237107539433,35.25,0.667674720710051,0
+7019,0.06819436915408,0.7425,74.25,1,99.1551699664667,0.777689007763516,74.25,0.353535353535354,0
+7020,0.0695902813426801,0.6,60,1,98.4684502698115,0.933184855233853,60,2.80397513707479,0
+7021,-0.0196793534117387,0,0,0,NA,NA,0,NA,NA
+7022,-0.0548137607936678,0.025,2.5,1,71.9760246298065,0.684418145956607,2.5,3.91421356201172,0
+7023,-0.0370765171234598,0.035,3.5,2,69.0285060247284,0.844559585492228,3,33.6535323006766,5
+7024,-0.176460437928326,0,0,0,NA,NA,0,NA,NA
+7025,0.0085484297509538,0.49,49,1,97.7443609022556,0.854557207498384,49,2.51667355517952,0
+7026,0.0587490013148636,0.62,62,2,96.7001453313582,0.903584392014519,56.25,0.643002463925269,0
+7027,0.0712439450650709,0.925,92.5,1,99.7907868956838,0.980979553019496,92.5,0.0405405405405405,0
+7028,0.0178682552428108,0.3075,30.75,5,85.5244240229553,0.766880898803646,11.75,26.5142776520272,0
+7029,-0.0791355972376914,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,58.3975179921026,45
+7030,-0.0411701077294128,0.0075,0.75,1,44.4894453484604,1,0.75,58.4782587687174,55.2268028259277
+7031,-0.0178490851402603,0.1375,13.75,2,87.9038169865041,0.890160183066361,12.5,6.17047046314586,0
+7032,-0.0286717254814721,0.01,1,1,52.6315789473684,0.747474747474748,1,9.34838581085205,5
+7033,0.0018600418895403,0.16,16,3,84.6858947797758,0.840561224489796,10.75,20.5299050211906,0
+7034,-0.0267264243675584,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+7035,0.000397933459616979,0.14,14,2,85.6208660773714,0.832174538479981,8.5,8.97200015613011,0
+7036,0.0207035098705819,0.2275,22.75,4,85.9401717102424,0.784250269687163,13.5,7.23247098398733,0
+7037,0.027723512965822,0.1875,18.75,3,91.1908757415167,0.832167832167832,18,2.19329966227214,0
+7038,0.00860653803022387,0.0125,1.25,1,58.1880425789518,1,1.25,16.0749645233154,11.1803398132324
+7039,0.0132034379844845,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,14.0101036495633,5
+7040,-0.0156944645499061,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+7041,0.00173270319588482,0,0,0,NA,NA,0,NA,NA
+7042,-0.00117353407214978,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0
+7043,-0.0118613588188646,0,0,0,NA,NA,0,NA,NA
+7044,0.0101381708628696,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15
+7045,-0.00181637855532017,0.01,1,3,15.8692205350002,0.242424242424242,0.5,6.76776695251465,5
+7046,-0.000617850242670102,0.0475,4.75,5,55.3390987119038,0.529369173680876,2,14.3675257030286,0
+7047,0.0153634341975976,0.0725,7.25,4,69.7206743499775,0.72472328955669,4,13.5045039735991,0
+7048,-0.0310126641851366,0.0025,0.25,1,0,NA,0.25,15,15
+7049,-0.0416312769743399,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+7050,-0.0249871305044508,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+7051,-0.0070595371867239,0,0,0,NA,NA,0,NA,NA
+7052,-0.064584794387556,0,0,0,NA,NA,0,NA,NA
+7053,-0.00588661385656451,0.1325,13.25,3,83.2086894529661,0.733983595655066,8,2.57006044207879,0
+7054,0.016780988638061,0.23,23,2,93.3205906001953,0.873297434273044,22.5,1.48057829815408,0
+7055,0.00576260658057436,0.12,12,3,83.3575142922608,0.847560975609756,10,49.3466418584188,31.6227760314941
+7056,-0.0130194890766506,0.0025,0.25,1,0,NA,0.25,30,30
+7057,-0.0174284409614484,0,0,0,NA,NA,0,NA,NA
+7058,0.0140140740008792,0.2675,26.75,1,95.0869843258351,0.936338396788626,26.75,1.80639505831995,0
+7059,-0.0394171320915484,0.26,26,2,90.2539652653609,0.869923399335164,19.5,24.5686161334698,0
+7060,-0.0270990064297803,0.415,41.5,1,97.093152360986,0.905033238366572,41.5,52.5720474748726,20
+7061,0.0718257503323548,0.76,76,2,98.9790226327113,0.890924956369983,75.75,27.191886161503,0
+7062,0.072859556057374,0.7125,71.25,1,99.0279065499043,0.753406878650227,71.25,3.38469074985437,0
+7063,0.0664867036189389,0.595,59.5,2,97.9696367411314,0.922319323068387,59,3.34498827798026,0
+7064,0.0838323590475193,0.665,66.5,1,98.8090595843688,0.80259025513714,66.5,2.1071344533361,0
+7065,-0.00503644431195426,0.2125,21.25,1,93.8457653779655,0.932723641332913,21.25,7.24239400975844,0
+7066,-0.0443703776349503,0,0,0,NA,NA,0,NA,NA
+7067,-0.0532159177916765,0,0,0,NA,NA,0,NA,NA
+7068,-0.0231227313855618,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0
+7069,0.00237264456651246,0.21,21,1,93.778005777053,0.804604536572934,21,2.48364559809367,0
+7070,-0.000733604519341498,0.1725,17.25,2,90.8478139706653,0.940076402586702,16.75,1.10453918014748,0
+7071,-0.110847074239664,0.03,3,2,67.1088255022683,0.636143117040631,2.5,0.833333333333333,0
+7072,-0.207936584819981,0,0,0,NA,NA,0,NA,NA
+7073,-0.195670925267041,0,0,0,NA,NA,0,NA,NA
+7074,-0.00259944588706276,0.0925,9.25,2,86.5650969529086,0.747098405816737,9,0.27027027027027,0
+7075,0.0150111155637296,0.19,19,2,88.048111784814,0.769670167680118,11.5,16.236887831437,0
+7076,0.0202951140518417,0.185,18.5,1,93.0265643427559,0.962246342614441,18.5,59.238689989657,32.0156211853027
+7077,-0.021751431617522,0,0,0,NA,NA,0,NA,NA
+7078,-0.0312043974192511,0,0,0,NA,NA,0,NA,NA
+7079,-0.0150051960933714,0,0,0,NA,NA,0,NA,NA
+7080,-0.0412122058948444,0,0,0,NA,NA,0,NA,NA
+7081,-0.0193208443921321,0.0325,3.25,1,76.0684107249879,1,3.25,17.3416601327749,7.07106781005859
+7082,-0.0325428370828558,0,0,0,NA,NA,0,NA,NA
+7083,-0.0826313265874342,0,0,0,NA,NA,0,NA,NA
+7084,0.0190955084421512,0.19,19,5,80.3865770958545,0.778883360972913,8,29.0851520990071,0
+7085,-0.000787486944240641,0.055,5.5,3,68.9604202318046,0.719887955182073,2.75,76.9096646742387,38.0788650512695
+7086,0.135257935157169,0.75,75,1,99.1857866401092,0.978761061946903,75,50.658791624705,0
+7087,0.0177692002069989,0.19,19,3,87.130951059073,0.852588907315275,12.5,28.6425638198853,0
+7088,0.0888592197233811,0.7125,71.25,3,97.6909909587229,0.844256975989617,68.75,37.3249810335929,0
+7089,0.0668586126169794,0.5975,59.75,2,95.7020974817923,0.855489321494574,35.5,2.95940522868264,0
+7090,0.0199457684956724,0.2425,24.25,2,91.624409861864,0.85584765373089,20.25,10.930587630911,0
+7091,-0.0250528759279211,0.02,2,1,68.0470115164975,0.897959183673469,2,4.26776695251465,0
+7092,-0.0392943898715748,0.0175,1.75,1,65.4774238937655,1,1.75,0,0
+7093,-0.0315145029922496,0,0,0,NA,NA,0,NA,NA
+7094,0.00130479029798153,0.17,17,2,88.5011656797448,0.868381087374709,14.25,16.828221096712,0
+7095,-0.00882439036642609,0,0,0,NA,NA,0,NA,NA
+7096,-0.00666930217594199,0.135,13.5,2,84.6351904770467,0.788675492572565,9.25,11.4098320007324,0
+7097,0.0214399472700461,0.3825,38.25,2,96.3439917940694,0.896264065584163,38,12.5381546519161,0
+7098,0.068056071279716,0.76,76,2,98.242839030327,0.876381617219313,73.25,0.0328947368421053,0
+7099,0.0501570604204358,0.4275,42.75,4,94.9017715264264,0.866916198793928,40,0.194452676159597,0
+7100,0.0478980855855116,0.445,44.5,1,97.3733506421488,0.879514773131795,44.5,31.2750289895561,0
+7101,-0.00287388938460936,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172
+7102,0.0165826854578972,0.125,12.5,4,85.4203925199903,0.74453781512605,11.25,5.89859024047852,0
+7103,0.00989003474201127,0.0425,4.25,3,65.2508046911757,0.70757180156658,2.75,5.86789546293371,0
+7104,0.000776754431976769,0.035,3.5,3,58.1768169794222,0.689119170984456,1.75,14.00751549857,0
+7105,-0.0222143811843443,0.085,8.5,1,87.210675248157,0.960967993754879,8.5,20.5307893753052,5
+7106,-0.0972852189419791,0,0,0,NA,NA,0,NA,NA
+7107,-0.00746506814284658,0.27,27,2,94.3850957406463,0.950825430277485,26.75,40.1059823919226,14.1421356201172
+7108,-0.00993754307640074,0.0025,0.25,1,0,NA,0.25,76.1577301025391,76.1577301025391
+7109,0.0232608688952708,0.2525,25.25,3,92.0381868213492,0.896524326022284,23.75,8.95033910014842,0
+7110,-0.0167454013158203,0.04,4,1,78.9473684210526,0.956597222222222,4,32.1939613819122,20.6155281066895
+7111,-0.0836589341226499,0,0,0,NA,NA,0,NA,NA
+7112,-0.080123769307902,0.1175,11.75,1,89.9089482633795,0.90084985835694,11.75,9.38017305414727,0
+7113,-0.00652643867695588,0.265,26.5,2,93.9511506062603,0.786301955337109,25.5,11.4238293485821,0
+7114,0.0244125015361351,0.365,36.5,4,89.6944350252285,0.752278156241706,20.75,1.89774703979492,0
+7115,0.0197344248594891,0.34,34,3,92.1511638733668,0.761730205278592,18.25,3.48801474010243,0
+7116,0.0397503669689468,0.5075,50.75,1,97.8751325648042,0.924598419259718,50.75,1.63756850670124,0
+7117,-0.0465361741252855,0,0,0,NA,NA,0,NA,NA
+7118,-0.00602671195472794,0.0275,2.75,1,73.5251216233933,1,2.75,101.743745283647,93.0053787231445
+7119,-0.0187896169992564,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+7120,-0.0353587677977293,0.03,3,1,74.8763016215986,0.878714372346877,3,4.1935396194458,0
+7121,-0.0229606065127155,0,0,0,NA,NA,0,NA,NA
+7122,-0.0209850182254377,0.03,3,1,74.8763016215986,0.818071558520315,3,4.33925565083822,0
+7123,-0.118431530389935,0,0,0,NA,NA,0,NA,NA
+7124,-0.116637780883093,0.12,12,4,75.6191035399063,0.73669623059867,4,2.80134606361389,0
+7125,0.045303525961499,0.4775,47.75,3,96.2657033280637,0.76211715730003,44,3.176726715727,0
+7126,0.0821373357670382,0.9425,94.25,1,99.8418294460568,0.65947096381879,94.25,1.3489257397639,0
+7127,0.00504872570600128,0.4575,45.75,1,97.4818813583729,0.972731982657541,45.75,0,0
+7128,-0.0929322731882166,0.04,4,2,68.3051040056613,0.739583333333333,2.25,52.1716923713684,22.3606796264648
+7129,-0.092079551119823,0,0,0,NA,NA,0,NA,NA
+7130,-0.0556439535808749,0,0,0,NA,NA,0,NA,NA
+7131,-0.0197405964768288,0.0725,7.25,4,70.8844452019086,0.655904111945862,4.5,8.44895198427398,0
+7132,-0.0908522363449447,0,0,0,NA,NA,0,NA,NA
+7133,-0.0292756790519343,0.0025,0.25,1,0,NA,0.25,0,0
+7134,0.028702099997372,0.2375,23.75,3,89.292186265462,0.845708775313404,17.75,7.53572528236791,0
+7135,0.0376742172798185,0.425,42.5,1,97.1898422226593,0.877760800111126,42.5,32.2393388411578,0
+7136,-0.0114083649509666,0.1175,11.75,3,86.5864929725291,0.815864022662889,11,1.45215760900619,0
+7137,0.00984636116676484,0.065,6.5,5,66.5633973073643,0.713055954088953,4.5,5.98888118450458,0
+7138,0.0102519238343984,0.0275,2.75,4,48.5225755827122,0.588688946015424,1.75,9.09324264526367,0
+7139,0.00178767113994127,0.0275,2.75,3,53.4089368972002,0.657240788346187,1.75,35.3602870594371,0
+7140,-0.002160978925167,0.0475,4.75,2,73.3861877524951,0.855190514978731,4,15.9583885795192,7.07106781005859
+7141,-0.0110124493103467,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+7142,0.00263830619291184,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,7.94840876261393,5
+7143,-0.0187029958962708,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+7144,0.00381160899680253,0.01,1,2,30.8308651382582,0.494949494949495,0.5,12.8033008575439,0
+7145,-0.012079959455975,0.0025,0.25,1,0,NA,0.25,15,15
+7146,-0.00395346272111055,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,2.43872397286551,0
+7147,-0.001412044406934,0.0625,6.25,3,70.315121003546,0.68,3,11.8717422485352,0
+7148,-0.0121529504661612,0.005,0.5,1,30.8308651382582,1,0.5,18.2134580612183,15.8113880157471
+7149,-0.0359309737512376,0.02,2,1,68.0470115164975,0.693877551020408,2,8.93785190582275,5
+7150,-0.0263640883764401,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,7.26831550598145,0
+7151,-0.00217851966083799,0,0,0,NA,NA,0,NA,NA
+7152,-0.0378257017117721,0.09,9,2,84.7583018895778,0.871794871794872,8.5,2.22222222222222,0
+7153,-0.00747870239736585,0.015,1.5,3,37.593984962406,0.419869470630892,1,8.09016990661621,0
+7154,5.60071987274569e-05,0,0,0,NA,NA,0,NA,NA
+7155,-0.00642022260498379,0,0,0,NA,NA,0,NA,NA
+7156,-0.0133437593544841,0,0,0,NA,NA,0,NA,NA
+7157,-0.0113203241518568,0,0,0,NA,NA,0,NA,NA
+7158,0.0143511860173567,0.27,27,1,95.1342058036908,0.929750614682122,27,2.27180869491012,0
+7159,-0.119373612119816,0,0,0,NA,NA,0,NA,NA
+7160,-0.149846259639889,0.035,3.5,1,77.1303955881659,0.844559585492228,3.5,49.3678834097726,40.3112869262695
+7161,0.11246509277029,0.965,96.5,1,99.9054042256917,0.960967993754881,96.5,41.6845764842058,0
+7162,0.0841234570741653,0.865,86.5,1,99.6041754676792,0.694189602446483,86.5,1.77600426205321,0
+7163,0.108554035769776,0.98,98,1,99.9465655549884,0.529569892473119,98,2.38428545971306,0
+7164,0.0933985746838152,0.8975,89.75,1,99.7075809055868,0.540889526542324,89.75,2.49277491024942,0
+7165,0.0658457770163091,0.75,75,1,99.1857866401092,0.879646017699115,75,23.7926175435384,0
+7166,-0.00626380436820909,0.1975,19.75,2,88.5373488001787,0.857587894971072,10.5,1.67586763599251,0
+7167,-0.0414611042715205,0,0,0,NA,NA,0,NA,NA
+7168,-0.0361672041982456,0.0675,6.75,2,81.1601132340289,0.850364735956107,6.25,2.48411362259476,0
+7169,0.05440671339049,0.5075,50.75,1,97.8751325648042,0.779181084974889,50.75,6.3201528276716,0
+7170,0.0378145381459763,0.29,29,3,90.9521346159807,0.879275653923541,24.25,12.8495367642107,0
+7171,-0.0229387133114506,0.19,19,3,91.1122756821561,0.861802100608071,18.25,4.35128023749904,0
+7172,-0.0323780093858659,0.0225,2.25,4,43.5901290689642,0.317988064791134,1.25,0.555555555555556,0
+7173,-0.0648783121392626,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,0,0
+7174,0.000298993112573953,0.0875,8.75,5,68.6656259395885,0.641001417099669,3,0.571428571428571,0
+7175,0.0315130779074389,0.3475,34.75,3,90.7423059322183,0.818988143723414,18.75,0.0359712230215827,0
+7176,-0.0143339117979849,0.065,6.5,2,76.425667169829,0.791313421155602,4.25,0.192307692307692,0
+7177,0.00583846668593651,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,30.5125164455838,25.4950981140137
+7178,0.00962562029064429,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,34.1492449442546,29.1547584533691
+7179,-0.116057747188461,0,0,0,NA,NA,0,NA,NA
+7180,-0.0441949168905558,0.1025,10.25,1,88.8238145380415,0.951556255298535,10.25,68.9476325802687,54.0832710266113
+7181,0.00136459334258689,0.18,18,2,88.1832447963125,0.855963126560399,14.5,60.2759487893846,40.3112869262695
+7182,-0.0112102215248615,0.165,16.5,1,92.3061588442808,0.916688362405623,16.5,65.8812015995835,50
+7183,0.0036189006427594,0.28,28,2,92.2027067416096,0.876237623762376,23.75,35.6244517053877,5
+7184,0.0525893947822624,0.525,52.5,3,94.122880183165,0.833086552698883,38,56.9116976510911,15
+7185,0.0402485602436354,0.265,26.5,2,91.8380756375907,0.935890586601133,22.5,60.0665258011728,31.6227760314941
+7186,-0.0274212456608257,0,0,0,NA,NA,0,NA,NA
+7187,-0.0452820010957839,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,40.5239186968122,35
+7188,0.0807488372846274,0.7875,78.75,1,99.3322508440104,0.873242226183403,78.75,24.7258982401046,0
+7189,0.0493195102480968,0.51,51,3,94.9161884411065,0.773840934790803,39.5,2.72993124232573,0
+7190,-0.00166598503738214,0.1725,17.25,2,89.8900201319662,0.920101870115603,16,0,0
+7191,-0.147253609643667,0,0,0,NA,NA,0,NA,NA
+7192,-0.199951030217926,0,0,0,NA,NA,0,NA,NA
+7193,-0.12367882927254,0,0,0,NA,NA,0,NA,NA
+7194,-0.0842646925718509,0.0025,0.25,1,0,NA,0.25,10,10
+7195,-0.034020502255903,0,0,0,NA,NA,0,NA,NA
+7196,-0.0422140649548601,0,0,0,NA,NA,0,NA,NA
+7197,-0.0143686002174309,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,1.66666666666667,0
+7198,0.0218099253095716,0.305,30.5,2,91.8493852627859,0.902340570982128,17.25,0.614754098360656,0
+7199,0.000171668855182361,0.1725,17.25,2,87.4494127722051,0.850191006466755,9.75,11.9732276805933,0
+7200,0.00393392516132735,0.0775,7.75,3,77.6671981466396,0.761517615176152,6,6.31587034656155,0
+7201,0.0201174575457117,0.1225,12.25,2,88.7881827281932,0.891466558133225,12,5.87332075469348,0
+7202,0.0258459196348849,0.225,22.5,3,88.5223599389154,0.807653776798237,15.5,4.89812456766764,0
+7203,0.0110219528862308,0.025,2.5,2,60.6037822408496,0.842209072978304,2,8.81816940307617,0
+7204,0.0224171987513546,0.0925,9.25,3,83.0552656274174,0.855484803323849,8.5,10.4643440246582,0
+7205,0.00515903422408883,0.09,9,5,69.1892537665287,0.615384615384615,3.75,8.89085398779975,0
+7206,-0.016853379860986,0.3125,31.25,1,95.8481348315798,0.94873848618342,31.25,27.4335847625732,7.07106781005859
+7207,0.0569891483962419,0.6325,63.25,3,96.230410114171,0.856482677459169,57.75,60.8516179638889,14.1421356201172
+7208,0.0118181438441388,0.175,17.5,1,92.6818041122695,0.911308203991131,17.5,112.506656646729,91.9238891601562
+7209,-0.0261154783116217,0,0,0,NA,NA,0,NA,NA
+7210,-0.0643155321009908,0,0,0,NA,NA,0,NA,NA
+7211,-0.0918320614949334,0.1075,10.75,1,89.2106768070942,0.937752878929349,10.75,26.1530816721362,7.07106781005859
+7212,0.0720532007381553,0.825,82.5,1,99.4686117624928,0.770694794771841,82.5,8.80869402451949,0
+7213,0.0619503630898544,0.6075,60.75,1,98.5105231673728,0.876539745784113,60.75,3.50819680327741,0
+7214,0.0568377195193898,0.5675,56.75,2,97.9579412428768,0.792290137881086,56.25,6.2475015161321,0
+7215,0.0353508190015418,0.3525,35.25,3,94.8881299113355,0.772530005088145,33,2.19501755085397,0
+7216,-0.0104273253616338,0.01,1,2,34.5233986084855,0.494949494949495,0.75,1.25,0
+7217,-0.0112997489372174,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,148.892661200629,140.089248657227
+7218,0.00361781381802757,0,0,0,NA,NA,0,NA,NA
+7219,-0.0697457869604114,0,0,0,NA,NA,0,NA,NA
+7220,-0.0563827302466234,0.005,0.5,1,30.8308651382582,1,0.5,26.2104606628418,25.4950981140137
+7221,-0.0157346077209513,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.20710678100586,0
+7222,-0.0724216566035375,0,0,0,NA,NA,0,NA,NA
+7223,-0.165150912379322,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,4.06657322970304,0
+7224,0.0244137227718602,0.3125,31.25,4,91.0027366592383,0.7436924309171,24.75,4.20433279418945,0
+7225,0.0296655642937549,0.22,22,4,86.9920497749548,0.812183570145354,11.5,16.8865123445337,0
+7226,0.0650816840064363,0.515,51.5,2,95.1999600168893,0.854647250410487,38.5,3.37365702286507,0
+7227,-0.113114134881325,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,37.1879980299208,30.4138145446777
+7228,-0.0998023682134226,0,0,0,NA,NA,0,NA,NA
+7229,-0.0739448500791332,0,0,0,NA,NA,0,NA,NA
+7230,-0.0391239949160081,0,0,0,NA,NA,0,NA,NA
+7231,-0.0161582239937343,0.005,0.5,1,30.8308651382582,1,0.5,74.9909210205078,73.8241119384766
+7232,-0.0509999626626086,0.07,7,1,85.3702908942512,0.95221027479092,7,94.041412625994,78.2623825073242
+7233,-0.0316092804027721,0,0,0,NA,NA,0,NA,NA
+7234,-0.0121368378649095,0.1475,14.75,2,87.3881972864858,0.815996779943649,11.5,7.09262162548,0
+7235,-0.103024047820945,0.01,1,1,52.6315789473684,0.747474747474748,1,17.5,10
+7236,-0.0351651919675169,0.0025,0.25,1,0,NA,0.25,0,0
+7237,0.00104914028765052,0.0275,2.75,1,73.5251216233933,1,2.75,13.8532758192583,7.07106781005859
+7238,0.0038553121158111,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,26.311516394982,10
+7239,0.0117660310584631,0.07,7,1,85.3702908942512,0.95221027479092,7,4.15047155107771,0
+7240,-0.0111752025360533,0,0,0,NA,NA,0,NA,NA
+7241,-0.00719893799918282,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+7242,-0.00592557833821047,0,0,0,NA,NA,0,NA,NA
+7243,-0.0149588658394441,0,0,0,NA,NA,0,NA,NA
+7244,-0.0199183185626953,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0
+7245,0.00351494621301754,0.01,1,2,30.8308651382582,0.494949494949495,0.5,17.5806188583374,11.1803398132324
+7246,0.017412810285532,0.0925,9.25,5,70.9641905888779,0.638712008309624,4.25,22.6551287367537,0
+7247,0.00247678152711842,0,0,0,NA,NA,0,NA,NA
+7248,-0.023515538481347,0.02,2,2,58.1510768543717,0.795918367346939,1.75,19.5533645153046,10
+7249,-0.0318383098232516,0,0,0,NA,NA,0,NA,NA
+7250,-0.064936424360385,0,0,0,NA,NA,0,NA,NA
+7251,-0.0479674257941735,0.04,4,1,78.9473684210526,0.956597222222222,4,1.06694173812866,0
+7252,-0.0252700336850012,0.05,5,1,81.7256002368443,0.830220713073005,5,3.60355339050293,0
+7253,-0.0150776380611933,0,0,0,NA,NA,0,NA,NA
+7254,-0.00292035721133743,0,0,0,NA,NA,0,NA,NA
+7255,0.0104720765723505,0.0025,0.25,1,0,NA,0.25,25.4950981140137,25.4950981140137
+7256,0.0105080956988604,0.05,5,3,64.9567129720608,0.728353140916808,2.75,50.7883708953857,32.0156211853027
+7257,-0.00769086388539108,0,0,0,NA,NA,0,NA,NA
+7258,-0.00582066276940168,0.2625,26.25,1,94.9905255479102,0.921083310913819,26.25,2.84418676467169,0
+7259,-0.120264186896384,0,0,0,NA,NA,0,NA,NA
+7260,-0.0441518432672456,0.27,27,1,95.1342058036908,0.943800491745697,27,56.4677807490031,35
+7261,0.113175582867116,1,100,1,100,NA,100,26.5736647081375,0
+7262,0.0476506949385657,0.56,56,3,95.836429311923,0.842322749021314,47,1.03603155272348,0
+7263,0.112142360587604,0.835,83.5,2,99.0435152506787,0.721461845075157,82,1.03763036670799,0
+7264,0.107645609397441,1,100,1,100,NA,100,8.8528987789154,0
+7265,0.0986004234664142,1,100,1,100,NA,100,38.6210361719131,0
+7266,0.0564626643757947,0.5425,54.25,1,98.1174291231355,0.826867932694909,54.25,0.986830118065056,0
+7267,0.0669239767987165,0.79,79,1,99.3416426267051,0.848194311281559,79,16.4239217721963,0
+7268,0.106552194601099,0.73,73,1,99.1030975159931,0.898805909734871,73,19.6666382698164,0
+7269,0.1378257818159,0.725,72.5,1,99.081892426161,0.933277731442869,72.5,18.6313720308501,0
+7270,0.0705653907498345,0.3325,33.25,8,87.5311656028769,0.758566254991178,24,62.4629798544977,25
+7271,0.0575502888578922,0.795,79.5,1,99.3602931148206,0.764227642276423,79.5,50.5380505855728,0
+7272,0.0594719745125622,0.8675,86.75,1,99.6123355042629,0.689369535204786,86.75,32.0550519245159,0
+7273,0.00306747927289507,0.1575,15.75,7,77.9071969967041,0.708659293229026,7.75,6.02703179253472,0
+7274,-0.0166755812668634,0.045,4.5,3,64.2603802562984,0.728524335854179,2.5,3.72617043389214,0
+7275,-0.00773681781911364,0.135,13.5,1,90.9386564749522,0.850829759462987,13.5,0.740740740740741,0
+7276,0.0292224962407454,0.4325,43.25,3,96.0819538519934,0.90057033957991,42.25,0.936826981561032,0
+7277,0.046174380966404,0.5825,58.25,1,98.3671391359956,0.922912795099456,58.25,0.88259635565107,0
+7278,-0.00266588524395047,0.155,15.5,2,89.3164840553575,0.868507560815253,14.25,2.10250546855311,0
+7279,-0.0264070722514498,0.0075,0.75,1,44.4894453484604,1,0.75,68.1192067464193,66.7083206176758
+7280,-0.0767650888026401,0.005,0.5,1,30.8308651382582,1,0.5,42.5,40
+7281,-0.14938077381812,0,0,0,NA,NA,0,NA,NA
+7282,-0.0987654687618487,0,0,0,NA,NA,0,NA,NA
+7283,0.0432967444346059,0.42,42,2,96.3910333648369,0.755283648498331,40.75,65.5981604258219,40
+7284,0.0587230934901163,0.64,64,2,96.4365068214756,0.890046296296296,51,35.7751824110746,5
+7285,0.023159097194075,0.245,24.5,1,94.6299732152399,0.954846478025286,24.5,41.1304123936867,21.2132034301758
+7286,-0.0683461893172353,0,0,0,NA,NA,0,NA,NA
+7287,-0.043750380150741,0.2325,23.25,1,94.3478768975745,0.95290608688827,23.25,20.7995441600841,5
+7288,0.0741104287921917,0.6925,69.25,2,98.7641862431507,0.743589743589743,69,4.39587501498336,0
+7289,0.0339721057249699,0.255,25.5,2,93.7829736167953,0.926651263431987,25,0.784313725490196,0
+7290,-0.0867481427026723,0,0,0,NA,NA,0,NA,NA
+7291,-0.177409797552973,0,0,0,NA,NA,0,NA,NA
+7292,-0.18224695449695,0,0,0,NA,NA,0,NA,NA
+7293,-0.150043425629847,0,0,0,NA,NA,0,NA,NA
+7294,-0.0914477519369393,0,0,0,NA,NA,0,NA,NA
+7295,0.000262341712896159,0.215,21.5,1,93.912339662796,0.900087423504434,21.5,0.63953488372093,0
+7296,-0.0195659500025795,0.1625,16.25,1,92.2068700432412,0.936600184916127,16.25,1,0
+7297,-0.0239569380062267,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+7298,-0.0318231170281251,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,1.66666666666667,0
+7299,-0.0133157445082907,0.0725,7.25,1,85.7162801918893,0.885301370648621,7.25,0,0
+7300,0.0119309819487353,0.1975,19.75,4,87.1584528847952,0.866488651535381,16.25,1.13924050632911,0
+7301,0.00822999537053875,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,3.41421356201172,0
+7302,0.00776140993335332,0.07,7,2,83.0083823829045,0.83273596176822,6.75,2.14285714285714,0
+7303,-0.0020285392159235,0.02,2,1,68.0470115164975,0.897959183673469,2,1.875,0
+7304,0.00514011145580184,0.05,5,2,73.470578753065,0.694397283531409,3.5,5.03389072418213,0
+7305,0.00380888302430321,0.0225,2.25,2,56.58687201489,0.658994032395567,1.5,17.7118379804823,11.1803398132324
+7306,0.029424820950062,0.3,30,3,92.0594905502514,0.90170380078637,27,28.1948487122854,0
+7307,0.0475185323554615,0.6375,63.75,2,97.127508636135,0.896118886163613,59.75,59.3122385735605,11.1803398132324
+7308,-0.000853244524187176,0.005,0.5,1,30.8308651382582,1,0.5,101.789680480957,100.623054504395
+7309,-0.0245111020976037,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,10.7609127892388,0
+7310,-0.0300478430779003,0.0975,9.75,2,86.3201550647629,0.931813339015555,9.5,13.966098345243,0
+7311,0.0382787012826884,0.625,62.5,1,98.6057312417508,0.811965811965812,62.5,8.17188725280762,0
+7312,0.0804089061077684,0.9925,99.25,1,99.9801514397,0.292661361626876,99.25,0.370456090201659,0
+7313,0.0623198740367661,0.555,55.5,2,96.2462375682795,0.777452097921077,45.5,0.315315315315315,0
+7314,0.0689267353872856,0.6425,64.25,2,95.96640438442,0.779015163630548,36.25,7.60207984419648,0
+7315,0.0074577957168367,0.1575,15.75,2,86.8283066704493,0.730240086323172,9.5,3.12013559492808,0
+7316,-0.0429646349124232,0,0,0,NA,NA,0,NA,NA
+7317,0.0332697385397114,0.27,27,1,95.1342058036908,0.908675799086758,27,87.3351948349564,41.2310562133789
+7318,-0.0485543280636193,0,0,0,NA,NA,0,NA,NA
+7319,-0.0559275050554425,0,0,0,NA,NA,0,NA,NA
+7320,-0.0625209636290674,0,0,0,NA,NA,0,NA,NA
+7321,-0.040381965241977,0.015,1.5,1,62.2896536353828,1,1.5,33.132080078125,30
+7322,-0.159075926830992,0,0,0,NA,NA,0,NA,NA
+7323,-0.0551903780274733,0.1125,11.25,4,85.2512394579843,0.733135656041512,10.25,2.31426968044705,0
+7324,0.00580501296168222,0.15,15,2,86.0017794407233,0.841628959276018,8.5,4.46248137156169,0
+7325,0.0746114392601885,0.7625,76.25,3,98.5382547855331,0.772997711670481,75,30.0213629925837,0
+7326,0.0639921666923692,0.555,55.5,2,95.5393638873326,0.815448081202844,36.75,12.2427708050152,0
+7327,-0.0680842633004067,0,0,0,NA,NA,0,NA,NA
+7328,-0.0823493903037161,0,0,0,NA,NA,0,NA,NA
+7329,-0.066750759522547,0,0,0,NA,NA,0,NA,NA
+7330,-0.0160906083538066,0.005,0.5,1,30.8308651382582,1,0.5,8.5355339050293,7.07106781005859
+7331,0.00108598241138679,0.2975,29.75,1,95.613700031282,0.894556478186371,29.75,25.8858191866835,5
+7332,-0.0219830616297259,0.05,5,2,71.5859661614246,0.762308998302207,3.25,59.4896709442139,20.6155281066895
+7333,-0.0292482012524852,0,0,0,NA,NA,0,NA,NA
+7334,-0.048079514127312,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,9.55236721038818,5
+7335,-0.135389661798254,0,0,0,NA,NA,0,NA,NA
+7336,-0.039483091706943,0,0,0,NA,NA,0,NA,NA
+7337,0.00364613602003374,0.2,20,2,92.0085962979016,0.938380281690141,19.5,7.39164292812347,0
+7338,0.00870372198809491,0.09,9,4,76.3087819925708,0.688644688644689,6,5.28544441858927,0
+7339,0.0348458154293985,0.235,23.5,3,89.8259850397385,0.867724867724868,17.75,7.6825388644604,0
+7340,0.00540986333277033,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859
+7341,0.00319253719146218,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,3.84257874122033,0
+7342,-0.0030177939890018,0.0475,4.75,5,53.1019165670108,0.601773916191511,1.25,12.189868927002,0
+7343,0.000274595480332209,0.075,7.5,1,86.0448225436784,0.889685603971318,7.5,9.45420767466227,0
+7344,0.00114113104718854,0.095,9.5,3,78.710289236605,0.736911339121284,6.25,3.26016892884907,0
+7345,0.0356815033041494,0.33,33,2,93.5642935211733,0.882331083173345,29.5,0.7131979971221,0
+7346,0.000199167318023683,0.065,6.5,3,70.4262305954993,0.713055954088953,3,3.66624905512883,0
+7347,-0.00198338164208963,0.0475,4.75,3,67.0748808032317,0.710381029957462,3,2.80270566438374,0
+7348,0.019022854271534,0.095,9.5,4,75.1314761297475,0.771989827238446,6,20.1213565123709,0
+7349,-0.0131289787558126,0,0,0,NA,NA,0,NA,NA
+7350,-0.0107759836082914,0.005,0.5,1,30.8308651382582,1,0.5,23.0553131103516,20.6155281066895
+7351,-0.032056051212121,0.02,2,1,68.0470115164975,0.897959183673469,2,0,0
+7352,-0.0168434381743282,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,1.42857142857143,0
+7353,-0.0140920150485181,0,0,0,NA,NA,0,NA,NA
+7354,-0.0172512184745756,0,0,0,NA,NA,0,NA,NA
+7355,-0.0201679640098519,0,0,0,NA,NA,0,NA,NA
+7356,-0.00121155579637161,0.1175,11.75,1,89.9089482633795,0.915014164305949,11.75,63.965141539878,50.9901962280273
+7357,0.0113674803742106,0.0325,3.25,3,62.7977145286176,0.655469422911283,2.5,57.9278831481934,0
+7358,-0.0297655714799294,0.1825,18.25,2,88.033564289871,0.847094801223242,13.75,2.26514163082593,0
+7359,-0.129918094165623,0,0,0,NA,NA,0,NA,NA
+7360,-0.00356536499413778,0.4375,43.75,1,97.3060110945426,0.972480220158239,43.75,29.8597008623396,0
+7361,0.129553958255565,0.91,91,1,99.745869280411,0.774229962909209,91,6.15471029805613,0
+7362,0.0452752113209863,0.44,44,3,93.2099192704151,0.82967032967033,34.75,0.972802292216908,0
+7363,0.137625587200746,0.9225,92.25,2,98.9561132533126,0.815404494900549,90.25,2.39990106184631,0
+7364,0.116190777095035,1,100,1,100,NA,100,8.98795201301575,0
+7365,0.0948219865001738,1,100,1,100,NA,100,33.6228721046448,0
+7366,0.103780498743409,0.8025,80.25,2,98.3334417400012,0.757697288716214,77,2.09994140815141,0
+7367,0.0919816805282608,0.96,96,1,99.8914698623176,0.656593406593408,96,33.1677321543296,0
+7368,0.112537843436148,0.6575,65.75,1,98.7723535160189,0.982233014021113,65.75,24.6931042544289,0
+7369,0.145887203826933,0.7375,73.75,1,99.1344998974781,0.97940797940798,73.75,37.1946056495279,0
+7370,0.0444259738503024,0.34,34,7,88.2887018235883,0.670087976539589,21.75,49.5186275173636,10
+7371,0.0622332889866084,0.8825,88.25,1,99.6605653114489,0.898076188049433,88.25,46.4907318850077,0
+7372,0.0584288286417723,0.86,86,1,99.5877487787664,0.890109890109891,86,40.2561043029608,0
+7373,0.0134715068034348,0.375,37.5,3,91.2169476967778,0.831272727272727,26.25,33.1800592931112,0
+7374,-0.0376010951113767,0.0275,2.75,2,61.9404366363445,0.725792630676949,2,0,0
+7375,-0.0509205642182678,0,0,0,NA,NA,0,NA,NA
+7376,-0.0357781688720024,0,0,0,NA,NA,0,NA,NA
+7377,-0.0354657216618216,0,0,0,NA,NA,0,NA,NA
+7378,-0.0334074629377392,0.005,0.5,2,0,1,0.25,8.09016990661621,5
+7379,-0.0298858518682391,0.03,3,4,46.5635624328195,0.393571861734384,1,2.08333333333333,0
+7380,-0.0458284093213297,0,0,0,NA,NA,0,NA,NA
+7381,-0.0977053532982245,0,0,0,NA,NA,0,NA,NA
+7382,-0.100691466682474,0.0325,3.25,1,76.0684107249879,1,3.25,3.23623598538912,0
+7383,0.0640130021877121,0.775,77.5,2,98.4428681958033,0.931506849315068,76.25,64.9773730001142,10
+7384,0.0513921923424641,0.5725,57.25,3,96.0595117989928,0.82469835791665,50,51.6255193068992,0
+7385,-0.00188166394173095,0.2475,24.75,2,92.9725593935659,0.850684982642129,23.25,5.07747854367651,0
+7386,-0.11092743709567,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,14.3654035421518,0
+7387,0.0463465834787348,0.6025,60.25,1,98.4825618273597,0.765199161425576,60.25,7.83183620975225,0
+7388,0.00384579344572558,0.085,8.5,2,79.8551624712248,0.843871975019516,5.25,3.7216376136331,0
+7389,-0.0552125307641654,0,0,0,NA,NA,0,NA,NA
+7390,-0.150826001670212,0,0,0,NA,NA,0,NA,NA
+7391,-0.176702736839652,0,0,0,NA,NA,0,NA,NA
+7392,-0.173061559377238,0,0,0,NA,NA,0,NA,NA
+7393,-0.0876468778960407,0,0,0,NA,NA,0,NA,NA
+7394,-0.112105479712482,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0
+7395,0.0410120920080226,0.465,46.5,4,91.9710248127423,0.706585524885895,29.75,0.349462365591398,0
+7396,0.0055035349931677,0.145,14.5,4,84.3056130480851,0.754385964912281,10.75,1.41501841051825,0
+7397,0.0301735857077892,0.3025,30.25,3,94.3825407381831,0.824046920821114,29.25,3.21731844815341,0
+7398,-0.0124451053782832,0.08,8,4,72.8321840005809,0.686454849498328,4.75,3.29235434532166,0
+7399,-0.0304921213566558,0.045,4.5,3,70.1539628083604,0.767306573589296,3.75,4.78962241278754,0
+7400,0.00333302855509828,0.135,13.5,4,82.8115410072353,0.751382932438312,10.5,3.54756560149016,0
+7401,0.0124432618101855,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,8.7993782043457,0
+7402,-0.00249320240855425,0.01,1,4,0,1,0.25,12.8567290306091,5
+7403,0.00598855936030304,0.005,0.5,2,0,1,0.25,13.5355339050293,7.07106781005859
+7404,0.00246019854513293,0,0,0,NA,NA,0,NA,NA
+7405,-0.0052788951272214,0,0,0,NA,NA,0,NA,NA
+7406,0.0112110682846105,0.07,7,3,72.6590391619517,0.7610513739546,4,3.83548368726458,0
+7407,0.00580310094879678,0.055,5.5,2,73.5771130839642,0.782135076252723,3,17.8307000940496,0
+7408,-0.010162907996787,0,0,0,NA,NA,0,NA,NA
+7409,0.039048820848293,0.38,38,1,96.7251883615388,0.930627818244884,38,24.4662462535657,0
+7410,0.0416832821321646,0.45,45,2,95.1865228107505,0.863499863499863,39,22.3717591179742,0
+7411,0.108825123137794,0.925,92.5,1,99.7907868956838,0.733713742272944,92.5,3.23802786646663,0
+7412,0.0197395783513002,0.5825,58.25,1,98.3671391359956,0.928419024020924,58.25,0.784329966925756,0
+7413,-0.0341645210758361,0.2025,20.25,4,89.0723101520556,0.773598049460118,17.5,0.123456790123457,0
+7414,0.0786104982237157,0.82,82,1,99.4509723118502,0.901274457009513,82,1.20012076308088,0
+7415,-0.0115100134454951,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,3.07692307692308,0
+7416,-0.0347229612181582,0,0,0,NA,NA,0,NA,NA
+7417,-0.0754575456080056,0.0075,0.75,1,44.4894453484604,1,0.75,40.4672597249349,38.0788650512695
+7418,-0.0709873787220568,0,0,0,NA,NA,0,NA,NA
+7419,-0.0476554266130552,0,0,0,NA,NA,0,NA,NA
+7420,-0.0363744801126813,0,0,0,NA,NA,0,NA,NA
+7421,-0.100611615027301,0,0,0,NA,NA,0,NA,NA
+7422,-0.163981280891312,0,0,0,NA,NA,0,NA,NA
+7423,0.0194430646973342,0.1725,17.25,2,90.9844562274329,0.830216473995656,16.5,3.7106254135353,0
+7424,0.0477289927050151,0.4525,45.25,3,95.9648554105087,0.885503986914741,43.75,10.4742800359568,0
+7425,0.0913656652951613,0.79,79,2,98.8394296642943,0.696388622563119,77.75,20.3378422773337,0
+7426,0.020132459424276,0.255,25.5,2,94.1430420151807,0.926651263431987,25.25,4.59643962336522,0
+7427,-0.0717311695101671,0,0,0,NA,NA,0,NA,NA
+7428,-0.0827990726288408,0,0,0,NA,NA,0,NA,NA
+7429,-0.0283439271482348,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,7.75046920776367,0
+7430,-0.0274776958554139,0,0,0,NA,NA,0,NA,NA
+7431,-0.0425369475353727,0,0,0,NA,NA,0,NA,NA
+7432,-0.0170893804193702,0.01,1,1,52.6315789473684,1,1,4.26776695251465,0
+7433,-0.0247901427408215,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5
+7434,-0.039138847051654,0,0,0,NA,NA,0,NA,NA
+7435,-0.0341654352314072,0,0,0,NA,NA,0,NA,NA
+7436,-0.0217372151511518,0,0,0,NA,NA,0,NA,NA
+7437,0.00443210245464797,0.0925,9.25,4,77.3561739494419,0.783227204985774,6.25,6.86133420789564,0
+7438,0.0231424131282802,0.32,32,4,90.6493946150241,0.804342337793486,22,8.10137470066547,0
+7439,0.0222086771030808,0.0925,9.25,7,64.5639366735883,0.54839001038703,3.5,6.61949889724319,0
+7440,0.0215558110467828,0.0875,8.75,3,75.0466584391424,0.754369390647142,4.25,13.9970215933663,0
+7441,-0.0829453309049586,0,0,0,NA,NA,0,NA,NA
+7442,-0.1787541358409,0,0,0,NA,NA,0,NA,NA
+7443,-0.0346422088015243,0.075,7.5,2,79.7582915733518,0.823496966354109,6.25,1.90236892700195,0
+7444,-0.0141978538442709,0.0275,2.75,2,60.3322599403393,0.794344473007712,1.5,2.27272727272727,0
+7445,0.00883208725419536,0.155,15.5,2,89.9809017328171,0.846592154284462,14.75,20.6975888590659,0
+7446,-0.0030511394723726,0.0475,4.75,4,60.5305192572131,0.565571544936193,2.25,1.6879509373715,0
+7447,0.0297994792561803,0.2875,28.75,4,88.6485193899949,0.757085020242915,14.25,2.71672839289126,0
+7448,0.00262651546145662,0.095,9.5,9,56.5502573576908,0.491361922301149,1.75,5.03185688821893,0
+7449,-0.00851523322106004,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859
+7450,-0.00827277366046474,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,3.80473785400391,0
+7451,-0.0042311325339233,0.0825,8.25,3,81.1446294331687,0.858714300131194,7.5,3.35198570020271,0
+7452,-0.0169734967344993,0.02,2,1,68.0470115164975,1,2,3.38388347625732,0
+7453,-0.0161094269117075,0,0,0,NA,NA,0,NA,NA
+7454,-0.013324287150017,0,0,0,NA,NA,0,NA,NA
+7455,0.00483219963420197,0.0275,2.75,3,52.3625639110009,0.588688946015424,1.5,7.5610970583829,0
+7456,-0.0132852930707395,0,0,0,NA,NA,0,NA,NA
+7457,-0.0073377728552714,0,0,0,NA,NA,0,NA,NA
+7458,-0.073980188423011,0.05,5,2,72.2201279721897,0.762308998302207,3.25,2.70710678100586,0
+7459,-0.15375785253942,0,0,0,NA,NA,0,NA,NA
+7460,0.0136743139808459,0.4925,49.25,2,95.4139281769884,0.886632026452527,42.25,43.4179869617908,11.1803398132324
+7461,0.13297999815084,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,3.51074960178002,0
+7462,0.00256268649543927,0.2575,25.75,4,88.5572374454835,0.781599781599782,16.75,2.0020699362153,0
+7463,0.116167492419481,1,100,1,100,NA,100,1.41945436477661,0
+7464,0.13196350120008,0.9875,98.75,1,99.9667936270881,0.359999999999997,98.75,0.504973698869536,0
+7465,0.110425987169147,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,23.9521029192702,0
+7466,0.0853526488883654,0.6475,64.75,3,97.6723205603632,0.824522921693354,62.75,0.434333462512631,0
+7467,0.0929036222212017,0.915,91.5,1,99.7609644895861,0.796282149223326,91.5,28.5219174056757,0
+7468,0.170991451242589,0.8575,85.75,1,99.5794816088838,0.967511371020143,85.75,32.1630196140389,0
+7469,0.149781529270695,0.715,71.5,4,97.5998570087213,0.921737429074545,70,47.6461554107132,0
+7470,0.046987999342382,0.355,35.5,7,91.5373128544884,0.791293977340489,31.5,92.7676499863746,50.9901962280273
+7471,0.070177514674142,1,100,1,100,NA,100,89.647359752655,43.0116271972656
+7472,0.0664344957927824,0.9,90,1,99.7153023505818,0.809384164222874,90,63.1219971232944,25
+7473,0.0454337974732334,0.4875,48.75,2,97.4935935302006,0.784395634011589,48.5,28.893433487721,0
+7474,-0.0518901664536679,0.0025,0.25,1,0,NA,0.25,5,5
+7475,-0.0588630120898597,0,0,0,NA,NA,0,NA,NA
+7476,-0.0226105902755535,0,0,0,NA,NA,0,NA,NA
+7477,-0.0109975060817669,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,16.4131164550781,10
+7478,0.00968845341078122,0,0,0,NA,NA,0,NA,NA
+7479,0.00431332647232921,0.095,9.5,2,81.3904056933697,0.771989827238446,6,14.8723942606073,0
+7480,-0.0109692516032374,0.05,5,1,81.7256002368443,0.864176570458404,5,19.4813824653626,5
+7481,-0.0379773304496484,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+7482,-0.00938419212850931,0.06,6,2,78.5083834316901,0.916013437849944,5.5,1.45833333333333,0
+7483,0.00485350361646852,0.0925,9.25,5,71.1198292296279,0.710969606647699,5.75,7.1460099091401,0
+7484,0.0298930283296795,0.35,35,3,90.4134670364252,0.825721153846154,19,12.3256051063538,0
+7485,-0.10359184525907,0.0025,0.25,1,0,NA,0.25,0,0
+7486,0.0106673626383417,0.5,50,1,97.819928619089,0.902964959568733,50,20.286516046524,0
+7487,0.047469634226436,0.58,58,1,98.352293007383,0.92851644121852,58,5.64013444966283,0
+7488,-0.0230902987718946,0.025,2.5,1,71.9760246298065,1,2.5,0,0
+7489,-0.172369788615033,0,0,0,NA,NA,0,NA,NA
+7490,-0.136850909045897,0,0,0,NA,NA,0,NA,NA
+7491,-0.195905834008008,0,0,0,NA,NA,0,NA,NA
+7492,-0.0833727337885648,0.2075,20.75,1,93.7090252642431,0.931328998476362,20.75,26.638560513416,7.07106781005859
+7493,-0.0786908843937272,0.0425,4.25,2,70.4950705989394,0.74934725848564,2.75,46.8075424643124,28.2842712402344
+7494,-0.0228367873156822,0.2275,22.75,2,89.9821100379787,0.872148307962763,17.75,1.61970926641108,0
+7495,0.0336989508735678,0.445,44.5,2,96.6317230290731,0.835701963361538,43.25,1.16031280260408,0
+7496,-0.0173812272201758,0.0425,4.25,3,63.0477063358056,0.66579634464752,2.25,0.294117647058824,0
+7497,0.0489212223561844,0.4425,44.25,3,96.0289603053757,0.890292234061519,43,1.11339586333366,0
+7498,0.00645888140203169,0.2075,20.75,3,86.0222819825565,0.83690637138136,10.75,1.21943618590573,0
+7499,-0.00301342382314033,0.04,4,5,52.0972344972521,0.479166666666667,2,2.00444173812866,0
+7500,0.0504958887704015,0.5275,52.75,2,97.0398274971345,0.859626390238635,50.25,0.943801590616669,0
+7501,-0.00126937079770869,0.015,1.5,3,30.8308651382582,0.419869470630892,0.5,6.99862130482992,0
+7502,0.0039784230550238,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,13.1164787837437,0
+7503,-0.0012282946632331,0.03,3,2,64.9303102239094,0.636143117040631,2.25,1.66666666666667,0
+7504,-0.00370428886535137,0.0025,0.25,1,0,NA,0.25,0,0
+7505,-0.00158771962078845,0.1025,10.25,2,82.0997931642777,0.854668765895604,5.75,1.93029599073457,0
+7506,0.00186963334534084,0.0375,3.75,3,61.4288139205841,0.763872491145218,2,1.33333333333333,0
+7507,0.00639854307719361,0.09,9,3,79.9370559151996,0.743589743589744,7,9.09037356906467,0
+7508,-0.0171244089251786,0,0,0,NA,NA,0,NA,NA
+7509,0.0125768976482141,0.2125,21.25,3,86.566365938266,0.764532744665195,13.75,22.9325521581313,0
+7510,0.124911783058196,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,6.39756932634737,0
+7511,0.0762495963846595,0.8325,83.25,1,99.4947723752506,0.867119094511544,83.25,2.32647998340137,0
+7512,-0.00244479010048963,0.115,11.5,1,89.742951983695,0.927567724177894,11.5,2.94951770616614,0
+7513,-0.0234712600011881,0,0,0,NA,NA,0,NA,NA
+7514,0.0533946368969919,0.62,62,1,98.5789406842005,0.937613430127042,62,0.638243029194493,0
+7515,0.0432388889067079,0.425,42.5,1,97.1898422226593,0.966662036393944,42.5,4.03084987191593,0
+7516,-0.0595516768278321,0,0,0,NA,NA,0,NA,NA
+7517,-0.0720344027597457,0,0,0,NA,NA,0,NA,NA
+7518,-0.088112055817619,0,0,0,NA,NA,0,NA,NA
+7519,-0.0799505698980465,0,0,0,NA,NA,0,NA,NA
+7520,-0.0186800047334327,0,0,0,NA,NA,0,NA,NA
+7521,-0.186364380409941,0,0,0,NA,NA,0,NA,NA
+7522,-0.018051080653895,0.26,26,2,93.1050086294405,0.891602832779303,24.5,3.41793174010057,0
+7523,0.051791710224079,0.4725,47.25,4,93.7878508292415,0.794177386594448,35.25,10.1953374973681,0
+7524,0.060575725068411,0.635,63.5,4,97.2581459844535,0.798549556809025,60.5,12.8820270553349,0
+7525,0.0599925955879735,0.5375,53.75,1,98.0842701108371,0.810810810810811,53.75,8.1452800307163,0
+7526,-0.0709882551130431,0,0,0,NA,NA,0,NA,NA
+7527,-0.0756826262455434,0,0,0,NA,NA,0,NA,NA
+7528,-0.0610892143373349,0.0075,0.75,1,44.4894453484604,1,0.75,7.35702260335286,5
+7529,-0.00312962370011519,0.05,5,2,75.9413455967301,0.864176570458404,4.5,19.1829100608826,7.07106781005859
+7530,0.00782759918201919,0.2075,20.75,1,93.7090252642431,0.965664499238181,20.75,108.809124406562,85.1469345092773
+7531,-0.0418902909250755,0,0,0,NA,NA,0,NA,NA
+7532,-0.0785719720227644,0,0,0,NA,NA,0,NA,NA
+7533,-0.0582572569054537,0,0,0,NA,NA,0,NA,NA
+7534,-0.00685560025485756,0.0525,5.25,1,82.2928536593692,0.769129287598945,5.25,9.21780395507812,0
+7535,-0.010784093906509,0,0,0,NA,NA,0,NA,NA
+7536,0.00216309112096496,0.0875,8.75,3,77.1958853040719,0.716580066131318,4.5,18.068284879412,5
+7537,0.0492001810536385,0.415,41.5,5,90.1695634596824,0.675995754427127,21,9.82080729610949,0
+7538,0.151066892616456,0.835,83.5,1,99.5034141561623,0.923161888296595,83.5,19.9848957689936,0
+7539,0.0511273678618454,0.2875,28.75,3,90.9799415942479,0.9055330634278,25.5,16.5743745223336,0
+7540,-0.0304926968079599,0.06,6,4,65.8089852051172,0.692049272116461,3.75,3.59221680959066,0
+7541,-0.219436049807446,0,0,0,NA,NA,0,NA,NA
+7542,-0.320111408159137,0,0,0,NA,NA,0,NA,NA
+7543,-0.0734248019118604,0.085,8.5,3,76.9967029651449,0.726775956284153,4.25,6.72854535719928,0
+7544,0.00456208467912802,0.1075,10.75,3,82.117042798268,0.844382197323374,9,41.5738715238349,11.1803398132324
+7545,0.0142054543378254,0.1225,12.25,2,84.6727927758701,0.755799755799756,7.75,27.0188842306332,10
+7546,-0.0605106557118415,0,0,0,NA,NA,0,NA,NA
+7547,-0.0248879563166156,0.03,3,3,54.4672250657126,0.636143117040631,1.5,2.08333333333333,0
+7548,0.0022985312396122,0.2625,26.25,4,88.0361036451082,0.820643888440499,13.5,2.47372009640648,0
+7549,-0.0117996251482577,0.0575,5.75,4,64.052361522782,0.646330680813439,2,5.4115048284116,0
+7550,0.0232607963430928,0.3225,32.25,3,94.8009333875752,0.930909947397346,31.75,0.0387596899224806,0
+7551,0.0128185804356508,0.2075,20.75,3,90.2711608886802,0.85407412176227,18.75,1.67641127253153,0
+7552,-0.00614387273868488,0.105,10.5,3,80.7344478895533,0.795420568101346,8.25,5.49043986910865,0
+7553,0.000401772718614666,0.095,9.5,3,78.7909786987583,0.807068315355608,5.75,3.42105263157895,0
+7554,-0.00354080310811696,0.04,4,2,72.4151777478817,0.782986111111111,3.5,24.9195853471756,11.1803398132324
+7555,-0.0150077186380622,0,0,0,NA,NA,0,NA,NA
+7556,-0.0145180264484952,0,0,0,NA,NA,0,NA,NA
+7557,0.00314680578030675,0.04,4,2,74.5830091831985,0.782986111111111,3.75,3.25444173812866,0
+7558,-0.037186107304351,0.08,8,2,79.04516811116,0.790969899665552,4.5,2.1875,0
+7559,-0.0337412572937319,0.235,23.5,1,94.4060921446443,0.914410208527856,23.5,3.15463488152687,0
+7560,0.0712680393061601,0.79,79,1,99.3416426267051,0.864173857462448,79,16.3386808769612,0
+7561,0.0701433982663184,0.78,78,1,99.3038050834495,0.760358688930117,78,0.128205128205128,0
+7562,0.0209041717213404,0.4275,42.75,2,96.5099712063761,0.883551673944687,42,1.27319309167695,0
+7563,0.061116494248854,0.55,55,1,98.166317237229,0.967479674796748,55,2.05000131780451,0
+7564,0.0937973975331988,0.91,91,1,99.745869280411,0.983873568779229,91,2.3460680102254,0
+7565,0.0974533230345696,0.95,95,1,99.8632718311308,0.805825242718447,95,18.3362782578719,0
+7566,0.0701308715521009,0.7225,72.25,3,96.0260136413608,0.721780604133546,40.5,11.2899682266077,0
+7567,0.12533436008729,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,41.209060085746,5
+7568,0.233301373571157,1,100,1,100,NA,100,86.8211289978027,25
+7569,0.127606726586819,0.725,72.5,2,98.7457169207798,0.71976647206005,71.75,119.904137762662,70.1783447265625
+7570,0.0506786250555888,0.595,59.5,1,98.4399608047141,0.927867942849216,59.5,49.431176193622,0
+7571,0.0678205616213381,0.95,95,1,99.8632718311308,0.805825242718447,95,44.1320622444153,0
+7572,0.0445854886254529,0.665,66.5,1,98.8090595843688,0.928214638231687,66.5,41.2415094160496,5
+7573,0.0319429386717093,0.3,30,4,87.2861228212788,0.783748361730013,16,6.63997675577799,0
+7574,-0.00610086056345608,0.025,2.5,1,71.9760246298065,1,2.5,27.0796264648437,20.6155281066895
+7575,0.00453239680458864,0.16,16,3,83.3085123706684,0.766156462585034,8,88.6428446769714,65.7647323608398
+7576,0.0202322950279233,0,0,0,NA,NA,0,NA,NA
+7577,0.0115988893400117,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,71.5470074547662,60.8276290893555
+7578,0.0166815040865913,0.025,2.5,3,54.2530620802294,0.605522682445759,1.75,69.4110900878906,60.8276290893555
+7579,0.0265823909817118,0.14,14,2,86.247593039685,0.868137137377128,10.75,17.8881126812526,0
+7580,0.011339496361677,0.045,4.5,2,69.9899490341484,0.767306573589296,2.5,7.25364504920112,0
+7581,0.00506088656794418,0.11,11,1,89.3941397590651,0.772244154266626,11,1.84575462341309,0
+7582,-0.00402267181678326,0.0125,1.25,2,43.859649122807,0.594936708860759,1,15.4826053619385,0
+7583,-0.0250089874300102,0.01,1,3,15.8692205350002,0.242424242424242,0.5,1.25,0
+7584,-0.0321170019170859,0,0,0,NA,NA,0,NA,NA
+7585,-0.0377809561738104,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,2,0
+7586,0.0271991189483379,0.3575,35.75,1,96.460610420978,0.928713577093296,35.75,6.12196836938391,0
+7587,-0.00308312580126312,0.0275,2.75,4,48.5225755827122,0.588688946015424,1.75,3.47740069302646,0
+7588,-0.0371633529318933,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,39.6554250302522,30.4138145446777
+7589,-0.0560200103047828,0.0325,3.25,1,76.0684107249879,1,3.25,32.4841417165903,25
+7590,-0.0330874052878244,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,119.484931945801,105.475112915039
+7591,-0.165776326103514,0,0,0,NA,NA,0,NA,NA
+7592,-0.0143666576823671,0.2175,21.75,2,93.1681485639896,0.917551272802226,21.5,51.9916171369881,5
+7593,0.0204014405090857,0.4225,42.25,3,95.7942200962011,0.85014985014985,41,11.9080143426297,0
+7594,0.0136915324810252,0.2775,27.75,1,95.2720210973421,0.84083044982699,27.75,1.55018980009062,0
+7595,0.0303511927985164,0.3225,32.25,2,92.1510059583851,0.780168014446102,16.25,1.52103258473004,0
+7596,0.0691056951107748,0.625,62.5,3,97.1448182457105,0.800569800569801,59.25,1.02142135620117,0
+7597,0.0723385169974063,0.69,69,1,98.9270603639069,0.8256320836966,69,2.04672698698182,0
+7598,0.042578247449419,0.5375,53.75,1,98.0842701108371,0.940540540540541,53.75,1.26310949990916,0
+7599,0.0288240541319828,0.2475,24.75,6,85.8045126512758,0.716301467020046,13.5,2.04471118040759,0
+7600,0.00814317615655455,0.105,10.5,2,86.2942194407613,0.905578723739083,10,2.16217590513684,0
+7601,-0.0169021846942996,0.005,0.5,1,30.8308651382582,1,0.5,14.9767618179321,14.1421356201172
+7602,0.00722445920084283,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,5.6903559366862,5
+7603,0.00726714726828504,0.0025,0.25,1,0,NA,0.25,22.3606796264648,22.3606796264648
+7604,0.00151768023912155,0.0125,1.25,2,43.859649122807,0.594936708860759,1,3.82842712402344,0
+7605,0.00408145371210367,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3.82842712402344,0
+7606,0.0062359119016628,0.0825,8.25,2,79.6618948113615,0.858714300131194,5.25,2.24673138242779,0
+7607,-0.00162942853239656,0.0425,4.25,3,64.9836527481961,0.66579634464752,2,1.47058823529412,0
+7608,0.0114680891849275,0.1175,11.75,4,78.63948954212,0.745042492917847,6.75,25.8004556209483,0
+7609,0.0877833596133496,0.7775,77.75,1,99.2942318197501,0.69321624419987,77.75,15.1060453764495,0
+7610,0.0842621756298468,0.835,83.5,1,99.5034141561623,0.913557124333669,83.5,2.07012382096159,0
+7611,0.00741280644283961,0.195,19.5,3,87.6831951169748,0.747952110901071,14.5,25.033576965332,0
+7612,0.000748766610340681,0.13,13,2,87.4089728951555,0.806276636962418,11.25,126.40373141949,94.3398132324219
+7613,-0.0238108929918371,0.01,1,1,52.6315789473684,0.747474747474748,1,122.214700698853,120.933868408203
+7614,0.00775056510778086,0.3525,35.25,2,95.3036108394033,0.940139475023196,34.5,3.48345196500738,0
+7615,0.0814284887265239,0.78,78,1,99.3038050834495,0.92269635126778,78,3.30282261432746,0
+7616,-0.0242137043428374,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,6.178772517613,0
+7617,-0.068976494804956,0,0,0,NA,NA,0,NA,NA
+7618,-0.0959423118270934,0,0,0,NA,NA,0,NA,NA
+7619,-0.154002013821155,0,0,0,NA,NA,0,NA,NA
+7620,-0.0630367407011363,0,0,0,NA,NA,0,NA,NA
+7621,-0.0933302441403794,0.0225,2.25,1,70.1754385964912,0.744245524296675,2.25,4.90468173556858,0
+7622,0.0348505251787083,0.2225,22.25,6,80.1647023998506,0.668345163704018,8.25,2.4731411451704,0
+7623,0.061056455434009,0.605,60.5,2,97.652027411758,0.893581270303573,58.5,1.02361991188743,0
+7624,0.0633792371225536,0.545,54.5,2,97.6106896687641,0.853840740540248,53.75,1.57780773267833,0
+7625,0.0274506462780846,0.4,40,1,96.9413745785043,0.943310657596372,40,3.79290227890015,0
+7626,-0.0811846529706963,0,0,0,NA,NA,0,NA,NA
+7627,-0.0623718518534815,0,0,0,NA,NA,0,NA,NA
+7628,0.00950414177428684,0.1225,12.25,3,86.564515592721,0.864333197666531,11.5,18.7038451603481,0
+7629,-0.0538177673653263,0.0275,2.75,2,60.517542786349,0.725792630676949,1.5,25.6277285489169,15.8113880157471
+7630,-0.0161675752830752,0.135,13.5,4,80.6492916665706,0.825968052706818,7,143.969240400526,100
+7631,-0.011930469081417,0.1175,11.75,1,89.9089482633795,0.971671388101983,11.75,205.825920267308,186.681533813477
+7632,-0.0352050369349308,0.185,18.5,2,89.1892155304645,0.886739027843322,16,212.70500884185,180.277557373047
+7633,-0.00240589834213097,0.135,13.5,1,90.9386564749522,0.950276586487662,13.5,169.239043059172,145.773803710938
+7634,-0.0349968340944542,0,0,0,NA,NA,0,NA,NA
+7635,-0.0587610962856706,0.0025,0.25,1,0,NA,0.25,10,10
+7636,0.00735153521342909,0.07,7,3,70.9628805772806,0.7610513739546,2.75,12.7699825423104,0
+7637,0.0131445367474953,0.17,17,3,83.3910751017072,0.817758428672674,8.25,4.53946242612951,0
+7638,0.00938815683606663,0.195,19.5,1,93.3444522721621,0.936988027725268,19.5,7.81382793035263,0
+7639,0.00263142683179467,0.225,22.5,2,90.0842361548084,0.911841314365859,17.75,6.01151536305745,0
+7640,-0.0293261848430751,0.1675,16.75,1,92.4032163835468,0.958933292266626,16.75,71.3854141235352,36.4005508422852
+7641,-0.0342501495506349,0,0,0,NA,NA,0,NA,NA
+7642,-0.0943368163531159,0,0,0,NA,NA,0,NA,NA
+7643,-0.0120028899464523,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471
+7644,0.0321985441650031,0.2575,25.75,2,94.3217054851071,0.876239876239876,25.5,63.121455886989,22.3606796264648
+7645,0.0581523471482797,0.7325,73.25,2,98.7959702712562,0.830384856760012,72.75,56.3772457370172,10
+7646,-0.00285889578442948,0.19,19,1,93.1886455857599,0.926294453657638,19,11.4112209269875,0
+7647,-0.0472394379970501,0.0025,0.25,1,0,NA,0.25,0,0
+7648,-0.0157300210878384,0.085,8.5,3,79.7317459739601,0.882903981264637,7.5,10.1780490875244,0
+7649,-0.0577916666983219,0.0025,0.25,1,0,NA,0.25,0,0
+7650,0.00577980269506952,0.11,11,4,75.2577836454657,0.71150926207106,5.25,1.00323035500266,0
+7651,-0.0270064028047636,0.0575,5.75,3,70.7498194166717,0.793692897141173,3,3.00617980957031,0
+7652,-0.015006438622313,0.0575,5.75,3,70.7469260159449,0.793692897141173,3.25,3.88976569797682,0
+7653,0.0175047862321117,0.19,19,5,80.0509434981206,0.723604201216142,6.75,2.19550203022204,0
+7654,-0.031250591994376,0.0325,3.25,4,49.0805680465096,0.598047660063164,1.5,5.54542702894944,0
+7655,-0.00743353756632132,0.02,2,2,52.6315789473684,0.795918367346939,1,10.2151999473572,0
+7656,-0.0062033097771473,0,0,0,NA,NA,0,NA,NA
+7657,-0.00322211522387079,0.08,8,4,74.4142119497402,0.770066889632107,4.75,1.47097086906433,0
+7658,-0.0777239606989315,0,0,0,NA,NA,0,NA,NA
+7659,-0.0537557978523046,0,0,0,NA,NA,0,NA,NA
+7660,-0.0207927010254934,0.28,28,1,95.316724394494,0.931243124312431,28,0.3125,0
+7661,0.105034892708063,0.975,97.5,1,99.9329506995597,0.783783783783786,97.5,0.358974358974359,0
+7662,0.0360582669839641,0.4175,41.75,1,97.1176501838512,0.966557048102113,41.75,0.359281437125749,0
+7663,-0.014943464952521,0,0,0,NA,NA,0,NA,NA
+7664,-0.0240837582042889,0.0775,7.75,2,79.0421343534766,0.826558265582656,5.25,7.2589183315154,0
+7665,0.0529124925243377,0.5625,56.25,1,98.2456140350877,0.956462585034013,56.25,14.5446233876546,0
+7666,0.130945277523715,0.99,99,1,99.9734851828463,1,99,35.4059678906142,0
+7667,0.205615317374468,1,100,1,100,NA,100,49.2517781829834,0
+7668,0.255948194637895,1,100,1,100,NA,100,107.35297545433,50
+7669,0.174696949794889,0.9975,99.75,1,99.9934086913499,0.472295514511877,99.75,130.373547661573,85
+7670,0.068146391431801,0.9125,91.25,1,99.7534323937872,0.718833988009097,91.25,44.6000331199332,0
+7671,0.0796823666681303,0.775,77.5,1,99.2846122710835,0.961948249619483,77.5,37.318536943005,0
+7672,-0.0397575679185684,0.0975,9.75,1,88.4075627573592,0.931813339015555,9.75,6.2683233603453,0
+7673,-0.0102499459493993,0.17,17,2,89.5339464693708,0.888630150855523,15,12.6177814988529,0
+7674,0.0547759621837758,0.555,55.5,1,98.1983573135366,0.924008033436465,55.5,10.1033219002389,0
+7675,0.0135474593096738,0.0975,9.75,5,71.9952063366412,0.676113360323887,4.25,12.1153940054087,0
+7676,0.00334510025555872,0.01,1,1,52.6315789473684,1,1,77.5806217193604,74.3303451538086
+7677,0.0614672787916788,0.48,48,1,97.6664438264523,0.978392394122731,48,87.4772569934527,45.276927947998
+7678,0.119939304850996,0.945,94.5,1,99.849005264488,0.873209078229999,94.5,97.2229643423091,58.5234985351562
+7679,0.0944362072134391,0.7275,72.75,1,99.0925222972574,0.973164718313402,72.75,55.5053520595905,0
+7680,0.0175594779791481,0.205,20.5,3,88.4085589991588,0.713728041639558,14.5,4.77784184711735,0
+7681,0.00814088556640854,0.17,17,5,80.3565785591458,0.767135769970639,7,4.50097426246194,0
+7682,0.0229616252054257,0.0875,8.75,2,82.5284527513247,0.773264052905054,7,4.11386408124651,0
+7683,-0.0702056257247204,0.03,3,1,74.8763016215986,1,3,33.6772365570068,25
+7684,-0.0352604369692199,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,52.4483669825963,46.0977210998535
+7685,-0.0311761131696403,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+7686,-0.00940507741906913,0.12,12,2,83.7764057650598,0.778270509977827,6,0.625,0
+7687,0.00775587239877495,0.16,16,3,86.4329459175062,0.883078231292517,12.25,5.71449249982834,0
+7688,0.0143625819203953,0.13,13,4,78.0657677866157,0.780446855224073,5.75,4.21017734821026,0
+7689,-0.0216600007858506,0,0,0,NA,NA,0,NA,NA
+7690,-0.0501841831426464,0,0,0,NA,NA,0,NA,NA
+7691,-0.022809346612521,0,0,0,NA,NA,0,NA,NA
+7692,0.00245809341982749,0.3075,30.75,1,95.7718985824481,0.941720224700911,30.75,3.04758385138783,0
+7693,0.0346739179920951,0.3125,31.25,2,92.2954495184537,0.859030837004405,24.75,1.69941125488281,0
+7694,0.0159891603728829,0.15,15,8,70.4145565598467,0.649321266968326,4.75,2.59408251444499,0
+7695,0.0320662071564584,0.4325,43.25,4,94.2447641155587,0.784569069089804,36.25,1.34846399560829,0
+7696,0.0905696979598724,0.79,79,1,99.3416426267051,0.896132949824225,79,1.54857686199719,0
+7697,0.0615883567095443,0.635,63.5,2,98.3411878297721,0.810061010705652,63,1.28092653169407,0
+7698,0.0167427369511097,0.285,28.5,2,94.5188495595873,0.911738746690203,28,0.87719298245614,0
+7699,-0.0606698123574461,0.0325,3.25,1,76.0684107249879,1,3.25,0.769230769230769,0
+7700,-0.162720876950771,0,0,0,NA,NA,0,NA,NA
+7701,0.0053042173365975,0.0475,4.75,3,70.2359451412428,0.710381029957462,3.75,5.44708121450324,0
+7702,-0.000393019634557277,0.0025,0.25,1,0,NA,0.25,5,5
+7703,-0.00113805275614141,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,10.2051760355632,5
+7704,0.00927572486529698,0.04,4,2,74.2500702543702,0.826388888888889,3.75,0.625,0
+7705,0.012986306763205,0.0675,6.75,1,85.0052537126447,0.825425525282125,6.75,7.19695027669271,0
+7706,0.00586886966229486,0,0,0,NA,NA,0,NA,NA
+7707,0.00237859656564524,0.1125,11.25,3,84.0807996006102,0.792438843587843,9.75,2.6285393608941,0
+7708,0.0135675522283054,0.13,13,5,79.0521588481821,0.767531964354901,8,13.4664488205543,0
+7709,0.0341890804447758,0.3675,36.75,4,91.011162174242,0.753148096448565,20.25,2.96641752022464,0
+7710,0.0539807486943027,0.5425,54.25,1,98.1174291231355,0.88097170372775,54.25,2.4919562801238,0
+7711,-0.0146202546077257,0,0,0,NA,NA,0,NA,NA
+7712,-0.0293878031682107,0,0,0,NA,NA,0,NA,NA
+7713,-0.0373050248920481,0.0025,0.25,1,0,NA,0.25,10,10
+7714,0.0224729562211724,0.3125,31.25,3,91.5008109862029,0.82058470164197,21.75,1.97165071105957,0
+7715,0.0855365596781485,0.83,83,1,99.48609157949,0.662257247396567,83,2.87292848724917,0
+7716,0.0380457343728631,0.4675,46.75,1,97.5655534302407,0.924014220195935,46.75,3.64782355813419,0
+7717,-0.0516672250517877,0.0025,0.25,1,0,NA,0.25,39.0512504577637,39.0512504577637
+7718,-0.132159737758338,0,0,0,NA,NA,0,NA,NA
+7719,-0.109937109501043,0,0,0,NA,NA,0,NA,NA
+7720,-0.0434006283894996,0,0,0,NA,NA,0,NA,NA
+7721,0.0240097842855312,0.2175,21.75,4,88.4611325694417,0.835102545604452,17.25,3.68312686613236,0
+7722,0.0417112975360294,0.28,28,5,87.2620146075245,0.793729372937294,16,5.8885361467089,0
+7723,0.0172723765944829,0.2375,23.75,6,85.5196493011941,0.737704918032787,17.75,3.88010500857705,0
+7724,0.0738332921173424,0.7425,74.25,3,97.9417365861828,0.736005696719176,69.75,0.576475432424834,0
+7725,0.0204712185644894,0.4725,47.25,1,97.606389816281,0.967501692620176,47.25,3.09243820836304,0
+7726,-0.0465284734749309,0,0,0,NA,NA,0,NA,NA
+7727,-0.0245028471211117,0,0,0,NA,NA,0,NA,NA
+7728,0.0175094684309261,0.1575,15.75,4,81.078106492305,0.805772862152684,10.25,21.8692438337538,5
+7729,0.0178241049574081,0.02,2,2,52.9470541148176,0.693877551020408,1.25,38.7373280525208,31.6227760314941
+7730,-0.0191123108936745,0.0025,0.25,1,0,NA,0.25,160.312194824219,160.312194824219
+7731,-0.017576963888132,0.0075,0.75,1,44.4894453484604,1,0.75,185.687723795573,183.371200561523
+7732,0.022307256022363,0.31,31,1,95.8102472617487,0.922705314009662,31,202.801851703275,183.575592041016
+7733,0.0473965824193147,0.41,41,4,95.0401802286867,0.848467841508587,39,150.442625836628,93.4077072143555
+7734,-0.0419162235240219,0.0075,0.75,1,44.4894453484604,1,0.75,39.3727963765462,36.0555114746094
+7735,-0.0522299250151264,0.0875,8.75,4,74.3858032596207,0.659896079357582,5.25,29.4175587790353,5
+7736,0.0145260616234555,0.1625,16.25,5,83.0140523873285,0.735834103817197,11.25,10.8694257882925,0
+7737,0.00468151087643037,0.06,6,5,59.1248502972104,0.58006718924972,2.25,6.68207295735677,0
+7738,0.000409435747169482,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,4.07650484357561,0
+7739,-0.11668591201189,0.05,5,1,81.7256002368443,0.762308998302207,5,2,0
+7740,-0.0610380328842621,0.0075,0.75,1,44.4894453484604,1,0.75,94.3646697998047,90.1387786865234
+7741,-0.0244749583560042,0,0,0,NA,NA,0,NA,NA
+7742,-0.0153917634798927,0,0,0,NA,NA,0,NA,NA
+7743,-0.0199059800198302,0,0,0,NA,NA,0,NA,NA
+7744,-0.00921936050417571,0,0,0,NA,NA,0,NA,NA
+7745,0.0175556322166976,0.225,22.5,2,93.3139844679296,0.935884592266079,22.25,26.0815716001723,0
+7746,-0.00927410811285881,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,14.2694316440158,0
+7747,0.00543543148784011,0.0275,2.75,1,73.5251216233933,1,2.75,36.993504264138,29.1547584533691
+7748,0.0154445847329589,0.2625,26.25,1,94.9905255479102,0.95695453322572,26.25,58.1667081560407,32.0156211853027
+7749,0.0609109477140009,0.465,46.5,2,97.0428498328112,0.891327972179961,46,28.9175115298199,0
+7750,0.00595231314362621,0.015,1.5,3,33.091239449605,0.274836838288615,0.75,1.66666666666667,0
+7751,-0.0696545170928584,0.0025,0.25,1,0,NA,0.25,5,5
+7752,-0.0843651806483103,0,0,0,NA,NA,0,NA,NA
+7753,0.0105848673168475,0.1475,14.75,4,80.0419568674648,0.781496176183083,8,12.8994425757457,0
+7754,-0.000816146424331237,0.1,10,5,69.5523410448476,0.66832504145937,4.25,1.22855339050293,0
+7755,0.0117181967421493,0.0875,8.75,3,78.9683566543029,0.811053377420879,6.75,0.428571428571429,0
+7756,-0.00475911182538766,0.035,3.5,2,65.3750124249461,0.689119170984456,2,3.00507627214704,0
+7757,-0.0233409984805621,0.09,9,1,87.719298245614,0.835164835164835,9,1.25,0
+7758,-0.0147918558171659,0.1275,12.75,2,89.2787925670875,0.868260712050851,12.5,98.2169339049096,82.006103515625
+7759,0.00977980611816747,0.0825,8.25,3,77.921393922917,0.737612271672217,6,26.6903717156613,0
+7760,-0.0269008384190602,0.035,3.5,2,65.3750124249461,0.792746113989637,2,4.5409916469029,0
+7761,0.0813523213780718,0.8575,85.75,1,99.5794816088838,0.718431882174572,85.75,1.37531814908842,0
+7762,0.0210206913343245,0.2625,26.25,1,94.9905255479102,0.870863599677159,26.25,1.89659176781064,0
+7763,-0.00206287585802784,0,0,0,NA,NA,0,NA,NA
+7764,0.00141215590077081,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,27.6929550170898,20
+7765,-0.0648876666623619,0,0,0,NA,NA,0,NA,NA
+7766,0.089151009668567,0.805,80.5,1,99.3970714465752,0.949392712550608,80.5,34.8628772474964,0
+7767,0.175871150172316,0.945,94.5,1,99.849005264488,0.797134525167998,94.5,25.0837663922991,0
+7768,0.257493139524013,1,100,1,100,NA,100,57.6074367809296,0
+7769,0.15709375159815,1,100,1,100,NA,100,112.926909790039,65.192024230957
+7770,0.0985285475384444,0.95,95,1,99.8632718311308,0.750346740638003,95,97.4874233747783,50
+7771,0.072732571673987,0.7275,72.75,1,99.0925222972574,0.926202975361857,72.75,92.4382284367617,53.8516464233398
+7772,0.00827046585182529,0.2025,20.25,1,93.5672514619883,0.878091257401602,20.25,10.7513420670121,0
+7773,0.0405824309442323,0.5975,59.75,1,98.4542502383879,0.938860866786166,59.75,7.78241543789788,0
+7774,0.0416147442147849,0.5675,56.75,3,97.4464556691254,0.868814823924897,55.75,0.198237885462555,0
+7775,0.016410454319921,0.365,36.5,3,94.6427010798896,0.899731634669262,34.75,1.14065533468168,0
+7776,0.0472519232612103,0.5875,58.75,2,97.9836218207782,0.784634499896459,58,3.19427676099412,0
+7777,0.0515948060360097,0.6925,69.25,1,98.9385077039357,0.937460913070669,69.25,11.8899441935956,0
+7778,0.0758029215130955,0.94,94,1,99.8346250196906,0.579242636746143,94,26.0899858373277,0
+7779,0.166503379317001,0.9825,98.25,1,99.9533339757335,0.387207966296436,98.25,44.8625698914661,0
+7780,0.189594409102574,0.925,92.5,2,99.5366305846618,0.904897765097479,92.25,36.2987036215292,0
+7781,0.0906877591669036,0.66,66,3,96.2652955202374,0.845513963161022,55,20.3293028022304,0
+7782,-0.00041949083803047,0.175,17.5,4,81.7823012702508,0.773343187977334,10,10.7540166309902,0
+7783,0.0107738835290365,0.22,22,3,88.6233947163119,0.828515433610975,14,31.1123842326078,14.1421356201172
+7784,-0.0195182250778907,0.0525,5.25,2,76.654033574152,0.901055408970976,4.75,59.6519039699009,49.2442893981934
+7785,0.000242097358641331,0.065,6.5,3,73.3352801245385,0.739141776444502,4.75,9.20335476215069,0
+7786,-0.0293300467731751,0.02,2,2,56.0496280993022,0.591836734693878,1.5,40.0956892967224,25
+7787,0.050763607986994,0.58,58,1,98.352293007383,0.92851644121852,58,38.6990984390522,0
+7788,-0.0273325960530815,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,2.43872397286551,0
+7789,-0.024048734678945,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0
+7790,-0.0138344891963061,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.34912618001302,0
+7791,-0.0110243287133198,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,55.6526445661272,50
+7792,0.0372295622719093,0.325,32.5,3,89.2149971273742,0.806219721831536,14.5,29.4931863931509,0
+7793,-0.065234857521682,0.03,3,1,74.8763016215986,0.757428744693754,3,2.25592231750488,0
+7794,-0.0049371996238915,0.115,11.5,6,68.2044949394597,0.623352165725047,3.75,1.6304347826087,0
+7795,0.0633868909057492,0.68,68,3,97.3988048314619,0.779843444227006,62.75,2.41261170892154,0
+7796,0.0637747357525223,0.6825,68.25,2,98.1022041440963,0.735482283464567,66,1.1993641276936,0
+7797,0.0502286081279453,0.55,55,2,97.6538015107445,0.929539295392954,54.5,1.14739275845614,0
+7798,-0.0361596775379257,0,0,0,NA,NA,0,NA,NA
+7799,-0.200720182480291,0,0,0,NA,NA,0,NA,NA
+7800,-0.10370697067905,0,0,0,NA,NA,0,NA,NA
+7801,0.00863123331746465,0.03,3,4,48.88668404307,0.454214675560946,1.5,3.94946193695068,0
+7802,0.00609907929088877,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,3.37009707364169,0
+7803,-0.00774941695805865,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+7804,0.00640761685392135,0.0325,3.25,5,43.874474129931,0.310938845822567,1.25,8.13160852285532,0
+7805,0.00723502378223202,0.02,2,2,52.6315789473684,0.693877551020408,1,4.52665042877197,0
+7806,0.00429636211155639,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,5.6502815246582,0
+7807,-0.0117345833329455,0.105,10.5,2,82.4490886656591,0.811157447478165,6.75,0,0
+7808,-0.00506523127042783,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,4.57559331258138,0
+7809,0.0430780935163057,0.4775,47.75,5,91.8660062720933,0.76211715730003,32.5,1.24756162953002,0
+7810,0.0825681159296801,0.775,77.5,1,99.2846122710835,0.840182648401827,77.5,2.20010788209977,0
+7811,-0.0259460204487891,0.01,1,2,34.5233986084855,0.494949494949495,0.75,5.59016990661621,0
+7812,-0.0394768915977329,0,0,0,NA,NA,0,NA,NA
+7813,0.00584838115915772,0.2075,20.75,1,93.7090252642431,0.948496748857272,20.75,2.81358321316271,0
+7814,0.0642559742656886,0.625,62.5,2,97.3917050897527,0.817663817663818,60,1.35442698669434,0
+7815,0.118641672743543,0.9275,92.75,2,99.3171753541337,0.607593074017756,91.75,5.17863877185914,0
+7816,0.0946972000226378,0.9475,94.75,1,99.8561526638156,0.496655407642889,94.75,3.2207253639805,0
+7817,0.0167290301129287,0.295,29.5,1,95.572898758965,0.946974216212633,29.5,2.82810431011653,0
+7818,-0.121758491233777,0,0,0,NA,NA,0,NA,NA
+7819,-0.0464522205786307,0,0,0,NA,NA,0,NA,NA
+7820,0.0121125874797144,0.18,18,1,92.8577757686571,0.903975417706933,18,4.44979945818583,0
+7821,0.0448368994472548,0.355,35.5,4,90.5905990421591,0.791293977340489,22.75,1.65115923277089,0
+7822,0.0869111175462604,0.93,93,1,99.8055173961557,0.817629179331307,93,0.997884955457462,0
+7823,0.0672391676114057,0.7675,76.75,1,99.2554721522595,0.851173866130893,76.75,1.00813509664629,0
+7824,0.0613900627172552,0.485,48.5,5,91.1080000815063,0.703344120819849,27.5,5.17866658672844,0
+7825,0.000884617640185752,0.16,16,2,86.7617302364669,0.798044217687075,8.5,1.75111043453217,0
+7826,-0.0274218375919372,0,0,0,NA,NA,0,NA,NA
+7827,-0.00676058661792922,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0
+7828,-0.0201760577736741,0.005,0.5,1,30.8308651382582,1,0.5,37.5533809661865,36.0555114746094
+7829,-0.0262065836297734,0,0,0,NA,NA,0,NA,NA
+7830,-0.0140382882422455,0.08,8,2,79.565022038198,0.874581939799331,5.5,15.0581938028336,0
+7831,-0.0195320120970973,0.02,2,1,68.0470115164975,0.897959183673469,2,7.94673538208008,0
+7832,-0.0293171850265935,0,0,0,NA,NA,0,NA,NA
+7833,-0.0214379736013507,0,0,0,NA,NA,0,NA,NA
+7834,0.0140295468122531,0.15,15,7,78.0346437809969,0.660633484162896,8.75,96.1529141108195,36.4005508422852
+7835,-0.0132862086603564,0.0725,7.25,4,70.5235197449741,0.678843837816138,3.5,20.756994707831,0
+7836,0.0011471852366958,0.095,9.5,3,77.1128479786884,0.701832851004122,4.75,7.80523064261989,0
+7837,-0.00434076616685161,0,0,0,NA,NA,0,NA,NA
+7838,-0.00373933252937604,0.01,1,2,30.8308651382582,0.494949494949495,0.5,22.0197010040283,14.1421356201172
+7839,-0.0745279089298128,0,0,0,NA,NA,0,NA,NA
+7840,-0.017822453049921,0,0,0,NA,NA,0,NA,NA
+7841,-0.0232386561093153,0,0,0,NA,NA,0,NA,NA
+7842,-0.00822870162135132,0,0,0,NA,NA,0,NA,NA
+7843,-0.0150177739563014,0,0,0,NA,NA,0,NA,NA
+7844,-0.0203355264619313,0,0,0,NA,NA,0,NA,NA
+7845,-0.0232994407667866,0.0125,1.25,1,58.1880425789518,0.594936708860759,1.25,25.9683685302734,25
+7846,0.0304239128602163,0.2,20,4,86.3500766314091,0.832746478873239,16,28.3422355413437,10
+7847,-2.94375482189935e-05,0.065,6.5,1,84.6193541959806,0.921742532933351,6.5,43.7114862295297,33.5410194396973
+7848,0.031622499270452,0.565,56.5,1,98.2611567869712,0.934474567941682,56.5,77.064149822809,40
+7849,0.115322748919207,0.6725,67.25,2,98.5232586362268,0.824654221147305,66.75,25.5561713746932,0
+7850,-0.0415418296921234,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0
+7851,-0.122780465511605,0,0,0,NA,NA,0,NA,NA
+7852,-0.0521550363593496,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,2.22222222222222,0
+7853,-0.0232615629756765,0.1675,16.75,2,88.9637938040554,0.835733169066502,13.75,29.4662461636671,11.1803398132324
+7854,-0.0674399556723802,0,0,0,NA,NA,0,NA,NA
+7855,0.0615389243735956,0.375,37.5,2,94.3293087475385,0.941818181818182,33.25,14.3831757481893,0
+7856,-0.0016041325077731,0.195,19.5,4,86.017676421513,0.783958952200918,13.75,3.47607517242432,0
+7857,-0.0300761437185429,0.05,5,2,72.004242986134,0.728353140916808,3,9.49510154724121,0
+7858,0.0454961897816975,0.6625,66.25,1,98.796893507011,0.958268127282212,66.25,41.4272593948076,0
+7859,0.0248771094528638,0.425,42.5,2,96.2504583648408,0.949993054590915,41.75,29.1032335169175,0
+7860,0.049071415567596,0.3275,32.75,1,96.0662730877785,0.844457233516355,32.75,10.6292426422352,0
+7861,0.101125759319402,0.885,88.5,1,99.6684841741817,0.714471122647631,88.5,1.04035104870123,0
+7862,0.0208574396869153,0.055,5.5,3,69.7922037523639,0.751011515717398,3.5,13.7165735418146,0
+7863,0.0283569132631419,0.22,22,2,89.4828254639597,0.795851706679732,11.75,24.2425658269362,0
+7864,-0.0657437956008835,0,0,0,NA,NA,0,NA,NA
+7865,-0.0346147745047347,0.0925,9.25,1,87.9580013362782,0.855484803323849,9.25,60.4742540926547,25
+7866,0.125150915342383,0.9775,97.75,1,99.9397711850087,0.760407307577119,97.75,66.4787467166286,15.8113880157471
+7867,0.0598987033442586,0.6775,67.75,3,96.2770713850364,0.853794489879837,60.75,3.88455603483418,0
+7868,0.104026588905253,0.8725,87.25,1,99.6285502360822,0.952465834818776,87.25,19.7552213313586,0
+7869,0.137514996463433,0.975,97.5,1,99.9329506995597,0.891891891891893,97.5,41.4860226949056,0
+7870,0.145566029250622,1,100,1,100,NA,100,44.3275401115418,0
+7871,0.107268326850608,0.9075,90.75,1,99.7382749359844,0.984263739722255,90.75,53.5366117041301,0
+7872,0.0885852793575032,0.6525,65.25,1,98.7475319937876,0.811684394815436,65.25,7.68472564083406,0
+7873,0.0530458961633303,0.65,65,1,98.735013968989,0.894397183924905,65,4.32807327417227,0
+7874,0.00613061165000545,0.2675,26.75,1,95.0869843258351,0.886823816513113,26.75,1.00367797423746,0
+7875,0.0213316384792415,0.3075,30.75,4,89.2559173864783,0.747454307037283,20.25,2.18641643989377,0
+7876,0.0276054197413396,0.4025,40.25,2,93.9552581592576,0.864299445889404,32,3.70587106076827,0
+7877,0.0453098379234143,0.6275,62.75,1,98.619006283181,0.902898757675282,62.75,6.00108792582356,0
+7878,0.0619883216542075,0.8375,83.75,1,99.5120172135984,0.873617693522907,83.75,5.49234083374934,0
+7879,0.207116901362315,0.9875,98.75,1,99.9667936270881,0.786666666666663,98.75,47.9722848433482,0
+7880,0.211717332284315,0.9575,95.75,2,99.2574007654579,0.837951709609463,94.75,40.0612282018437,0
+7881,0.0752532955420611,0.655,65.5,2,97.7574105798234,0.822899141060834,61.75,38.3726694747692,10
+7882,0.00298709078995671,0.2125,21.25,2,90.5501864819069,0.882266372332597,18,27.4854546266444,10
+7883,-0.0165656345111347,0.0025,0.25,1,0,NA,0.25,49.2442893981934,49.2442893981934
+7884,-0.0447522290270717,0,0,0,NA,NA,0,NA,NA
+7885,0.0183914476961763,0.1,10,5,73.1991515184565,0.718076285240464,5.75,14.9257367134094,0
+7886,0.0118374878013856,0.2225,22.25,3,89.1252425375694,0.822038868328985,16.25,55.6272682447112,0
+7887,0.0136863625024853,0.465,46.5,1,97.5448886830867,0.967398391653988,46.5,69.4980250943092,21.2132034301758
+7888,-0.150996714467183,0,0,0,NA,NA,0,NA,NA
+7889,-0.124940647800249,0.02,2,1,68.0470115164975,0.795918367346939,2,0,0
+7890,-0.0629794610309909,0,0,0,NA,NA,0,NA,NA
+7891,-0.0363868317231299,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0
+7892,-0.03166739914137,0.01,1,2,34.5233986084855,0.494949494949495,0.75,42.6709747314453,36.0555114746094
+7893,-0.00962383096652047,0.08,8,1,86.6550847056172,0.874581939799331,8,3.07035648822784,0
+7894,-0.00385231389491082,0.2075,20.75,2,89.6805787783476,0.776819245048177,13.75,0.120481927710843,0
+7895,0.0269759858521411,0.425,42.5,1,97.1898422226593,0.899986109181831,42.5,0.735294117647059,0
+7896,0.0563594534351739,0.615,61.5,2,98.255067367573,0.779785431959345,61,0.536874259390482,0
+7897,0.00427213343711628,0.01,1,1,52.6315789473684,1,1,2.5,0
+7898,-0.0331257414279025,0.075,7.5,2,78.4849549099018,0.867622724765582,5.25,3.88342717488607,0
+7899,-0.115870209031546,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0
+7900,0.020452703259798,0.1925,19.25,3,85.8849463945696,0.826989619377163,12.75,3.7379945532068,0
+7901,-0.00222387661860921,0.025,2.5,2,61.4794562732788,0.763313609467456,2,12.5784395217896,0
+7902,0.0101285628459664,0.035,3.5,3,61.2116969235008,0.740932642487047,2.5,5.50175653185163,0
+7903,0.00279655200616617,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0
+7904,0.0148623182896335,0.0525,5.25,4,65.4471562634078,0.736147757255937,3,9.04684502737863,0
+7905,-0.00181780572542266,0.015,1.5,1,62.2896536353828,1,1.5,0.833333333333333,0
+7906,-0.00906382829751237,0.0625,6.25,3,72.2798906971895,0.786666666666667,4.75,10.1204600524902,0
+7907,0.00825698447980358,0.11,11,3,81.6624200981018,0.832979046462192,8.75,0.956160632046786,0
+7908,0.0654971677465801,0.435,43.5,2,95.0039986218054,0.88421139690679,38.25,3.40650444469233,0
+7909,0.0787907783854826,0.615,61.5,2,95.7903143163558,0.853190287972897,36.75,1.72604486418933,0
+7910,0.0764627992147871,0.6875,68.75,1,98.9155506404681,0.789147286821705,68.75,2.46299292824485,0
+7911,0.0654009746371594,0.5125,51.25,3,96.5293185252115,0.897705094555488,49.75,3.80072188028475,0
+7912,0.0446290229485749,0.4425,44.25,1,97.3510944420755,0.923204563843063,44.25,3.22937155039297,0
+7913,0.0412018747874754,0.41,41,3,94.656394653445,0.870917050173981,37.25,2.63563274755711,0
+7914,0.0764305439860436,0.7325,73.25,1,99.1136185490844,0.959292365622403,73.25,3.92258752816366,0
+7915,0.083491458526114,0.71,71,2,97.5924461812037,0.715872400878213,61.25,5.85403519617,0
+7916,0.133229690254666,0.91,91,1,99.745869280411,0.709724238026124,91,1.70466418842693,0
+7917,0.036240494925587,0.3525,35.25,4,89.7245768189417,0.748585795097423,18.75,3.97372923506067,0
+7918,-0.0291959566990408,0.045,4.5,2,74.2265412165683,0.689742098119062,4,5.7722110748291,0
+7919,-0.02142229695688,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,8.17796948750814,0
+7920,0.0521403682755772,0.43,43,2,95.0155994520314,0.872710166583652,36.75,3.63946658511495,0
+7921,0.0566448874375783,0.5375,53.75,4,94.5494371427394,0.864864864864865,46.25,0.857974935132404,0
+7922,0.0798965699411929,1,100,1,100,NA,100,0.425,0
+7923,0.0626534430887841,0.665,66.5,1,98.8090595843688,0.952143092154458,66.5,1.910042698222,0
+7924,0.0320001858323849,0.25,25,3,93.2747572949174,0.785185185185185,24,5.86842887878418,0
+7925,0.0156074693694063,0.31,31,2,92.3728328759999,0.838969404186795,21.25,0.856558092178837,0
+7926,-0.00803952277099597,0.0025,0.25,1,0,NA,0.25,10,10
+7927,-0.00873474504420301,0.02,2,2,52.9470541148176,0.693877551020408,1.25,10.3259069919586,0
+7928,-0.0204796305554919,0,0,0,NA,NA,0,NA,NA
+7929,-0.0255217456741957,0,0,0,NA,NA,0,NA,NA
+7930,-0.0330639957898529,0,0,0,NA,NA,0,NA,NA
+7931,0.00163434229341874,0.1225,12.25,2,87.0741905273195,0.755799755799756,10.75,4.62155793637645,0
+7932,-0.00798564360333785,0.03,3,2,63.1082577609157,0.818071558520315,2,7.72633488972982,0
+7933,-0.00337801686171133,0,0,0,NA,NA,0,NA,NA
+7934,-0.00159702905156337,0.04,4,2,73.8471596962463,0.869791666666667,3.75,86.7928023338318,50.9901962280273
+7935,0.00510918338048214,0.035,3.5,4,50.3102396173331,0.637305699481865,1.5,29.9221158708845,5
+7936,-0.0322444241075937,0,0,0,NA,NA,0,NA,NA
+7937,-0.0269172199265358,0.0225,2.25,1,70.1754385964912,1,2.25,5.91682306925456,0
+7938,0.0132503948293015,0.165,16.5,2,86.9931628566374,0.906274407706327,9.5,23.749348524845,0
+7939,0.0100996781188951,0.075,7.5,3,79.6851942941466,0.669056811913955,6.25,35.4563944498698,5
+7940,-0.0419921104149398,0,0,0,NA,NA,0,NA,NA
+7941,-0.00810866841031384,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324
+7942,-0.0151580458947365,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471
+7943,-0.0175124748317194,0.03,3,2,62.2896536353828,0.636143117040631,1.5,7.83856630325317,0
+7944,-0.0289864061708795,0.0025,0.25,1,0,NA,0.25,15,15
+7945,-0.00625654212570225,0.0075,0.75,2,22.7777236956606,1,0.5,21.5737864176432,20
+7946,-0.00381007969721395,0.0025,0.25,1,0,NA,0.25,35.355339050293,35.355339050293
+7947,-0.0248563960169122,0.035,3.5,2,72.4166359805877,0.740932642487047,3.25,0.714285714285714,0
+7948,0.0545845757890493,0.7025,70.25,1,98.9836843550327,0.949070537305831,70.25,28.1974496060843,0
+7949,0.0236650507010927,0.4,40,2,93.4806983168694,0.892290249433107,23,7.82389323711395,0
+7950,-0.0518206912708411,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,0.675675675675676,0
+7951,-0.125793114416301,0,0,0,NA,NA,0,NA,NA
+7952,-0.0195228129796305,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,0.652173913043478,0
+7953,-0.0270519507284189,0.2325,23.25,1,94.3478768975745,0.913661159295161,23.25,16.3705236988683,0
+7954,-0.0393268427310795,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,27.7053531646729,22.3606796264648
+7955,-0.0239664620346048,0.105,10.5,2,82.994051573574,0.858368085608624,8.75,25.8143088476998,10
+7956,-0.0554513814222082,0,0,0,NA,NA,0,NA,NA
+7957,-0.00997396865106566,0.08,8,1,86.6550847056172,0.95819397993311,8,32.1171750426292,11.1803398132324
+7958,0.0440265060068123,0.44,44,3,92.8009273470538,0.873626373626374,28.5,21.3048977526751,0
+7959,0.00978490162465278,0.2675,26.75,1,95.0869843258351,0.978779465596209,26.75,15.6868011617215,0
+7960,0.0675205937772989,0.5675,56.75,3,95.1634665497464,0.885212970934285,48,13.0320565227895,0
+7961,0.064386693282313,0.6325,63.25,2,98.0838668222374,0.902408220672235,62.5,0.843393936458784,0
+7962,0.0286807416927513,0.1175,11.75,2,87.7708522958867,0.872521246458923,11.25,43.2377355859635,33.5410194396973
+7963,0.0149519535279978,0.1625,16.25,2,90.4828964681441,0.926033549068815,15.75,21.1382167229286,5
+7964,-0.0619882749579847,0,0,0,NA,NA,0,NA,NA
+7965,-0.00899109366830089,0.2525,25.25,1,94.7890822083159,0.955653282580979,25.25,20.5327866053817,5
+7966,0.10832003604457,0.7275,72.75,1,99.0925222972574,0.973164718313402,72.75,31.8750732133479,0
+7967,0.0726238101877971,0.84,84,1,99.5205818358949,0.960629921259842,84,0.643491676875523,0
+7968,0.0521958125854326,0.4975,49.75,2,96.6180239816953,0.94067602367566,48.25,21.5005240991487,0
+7969,0.0803753620921634,0.9225,92.25,1,99.7833767758384,0.815404494900549,92.25,3.85471573496253,0
+7970,0.0949097255431116,0.905,90.5,1,99.7306491449722,0.815597387629658,90.5,1.36109397424519,0
+7971,0.118592095410859,0.78,78,2,97.8838439811323,0.829931972789115,71.75,1.83776889091883,0
+7972,0.0925106086910091,0.725,72.5,2,96.5296423842362,0.80650542118432,37.5,5.55311191164214,0
+7973,0.0779917449504137,0.975,97.5,1,99.9329506995597,0.945945945945946,97.5,0.726369926257011,0
+7974,0.0551461421688873,0.7575,75.75,1,99.2159474776692,0.833896040587142,75.75,1.45934201231097,0
+7975,0.076141752791591,0.9025,90.25,1,99.7229916897507,0.685110211426001,90.25,1.07320334310347,0
+7976,0.0705101816452225,0.815,81.5,1,99.4331707829294,0.96484289167216,81.5,1.23706831668784,0
+7977,0.0467150789119478,0.61,61,1,98.5243747403739,0.904408457040036,61,2.02311315692839,0
+7978,0.146942482520826,0.8725,87.25,1,99.6285502360822,0.667260843731431,87.25,23.7726809766709,0
+7979,0.222664502710104,1,100,1,100,NA,100,82.1870262050629,35.355339050293
+7980,0.140107223154046,0.9375,93.75,1,99.8273917947966,0.79746835443038,93.75,42.8896466369629,0
+7981,0.0454675669315293,0.44,44,2,94.4164116242956,0.862637362637363,31.25,45.5197643366727,5
+7982,0.055370934104285,0.51,51,3,93.9538194597465,0.838457810564859,35,40.3989820012859,5
+7983,0.0137798366896095,0.155,15.5,3,82.0607068293579,0.780845934692089,9,27.7737333236202,5
+7984,-0.0279841890207899,0.005,0.5,2,0,1,0.25,2.5,0
+7985,-0.00739288886354188,0.05,5,2,74.2261567547482,0.728353140916808,3.75,14.663686466217,0
+7986,0.0264269284289912,0.3925,39.25,3,95.6072371693553,0.937128486511203,38.5,45.0295004024627,5
+7987,-0.103093157802796,0.005,0.5,1,30.8308651382582,1,0.5,95.0591926574707,93.9414672851562
+7988,-0.169238667534664,0,0,0,NA,NA,0,NA,NA
+7989,-0.13980161045678,0,0,0,NA,NA,0,NA,NA
+7990,-0.0814564909762703,0.12,12,1,90.0697297581677,0.902993348115299,12,87.7685283025106,55.2268028259277
+7991,-0.0789843164473132,0.0625,6.25,2,81.9184574206478,0.733333333333333,6,25.4491918182373,11.1803398132324
+7992,-0.0373252722021789,0,0,0,NA,NA,0,NA,NA
+7993,-0.0283540225247998,0.025,2.5,2,61.4794562732788,0.763313609467456,2,5.73606796264648,0
+7994,-0.00559802191071412,0.12,12,4,81.4197564019354,0.708980044345898,7.5,3.03219151496887,0
+7995,0.0377202598625445,0.3675,36.75,2,95.3490226405619,0.823677211748975,34.25,0.932456243605841,0
+7996,0.0384155106935395,0.3175,31.75,4,87.36069195198,0.777999777999778,15,3.22611149465005,0
+7997,0.0186700163405658,0.0925,9.25,3,75.5494140292896,0.765162805401255,3.75,32.352126095746,0
+7998,-0.00188991568351412,0.065,6.5,2,76.1058712989442,0.791313421155602,3.5,8.83919972639817,0
+7999,-0.0118246395075039,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,1.92307692307692,0
+8000,0.0569626046111261,0.7425,74.25,1,99.1551699664667,0.868002848359588,74.25,1.52260435470427,0
+8001,0.014208062331636,0.17,17,3,88.8467287656813,0.827882960413081,14.5,2.05095016255098,0
+8002,-0.00434059239833459,0.005,0.5,2,0,1,0.25,16.0355339050293,7.07106781005859
+8003,0.00753399106406505,0.0475,4.75,4,60.4713992101098,0.565571544936193,2.25,6.33276186491314,0
+8004,0.00674958329676883,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,13.4108108944363,5
+8005,-0.00485967335354871,0.04,4,3,64.2053482637619,0.652777777777778,2.75,6.89789438247681,0
+8006,0.0366359693853883,0.425,42.5,2,95.6235888242174,0.905542436449507,39.75,1.52854596306296,0
+8007,0.0757693819160977,0.6225,62.25,1,98.5923763102686,0.869255037944462,62.25,1.00199789024261,0
+8008,0.146412778189406,1,100,1,100,NA,100,0.025,0
+8009,0.11639182093204,0.9,90,2,99.1905961722782,0.912023460410557,89.25,0.431451320648193,0
+8010,0.0729748401994584,0.6525,65.25,4,95.3349098161165,0.717526592223154,44.25,2.20838502905835,0
+8011,0.0805163350515068,0.735,73.5,2,98.624726129264,0.890818519908561,72.75,0.75655240428691,0
+8012,-0.01012318122042,0.2725,27.25,3,88.3147334478266,0.783697036300521,15.25,3.57171949334101,0
+8013,0.070600384863792,0.7925,79.25,1,99.350989933666,0.846879155417657,79.25,3.81523834493258,0
+8014,0.105958841359243,0.92,92,1,99.7759364721822,0.713055954088953,92,1.87997690491054,0
+8015,0.0709814507508418,0.6925,69.25,2,96.8560571859034,0.812382739212007,52.5,3.23130663379435,0
+8016,0.0694213456357829,0.685,68.5,2,98.5294260051744,0.771477981594713,67.75,2.09487207788621,0
+8017,0.0808649534219876,0.745,74.5,2,98.9956058644408,0.727377582048862,74.25,1.76259056193717,0
+8018,0.046678067518551,0.4925,49.25,2,95.9333733985751,0.821850327282543,43,2.7482072181508,0
+8019,-0.00531124151017138,0.28,28,1,95.316724394494,0.903740374037404,28,1.13456310544695,0
+8020,0.0403105120075634,0.2575,25.75,4,85.8472211633261,0.767039767039767,11.75,0.825242718446602,0
+8021,0.0319083380410666,0.0375,3.75,3,63.0749157902665,0.574970484061393,2.25,3.80473785400391,0
+8022,0.066860520625487,0.68,68,3,97.6291989251198,0.847113502935421,65.5,3.0724080730887,0
+8023,0.0565104123305355,0.59,59,2,96.7188986333749,0.740058625076047,52.25,6.74601183099262,0
+8024,0.0920201637462924,0.72,72,1,99.0604668316969,0.940695835529784,72,9.88129448228412,0
+8025,0.0278646117261087,0.265,26.5,1,95.039096185713,0.935890586601133,26.5,1.38272209887235,0
+8026,-0.0033613994843472,0.025,2.5,3,52.9103541849425,0.684418145956607,1.75,11.088808631897,5
+8027,-0.020376396401989,0,0,0,NA,NA,0,NA,NA
+8028,-0.00814595077525155,0.035,3.5,1,77.1303955881659,0.844559585492228,3.5,167.488482883998,161.941360473633
+8029,0.0140338887943835,0.3925,39.25,1,96.8622433213934,0.977137631458619,39.25,131.521902728233,82.7647323608398
+8030,-0.0303166540977691,0,0,0,NA,NA,0,NA,NA
+8031,-0.0526291064778343,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,11.2417486826579,5
+8032,-0.117864129063819,0,0,0,NA,NA,0,NA,NA
+8033,0.000871348831278738,0.0025,0.25,1,0,NA,0.25,84.8528137207031,84.8528137207031
+8034,-0.00137483663678722,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,11.1768444606236,5
+8035,0.00669166166964033,0.14,14,2,86.3909378860604,0.856149604411412,11.25,8.30582863943917,0
+8036,-0.0183824867604562,0,0,0,NA,NA,0,NA,NA
+8037,-0.0363866828839673,0,0,0,NA,NA,0,NA,NA
+8038,-0.0193599236188311,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,10.492709118387,0
+8039,-0.0238940439740418,0.07,7,1,85.3702908942512,0.92831541218638,7,106.870580945696,98.6154174804688
+8040,-0.108432254283689,0,0,0,NA,NA,0,NA,NA
+8041,-0.116726760840975,0,0,0,NA,NA,0,NA,NA
+8042,-0.0510799925911488,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,13.1056310653687,5
+8043,-0.012608057583202,0.235,23.5,3,87.2079187172707,0.758792405851229,10.5,15.1133893195619,0
+8044,-0.0403336765510721,0.01,1,3,15.8692205350002,0.242424242424242,0.5,22.6678013801575,5
+8045,-0.00428926230921206,0.035,3.5,2,66.3658346452296,0.740932642487047,2.25,12.5684424809047,0
+8046,-0.0127645640008632,0.1575,15.75,3,82.3874685570685,0.708659293229026,6.5,2.00338418143136,0
+8047,-0.0219576576520558,0.13,13,5,79.2437134987664,0.793361746093246,9.25,1.57828976557805,0
+8048,-0.0418761980086856,0,0,0,NA,NA,0,NA,NA
+8049,-0.031848697333844,0,0,0,NA,NA,0,NA,NA
+8050,-0.07781428957358,0,0,0,NA,NA,0,NA,NA
+8051,-0.086850983183831,0,0,0,NA,NA,0,NA,NA
+8052,-0.0256274858392862,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,18.355418750218,10
+8053,-0.0625539510161616,0.0125,1.25,1,58.1880425789518,1,1.25,17.3245552062988,15
+8054,-0.0503537031059386,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,22.8773543039958,5
+8055,0.027907436052642,0.3675,36.75,2,93.1084456326365,0.870696621949248,22.25,28.7591315288933,0
+8056,0.00839414660109469,0.2075,20.75,3,90.0243145344873,0.83690637138136,18.75,24.0438772913921,0
+8057,0.0654075572909642,0.7375,73.75,1,99.1344998974781,0.86958386958387,73.75,32.4550223399017,0
+8058,0.139838229326415,0.815,81.5,1,99.4331707829294,0.83300373544276,81.5,30.1486213777694,0
+8059,0.0818749380899703,0.515,51.5,3,95.2252713596424,0.913865037280289,48,23.8480174610916,0
+8060,0.0144201603395413,0.26,26,2,90.9525396376271,0.869923399335164,16,5.12220489061796,0
+8061,0.0282630963345218,0.3425,34.25,3,90.0460288040292,0.811406844106464,18.75,6.85493498475012,0
+8062,-0.00359232231332953,0.05,5,3,72.4376371348174,0.66044142614601,4,41.5694669723511,31.6227760314941
+8063,0.0211883777922776,0.37,37,1,96.6105796155075,0.953142388566743,37,22.2030858220281,0
+8064,-0.054146861047484,0,0,0,NA,NA,0,NA,NA
+8065,0.0365531739935977,0.4925,49.25,1,97.7634684223253,0.951413725622511,49.25,5.10520214719821,0
+8066,0.0663049431669788,0.565,56.5,2,95.1862996684507,0.841646872525732,42.5,11.2031460736705,0
+8067,0.0852999094501138,0.9925,99.25,1,99.9801514397,0.823165340406723,99.25,3.63975285642994,0
+8068,0.0541712973163521,0.505,50.5,2,95.7733448055708,0.822222222222222,41,32.9114707059199,0
+8069,0.0659313076990657,0.7625,76.25,1,99.2358070072224,0.794965675057208,76.25,44.4162758623967,10
+8070,0.0796653813379817,0.8675,86.75,1,99.6123355042629,0.666359871145881,86.75,23.5113412268911,0
+8071,0.121499402173795,0.9075,90.75,1,99.7382749359844,0.65380227388961,90.75,1.26337946742034,0
+8072,0.0521847533014079,0.52,52,2,96.1703976244578,0.876184323858742,46.75,4.39449708278363,0
+8073,0.014808583278791,0.4175,41.75,1,97.1176501838512,0.894097318990023,41.75,1.09751060622895,0
+8074,0.0465747441420899,0.64,64,1,98.6842105263158,0.878472222222222,64,0.926058858633041,0
+8075,0.00967501403996721,0.3325,33.25,3,94.2355187663175,0.913331476150679,32,1.85920290839403,0
+8076,-0.0355007048134212,0.0625,6.25,3,74.2670551801863,0.786666666666667,4.75,2.73238067626953,0
+8077,0.0790555276347277,0.695,69.5,1,98.9498932220624,0.817850637522769,69.5,9.70084043543973,0
+8078,0.195648715263233,0.9775,97.75,2,99.5654811930382,0.760407307577119,97.25,36.7520819417656,0
+8079,0.169751760928193,0.925,92.5,2,99.5306276288476,0.923918212077984,92.25,85.5309842599405,21.2132034301758
+8080,0.0710652536494308,0.645,64.5,1,98.7097599330033,0.953343247893156,64.5,83.0347514041634,49.4974746704102
+8081,0.0350715093102235,0.3475,34.75,1,96.3348533717898,0.903460343319154,34.75,40.5523227719094,10
+8082,0.100709535694587,0.73,73,2,98.8099689819469,0.946029818525265,72.75,52.3428464262453,10
+8083,0.096412753974364,0.785,78.5,1,99.3228142317568,0.795725958516656,78.5,24.4888776305375,0
+8084,0.0118264957375141,0.35,35,2,94.5740702463183,0.921875,32.75,7.5348388671875,0
+8085,-0.0511317575050634,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,31.5384505135672,25
+8086,0.00687608060095954,0.2325,23.25,2,93.120449973425,0.937208115851026,22.75,0.559903954946867,0
+8087,-0.0776385101371488,0.205,20.5,1,93.6387867289635,0.913250921708957,20.5,0.0609756097560976,0
+8088,-0.150840357374727,0.0025,0.25,1,0,NA,0.25,0,0
+8089,-0.0534878121333531,0.19,19,1,93.1886455857599,0.907868067072047,19,86.9156970977783,71.0633544921875
+8090,0.0773258660454303,0.9625,96.25,1,99.898450616446,0.671232876712328,96.25,93.3565957800134,55
+8091,0.0278346355070607,0.54,54,1,98.1009071848445,0.967553536664503,54,42.5838823406785,0
+8092,-0.0424023275486979,0,0,0,NA,NA,0,NA,NA
+8093,-0.0421729826329101,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,9.3352555361661,0
+8094,-0.0348900544943172,0.1975,19.75,3,86.5377151342493,0.804183355585225,10.75,14.5971378857576,0
+8095,-0.00859935776246402,0.21,21,3,88.6089275314176,0.813099991504545,13.5,4.42340358098348,0
+8096,-0.024605488536763,0.12,12,3,82.0621913635739,0.861419068736142,10,25.4452607631683,0
+8097,0.0327050706703062,0.4225,42.25,2,95.9798331308157,0.944499944499944,41.25,48.7628924352883,11.1803398132324
+8098,-0.0136646594164995,0.0775,7.75,1,86.3573366287605,0.956639566395664,7.75,59.2192562472436,49.2442893981934
+8099,-0.0266246151464293,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3.41421356201172,0
+8100,0.0324974648195348,0.28,28,1,95.316724394494,0.834983498349835,28,2.56440619059971,0
+8101,0.00444688026815015,0.05,5,6,54.8612701736344,0.558573853989813,2.75,9.05495567321777,0
+8102,0.0211310160107314,0.0975,9.75,9,66.9107404418293,0.471553377370552,4.75,19.0027695680276,0
+8103,0.0129988578791313,0.0825,8.25,6,64.2376844695324,0.63669391462307,3.75,9.66605625730572,0
+8104,-0.0126020941414367,0,0,0,NA,NA,0,NA,NA
+8105,-0.0256018797321212,0,0,0,NA,NA,0,NA,NA
+8106,-0.0453456110105981,0.0625,6.25,1,84.2105263157895,0.92,6.25,1.2,0
+8107,-0.00460097120379032,0.12,12,3,79.8080371389783,0.639689578713969,5,5.13775785764058,0
+8108,0.102860000547953,0.955,95.5,1,99.8774262095089,1,95.5,0.0654450261780105,0
+8109,0.121227674987167,1,100,1,100,NA,100,0.2625,0
+8110,0.0829213512840215,0.7425,74.25,2,96.6216158521061,0.729058478211786,39.25,1.19854352289579,0
+8111,0.0695310342614539,0.795,79.5,1,99.3602931148206,0.658536585365854,79.5,1.54962813179448,0
+8112,0.0858065028744022,0.8775,87.75,1,99.6446261822776,0.815588886156873,87.75,4.90090081630609,0
+8113,0.113158924512099,0.9,90,1,99.7153023505818,0.721407624633431,90,2.86931775940789,0
+8114,0.0970555715961382,0.86,86,1,99.5877487787664,0.824175824175824,86,1.28113569215287,0
+8115,0.0642793323889782,0.5275,52.75,1,98.0165432545104,0.838030450275348,52.75,1.2967144392113,0
+8116,0.0440568713436369,0.385,38.5,5,92.7544656311358,0.747191818207935,26.5,3.39887465439834,0
+8117,0.114121722700074,0.9775,97.75,1,99.9397711850087,0.880203653788557,97.75,0.96528492803159,0
+8118,0.0664039215445519,0.93,93,1,99.8055173961557,0.777102330293819,93,1.34239248562885,0
+8119,0.0496627099533362,0.5675,56.75,2,96.2851624398121,0.814154333893603,45.75,3.86797837748927,0
+8120,0.0548284624904045,0.605,60.5,2,98.0593109776753,0.910384227624062,60,1.05518735144749,0
+8121,0.0185198965453674,0.0175,1.75,2,55.7829931777349,0.618320610687023,1.5,24.9324024745396,20
+8122,0.0664896957948804,0.6425,64.25,2,98.5340062484979,0.703415088030473,64,13.5475700022182,0
+8123,0.029964263536458,0.32,32,3,89.6315650002056,0.722292350416561,16.25,7.35298770666122,0
+8124,0.0700137437894591,0.79,79,1,99.3416426267051,0.848194311281559,79,5.15857495537287,0
+8125,0.0144484858394389,0.0825,8.25,4,71.7778997474348,0.717428600262388,4.25,0,0
+8126,-0.0106317241733632,0.075,7.5,4,68.6669942790877,0.580805295091009,3.25,1.30473785400391,0
+8127,-0.0951862380700186,0,0,0,NA,NA,0,NA,NA
+8128,-0.0106630389265047,0.41,41,1,97.0434862163892,0.96071388483556,41,171.044861305051,143.265487670898
+8129,0.00868232324028213,0.4275,42.75,1,97.2134830220855,0.961183891314896,42.75,133.600479795222,92.195442199707
+8130,-0.0220305307096896,0.01,1,2,34.5233986084855,0.494949494949495,0.75,11.5334658622742,5
+8131,-0.00780512728859321,0.14,14,1,91.1967767414513,0.952049868137137,14,65.5298207827977,40.3112869262695
+8132,-0.027758281306451,0.2125,21.25,2,91.5961889320896,0.932723641332913,20,126.253512842515,102.95630645752
+8133,0.0462517590727657,0.41,41,1,97.0434862163892,0.932652374003816,41,65.9153410399832,14.1421356201172
+8134,0.0285457826165657,0.1675,16.75,1,92.4032163835468,0.85626652293319,16.75,10.9077464715758,0
+8135,0.0171784467536509,0.1775,17.75,3,88.3654765816533,0.824924012158055,15.5,8.47505410960023,0
+8136,-0.0295987491312917,0,0,0,NA,NA,0,NA,NA
+8137,-0.00581284483007039,0.065,6.5,3,73.8413197172035,0.765227598800052,4,16.270510160006,0
+8138,-0.0770350645607823,0.01,1,2,34.5233986084855,0.494949494949495,0.75,10.0806188583374,5
+8139,-0.0962822707090527,0,0,0,NA,NA,0,NA,NA
+8140,-0.0312552672752645,0,0,0,NA,NA,0,NA,NA
+8141,-0.115981268829782,0,0,0,NA,NA,0,NA,NA
+8142,-0.112817565649166,0.0825,8.25,1,86.9391941099265,0.899081642950853,8.25,101.489175507517,65.7647323608398
+8143,0.228208190710284,0.9375,93.75,1,99.8273917947966,0.977496483825599,93.75,76.5063420003255,30.4138145446777
+8144,0.0772577680664835,0.575,57.5,1,98.3223108063601,0.978061154531743,57.5,39.9737794959027,11.1803398132324
+8145,-0.0293715802409861,0.1475,14.75,1,91.5590620020185,0.965499396239434,14.75,2.78207009525622,0
+8146,-0.0151109782656931,0.1325,13.25,4,77.669155531653,0.708648700003167,5.75,5.7126106766035,0
+8147,-0.0684143985535047,0,0,0,NA,NA,0,NA,NA
+8148,-0.0730187112925705,0,0,0,NA,NA,0,NA,NA
+8149,-0.0283746643383893,0,0,0,NA,NA,0,NA,NA
+8150,-0.0300763773622202,0,0,0,NA,NA,0,NA,NA
+8151,-0.0489463378172513,0,0,0,NA,NA,0,NA,NA
+8152,0.00593577485466085,0.3175,31.75,1,95.9225630587777,0.955599955599956,31.75,16.77171301654,5
+8153,-0.0956136047840118,0,0,0,NA,NA,0,NA,NA
+8154,0.015435835600365,0.3725,37.25,1,96.6396639945364,0.970812719816704,37.25,38.1669836236326,0
+8155,0.139185504559427,1,100,1,100,NA,100,56.674498128891,10
+8156,0.0894859990713303,0.69,69,2,96.2811274146649,0.838086934861128,49.25,23.5140302492225,0
+8157,0.128734234524891,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,36.1426164584052,0
+8158,0.158196055721492,1,100,1,100,NA,100,40.6370070934296,0
+8159,0.19186002420116,0.96,96,1,99.8914698623176,0.896978021978022,96,46.4482673704624,0
+8160,-0.0103713674707706,0.05,5,2,75.5735492577598,0.558573853989813,4,10.9985182762146,5
+8161,-0.0348559380898951,0.0425,4.25,2,71.5607955550092,0.83289817232376,3.5,3.41339739631204,0
+8162,-0.0159451820907634,0.0225,2.25,2,55.8151493223867,0.573742540494459,1.25,28.4719785054525,22.3606796264648
+8163,-0.0317365109513958,0.015,1.5,2,45.0766242787986,0.709934735315446,1,14.3631210327148,5
+8164,-0.0171273255710184,0.0125,1.25,2,39.9983253817159,0.392405063291139,0.75,7.82842712402344,5
+8165,-0.0415073350165039,0.2225,22.25,4,89.6205145051095,0.80586058363162,19.25,9.18065598305692,0
+8166,0.0488704189163582,0.41,41,3,91.9111391110196,0.831630935009541,28.25,6.82855708424638,0
+8167,0.0967770452843979,0.8525,85.25,1,99.5628383044854,0.758244645907239,85.25,11.3038987134559,0
+8168,0.0783730135726364,0.8625,86.25,1,99.5959799783351,0.709983268265477,86.25,7.43769128771796,0
+8169,0.0785757632258901,0.8175,81.75,3,98.8147046769497,0.795741657600853,80.75,3.66517410511635,0
+8170,0.101082410953386,0.745,74.5,3,97.2997363983532,0.839222676592919,68.75,3.71391744421632,0
+8171,0.0540411301109418,0.5175,51.75,3,94.184380062445,0.827737029809569,33.25,0.895436420532816,0
+8172,-0.0976786512965555,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,5.6502815246582,0
+8173,-0.0274739168451924,0.1375,13.75,1,91.0694765797212,0.975591151792525,13.75,45.7063951665705,26.9258232116699
+8174,-0.00709917873113682,0.265,26.5,3,90.0416778717871,0.886027709513125,17.75,65.6782063898051,0
+8175,-0.058819888830476,0.01,1,1,52.6315789473684,0.747474747474748,1,79.1763954162598,74.3303451538086
+8176,0.00581543661239266,0.2525,25.25,2,93.8441575286089,0.896524326022284,24.75,28.8612040151464,0
+8177,0.17844022674486,0.99,99,1,99.9734851828463,0.335106382978722,99,33.3971191175056,0
+8178,0.207061468530446,0.9775,97.75,1,99.9397711850087,0.580712788259958,97.75,23.3620341708288,0
+8179,0.0978766070522397,0.91,91,1,99.745869280411,0.854862119013062,91,42.9176340731946,0
+8180,0.0401770123462848,0.385,38.5,2,93.9287786833276,0.804648223160677,29,32.0062665939331,5
+8181,0.0311165328135257,0.2775,27.75,3,90.1767016445382,0.847750865051903,14.5,43.792455793501,25
+8182,0.0804263273649849,0.67,67,3,97.0099474344392,0.885535273209229,63.5,23.7804149015626,0
+8183,0.0948152271454455,0.735,73.5,1,99.1240858576863,0.965880787471425,73.5,15.1746482005736,0
+8184,-0.0726307504955912,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,4.57477049394087,0
+8185,-0.059898117990233,0,0,0,NA,NA,0,NA,NA
+8186,-0.058330569609534,0,0,0,NA,NA,0,NA,NA
+8187,-0.016408045545395,0.165,16.5,1,92.3061588442808,0.916688362405623,16.5,0.378787878787879,0
+8188,-0.00859673036062304,0.3725,37.25,1,96.6396639945364,0.941625439633408,37.25,0.282356159799051,0
+8189,0.00803867854385317,0.2425,24.25,1,94.5753035249093,0.954478206441334,24.25,1.44696225825044,0
+8190,-0.0122734651406427,0.2525,25.25,1,94.7890822083159,0.933479923871468,25.25,66.4699251533735,32.0156211853027
+8191,-0.0215011360787321,0.2,20,1,93.4943790657906,0.964788732394366,20,45.4714275360107,15
+8192,0.00117124624573123,0.0075,0.75,1,44.4894453484604,1,0.75,33.5063781738281,31.6227760314941
+8193,-0.114095714305877,0,0,0,NA,NA,0,NA,NA
+8194,-0.00403905276127261,0.13,13,3,83.1321322824589,0.870851091308278,8.75,59.6778375185453,11.1803398132324
+8195,0.000232901750787278,0.125,12.5,3,81.9714737333722,0.717647058823529,6.5,21.3436877441406,0
+8196,-0.035683774751933,0.07,7,1,85.3702908942512,0.97610513739546,7,14.0205639430455,0
+8197,-0.0696910962767288,0,0,0,NA,NA,0,NA,NA
+8198,-0.0386540564301686,0,0,0,NA,NA,0,NA,NA
+8199,-0.0520526201346956,0,0,0,NA,NA,0,NA,NA
+8200,-0.00872624800361336,0,0,0,NA,NA,0,NA,NA
+8201,0.0213124266618661,0.0925,9.25,6,73.6972578139229,0.69290520706318,6.75,7.16601150100296,0
+8202,0.013469405348078,0.05,5,9,39.517552480737,0.354838709677419,1.25,6.47584791183472,0
+8203,0.00668582242144112,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,43.250384648641,38.0788650512695
+8204,0.00149756766371866,0,0,0,NA,NA,0,NA,NA
+8205,0.0048364762073993,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,19.8245388031006,11.1803398132324
+8206,-0.0703502788520564,0,0,0,NA,NA,0,NA,NA
+8207,-0.0139888326198525,0.1125,11.25,5,77.8025081715681,0.703484062268347,7.5,4.35483169555664,0
+8208,0.0905199055327102,0.76,76,3,98.170472147054,0.832751599767307,73.75,1.66094365245418,0
+8209,0.11177052589599,0.915,91.5,1,99.7609644895861,0.711399711399711,91.5,0.569082708306651,0
+8210,0.083562025205174,0.7975,79.75,2,98.1158767612176,0.803125384520733,74.75,0.319971999404572,0
+8211,0.0859768371882092,0.755,75.5,1,99.205943814227,0.813493059789821,75.5,0.507563812053756,0
+8212,0.0893638883607491,0.8725,87.25,1,99.6285502360822,0.893048128342246,87.25,5.52153774797062,0
+8213,0.113218066543341,1,100,1,100,NA,100,5.86672665119171,0
+8214,0.0946291724126786,0.8825,88.25,2,98.9489518924555,0.745190470123583,86,1.25676943425079,0
+8215,0.0480471746842522,0.38,38,2,94.0008281487741,0.797664469880911,29.25,2.60504885723716,0
+8216,0.0912762560340343,0.8425,84.25,1,99.5291083083911,0.870424360220278,84.25,1.53020122992179,0
+8217,0.108874870585278,0.9925,99.25,1,99.9801514397,0.823165340406723,99.25,0.627562054458733,0
+8218,0.0655524090956897,0.895,89.5,1,99.6998271307191,0.690967832560753,89.5,0.293296089385475,0
+8219,0.079775590673089,0.9375,93.75,1,99.8273917947966,0.88748241912799,93.75,0.564955078125,0
+8220,0.0258845629349526,0.3825,38.25,2,93.967833655769,0.798291238635872,27.75,2.62534708758585,0
+8221,0.0441294592133636,0.495,49.5,3,94.8467188098196,0.848922221922465,40,3.27372407431554,0
+8222,0.037228089911805,0.385,38.5,4,92.9410658193486,0.827630785141774,30.75,7.50666437520609,0
+8223,0.00863990217509127,0.0925,9.25,4,73.5599952313503,0.69290520706318,3.5,15.6945505915461,0
+8224,0.036353187221921,0.4775,47.75,2,97.3496056829019,0.864839293920472,47.5,5.71868021700395,0
+8225,0.0229043076358789,0.21,21,3,88.2296844722765,0.872568176025826,17.25,0,0
+8226,-0.0166362176827079,0.0075,0.75,1,44.4894453484604,1,0.75,18.7332744598389,15.8113880157471
+8227,-0.0698325374769047,0,0,0,NA,NA,0,NA,NA
+8228,-0.0022797946530045,0.2575,25.75,1,94.8912707561653,0.978159978159978,25.75,141.175681771584,106.066017150879
+8229,-0.0235775855025713,0.0325,3.25,2,67.0362641309469,0.655469422911283,2.5,106.022277245155,36.4005508422852
+8230,-0.0225877469218722,0.03,3,2,68.9081048780414,0.757428744693754,2.75,4.51184463500977,0
+8231,-0.0687362151465277,0.2125,21.25,2,92.4056266234173,0.949542730999685,20.75,88.3276323206285,56.5685424804688
+8232,0.0484665095050877,0.74,74,1,99.1448611187463,0.924043640381163,74,116.183068584751,63.6396102905273
+8233,0.0388768255369359,0.5575,55.75,1,98.2142154717639,0.961973055193394,55.75,62.6458852109353,30
+8234,0.00301427493806841,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,25.6452659807707,15.8113880157471
+8235,-0.0652713255466369,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,74.7438774108887,68.0073547363281
+8236,-0.0229367569224996,0.0225,2.25,4,36.9299868077551,0.48849104859335,1,55.5832981533474,30
+8237,-0.0101685918190742,0.0125,1.25,2,43.859649122807,0.594936708860759,1,22.6801895141602,14.1421356201172
+8238,-0.0212925031096813,0.045,4.5,2,76.3655700534096,0.844871049059531,4.25,85.369260152181,76.1577301025391
+8239,-0.064587166207566,0,0,0,NA,NA,0,NA,NA
+8240,-0.0364802252959089,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,99.2188306535993,89.4427185058594
+8241,-0.162075908705592,0,0,0,NA,NA,0,NA,NA
+8242,0.00192523975129006,0.385,38.5,1,96.780810904996,0.959780516533081,38.5,172.09865688968,125
+8243,0.265361813902855,1,100,1,100,NA,100,127.157209777832,74.3303451538086
+8244,0.175713810758389,0.7325,73.25,1,99.1136185490844,0.979646182811201,73.25,52.8458573663601,15
+8245,0.0374100679757203,0.5775,57.75,1,98.3373505793708,0.956067491316465,57.75,1.53462110246931,0
+8246,0.0326088985682873,0.545,54.5,3,97.5124348348474,0.826774211010664,53.75,8.34889888763428,0
+8247,-0.0219469317521362,0.09,9,1,87.719298245614,0.963369963369963,9,6.8249249458313,0
+8248,-0.0573212390726803,0,0,0,NA,NA,0,NA,NA
+8249,-0.0155935537960613,0,0,0,NA,NA,0,NA,NA
+8250,0.00376470975790653,0,0,0,NA,NA,0,NA,NA
+8251,-0.0473652558904848,0,0,0,NA,NA,0,NA,NA
+8252,0.0157613222356304,0.4025,40.25,1,96.9672588816937,0.949112292208527,40.25,24.0371768904028,0
+8253,-0.110288261324167,0,0,0,NA,NA,0,NA,NA
+8254,0.0352013925609572,0.53,53,1,98.0336545290164,0.967599092774598,53,43.1226328543897,0
+8255,0.0925870863068849,0.905,90.5,2,99.5175890292157,0.784863618901267,90.25,63.7324341621188,22.3606796264648
+8256,0.123520395787273,0.755,75.5,2,96.6692500269853,0.770452996664395,45,17.192755623369,0
+8257,0.172139087505639,1,100,1,100,NA,100,50.8329051160812,5
+8258,0.159580528875813,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,71.2039937566695,25
+8259,0.153196321568103,0.89,89,1,99.684221684177,0.851632047477745,89,25.3057412994042,0
+8260,0.0827861496903643,0.58,58,1,98.352293007383,0.961508852963818,58,30.072977090704,0
+8261,-0.00268719045470789,0.1425,14.25,3,88.1723830002738,0.821502945201404,13.25,21.4934962757847,5
+8262,0.0177549199803616,0.0025,0.25,1,0,NA,0.25,25.4950981140137,25.4950981140137
+8263,-0.217216227573663,0,0,0,NA,NA,0,NA,NA
+8264,0.00213148782735516,0.115,11.5,2,86.9667271323992,0.855135448355787,10.75,0,0
+8265,0.035581270571638,0.49,49,2,96.6367854380561,0.919198448610213,47.5,19.0995451966111,0
+8266,0.012658966910069,0.175,17.5,3,86.0355454451867,0.89159891598916,13.5,9.29769586835589,0
+8267,0.0373800789995221,0.3625,36.25,2,93.8814316373825,0.875693673695893,29,2.0108931968952,0
+8268,0.0967207239569143,0.755,75.5,1,99.205943814227,0.956959936874574,75.5,3.5141939643203,0
+8269,0.109019268889679,0.9575,95.75,1,99.8844617862358,0.64349376114082,95.75,1.96456600916292,0
+8270,0.0356985541225896,0.4125,41.25,2,94.7686777760725,0.80963045912654,32.5,2.53671290079753,0
+8271,-0.00337893039322807,0.185,18.5,3,87.0935307683839,0.858423784804153,13.75,2.37384370855383,0
+8272,-0.0907880476675928,0,0,0,NA,NA,0,NA,NA
+8273,-0.063219778494713,0.335,33.5,1,96.169806046512,0.938370516455072,33.5,100.159066157555,47.4341621398926
+8274,-0.113092391879181,0.4125,41.25,1,97.0684321667208,0.871220604703247,41.25,62.6292479775169,30
+8275,0.0501527148114292,0.43,43,2,94.5415472718087,0.894847528916929,35.25,27.759421781052,0
+8276,0.0252008779265816,0.515,51.5,1,97.9291261653514,0.833113509730559,51.5,11.9286154404427,0
+8277,0.0800544623396127,0.8275,82.75,1,99.4773714744283,0.758840579710145,82.75,6.21856069996998,0
+8278,0.100564368385822,0.96,96,1,99.8914698623176,0.553571428571428,96,23.1938123206298,0
+8279,0.0252188278700487,0.4225,42.25,2,96.351880408284,0.911199911199911,41.25,36.3526201868904,0
+8280,0.039926563903191,0.3225,32.25,2,94.6299706094671,0.918348119651409,31,27.3327446427456,7.07106781005859
+8281,0.097525286625314,0.75,75,1,99.1857866401092,0.964601769911504,75,54.5670611317952,5
+8282,0.109056280619698,0.9725,97.25,1,99.9261039309117,0.655087459965509,97.25,16.5803131750739,0
+8283,0.00325519555475694,0.265,26.5,2,91.8634185735828,0.886027709513125,22.5,14.5190108317249,0
+8284,-0.0736861129806493,0,0,0,NA,NA,0,NA,NA
+8285,-0.0510033355723135,0,0,0,NA,NA,0,NA,NA
+8286,-0.0409753051138978,0,0,0,NA,NA,0,NA,NA
+8287,-0.0692149817725294,0,0,0,NA,NA,0,NA,NA
+8288,-0.0513249030426778,0,0,0,NA,NA,0,NA,NA
+8289,-0.0432405958122399,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,28.5033387078179,20.6155281066895
+8290,-0.00970755186214319,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,0,0
+8291,-0.0321419889794925,0,0,0,NA,NA,0,NA,NA
+8292,-0.0434080270453671,0,0,0,NA,NA,0,NA,NA
+8293,-0.0625872856536216,0.1225,12.25,2,88.999235331577,0.837199837199837,12,55.870986082116,30
+8294,0.0274231509752099,0.315,31.5,2,92.4845052333373,0.757753482293692,23.25,34.9704285878984,5
+8295,-0.0927635717972589,0.005,0.5,1,30.8308651382582,1,0.5,13.4958639144897,11.1803398132324
+8296,-0.118402391215786,0,0,0,NA,NA,0,NA,NA
+8297,-0.0789852516388055,0,0,0,NA,NA,0,NA,NA
+8298,-0.0354226404379006,0.07,7,1,85.3702908942512,0.90442054958184,7,51.4129061017718,42.7200164794922
+8299,0.00088248545778697,0.2125,21.25,3,86.5232125419145,0.81499001366551,11,42.7102627922507,5
+8300,0.00956840368555277,0.0775,7.75,2,80.1829228243518,0.761517615176152,5.75,13.675139334894,5
+8301,0.0187733612407283,0.035,3.5,4,52.8784969555764,0.637305699481865,2,6.70688274928502,0
+8302,0.0242861789816379,0.1225,12.25,3,82.6647173511776,0.837199837199837,7.5,4.31705467068419,0
+8303,-0.00912794400087023,0.065,6.5,3,75.9165130299758,0.686970131733403,5,9.06696664370023,0
+8304,-0.0804385731858929,0.06,6,2,75.7794062578482,0.832026875699888,4.5,10.5347224076589,0
+8305,-0.00741462512511134,0.22,22,3,87.7119300559011,0.820349501878164,15.25,1.30681818181818,0
+8306,-0.00942050970552373,0.2075,20.75,2,92.7481502272062,0.948496748857272,20.5,3.73665572936276,0
+8307,0.00925530634711322,0.36,36,3,92.3760208105081,0.875710227272727,29.25,1.43171338240306,0
+8308,0.0583413055201345,0.44,44,2,94.5579507924399,0.857142857142857,32.5,3.4764260487123,0
+8309,0.0717530322866514,0.715,71.5,1,99.0388168843254,0.706515359029544,71.5,0.217031705629575,0
+8310,0.05165330115291,0.6025,60.25,2,98.0923129425848,0.877009084556254,59.75,2.41525841550708,0
+8311,0.0417040375729266,0.475,47.5,3,96.4713385897682,0.826839826839827,45.75,1.05450178447523,0
+8312,0.0736013371124864,0.8175,81.75,1,99.442091962007,0.689172087653471,81.75,2.31065706958829,0
+8313,0.0892102065775544,0.9325,93.25,1,99.8128381781211,0.53900151919954,93.25,1.19940556789531,0
+8314,0.0770240564551204,0.55,55,2,97.2002862503316,0.777777777777778,52.5,1.30648366754705,0
+8315,0.0567262637683234,0.52,52,5,92.1452350237538,0.779285099052541,34.5,1.64044809341431,0
+8316,0.104237157151219,0.8825,88.25,2,99.1763307272622,0.872595235061792,87.5,0.572439285580903,0
+8317,0.0924643945135176,0.98,98,1,99.9465655549884,0.932795698924731,98,0.344387755102041,0
+8318,0.067027635006234,0.9275,92.75,1,99.7981670352509,0.744935498111541,92.75,0.0673854447439353,0
+8319,0.100160733740777,1,100,1,100,NA,100,0.2,0
+8320,0.0878565286158118,0.895,89.5,1,99.6998271307191,0.817390082876809,89.5,0.782428943911078,0
+8321,0.0248977022431791,0.22,22,2,89.9296741057117,0.88567695574065,15.5,0.113636363636364,0
+8322,-0.00204358589333424,0.125,12.5,3,82.0445873243304,0.852100840336134,7.5,0.9,0
+8323,0.019357342393123,0.3175,31.75,2,94.709337550412,0.828742685885543,30.25,1.26264046496294,0
+8324,0.0469617077540897,0.5175,51.75,2,95.6291838438397,0.811587376354216,37.5,0.939442565475685,0
+8325,-0.0296673102420755,0.065,6.5,2,81.2557710064635,0.9478283552889,6.25,0.576923076923077,0
+8326,-0.0187065214991162,0,0,0,NA,NA,0,NA,NA
+8327,-0.0348551041299652,0,0,0,NA,NA,0,NA,NA
+8328,-0.0468287527188659,0,0,0,NA,NA,0,NA,NA
+8329,-0.0128125706822902,0.035,3.5,3,62.5889046941678,0.637305699481865,2.25,5.17096737452916,0
+8330,-0.113572327662478,0,0,0,NA,NA,0,NA,NA
+8331,-0.30162875013848,0,0,0,NA,NA,0,NA,NA
+8332,-0.0655151457198917,0.01,1,3,15.8692205350002,0.242424242424242,0.5,54.5357227325439,50
+8333,-0.00690442164341221,0.0075,0.75,1,44.4894453484604,1,0.75,4.02368927001953,0
+8334,0.026321450865089,0.245,24.5,3,92.2140451398495,0.879590608067429,23,6.99725470250967,0
+8335,-0.00739205980429688,0.0825,8.25,1,86.9391941099265,0.878897971541023,8.25,33.7131994998816,7.07106781005859
+8336,-0.0083345374795681,0.18,18,3,89.3473256813623,0.846360668331093,16.25,5.74295356538561,0
+8337,0.022280964453239,0,0,0,NA,NA,0,NA,NA
+8338,0.0109549029510163,0,0,0,NA,NA,0,NA,NA
+8339,-0.068670051975505,0,0,0,NA,NA,0,NA,NA
+8340,-0.129999940290327,0,0,0,NA,NA,0,NA,NA
+8341,-0.198621143363416,0,0,0,NA,NA,0,NA,NA
+8342,0.0299529671604978,0.365,36.5,2,95.0602339013218,0.964611165177386,35.5,180.413607976208,146.030822753906
+8343,0.192820130290347,0.8475,84.75,1,99.546047930594,0.969310247819749,84.75,102.815865992093,45.276927947998
+8344,0.055632874833409,0.375,37.5,1,96.668457042866,0.965090909090909,37.5,39.8750761667887,20
+8345,0.0718351255956804,0.8725,87.25,1,99.6285502360822,0.964349376114082,87.25,0.541954543324118,0
+8346,0.0671133565061609,0.7825,78.25,1,99.3133324321661,0.85193843756088,78.25,2.84011155271683,0
+8347,-0.00475302540859275,0.1975,19.75,2,89.3712780281532,0.893190921228304,15.5,19.916461534138,0
+8348,-0.0419811731119626,0,0,0,NA,NA,0,NA,NA
+8349,-0.0318504863864291,0,0,0,NA,NA,0,NA,NA
+8350,-0.00861987740077893,0,0,0,NA,NA,0,NA,NA
+8351,-0.0291890937762219,0.15,15,1,91.6737426448862,0.909502262443439,15,23.514946937561,7.07106781005859
+8352,-0.0349073483061511,0.1975,19.75,1,93.4201273586734,0.91099243435692,19.75,15.9452158770984,5
+8353,-0.144446402005851,0,0,0,NA,NA,0,NA,NA
+8354,-0.012798428801616,0.33,33,2,95.1758595424915,0.950455192915093,32.5,34.9069119800221,5
+8355,0.055538193073553,0.4775,47.75,3,96.4724130393611,0.918903576352283,46.75,31.7878940742053,0
+8356,0.0319674764578667,0.3475,34.75,2,93.1487615025995,0.818988143723414,25.75,8.30764523513026,0
+8357,0.212549030855298,1,100,1,100,NA,100,52.8608049964905,0
+8358,0.238626617640257,1,100,1,100,NA,100,85.5737167644501,40
+8359,0.158748011041898,0.84,84,1,99.5205818358949,0.714566929133858,84,13.6651789063499,0
+8360,0.0481008437293349,0.4375,43.75,1,97.3060110945426,0.977984176126591,43.75,23.617397341047,0
+8361,0.000933688263976364,0.1475,14.75,1,91.5590620020185,0.861997584957737,14.75,23.062845553382,11.1803398132324
+8362,-0.0289879044756526,0,0,0,NA,NA,0,NA,NA
+8363,-0.207269239444577,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,70.7805650499132,14.1421356201172
+8364,0.0444060733146034,0.3975,39.75,5,93.2856003305759,0.863582106519638,36,42.9578543729002,0
+8365,-0.0377658285769576,0.18,18,2,92.042490457768,0.855963126560399,17.75,24.3786419232686,5
+8366,-0.0239126570598455,0.1,10,3,76.4579497646793,0.767827529021559,4.75,15.5554906368256,0
+8367,-0.0307631647713879,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859
+8368,0.0243619648689128,0.205,20.5,3,87.7744182329803,0.731077857297766,12.75,10.8204484334806,0
+8369,0.0438002601696644,0.445,44.5,5,89.106615950939,0.687833730386922,20.25,4.84659094221137,0
+8370,0.0649279003839183,0.7475,74.75,1,99.1756322950922,0.866345426727397,74.75,2.59947730864968,0
+8371,0.00133886122883268,0.205,20.5,2,91.00688332847,0.757102580785079,17,2.32140657378406,0
+8372,-0.0694348047906533,0,0,0,NA,NA,0,NA,NA
+8373,-0.068659160877578,0.04,4,1,78.9473684210526,0.782986111111111,4,148.427505493164,137.568176269531
+8374,-0.00610631079704035,0.3275,32.75,2,92.7713929031696,0.856900654835047,27.75,99.944828412005,42.4264068603516
+8375,-0.0254550777825807,0.285,28.5,3,91.8402519152752,0.911738746690203,24.75,8.05300187228019,0
+8376,-0.0742544016493775,0.2775,27.75,2,94.142740684564,0.889273356401384,26.75,18.7017738239185,0
+8377,-0.115330534400127,0.1625,16.25,3,87.1533429066943,0.809800554748382,13.75,4.06869861896221,0
+8378,0.0635199031472166,0.68,68,2,98.3171601456079,0.834882583170254,66.5,11.1443047523499,0
+8379,0.041353831827837,0.4825,48.25,3,94.7438733247619,0.865058159933069,39.5,1.5989986874279,0
+8380,0.0890019128425047,0.8025,80.25,1,99.3879413454111,0.916447340936625,80.25,12.9222938739622,0
+8381,0.112274102158844,1,100,1,100,NA,100,29.1604848337173,0
+8382,0.0733931352441687,0.5975,59.75,2,96.2246127701302,0.872163630552892,51.25,14.9547654554934,0
+8383,0.0800100875940916,0.8675,86.75,1,99.6123355042629,0.965485503911643,86.75,58.86138930307,20.6155281066895
+8384,0.0363400694183656,0.5575,55.75,1,98.2142154717639,0.902216427640157,55.75,43.3460287769814,5
+8385,-0.0511442231506226,0,0,0,NA,NA,0,NA,NA
+8386,-0.0419582987801425,0,0,0,NA,NA,0,NA,NA
+8387,-0.0737288105054904,0,0,0,NA,NA,0,NA,NA
+8388,-0.0622585273089862,0,0,0,NA,NA,0,NA,NA
+8389,-0.0266919091016462,0.0475,4.75,1,81.114133276783,0.963797628744683,4.75,17.922814017848,7.07106781005859
+8390,0.00744390245876275,0.145,14.5,3,85.5343154431741,0.812865497076023,11.75,16.4007828811119,0
+8391,-0.119760720075719,0,0,0,NA,NA,0,NA,NA
+8392,-0.0362441884836153,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,66.2297308548637,53.8516464233398
+8393,-0.0194614528504462,0.0625,6.25,2,75.5154800573299,0.813333333333333,3.75,16.9087587738037,0
+8394,-0.0225412108565797,0.055,5.5,2,76.4902019111937,0.844382197323374,4.75,22.8771642338146,5
+8395,-0.101679744143039,0,0,0,NA,NA,0,NA,NA
+8396,-0.116160627380013,0,0,0,NA,NA,0,NA,NA
+8397,-0.0969859682267997,0,0,0,NA,NA,0,NA,NA
+8398,-0.0326612261447735,0,0,0,NA,NA,0,NA,NA
+8399,-0.0415115117923415,0.0025,0.25,1,0,NA,0.25,35.355339050293,35.355339050293
+8400,-0.0203045706435114,0.1275,12.75,1,90.5233675365473,0.907782498435596,12.75,26.9131436067469,14.1421356201172
+8401,0.0249550008740152,0.15,15,5,78.5795740457009,0.683257918552036,5.75,4.24940528869629,0
+8402,0.0154410720478336,0.0825,8.25,10,52.2146994173367,0.455040871934605,2.25,8.46624455307469,0
+8403,-0.0741859471722273,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,12.4653788975307,5
+8404,0.078570328138303,0.765,76.5,1,99.2456636792102,0.926250967956046,76.5,2.91229668785544,0
+8405,0.100662419029395,0.8875,88.75,1,99.6763695533234,0.775132275132275,88.75,1.57669737909881,0
+8406,0.053522978669771,0.6375,63.75,1,98.6713232517353,0.798008945318136,63.75,1.30699714211857,0
+8407,0.148507232624106,0.9625,96.25,1,99.898450616446,1,96.25,3.37597569552335,0
+8408,0.0854470730107278,0.9475,94.75,1,99.8561526638156,0.68209815219551,94.75,25.0046216365844,0
+8409,0.0751299647078849,0.64,64,3,95.9894723731813,0.78587962962963,42,5.73350163549185,0
+8410,0.0216972264812648,0.305,30.5,2,93.8072244765732,0.785149256160682,26.75,0.863298978961882,0
+8411,0.0413597191463123,0.425,42.5,4,94.5275731995709,0.855535491040422,38,2.66387320125804,0
+8412,0.0737348904646205,0.765,76.5,2,99.0557461968208,0.778752903868137,76.25,1.84031727111417,0
+8413,0.059965067228477,0.5825,58.25,1,98.3671391359956,0.906394108335054,58.25,0.885035207854832,0
+8414,0.0614495243018609,0.615,61.5,2,96.7227294519829,0.808018068887634,54.75,2.45082227195181,0
+8415,0.0811649501428474,0.8025,80.25,2,99.1842222843661,0.807828884154238,80,2.02279571580738,0
+8416,0.0674329925933853,0.75,75,3,96.2475250421688,0.730973451327434,60.5,0.904044011433919,0
+8417,0.0533312827182817,0.525,52.5,4,91.5811178974076,0.69309462915601,18.75,0.458158111572266,0
+8418,0.102687967885286,0.9875,98.75,1,99.9667936270881,1,98.75,0.359673589392553,0
+8419,0.100677636004984,1,100,1,100,NA,100,0.2125,0
+8420,0.029649160761528,0.51,51,1,97.8932627156421,0.94615260352162,51,0.0245098039215686,0
+8421,-0.0224395681603346,0.0475,4.75,2,71.3881330867599,0.818988143723414,2.75,0.789473684210526,0
+8422,0.00710413178635918,0.0775,7.75,2,78.7467706018868,0.761517615176152,5,1.35713121967931,0
+8423,0.0319517244942836,0.335,33.5,1,96.169806046512,0.852089239492173,33.5,0.575157222463124,0
+8424,0.0378811842739742,0.4075,40.75,4,94.3924055824813,0.774964838255978,36,1.00732811535794,0
+8425,-0.0370617969657906,0.0725,7.25,5,67.5949759411269,0.472386304983655,2.75,7.74073975661705,0
+8426,-0.0442747249356762,0,0,0,NA,NA,0,NA,NA
+8427,-0.0224762908206321,0,0,0,NA,NA,0,NA,NA
+8428,-0.0463257159665227,0,0,0,NA,NA,0,NA,NA
+8429,-0.00100591785783763,0.05,5,5,56.9446032683074,0.592529711375212,1.75,3.26612377166748,0
+8430,-0.0144014845238416,0.075,7.5,2,83.3355085843915,0.911748483177055,7.25,4.57978477478027,0
+8431,-0.0401655870677496,0,0,0,NA,NA,0,NA,NA
+8432,0.0176449749017911,0.12,12,3,84.0005338717448,0.750554323725055,9.5,3.06438648700714,0
+8433,0.0158121532153564,0.075,7.5,6,60.1127258704941,0.558742415885273,2,10.8142723719279,0
+8434,0.103715303891986,0.7475,74.75,1,99.1756322950922,0.887448780402019,74.75,2.81426485246639,0
+8435,0.068736899984433,0.605,60.5,1,98.496585825966,0.943990142265039,60.5,2.59045875170999,0
+8436,0.0393523214593006,0.4025,40.25,4,92.2549849821546,0.819065927852539,26.75,4.08660655288222,0
+8437,0.0353403971913212,0.1925,19.25,3,91.6759631331208,0.772354762338372,18.5,11.4621897363043,0
+8438,-0.0203449960571015,0.0125,1.25,1,58.1880425789518,1,1.25,21.2221252441406,15
+8439,-0.150786567787873,0.0125,1.25,1,58.1880425789518,1,1.25,1,0
+8440,-0.056917723895458,0.3,30,1,95.6539902192076,0.921363040629096,30,2.12768729527791,0
+8441,-0.129076040315231,0.0125,1.25,1,58.1880425789518,1,1.25,1,0
+8442,-0.0107870312903106,0,0,0,NA,NA,0,NA,NA
+8443,-0.011994747192648,0.005,0.5,1,30.8308651382582,1,0.5,46.9828243255615,44.7213592529297
+8444,-0.0194291963500291,0.18,18,2,91.0958688205271,0.875168043019013,17.25,2.90475188361274,0
+8445,0.040056178883242,0.3425,34.25,3,92.143243020375,0.823574144486692,19,12.7759202692631,0
+8446,0.0360132310810877,0.34,34,3,90.0659531873607,0.853372434017595,17.25,8.48236033495735,0
+8447,0.0536885479114426,0.61,61,1,98.5243747403739,0.966261808367071,61,22.3192688598007,0
+8448,-0.0228165837480992,0,0,0,NA,NA,0,NA,NA
+8449,0.00404915178221927,0,0,0,NA,NA,0,NA,NA
+8450,-0.025896015136459,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,0,0
+8451,-0.00910153225355316,0.26,26,1,94.9412560453587,0.971094088741148,26,19.974779349107,5
+8452,-0.0624176556916791,0,0,0,NA,NA,0,NA,NA
+8453,-0.0871196985583083,0,0,0,NA,NA,0,NA,NA
+8454,-0.114358548247255,0,0,0,NA,NA,0,NA,NA
+8455,-0.0154046910867328,0.01,1,2,30.8308651382582,0.494949494949495,0.5,3.01776695251465,0
+8456,-0.0893353888385354,0.0825,8.25,2,84.3607741117493,0.939448985770512,8,9.87468285994096,0
+8457,0.0712278523954956,0.5025,50.25,1,97.8384672014884,0.97844450132701,50.25,41.6486594261815,0
+8458,0.142476275410154,0.745,74.5,1,99.1654268803843,0.979029044772989,74.5,93.3656588304763,44.7213592529297
+8459,0.145163539642672,0.8275,82.75,1,99.4773714744283,0.879420289855072,82.75,55.8958331335707,10
+8460,-0.0261342856699844,0.04,4,1,78.9473684210526,0.956597222222222,4,50.8189194202423,39.0512504577637
+8461,0.0110508808635132,0.0725,7.25,3,76.0566814998554,0.747663015426966,4.5,13.2533633791167,0
+8462,-0.124366890891106,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,75.5775005634014,70
+8463,-0.11159135600552,0.135,13.5,3,80.9121593701422,0.776244639194481,6,140.332658979628,91.9238891601562
+8464,0.0624898972862866,0.8525,85.25,2,99.3431816180221,0.831822362370254,85,102.555515658471,55
+8465,-0.0552406585146673,0.0075,0.75,1,44.4894453484604,1,0.75,61.854559580485,57.0087738037109
+8466,-0.0413299131672102,0,0,0,NA,NA,0,NA,NA
+8467,-0.0156417330269687,0.0475,4.75,2,76.8305660265904,0.891392886234048,4.5,11.2614836441843,5
+8468,-0.0305030536944832,0.1025,10.25,2,84.6524559322571,0.725485446691696,8.75,6.31080259927889,0
+8469,-0.000303674787173804,0.165,16.5,3,88.1999921094835,0.906274407706327,15.25,10.9141723170425,0
+8470,-0.0174577398191468,0.085,8.5,2,80.8080808080808,0.785323965651835,6.25,3.69543973137351,0
+8471,-0.0557397685462274,0.2225,22.25,2,93.0346317162606,0.886752007118445,21.75,8.35910741398843,0
+8472,0.012449480373034,0.3475,34.75,1,96.3348533717898,0.945696443117024,34.75,113.527586628207,70
+8473,-0.0481191226557712,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,136.406126234266,131.52946472168
+8474,-0.123714285019796,0.005,0.5,1,30.8308651382582,1,0.5,152.828918457031,150.416091918945
+8475,-0.155365086805541,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10
+8476,-0.135462250010969,0.02,2,1,68.0470115164975,0.795918367346939,2,41.8217058181763,40
+8477,-0.00332902723872394,0.4675,46.75,1,97.5655534302407,0.940296887296806,46.75,1.10274440336992,0
+8478,0.0780125253135338,0.9175,91.75,1,99.7684657792434,0.616306954436451,91.75,2.28463095475283,0
+8479,0.0701733343093656,0.7525,75.25,1,99.1958903399554,0.779096075392372,75.25,1.61875866101034,0
+8480,0.127088153096847,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,23.2234331087302,0
+8481,0.0996089443433448,0.865,86.5,1,99.6041754676792,0.898063200815494,86.5,19.6493232539623,0
+8482,0.0432496685059596,0.535,53.5,2,96.1301137505349,0.924352947533366,50.5,42.2280641270575,0
+8483,0.0907985310815275,0.985,98.5,1,99.9600766120013,0.821746880570409,98.5,98.0336306809169,47.4341621398926
+8484,0.00524347357510123,0.39,39,1,96.835360326048,0.954303992688639,39,111.105114912375,64.0312423706055
+8485,-0.115936164185405,0,0,0,NA,NA,0,NA,NA
+8486,-0.134785684375383,0,0,0,NA,NA,0,NA,NA
+8487,-0.0362260957916601,0,0,0,NA,NA,0,NA,NA
+8488,-0.0643580881457456,0,0,0,NA,NA,0,NA,NA
+8489,-0.0100216305040522,0.005,0.5,1,30.8308651382582,1,0.5,53.4459476470947,50.9901962280273
+8490,-0.0477629234387132,0,0,0,NA,NA,0,NA,NA
+8491,-0.0897185151613667,0.13,13,1,90.6657843098624,0.909595763915795,13,100.742150380061,85.1469345092773
+8492,0.0159209254672533,0.0325,3.25,2,66.5948550564831,0.712891185759403,2.5,83.7790333674504,80.1560974121094
+8493,-0.0104664991359459,0,0,0,NA,NA,0,NA,NA
+8494,-0.0933560078797745,0,0,0,NA,NA,0,NA,NA
+8495,-0.0864679119270295,0,0,0,NA,NA,0,NA,NA
+8496,-0.0759030154839638,0,0,0,NA,NA,0,NA,NA
+8497,-0.0433188302843038,0,0,0,NA,NA,0,NA,NA
+8498,-0.0291426007762493,0,0,0,NA,NA,0,NA,NA
+8499,-0.0336702919570962,0,0,0,NA,NA,0,NA,NA
+8500,-0.153059432448354,0,0,0,NA,NA,0,NA,NA
+8501,0.00315342656449957,0.0725,7.25,6,60.8561263711145,0.564145208464759,2.75,8.92478640326138,0
+8502,-0.0493953466448238,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,12.1712926228841,5
+8503,0.00406708009133581,0.2925,29.25,3,90.7185504541418,0.746649776651777,21.75,5.79689511682233,0
+8504,0.144450850363355,0.9525,95.25,1,99.8703629518046,0.970841230500073,95.25,0.170603674540682,0
+8505,0.115883794927504,0.9425,94.25,2,99.4515408746758,0.902705989662511,93.75,1.40089412456482,0
+8506,0.0391371792051359,0.6275,62.75,2,98.3230722826974,0.920034271026703,62.5,1.82666304386944,0
+8507,0.0531274925621256,0.6625,66.25,1,98.796893507011,0.958268127282212,66.25,10.711774696494,0
+8508,0.0773462694907903,0.72,72,1,99.0604668316969,0.934106483921982,72,13.367349492179,0
+8509,0.073061400611914,0.7725,77.25,2,98.5421728194897,0.81873796306786,75.75,14.7153092356561,0
+8510,0.0438300256429648,0.4225,42.25,1,97.165991902834,0.822399822399822,42.25,5.29874528512447,0
+8511,0.0679549299342034,0.735,73.5,2,98.851121087464,0.924937732437135,73.25,7.69802247261514,0
+8512,0.0106276882781458,0.2325,23.25,2,92.1775851125847,0.897963188257918,21,1.47734992734848,0
+8513,0.0451472860523063,0.4925,49.25,1,97.7634684223253,0.838045752075039,49.25,2.07758660485902,0
+8514,0.0679043800785439,0.785,78.5,2,98.9699388591328,0.732872407291012,77.75,1.45506693603127,0
+8515,0.058668318084674,0.665,66.5,2,96.2620961448658,0.778661801214369,42.25,1.41663643112756,0
+8516,0.0563537296460709,0.7375,73.75,1,99.1344998974781,0.800943800943801,73.75,1.88326607397047,0
+8517,0.100252113670576,0.9875,98.75,1,99.9667936270881,0.893333333333336,98.75,0.80578296516515,0
+8518,0.0701232830341905,0.64,64,3,97.2487931381778,0.791666666666667,58.25,0.899825543165207,0
+8519,0.0777287103468552,0.8375,83.75,2,99.1769694455283,0.844452545874347,83.25,0.549678016776469,0
+8520,-0.0108754199439409,0.085,8.5,2,84.9670781371897,0.902419984387198,8.25,0,0
+8521,-0.0198572848901858,0,0,0,NA,NA,0,NA,NA
+8522,0.0115671826772905,0.13,13,1,90.6657843098624,0.961255327392484,13,0.673076923076923,0
+8523,0.0148313821556803,0.215,21.5,2,92.1828831035574,0.866783231339245,20.5,0.523255813953488,0
+8524,0.00640890482049144,0.155,15.5,3,82.8508628848434,0.769888231426693,7.75,4.36321184712072,0
+8525,-0.024553111136147,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,16.4969764709473,5
+8526,-0.0197480365284173,0.0825,8.25,2,79.3679989771831,0.818346957311535,4.75,15.9329127109412,5
+8527,-0.0372972344547452,0.0025,0.25,1,0,NA,0.25,5,5
+8528,-0.0207968706660722,0.0175,1.75,1,65.4774238937655,1,1.75,7.72325651986258,0
+8529,0.0323391169347451,0.305,30.5,5,86.7010714259294,0.720042970148768,13.5,4.62261839381984,0
+8530,-0.0163838345685326,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,3.74840014913808,0
+8531,-0.0401797739237736,0,0,0,NA,NA,0,NA,NA
+8532,-0.000602094156329258,0.08,8,4,70.0527038817844,0.728260869565217,4,3.42076909542084,0
+8533,-0.00437699696886739,0.0525,5.25,5,56.1950452601977,0.637203166226913,1.75,8.08334069024949,0
+8534,-0.0149913448451116,0.0475,4.75,3,69.5939253248421,0.637976287446828,3.5,3.83694417853104,0
+8535,-0.0104661961629608,0.105,10.5,5,73.3651017321502,0.716736171217248,4,10.2314429056077,0
+8536,-0.0347045244295805,0.0825,8.25,4,70.6841463713377,0.717428600262388,3.5,3.12982640121922,0
+8537,-0.0163049377686104,0.345,34.5,1,96.3025628341184,0.927299163940385,34.5,3.50720977783203,0
+8538,0.0212742727126169,0.4425,44.25,1,97.3510944420755,0.939660728733835,44.25,2.64264905250679,0
+8539,0.0295882319773409,0.6275,62.75,1,98.619006283181,0.94288162216193,62.75,2.04184504049233,0
+8540,0.073340877422379,0.8225,82.25,1,99.4598121429477,0.736907758953074,82.25,12.9378313047183,0
+8541,0.0310897558372403,0.3025,30.25,2,93.4746138005087,0.869664385793418,26.75,7.43964630316112,0
+8542,-0.00482445667054208,0,0,0,NA,NA,0,NA,NA
+8543,-0.0167527830453037,0,0,0,NA,NA,0,NA,NA
+8544,-0.0311340638796173,0.0625,6.25,1,84.2105263157895,0.866666666666667,6.25,3.2472135925293,0
+8545,0.0518586226265325,0.295,29.5,2,92.9706239611657,0.933717770265792,27.75,12.2020078917681,0
+8546,-0.0330208733590553,0.1725,17.25,2,87.3950966504813,0.860178272702305,11.25,33.241077395453,0
+8547,0.035814940423661,0.325,32.5,2,93.8750341632822,0.943741209563994,30.75,23.954981803894,0
+8548,-0.0158994763179817,0.02,2,2,52.9470541148176,0.693877551020408,1.25,52.0950574874878,43.0116271972656
+8549,0.0195639509283501,0.0925,9.25,2,84.5652762170076,0.837420403739331,8.5,1.46330096270587,0
+8550,0.0711355659598485,0.77,77,1,99.2652328179138,0.767616191904048,77,3.10482395469368,0
+8551,-0.0309398720643003,0.195,19.5,2,88.4258043009812,0.864974345125574,10,31.8545024578388,0
+8552,-0.0043094467537594,0.1225,12.25,1,90.2255639097744,0.932166598833265,12.25,47.6206064029616,40
+8553,-0.108365343669429,0,0,0,NA,NA,0,NA,NA
+8554,-0.0836457101052656,0.035,3.5,2,66.4957355443448,0.740932642487047,2.5,25.8860995428903,15.8113880157471
+8555,0.00207579486217583,0.3925,39.25,1,96.8622433213934,0.954275262917238,39.25,40.855243524928,10
+8556,-0.138712750696577,0,0,0,NA,NA,0,NA,NA
+8557,-0.0531607245560735,0,0,0,NA,NA,0,NA,NA
+8558,-0.0854895937535912,0,0,0,NA,NA,0,NA,NA
+8559,-0.0261641230103669,0.0325,3.25,2,71.1422992901498,0.712891185759403,3,37.6992378234863,21.2132034301758
+8560,-0.00580567685151891,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172
+8561,-0.0302264176016979,0.0525,5.25,1,82.2928536593692,0.967018469656992,5.25,71.1263256981259,56.5685424804688
+8562,-0.00647097611206846,0.2325,23.25,1,94.3478768975745,0.882265217220674,23.25,136.560779530515,78.2623825073242
+8563,0.0175647705010488,0.22,22,5,81.3295471125326,0.746856116282868,7.25,163.208705642007,114.12712097168
+8564,0.0288408681908186,0.4275,42.75,2,94.5554230755187,0.889096832328273,35.75,84.0955807200649,40
+8565,-0.0568531242432073,0,0,0,NA,NA,0,NA,NA
+8566,-0.051047061029094,0,0,0,NA,NA,0,NA,NA
+8567,-0.0208195706464539,0.03,3,7,25.9396397583478,0.272286234081261,0.5,8.39910984039307,0
+8568,-0.0792859084086376,0,0,0,NA,NA,0,NA,NA
+8569,-0.0323695025878988,0.035,3.5,1,77.1303955881658,1,3.5,42.6782518114362,33.5410194396973
+8570,-0.0167353643556999,0.025,2.5,2,60.6037822408496,0.842209072978304,2,53.247131729126,25
+8571,-0.18543778891295,0,0,0,NA,NA,0,NA,NA
+8572,0.0952783260507567,0.76,76,1,99.2259017402484,0.963641652123327,76,80.787299883993,30
+8573,0.00814042192425404,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,105.591475793871,63.2455520629883
+8574,-0.207572543565184,0,0,0,NA,NA,0,NA,NA
+8575,-0.171918239369988,0,0,0,NA,NA,0,NA,NA
+8576,-0.146785326479294,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,0,0
+8577,0.0354554204153828,0.595,59.5,2,97.4793896676223,0.783603828547649,56,1.46337929092535,0
+8578,0.104992824689252,0.8875,88.75,1,99.6763695533234,0.854497354497354,88.75,0.47887323943662,0
+8579,0.0941649409849197,0.9275,92.75,1,99.7981670352509,0.744935498111541,92.75,0.607426789892973,0
+8580,0.0756880102062132,0.8175,81.75,1,99.442091962007,0.680291290157856,81.75,6.68333990931146,0
+8581,-0.0107824942263323,0.18,18,3,90.6187540665071,0.923180334165546,17.5,4.92912011676365,0
+8582,0.0341410087444092,0.285,28.5,4,86.8706870945527,0.769162875958992,10.25,10.6226849806936,0
+8583,0.0327385360190237,0.2475,24.75,2,92.6807719245569,0.89547948784949,23,78.6236168447167,46.0977210998535
+8584,-0.0338943369274602,0.005,0.5,1,30.8308651382582,1,0.5,119.839550018311,118.848640441895
+8585,-0.173440513842506,0,0,0,NA,NA,0,NA,NA
+8586,-0.0659193115759081,0,0,0,NA,NA,0,NA,NA
+8587,-0.0939602238472799,0,0,0,NA,NA,0,NA,NA
+8588,0.0175928524426672,0.1925,19.25,1,93.2673077410907,0.945365142961209,19.25,1.78433173043387,0
+8589,0.00292333654304457,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,85.3593475341797,80.777473449707
+8590,-0.110119640713601,0.0025,0.25,1,0,NA,0.25,101.242286682129,101.242286682129
+8591,0.00627686806314159,0.1625,16.25,2,86.87347058499,0.841500462290318,8.5,113.413976698655,98.4885787963867
+8592,-8.25991751844413e-05,0,0,0,NA,NA,0,NA,NA
+8593,-0.0622523498826195,0,0,0,NA,NA,0,NA,NA
+8594,-0.129310782514513,0,0,0,NA,NA,0,NA,NA
+8595,-0.111256146440282,0,0,0,NA,NA,0,NA,NA
+8596,-0.0562497730449104,0,0,0,NA,NA,0,NA,NA
+8597,-0.00865387908226694,0.0925,9.25,2,80.9489275044262,0.819356004154812,5.25,77.0570022995408,45
+8598,0.1041384538477,0.6375,63.75,1,98.6713232517353,0.976915308036358,63.75,123.048372186399,85
+8599,-0.0166283854900576,0.03,3,1,74.8763016215986,0.757428744693754,3,103.309199015299,82.7647323608398
+8600,-0.0799367772943197,0,0,0,NA,NA,0,NA,NA
+8601,0.00790252307543596,0.1275,12.75,2,87.9885018968683,0.762869281691532,11.5,3.40405385634478,0
+8602,-0.0383435435898173,0.09,9,1,87.719298245614,0.945054945054945,9,1.25,0
+8603,0.0786153584396743,0.6725,67.25,1,98.8451498857927,0.91535031365732,67.25,0.427509293680297,0
+8604,0.108842103574425,0.97,97,1,99.9192307098231,0.773550724637683,97,0.270618556701031,0
+8605,0.108187002711929,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,1.62120110509353,0
+8606,0.0779426483495627,0.9,90,1,99.7153023505818,0.956011730205279,90,0.130752966139052,0
+8607,-0.0181631879663837,0.185,18.5,2,91.687456700159,0.896177442189712,18,0,0
+8608,0.0447317291740364,0.4325,43.25,1,97.260148197161,0.883998729509895,43.25,2.71053657090733,0
+8609,0.046177389298573,0.4675,46.75,2,94.3708036985774,0.766615104887514,25.75,20.5745009763993,0
+8610,0.0890850872243755,0.83,83,1,99.48609157949,0.671638990524439,83,10.3570066360106,0
+8611,0.073358741607517,0.845,84.5,1,99.5375969134692,0.737493058710687,84.5,11.9932890841241,0
+8612,0.0805173315935099,0.75,75,1,99.1857866401092,0.907964601769911,75,15.3705882708232,0
+8613,-0.0159935868798311,0.1325,13.25,4,76.6839370539974,0.759318491306964,6,0.699454109623747,0
+8614,-0.00410549376458221,0.3225,32.25,1,95.995253617625,0.899505378032504,32.25,0.62015503875969,0
+8615,-0.0925126401941452,0.0025,0.25,1,0,NA,0.25,0,0
+8616,-0.0115194861695636,0.44,44,2,95.7695691159323,0.93956043956044,42.5,2.1130171472376,0
+8617,0.0836135366139933,0.7475,74.75,2,98.3818167470674,0.788966463253785,72.25,2.05780964471823,0
+8618,0.0542894851812162,0.525,52.5,3,97.271752086746,0.741553371920851,51.25,0.738095238095238,0
+8619,-0.0237906217883574,0.315,31.5,2,95.0213250143489,0.929876008032385,31,0.175167204841735,0
+8620,-0.0193301126600636,0.1175,11.75,3,79.7085713141597,0.773371104815864,5.75,1.21427803851188,0
+8621,-0.0187677936955879,0,0,0,NA,NA,0,NA,NA
+8622,-0.0122570551038007,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,0,0
+8623,0.0491855621999275,0.48,48,2,96.2324605031637,0.908167675021608,45.75,0.078125,0
+8624,0.0200867450167789,0.2125,21.25,3,85.7409268088759,0.772942289498581,11.25,1.20842374913833,0
+8625,-0.013611278599592,0.22,22,2,89.4578368635655,0.812183570145354,13.75,2.88450306112116,0
+8626,-0.00456275137210014,0.1375,13.75,2,87.2659107911661,0.841342486651411,11.75,4.08332578485662,0
+8627,-0.0218175963511021,0.005,0.5,1,30.8308651382582,1,0.5,5,5
+8628,-0.0294064962839184,0,0,0,NA,NA,0,NA,NA
+8629,0.0107820656778904,0.0575,5.75,4,65.9905003597059,0.73474801061008,3,1.95652173913043,0
+8630,-0.0338456653643516,0,0,0,NA,NA,0,NA,NA
+8631,-0.00243727530141769,0.0975,9.75,1,88.4075627573592,0.914766673769444,9.75,14.5476205287836,0
+8632,0.00707954983789023,0.0125,1.25,1,58.1880425789518,1,1.25,16.0749645233154,11.1803398132324
+8633,0.021390494031657,0.3175,31.75,3,94.2316281687474,0.866799866799867,30.5,18.7499341589259,0
+8634,0.00931323047853766,0.115,11.5,2,83.5359588303352,0.855135448355787,8.5,8.72326859183933,0
+8635,-0.0331589574330428,0.055,5.5,1,82.8209772257252,0.906629318394024,5.5,18.6927635886452,0
+8636,0.00047333976621303,0.2575,25.75,1,94.8912707561653,0.934479934479934,25.75,27.8041473870139,0
+8637,-0.104300546920276,0.005,0.5,1,30.8308651382582,1,0.5,59.4693641662598,58.5234985351562
+8638,-0.0876952442369657,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,23.6037219365438,15.8113880157471
+8639,-0.0104154405328882,0.115,11.5,1,89.742951983695,0.826162538026945,11.5,2.60869565217391,0
+8640,0.0129137871871171,0.3125,31.25,1,95.8481348315798,0.814177012414898,31.25,1.24,0
+8641,0.0159444552533023,0.1325,13.25,3,80.2186863914738,0.809988282610761,6.25,5.66165308682424,0
+8642,0.00170867313032431,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+8643,-0.0151020756020989,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0
+8644,-0.00591224824129313,0.1675,16.75,3,84.4394260694987,0.774133107466441,10,7.42320755346497,0
+8645,0.0617332091336721,0.5325,53.25,1,98.0506451597102,0.978393561281262,53.25,15.7158580386023,0
+8646,-0.131545435989974,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10
+8647,0.00820973430368667,0.14,14,1,91.1967767414513,0.976024934068569,14,33.1135156495231,5
+8648,0.00494472841409618,0.0325,3.25,1,76.0684107249879,1,3.25,77.9960761437049,70.1783447265625
+8649,0.0248425934241823,0.05,5,1,81.7256002368443,0.932088285229202,5,0,0
+8650,0.0182298103705762,0.2825,28.25,1,95.3608329643832,0.904351984696318,28.25,1.39000944964654,0
+8651,0.0344338578829775,0.465,46.5,1,97.5448886830867,0.94566398608998,46.5,68.5893583605366,47.4341621398926
+8652,0.0151533733874385,0.29,29,2,94.7405496632264,0.966465459423206,28.75,62.0301136806093,33.5410194396973
+8653,-0.116962471809238,0,0,0,NA,NA,0,NA,NA
+8654,-0.0410997667821357,0.135,13.5,4,80.6332501517998,0.751382932438312,6.75,44.0338261215775,20.6155281066895
+8655,-0.0245807010562021,0.35,35,1,96.3667973186472,0.891826923076923,35,81.5309525353568,45.276927947998
+8656,-0.11056833291892,0,0,0,NA,NA,0,NA,NA
+8657,-0.0389044098473096,0,0,0,NA,NA,0,NA,NA
+8658,-0.0418096312508896,0.0075,0.75,1,44.4894453484604,1,0.75,5.6903559366862,5
+8659,0.173928247455406,0.8275,82.75,1,99.4773714744283,0.962898550724638,82.75,44.9236666572778,0
+8660,0.00855009583719948,0.28,28,2,94.5302856857195,0.876237623762376,27.5,47.7478268487113,5
+8661,-0.0418562920078614,0.0275,2.75,1,73.5251216233933,1,2.75,51.2419541098855,42.7200164794922
+8662,-0.00303071568263022,0.0925,9.25,3,78.6088237798211,0.710969606647699,5,97.2733095529917,61.8465843200684
+8663,0.00881504427649816,0.0775,7.75,2,82.9710415416266,0.718157181571816,7,156.086423320155,90
+8664,0.00211937004169158,0.1625,16.25,2,86.7541541948763,0.820367190595694,9.25,69.4328796386719,46.0977210998535
+8665,-0.0368758252476255,0,0,0,NA,NA,0,NA,NA
+8666,-0.0296304885419045,0,0,0,NA,NA,0,NA,NA
+8667,-0.0054808424648445,0.0675,6.75,5,67.202967993197,0.625911839890268,4,7.53877371328848,0
+8668,0.0131438596583575,0.1375,13.75,5,81.606999086216,0.804729214340198,11.25,19.0088418440385,5
+8669,0.0167583695391841,0.235,23.5,1,94.4060921446443,0.976657329598506,23.5,41.164284969898,22.3606796264648
+8670,-0.0137759406365512,0,0,0,NA,NA,0,NA,NA
+8671,-0.0922966787674886,0.0025,0.25,1,0,NA,0.25,5,5
+8672,-0.0169881046545015,0.175,17.5,4,83.1779032108294,0.78319783197832,7.75,7.93124395098005,0
+8673,0.0394615472484657,0.38,38,2,95.8517652796562,0.907503757659845,37.25,26.9388629637266,0
+8674,-0.0456926344511521,0.08,8,1,86.6550847056172,0.853678929765886,8,36.4029961824417,29.1547584533691
+8675,-0.146878471972886,0,0,0,NA,NA,0,NA,NA
+8676,-0.0973477787576121,0.165,16.5,1,92.3061588442808,0.958344181202812,16.5,1.24350102742513,0
+8677,0.0707227573788259,0.65,65,2,97.320783042675,0.876796714579055,61,0.615384615384615,0
+8678,0.0886416718713008,0.7875,78.75,1,99.3322508440104,0.833630421865716,78.75,1.20761642456055,0
+8679,0.0513956989818689,0.68,68,2,98.6105582026475,0.74926614481409,67.5,5.22617251031539,0
+8680,0.0137890634788346,0.5125,51.25,1,97.9112600445307,0.956928460865469,51.25,16.6394445093667,0
+8681,-0.0526034094890929,0.015,1.5,1,62.2896536353828,1,1.5,16.400429725647,11.1803398132324
+8682,0.0381715029999123,0.3275,32.75,4,93.2814557021105,0.894230918791122,30.75,15.5149409315968,0
+8683,0.0282279006824319,0.2325,23.25,2,91.7504774894943,0.866567246183431,20,21.0543882103376,0
+8684,-0.0821719457516156,0,0,0,NA,NA,0,NA,NA
+8685,-0.0929495812940877,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,150.239761352539,143.17822265625
+8686,0.00535008673832635,0.0425,4.25,3,63.6675340956763,0.70757180156658,2.25,140.206814934226,104.043266296387
+8687,0.0283630213825381,0.05,5,4,63.0827424099282,0.66044142614601,2.5,73.2907283782959,50
+8688,0.0173208633272952,0.165,16.5,2,89.310498988785,0.937516271804218,15.25,4.48341944723418,0
+8689,-0.0950353260693373,0,0,0,NA,NA,0,NA,NA
+8690,-0.02308107343335,0.38,38,1,96.7251883615388,0.861255636489768,38,67.6372873908595,30
+8691,0.0162698825648567,0.2425,24.25,1,94.5753035249093,0.962065172034445,24.25,107.846488244755,75
+8692,-0.0452792432306524,0,0,0,NA,NA,0,NA,NA
+8693,-0.106326137054712,0,0,0,NA,NA,0,NA,NA
+8694,-0.130697394274175,0,0,0,NA,NA,0,NA,NA
+8695,-0.0953652019312722,0,0,0,NA,NA,0,NA,NA
+8696,-0.0213621563178094,0,0,0,NA,NA,0,NA,NA
+8697,0.067675506099622,0.5225,52.25,1,97.9819530119361,0.962314432226544,52.25,73.9559665114115,35.355339050293
+8698,0.125685524097644,0.7475,74.75,2,98.0931142789746,0.90855213407664,73,94.1467280180558,20.6155281066895
+8699,0.0676944585300953,0.6075,60.75,2,98.2029706611156,0.927046213417885,60.5,33.1357019683461,0
+8700,-0.0539311541398638,0.0075,0.75,1,44.4894453484604,1,0.75,73.9116363525391,71.589111328125
+8701,-0.119611903130499,0,0,0,NA,NA,0,NA,NA
+8702,-0.0368781975388447,0.005,0.5,2,0,1,0.25,5,5
+8703,-0.00696744814093563,0.0675,6.75,2,82.1410189389619,0.900243157304071,6.5,1.11111111111111,0
+8704,0.0607893598993178,0.6075,60.75,1,98.5105231673728,0.865316086309941,60.75,1.58141794714908,0
+8705,0.11484448711446,0.9875,98.75,1,99.9667936270881,0.893333333333336,98.75,0.791769322262535,0
+8706,0.0926929207332432,1,100,1,100,NA,100,0.0551776695251465,0
+8707,-0.000409357344833552,0.49,49,1,97.7443609022556,0.967679379444085,49,0.153061224489796,0
+8708,-0.0250258430372782,0.27,27,1,95.1342058036908,0.90165086055497,27,3.51987632115682,0
+8709,0.090252246633172,0.725,72.5,1,99.081892426161,0.733110925771476,72.5,17.2310258799586,0
+8710,0.0729155671910848,0.7,70,2,97.3209586436219,0.778200253485425,61.25,33.7183470181056,0
+8711,0.0785039226543267,0.74,74,1,99.1448611187463,0.951664134788013,74,11.362276393014,0
+8712,0.076697120780409,0.595,59.5,3,95.5702554387195,0.728117630739354,41.75,1.88572859563747,0
+8713,0.0377120044040203,0.33,33,4,93.296704923554,0.838979376974051,30.5,0.0757575757575758,0
+8714,-0.00668703342002118,0.2975,29.75,1,95.613700031282,0.848424937392909,29.75,0,0
+8715,-0.0754816593497526,0,0,0,NA,NA,0,NA,NA
+8716,0.00972865070027183,0.52,52,2,96.411937577353,0.940783807062877,48.75,1.10335324360774,0
+8717,0.0672676342306659,0.68,68,3,96.5716505072632,0.816536203522505,60.75,0.54831667507396,0
+8718,0.0406817145930836,0.5125,51.25,1,97.9112600445307,0.913856921730937,51.25,0.560975609756098,0
+8719,-0.0900795768364333,0.01,1,1,52.6315789473684,1,1,0,0
+8720,-0.0141350722549396,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,0,0
+8721,-0.0202742370112901,0,0,0,NA,NA,0,NA,NA
+8722,0.0146442299914997,0.195,19.5,2,92.5142380341553,0.891979476100459,19.25,0.694129943847656,0
+8723,-0.00733081360385768,0.085,8.5,3,74.9920618315879,0.765807962529274,4.5,1.73947457706227,0
+8724,0.00969425251249049,0.1325,13.25,3,82.1245756643769,0.82265573043671,6.25,3.28106336773566,0
+8725,-0.0651901479286607,0,0,0,NA,NA,0,NA,NA
+8726,-0.0822592153123696,0.0525,5.25,2,76.3493279390028,0.604221635883905,4.25,7.78701936630976,0
+8727,-0.0183633694542993,0.01,1,3,15.8692205350002,0.242424242424242,0.5,5.51776695251465,0
+8728,-0.00628701277618802,0,0,0,NA,NA,0,NA,NA
+8729,0.0319835426051213,0.3475,34.75,2,95.7470222626824,0.855190514978731,34.25,12.9993855318577,0
+8730,0.0170355511084108,0.1675,16.75,3,89.0889424442399,0.784399784399784,15,16.7153828179658,0
+8731,-0.000122764095694947,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,36.2679888407389,30.4138145446777
+8732,0.000272179006024089,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,17.3203277587891,0
+8733,0.0479211732801923,0.5125,51.25,1,97.9112600445307,0.930008748906387,51.25,57.0669236066865,15
+8734,0.0627300588737853,0.805,80.5,1,99.3970714465752,0.974696356275303,80.5,65.8985370019948,35
+8735,-0.0147594143840251,0.3075,30.75,1,95.7718985824481,0.954671285878487,30.75,12.8196667616929,0
+8736,0.047879432275613,0.3625,36.25,3,95.1342957425203,0.940806511283759,35.5,12.3856858483676,0
+8737,-0.00589296725840541,0.355,35.5,2,95.0572145788465,0.940369707811568,34.5,34.2636816132237,0
+8738,-0.0267722700635204,0.3,30,2,94.0649086415783,0.934469200524246,29,21.8856450716654,0
+8739,-0.0384577948089759,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5
+8740,-0.0189089247930133,0.09,9,1,87.719298245614,0.89010989010989,9,19.4325024286906,11.1803398132324
+8741,0.0461296763848259,0.4825,48.25,1,97.686149992119,0.967613958383936,48.25,35.5702972313283,10
+8742,0.0180886674624253,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,2.89071386000689,0
+8743,0.0326628958594165,0.195,19.5,3,86.1704134313501,0.837969214150689,13.25,3.39057193658291,0
+8744,-0.0143082917928768,0.1175,11.75,3,79.7626614399529,0.844192634560907,6.5,3.12917165553316,0
+8745,-0.0454947847154654,0.11,11,1,89.3941397590651,0.969632553902217,11,4.95542032068426,0
+8746,-0.0692910717311315,0.285,28.5,1,95.4043598780874,0.945685382578586,28.5,33.8161257860953,5
+8747,0.0335936224981378,0.3375,33.75,1,96.2035477281698,0.96932044792146,33.75,51.391567908393,20.6155281066895
+8748,0.0304401479315675,0.0525,5.25,3,67.3971134317628,0.769129287598945,2.75,81.0140558878581,67.2681198120117
+8749,0.0268090439144726,0,0,0,NA,NA,0,NA,NA
+8750,-0.0292900812496555,0,0,0,NA,NA,0,NA,NA
+8751,0.0958412471134216,0.765,76.5,1,99.2456636792102,0.970500387182418,76.5,44.0228572172277,10
+8752,0.0598081402643584,0.7525,75.25,1,99.1958903399554,0.871733205066538,75.25,17.574391856146,0
+8753,0.00850920241835411,0.375,37.5,3,90.7658602172089,0.854545454545454,18.5,0.635483169555664,0
+8754,-0.0101253880759759,0.205,20.5,3,87.5669274567703,0.869876382563435,13.75,36.298336912946,0
+8755,-0.0291145987711207,0.2425,24.25,2,92.9976302739402,0.878608550510223,23.25,48.6172572657005,7.07106781005859
+8756,-0.097055139131844,0,0,0,NA,NA,0,NA,NA
+8757,-0.0547234665000281,0,0,0,NA,NA,0,NA,NA
+8758,-0.203866986637004,0.0025,0.25,1,0,NA,0.25,5,5
+8759,-0.0197896985142143,0.35,35,2,92.670238879299,0.855769230769231,17.75,88.022147165026,10
+8760,-0.00404984638371388,0.295,29.5,2,94.9827530904737,0.92046132431895,29.25,84.4824398493363,53.8516464233398
+8761,-0.0721316261480433,0,0,0,NA,NA,0,NA,NA
+8762,-0.0129189046929241,0.17,17,3,85.5599388369111,0.817758428672674,10.75,36.2269518796135,5
+8763,-0.00315420433680174,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,39.7828862508138,32.0156211853027
+8764,-0.0175971159114852,0.0825,8.25,1,86.9391941099265,0.939448985770512,8.25,36.8153369787968,14.1421356201172
+8765,-0.0155987152145826,0.075,7.5,3,74.3280821157924,0.735245449531164,5,13.2362798690796,0
+8766,-0.0514061155261606,0,0,0,NA,NA,0,NA,NA
+8767,0.00309855246268853,0,0,0,NA,NA,0,NA,NA
+8768,-0.104747280098404,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,6.45777580954812,0
+8769,-0.110927393646052,0,0,0,NA,NA,0,NA,NA
+8770,-0.00244334033113773,0.0525,5.25,1,82.2928536593692,0.901055408970976,5.25,41.2395484561012,20
+8771,0.00963106177740883,0.0525,5.25,1,82.2928536593692,1,5.25,43.795960017613,30.4138145446777
+8772,0.11629139262117,0.6425,64.25,1,98.697022509981,0.9534768765538,64.25,18.1845603972557,0
+8773,0.040805839249515,0.4325,43.25,3,93.8318647296975,0.883998729509895,36,28.5895899293051,0
+8774,0.0969692584418226,0.605,60.5,1,98.496585825966,0.932788170718046,60.5,58.5073334875186,30
+8775,0.00644448274691968,0.2075,20.75,1,93.7090252642431,0.957080624047726,20.75,102.765120173075,76.4852905273438
+8776,-0.0412554880816151,0,0,0,NA,NA,0,NA,NA
+8777,0.0628163554153161,0.61,61,1,98.5243747403739,0.966261808367071,61,0.409836065573771,0
+8778,0.0574704168703647,0.5375,53.75,1,98.0842701108371,0.891891891891892,53.75,1.74846953458564,0
+8779,0.0734050087819924,0.8025,80.25,1,99.3879413454111,0.883026277311276,80.25,10.8116779802744,0
+8780,-0.0707201873651002,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,17.448688360361,11.1803398132324
+8781,0.00998734621454787,0.0025,0.25,1,0,NA,0.25,28.2842712402344,28.2842712402344
+8782,-0.00664772777133294,0.05,5,1,81.7256002368443,0.932088285229202,5,20.7152752876282,5
+8783,0.0244373120501405,0.315,31.5,2,92.9496053740361,0.910751282950307,25.25,49.8011067556956,7.07106781005859
+8784,0.0520600423701944,0.3525,35.25,2,94.1689195161494,0.916195265032475,32,75.6015044137941,31.6227760314941
+8785,0.0390426023283953,0.305,30.5,1,95.7330793639454,0.928383085386894,30.5,101.903738428335,67.0820388793945
+8786,0.0340637584205615,0.1125,11.25,3,80.6849119481721,0.807264640474425,7,175.81964992947,141.509719848633
+8787,-0.000910095641957014,0.0025,0.25,1,0,NA,0.25,138.924438476562,138.924438476562
+8788,-0.0779316732682673,0,0,0,NA,NA,0,NA,NA
+8789,-0.170200211666524,0,0,0,NA,NA,0,NA,NA
+8790,-0.0494474654014539,0.0725,7.25,1,85.7162801918893,0.839421918908069,7.25,27.0267276763916,15
+8791,-0.0108395832798851,0,0,0,NA,NA,0,NA,NA
+8792,-0.0955484124668874,0,0,0,NA,NA,0,NA,NA
+8793,-0.135477281939238,0,0,0,NA,NA,0,NA,NA
+8794,-0.108448881749064,0,0,0,NA,NA,0,NA,NA
+8795,-0.0502760773299087,0,0,0,NA,NA,0,NA,NA
+8796,-0.0112980775398319,0.115,11.5,1,89.742951983695,0.927567724177894,11.5,55.4248089168383,44.7213592529297
+8797,0.110000298933592,0.87,87,1,99.620460342959,0.976619125555296,87,81.8641618969797,43.0116271972656
+8798,0.0792632855474949,0.7525,75.25,2,97.0715714665519,0.793347941496089,57.75,33.1079013165445,0
+8799,0.0440927198497229,0.4725,47.25,2,95.844036611946,0.875423155044008,43,31.148425097188,0
+8800,0.00481997291673906,0.005,0.5,1,30.8308651382582,1,0.5,90.897647857666,90.5538558959961
+8801,-0.202998533081263,0,0,0,NA,NA,0,NA,NA
+8802,-0.135692008850892,0,0,0,NA,NA,0,NA,NA
+8803,-0.0474888752371771,0,0,0,NA,NA,0,NA,NA
+8804,-0.0286270968190365,0.0625,6.25,1,84.2105263157895,0.893333333333333,6.25,4.01289901733398,0
+8805,0.0431537320309144,0.415,41.5,2,94.7230053962552,0.899446958270488,38,1.70282856814833,0
+8806,0.0794900599896209,0.9,90,1,99.7153023505818,0.853372434017595,90,1.60459743075901,0
+8807,0.0663239394928678,0.8,80,1,99.3787684802637,0.925496688741722,80,12.9096999287605,0
+8808,-0.0111828208365478,0.4125,41.25,2,94.8600591794944,0.837625979843225,32.75,11.2248477704597,0
+8809,0.0981304633244872,0.92,92,1,99.7759364721822,0.802725968436155,92,4.18855033750119,0
+8810,0.0492463194139737,0.4125,41.25,2,93.6446580209381,0.854423292273236,25.5,23.5681581786185,0
+8811,0.0171621406044233,0.245,24.5,2,90.2669264053861,0.872065021071644,15,1.80138447819924,0
+8812,0.0797778814239428,0.67,67,1,98.8331871391418,0.752997168504127,67,1.20175771570917,0
+8813,0.0860493116267025,0.98,98,1,99.9465655549884,1,98,0.0255102040816327,0
+8814,0.0962801341991872,0.96,96,1,99.8914698623176,0.931318681318682,96,0.0260416666666667,0
+8815,0.0410513350650581,0.46,46,3,94.4816545416816,0.85838779956427,39.5,0.135869565217391,0
+8816,-0.00467623173462925,0.1275,12.75,5,78.5937823628417,0.789217139281362,9,1.02100132960899,0
+8817,0.0110768986398716,0.13,13,3,82.0043135333147,0.754617073485729,7.25,1.05769230769231,0
+8818,-0.00160806486755519,0.1125,11.25,3,80.4525075468901,0.77761304670126,7.25,0.111111111111111,0
+8819,-0.105929331260559,0.1025,10.25,1,88.8238145380415,0.854668765895604,10.25,0.24390243902439,0
+8820,-0.132913506310433,0,0,0,NA,NA,0,NA,NA
+8821,-0.0148168091057596,0.0775,7.75,1,86.3573366287605,0.934959349593496,7.75,0,0
+8822,0.0379506578218934,0.375,37.5,3,92.9632857097888,0.819636363636364,27.5,3.76763326009115,0
+8823,0.0334457365349226,0.3675,36.75,2,95.3133983645683,0.888328900774351,35,1.79524216684354,0
+8824,-0.0177024524058288,0.07,7,3,70.8710966708752,0.61768219832736,2.75,0,0
+8825,-0.0751586504391162,0,0,0,NA,NA,0,NA,NA
+8826,-0.0891627534944564,0,0,0,NA,NA,0,NA,NA
+8827,-0.0321833220976987,0,0,0,NA,NA,0,NA,NA
+8828,-0.00771318419068848,0.0525,5.25,4,64.869524726878,0.604221635883905,2.5,3.29248264857701,0
+8829,-0.0172978638959057,0.0475,4.75,2,71.4532291379023,0.818988143723414,3,8.99527429279528,0
+8830,-0.00382482438149964,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,22.0606754847935,0
+8831,0.0123834330291766,0.1075,10.75,5,73.9257181089943,0.70432617491441,5.75,5.90578385286553,0
+8832,-0.0236742794629117,0.005,0.5,1,30.8308651382582,1,0.5,23.6803398132324,22.3606796264648
+8833,0.0134448286340159,0.12,12,1,90.0697297581677,0.83370288248337,12,40.4836231867472,20
+8834,0.050410459919085,0.6,60,1,98.4684502698115,0.933184855233853,60,25.5720931132634,0
+8835,0.0656007071297063,0.6875,68.75,1,98.9155506404681,0.968992248062015,68.75,16.2703514029763,0
+8836,0.109131705313921,0.7525,75.25,1,99.1958903399554,0.885985071170256,75.25,15.5952502405921,0
+8837,0.00554359952449886,0.345,34.5,3,90.4787497204247,0.836423118865867,16.5,28.7089764829995,0
+8838,-0.00986075742708636,0.2,20,3,89.1329670805633,0.832746478873239,17,21.3921972513199,0
+8839,-0.000444659854983911,0.215,21.5,2,92.4922047551194,0.875109279380542,20.75,31.9584009037461,10
+8840,0.00676638987060869,0.205,20.5,1,93.6387867289635,0.982650184341791,20.5,32.4426819871112,14.1421356201172
+8841,0.0216621426813072,0.145,14.5,2,87.0061804261666,0.883040935672515,12.5,30.8603209462659,15.8113880157471
+8842,0.0190126345343742,0,0,0,NA,NA,0,NA,NA
+8843,0.0281268476392142,0.01,1,3,15.8692205350002,0.242424242424242,0.5,56.9776182174683,55
+8844,-0.00747717400405236,0.185,18.5,2,89.5182944325029,0.924492685228882,17,32.9246925405554,5
+8845,-0.104969459401909,0,0,0,NA,NA,0,NA,NA
+8846,0.0813060809415765,0.615,61.5,1,98.5518240730175,0.977413890457369,61.5,30.3426011403402,0
+8847,-0.0195259577864954,0.115,11.5,1,89.742951983695,0.913081269013472,11.5,61.7270808012589,50
+8848,-0.142724713890493,0,0,0,NA,NA,0,NA,NA
+8849,-0.000843504318670227,0,0,0,NA,NA,0,NA,NA
+8850,-0.0399194805387924,0.04,4,1,78.9473684210526,0.826388888888889,4,102.529283046722,90
+8851,0.13908119957603,0.975,97.5,1,99.9329506995597,0.945945945945946,97.5,60.2943820170867,14.1421356201172
+8852,0.0615158496770891,0.8275,82.75,1,99.4773714744283,0.897971014492754,82.75,12.5014257344595,0
+8853,0.0433688239855292,0.4225,42.25,3,93.3545838363284,0.766899766899767,31.75,3.48910245951816,0
+8854,0.014427678695356,0.3775,37.75,2,94.5340167111659,0.924608180012469,35.25,27.4521877465659,5
+8855,-0.0284578571158636,0.165,16.5,1,92.3061588442808,0.958344181202812,16.5,18.964348301743,0
+8856,-0.0859764408413321,0,0,0,NA,NA,0,NA,NA
+8857,-0.0792487618071027,0,0,0,NA,NA,0,NA,NA
+8858,-0.263111303821206,0,0,0,NA,NA,0,NA,NA
+8859,0.0183574666304048,0.5875,58.75,1,98.3965465994375,0.917167115344792,58.75,87.6649992760192,25
+8860,0.00669363315064402,0.275,27.5,1,95.2267095868885,0.937619130133426,27.5,92.8878302834251,65.192024230957
+8861,-0.00535702804816538,0.1875,18.75,2,92.3340728623784,0.86013986013986,18.5,56.7560936991374,35
+8862,-0.0392420926126942,0.0925,9.25,1,87.9580013362782,0.963871200830962,9.25,31.675444989591,11.1803398132324
+8863,-0.0469424022294697,0.06,6,3,70.9135691163151,0.692049272116461,4,12.0319495201111,0
+8864,-0.0372891012350783,0,0,0,NA,NA,0,NA,NA
+8865,-0.0229276021284386,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,18.4885673522949,15
+8866,-0.0376656316402386,0.1475,14.75,3,84.6162946745498,0.838997182450693,7.5,9.22677777177196,0
+8867,0.0722270511178067,0.47,47,1,97.5860530790582,0.859032747777055,47,44.2054140719962,5
+8868,-0.111566768445336,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,25.3180314381917,14.1421356201172
+8869,-0.0764737530122511,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.8451779683431,0
+8870,0.0100315671735552,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,49.6937739054362,41.2310562133789
+8871,0.0143097718405079,0.0075,0.75,1,44.4894453484604,1,0.75,5.6903559366862,5
+8872,0.179904804127291,1,100,1,100,NA,100,18.9536848545074,0
+8873,0.169958524145186,1,100,1,100,NA,100,21.6307008314133,0
+8874,0.191851015686989,1,100,1,100,NA,100,88.6338839912415,30
+8875,0.180075175357561,0.9675,96.75,1,99.9123308655226,1,96.75,98.5286791601846,45
+8876,0.0592669548941558,0.4025,40.25,1,96.9672588816937,0.949112292208527,40.25,66.859437409395,11.1803398132324
+8877,0.0457305955904485,0.505,50.5,1,97.8568679502074,0.935353535353535,50.5,0.099009900990099,0
+8878,0.0775506487383973,0.8575,85.75,1,99.5794816088838,0.729261425167858,85.75,0.703245491050075,0
+8879,-0.00496367869611277,0.1475,14.75,2,88.9066204785636,0.861997584957737,13.5,0.169491525423729,0
+8880,-0.0142754482074861,0,0,0,NA,NA,0,NA,NA
+8881,-0.0238918018655386,0,0,0,NA,NA,0,NA,NA
+8882,0.00762033690740282,0.1925,19.25,1,93.2673077410907,0.945365142961209,19.25,79.1140384426365,57.0087738037109
+8883,0.0785764224674858,0.7775,77.75,1,99.2942318197501,0.969321624419987,77.75,42.8880602355172,0
+8884,-0.00276641665551324,0.035,3.5,2,65.5940978380291,0.740932642487047,2,36.9904684339251,14.1421356201172
+8885,0.134200489663563,0.72,72,1,99.0604668316969,0.881391671059568,72,82.8617657687929,42.7200164794922
+8886,0.0397970107181754,0.185,18.5,1,93.0265643427559,0.962246342614441,18.5,68.091867962399,36.0555114746094
+8887,-0.0315629924387031,0,0,0,NA,NA,0,NA,NA
+8888,-0.16769655122218,0,0,0,NA,NA,0,NA,NA
+8889,-0.140590893126864,0,0,0,NA,NA,0,NA,NA
+8890,0.0242309026728617,0.0375,3.75,1,78.0843273950357,0.811097992916175,3.75,24.4733317057292,7.07106781005859
+8891,-0.0283422366582272,0.035,3.5,2,68.1118943194047,0.740932642487047,3,9.54473073141915,0
+8892,-0.13024719373323,0,0,0,NA,NA,0,NA,NA
+8893,-0.10727978813462,0,0,0,NA,NA,0,NA,NA
+8894,-0.125304055344313,0,0,0,NA,NA,0,NA,NA
+8895,-0.0978793368214974,0,0,0,NA,NA,0,NA,NA
+8896,0.10195450687941,0.7575,75.75,1,99.2159474776692,0.9638904436059,75.75,72.7138499269391,39.0512504577637
+8897,0.0689987828837184,0.585,58.5,3,95.3730481970762,0.845606683025006,37.5,64.8841903474596,0
+8898,0.0691009076207411,0.76,76,2,98.2752810079352,0.912739965095986,73.5,21.7442887519535,0
+8899,-0.00416388777546672,0.0875,8.75,2,83.656947378347,0.848842701936703,8,59.2794932774135,43.0116271972656
+8900,0.0582684078748571,0.3925,39.25,3,94.8630145096721,0.897119341563786,37.25,39.026164060945,5
+8901,-0.0613587931684015,0.025,2.5,2,58.8854677513915,0.763313609467456,1.5,6.44317474365234,0
+8902,-0.0596693484621937,0,0,0,NA,NA,0,NA,NA
+8903,-0.128686644369081,0,0,0,NA,NA,0,NA,NA
+8904,-0.124307452501234,0,0,0,NA,NA,0,NA,NA
+8905,-0.0606221177260159,0,0,0,NA,NA,0,NA,NA
+8906,-0.0236927311184263,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,1.53846153846154,0
+8907,0.0561838510936286,0.53,53,2,95.6117965927333,0.848795766281456,38,8.2358401046609,0
+8908,0.0925916206464171,0.955,95.5,1,99.8774262095089,0.508901166359729,95.5,8.879617855811,0
+8909,0.0937105418562715,0.86,86,1,99.5877487787664,0.76923076923077,86,9.80515350851902,0
+8910,0.0232494661116698,0.255,25.5,5,83.8393374646286,0.669930685443943,11,1.64111316905302,0
+8911,0.0320797796934494,0.3575,35.75,2,96.1070648836625,0.833665013217691,35.5,0.27972027972028,0
+8912,0.0797249206667766,0.725,72.5,1,99.081892426161,0.706422018348624,72.5,1.09272764797868,0
+8913,0.0953174269385636,0.9575,95.75,1,99.8844617862358,0.740722735375142,95.75,0.300261096605744,0
+8914,0.0842416056781076,0.945,94.5,1,99.849005264488,0.721059972105998,94.5,0.672333692116712,0
+8915,0.0841450669325423,0.875,87.5,1,99.6366054334226,0.734138972809668,87.5,1.61530096871512,0
+8916,0.0657545280270278,0.8325,83.25,1,99.4947723752506,0.781695655268965,83.25,0.583009416276628,0
+8917,0.034680778629845,0.555,55.5,1,98.1983573135366,0.940292026271508,55.5,0.247747747747748,0
+8918,-0.0438571312315617,0.0225,2.25,1,70.1754385964912,0.658994032395567,2.25,1.11111111111111,0
+8919,-0.0269849003330455,0.145,14.5,5,79.9532976115054,0.824561403508772,6.75,0,0
+8920,-0.0428726272175845,0.12,12,3,79.3044810924541,0.805986696230599,5.5,0.3125,0
+8921,0.000533976563456235,0.425,42.5,1,97.1898422226593,0.872204472843451,42.5,0.38948943194221,0
+8922,-5.42989824316464e-05,0.055,5.5,5,58.249495064114,0.626517273576097,1.75,2.74193070151589,0
+8923,0.031460669189164,0.2775,27.75,4,88.146987642876,0.72318339100346,15.75,1.7725021431038,0
+8924,-0.0249149055889939,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+8925,-0.119298258009367,0,0,0,NA,NA,0,NA,NA
+8926,-0.0356728107295567,0,0,0,NA,NA,0,NA,NA
+8927,-0.0366309774067486,0,0,0,NA,NA,0,NA,NA
+8928,-0.0233367039730729,0.0525,5.25,3,70.9382151029748,0.83509234828496,4,102.75227355957,93.4077072143555
+8929,-0.00220026180969398,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,97.7505175272624,87.3212432861328
+8930,0.0110675157807867,0.2075,20.75,3,87.5175172605623,0.785403120238632,11.25,5.99646000689771,0
+8931,0.0190883786492304,0.1925,19.25,3,85.3340170279954,0.836095428883628,9.5,6.06870378766741,0
+8932,0.00838676415096415,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,13.0937824249268,5
+8933,0.0133391991363169,0.1525,15.25,3,84.2105263157895,0.710580508710414,9,37.6106296914523,15
+8934,0.00324267754138418,0.1675,16.75,3,88.4111662693979,0.897333230666564,15.5,34.9267173026925,0
+8935,-0.0348950691718539,0.105,10.5,3,80.1599435544085,0.763946809347706,6.5,24.1847110021682,5
+8936,0.203556764693931,0.95,95,1,99.8632718311308,0.833564493758669,95,2.80624633086355,0
+8937,0.0649565510694811,0.61,61,1,98.5243747403739,0.971884840305893,61,1.02280096147881,0
+8938,0.044249049324244,0.2575,25.75,4,90.1790666998468,0.861679861679862,22.75,20.4405429617873,0
+8939,0.00963699886866379,0.24,24,1,94.5197818298983,0.977050183598531,24,20.9221895933151,0
+8940,0.0285513817281571,0.2925,29.25,2,95.0128691280723,0.886659110607374,29,19.8887825501271,0
+8941,0.0156125888219776,0.015,1.5,3,37.593984962406,0.419869470630892,1,9.51509189605713,0
+8942,0.0160768491584895,0,0,0,NA,NA,0,NA,NA
+8943,0.0292514188484347,0.11,11,5,79.7655188221595,0.681141815973277,8.25,79.5384070656516,65
+8944,0.0160881856135529,0.3475,34.75,1,96.3348533717898,0.921561528946813,34.75,42.8324143389146,0
+8945,-0.141846894783666,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,59.3707695007324,50
+8946,0.12960642724327,0.6575,65.75,1,98.7723535160189,0.970388356701855,65.75,61.7260122117887,20
+8947,-0.110072388794215,0,0,0,NA,NA,0,NA,NA
+8948,-0.128879377900303,0,0,0,NA,NA,0,NA,NA
+8949,0.0259661892041481,0.195,19.5,1,93.3444522721621,0.927986317400306,19.5,126.459746531951,105
+8950,-0.00660350483500224,0.34,34,3,93.8516980236157,0.908357771260997,31.5,92.8438169254976,70
+8951,0.126635496430099,1,100,1,100,NA,100,36.3102118110657,0
+8952,0.0272741240089454,0.35,35,3,91.5063876144674,0.867788461538462,29.25,15.9631111826215,0
+8953,0.0413536802348972,0.505,50.5,2,95.4797431149322,0.795286195286195,38,8.6369312021992,0
+8954,-0.00393385963470791,0.2775,27.75,2,92.1176309480506,0.820069204152249,21,64.0874876073889,20
+8955,-0.0029557203173681,0,0,0,NA,NA,0,NA,NA
+8956,-0.0270435605127204,0.0025,0.25,1,0,NA,0.25,10,10
+8957,-0.0530537774812763,0,0,0,NA,NA,0,NA,NA
+8958,-0.0557514025177807,0,0,0,NA,NA,0,NA,NA
+8959,-0.0271393409211305,0.0025,0.25,1,0,NA,0.25,57.0087738037109,57.0087738037109
+8960,-0.0964824855748884,0,0,0,NA,NA,0,NA,NA
+8961,-0.100152834104374,0,0,0,NA,NA,0,NA,NA
+8962,-0.0625286233949009,0,0,0,NA,NA,0,NA,NA
+8963,0.0239423388365321,0.205,20.5,1,93.6387867289635,0.982650184341791,20.5,34.117820669965,7.07106781005859
+8964,-0.0465965894305191,0.065,6.5,2,79.4313400765707,0.843485065866701,5.75,26.2787470450768,7.07106781005859
+8965,-0.0287593985036619,0.0275,2.75,3,57.8638396267183,0.588688946015424,2,6.09736980091442,0
+8966,-0.0293000489857332,0.03,3,2,62.4651075277459,0.757428744693754,1.75,8.31559054056803,0
+8967,0.0286517255780927,0.3025,30.25,2,93.343210250258,0.837080482241773,24.75,65.3942330415584,25.4950981140137
+8968,0.0076609166059643,0.2125,21.25,3,90.5052434731209,0.924314096499527,19.5,49.7953720092773,25
+8969,-0.0165424189480836,0.09,9,1,87.719298245614,0.816849816849817,9,1.92865965101454,0
+8970,-0.00446377538810339,0.055,5.5,2,79.4049244770798,0.875505757858699,5.25,31.0499822443182,18.0277557373047
+8971,0.0206014334234351,0.12,12,1,90.0697297581677,0.916851441241685,12,5.68308019638062,0
+8972,0.166887321233226,0.945,94.5,1,99.849005264488,0.974641815646001,94.5,21.5842078425897,0
+8973,0.187501799762249,1,100,1,100,NA,100,55.2205980348587,0
+8974,0.199054402932525,1,100,1,100,NA,100,60.1514952850342,5
+8975,0.211858546528965,1,100,1,100,NA,100,49.4030959892273,0
+8976,0.127885136105542,0.7725,77.25,1,99.2749460632782,0.916921566406102,77.25,22.6512524009137,0
+8977,0.0127147426556212,0.1975,19.75,2,90.154261523801,0.884290164663996,16.75,1.2549637420268,0
+8978,0.0339471967857753,0.3925,39.25,3,92.5182920076395,0.805669867398263,27.25,0.676517219300483,0
+8979,0.00928199791114821,0.08,8,1,86.6550847056172,0.895484949832776,8,23.0032742619514,10
+8980,-0.0140713344080541,0,0,0,NA,NA,0,NA,NA
+8981,-0.0239119941833633,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,63.1335481916155,55.2268028259277
+8982,0.0821431635575573,0.81,81,1,99.4152046783626,0.965600275197799,81,47.454072540189,0
+8983,0.0201993785122613,0.155,15.5,1,91.8947234736642,0.934253780407627,15.5,31.5073300023233,5
+8984,0.0434769605942711,0.3625,36.25,1,96.5215284364484,0.958564557898631,36.25,61.253353171513,40.3112869262695
+8985,0.113380415978609,0.915,91.5,1,99.7609644895861,0.983023512435277,91.5,65.0338570120556,14.1421356201172
+8986,0.0208477442219009,0.3025,30.25,3,91.6272380172784,0.817530140110785,24,22.6159254026807,0
+8987,-0.0902222217693998,0.1375,13.75,1,91.0694765797212,0.902364607170099,13.75,24.8721081820401,5
+8988,-0.168956050570123,0,0,0,NA,NA,0,NA,NA
+8989,-0.00867341917997692,0,0,0,NA,NA,0,NA,NA
+8990,-0.00753160688502248,0.0275,2.75,2,60.3322599403393,0.657240788346187,1.5,9.16151254827326,0
+8991,-0.095691319270336,0,0,0,NA,NA,0,NA,NA
+8992,-0.121590102324262,0,0,0,NA,NA,0,NA,NA
+8993,-0.076128250528127,0,0,0,NA,NA,0,NA,NA
+8994,-0.194634621217847,0,0,0,NA,NA,0,NA,NA
+8995,-0.106102170044323,0.02,2,1,68.0470115164975,0.795918367346939,2,115.510014533997,103.07763671875
+8996,0.0571010005750577,0.4175,41.75,3,93.4991486214376,0.877375843041079,26.25,62.3418906662992,28.2842712402344
+8997,0.0281982927252466,0.2475,24.75,2,93.2874462113799,0.910410989585278,24,37.8648878347994,5
+8998,0.00147933965722586,0.115,11.5,1,89.742951983695,0.942054179342315,11.5,30.2340304747872,11.1803398132324
+8999,0.0226405983054428,0.0775,7.75,2,80.8047133383701,0.869918699186992,6.5,32.6003811743952,20.6155281066895
+9000,0.0208926305240311,0.3825,38.25,1,96.7531359636374,0.930842710389442,38.25,22.2280092301712,0
+9001,-0.0836414910317399,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,64.6825784047445,60
+9002,-0.0392864712351002,0.04,4,3,68.9413506964927,0.782986111111111,3.5,11.673614025116,0
+9003,-0.0229045868210596,0.0325,3.25,5,50.8166969147005,0.598047660063164,2.25,16.293536406297,7.07106781005859
+9004,-0.0310356978401251,0.0075,0.75,1,44.4894453484604,1,0.75,33.5897178649902,30.4138145446777
+9005,-0.0325146885680442,0,0,0,NA,NA,0,NA,NA
+9006,-0.0351141770282993,0,0,0,NA,NA,0,NA,NA
+9007,0.0401210022666419,0.44,44,2,94.8400850075296,0.824175824175824,33.25,79.7823229052804,25.4950981140137
+9008,0.0980315012276697,0.715,71.5,1,99.0388168843254,0.934781190895454,71.5,39.3313554216932,0
+9009,0.0831530504580587,0.865,86.5,1,99.6041754676792,0.705515913466984,86.5,17.853040419562,0
+9010,0.0672105588653903,0.69,69,1,98.9270603639069,0.806949806949807,69,5.29830441958662,0
+9011,0.0332770660736242,0.3275,32.75,4,88.9578816269889,0.713801309670094,17.75,2.04243607557457,0
+9012,0.0534890987587278,0.66,66,1,98.7846583695088,0.780154486036839,66,0.659629301591353,0
+9013,0.0466774026183157,0.4675,46.75,3,94.0795105514164,0.826318217590708,33.75,1.0305669447955,0
+9014,0.0408390652393246,0.4,40,3,94.7410107560488,0.790249433106576,36.5,2.66688288450241,0
+9015,0.0600578982920479,0.66,66,1,98.7846583695088,0.910873440285205,66,0.651784347765373,0
+9016,0.106315706819296,0.9375,93.75,1,99.8273917947966,0.572433192686358,93.75,0.186666666666667,0
+9017,0.0883304423559457,0.96,96,1,99.8914698623176,0.931318681318682,96,0.875555217266083,0
+9018,-0.0718216962193219,0.065,6.5,4,69.1182465183787,0.660884309377853,3.75,1.53846153846154,0
+9019,-0.0145986542684022,0.0225,2.25,3,47.3684210526316,0.573742540494459,1,6.50820922851562,0
+9020,-0.0213036618665137,0,0,0,NA,NA,0,NA,NA
+9021,-0.00634066859500308,0.07,7,6,57.9455790286987,0.59378733572282,2,2.1122191292899,0
+9022,0.0127381844671254,0.0775,7.75,3,73.1652113010012,0.761517615176152,3.5,4.02432976999591,0
+9023,0.000491898610198405,0.1125,11.25,3,81.2596439587439,0.733135656041512,8.25,6.58631142510308,0
+9024,-0.0541205536305256,0,0,0,NA,NA,0,NA,NA
+9025,-0.0883030506595969,0,0,0,NA,NA,0,NA,NA
+9026,-0.0177658537339426,0,0,0,NA,NA,0,NA,NA
+9027,-0.0141398027524201,0.0025,0.25,1,0,NA,0.25,42.7200164794922,42.7200164794922
+9028,-0.0117849759394812,0.225,22.5,3,87.0998205294464,0.807653776798237,13.75,74.8088603973389,35
+9029,-0.0245721426066302,0.05,5,1,81.7256002368443,0.898132427843803,5,92.6671829223633,85
+9030,0.00943038029226272,0.1125,11.25,2,86.6098649304307,0.673832468495182,10,7.13094058566623,0
+9031,0.0212726301271778,0.17,17,4,84.2825333318154,0.787384833451453,12.5,9.90723528581507,0
+9032,0.026275052687788,0.22,22,1,94.042067560231,0.959170341335946,22,12.5226881070571,0
+9033,0.00929892689113331,0.1025,10.25,3,79.906757855376,0.741633361592184,6.5,5.59150481805569,0
+9034,0.00412551910303591,0.0825,8.25,4,69.8283268303601,0.677061257442729,3.25,12.5412650252834,0
+9035,0.0335223431615304,0.3275,32.75,3,89.2202696546209,0.751131573626169,12.75,14.2363330316908,0
+9036,0.0915014726318623,0.5775,57.75,2,97.5494494574402,0.917626546218372,56.75,2.94282665500393,0
+9037,0.0184948898606308,0.1875,18.75,2,91.5082664338963,0.944055944055944,18.25,6.88320757548014,0
+9038,0.0435720759399555,0.3675,36.75,2,92.96616012117,0.882451474499317,19.75,52.5495547080527,20
+9039,-0.0390784626259119,0.115,11.5,2,85.9316683735396,0.811676082862524,9.75,22.4238043246062,10
+9040,0.014386309705842,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,22.3644158389117,5
+9041,0.0127652249200582,0,0,0,NA,NA,0,NA,NA
+9042,0.0152408519841447,0,0,0,NA,NA,0,NA,NA
+9043,-0.0486770661831565,0,0,0,NA,NA,0,NA,NA
+9044,-0.0522207519277163,0,0,0,NA,NA,0,NA,NA
+9045,-0.08089177230926,0.0975,9.75,1,88.4075627573592,0.965906669507778,9.75,24.1517589275654,5
+9046,0.0459700808622244,0.2575,25.75,2,90.9381025732488,0.912639912639913,22.5,27.1869911453099,0
+9047,-0.0980848052568945,0,0,0,NA,NA,0,NA,NA
+9048,-0.0716241642347995,0,0,0,NA,NA,0,NA,NA
+9049,0.0182264453064636,0.2525,25.25,2,92.4674717741188,0.903915445592121,22.75,69.344591877248,7.07106781005859
+9050,0.0756230996319209,0.65,65,1,98.735013968989,0.982399530654151,65,85.0403144249549,30.4138145446777
+9051,0.0860049774078652,0.815,81.5,2,99.0934119467005,0.85937156668864,81,55.3388182868255,5
+9052,0.00965982315221481,0.2125,21.25,5,84.7092015536352,0.739304110165037,11.75,3.50757908540614,0
+9053,0.0337378987197735,0.4675,46.75,2,97.2945734461899,0.831745773290998,46.5,7.40591861092471,0
+9054,-0.0206978020972565,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,68.6870342601429,62.6498222351074
+9055,-0.0229644024948868,0,0,0,NA,NA,0,NA,NA
+9056,-0.0138912857214928,0,0,0,NA,NA,0,NA,NA
+9057,0.013032782483283,0.195,19.5,1,93.3444522721621,0.972994869025115,19.5,15.0408327885163,0
+9058,0.01821228843889,0.2775,27.75,1,95.2720210973421,0.944636678200692,27.75,16.0145623146951,0
+9059,0.116088229977031,0.745,74.5,1,99.1654268803843,0.979029044772989,74.5,18.064113085702,0
+9060,0.0157659621871426,0.2925,29.25,1,95.5315755048205,0.919994666311087,29.25,19.8466321505033,0
+9061,-0.0698503436916508,0,0,0,NA,NA,0,NA,NA
+9062,-0.0460886481989291,0,0,0,NA,NA,0,NA,NA
+9063,-0.0183963142037646,0,0,0,NA,NA,0,NA,NA
+9064,0.0127935822439031,0.2825,28.25,2,94.7200442013279,0.931679989068798,28,29.0402554537343,0
+9065,-0.162059617078557,0,0,0,NA,NA,0,NA,NA
+9066,-0.0833633459915291,0.0625,6.25,1,84.2105263157895,0.946666666666667,6.25,14.623507232666,0
+9067,-0.01128752929435,0.08,8,5,70.9356840851875,0.749163879598662,5.5,18.7364988923073,0
+9068,-0.0547515296627421,0.035,3.5,2,69.0285060247284,0.844559585492228,3,3.57142857142857,0
+9069,-0.103993245530874,0,0,0,NA,NA,0,NA,NA
+9070,-0.0759406328480691,0,0,0,NA,NA,0,NA,NA
+9071,-0.0668879989400739,0,0,0,NA,NA,0,NA,NA
+9072,0.01371437720416,0.285,28.5,1,95.4043598780874,0.95926403693394,28.5,12.0247431303325,0
+9073,0.159416910816144,0.875,87.5,1,99.6366054334226,0.97583081570997,87.5,44.3275773838588,0
+9074,0.194641122110188,1,100,1,100,NA,100,38.5327706193924,0
+9075,0.192403910644352,1,100,1,100,NA,100,37.6271399831772,0
+9076,0.0161192330491031,0.2125,21.25,1,93.8457653779655,0.924314096499527,21.25,11.6527265436509,0
+9077,0.0317517545633746,0.3725,37.25,2,96.2151378349199,0.900763247376793,37,10.0574203977649,0
+9078,-0.0460755246880581,0.0425,4.25,2,75.7894736842105,0.7911227154047,4,4.60495713177849,0
+9079,0.00392257471665289,0.215,21.5,4,88.5803191315728,0.825152991132759,17.75,46.527046048364,11.1803398132324
+9080,-0.00848458987382401,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,27.7182601928711,25
+9081,0.0526169180878787,0.45,45,1,97.417305342106,0.950859950859951,45,38.5814967579312,7.07106781005859
+9082,0.063853125048845,0.5625,56.25,2,96.2198768693635,0.902040816326531,51.75,24.1266502041287,0
+9083,0.0181906378245549,0.12,12,3,79.7929657790546,0.73669623059867,6.5,23.6169200738271,0
+9084,0.115593116931268,0.92,92,1,99.7759364721822,0.964131994261118,92,54.2042611319086,7.07106781005859
+9085,-0.00949371114849782,0.435,43.5,1,97.2831784886431,0.96140379896893,43.5,46.0119689524859,15.8113880157471
+9086,-0.0763450731821649,0.0475,4.75,4,60.7829736648505,0.637976287446828,2.5,4.55145564832185,0
+9087,0.0564590545324609,0.5075,50.75,1,97.8751325648042,0.929984246455453,50.75,31.3206428941247,0
+9088,-0.00341691507172072,0.275,27.5,1,95.2267095868885,0.951481545659331,27.5,73.7553548986262,42.7200164794922
+9089,0.0068481935949967,0.055,5.5,2,77.6847378303052,0.875505757858699,5,149.687437577681,140.80126953125
+9090,-0.127010717270387,0,0,0,NA,NA,0,NA,NA
+9091,-0.141753452308476,0,0,0,NA,NA,0,NA,NA
+9092,-0.0925782143697143,0,0,0,NA,NA,0,NA,NA
+9093,-0.143479484170675,0,0,0,NA,NA,0,NA,NA
+9094,-0.179272722174501,0,0,0,NA,NA,0,NA,NA
+9095,0.0224096591013949,0.2775,27.75,3,88.0954142143651,0.806228373702422,12.25,155.227454176894,105.118980407715
+9096,0.0343336944310431,0.21,21,5,83.6767113506145,0.78761362670971,14.75,125.568505332583,70.7106781005859
+9097,-0.0282025994888318,0,0,0,NA,NA,0,NA,NA
+9098,-0.0336845153234026,0.005,0.5,1,30.8308651382582,1,0.5,24.6432514190674,22.3606796264648
+9099,0.0291880243838932,0.3125,31.25,2,92.0029964427283,0.903884661593913,17.25,17.3856404724121,0
+9100,-0.0230653456384152,0.08,8,2,80.0461138593776,0.832775919732441,6,22.2778656482697,0
+9101,-0.199893870037049,0,0,0,NA,NA,0,NA,NA
+9102,-0.185626178719103,0,0,0,NA,NA,0,NA,NA
+9103,-0.137437689565413,0,0,0,NA,NA,0,NA,NA
+9104,-0.00814125688840704,0.0625,6.25,5,60.5383027117548,0.573333333333333,2,9.20516181945801,0
+9105,-0.0361184630894422,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,6.66666666666667,0
+9106,-0.0215911934887845,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,4.92201232910156,0
+9107,0.0626850303580432,0.4575,45.75,2,96.9812847684072,0.978185586126033,45.5,78.0048074149043,35
+9108,0.00377865792361263,0.1475,14.75,2,89.8140888371383,0.896498188718303,14.25,77.9191758107331,41.2310562133789
+9109,0.0451798266160768,0.465,46.5,1,97.5448886830867,0.864159965224951,46.5,10.74117765119,0
+9110,0.0519037380938607,0.535,53.5,1,98.0675165576351,0.956773112876209,53.5,29.3344309174012,7.07106781005859
+9111,-0.00415615133759275,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0
+9112,0.0258266344131789,0.3325,33.25,2,94.8683622792955,0.913331476150679,32.25,1.01503759398496,0
+9113,0.0340218569236458,0.2675,26.75,2,92.7267395172455,0.886823816513113,24,1.58117729258314,0
+9114,0.0872236531461385,0.6125,61.25,1,98.5381414210533,0.830962107339062,61.25,3.76040042176539,0
+9115,0.0686331490169687,0.7575,75.75,1,99.2159474776692,0.711123548847203,75.75,2.18162756941893,0
+9116,0.0953453506110236,0.905,90.5,1,99.7306491449722,0.784863618901267,90.5,1.08879042988983,0
+9117,0.103729572287702,0.7525,75.25,1,99.1958903399554,0.878859138118397,75.25,1.99096983215738,0
+9118,0.0059240810368965,0.0625,6.25,2,81.0200477655928,0.893333333333333,6,1.4,0
+9119,0.00143305586567067,0.06,6,2,75.1491145752486,0.692049272116461,3.25,1.25,0
+9120,0.0166906222279067,0.195,19.5,5,83.1149101112425,0.729948690251148,10.75,0.576923076923077,0
+9121,0.00655670997410198,0.0525,5.25,2,77.3416134336187,0.83509234828496,4.75,2.00338418143136,0
+9122,0.0186213491383387,0.0575,5.75,2,77.8943168562567,0.616858237547893,4.75,11.3487306677777,0
+9123,0.00746175285989921,0.04,4,2,73.8471596962463,0.869791666666667,3.75,7.8528094291687,5
+9124,-0.0892683732304431,0.0225,2.25,2,63.0901789228714,0.573742540494459,2,3.13904529147678,0
+9125,-0.0334116075293787,0,0,0,NA,NA,0,NA,NA
+9126,-0.0243057044262969,0,0,0,NA,NA,0,NA,NA
+9127,-0.0274236750737327,0,0,0,NA,NA,0,NA,NA
+9128,-0.00739209498409764,0.1025,10.25,2,83.7546453013708,0.822372936094627,8.25,30.7531266561369,10
+9129,-0.0183154770493638,0,0,0,NA,NA,0,NA,NA
+9130,0.00363854305405766,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,18.4466956002372,0
+9131,0.0318165114162548,0.19,19,6,81.9519441901176,0.659111848166575,10.25,5.23630465959248,0
+9132,-0.0140659860922824,0,0,0,NA,NA,0,NA,NA
+9133,-0.0556172983569559,0,0,0,NA,NA,0,NA,NA
+9134,-0.0282593684597668,0.0225,2.25,2,60.8730533773843,0.829497016197783,2,7.38920169406467,0
+9135,-0.0713168646016129,0.0425,4.25,4,55.0460646727874,0.62402088772846,1.75,8.77147898954504,0
+9136,0.00311163892958575,0.1475,14.75,3,82.7951570028032,0.815996779943649,8,6.64568277132713,0
+9137,-0.00947677583471886,0.04,4,5,48.0800614566592,0.522569444444444,1.5,18.893914937973,5
+9138,0.03595684455011,0.51,51,1,97.8932627156421,0.940767863873782,51,31.1971480519164,0
+9139,-0.0508451949991286,0.105,10.5,1,89.0207000039903,0.874104964985443,10.5,20.6889411835443,5
+9140,0.0286774034220798,0.265,26.5,1,95.039096185713,0.928767318445703,26.5,18.4201790971576,0
+9141,0.00110568967473228,0,0,0,NA,NA,0,NA,NA
+9142,0.00638131664401953,0,0,0,NA,NA,0,NA,NA
+9143,-0.0802949815185275,0,0,0,NA,NA,0,NA,NA
+9144,-0.0578162028583392,0,0,0,NA,NA,0,NA,NA
+9145,-0.0391388656730851,0,0,0,NA,NA,0,NA,NA
+9146,0.0101952289024484,0.115,11.5,2,83.6614365753277,0.88410835868463,7.5,29.9720876113228,0
+9147,-0.0343371407938685,0,0,0,NA,NA,0,NA,NA
+9148,-0.0472182292898651,0.2075,20.75,1,93.7090252642431,0.922745123285908,20.75,19.1032553983022,5
+9149,0.095852749858168,0.705,70.5,2,98.6286833165351,0.878477774224496,70,42.8188284001452,5
+9150,0.0653347487709289,0.5175,51.75,3,92.7277181953852,0.822353811991118,28,36.5449281314721,10
+9151,0.032833777466154,0.2525,25.25,4,87.4047122856211,0.807830891184242,18.5,47.5042289884964,0
+9152,-0.0140375330594907,0.1325,13.25,3,82.8990551156669,0.733983595655066,7,3.15228429830299,0
+9153,0.027891278197967,0.375,37.5,4,93.0718193078188,0.831272727272727,31.5,9.39821889241536,0
+9154,0.0640416395538068,0.4075,40.75,1,97.0183110527583,0.960618846694796,40.75,25.2486136851867,0
+9155,0.0717494363721926,0.575,57.5,1,98.3223108063601,0.967091731797614,57.5,12.3295461405878,0
+9156,-0.0202177102716087,0.1375,13.75,2,89.1060939861288,0.902364607170099,13.25,4.37631450999867,0
+9157,-0.0668024707811128,0.0025,0.25,1,0,NA,0.25,40.3112869262695,40.3112869262695
+9158,-0.0394589708044077,0.1775,17.75,1,92.7707193874331,0.922188449848024,17.75,15.9860854350345,0
+9159,0.013777060979628,0.46,46,1,97.5030549392159,0.972766884531591,46,1.90421533584595,0
+9160,0.121028655819246,0.7925,79.25,1,99.350989933666,0.983882016359753,79.25,7.50416718973346,0
+9161,0.0917395112582744,0.5975,59.75,1,98.4542502383879,0.944418969805605,59.75,16.6258387465856,0
+9162,0.0299051424063509,0.375,37.5,1,96.668457042866,0.970909090909091,37.5,13.5072676849365,0
+9163,-0.0321952653209337,0.005,0.5,1,30.8308651382582,1,0.5,41.6614570617676,40.3112869262695
+9164,-0.0701938073224483,0,0,0,NA,NA,0,NA,NA
+9165,-0.153796301162802,0,0,0,NA,NA,0,NA,NA
+9166,-0.168965494531658,0.0275,2.75,2,60.517542786349,0.725792630676949,1.5,14.4735358845104,5
+9167,0.0584213967109099,0.7425,74.25,1,99.1551699664667,0.868002848359588,74.25,55.599189783989,11.1803398132324
+9168,-0.0270752201334835,0.0925,9.25,1,87.9580013362782,0.891613602492887,9.25,62.2100322826489,50
+9169,-0.0577684772573411,0,0,0,NA,NA,0,NA,NA
+9170,-0.0875565151777118,0,0,0,NA,NA,0,NA,NA
+9171,-0.0736651755683124,0,0,0,NA,NA,0,NA,NA
+9172,-0.0705223087266495,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0
+9173,-0.110073126460484,0.1525,15.25,2,86.2133948873367,0.855290254355207,8,11.025535239548,0
+9174,0.13484901158954,0.795,79.5,1,99.3602931148206,0.967479674796748,79.5,36.7766898593063,0
+9175,0.111815776459734,0.665,66.5,1,98.8090595843688,0.964107319115844,66.5,68.5134854137449,25
+9176,0.00236571351648308,0.1625,16.25,1,92.2068700432412,0.968300092458064,16.25,1.26263181246244,0
+9177,0.0146064563011896,0.3575,35.75,2,94.5007608456929,0.887129830397719,33.25,12.6374769410887,0
+9178,-0.0448198188411334,0.1625,16.25,1,92.2068700432412,0.862633733984943,16.25,77.3458624619704,41.2310562133789
+9179,0.0383105287200306,0.1225,12.25,2,88.135782970365,0.877899877899878,11.75,98.9142684936523,81.3941040039062
+9180,0.0390087328250229,0.19,19,6,82.1561824989739,0.705177814630551,9.25,67.9412735888832,30
+9181,0.0840670504173613,0.635,63.5,2,96.5829642431507,0.896396914930356,55.5,60.6583473776269,15
+9182,0.0287085446191486,0.105,10.5,2,82.430834209702,0.779683688724526,6.25,34.2605461393084,0
+9183,0.0768111289143417,0.645,64.5,1,98.7097599330033,0.959175341906512,64.5,78.2723181081373,42.7200164794922
+9184,0.085936091782205,0.8275,82.75,1,99.4773714744283,0.972173913043478,82.75,53.5703396984458,0
+9185,-0.0731949705602892,0.085,8.5,2,79.405063156188,0.824355971896956,5.25,44.2247713874368,0
+9186,0.0417072495377124,0.5475,54.75,1,98.1501328589528,0.897085906185679,54.75,76.7049456382995,20
+9187,-0.0364714982436726,0.005,0.5,1,30.8308651382582,1,0.5,35.8779449462891,35.355339050293
+9188,0.0244801377072508,0.28,28,3,93.1165653630499,0.903740374037404,26.75,71.2101622309004,40
+9189,-0.100729481809249,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,131.398158826326,113.137084960938
+9190,-0.141891132500023,0,0,0,NA,NA,0,NA,NA
+9191,-0.0935953142238486,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,151.534841264997,142.126708984375
+9192,-0.106442118149134,0.01,1,1,52.6315789473684,0.747474747474748,1,172.36629486084,169.705627441406
+9193,-0.194454925954342,0,0,0,NA,NA,0,NA,NA
+9194,-0.0352196518244455,0.13,13,2,89.1365220193996,0.935425545654139,12.75,286.538321861854,265.188629150391
+9195,0.0500010735337855,0.4325,43.25,2,95.1917249914617,0.801140679159819,36.75,234.427224396281,173.349365234375
+9196,-0.0245201415015617,0.0625,6.25,1,84.2105263157895,0.84,6.25,188.433825683594,165.52946472168
+9197,-0.00624037346129626,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,179.266534244313,162.864974975586
+9198,-0.0219037383723662,0,0,0,NA,NA,0,NA,NA
+9199,-0.0315939349816745,0.07,7,2,78.0268594129004,0.80884109916368,5.5,61.2979048320225,5
+9200,-0.0720376532219234,0.1225,12.25,2,84.4574333822708,0.837199837199837,9.75,102.607086181641,68.0073547363281
+9201,-0.217953862808645,0,0,0,NA,NA,0,NA,NA
+9202,-0.185166976191103,0,0,0,NA,NA,0,NA,NA
+9203,-0.11006053551333,0,0,0,NA,NA,0,NA,NA
+9204,-0.0404555895544036,0,0,0,NA,NA,0,NA,NA
+9205,-0.0554134947342754,0,0,0,NA,NA,0,NA,NA
+9206,-0.209421836697438,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,6.41421356201172,5
+9207,-0.0029116203013109,0.205,20.5,2,90.5592393688167,0.921925829538061,18.5,23.6067844949118,0
+9208,0.00148400173082337,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,5.50434606215533,0
+9209,0.011582312829596,0.15,15,2,86.1172548723857,0.796380090497738,7.75,16.1307378133138,0
+9210,-0.0374552506281543,0.0775,7.75,1,86.3573366287605,0.978319783197832,7.75,24.0138872208134,7.07106781005859
+9211,-0.0511017961823381,0,0,0,NA,NA,0,NA,NA
+9212,0.0685662531983689,0.8025,80.25,1,99.3879413454111,0.866315745498601,80.25,0.787277316750024,0
+9213,0.0817193215468433,0.9125,91.25,1,99.7534323937872,0.867686582592516,91.25,10.6798428522397,0
+9214,0.0406657697448099,0.4975,49.75,2,96.0800848643523,0.78966953848643,42.5,1.6829456923595,0
+9215,0.0291740703451069,0.3225,32.25,5,89.1414898008026,0.799010756065007,21.75,1.82445999263793,0
+9216,0.0949188465975749,0.845,84.5,1,99.5375969134692,0.919228633449443,84.5,1.0636019960663,0
+9217,-0.00112140515921055,0.23,23,3,89.6562217569907,0.825783972125436,18.5,1.89284930021867,0
+9218,0.0126319995958693,0.075,7.5,2,78.0843273950357,0.801434087148373,3.75,10.8476360956828,0
+9219,-0.0117578954461305,0.0375,3.75,4,53.2106498128728,0.622195985832349,1.5,1.80473785400391,0
+9220,0.0257059123469116,0.265,26.5,5,85.2904963893398,0.821918296114257,19.75,1.38746290386848,0
+9221,0.0165276296276443,0.0475,4.75,3,69.7437099689206,0.746583401212779,3.5,15.6623930680124,7.07106781005859
+9222,0.00664923159131831,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,20.2400065830776,10
+9223,0.0152321612122432,0.0175,1.75,4,28.9394712793554,0.363867684478371,0.75,12.7373741694859,5
+9224,0.028190812279463,0.2225,22.25,4,90.3613075575242,0.668345163704018,19,4.21598648757077,0
+9225,0.00592804451647908,0.1225,12.25,2,88.0932616121197,0.769366436033103,11.5,7.12683194997359,0
+9226,0.00554152012689883,0.08,8,4,70.2454167701881,0.728260869565217,3.75,3.35604822635651,0
+9227,-0.00197359872332527,0.0975,9.75,3,79.3957112606579,0.829533347538888,5.5,3.86269104786408,0
+9228,-0.0286643442737295,0.0725,7.25,2,82.0198514076373,0.862361644778345,6.75,14.5404357910156,0
+9229,-0.0301511098854462,0,0,0,NA,NA,0,NA,NA
+9230,0.0242028230054439,0.15,15,6,79.8224326152527,0.785067873303167,8.75,7.17622938156128,0
+9231,0.00757626960159541,0.11,11,7,65.3738209303454,0.62040692377771,3,6.81000302054665,0
+9232,-0.0280623389795073,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,48.5606617174651,31.6227760314941
+9233,-0.039846824494507,0,0,0,NA,NA,0,NA,NA
+9234,-0.221748879407533,0,0,0,NA,NA,0,NA,NA
+9235,-0.220731765129603,0,0,0,NA,NA,0,NA,NA
+9236,-0.136429158703831,0,0,0,NA,NA,0,NA,NA
+9237,0.0172805795332533,0.27,27,1,95.1342058036908,0.852476290832455,27,51.9264226312991,10
+9238,0.0173649267060864,0.19,19,5,82.8063752382215,0.68675142804496,11.25,3.96053013048674,0
+9239,-0.0157787756407561,0.0875,8.75,5,69.7721835116781,0.73547472838923,5.25,4.14980387006487,0
+9240,-0.00161676082389022,0.09,9,5,71.5332599894281,0.578754578754579,4.75,18.0161337852478,0
+9241,-0.00672771529232705,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,3.50014817087274,0
+9242,-0.0566782567778137,0,0,0,NA,NA,0,NA,NA
+9243,-0.0560315580418683,0,0,0,NA,NA,0,NA,NA
+9244,-0.0139420270718131,0.0425,4.25,2,69.8040670187532,0.70757180156658,2.5,36.8561216242173,11.1803398132324
+9245,-0.0310300202600047,0.0025,0.25,1,0,NA,0.25,0,0
+9246,-0.00821456306244727,0.025,2.5,1,71.9760246298065,1,2.5,54.8342800140381,47.1699066162109
+9247,-0.0580342658982045,0,0,0,NA,NA,0,NA,NA
+9248,0.0539403912771377,0.53,53,1,98.0336545290164,0.978399395183065,53,32.5473812031296,5
+9249,0.0463946598593293,0.37,37,3,94.1915393623945,0.923856381420957,35.25,58.3645896653871,7.07106781005859
+9250,0.0252033092644706,0.42,42,2,96.677583359915,0.944382647385984,41.75,19.3797614006769,0
+9251,-0.0370743397107799,0,0,0,NA,NA,0,NA,NA
+9252,0.00768922375889815,0.35,35,1,96.3667973186472,0.939903846153846,35,37.981263256073,0
+9253,0.0172835773808038,0.2275,22.75,2,90.1720174116098,0.896120500219745,15.75,40.1870492369264,11.1803398132324
+9254,0.0452094824298547,0.34,34,3,90.381465127659,0.853372434017595,23,40.4043368591982,5
+9255,0.122455527458078,0.765,76.5,2,98.9945978929264,0.896751355138464,76.25,43.9550716612074,11.1803398132324
+9256,0.164192664859365,0.8925,89.25,2,99.1773205660635,0.903674143387918,88.5,31.1940478690866,0
+9257,0.122568429429521,0.7675,76.75,1,99.2554721522595,0.970234773226179,76.75,37.6449177148676,0
+9258,0.042341448456765,0.4,40,2,94.1566135186162,0.937641723356009,31.75,18.1645929455757,0
+9259,0.0122603433511176,0.2375,23.75,1,94.4633857675247,0.922854387656702,23.75,0.105263157894737,0
+9260,-0.03850787101881,0,0,0,NA,NA,0,NA,NA
+9261,-0.0564177205835585,0,0,0,NA,NA,0,NA,NA
+9262,-0.0918079867918277,0,0,0,NA,NA,0,NA,NA
+9263,-0.0418547523872985,0.0075,0.75,1,44.4894453484604,1,0.75,40.3700561523438,38.0788650512695
+9264,-0.0465039599543889,0,0,0,NA,NA,0,NA,NA
+9265,-0.038084030566024,0.0125,1.25,1,58.1880425789518,1,1.25,4.41421356201172,0
+9266,-0.00475527365354765,0.0775,7.75,2,84.2355015882798,0.848238482384824,7.5,25.781117839198,7.07106781005859
+9267,0.0465586914363666,0.48,48,3,93.5809199758034,0.810933448573898,36.75,104.729140778383,62.6498222351074
+9268,0.0342746185089345,0.275,27.5,5,83.5481457362427,0.74354531277075,8.5,84.2903916098855,60.2079734802246
+9269,-0.0270096099605053,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,92.655632019043,89.0224609375
+9270,-0.0415372794161294,0,0,0,NA,NA,0,NA,NA
+9271,-0.0659457386464055,0.025,2.5,1,71.9760246298065,1,2.5,25.2691167831421,15
+9272,-0.0374522201215314,0,0,0,NA,NA,0,NA,NA
+9273,-0.244913031267934,0,0,0,NA,NA,0,NA,NA
+9274,-0.0801209629629739,0.1225,12.25,4,79.7464150979091,0.728666395333062,8,3.2097847607671,0
+9275,0.00578572195746347,0.145,14.5,4,79.5201664825513,0.719298245614035,5.5,10.7452631325557,0
+9276,0.022357474635528,0.3,30,2,92.9816994554978,0.895150720838794,26.5,3.65112036069234,0
+9277,-0.0168164788185095,0.195,19.5,5,85.1664895423777,0.774957241875956,15.75,30.6003683285835,7.07106781005859
+9278,0.0277139673291822,0.27,27,2,90.957279314753,0.80330172110994,18.5,30.9442487116213,0
+9279,0.0548197598266415,0.63,63,2,97.8322727445804,0.833944113605131,61.5,24.9736432953486,0
+9280,0.0468545631645247,0.36,36,3,92.2034602664374,0.852035984848485,21.25,93.5538913408915,35
+9281,0.0672199965081018,0.8975,89.75,1,99.7075809055868,0.971305595408895,89.75,121.800519597896,79.0569381713867
+9282,0.0142165593658865,0.35,35,2,93.1286541271183,0.909855769230769,28.5,62.9957768304007,26.9258232116699
+9283,0.091714867099945,0.845,84.5,1,99.5375969134692,0.969710737543541,84.5,42.8192214288655,0
+9284,-0.0634355994741782,0.2,20,2,91.7739825539046,0.903169014084507,19.25,30.9115484237671,0
+9285,-0.0440361766325395,0.01,1,1,52.6315789473684,0.747474747474748,1,133.362998962402,128.062484741211
+9286,0.0411358324349658,0.33,33,5,87.9291722631722,0.789434569889144,21,146.550826390584,102.591415405273
+9287,0.0223224816119136,0.2725,27.25,3,90.976148126855,0.832539641006855,23,73.4736880031201,21.2132034301758
+9288,-0.0238861217818339,0.345,34.5,1,96.3025628341184,0.969707984975161,34.5,30.9730290537295,5
+9289,-0.141188528831117,0,0,0,NA,NA,0,NA,NA
+9290,-0.10379449154716,0,0,0,NA,NA,0,NA,NA
+9291,0.0638848004322062,0.635,63.5,1,98.6583599459141,0.959709911361805,63.5,199.746010607622,151.162170410156
+9292,0.13693438476781,0.79,79,1,99.3416426267051,0.968040907638223,79,243.424852829945,173.277221679688
+9293,-0.0616860196736525,0.215,21.5,2,89.8555872978922,0.875109279380542,16,310.208898499955,280.446075439453
+9294,0.059416321174358,0.775,77.5,1,99.2846122710835,0.84779299847793,77.5,340.570185113722,278.028778076172
+9295,0.00394766333702137,0.33,33,1,96.1011760023317,0.925682789372639,33,330.752007917924,277.353576660156
+9296,-0.0205269031914122,0.0125,1.25,2,43.859649122807,0.594936708860759,1,285.975604248047,276.631530761719
+9297,0.00653052350400685,0.1225,12.25,2,88.3610054202382,0.837199837199837,11.75,260.17367958536,227.43132019043
+9298,-0.00897158699946886,0.02,2,1,68.0470115164975,0.897959183673469,2,163.885942459106,158.113876342773
+9299,0.00721790308663913,0.3725,37.25,1,96.6396639945364,0.894925791340134,37.25,129.350192690856,90.5538558959961
+9300,-0.0032325054298235,0.2625,26.25,3,89.3081541615959,0.799121155053358,13,48.4115586962019,14.1421356201172
+9301,-0.0508131745671562,0.3075,30.75,1,95.7718985824481,0.974097877644849,30.75,20.5008877855006,0
+9302,-0.157038726796584,0.06,6,1,83.7764057650598,0.916013437849944,6,117.758065223694,108.166542053223
+9303,-0.00214676165226592,0.1675,16.75,1,92.4032163835468,0.938399938399938,16.75,137.754643340609,108.166542053223
+9304,-0.054549359701482,0,0,0,NA,NA,0,NA,NA
+9305,-0.251702983492505,0,0,0,NA,NA,0,NA,NA
+9306,-0.363916218727827,0,0,0,NA,NA,0,NA,NA
+9307,-0.0634589129679443,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.5764911651611,5
+9308,0.0228428573392011,0.2575,25.75,2,92.683183169782,0.934479934479934,24,39.6774949379338,5
+9309,0.0114799513930575,0.195,19.5,4,85.4775904990336,0.855972634800612,15.5,36.9527999437772,5
+9310,-0.00885944303918223,0.0325,3.25,4,49.3251963757179,0.540625897215045,1.25,12.9647184518667,0
+9311,0.0100911693573835,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,16.4659264882406,10
+9312,0.0304438135595637,0.305,30.5,1,95.7330793639454,0.947914971190468,30.5,10.7688847526175,0
+9313,0.0672836692432247,0.8325,83.25,1,99.4947723752506,0.971525520252474,83.25,68.9735271808979,21.2132034301758
+9314,0.0829524763301015,1,100,1,100,NA,100,42.2038118362427,0
+9315,0.0673990177805535,0.8475,84.75,1,99.546047930594,0.805631569525076,84.75,7.28594485707691,0
+9316,0.0443522791866053,0.4275,42.75,3,92.7595843400674,0.789283981423719,25.75,0.567667063216717,0
+9317,0.0169433200950425,0.235,23.5,2,92.6029231333511,0.852163087457205,22,2.42286044993299,0
+9318,0.0218653068591811,0.1575,15.75,2,89.9400138326474,0.870515241435123,14.75,4.9937624855647,0
+9319,0.0107643935371743,0.085,8.5,2,79.8703172457821,0.882903981264637,5.5,1.82561964147231,0
+9320,0.0217809752432026,0.3025,30.25,2,94.0347294997986,0.902248289345064,28.5,0.371900826446281,0
+9321,0.0122640309868984,0.0825,8.25,5,69.6830169474966,0.677061257442729,5,5.91052350130948,0
+9322,0.0236303386479994,0.085,8.5,3,76.823022242191,0.765807962529274,4.5,4.66781088885139,0
+9323,0.0232929711357792,0.1375,13.75,3,85.2963314979547,0.853546910755149,11.75,2.42275286587802,0
+9324,0.00830007717217086,0.055,5.5,6,57.5277977857078,0.564270152505447,2.5,2.1395939913663,0
+9325,0.00226135369662643,0.125,12.5,4,82.47462767693,0.704201680672269,9.75,7.08740009307861,0
+9326,0.0368158056157336,0.3075,30.75,6,86.3733216133642,0.760405368214858,15.25,4.14406725255455,0
+9327,0.0318974285294462,0.255,25.5,11,73.7310276314063,0.581912201562328,4.5,2.84104986751781,0
+9328,0.0125877350265,0.1225,12.25,4,75.7016693031649,0.742233075566409,5,1.93877551020408,0
+9329,0.00146142261784917,0.0375,3.75,4,55.4770591302967,0.574970484061393,1.75,2.74535598754883,0
+9330,0.0353446462536522,0.2325,23.25,7,86.6132296325201,0.717436521329618,17.5,3.50849356702579,0
+9331,-0.0722563710768009,0.145,14.5,4,80.2773008583118,0.777777777777778,9.5,3.4088968737372,0
+9332,-0.011519985526902,0.13,13,1,90.6657843098624,0.948340436523311,13,46.3783541459304,20
+9333,-0.0900621818876243,0,0,0,NA,NA,0,NA,NA
+9334,-0.295531108295545,0,0,0,NA,NA,0,NA,NA
+9335,-0.1766143321048,0,0,0,NA,NA,0,NA,NA
+9336,-0.060693631831673,0.175,17.5,1,92.6818041122695,0.931017491993102,17.5,59.7964656829834,41.2310562133789
+9337,-0.0339914769885945,0.3275,32.75,1,96.0662730877785,0.962669736043925,32.75,77.5001758837518,54.0832710266113
+9338,-0.00864183673867956,0.1275,12.75,1,90.5233675365473,0.97365214241017,12.75,14.9597233416987,5
+9339,-0.01472163998822,0.115,11.5,1,89.742951983695,0.985513544835579,11.5,7.15087376470151,0
+9340,-0.0412766706178081,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+9341,-0.0272737723478804,0.0125,1.25,1,58.1880425789518,1,1.25,3,0
+9342,-0.0299762317859859,0.0275,2.75,2,59.9885589551339,0.657240788346187,1.5,11.325719833374,0
+9343,-0.0388063504034653,0,0,0,NA,NA,0,NA,NA
+9344,-0.0172205061998829,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,5.95371784883387,0
+9345,-0.028424940413588,0.0025,0.25,1,0,NA,0.25,0,0
+9346,-0.00660116677165206,0.0075,0.75,1,44.4894453484604,1,0.75,31.4395179748535,29.1547584533691
+9347,-0.0793651687554666,0,0,0,NA,NA,0,NA,NA
+9348,-0.0342282859518309,0.1575,15.75,2,90.2486115852276,0.913676827623415,15.25,27.7933973584856,5
+9349,-0.0324247634304629,0.11,11,2,82.854372417392,0.817795323413301,5.75,16.2651869166981,5
+9350,0.0290906952407613,0.3275,32.75,2,92.3586875127695,0.906674340109813,24.25,20.527423625684,0
+9351,-0.0277461342557035,0.0125,1.25,2,43.859649122807,0.594936708860759,1,16.1231056213379,10
+9352,0.0613356621406274,0.7975,79.75,1,99.3695525162542,0.958984455108486,79.75,77.8028785562067,20
+9353,0.0239318054173054,0.175,17.5,1,92.6818041122695,0.921162847992116,17.5,83.4248198372977,65.7647323608398
+9354,0.00537863253040996,0.02,2,1,68.0470115164975,0.897959183673469,2,13.7221434116364,5
+9355,0.0389075999903434,0.345,34.5,3,93.9393223941846,0.878831939900642,30.75,24.7644091067107,5
+9356,-0.0437631433450588,0.175,17.5,1,92.6818041122695,0.842325695984232,17.5,54.0030791146415,25.4950981140137
+9357,-0.038227014913864,0.4075,40.75,1,97.0183110527583,0.893108298171589,40.75,80.5458559375599,43.0116271972656
+9358,-0.0813586635357933,0.21,21,1,93.778005777053,0.974513635205165,21,53.4221472967239,25
+9359,-0.0738631675472425,0,0,0,NA,NA,0,NA,NA
+9360,-0.0212047789985809,0.045,4.5,2,70.1209962713485,0.806088811324413,2.5,25.5758448706733,10
+9361,-0.0243552830108092,0.135,13.5,2,85.2270651615616,0.863260612841072,9.25,20.5561079802337,0
+9362,-0.102782563832416,0,0,0,NA,NA,0,NA,NA
+9363,-0.0134878741969442,0.14,14,2,89.4667671781306,0.868137137377128,13.5,51.4207280703953,33.5410194396973
+9364,-0.0568893524401938,0,0,0,NA,NA,0,NA,NA
+9365,-0.0506163758221737,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,28.603182220459,22.3606796264648
+9366,0.0786420882097445,0.8475,84.75,1,99.546047930594,0.969310247819749,84.75,80.4976330197315,22.3606796264648
+9367,0.058267301467713,0.6725,67.25,1,98.8451498857927,0.866979064318645,67.25,77.5154700438772,35
+9368,0.0345939558221289,0.25,25,4,86.9502933274359,0.792592592592593,17.75,35.9815957641602,11.1803398132324
+9369,0.0550359812064562,0.6775,67.75,1,98.8688764291496,0.939081037449932,67.75,86.230903878863,55
+9370,-0.0315511857122328,0.0675,6.75,1,85.0052537126447,0.975060789326018,6.75,97.6442760891385,88.4590301513672
+9371,-0.0135432038986073,0.195,19.5,1,93.3444522721621,0.936988027725268,19.5,26.0396987963945,11.1803398132324
+9372,-0.0255838364241208,0,0,0,NA,NA,0,NA,NA
+9373,-0.0906594914929565,0.015,1.5,1,62.2896536353828,1,1.5,4.51184463500977,0
+9374,-0.113650448853296,0,0,0,NA,NA,0,NA,NA
+9375,-0.0232958929704182,0.11,11,3,83.9956692590734,0.832979046462192,9.25,3.04309905659069,0
+9376,6.39909927122062e-05,0.2525,25.25,2,94.2408376963351,0.8595687281731,25,11.7131859241146,0
+9377,0.0242219017471871,0.32,32,2,93.0781913820862,0.83590002524615,23,10.4186398237944,0
+9378,0.0326581334049843,0.305,30.5,3,91.1706627498368,0.81770239916664,19,13.3998930102489,0
+9379,0.0471686245003366,0.4525,45.25,2,96.2294692013276,0.923669324609828,44,21.4343719377043,0
+9380,0.0661163879977539,0.8375,83.75,1,99.5120172135984,0.951391420585733,83.75,120.818419157569,82.006103515625
+9381,0.054675328367739,0.78,78,1,99.3038050834495,0.729437229437229,78,96.2063017625075,46.0977210998535
+9382,-0.0957112240630522,0.0625,6.25,1,84.2105263157895,0.84,6.25,59.6178137207031,46.0977210998535
+9383,-0.059127707824664,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,15,0
+9384,-0.0650034737195165,0.0025,0.25,1,0,NA,0.25,0,0
+9385,0.0343730489493282,0.425,42.5,1,97.1898422226593,0.955549381858592,42.5,88.4284103393555,40.3112869262695
+9386,0.0935882249521092,0.985,98.5,1,99.9600766120013,1,98.5,149.432630761626,110
+9387,0.065072359762853,0.7575,75.75,1,99.2159474776692,0.761676927798942,75.75,94.6927058405609,36.0555114746094
+9388,0.0151244498811138,0.3475,34.75,1,96.3348533717898,0.921561528946813,34.75,45.0360956809504,11.1803398132324
+9389,-0.125768243288621,0,0,0,NA,NA,0,NA,NA
+9390,-0.0423070448338694,0.2325,23.25,1,94.3478768975745,0.905812173776539,23.25,158.734921691238,122.065551757812
+9391,0.210563772032037,1,100,1,100,NA,100,206.02360118866,151.162170410156
+9392,0.234761866144836,1,100,1,100,NA,100,261.77752910614,195.256225585938
+9393,0.220257559311576,0.97,97,1,99.9192307098231,1,97,319.84323890922,258.118194580078
+9394,0.130827765263384,0.695,69.5,2,96.7226870798456,0.849255700018843,57.5,357.975032010524,307.327209472656
+9395,-0.0314680241240421,0.0525,5.25,2,77.3416134336187,0.83509234828496,4.75,370.474317278181,357.001403808594
+9396,-0.0485747412632918,0.005,0.5,1,30.8308651382582,1,0.5,315.53157043457,314.006378173828
+9397,-0.00199706709427119,0.1725,17.25,2,87.7118014337792,0.890140071408954,11.25,254.270318736201,210.297409057617
+9398,0.0157776467694748,0.31,31,1,95.8102472617487,0.832528180354267,31,138.917073711272,103.07763671875
+9399,0.0119576054751906,0.39,39,1,96.835360326048,0.908607985377278,39,108.677652310102,85.1469345092773
+9400,0.00534795143634256,0.2025,20.25,1,93.5672514619883,0.878091257401602,20.25,3.20104396490403,0
+9401,-0.0320123519767003,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,3.71099501141047,0
+9402,-0.0782143074932037,0,0,0,NA,NA,0,NA,NA
+9403,-0.0458591568134307,0,0,0,NA,NA,0,NA,NA
+9404,-0.133294850474795,0.145,14.5,1,91.4414281200292,0.953216374269006,14.5,250.996064284752,240.260284423828
+9405,-0.444553718351526,0,0,0,NA,NA,0,NA,NA
+9406,-0.0838223090325482,0.21,21,2,92.9244267307762,0.923540905615496,20.75,78.9524501164754,18.0277557373047
+9407,0.043683902110206,0.5575,55.75,2,97.8996938030841,0.913081269013472,55.5,4.76069126214682,0
+9408,0.160314422610099,0.93,93,2,99.2894940804275,0.898682877406281,92,51.9802508200369,10
+9409,0.0350347374027115,0.31,31,2,94.7347991264792,0.909822866344606,30.25,46.0849499548635,5
+9410,-0.00849760557552145,0.0525,5.25,3,69.5045860375436,0.802110817941952,3.75,2.29768607729957,0
+9411,-0.0159094775201811,0,0,0,NA,NA,0,NA,NA
+9412,0.00779027430467977,0.0775,7.75,3,76.2042693529693,0.848238482384824,5.25,4.05200281450825,0
+9413,0.044625236521133,0.4925,49.25,1,97.7634684223253,0.935218300830015,49.25,64.1027264377187,11.1803398132324
+9414,0.0867879143171012,1,100,1,100,NA,100,96.8451802444458,53.8516464233398
+9415,0.0570094995666295,0.82,82,1,99.4509723118502,0.587147729312511,82,60.9156889741014,5
+9416,0.0550732430682547,0.64,64,2,97.9309573514637,0.803240740740741,61.5,5.34582187235355,0
+9417,0.0167234703826398,0.1175,11.75,5,75.780453258034,0.660056657223796,5.75,3.83141911283452,0
+9418,0.0209808974412408,0.25,25,3,90.0176418968675,0.859259259259259,16.5,2.49787086486816,0
+9419,0.0203956582052592,0.085,8.5,3,78.3323998182249,0.726775956284153,6.25,4.86957679075353,0
+9420,0.00314929864527585,0.0025,0.25,1,0,NA,0.25,5,5
+9421,-0.0235076606056828,0.0175,1.75,2,49.299249134574,0.618320610687023,1,2.43872397286551,0
+9422,0.0086984450798991,0.1525,15.25,4,83.4887296840445,0.8330272165637,10,1.37861736485215,0
+9423,0.0495571393300997,0.42,42,2,93.7842484570297,0.849833147942158,21.25,5.05776200975691,0
+9424,0.0205242476282001,0.1375,13.75,7,75.6529562203038,0.646071700991609,8,5.04948889992454,0
+9425,0.0236832433462178,0.1075,10.75,5,69.5986415969485,0.579831932773109,3.25,10.8102375740229,0
+9426,0.0228865952281922,0.1325,13.25,4,86.4510504790741,0.759318491306964,11.75,6.30700341710504,0
+9427,0.0378169925345355,0.3875,38.75,1,96.8082175905,0.856784819190834,38.75,2.47329657769972,0
+9428,0.0192503023853351,0.135,13.5,3,85.8332619391247,0.88812231959724,12,2.22819398950647,0
+9429,0.00465329098294205,0.03,3,2,68.3714310934689,0.818071558520315,2.75,5.86020628611247,0
+9430,0.0202759229734147,0.125,12.5,7,71.2014407301086,0.610084033613445,5.25,7.55666675567627,0
+9431,0.00611273949425595,0.0675,6.75,5,62.2888008186394,0.551094207868321,2.25,2.63752605296947,0
+9432,-0.0446966597062419,0,0,0,NA,NA,0,NA,NA
+9433,-0.0272742901047604,0.01,1,1,52.6315789473684,0.747474747474748,1,3.01776695251465,0
+9434,-0.145934809772298,0,0,0,NA,NA,0,NA,NA
+9435,-0.210650586825795,0,0,0,NA,NA,0,NA,NA
+9436,-0.0730486910996842,0.1675,16.75,1,92.4032163835468,1,16.75,24.1035449184589,0
+9437,-0.0832501375254287,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,43.9908705817329,33.5410194396973
+9438,-0.040882582138147,0,0,0,NA,NA,0,NA,NA
+9439,-0.0576136759846122,0.02,2,1,68.0470115164975,1,2,5.25888347625732,0
+9440,-0.0949107747565722,0.01,1,1,52.6315789473684,1,1,6.76776695251465,5
+9441,-0.0702775659276085,0.02,2,2,55.2425944039245,0.693877551020408,1.5,25.3044958114624,15
+9442,-0.0265247874073248,0.04,4,1,78.9473684210526,0.913194444444444,4,1.06694173812866,0
+9443,-0.027619419952407,0,0,0,NA,NA,0,NA,NA
+9444,-0.000160012857759284,0.075,7.5,2,78.4145351715365,0.823496966354109,5,0.902368927001953,0
+9445,-0.0186652282491559,0.1025,10.25,1,88.8238145380415,0.983852085099512,10.25,26.2229522612037,15
+9446,-0.000912545814062469,0.0925,9.25,1,87.9580013362782,0.927742401661925,9.25,26.8666338018469,5
+9447,-0.0561500179269933,0,0,0,NA,NA,0,NA,NA
+9448,-0.0536654270937288,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,20.0671898234974,10
+9449,-0.0349169287840778,0.0625,6.25,2,76.3256376827798,0.84,4.25,17.7069264221191,10
+9450,0.0187186893070975,0.16,16,2,87.6106629426105,0.840561224489796,11.5,48.0485547184944,25
+9451,-0.0221355180541286,0.06,6,4,67.9860445473983,0.636058230683091,3.75,18.2637782891591,0
+9452,0.072955947322771,0.955,95.5,1,99.8774262095089,0.815837937384898,95.5,60.0652659151567,5
+9453,0.0105933652108331,0.0275,2.75,3,56.2941359991397,0.520137103684661,1.75,75.9947027726607,33.5410194396973
+9454,0.00907615423933748,0.1375,13.75,3,80.8261824225417,0.804729214340198,6.75,26.022146953236,0
+9455,0.0315401313025268,0.2775,27.75,2,93.3426280685559,0.875432525951557,25,46.5827760782328,5
+9456,-0.0804443504447409,0.0625,6.25,1,84.2105263157895,0.973333333333333,6.25,63.1472373962402,50
+9457,-0.207056302055717,0,0,0,NA,NA,0,NA,NA
+9458,-0.117604795532534,0,0,0,NA,NA,0,NA,NA
+9459,-0.00776354250127042,0.2075,20.75,3,88.4202409841189,0.879825747333634,17.75,25.8306140440056,0
+9460,-0.0060575302093639,0.0925,9.25,2,85.0406940516425,0.891613602492887,8.75,41.1059609490472,25.4950981140137
+9461,-0.0554344009900524,0.08,8,1,86.6550847056172,0.937290969899666,8,26.2212223410606,15
+9462,-0.0365827350201107,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172
+9463,-0.0286823587712388,0.0175,1.75,1,65.4774238937655,1,1.75,21.1323269435338,14.1421356201172
+9464,-0.0208404081132176,0.0725,7.25,1,85.7162801918893,0.977060274129724,7.25,17.2223719235124,5
+9465,-0.0507085070164959,0.04,4,1,78.9473684210526,0.869791666666667,4,35.554297208786,26.9258232116699
+9466,-0.0415007116324159,0.1525,15.25,1,91.785591586011,0.955473924416987,15.25,92.0196787099369,68.0073547363281
+9467,0.0752999454454402,0.8975,89.75,1,99.7075809055868,0.971305595408895,89.75,38.5249670289021,0
+9468,0.0733326115319505,0.7625,76.25,1,99.2358070072224,0.904805491990847,76.25,35.5245517980857,0
+9469,0.0717645296175033,0.9525,95.25,1,99.8703629518046,0.737571074500656,95.25,35.6988107676268,0
+9470,0.0574960315642147,0.7075,70.75,1,99.0059126497077,0.942163100057837,70.75,55.3443942390145,0
+9471,0.0993504759065399,0.75,75,1,99.1857866401092,0.943362831858407,75,15.176579875946,0
+9472,0.0875747117432911,0.5675,56.75,1,98.2765967200003,0.961737656978095,56.75,20.5698164969289,0
+9473,0.137064496230778,0.7375,73.75,1,99.1344998974781,0.972543972543972,73.75,34.7825797905356,0
+9474,0.00672041344514582,0.2225,22.25,4,87.2942426799861,0.854395437723715,17.5,20.3003303013491,0
+9475,-0.0361970251428284,0.12,12,2,87.8651920993633,0.889135254988914,11.5,2.48884606361389,0
+9476,-0.0185214501804876,0.065,6.5,4,75.277005362074,0.660884309377853,5.25,24.2966607900766,0
+9477,-0.0251993922527981,0.095,9.5,2,83.5049531310761,0.719372095062703,7.5,8.67351727736624,0
+9478,0.00208237650605497,0.125,12.5,4,81.1723954320456,0.825210084033613,8.25,21.4624798583984,7.07106781005859
+9479,0.0343535016798705,0.3875,38.75,3,95.1639825975042,0.873970640887934,37,82.6881735278714,25
+9480,0.0568353474559262,0.6725,67.25,2,98.4563688062107,0.782329377975966,66.5,112.806229828902,55.9016990661621
+9481,-0.0181792933685938,0.35,35,2,95.3295110781074,0.873798076923077,34.25,63.5518620899745,11.1803398132324
+9482,-0.0793597814562963,0.0125,1.25,1,58.1880425789518,1,1.25,14.2174774169922,11.1803398132324
+9483,-0.0235576986362867,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,51.6210081312392,42.7200164794922
+9484,-0.00709389785999519,0.085,8.5,1,87.210675248157,0.921935987509758,8.5,106.401372124167,80.1560974121094
+9485,0.0855437386158155,0.8875,88.75,1,99.6763695533234,0.854497354497354,88.75,99.861579766072,42.4264068603516
+9486,0.0660668734771025,0.65,65,3,95.7404659261873,0.818128483426225,53.25,149.606214992817,112.805137634277
+9487,0.0873774544335902,0.9175,91.75,1,99.7684657792434,0.982559407019839,91.75,78.7154264735916,25
+9488,0.0669154090971278,0.54,54,1,98.1009071848445,0.935107073329007,54,25.7781726519267,0
+9489,-0.0697527167972294,0.0475,4.75,2,71.3736949643373,0.746583401212779,3,14.5202864596718,5
+9490,0.133629638971179,0.8575,85.75,1,99.5794816088838,0.978340914013428,85.75,76.6983266057495,14.1421356201172
+9491,0.23868170067668,1,100,1,100,NA,100,124.596754646301,55.9016990661621
+9492,0.229398052021861,1,100,1,100,NA,100,185.409561500549,120.933868408203
+9493,0.243448651134968,1,100,1,100,NA,100,237.738554458618,175
+9494,0.247438550181687,1,100,1,100,NA,100,285.122394371033,217.830200195312
+9495,0.185594222269749,0.8625,86.25,1,99.5959799783351,0.977691020635806,86.25,315.544283394192,258.069763183594
+9496,0.0152859264007566,0.2425,24.25,1,94.5753035249093,0.939304275255112,24.25,245.226030330068,195.256225585938
+9497,-0.0529052041876093,0,0,0,NA,NA,0,NA,NA
+9498,0.0238253416022417,0.5075,50.75,1,97.8751325648042,0.843811011323702,50.75,121.058320332043,91.7877960205078
+9499,-0.00889476353113423,0.15,15,3,87.0610393805997,0.660633484162896,11.5,9.80808893839518,0
+9500,0.030421814355368,0.295,29.5,3,91.9991917947567,0.821037979717638,24.5,1.86741812754486,0
+9501,-0.0428594647094724,0,0,0,NA,NA,0,NA,NA
+9502,-0.37441614927724,0,0,0,NA,NA,0,NA,NA
+9503,-0.361929805651362,0,0,0,NA,NA,0,NA,NA
+9504,-0.2426080067968,0,0,0,NA,NA,0,NA,NA
+9505,-0.168173880919348,0.28,28,1,95.316724394494,0.951870187018702,28,76.57395195961,44.7213592529297
+9506,0.05133616361245,0.575,57.5,2,95.4350183552874,0.813519813519814,38.25,25.873394344164,0
+9507,0.107762095611542,1,100,1,100,NA,100,2.13009415149689,0
+9508,0.102651707754121,0.815,81.5,1,99.4331707829294,0.9560536145902,81.5,20.7446517183737,0
+9509,0.0261598858442449,0.19,19,1,93.1886455857599,0.852588907315275,19,67.9366840061388,47.4341621398926
+9510,-0.0437031981350447,0.02,2,1,68.0470115164975,1,2,0.625,0
+9511,-0.0214033396635932,0.1575,15.75,1,92.0012465610797,0.967628810358781,15.75,2.96011982266865,0
+9512,0.0563606345368316,0.5275,52.75,3,94.7979804359389,0.859626390238635,45.5,1.57133785808256,0
+9513,0.0139713361862414,0.0775,7.75,3,78.3348641456409,0.826558265582656,6.25,4.4160894578503,0
+9514,0.0446784228517572,0.3875,38.75,5,91.5773916504193,0.810955961331901,30.5,57.0576592968356,5
+9515,0.0633808714636507,0.8425,84.25,1,99.5291083083911,0.860457003314146,84.25,43.1380030182066,0
+9516,0.0380495129906922,0.4075,40.75,3,93.0493229984628,0.786216596343179,28.5,2.6845908954831,0
+9517,-0.0088977300847182,0.165,16.5,2,88.1563186657169,0.906274407706327,13.5,2.233235503688,0
+9518,-0.000278546851623105,0.1725,17.25,2,91.6432498868695,0.890140071408954,17,2.44777331144913,0
+9519,0.00863964297243001,0.3375,33.75,2,95.0407557352211,0.889553612517257,32.25,4.3854409677011,0
+9520,0.0382288298224557,0.305,30.5,3,92.2388516363842,0.843744913571405,26.75,3.18154144287109,0
+9521,0.0199813948611882,0.25,25,1,94.7368421052632,0.866666666666667,25,3.82077278137207,0
+9522,0.0329747872965527,0.2275,22.75,1,94.2285806660851,0.976027807743018,22.75,10.2209284855769,0
+9523,0.0692929181231284,0.45,45,1,97.417305342106,0.907179907179907,45,4.67171285417345,0
+9524,0.00229211080745699,0.03,3,4,45.3248077626247,0.454214675560946,1,10.9442925453186,5
+9525,0.00044675208053377,0.1375,13.75,4,79.8943683130906,0.719298245614035,6.25,9.98812162225897,0
+9526,0.0292534469843667,0.2075,20.75,3,91.6035675321461,0.776819245048177,19.5,10.1265568560865,0
+9527,0.0205790419475579,0.055,5.5,3,66.4316958798318,0.688764394646748,2.25,3.97243378379128,0
+9528,0.0163524956331366,0.075,7.5,4,69.1482027033141,0.646993932708218,2.75,19.6892059961955,0
+9529,0.0115431859448654,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,5.76035363333566,0
+9530,0.0143278961880696,0.1275,12.75,2,89.2295211706808,0.881434640845766,12.5,5.37592857959224,0
+9531,0.00869594767535091,0.0075,0.75,3,0,1,0.25,2.35702260335286,0
+9532,0.0119282032361116,0.055,5.5,4,64.1556901778901,0.626517273576097,2.5,2.5,0
+9533,-0.00160642605436806,0.08,8,3,74.5608759641372,0.728260869565217,4,4.78245294094086,0
+9534,-0.0261082926736708,0.0875,8.75,5,67.0291879588796,0.641001417099669,2.75,7.36809300013951,0
+9535,-0.139235484677702,0,0,0,NA,NA,0,NA,NA
+9536,-0.16810168961063,0,0,0,NA,NA,0,NA,NA
+9537,-0.0612773531275252,0,0,0,NA,NA,0,NA,NA
+9538,-0.0276005244420594,0.0375,3.75,2,66.8050918565054,0.811097992916175,2,8.56849377950033,0
+9539,0.0133913824374395,0.1525,15.25,1,91.785591586011,0.855290254355207,15.25,8.2997423078193,0
+9540,-0.0209979207854485,0,0,0,NA,NA,0,NA,NA
+9541,-0.0334564822527682,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0
+9542,-0.00469389489160221,0.155,15.5,3,83.4835826734268,0.835634451019066,7,5.38124142923663,0
+9543,-0.0151325728983647,0.0625,6.25,1,84.2105263157895,0.893333333333333,6.25,3.16568542480469,0
+9544,0.00455652069082134,0.11,11,6,71.9608000545938,0.650774369875493,5.75,2.74925968863747,0
+9545,-0.00383509533348843,0.25,25,3,91.583892042299,0.851851851851852,22,13.5349463653564,0
+9546,0.0416437483840855,0.615,61.5,1,98.5518240730175,0.926595143986448,61.5,14.3908416856595,0
+9547,-0.0956247977446765,0,0,0,NA,NA,0,NA,NA
+9548,-0.0132913537326385,0.285,28.5,1,95.4043598780874,0.91852807386788,28.5,12.4855717776114,0
+9549,-0.0177025055485137,0.07,7,3,73.8361898420014,0.80884109916368,4.5,19.3205727168492,0
+9550,-0.0285270533768926,0,0,0,NA,NA,0,NA,NA
+9551,-0.012941758693778,0.055,5.5,1,82.8209772257252,0.844382197323374,5.5,24.8391876220703,15
+9552,0.0564827909469022,0.6,60,2,98.1368529728389,0.938752783964365,59.75,66.3842789332072,18.0277557373047
+9553,-0.0120585225798607,0,0,0,NA,NA,0,NA,NA
+9554,0.0167751545640931,0.4025,40.25,1,96.9672588816937,0.966074861472351,40.25,13.225888127866,0
+9555,0.0303785277125098,0.3125,31.25,2,93.714775158127,0.84621545855026,28.75,21.3940349578857,0
+9556,-0.0101391935010088,0.305,30.5,1,95.7330793639454,0.947914971190468,30.5,38.8913646447854,14.1421356201172
+9557,-0.191603018129244,0,0,0,NA,NA,0,NA,NA
+9558,-0.0928512850620427,0,0,0,NA,NA,0,NA,NA
+9559,0.0865325202448912,0.57,57,1,98.2919349628155,0.967168262653899,57,35.7410314961484,0
+9560,-0.00728260185234831,0.1725,17.25,3,86.7328058210574,0.870165538937854,14.25,33.1571894659512,5
+9561,-0.0234376646868441,0.0175,1.75,1,65.4774238937655,1,1.75,32.9670219421387,30
+9562,-0.0297925566884328,0,0,0,NA,NA,0,NA,NA
+9563,-0.0311067969771466,0.025,2.5,2,58.8854677513915,0.763313609467456,1.5,6.32049312591553,0
+9564,0.164366050901626,0.635,63.5,1,98.6583599459141,0.971221365258432,63.5,33.7798522588775,5
+9565,0.191652194038616,0.6875,68.75,1,98.9155506404681,0.962790697674418,68.75,92.0848285744407,36.0555114746094
+9566,-0.0347791928019069,0.1225,12.25,2,87.8185593939616,0.82363315696649,11.5,143.837690392319,131.244049072266
+9567,-0.0292178784306816,0.21,21,2,92.5270189858364,0.915045450683884,20.5,29.8859560603187,0
+9568,0.103313545540441,0.9625,96.25,1,99.898450616446,1,96.25,56.9685410685353,0
+9569,0.076083035391639,0.84,84,2,99.1243640187989,0.773622047244095,83.25,29.2370603254863,0
+9570,0.08318932114169,0.9425,94.25,1,99.8418294460568,0.635147461234418,94.25,28.7403908231214,0
+9571,0.192271724734455,1,100,1,100,NA,100,40.8794634866714,0
+9572,-0.046780403177836,0.4875,48.75,1,97.7251065890586,0.913758253604636,48.75,74.6847587585449,40
+9573,0.116000346923829,0.7775,77.75,1,99.2942318197501,0.969321624419987,77.75,74.3191763212443,33.5410194396973
+9574,0.0879166189977695,0.635,63.5,2,98.1284616306478,0.804305283757339,62.25,21.3288427412979,0
+9575,0.00464171157542296,0.0975,9.75,5,72.313457897523,0.642020029831664,4.25,8.49716729384202,0
+9576,-0.0948561871325364,0.03,3,3,55.6292926315064,0.575500303214069,1.75,21.0592543284098,0
+9577,-0.0756761828820163,0.0025,0.25,1,0,NA,0.25,10,10
+9578,-0.0152646187713253,0.2425,24.25,1,94.5753035249093,0.840673722544668,24.25,16.0876362594133,0
+9579,0.0312775665367371,0.2725,27.25,2,94.1254884644548,0.937202365377571,26.75,3.58427492194219,0
+9580,0.00331793562451821,0.1975,19.75,2,89.9358074581444,0.795282599020917,15.5,47.1135407459887,0
+9581,-0.110074196966016,0,0,0,NA,NA,0,NA,NA
+9582,-0.0514070226054173,0,0,0,NA,NA,0,NA,NA
+9583,-0.018791947830818,0,0,0,NA,NA,0,NA,NA
+9584,0.0527692763706727,0.605,60.5,1,98.496585825966,0.977596056906015,60.5,166.633633605705,125
+9585,0.0887103457516059,0.8325,83.25,2,98.3660629237709,0.886102081009895,80.25,171.210356222617,125.399360656738
+9586,0.0504144609896321,0.58,58,4,96.6550238739184,0.796546794237325,54.5,165.372037821803,135.830780029297
+9587,0.162176718548872,0.975,97.5,2,99.5492040194748,0.83783783783784,97,138.787408134265,75
+9588,0.2099980378896,1,100,1,100,NA,100,85.8677168464661,20.6155281066895
+9589,0.142729985115293,0.7975,79.75,1,99.3695525162542,0.967187564086789,79.75,42.2837897214023,5
+9590,0.0918084469075984,0.59,59,2,95.7737299933626,0.850671976107516,41.5,18.9477599515753,0
+9591,0.220790863602888,0.955,95.5,1,99.8774262095089,1,95.5,50.1505552711287,0
+9592,0.240497178435326,1,100,1,100,NA,100,102.461190547943,36.0555114746094
+9593,0.239707577489316,1,100,1,100,NA,100,149.095908126831,86.3133850097656
+9594,0.24512675113976,1,100,1,100,NA,100,207.109466629028,143.003494262695
+9595,0.25217156868428,1,100,1,100,NA,100,251.696966590881,201.121841430664
+9596,0.241399075293448,0.995,99.5,1,99.9867925566623,1,99.5,187.497720842984,120.830459594727
+9597,0.068794482622543,0.5375,53.75,2,97.6374380490185,0.891891891891892,53.25,109.969523673834,58.3095169067383
+9598,-0.0294469998784098,0.205,20.5,2,89.1579249591245,0.843851659076122,12.5,63.1777629619691,0
+9599,0.0353335902167601,0.3925,39.25,3,95.9954656725856,0.777091906721536,38.25,5.08251930042437,0
+9600,-0.0141065113990408,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0
+9601,-0.0155217541818274,0,0,0,NA,NA,0,NA,NA
+9602,-0.0631532294373756,0,0,0,NA,NA,0,NA,NA
+9603,-0.188412517330144,0,0,0,NA,NA,0,NA,NA
+9604,-0.217999698035419,0,0,0,NA,NA,0,NA,NA
+9605,-0.0543544742188169,0.1225,12.25,2,85.0837700090481,0.864333197666531,10,16.2991075710374,0
+9606,0.0868070920184255,0.6925,69.25,3,97.7784211059391,0.906191369606004,67.5,2.15509298303928,0
+9607,0.0660690899087058,0.645,64.5,2,97.2058946825525,0.895022307759601,59.5,0.886072661525519,0
+9608,0.0478315101878616,0.54,54,1,98.1009071848445,0.886437378325762,54,0.871686440927011,0
+9609,0.0031173723161919,0.1075,10.75,3,80.4272702619159,0.859943977591036,8.25,56.9998917690543,0
+9610,-0.0673001730359556,0,0,0,NA,NA,0,NA,NA
+9611,0.0625371683560661,0.765,76.5,1,99.2456636792102,0.955750580773627,76.5,0.77404625587214,0
+9612,0.0168344856679323,0.1725,17.25,1,92.5909628330769,0.940076402586702,17.25,3.63614430634872,0
+9613,0.00622133379033926,0.185,18.5,1,93.0265643427559,0.933931099575271,18.5,6.99187242662584,0
+9614,0.0435865570729584,0.29,29,6,83.3796023551343,0.731723675385647,11,1.79065533342033,0
+9615,0.0414583935206429,0.3675,36.75,5,90.2147234057439,0.78841265409877,25,5.27889657831516,0
+9616,0.0302838205614611,0.255,25.5,3,88.5248137740194,0.860637400520776,16,8.62955342087091,0
+9617,-0.00531029302583192,0.1275,12.75,2,84.850047763842,0.855086783255937,10.25,3.99796781352922,0
+9618,-0.045465223074425,0.115,11.5,2,87.5793181344364,0.869621903520209,11,1.50308990478516,0
+9619,-0.0337902162858518,0,0,0,NA,NA,0,NA,NA
+9620,-0.0171177161541709,0.1825,18.25,1,92.9430371372494,0.952217125382263,18.25,1.3179890880846,0
+9621,0.0266433916557344,0.2,20,5,81.0326417220215,0.762323943661972,8.75,5.59190104007721,0
+9622,0.0177990735475851,0.16,16,2,88.3905880745316,0.787414965986394,12.5,2.11945235729218,0
+9623,0.00347169921977184,0.0675,6.75,3,75.6141281517626,0.800486314608143,5.5,5.00069081341779,0
+9624,-0.00116689144216252,0.075,7.5,4,69.44664721643,0.713182570325428,4.5,5.71521129608154,0
+9625,0.0137076826006523,0.1675,16.75,8,72.8098357065888,0.671466338133005,7,3.35822088326981,0
+9626,0.0334146845058149,0.2475,24.75,5,83.526590078654,0.738698719623726,9.75,4.37891050781866,0
+9627,0.0251190342147675,0.165,16.5,6,80.6303357997449,0.6459255402239,8.75,4.08209294983835,0
+9628,0.0101073883926256,0.0025,0.25,1,0,NA,0.25,5,5
+9629,0.00603906047173041,0.0925,9.25,3,79.0183519382309,0.873549202908368,6.25,40.7228718319455,25.4950981140137
+9630,0.018128436362349,0.1,10,3,81.8768894924878,0.734660033167496,7.75,3.81066017150879,0
+9631,0.0059493518081581,0.0225,2.25,3,47.6809287864226,0.573742540494459,1.25,9.35129102071126,0
+9632,0.0315192918272805,0.2225,22.25,6,86.9355628395744,0.797771441282938,17.5,5.14883086386691,0
+9633,0.012934524913112,0.0575,5.75,3,74.8820627823514,0.82316534040672,5,7.03285117771315,0
+9634,0.0336093170420827,0.1775,17.75,5,84.1509118890907,0.77629179331307,11,6.29538761729925,0
+9635,0.0198938000616545,0.37,37,4,92.8400709817213,0.777426345692028,26.5,3.48233487154986,0
+9636,0.000547425436452613,0.465,46.5,1,97.5448886830867,0.913062377743969,46.5,0.745020876648606,0
+9637,-0.00358691891651688,0.1,10,3,83.9191998211229,0.867330016583748,9.25,3.53757038116455,0
+9638,-0.0309071296427074,0,0,0,NA,NA,0,NA,NA
+9639,0.0115591846266216,0.2375,23.75,3,90.3226938591786,0.807135969141755,17.75,65.0926603618421,36.0555114746094
+9640,-0.0133097826844778,0.0275,2.75,2,60.1742794359602,0.588688946015424,1.5,58.3558044433594,50
+9641,-0.0115945999403937,0,0,0,NA,NA,0,NA,NA
+9642,-0.0156280936317489,0.0125,1.25,1,58.1880425789518,1,1.25,2,0
+9643,0.0327549813537462,0.29,29,5,87.0393915234519,0.845741113346747,13.75,4.39510279688342,0
+9644,0.0291255706734228,0.245,24.5,7,80.248199149743,0.714027694160144,8.5,4.02955763680594,0
+9645,-0.020791247534471,0.14,14,2,87.3341860528705,0.856149604411412,12.25,3.27245140075684,0
+9646,-0.0251061026786283,0.32,32,1,95.959121300177,0.962130775056804,32,21.6718316972256,0
+9647,-0.103477182909846,0,0,0,NA,NA,0,NA,NA
+9648,-0.0451506863647956,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,13.8110687467787,10
+9649,-0.0579595530586084,0.02,2,1,68.0470115164975,0.897959183673469,2,1.875,0
+9650,-0.0560267032538104,0.0025,0.25,1,0,NA,0.25,0,0
+9651,-0.0800934674323798,0.01,1,1,52.6315789473684,0.747474747474748,1,77.6619644165039,70.1783447265625
+9652,0.0362589362499421,0.37,37,1,96.6105796155075,0.9589995899959,37,50.7854481001158,11.1803398132324
+9653,-0.00648208774362843,0,0,0,NA,NA,0,NA,NA
+9654,0.00782902446273511,0.115,11.5,2,88.1876383741781,0.898594813849051,11.25,17.4153853292051,5
+9655,0.0878241065470502,0.7625,76.25,1,99.2358070072224,0.824256292906179,76.25,45.9487541386339,0
+9656,-0.00340108700103883,0.125,12.5,1,90.3766993434411,0.905882352941176,12.5,61.0287094116211,43.0116271972656
+9657,-0.174567695800215,0,0,0,NA,NA,0,NA,NA
+9658,-0.015743427128109,0.275,27.5,1,95.2267095868885,0.958412753422284,27.5,23.5471152392301,0
+9659,-0.0391936069249641,0,0,0,NA,NA,0,NA,NA
+9660,-0.0338668821656029,0,0,0,NA,NA,0,NA,NA
+9661,-0.083397055541318,0.0025,0.25,1,0,NA,0.25,25,25
+9662,-0.0306723797516679,0.1,10,3,79.8233663734686,0.767827529021559,7,11.2833213329315,0
+9663,-0.0107147036754395,0.1475,14.75,2,89.3105809141188,0.884997987464781,14,21.8389140630172,0
+9664,0.0887637254525544,0.36,36,2,95.9742003711164,0.934895833333333,35.75,80.2884174717797,28.2842712402344
+9665,0.322989350808784,0.9975,99.75,1,99.9934086913499,1,99.75,152.670305734888,87.4642791748047
+9666,0.138448214178206,0.585,58.5,2,97.0315061278939,0.900747153373218,54.5,204.082169557229,137.93115234375
+9667,-0.0241542735280382,0.27,27,2,94.1299333501375,0.845451352300667,26.25,140.657211939494,95.5248641967773
+9668,-0.00773756675424011,0.34,34,1,96.2369165714469,0.926686217008798,34,41.6731964560116,15
+9669,0.0973002017848194,0.955,95.5,1,99.8774262095089,0.723756906077347,95.5,14.3250410968721,0
+9670,0.183396101386788,0.9625,96.25,1,99.898450616446,0.963470319634702,96.25,20.0571861217548,0
+9671,0.240295808794908,0.99,99,1,99.9734851828463,0.867021276595747,99,80.2838584052192,21.2132034301758
+9672,0.0197675329222693,0.535,53.5,2,95.8933502356982,0.913546225752418,49.25,88.8906094738256,50.2493743896484
+9673,0.171820718732197,0.9325,93.25,1,99.8128381781211,0.958091047199958,93.25,38.3433168119783,0
+9674,0.111491950610774,0.715,71.5,1,99.0388168843254,0.967390595447727,71.5,16.4183117459704,0
+9675,-0.0131218388002708,0.025,2.5,1,71.9760246298065,1,2.5,14.2044075012207,7.07106781005859
+9676,-0.0755490424701566,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.20710678100586,0
+9677,-0.047242328045113,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,64.847279018826,60.2079734802246
+9678,-0.0556534663088678,0,0,0,NA,NA,0,NA,NA
+9679,-0.0131169226268685,0.0625,6.25,3,75.2469480337737,0.706666666666667,4.5,9.53335906982422,0
+9680,0.0233513753418447,0.22,22,4,84.2264378634699,0.812183570145354,13.25,1.94964252818714,0
+9681,-0.0743404956616723,0.11,11,4,75.4692456589707,0.741876708168843,4.75,2.32712598280473,0
+9682,-0.091375113837712,0,0,0,NA,NA,0,NA,NA
+9683,-0.00466280351644855,0,0,0,NA,NA,0,NA,NA
+9684,-0.00805053377043805,0.1325,13.25,2,85.2671516850333,0.83532317826266,9.5,189.537124633789,148.660690307617
+9685,0.029634430879596,0.255,25.5,3,90.4625848637665,0.831297905893571,20.75,157.319761612836,65.192024230957
+9686,0.101982380147092,0.895,89.5,2,99.1629547321876,0.775249332771457,88.25,88.8596588113454,35
+9687,0.206414563134313,1,100,1,100,NA,100,130.242036552429,61.0327758789062
+9688,0.212215912677348,1,100,1,100,NA,100,141.022082920074,95
+9689,0.205107814781368,1,100,1,100,NA,100,55.3026077270508,0
+9690,0.20349215660448,0.955,95.5,1,99.8774262095089,1,95.5,26.5585739974576,0
+9691,-0.0428780976863595,0.1725,17.25,2,87.337729581616,0.850191006466755,9,19.366187054178,5
+9692,0.131645144688955,0.7075,70.75,1,99.0059126497077,0.897178844547266,70.75,32.2406131690467,0
+9693,0.250255556181073,1,100,1,100,NA,100,69.1107735204697,10
+9694,0.249791952706873,1,100,1,100,NA,100,127.270760602951,60.2079734802246
+9695,0.252101942300797,1,100,1,100,NA,100,181.32089302063,116.619033813477
+9696,0.23924116006121,1,100,1,100,NA,100,158.341829395294,110
+9697,0.0464608038772712,0.6025,60.25,1,98.4825618273597,0.977638015373865,60.25,80.5627094442914,41.2310562133789
+9698,0.00893245935370942,0.24,24,4,88.2796065082857,0.80875152998776,12.25,3.97325340906779,0
+9699,-0.0128166934847422,0.1625,16.25,2,89.2298352762608,0.883767005679567,15,1.71097236046424,0
+9700,-0.0630133661488071,0,0,0,NA,NA,0,NA,NA
+9701,-0.0113888886741984,0.075,7.5,4,69.8562727148998,0.713182570325428,4.25,10.6341119766235,0
+9702,-0.00203889510416047,0.09,9,2,81.7168680581614,0.89010989010989,7,12.4964079856873,0
+9703,-0.109570869885829,0,0,0,NA,NA,0,NA,NA
+9704,-0.140631166117601,0,0,0,NA,NA,0,NA,NA
+9705,0.0610359460220206,0.645,64.5,1,98.7097599330033,0.965007435919867,64.5,2.53730878164602,0
+9706,0.00433645458724641,0.37,37,2,95.8778064041222,0.847712762841914,36,2.45616310995978,0
+9707,0.0480423586492543,0.4875,48.75,4,90.8259775502448,0.80595607061043,22.25,4.09835163018642,0
+9708,0.067164362128824,0.715,71.5,2,97.2472032263979,0.791299810865454,61.5,2.65697664647669,0
+9709,0.077571673286875,0.7475,74.75,3,98.4589440144568,0.922621036526388,74,0.579876571195979,0
+9710,0.0390091684137587,0.615,61.5,1,98.5518240730175,0.92094861660079,61.5,0.509574548984931,0
+9711,0.116801605871879,0.9025,90.25,1,99.7229916897507,0.910031488978857,90.25,0.565490680388136,0
+9712,0.00765235777231283,0.2075,20.75,3,89.9824802511867,0.914161248095453,19,0.652314886989364,0
+9713,0.0433641887342674,0.51,51,1,97.8932627156421,0.935383124225944,51,3.08731755088357,0
+9714,0.0573332980490318,0.5925,59.25,2,97.9322730278314,0.933526291736487,58.75,0.506329113924051,0
+9715,-0.000971231526236807,0.0275,2.75,4,44.197155902927,0.451585261353899,1,5.37655778364702,0
+9716,0.0051282740564784,0.055,5.5,2,74.4714797160926,0.813258636788049,4,9.56958458640359,0
+9717,0.011014463308411,0.235,23.5,3,88.3605125741021,0.836601307189543,14.25,5.12084139154312,0
+9718,-0.037761188554432,0.075,7.5,3,72.2372175814823,0.7573083287369,3,6.48580576578776,0
+9719,-0.0167712279554689,0.01,1,1,52.6315789473684,0.747474747474748,1,17.5130867958069,15
+9720,0.000908519303144431,0.0375,3.75,2,66.7728472562516,0.763872491145218,2.5,53.9312472025553,40.3112869262695
+9721,0.0245325361593132,0.2325,23.25,5,81.8879576175836,0.77237941995997,9.75,32.7989341981949,0
+9722,-0.00454005003214661,0.0675,6.75,3,70.5345665341034,0.725668682586196,2.75,5.57650410687482,0
+9723,0.0218786139736949,0.105,10.5,6,70.8928517353694,0.606578015579511,5,16.5352198737008,0
+9724,0.00121306980050576,0.075,7.5,7,61.5483950264757,0.492553778268064,3.5,22.3165296554565,0
+9725,0.0226653691915999,0.1425,14.25,7,75.270762710079,0.654905694056048,7.25,4.06260600842928,0
+9726,0.0262702070794694,0.1975,19.75,6,81.8691235977283,0.679572763684913,11.25,8.68330648880971,0
+9727,0.0233183937360809,0.1325,13.25,3,82.4523510297119,0.746651043481015,7.25,9.9786065659433,0
+9728,0.0113044132928917,0,0,0,NA,NA,0,NA,NA
+9729,0.0111920009298599,0.0425,4.25,2,76.0233918128655,0.74934725848564,4,8.6715020572438,0
+9730,0.0179567692834826,0.0325,3.25,3,56.3359277453448,0.655469422911283,1.5,7.80433376018818,0
+9731,0.0208979070239729,0.07,7,5,68.4399631525069,0.68936678614098,3.75,5.81128638131278,0
+9732,0.0142376694098493,0.07,7,5,62.2594608157142,0.59378733572282,2,9.4157372202192,0
+9733,0.0363288251041377,0.275,27.5,4,91.431499920949,0.785132559348466,23,5.93026596416127,0
+9734,0.0253663256575965,0.155,15.5,6,80.1829066173813,0.715099715099715,8,6.38260724467616,0
+9735,0.0513471996587396,0.525,52.5,5,96.102985370317,0.687710324404361,46.75,3.46942901611328,0
+9736,0.0402583128851984,0.3575,35.75,5,90.2624844283555,0.697032702646508,26.25,4.46403105942519,0
+9737,0.0246291854695846,0.145,14.5,3,84.0492882349644,0.754385964912281,9,1.70934716586409,0
+9738,0.0174819788789137,0.2225,22.25,1,94.1052854736172,0.846306295375033,22.25,1.86480254269718,0
+9739,0.0218327319629498,0.305,30.5,4,93.4594424275179,0.785149256160682,28.5,5.7307526635342,0
+9740,0.012715506741406,0.165,16.5,5,81.9290349100022,0.791720906014059,8,9.44446075323856,0
+9741,-0.00629105359628738,0.0775,7.75,3,73.7177903451004,0.78319783197832,4.25,11.1601341001449,0
+9742,-0.0104016826306179,0.125,12.5,3,84.4957519830948,0.74453781512605,10,3.23071357727051,0
+9743,-0.0219159106968755,0.0575,5.75,4,63.9819506719257,0.675803124078986,2,16.2586334891941,0
+9744,-0.0126622956423671,0.12,12,1,90.0697297581677,0.902993348115299,12,2.40255157152812,0
+9745,0.00767848241313914,0.16,16,5,77.6431836798173,0.670493197278912,5.5,2.36074042320251,0
+9746,-0.0800147819892663,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0
+9747,-0.101730543903323,0,0,0,NA,NA,0,NA,NA
+9748,-0.0423013723975509,0,0,0,NA,NA,0,NA,NA
+9749,-0.0902219954319298,0,0,0,NA,NA,0,NA,NA
+9750,-0.0759021601080895,0,0,0,NA,NA,0,NA,NA
+9751,-0.10036939767655,0,0,0,NA,NA,0,NA,NA
+9752,0.0454722254652916,0.395,39.5,3,95.088027832823,0.908805927614705,37.75,45.941424997547,5
+9753,0.0470053135817579,0.5575,55.75,1,98.2142154717639,0.978270317253368,55.75,32.1072566113664,0
+9754,-0.0449120225440856,0.0175,1.75,1,65.4774238937655,1,1.75,14.968163899013,10
+9755,0.0148296398907587,0.265,26.5,2,91.1273968171151,0.907397513979414,21.25,21.4914148258713,0
+9756,-0.0365145090425722,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,31.7022966657366,18.0277557373047
+9757,-0.154861743549263,0,0,0,NA,NA,0,NA,NA
+9758,-0.0109224136301782,0.265,26.5,1,95.039096185713,0.914520782134844,26.5,31.5856359589775,10
+9759,-0.053053788857942,0,0,0,NA,NA,0,NA,NA
+9760,-0.0110593399776189,0.05,5,3,66.9037141623587,0.728353140916808,2.75,1,0
+9761,-0.0144328369815048,0.125,12.5,1,90.3766993434411,0.865546218487395,12.5,4.53149291992187,0
+9762,-0.0437799939683237,0.09,9,2,81.4986445721775,0.853479853479854,7,31.6340328852336,18.0277557373047
+9763,0.0135093114175834,0.4475,44.75,2,94.3525674325724,0.87423275143197,31,64.3366327978379,20.6155281066895
+9764,0.0719443410407621,0.42,42,1,97.1419289493636,0.944382647385984,42,127.341869853792,67.2681198120117
+9765,0.11618233334498,0.4775,47.75,1,97.646583102185,0.95134214581137,47.75,212.909176491942,154.029220581055
+9766,0.35660290889442,1,100,1,100,NA,100,192.687822914124,129.034881591797
+9767,0.149220393373544,0.6175,61.75,2,96.7603077389868,0.869846928670458,55.5,110.920482450169,42.7200164794922
+9768,0.055549701968921,0.765,76.5,1,99.2456636792102,0.882001548729673,76.5,21.7900183372248,0
+9769,0.0365923801915505,0.3075,30.75,3,93.4356726226699,0.876964918813035,28.25,11.9271444460241,0
+9770,0.0216598765909794,0.15,15,2,86.0341248756211,0.841628959276018,8,79.7189790089925,25.4950981140137
+9771,0.0855412928971418,0.5225,52.25,2,96.5769431949997,0.886943296679632,48.5,73.9139740866337,11.1803398132324
+9772,0.203435120357317,0.975,97.5,1,99.9329506995597,1,97.5,32.077733753889,0
+9773,0.204627780988812,0.9925,99.25,1,99.9801514397,1,99.25,44.4857870913873,0
+9774,0.0549318584745379,0.43,43,2,95.7800853241812,0.822901101333776,40.25,19.1168276875518,0
+9775,-0.108436017471686,0.145,14.5,1,91.4414281200292,0.941520467836257,14.5,1.83126212810648,0
+9776,-0.0486814415659501,0.0375,3.75,2,67.1978517554059,0.716646989374262,2.5,2.47140452067057,0
+9777,-0.0156513634368821,0.11,11,1,89.3941397590651,0.893713938657759,11,0.113636363636364,0
+9778,-0.0763527517963666,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,5.3451779683431,0
+9779,-0.0335869827395072,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0
+9780,-0.0366616340533801,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,3.67851130167643,0
+9781,-0.0045774605661245,0.0375,3.75,3,61.0173954110508,0.716646989374262,2.5,4.41551246643066,0
+9782,-0.0478947574459744,0.0525,5.25,2,77.0265364828171,0.868073878627968,4.75,10.7188658033098,5
+9783,-0.0127433557722452,0.075,7.5,2,78.7238347912349,0.845559845559846,5.5,23.0936663309733,5
+9784,0.0178195912836236,0.05,5,4,63.1968183189929,0.490662139219015,2.75,126.135805511475,82.006103515625
+9785,0.0235081380148404,0.16,16,5,82.8457588691293,0.787414965986394,12.25,87.5971800088882,55.9016990661621
+9786,-0.0292625091551417,0.2825,28.25,1,95.3608329643832,0.911183985789438,28.25,34.0042551260079,10
+9787,0.185357472473406,0.8975,89.75,1,99.7075809055868,0.971305595408895,89.75,105.633652668477,50
+9788,0.214094148445874,1,100,1,100,NA,100,123.01942782402,58.3095169067383
+9789,0.141513719659997,0.84,84,1,99.5205818358949,0.872047244094488,84,46.8241478658858,0
+9790,0.0146434137702454,0.4075,40.75,1,97.0183110527583,0.90436005625879,40.75,25.0015046055332,0
+9791,-0.0746600584773114,0.08,8,1,86.6550847056172,0.937290969899666,8,65.6891393661499,55.9016990661621
+9792,0.0762745317036752,0.805,80.5,1,99.3970714465752,0.822874493927126,80.5,54.4960181254037,0
+9793,0.103218201722484,0.5075,50.75,3,96.3033100174612,0.843811011323702,47.75,20.0439773709903,0
+9794,0.228562860891689,0.9475,94.75,1,99.8561526638156,0.973508179349626,94.75,47.6513466595974,0
+9795,0.243711044676602,1,100,1,100,NA,100,98.1727580070496,32.0156211853027
+9796,0.150124102344271,0.9025,90.25,1,99.7229916897507,0.970010496326286,90.25,124.725040974709,86.0232543945312
+9797,-0.0239232530900335,0.19,19,5,84.5884105774255,0.732817394508937,9,47.5551553274456,0
+9798,0.0641675651477999,0.6,60,2,97.3488080448923,0.755011135857461,54.75,1.84909181594849,0
+9799,0.0491503498448583,0.6,60,2,96.2695475084818,0.832962138084632,43.75,0,0
+9800,-0.0296409442715776,0.0525,5.25,1,82.2928536593692,1,5.25,0,0
+9801,-0.102052385761526,0.2125,21.25,1,93.8457653779655,0.907495006832755,21.25,17.9038789861342,5
+9802,-0.303303166079859,0,0,0,NA,NA,0,NA,NA
+9803,-0.06280992688418,0.12,12,1,90.0697297581677,0.792128603104213,12,52.2414565881093,32.0156211853027
+9804,-0.0202019975494795,0.13,13,4,79.1798864393512,0.690042619139868,5.5,3.24091166716356,0
+9805,0.123776075139176,0.9275,92.75,1,99.7981670352509,0.843037229607102,92.75,0.448014025418264,0
+9806,-0.00907667332232791,0.255,25.5,3,91.9113652287016,0.875307147834379,23.75,0.706579096177045,0
+9807,0.0629819541831966,0.7075,70.75,1,99.0059126497077,0.730094466936572,70.75,24.6662562272574,0
+9808,0.0738834375181978,0.6175,61.75,4,95.9161962709648,0.875505757858699,55.75,15.408194653901,0
+9809,0.0309199991485912,0.2475,24.75,4,85.5680509880547,0.738698719623726,8.75,7.19291713984326,0
+9810,0.022978906334356,0.21,21,4,83.6123743131325,0.78761362670971,8,6.60667219616118,0
+9811,0.0794172682175281,0.7525,75.25,2,98.2925629758657,0.793347941496089,72.5,0.561934005382449,0
+9812,0.0655687554425094,0.8375,83.75,1,99.5120172135984,0.73751367116296,83.75,0.26865671641791,0
+9813,0.0820902480767109,0.7725,77.25,2,97.4738729227352,0.796080208451343,68.5,0.790103998770606,0
+9814,0.014546081968997,0.1975,19.75,3,87.4681651449103,0.795282599020917,13.75,2.07463744924038,0
+9815,-0.0124551122944285,0,0,0,NA,NA,0,NA,NA
+9816,-0.00905955858126617,0,0,0,NA,NA,0,NA,NA
+9817,-0.0093471848824538,0.05,5,3,67.4508594493681,0.694397283531409,3.25,10.7376184463501,0
+9818,0.0038232914396383,0.055,5.5,2,73.4922152663815,0.813258636788049,3,5.57800084894354,0
+9819,0.011613122730123,0.12,12,3,80.8995846873846,0.792128603104213,7,6.95214434464773,0
+9820,-0.00936608155883732,0.0025,0.25,1,0,NA,0.25,5,5
+9821,-0.0481546990129209,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,5.1967233022054,0
+9822,0.00134240440389476,0.055,5.5,3,70.1195930404981,0.657640834111422,3.5,8.43041905489835,0
+9823,0.0228931924066273,0.22,22,4,83.8245905101473,0.689694594153193,13.5,4.32675582712347,0
+9824,-0.00287756269986858,0.1275,12.75,4,81.3663515427342,0.670651780127128,7.5,2.2206158357508,0
+9825,0.0152003342467924,0.15,15,7,71.6131544098011,0.615384615384615,4,2.56903559366862,0
+9826,0.0287570357021468,0.1925,19.25,9,75.0769530784306,0.62666181023493,4.75,3.9383403480827,0
+9827,0.0243402469723242,0.235,23.5,2,91.3525409699426,0.891067538126362,20,11.1042952030263,0
+9828,0.0141006653051318,0.12,12,3,83.2166778681174,0.83370288248337,8.5,1.50148057937622,0
+9829,0.0110058998099703,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,9.20718924204508,0
+9830,0.0123982339605209,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,27.5484786987305,5
+9831,0.0127782136837686,0.0625,6.25,6,59.8566950972188,0.52,2.5,16.357995223999,0
+9832,0.0311719663362783,0.225,22.5,3,89.113795148108,0.839711480665197,13.75,4.03139533996582,0
+9833,0.028422296645731,0.2575,25.75,4,87.4262301970938,0.723359723359723,13.5,5.82896038166528,0
+9834,0.0408206503412657,0.305,30.5,3,93.3661726930098,0.778638627559491,28,4.38348560645932,0
+9835,0.072361305686245,0.7,70,1,98.9724810035032,0.917617237008872,70,1.47207367760795,0
+9836,0.0190318607636436,0.33,33,5,90.6159261085288,0.74608286368985,23.75,2.34712083411939,0
+9837,0.0305756414710777,0.23,23,5,83.9552108803485,0.794108330693696,10,3.51609706878662,0
+9838,0.0230631531451218,0.11,11,6,68.3522843512095,0.635590646826602,3,4.35308361053467,0
+9839,0.0112168436293723,0.085,8.5,7,64.33923518201,0.648711943793911,3.5,6.14947880015654,0
+9840,0.0217922723052288,0.1175,11.75,4,79.6682467845387,0.71671388101983,7.5,9.87023536195146,0
+9841,0.00841592593813402,0.0725,7.25,3,76.6748204424461,0.816482193037793,6,4.18814961663608,0
+9842,0.00975381950811425,0.115,11.5,3,82.2416501462928,0.681297986382732,8,12.3072604303775,0
+9843,-0.0623656362784823,0.0575,5.75,2,78.8715439622917,0.82316534040672,5.25,3.74394027046535,0
+9844,-0.0451159489440033,0,0,0,NA,NA,0,NA,NA
+9845,-0.0218575583242273,0.0025,0.25,1,0,NA,0.25,0,0
+9846,-0.0220641295819951,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,0.833333333333333,0
+9847,-0.0574484864265469,0.0375,3.75,2,71.305744570345,0.763872491145218,3.25,1.66666666666667,0
+9848,-0.0542653119962051,0,0,0,NA,NA,0,NA,NA
+9849,-0.0715498141571879,0,0,0,NA,NA,0,NA,NA
+9850,-0.0716237950684444,0,0,0,NA,NA,0,NA,NA
+9851,-0.068494368784668,0.04,4,1,78.9473684210526,0.869791666666667,4,110.432394981384,96.0468673706055
+9852,0.054594265703854,0.5475,54.75,3,96.7583069559913,0.815837937384899,52.5,103.055129761021,77.7817459106445
+9853,0.0554315033231978,0.605,60.5,1,98.496585825966,0.966394085359023,60.5,62.8628168657792,30.4138145446777
+9854,-0.0721515584216104,0,0,0,NA,NA,0,NA,NA
+9855,-0.0308073735814105,0.1225,12.25,1,90.2255639097744,0.905033238366572,12.25,20.0495675923873,10
+9856,0.0233934919819649,0.3775,37.75,1,96.6969635918825,0.953605033853827,37.75,27.4228758275114,0
+9857,-0.0473605375704938,0,0,0,NA,NA,0,NA,NA
+9858,-0.0951775032362275,0,0,0,NA,NA,0,NA,NA
+9859,-0.0252200133338283,0.0125,1.25,1,58.1880425789518,1,1.25,14.0683917999268,11.1803398132324
+9860,0.00799391202526749,0.275,27.5,3,91.5381279844236,0.854444636977993,22.75,11.7131078373302,0
+9861,0.0220376477446189,0.38,38,2,94.0223955120493,0.838131575904729,30.5,7.67082018601267,0
+9862,0.0112467589430526,0.3825,38.25,2,93.1962847935249,0.861685420778884,25,59.0067896375469,18.0277557373047
+9863,0.0359240556330406,0.5225,52.25,2,95.294648902638,0.806188508593655,37.25,131.905904815528,68.0073547363281
+9864,0.0333754887563919,0.48,48,2,95.6539756702876,0.891961970613656,43.25,206.947962125142,152.397506713867
+9865,0.0278136368663127,0.235,23.5,2,91.9556603999883,0.898848428260193,21.75,215.832534303056,176.139144897461
+9866,0.200059861489281,0.7125,71.25,1,99.0279065499043,0.961064243997404,71.25,137.837473069576,78.2623825073242
+9867,0.143066337257624,0.95,95,1,99.8632718311308,0.611650485436894,95,57.7819383269862,0
+9868,0.103536639837548,0.9575,95.75,1,99.8844617862358,0.449035812672177,95.75,31.674047514913,0
+9869,0.108458668993098,0.6775,67.75,2,97.4022714519481,0.890345867409878,63,38.2832708675483,0
+9870,0.036010309412377,0.235,23.5,4,89.3267472943759,0.836601307189543,18.25,72.2374165717592,21.2132034301758
+9871,0.0463854847781749,0.23,23,1,94.2887150496276,0.952486537852391,23,21.7134327681168,0
+9872,0.152489710114896,0.9275,92.75,1,99.7981670352509,0.941138961102664,92.75,61.5438856860055,10
+9873,0.157231081172504,0.815,81.5,2,97.9655578101391,0.87695012085256,76.75,64.4872461155148,10
+9874,0.0341895300307078,0.36,36,2,92.8650491455577,0.781013257575758,18.5,7.19602795441945,0
+9875,-0.185493883782765,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0
+9876,-0.211389891838189,0,0,0,NA,NA,0,NA,NA
+9877,-0.0463318923558836,0,0,0,NA,NA,0,NA,NA
+9878,-0.0208528097852468,0.08,8,2,78.9824059721321,0.853678929765886,4.5,1.62722086906433,0
+9879,-0.0176286312961338,0.05,5,2,74.1882130447361,0.864176570458404,4.25,3.70710678100586,0
+9880,-0.0306097051581673,0,0,0,NA,NA,0,NA,NA
+9881,-0.0380174587874353,0,0,0,NA,NA,0,NA,NA
+9882,-0.00261427153087425,0.0425,4.25,3,65.4922092585821,0.70757180156658,3,9.4003864737118,0
+9883,0.0129240313609989,0.14,14,5,77.66070820603,0.760249340685687,5,1.80020335742405,0
+9884,-0.00440906697844184,0.0375,3.75,2,68.3745502901928,0.669421487603306,2.5,6.37019907633464,0
+9885,-0.066597599335355,0,0,0,NA,NA,0,NA,NA
+9886,-0.114724258635069,0,0,0,NA,NA,0,NA,NA
+9887,-0.00595069922960647,0.0825,8.25,1,86.9391941099265,0.939448985770512,8.25,148.097689773097,126.194297790527
+9888,0.110205493038029,0.6225,62.25,1,98.5923763102686,0.965892618594207,62.25,93.1815647140564,50
+9889,0.141683039666386,0.7825,78.25,1,99.3133324321661,0.968829144749659,78.25,36.2249373170895,0
+9890,-0.114267926522298,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,38.2440567016602,33.5410194396973
+9891,0.0276338929179474,0.53,53,1,98.0336545290164,0.91359758073226,53,88.9998759863512,55.9016990661621
+9892,0.0652977803023532,0.67,67,2,97.942626632182,0.777095005723236,63.75,111.655708654603,71.0633544921875
+9893,0.0427795426250668,0.3675,36.75,4,92.5244612330201,0.735515817623463,29.75,89.3164849054246,20.6155281066895
+9894,0.108051527319476,0.89,89,1,99.684221684177,0.824656056110062,89,35.2902327708984,0
+9895,0.163180854017846,0.965,96.5,1,99.9054042256917,0.492583918813429,96.5,30.274284456678,0
+9896,-0.00765257127262885,0.355,35.5,2,94.4074998509452,0.892665474060823,32.25,74.6126216163098,7.07106781005859
+9897,0.0376629691276321,0.3925,39.25,3,92.9410307407987,0.754229538180155,24.75,5.98454126734642,0
+9898,0.0233968610327611,0.1475,14.75,3,82.4522371786203,0.792996377436605,8.5,0.169491525423729,0
+9899,0.0539113542553969,0.6875,68.75,2,98.62684931997,0.931782945736434,68.5,0,0
+9900,-0.0349221734418097,0.0075,0.75,1,44.4894453484604,1,0.75,0,0
+9901,0.0362839618337615,0.442105263157895,44.2105263157895,1,97.2749311815369,0.965307364576993,44.2105263157895,107.837800843375,66.7083206176758
+9902,-0.275801083168603,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,152.60262298584,145.344421386719
+9903,-0.188675706565233,0,0,0,NA,NA,0,NA,NA
+9904,0.0249300947083516,0.436842105263158,43.6842105263158,4,95.9732230542307,0.849123450003054,42.6315789473684,0.516681648162474,0
+9905,0.0525739965103352,0.576315789473684,57.6315789473684,2,97.2835183310696,0.913226160029229,56.0526315789474,1.99823135654676,0
+9906,0.0263539017413055,0.457894736842105,45.7894736842105,1,97.4163741131468,0.965520370202341,45.7894736842105,16.7746693074018,0
+9907,0.113363349163219,0.960526315789474,96.0526315789474,1,99.8900101755836,0.670043415340088,96.0526315789474,25.2816232550634,0
+9908,0.0886109623714889,0.913157894736842,91.3157894736842,2,98.6134887253058,0.824464153732446,88.4210526315789,12.7950835104291,0
+9909,0.0649064309186782,0.623684210526316,62.3684210526316,2,95.8532870075428,0.778054902208401,38.1578947368421,41.525094768669,0
+9910,0.0471086848750067,0.468421052631579,46.8421052631579,2,96.7066172783085,0.857052574558368,45.7894736842105,16.3085979397377,0
+9911,0.0307321248335556,0.184210526315789,18.4210526315789,5,77.4126805506142,0.65119328612641,4.21052631578947,3.14888711656843,0
+9912,0.0618421838514654,0.557894736842105,55.7894736842105,4,96.5273980073149,0.77610587382161,52.1052631578947,0.754716981132076,0
+9913,0.0795485837314788,0.697368421052632,69.7368421052632,2,97.3857393749085,0.893622605196396,65,1.03512346519614,0
+9914,0.00986283162259688,0.068421052631579,6.8421052631579,2,76.1508805850031,0.71200220476781,3.68421052631579,16.6877808204064,0
+9915,0.00930770509793978,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,37.2032947540283,35.355339050293
+9916,-0.00285341438292036,0.0973684210526316,9.73684210526316,2,83.9500543058482,0.909190842613392,8.68421052631579,26.4713444065403,11.1803398132324
+9917,-0.00763706329718939,0.134210526315789,13.4210526315789,4,77.0775387253515,0.774307375187786,5.78947368421053,37.1416801377839,7.07106781005859
+9918,0.0316976527695883,0.323684210526316,32.3684210526316,4,89.1733962156827,0.820976775837099,20.7894736842105,21.9672959955727,0
+9919,0.00437465573566346,0.0842105263157895,8.42105263157895,1,86.7737288361143,0.979000884173298,8.42105263157895,8.59471940994263,0
+9920,-0.00177462387607528,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,7.07106781005859,7.07106781005859
+9921,0.00688261477314786,0.0315789473684211,3.15789473684211,2,64.5452452330323,0.696291560102302,2.63157894736842,3.50592231750488,0
+9922,0.0050955294519458,0.0210526315789474,2.10526315789474,5,25.6037101023973,0.28494623655914,0.789473684210526,4.63388347625732,0
+9923,0.0248463717068944,0.142105263157895,14.2105263157895,3,80.667554338601,0.761857642324692,6.8421052631579,5.01657305823432,0
+9924,0.0168439511404262,0.113157894736842,11.3157894736842,3,79.4151667351751,0.780745136828223,6.05263157894737,3.46842175860738,0
+9925,0.0162433277878575,0.126315789473684,12.6315789473684,3,81.0202701069831,0.720834557743168,6.05263157894737,2.837775071462,0
+9926,0.0302040651011722,0.189473684210526,18.9473684210526,5,81.9072552898571,0.795991410164638,9.47368421052632,4.30768606397841,0
+9927,0.0127116645061745,0.105263157894737,10.5263157894737,5,73.2577725242883,0.766461808604039,7.36842105263158,3.74467716217041,0
+9928,0.0070056379118078,0.0763157894736842,7.63157894736842,3,74.9256092042896,0.792689579923622,5,1.45072647620892,0
+9929,0.0112766762313473,0,0,0,NA,NA,0,NA,NA
+9930,0.00975316737069653,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,36.8333120346069,31.6227760314941
+9931,0.017142345613224,0.0236842105263158,2.36842105263158,4,37.2301851041841,0.40251572327044,0.789473684210526,23.3513605329725,5
+9932,0.00708501286734597,0.0210526315789474,2.10526315789474,2,56.1263686554175,0.591397849462366,1.57894736842105,12.126401424408,5
+9933,0.025289001212437,0.186842105263158,18.6842105263158,3,90.3857071346027,0.822912621359223,17.3684210526316,6.52492681691344,0
+9934,0.027996758059453,0.181578947368421,18.1578947368421,4,88.9161692590774,0.838431080757886,16.8421052631579,2.40489860202955,0
+9935,0.0220801449943744,0.15,15,5,76.8139110149152,0.723889555822329,6.8421052631579,3.71010214822334,0
+9936,0.0403909334993315,0.321052631578947,32.1052631578947,5,88.320872334175,0.813392262092672,24.7368421052632,2.30766949888136,0
+9937,0.012589066703329,0.210526315789474,21.0526315789474,5,80.8055372592438,0.750234741784038,7.63157894736842,6.85571439266205,0
+9938,0.0348240095926724,0.302631578947368,30.2631578947368,6,92.0596284682122,0.793178519593614,27.8947368421053,6.11136766516644,0
+9939,0.0122011971696338,0.0894736842105263,8.94736842105263,6,68.8358745219424,0.666597853014038,5.52631578947368,10.7850921855253,0
+9940,0.0146978592791943,0.0342105263157895,3.42105263157895,3,58.4012368919126,0.654859218891916,1.57894736842105,7.96548461914062,0
+9941,0.0151773222738867,0.0368421052631579,3.68421052631579,4,54.4938373335044,0.636612021857924,1.84210526315789,11.3193565096174,0
+9942,0.026338156159161,0.197368421052632,19.7368421052632,3,88.66870842689,0.877297565822156,16.5789473684211,2.51905629475911,0
+9943,-0.0480368245899507,0,0,0,NA,NA,0,NA,NA
+9944,-0.0531281659244853,0,0,0,NA,NA,0,NA,NA
+9945,-0.0291678717321606,0,0,0,NA,NA,0,NA,NA
+9946,-0.0287464571122607,0,0,0,NA,NA,0,NA,NA
+9947,-0.0105148059900067,0.192105263157895,19.2105263157895,2,91.6732008363717,0.903298045602606,18.6842105263158,1.67220640835697,0
+9948,-0.035873733612626,0.142105263157895,14.2105263157895,1,91.0631654736186,0.949864766805198,14.2105263157895,1.85185185185185,0
+9949,-0.0509360843285226,0,0,0,NA,NA,0,NA,NA
+9950,-0.0257865295677651,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,8.38525308881487,0
+9951,-0.0244522123068141,0.147368421052632,14.7368421052632,2,90.2579813281781,0.84281532391498,14.4736842105263,78.1357558795384,60
+9952,0.0358305654523352,0.336842105263158,33.6842105263158,4,91.3479009906404,0.818788745827372,26.5789473684211,90.4165564477444,40
+9953,0.00326414328257287,0.334210526315789,33.4210526315789,1,96.0538957916212,0.973991752647879,33.4210526315789,27.8716148917131,5
+9954,-0.0848967630955342,0,0,0,NA,NA,0,NA,NA
+9955,-0.0675755314311429,0.0815789473684211,8.1578947368421,1,86.4755730963744,0.912893982808023,8.1578947368421,13.5944674707228,5
+9956,-0.0104249821101181,0.271052631578947,27.1052631578947,1,95.0211914913291,0.948092496828959,27.1052631578947,26.1652155015075,0
+9957,-0.0745545140519665,0,0,0,NA,NA,0,NA,NA
+9958,-0.0654602778370884,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5,5
+9959,-0.000536929795749816,0.136842105263158,13.6842105263158,4,85.8146384216106,0.856810084954782,12.6315789473684,36.2165585297805,0
+9960,-0.0186559565724517,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,34.6294631958008,20.6155281066895
+9961,-0.051868918321653,0,0,0,NA,NA,0,NA,NA
+9962,-0.0046186266864568,0.326315789473684,32.6315789473684,1,95.9414262170022,0.920833333333333,32.6315789473684,73.0588050042429,40.3112869262695
+9963,0.0260869960637616,0.384210526315789,38.4210526315789,3,93.5446375640328,0.84794647715996,31.3157894736842,163.891525791116,105.118980407715
+9964,0.0119748589097933,0.292105263157895,29.2105263157895,4,90.9046969900658,0.759851301115242,20,225.619497213278,200.062484741211
+9965,0.0411309952518327,0.502631578947368,50.2631578947368,2,97.507590701174,0.829611694018474,50,152.446445964394,100.124923706055
+9966,0.0471638005041122,0.636842105263158,63.6842105263158,1,98.6314427916243,0.896434526099782,63.6842105263158,59.3249893661373,5
+9967,0.0951596643579634,0.989473684210526,98.9473684210526,1,99.9713139666717,0.866760168302943,98.9473684210526,18.8973236033257,0
+9968,0.179260012723113,1,100,1,100,NA,100,65.9655088073329,15
+9969,0.137842354648992,1,100,1,100,NA,100,87.3787493655556,35
+9970,0.119039283146297,0.794736842105263,79.4736842105263,1,99.3417720000049,0.922941733135055,79.4736842105263,35.378902428987,0
+9971,0.174621433561888,0.957894736842105,95.7894736842105,1,99.8824367071426,1,95.7894736842105,61.4790822961828,25
+9972,0.188330335248458,1,100,1,100,NA,100,110.475691755194,43.0116271972656
+9973,0.0964895038976561,0.663157894736842,66.3157894736842,2,95.8370416481465,0.823887711864407,47.8947368421053,95.0626692393469,26.9258232116699
+9974,0.0105405863830368,0.0868421052631579,8.68421052631579,4,72.4467597236283,0.634966378482229,4.21052631578947,20.1958264437589,10
+9975,-0.0362117631007813,0,0,0,NA,NA,0,NA,NA
+9976,-0.0795345536249347,0,0,0,NA,NA,0,NA,NA
+9977,-0.0141703642805193,0.0552631578947368,5.52631578947368,2,79.1158279248491,0.834610027855153,5.26315789473684,10.0586993807838,0
+9978,0.0305340076563114,0.342105263157895,34.2105263157895,3,94.6159222646884,0.794767932489451,32.6315789473684,10.7975269757784,0
+9979,-0.00665407675964831,0.0526315789473684,5.26315789473684,4,61.1644271354449,0.625448028673835,2.63157894736842,5.98538732528687,0
+9980,-0.0327450897891571,0,0,0,NA,NA,0,NA,NA
+9981,-0.0489640179594924,0,0,0,NA,NA,0,NA,NA
+9982,0.00355007807298343,0.0368421052631579,3.68421052631579,4,52.9086443073112,0.636612021857924,1.84210526315789,5.88525308881487,0
+9983,-0.0124238840660837,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,15.6119373321533,10
+9984,-0.0327241499968774,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5,5
+9985,-0.145611600489601,0,0,0,NA,NA,0,NA,NA
+9986,-0.0489249607494122,0,0,0,NA,NA,0,NA,NA
+9987,-0.00500504898769386,0,0,0,NA,NA,0,NA,NA
+9988,-0.0215035512249175,0,0,0,NA,NA,0,NA,NA
+9989,-0.0844641779542527,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.795698924731183,2.10526315789474,78.4611234664917,75
+9990,-0.0762735527570935,0.0842105263157895,8.42105263157895,2,85.0212617258067,0.769009725906278,8.15789473684211,76.512304186821,20.6155281066895
+9991,0.103348151883601,0.921052631578947,92.1052631578947,2,99.4918454255232,0.942598187311178,91.8421052631579,108.315361131941,57.0087738037109
+9992,0.0364839464830431,0.202631578947368,20.2631578947368,3,88.3170309471367,0.704911667637352,13.4210526315789,58.7774124145508,0
+9993,0.062052107729802,0.784210526315789,78.4210526315789,1,99.3011995922519,0.801747750097822,78.4210526315789,68.7917353610864,10
+9994,0.0946089499875119,0.934210526315789,93.4210526315789,2,99.2959754245286,0.841666666666667,92.6315789473684,107.330099164936,50
+9995,0.0603683837898069,0.765789473684211,76.578947368421,1,99.2281951915448,0.968777602037672,76.578947368421,69.3340423164499,25
+9996,-0.00682668632262472,0.260526315789474,26.0526315789474,3,90.3275787963918,0.764484785477228,20,7.05577817589346,0
+9997,0.0337454374166363,0.334210526315789,33.4210526315789,2,93.0486940902505,0.785431959345003,25.7894736842105,1.53823101614404,0
+9998,0.0486309366190414,0.392105263157895,39.2105263157895,2,95.3463935914336,0.873459873459874,36.5789473684211,0,0
+9999,0.018274527188317,0.281578947368421,28.1578947368421,1,95.2171730229585,0.949515079048758,28.1578947368421,0,0
+10000,-0.118317563747252,0,0,0,NA,NA,0,NA,NA
diff --git a/data/results/delft_flood_pattern_type_characteristics.csv b/data/results/delft_flood_pattern_type_characteristics.csv
new file mode 100644
index 00000000..7a004127
--- /dev/null
+++ b/data/results/delft_flood_pattern_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,flood_share,np_flood,flood_cohesion,flood_clumpy,flood_lpi
+Type 1,0.13098887137378537,1.9244523915958873,75.60778070044121,0.8312084941536714,10.965255393736912
+Type 2,0.6973656215005599,1.4606382978723405,98.28200360530663,0.801886702818924,67.80590005599105
+Type 3,0.1769614994076832,4.828295819935692,76.26148260998757,0.6980557781966729,10.822541885259774
+Type 4,3.4804550831886026e-4,0.1291248206599713,0.15199886807645452,0.002102366790770315,0.030380830124090714
diff --git a/data/results/delft_flood_pattern_type_cluster_centres_scaled.csv b/data/results/delft_flood_pattern_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..dcfc5dd2
--- /dev/null
+++ b/data/results/delft_flood_pattern_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,flood_share,np_flood,flood_cohesion,flood_clumpy,flood_lpi
+Type 1,-0.3213834970924188,0.006829021364074849,0.30830206318007347,0.5628649465409845,-0.31650100250580965
+Type 2,1.7875601466030542,-0.27975115700924436,0.920784763589667,0.48017183422297716,1.830966223538478
+Type 3,-0.1502011848693919,1.8010478235160277,0.3259600491891976,0.18734858158304757,-0.32189278833071533
+Type 4,-0.8078337958633924,-1.1024630473328294,-1.7299314503612762,-1.7753743967121265,-0.7296258867465311
diff --git a/data/results/delft_flood_pattern_type_elbow.csv b/data/results/delft_flood_pattern_type_elbow.csv
new file mode 100644
index 00000000..fab22306
--- /dev/null
+++ b/data/results/delft_flood_pattern_type_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,27285.52683793062
+3,13312.848215538721
+4,9429.751388109704
+5,6873.550206110062
+6,5872.732779708673
+7,5123.169258345118
+8,4406.4537065708
diff --git a/data/results/delft_green_metrics_base.gpkg b/data/results/delft_green_metrics_base.gpkg
new file mode 100644
index 00000000..77d6e8df
Binary files /dev/null and b/data/results/delft_green_metrics_base.gpkg differ
diff --git a/data/results/delft_green_type_characteristics.csv b/data/results/delft_green_type_characteristics.csv
new file mode 100644
index 00000000..f7b420a1
--- /dev/null
+++ b/data/results/delft_green_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,gyrate,contig,enn
+Type 1,14.174145118107567,0.024382785276436277,5.136043969583936,0.21245387515110123,19.660781698856706
+Type 2,79.297813999543,0.7594717800289436,35.69726732840829,0.8551376527297989,0.8510084295868046
+Type 3,47.17251158419304,0.1753277936130407,16.265532706536174,0.5101631886235661,12.501611759414981
+Type 4,0.31311916052396827,0.0018165219704106333,0.6324402754830685,0.028472633515744337,0.8567779869985291
diff --git a/data/results/delft_green_type_cluster_centres_scaled.csv b/data/results/delft_green_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..0fb7c56e
--- /dev/null
+++ b/data/results/delft_green_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,gyrate,contig,enn
+Type 1,-0.3557080347896739,-0.4031716198505963,-0.3781978578791507,-0.2918636808415767,0.5672620415405437
+Type 2,2.1249082495986373,3.2074122720698703,2.6778639584700272,2.214187275532004,-0.9065980081668191
+Type 3,0.9012279858607138,0.33823468544912494,0.7347289764017509,0.8690100424066164,0.006297567819456488
+Type 4,-0.883686376601302,-0.5140117866538125,-0.8285493089291476,-1.0092714988700695,-0.9061459282798306
diff --git a/data/results/delft_green_type_elbow.csv b/data/results/delft_green_type_elbow.csv
new file mode 100644
index 00000000..63e72548
--- /dev/null
+++ b/data/results/delft_green_type_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,25338.43031925034
+3,18074.34676709949
+4,13589.56625575146
+5,10216.01237154133
+6,8223.062381750357
+7,7160.643712655468
+8,6300.778944096838
diff --git a/data/results/delft_grid_metrics.csv b/data/results/delft_grid_metrics.csv
new file mode 100644
index 00000000..e8aaa521
--- /dev/null
+++ b/data/results/delft_grid_metrics.csv
@@ -0,0 +1,10001 @@
+"id","left","top","right","bottom","row_index","col_index","green_percent","area","gyrate","contig","enn","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green","elevation_mean","elevation_min","slope_mean"
+1,79743,451097.952,79843,450997.952,0,0,15,0.03,7.20239826516508,0.276666666666667,14.8752601924324,-0.0132482940851878,0.08,8,5,68.905460693053,0.644648829431438,3.75,4.51451909542084,0,0.382841487725576,0,0.304022113634044
+2,79743,450997.952,79843,450897.952,1,0,37,0.0411111111111111,7.95672336052334,0.343633362044215,11.7708892932576,0.0122060774183404,0.1075,10.75,10,59.2974498955266,0.502023031434796,2.25,3.40780648519827,0,0.464799212291837,0,0.354976996084528
+3,79743,450897.952,79843,450797.952,2,0,25,0.0227272727272727,6.42576322865657,0.297118319845593,10.8057722885206,0.0225364814764544,0.1225,12.25,6,76.0818992252151,0.701533034866368,6.75,3.56117295245735,0,0.214090327421824,-0.0854894816875458,0.469840644882581
+4,79743,450797.952,79843,450697.952,3,0,20,0.0285714285714286,6.65185122256599,0.252734427104175,10.7603536444614,-0.00453372105140062,0.005,0.5,2,0,1,0.25,8.09016990661621,5,-0.280946985352784,-0.674329340457916,0.519783214073969
+5,79743,450697.952,79843,450597.952,4,0,12.5,0.0125,4.55184809954165,0.218409090909091,12.5366310572456,0.0062092954743639,0.055,5.5,4,62.8485903840066,0.657640834111422,2.25,12.8268286098133,0,-0.674954081575076,-1.01491022109985,0.49730823008889
+6,79743,450597.952,79843,450497.952,5,0,16.25,0.0270833333333333,11.240455599412,0.298456790123457,18.3247536555313,0.0127040984360792,0.035,3.5,3,61.1205432937182,0.740932642487047,2.25,12.0250735964094,0,-0.944355241954327,-1.38952136039734,0.537398613263821
+7,79743,450497.952,79843,450397.952,6,0,8.25,0.0117857142857143,3.67884589481539,0.0967908902691511,17.0455079626296,0.00684899571966525,0.0275,2.75,3,51.9827926012797,0.520137103684661,1.25,7.18752687627619,0,-1.09526894489924,-1.49341905117035,0.531937120149986
+8,79743,450397.952,79843,450297.952,7,0,10.25,0.0205,10.3713570481942,0.187843137254902,12.9574173292382,0.00147056546918975,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-1.11134330928326,-1.50850868225098,0.534386987384714
+9,79743,450297.952,79843,450197.952,8,0,3.5,0.0116666666666667,4.94849150549063,0.205555555555556,36.7952854970775,0.00236812719536374,0.015,1.5,1,62.2896536353828,1,1.5,31.5525849660238,26.9258232116699,-1.05456719795863,-1.46924495697021,0.538844874301261
+10,79743,450197.952,79843,450097.952,9,0,8,0.01,4.05320873851053,0.173121843434343,15.9571440428193,-0.0120799146125955,0.005,0.5,1,30.8308651382582,1,0.5,25.962911605835,25,-1.0059676071008,-1.4034515619278,0.531708157606869
+11,79743,450097.952,79843,449997.952,10,0,7.5,0.0125,4.20445361918259,0.23125,16.4508026544462,0.00790768031272591,0.0625,6.25,3,73.6830947056261,0.706666666666667,4.25,6.74373466491699,0,-1.01854071766138,-1.39090478420258,0.515658459242398
+12,79743,449997.952,79843,449897.952,11,0,35.25,0.05875,6.37592439361821,0.209472934472934,12.2623138684324,0.0229201636928337,0.205,20.5,2,88.7965939829438,0.852526566905227,10.75,6.64716222809582,0,-1.04271419843038,-1.40667724609375,0.496027069115891
+13,79743,449897.952,79843,449797.952,12,0,39.75,0.1325,10.5254142201444,0.264331210191083,12.67591879244,0.0168948485527562,0.14,14,5,80.7473807855023,0.832174538479981,9.75,9.44754893439157,0,-1.01226687431335,-1.39198684692383,0.490905410084563
+14,79743,449797.952,79843,449697.952,13,0,27,0.0192857142857143,3.51098349039627,0.164517195767196,14.0334973695569,0.0224845976972892,0.125,12.5,3,86.9003876325198,0.784873949579832,11.25,0.782842712402344,0,-1.04113757610321,-1.50570011138916,0.561772012636319
+15,79743,449697.952,79843,449597.952,14,0,23,0.0176923076923077,5.19608876711404,0.218413394883983,11.8818931642278,-0.0144060538485473,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,0.588235294117647,0,-1.35834136605263,-2.05320572853088,0.795103810435835
+16,79743,449597.952,79843,449497.952,15,0,40,0.0444444444444444,6.52956609615521,0.271024685851477,13.4375559599242,-0.0240852190738224,0,0,0,NA,NA,0,NA,NA,-1.6250235637029,-2.22497057914734,0.784754278830075
+17,79743,449497.952,79843,449397.952,16,0,3.75,0.00625,2.33366192863913,0.131018518518519,22.7020546410572,-0.00257968183722369,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10,-1.67163613438606,-2.28040981292725,0.799885140010203
+18,79743,449397.952,79843,449297.952,17,0,6,0.00545454545454545,1.39940376920123,0.114357864357864,18.6442939465787,0.018433863814098,0.06,6,7,57.352048162113,0.496080627099664,2.75,9.687952597936,0,-1.68076165517171,-2.32731676101685,0.836769743459344
+19,79743,449297.952,79843,449197.952,18,0,4.5,0.0075,3.0463071606635,0.162037037037037,28.8281819902211,0.00660683532490111,0.0125,1.25,1,58.1880425789518,1,1.25,4.41421356201172,0,-1.77992056310177,-2.50736236572266,0.892905879609936
+20,79743,449197.952,79843,449097.952,19,0,22.25,0.0370833333333333,5.93230744640012,0.219919786096257,23.0240299578496,-0.0240995823496792,0.01,1,2,30.8308651382582,0.494949494949495,0.5,9.76569890975952,5,-1.93186640739441,-2.64498901367188,0.941830866246364
+21,79743,449097.952,79843,448997.952,20,0,22.75,0.0455,7.69489468423565,0.308811845431564,10.4721359549996,-0.0253473863029285,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,12.9222150530134,5,-2.05276038249334,-2.78674983978271,1.02977220559944
+22,79743,448997.952,79843,448897.952,21,0,8.75,0.0875,18.3644847390121,0.585714285714286,NA,-0.0285181098982866,0,0,0,NA,NA,0,NA,NA,-2.52165658771992,-3.5,1.32088159939801
+23,79743,448897.952,79843,448797.952,22,0,1.5,0.00375,1.76776695296637,0.0416666666666667,38.3339660850051,-0.0084293115429864,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-2.52883897225062,-3.5,1.24408121775763
+24,79743,448797.952,79843,448697.952,23,0,12.5,0.0625,10.574735865745,0.390625,29.1547594742265,0.00735359336368873,0.0025,0.25,1,0,NA,0.25,22.3606796264648,22.3606796264648,-2.42919945716858,-3.29073691368103,1.11044638952119
+25,79743,448697.952,79843,448597.952,24,0,20.75,0.0230555555555556,5.74447689748073,0.141975308641975,14.8117248035649,0.00122166137341992,0,0,0,NA,NA,0,NA,NA,-2.43611552317937,-3.2937490940094,1.12043685438063
+26,79743,448597.952,79843,448497.952,25,0,6,0.01,4.44494136484585,0.13035113035113,27.7196352308575,-0.0021234510883005,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.36334066092968,-3.24814033508301,1.12284520418071
+27,79743,448497.952,79843,448397.952,26,0,3.75,0.0075,1.97506963347324,0.126666666666667,33.4440708243615,0.00478323103581602,0.02,2,2,54.1958020619036,0.795918367346939,1.5,23.2678112983704,14.1421356201172,-2.33135322729746,-3.18770337104797,1.11066209423389
+28,79743,448397.952,79843,448297.952,27,0,24.5,0.030625,7.05328311161731,0.19546568627451,11.7695684738231,-0.00544209845888872,0.04,4,3,66.2624149457428,0.782986111111111,3.25,6.49352240562439,0,-2.40568807721138,-3.29489850997925,1.12959822422861
+29,79743,448297.952,79843,448197.952,28,0,21.25,0.0354166666666667,6.56670933246225,0.342592592592593,23.3831614109446,-0.00465437617482166,0.0425,4.25,2,72.393173884463,0.91644908616188,3.75,2.96014561372645,0,-2.4881361524264,-3.34527778625488,1.12251013739716
+30,79743,448197.952,79843,448097.952,29,0,34.25,0.0570833333333333,7.17820314927909,0.209722222222222,14.3853379374636,0.0162115760873712,0.035,3.5,3,61.1566244922223,0.481865284974093,1.75,1.07142857142857,0,-2.51637575030327,-3.35999989509583,1.11205847312075
+31,79743,448097.952,79843,447997.952,30,0,0.5,0.0025,0,0,93.407708461347,0.00441364722153594,0,0,0,NA,NA,0,NA,NA,-2.51999992132187,-3.35999989509583,1.10823955293747
+32,79743,447997.952,79843,447897.952,31,0,5.75,0.0115,5.31234671444549,0.194444444444444,17.5366310572456,0.00263595702294424,0.0275,2.75,3,56.7578274850337,0.657240788346187,2,46.5069163929332,36.4005508422852,-2.51447174946467,-3.35810089111328,1.11021373987535
+33,79743,447897.952,79843,447797.952,32,0,43.5,0.0621428571428571,11.5022840600523,0.455917961150519,11.6034535641035,-0.0152271027000643,0.04,4,3,63.8789508712094,0.652777777777778,2.25,2.94194173812866,0,-2.50281803309917,-3.34991002082825,1.11483381143644
+34,79743,447797.952,79843,447697.952,33,0,21,0.035,8.02658347992146,0.267145593869732,12.060113295833,0.0112096217666112,0.125,12.5,3,84.8484076799867,0.677310924369748,9.25,3.45432037353516,0,-2.47557133436203,-3.32822370529175,1.12261710769037
+35,79743,447697.952,79843,447597.952,34,0,2.5,0.00416666666666667,1.55095468037515,0.087962962962963,25.9698728825439,-0.00132667758054595,0,0,0,NA,NA,0,NA,NA,-2.4543991535902,-3.30785751342773,1.12535007531821
+36,79743,447597.952,79843,447497.952,35,0,1,0.00333333333333333,0.833333333333333,0.0555555555555556,32.3626391407974,-0.00955150522440817,0,0,0,NA,NA,0,NA,NA,-2.47588934501012,-3.33829045295715,1.13252183693557
+37,79743,447497.952,79843,447397.952,36,0,27.25,0.068125,15.1535390446479,0.478271828997782,18.75,-0.011334457764824,0.0625,6.25,3,70.2190284878621,0.733333333333333,4,0.8,0,-2.53630346059799,-3.42869806289673,1.15471024848917
+38,79743,447397.952,79843,447297.952,37,0,34.25,0.0685,10.2820777540755,0.389151614668856,16.2360679774998,0.0713293780795357,0.54,54,1,98.1009071848445,0.848583171101017,54,2.63011213585182,0,-2.57825591166814,-3.46452069282532,1.16721939733724
+39,79743,447297.952,79843,447197.952,38,0,47.5,0.475,33.2880601740442,0.800877192982456,NA,0.0771194066700264,0.7325,73.25,1,99.1136185490844,0.905015519785606,73.25,4.17236906839312,0,-2.50671935081482,-3.4425094127655,1.18299517162878
+40,79743,447197.952,79843,447097.952,39,0,8.75,0.00795454545454546,1.81516758394456,0.135819735819736,22.8125781610782,0.0863831855109311,0.5725,57.25,2,97.5247224405912,0.863045592122383,56,13.0868285066696,0,-2.37165429194768,-3.27481698989868,1.14502914803416
+41,79743,447097.952,79843,446997.952,40,0,22.25,0.0445,9.62184927026055,0.364925925925926,10.2360679774998,0.0240664336783811,0.23,23,3,88.6250553783568,0.825783972125436,16.5,4.20724499743918,0,-2.32261319458485,-3.27815461158752,1.28730396134799
+42,79743,446997.952,79843,446897.952,41,0,0,NA,NA,NA,NA,-0.0155816891520226,0.09,9,1,87.719298245614,0.945054945054945,9,56.1178866492377,30.4138145446777,-2.37067727247874,-3.61622595787048,1.74546225753894
+43,79743,446897.952,79843,446797.952,42,0,1,0.0025,0,0,12.8921940099542,-0.00912238526459987,0.2125,21.25,1,93.8457653779655,0.966361820666456,21.25,15.8403375513413,0,-2.72015380859375,-3.73192095756531,1.46506240839317
+44,79743,446797.952,79843,446697.952,43,0,2,0.00666666666666667,3.27770926985747,0.116666666666667,33.6765125583469,0.058534262836256,0.57,57,3,94.286775818402,0.792065663474692,38,31.0012475482205,0,-2.66845186551412,-3.69075179100037,1.31471348679022
+45,79743,446697.952,79843,446597.952,44,0,0.5,0.005,2.5,0.166666666666667,NA,0.0130707454893309,0.22,22,2,91.0169976608093,0.787685774946921,18,31.7141015963121,0,-2.53683096170425,-3.64047813415527,1.34653527324566
+46,79743,446597.952,79843,446497.952,45,0,2.75,0.00916666666666667,3.80708713860383,0.162037037037037,28.3333333333333,-0.0396978174192645,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,5.23606796264648,0,-2.37659533321857,-3.37056827545166,1.17892754535569
+47,79743,446497.952,79843,446397.952,46,0,7.5,0.025,8.23728045308686,0.233950617283951,11.1803398874989,-0.0474855381945963,0.02,2,2,53.5230890372948,0.591836734693878,1.25,2.5,0,-2.26624113321304,-3.07998943328857,1.037990932708
+48,79743,446397.952,79843,446297.952,47,0,7.5,0.015,5.73676417484039,0.173809523809524,11.1803398874989,-0.0352575736765721,0,0,0,NA,NA,0,NA,NA,-2.22693009674549,-3.00923562049866,1.0150196778455
+49,79743,446297.952,79843,446197.952,48,0,0.75,0.0075,4.31546051979576,0.166666666666667,NA,-0.0588450962654315,0,0,0,NA,NA,0,NA,NA,-2.16854657729467,-2.93775272369385,1.01354686265819
+50,79743,446197.952,79843,446097.952,49,0,0,NA,NA,NA,NA,-0.12804747890681,0,0,0,NA,NA,0,NA,NA,-2.11425824463367,-2.85459733009338,0.990300745066614
+51,79743,446097.952,79843,445997.952,50,0,0,NA,NA,NA,NA,-0.115935123246163,0,0,0,NA,NA,0,NA,NA,-2.07415044307709,-2.80607295036316,0.977034605860287
+52,79743,445997.952,79843,445897.952,51,0,0,NA,NA,NA,NA,-0.102616598290624,0,0,0,NA,NA,0,NA,NA,-1.9893653690815,-2.74384522438049,0.96772105752048
+53,79743,445897.952,79843,445797.952,52,0,5.25,0.0105,2.67790700878758,0.170238095238095,10,-0.0254504361954605,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-1.85664945840836,-2.57239890098572,0.91400618289852
+54,79743,445797.952,79843,445697.952,53,0,17,0.0121428571428571,4.08819874426013,0.221626984126984,12.6934874735886,-0.0314232621259725,0,0,0,NA,NA,0,NA,NA,-1.7186473608017,-2.42335081100464,0.819112316205137
+55,79743,445697.952,79843,445597.952,54,0,10.25,0.0170833333333333,3.32279563419567,0.294612794612795,11.1652880313901,-0.0032786851883975,0.0525,5.25,4,62.916704714492,0.670184696569921,2.75,8.2449951171875,0,-1.63406294584274,-2.21210789680481,0.757967119083299
+56,79743,445597.952,79843,445497.952,55,0,2.25,0.0045,1.64412280563537,0.075,14.3294367171337,0.0181976962237968,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,27.1935138702393,15.8113880157471,-1.58278558651606,-2.1472806930542,0.735004600853775
+57,79743,445497.952,79843,445397.952,56,0,0,NA,NA,NA,NA,0.0436469843439409,0.3375,33.75,1,96.2035477281698,0.963184537505752,33.75,34.3014850333885,7.07106781005859,-1.62390054762363,-2.27833032608032,0.780690568992117
+58,79743,445397.952,79843,445297.952,57,0,16,0.0228571428571429,7.40762959370959,0.262098335269067,10.1686199839284,-0.0389025579939334,0.0625,6.25,2,79.5813418312097,0.733333333333333,5.5,15.7718663024902,5,-1.77090704441071,-2.43123555183411,0.863687141305466
+59,79743,445297.952,79843,445197.952,58,0,0,NA,NA,NA,NA,-0.0149322366899651,0.005,0.5,2,0,1,0.25,100.588459014893,96.1769180297852,-1.90529492497444,-2.60119533538818,0.885512431540295
+60,79743,445197.952,79843,445097.952,59,0,0,NA,NA,NA,NA,0.195345680655737,0.6175,61.75,1,98.5654235476234,0.977364683247036,61.75,125.014215229977,96.0468673706055,-1.96866659323374,-2.66118264198303,0.899077163185892
+61,79743,445097.952,79843,444997.952,60,0,0.25,0.0025,0,0,NA,0.224364785321013,0.795,79.5,1,99.3602931148206,0.967479674796748,79.5,63.0620860393692,5,-1.99761717021465,-2.7288384437561,0.929185840287524
+62,79743,444997.952,79843,444897.952,61,0,0,NA,NA,NA,NA,-0.037864233909786,0.235,23.5,1,94.4060921446443,0.968876439464675,23.5,74.3676394604622,40.3112869262695,-2.01115739345551,-2.76620388031006,0.971405441719457
+63,79743,444897.952,79843,444797.952,62,0,0,NA,NA,NA,NA,0.00544988962050411,0.4,40,1,96.9413745785043,0.96031746031746,40,149.567132949829,105,-1.96954765915871,-2.74610447883606,0.984847652753624
+64,79743,444797.952,79843,444697.952,63,0,0,NA,NA,NA,NA,-0.0306721316059702,0.2425,24.25,1,94.5753035249093,0.954478206441334,24.25,179.0307340327,162.864974975586,-1.89240654309591,-2.671706199646,0.965985020963545
+65,79743,444697.952,79843,444597.952,64,0,0,NA,NA,NA,NA,-0.0229542573852086,0,0,0,NA,NA,0,NA,NA,-1.71593329310417,-2.51984858512878,0.927502830458657
+66,79743,444597.952,79843,444497.952,65,0,6,0.06,17.1233699932132,0.486111111111111,NA,-0.0332962122320896,0,0,0,NA,NA,0,NA,NA,-1.34587132930756,-2.05326008796692,0.853388522022832
+67,79743,444497.952,79843,444397.952,66,0,14.5,0.03625,8.83345746734915,0.291666666666667,10.5901699437495,-0.0789173687295988,0,0,0,NA,NA,0,NA,NA,-1.04727450013161,-1.49533975124359,0.691514948190678
+68,79743,444397.952,79843,444297.952,67,0,17,0.034,9.16177085980071,0.296581196581197,11.9442719099992,-0.153136727983383,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-0.845826629549265,-1.30953288078308,0.934355282294277
+69,79743,444297.952,79843,444197.952,68,0,27.75,0.0925,16.8174104971379,0.388249502699631,12.4535599249993,-0.0101573390924023,0.2025,20.25,3,89.978885174785,0.860675722744688,18.75,6.91841996746299,0,-0.857719381650289,-1.22525179386139,0.525984129330453
+70,79743,444197.952,79843,444097.952,69,0,18.25,0.0260714285714286,6.33136364186167,0.36708238851096,11.8419182322622,-0.0245814430491191,0.09,9,3,79.2502931851766,0.78021978021978,6.75,18.2581995328267,0,-0.8604401871562,-1.39933133125305,0.556021627636961
+71,79743,444097.952,79843,443997.952,70,0,0,NA,NA,NA,NA,-0.0145296669572781,0,0,0,NA,NA,0,NA,NA,-0.644654067854087,-1.26601505279541,0.584604087005463
+72,79743,443997.952,79843,443897.952,71,0,0,NA,NA,NA,NA,-0.0106300566221739,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,171.031489054362,155.72412109375,-0.44489636644721,-0.871937274932861,0.439086318713378
+73,79743,443897.952,79843,443797.952,72,0,0,NA,NA,NA,NA,-0.0124921362940222,0,0,0,NA,NA,0,NA,NA,-0.342248732844989,-0.62669563293457,0.240549377792819
+74,79743,443797.952,79843,443697.952,73,0,0,NA,NA,NA,NA,-0.019902125241133,0,0,0,NA,NA,0,NA,NA,-0.40558092854917,-1.01472342014313,0.442757197119157
+75,79743,443697.952,79843,443597.952,74,0,13.25,0.1325,30.0358275997294,0.449685534591195,NA,-0.0180550002633754,0,0,0,NA,NA,0,NA,NA,-0.953820198774338,-1.80573570728302,0.926466694492026
+76,79743,443597.952,79843,443497.952,75,0,1,0.01,4.34942231976673,0.291666666666667,NA,-0.0010829954050223,0,0,0,NA,NA,0,NA,NA,-1.43301585316658,-2.07695484161377,0.8002530694164
+77,79743,443497.952,79843,443397.952,76,0,0,NA,NA,NA,NA,0.0272019118310118,0.145,14.5,1,91.4414281200292,0.953216374269006,14.5,73.7716937887258,55,-1.59878222147624,-2.1893355846405,0.775505099162413
+78,79743,443397.952,79843,443297.952,77,0,0.5,0.0025,0,0,14.142135623731,0.0022107130015047,0.27,27,1,95.1342058036908,0.971900245872849,27,34.473129219479,0,-1.74734435478846,-2.41840815544128,0.867094982613541
+79,79743,443297.952,79843,443197.952,78,0,0,NA,NA,NA,NA,-0.159805011425051,0,0,0,NA,NA,0,NA,NA,-1.96076516807079,-2.7364330291748,0.961894557888749
+80,79743,443197.952,79843,443097.952,79,0,0,NA,NA,NA,NA,-0.125568979755044,0,0,0,NA,NA,0,NA,NA,-2.09238618612289,-2.80888175964355,0.949225854659189
+81,79743,443097.952,79843,442997.952,80,0,0,NA,NA,NA,NA,-0.120846571436341,0,0,0,NA,NA,0,NA,NA,-2.00147740542889,-2.77645540237427,0.98148193410111
+82,79743,442997.952,79843,442897.952,81,0,0,NA,NA,NA,NA,0.0338249138921674,0.565,56.5,1,98.2611567869712,0.90717230458405,56.5,112.152412380792,65,-1.68159919977188,-2.40601396560669,0.947674588935049
+83,79743,442897.952,79843,442797.952,82,0,0.25,0.0025,0,0,NA,0.0971191233838908,0.9525,95.25,1,99.8703629518046,0.825047383000437,95.25,40.6242396437277,0,-1.34387945383787,-2.00290131568909,0.74066548760605
+84,79743,442797.952,79843,442697.952,83,0,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,0.285588442580774,1,100,1,100,NA,100,55.3783812427521,0,-1.20185077190399,-1.69911897182465,0.615191114627191
+85,79743,442697.952,79843,442597.952,84,0,3,0.03,18.8054528245036,0.194444444444444,NA,0.227963043004274,0.8625,86.25,1,99.5959799783351,0.944227551589515,86.25,40.5454135784204,0,-1.35404051840305,-1.94262707233429,0.73331650835985
+86,79743,442597.952,79843,442497.952,85,0,10.5,0.0105,4.92021965755251,0.157222222222222,11.5366310572456,-0.0361902852584535,0.0725,7.25,2,83.1260972137714,0.885301370648621,7,7.25171464065026,0,-1.56314055124919,-2.1799042224884,0.804502842553716
+87,79743,442497.952,79843,442397.952,86,0,2.75,0.00916666666666667,3.95022272215585,0.17989417989418,20.4706427181771,0.0456274222352295,0.485,48.5,1,97.7057035934975,0.973031283710895,48.5,34.1335990551821,0,-1.77141860127449,-2.47164463996887,0.873988567487497
+88,79743,442397.952,79843,442297.952,87,0,0,NA,NA,NA,NA,0.0375847122195955,0.33,33,1,96.1011760023317,0.938068991143866,33,83.3957612875736,47.1699066162109,-1.89344676335653,-2.54559421539307,0.869894597096561
+89,79743,442297.952,79843,442197.952,88,0,0,NA,NA,NA,NA,-0.0623233358410653,0,0,0,NA,NA,0,NA,NA,-1.89610938727856,-2.53999996185303,0.851189127735793
+90,79743,442197.952,79843,442097.952,89,0,0,NA,NA,NA,NA,-0.109675797512755,0,0,0,NA,NA,0,NA,NA,-1.88458144664764,-2.54277467727661,0.857672216341527
+91,79743,442097.952,79843,441997.952,90,0,0.25,0.0025,0,0,NA,-0.0766574764379766,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,95.1725146953876,87.3212432861328,-1.89600360393524,-2.59233260154724,0.90308926827064
+92,79743,441997.952,79843,441897.952,91,0,0,NA,NA,NA,NA,0.124212148926126,0.5925,59.25,1,98.4255810267197,0.950144718802365,59.25,108.411329695947,80.6225738525391,-1.89441484212875,-2.59880042076111,0.929510357939518
+93,79743,441897.952,79843,441797.952,92,0,0,NA,NA,NA,NA,0.00690173629438505,0.3175,31.75,1,95.9225630587777,0.942914228628514,31.75,67.5495813024326,15,-1.91877617438634,-2.63071441650391,0.932644493827089
+94,79743,441797.952,79843,441697.952,93,0,2.75,0.00916666666666667,4.18254955270089,0.0864197530864197,24.0370085030933,0.00833877064320404,0.1625,16.25,1,92.2068700432412,0.936600184916127,16.25,23.3554098862868,0,-1.9185224622488,-2.62752437591553,0.912898042452667
+95,79743,441697.952,79843,441597.952,94,0,0,NA,NA,NA,NA,0.0219563468636807,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,117.466274714066,81.3941040039062,-1.78760210673014,-2.49643898010254,0.917559645712043
+96,79743,441597.952,79843,441497.952,95,0,0,NA,NA,NA,NA,-0.0143774141819449,0.0925,9.25,1,87.9580013362782,0.855484803323849,9.25,102.585119298986,80.777473449707,-1.51558367908001,-2.22598123550415,0.841130020840143
+97,79743,441497.952,79843,441397.952,96,0,13,0.0144444444444444,4.94285950965597,0.280092592592593,12.6156688513885,-0.0404215954735264,0,0,0,NA,NA,0,NA,NA,-1.1486888229847,-1.88427412509918,0.821716805292646
+98,79743,441397.952,79843,441297.952,97,0,28.75,0.0575,13.0235858505135,0.321097883597884,14.5563958950826,-0.00241690580641716,0.1025,10.25,4,78.9560931545028,0.757781276492673,7.25,11.0152659997707,0,-1.21804054826498,-2.0041823387146,0.890406827161699
+99,79743,441297.952,79843,441197.952,98,0,54.25,0.5425,31.9098194005097,0.83026113671275,NA,-0.0450096403535281,0.055,5.5,2,76.4902019111937,0.844382197323374,4.75,8.3390815041282,0,-1.78632114330928,-2.69042181968689,1.10073621119064
+100,79743,441197.952,79843,441097.952,99,0,0.263157894736842,0.0025,0,0,NA,-0.0176357661581096,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,24.7262778074845,15,-2.0078350007534,-2.90971708297729,1.10605860928495
+101,79843,451097.952,79943,450997.952,0,1,7.5,0.015,4.82576099365331,0.196825396825397,17.3137552079634,0.00858032840825217,0.1225,12.25,6,77.9787993592683,0.647266313932981,7.5,14.6405956112609,0,0.626802388164732,0.411928236484528,0.343969447597067
+102,79843,450997.952,79943,450897.952,1,1,21.5,0.0215,5.63885060637809,0.273243036033734,15.4312116666264,0.0162892683787504,0.0975,9.75,7,69.9158297229616,0.659066695077775,5.5,4.14109782683544,0,1.00123685598373,0.760254859924316,0.339256837502261
+103,79843,450897.952,79943,450797.952,2,1,25.75,0.0234090909090909,5.37750192643856,0.251155666945141,17.1099247197443,0.00991780264846966,0.1075,10.75,3,80.843864091981,0.766573295985061,7.25,3.03825467131859,0,1.01553357309765,0.693113148212433,0.478681383608442
+104,79843,450797.952,79943,450697.952,3,1,35.25,0.05875,5.06114064494783,0.187123169681309,11.6666666666667,0.00416598913148846,0.0475,4.75,2,78.0010569187133,0.710381029957462,4.5,3.50014817087274,0,0.369351390438775,-0.35249799489975,0.760574313099002
+105,79843,450697.952,79943,450597.952,4,1,3,0.005,2.27019810034111,0.115740740740741,19.9162457805097,0.0186945541408932,0.045,4.5,6,52.4592539595781,0.495830909443475,2.25,15.0359932581584,0,-0.518098952869574,-0.920243620872498,0.666144709613522
+106,79843,450597.952,79943,450497.952,5,1,3.25,0.00541666666666667,1.94897980416731,0.12037037037037,29.3718427093628,0.00840696156198987,0.0175,1.75,5,20.6476234428033,0.236641221374046,0.75,13.1671273367746,5,-1.01995890835921,-1.32122874259949,0.474448342129825
+107,79843,450497.952,79943,450397.952,6,1,8.75,0.00795454545454545,2.47169259094464,0.112121212121212,15.4945971826788,-0.000239072048207163,0.0025,0.25,1,0,NA,0.25,10,10,-1.28850281238556,-1.42852175235748,0.272264458480323
+108,79843,450397.952,79943,450297.952,7,1,3.25,0.01625,9.15592305450533,0.212962962962963,11.1803398874989,-0.00018214629277054,0.01,1,2,34.5233986084855,0.494949494949495,0.75,50.7072992324829,46.0977210998535,-1.3239971101284,-1.43247640132904,0.187882748732071
+109,79843,450297.952,79943,450197.952,8,1,7.75,0.019375,6.48524011084182,0.34093567251462,14.4290047085813,-0.00582569155842066,0.005,0.5,2,0,1,0.25,13.0901699066162,11.1803398132324,-1.23694337738885,-1.3423730134964,0.14820810273663
+110,79843,450197.952,79943,450097.952,9,1,6,0.015,7.01077112259654,0.233506944444444,11.1803398874989,-0.0113669183860543,0,0,0,NA,NA,0,NA,NA,-1.14165405432383,-1.22784745693207,0.12264490168299
+111,79843,450097.952,79943,449997.952,10,1,18.25,0.0304166666666667,9.93996529537016,0.233213545713546,13.9827264536374,0.0188392993279717,0.205,20.5,1,93.6387867289635,0.930600737367166,20.5,11.1857073016283,0,-1.15863717595736,-1.29024600982666,0.153043499950598
+112,79843,449997.952,79943,449897.952,11,1,3.5,0.007,3.02212733508472,0.161111111111111,17.1622776601684,0.0057854063465129,0.0275,2.75,6,33.3589644488846,0.383033419023136,1.25,22.7578183954412,0,-1.22701625029246,-1.34263432025909,0.173925831057893
+113,79843,449897.952,79943,449797.952,12,1,13.5,0.0225,4.4308795842092,0.279115226337449,23.6764469265265,-0.00287852343848499,0.0075,0.75,1,44.4894453484604,1,0.75,5,5,-1.32400876283646,-1.3913791179657,0.116328749293346
+114,79843,449797.952,79943,449697.952,13,1,17.5,0.0159090909090909,5.46440489043164,0.256382451970687,12.6046195786191,0.0160036967168026,0.0675,6.75,4,66.6983312008518,0.65085105056425,2.5,6.36511682581019,0,-1.47188023726145,-1.62119543552399,0.170787814948231
+115,79843,449697.952,79943,449597.952,14,1,59.25,0.0846428571428571,7.27737145115906,0.322499565326175,11.484062307474,0.0168538960852902,0.2275,22.75,4,86.1244968159939,0.776259538934836,12.75,3.05572920579177,0,-1.84474883476893,-2.01561689376831,0.228866152440598
+116,79843,449597.952,79943,449497.952,15,1,5.75,0.0071875,2.57783836282476,0.172470238095238,12.3200630285197,0.00280849765968696,0.05,5,1,81.7256002368443,0.864176570458404,5,7.32678394317627,0,-2.10228315989176,-2.1602520942688,0.0822897297546014
+117,79843,449497.952,79943,449397.952,16,1,9,0.01,3.92128249716793,0.21043771043771,15.2343449850571,0.0136794926700168,0.0875,8.75,2,81.0754154020223,0.773264052905054,5.75,5.97768096923828,0,-2.07131908337275,-2.15828704833984,0.104653171884095
+118,79843,449397.952,79943,449297.952,17,1,17.75,0.0253571428571429,5.7143668859419,0.246296296296296,10.8430999196421,0.0116622473771065,0.065,6.5,5,67.2619658834722,0.686970131733403,3,13.5927666884202,0,-2.04483384556241,-2.1176483631134,0.107916132471129
+119,79843,449297.952,79943,449197.952,18,1,9.25,0.00770833333333333,2.22741296630392,0.112503237503237,17.8616486668418,0.0103004249626974,0.0175,1.75,5,18.0603026582958,0.236641221374046,0.5,13.0332409994943,7.07106781005859,-2.20020075639089,-2.36106896400452,0.167005756916914
+120,79843,449197.952,79943,449097.952,19,1,2.5,0.00625,1.73017771823568,0.0892857142857143,30.0768758968805,0.0105945329502219,0.0175,1.75,2,51.615396620588,0.618320610687023,1.25,11.8579472133092,10,-2.48919349246555,-2.60472822189331,0.18923512844558
+121,79843,449097.952,79943,448997.952,20,1,16,0.08,12.1087764491721,0.308201058201058,10,-0.0129133047929645,0.0175,1.75,3,38.8779033563773,0.491094147582697,0.75,14.5356273651123,5,-2.79854700300429,-3.13671040534973,0.41928568081713
+122,79843,448997.952,79943,448897.952,21,1,15.25,0.07625,9.41371902336136,0.545498084291188,11.1803398874989,-0.03197039804734,0,0,0,NA,NA,0,NA,NA,-3.4002125064532,-3.5,0.270487337537706
+123,79843,448897.952,79943,448797.952,22,1,23,0.115,13.6112313949564,0.323260073260073,69.462219947249,-0.0282253083403157,0.0025,0.25,1,0,NA,0.25,28.2842712402344,28.2842712402344,-3.26647520065308,-3.40781474113464,0.0909921141986165
+124,79843,448797.952,79943,448697.952,23,1,4.25,0.00472222222222222,1.98236244313151,0.0864197530864197,12.3582416609694,0.0028916175876202,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10,-3.3131653269132,-3.34714841842651,0.0461429892657597
+125,79843,448697.952,79943,448597.952,24,1,13.25,0.0441666666666667,6.095069530145,0.213507625272331,34.3835763545577,0.00312378760027059,0.01,1,2,34.5233986084855,0.494949494949495,0.75,18.8553247451782,11.1803398132324,-3.32855402098762,-3.34896779060364,0.0371200906421637
+126,79843,448597.952,79943,448497.952,25,1,19.5,0.0325,9.6150774550211,0.221771284271284,13.4958640941704,-0.0062580292883149,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,24.8632423400879,11.1803398132324,-3.28729625542959,-3.32803535461426,0.0640055250047025
+127,79843,448497.952,79943,448397.952,26,1,5.75,0.0071875,2.0885860235182,0.0989583333333333,14.7827974015616,-0.00183542142533042,0.015,1.5,2,45.0766242787986,0.709934735315446,1,9.49862130482992,0,-3.26429422696431,-3.30028223991394,0.072617079632438
+128,79843,448397.952,79943,448297.952,27,1,22,0.044,11.3013021329758,0.325911577437001,11.7726990347453,-0.00587989649911833,0.04,4,2,74.2500702543702,0.826388888888889,3.75,3.82582521438599,0,-3.30730319023132,-3.33852314949036,0.04961989055286
+129,79843,448297.952,79943,448197.952,28,1,16.75,0.0558333333333333,19.6554186614011,0.442219817219817,29.0893734117895,0.0184037301227727,0.1125,11.25,2,86.7611807060954,0.851742031134173,10.5,3.20315856933594,0,-3.3469352722168,-3.35670971870422,0.018845411499639
+130,79843,448197.952,79943,448097.952,29,1,20.5,0.025625,6.75746519443369,0.365083678398896,17.3333957054755,0.00210240829188479,0.07,7,3,73.1877269694959,0.7610513739546,4.5,3.41589110238212,0,-3.35964506864548,-3.35999989509583,0.00265525481450001
+131,79843,448097.952,79943,447997.952,30,1,26.25,0.0875,9.30133855450589,0.287581699346405,24.7939978446421,-0.00271099435377664,0.0775,7.75,3,75.0508813194549,0.78319783197832,4.25,5.13536293275895,0,-3.35877927144369,-3.35999989509583,0.00472987328398039
+132,79843,447997.952,79943,447897.952,31,1,9.5,0.00863636363636364,4.65821496026865,0.117340992340992,12.009229444605,-0.00173996450943378,0.025,2.5,3,55.0674816235405,0.763313609467456,2,19.2121528625488,7.07106781005859,-3.34859448009067,-3.35824203491211,0.0162624878526907
+133,79843,447897.952,79943,447797.952,32,1,5.25,0.00875,3.68675468798921,0.180555555555556,24.3853379374636,-0.00146727906902925,0,0,0,NA,NA,0,NA,NA,-3.31044868628184,-3.34016394615173,0.0493790851971115
+134,79843,447797.952,79943,447697.952,33,1,20.5,0.041,9.89838106174723,0.226328502415459,15.556349186104,0.016698347538495,0.22,22,2,91.7231152388375,0.853013228809407,19.75,4.83943182771856,0,-3.22433728641934,-3.27948880195618,0.0955639164050104
+135,79843,447697.952,79943,447597.952,34,1,1.5,0.0075,3.53607231864961,0.0666666666666667,80.6225774829855,0.00710082657904422,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,54.549498966762,49.4974746704102,-3.15455079078674,-3.21571326255798,0.10560101711978
+136,79843,447597.952,79943,447497.952,35,1,1.5,0.003,0.5,0.0333333333333333,40.5585434887297,-0.0181610356340752,0,0,0,NA,NA,0,NA,NA,-3.21124243736267,-3.27369523048401,0.0995511590943765
+137,79843,447497.952,79943,447397.952,36,1,12.75,0.031875,7.91747994195909,0.203409090909091,41.3669822088613,-0.0276954737565211,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,10.2548650105794,0,-3.33906573057175,-3.38594770431519,0.0597298729822882
+138,79843,447397.952,79943,447297.952,37,1,40.5,0.10125,12.1778111106055,0.385153482880756,15.7139443357405,0.0976534342385276,0.6725,67.25,1,98.8451498857927,0.836747033481974,67.25,3.64808579625693,0,-3.37428964508904,-3.39854335784912,0.0440664174632117
+139,79843,447297.952,79943,447197.952,38,1,15.25,0.0169444444444444,4.61982442089726,0.154320987654321,16.2544595099792,0.0443294300101843,0.38,38,3,95.3933272171149,0.895941727367326,36.75,13.6075503198724,0,-3.25202399492264,-3.34684872627258,0.100957882642753
+140,79843,447197.952,79943,447097.952,39,1,3,0.0075,2.71977611914388,0.142361111111111,21.3025680572166,-0.0949810328191597,0.06,6,2,81.1979054936838,0.776035834266517,5.75,10.2086706161499,0,-3.06432225969103,-3.15466451644897,0.149914269216227
+141,79843,447097.952,79943,446997.952,40,1,0,NA,NA,NA,NA,-0.0393613302191443,0.0025,0.25,1,0,NA,0.25,32.0156211853027,32.0156211853027,-2.71569712956746,-2.92132830619812,0.409737738221907
+142,79843,446997.952,79943,446897.952,41,1,0,NA,NA,NA,NA,-0.0240506623149849,0,0,0,NA,NA,0,NA,NA,-1.93811723921034,-2.29524827003479,0.621161475902934
+143,79843,446897.952,79943,446797.952,42,1,0,NA,NA,NA,NA,-0.0267506836168468,0,0,0,NA,NA,0,NA,NA,-2.4552582403024,-3.61572790145874,1.26552705142566
+144,79843,446797.952,79943,446697.952,43,1,0,NA,NA,NA,NA,-0.0286467191178235,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,63.1992017957899,60,-3.40119981765747,-3.7406017780304,0.821361548923161
+145,79843,446697.952,79943,446597.952,44,1,0,NA,NA,NA,NA,-0.00206935487891315,0.0625,6.25,4,65.0532184749907,0.653333333333333,2.75,31.5667636108398,5,-3.7731413046519,-3.8170120716095,0.221134658598295
+146,79843,446597.952,79943,446497.952,45,1,17.75,0.0355,7.19600433232325,0.197995337995338,12.9442719099992,0.0398025485155176,0.535,53.5,4,96.8048485973541,0.951369751985735,52.75,27.9762720660629,0,-3.36953008174896,-3.67034792900085,0.276596749987066
+147,79843,446497.952,79943,446397.952,46,1,0,NA,NA,NA,NA,0.00306273623195011,0.3525,35.25,1,96.3984008308788,0.952111580018557,35.25,86.3699728512595,35.355339050293,-3.0648369524214,-3.11385869979858,0.090073207724967
+148,79843,446397.952,79943,446297.952,47,1,0,NA,NA,NA,NA,-0.0580854818707303,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,125.625579833984,122.983741760254,-2.92901021242142,-2.99930763244629,0.113483438893445
+149,79843,446297.952,79943,446197.952,48,1,9.5,0.02375,6.11091658564132,0.16540404040404,11.1803398874989,-0.0575542663548913,0,0,0,NA,NA,0,NA,NA,-2.70608117845323,-2.89216947555542,0.300834637678104
+150,79843,446197.952,79943,446097.952,49,1,11.25,0.05625,13.6387252232331,0.21780303030303,10,-0.0974067480722442,0,0,0,NA,NA,0,NA,NA,-2.54632709423701,-2.7395966053009,0.362250792752885
+151,79843,446097.952,79943,445997.952,50,1,3,0.03,9.29877185081838,0.375,NA,-0.123778561614454,0,0,0,NA,NA,0,NA,NA,-2.48919343948364,-2.66857862472534,0.378196631076008
+152,79843,445997.952,79943,445897.952,51,1,6.5,0.0325,8.62554000943387,0.549603174603175,29.1547594742265,-0.0535409132485504,0.105,10.5,1,89.0207000039903,0.889841844362263,10.5,27.3094382513137,7.07106781005859,-2.30637708306313,-2.61012506484985,0.467976273984497
+153,79843,445897.952,79943,445797.952,52,1,10.25,0.0146428571428571,4.19719849249019,0.228571428571429,20.9694358390583,-0.0212663433360649,0.03,3,2,62.8738722138861,0.696785930867192,2,3.18761730194092,0,-2.19047933154636,-2.40165448188782,0.373429747986567
+154,79843,445797.952,79943,445697.952,53,1,25.5,0.0141666666666667,3.28816811386506,0.182181463760411,10.6712244069441,0.0158492759484307,0.1525,15.25,5,76.0593326855386,0.6660544331274,4.5,3.8009533491291,0,-2.17248819271723,-2.30252265930176,0.195649582229874
+155,79843,445697.952,79943,445597.952,54,1,1.75,0.0035,1.20710678118655,0.05,27.5383268833069,-0.0445944630631129,0,0,0,NA,NA,0,NA,NA,-2.07247528764937,-2.16502833366394,0.133490780294483
+156,79843,445597.952,79943,445497.952,55,1,0,NA,NA,NA,NA,-0.0200314061585232,0,0,0,NA,NA,0,NA,NA,-2.04004271825155,-2.08634066581726,0.06659293345824
+157,79843,445497.952,79943,445397.952,56,1,9.25,0.00711538461538462,2.65822983510339,0.177884615384615,11.2641882529486,-0.0223425114677372,0.065,6.5,1,84.6193541959806,0.97391417764445,6.5,15.3136094900278,7.07106781005859,-2.12814772129059,-2.22644639015198,0.104579309787205
+158,79843,445397.952,79943,445297.952,57,1,15.25,0.0217857142857143,5.69238438756506,0.292030192030192,15.9380222311289,-0.063027659460422,0.0175,1.75,1,65.4774238937655,1,1.75,2.14285714285714,0,-2.35531128777398,-2.44222927093506,0.135360499624351
+159,79843,445297.952,79943,445197.952,58,1,4.25,0.0141666666666667,4.2614670880767,0.301851851851852,22.4754689570643,-0.0166982039688446,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,20.8489393506731,7.07106781005859,-2.51949546734492,-2.58644151687622,0.0775445470055924
+160,79843,445197.952,79943,445097.952,59,1,0,NA,NA,NA,NA,0.32282032331801,0.9425,94.25,1,99.8418294460568,0.975676497415628,94.25,73.7559671832016,11.1803398132324,-2.6202945444319,-2.67344164848328,0.0780816308298546
+161,79843,445097.952,79943,444997.952,60,1,0.25,0.0025,0,0,NA,0.169778848822989,0.64,64,2,97.5493950496681,0.936342592592593,61.75,46.9983425587416,5,-2.71438384056091,-2.75492238998413,0.0573394874491467
+162,79843,444997.952,79943,444897.952,61,1,0,NA,NA,NA,NA,-0.133990289862268,0,0,0,NA,NA,0,NA,NA,-2.77503289116753,-2.79035615921021,0.0337935532131787
+163,79843,444897.952,79943,444797.952,62,1,0,NA,NA,NA,NA,-0.0983971456161817,0,0,0,NA,NA,0,NA,NA,-2.7476821343104,-2.77610492706299,0.0341234547193648
+164,79843,444797.952,79943,444697.952,63,1,0,NA,NA,NA,NA,-0.0711596926694619,0,0,0,NA,NA,0,NA,NA,-2.65991022851732,-2.70354056358337,0.0848022606469891
+165,79843,444697.952,79943,444597.952,64,1,0,NA,NA,NA,NA,-0.0210041407997778,0,0,0,NA,NA,0,NA,NA,-2.40588790178299,-2.56842422485352,0.227576465195081
+166,79843,444597.952,79943,444497.952,65,1,0,NA,NA,NA,NA,-0.0310433412832208,0,0,0,NA,NA,0,NA,NA,-1.81197730700175,-2.03702783584595,0.411800650742397
+167,79843,444497.952,79943,444397.952,66,1,0,NA,NA,NA,NA,-0.0770323679991998,0,0,0,NA,NA,0,NA,NA,-1.02968138125208,-1.46245074272156,0.954214497771829
+168,79843,444397.952,79943,444297.952,67,1,0,NA,NA,NA,NA,-0.0940835686246282,0.11,11,1,89.3941397590651,1,11,58.4599131670865,41.2310562133789,0.0893218967442711,-0.748788893222809,0.899540569075756
+169,79843,444297.952,79943,444197.952,68,1,43.5,0.435,30.0251357064745,0.779693486590038,NA,0.0219604046801942,0.35,35,5,91.3988605905819,0.801682692307692,28,18.1166482244219,0,-0.808961146407657,-0.950310289859772,0.32160502492907
+170,79843,444197.952,79943,444097.952,69,1,33.5,0.08375,9.35977237783575,0.339516129032258,20.4056941504209,0.0175602459271613,0.2075,20.75,5,82.8664878053212,0.751067619476813,9.75,4.24646821079484,0,-0.942670082052549,-1.00239980220795,0.1615931530933
+171,79843,444097.952,79943,443997.952,70,1,0,NA,NA,NA,NA,-0.00615806954363507,0,0,0,NA,NA,0,NA,NA,-0.629282901684443,-0.995843589305878,0.430315525585545
+172,79843,443997.952,79943,443897.952,71,1,0,NA,NA,NA,NA,-0.0155797143683594,0,0,0,NA,NA,0,NA,NA,-0.298769850283861,-0.440730720758438,0.20025373936502
+173,79843,443897.952,79943,443797.952,72,1,0,NA,NA,NA,NA,-0.0124114136486469,0,0,0,NA,NA,0,NA,NA,-0.388265507088767,-0.528893828392029,0.193651134739637
+174,79843,443797.952,79943,443697.952,73,1,8.75,0.0875,21.7492987844492,0.509523809523809,NA,-0.0368243828378763,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-0.906302722791831,-1.49933218955994,0.586552858596171
+175,79843,443697.952,79943,443597.952,74,1,4.75,0.0475,12.2759813130323,0.464912280701754,NA,-0.167766462581749,0,0,0,NA,NA,0,NA,NA,-1.81585580772824,-2.0386381149292,0.3927043644147
+176,79843,443597.952,79943,443497.952,75,1,0,NA,NA,NA,NA,-0.0417672999508795,0,0,0,NA,NA,0,NA,NA,-2.12716076771418,-2.23035717010498,0.142343699579652
+177,79843,443497.952,79943,443397.952,76,1,0,NA,NA,NA,NA,-0.0171479698757412,0.0025,0.25,1,0,NA,0.25,133.135269165039,133.135269165039,-2.23601894908481,-2.30467438697815,0.0966918069827969
+178,79843,443397.952,79943,443297.952,77,1,0,NA,NA,NA,NA,-0.0487932256225031,0,0,0,NA,NA,0,NA,NA,-2.37674853536818,-2.45913314819336,0.134664003924666
+179,79843,443297.952,79943,443197.952,78,1,0,NA,NA,NA,NA,-0.0266815717737882,0,0,0,NA,NA,0,NA,NA,-2.6158139705658,-2.73227882385254,0.130306018675343
+180,79843,443197.952,79943,443097.952,79,1,0,NA,NA,NA,NA,-0.14081460403715,0,0,0,NA,NA,0,NA,NA,-2.76281097200182,-2.79993200302124,0.0831155692244115
+181,79843,443097.952,79943,442997.952,80,1,0,NA,NA,NA,NA,-0.0761957189929672,0,0,0,NA,NA,0,NA,NA,-2.65507358312607,-2.776202917099,0.139076568383207
+182,79843,442997.952,79943,442897.952,81,1,0,NA,NA,NA,NA,-0.0740746466103155,0,0,0,NA,NA,0,NA,NA,-2.32072994444105,-2.48287725448608,0.277567173205991
+183,79843,442897.952,79943,442797.952,82,1,0,NA,NA,NA,NA,0.00602514421916567,0.415,41.5,2,96.4397124552866,0.927378358750908,41,51.143269228648,20,-1.82653544346492,-2.13326358795166,0.284955533904365
+184,79843,442797.952,79943,442697.952,83,1,0,NA,NA,NA,NA,0.17673509520886,0.8775,87.75,1,99.6446261822776,0.803294811900664,87.75,103.370563344059,44.7213592529297,-1.52633492151896,-1.6313282251358,0.120506102730903
+185,79843,442697.952,79943,442597.952,84,1,0.5,0.005,2.5,0.166666666666667,NA,0.26267057065852,1,100,1,100,NA,100,54.0633878087997,0,-1.59371186296145,-1.83183813095093,0.195167928442237
+186,79843,442597.952,79943,442497.952,85,1,7,0.00636363636363636,2.23458110845299,0.118759018759019,12.4919451039705,0.0640383140374797,0.3225,32.25,3,93.47677131144,0.87438172254063,29.75,22.3224699774454,0,-1.99446352322896,-2.13965654373169,0.25268443570381
+187,79843,442497.952,79943,442397.952,86,1,11,0.0183333333333333,7.79476605995412,0.206295410242779,11.6739725102043,-0.00030181189533323,0.155,15.5,3,85.9296537317838,0.835634451019066,13.25,21.3803183647894,0,-2.31928513447444,-2.42426228523254,0.142151338701473
+188,79843,442397.952,79943,442297.952,87,1,0.25,0.0025,0,0,NA,0.11452690884762,0.85,85,3,97.6775984929639,0.813374805598756,80.75,67.7527339430416,15.8113880157471,-2.47778410381741,-2.49934935569763,0.0533973813080997
+189,79843,442297.952,79943,442197.952,88,1,0,NA,NA,NA,NA,0.0667617658008385,0.5975,59.75,1,98.4542502383879,0.955535175844484,59.75,102.567861788442,56.5685424804688,-2.49973781903585,-2.50783896446228,0.0241173878570575
+190,79843,442197.952,79943,442097.952,89,1,0,NA,NA,NA,NA,-0.0549630102451192,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,101.548982832167,95.1314926147461,-2.4743468231625,-2.49101066589355,0.0332277210750521
+191,79843,442097.952,79943,441997.952,90,1,0,NA,NA,NA,NA,-0.0908254768355255,0,0,0,NA,NA,0,NA,NA,-2.41421188248528,-2.44907879829407,0.0588303141837834
+192,79843,441997.952,79943,441897.952,91,1,0,NA,NA,NA,NA,-0.00226350333003211,0.025,2.5,2,58.1880425789518,0.763313609467456,1.25,89.981623840332,74.3303451538086,-2.36984554926554,-2.39578223228455,0.0488641927851625
+193,79843,441897.952,79943,441797.952,92,1,2.75,0.0055,2.37921587952065,0.116666666666667,13.0327592528361,0.0489951409118294,0.4875,48.75,1,97.7251065890586,0.881417598706374,48.75,24.4536670293563,0,-2.40497798389859,-2.45288109779358,0.0638748055327984
+194,79843,441797.952,79943,441697.952,93,1,0,NA,NA,NA,NA,0.0863201707226835,0.53,53,1,98.0336545290164,0.951398639161896,53,65.6520890019975,5,-2.43268106381098,-2.48274970054626,0.0898571381816789
+195,79843,441697.952,79943,441597.952,94,1,0,NA,NA,NA,NA,0.112046582499606,0.5575,55.75,1,98.2142154717639,0.94567579313342,55.75,54.2174642331932,11.1803398132324,-2.22106138865153,-2.38164401054382,0.241464639476056
+196,79843,441597.952,79943,441497.952,95,1,11.75,0.0235,6.94016169018578,0.320138888888889,15.5952415806172,0.0078767083650564,0.1425,14.25,2,88.5902869367462,0.785803534241685,12.75,9.14025226392244,0,-1.83102840185165,-2.06172609329224,0.20948920026504
+197,79843,441497.952,79943,441397.952,96,1,24.75,0.0275,6.05108598483766,0.27624515855725,15.1604387674397,0.00594593715475639,0.075,7.5,3,72.8736768642254,0.669056811913955,3.5,4.62022488911947,0,-1.62833842966292,-1.75343608856201,0.233107417957085
+198,79843,441397.952,79943,441297.952,97,1,17.5,0.0583333333333333,11.2575418633508,0.292534722222222,13.4628120507726,-0.0742328608082607,0.02,2,1,68.0470115164975,0.795918367346939,2,4.63388347625732,0,-1.95317927002907,-2.65507221221924,0.696638034333199
+199,79843,441297.952,79943,441197.952,98,1,48.5,0.485,29.9031185406923,0.891752577319588,NA,-0.0412515177523892,0.195,19.5,1,93.3444522721621,0.954991448375191,19.5,27.8122861813276,11.1803398132324,-2.80204672283596,-2.94750261306763,0.280445639320824
+200,79843,441197.952,79943,441097.952,99,1,4.21052631578947,0.04,15.2586327901966,0.385416666666667,NA,0.00645023471020977,0.18,18,4,84.9762951671943,0.807950835413866,14,42.5074349774255,0,-2.99233106772105,-3.07789254188538,0.134805678576137
+201,79943,451097.952,80043,450997.952,0,2,47.25,0.0945,9.83017789859501,0.314750957854406,10.2360679774998,0.0123922558036884,0.145,14.5,4,86.0783581021694,0.83625730994152,13,1.46551724137931,0,1.09922522306442,0.623865246772766,0.411100803513914
+202,79943,450997.952,80043,450897.952,1,2,37,0.0528571428571429,7.74537092221133,0.386625946674966,13.3630028089281,0.0372359916869937,0.3725,37.25,3,92.6801093341371,0.70228974213038,20.5,5.58693258554343,0,1.48813948780298,1.15916478633881,0.336004487789317
+203,79943,450897.952,80043,450797.952,2,2,36.75,0.0525,6.07761565736926,0.238360164141414,11.9344313803567,0.0145764669660267,0.25,25,1,94.7368421052632,0.866666666666667,25,2.60677814483643,0,1.55803621808688,1.27392184734344,0.3125172238595
+204,79943,450797.952,80043,450697.952,3,2,8.25,0.01375,4.37491129068742,0.29537037037037,17.629589345985,0.00328985613097757,0.02,2,3,46.9544081498484,0.693877551020408,1.5,18.2580187320709,14.1421356201172,1.13777507841587,0.666918754577637,0.393499502799591
+205,79943,450697.952,80043,450597.952,4,2,5.75,0.0071875,2.84607557426973,0.170138888888889,16.1832560269649,-0.000138756966680376,0.0025,0.25,1,0,NA,0.25,35,35,0.616836801171303,0.0675152540206909,0.54473384121891
+206,79943,450597.952,80043,450497.952,5,2,6.25,0.00446428571428571,1.64060272326404,0.10515873015873,11.1571303180828,0.00458778045564031,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,9.22041257222494,5,0.0508613716810942,-0.693288922309875,0.602494378924048
+207,79943,450497.952,80043,450397.952,6,2,3.75,0.009375,3.57389604682432,0.201388888888889,19.0530819615857,-0.00314745350464364,0.005,0.5,1,30.8308651382582,1,0.5,23.0553131103516,20.6155281066895,-0.454576226960247,-1.00627815723419,0.60692329968791
+208,79943,450397.952,80043,450297.952,7,2,3.75,0.0075,2.32131544600306,0.144761904761905,13.9193064834273,-0.00139290833257519,0.015,1.5,2,46.9371480234533,0.419869470630892,1,11.4942932128906,0,-0.746234886348248,-1.1011997461319,0.47642248499792
+209,79943,450297.952,80043,450197.952,8,2,6,0.015,7.29549247545062,0.236111111111111,31.4179450097438,-0.00366643144437148,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-0.898916274309158,-1.10005605220795,0.305590770892663
+210,79943,450197.952,80043,450097.952,9,2,17,0.0425,13.1033280751496,0.284375,11.1803398874989,-0.0113934956580124,0,0,0,NA,NA,0,NA,NA,-0.968291978041331,-1.06846785545349,0.157709937614365
+211,79943,450097.952,80043,449997.952,10,2,18,0.03,7.80413827708511,0.362059082892416,12.8934466291663,0.0102462709578322,0.0875,8.75,5,69.65204738413,0.697685403873406,5.5,6.26112997872489,0,-1.00572688505054,-1.04870748519897,0.0810489062630038
+212,79943,449997.952,80043,449897.952,11,2,1,0.005,2.5,0.166666666666667,41.2310562561766,0.0208014848125185,0.1325,13.25,5,78.0262550297624,0.797320834784812,8,23.2340796848513,10,-1.03167679905891,-1.06296133995056,0.0744305240293481
+213,79943,449897.952,80043,449797.952,12,2,10,0.0142857142857143,5.87116871224548,0.275793650793651,14.4923429992273,0.00909684933574681,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,16.8316993713379,0,-1.26663636416197,-1.51256358623505,0.226852442070629
+214,79943,449797.952,80043,449697.952,13,2,8.75,0.0109375,4.35748813905387,0.140046296296296,19.375,0.00153207989990733,0.03,3,1,74.8763016215986,0.878714372346877,3,22.091611067454,15,-1.72998486955961,-1.95273101329803,0.298398172428822
+215,79943,449697.952,80043,449597.952,14,2,51.25,0.170833333333333,11.3967681551577,0.305555555555556,26.0947570824873,-0.0104305763770753,0.15,15,2,90.6512323696132,0.864253393665158,14.75,2.58925565083822,0,-2.05546236038208,-2.18635869026184,0.160523699338481
+216,79943,449597.952,80043,449497.952,15,2,2.75,0.0055,2.20710678118655,0.183333333333333,35.3500635783262,0.00145273046567354,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,17.6967233022054,10,-2.12875918547312,-2.18574190139771,0.0645294226714342
+217,79943,449497.952,80043,449397.952,16,2,7,0.00583333333333333,1.83464053739854,0.108796296296296,12.111407306507,0.0326611707840044,0.21,21,7,79.6783586690955,0.711154532325206,10.25,10.4972807112194,0,-2.04213327169418,-2.13078308105469,0.0932931176727731
+218,79943,449397.952,80043,449297.952,17,2,11,0.0122222222222222,2.96040384717819,0.166887125220459,15.1903430820374,0.0121615230709358,0.055,5.5,3,73.1774035114053,0.657640834111422,4.25,15.4534360712225,7.07106781005859,-2.03306499123573,-2.15659832954407,0.120239403322468
+219,79943,449297.952,80043,449197.952,18,2,13.5,0.03375,6.73536933680072,0.31953125,25.3527129534918,-0.0072871672029396,0,0,0,NA,NA,0,NA,NA,-2.14752502739429,-2.31372737884521,0.186702072726684
+220,79943,449197.952,80043,449097.952,19,2,8.5,0.0425,10.0067110354819,0.449404761904762,55.2268050859363,-0.000809911734896218,0.01,1,1,52.6315789473684,0.747474747474748,1,18.786524772644,14.1421356201172,-2.38580548763275,-2.54513812065125,0.321289104398055
+221,79943,449097.952,80043,448997.952,20,2,12.25,0.0245,5.25628730678403,0.178571428571429,23.6262497404596,-0.0186690825008009,0.0125,1.25,1,58.1880425789518,1,1.25,7.6502815246582,5,-3.16777056455612,-3.5,0.582969573039987
+222,79943,448997.952,80043,448897.952,21,2,7.75,0.0110714285714286,2.49905969452995,0.1859410430839,25.5612780156869,-0.00447253580023244,0,0,0,NA,NA,0,NA,NA,-3.24150274693966,-3.5,0.158908078568318
+223,79943,448897.952,80043,448797.952,22,2,18.5,0.0264285714285714,7.38383121668349,0.301383192830561,17.2517172593639,-0.0129972092648654,0,0,0,NA,NA,0,NA,NA,-3.28526439269384,-3.32862567901611,0.0683577120484496
+224,79943,448797.952,80043,448697.952,23,2,32.75,0.0467857142857143,7.81260000125084,0.208225108225108,13.1367445988764,-0.0318358190494473,0,0,0,NA,NA,0,NA,NA,-3.35238143801689,-3.35999989509583,0.0192193942175353
+225,79943,448697.952,80043,448597.952,24,2,6.75,0.00613636363636364,1.60619288631712,0.0803030303030303,20.596518608762,-0.00151637717504173,0,0,0,NA,NA,0,NA,NA,-3.3543327053388,-3.35999989509583,0.00999199003071264
+226,79943,448597.952,80043,448497.952,25,2,5.75,0.0115,3.57777640062877,0.246388888888889,19.7858444539843,0.00978043751549194,0,0,0,NA,NA,0,NA,NA,-3.34401343762875,-3.34999990463257,0.0147786571737119
+227,79943,448497.952,80043,448397.952,26,2,30,0.0428571428571429,10.5387907003838,0.412947857539888,11.5207072889228,-0.0215935575878575,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,11.1002731323242,5,-3.33903994162877,-3.35506296157837,0.0229307685287332
+228,79943,448397.952,80043,448297.952,27,2,6,0.03,10.4825297175455,0.460714285714286,40,0.00448846352326655,0.01,1,3,15.8692205350002,0.242424242424242,0.5,14.1421937942505,5,-3.34768070280552,-3.35999989509583,0.0157003328379265
+229,79943,448297.952,80043,448197.952,28,2,17.25,0.0345,6.06265133888931,0.193548387096774,24.3802509959255,-0.0147147616793154,0.0025,0.25,1,0,NA,0.25,25,25,-3.35801102717718,-3.35999989509583,0.00541498359038169
+230,79943,448197.952,80043,448097.952,29,2,12.75,0.031875,12.6071999920895,0.338690476190476,16.51387818866,-0.0440459168621601,0.005,0.5,1,30.8308651382582,1,0.5,43.7206878662109,42.7200164794922,-3.35940329730511,-3.35999989509583,0.00283922292410375
+231,79943,448097.952,80043,447997.952,30,2,17.25,0.1725,19.447656463772,0.801932367149758,NA,-0.0603052601890158,0.0025,0.25,1,0,NA,0.25,0,0,-3.34481968482335,-3.35708355903625,0.0182773514016623
+232,79943,447997.952,80043,447897.952,31,2,13,0.0433333333333333,6.06785320867026,0.25,29.1842346090081,-0.0043587775456399,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-3.30253742138545,-3.34498620033264,0.0556478148972655
+233,79943,447897.952,80043,447797.952,32,2,1,0.00333333333333333,0.833333333333333,0.0555555555555556,90.0462606288666,0.0039518696196501,0.045,4.5,2,73.385208133316,0.767306573589296,3.75,31.0205691655477,15.8113880157471,-3.1911835372448,-3.30299758911133,0.109902165435321
+234,79943,447797.952,80043,447697.952,33,2,46.5,0.093,7.14645622494425,0.29,16.6386768006528,0.039762375588034,0.4725,47.25,2,97.0842304494745,0.815842924847664,46.5,2.03350178148381,0,-3.03562353054682,-3.16472768783569,0.135279703641796
+235,79943,447697.952,80043,447597.952,34,2,51,0.0728571428571429,8.48471811335947,0.313935981916277,10.3372399678568,0.0465395671112609,0.36,36,2,96.1324878704321,0.840198863636364,35.75,1.29561487833659,0,-2.96100515127182,-3.03729391098022,0.104757301110504
+236,79943,447597.952,80043,447497.952,35,2,29.25,0.02925,6.79291512924431,0.202387747336377,14.717301412218,-0.0393766088664756,0.02,2,1,68.0470115164975,0.795918367346939,2,1.25,0,-3.11986054976781,-3.21440577507019,0.143795816922793
+237,79943,447497.952,80043,447397.952,36,2,43,0.1075,12.856090386905,0.428373500101688,16.1967716615477,0.0845610651871539,0.58,58,1,98.352293007383,0.890025294182338,58,2.06190073079076,0,-3.30979970097542,-3.36969923973083,0.0806696362001269
+238,79943,447397.952,80043,447297.952,37,2,12.75,0.01275,4.29457562133205,0.178055555555556,12.8584854723723,0.0408921416894373,0.3125,31.25,7,84.7071524508876,0.724469363235883,15,8.02789854431152,0,-3.34212458133698,-3.37246513366699,0.0541020551314101
+239,79943,447297.952,80043,447197.952,38,2,6.25,0.00446428571428571,1.3072719540951,0.0476190476190476,18.8708885141157,0.0149253957102337,0.065,6.5,6,58.9821183180147,0.556541019955654,2,8.6215281853309,0,-3.31322382390499,-3.38557410240173,0.0637643256039852
+240,79943,447197.952,80043,447097.952,39,2,2,0.00333333333333333,0.833333333333333,0.0555555555555556,19.1923061730121,-0.0275421769039167,0.0575,5.75,3,70.4640532101323,0.793692897141173,4,46.1072463989258,0,-3.32999859253565,-3.47087073326111,0.170608963545034
+241,79943,447097.952,80043,446997.952,40,2,0.25,0.0025,0,0,NA,-0.0276839218998066,0.04,4,1,78.9473684210526,0.956597222222222,4,24.2414312362671,15,-3.12807084619999,-3.47013831138611,0.515870619835128
+242,79943,446997.952,80043,446897.952,41,2,0,NA,NA,NA,NA,-0.0147191324095911,0.05,5,1,81.7256002368443,0.762308998302207,5,18.1910440444946,5,-2.37736228108406,-3.38273763656616,0.889195602750855
+243,79943,446897.952,80043,446797.952,42,2,1,0.01,5,0.25,NA,-0.0224242287450409,0.035,3.5,2,69.0285060247284,0.844559585492228,3,10,0,-2.44874037057161,-3.19929599761963,0.834242946871281
+244,79943,446797.952,80043,446697.952,43,2,0,NA,NA,NA,NA,-0.020025401303883,0.0025,0.25,1,0,NA,0.25,78.2623825073242,78.2623825073242,-2.56750855843226,-3.38822031021118,1.10173093125126
+245,79943,446697.952,80043,446597.952,44,2,12.75,0.0425,8.10577806163207,0.174603174603175,26.9258240356725,-0.00139495628856821,0.0875,8.75,2,80.2658085917115,0.73547472838923,6.5,2.20203050885882,0,-3.98531190554301,-4.5,0.912317702890771
+246,79943,446597.952,80043,446497.952,45,2,6.75,0.0675,12.2890932333487,0.530864197530864,NA,-0.0293437613072456,0.165,16.5,2,88.651084012257,0.864618588909138,14.25,43.7426180984035,0,-3.31934653222561,-3.48236560821533,0.265238029995653
+247,79943,446497.952,80043,446397.952,46,2,0,NA,NA,NA,NA,-0.00158284882141743,0.405,40.5,1,96.992903144017,0.813885285657887,40.5,122.597703674693,80,-3.1527717312177,-3.20925974845886,0.0885722778565203
+248,79943,446397.952,80043,446297.952,47,2,0,NA,NA,NA,NA,0.0421679290031898,0.645,64.5,1,98.7097599330033,0.930014871839734,64.5,161.268184928007,120.830459594727,-2.9724894464016,-3.10714864730835,0.177586725783601
+249,79943,446297.952,80043,446197.952,48,2,0,NA,NA,NA,NA,-0.0781242959597148,0,0,0,NA,NA,0,NA,NA,-2.52449923753738,-2.8568696975708,0.397290270646799
+250,79943,446197.952,80043,446097.952,49,2,0,NA,NA,NA,NA,-0.0435429523023777,0,0,0,NA,NA,0,NA,NA,-1.95019722729921,-2.38111042976379,0.477625697785833
+251,79943,446097.952,80043,445997.952,50,2,12.75,0.1275,20.071880462716,0.617647058823529,NA,-0.0585476798856689,0,0,0,NA,NA,0,NA,NA,-1.43504420419534,-1.98365151882172,0.580296378834532
+252,79943,445997.952,80043,445897.952,51,2,26.25,0.13125,15.7150961453463,0.377022653721683,15,-0.0108916221275013,0.0875,8.75,3,79.7837876815672,0.792158715162966,7.25,8.24049791608538,0,-1.32571350038052,-1.9051558971405,0.46866826620479
+253,79943,445897.952,80043,445797.952,52,2,23,0.0766666666666667,11.7943426392588,0.625730994152047,25.7868932583326,0.0320016408604533,0.1175,11.75,7,73.4064100854278,0.645892351274788,6.75,15.0260196848119,0,-1.45336283246676,-1.89544665813446,0.445081133670575
+254,79943,445797.952,80043,445697.952,53,2,12.5,0.0416666666666667,11.8869323800341,0.349819331526649,11.937129433614,0.0278133069008254,0.07,7,5,63.3940169795165,0.59378733572282,2.25,19.2941654750279,0,-1.7547759115696,-1.91378939151764,0.219057416531787
+255,79943,445697.952,80043,445597.952,54,2,5.5,0.00916666666666667,3.52243940027311,0.218518518518519,18.0172053303412,0.00262447276816431,0.04,4,2,71.3827116079853,0.869791666666667,3.5,29.1402523517609,10,-1.8520861963431,-1.92306447029114,0.132747132936188
+256,79943,445597.952,80043,445497.952,55,2,8.25,0.00825,2.91684784030791,0.197380952380952,11.2893427625836,-0.0145404165204309,0,0,0,NA,NA,0,NA,NA,-1.96209077040354,-1.99508368968964,0.0591095783462108
+257,79943,445497.952,80043,445397.952,56,2,26.5,0.033125,5.25535376066826,0.21905915466962,12.7950849718747,-0.0492248243378708,0.0025,0.25,1,0,NA,0.25,0,0,-1.99335964769125,-2.17125248908997,0.132845362079365
+258,79943,445397.952,80043,445297.952,57,2,34,0.085,11.5030496225221,0.445138888888889,22.623774391991,-0.00976965571064284,0.09,9,2,84.5249616403217,0.78021978021978,8.25,2.09229098425971,0,-2.10638640324275,-2.34969091415405,0.301272962060125
+259,79943,445297.952,80043,445197.952,58,2,17.25,0.02875,5.11383596043788,0.200670498084291,27.0136732208323,0.019994614381676,0.2375,23.75,3,88.8614239713639,0.783992285438766,15.5,4.53374728152626,0,-2.32577995955944,-2.50449681282043,0.21472423760478
+260,79943,445197.952,80043,445097.952,59,2,0,NA,NA,NA,NA,0.229767833306687,0.8575,85.75,1,99.5794816088838,0.891704570067143,85.75,56.2000592568178,10,-2.50355039040248,-2.58949613571167,0.12102985611311
+261,79943,445097.952,80043,444997.952,60,2,0,NA,NA,NA,NA,0.0829195997200441,0.595,59.5,1,98.4399608047141,0.811346927451796,59.5,76.3596261930065,31.6227760314941,-2.67412838339806,-2.78089189529419,0.0956983007020846
+262,79943,444997.952,80043,444897.952,61,2,0,NA,NA,NA,NA,-0.0273137148062233,0,0,0,NA,NA,0,NA,NA,-2.78728836774826,-2.84755992889404,0.0608804112460376
+263,79943,444897.952,80043,444797.952,62,2,0,NA,NA,NA,NA,-0.0508263758280373,0.0025,0.25,1,0,NA,0.25,78.2623825073242,78.2623825073242,-2.78736448287964,-2.84477663040161,0.0562970689514596
+264,79943,444797.952,80043,444697.952,63,2,0.25,0.0025,0,0,NA,0.015838741911848,0.2775,27.75,1,95.2720210973421,0.965397923875433,27.75,62.2879931131999,25,-2.73218854268392,-2.81214809417725,0.0953707767088947
+265,79943,444697.952,80043,444597.952,64,2,0,NA,NA,NA,NA,-0.0019152658108942,0.06,6,1,83.7764057650598,0.972004479283315,6,117.475345293681,102.95630645752,-2.57180751860142,-2.776775598526,0.239835495633596
+266,79943,444597.952,80043,444497.952,65,2,0.25,0.0025,0,0,NA,-0.0480909790095575,0,0,0,NA,NA,0,NA,NA,-2.1648849149545,-2.58851456642151,0.503910287679332
+267,79943,444497.952,80043,444397.952,66,2,1.75,0.0175,5.3142531983701,0.476190476190476,NA,-0.0287119863310363,0.03,3,2,68.9081048780414,0.757428744693754,2.75,27.5098387400309,18.0277557373047,-1.37900947096447,-2.39182806015015,1.39497240996663
+268,79943,444397.952,80043,444297.952,67,2,0.25,0.0025,0,0,NA,0.001038186148362,0.225,22.5,3,92.3052389566146,0.823682628731717,21.5,53.8649072011312,7.07106781005859,-0.378770349314436,-1.93621718883514,1.31631841719178
+269,79943,444297.952,80043,444197.952,68,2,20.75,0.10375,16.7534115568155,0.404320987654321,10,0.0170553836934414,0.255,25.5,4,86.7306378341493,0.794623537609565,13.5,12.1781629300585,0,-0.806676412622134,-1.47282993793488,0.682909167974986
+270,79943,444197.952,80043,444097.952,69,2,9,0.01125,5.05243688338311,0.208199786324786,15.9586928448623,-0.00625079914039816,0.06,6,2,78.8706482445601,0.888017917133259,5.5,6.45833333333333,0,-1.28967925533652,-1.61788320541382,0.404189953265665
+271,79943,444097.952,80043,443997.952,70,2,0.5,0.0025,0,0,11.1803398874989,-0.000293883382742024,0,0,0,NA,NA,0,NA,NA,-1.51229494810104,-1.84116113185883,0.477653218091824
+272,79943,443997.952,80043,443897.952,71,2,0,NA,NA,NA,NA,-0.0186255565979809,0,0,0,NA,NA,0,NA,NA,-1.10828033089638,-1.82441437244415,0.701942646551217
+273,79943,443897.952,80043,443797.952,72,2,2.5,0.025,8.58746973512358,0.433333333333333,NA,-0.0144214264558104,0,0,0,NA,NA,0,NA,NA,-1.15789219985406,-1.86311304569244,0.757024065186353
+274,79943,443797.952,80043,443697.952,73,2,7.75,0.0775,21.7994181114475,0.548387096774194,NA,-0.0435840059578186,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.48027504814996,0,-1.73051895201206,-2.05258178710938,0.466576856912425
+275,79943,443697.952,80043,443597.952,74,2,0,NA,NA,NA,NA,-0.283951625776535,0,0,0,NA,NA,0,NA,NA,-2.02995038032532,-2.12152171134949,0.166978285771516
+276,79943,443597.952,80043,443497.952,75,2,0,NA,NA,NA,NA,-0.270508251553401,0,0,0,NA,NA,0,NA,NA,-2.1920505464077,-2.24322891235352,0.0612926587800461
+277,79943,443497.952,80043,443397.952,76,2,0.25,0.0025,0,0,NA,-0.0896436505159363,0,0,0,NA,NA,0,NA,NA,-2.27368958791097,-2.31829428672791,0.0668355710075438
+278,79943,443397.952,80043,443297.952,77,2,0,NA,NA,NA,NA,-0.0387148078135215,0,0,0,NA,NA,0,NA,NA,-2.39358073472977,-2.46964478492737,0.108442614549097
+279,79943,443297.952,80043,443197.952,78,2,0,NA,NA,NA,NA,-0.0443932327395305,0,0,0,NA,NA,0,NA,NA,-2.50729733705521,-2.64349436759949,0.137066768805682
+280,79943,443197.952,80043,443097.952,79,2,0,NA,NA,NA,NA,-0.0308165054959682,0,0,0,NA,NA,0,NA,NA,-2.52228864034017,-2.64924621582031,0.162959310649188
+281,79943,443097.952,80043,442997.952,80,2,0,NA,NA,NA,NA,-0.0227871428316212,0,0,0,NA,NA,0,NA,NA,-2.48060566186905,-2.62170004844666,0.123921092353182
+282,79943,442997.952,80043,442897.952,81,2,0,NA,NA,NA,NA,-0.0852089169062674,0,0,0,NA,NA,0,NA,NA,-2.39038425683975,-2.45192122459412,0.0935793926408029
+283,79943,442897.952,80043,442797.952,82,2,0,NA,NA,NA,NA,-0.180876400387933,0,0,0,NA,NA,0,NA,NA,-2.18105009198189,-2.37666320800781,0.238074309220102
+284,79943,442797.952,80043,442697.952,83,2,0,NA,NA,NA,NA,0.0116553375754302,0.16,16,4,83.6341918373823,0.766156462585034,10,142.788184165955,115.108642578125,-1.86278716723124,-2.15636205673218,0.313234834741948
+285,79943,442697.952,80043,442597.952,84,2,0,NA,NA,NA,NA,0.113514509881497,0.8,80,2,99.1114513100288,0.925496688741722,79.75,71.4607417583466,25,-1.68989404290915,-1.91835570335388,0.242976599982391
+286,79943,442597.952,80043,442497.952,85,2,0.25,0.0025,0,0,NA,0.305869740042835,1,100,1,100,NA,100,40.4239600563049,0,-2.01185948650042,-2.29929709434509,0.345839157354723
+287,79943,442497.952,80043,442397.952,86,2,0,NA,NA,NA,NA,0.14710516806299,0.515,51.5,1,97.9291261653514,0.940782213130198,51.5,87.2704112969556,30.4138145446777,-2.42765164375305,-2.59855198860168,0.18403531971143
+288,79943,442397.952,80043,442297.952,87,2,3.5,0.00875,5.4469799455617,0.125,11.1803398874989,-0.0215570703699632,0.055,5.5,4,69.7290243085658,0.626517273576097,4,33.428276235407,18.0277557373047,-2.58277863264084,-2.65408635139465,0.0829900966542495
+289,79943,442297.952,80043,442197.952,88,2,1.75,0.004375,2.06239477846076,0.0486111111111111,23.9038103095635,0.0708205972755604,0.525,52.5,4,94.2313061498468,0.833086552698883,46.75,56.2921366282872,7.07106781005859,-2.58061024546623,-2.65012955665588,0.0643171146410601
+290,79943,442197.952,80043,442097.952,89,2,0.25,0.0025,0,0,NA,0.0834937397056638,0.8175,81.75,1,99.442091962007,0.973357607513154,81.75,60.1982048687949,11.1803398132324,-2.5201340119044,-2.56247115135193,0.0535094910589516
+291,79943,442097.952,80043,441997.952,90,2,0,NA,NA,NA,NA,-0.0278772206348367,0.14,14,1,91.1967767414513,0.928074802205706,14,78.2360187258039,60.2079734802246,-2.44455232222875,-2.48359346389771,0.0600746479477244
+292,79943,441997.952,80043,441897.952,91,2,3.75,0.00535714285714286,1.66071437812126,0.0535714285714286,15.1008636762348,-0.0358587811180041,0,0,0,NA,NA,0,NA,NA,-2.38212667405605,-2.39909911155701,0.0267636572930233
+293,79943,441897.952,80043,441797.952,92,2,1.25,0.0025,0,0,10.4721359549996,-0.00601767128130632,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,11.1755295859443,0,-2.40561650196711,-2.43118262290955,0.0266549380925869
+294,79943,441797.952,80043,441697.952,93,2,0,NA,NA,NA,NA,-0.0539760064620009,0.0075,0.75,1,44.4894453484604,1,0.75,57.1000061035156,54.0832710266113,-2.34014025330544,-2.42014575004578,0.127926872182395
+295,79943,441697.952,80043,441597.952,94,2,9.5,0.02375,3.68688196683948,0.179761904761905,19.0652595972711,-0.0054972273184103,0.21,21,1,93.778005777053,0.940531815478719,21,14.6664778845651,0,-1.8972347676754,-2.21373224258423,0.365574653179282
+296,79943,441597.952,80043,441497.952,95,2,20.5,0.0205,4.68133835658173,0.245624657909141,15.7404057339482,-0.000700597110231911,0.07,7,5,63.2623683540652,0.6415770609319,3.25,2.08040741511754,0,-1.55318426340818,-1.87795543670654,0.259400686397033
+297,79943,441497.952,80043,441397.952,96,2,35.25,0.1175,14.9929630892132,0.385074443213978,13.4628120507726,-0.0343789217880476,0.135,13.5,1,90.9386564749522,0.850829759462987,13.5,0.648148148148148,0,-1.84432479739189,-2.24683427810669,0.356539390225553
+298,79943,441397.952,80043,441297.952,97,2,9.5,0.0475,11.102534179145,0.524509803921569,91.2414379544733,-0.0923362600943074,0,0,0,NA,NA,0,NA,NA,-2.51009548455477,-2.86103224754333,0.439329110359539
+299,79943,441297.952,80043,441197.952,98,2,39.75,0.3975,28.2029556296915,0.880503144654088,NA,-0.00682977990873042,0.3675,36.75,1,96.5811989595545,0.976490294899863,36.75,35.3655529541223,15,-2.93909039100011,-2.99795985221863,0.121627319280241
+300,79943,441197.952,80043,441097.952,99,2,13.1578947368421,0.0625,11.9870177268008,0.25,10,0.0192002867673,0.26,26,2,91.0391062034469,0.869923399335164,18.5,21.1851830482483,0,-3.04542692005634,-3.08654379844666,0.0422942739787672
+301,80043,451097.952,80143,450997.952,0,3,41.25,0.0515625,8.11453825713594,0.405830439814815,10.2950849718747,0.0311412530858433,0.32,32,3,93.9457408877403,0.848523100227216,30.25,1.56527608633041,0,1.67810983128018,1.37653183937073,0.579500080904429
+302,80043,450997.952,80143,450897.952,1,3,90.5,0.301666666666667,15.1876801303748,0.484478698351531,10,0.0293001675412233,0.465,46.5,1,97.5448886830867,0.858726363833949,46.5,0.683177783925046,0,1.78532129526138,1.30555236339569,0.426096816107932
+303,80043,450897.952,80143,450797.952,2,3,66,0.33,19.1785315361831,0.467875318066158,10,-2.95734730025288e-05,0.0625,6.25,1,84.2105263157895,0.946666666666667,6.25,0.2,0,1.53487916787465,1.11238479614258,0.587092202420158
+304,80043,450797.952,80143,450697.952,3,3,24.5,0.0816666666666667,12.1646512839816,0.425523349436393,22.5594297854412,0.014718141548783,0.04,4,7,38.7871402570056,0.392361111111111,1.25,12.5754704475403,0,1.00094248354435,0.578945279121399,0.529990949701594
+305,80043,450697.952,80143,450597.952,4,3,20,0.0333333333333333,4.57430244309698,0.156635802469136,17.9485755136919,-0.00633828042158712,0.0075,0.75,1,44.4894453484604,1,0.75,12.167605082194,11.1803398132324,0.6261391904619,0.41902369260788,0.33557783349533
+306,80043,450597.952,80143,450497.952,5,3,8.75,0.00875,2.60118167535582,0.160833333333333,18.3621718164082,-0.0281340512330803,0.0075,0.75,1,44.4894453484604,1,0.75,9.41713587443034,7.07106781005859,0.408008724451065,0.291711241006851,0.19291479818787
+307,80043,450497.952,80143,450397.952,6,3,5.75,0.00522727272727273,2.02776986596932,0.106060606060606,12.400049949673,-0.0215142426010425,0,0,0,NA,NA,0,NA,NA,0.253830467661222,0.144588485360146,0.166252562005644
+308,80043,450397.952,80143,450297.952,7,3,12.25,0.00816666666666667,2.98143795824515,0.15,11.7562757434453,0.00779376213798969,0.07,7,4,69.8464961377848,0.66547192353644,3.75,4.92959124701364,0,0.0761460124825438,-0.204114571213722,0.304946902325879
+309,80043,450297.952,80143,450197.952,8,3,5.5,0.005,1.65143981809305,0.0984848484848485,12.6798685404223,-0.00452699153288449,0.01,1,3,15.8692205350002,0.242424242424242,0.5,11.9018139839172,0,-0.212893262712492,-0.546210408210754,0.419983231889715
+310,80043,450197.952,80143,450097.952,9,3,4,0.00444444444444444,1.11954691761878,0.108024691358025,19.7925661808014,-0.00423596224722132,0.0225,2.25,5,30.2509337271146,0.403239556692242,1,10.4104270935059,0,-0.464430691467391,-0.755957543849945,0.445131584940499
+311,80043,450097.952,80143,449997.952,10,3,16,0.02,6.09385907479249,0.26220100308642,15.0054793826532,-0.0030682654019779,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0,-0.675274528563023,-0.897367238998413,0.375687589290427
+312,80043,449997.952,80143,449897.952,11,3,5,0.00625,1.62240312843307,0.0798611111111111,25.6619013918055,0.00103706352676454,0.0075,0.75,1,44.4894453484604,1,0.75,34.9839566548665,33.5410194396973,-0.906037694878048,-1.0664267539978,0.281828523300101
+313,80043,449897.952,80143,449797.952,12,3,15.5,0.0258333333333333,10.1869937248515,0.245952807646356,13.1903559372885,0.00159594450655277,0.0025,0.25,1,0,NA,0.25,30,30,-1.34307899077733,-1.61838519573212,0.33095414795303
+314,80043,449797.952,80143,449697.952,13,3,10.75,0.05375,22.771547483164,0.397463768115942,80,-0.00317339325512194,0,0,0,NA,NA,0,NA,NA,-1.90014394124349,-2.07444477081299,0.279522764640016
+315,80043,449697.952,80143,449597.952,14,3,45.25,0.0754166666666667,8.19130589478403,0.30912211510371,15.94082517041,-0.0271643165243768,0.0275,2.75,2,61.172968273306,0.794344473007712,1.75,5,0,-2.18952087561289,-2.27501654624939,0.105990105220269
+316,80043,449597.952,80143,449497.952,15,3,2.5,0.00357142857142857,1.36729540169507,0.0476190476190476,16.2833509109545,0.00155295988609851,0.0125,1.25,1,58.1880425789518,0.594936708860759,1.25,15.1335750579834,7.07106781005859,-2.24857947561476,-2.2860803604126,0.072892357826072
+317,80043,449497.952,80143,449397.952,16,3,7.5,0.00833333333333333,2.77051882486829,0.119301994301994,19.9089106750721,0.0165514152781179,0.115,11.5,5,74.6145210045704,0.666811531218311,7,12.6814904420272,0,-2.25631924470266,-2.36494445800781,0.13190047477663
+318,80043,449397.952,80143,449297.952,17,3,3,0.0075,2.57902766766765,0.135416666666667,37.6850925008975,0.00868883571436527,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,8.43446795145671,0,-2.39114141464233,-2.59116721153259,0.258206586140608
+319,80043,449297.952,80143,449197.952,18,3,1.25,0.00416666666666667,2.01184463531091,0.0833333333333333,32.2943793525407,0.00357222642861416,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,8.23862457275391,5,-2.65172626574834,-2.96481013298035,0.383793692434144
+320,80043,449197.952,80143,449097.952,19,3,17.75,0.08875,16.3656999411426,0.383169934640523,38.0788655293195,-0.0199127785953215,0,0,0,NA,NA,0,NA,NA,-2.93735859129164,-3.19109082221985,0.465485273699308
+321,80043,449097.952,80143,448997.952,20,3,7,0.00875,3.06508317271432,0.129166666666667,14.8587944722688,0.00267304032720858,0,0,0,NA,NA,0,NA,NA,-3.27527523040771,-3.5,0.210381484889169
+322,80043,448997.952,80143,448897.952,21,3,13.25,0.0441666666666667,6.48147918086636,0.277777777777778,28.2842712474619,-0.0055748754842466,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,22.5084101359049,14.1421356201172,-3.22292250394821,-3.30597352981567,0.0968491792445367
+323,80043,448897.952,80143,448797.952,22,3,9,0.0075,1.90748987782838,0.0869708994708995,14.0468559705932,0.00705057006321226,0,0,0,NA,NA,0,NA,NA,-3.32452016406589,-3.34578609466553,0.042753922660403
+324,80043,448797.952,80143,448697.952,23,3,16.25,0.0541666666666667,7.96486102751299,0.279472693032015,20.8906561721635,-0.00801941182155133,0,0,0,NA,NA,0,NA,NA,-3.34969373544057,-3.34999990463257,0.00502566295639093
+325,80043,448697.952,80143,448597.952,24,3,35.5,0.071,12.3597782452392,0.356762805184613,10.8284271247462,-0.0374014093409278,0,0,0,NA,NA,0,NA,NA,-3.34607153468662,-3.34920954704285,0.00685047416148534
+326,80043,448597.952,80143,448497.952,25,3,18,0.045,9.59968832053544,0.323601973684211,10.5901699437495,-0.0265344830307731,0,0,0,NA,NA,0,NA,NA,-3.35137049357096,-3.35843729972839,0.00532252547120831
+327,80043,448497.952,80143,448397.952,26,3,9.75,0.0139285714285714,5.37677178588714,0.226370851370851,10.3372399678568,-0.0095620920423417,0.005,0.5,1,30.8308651382582,1,0.5,19.6204795837402,18.0277557373047,-3.35981321334839,-3.35999989509583,0.00349267751989339
+328,80043,448397.952,80143,448297.952,27,3,13.75,0.0275,8.7994787997611,0.243713450292398,19.873890205991,-0.000937056659786322,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-3.35999989509583,-3.35999989509583,0.00158429076209563
+329,80043,448297.952,80143,448197.952,28,3,7.25,0.03625,14.8015415818621,0.205357142857143,29.1547594742265,0.00631933060437405,0.015,1.5,2,46.1375166841518,0.564902102973169,1,20.3453203837077,14.1421356201172,-3.35791426234775,-3.35999989509583,0.00754619377308771
+330,80043,448197.952,80143,448097.952,29,3,3.75,0.0075,2.93043284670833,0.0545454545454545,16.5343937032981,0.00907769690273199,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,28.5452098846436,11.1803398132324,-3.35539064804713,-3.35999989509583,0.0155358491734509
+331,80043,448097.952,80143,447997.952,30,3,13,0.026,7.68187688640307,0.252659932659933,12.7082039324994,0.0119357638941096,0.07,7,3,71.4720035684139,0.71326164874552,3.25,4.6017815044948,0,-3.34670922491286,-3.35650277137756,0.0196927045376165
+332,80043,447997.952,80143,447897.952,31,3,18.75,0.0375,7.40888668512252,0.193627450980392,20.2296551957852,0.0107330444176478,0.075,7.5,4,68.62691852289,0.669056811913955,2.5,2.38342717488607,0,-3.2985204855601,-3.33873271942139,0.0637381690358609
+333,80043,447897.952,80143,447797.952,32,3,2.5,0.00625,2.56863532213341,0.170833333333333,40.3480024255787,0.0128450894138223,0.1025,10.25,3,78.9390277782437,0.757781276492673,5,14.5768432617188,0,-3.15334741274516,-3.25684595108032,0.102458622953678
+334,80043,447797.952,80143,447697.952,33,3,24.25,0.0485,9.18720214900025,0.384221777999889,25.6120342247831,0.00600857767084562,0.0925,9.25,5,67.8174064731434,0.620647608725105,3.75,6.45917098586624,0,-2.98023422559102,-3.06277370452881,0.113766979438572
+335,80043,447697.952,80143,447597.952,34,3,74.25,0.1485,10.6702196615285,0.311788881678564,10.4721359549996,0.0568737370261806,0.5125,51.25,1,97.9112600445307,0.843865670637324,51.25,0.762015626488662,0,-2.85473835468292,-2.89626431465149,0.0652509015575611
+336,80043,447597.952,80143,447497.952,35,3,59,0.0655555555555556,10.1558069944728,0.402741502006208,10.6557443819439,0.0725399635603389,0.485,48.5,3,95.651657077361,0.897518878101402,44.75,1.74998698283717,0,-2.98932626512316,-3.11209034919739,0.171373260584905
+337,80043,447497.952,80143,447397.952,36,3,22,0.022,6.39671495349154,0.307573412698413,15.7666498326281,0.0576742386120168,0.4875,48.75,3,94.2344771369114,0.789785743161299,28.75,9.46537790542994,0,-3.19422276814779,-3.27568960189819,0.103747208379714
+338,80043,447397.952,80143,447297.952,37,3,15.5,0.019375,6.56170832679476,0.152999408983452,13.1940290520623,0.0260656649315388,0.1675,16.75,6,82.5427679408254,0.753599753599754,12.5,16.7953677106259,0,-3.21067158381144,-3.27160096168518,0.101841402862829
+339,80043,447297.952,80143,447197.952,38,3,2,0.00666666666666667,1.90434561458378,0.12037037037037,39.8806471286402,-0.0177757585159998,0,0,0,NA,NA,0,NA,NA,-3.36892884969711,-3.47465634346008,0.121903272632347
+340,80043,447197.952,80143,447097.952,39,3,0,NA,NA,NA,NA,-0.0160004889266656,0,0,0,NA,NA,0,NA,NA,-3.50881542099847,-3.54249930381775,0.0723055523601122
+341,80043,447097.952,80143,446997.952,40,3,0,NA,NA,NA,NA,-0.00249527337655877,0.0725,7.25,2,82.9583442133051,0.908241096518897,7,61.2551528667582,45,-3.55344521999359,-3.5816822052002,0.0713061423625736
+342,80043,446997.952,80143,446897.952,41,3,1,0.005,1.63509708815908,0.138888888888889,30,-0.0267837664528633,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,11.3542652130127,7.07106781005859,-3.53307180934482,-3.59099626541138,0.171231814674106
+343,80043,446897.952,80143,446797.952,42,3,0,NA,NA,NA,NA,-0.0374250878160819,0.0025,0.25,1,0,NA,0.25,15,15,-3.48918813467026,-3.62293291091919,0.268998281095974
+344,80043,446797.952,80143,446697.952,43,3,3.75,0.0125,4.62913789645245,0.189814814814815,15.2704627669473,-0.00683450082710806,0.0625,6.25,3,72.5001726893926,0.786666666666667,4.75,17.0239389038086,0,-3.46219870779249,-3.74581956863403,0.700514784172464
+345,80043,446697.952,80143,446597.952,44,3,14.5,0.145,28.2831748259742,0.589080459770115,NA,-0.0483384836489859,0.0025,0.25,1,0,NA,0.25,35,35,-3.95227207077874,-4.42121410369873,0.750252377748863
+346,80043,446597.952,80143,446497.952,45,3,0,NA,NA,NA,NA,-0.0755538470298052,0,0,0,NA,NA,0,NA,NA,-3.31656869252523,-3.38013100624084,0.0742786801191122
+347,80043,446497.952,80143,446397.952,46,3,0,NA,NA,NA,NA,-0.101105482159182,0,0,0,NA,NA,0,NA,NA,-3.19786479738024,-3.22979640960693,0.0622289141264115
+348,80043,446397.952,80143,446297.952,47,3,0,NA,NA,NA,NA,-0.152110358059872,0.055,5.5,1,82.8209772257252,0.906629318394024,5.5,204.654224742543,192.35383605957,-3.11488499244054,-3.20302724838257,0.106208414531466
+349,80043,446297.952,80143,446197.952,48,3,0,NA,NA,NA,NA,-0.149245310220867,0,0,0,NA,NA,0,NA,NA,-2.90461754798889,-3.02537059783936,0.199172065851739
+350,80043,446197.952,80143,446097.952,49,3,0,NA,NA,NA,NA,-0.130679193846881,0,0,0,NA,NA,0,NA,NA,-2.41894902785619,-2.7853467464447,0.549681985498537
+351,80043,446097.952,80143,445997.952,50,3,0,NA,NA,NA,NA,-0.0951640924066305,0,0,0,NA,NA,0,NA,NA,-1.31635397672653,-1.80990695953369,0.562615255020383
+352,80043,445997.952,80143,445897.952,51,3,0,NA,NA,NA,NA,-0.0466942901886068,0,0,0,NA,NA,0,NA,NA,-1.11836419006189,-1.39273297786713,0.21330192050026
+353,80043,445897.952,80143,445797.952,52,3,22.75,0.2275,25.1770937998621,0.663003663003663,NA,-0.0265484414851744,0,0,0,NA,NA,0,NA,NA,-1.48858202828301,-1.66669285297394,0.21275366734055
+354,80043,445797.952,80143,445697.952,53,3,6.75,0.03375,7.37908919121105,0.272435897435897,49.4974746830583,0.0251091208442085,0.0925,9.25,3,79.1636686905868,0.729034006232218,6.25,52.7558266923234,22.3606796264648,-1.76320866743724,-1.87941873073578,0.166082518156406
+355,80043,445697.952,80143,445597.952,54,3,1.25,0.0025,0,0,13.9589689355047,0.0160992611195979,0.02,2,2,55.2425944039245,0.693877551020408,1.5,43.5146837234497,32.0156211853027,-1.9226377275255,-1.95045793056488,0.0599306482593638
+356,80043,445597.952,80143,445497.952,55,3,0,NA,NA,NA,NA,-0.0219180196339198,0,0,0,NA,NA,0,NA,NA,-1.97954244083828,-1.98857438564301,0.0268840260445629
+357,80043,445497.952,80143,445397.952,56,3,15.25,0.0138636363636364,4.87600488658959,0.298714416896235,10.3219108784088,-0.151924661706726,0,0,0,NA,NA,0,NA,NA,-1.92485306660334,-1.99328351020813,0.147150516041423
+358,80043,445397.952,80143,445297.952,57,3,31.75,0.15875,13.3502192522395,0.377645502645503,20.6155281280883,-0.0134997879426737,0.345,34.5,3,91.0960996327497,0.854598327880771,24.75,13.8157022033913,0,-1.72195058398777,-2.00044894218445,0.359806971090505
+359,80043,445297.952,80143,445197.952,58,3,31.5,0.035,7.12891096762416,0.342133860652379,12.9469222182655,0.0509991675289348,0.465,46.5,4,94.0842808803625,0.798956748532928,39.25,5.63936804699641,0,-2.00062369306882,-2.34274220466614,0.356003407797862
+360,80043,445197.952,80143,445097.952,59,3,8.25,0.0275,7.52557524337911,0.445502645502646,14.120226591666,-0.0281024417564913,0.1875,18.75,3,88.5698020150732,0.832167832167832,16.25,24.5911411031087,0,-2.47765035099453,-2.58739995956421,0.260608274894285
+361,80043,445097.952,80143,444997.952,60,3,0,NA,NA,NA,NA,0.0015322417486459,0.08,8,3,79.5248084282746,0.686454849498328,6.25,94.3900940418243,77.6208724975586,-2.75648593902588,-2.86736035346985,0.124344934572319
+362,80043,444997.952,80143,444897.952,61,3,0,NA,NA,NA,NA,-0.0277283867392543,0,0,0,NA,NA,0,NA,NA,-2.88985620604621,-2.92089009284973,0.0500347176212249
+363,80043,444897.952,80143,444797.952,62,3,0,NA,NA,NA,NA,-0.0280805918145052,0.09,9,2,83.6124735069624,0.798534798534798,8,138.823201709323,101.118743896484,-2.8900412718455,-2.9250111579895,0.0451306020915917
+364,80043,444797.952,80143,444697.952,63,3,0,NA,NA,NA,NA,0.165414449087111,0.985,98.5,1,99.9600766120013,1,98.5,105.37322242853,65,-2.88055250379774,-2.91463708877563,0.0589678022682517
+365,80043,444697.952,80143,444597.952,64,3,0,NA,NA,NA,NA,0.0370103068393655,0.3375,33.75,2,95.3934496484126,0.932504985427213,33.25,81.7943219220197,49.2442893981934,-2.8758126894633,-2.92788195610046,0.106629327058156
+366,80043,444597.952,80143,444497.952,65,3,0.75,0.0025,0,0,17.4127682432574,-0.169124977160245,0,0,0,NA,NA,0,NA,NA,-2.80080427063836,-2.91333079338074,0.196926182408474
+367,80043,444497.952,80143,444397.952,66,3,0,NA,NA,NA,NA,-0.0739468731079251,0,0,0,NA,NA,0,NA,NA,-2.66003651089138,-2.79536437988281,0.279520277665547
+368,80043,444397.952,80143,444297.952,67,3,1.75,0.00875,3.58013717467219,0.277777777777778,11.1803398874989,-0.183555987214786,0,0,0,NA,NA,0,NA,NA,-2.27200965086619,-2.55906820297241,0.404361758971117
+369,80043,444297.952,80143,444197.952,68,3,19.75,0.1975,28.9774485217187,0.540084388185654,NA,-0.0470684578430337,0.0275,2.75,2,60.6707818475244,0.657240788346187,1.5,4.01292142001065,0,-1.81684765550825,-1.98989605903625,0.298187975291801
+370,80043,444197.952,80143,444097.952,69,3,11.25,0.0160714285714286,6.18378514375466,0.295703544575725,15.4959007815786,-0.0302697185465149,0.01,1,3,15.8692205350002,0.242424242424242,0.5,9.39154148101807,0,-1.76020580530167,-1.85640919208527,0.169889173413189
+371,80043,444097.952,80143,443997.952,70,3,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.042603906388249,0,0,0,NA,NA,0,NA,NA,-1.94833086596595,-2.00516939163208,0.12971751118148
+372,80043,443997.952,80143,443897.952,71,3,1.5,0.015,7.47023260921984,0.277777777777778,NA,0.0096104457758338,0.15,15,1,91.6737426448862,0.97737556561086,15,21.7447371164958,0,-1.99935008088748,-2.05038642883301,0.157714316224173
+373,80043,443897.952,80143,443797.952,72,3,12,0.03,8.52495565022081,0.247916666666667,12.00693909433,0.000708576716133393,0.03,3,4,48.88668404307,0.454214675560946,1.5,10.9951966603597,0,-2.04279573758443,-2.13643193244934,0.183796768471535
+374,80043,443797.952,80143,443697.952,73,3,1.75,0.00875,4.76776695296637,0.175,100,0.0176225044115563,0.06,6,5,63.7276437889433,0.664053751399776,3,29.6038329601288,5,-2.15600576003393,-2.21307516098022,0.124333592408852
+375,80043,443697.952,80143,443597.952,74,3,0,NA,NA,NA,NA,-0.00254734935268061,0.035,3.5,4,54.5128799649893,0.430051813471503,1.75,57.3257187434605,18.0277557373047,-2.15009877416823,-2.19169497489929,0.0524352057983201
+376,80043,443597.952,80143,443497.952,75,3,0,NA,NA,NA,NA,-0.20541276862903,0,0,0,NA,NA,0,NA,NA,-2.15328292051951,-2.19344615936279,0.0386315521095733
+377,80043,443497.952,80143,443397.952,76,3,0,NA,NA,NA,NA,-0.316990726785734,0,0,0,NA,NA,0,NA,NA,-2.18988344404432,-2.24558520317078,0.0687306609643004
+378,80043,443397.952,80143,443297.952,77,3,0,NA,NA,NA,NA,-0.0919538265804294,0,0,0,NA,NA,0,NA,NA,-2.21990866131253,-2.30156564712524,0.110092364513395
+379,80043,443297.952,80143,443197.952,78,3,0,NA,NA,NA,NA,-0.0312222116650082,0,0,0,NA,NA,0,NA,NA,-2.24224225680033,-2.31474351882935,0.11940872675825
+380,80043,443197.952,80143,443097.952,79,3,0,NA,NA,NA,NA,-0.0252470049640397,0,0,0,NA,NA,0,NA,NA,-2.27051772011651,-2.3176600933075,0.0874220420077945
+381,80043,443097.952,80143,442997.952,80,3,0,NA,NA,NA,NA,-0.0146861192174356,0,0,0,NA,NA,0,NA,NA,-2.33620609839757,-2.37353873252869,0.0573015779524494
+382,80043,442997.952,80143,442897.952,81,3,0,NA,NA,NA,NA,-0.0206523167159321,0,0,0,NA,NA,0,NA,NA,-2.39984016948276,-2.4170401096344,0.0252585707442268
+383,80043,442897.952,80143,442797.952,82,3,0,NA,NA,NA,NA,-0.138870568407947,0,0,0,NA,NA,0,NA,NA,-2.39020528395971,-2.41900062561035,0.064197976633492
+384,80043,442797.952,80143,442697.952,83,3,0,NA,NA,NA,NA,-0.184216127947438,0,0,0,NA,NA,0,NA,NA,-2.26304947005378,-2.36948466300964,0.17462766738254
+385,80043,442697.952,80143,442597.952,84,3,0,NA,NA,NA,NA,0.0113850806893532,0.22,22,3,89.0239183701391,0.738690184550057,14.75,116.467536059293,51.4781532287598,-2.18228042125702,-2.34620690345764,0.259170359365212
+386,80043,442597.952,80143,442497.952,85,3,0,NA,NA,NA,NA,0.0793218510329825,0.705,70.5,1,98.9948280613114,0.94243684042213,70.5,90.6214239648048,45,-2.38201416863336,-2.54867148399353,0.256594442063269
+387,80043,442497.952,80143,442397.952,86,3,0,NA,NA,NA,NA,0.329390485165641,0.92,92,1,99.7759364721822,0.964131994261118,92,138.152129131815,89.0224609375,-2.61329698562622,-2.69438982009888,0.120776537110652
+388,80043,442397.952,80143,442297.952,87,3,0,NA,NA,NA,NA,0.269280299411075,0.725,72.5,1,99.081892426161,0.966638865721435,72.5,109.435945024161,73.8241119384766,-2.68404006958008,-2.7065544128418,0.045073697319811
+389,80043,442297.952,80143,442197.952,88,3,1.75,0.004375,2.06239477846076,0.0486111111111111,12.8921940099542,-0.00788190229392058,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,74.1301216125488,11.1803398132324,-2.65288156270981,-2.70033264160156,0.0635365487763267
+390,80043,442197.952,80143,442097.952,89,3,3.25,0.0040625,1.91508086571357,0.0451388888888889,22.726222028802,0.0194769033922057,0.2425,24.25,2,93.7834943063542,0.939304275255112,24,27.4773670865088,10,-2.55303184191386,-2.622878074646,0.0945991287789118
+391,80043,442097.952,80143,441997.952,90,3,0.5,0.0025,0,0,25,0.0628839035867532,0.6425,64.25,2,97.8552817338622,0.9534768765538,62.75,40.7448248065399,7.07106781005859,-2.44524521297879,-2.50211429595947,0.0813682347853642
+392,80043,441997.952,80143,441897.952,91,3,2.75,0.006875,3.69492724585062,0.0902777777777778,44.3684837409756,-0.0158315974240827,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,8.17487589518229,0,-2.38122415542603,-2.417405128479,0.0361622960261819
+393,80043,441897.952,80143,441797.952,92,3,3,0.006,3.2467636996143,0.116666666666667,11.1803398874989,-0.0168200983897623,0.005,0.5,1,30.8308651382582,1,0.5,23.0553131103516,20.6155281066895,-2.40453534656101,-2.432772397995,0.0408942803334158
+394,80043,441797.952,80143,441697.952,93,3,2.75,0.0275,6.64988671210797,0.590909090909091,NA,-0.0305736981823975,0,0,0,NA,NA,0,NA,NA,-2.33560458819071,-2.4208972454071,0.117809272290728
+395,80043,441697.952,80143,441597.952,94,3,4,0.02,11.2644766163397,0.217948717948718,21.2132034355964,-0.0224249835394585,0.035,3.5,2,71.6522426099107,0.844559585492228,3.25,43.8896203722273,35.355339050293,-2.05998248524136,-2.20191192626953,0.27431991565958
+396,80043,441597.952,80143,441497.952,95,3,31,0.0516666666666667,11.0159852486768,0.333994708994709,11.0838025664548,0.00473939956427785,0.175,17.5,2,87.5277363887595,0.862034983986204,9.5,4.25816225324358,0,-1.7174855073293,-2.06754875183105,0.452030222058677
+397,80043,441497.952,80143,441397.952,96,3,12.5,0.0125,4.22662304849533,0.290277777777778,17.65670612805,-0.0336361233544369,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,2.5,0,-2.32206383016374,-2.64976859092712,0.507835157700599
+398,80043,441397.952,80143,441297.952,97,3,31.75,0.15875,18.5803225461069,0.628396029258098,60.8276253029822,-0.0724233678344171,0,0,0,NA,NA,0,NA,NA,-2.850415011247,-3.02462935447693,0.24928417756155
+399,80043,441297.952,80143,441197.952,98,3,19.5,0.195,24.8677337432889,0.790598290598291,NA,-0.160233806651086,0,0,0,NA,NA,0,NA,NA,-3.03722630606757,-3.07198214530945,0.0670051355072237
+400,80043,441197.952,80143,441097.952,99,3,12.1052631578947,0.115,26.4684565248763,0.47463768115942,NA,-0.0602285899322305,0.06,6,1,83.7764057650598,0.664053751399776,6,3.33333333333333,0,-3.01263703902562,-3.04911112785339,0.0443155479122573
+401,80143,451097.952,80243,450997.952,0,4,97.75,0.9775,37.7677987412847,0.927962489343564,NA,0.064752310645199,0.7275,72.75,2,98.885054110292,0.825570669037117,72.5,0.0687285223367698,0,1.54690893987815,0.823312759399414,1.02081505195568
+402,80143,450997.952,80243,450897.952,1,4,76,0.126666666666667,10.2579685365511,0.427849642868898,10.6903559372885,0.0332080568851961,0.4325,43.25,3,93.8387400653091,0.784569069089804,33,1.04046242774566,0,1.96314798295498,1.4176881313324,0.665380862630929
+403,80143,450897.952,80243,450797.952,2,4,94.75,0.9475,37.1848563011803,0.928320140721196,NA,-0.00150263347743021,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,0,0,0.973398516575495,0.561917126178741,0.62892773339878
+404,80143,450797.952,80243,450697.952,3,4,23,0.0766666666666667,12.2034493442097,0.422619047619048,10.3934466291663,0.0163558137684231,0.07,7,3,74.7177535028173,0.73715651135006,4.25,11.0044548852103,0,0.35552488733083,0.137197569012642,0.289759202288702
+405,80143,450697.952,80243,450597.952,4,4,12,0.04,5.74502534450006,0.154589371980676,10,-0.00338637836620364,0.005,0.5,1,30.8308651382582,1,0.5,5,5,0.12233665616562,-0.0133153749629855,0.199072115115123
+406,80143,450597.952,80243,450497.952,5,4,13.75,0.1375,20.9708200727342,0.718181818181818,NA,-0.192552139097825,0.01,1,1,52.6315789473684,1,1,0,0,0.0514130128285615,-0.0615853369235992,0.159636223769124
+407,80143,450497.952,80243,450397.952,6,4,24.5,0.049,6.40818883900654,0.13936170212766,11.3005630797458,-0.0948426907835892,0.0175,1.75,3,44.8240830231146,0.491094147582697,1.25,4.87744794573103,0,0.0793027235195041,-0.0452067144215107,0.143133047015214
+408,80143,450397.952,80243,450297.952,7,4,24,0.024,3.52215987321585,0.144444444444444,14.8191552641501,-0.00586245671555844,0.02,2,3,42.6244177316702,0.489795918367347,1,2.75888347625732,0,0.120732552313711,0.0103480471298099,0.0967671024542942
+409,80143,450297.952,80243,450197.952,8,4,4.25,0.00425,1.11941469160544,0.0638888888888889,17.0080698501586,-0.00931612728069012,0.0275,2.75,4,50.1987135339383,0.520137103684661,1.75,13.3159838589755,0,0.126664340496063,0.0539247244596481,0.0882537019730458
+410,80143,450197.952,80243,450097.952,9,4,7.75,0.00553571428571429,2.4591023863296,0.137896825396825,14.2658113964283,-0.00768622699237312,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,21.0573558807373,15.8113880157471,0.118252935276056,-0.0647589936852455,0.167816545520596
+411,80143,450097.952,80243,449997.952,10,4,8.5,0.00566666666666667,1.93841287345775,0.102037037037037,16.0722487144597,2.29745547721905e-05,0,0,0,NA,NA,0,NA,NA,0.0220118906581774,-0.377370238304138,0.305319852649241
+412,80143,449997.952,80243,449897.952,11,4,11.25,0.0102272727272727,3.30183812151795,0.157828282828283,16.9934215354657,0.024403918727221,0.1625,16.25,5,87.1105320990008,0.778100647206446,14.5,12.2700503716102,0,-0.33017211779952,-0.752345442771912,0.480992449837643
+413,80143,449897.952,80243,449797.952,12,4,9.25,0.0185,5.20782840714604,0.299404761904762,15.7575192407856,0.015936155406398,0.0875,8.75,2,85.1251268461301,0.924421350968351,8.5,5.1950083051409,0,-0.943322265520692,-1.63046884536743,0.631794892711055
+414,80143,449797.952,80243,449697.952,13,4,2.75,0.0055,2.33333333333333,0.155555555555556,20.0087670122451,0.00680234642830328,0.0275,2.75,4,44.7451879129179,0.520137103684661,1.25,15.0261816544966,0,-1.73736996948719,-2.08357262611389,0.601903574274912
+415,80143,449697.952,80243,449597.952,14,4,30.75,0.0341666666666667,4.87519446509244,0.259460017261436,11.5762189649952,-0.00682719496853679,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4,0,-2.18580670654774,-2.2993586063385,0.210217209919625
+416,80143,449597.952,80243,449497.952,15,4,5.75,0.00958333333333333,3.97056053312126,0.14781746031746,24.7846050226505,0.00353813907580843,0.045,4.5,2,70.2169158242117,0.767306573589296,2.75,16.7796886232164,0,-2.27555876970291,-2.31692051887512,0.113859676830349
+417,80143,449497.952,80243,449397.952,16,4,5.25,0.0175,7.36868250744421,0.228835978835979,11.1803398874989,0.00488691111513958,0,0,0,NA,NA,0,NA,NA,-2.32221587002277,-2.40701079368591,0.11004457692817
+418,80143,449397.952,80243,449297.952,17,4,4.5,0.01125,4.27553871143794,0.224537037037037,34.6310322894143,0.00377103978218202,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0,-2.54806452989578,-2.71196675300598,0.238544067974131
+419,80143,449297.952,80243,449197.952,18,4,9.25,0.04625,8.68799750008893,0.24537037037037,42.7200187265877,-0.00400850634061499,0.005,0.5,1,30.8308651382582,1,0.5,18.2134580612183,15.8113880157471,-2.99906867742538,-3.19466280937195,0.228004985508495
+420,80143,449197.952,80243,449097.952,19,4,11,0.0366666666666667,8.55769810566494,0.327342047930283,35.2758751009941,-0.0131629544530369,0,0,0,NA,NA,0,NA,NA,-3.23894464969635,-3.31755399703979,0.113584924898772
+421,80143,449097.952,80243,448997.952,20,4,5.5,0.00916666666666667,3.13067540748293,0.161375661375661,31.9786924512147,0.00285296300956816,0.0275,2.75,4,43.1328600236377,0.451585261353899,1,6.87681371515447,0,-3.29946788152059,-3.34738206863403,0.0740072556758692
+422,80143,448997.952,80243,448897.952,21,4,9.75,0.0195,5.96915480252818,0.129292929292929,13.6597366828632,0.00696691620308798,0.0625,6.25,3,68.7517175038734,0.68,2.25,7.08722518920898,0,-3.33483086526394,-3.35999989509583,0.0404755552573867
+423,80143,448897.952,80243,448797.952,22,4,12.75,0.02125,5.31260984892854,0.372578347578348,14.4093898872169,0.00373098572781601,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,8.47870864868164,5,-3.35472925504049,-3.35999989509583,0.010780176698663
+424,80143,448797.952,80243,448697.952,23,4,3.5,0.00875,2.1974005256949,0.121212121212121,38.9385344071661,0.00544177325264698,0,0,0,NA,NA,0,NA,NA,-3.35613015294075,-3.35999989509583,0.00516904536714035
+425,80143,448697.952,80243,448597.952,24,4,14.25,0.01425,3.60126877857266,0.192416815210933,14.5564735809682,-0.0103089504776312,0,0,0,NA,NA,0,NA,NA,-3.35612996419271,-3.35999989509583,0.00547506858461814
+426,80143,448597.952,80243,448497.952,25,4,32.25,0.05375,7.86062160204382,0.46854740546691,12.9526698057209,-0.0412663140549557,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,6.4287602351262,0,-3.35917997360229,-3.35999989509583,0.00283779082763142
+427,80143,448497.952,80243,448397.952,26,4,5.75,0.0115,4.10604879155573,0.191111111111111,10.2360679774998,-0.00867640489490441,0,0,0,NA,NA,0,NA,NA,-3.35999989509583,-3.35999989509583,0.00013714301913365
+428,80143,448397.952,80243,448297.952,27,4,15.25,0.0254166666666667,9.04782328418539,0.373995294828628,12.5,0.00415089182251108,0,0,0,NA,NA,0,NA,NA,-3.35134562849998,-3.35999989509583,0.0162004972502614
+429,80143,448297.952,80243,448197.952,28,4,7.5,0.0107142857142857,3.64556429389567,0.157936507936508,33.2528226879755,0.0033534889711791,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-3.31139677762985,-3.35069942474365,0.0577540533402089
+430,80143,448197.952,80243,448097.952,29,4,30,0.1,11.2750444579779,0.520777522643194,21.6935661671952,-0.000940036508472986,0.0425,4.25,3,65.2973013131925,0.62402088772846,2.75,5.94905079112333,0,-3.25028730928898,-3.33236908912659,0.101514362873197
+431,80143,448097.952,80243,447997.952,30,4,19.25,0.0385,8.04728500133789,0.315683962264151,13.8704815926677,0.000560124032645035,0.0225,2.25,3,51.2568226763031,0.48849104859335,1.5,10.1348003811306,0,-3.25116197268168,-3.33286738395691,0.0973257091853552
+432,80143,447997.952,80243,447897.952,31,4,0.5,0.005,2.5,0.166666666666667,NA,0.00145466754869091,0.0125,1.25,2,43.859649122807,0.594936708860759,1,23.7483551025391,20,-3.28387878338496,-3.3418447971344,0.0525625695456073
+433,80143,447897.952,80243,447797.952,32,4,0.5,0.0025,0,0,18.0277563773199,0.00201593990152105,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,22.6480236053467,18.0277557373047,-3.2280228883028,-3.27620029449463,0.0812251635699288
+434,80143,447797.952,80243,447697.952,33,4,26,0.052,11.0038110119434,0.385416666666667,15.6725711478091,0.00732276486956835,0.1025,10.25,3,83.7111122397613,0.838520850995115,9.25,4.77450031187476,0,-3.10652810335159,-3.24838471412659,0.156914681946401
+435,80143,447697.952,80243,447597.952,34,4,55.25,0.138125,21.0928924605853,0.516957099371917,11.0355339059327,-0.0135051448545073,0.1825,18.25,1,92.9430371372494,0.952217125382263,18.25,3.79635826528889,0,-2.9946676492691,-3.17285013198853,0.153449997591786
+436,80143,447597.952,80243,447497.952,35,4,52.5,0.105,11.4832417415351,0.387980769230769,10.2360679774998,0.108828579741821,0.785,78.5,1,99.3228142317568,0.92928975487115,78.5,2.38114138317716,0,-2.99292379617691,-3.10726547241211,0.0988812750737942
+437,80143,447497.952,80243,447397.952,36,4,16,0.0177777777777778,5.27798545843336,0.177881297446515,12.8640969227373,0.00916388323814317,0.155,15.5,5,82.2779558220605,0.747972824895902,10.75,4.48158780990108,0,-3.09761445224285,-3.1704523563385,0.0832513509413964
+438,80143,447397.952,80243,447297.952,37,4,20.25,0.02025,5.27618893209312,0.343555116381203,11.7683155286228,-0.00775589836965082,0.0475,4.75,4,59.1283162488617,0.637976287446828,2.25,4.75381449649208,0,-3.28789021571477,-3.38525414466858,0.147187845400107
+439,80143,447297.952,80243,447197.952,38,4,2,0.00666666666666667,2.43842638273096,0.203703703703704,18.6851709182133,-0.0657069026972886,0,0,0,NA,NA,0,NA,NA,-3.55900698900223,-3.71124696731567,0.165475337341115
+440,80143,447197.952,80243,447097.952,39,4,0,NA,NA,NA,NA,-0.0528069667503587,0,0,0,NA,NA,0,NA,NA,-3.6439115802447,-3.7164740562439,0.113962354542787
+441,80143,447097.952,80243,446997.952,40,4,0,NA,NA,NA,NA,-0.0334692340797119,0,0,0,NA,NA,0,NA,NA,-3.45263469219208,-3.61408090591431,0.158653424012942
+442,80143,446997.952,80243,446897.952,41,4,0,NA,NA,NA,NA,-0.0202843731275061,0,0,0,NA,NA,0,NA,NA,-3.49552353223165,-3.62165188789368,0.1883831301971
+443,80143,446897.952,80243,446797.952,42,4,0,NA,NA,NA,NA,-0.015829866442873,0,0,0,NA,NA,0,NA,NA,-3.73820213973522,-4.21571731567383,0.321462424581738
+444,80143,446797.952,80243,446697.952,43,4,9.5,0.095,17.1830639842304,0.618421052631579,NA,-0.0232458541105007,0,0,0,NA,NA,0,NA,NA,-4.31539545456568,-4.5,0.570170908134804
+445,80143,446697.952,80243,446597.952,44,4,6.75,0.0675,15.1379851745559,0.512345679012346,NA,-0.120961212757438,0,0,0,NA,NA,0,NA,NA,-3.63668888807297,-4.34456539154053,0.407779503060118
+446,80143,446597.952,80243,446497.952,45,4,0,NA,NA,NA,NA,-0.135883014053106,0,0,0,NA,NA,0,NA,NA,-3.35511247813702,-3.44605255126953,0.0944554779103564
+447,80143,446497.952,80243,446397.952,46,4,0,NA,NA,NA,NA,-0.125826676990837,0,0,0,NA,NA,0,NA,NA,-3.26044948895772,-3.28284597396851,0.0346957745978324
+448,80143,446397.952,80243,446297.952,47,4,0,NA,NA,NA,NA,-0.292626661732793,0,0,0,NA,NA,0,NA,NA,-3.18411938846111,-3.24407052993774,0.0821120585548734
+449,80143,446297.952,80243,446197.952,48,4,0,NA,NA,NA,NA,-0.189204632994042,0,0,0,NA,NA,0,NA,NA,-2.9670478105545,-3.06047940254211,0.171723736748895
+450,80143,446197.952,80243,446097.952,49,4,0.25,0.0025,0,0,NA,-0.183338288528466,0,0,0,NA,NA,0,NA,NA,-2.51818718016148,-2.79263234138489,0.377986213420688
+451,80143,446097.952,80243,445997.952,50,4,0,NA,NA,NA,NA,-0.106104418328032,0,0,0,NA,NA,0,NA,NA,-1.67201761404673,-2.04494547843933,0.478642350301934
+452,80143,445997.952,80243,445897.952,51,4,0.25,0.0025,0,0,NA,-0.0580702486401424,0,0,0,NA,NA,0,NA,NA,-1.48686319589615,-1.66179752349854,0.23460651637427
+453,80143,445897.952,80243,445797.952,52,4,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.0304258472678157,0,0,0,NA,NA,0,NA,NA,-1.66010435422262,-1.73217070102692,0.113620213665625
+454,80143,445797.952,80243,445697.952,53,4,0,NA,NA,NA,NA,-0.0331334317080473,0,0,0,NA,NA,0,NA,NA,-1.80025605857372,-1.86746942996979,0.0766112628931631
+455,80143,445697.952,80243,445597.952,54,4,0.25,0.0025,0,0,NA,-0.0289488549841553,0,0,0,NA,NA,0,NA,NA,-1.90199069182078,-1.95564639568329,0.0883649655790964
+456,80143,445597.952,80243,445497.952,55,4,5.5,0.01375,5.50275106132973,0.277777777777778,10.5901699437495,-0.0795395817546523,0,0,0,NA,NA,0,NA,NA,-2.01952951153119,-2.0789201259613,0.0912267433616778
+457,80143,445497.952,80243,445397.952,56,4,4.75,0.00678571428571429,2.6084024311269,0.145502645502645,11.6603966573834,-0.225553540578112,0,0,0,NA,NA,0,NA,NA,-2.1831412166357,-2.37378716468811,0.169376729471067
+458,80143,445397.952,80243,445297.952,57,4,0,NA,NA,NA,NA,0.0714743563454249,0.73,73,1,99.1030975159931,0.979761181946974,73,89.4406386728156,31.6227760314941,-2.3569084405899,-2.56276845932007,0.255291833161297
+459,80143,445297.952,80243,445197.952,58,4,0.5,0.005,2.5,0.166666666666667,NA,0.195090987719595,1,100,1,100,NA,100,59.0269784021378,0,-2.45263433456421,-2.67773032188416,0.325522029656155
+460,80143,445197.952,80243,445097.952,59,4,0.25,0.0025,0,0,NA,0.12268535924567,0.595,59.5,1,98.4399608047141,0.977805520876682,59.5,56.0474176727423,0,-2.60534884532293,-2.77968883514404,0.240605987745159
+461,80143,445097.952,80243,444997.952,60,4,0.25,0.0025,0,0,NA,0.00125671308418987,0.0025,0.25,1,0,NA,0.25,95.5248641967773,95.5248641967773,-2.81823648512363,-2.91170310974121,0.107022547123426
+462,80143,444997.952,80243,444897.952,61,4,0,NA,NA,NA,NA,-0.0319612608850002,0,0,0,NA,NA,0,NA,NA,-2.90151164929072,-2.91893315315247,0.0305611810527547
+463,80143,444897.952,80243,444797.952,62,4,0,NA,NA,NA,NA,0.0232884577666664,0.395,39.5,1,96.8888706928871,0.971501852379595,39.5,174.044696180126,160,-2.8877435028553,-2.92245221138,0.0306851417461975
+464,80143,444797.952,80243,444697.952,63,4,0,NA,NA,NA,NA,0.151662263875696,0.9225,92.25,1,99.7833767758384,0.981540449490055,92.25,116.167180234501,60,-2.88596377770106,-2.91503405570984,0.0292214720420229
+465,80143,444697.952,80243,444597.952,64,4,0.5,0.0025,0,0,15.8113883008419,-0.048488861039732,0.055,5.5,2,73.5629824239236,0.782135076252723,3.25,37.7905946211381,5,-2.91821381449699,-2.93308281898499,0.0231906723322921
+466,80143,444597.952,80243,444497.952,65,4,0.75,0.0025,0,0,43.2699567159207,-0.108619506249433,0,0,0,NA,NA,0,NA,NA,-2.89151298999786,-2.92904567718506,0.059091127800969
+467,80143,444497.952,80243,444397.952,66,4,0,NA,NA,NA,NA,-0.0688207463966683,0,0,0,NA,NA,0,NA,NA,-2.75877487659454,-2.83761739730835,0.128799400178934
+468,80143,444397.952,80243,444297.952,67,4,5,0.05,17.7466565933826,0.366666666666667,NA,-0.262608265867457,0,0,0,NA,NA,0,NA,NA,-2.43707783520222,-2.67812466621399,0.251405727831662
+469,80143,444297.952,80243,444197.952,68,4,32,0.32,36.4897477658562,0.657552083333333,NA,-0.0315639965290757,0.0125,1.25,2,45.1127819548872,0.392405063291139,1,2,0,-1.99681814511617,-2.15585803985596,0.222109653730946
+470,80143,444197.952,80243,444097.952,69,4,6,0.015,7.40024526277099,0.231944444444444,17.8077640640442,0.0179928032996395,0.295,29.5,1,95.572898758965,0.900576655398688,29.5,29.0776721986674,14.1421356201172,-1.79312967509031,-1.87004947662354,0.0768126403424513
+471,80143,444097.952,80243,443997.952,70,4,0,NA,NA,NA,NA,0.0290825882391073,0.4975,49.75,1,97.8012504735965,0.962248378702693,49.75,69.0727606155165,35,-1.8907236456871,-1.96773040294647,0.117144957398843
+472,80143,443997.952,80243,443897.952,71,4,1.5,0.015,7.47023260921984,0.277777777777778,NA,-0.107739275016647,0,0,0,NA,NA,0,NA,NA,-2.08100825548172,-2.26457095146179,0.142538951453484
+473,80143,443897.952,80243,443797.952,72,4,17,0.0566666666666667,10.7707477432762,0.405218855218855,11.937129433614,-0.0202170672484499,0.1,10,2,83.6255307862086,0.867330016583748,8.5,17.7011451244354,7.07106781005859,-2.28423442443212,-2.45334482192993,0.176051465736423
+474,80143,443797.952,80243,443697.952,73,4,2.75,0.0275,8.00705491181034,0.515151515151515,NA,0.102222397218211,0.8175,81.75,1,99.442091962007,0.98223840500877,81.75,55.3227969819982,5,-2.36042483150959,-2.48339653015137,0.140536810522057
+475,80143,443697.952,80243,443597.952,74,4,0,NA,NA,NA,NA,0.037820035258992,0.195,19.5,2,90.0829313447508,0.882977765775497,17,131.531279441638,98.2344131469727,-2.28358511130015,-2.40868711471558,0.134667737164148
+476,80143,443597.952,80243,443497.952,75,4,0,NA,NA,NA,NA,0.0340213790617418,0.16,16,1,92.1052631578947,0.819302721088435,16,213.557781219482,173.277221679688,-2.21227444708347,-2.35973238945007,0.138603310666348
+477,80143,443497.952,80243,443397.952,76,4,0,NA,NA,NA,NA,-0.0770748065846965,0.3,30,1,95.6539902192076,0.842726081258191,30,197.665958404541,160,-2.21059052149455,-2.3594708442688,0.132150012145833
+478,80143,443397.952,80243,443297.952,77,4,0,NA,NA,NA,NA,-0.0847468258732988,0.3875,38.75,1,96.8082175905,0.919799498746867,38.75,192.170039712229,146.372817993164,-2.20430546998978,-2.30790066719055,0.0913606592385946
+479,80143,443297.952,80243,443197.952,78,4,0,NA,NA,NA,NA,-0.0834730718517676,0,0,0,NA,NA,0,NA,NA,-2.23365561664104,-2.36490416526794,0.090203375631289
+480,80143,443197.952,80243,443097.952,79,4,0,NA,NA,NA,NA,-0.0237728345188953,0,0,0,NA,NA,0,NA,NA,-2.35684758424759,-2.49922728538513,0.136687328899746
+481,80143,443097.952,80243,442997.952,80,4,0,NA,NA,NA,NA,-0.0253565830612206,0,0,0,NA,NA,0,NA,NA,-2.4363754093647,-2.53284168243408,0.106282622118639
+482,80143,442997.952,80243,442897.952,81,4,0,NA,NA,NA,NA,-0.0368205511455017,0,0,0,NA,NA,0,NA,NA,-2.41462294260661,-2.47511339187622,0.0492495638693321
+483,80143,442897.952,80243,442797.952,82,4,0,NA,NA,NA,NA,-0.0201967880084612,0,0,0,NA,NA,0,NA,NA,-2.36369609832764,-2.40737533569336,0.0433826781092646
+484,80143,442797.952,80243,442697.952,83,4,0,NA,NA,NA,NA,-0.117052295750473,0,0,0,NA,NA,0,NA,NA,-2.36246643463771,-2.38198328018188,0.0421478061429159
+485,80143,442697.952,80243,442597.952,84,4,0,NA,NA,NA,NA,-0.175090245033825,0.01,1,2,34.5233986084855,0.494949494949495,0.75,150.25749206543,148.070922851562,-2.42778190970421,-2.50593328475952,0.0895261248556004
+486,80143,442597.952,80243,442497.952,85,4,0,NA,NA,NA,NA,-0.0252967052080203,0,0,0,NA,NA,0,NA,NA,-2.56593479712804,-2.62744665145874,0.104402839266895
+487,80143,442497.952,80243,442397.952,86,4,0,NA,NA,NA,NA,0.0190915896136721,0.0925,9.25,1,87.9580013362782,0.891613602492887,9.25,184.908001873944,169.189239501953,-2.69484159350395,-2.73164463043213,0.0570389902759476
+488,80143,442397.952,80243,442297.952,87,4,0,NA,NA,NA,NA,0.126068948908996,0.4225,42.25,1,97.165991902834,0.972249972249972,42.25,152.694827062844,116.619033813477,-2.76223534345627,-2.81287813186646,0.0563892015998303
+489,80143,442297.952,80243,442197.952,88,4,0,NA,NA,NA,NA,-0.0762699035508558,0,0,0,NA,NA,0,NA,NA,-2.79934878647327,-2.86553907394409,0.0822389123692376
+490,80143,442197.952,80243,442097.952,89,4,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.0265740246201403,0,0,0,NA,NA,0,NA,NA,-2.73780653874079,-2.84697389602661,0.129013967916483
+491,80143,442097.952,80243,441997.952,90,4,5,0.00555555555555556,3.53553390593274,0.0833333333333333,11.9411639419235,-0.00842251915157249,0.0275,2.75,3,58.772474842622,0.520137103684661,2,15.7207528894598,7.07106781005859,-2.57517516613007,-2.71497797966003,0.146645752692474
+492,80143,441997.952,80243,441897.952,91,4,8,0.0133333333333333,4.41150754010739,0.171957671957672,12.3215759691358,-0.020463189320144,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0,-2.36017099022865,-2.45884823799133,0.132887661013073
+493,80143,441897.952,80243,441797.952,92,4,1.5,0.0075,2.40826299154644,0.183333333333333,18.0277563773199,-0.0242293263087231,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,4.02368927001953,0,-2.26009553670883,-2.36423540115356,0.114705427614678
+494,80143,441797.952,80243,441697.952,93,4,20.5,0.025625,7.87160831753293,0.360769438894439,15.0830252554035,-0.0156069546824801,0.0275,2.75,4,44.869666347291,0.451585261353899,1.25,2.46100616455078,0,-2.21601250767708,-2.33903479576111,0.092840960127544
+495,80143,441697.952,80243,441597.952,94,4,19.25,0.0641666666666667,24.0624287279907,0.379698362201013,13.4628120507726,-0.0309356767841382,0.1275,12.75,3,85.5143851036305,0.868260712050851,11.5,23.4746104221718,5,-2.22608023881912,-2.50471448898315,0.229983692364622
+496,80143,441597.952,80243,441497.952,95,4,3.25,0.0065,1.97960021181856,0.0740740740740741,30.6097753390173,-0.0383688655667356,0.0375,3.75,2,67.3959324613699,0.669421487603306,2.25,28.0379021962484,7.07106781005859,-2.3748719021678,-2.63603448867798,0.331786063389763
+497,80143,441497.952,80243,441397.952,96,4,3,0.005,1.49120141425534,0.0740740740740741,18.1811389331897,-0.0717462968101609,0,0,0,NA,NA,0,NA,NA,-2.67171972990036,-2.79029750823975,0.216212328867336
+498,80143,441397.952,80243,441297.952,97,4,77.25,0.7725,34.2748701753687,0.919633225458468,NA,-0.0965273659490049,0,0,0,NA,NA,0,NA,NA,-2.96336482465267,-3.06089067459106,0.131671609764283
+499,80143,441297.952,80243,441197.952,98,4,4.25,0.02125,9.1569556425232,0.361111111111111,10,-0.175135680288076,0,0,0,NA,NA,0,NA,NA,-3.01470990975698,-3.07542371749878,0.0938406911527107
+500,80143,441197.952,80243,441097.952,99,4,11.3157894736842,0.05375,12.5875329604885,0.222222222222222,11.1803398874989,0.0536609584069811,0.6175,61.75,1,98.5654235476234,0.983023512435277,61.75,25.5278438691668,0,-2.89110115170479,-3.03462243080139,0.12844389370105
+501,80243,451097.952,80343,450997.952,0,5,86,0.215,11.6223458496835,0.367348636061211,10,-0.0300041975513659,0.17,17,1,92.4981249980877,0.949377341297965,17,1.13339805603027,0,1.33689426051246,0.788682699203491,1.8701325080354
+502,80243,450997.952,80343,450897.952,1,5,83,0.415,22.3408840778078,0.726200490711532,10,0.0608279755944386,0.7025,70.25,2,98.7616902932448,0.847211611917494,70,0.676156583629893,0,3.00883708397547,1.43450403213501,2.04732489680342
+503,80243,450897.952,80343,450797.952,2,5,78.25,0.7825,37.5201802197825,0.815228966986155,NA,0.0683580969666946,0.7525,75.25,1,99.1958903399554,0.836103539807243,75.25,0.79734219269103,0,1.30813362201055,0.951525509357452,0.542101619933914
+504,80243,450797.952,80343,450697.952,3,5,26.5,0.1325,13.8063390411163,0.36984126984127,10,0.0330574919370156,0.3,30,3,93.3541246591436,0.921363040629096,28.5,1.3851100285848,0,0.651926347364982,0.227374508976936,0.574325334703066
+505,80243,450697.952,80343,450597.952,4,5,5.25,0.0065625,2.26777857488071,0.1328125,17.8978578165618,-0.00447626314175068,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0,0.179341968769828,0.0204153526574373,0.26118859018039
+506,80243,450597.952,80343,450497.952,5,5,0.25,0.0025,0,0,NA,-0.122118747615023,0,0,0,NA,NA,0,NA,NA,0.000517375631413112,-0.0708059743046761,0.126079723767035
+507,80243,450497.952,80343,450397.952,6,5,36.5,0.1825,17.9636161508825,0.62815693078851,10,-0.072424769121526,0.0575,5.75,2,75.7382605681555,0.852637783672267,4.25,2.48135077435037,0,-0.0546106644388702,-0.0711495131254196,0.0578204642616531
+508,80243,450397.952,80343,450297.952,7,5,50.25,0.25125,15.6436110559389,0.525544388609715,25,-0.0320225088414099,0,0,0,NA,NA,0,NA,NA,-0.0236919814487919,-0.0526887960731983,0.053006035479603
+509,80243,450297.952,80343,450197.952,8,5,61.5,0.615,34.4063027074429,0.860433604336043,NA,-0.00568405790680117,0.0875,8.75,3,79.5513811496792,0.73547472838923,6.75,2.37728375026158,0,0.0467563215643167,-0.00753034465014935,0.0735330174832943
+510,80243,450197.952,80343,450097.952,9,5,40.75,0.0679166666666667,5.39515688102728,0.230961829176115,16.9276926029837,0.0179346519992578,0.145,14.5,7,71.8788866192124,0.672514619883041,5,2.47541177683863,0,0.13970752639903,0.0725344568490982,0.0835851183578163
+511,80243,450097.952,80343,449997.952,10,5,7.25,0.00453125,1.54711396656035,0.105034722222222,16.3963565662299,0.0031022517265319,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,4.87588301159087,0,0.215832834442457,0.171600341796875,0.0508582136387832
+512,80243,449997.952,80343,449897.952,11,5,23.5,0.0102173913043478,3.32954966426257,0.157389108476065,11.5962135079071,0.00668103558817165,0.035,3.5,3,60.2894839529434,0.689119170984456,1.75,1.07142857142857,0,0.151163456340631,0.0421144738793373,0.140291431169247
+513,80243,449897.952,80343,449797.952,12,5,11,0.00846153846153846,3.12202566281032,0.139316239316239,13.9470790480601,0.000604913380650487,0,0,0,NA,NA,0,NA,NA,-0.0913170498485367,-0.388442128896713,0.300621005827306
+514,80243,449797.952,80343,449697.952,13,5,5.25,0.00403846153846154,1.48991286455893,0.0876068376068376,12.2055928769061,0.00283504305940369,0.035,3.5,1,77.1303955881659,0.740932642487047,3.5,7.94380024501256,5,-0.648853765593635,-1.30288684368134,0.697289793198817
+515,80243,449697.952,80343,449597.952,14,5,28.75,0.0239583333333333,4.41740793771974,0.233305145500267,13.4134951055111,-0.000532961794642688,0.04,4,3,63.5997204177922,0.609375,2.5,3.25444173812866,0,-1.49083651105563,-2.00342416763306,0.703341100877639
+516,80243,449597.952,80343,449497.952,15,5,25.75,0.0515,11.689779662334,0.414178885630499,11.3005630797458,-0.00725325962848729,0.015,1.5,4,23.8418219056571,0.274836838288615,0.75,2.6967233022054,0,-1.79784279399448,-2.02244234085083,0.39762095585141
+517,80243,449497.952,80343,449397.952,16,5,15.75,0.039375,8.84641048127563,0.235161163522013,15.5308539814059,0.00362925803685357,0.02,2,5,25.5687026184117,0.285714285714286,0.75,6.9153094291687,0,-1.98137710491816,-2.24254894256592,0.408309334871877
+518,80243,449397.952,80343,449297.952,17,5,8.75,0.021875,5.63170178871316,0.304924242424242,18.8534531628728,-0.00111849467994261,0,0,0,NA,NA,0,NA,NA,-2.48227498266432,-2.72614622116089,0.401997528470817
+519,80243,449297.952,80343,449197.952,18,5,29,0.145,16.0429661361417,0.347826086956522,14.142135623731,-0.00197803054776159,0.0625,6.25,2,79.5305749927826,0.706666666666667,5.25,6.33005630493164,0,-3.04018119970957,-3.2003116607666,0.229902798331517
+520,80243,449197.952,80343,449097.952,19,5,4,0.008,1.84720175214703,0.148484848484848,23.8897941216613,0.00358263691953084,0.0275,2.75,2,66.702712212269,0.794344473007712,2.5,29.2583510658958,10,-3.28440798653497,-3.31953954696655,0.0774773484921777
+521,80243,449097.952,80343,448997.952,20,5,6,0.02,5.03042177181668,0.179292929292929,38.3333333333333,-0.0148183735008752,0,0,0,NA,NA,0,NA,NA,-3.34106355243259,-3.35247492790222,0.0290522608247567
+522,80243,448997.952,80343,448897.952,21,5,4.75,0.00527777777777778,1.97684031344871,0.111111111111111,12.5577825515902,0.00108913653145237,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5,-3.35742517312368,-3.35999989509583,0.0103447582928085
+523,80243,448897.952,80343,448797.952,22,5,6.25,0.015625,5.45010523951107,0.25625,33.5410196624968,0.00236522767824681,0.025,2.5,3,49.6074439197622,0.526627218934911,1.25,27.1747798919678,18.0277557373047,-3.35999989509583,-3.35999989509583,0.000499136960074271
+524,80243,448797.952,80343,448697.952,23,5,8.5,0.0283333333333333,10.933457685412,0.235153256704981,29.9690536086616,0.0121560597489588,0.0525,5.25,3,68.451524888486,0.637203166226913,3,2.67525427682059,0,-3.35999989509583,-3.35999989509583,1.9878466759147e-16
+525,80243,448697.952,80343,448597.952,24,5,25,0.0416666666666667,5.91882485842477,0.17812555733904,13.7352326906126,-0.0265028375978727,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-3.35999989509583,-3.35999989509583,1.9878466759147e-16
+526,80243,448597.952,80343,448497.952,25,5,4,0.00571428571428571,1.1071369117227,0.0690476190476191,16.6479541352609,-0.00825379853939012,0.005,0.5,1,30.8308651382582,1,0.5,32.8845767974854,30.4138145446777,-3.36176719268163,-3.37003779411316,0.00478761655275908
+527,80243,448497.952,80343,448397.952,26,5,10.25,0.0128125,3.56500664507918,0.19593253968254,16.3521966348992,-0.016409054212927,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,20.0999641418457,0,-3.36783178647359,-3.37685084342957,0.0129860587971413
+528,80243,448397.952,80343,448297.952,27,5,18.5,0.0264285714285714,7.186192799974,0.180523897870837,10.8430999196421,-6.47946337630856e-05,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0,-3.34869811932246,-3.37716364860535,0.0350611714531512
+529,80243,448297.952,80343,448197.952,28,5,23.75,0.11875,16.2305543953708,0.667763157894737,15,0.0037901604417516,0.0325,3.25,2,70.3625424207658,0.827734711455642,3,0.769230769230769,0,-3.25930452346802,-3.30976152420044,0.0819542170269225
+530,80243,448197.952,80343,448097.952,29,5,30.25,0.15125,14.2297045054532,0.35625,14.142135623731,-0.000230056443324429,0.075,7.5,3,75.2128576159162,0.691119691119691,5.25,3.65956954956055,0,-3.14081839720408,-3.20602583885193,0.0996057555225866
+531,80243,448097.952,80343,447997.952,30,5,1.75,0.00875,3.88727064426682,0.258333333333333,25,-0.00414581641449331,0,0,0,NA,NA,0,NA,NA,-3.17633978525798,-3.26218962669373,0.108744041633919
+532,80243,447997.952,80343,447897.952,31,5,2.25,0.0075,2.48380516044045,0.203703703703704,43.8709242063044,0.00070807320127642,0.0125,1.25,2,43.859649122807,0.594936708860759,1,27.690308380127,15,-3.26504853036669,-3.33248257637024,0.0951675612552603
+533,80243,447897.952,80343,447797.952,32,5,10,0.0142857142857143,3.34624971946127,0.171428571428571,21.4489179579312,-0.00733412511596271,0.0025,0.25,1,0,NA,0.25,0,0,-3.34253189961116,-3.40717530250549,0.0861265614470461
+534,80243,447797.952,80343,447697.952,33,5,39.5,0.0564285714285714,9.69328141492213,0.275397940074906,13.700242776785,0.012027950881893,0.24,24,3,87.0648418903985,0.770501835985312,11.5,2.62303831179937,0,-3.35913885964288,-3.41331768035889,0.107828936206883
+535,80243,447697.952,80343,447597.952,34,5,21.5,0.0358333333333333,7.2858197892179,0.273015873015873,16.0651020193942,0.0321004651126896,0.345,34.5,1,96.3025628341184,0.927299163940385,34.5,6.09509394825369,0,-3.25544859965642,-3.36947560310364,0.143044656677675
+536,80243,447597.952,80343,447497.952,35,5,18.25,0.01825,4.16120212469782,0.221658312447786,11.0043835061226,0.0178188150718415,0.1625,16.25,4,83.5226360141196,0.788667283053758,12.25,3.09825577369103,0,-3.10031898816427,-3.17943835258484,0.0962589683047501
+537,80243,447497.952,80343,447397.952,36,5,20,0.0285714285714286,8.13485040578234,0.288565616940903,12.8173370785708,-0.00414892822047477,0.01,1,2,30.8308651382582,0.494949494949495,0.5,0,0,-3.10006900628408,-3.14700865745544,0.0701698799750051
+538,80243,447397.952,80343,447297.952,37,5,9.5,0.011875,3.13148849983145,0.184210526315789,17.7694405565652,-0.00944978436080419,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-3.24974372651842,-3.34273052215576,0.130210683005888
+539,80243,447297.952,80343,447197.952,38,5,0,NA,NA,NA,NA,-0.055384870107423,0,0,0,NA,NA,0,NA,NA,-3.47013924519221,-3.59341382980347,0.148019227700031
+540,80243,447197.952,80343,447097.952,39,5,14.25,0.1425,14.4565519488072,0.809941520467836,NA,-0.0875862074438191,0,0,0,NA,NA,0,NA,NA,-3.56170113881429,-3.6315803527832,0.128600195772325
+541,80243,447097.952,80343,446997.952,40,5,0,NA,NA,NA,NA,-0.0128241894139182,0,0,0,NA,NA,0,NA,NA,-3.26237026850382,-3.57347965240479,0.31217009719937
+542,80243,446997.952,80343,446897.952,41,5,0,NA,NA,NA,NA,0.000272034169756807,0,0,0,NA,NA,0,NA,NA,-3.04770021968418,-3.27342510223389,0.34215689971329
+543,80243,446897.952,80343,446797.952,42,5,0,NA,NA,NA,NA,-0.00383976928167613,0.0225,2.25,2,62.5208930833619,0.658994032395567,2,83.3399158053928,65,-3.82089020808538,-4.5,0.617247420107076
+544,80243,446797.952,80343,446697.952,43,5,29.5,0.295,27.6273535241369,0.816384180790961,NA,-0.00355358965194682,0.15,15,1,91.6737426448862,0.95475113122172,15,2.2267791112264,0,-4.01509624057346,-4.5,0.659071812484476
+545,80243,446697.952,80343,446597.952,44,5,0,NA,NA,NA,NA,-0.0533603417687118,0,0,0,NA,NA,0,NA,NA,-3.49310493469238,-3.59113359451294,0.120341962239861
+546,80243,446597.952,80343,446497.952,45,5,0,NA,NA,NA,NA,-0.141838283995166,0,0,0,NA,NA,0,NA,NA,-3.33283432324727,-3.41275405883789,0.082943475910209
+547,80243,446497.952,80343,446397.952,46,5,0,NA,NA,NA,NA,-0.176142820455134,0,0,0,NA,NA,0,NA,NA,-3.2524975405799,-3.26550674438477,0.0354881379512868
+548,80243,446397.952,80343,446297.952,47,5,0,NA,NA,NA,NA,-0.202274377960712,0,0,0,NA,NA,0,NA,NA,-3.17270360390345,-3.24457311630249,0.0935924872714596
+549,80243,446297.952,80343,446197.952,48,5,0,NA,NA,NA,NA,-0.362126267791609,0.05,5,1,81.7256002368443,0.796264855687606,5,94.5861042022705,77.6208724975586,-2.93630525800917,-3.03691339492798,0.180769104825111
+550,80243,446197.952,80343,446097.952,49,5,0,NA,NA,NA,NA,-0.254629984535277,0,0,0,NA,NA,0,NA,NA,-2.45063348611196,-2.7409679889679,0.356277086079459
+551,80243,446097.952,80343,445997.952,50,5,0,NA,NA,NA,NA,-0.198106820303947,0,0,0,NA,NA,0,NA,NA,-1.88504705164168,-2.01817679405212,0.211690715339818
+552,80243,445997.952,80343,445897.952,51,5,2.75,0.0055,1.72652893385291,0.1,14.064495102246,-0.122208918860997,0,0,0,NA,NA,0,NA,NA,-1.7155235906442,-1.76321947574615,0.0667756888170589
+553,80243,445897.952,80343,445797.952,52,5,15,0.0214285714285714,3.29073441026006,0.220620132110815,18.9201812763015,-0.0272171949274889,0,0,0,NA,NA,0,NA,NA,-1.70134245024787,-1.7297739982605,0.0570261128262874
+554,80243,445797.952,80343,445697.952,53,5,18.75,0.046875,10.2304024089815,0.336489898989899,14.0450849718747,-0.043642023871987,0.0175,1.75,1,65.4774238937655,1,1.75,5.29586683000837,0,-1.67031972606977,-1.73373973369598,0.128400449807664
+555,80243,445697.952,80343,445597.952,54,5,10,0.1,16.1963704635021,0.7,NA,-0.0308501934428932,0,0,0,NA,NA,0,NA,NA,-1.6923994090822,-1.85127067565918,0.232472658907076
+556,80243,445597.952,80343,445497.952,55,5,11,0.01,3.49548997938395,0.173913043478261,10,-0.127579881511629,0,0,0,NA,NA,0,NA,NA,-1.89894500043657,-2.03995752334595,0.22230558174746
+557,80243,445497.952,80343,445397.952,56,5,0,NA,NA,NA,NA,-0.198774096667767,0.0825,8.25,1,86.9391941099265,0.878897971541023,8.25,115.708309289181,105.948104858398,-2.24779260158539,-2.41107797622681,0.209684352055321
+558,80243,445397.952,80343,445297.952,57,5,0,NA,NA,NA,NA,0.170632331210654,0.9875,98.75,1,99.9667936270881,1,98.75,155.696338972261,109.201652526855,-2.57141844431559,-2.65576457977295,0.144487878718955
+559,80243,445297.952,80343,445197.952,58,5,0,NA,NA,NA,NA,0.222782846093178,1,100,1,100,NA,100,153.319524688721,95.1314926147461,-2.73152428865433,-2.80964660644531,0.0922468993060998
+560,80243,445197.952,80343,445097.952,59,5,0,NA,NA,NA,NA,0.062047249682405,0.3425,34.25,2,95.4424887235526,0.939163498098859,33.75,138.631630890561,95,-2.83646127912733,-2.89438056945801,0.092265115305666
+561,80243,445097.952,80343,444997.952,60,5,0,NA,NA,NA,NA,0.00328539124710233,0.01,1,2,30.8308651382582,0.494949494949495,0.5,119.541500091553,110.113571166992,-2.92784895499547,-2.97303318977356,0.060446544163803
+562,80243,444997.952,80343,444897.952,61,5,0,NA,NA,NA,NA,-0.0253015870354875,0,0,0,NA,NA,0,NA,NA,-2.97001364496019,-3.00269103050232,0.0457320792271834
+563,80243,444897.952,80343,444797.952,62,5,0,NA,NA,NA,NA,0.0848364319113898,0.665,66.5,1,98.8090595843688,0.982053659557922,66.5,198.402623628315,170,-2.93526216348012,-2.99423551559448,0.0803802918591817
+564,80243,444797.952,80343,444697.952,63,5,0,NA,NA,NA,NA,0.0852056232313771,0.635,63.5,1,98.6583599459141,0.971221365258432,63.5,164.93895517184,113.357841491699,-2.90935818354289,-2.95256209373474,0.0680548192855811
+565,80243,444697.952,80343,444597.952,64,5,0,NA,NA,NA,NA,-0.0839883711434231,0,0,0,NA,NA,0,NA,NA,-2.9611023068428,-3.00264167785645,0.0524167007916487
+566,80243,444597.952,80343,444497.952,65,5,0,NA,NA,NA,NA,-0.0472448239070763,0,0,0,NA,NA,0,NA,NA,-2.95084288385179,-2.9925811290741,0.0670312586228494
+567,80243,444497.952,80343,444397.952,66,5,0,NA,NA,NA,NA,-0.0564795651729219,0,0,0,NA,NA,0,NA,NA,-2.82918389638265,-2.89254570007324,0.112588753168425
+568,80243,444397.952,80343,444297.952,67,5,0,NA,NA,NA,NA,-0.191514538582414,0,0,0,NA,NA,0,NA,NA,-2.55883143345515,-2.72927808761597,0.210697386922516
+569,80243,444297.952,80343,444197.952,68,5,3.75,0.01875,7.50500101955024,0.390151515151515,11.1803398874989,-0.355832219655276,0,0,0,NA,NA,0,NA,NA,-2.16628342204624,-2.29843282699585,0.234708135248036
+570,80243,444197.952,80343,444097.952,69,5,27.5,0.034375,3.88047359460698,0.0957924836601307,13.7637244627892,-0.0285617947237733,0.245,24.5,2,93.8423613577426,0.939795304033715,24.25,17.1204788441561,0,-1.8946963151296,-2.02533507347107,0.12662326253615
+571,80243,444097.952,80343,443997.952,70,5,0,NA,NA,NA,NA,0.0873051158047019,0.67,67,1,98.8331871391418,0.951804325561781,67,49.7464689354398,10,-1.95717385080126,-2.08918213844299,0.160029579125051
+572,80243,443997.952,80343,443897.952,71,5,7.75,0.0775,16.4060653169986,0.446236559139785,NA,-0.0674213617806345,0.005,0.5,2,0,1,0.25,20.1942176818848,18.0277557373047,-2.25662050644557,-2.43101096153259,0.189562322266259
+573,80243,443897.952,80343,443797.952,72,5,9.5,0.095,19.3991593228131,0.469298245614035,NA,-0.0125261600157319,0.32,32,2,93.3665169110183,0.90532693764201,27.75,38.7061918824911,14.1421356201172,-2.50512719154358,-2.59141135215759,0.129408751798037
+574,80243,443797.952,80343,443697.952,73,5,0,NA,NA,NA,NA,0.110309094374534,0.9675,96.75,1,99.9123308655226,1,96.75,107.426233030413,40.3112869262695,-2.57427259286245,-2.62258148193359,0.0894912258329267
+575,80243,443697.952,80343,443597.952,74,5,0,NA,NA,NA,NA,0.120817006540019,0.9425,94.25,1,99.8418294460568,0.975676497415628,94.25,187.291051788735,120.933868408203,-2.53592128223843,-2.60650396347046,0.122852345895797
+576,80243,443597.952,80343,443497.952,75,5,0,NA,NA,NA,NA,0.0611510601881309,0.395,39.5,1,96.8888706928871,0.943003704759191,39.5,272.77791721006,221.415893554688,-2.50173697868983,-2.57245540618896,0.112360691892267
+577,80243,443497.952,80343,443397.952,76,5,0,NA,NA,NA,NA,0.0375542353950732,0.37,37,2,96.1637540775773,0.912141978562643,36.75,240.262764286351,215,-2.46951622433133,-2.50681519508362,0.0815558777618452
+578,80243,443397.952,80343,443297.952,77,5,0,NA,NA,NA,NA,0.0504858496238012,0.705,70.5,1,98.9948280613114,0.94243684042213,70.5,263.683182844879,215.232421875,-2.38896989822388,-2.44427275657654,0.0864610597578287
+579,80243,443297.952,80343,443197.952,78,5,0,NA,NA,NA,NA,0.031216032019438,0.395,39.5,1,96.8888706928871,0.977201481903676,39.5,275.738108284866,233.773406982422,-2.38461017608643,-2.48059248924255,0.108277699800762
+580,80243,443197.952,80343,443097.952,79,5,0,NA,NA,NA,NA,0.0115647569539578,0.1625,16.25,1,92.2068700432412,0.957733456610751,16.25,229.536825326773,196.468826293945,-2.5447387960222,-2.62711358070374,0.118458066801214
+581,80243,443097.952,80343,442997.952,80,5,0,NA,NA,NA,NA,0.000287994173668267,0,0,0,NA,NA,0,NA,NA,-2.62939377625783,-2.67835426330566,0.0907372850582976
+582,80243,442997.952,80343,442897.952,81,5,0,NA,NA,NA,NA,-0.00156649688058678,0,0,0,NA,NA,0,NA,NA,-2.50666120317247,-2.60552525520325,0.126072671531642
+583,80243,442897.952,80343,442797.952,82,5,0,NA,NA,NA,NA,-0.0308838423151246,0,0,0,NA,NA,0,NA,NA,-2.34661149978638,-2.43114280700684,0.0718327867311021
+584,80243,442797.952,80343,442697.952,83,5,0,NA,NA,NA,NA,-0.0365042065131274,0,0,0,NA,NA,0,NA,NA,-2.3248528374566,-2.34817743301392,0.0425536736544303
+585,80243,442697.952,80343,442597.952,84,5,0,NA,NA,NA,NA,-0.0620767766713107,0,0,0,NA,NA,0,NA,NA,-2.40333519379298,-2.47863554954529,0.0657699467718815
+586,80243,442597.952,80343,442497.952,85,5,1.5,0.015,7.32511074383651,0.222222222222222,NA,-0.0544838380254805,0,0,0,NA,NA,0,NA,NA,-2.51763004726834,-2.60434150695801,0.110842584653343
+587,80243,442497.952,80343,442397.952,86,5,0,NA,NA,NA,NA,-0.0362343898681866,0,0,0,NA,NA,0,NA,NA,-2.61888519922892,-2.70642256736755,0.118771473162648
+588,80243,442397.952,80343,442297.952,87,5,0.25,0.0025,0,0,NA,-0.0304917136759468,0,0,0,NA,NA,0,NA,NA,-2.71169235971239,-2.8091676235199,0.145276478576937
+589,80243,442297.952,80343,442197.952,88,5,0,NA,NA,NA,NA,-0.0267853060794005,0,0,0,NA,NA,0,NA,NA,-2.81792348623276,-2.86999988555908,0.115544863013309
+590,80243,442197.952,80343,442097.952,89,5,0,NA,NA,NA,NA,-0.0909998248193006,0,0,0,NA,NA,0,NA,NA,-2.82966640260485,-2.86748194694519,0.0950417559664197
+591,80243,442097.952,80343,441997.952,90,5,0,NA,NA,NA,NA,-0.04287443630094,0.0025,0.25,1,0,NA,0.25,5,5,-2.66926593250699,-2.76133799552917,0.178039929240995
+592,80243,441997.952,80343,441897.952,91,5,18.25,0.0304166666666667,8.73176048034031,0.230295566502463,11.280525881038,-0.00256584729966562,0.0275,2.75,2,61.3556756349917,0.588688946015424,1.75,5.75012796575373,0,-2.29410912593206,-2.49218153953552,0.212065303030361
+593,80243,441897.952,80343,441797.952,92,5,19.25,0.0240625,6.30127188927508,0.16379794973545,12.27150850948,-0.040525086854957,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,7.6502815246582,5,-2.09148714277479,-2.14218211174011,0.104996501861486
+594,80243,441797.952,80343,441697.952,93,5,15.75,0.039375,13.4327341601763,0.32173364075538,12.00693909433,-0.0729864670702955,0.0025,0.25,1,0,NA,0.25,0,0,-2.28380680084229,-2.62867617607117,0.319670284619068
+595,80243,441697.952,80343,441597.952,94,5,0,NA,NA,NA,NA,-0.0455732100459863,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,83.2179587227958,78.1025009155273,-2.64851710531447,-2.76564383506775,0.22800555998079
+596,80243,441597.952,80343,441497.952,95,5,0,NA,NA,NA,NA,-0.0474275839727488,0,0,0,NA,NA,0,NA,NA,-2.68986308574677,-2.75304746627808,0.0811903959882416
+597,80243,441497.952,80343,441397.952,96,5,8,0.016,4.0882046667893,0.18974358974359,23.7928917107825,-0.0887323667295277,0,0,0,NA,NA,0,NA,NA,-2.69405722618103,-2.76637744903564,0.0711920902931608
+598,80243,441397.952,80343,441297.952,97,5,86.75,0.8675,35.7837067409037,0.928434197886647,NA,-0.145349142681807,0,0,0,NA,NA,0,NA,NA,-2.79249942302704,-2.90034151077271,0.144576780414272
+599,80243,441297.952,80343,441197.952,98,5,0,NA,NA,NA,NA,-0.18729235239327,0,0,0,NA,NA,0,NA,NA,-2.80010657840305,-2.87756824493408,0.104244480704821
+600,80243,441197.952,80343,441097.952,99,5,11.5789473684211,0.11,26.3767427378953,0.40530303030303,NA,0.103073477045109,0.7925,79.25,1,99.350989933666,0.97582302453963,79.25,36.3659259423096,0,-2.78597380717595,-2.82254147529602,0.069723234658783
+601,80343,451097.952,80443,450997.952,0,6,92.75,0.9275,37.8975942390465,0.894429469901168,NA,0.0511902012526116,0.5925,59.25,3,97.059354246222,0.750723594011827,55.5,0.325194378945395,0,4.35690263907115,2.08496642112732,2.02492533426943
+602,80343,450997.952,80443,450897.952,1,6,77,0.385,22.6186924241907,0.768805874840358,10,0.0444429497253441,0.4275,42.75,4,92.8564570101636,0.733832397587856,26.75,1.37302389758372,0,3.90156124532223,1.71324419975281,1.85513281948742
+603,80343,450897.952,80443,450797.952,2,6,88.75,0.44375,19.1699710304075,0.444209039548023,10,0.0393083454096632,0.5925,59.25,1,98.4255810267197,0.867052583472974,59.25,0.713679897131296,0,1.70795580744743,1.43007731437683,0.439179952922683
+604,80343,450797.952,80443,450697.952,3,6,76.25,0.7625,35.9664830005032,0.827868852459016,NA,0.0168205638734162,0.2925,29.25,3,93.5874723867267,0.753316887792519,27.25,1.36752136752137,0,1.16703740879893,0.786677062511444,0.314861660472221
+605,80343,450697.952,80443,450597.952,4,6,44,0.044,6.42864303892562,0.313425925925926,10.4721359549996,0.0263039135208965,0.2475,24.75,5,87.5573523337184,0.783493224831088,17.75,0.858585858585859,0,0.680274546146393,0.327039241790771,0.375935917880652
+606,80343,450597.952,80443,450497.952,5,6,38.5,0.0385,6.19050187653346,0.264900362318841,12.4305931887912,0.0292858784937016,0.2525,25.25,3,91.858793324024,0.852177608603263,23,0.99009900990099,0,0.411774917505682,0.0904898643493652,0.371272981409981
+607,80343,450497.952,80443,450397.952,6,6,49.75,0.0995,10.2636164431404,0.442555210489993,13.1529824450829,0.0078372872005275,0.17,17,4,82.3037669919093,0.817758428672674,7.25,1.25,0,0.239284066638599,0.0155569855123758,0.337279348758523
+608,80343,450397.952,80443,450297.952,7,6,27.75,0.0213461538461538,3.7144949879446,0.185073032274525,12.6948190993453,-0.0157030538012077,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,6.01015254429409,5,0.144576087746827,-0.00437506986781955,0.250700802370381
+609,80343,450297.952,80443,450197.952,8,6,18.5,0.0154166666666667,3.26839295074727,0.210016835016835,12.9918082864579,-0.00237708860748626,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,2.43872397286551,0,0.11000570623825,0.00515590235590935,0.168058347033811
+610,80343,450197.952,80443,450097.952,9,6,35.75,0.0510714285714286,7.85409397329611,0.399982137377095,13.3735006842892,0.00969840920564366,0.1,10,3,78.3524875281143,0.66832504145937,5,2.40533008575439,0,0.130182549357414,0.0585902035236359,0.12152149837839
+611,80343,450097.952,80443,449997.952,10,6,10.25,0.0113888888888889,3.14959676142023,0.254938271604938,21.4839017067542,0.00625400381863074,0.065,6.5,6,59.4001652385838,0.608712664666754,3.25,5.28638040102445,0,0.167995328083634,0.127417594194412,0.0676241122884126
+612,80343,449997.952,80443,449897.952,11,6,12.25,0.00765625,3.14709971122276,0.110912698412698,12.1246989319381,0.00412216244571937,0.04,4,2,68.0630069279063,0.696180555555556,2.5,9.10424220561981,0,0.170595186452071,0.157645836472511,0.0371988597166628
+613,80343,449897.952,80443,449797.952,12,6,6.5,0.00590909090909091,1.46717311107345,0.0934343434343434,19.1798906914478,-0.00584985844197035,0,0,0,NA,NA,0,NA,NA,0.0770372218103148,-0.0629331916570663,0.114548194887487
+614,80343,449797.952,80443,449697.952,13,6,8.5,0.00472222222222222,1.73802945433137,0.114197530864198,13.1736596881233,-0.0245089929008236,0.005,0.5,2,0,1,0.25,22.4767894744873,18.0277557373047,-0.223616384901106,-0.477614969015121,0.296024781043516
+615,80343,449697.952,80443,449597.952,14,6,11.75,0.01175,2.71067933012028,0.185555555555556,15.3621158925546,-0.0124965202661951,0,0,0,NA,NA,0,NA,NA,-0.791975697502494,-1.2439900636673,0.390733143374556
+616,80343,449597.952,80443,449497.952,15,6,19.75,0.0395,8.01015907753818,0.361699507389163,14.8704815926677,-0.0211351510018721,0.0075,0.75,1,44.4894453484604,1,0.75,9.41713587443034,7.07106781005859,-1.22075339158376,-1.45427012443542,0.258710801356976
+617,80343,449497.952,80443,449397.952,16,6,1.25,0.0025,0,0,21.9442719099992,-0.00960993390641306,0.0075,0.75,1,44.4894453484604,1,0.75,33.7397689819336,31.6227760314941,-1.38116667419672,-1.73706114292145,0.245576728873406
+618,80343,449397.952,80443,449297.952,17,6,8.5,0.0121428571428571,3.18332849897497,0.133189033189033,16.3255271403542,-0.000381947868427233,0.0125,1.25,1,58.1880425789518,1,1.25,11.6409862518311,7.07106781005859,-1.764128079017,-2.56556296348572,0.641249267129741
+619,80343,449297.952,80443,449197.952,18,6,21.75,0.0145,2.87971600900268,0.159823848238482,12.337216481872,-0.0391711426310792,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,5.59173366001674,5,-2.5721091479063,-3.11760520935059,0.662811509416532
+620,80343,449197.952,80443,449097.952,19,6,67.5,0.675,35.0519212449562,0.841358024691358,NA,0.017520457376304,0.27,27,2,94.3124407666573,0.873551106427819,26.5,1.64253280780934,0,-2.9668611685435,-3.26384782791138,0.469335911455332
+621,80343,449097.952,80443,448997.952,20,6,35.5,0.1775,16.4687552438802,0.524817518248175,47.169905660283,0.00460974483899463,0.06,6,1,83.7764057650598,0.972004479283315,6,0.416666666666667,0,-3.14690802494685,-3.31641936302185,0.271408164523168
+622,80343,448997.952,80443,448897.952,21,6,6.5,0.0216666666666667,6.92220182857502,0.302631578947368,25.5789935790533,0.00785458275443489,0.0325,3.25,3,63.8929039360284,0.770312948607522,2.75,30.9968041640062,25,-3.29140144586563,-3.35157251358032,0.103564557383806
+623,80343,448897.952,80443,448797.952,22,6,0.75,0.0025,0,0,21.7851130197758,0.0135125615664037,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,27.4474877251519,20,-3.35268284877141,-3.35999989509583,0.0198596106253845
+624,80343,448797.952,80443,448697.952,23,6,21.25,0.0236111111111111,5.29847906277976,0.239577065394059,13.0079852723767,-0.00120610300069529,0.0325,3.25,4,49.3286888608125,0.540625897215045,1.5,8.66948905357948,0,-3.35999989509583,-3.35999989509583,0.0003765464905349
+625,80343,448697.952,80443,448597.952,24,6,22.25,0.055625,10.6861680174348,0.46923593879239,10,-0.0155157638252422,0.025,2.5,2,58.1880425789518,0.605522682445759,1.25,21.9185459136963,0,-3.35999989509583,-3.35999989509583,0.000511340956321564
+626,80343,448597.952,80443,448497.952,25,6,13,0.0433333333333333,14.7696420486327,0.423420479302832,10,0.00135107283918842,0.03,3,3,56.9777156919704,0.575500303214069,1.75,2.91666666666667,0,-3.36959156394005,-3.38061094284058,0.011370021628603
+627,80343,448497.952,80443,448397.952,26,6,37,0.0616666666666667,9.19859306313117,0.369252853627854,13.5300566479165,-0.0240419790457236,0.03,3,3,53.6515440961723,0.575500303214069,1.5,2.91666666666667,0,-3.39505984385808,-3.41709566116333,0.0221763048935336
+628,80343,448397.952,80443,448297.952,27,6,23.75,0.0395833333333333,4.98771283159535,0.200405885337392,15.5901699437495,-0.0115818136898179,0.07,7,3,79.4270457812905,0.8805256869773,6.5,11.6177881785801,0,-3.40818518400192,-3.43707942962646,0.036170516444756
+629,80343,448297.952,80443,448197.952,28,6,45.5,0.151666666666667,13.4896385365755,0.471899224806202,14.6985531827679,0.00407185000109166,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,3.55486180232121,0,-3.37210808197657,-3.43010687828064,0.0725081339780132
+630,80343,448197.952,80443,448097.952,29,6,1.25,0.0025,0,0,19.9559313787066,-0.00563212483834832,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,7.61932033962674,0,-3.35626181960106,-3.4542031288147,0.108946834238254
+631,80343,448097.952,80443,447997.952,30,6,0.75,0.00375,1.25,0.0833333333333333,15,-0.00465045299889084,0,0,0,NA,NA,0,NA,NA,-3.4283380707105,-3.54811406135559,0.137150772223034
+632,80343,447997.952,80443,447897.952,31,6,7,0.0233333333333333,4.71021050059149,0.263333333333333,61.3391808366379,-0.00136228831359631,0,0,0,NA,NA,0,NA,NA,-3.47738695144653,-3.55628418922424,0.10056105130023
+633,80343,447897.952,80443,447797.952,32,6,23.25,0.0332142857142857,8.82673536582186,0.254091939806226,11.484062307474,0.0107883943380102,0.1575,15.75,1,92.0012465610797,0.881305637982196,15.75,3.18024347698878,0,-3.45989520847797,-3.54002332687378,0.0569043306198843
+634,80343,447797.952,80443,447697.952,33,6,44.75,0.0745833333333333,14.7264919083835,0.389645273489613,10.5901699437495,0.0930339134220412,0.63,63,2,97.1105549384265,0.89120476408612,59,6.70196806438385,0,-3.42662264903386,-3.45841646194458,0.0416891364194581
+635,80343,447697.952,80443,447597.952,34,6,6.75,0.00613636363636364,1.91379932667864,0.106421356421356,18.3316859694749,0.0538475232757514,0.49,49,2,97.4282138525017,0.886877828054299,48.75,9.41646385192871,0,-3.32400120794773,-3.42289471626282,0.136033032936028
+636,80343,447597.952,80443,447497.952,35,6,13.5,0.0225,6.25947645721839,0.186728395061728,16.0483559316354,-0.00878983461987446,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4.41421356201172,0,-3.14751893281937,-3.19172978401184,0.0439359272901787
+637,80343,447497.952,80443,447397.952,36,6,3,0.01,4.02035794887402,0.229166666666667,44.6770807914428,-0.0382686261439085,0,0,0,NA,NA,0,NA,NA,-3.20830053091049,-3.28644800186157,0.0889296639492727
+638,80343,447397.952,80443,447297.952,37,6,1.75,0.004375,1.01127124296868,0.0833333333333333,20.5901699437495,-0.0470656124933885,0,0,0,NA,NA,0,NA,NA,-3.3277732928594,-3.38020396232605,0.0852100610423916
+639,80343,447297.952,80443,447197.952,38,6,1.25,0.00416666666666667,1.09006472543938,0.0925925925925926,27.5228842229865,-0.0276077884528604,0,0,0,NA,NA,0,NA,NA,-3.41331878304482,-3.44356226921082,0.0386610898501753
+640,80343,447197.952,80443,447097.952,39,6,2.75,0.01375,4.56708931682659,0.305555555555556,18.0277563773199,0.0109095261410494,0.0625,6.25,2,81.4026561082449,0.84,6,10.4122883605957,0,-3.42978779474894,-3.47230076789856,0.0497808259776538
+641,80343,447097.952,80443,446997.952,40,6,0,NA,NA,NA,NA,-0.00739936330503951,0.0325,3.25,2,65.4338549075391,0.655469422911283,2.25,34.8246974945068,7.07106781005859,-3.2315050214529,-3.38631129264832,0.237282951176365
+642,80343,446997.952,80443,446897.952,41,6,0,NA,NA,NA,NA,-0.0328440664105028,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,30.0507627214704,25,-3.02819879849752,-3.22315883636475,0.248075016763299
+643,80343,446897.952,80443,446797.952,42,6,10,0.05,8.84846477163579,0.303418803418803,36.0555127546399,-0.0150980059994993,0.0025,0.25,1,0,NA,0.25,5,5,-3.42676857113838,-4.5,0.382756908014849
+644,80343,446797.952,80443,446697.952,43,6,27.5,0.275,25.3615855792105,0.748484848484849,NA,0.00990376397427553,0.13,13,1,90.6657843098624,0.935425545654139,13,1.64081683525672,0,-3.45166903734207,-4.24236917495728,0.338512463814072
+645,80343,446697.952,80443,446597.952,44,6,0,NA,NA,NA,NA,-0.0367537191174779,0,0,0,NA,NA,0,NA,NA,-3.34528901179632,-3.44196915626526,0.0896415834529902
+646,80343,446597.952,80443,446497.952,45,6,0,NA,NA,NA,NA,-0.0872382181198572,0,0,0,NA,NA,0,NA,NA,-3.25391075015068,-3.34924030303955,0.0769011633703678
+647,80343,446497.952,80443,446397.952,46,6,0,NA,NA,NA,NA,-0.175281072342768,0,0,0,NA,NA,0,NA,NA,-3.1437482436498,-3.20187950134277,0.0887074894541424
+648,80343,446397.952,80443,446297.952,47,6,0,NA,NA,NA,NA,-0.204199904175475,0,0,0,NA,NA,0,NA,NA,-3.05665326118469,-3.18138766288757,0.125886029858028
+649,80343,446297.952,80443,446197.952,48,6,1.75,0.004375,1.45833333333333,0.0972222222222222,20.833886713669,-0.201485660821199,0,0,0,NA,NA,0,NA,NA,-2.78785494963328,-2.99304819107056,0.240666335974721
+650,80343,446197.952,80443,446097.952,49,6,0,NA,NA,NA,NA,-0.205543858669698,0,0,0,NA,NA,0,NA,NA,-2.36570686101913,-2.69839954376221,0.242374881180475
+651,80343,446097.952,80443,445997.952,50,6,0,NA,NA,NA,NA,-0.0013871117826784,0.57,57,1,98.2919349628155,0.972640218878249,57,139.230071017617,100.498748779297,-2.06862316528956,-2.19671845436096,0.183720351460099
+652,80343,445997.952,80443,445897.952,51,6,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.0478516823735845,0.3675,36.75,1,96.5811989595545,0.982367721174897,36.75,90.8940374932322,56.5685424804688,-1.75944010168314,-1.94372415542603,0.205059377023079
+653,80343,445897.952,80443,445797.952,52,6,10,0.0333333333333333,8.20290498594418,0.478535353535354,12.4535599249993,-0.0775031848572871,0,0,0,NA,NA,0,NA,NA,-1.47703605890274,-1.63168454170227,0.207285255611574
+654,80343,445797.952,80443,445697.952,53,6,7.75,0.0258333333333333,7.78888088273375,0.418790849673203,21.7851130197758,-0.0703270294955291,0.045,4.5,3,62.3335933120036,0.650959860383944,2.5,7.7509421242608,0,-1.38391578197479,-1.56880557537079,0.16631583887294
+655,80343,445697.952,80443,445597.952,54,6,8.25,0.0825,16.5573073939918,0.656565656565657,NA,-0.184881270135193,0,0,0,NA,NA,0,NA,NA,-1.42614756027857,-1.48881471157074,0.119636156351384
+656,80343,445597.952,80443,445497.952,55,6,12.75,0.010625,3.99694874067953,0.233465608465608,10.1967233145832,-0.183543954039924,0,0,0,NA,NA,0,NA,NA,-1.69597191611926,-1.89850544929504,0.25990744524786
+657,80343,445497.952,80443,445397.952,56,6,0,NA,NA,NA,NA,-0.0931491272593848,0.3475,34.75,1,96.3348533717898,0.963797628744683,34.75,131.060114249909,112.361022949219,-2.1120268329978,-2.36157011985779,0.248678070756054
+658,80343,445397.952,80443,445297.952,57,6,0,NA,NA,NA,NA,0.169255058243871,1,100,1,100,NA,100,192.534381332397,134.629119873047,-2.47692199548086,-2.62359213829041,0.192678167570768
+659,80343,445297.952,80443,445197.952,58,6,0,NA,NA,NA,NA,0.204091840811307,0.95,95,1,99.8632718311308,0.972260748959778,95,217.837885324579,190.394317626953,-2.72484511137009,-2.80938839912415,0.111651267708392
+660,80343,445197.952,80443,445097.952,59,6,0,NA,NA,NA,NA,-0.114700013304282,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,196.701448880709,192.418823242188,-2.87571970621745,-2.91371870040894,0.0660747157633845
+661,80343,445097.952,80443,444997.952,60,6,0,NA,NA,NA,NA,-0.00881106276812716,0,0,0,NA,NA,0,NA,NA,-2.94674354791641,-2.97287154197693,0.0324966243856626
+662,80343,444997.952,80443,444897.952,61,6,0,NA,NA,NA,NA,-0.00810941858406295,0,0,0,NA,NA,0,NA,NA,-2.98556935787201,-3.00806021690369,0.0289851828430137
+663,80343,444897.952,80443,444797.952,62,6,0,NA,NA,NA,NA,0.0901555981316778,0.73,73,1,99.1030975159931,0.979761181946974,73,163.549532302438,116.619033813477,-3.02924199402332,-3.05999994277954,0.0335386525231495
+664,80343,444797.952,80443,444697.952,63,6,0,NA,NA,NA,NA,0.0249006990501948,0.3675,36.75,1,96.5811989595545,0.970612868624829,36.75,128.290528589365,93.9414672851562,-3.02031016349792,-3.05663728713989,0.041727345064349
+665,80343,444697.952,80443,444597.952,64,6,0,NA,NA,NA,NA,-0.110221205798443,0,0,0,NA,NA,0,NA,NA,-3.02154661715031,-3.04055619239807,0.0257478002487336
+666,80343,444597.952,80443,444497.952,65,6,0.25,0.0025,0,0,NA,-0.0153446287966619,0,0,0,NA,NA,0,NA,NA,-3.01902788877487,-3.0356457233429,0.0355325818161494
+667,80343,444497.952,80443,444397.952,66,6,0,NA,NA,NA,NA,-0.0476065140674473,0,0,0,NA,NA,0,NA,NA,-2.95201913515727,-3.02201151847839,0.101463324272656
+668,80343,444397.952,80443,444297.952,67,6,0,NA,NA,NA,NA,-0.232624693652615,0,0,0,NA,NA,0,NA,NA,-2.69265404343605,-2.88658165931702,0.216323086016318
+669,80343,444297.952,80443,444197.952,68,6,3,0.0075,2.3659978571748,0.0833333333333333,32.1387261762241,-0.36647820468992,0,0,0,NA,NA,0,NA,NA,-2.32183589537938,-2.49699640274048,0.212010893979514
+670,80343,444197.952,80443,444097.952,69,6,54.75,0.136875,11.0439273543702,0.391025641025641,13.873774391991,-0.0294816444923345,0.045,4.5,3,66.5798684792646,0.650959860383944,2.5,0.277777777777778,0,-2.04715234786272,-2.20004439353943,0.148533585775938
+671,80343,444097.952,80443,443997.952,70,6,56.25,0.1125,6.79508279105806,0.197727272727273,15.6725711478091,0.050468295429564,0.5825,58.25,2,98.0044924584924,0.955950168628261,58,1.35664855564101,0,-1.9962590833505,-2.11702990531921,0.127717415056713
+672,80343,443997.952,80443,443897.952,71,6,15.75,0.0525,9.33024009063562,0.276340996168582,18.6338998124982,-0.034465440160966,0.09,9,3,75.3585149481611,0.725274725274725,4.5,19.0753909216987,5,-2.29152474552393,-2.49202990531921,0.252543653346968
+673,80343,443897.952,80443,443797.952,72,6,0,NA,NA,NA,NA,0.0504137833531877,0.61,61,1,98.5243747403739,0.949392712550607,61,89.5152142008797,25,-2.57816723982493,-2.62088489532471,0.0740017311011938
+674,80343,443797.952,80443,443697.952,73,6,0,NA,NA,NA,NA,-0.0213751205612425,0.39,39,2,93.3818139464019,0.868623978979837,21.75,168.735538238134,126.194297790527,-2.63884285092354,-2.65409541130066,0.0252004936900168
+675,80343,443697.952,80443,443597.952,74,6,0,NA,NA,NA,NA,0.105713345537661,0.8875,88.75,1,99.6763695533234,0.96031746031746,88.75,246.71552614024,180.623916625977,-2.6414933403333,-2.65901613235474,0.0320847087408664
+676,80343,443597.952,80443,443497.952,75,6,0,NA,NA,NA,NA,0.0212227812322089,0.5575,55.75,1,98.2142154717639,0.929378531073446,55.75,309.662753939094,260.048065185547,-2.60448385775089,-2.65443134307861,0.0514780806241458
+677,80343,443497.952,80443,443397.952,76,6,0,NA,NA,NA,NA,0.0503496365662431,0.47,47,1,97.5860530790582,0.934938191281718,47,351.488138077107,311.4482421875,-2.5239358941714,-2.57299566268921,0.0542210195268734
+678,80343,443397.952,80443,443297.952,77,6,0,NA,NA,NA,NA,-0.018566854760893,0.0075,0.75,1,44.4894453484604,1,0.75,318.223724365234,317.529541015625,-2.48196470737457,-2.5343873500824,0.0547424699205768
+679,80343,443297.952,80443,443197.952,78,6,0,NA,NA,NA,NA,-0.0442682967078872,0.115,11.5,1,89.742951983695,0.942054179342315,11.5,233.579182168712,205.548034667969,-2.5522646009922,-2.65685653686523,0.101489062008629
+680,80343,443197.952,80443,443097.952,79,6,0,NA,NA,NA,NA,0.143407352624772,0.745,74.5,1,99.1654268803843,0.965048407954982,74.5,162.128511851266,93.0053787231445,-2.66380353768667,-2.70434260368347,0.0672118298557495
+681,80343,443097.952,80443,442997.952,80,6,0,NA,NA,NA,NA,0.0482598768924026,0.2925,29.25,1,95.5315755048205,0.939995999733315,29.25,100.639885339981,75,-2.68195343017578,-2.70939016342163,0.0564900080079726
+682,80343,442997.952,80443,442897.952,81,6,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.0153214030907839,0.0225,2.25,3,52.2992512649976,0.658994032395567,1.75,23.9671785566542,15.8113880157471,-2.55916378895442,-2.62740874290466,0.128709024028138
+683,80343,442897.952,80443,442797.952,82,6,0,NA,NA,NA,NA,0.0119622811597947,0.065,6.5,1,84.6193541959806,0.97391417764445,6.5,46.0612317598783,35,-2.41072379052639,-2.49106216430664,0.110404194665761
+684,80343,442797.952,80443,442697.952,83,6,0.75,0.00375,1.76776695296637,0.0416666666666667,30,-0.0267462102966965,0.03,3,1,74.8763016215986,0.939357186173438,3,24.7327783902486,15,-2.39710813760757,-2.45665979385376,0.090092554482507
+685,80343,442697.952,80443,442597.952,84,6,0,NA,NA,NA,NA,-0.0275463962070353,0.0275,2.75,1,73.5251216233933,1,2.75,91.4882236827504,83.8152694702148,-2.46000418066978,-2.50760722160339,0.0765908611250941
+686,80343,442597.952,80443,442497.952,85,6,10.75,0.026875,9.64749774233247,0.410840201465201,11.1803398874989,-0.0178006747881227,0.045,4.5,2,70.5144465099844,0.806088811324413,3,7.48558945126004,0,-2.41158582766851,-2.45368456840515,0.0567914010317056
+687,80343,442497.952,80443,442397.952,86,6,6.25,0.03125,10.129382731779,0.408333333333333,20.6155281280883,0.0399117392556218,0.475,47.5,1,97.6265657883157,0.864718614718615,47.5,22.6276888194837,0,-2.39056161046028,-2.51040649414062,0.139090497356708
+688,80343,442397.952,80443,442297.952,87,6,7.25,0.00805555555555556,2.75219300112813,0.183501683501683,14.7615369842067,0.000618776983646967,0.155,15.5,3,85.191143976158,0.824676747753671,11,15.9177207023867,0,-2.36661720275879,-2.56287050247192,0.231059739393525
+689,80343,442297.952,80443,442197.952,88,6,10,0.0125,5.1959398436121,0.163773148148148,15.238178771626,-0.00506410862961502,0.0375,3.75,4,52.1550716075299,0.480519480519481,1.25,6.10018768310547,0,-2.40034404397011,-2.65876388549805,0.254530830592186
+690,80343,442197.952,80443,442097.952,89,6,21.75,0.0725,18.2569537437085,0.346188822751323,17.2075922005613,-0.039128357181944,0.0225,2.25,2,57.1671054080984,0.573742540494459,1.5,6.89678531222873,5,-2.44789499044418,-2.70097637176514,0.277982018589841
+691,80343,442097.952,80443,441997.952,90,6,25.5,0.0425,9.17553533918981,0.265674891146589,12.5537459185383,-0.0403680436641116,0.025,2.5,3,52.7822223034531,0.526627218934911,1.5,4.5,0,-2.47670322656631,-2.64712452888489,0.219051000560355
+692,80343,441997.952,80443,441897.952,91,6,14.5,0.0725,19.6681620206272,0.449305555555556,20.6155281280883,-0.0923643061689472,0.035,3.5,2,65.4774238937655,0.689119170984456,1.75,7.88017681666783,5,-2.4665414839983,-2.75609803199768,0.255490222543295
+693,80343,441897.952,80443,441797.952,92,6,8.75,0.0291666666666667,11.3527904274352,0.25,25.4041092821143,-0.170700752632692,0,0,0,NA,NA,0,NA,NA,-2.57080638408661,-2.84920907020569,0.363163307171051
+694,80343,441797.952,80443,441697.952,93,6,0.25,0.0025,0,0,NA,-0.0510838970122859,0,0,0,NA,NA,0,NA,NA,-2.77805995941162,-2.94007635116577,0.239306102555144
+695,80343,441697.952,80443,441597.952,94,6,0,NA,NA,NA,NA,-0.000846066176454769,0,0,0,NA,NA,0,NA,NA,-2.88485101858775,-2.9517297744751,0.099865723665657
+696,80343,441597.952,80443,441497.952,95,6,0.75,0.0025,0,0,40.8597668174365,-0.0530851553194225,0,0,0,NA,NA,0,NA,NA,-2.78947615623474,-2.90843963623047,0.100014462538453
+697,80343,441497.952,80443,441397.952,96,6,5.25,0.0075,2.79430189940471,0.202380952380952,15.1214796331662,-0.109312825478773,0,0,0,NA,NA,0,NA,NA,-2.67505969603856,-2.74055361747742,0.0537097443869005
+698,80343,441397.952,80443,441297.952,97,6,13.25,0.06625,9.53951998503041,0.384615384615385,70,-0.159557587411255,0,0,0,NA,NA,0,NA,NA,-2.67938414216042,-2.74286818504333,0.0581584507547629
+699,80343,441297.952,80443,441197.952,98,6,14,0.07,15.8309187712717,0.552083333333333,10,-0.118171736649238,0.0425,4.25,1,79.7330921014386,0.7911227154047,4.25,1.76470588235294,0,-2.80814160903295,-2.90870642662048,0.111185336836618
+700,80343,441197.952,80443,441097.952,99,6,4.21052631578947,0.04,14.8700744326897,0.4375,NA,0.121297195308107,0.71,71,2,98.6886855942237,0.838563864135348,70.5,48.0601198505348,0,-2.91742208600044,-2.96786046028137,0.0841310778446366
+701,80443,451097.952,80543,450997.952,0,7,66.5,0.3325,20.6429130343891,0.605236270753512,10,0.025275548392674,0.3075,30.75,3,93.0089868738248,0.857538327046672,28,1.5714168393515,0,5.29031467437744,4.13984632492065,1.25692321758219
+702,80443,450997.952,80543,450897.952,1,7,93,0.465,19.7175813825317,0.546396396396396,15,-0.0110843226664292,0.1675,16.75,3,89.2253540172289,0.774133107466441,15.25,0.0746268656716418,0,3.14404010772705,2.39395427703857,1.20893454096926
+703,80443,450897.952,80543,450797.952,2,7,69,0.345,27.8041811540513,0.768824868824869,10,0.0112119161830924,0.2675,26.75,4,89.8385867941243,0.766574121558295,20.25,1.46844313077838,0,2.09194042947557,1.68318903446198,0.66375924368287
+704,80443,450797.952,80543,450697.952,3,7,32,0.0533333333333333,7.22345167312869,0.353949535789158,15.0887913084729,0.0272498161580734,0.41,41,4,92.4432809272389,0.769895611179706,26.75,5.29140299122508,0,1.32044710715612,1.13997089862823,0.26663849572491
+705,80443,450697.952,80543,450597.952,4,7,14.75,0.0105357142857143,3.03385612512224,0.235485347985348,13.6548400388991,0.0122578314325983,0.0875,8.75,3,76.0789223527767,0.754369390647142,5.25,6.32951534816197,0,1.18530449602339,1.02082550525665,0.266001634095845
+706,80443,450597.952,80543,450497.952,5,7,35.75,0.0715,9.68911748727655,0.461492281303602,16.0879090608635,0.0406610378539517,0.385,38.5,3,95.0823104362545,0.810393863655951,35.25,3.35878221090738,0,1.17345164716244,0.930447995662689,0.391755763154357
+707,80443,450497.952,80543,450397.952,6,7,60.75,0.10125,6.85594108439874,0.234315134099617,11.3620113459733,0.0270619132013962,0.3875,38.75,3,92.1860425213194,0.776584317937701,20.5,1.61498371247322,0,1.089520447784,0.7809077501297,0.486698519891268
+708,80443,450397.952,80543,450297.952,7,7,82.25,0.41125,19.9154610799209,0.492354740061162,10,0.0206357884833051,0.2675,26.75,4,91.2023250741994,0.837309236237599,24,0.373831775700935,0,0.963362048069636,0.527512907981873,0.589672542009668
+709,80443,450297.952,80543,450197.952,8,7,51.25,0.128125,10.8330596612858,0.439219173441734,10,0.00755594745998678,0.205,20.5,1,93.6387867289635,0.895901106050748,20.5,0.48780487804878,0,0.801964385641946,0.42330938577652,0.652065542137107
+710,80443,450197.952,80543,450097.952,9,7,32.25,0.1075,20.2964154283824,0.527837902837903,26.6666666666667,0.0177102145924619,0.24,24,4,89.9616182847875,0.80110159118727,19,2.6543744802475,0,0.682550105783674,0.359696596860886,0.593919032820797
+711,80443,450097.952,80543,449997.952,10,7,19.5,0.065,12.9990664729471,0.376523297491039,28.8001831488009,-0.0222936893126609,0.0175,1.75,2,53.5456806074901,0.872773536895674,1.5,1.42857142857143,0,0.48306747029225,0.255888432264328,0.39175515633629
+712,80443,449997.952,80543,449897.952,11,7,20.75,0.02075,5.23275014797739,0.224587301587302,14.4772075918673,-0.00118544419299269,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4,0,0.32031933301025,0.201497167348862,0.227923506655956
+713,80443,449897.952,80543,449797.952,12,7,19,0.02375,5.46916571055742,0.259610370004392,17.1087528970763,-0.00178856148371324,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,4.57024683271136,0,0.194578940669696,0.0680798292160034,0.186624039855816
+714,80443,449797.952,80543,449697.952,13,7,13,0.00928571428571429,3.41756151860722,0.178494124922696,11.79741401887,0.000209857403706337,0.015,1.5,3,37.593984962406,0.419869470630892,1,9.01046593983968,5,-0.121104736975718,-0.261951625347137,0.273766031761973
+715,80443,449697.952,80543,449597.952,14,7,16,0.02,5.82091092554756,0.302239691166322,12.9696845975571,0.018061340583663,0.185,18.5,2,89.1727280561854,0.848985370457763,14.25,5.27487664609342,0,-0.664792860547701,-0.895622551441193,0.294782763053014
+716,80443,449597.952,80543,449497.952,15,7,3.25,0.00361111111111111,0.670614878436971,0.0648148148148148,16.8954922773482,0.00024156801717254,0,0,0,NA,NA,0,NA,NA,-1.0551959209972,-1.14333093166351,0.153848200865141
+717,80443,449497.952,80543,449397.952,16,7,21.5,0.0716666666666667,9.62902670463862,0.479035639412998,10,-0.0195976229314476,0,0,0,NA,NA,0,NA,NA,-1.21420988440514,-1.28075659275055,0.0829621254604169
+718,80443,449397.952,80543,449297.952,17,7,1.5,0.003,0.707106781186548,0.0166666666666667,15.6524758424985,0.00772896031096934,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,15.2291638510568,7.07106781005859,-1.3139494922426,-1.42066931724548,0.122113231376374
+719,80443,449297.952,80543,449197.952,18,7,37.25,0.124166666666667,15.2403622853043,0.489027777777778,11.937129433614,-0.0147054956901957,0.0325,3.25,2,70.3625424207658,0.827734711455642,3,2.24267372718224,0,-1.48699464400609,-1.76085007190704,0.351329742381781
+720,80443,449197.952,80543,449097.952,19,7,51,0.17,15.7052599907289,0.507602121136797,11.380711874577,0.0290402597055481,0.375,37.5,2,94.841200334701,0.848727272727273,33.75,1.82426406860352,0,-1.91598158412509,-2.37045407295227,0.569123626371163
+721,80443,449097.952,80543,448997.952,20,7,71.25,0.35625,27.1405564365909,0.75806430650863,11.1803398874989,0.0766562615224393,0.7575,75.75,1,99.2159474776692,0.927780887211801,75.75,1.37647217099029,0,-2.42515687147776,-2.85183382034302,0.60414147011948
+722,80443,448997.952,80543,448897.952,21,7,64.25,0.6425,38.7288037750952,0.776913099870298,NA,0.08688867920544,0.7075,70.75,3,97.9082020283852,0.89075252233147,69.25,2.27910949653113,0,-3.03305850426356,-3.26432228088379,0.402479772237345
+723,80443,448897.952,80543,448797.952,22,7,23.75,0.059375,9.72621587362103,0.350077429345722,15.5901699437495,0.0487444082661568,0.4,40,1,96.9413745785043,0.892290249433107,40,3.15003700256348,0,-3.28586880366007,-3.35357117652893,0.132291585087576
+724,80443,448797.952,80543,448697.952,23,7,36.25,0.18125,16.7831284272144,0.508607198748044,38.0788655293195,-0.026968547836841,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0,-3.34302232662837,-3.35999989509583,0.0555696569608223
+725,80443,448697.952,80543,448597.952,24,7,4.25,0.02125,10.0459166547357,0.303240740740741,15.8113883008419,-0.00187247667240626,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,19.3604955673218,15,-3.35479874081082,-3.35999989509583,0.0216444361445486
+726,80443,448597.952,80543,448497.952,25,7,1,0.0025,0,0,38.7125810526972,-0.00117323060126637,0,0,0,NA,NA,0,NA,NA,-3.36513890822728,-3.37730860710144,0.0124501611936792
+727,80443,448497.952,80543,448397.952,26,7,10.75,0.0153571428571429,5.15741072895952,0.276190476190476,23.3153994528741,-0.00280127522448083,0.0025,0.25,1,0,NA,0.25,15,15,-3.39258514510261,-3.41392159461975,0.0262224186891757
+728,80443,448397.952,80543,448297.952,27,7,39.25,0.0560714285714286,8.37313912805336,0.270969498910675,11.7260056178562,-0.0234505174442165,0.07,7,3,79.6316802616589,0.7610513739546,6.25,6.75615562711443,0,-3.42819569508235,-3.44000005722046,0.0214265822431615
+729,80443,448297.952,80543,448197.952,28,7,13.75,0.0152777777777778,5.18008218674394,0.219592281356987,13.9621514654793,-0.00832061664807952,0,0,0,NA,NA,0,NA,NA,-3.43892391522725,-3.44538354873657,0.0144078661020407
+730,80443,448197.952,80543,448097.952,29,7,5.25,0.0105,3.97700165446546,0.0666666666666667,19.0429025265717,-0.00247252479253802,0,0,0,NA,NA,0,NA,NA,-3.46979224681854,-3.52441310882568,0.056044141276878
+731,80443,448097.952,80543,447997.952,30,7,1,0.00333333333333333,0.833333333333333,0.0555555555555556,29.1842346090081,-0.0200229166012286,0.005,0.5,1,30.8308651382582,1,0.5,23.6803398132324,22.3606796264648,-3.5622788005405,-3.60448575019836,0.0607773964981443
+732,80443,447997.952,80543,447897.952,31,7,24.25,0.0404166666666667,7.98593585542872,0.259293552812071,16.4369530273471,0.00917405145541125,0.1375,13.75,2,88.3871579302679,0.829138062547674,12.5,5.9367168079723,0,-3.55690246158176,-3.59355568885803,0.0479061757956957
+733,80443,447897.952,80543,447797.952,32,7,46.75,0.0779166666666667,16.7903691406017,0.437872932220758,10.5901699437495,0.00267604163556825,0.2,20,3,90.3640460614912,0.88556338028169,18.75,5.39142031669617,0,-3.44543474912643,-3.51632499694824,0.100633572246982
+734,80443,447797.952,80543,447697.952,33,7,14.25,0.011875,4.42319307355459,0.206481481481481,11.3620113459733,0.131645131896075,0.8525,85.25,1,99.5628383044854,0.800289055314676,85.25,7.9287902406933,0,-3.35984590318468,-3.40665793418884,0.11261977037108
+735,80443,447697.952,80543,447597.952,34,7,21.25,0.0236111111111111,4.61742035058026,0.145035792094616,15.0235622828028,0.0179644977340286,0.125,12.5,4,79.9182011449919,0.757983193277311,8,5.8187036895752,0,-3.17311769723892,-3.31088137626648,0.125993009012619
+736,80443,447597.952,80543,447497.952,35,7,8.25,0.00589285714285714,1.74560899014863,0.118877551020408,16.1738890841136,0.0122789893150616,0.1025,10.25,5,71.1333699987191,0.693189616890719,4.5,9.35412355748618,0,-3.10296294424269,-3.14978981018066,0.0738904455585605
+737,80443,447497.952,80543,447397.952,36,7,0,NA,NA,NA,NA,0.0226039420522284,0.0675,6.75,1,85.0052537126447,0.850364735956107,6.75,31.4479429456923,20.6155281066895,-3.11160212755203,-3.2414653301239,0.145664143355057
+738,80443,447397.952,80543,447297.952,37,7,0,NA,NA,NA,NA,-0.0317817823200312,0,0,0,NA,NA,0,NA,NA,-3.23252097765605,-3.3463294506073,0.178996702753243
+739,80443,447297.952,80543,447197.952,38,7,3.25,0.00541666666666667,1.89775073565638,0.125,13.0693654216063,-0.02442355103718,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,42.2336485726493,36.0555114746094,-3.37315305074056,-3.42866063117981,0.0944015820167069
+740,80443,447197.952,80543,447097.952,39,7,8.5,0.0121428571428571,4.39537657894837,0.228373015873016,11.939126172942,-0.00892474377236795,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,9.70437405904134,5,-3.44187331199646,-3.47717094421387,0.0653714681030134
+741,80443,447097.952,80543,446997.952,40,7,0.5,0.005,2.5,0.166666666666667,NA,-0.0387786489924474,0.0075,0.75,1,44.4894453484604,1,0.75,25,20,-3.48780302206675,-3.61445927619934,0.19737233434258
+742,80443,446997.952,80543,446897.952,41,7,10.75,0.026875,6.0723626996988,0.475396825396825,12.6538820320221,-0.0525596813115408,0.1425,14.25,2,88.0711209732918,0.857202356161123,12.5,3.20554418731154,0,-3.31428363588121,-3.50536298751831,0.219201633049208
+743,80443,446897.952,80543,446797.952,42,7,38.5,0.1925,17.2828216884317,0.444627192982456,45,0.0292683652184496,0.2925,29.25,5,86.1864518093751,0.746649776651777,18.25,2.15291468302409,0,-3.08885898192724,-3.22569251060486,0.264623571996836
+744,80443,446797.952,80543,446697.952,43,7,0,NA,NA,NA,NA,0.0187023385909561,0,0,0,NA,NA,0,NA,NA,-3.21808123588562,-3.24317455291748,0.066614404180263
+745,80443,446697.952,80543,446597.952,44,7,0,NA,NA,NA,NA,0.010082643772671,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,148.282071794782,138.293167114258,-3.27581334114075,-3.32216310501099,0.0525614077272714
+746,80443,446597.952,80543,446497.952,45,7,0,NA,NA,NA,NA,0.0129576274787723,0.01,1,1,52.6315789473684,0.747474747474748,1,184.031051635742,178.044921875,-3.28944555918376,-3.33936858177185,0.0665145568812485
+747,80443,446497.952,80543,446397.952,46,7,0,NA,NA,NA,NA,-0.0509360581110923,0,0,0,NA,NA,0,NA,NA,-3.2096734046936,-3.28206419944763,0.105384408020368
+748,80443,446397.952,80543,446297.952,47,7,0,NA,NA,NA,NA,-0.0123686353982703,0,0,0,NA,NA,0,NA,NA,-3.06018938620885,-3.19127178192139,0.141484150615211
+749,80443,446297.952,80543,446197.952,48,7,0,NA,NA,NA,NA,-0.106921208799431,0,0,0,NA,NA,0,NA,NA,-2.81913521554735,-3.01243805885315,0.264745587503997
+750,80443,446197.952,80543,446097.952,49,7,0,NA,NA,NA,NA,-0.0962829627562314,0.185,18.5,1,93.0265643427559,0.952807928268051,18.5,89.0174461570946,60,-2.50395508607229,-2.75891447067261,0.244018153894433
+751,80443,446097.952,80543,445997.952,50,7,0,NA,NA,NA,NA,0.128250339246879,0.7825,78.25,1,99.3133324321661,0.961036430937074,78.25,120.533773367397,61.8465843200684,-2.21807283825345,-2.39726853370667,0.258123050336202
+752,80443,445997.952,80543,445897.952,51,7,0,NA,NA,NA,NA,0.00445006090638344,0.22,22,1,94.042067560231,0.975502204801568,22,123.893282110041,102.95630645752,-1.65450884898504,-1.96390795707703,0.34486164936788
+753,80443,445897.952,80543,445797.952,52,7,0,NA,NA,NA,NA,-0.0591571854008362,0,0,0,NA,NA,0,NA,NA,-1.21894016530779,-1.30141246318817,0.134699670413916
+754,80443,445797.952,80543,445697.952,53,7,0,NA,NA,NA,NA,-0.222416279613972,0,0,0,NA,NA,0,NA,NA,-1.2239250044028,-1.3064911365509,0.0732832307654004
+755,80443,445697.952,80543,445597.952,54,7,4.25,0.010625,4.31187387191055,0.18125,10.2950849718747,-0.232949501089752,0,0,0,NA,NA,0,NA,NA,-1.3903536134296,-1.46881115436554,0.126919287735853
+756,80443,445597.952,80543,445497.952,55,7,7.75,0.00775,2.80701447184483,0.0863888888888889,10.4721359549996,-0.186736214840785,0,0,0,NA,NA,0,NA,NA,-1.59590405888028,-1.69760406017303,0.173722379315708
+757,80443,445497.952,80543,445397.952,56,7,0,NA,NA,NA,NA,0.0235560586448992,0.4825,48.25,1,97.686149992119,0.983806979191968,48.25,141.534663225085,106.066017150879,-1.99498378237089,-2.24438810348511,0.283578060266851
+758,80443,445397.952,80543,445297.952,57,7,0,NA,NA,NA,NA,0.183753427847987,0.995,99.5,1,99.9867925566623,1,99.5,175.542950098239,115.108642578125,-2.43067264556885,-2.56977343559265,0.217257986433443
+759,80443,445297.952,80543,445197.952,58,7,0,NA,NA,NA,NA,0.0962687001706217,0.6425,64.25,1,98.697022509981,0.982553828707675,64.25,151.275731186922,96.1769180297852,-2.68572425842285,-2.7679488658905,0.104251119195258
+760,80443,445197.952,80543,445097.952,59,7,0,NA,NA,NA,NA,-0.096172366165556,0,0,0,NA,NA,0,NA,NA,-2.82564812236362,-2.87805080413818,0.0764484337500497
+761,80443,445097.952,80543,444997.952,60,7,0.25,0.0025,0,0,NA,-0.00672535503989252,0,0,0,NA,NA,0,NA,NA,-2.86767965555191,-2.92490577697754,0.0861605753870831
+762,80443,444997.952,80543,444897.952,61,7,0,NA,NA,NA,NA,-0.0199224318586812,0,0,0,NA,NA,0,NA,NA,-2.92646667692396,-2.99863386154175,0.0981953778902309
+763,80443,444897.952,80543,444797.952,62,7,0,NA,NA,NA,NA,-0.0340722737891792,0,0,0,NA,NA,0,NA,NA,-3.00482519467672,-3.05713391304016,0.0847785194531434
+764,80443,444797.952,80543,444697.952,63,7,0.25,0.0025,0,0,NA,-0.0435012107774674,0,0,0,NA,NA,0,NA,NA,-2.99868676397536,-3.05543565750122,0.095721872145158
+765,80443,444697.952,80543,444597.952,64,7,1.25,0.0025,0,0,15.8113883008419,-0.0688941690193678,0,0,0,NA,NA,0,NA,NA,-2.97495806217194,-3.01617574691772,0.0840423986194579
+766,80443,444597.952,80543,444497.952,65,7,0,NA,NA,NA,NA,-0.0232536300072024,0,0,0,NA,NA,0,NA,NA,-2.9916714032491,-3.02649474143982,0.0619020144999159
+767,80443,444497.952,80543,444397.952,66,7,0,NA,NA,NA,NA,-0.0464380422467366,0,0,0,NA,NA,0,NA,NA,-2.97697265942891,-3.02397847175598,0.062521101716614
+768,80443,444397.952,80543,444297.952,67,7,0.25,0.0025,0,0,NA,-0.294418192626908,0,0,0,NA,NA,0,NA,NA,-2.81275763114293,-2.94331932067871,0.165415930578608
+769,80443,444297.952,80543,444197.952,68,7,2,0.00333333333333333,0.555555555555556,0.037037037037037,20.6155281280883,-0.37319505225867,0,0,0,NA,NA,0,NA,NA,-2.44950432247586,-2.57553458213806,0.232769829965843
+770,80443,444197.952,80543,444097.952,69,7,25.75,0.2575,32.4229244812081,0.603559870550162,NA,-0.125359322589211,0.0325,3.25,3,57.0700072594823,0.598047660063164,1.75,16.1247385465182,0,-2.00294509530067,-2.2231068611145,0.334863864784016
+771,80443,444097.952,80543,443997.952,70,7,54.75,0.1825,19.0145807237373,0.643848848848849,14.5246277368648,0.0199298994537094,0.275,27.5,5,85.3493859980493,0.798994974874372,14,1.27595762772994,0,-1.50253082646264,-1.83007919788361,0.45137670901517
+772,80443,443997.952,80543,443897.952,71,7,13.75,0.034375,3.99246030777479,0.189903846153846,20.010844391121,-0.0184830209452775,0.0925,9.25,1,87.9580013362782,0.945806801246444,9.25,0.675675675675676,0,-2.0569364130497,-2.46453499794006,0.437183957459671
+773,80443,443897.952,80543,443797.952,72,7,0,NA,NA,NA,NA,-0.0710583624608989,0.0075,0.75,1,44.4894453484604,1,0.75,153.360209147135,150,-2.54233336448669,-2.617356300354,0.117626826376669
+774,80443,443797.952,80543,443697.952,73,7,0,NA,NA,NA,NA,0.0312503548823588,0.5175,51.75,1,97.9468626646641,0.940784603997039,51.75,182.039918245325,157.003189086914,-2.63111593325933,-2.69303727149963,0.0666093930134033
+775,80443,443697.952,80543,443597.952,74,7,0,NA,NA,NA,NA,-0.0486057481344324,0.295,29.5,2,94.3368242899093,0.927089547292371,28.75,194.73454724328,160.078109741211,-2.70226751433478,-2.72870826721191,0.0404908507859142
+776,80443,443597.952,80543,443497.952,75,7,0,NA,NA,NA,NA,-0.123116102975328,0,0,0,NA,NA,0,NA,NA,-2.65599940220515,-2.71406054496765,0.0593407652344967
+777,80443,443497.952,80543,443397.952,76,7,0,NA,NA,NA,NA,-0.100901724953437,0.09,9,1,87.719298245614,0.926739926739927,9,310.849931504991,286.574584960938,-2.54484136899312,-2.57372426986694,0.0476082860745919
+778,80443,443397.952,80543,443297.952,77,7,0,NA,NA,NA,NA,-0.010061080003361,0.225,22.5,1,94.1674468064267,0.927870166299339,22.5,254.28915049235,219.203109741211,-2.5271287229326,-2.54596138000488,0.0262913717459559
+779,80443,443297.952,80543,443197.952,78,7,0,NA,NA,NA,NA,-0.18194119096559,0,0,0,NA,NA,0,NA,NA,-2.60486869017283,-2.65532875061035,0.0479097892424455
+780,80443,443197.952,80543,443097.952,79,7,0,NA,NA,NA,NA,-0.104364652377553,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,88.5063995361328,74.3303451538086,-2.6453296078576,-2.68179678916931,0.0747102977955693
+781,80443,443097.952,80543,442997.952,80,7,2,0.01,2.81556118107962,0.226190476190476,25,0.109040317765703,0.6225,62.25,1,98.5923763102686,0.97157718216184,62.25,45.3738036864254,5,-2.50682046016057,-2.67499375343323,0.291140091843381
+782,80443,442997.952,80543,442897.952,81,7,12.25,0.0408333333333333,6.74789152509526,0.310606060606061,14.9071198499986,0.00405106147547485,0.1275,12.75,2,84.4093715978921,0.841912854461022,6.5,27.5990875842525,0,-2.18759441375732,-2.49446582794189,0.484918545774031
+783,80443,442897.952,80543,442797.952,82,7,7.75,0.0155,4.32654564146348,0.306928104575163,16.0827625302982,-0.00116769004762318,0.04,4,2,68.381247698108,0.826388888888889,3,20.6828261613846,5,-2.03522024552027,-2.24290704727173,0.36013171322464
+784,80443,442797.952,80543,442697.952,83,7,14,0.0155555555555556,4.55751223763811,0.279666053216778,13.5853030693493,0.00197126411966565,0.095,9.5,3,77.8120160244772,0.824607559414189,7,5.11209236948114,0,-2.12311049302419,-2.26509475708008,0.273454856820605
+785,80443,442697.952,80543,442597.952,84,7,7.25,0.03625,11.4205556653431,0.38474025974026,60.2079728939615,-0.017129434098988,0.0575,5.75,2,77.1254332313562,0.705275567344533,4.5,13.6479659702467,0,-2.25919857621193,-2.48868274688721,0.29179837422138
+786,80443,442597.952,80543,442497.952,85,7,10,0.0166666666666667,7.27804243423056,0.244708994708995,13.0901699437495,-0.0248200243606811,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,3,0,-2.27840587827894,-2.42735719680786,0.196124416505382
+787,80443,442497.952,80543,442397.952,86,7,23.5,0.0391666666666667,7.9038292158031,0.280259409206778,10.968564716807,0.00979667331936071,0.115,11.5,4,78.9136662773754,0.811676082862524,8.75,4.75933091536812,0,-2.21009886264801,-2.28308939933777,0.114099097438393
+788,80443,442397.952,80543,442297.952,87,7,19.25,0.0213888888888889,6.84401014942719,0.261437125055011,11.8409751155352,0.00259526126614674,0.0825,8.25,7,61.1300503397353,0.535775557573923,2.5,9.52984526663116,0,-2.14587575859494,-2.31983399391174,0.23819085141812
+789,80443,442297.952,80543,442197.952,88,7,16,0.0177777777777778,3.62537424892352,0.160619803476946,12.5828392448186,-0.0029196179563769,0.02,2,3,48.963481806847,0.591836734693878,1.5,3.75,0,-2.37449510892232,-2.68340229988098,0.331649030729915
+790,80443,442197.952,80543,442097.952,89,7,0.25,0.0025,0,0,NA,-0.05329985676246,0,0,0,NA,NA,0,NA,NA,-2.59290379948086,-2.75628042221069,0.282752407860514
+791,80443,442097.952,80543,441997.952,90,7,3.5,0.00875,1.67929543356633,0.143939393939394,17.3788318759096,-0.0465062732214642,0,0,0,NA,NA,0,NA,NA,-2.72616320186191,-2.832106590271,0.18413052474801
+792,80443,441997.952,80543,441897.952,91,7,0,NA,NA,NA,NA,-0.152521208735416,0,0,0,NA,NA,0,NA,NA,-2.83549286921819,-2.90592527389526,0.117923983865493
+793,80443,441897.952,80543,441797.952,92,7,2.5,0.00625,2.5,0.166666666666667,14.696899050982,-0.139749415777624,0,0,0,NA,NA,0,NA,NA,-2.92803568310208,-2.9682605266571,0.077104247261824
+794,80443,441797.952,80543,441697.952,93,7,0,NA,NA,NA,NA,-0.0417157671826135,0,0,0,NA,NA,0,NA,NA,-2.9825541973114,-3.00610756874084,0.0528078493754681
+795,80443,441697.952,80543,441597.952,94,7,0,NA,NA,NA,NA,0.00282348306603126,0.0025,0.25,1,0,NA,0.25,95.5248641967773,95.5248641967773,-2.98247008853488,-3.00608944892883,0.051815502450089
+796,80443,441597.952,80543,441497.952,95,7,0.75,0.0025,0,0,30.7404171307015,-0.051679907295038,0,0,0,NA,NA,0,NA,NA,-2.87681782245636,-2.95467257499695,0.105460724869749
+797,80443,441497.952,80543,441397.952,96,7,3,0.006,3,0.183333333333333,13.9589689355047,-0.159100946211256,0,0,0,NA,NA,0,NA,NA,-2.72193418608771,-2.76771783828735,0.0794587017943088
+798,80443,441397.952,80543,441297.952,97,7,2,0.005,2.5,0.166666666666667,20.6155281280883,-0.17544428858906,0,0,0,NA,NA,0,NA,NA,-2.73290332158407,-2.79169106483459,0.0678699414003562
+799,80443,441297.952,80543,441197.952,98,7,12,0.12,25.4887791707052,0.465277777777778,NA,-0.0893565368653799,0.205,20.5,1,93.6387867289635,0.913250921708957,20.5,9.26714869243343,0,-2.84764432907104,-2.89621376991272,0.0593605877863226
+800,80443,441197.952,80543,441097.952,99,7,0,NA,NA,NA,NA,0.0555538235114,0.49,49,1,97.7443609022556,0.913811678517561,49,44.9380348263955,11.1803398132324,-2.83135972420375,-2.91738843917847,0.111489350548748
+801,80543,451097.952,80643,450997.952,0,8,79.75,0.7975,37.8091202235483,0.813479623824451,NA,0.0539384789735777,0.6175,61.75,2,97.121489077831,0.722717369776193,55,0.947943868907357,0,5.21029007434845,4.22449111938477,1.07763597152138
+802,80543,450997.952,80643,450897.952,1,8,90.25,0.9025,37.3569609081722,0.909972299168975,NA,0.0414360464231868,0.565,56.5,1,98.2611567869712,0.841646872525732,56.5,0.199115044247788,0,3.39627984166145,2.42108225822449,1.1567463910117
+803,80543,450897.952,80643,450797.952,2,8,84,0.42,18.3677893757503,0.440298507462687,10,0.0350746997669921,0.565,56.5,1,98.2611567869712,0.90717230458405,56.5,0.350186440796979,0,2.63154116272926,1.94837391376495,0.815358497921456
+804,80543,450797.952,80643,450697.952,3,8,17,0.0113333333333333,3.47407736096691,0.229490941157608,12.1989159174992,0.0115413978470224,0.0575,5.75,8,48.626001002288,0.440023577954612,2,5.88443299998408,0,1.69324683398008,1.41691935062408,0.369417879339542
+805,80543,450697.952,80643,450597.952,4,8,12.75,0.0075,3.07980115325338,0.172393401805167,13.8529935535981,0.0188068081359961,0.105,10.5,6,69.6997615264347,0.62231489495633,4.25,6.27174563634963,0,1.60993706186612,1.41794145107269,0.202330217605179
+806,80543,450597.952,80643,450497.952,5,8,29.75,0.14875,21.6349972797456,0.375356125356125,10,0.0427671423621541,0.4125,41.25,4,93.3205970689906,0.664053751399776,29,3.27162005106608,0,1.62123090773821,1.48525214195251,0.154138493672762
+807,80543,450497.952,80643,450397.952,6,8,41.25,0.0589285714285714,8.71309279692732,0.333023809523809,12.1428571428571,0.0363020269877143,0.3375,33.75,5,87.4127339200773,0.717748120877435,12.75,3.362195248074,0,1.58695648113887,1.46597766876221,0.137487318719248
+808,80543,450397.952,80643,450297.952,7,8,41.25,0.1375,15.2248768970194,0.499568668046929,17.3385403957214,0.0327281483742991,0.2625,26.25,5,91.4206589595005,0.741727199354318,23.5,5.83391017005557,0,1.56796987354755,1.45351076126099,0.148164670947646
+809,80543,450297.952,80643,450197.952,8,8,36.5,0.0521428571428571,7.11040040128984,0.351401244258387,14.3364770084753,0.0117411789281323,0.09,9,6,67.6737002205507,0.652014652014652,4.5,1.02975188361274,0,1.53126772244771,1.40918922424316,0.193780969205317
+810,80543,450197.952,80643,450097.952,9,8,60.75,0.10125,10.0205628458091,0.298958844706267,11.3620113459733,0.0198800545828271,0.2075,20.75,4,85.7903908643113,0.751067619476813,12.5,0.180722891566265,0,1.42075405518214,1.26185739040375,0.209431278646409
+811,80543,450097.952,80643,449997.952,10,8,58.5,0.065,7.89945511388003,0.292648249342238,10.3934466291663,0.0203056184123125,0.215,21.5,2,93.1936191051187,0.883435327421839,21.25,0.314779858256495,0,1.12884215638041,0.748213708400726,0.302807120353222
+812,80543,449997.952,80643,449897.952,11,8,49.5,0.2475,16.3380098459231,0.519230769230769,11.1803398874989,0.0175753376331704,0.1525,15.25,4,85.4299971257324,0.8330272165637,13.25,0.0819672131147541,0,0.863399674495061,0.550011217594147,0.332324041690672
+813,80543,449897.952,80643,449797.952,12,8,23.75,0.0475,11.2789671286777,0.407678571428571,20.5551819285942,-0.00103392623839227,0.115,11.5,2,85.4622080461387,0.869621903520209,10.25,1.95652173913043,0,0.645363211631775,0.261433899402618,0.36756256275966
+814,80543,449797.952,80643,449697.952,13,8,13.25,0.01325,2.91503901118299,0.160660660660661,14.0032648291489,-0.0121372493585659,0.0025,0.25,1,0,NA,0.25,0,0,0.17582225970303,-0.204568102955818,0.442055372376057
+815,80543,449697.952,80643,449597.952,14,8,11,0.0157142857142857,4.99524007519339,0.322579031612645,12.480097110714,-0.00329974296044384,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0,-0.428030613809824,-0.831415891647339,0.424554952908162
+816,80543,449597.952,80643,449497.952,15,8,8.25,0.020625,7.93894225409426,0.253510378510378,33.4386956888741,-0.0023870945848148,0,0,0,NA,NA,0,NA,NA,-0.781017487247785,-1.02752768993378,0.299249592153242
+817,80543,449497.952,80643,449397.952,16,8,9.75,0.0195,4.63894760412578,0.294871794871795,38.6044525681664,0.000397386671629647,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,12.9805335998535,5,-1.06303696706891,-1.20848631858826,0.190324472477372
+818,80543,449397.952,80643,449297.952,17,8,18.25,0.045625,10.1646252484573,0.263190076869322,13.0901699437495,-0.0183401089146355,0,0,0,NA,NA,0,NA,NA,-1.18207586805026,-1.2521653175354,0.122693855490222
+819,80543,449297.952,80643,449197.952,18,8,49.75,0.165833333333333,10.947943397032,0.254653130287648,11.937129433614,0.00526703308452852,0.1125,11.25,2,83.1849485409543,0.836916234247591,6.25,3.09994388156467,0,-1.23220200836658,-1.3986850976944,0.232846450985042
+820,80543,449197.952,80643,449097.952,19,8,27.25,0.068125,10.4447515709023,0.423917748917749,10.5901699437495,-0.0454284478839691,0.065,6.5,2,81.6967792615868,0.895656710577801,6.25,0.430013069739709,0,-1.50519167383512,-1.7116447687149,0.268164239330723
+821,80543,449097.952,80643,448997.952,20,8,16.5,0.0183333333333333,4.90318951231947,0.244989578322912,11.2471305498583,0.00555920692289874,0.06,6,2,77.724916451809,0.860022396416573,5.25,3.39595063527425,0,-1.78431115547816,-2.04926109313965,0.276090319932776
+822,80543,448997.952,80643,448897.952,21,8,33.25,0.0415625,6.77537789000702,0.228606630824373,15.4021161425842,0.0417154718787879,0.3575,35.75,1,96.460610420978,0.91089197136662,35.75,2.14383596140188,0,-2.15464476495981,-2.96002078056335,0.58333501722987
+823,80543,448897.952,80643,448797.952,22,8,65.5,0.3275,27.316312471442,0.689730944712829,11.1803398874989,0.105386032200768,0.8675,86.75,2,99.3768336941664,0.873446847676024,86.5,1.7381472189076,0,-2.53610714276632,-3.16645073890686,0.746775076245374
+824,80543,448797.952,80643,448697.952,23,8,63.5,0.635,34.7829884408933,0.7998687664042,NA,0.0210381726136984,0.2675,26.75,4,88.7697243725607,0.816088701833808,17,1.72698211669922,0,-2.827701613307,-3.27392339706421,0.696047133280017
+825,80543,448697.952,80643,448597.952,24,8,28.25,0.0403571428571429,8.31676947749313,0.232440858243169,16.5700278765611,0.0209624285333166,0.1575,15.75,7,76.8028187648472,0.708659293229026,9.25,3.31738384186275,0,-3.19675763448079,-3.3302206993103,0.252855634612131
+826,80543,448597.952,80643,448497.952,25,8,5.75,0.0115,3.86178013305208,0.160416666666667,24.2065556157337,0.00627807407170621,0.0125,1.25,2,43.859649122807,0.594936708860759,1,27.7201889038086,18.0277557373047,-3.3173858076334,-3.36329340934753,0.0830740479968428
+827,80543,448497.952,80643,448397.952,26,8,12.5,0.00961538461538462,3.91276618299258,0.182478632478632,10.9918021250643,0.0121084502153826,0.0325,3.25,4,49.3251963757179,0.540625897215045,1.25,6.57086915236253,0,-3.36837166547775,-3.38207793235779,0.0239014480970942
+828,80543,448397.952,80643,448297.952,27,8,11.5,0.0115,3.73173980287571,0.237619047619048,17.8705570947877,-0.00569164409924269,0.0025,0.25,1,0,NA,0.25,10,10,-3.39496622979641,-3.41783046722412,0.0205972518009355
+829,80543,448297.952,80643,448197.952,28,8,35.5,0.118333333333333,10.5742404748761,0.230555555555556,14.9071198499986,-0.0146665892277269,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,22.2212480545044,15.8113880157471,-3.43273470799128,-3.45671629905701,0.0338098479101651
+830,80543,448197.952,80643,448097.952,29,8,17.25,0.0246428571428571,3.6785586899073,0.110850897736144,20.7047059731176,-0.00178630281789083,0.04,4,4,56.9549598982244,0.652777777777778,2.5,7.88617038726807,0,-3.50850605964661,-3.56623840332031,0.0631052626598589
+831,80543,448097.952,80643,447997.952,30,8,17.75,0.044375,11.5773336831516,0.265029761904762,11.1803398874989,0.001962164489305,0.145,14.5,2,90.3996561109976,0.859649122807018,14.25,5.04967876960491,0,-3.56719909111659,-3.60913324356079,0.0673272172847271
+832,80543,447997.952,80643,447897.952,31,8,27,0.09,21.4502958118945,0.565231481481482,20.35183758488,0.019089066754168,0.2625,26.25,2,94.0651936750131,0.899560577526679,25.75,7.52344669160389,0,-3.46817090113958,-3.59206247329712,0.16615427041257
+833,80543,447897.952,80643,447797.952,32,8,20,0.05,7.14379709921069,0.227222222222222,13.2930170189599,-0.080448467246606,0.1475,14.75,4,80.3200124134323,0.712494968661952,7.25,17.5001672971047,0,-3.19403603672981,-3.4314444065094,0.253965758485167
+834,80543,447797.952,80643,447697.952,33,8,8.5,0.010625,2.85927258754855,0.0885416666666667,22.4670718048454,0.0428532371699112,0.6025,60.25,2,95.9113416800251,0.79874213836478,46.75,14.1015788509638,0,-2.9333992600441,-3.25305819511414,0.376612132382974
+835,80543,447697.952,80643,447597.952,34,8,16.25,0.0135416666666667,4.56318615698965,0.251884920634921,13.8217840117016,0.0153459116461636,0.085,8.5,4,71.5213944032274,0.668227946916471,4.75,4.77724726059858,0,-2.83346803486347,-3.09667563438416,0.335489948923009
+836,80543,447597.952,80643,447497.952,35,8,1.5,0.00375,1.07886512994894,0.0416666666666667,18.5122958682192,0.00113132184262213,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,4.41421356201172,0,-2.86527049541473,-3.01383471488953,0.202216369503836
+837,80543,447497.952,80643,447397.952,36,8,0,NA,NA,NA,NA,0.0258283300889315,0,0,0,NA,NA,0,NA,NA,-2.86595022678375,-2.99284195899963,0.130552650673554
+838,80543,447397.952,80643,447297.952,37,8,0,NA,NA,NA,NA,0.0226141488780559,0.0025,0.25,1,0,NA,0.25,138.654235839844,138.654235839844,-2.93098872900009,-3.13880801200867,0.162533653030652
+839,80543,447297.952,80643,447197.952,38,8,0,NA,NA,NA,NA,0.00823113328506224,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,126.557551574707,99.6242904663086,-3.10792700946331,-3.31159830093384,0.222257034710138
+840,80543,447197.952,80643,447097.952,39,8,0,NA,NA,NA,NA,-0.00549080563723692,0,0,0,NA,NA,0,NA,NA,-3.12367846568426,-3.403804063797,0.311915694083714
+841,80543,447097.952,80643,446997.952,40,8,0,NA,NA,NA,NA,-0.0256284857696301,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,51.9694951375326,44.7213592529297,-3.19774547219276,-3.50156593322754,0.342750570630142
+842,80543,446997.952,80643,446897.952,41,8,16.5,0.011,3.10484694744426,0.168404646882908,10.5694013108331,0.00839746167999692,0.175,17.5,3,87.7610620196771,0.763488543976349,13.25,6.75183244432722,0,-3.18805553515752,-3.46163368225098,0.247437282373488
+843,80543,446897.952,80643,446797.952,42,8,59,0.1475,14.2216528072514,0.45431744761566,11.5450849718747,0.0448659780812477,0.4225,42.25,4,92.464199344312,0.872349872349872,36.75,1.21512034941002,0,-2.95418351888657,-3.14797568321228,0.250702952900435
+844,80543,446797.952,80643,446697.952,43,8,0,NA,NA,NA,NA,0.00792131523630815,0.0275,2.75,2,68.062694823769,0.588688946015424,2.5,21.3744527643377,10,-3.25504300991694,-3.31565380096436,0.105106575838416
+845,80543,446697.952,80643,446597.952,44,8,0,NA,NA,NA,NA,0.00295411028357648,0.025,2.5,2,58.7318836713039,0.605522682445759,1.5,138.418934631348,110.113571166992,-3.35051735242208,-3.38378286361694,0.0634888665598903
+846,80543,446597.952,80643,446497.952,45,8,0,NA,NA,NA,NA,0.00908611494511206,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,72.738929601816,60.4152297973633,-3.33297418057919,-3.38493466377258,0.0732554377011107
+847,80543,446497.952,80643,446397.952,46,8,0.5,0.0025,0,0,11.1803398874989,-0.00338243728640009,0.07,7,3,77.5515856366424,0.80884109916368,6,60.65586239951,44.7213592529297,-3.20076123873393,-3.29521894454956,0.123975015726158
+848,80543,446397.952,80643,446297.952,47,8,0,NA,NA,NA,NA,0.0112918767736846,0,0,0,NA,NA,0,NA,NA,-3.0843622982502,-3.2051796913147,0.136526279442622
+849,80543,446297.952,80643,446197.952,48,8,0,NA,NA,NA,NA,-0.0115796047770255,0,0,0,NA,NA,0,NA,NA,-2.95764631032944,-3.06207990646362,0.182438292484351
+850,80543,446197.952,80643,446097.952,49,8,2.75,0.006875,2.92220443369359,0.113095238095238,14.1257038496822,-0.0228290704950632,0.02,2,1,68.0470115164975,0.897959183673469,2,52.3082242012024,46.0977210998535,-2.67388680577278,-2.85338735580444,0.23312745800008
+851,80543,446097.952,80643,445997.952,50,8,5,0.0125,4.96123638606027,0.275132275132275,14.9767619622864,-0.00717288984589686,0.09,9,1,87.719298245614,0.963369963369963,9,52.3700175815158,40,-2.31897163391113,-2.46287751197815,0.244327595988875
+852,80543,445997.952,80643,445897.952,51,8,0,NA,NA,NA,NA,-0.0325902458629571,0,0,0,NA,NA,0,NA,NA,-1.77843410521746,-2.10267066955566,0.333945824779453
+853,80543,445897.952,80643,445797.952,52,8,0,NA,NA,NA,NA,-0.101957330661826,0,0,0,NA,NA,0,NA,NA,-1.40430192152659,-1.54798865318298,0.161087251498752
+854,80543,445797.952,80643,445697.952,53,8,0,NA,NA,NA,NA,-0.328828494176269,0,0,0,NA,NA,0,NA,NA,-1.28101888298988,-1.40621781349182,0.0935926664587649
+855,80543,445697.952,80643,445597.952,54,8,10.75,0.00895833333333333,4.01936755490029,0.195512820512821,10.0983616572916,-0.197092497572303,0,0,0,NA,NA,0,NA,NA,-1.34390372037888,-1.42370653152466,0.104995386626503
+856,80543,445597.952,80643,445497.952,55,8,0,NA,NA,NA,NA,-0.18341206136065,0,0,0,NA,NA,0,NA,NA,-1.56347528100014,-1.73191678524017,0.255513947971406
+857,80543,445497.952,80643,445397.952,56,8,0,NA,NA,NA,NA,-0.128571698596061,0,0,0,NA,NA,0,NA,NA,-2.27385135740042,-2.64249277114868,0.427997331046966
+858,80543,445397.952,80643,445297.952,57,8,0,NA,NA,NA,NA,0.0301234490280331,0.445,44.5,1,97.3733506421488,0.928804184123333,44.5,100.98527443275,55.2268028259277,-2.69224043687185,-2.85263442993164,0.199091409191026
+859,80543,445297.952,80643,445197.952,58,8,0.25,0.0025,0,0,NA,-0.00498963622027077,0.415,41.5,1,97.093152360986,0.949723479135244,41.5,58.9333052807544,5,-2.77435217797756,-2.87743878364563,0.0991517968263414
+860,80543,445197.952,80643,445097.952,59,8,0,NA,NA,NA,NA,-0.0554506093794407,0,0,0,NA,NA,0,NA,NA,-2.76335883140564,-2.81265902519226,0.0542675038024364
+861,80543,445097.952,80643,444997.952,60,8,0,NA,NA,NA,NA,-0.0145046423706708,0,0,0,NA,NA,0,NA,NA,-2.74794918298721,-2.77997255325317,0.0550700546161213
+862,80543,444997.952,80643,444897.952,61,8,0.75,0.0025,0,0,27.1807816658898,-0.0488433743260293,0,0,0,NA,NA,0,NA,NA,-2.79350473483404,-2.85551261901855,0.0660617912031385
+863,80543,444897.952,80643,444797.952,62,8,0,NA,NA,NA,NA,-0.0424067186304455,0.0075,0.75,1,44.4894453484604,1,0.75,43.251335144043,40.3112869262695,-2.84040269255638,-2.91759824752808,0.0716911117830598
+864,80543,444797.952,80643,444697.952,63,8,3,0.00375,1.25,0.0833333333333333,15.254143675912,-0.0505612173671398,0,0,0,NA,NA,0,NA,NA,-2.79849509398142,-2.88476300239563,0.0898913612484917
+865,80543,444697.952,80643,444597.952,64,8,1.25,0.0025,0,0,21.8508764608526,-0.0451323654968292,0,0,0,NA,NA,0,NA,NA,-2.78640460968018,-2.87634658813477,0.0887396636284534
+866,80543,444597.952,80643,444497.952,65,8,0,NA,NA,NA,NA,0.0837143631550134,0.52,52,1,97.9644711022996,0.940783807062877,52,123.724877284123,82.4621124267578,-2.83875354131063,-2.92581295967102,0.100151825126848
+867,80543,444497.952,80643,444397.952,66,8,0,NA,NA,NA,NA,-0.0293043321960067,0.14,14,1,91.1967767414513,0.892112203308559,14,157.530277252197,145,-2.84658765792847,-2.931147813797,0.0941162321266815
+868,80543,444397.952,80643,444297.952,67,8,0,NA,NA,NA,NA,-0.160415026918054,0,0,0,NA,NA,0,NA,NA,-2.74855068325996,-2.87466883659363,0.116455093251801
+869,80543,444297.952,80643,444197.952,68,8,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,15.8113883008419,-0.321919646281749,0,0,0,NA,NA,0,NA,NA,-2.47866849104563,-2.62789463996887,0.213717504065992
+870,80543,444197.952,80643,444097.952,69,8,3.5,0.00875,3.72338727769157,0.143518518518519,28.2664825081886,-0.0612825061967305,0.175,17.5,2,88.1407043663321,0.89159891598916,12.75,30.6017872401646,14.1421356201172,-2.14749453961849,-2.3854649066925,0.251684168719467
+871,80543,444097.952,80643,443997.952,70,8,30.5,0.0508333333333333,8.79862918243553,0.299664224664225,13.468564716807,-0.0173054208554817,0.0575,5.75,2,74.3586532700877,0.705275567344533,3.25,0,0,-1.95874577760696,-2.32524108886719,0.4652398861095
+872,80543,443997.952,80643,443897.952,71,8,36,0.18,17.2763454237328,0.30011655011655,25,-0.0674348876157455,0,0,0,NA,NA,0,NA,NA,-1.95844604820013,-2.44762682914734,0.544495423733955
+873,80543,443897.952,80643,443797.952,72,8,6.25,0.015625,4.46769792862882,0.202119883040936,25,-0.0230668220026564,0,0,0,NA,NA,0,NA,NA,-2.13348736365636,-2.48954916000366,0.446554329519162
+874,80543,443797.952,80643,443697.952,73,8,0,NA,NA,NA,NA,-0.0514242354375892,0,0,0,NA,NA,0,NA,NA,-2.5357521623373,-2.66948819160461,0.192003996480175
+875,80543,443697.952,80643,443597.952,74,8,0,NA,NA,NA,NA,0.0589700909655016,0.41,41,1,97.0434862163892,0.943876978336514,41,174.712513528219,150.416091918945,-2.68308742841085,-2.73194169998169,0.0654226352303362
+876,80543,443597.952,80643,443497.952,75,8,0,NA,NA,NA,NA,-0.0152337499821442,0.485,48.5,1,97.7057035934975,0.956850053937432,48.5,149.867565666277,120,-2.64103411138058,-2.71591806411743,0.0644099944860037
+877,80543,443497.952,80643,443397.952,76,8,0,NA,NA,NA,NA,-0.0517617177230932,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,134.440979003906,130,-2.53994679450989,-2.57613635063171,0.0429307527309877
+878,80543,443397.952,80643,443297.952,77,8,0,NA,NA,NA,NA,-0.0424234423734652,0,0,0,NA,NA,0,NA,NA,-2.53942579030991,-2.57141995429993,0.0341252272763768
+879,80543,443297.952,80643,443197.952,78,8,0,NA,NA,NA,NA,-0.0625353712663673,0,0,0,NA,NA,0,NA,NA,-2.58846737444401,-2.61539959907532,0.0511866965009802
+880,80543,443197.952,80643,443097.952,79,8,0,NA,NA,NA,NA,-0.165674983132631,0,0,0,NA,NA,0,NA,NA,-2.48936319351196,-2.59529066085815,0.197280413709984
+881,80543,443097.952,80643,442997.952,80,8,5,0.01,2.98988279976942,0.225,13.9442719099992,-0.0712821204675129,0,0,0,NA,NA,0,NA,NA,-1.97088834643364,-2.46721911430359,0.482659718353964
+882,80543,442997.952,80643,442897.952,81,8,26.5,0.06625,13.3338792456743,0.452843798904538,13.6326429440122,-0.0218212098161894,0.0225,2.25,2,56.58687201489,0.658994032395567,1.5,3.33333333333333,0,-1.54600764314334,-1.89312922954559,0.286196795048779
+883,80543,442897.952,80643,442797.952,82,8,49.5,0.12375,14.5489451020148,0.460982593795094,12.7950849718747,0.000194471811992116,0.095,9.5,3,79.3395831420961,0.771989827238446,5.25,6.74245272184673,0,-1.56780126690865,-1.89197599887848,0.361087854717952
+884,80543,442797.952,80643,442697.952,83,8,37.5,0.0625,9.33692826432385,0.361481966894811,10.1967233145832,-0.0457409350663693,0.0725,7.25,3,74.487246347766,0.610024660205311,4.25,6.04560260114999,0,-1.94105690717697,-2.52131366729736,0.527620816302236
+885,80543,442697.952,80643,442597.952,84,8,20.75,0.0259375,4.59823824807549,0.140972222222222,16.1509080199079,0.0764811493961952,0.4175,41.75,3,93.9140057822291,0.894097318990023,38,17.7873110742626,0,-2.27785287797451,-2.72676968574524,0.424181685960252
+886,80543,442597.952,80643,442497.952,85,8,13.25,0.0165625,3.381711360307,0.16186951754386,11.6220259878858,-0.053972689501752,0.055,5.5,2,77.6847378303052,0.875505757858699,5,19.3682149540294,5,-2.39663275082906,-2.75415396690369,0.341841799784127
+887,80543,442497.952,80643,442397.952,86,8,1.75,0.0035,1,0.0666666666666667,16.7722162662912,0.0117923440775849,0.215,21.5,1,93.912339662796,0.975021855876108,21.5,31.8714549707812,15,-2.51206637918949,-2.7477171421051,0.272359153334407
+888,80543,442397.952,80643,442297.952,87,8,2.5,0.005,2.5,0.166666666666667,15.8113883008419,-0.0171828793053282,0.07,7,2,79.5497525511541,0.83273596176822,6,12.6283630643572,5,-2.65349388122559,-2.81564450263977,0.22786601671646
+889,80543,442297.952,80643,442197.952,88,8,5.75,0.02875,5.32241344964902,0.318181818181818,28.2842712474619,0.0181320653281091,0.1,10,3,77.342357828089,0.78441127694859,5.5,26.1390851020813,0,-2.83135245740414,-2.94958806037903,0.169253796318378
+890,80543,442197.952,80643,442097.952,89,8,0.5,0.005,2.5,0.166666666666667,NA,-0.0512118753132381,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,29.2516937255859,25,-2.92090648412704,-2.96557664871216,0.0956479198859043
+891,80543,442097.952,80643,441997.952,90,8,0.5,0.0025,0,0,25.4950975679639,-0.0281359886195014,0,0,0,NA,NA,0,NA,NA,-2.90395394961039,-2.9413914680481,0.0604994245455503
+892,80543,441997.952,80643,441897.952,91,8,0.5,0.0025,0,0,20.6155281280883,-0.203932174269576,0,0,0,NA,NA,0,NA,NA,-2.86847975850105,-2.90639591217041,0.0476267280192747
+893,80543,441897.952,80643,441797.952,92,8,3,0.005,2.22222222222222,0.148148148148148,16.159944046628,-0.131840394013561,0,0,0,NA,NA,0,NA,NA,-2.8637876311938,-2.94882726669312,0.0853674101209774
+894,80543,441797.952,80643,441697.952,93,8,0.5,0.0025,0,0,74.3303437365925,-0.0432875471774514,0,0,0,NA,NA,0,NA,NA,-2.87037147581577,-2.96672129631042,0.107875701679142
+895,80543,441697.952,80643,441597.952,94,8,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,20.6155281280883,-0.0132039171797805,0,0,0,NA,NA,0,NA,NA,-2.80573262770971,-2.94553542137146,0.147267491563142
+896,80543,441597.952,80643,441497.952,95,8,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,41.7723270616226,-0.0710949905496091,0,0,0,NA,NA,0,NA,NA,-2.65870474278927,-2.86929774284363,0.165464262511894
+897,80543,441497.952,80643,441397.952,96,8,0.75,0.00375,1.25,0.0833333333333333,15.8113883008419,-0.191344677265733,0,0,0,NA,NA,0,NA,NA,-2.54499298334122,-2.65912365913391,0.100592741934472
+898,80543,441397.952,80643,441297.952,97,8,2.25,0.0045,1.66666666666667,0.111111111111111,18.6938721971897,-0.189560793563724,0,0,0,NA,NA,0,NA,NA,-2.65354858338833,-2.77293014526367,0.133410841193441
+899,80543,441297.952,80643,441197.952,98,8,9.75,0.0975,25.3157968376075,0.418803418803419,NA,-0.0280862675048411,0.415,41.5,1,97.093152360986,0.97206859951958,41.5,19.3075611275363,0,-2.84217955668767,-2.90324068069458,0.0637785084794901
+900,80543,441197.952,80643,441097.952,99,8,0,NA,NA,NA,NA,0.0502725814015139,0.3425,34.25,1,96.2699193924551,0.96958174904943,34.25,54.8876436609421,30.4138145446777,-2.77784442901611,-2.89370489120483,0.100062678517323
+901,80643,451097.952,80743,450997.952,0,9,82.75,0.206875,10.7926574098823,0.364583333333333,10,0.0561324150650762,0.645,64.5,4,96.1713731421784,0.655906453212026,54.75,0.843860537506813,0,4.80353567335341,4.56179475784302,0.901762503477097
+902,80643,450997.952,80743,450897.952,1,9,83,0.276666666666667,12.7269604982012,0.345997973657548,13.7377344785321,0.0755338292422675,0.835,83.5,1,99.5034141561623,0.827114248667339,83.5,0.965348523533987,0,3.3415099978447,2.72560882568359,0.817524504882096
+903,80643,450897.952,80743,450797.952,2,9,89.5,0.4475,20.1591551767547,0.522003745318352,10,0.0747441941360012,0.935,93.5,1,99.8201295789998,0.913203862428122,93.5,0.433345101096413,0,2.50887709193759,2.34035229682922,0.421456996810807
+904,80643,450797.952,80743,450697.952,3,9,65,0.0928571428571429,7.85352045914886,0.311182493629302,10.9988183126201,0.0549819559146999,0.5775,57.75,6,95.615006979724,0.758371202240558,52.75,0.807513761313963,0,1.99858621756236,1.82117092609406,0.268907794703664
+905,80643,450697.952,80743,450597.952,4,9,33.25,0.0302272727272727,6.48546250795187,0.204890489048905,12.169408652157,0.0380980874862507,0.375,37.5,7,92.6190736468968,0.674181818181818,31,2.81883720397949,0,1.8174528810713,1.76080071926117,0.0974937161360269
+906,80643,450597.952,80743,450497.952,5,9,29.75,0.0425,8.84995120319629,0.371879596517278,17.4301732505717,0.035587413666226,0.2425,24.25,8,84.0781555705114,0.734456204241114,10.75,3.19114751914113,0,1.71523198485374,1.64004111289978,0.0833303498955293
+907,80643,450497.952,80743,450397.952,6,9,50.25,0.1675,21.8037664269533,0.528126611459945,10,0.0344549107590865,0.3125,31.25,6,84.1706049445207,0.698838606327593,10.5,1.97914834594727,0,1.58915350172255,1.48305118083954,0.123530290226681
+908,80643,450397.952,80743,450297.952,7,9,24.5,0.0204166666666667,5.58199160957585,0.183581059129305,13.3498040315309,0.0370937287413471,0.3575,35.75,4,92.4049585015422,0.72079484361541,26,4.04899245042067,0,1.42255640029907,1.22125315666199,0.208374903174987
+909,80643,450297.952,80743,450197.952,8,9,13,0.013,2.23840160912379,0.127327327327327,12.6675437455463,0.000982167241591014,0.005,0.5,2,0,1,0.25,2.5,0,1.25876523388757,1.1225893497467,0.235074760510172
+910,80643,450197.952,80743,450097.952,9,9,22.75,0.0284375,3.76117710058027,0.21339897260274,18.4047880912215,0.0141723215055208,0.1225,12.25,4,75.5573861880214,0.715099715099715,4.5,4.58091042966259,0,1.23565713564555,1.12197935581207,0.196127825281387
+911,80643,450097.952,80743,449997.952,10,9,27.75,0.0198214285714286,4.27977622477275,0.209722222222222,10.7523391322027,0.00776747903537313,0.035,3.5,1,77.1303955881658,0.689119170984456,3.5,0.714285714285714,0,1.2518450319767,1.17558801174164,0.0976891588853533
+912,80643,449997.952,80743,449897.952,11,9,35,0.04375,4.49371916900727,0.139423076923077,18.4797210303622,0.0204415778785187,0.1475,14.75,4,85.0179825442078,0.792996377436605,12,1.00240907830707,0,1.22896186510722,1.18785214424133,0.0913492494149634
+913,80643,449897.952,80743,449797.952,12,9,69.25,0.1385,11.0356849606125,0.341344071588367,10,0.0369436698436039,0.3775,37.75,5,92.5429369671839,0.872413843098024,33.5,0.364238410596026,0,1.10218800107638,0.934620022773743,0.175124891742016
+914,80643,449797.952,80743,449697.952,13,9,54,0.0771428571428571,10.4533073432936,0.51789738039738,10,0.0125820535157618,0.1975,19.75,3,87.1500314994743,0.848687138406765,13.75,1.07594936708861,0,0.751293344630135,0.437718421220779,0.386399032519211
+915,80643,449697.952,80743,449597.952,14,9,55.25,0.5525,33.6294019628107,0.827300150829563,NA,0.0174911565316597,0.1175,11.75,4,79.1452838766873,0.759206798866855,5.75,0.531914893617021,0,0.416460231877863,-0.125623688101768,0.635660978079754
+916,80643,449597.952,80743,449497.952,15,9,35.25,0.088125,8.40336567721145,0.237834549878346,12.5,-0.0126985324607995,0.065,6.5,2,76.2789912180676,0.869570888222251,4.25,1.50546675461989,0,-0.0381127807001273,-0.525817036628723,0.789133338371607
+917,80643,449497.952,80743,449397.952,16,9,33.75,0.16875,15.0633416318158,0.558080808080808,35,-0.0302658468869322,0,0,0,NA,NA,0,NA,NA,-0.605251065144936,-0.942678987979889,0.556792329278109
+918,80643,449397.952,80743,449297.952,17,9,14.25,0.035625,6.31574410733971,0.280902777777778,32.3262810376768,-0.0088808589329534,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-0.571508235608538,-0.968110799789429,0.809339585778415
+919,80643,449297.952,80743,449197.952,18,9,31.5,0.0286363636363636,5.97648179564443,0.319463944463944,11.8048224806617,0.0187696381443948,0.155,15.5,5,77.5515634146095,0.715099715099715,5,3.20333462376748,0,0.0463027174895008,-0.864822745323181,1.27815163675456
+920,80643,449197.952,80743,449097.952,19,9,7.25,0.00557692307692308,1.57488606814424,0.112820512820513,12.8347943790237,-0.0162874900121926,0.08,8,3,75.1676020260744,0.790969899665552,4.75,10.2776180505753,0,-0.911663103434775,-1.43892729282379,0.890539235946747
+921,80643,449097.952,80743,448997.952,20,9,24.25,0.0404166666666667,5.08069189461386,0.122584541062802,12.7240226919466,-0.0305713390930032,0.1325,13.25,2,84.8453413926557,0.733983595655066,7.5,1.45417109075582,0,-1.35882555113898,-1.59693956375122,0.494353230733557
+922,80643,448997.952,80743,448897.952,21,9,10.25,0.00931818181818182,3.48059082201319,0.157070707070707,14.9816416508472,0.0107096451574034,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-1.35653838515282,-1.60518217086792,0.467987513935786
+923,80643,448897.952,80743,448797.952,22,9,16.25,0.0135416666666667,4.17075878099848,0.328968253968254,14.7733073086137,0.0271293946750802,0.165,16.5,4,81.5106522313125,0.770892996615465,9,3.75443510575728,0,-1.30812568134732,-1.54307425022125,0.51895039016583
+924,80643,448797.952,80743,448697.952,23,9,64.5,0.129,12.5958727184554,0.457458888782498,10,0.0407807576951745,0.4125,41.25,4,92.2854624363991,0.748040313549832,23.75,1.33028772527521,0,-1.29251026610533,-2.06880283355713,0.966517528006346
+925,80643,448697.952,80743,448597.952,24,9,72.75,0.36375,25.5610491138552,0.731166020127059,15.8113883008419,0.0564380441458979,0.5375,53.75,3,94.8289058188597,0.772972972972973,28.75,2.02422396637673,0,-2.26130094793108,-2.94775724411011,1.21826023241556
+926,80643,448597.952,80743,448497.952,25,9,59.25,0.1975,21.5219876771126,0.670068470110789,10.3934466291663,0.0306867072184832,0.22,22,5,86.8826130895459,0.746856116282868,14.5,1.58445167541504,0,-3.04156025250753,-3.28920745849609,0.561242677874292
+927,80643,448497.952,80743,448397.952,26,9,25.25,0.0280555555555556,5.21692258681428,0.323406117560346,13.4049945580511,0.0124345039763966,0.0825,8.25,4,77.9389075824068,0.737612271672217,6.75,2.16675197716915,0,-3.34808937708537,-3.41536092758179,0.122431113333927
+928,80643,448397.952,80743,448297.952,27,9,4.5,0.00642857142857143,2.09028385069659,0.104497354497354,30.6291613760852,-0.00434777253674838,0.0125,1.25,2,43.859649122807,0.594936708860759,1,17.718673324585,11.1803398132324,-3.40527542432149,-3.42201924324036,0.020841964468721
+929,80643,448297.952,80743,448197.952,28,9,12.5,0.025,8.98368941047591,0.254836521503188,17.9295283138273,-0.00978929047260294,0.0025,0.25,1,0,NA,0.25,10,10,-3.38560655381944,-3.41028904914856,0.0425850020598353
+930,80643,448197.952,80743,448097.952,29,9,26.25,0.0328125,5.63381634574,0.222202437480215,15.8099080678361,-0.0114926982460111,0.0425,4.25,2,74.792243767313,0.91644908616188,4,2.54420044842888,0,-3.38872975111008,-3.45303583145142,0.0942040299149808
+931,80643,448097.952,80743,447997.952,30,9,39.25,0.130833333333333,11.2767110876911,0.308278867102397,10,0.0364816219060594,0.4075,40.75,3,93.2312992773098,0.80309423347398,22,4.00500726992367,0,-3.38524418407016,-3.46990180015564,0.144860628013275
+932,80643,447997.952,80743,447897.952,31,9,30,0.05,8.62805461799196,0.494971599751012,18.6737407595031,0.00935521935731231,0.0875,8.75,4,74.9280607019921,0.73547472838923,5.75,3.44699859619141,0,-3.21979562441508,-3.42862153053284,0.262668332901614
+933,80643,447897.952,80743,447797.952,32,9,17.25,0.01725,4.56617345402529,0.223611111111111,17.5,0.0767279574780878,0.71,71,2,98.7561066412976,0.903138318481209,70.75,13.1660030727655,0,-2.76185957590739,-3.09722447395325,0.389261522046897
+934,80643,447797.952,80743,447697.952,33,9,15.25,0.0127083333333333,4.07472910582081,0.0909237726098191,13.5437063365982,-0.00517639252600929,0.2125,21.25,6,79.7086705167299,0.730894565331651,7.25,11.8156720329733,0,-2.40373272365994,-2.60480284690857,0.215997884761965
+935,80643,447697.952,80743,447597.952,34,9,14.75,0.0295,5.28137251045666,0.242895299145299,12.5952415806172,-0.0174469960853457,0.05,5,1,81.7256002368443,0.796264855687606,5,3.76776695251465,0,-2.37952665487925,-2.5257887840271,0.173288687349554
+936,80643,447597.952,80743,447497.952,35,9,0,NA,NA,NA,NA,-0.00981296706435387,0,0,0,NA,NA,0,NA,NA,-2.54786724514431,-2.61809182167053,0.140379868345963
+937,80643,447497.952,80743,447397.952,36,9,0,NA,NA,NA,NA,0.0108680078885391,0.005,0.5,1,30.8308651382582,1,0.5,171.491424560547,169.705627441406,-2.71854164203008,-2.79933142662048,0.0941495302986663
+938,80643,447397.952,80743,447297.952,37,9,0,NA,NA,NA,NA,0.0242305094056064,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,201.603428890831,194.164886474609,-2.75708479351468,-2.83867359161377,0.169595535993398
+939,80643,447297.952,80743,447197.952,38,9,0,NA,NA,NA,NA,0.0248716276905725,0.0075,0.75,1,44.4894453484604,1,0.75,201.403610229492,199.123077392578,-2.72508273522059,-2.8475968837738,0.224155459715354
+940,80643,447197.952,80743,447097.952,39,9,0,NA,NA,NA,NA,0.0303438651352189,0,0,0,NA,NA,0,NA,NA,-2.55311184459262,-2.77596402168274,0.245214495223366
+941,80643,447097.952,80743,446997.952,40,9,0.25,0.0025,0,0,NA,-0.00717492599738762,0,0,0,NA,NA,0,NA,NA,-2.82627272605896,-3.06719279289246,0.286189465233396
+942,80643,446997.952,80743,446897.952,41,9,1.75,0.00875,3.50474197925218,0.0972222222222222,11.1803398874989,-0.0236149223348184,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,6.29468509129116,0,-3.12965459293789,-3.13904452323914,0.0656875808818184
+943,80643,446897.952,80743,446797.952,42,9,22.75,0.0455,8.98884292317193,0.212645502645503,10.4721359549996,0.0129491495768252,0.1775,17.75,3,87.0509515248635,0.747112462006079,12,6.54372387201014,0,-3.0704066157341,-3.12272000312805,0.107308132615981
+944,80643,446797.952,80743,446697.952,43,9,0,NA,NA,NA,NA,-0.0086358427816549,0,0,0,NA,NA,0,NA,NA,-3.17654935518901,-3.24235105514526,0.0898838108737703
+945,80643,446697.952,80743,446597.952,44,9,0,NA,NA,NA,NA,-0.010496403773559,0,0,0,NA,NA,0,NA,NA,-3.24283671379089,-3.29879689216614,0.100052150845682
+946,80643,446597.952,80743,446497.952,45,9,0,NA,NA,NA,NA,0.0449236595355978,0.575,57.5,2,97.0016257002676,0.9232140408611,56,87.2022539221722,50,-3.17991326252619,-3.28628587722778,0.154698054800176
+947,80643,446497.952,80743,446397.952,46,9,1,0.0025,0,0,11.1803398874989,-0.00902897999039851,0.15,15,2,90.7154798922843,0.841628959276018,14.75,50.9148742039998,22.3606796264648,-2.94609310891893,-3.12049055099487,0.272478190606372
+948,80643,446397.952,80743,446297.952,47,9,0.25,0.0025,0,0,NA,-0.0194328926887101,0,0,0,NA,NA,0,NA,NA,-2.71958037217458,-2.91109156608582,0.299466710545874
+949,80643,446297.952,80743,446197.952,48,9,7.25,0.00805555555555556,2.57881733755427,0.123456790123457,12.7826483401362,-0.0266495199579731,0,0,0,NA,NA,0,NA,NA,-2.59036138322618,-2.78031063079834,0.294867186318613
+950,80643,446197.952,80743,446097.952,49,9,16,0.032,6.09200415330759,0.252314814814815,18.6415592340237,-0.00193322620749313,0.0375,3.75,3,62.7958923130164,0.669421487603306,2.25,3.60947570800781,0,-2.3543984691302,-2.60564684867859,0.294081048573592
+951,80643,446097.952,80743,445997.952,50,9,19,0.0316666666666667,6.81700389790315,0.32533929033929,10.5901699437495,-0.0101253196490279,0.0575,5.75,2,79.1007648475903,0.793692897141173,5.25,1.30434782608696,0,-1.99148428440094,-2.23858308792114,0.41243299283821
+952,80643,445997.952,80743,445897.952,51,9,0,NA,NA,NA,NA,-0.0372468198492425,0,0,0,NA,NA,0,NA,NA,-1.7371219098568,-2.0084981918335,0.215275225576002
+953,80643,445897.952,80743,445797.952,52,9,3.75,0.0375,8.39344751044292,0.611111111111111,NA,-0.0587381723285216,0.0775,7.75,1,86.3573366287605,0.89159891598916,7.75,8.83610590042606,0,-1.54939926995171,-1.61574828624725,0.113998217438379
+954,80643,445797.952,80743,445697.952,53,9,12.25,0.0408333333333333,7.05520962906433,0.447530864197531,18.8903469609094,-0.198123988006701,0.025,2.5,2,61.4794562732788,0.763313609467456,2,4.94317474365234,0,-1.41637452443441,-1.5004118680954,0.0964029552424481
+955,80643,445697.952,80743,445597.952,54,9,11,0.0122222222222222,5.41573233729812,0.212081128747795,10,-0.170866680024192,0,0,0,NA,NA,0,NA,NA,-1.49882524543338,-1.64659607410431,0.194068200578648
+956,80643,445597.952,80743,445497.952,55,9,0,NA,NA,NA,NA,-0.133646925015855,0.005,0.5,2,0,1,0.25,151.36442565918,147.648223876953,-1.79158940580156,-2.07728338241577,0.382256348242014
+957,80643,445497.952,80743,445397.952,56,9,0,NA,NA,NA,NA,-0.13229653097922,0.0625,6.25,2,78.6198186841535,0.84,5.5,142.843885498047,134.629119873047,-2.48303385575612,-2.75466418266296,0.359451491522724
+958,80643,445397.952,80743,445297.952,57,9,0,NA,NA,NA,NA,0.0368987574075072,0.3775,37.75,1,96.6969635918825,0.96520377539037,37.75,87.9873010243801,55,-2.88918089866638,-2.99333477020264,0.141758872855528
+959,80643,445297.952,80743,445197.952,58,9,0.25,0.0025,0,0,NA,0.0241330431016104,0.47,47,2,96.4925934123938,0.951203643461288,46,54.9395972921493,0,-2.95516405502955,-3.01886439323425,0.0840559234818015
+960,80643,445197.952,80743,445097.952,59,9,1,0.01,5,0.25,NA,0.0211151906743999,0.4175,41.75,1,97.1176501838512,0.966557048102113,41.75,55.3662865233279,0,-2.85629349284702,-2.90767765045166,0.0729533740020119
+961,80643,445097.952,80743,444997.952,60,9,1.25,0.0125,4.2390073826009,0.433333333333333,NA,-0.0181958818927706,0.005,0.5,1,30.8308651382582,1,0.5,5,5,-2.82439740498861,-2.87113666534424,0.0669916491474812
+962,80643,444997.952,80743,444897.952,61,9,0.25,0.0025,0,0,NA,-0.0644287613860797,0,0,0,NA,NA,0,NA,NA,-2.83689268430074,-2.87189412117004,0.0519446707928667
+963,80643,444897.952,80743,444797.952,62,9,0,NA,NA,NA,NA,0.00343018091736667,0.405,40.5,1,96.992903144017,0.960521121200158,40.5,38.4852289505947,10,-2.835447092851,-2.87301850318909,0.0390284149419842
+964,80643,444797.952,80743,444697.952,63,9,1.25,0.003125,0.625,0.0416666666666667,20.9586785872321,-0.0277999702691159,0.045,4.5,2,77.0630168225469,0.728524335854179,4.25,12.1603749593099,0,-2.76268924607171,-2.80783414840698,0.0578382445032174
+965,80643,444697.952,80743,444597.952,64,9,1.25,0.003125,0.625,0.0416666666666667,18.2134582144651,-0.0396224434481701,0,0,0,NA,NA,0,NA,NA,-2.71130428711573,-2.73926162719727,0.0339660606207565
+966,80643,444597.952,80743,444497.952,65,9,0,NA,NA,NA,NA,0.0914185793657089,0.8425,84.25,1,99.5291083083911,0.940195858563206,84.25,113.605800798456,56.5685424804688,-2.68929025861952,-2.71543908119202,0.0473598866300633
+967,80643,444497.952,80743,444397.952,66,9,0,NA,NA,NA,NA,-0.10076099658967,0.01,1,1,52.6315789473684,0.747474747474748,1,165.33712387085,163.783401489258,-2.70655152532789,-2.73874044418335,0.0521563516554959
+968,80643,444397.952,80743,444297.952,67,9,0,NA,NA,NA,NA,-0.212215235391632,0,0,0,NA,NA,0,NA,NA,-2.74380483229955,-2.77181220054626,0.0434407505678982
+969,80643,444297.952,80743,444197.952,68,9,0.5,0.0025,0,0,20.6155281280883,-0.159493591725477,0.0075,0.75,1,44.4894453484604,1,0.75,80.3578720092773,79.0569381713867,-2.65702282057868,-2.72802996635437,0.131828808076215
+970,80643,444197.952,80743,444097.952,69,9,1.25,0.003125,0.625,0.0416666666666667,20.6155281280883,0.0576797379512573,0.4375,43.75,3,93.2058998756388,0.851393188854489,36.5,51.26288142613,10,-2.40168265501658,-2.56996130943298,0.16668865889216
+971,80643,444097.952,80743,443997.952,70,9,0.25,0.0025,0,0,NA,0.0288385749234658,0.405,40.5,2,93.4919759930552,0.870283683943376,27.75,51.2665533018701,10,-2.3969341913859,-2.47890853881836,0.117425826817725
+972,80643,443997.952,80743,443897.952,71,9,5,0.05,12.808471560325,0.408333333333333,NA,-0.0946474036294967,0,0,0,NA,NA,0,NA,NA,-2.44861084222794,-2.50050520896912,0.126755228408572
+973,80643,443897.952,80743,443797.952,72,9,35,0.116666666666667,20.737000012473,0.392131242740999,15.7868932583326,-0.0846443613993324,0,0,0,NA,NA,0,NA,NA,-2.21179552872976,-2.37464833259583,0.310520084716993
+974,80643,443797.952,80743,443697.952,73,9,15,0.0214285714285714,5.50464732646143,0.182010582010582,14.1149469545651,-0.0507266802491358,0,0,0,NA,NA,0,NA,NA,-2.14957802494367,-2.50872826576233,0.349618738141126
+975,80643,443697.952,80743,443597.952,74,9,0,NA,NA,NA,NA,-0.0150345012898902,0.015,1.5,1,62.2896536353828,1,1.5,59.9271380106608,56.5685424804688,-2.50934643215603,-2.62497711181641,0.21987441045545
+976,80643,443597.952,80743,443497.952,75,9,0,NA,NA,NA,NA,0.0425979804618692,0.2475,24.75,3,92.0216759342655,0.910410989585278,23.5,99.7161845197581,25,-2.53953905900319,-2.6130518913269,0.1020859767573
+977,80643,443497.952,80743,443397.952,76,9,0,NA,NA,NA,NA,-0.0430249998320505,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,117.68978396329,98.6154174804688,-2.49579514397515,-2.53561973571777,0.0501938725233349
+978,80643,443397.952,80743,443297.952,77,9,0,NA,NA,NA,NA,0.0167786212147985,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,133.994086045485,124.197425842285,-2.50799949963888,-2.56350564956665,0.0621445365780681
+979,80643,443297.952,80743,443197.952,78,9,0.25,0.0025,0,0,NA,-0.0327052229605033,0,0,0,NA,NA,0,NA,NA,-2.39471137523651,-2.553875207901,0.308387204390911
+980,80643,443197.952,80743,443097.952,79,9,11,0.0183333333333333,4.96242316945894,0.311451525054466,13.0396325286725,-0.0214409018849346,0,0,0,NA,NA,0,NA,NA,-1.94512225521935,-2.28743982315063,0.439442707282973
+981,80643,443097.952,80743,442997.952,80,9,7,0.00777777777777778,2.62262450175834,0.124074074074074,22.0657484479083,-0.0553448606761231,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,7.89870423537034,0,-1.71817925572395,-2.06910681724548,0.350482377621253
+982,80643,442997.952,80743,442897.952,81,9,49.75,0.165833333333333,13.8835959659882,0.42762598664238,14.3254026343621,0.00897482562897494,0.1525,15.25,5,79.1369104396809,0.688317470918907,6,9.74548458662189,0,-1.65459092458089,-2.26701021194458,0.5840295576572
+983,80643,442897.952,80743,442797.952,82,9,7.5,0.075,14.7534755445618,0.511111111111111,NA,-0.0436503922187694,0.0975,9.75,1,88.4075627573592,0.931813339015555,9.75,38.9762459779397,25,-2.37824842333794,-2.82843995094299,0.689663717799815
+984,80643,442797.952,80743,442697.952,83,9,2.5,0.003125,0.625,0.0416666666666667,18.8139756928709,-0.0659396130344248,0.115,11.5,1,89.742951983695,0.88410835868463,11.5,11.4932858010997,5,-2.84053566720751,-3.02911067008972,0.359394291346258
+985,80643,442697.952,80743,442597.952,84,9,1.75,0.0035,1,0.0666666666666667,17.7330442317405,0.194293126693992,0.7475,74.75,1,99.1756322950922,0.985931097550252,74.75,22.3088758207085,0,-2.96857059001923,-3.05872678756714,0.193927669381936
+986,80643,442597.952,80743,442497.952,85,9,2.25,0.0045,2,0.133333333333333,26.0681602977677,-0.0497210062984232,0.23,23,1,94.2887150496276,0.984162179284131,23,22.665785913882,7.07106781005859,-2.96956454383002,-3.05189085006714,0.16281861775087
+987,80643,442497.952,80743,442397.952,86,9,3,0.00428571428571429,1.78571428571429,0.119047619047619,17.8703053696618,0.0358280765971722,0.1475,14.75,3,81.7159699627588,0.723995169915474,8,25.9828859102928,7.07106781005859,-2.88761327664057,-2.99151396751404,0.130206849307948
+988,80643,442397.952,80743,442297.952,87,9,0.5,0.005,2.5,0.166666666666667,NA,0.00748164677324894,0,0,0,NA,NA,0,NA,NA,-2.83292823367649,-2.85646033287048,0.0520849299253666
+989,80643,442297.952,80743,442197.952,88,9,0,NA,NA,NA,NA,0.021699335493613,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,69.3980773925781,65,-2.88619142770767,-2.9405734539032,0.0436009998395291
+990,80643,442197.952,80743,442097.952,89,9,1.5,0.015,7.5,0.277777777777778,NA,-0.0703566518349544,0,0,0,NA,NA,0,NA,NA,-2.89622743924459,-2.94407486915588,0.0974030244619789
+991,80643,442097.952,80743,441997.952,90,9,0,NA,NA,NA,NA,-0.0519770586164486,0,0,0,NA,NA,0,NA,NA,-2.80973572201199,-2.90234065055847,0.175587820897558
+992,80643,441997.952,80743,441897.952,91,9,0.5,0.0025,0,0,25.4950975679639,-0.177226843312383,0,0,0,NA,NA,0,NA,NA,-2.72641319036484,-2.84221410751343,0.178912203608628
+993,80643,441897.952,80743,441797.952,92,9,11,0.0122222222222222,4.79094938151576,0.1992061134218,16.0226295483984,-0.0709236399721704,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,6.34122975667318,0,-2.72173269589742,-2.76071548461914,0.0898952866003642
+994,80643,441797.952,80743,441697.952,93,9,0.25,0.0025,0,0,NA,-0.0271058454463673,0.03,3,1,74.8763016215986,0.878714372346877,3,51.7520790100098,46.0977210998535,-2.75935383637746,-2.77914047241211,0.0351306846023985
+995,80643,441697.952,80743,441597.952,94,9,1.75,0.004375,1.875,0.125,20.6155281280883,-0.0270363719698798,0,0,0,NA,NA,0,NA,NA,-2.70259947246975,-2.7603907585144,0.0849250805224277
+996,80643,441597.952,80743,441497.952,95,9,0.75,0.0025,0,0,23.8816229692226,-0.0827548581175506,0,0,0,NA,NA,0,NA,NA,-2.59093970060349,-2.67778658866882,0.117608240839578
+997,80643,441497.952,80743,441397.952,96,9,0,NA,NA,NA,NA,-0.196584901064634,0,0,0,NA,NA,0,NA,NA,-2.56415602895949,-2.69038200378418,0.161340741619379
+998,80643,441397.952,80743,441297.952,97,9,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,20.6155281280883,-0.177003796771169,0,0,0,NA,NA,0,NA,NA,-2.72728766997655,-2.8525242805481,0.170071289887613
+999,80643,441297.952,80743,441197.952,98,9,10.5,0.105,26.4608280831054,0.420634920634921,NA,0.0386297234194353,0.6325,63.25,1,98.6453198582955,0.9827779212951,63.25,27.4752142231455,0,-2.92297344737583,-2.96649169921875,0.0748537422071652
+1000,80643,441197.952,80743,441097.952,99,9,0,NA,NA,NA,NA,0.0201995755157486,0.0875,8.75,1,87.4704367425575,0.905526688710439,8.75,61.0120846339634,50.9901962280273,-2.88706835110982,-2.96290421485901,0.0875955696134113
+1001,80743,451097.952,80843,450997.952,0,10,69.5,0.17375,11.1007072848731,0.408819332976636,10,0.0439191154199216,0.53,53,3,96.7705917893137,0.773193649422184,50.5,0.996495462813467,0,3.75701745351156,2.75503706932068,0.977215504958496
+1002,80743,450997.952,80843,450897.952,1,10,83,0.83,36.7680886433255,0.851907630522088,NA,0.0507714496423432,0.5575,55.75,5,96.1938293096883,0.858757062146893,53.5,0.767772212691371,0,2.88399761915207,2.2583019733429,0.75631197619199
+1003,80743,450897.952,80843,450797.952,2,10,92.25,0.9225,38.0024551309127,0.889792231255646,NA,0.0527665943070315,0.665,66.5,2,98.3321914231911,0.772679687733676,65.5,0.383725818834807,0,2.37075225512187,1.88899397850037,0.630882293225031
+1004,80743,450797.952,80843,450697.952,3,10,98.25,0.9825,38.3198454568211,0.921967769296014,NA,0.0705619669961743,0.71,71,3,98.0006000874074,0.773989409789487,68.25,0.0880281690140845,0,1.7825473845005,1.63526213169098,0.237249647794562
+1005,80743,450697.952,80843,450597.952,4,10,95.25,0.9525,37.5534932810858,0.902449693788276,NA,0.0417769833296188,0.485,48.5,2,96.5815286311676,0.88133764832794,46.5,0.180412371134021,0,1.6140990058581,1.53979229927063,0.122599737834844
+1006,80743,450597.952,80843,450497.952,5,10,77.5,0.258333333333333,13.621392044147,0.382716049382716,10,0.00860061085491907,0.065,6.5,4,68.8202078662777,0.608712664666754,3.5,1.15384615384615,0,1.54256124049425,1.44994151592255,0.101328910836642
+1007,80743,450497.952,80843,450397.952,6,10,60.25,0.0860714285714286,8.65932135106191,0.327818903290601,10,0.0456109468940485,0.4325,43.25,4,92.7179164601296,0.795616809136481,31.75,2.1036371220054,0,1.4089702864488,1.29890942573547,0.141930298642188
+1008,80743,450397.952,80843,450297.952,7,10,19,0.0135714285714286,3.97220054978907,0.222390704533562,12.230789732584,0.0289625213137356,0.245,24.5,5,84.2256056323788,0.714027694160144,8.25,7.21423369037862,0,1.17267464846373,1.05345630645752,0.146478299669513
+1009,80743,450297.952,80843,450197.952,8,10,18.75,0.0144230769230769,3.49674847066526,0.207163207163207,11.9640575269875,0.00726963727816838,0.0875,8.75,5,73.4597785920536,0.73547472838923,5.5,7.27166987827846,0,1.0424873928229,1.01637732982635,0.0591229457880705
+1010,80743,450197.952,80843,450097.952,9,10,17.25,0.014375,2.25945752862031,0.139184397163121,13.1325169279478,0.00450114140715414,0.06,6,5,59.449903163217,0.524076147816349,2.25,8.35503840446472,0,1.03787330786387,1.00861215591431,0.049657128419138
+1011,80743,450097.952,80843,449997.952,10,10,20.25,0.0289285714285714,11.3271096520237,0.343809523809524,13.0257628410713,0.00270574848239448,0.1025,10.25,3,82.778562461756,0.741633361592184,8.5,10.3302516472049,0,1.0360267534852,0.903324842453003,0.122004458447132
+1012,80743,449997.952,80843,449897.952,11,10,15.75,0.0105,3.49417080059691,0.222539682539683,13.5358412504201,0.0306594268427216,0.16,16,2,90.2927724016935,0.925595238095238,15.5,6.97025737166405,0,1.00359805921714,0.8609938621521,0.168960697248406
+1013,80743,449897.952,80843,449797.952,12,10,7.5,0.00833333333333333,2.88331602124263,0.149928774928775,15.4830451079948,0.0295721518546725,0.1525,15.25,4,85.3596716598851,0.79963265987644,13,10.4411934399214,0,1.01674773916602,0.869312345981598,0.123707636465951
+1014,80743,449797.952,80843,449697.952,13,10,22.25,0.0158928571428571,5.01228608379377,0.207878151260504,12.5277454394513,0.00289661547321884,0.035,3.5,4,55.8100973190062,0.637305699481865,2.25,2.14285714285714,0,1.13385871052742,0.979420065879822,0.204350210837454
+1015,80743,449697.952,80843,449597.952,14,10,42.25,0.140833333333333,16.8701516845938,0.609998949138293,25.5789935790533,0.0285633388994029,0.2375,23.75,4,90.7986819117649,0.868852459016394,21.75,2.82867437663831,0,1.25524897128344,0.957753777503967,0.295146677620165
+1016,80743,449597.952,80843,449497.952,15,10,50.25,0.08375,8.10989402685165,0.342969287720669,11.8169499062491,0.00950053554417536,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,1,0,1.25654874245326,0.664665758609772,0.511994524509666
+1017,80743,449497.952,80843,449397.952,16,10,81.75,0.204375,14.2582100601651,0.426046279330178,10.2950849718747,-0.00436102624822524,0.04,4,2,74.5830091831985,0.782986111111111,3.75,0,0,0.750442338561697,-0.0424849204719067,0.792619426726029
+1018,80743,449397.952,80843,449297.952,17,10,62.25,0.10375,9.36493972873287,0.355839862528162,10.7868932583326,0.0186206753698207,0.245,24.5,1,94.6299732152399,0.932269717037929,24.5,2.02330889020647,0,0.483160367856423,-0.182005271315575,0.483390206547276
+1019,80743,449297.952,80843,449197.952,18,10,46.25,0.0660714285714286,5.97182530103473,0.152004304546677,10.7603536444614,-0.018650570947184,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,1,0,0.649154329672456,0.436371773481369,0.340062643300124
+1020,80743,449197.952,80843,449097.952,19,10,22.5,0.025,4.61933295169778,0.239006466784245,15.2035983399195,0.0107869026340632,0.05,5,4,60.2197771885984,0.626485568760611,2,6.83172512054443,0,-0.0774030759154509,-0.463794112205505,0.608889512256195
+1021,80743,449097.952,80843,448997.952,20,10,16.75,0.0152272727272727,4.22898811354962,0.261796284523557,14.1008905183921,0.0265876505817505,0.1425,14.25,5,81.6532858099391,0.726304515975486,10.25,5.90466492636162,0,-0.496120668947697,-0.744803369045258,0.281750972440505
+1022,80743,448997.952,80843,448897.952,21,10,23.25,0.0166071428571429,3.92487503508381,0.322939832984476,12.2549125742726,0.024481336710196,0.1225,12.25,4,77.2456604702364,0.715099715099715,6.5,2.80462054817044,0,-0.513480551540852,-0.870931446552277,0.322877529639273
+1023,80743,448897.952,80843,448797.952,22,10,45.75,0.07625,8.17380431284238,0.3166913686492,11.6666666666667,0.0292597278203175,0.32,32,5,91.7214851297833,0.823276950265085,28.5,1.83427411317825,0,-0.444928277904789,-0.872087776660919,0.504283575014676
+1024,80743,448797.952,80843,448697.952,23,10,41.75,0.0379545454545455,5.55809910106798,0.254673223389801,11.2349867930657,-0.00250184848033314,0.0675,6.75,3,74.1418925188635,0.800486314608143,5.25,1.00263214111328,0,0.033665144816041,-0.527274608612061,0.621525896013671
+1025,80743,448697.952,80843,448597.952,24,10,40.75,0.0582142857142857,6.24580259560637,0.127956989247312,13.8195686767371,0.0152631773565372,0.115,11.5,2,88.4252220221303,0.840648993191366,11.25,1.22202616152556,0,-0.0723441696415345,-1.09808552265167,0.927186172071427
+1026,80743,448597.952,80843,448497.952,25,10,61,0.122,11.3648219778156,0.343836519934786,10,0.0537753689654346,0.5425,54.25,2,97.1064732070268,0.826867932694909,51,2.9710442327684,0,-0.810638759285212,-2.91236615180969,1.61808076231511
+1027,80743,448497.952,80843,448397.952,26,10,66.25,0.1325,9.53328666770544,0.328648901355774,11.3005630797458,0.0162317924932086,0.23,23,5,85.5451305400418,0.738675958188153,11.25,2.84664149906324,0,-2.25052608797948,-3.3305344581604,1.4651200030984
+1028,80743,448397.952,80843,448297.952,27,10,51.75,0.129375,14.9718844485917,0.429955399061033,10.5901699437495,0.0148491987917441,0.1325,13.25,3,81.5495565928874,0.746651043481015,6.25,4.22208570084482,0,-3.12392374873161,-3.4172956943512,0.474378314289791
+1029,80743,448297.952,80843,448197.952,28,10,11.5,0.0127777777777778,4.45859752245932,0.188598402323893,20.7045391064989,-2.38025976796052e-05,0.02,2,3,46.3643391766074,0.489795918367347,1.25,5.63735294342041,0,-3.25649835666021,-3.35843324661255,0.156190372884636
+1030,80743,448197.952,80843,448097.952,29,10,3.25,0.008125,2.84568415510059,0.0791666666666667,28.7708411650415,-0.00575205991182202,0.005,0.5,2,0,1,0.25,13.462911605835,0,-3.27619901299477,-3.31126523017883,0.0590350345291243
+1031,80743,448097.952,80843,447997.952,30,10,0,NA,NA,NA,NA,-0.00856826391840514,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,17.8025585810343,5,-3.21338530381521,-3.29529881477356,0.132077351181569
+1032,80743,447997.952,80843,447897.952,31,10,16.75,0.0335,9.44133019971488,0.344487510766581,15.1803398874989,0.0402246928133536,0.39,39,3,93.7323446281935,0.857199977151996,34.75,11.5997623052353,0,-2.90661370754242,-3.12892484664917,0.367233185253568
+1033,80743,447897.952,80843,447797.952,32,10,43.5,0.0725,8.42269575943971,0.36547854989884,12.4107685224935,0.0338747934698949,0.28,28,5,86.1433186592591,0.77997799779978,14.5,0.787958996636527,0,-2.29379260540009,-2.75035381317139,0.396760348544393
+1034,80743,447797.952,80843,447697.952,33,10,31,0.0442857142857143,8.69191166072803,0.263294465072851,12.1030513642851,-0.0267505415442793,0.0675,6.75,5,66.1654285503679,0.65085105056425,4.25,4.54625489976671,0,-2.15127207835515,-2.41825819015503,0.281771730939457
+1035,80743,447697.952,80843,447597.952,34,10,54.25,0.0452083333333333,3.32484516141469,0.0962003968253968,10.2950849718747,-0.0700955804628393,0,0,0,NA,NA,0,NA,NA,-2.5153761357069,-2.7090368270874,0.287250305222812
+1036,80743,447597.952,80843,447497.952,35,10,10.5,0.015,1.98605513768467,0.102513227513228,10.3372399678568,-0.0116789162424539,0,0,0,NA,NA,0,NA,NA,-2.64248323440552,-2.80395460128784,0.155351986971891
+1037,80743,447497.952,80843,447397.952,36,10,0,NA,NA,NA,NA,0.020581057138188,0.0425,4.25,2,74.792243767313,0.91644908616188,4,66.2504330803366,54.0832710266113,-2.6059395223856,-2.81376242637634,0.175402768356922
+1038,80743,447397.952,80843,447297.952,37,10,0,NA,NA,NA,NA,0.0247043666142417,0.1075,10.75,1,89.2106768070942,0.844382197323374,10.75,80.43882139339,62.6498222351074,-2.29760636885961,-2.5827329158783,0.270816545430573
+1039,80743,447297.952,80843,447197.952,38,10,0,NA,NA,NA,NA,0.0402927971637109,0.12,12,2,88.0710885381505,0.722838137472284,11.25,149.268421490987,105.118980407715,-2.33213420212269,-2.5247962474823,0.227045392302103
+1040,80743,447197.952,80843,447097.952,39,10,0,NA,NA,NA,NA,0.0280133992657647,0.095,9.5,2,81.2668121593922,0.789529071297027,5.5,68.0271800191779,26.9258232116699,-2.60146983464559,-2.74857306480408,0.181789318724481
+1041,80743,447097.952,80843,446997.952,40,10,9,0.0075,2.36794980892813,0.158796296296296,12.1382802657762,0.00237976184161653,0.0975,9.75,4,72.3052888390124,0.659066695077775,3.25,5.48670690487593,0,-2.82595500349998,-3.01779651641846,0.220880992718549
+1042,80743,446997.952,80843,446897.952,41,10,47.5,0.2375,14.9105195210717,0.405643738977072,14.142135623731,0.0419915311184741,0.475,47.5,1,97.6265657883157,0.956709956709957,47.5,0.747742462158203,0,-2.82958716154099,-3.06663656234741,0.284973207673247
+1043,80743,446897.952,80843,446797.952,42,10,71.5,0.17875,13.839887056093,0.38922305764411,10,0.0530914509262948,0.7275,72.75,2,98.6948382102818,0.912785334518558,72.25,1.04921812863694,0,-2.82067060470581,-3.04051947593689,0.273527672346356
+1044,80743,446797.952,80843,446697.952,43,10,29,0.29,26.9068036097554,0.65948275862069,NA,0.034661762114647,0.5125,51.25,1,97.9112600445307,0.935392691298203,51.25,2.76151147237638,0,-2.97364713748296,-3.13377833366394,0.200585753035234
+1045,80743,446697.952,80843,446597.952,44,10,0.25,0.0025,0,0,NA,-0.0216591174067253,0,0,0,NA,NA,0,NA,NA,-3.0270256002744,-3.14808964729309,0.149847267025975
+1046,80743,446597.952,80843,446497.952,45,10,0,NA,NA,NA,NA,-0.00080718767208964,0.3625,36.25,1,96.5215284364484,0.970403255641879,36.25,125.151211547852,86.0232543945312,-2.86258590221405,-3.08098769187927,0.218684672224411
+1047,80743,446497.952,80843,446397.952,46,10,0,NA,NA,NA,NA,-0.0697908685803122,0.01,1,1,52.6315789473684,0.747474747474748,1,85.7728080749512,80.6225738525391,-2.52265628178914,-2.83818364143372,0.326985175085061
+1048,80743,446397.952,80843,446297.952,47,10,0,NA,NA,NA,NA,-0.0306916225792702,0,0,0,NA,NA,0,NA,NA,-2.19388867169619,-2.49512553215027,0.268067224787302
+1049,80743,446297.952,80843,446197.952,48,10,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,23.2338807103344,-0.0362684083794011,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-2.09141066670418,-2.31826043128967,0.239746068210071
+1050,80743,446197.952,80843,446097.952,49,10,8,0.00727272727272727,2.60060846224034,0.182828282828283,14.0873685158691,-0.0506115841560859,0,0,0,NA,NA,0,NA,NA,-1.88146668672562,-2.21185111999512,0.347720791854497
+1051,80743,446097.952,80843,445997.952,50,10,22,0.055,10.4539917011154,0.477240896358543,16.5563002380832,-0.010377045095529,0.0425,4.25,1,79.7330921014386,0.7911227154047,4.25,1.59241575353286,0,-1.3646879841884,-1.65330767631531,0.458932997631681
+1052,80743,445997.952,80843,445897.952,51,10,2.75,0.00916666666666667,3.91567667450287,0.252777777777778,29.1842346090081,-0.00518733961886028,0.185,18.5,1,93.0265643427559,0.924492685228882,18.5,24.5906090092015,0,-1.34202077239752,-1.57448017597198,0.286335444956418
+1053,80743,445897.952,80843,445797.952,52,10,16.5,0.04125,6.7371398913101,0.319654088050314,34.2463390904053,-0.00180967984088511,0.1175,11.75,2,87.4644966966367,0.915014164305949,11.25,6.14198948474641,0,-1.446583122015,-1.54060888290405,0.110785180417031
+1054,80743,445797.952,80843,445697.952,53,10,28,0.04,7.05298084992087,0.420152295152295,15.488027504234,-0.0034535949727433,0.09,9,3,74.9683257062991,0.743589743589744,4,11.3606515460544,0,-1.47961533814669,-1.63672816753387,0.126692148453712
+1055,80743,445697.952,80843,445597.952,54,10,6,0.00857142857142857,3.85706076655784,0.138888888888889,11.1674382965485,-0.0878232517896686,0,0,0,NA,NA,0,NA,NA,-1.79027550419172,-1.96012127399445,0.238688578668016
+1056,80743,445597.952,80843,445497.952,55,10,0,NA,NA,NA,NA,-0.0356482723618319,0.11,11,2,87.8706617775683,0.878530215608867,10.75,152.645398226651,139.283889770508,-2.0693332751592,-2.19552946090698,0.24807043320216
+1057,80743,445497.952,80843,445397.952,56,10,0,NA,NA,NA,NA,-0.149536134044174,0,0,0,NA,NA,0,NA,NA,-2.56316186487675,-2.80967807769775,0.288138848928107
+1058,80743,445397.952,80843,445297.952,57,10,0,NA,NA,NA,NA,0.0650466617590428,0.415,41.5,1,97.093152360986,0.977654879615664,41.5,130.829247991723,100,-2.92041047414144,-3.00316047668457,0.136889521436845
+1059,80743,445297.952,80843,445197.952,58,10,0,NA,NA,NA,NA,-0.0216547565914516,0.355,35.5,2,92.7568259450866,0.838998211091234,20.25,105.271948908416,69.6419448852539,-2.98937602341175,-3.01983332633972,0.0483290767852021
+1060,80743,445197.952,80843,445097.952,59,10,4.75,0.0158333333333333,7.69733014903407,0.246438746438746,11.1803398874989,0.0595766517536867,0.655,65.5,1,98.7599782819451,0.840609226954751,65.5,39.2742961417628,0,-2.94190106789271,-2.96408987045288,0.0467644704483642
+1061,80743,445097.952,80843,444997.952,60,10,0,NA,NA,NA,NA,0.0888234474184173,0.8125,81.25,1,99.4242084607871,0.973898858075041,81.25,41.6528399599515,5,-2.91896215081215,-2.9552526473999,0.0426443235520442
+1062,80743,444997.952,80843,444897.952,61,10,1,0.0025,0,0,22.1597135440437,-0.0418945538165281,0.055,5.5,1,82.8209772257252,0.875505757858699,5.5,13.8122827356512,5,-2.89021627108256,-2.90547966957092,0.0238656459306294
+1063,80743,444897.952,80843,444797.952,62,10,2,0.005,2.08333333333333,0.138888888888889,12.3381019908347,0.048532029463895,0.6325,63.25,1,98.6453198582955,0.965555842590201,63.25,32.0686208250023,0,-2.87991480529308,-2.89920210838318,0.0300926602957036
+1064,80743,444797.952,80843,444697.952,63,10,3.25,0.00325,0.75,0.05,16.3264205663472,-0.0458952918756404,0.0025,0.25,1,0,NA,0.25,30.4138145446777,30.4138145446777,-2.85197420914968,-2.92501759529114,0.0799418103420811
+1065,80743,444697.952,80843,444597.952,64,10,0.75,0.0025,0,0,53.9488614614216,-0.0228337916047894,0.03,3,2,62.8738722138861,0.696785930867192,2,25.0174016952515,0,-2.81715855002403,-2.92090725898743,0.101133025548112
+1066,80743,444597.952,80843,444497.952,65,10,0,NA,NA,NA,NA,0.042164798957092,0.59,59,1,98.4111099483777,0.972346662242133,59,57.7833111488213,5,-2.75360365708669,-2.83314514160156,0.0843589359630276
+1067,80743,444497.952,80843,444397.952,66,10,0,NA,NA,NA,NA,-0.126702039344236,0,0,0,NA,NA,0,NA,NA,-2.77559610207876,-2.85450124740601,0.0811214890997877
+1068,80743,444397.952,80843,444297.952,67,10,0.5,0.0025,0,0,40,-0.110940124206245,0,0,0,NA,NA,0,NA,NA,-2.81861166656017,-2.8742733001709,0.0723067280477235
+1069,80743,444297.952,80843,444197.952,68,10,0.5,0.005,2.5,0.166666666666667,NA,-0.0282079436815548,0.2125,21.25,1,93.8457653779655,0.932723641332913,21.25,74.4090752994313,60,-2.64455699920654,-2.73559856414795,0.162154323818121
+1070,80743,444197.952,80843,444097.952,69,10,2,0.004,1,0.05,20.6155281280883,0.0444823476476588,0.375,37.5,4,90.6121451170683,0.808,17.75,38.7348914082845,10,-2.39878849685192,-2.55967545509338,0.114645486931384
+1071,80743,444097.952,80843,443997.952,70,10,0,NA,NA,NA,NA,-0.000646812645136379,0.3325,33.25,2,95.6116509412169,0.92571269384344,33,58.1398076795994,25,-2.39167128006617,-2.46763586997986,0.0829673608479722
+1072,80743,443997.952,80843,443897.952,71,10,0,NA,NA,NA,NA,-0.0942745934147388,0,0,0,NA,NA,0,NA,NA,-2.48906189203262,-2.52623915672302,0.0555279860830147
+1073,80743,443897.952,80843,443797.952,72,10,0.75,0.0075,3.27019417631815,0.277777777777778,NA,-0.0290945991547369,0,0,0,NA,NA,0,NA,NA,-2.45173019170761,-2.509202003479,0.0995003297332231
+1074,80743,443797.952,80843,443697.952,73,10,27,0.135,25.8578600514645,0.517887856897145,11.1803398874989,-0.0602483343875065,0,0,0,NA,NA,0,NA,NA,-2.32897673547268,-2.49603819847107,0.231108429044804
+1075,80743,443697.952,80843,443597.952,74,10,23.75,0.0339285714285714,7.25622319530734,0.198072562358277,17.0673864691825,-0.021983937144978,0.0925,9.25,2,80.9111799480726,0.873549202908368,5.5,32.5741236403182,11.1803398132324,-2.21183643738429,-2.43455338478088,0.268708023913076
+1076,80743,443597.952,80843,443497.952,75,10,4.75,0.00791666666666667,3.79005570685749,0.171296296296296,25.0887913084729,-0.00352613660164934,0.1125,11.25,2,83.0593831150515,0.881393624907339,6,30.290932337443,7.07106781005859,-2.3478082716465,-2.4309995174408,0.110561087686164
+1077,80743,443497.952,80843,443397.952,76,10,2,0.004,1.15403883526363,0.0888888888888889,16.2546619161375,-0.0258170134540887,0,0,0,NA,NA,0,NA,NA,-2.40225325028102,-2.4602735042572,0.0778517600918939
+1078,80743,443397.952,80843,443297.952,77,10,0,NA,NA,NA,NA,-0.00360066748595273,0,0,0,NA,NA,0,NA,NA,-2.41759449243546,-2.45859527587891,0.0734009430080458
+1079,80743,443297.952,80843,443197.952,78,10,3.75,0.0046875,1.4949133235977,0.0763888888888889,17.4357354882799,0.00626032775411659,0.0125,1.25,2,43.859649122807,0.594936708860759,1,12.8704814910889,5,-2.03689754009247,-2.39403629302979,0.369195568340177
+1080,80743,443197.952,80843,443097.952,79,10,11.5,0.00958333333333333,3.03517109312693,0.13874859708193,15.0141390252093,-0.00244062383928394,0.0825,8.25,3,81.4482397503137,0.838530628721364,7.5,7.46565454656428,0,-1.62560163935026,-1.83376789093018,0.280827920167996
+1081,80743,443097.952,80843,442997.952,80,10,23.75,0.059375,13.6421542137576,0.297222222222222,23.3979340077936,0.00412808538043464,0.19,19,3,88.9966718434403,0.742030587801732,13.5,16.0818347679941,0,-1.91537427902222,-2.45377111434937,0.40206869619887
+1082,80743,442997.952,80843,442897.952,81,10,3.5,0.035,9.84656609812052,0.321428571428571,NA,0.0274590869544772,0.27,27,2,92.0992203221845,0.873551106427819,22,74.4466043401648,28.2842712402344,-2.53042648235957,-2.81540608406067,0.459322312387454
+1083,80743,442897.952,80843,442797.952,82,10,0,NA,NA,NA,NA,-0.0732044816127745,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,70.4237403869629,58.3095169067383,-2.90408377349377,-3.04036521911621,0.190866559442985
+1084,80743,442797.952,80843,442697.952,83,10,3,0.003,0.5,0.0333333333333333,20.1426571066266,0.0498716747690924,0.3925,39.25,1,96.8622433213934,0.971422039323274,39.25,19.1480356447256,0,-3.0470906496048,-3.06472754478455,0.0563005667321007
+1085,80743,442697.952,80843,442597.952,84,10,2.25,0.0045,1.66666666666667,0.111111111111111,17.7330442317405,0.0693049265621812,0.4675,46.75,1,97.5655534302407,0.978289777198838,46.75,22.1656031685079,0,-3.00318564474583,-3.06818056106567,0.0891595734936309
+1086,80743,442597.952,80843,442497.952,85,10,2.75,0.0034375,0.9375,0.0625,22.4971678666016,-0.0779166402407282,0,0,0,NA,NA,0,NA,NA,-2.98303457101186,-3.06571054458618,0.0987248498862296
+1087,80743,442497.952,80843,442397.952,86,10,1.75,0.0035,1,0.0666666666666667,20.6155281280883,0.0237072293116762,0.1875,18.75,3,89.0222229922548,0.794871794871795,16.25,29.7970620727539,10,-2.98066781461239,-3.02534317970276,0.0647518532713461
+1088,80743,442397.952,80843,442297.952,87,10,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,0.0276123981160617,0.135,13.5,2,87.6271848701385,0.900553172975325,12.5,20.7244935918737,0,-2.96550967295965,-3.03770160675049,0.077671688555801
+1089,80743,442297.952,80843,442197.952,88,10,0.25,0.0025,0,0,NA,0.0113267667453329,0.0025,0.25,1,0,NA,0.25,80.6225738525391,80.6225738525391,-2.92282208800316,-3.00498342514038,0.0682122465277898
+1090,80743,442197.952,80843,442097.952,89,10,0,NA,NA,NA,NA,-0.0902276287530549,0,0,0,NA,NA,0,NA,NA,-2.74894664684931,-2.85307836532593,0.189068760312405
+1091,80743,442097.952,80843,441997.952,90,10,0,NA,NA,NA,NA,-0.0840451787598431,0,0,0,NA,NA,0,NA,NA,-2.4236952662468,-2.64874315261841,0.265588162300701
+1092,80743,441997.952,80843,441897.952,91,10,2.5,0.00833333333333333,4.16666666666667,0.222222222222222,12.7240226919466,-0.127488456778228,0,0,0,NA,NA,0,NA,NA,-2.29072643816471,-2.48990178108215,0.215787448781271
+1093,80743,441897.952,80843,441797.952,92,10,2.5,0.00416666666666667,1.38888888888889,0.0925925925925926,17.3478055998564,-0.102102133549051,0,0,0,NA,NA,0,NA,NA,-2.52700320879618,-2.68195700645447,0.199385673109365
+1094,80743,441797.952,80843,441697.952,93,10,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.0453139849603394,0,0,0,NA,NA,0,NA,NA,-2.74641680717468,-2.81492733955383,0.0932041528337754
+1095,80743,441697.952,80843,441597.952,94,10,1.5,0.00375,1.25,0.0833333333333333,36.0843874493995,-0.0307282520028093,0.1075,10.75,1,89.2106768070942,0.984438219732337,10.75,24.9214080987975,15,-2.82910666863124,-2.88204789161682,0.0711360827851854
+1096,80743,441597.952,80843,441497.952,95,10,3.25,0.00541666666666667,2.36111111111111,0.157407407407407,15.8113883008419,-0.0470505262794904,0,0,0,NA,NA,0,NA,NA,-2.8643454015255,-3.01768589019775,0.148011362116344
+1097,80743,441497.952,80843,441397.952,96,10,0.5,0.0025,0,0,20.6155281280883,-0.048572698449716,0,0,0,NA,NA,0,NA,NA,-2.93415280183156,-3.04816460609436,0.167514024847966
+1098,80743,441397.952,80843,441297.952,97,10,0.5,0.005,2.5,0.166666666666667,NA,-0.129354566475376,0,0,0,NA,NA,0,NA,NA,-2.94663970172405,-3.03255248069763,0.0983250093764074
+1099,80743,441297.952,80843,441197.952,98,10,9.5,0.095,25.9780110421105,0.390350877192982,NA,0.0391884697615751,0.4925,49.25,1,97.7634684223253,0.983804575207504,49.25,28.3679065704346,0,-2.91517615318298,-2.9574453830719,0.0651241643618479
+1100,80743,441197.952,80843,441097.952,99,10,0,NA,NA,NA,NA,-0.0131511724178381,0,0,0,NA,NA,0,NA,NA,-2.81420530378819,-2.94856810569763,0.124485015359572
+1101,80843,451097.952,80943,450997.952,0,11,68.25,0.0975,8.41731996249495,0.376042421122135,11.0515256821426,0.0428826506448968,0.4925,49.25,3,94.0738023681916,0.78945947769755,27.25,0.610940807361893,0,2.3976258304384,1.67186737060547,0.998457851999384
+1102,80843,450997.952,80943,450897.952,1,11,39.75,0.0795,8.58431583687954,0.262080536912752,15.4339784002102,0.0265957664912798,0.2325,23.25,4,87.1006132133532,0.803775362034457,16.25,0.936248040968372,0,1.93388989567757,1.65079569816589,0.53660462521131
+1103,80843,450897.952,80943,450797.952,2,11,39,0.065,8.5663479454031,0.45436792399158,10.3934466291663,0.0375675227618194,0.3425,34.25,4,93.0916503423165,0.841825095057034,31.5,1.97102351780355,0,1.85401617156135,1.70865571498871,0.223084009564349
+1104,80843,450797.952,80943,450697.952,3,11,73.5,0.735,34.2822396980604,0.886054421768708,NA,0.0568926793908759,0.6725,67.25,3,97.9939110670231,0.740004534804626,65.25,0.878659117177517,0,2.00087541341782,1.83581256866455,0.200494736571292
+1105,80843,450697.952,80943,450597.952,4,11,86.25,0.43125,20.0283678960576,0.515549076773567,10,0.0396839323993481,0.54,54,1,98.1009071848445,0.859398658879515,54,0.509259259259259,0,1.71823174423642,1.57874917984009,0.222348991502254
+1106,80843,450597.952,80943,450497.952,5,11,88.75,0.8875,38.0372851257379,0.860093896713615,NA,-0.0182067837468276,0.165,16.5,1,92.3061588442808,0.916688362405623,16.5,0.303030303030303,0,1.56381125251452,1.46169602870941,0.132166956993969
+1107,80843,450497.952,80943,450397.952,6,11,51.75,0.25875,28.3656144911,0.594871794871795,10,0.0214005416583132,0.1325,13.25,6,74.5575466685635,0.670646356525319,5.25,2.26415094339623,0,1.44994616508484,1.33254456520081,0.167548294496854
+1108,80843,450397.952,80943,450297.952,7,11,21.75,0.018125,3.33225609055426,0.159711337513062,14.8006046930358,0.0183888184318857,0.1725,17.25,9,74.5231735793613,0.670420214226861,8,4.96156327620797,0,1.23874072233836,1.08063864707947,0.200253572010647
+1109,80843,450297.952,80943,450197.952,8,11,32.5,0.0541666666666667,6.44099034846783,0.264242382776866,19.5951291763554,0.00789876851935332,0.08,8,2,79.9631149262165,0.749163879598662,5.25,2.19757735729218,0,1.11149631606208,1.03974294662476,0.135070472765443
+1110,80843,450197.952,80943,450097.952,9,11,9,0.01,3.63591725832384,0.130555555555556,13.460919553214,0.0110384574593144,0.1075,10.75,3,82.1282929616582,0.766573295985061,8.25,24.0032267016034,0,1.06414426697625,1.01017534732819,0.0954056942448087
+1111,80843,450097.952,80943,449997.952,10,11,18.5,0.0168181818181818,3.84184983176155,0.185497835497835,11.5800149400599,-0.000609887868049554,0.07,7,5,66.3958275657009,0.71326164874552,4.25,2.32142857142857,0,0.943456475933393,0.870813548564911,0.0947903794752616
+1112,80843,449997.952,80943,449897.952,11,11,32,0.0457142857142857,7.63921143027611,0.314079856212838,11.7260056178562,0.0223413833657833,0.1225,12.25,6,75.2428167351216,0.715099715099715,6.5,5.24696509692134,0,0.811442653338114,0.768383920192719,0.0699284544202573
+1113,80843,449897.952,80943,449797.952,12,11,18.75,0.0234375,6.37731237061668,0.225536616161616,13.0901699437495,0.0133839613344185,0.005,0.5,2,0,1,0.25,14.6040477752686,11.1803398132324,0.789253165324529,0.708889245986938,0.146050726275853
+1114,80843,449797.952,80943,449697.952,13,11,24.5,0.0272222222222222,5.15969718980182,0.190740740740741,14.1971658251654,0.0222595935094432,0.1725,17.25,4,87.6191689668196,0.770292876582357,14.25,4.77541417660921,0,0.901983075671726,0.722256243228912,0.301577444631604
+1115,80843,449697.952,80943,449597.952,14,11,78,0.39,17.3847366497129,0.444801714898178,11.1803398874989,-0.0268405684273057,0.155,15.5,4,81.4670564720597,0.780845934692089,6.75,2.28803474672379,0,1.14227151870728,0.822733581066132,0.367597585874088
+1116,80843,449597.952,80943,449497.952,15,11,36.5,0.0608333333333333,8.22004086715379,0.289023243818841,13.1924599123711,0.0215977951644891,0.22,22,3,88.1666648077965,0.812183570145354,15.75,2.39369262348522,0,1.39963938130273,1.09146904945374,0.312971692128096
+1117,80843,449497.952,80943,449397.952,16,11,35.5,0.0322727272727273,6.79861260836201,0.294559228650138,10.7764563329543,0.00516374973839902,0.115,11.5,4,81.4067024311421,0.710270896711575,8.75,2.07222772681195,0,1.50842965642611,1.39516317844391,0.279668094211433
+1118,80843,449397.952,80943,449297.952,17,11,53.75,0.134375,12.3081775293779,0.444305381727159,13.25693909433,0.00667906685794151,0.0525,5.25,4,60.4457776051,0.637203166226913,1.75,2.2414794195266,0,1.52735300196542,0.949990451335907,0.806167854968091
+1119,80843,449297.952,80943,449197.952,18,11,72.5,0.725,36.1845400690124,0.867241379310345,NA,0.0149710698212357,0.215,21.5,2,93.0692440807625,0.925065567628325,21.25,0.348837209302326,0,1.97116863230864,0.487446904182434,1.63050904983096
+1120,80843,449197.952,80943,449097.952,19,11,26.5,0.0883333333333333,10.2846065392304,0.362900916380298,33.4164593685348,0.00685780592611991,0.1975,19.75,2,90.4846612715492,0.893190921228304,18,1.34754859344869,0,0.442777829037772,-0.387471944093704,1.77033236025171
+1121,80843,449097.952,80943,448997.952,20,11,8.25,0.00825,3.34789685324054,0.116071428571429,11.5366310572456,0.00531792208381376,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,9.63120269775391,0,-0.426469785471757,-0.509046614170074,0.498896283932186
+1122,80843,448997.952,80943,448897.952,21,11,25,0.0416666666666667,6.01921050885622,0.25389527458493,13.500660713401,0.0283793083772616,0.245,24.5,3,92.1434723298863,0.819385912101144,22.75,2.76550789268649,0,-0.320899887941778,-0.502675354480743,0.251269913662183
+1123,80843,448897.952,80943,448797.952,22,11,55.25,0.05525,6.60846924909303,0.196730750744977,12.302775637732,0.0137850930485911,0.22,22,6,83.2503233403305,0.746856116282868,12.5,1.90586384859952,0,0.180492308508191,-0.106305964291096,0.388507232059662
+1124,80843,448797.952,80943,448697.952,23,11,45.5,0.091,9.66902904417766,0.398627136752137,10.2360679774998,0.0256926610436494,0.265,26.5,4,93.2694856681393,0.864657905046835,25.75,0.990566037735849,0,0.591197135547797,0.386236310005188,0.215761176781201
+1125,80843,448697.952,80943,448597.952,24,11,18.75,0.0208333333333333,5.88975699681925,0.187188074599422,12.265381794702,0.0107904408185186,0.025,2.5,3,50.7749378731535,0.605522682445759,1.5,15.2335828781128,0,0.673674649662442,0.604192137718201,0.159947670261394
+1126,80843,448597.952,80943,448497.952,25,11,47.25,0.0675,7.4659608475259,0.294754744002864,14.0594560756625,0.018021005704486,0.14,14,4,80.1018147709554,0.772236873651403,8.5,3.09437625748771,0,0.469686141858498,-0.372399568557739,0.621337813605753
+1127,80843,448497.952,80943,448397.952,26,11,73,0.243333333333333,18.6775452733673,0.630915802500747,11.380711874577,0.0453399181614441,0.5375,53.75,3,96.3583124821482,0.908108108108108,50.5,1.253476626374,0,-1.27398036585914,-2.03315806388855,1.2086486116686
+1128,80843,448397.952,80943,448297.952,27,11,78,0.26,18.0663737953773,0.520553064275037,11.380711874577,0.041117845216213,0.46,46,4,93.4229237624247,0.678649237472767,32.25,1.41031236233919,0,-2.2498272061348,-2.72672367095947,0.452316658583967
+1129,80843,448297.952,80943,448197.952,28,11,54.5,0.13625,13.4250947330155,0.414621212121212,13.4958640941704,0.0493293014832307,0.615,61.5,1,98.5518240730175,0.847543760587239,61.5,1.41691166792459,0,-2.71143719885084,-3.05340480804443,0.469553461529747
+1130,80843,448197.952,80943,448097.952,29,11,7.25,0.018125,3.29762881611145,0.118589743589744,22.6647234580361,0.0166985155919792,0.155,15.5,1,91.8947234736642,0.90138067061144,15.5,4.56958859966647,0,-3.0920001467069,-3.23182797431946,0.262241155738352
+1131,80843,448097.952,80943,447997.952,30,11,0,NA,NA,NA,NA,0.0132339606787809,0.1075,10.75,5,74.0213006100163,0.579831932773109,5.5,39.0998031261355,15,-3.08911622895135,-3.21450328826904,0.241586320917474
+1132,80843,447997.952,80943,447897.952,31,11,16.25,0.08125,14.0255275310194,0.597257653061225,51.478150704935,0.0408364460581708,0.43,43,4,95.4825552974902,0.911450550666888,41.75,17.4907823274302,0,-2.40139987733629,-2.94604182243347,0.924897664350819
+1133,80843,447897.952,80943,447797.952,32,11,48,0.24,20.4405962246548,0.647710622710623,22.3606797749979,0.00912892842953624,0.0925,9.25,4,73.8980956960323,0.674840807478661,4.5,0.461380211082665,0,-1.51619942982992,-1.95686566829681,0.6860562605979
+1134,80843,447797.952,80943,447697.952,33,11,5,0.00833333333333333,3.1268264608844,0.268518518518518,23.3935351829431,-0.00558108046895086,0.005,0.5,1,30.8308651382582,1,0.5,10.5901699066162,10,-1.48414529694451,-1.8130841255188,0.491161691887569
+1135,80843,447697.952,80943,447597.952,34,11,22.5,0.025,6.00569893061391,0.263841113841114,14.3176254715358,-0.0272032146420952,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-2.04411303003629,-2.4417622089386,0.462560564861654
+1136,80843,447597.952,80943,447497.952,35,11,49.75,0.0710714285714286,8.62752479552355,0.240329852871381,11.336058280477,-0.0106113570646266,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,0,0,-2.41297687424554,-2.73270606994629,0.379902116473865
+1137,80843,447497.952,80943,447397.952,36,11,9.5,0.00791666666666667,2.60368007661318,0.110119047619048,13.3381872690067,0.0183755054408539,0.0975,9.75,1,88.4075627573592,0.931813339015555,9.75,32.3634311969464,14.1421356201172,-2.45469077428182,-2.65261650085449,0.158170301884208
+1138,80843,447397.952,80943,447297.952,37,11,2.5,0.00357142857142857,0.822419870618569,0.0238095238095238,11.5046782644054,0.0329451574140694,0.2175,21.75,1,93.9777627911811,0.950530763681336,21.75,48.0921563554084,11.1803398132324,-2.3894673453437,-2.49543476104736,0.1737399114493
+1139,80843,447297.952,80943,447197.952,38,11,0,NA,NA,NA,NA,0.00978454197338579,0.005,0.5,1,30.8308651382582,1,0.5,40.7711715698242,40.3112869262695,-2.47280526161194,-2.57475686073303,0.164871637942696
+1140,80843,447197.952,80943,447097.952,39,11,6,0.0075,1.8341713951885,0.0758928571428571,12.9077974015616,0.00698886375720576,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,0,0,-2.56488834487067,-2.6408703327179,0.117860698244581
+1141,80843,447097.952,80943,446997.952,40,11,57,0.57,34.5869150723701,0.779239766081871,NA,0.0426794745788357,0.53,53,1,98.0336545290164,0.918997731936494,53,0.98383907102189,0,-2.45928345123927,-2.68272638320923,0.303073807854286
+1142,80843,446997.952,80943,446897.952,41,11,80.25,0.40125,28.4693925805617,0.824876365801875,10,0.0570518359320704,0.6775,67.75,3,95.7823077004932,0.786783631074763,45.75,0.616498405203168,0,-2.30258806546529,-2.46504688262939,0.290282876575196
+1143,80843,446897.952,80943,446797.952,42,11,81,0.81,37.3155917859596,0.813786008230453,NA,0.0658931486355141,0.9625,96.25,1,99.898450616446,0.525114155251142,96.25,0.974742854725231,0,-2.31615583101908,-2.50030374526978,0.363010247345779
+1144,80843,446797.952,80943,446697.952,43,11,63.5,0.635,38.3606061516798,0.753937007874016,NA,0.0749830614216626,0.9175,91.75,1,99.7684657792434,0.59886636145629,91.75,2.32685983018589,0,-2.64294820361667,-2.76883506774902,0.205761759399042
+1145,80843,446697.952,80943,446597.952,44,11,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.0373995544456557,0.005,0.5,1,30.8308651382582,1,0.5,5,5,-2.87863137986925,-2.92751884460449,0.157356114585909
+1146,80843,446597.952,80943,446497.952,45,11,0,NA,NA,NA,NA,-0.057213813837152,0,0,0,NA,NA,0,NA,NA,-2.77337529261907,-2.91375136375427,0.174088142956247
+1147,80843,446497.952,80943,446397.952,46,11,0,NA,NA,NA,NA,-0.0762973210541531,0,0,0,NA,NA,0,NA,NA,-2.36813256475661,-2.53469109535217,0.27334422748355
+1148,80843,446397.952,80943,446297.952,47,11,0,NA,NA,NA,NA,-0.0786819694952283,0,0,0,NA,NA,0,NA,NA,-1.96754584709803,-2.11301016807556,0.197632562232003
+1149,80843,446297.952,80943,446197.952,48,11,0,NA,NA,NA,NA,-0.0181581125856155,0,0,0,NA,NA,0,NA,NA,-1.74648870362176,-1.88235867023468,0.380581476669351
+1150,80843,446197.952,80943,446097.952,49,11,0,NA,NA,NA,NA,-0.0528231203102041,0,0,0,NA,NA,0,NA,NA,-1.44686150550842,-1.76896059513092,0.60812815334814
+1151,80843,446097.952,80943,445997.952,50,11,31.5,0.1575,17.1287199717661,0.656966190152031,10,-0.0119487091757765,0.13,13,3,80.556995662742,0.832106418700762,7.25,3.8330318744366,0,-0.798853370878432,-1.12541925907135,0.577294647716383
+1152,80843,445997.952,80943,445897.952,51,11,6,0.03,7.31157260902024,0.541228070175439,38.0788655293195,0.159732624378958,0.8075,80.75,1,99.4061591150036,0.965935703640622,80.75,34.0246383206394,0,-0.715038053070505,-1.18450546264648,0.643039126800061
+1153,80843,445897.952,80943,445797.952,52,11,13.25,0.1325,24.6359841797499,0.632075471698113,NA,0.0669176511611477,0.505,50.5,2,97.1382437430757,0.924579124579125,49.75,29.2079119729524,0,-1.33893807729085,-1.46895956993103,0.239052600178106
+1154,80843,445797.952,80943,445697.952,53,11,33,0.033,5.05476842561844,0.178571428571429,11.1180339887499,-0.0244465333804692,0.165,16.5,1,92.3061588442808,0.791720906014059,16.5,6.14299860867587,0,-1.6287383834521,-1.87078368663788,0.253249328086819
+1155,80843,445697.952,80943,445597.952,54,11,0,NA,NA,NA,NA,-0.0711914477776736,0,0,0,NA,NA,0,NA,NA,-1.98915761046939,-2.07608580589294,0.156605836444862
+1156,80843,445597.952,80943,445497.952,55,11,0,NA,NA,NA,NA,0.0161443002408851,0.13,13,1,90.6657843098624,0.922510654784967,13,146.972223428579,134.629119873047,-2.12153143352932,-2.17925572395325,0.0941472902905772
+1157,80843,445497.952,80943,445397.952,56,11,0,NA,NA,NA,NA,-0.0609798886172939,0.005,0.5,1,30.8308651382582,1,0.5,133.54817199707,132.003784179688,-2.38846323887507,-2.61371326446533,0.222256121993919
+1158,80843,445397.952,80943,445297.952,57,11,0.25,0.0025,0,0,NA,0.0341808421671885,0.475,47.5,1,97.6265657883157,0.962121212121212,47.5,54.8931861475894,0,-2.74745053715176,-2.88049244880676,0.182505802899553
+1159,80843,445297.952,80943,445197.952,58,11,0,NA,NA,NA,NA,-0.0181579336765571,0.3875,38.75,1,96.8082175905,0.9484425349087,38.75,79.0054819414693,55.2268028259277,-2.87237974007924,-2.93499326705933,0.0930636010920523
+1160,80843,445197.952,80943,445097.952,59,11,4.5,0.0225,11.3785976815119,0.25,11.1803398874989,0.0506456096892362,0.5825,58.25,3,94.8707833430156,0.87335673480625,46.5,22.4834080642897,0,-2.89552524354723,-2.93370532989502,0.0527494692423731
+1161,80843,445097.952,80943,444997.952,60,11,0,NA,NA,NA,NA,0.131532103082573,0.9025,90.25,1,99.7229916897507,0.955015744489429,90.25,69.6971128257688,25,-2.88784851630529,-2.91505837440491,0.0352339065341674
+1162,80843,444997.952,80943,444897.952,61,11,0,NA,NA,NA,NA,-0.0572025062792318,0,0,0,NA,NA,0,NA,NA,-2.87024360232883,-2.87812471389771,0.0144724838779798
+1163,80843,444897.952,80943,444797.952,62,11,5.5,0.00916666666666667,3.53152204916114,0.19212962962963,12.8524838121819,0.00533959387012146,0.34,34,1,96.2369165714469,0.9816715542522,34,28.7794704998241,0,-2.90943930546443,-2.96513366699219,0.0512210412894078
+1164,80843,444797.952,80943,444697.952,63,11,1.75,0.0025,0,0,20.6155281280883,-0.0541538125555962,0,0,0,NA,NA,0,NA,NA,-2.99446256955465,-3.03373169898987,0.0704180727755431
+1165,80843,444697.952,80943,444597.952,64,11,2,0.00333333333333333,0.833333333333333,0.0555555555555556,22.3101802219093,0.00373123877812759,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,38.0319466977506,0,-2.99539017677307,-3.03649306297302,0.0781603025400858
+1166,80843,444597.952,80943,444497.952,65,11,0,NA,NA,NA,NA,0.0303513508691685,0.34,34,1,96.2369165714469,0.957233626588465,34,44.0658414924846,7.07106781005859,-2.91874967681037,-2.98705148696899,0.0942626346239855
+1167,80843,444497.952,80943,444397.952,66,11,0.5,0.005,2.5,0.166666666666667,NA,-0.169983655856922,0,0,0,NA,NA,0,NA,NA,-2.89916714032491,-2.93737268447876,0.0609568451125877
+1168,80843,444397.952,80943,444297.952,67,11,2,0.00666666666666667,3.0902974825384,0.133333333333333,12.7240226919466,-0.108528244560584,0,0,0,NA,NA,0,NA,NA,-2.84320191542308,-2.90707683563232,0.0884235105763619
+1169,80843,444297.952,80943,444197.952,68,11,0,NA,NA,NA,NA,0.0339551480245427,0.39,39,1,96.835360326048,0.965727994516479,39,101.290266966208,60.2079734802246,-2.58709825409783,-2.69479370117188,0.192342092545463
+1170,80843,444197.952,80943,444097.952,69,11,0,NA,NA,NA,NA,0.0601027775004331,0.585,58.5,1,98.3818899951514,0.895233106338397,58.5,64.3547400042542,11.1803398132324,-2.32761722803116,-2.40911602973938,0.0936787699500762
+1171,80843,444097.952,80943,443997.952,70,11,0,NA,NA,NA,NA,-0.031606874966019,0.205,20.5,1,93.6387867289635,0.947950553025374,20.5,71.0155230266292,45.276927947998,-2.31174776289198,-2.3400731086731,0.0464582426022474
+1172,80843,443997.952,80943,443897.952,71,11,0,NA,NA,NA,NA,-0.076327782003209,0,0,0,NA,NA,0,NA,NA,-2.41316342353821,-2.48336005210876,0.079698822525901
+1173,80843,443897.952,80943,443797.952,72,11,0,NA,NA,NA,NA,-0.0342274770070799,0,0,0,NA,NA,0,NA,NA,-2.4850337240431,-2.52592325210571,0.0741861147058009
+1174,80843,443797.952,80943,443697.952,73,11,3.5,0.0116666666666667,2.87541830722654,0.171296296296296,31.7306746840088,-0.0542725475356565,0.0025,0.25,1,0,NA,0.25,10,10,-2.48769678672155,-2.54491090774536,0.0996932860284913
+1175,80843,443697.952,80943,443597.952,74,11,40,0.08,15.9808346130058,0.556648792019835,11.8929222269922,-0.0554874559608288,0.07,7,4,76.9276012393293,0.73715651135006,6,2.29079055786133,0,-2.3478725751241,-2.45346140861511,0.21336709335404
+1176,80843,443597.952,80943,443497.952,75,11,24.75,0.04125,7.12275964313943,0.168591030789826,14.0994220695228,-0.00511727406821592,0.0825,8.25,5,66.7703907669648,0.677061257442729,4,2.67428507949367,0,-2.09683840473493,-2.26259899139404,0.351562866059785
+1177,80843,443497.952,80943,443397.952,76,11,10.25,0.0113888888888889,3.46267202339292,0.166435185185185,16.4845522063095,0.0158441997895352,0.17,17,3,86.6585266229211,0.777260301711046,10.25,12.617213641896,0,-2.10184587372674,-2.29891180992126,0.366988756531677
+1178,80843,443397.952,80943,443297.952,77,11,7.5,0.015,2.72824258970053,0.181944444444444,17.2462112512353,-0.00371565346920306,0,0,0,NA,NA,0,NA,NA,-2.17239016956753,-2.32539200782776,0.30395826407981
+1179,80843,443297.952,80943,443197.952,78,11,6.25,0.015625,8.2838916329144,0.129166666666667,11.1803398874989,0.00103351523008996,0.075,7.5,4,69.2386400291268,0.669056811913955,3.25,19.1195537567139,7.07106781005859,-1.94752990206083,-2.23693680763245,0.249593778642985
+1180,80843,443197.952,80943,443097.952,79,11,6,0.0075,2.2695712771547,0.1125,17.898022599631,-0.0261204376850947,0.035,3.5,1,77.1303955881658,1,3.5,12.5177861622402,5,-1.84751992755466,-2.01468992233276,0.218945525317207
+1181,80843,443097.952,80943,442997.952,80,11,13.75,0.1375,25.0652077365817,0.581818181818182,NA,0.00581885039345707,0.1075,10.75,3,80.071061871981,0.735449735449735,6.25,46.8119552080021,10,-2.40496182441711,-2.64450550079346,0.346605251666901
+1182,80843,442997.952,80943,442897.952,81,11,0,NA,NA,NA,NA,0.0443606392290894,0.42,42,2,94.3606387068998,0.860956618464961,34.75,106.998045966739,50.2493743896484,-2.80558652347989,-2.89952397346497,0.182668572022939
+1183,80843,442897.952,80943,442797.952,82,11,0.25,0.0025,0,0,NA,-0.0923678495176136,0,0,0,NA,NA,0,NA,NA,-2.99870258569717,-3.04659485816956,0.076399219573515
+1184,80843,442797.952,80943,442697.952,83,11,2.25,0.0028125,0.3125,0.0208333333333333,20.6155281280883,0.133717920229537,0.575,57.5,1,98.3223108063601,0.972576443164678,57.5,25.4636945890344,5,-2.99556877877977,-3.03804516792297,0.0669733693546887
+1185,80843,442697.952,80943,442597.952,84,11,2.25,0.0045,2,0.133333333333333,16.7722162662912,0.00124698276573326,0.295,29.5,1,95.572898758965,0.960230662159475,29.5,11.0510529178684,0,-2.85580948988597,-2.95208215713501,0.0897630119755256
+1186,80843,442597.952,80943,442497.952,85,11,3,0.00333333333333333,0.833333333333333,0.0555555555555556,19.5479414998113,-0.0641946290596388,0.0025,0.25,1,0,NA,0.25,30,30,-2.79175286822849,-2.84512209892273,0.062541665716369
+1187,80843,442497.952,80943,442397.952,86,11,1.75,0.004375,1.875,0.125,18.2134582144651,-0.00733096007570566,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047,-2.88913798332214,-2.99883556365967,0.107331982954587
+1188,80843,442397.952,80943,442297.952,87,11,0,NA,NA,NA,NA,0.025837165939156,0,0,0,NA,NA,0,NA,NA,-2.98132822248671,-3.0237352848053,0.0703863129244451
+1189,80843,442297.952,80943,442197.952,88,11,0,NA,NA,NA,NA,-0.00416040985604923,0.035,3.5,3,65.4320051717211,0.792746113989637,3,51.3473783220564,36.0555114746094,-2.91446922222773,-3.00168991088867,0.106460907500818
+1190,80843,442197.952,80943,442097.952,89,11,0,NA,NA,NA,NA,-0.0814523657876998,0,0,0,NA,NA,0,NA,NA,-2.67716015709771,-2.80663013458252,0.206579303921293
+1191,80843,442097.952,80943,441997.952,90,11,0,NA,NA,NA,NA,-0.074538867007941,0,0,0,NA,NA,0,NA,NA,-2.37089591556125,-2.45650577545166,0.162038270204032
+1192,80843,441997.952,80943,441897.952,91,11,2.25,0.0045,2,0.133333333333333,23.7691944957779,-0.0731801126274513,0,0,0,NA,NA,0,NA,NA,-2.31890799601873,-2.412917137146,0.112837544129967
+1193,80843,441897.952,80943,441797.952,92,11,1.5,0.003,0.5,0.0333333333333333,21.3452307648281,-0.115236859750003,0,0,0,NA,NA,0,NA,NA,-2.48718592855665,-2.54629707336426,0.106646430382776
+1194,80843,441797.952,80943,441697.952,93,11,1.25,0.003125,0.625,0.0416666666666667,21.8354204880572,-0.0404293644976497,0,0,0,NA,NA,0,NA,NA,-2.65024157365163,-2.7449369430542,0.0993812816765045
+1195,80843,441697.952,80943,441597.952,94,11,0.5,0.005,2.5,0.166666666666667,NA,0.0258346530952258,0.4075,40.75,1,97.0183110527583,0.971870604781997,40.75,41.5379065648178,14.1421356201172,-2.80598878860474,-2.87083387374878,0.0982124136243157
+1196,80843,441597.952,80943,441497.952,95,11,0,NA,NA,NA,NA,-0.0431954158637382,0,0,0,NA,NA,0,NA,NA,-2.97470146417618,-3.0466320514679,0.0889550107464503
+1197,80843,441497.952,80943,441397.952,96,11,1,0.0025,0,0,23.0553128480261,-0.0392339234147221,0,0,0,NA,NA,0,NA,NA,-3.0509750313229,-3.06614017486572,0.0485972007632653
+1198,80843,441397.952,80943,441297.952,97,11,8.5,0.085,23.0788030607652,0.357843137254902,NA,-0.131179313264001,0,0,0,NA,NA,0,NA,NA,-2.9469397465388,-3.03290104866028,0.0880143964713764
+1199,80843,441297.952,80943,441197.952,98,11,2.25,0.0225,8.60243579540476,0.407407407407407,NA,-0.101769471710431,0,0,0,NA,NA,0,NA,NA,-2.80926876597934,-2.86769008636475,0.0837802973324737
+1200,80843,441197.952,80943,441097.952,99,11,0,NA,NA,NA,NA,-0.060709394779725,0,0,0,NA,NA,0,NA,NA,-2.64986950159073,-2.75312852859497,0.120379040091175
+1201,80943,451097.952,81043,450997.952,0,12,41.25,0.06875,12.1455400449631,0.516333392060136,12.2140452079103,0.00885273860310917,0.1775,17.75,3,87.7323633186712,0.87355623100304,15.75,1.35511554127008,0,1.00799963871638,0.712895691394806,0.56006128108787
+1202,80943,450997.952,81043,450897.952,1,12,74.5,0.3725,23.5202135375,0.724084321475626,11.1803398874989,0.0420084604660224,0.525,52.5,4,94.6017209929734,0.800780724188989,45.5,0.467863845825195,0,1.21883790194988,0.768381118774414,0.445357598680438
+1203,80943,450897.952,81043,450797.952,2,12,57.75,0.144375,12.1984641484128,0.50813137755102,12.5,0.0454382941124823,0.4525,45.25,6,94.2716699041748,0.820077693723165,40.75,0.898801961656433,0,1.62537758880191,1.29712736606598,0.377062026699815
+1204,80943,450797.952,81043,450697.952,3,12,21,0.0161538461538462,4.02064981380061,0.29005439005439,13.7060194503224,0.0272991593495499,0.22,22,4,89.0856246299584,0.689694594153193,15.25,6.34880035573786,0,1.94882714748383,1.82924199104309,0.17022020568001
+1205,80943,450697.952,81043,450597.952,4,12,13.5,0.016875,3.45325896108863,0.250940860215054,18.7251162323302,0.00182367126260033,0.07,7,3,73.7651927325986,0.6415770609319,4.25,1.85968099321638,0,1.83572733402252,1.74879312515259,0.128152093775688
+1206,80943,450597.952,81043,450497.952,5,12,60.5,0.15125,10.0635361138772,0.248417721518987,13.0785509248927,0.0301875067488254,0.305,30.5,5,89.2557434478918,0.765617370357108,20,0.713697277131628,0,1.74728007117907,1.67416322231293,0.0913950265009119
+1207,80943,450497.952,81043,450397.952,6,12,39.25,0.0356818181818182,7.02080561243323,0.273422410922411,10.3219108784088,0.0263622198861776,0.195,19.5,6,81.5760243798309,0.702943559276263,12,2.97982572897887,0,1.7044135067198,1.60360908508301,0.1356596766456
+1208,80943,450397.952,81043,450297.952,7,12,19.5,0.015,3.55987045198863,0.162840389584576,14.4123599826921,0.00676984355804052,0.07,7,4,71.4216513319799,0.68936678614098,4.75,2.46936198643276,0,1.53804252545039,1.36382353305817,0.186661838940534
+1209,80943,450297.952,81043,450197.952,8,12,35.25,0.05875,7.13219642109541,0.250118708452042,16.8470619710429,0.0414505839829144,0.435,43.5,2,95.1563864925872,0.862156424889036,37.75,2.66098563972561,0,1.36759800381131,1.25074398517609,0.14978860326445
+1210,80943,450197.952,81043,450097.952,9,12,31,0.0516666666666667,7.52299908947446,0.217068483577918,15.5161613229531,0.0195382523537774,0.2275,22.75,5,87.4637268989886,0.800231731191817,15.5,2.96541553539234,0,1.24567741817898,1.14476609230042,0.143203049723668
+1211,80943,450097.952,81043,449997.952,10,12,20.25,0.0184090909090909,3.54974244543877,0.147009308774015,14.560907367503,0.0227516085802154,0.2375,23.75,3,91.0575229450894,0.807135969141755,19.5,2.97935256958008,0,1.00590331355731,0.877402782440186,0.155276875161679
+1212,80943,449997.952,81043,449897.952,11,12,11.25,0.0160714285714286,3.22625645584764,0.120656370656371,25.0432254501115,0.0114730390083423,0.1,10,1,88.6195912622717,0.983416252072968,10,2.80177669525146,0,0.759874833954705,0.652622222900391,0.138124603425614
+1213,80943,449897.952,81043,449797.952,12,12,16.25,0.01015625,3.26455615801048,0.145581896551724,11.8129914600416,0.0137868472722766,0.075,7.5,6,62.0056993070289,0.492553778268064,2.25,7.67496687571208,0,0.57907093813022,0.443619012832642,0.151179652957655
+1214,80943,449797.952,81043,449697.952,13,12,27,0.0385714285714286,5.84464720388883,0.176384839650146,20.4661005423887,0.0322827371648509,0.285,28.5,4,87.7725873803962,0.755584221603639,15.75,4.08868291085227,0,0.504779822296566,0.409957647323608,0.183226046199826
+1215,80943,449697.952,81043,449597.952,14,12,18.5,0.0205555555555556,4.7697291355288,0.212651037562385,14.3056990990404,0.0102237715306592,0.0725,7.25,1,85.7162801918893,0.862361644778345,7.25,5.37818711379479,0,0.61382378389438,0.435041278600693,0.274180018826042
+1216,80943,449597.952,81043,449497.952,15,12,12,0.01,2.95235973080083,0.207502374169041,17.4281030349957,0.0105000053151707,0.05,5,2,77.5556366186497,0.898132427843803,4.75,7.4002815246582,0,0.912317256132762,0.66126811504364,0.333551713541289
+1217,80943,449497.952,81043,449397.952,16,12,25.25,0.12625,13.4789983532485,0.632952508960574,58.309518948453,0.0146996682271856,0.08,8,3,78.3647449286687,0.853678929765886,6.75,0.78125,0,1.37710409363111,1.00555956363678,0.417063873219978
+1218,80943,449397.952,81043,449297.952,17,12,41.75,0.20875,20.0824115561248,0.57612517580872,10,0.0296677677093248,0.2975,29.75,3,93.680326480299,0.881376037959668,28.5,2.12843925411962,0,2.09216368198395,1.58327889442444,0.58486671772745
+1219,80943,449297.952,81043,449197.952,18,12,43.5,0.054375,8.81547357134829,0.323423141186299,12.016732976509,0.041511731198334,0.3225,32.25,5,90.9634333308311,0.817853497683913,26.5,1.62125686527223,0,2.64877126614253,2.24644374847412,0.585042533572312
+1220,80943,449197.952,81043,449097.952,19,12,68,0.136,8.79216051204373,0.308632478632479,11.9442719099992,0.0293503448389311,0.22,22,5,86.2124321129429,0.755022048015679,15.5,1.17368490045721,0,2.47421973281436,1.29020607471466,1.32678705694007
+1221,80943,449097.952,81043,448997.952,20,12,62.25,0.31125,27.9133668131945,0.832928645428645,10,0.0172351770956629,0.1625,16.25,4,84.2327953734555,0.746400739664509,11,5.70628169133113,0,0.669668570988708,-0.294452339410782,1.25516247609593
+1222,80943,448997.952,81043,448897.952,21,12,51.75,0.1035,9.86245757709887,0.286632341723875,11,0.02449863719522,0.2475,24.75,7,81.9010864277907,0.753630221359513,13.25,2.82100076386423,0,0.116205954769005,-0.377934157848358,0.432974341485196
+1223,80943,448897.952,81043,448797.952,22,12,57.75,0.09625,7.43519120081079,0.252819865319865,10.7868932583326,0.0185469836029188,0.3175,31.75,3,92.9226697238377,0.765314051028337,26.5,0.646228880394162,0,0.373226171152459,0.035344772040844,0.48357839743036
+1224,80943,448797.952,81043,448697.952,23,12,59,0.196666666666667,11.7866955703101,0.258072174738841,12.1676051329096,0.0349228430822404,0.425,42.5,2,96.9365562666998,0.777746909292957,42.25,0.818483150706572,0,0.337589969916735,-0.0310497917234898,0.50079508618279
+1225,80943,448697.952,81043,448597.952,24,12,37.75,0.0343181818181818,6.41307011099381,0.277873563218391,11.0983672113631,0.0385452431874,0.3,30,3,92.7454459983334,0.777195281782438,25,3.12618687947591,0,0.352934495442443,-0.0376328229904175,0.512897816868693
+1226,80943,448597.952,81043,448497.952,25,12,71.75,0.179375,14.5698694696852,0.534572463768116,10,0.00617088165723544,0.2125,21.25,5,86.5111716189876,0.705665930831494,12.5,0.847894915412454,0,-0.524038918316364,-1.73165428638458,1.21425649642869
+1227,80943,448497.952,81043,448397.952,26,12,65.75,0.32875,29.5685266985686,0.77636231884058,15,0.0416236681341252,0.3275,32.75,6,86.5469375043916,0.776018416263552,21,1.30263321272289,0,-2.13360612922245,-2.4917368888855,0.670910388827436
+1228,80943,448397.952,81043,448297.952,27,12,94.25,0.9425,37.0941082063297,0.921750663129973,NA,0.0672858969704248,0.805,80.5,1,99.3970714465752,0.738529014844804,80.5,0.124223602484472,0,-2.44132532676061,-2.52230000495911,0.151988548363239
+1229,80943,448297.952,81043,448197.952,28,12,89,0.89,37.8003261020556,0.852059925093633,NA,0.049875897699967,0.4775,47.75,5,91.0428585161897,0.745897872570486,23.75,0.309644689110561,0,-2.46473307079739,-2.53528308868408,0.100698669801397
+1230,80943,448197.952,81043,448097.952,29,12,77.25,0.38625,28.6862161899546,0.768730438184663,11.1803398874989,0.065270418730106,0.7225,72.25,2,98.0966681300334,0.774774774774775,68.5,1.2308327961958,0,-2.54718456665675,-2.95977759361267,0.443591449365563
+1231,80943,448097.952,81043,447997.952,30,12,31,0.103333333333333,13.108281245501,0.597780707536805,21.5616068979548,0.0830088489921764,0.8425,84.25,3,98.3472637413985,0.71094664972216,81.5,12.852789909974,0,-2.40636779202355,-3.09988379478455,0.956846224620289
+1232,80943,447997.952,81043,447897.952,31,12,71.75,0.7175,34.3278532401047,0.860046457607433,NA,0.0206724437669254,0.1025,10.25,5,69.8265904257262,0.677041701990231,4,14.8945049192847,0,-1.33643656306797,-2.06082463264465,0.924905358539861
+1233,80943,447897.952,81043,447797.952,32,12,68,0.34,26.3726371230365,0.854556460488664,26.9258240356725,-0.0131084369329255,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.641987686355909,-0.97815865278244,0.466424034038508
+1234,80943,447797.952,81043,447697.952,33,12,56.5,0.0941666666666667,8.59704486368564,0.330754950495049,12.060113295833,-0.0358243424244984,0.06,6,4,68.7105104983398,0.692049272116461,3,8.16337291399638,0,-0.989059236314562,-1.33536982536316,0.505271555133706
+1235,80943,447697.952,81043,447597.952,34,12,25.75,0.0429166666666667,8.39024775855983,0.329585537918871,10.5901699437495,0.0521272097580186,0.2875,28.75,3,93.7268286291024,0.932523616734143,28,1.60123596191406,0,-1.60007953643799,-1.87977802753448,0.35594567778803
+1236,80943,447597.952,81043,447497.952,35,12,30.25,0.0432142857142857,8.16985646639171,0.353560985797828,13.5410123780273,0.00465603830100008,0.085,8.5,1,87.210675248157,0.902419984387198,8.5,3.06300398882698,0,-1.97529235151079,-2.16362023353577,0.274832404741373
+1237,80943,447497.952,81043,447397.952,36,12,25.75,0.0858333333333333,20.6644633483367,0.462588183421517,12.1676051329096,-0.0106449723708647,0.0325,3.25,1,76.0684107249879,0.770312948607522,3.25,4.95881623488206,0,-2.25933533906937,-2.41791844367981,0.200138511669434
+1238,80943,447397.952,81043,447297.952,37,12,26.5,0.0203846153846154,4.36004012895011,0.0859449192782526,10.8899058492167,0.00199535392733473,0.05,5,2,73.9483257095906,0.762308998302207,3.75,10.8795994758606,0,-2.42108088069492,-2.52227735519409,0.163040035165705
+1239,80943,447297.952,81043,447197.952,38,12,21,0.03,8.86812813798051,0.308738601823708,12.9730554715488,0.0225964923094034,0.1975,19.75,4,85.0417767345867,0.813084112149533,14,16.6177270865139,0,-2.44134745995204,-2.55066514015198,0.224794677044855
+1240,80943,447197.952,81043,447097.952,39,12,38.25,0.0425,8.27214782996684,0.276383451309586,10.5245955055551,-0.00323134999161994,0.095,9.5,4,76.8501842705545,0.771989827238446,7,5.18047774465461,0,-2.3079956902398,-2.5021231174469,0.317965840723797
+1241,80943,447097.952,81043,446997.952,40,12,75.75,0.2525,25.9542364566758,0.78229801564109,10,0.00681519536280121,0.1825,18.25,3,86.8110620302261,0.818425076452599,10.25,0.410958904109589,0,-2.03162489334742,-2.31538391113281,0.335868687886781
+1242,80943,446997.952,81043,446897.952,41,12,74.75,0.186875,20.6153652700191,0.766573650877591,11.25,-0.000961727229441749,0.0925,9.25,5,69.0545680871903,0.638712008309624,3.75,1.21621621621622,0,-1.8793992333942,-2.17139315605164,0.35138362222394
+1243,80943,446897.952,81043,446797.952,42,12,74,0.246666666666667,22.2404859310619,0.749426687335449,10,0.0196121794317878,0.385,38.5,3,90.6441379512083,0.798902582665403,16.75,1.03339049103972,0,-1.84384819865227,-2.38439321517944,0.372794013293661
+1244,80943,446797.952,81043,446697.952,43,12,77.75,0.194375,13.1384120099378,0.385286957215837,10.2950849718747,0.0421240652493725,0.5875,58.75,3,97.5060025467455,0.845378615310278,57.5,0.88996653455369,0,-2.30110920800103,-2.51308655738831,0.341568325610643
+1245,80943,446697.952,81043,446597.952,44,12,9,0.0225,7.04120889260273,0.339285714285714,16.3388347648318,-0.0386554225751479,0.065,6.5,2,78.0305985487694,0.765227598800052,5,4.64019041794997,0,-2.69789663950602,-2.87885999679565,0.305393316230713
+1246,80943,446597.952,81043,446497.952,45,12,0,NA,NA,NA,NA,-0.0761591977020726,0,0,0,NA,NA,0,NA,NA,-2.76594456036886,-2.88249588012695,0.191879538559212
+1247,80943,446497.952,81043,446397.952,46,12,0.25,0.0025,0,0,NA,-0.0723195744724944,0,0,0,NA,NA,0,NA,NA,-2.41249521573385,-2.58687591552734,0.326749792625588
+1248,80943,446397.952,81043,446297.952,47,12,5.25,0.0525,10.0431095426458,0.642857142857143,NA,-0.0392811781291675,0,0,0,NA,NA,0,NA,NA,-1.77832476298014,-2.08076190948486,0.47126000313776
+1249,80943,446297.952,81043,446197.952,48,12,0,NA,NA,NA,NA,-0.0349832822778262,0,0,0,NA,NA,0,NA,NA,-0.729034396198889,-1.51221680641174,1.31539466328432
+1250,80943,446197.952,81043,446097.952,49,12,0,NA,NA,NA,NA,-0.0337650071270764,0,0,0,NA,NA,0,NA,NA,0.241346041361491,-0.741288542747498,1.19781577580619
+1251,80943,446097.952,81043,445997.952,50,12,0,NA,NA,NA,NA,-0.0185735636758181,0,0,0,NA,NA,0,NA,NA,-0.478989450467957,-0.950271844863892,1.02956638805187
+1252,80943,445997.952,81043,445897.952,51,12,1,0.00333333333333333,0.833333333333333,0.0555555555555556,59.1070819942883,-0.0177771157284587,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,35.6667366027832,30.4138145446777,-1.22236161430677,-1.40663170814514,0.457354737638749
+1253,80943,445897.952,81043,445797.952,52,12,6.75,0.0084375,3.19584173706607,0.178240740740741,10.9200849718747,-1.12524456380925e-05,0.14,14,3,85.5541192630215,0.832174538479981,11.75,31.9558172225952,0,-1.527228474617,-1.6694473028183,0.200052244945181
+1254,80943,445797.952,81043,445697.952,53,12,16.25,0.0180555555555556,5.72998024358888,0.239550264550265,10.1311488763888,-0.0195349832299144,0.0925,9.25,2,80.7698014468829,0.873549202908368,5,25.6258307276545,0,-1.80678538481394,-1.94116127490997,0.16220000054164
+1255,80943,445697.952,81043,445597.952,54,12,0,NA,NA,NA,NA,-0.0109865786371302,0.275,27.5,1,95.2267095868885,0.972275168948189,27.5,91.4325857335871,50,-2.02626105149587,-2.06807374954224,0.0834990946338802
+1256,80943,445597.952,81043,445497.952,55,12,0,NA,NA,NA,NA,0.03174590650141,0.15,15,1,91.6737426448862,0.97737556561086,15,177.417273712158,160.078109741211,-2.11912994914585,-2.18568706512451,0.0896063043755358
+1257,80943,445497.952,81043,445397.952,56,12,0,NA,NA,NA,NA,-0.082072316849999,0,0,0,NA,NA,0,NA,NA,-2.37676483392715,-2.59407234191895,0.217433260960712
+1258,80943,445397.952,81043,445297.952,57,12,0,NA,NA,NA,NA,-0.0114129830595994,0.2025,20.25,2,89.6112610290461,0.82584465343086,14.5,55.6972862526222,5,-2.68714266353183,-2.76648545265198,0.139904964019596
+1259,80943,445297.952,81043,445197.952,58,12,0,NA,NA,NA,NA,0.021812053472886,0.4025,40.25,3,94.4463798081909,0.886916204907837,36.75,73.1357516650087,30,-2.82573469479879,-2.8792622089386,0.0681060244017496
+1260,80943,445197.952,81043,445097.952,59,12,3.75,0.0075,3.33333333333333,0.222222222222222,11.1803398874989,0.0818793963099597,0.7775,77.75,2,97.0064691466949,0.846608122099935,65.25,30.9073411996725,0,-2.85933619075351,-2.87890458106995,0.0298153233925766
+1261,80943,445097.952,81043,444997.952,60,12,0,NA,NA,NA,NA,0.0233109164737107,0.3625,36.25,2,95.3092764390805,0.923048464668886,35.25,95.4784711640457,55.2268028259277,-2.83953195810318,-2.85644054412842,0.0258288615845868
+1262,80943,444997.952,81043,444897.952,61,12,0,NA,NA,NA,NA,-0.0635223533958197,0,0,0,NA,NA,0,NA,NA,-2.8709037039015,-2.9039409160614,0.0482109077806103
+1263,80943,444897.952,81043,444797.952,62,12,1,0.0025,0,0,20.6155281280883,-0.0361450869834971,0,0,0,NA,NA,0,NA,NA,-2.98376919825872,-3.06413459777832,0.082919243924537
+1264,80943,444797.952,81043,444697.952,63,12,1.75,0.0035,1,0.0666666666666667,17.7330442317405,-0.0577496097488233,0.005,0.5,1,30.8308651382582,1,0.5,25.962911605835,25,-3.07691155539619,-3.10791230201721,0.0534645865037369
+1265,80943,444697.952,81043,444597.952,64,12,0.25,0.0025,0,0,NA,0.0432555726009969,0.42,42,1,97.1419289493636,0.977753058954394,42,68.1175706045968,46.0977210998535,-3.06586879491806,-3.10374069213867,0.0429728357148456
+1266,80943,444597.952,81043,444497.952,65,12,0,NA,NA,NA,NA,-0.0101535286180297,0.135,13.5,1,90.9386564749522,0.88812231959724,13.5,91.9840275799787,65.7647323608398,-3.00833821296692,-3.03372406959534,0.0492477422049546
+1267,80943,444497.952,81043,444397.952,66,12,2.75,0.006875,2.92466411882725,0.107142857142857,18.2134582144651,-0.177743736561388,0,0,0,NA,NA,0,NA,NA,-2.95820042822096,-2.98272943496704,0.0430997579424302
+1268,80943,444397.952,81043,444297.952,67,12,0,NA,NA,NA,NA,-0.0755147314653732,0,0,0,NA,NA,0,NA,NA,-2.83597735563914,-2.91785478591919,0.0956537877255095
+1269,80943,444297.952,81043,444197.952,68,12,0,NA,NA,NA,NA,-0.00535719837050792,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,135.204483032227,129.034881591797,-2.65003890461392,-2.72049498558044,0.121884898353435
+1270,80943,444197.952,81043,444097.952,69,12,0,NA,NA,NA,NA,-0.0492523820662609,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,111.07517450506,105,-2.47044140100479,-2.59466814994812,0.132989787058943
+1271,80943,444097.952,81043,443997.952,70,12,0,NA,NA,NA,NA,-0.0806523628451396,0,0,0,NA,NA,0,NA,NA,-2.36956342061361,-2.43053722381592,0.0678055517961044
+1272,80943,443997.952,81043,443897.952,71,12,0,NA,NA,NA,NA,-0.226662264307961,0,0,0,NA,NA,0,NA,NA,-2.33988034725189,-2.3746440410614,0.0514893187027311
+1273,80943,443897.952,81043,443797.952,72,12,1.5,0.015,7.5,0.277777777777778,NA,-0.17419273989799,0,0,0,NA,NA,0,NA,NA,-2.28962773746914,-2.37506127357483,0.166146594680887
+1274,80943,443797.952,81043,443697.952,73,12,8.5,0.017,6.18640470992956,0.255353535353535,11,-0.0321887797840645,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.18333109219869,-2.37363123893738,0.305512485753391
+1275,80943,443697.952,81043,443597.952,74,12,28.5,0.0316666666666667,7.80264206180474,0.440055623388957,12.7799427295179,-0.0168067348455293,0.02,2,3,44.8468832832137,0.591836734693878,1.25,1.25,0,-1.75302729341719,-2.20974397659302,0.586648190483282
+1276,80943,443597.952,81043,443497.952,75,12,38,0.126666666666667,17.1743320840784,0.503582305306443,11.6666666666667,-0.00994559602127992,0.095,9.5,4,77.1674715677599,0.701832851004122,5.25,2.26790367929559,0,-1.35825406511625,-1.76315927505493,0.465662828994862
+1277,80943,443497.952,81043,443397.952,76,12,43.5,0.145,8.55396185339453,0.29812661498708,26.0874597374975,-0.00479210116239983,0.0575,5.75,3,70.7955149260162,0.646330680813439,3.75,0.217391304347826,0,-1.3424393468433,-1.67961180210114,0.469022749222725
+1278,80943,443397.952,81043,443297.952,77,12,19.25,0.09625,8.90970964861346,0.391447368421053,30,-0.0234041257666831,0.0875,8.75,3,78.3666148159069,0.73547472838923,4.75,15.5448235648019,0,-1.36227965354919,-1.78922843933105,0.8117092539358
+1279,80943,443297.952,81043,443197.952,78,12,0.75,0.0075,3.27019417631815,0.277777777777778,NA,-0.029376344726162,0.04,4,4,59.0201665291801,0.696180555555556,2.75,32.8934652805328,21.2132034301758,-1.49325164655844,-1.75415301322937,0.68412464734656
+1280,80943,443197.952,81043,443097.952,79,12,18,0.18,24.1421434646533,0.712962962962963,NA,-0.029831534969635,0.04,4,2,74.8627476729398,0.739583333333333,3.75,6.93341016769409,0,-1.6480764415529,-1.92445206642151,0.581621010706392
+1281,80943,443097.952,81043,442997.952,80,12,4,0.0133333333333333,6.66666666666667,0.263888888888889,15.8113883008419,-0.0172268475007877,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,65.3131632123675,55.9016990661621,-2.12095080812772,-2.58180546760559,0.840693453514326
+1282,80943,442997.952,81043,442897.952,81,12,1.75,0.00875,3.75,0.138888888888889,15.8113883008419,-0.00514248245686758,0.21,21,1,93.778005777053,0.974513635205165,21,70.0172798520043,35,-2.56277521451314,-2.83821249008179,0.704255926245072
+1283,80943,442897.952,81043,442797.952,82,12,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,-0.0936150271911174,0,0,0,NA,NA,0,NA,NA,-2.7534457842509,-2.98113894462585,0.468737402277327
+1284,80943,442797.952,81043,442697.952,83,12,2.25,0.00321428571428571,0.862219129418963,0.0357142857142857,19.8761647707259,0.212640536094405,0.8225,82.25,1,99.4598121429477,0.981855707514005,82.25,21.60649271794,0,-2.82035440868802,-2.94999384880066,0.333625843649648
+1285,80943,442697.952,81043,442597.952,84,12,0.5,0.0025,0,0,20.6155281280883,-0.053924828978561,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,6.46116289885148,0,-2.82686171929042,-2.92576861381531,0.192913042524102
+1286,80943,442597.952,81043,442497.952,85,12,1.5,0.003,0.5,0.0333333333333333,20.6155281280883,-0.0105848624341888,0,0,0,NA,NA,0,NA,NA,-2.75343696276347,-2.79759836196899,0.104322000679609
+1287,80943,442497.952,81043,442397.952,86,12,1.75,0.0035,1,0.0666666666666667,20.6155281280883,0.0005195653895953,0,0,0,NA,NA,0,NA,NA,-2.78043740987778,-2.85381031036377,0.129685498141395
+1288,80943,442397.952,81043,442297.952,87,12,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,0.0128949633026832,0.0025,0.25,1,0,NA,0.25,36.0555114746094,36.0555114746094,-2.86440099610223,-2.92815780639648,0.117008888904968
+1289,80943,442297.952,81043,442197.952,88,12,0.5,0.0025,0,0,25.4950975679639,-0.0540741829973547,0,0,0,NA,NA,0,NA,NA,-2.78704804182053,-2.91376066207886,0.173837013655026
+1290,80943,442197.952,81043,442097.952,89,12,0,NA,NA,NA,NA,-0.096047842586413,0,0,0,NA,NA,0,NA,NA,-2.52509217792087,-2.69428586959839,0.244033056348671
+1291,80943,442097.952,81043,441997.952,90,12,0,NA,NA,NA,NA,-0.0954094885289669,0,0,0,NA,NA,0,NA,NA,-2.32551291253832,-2.42957758903503,0.165854006570513
+1292,80943,441997.952,81043,441897.952,91,12,0,NA,NA,NA,NA,-0.0171227168839084,0.31,31,1,95.8102472617487,0.903381642512077,31,43.6267804176577,25.4950981140137,-2.35235639413198,-2.42204284667969,0.101017974983183
+1293,80943,441897.952,81043,441797.952,92,12,2,0.00285714285714286,0.357142857142857,0.0238095238095238,16.7910774464261,-0.0825797242634144,0.0075,0.75,1,44.4894453484604,1,0.75,25.1650327046712,25,-2.47847533226013,-2.5197970867157,0.0848562306955247
+1294,80943,441797.952,81043,441697.952,93,12,0,NA,NA,NA,NA,-0.0240632552881289,0,0,0,NA,NA,0,NA,NA,-2.63014209270477,-2.70871615409851,0.0910832202051617
+1295,80943,441697.952,81043,441597.952,94,12,0,NA,NA,NA,NA,0.0150716645670764,0.3775,37.75,1,96.6969635918825,0.953605033853827,37.75,56.7003990830175,18.0277557373047,-2.78269987636142,-2.82535982131958,0.0807580101121152
+1296,80943,441597.952,81043,441497.952,95,12,0.25,0.0025,0,0,NA,-0.0643650932484161,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,22.4143733978271,15.8113880157471,-2.90371716022491,-2.98113203048706,0.0767888516413991
+1297,80943,441497.952,81043,441397.952,96,12,0.25,0.0025,0,0,NA,-0.0855486211000971,0,0,0,NA,NA,0,NA,NA,-2.93019202020433,-2.9910352230072,0.0983037948603469
+1298,80943,441397.952,81043,441297.952,97,12,12,0.12,25.9782171108118,0.458333333333333,NA,-0.108128521139261,0.0175,1.75,1,65.4774238937655,1,1.75,3.86729540143694,0,-2.86811765034994,-2.94797396659851,0.0619789496871219
+1299,80943,441297.952,81043,441197.952,98,12,0,NA,NA,NA,NA,-0.0143938172064372,0.2525,25.25,1,94.7890822083159,0.985217760860326,25.25,93.1333907854439,60.2079734802246,-2.82693621847365,-2.85864448547363,0.0673508035266077
+1300,80943,441197.952,81043,441097.952,99,12,0,NA,NA,NA,NA,0.00436945988325533,0.185,18.5,2,90.311483089746,0.943369513921661,17.5,149.981024767901,123.693168640137,-2.68965123097102,-2.83695578575134,0.156267053895598
+1301,81043,451097.952,81143,450997.952,0,13,25,0.0357142857142857,6.3554479986185,0.284575074048758,11.2662135962467,0.0304841865821618,0.2575,25.75,5,86.121412075952,0.796159796159796,13.75,2.78221885903368,0,0.694014052549998,0.57306295633316,0.270375093352415
+1302,81043,450997.952,81143,450897.952,1,13,29.5,0.0421428571428571,8.00228106294519,0.437231559290383,11.5207072889228,0.0568818164235745,0.4075,40.75,5,91.4809280799244,0.780590717299578,31.5,4.69106847376911,0,1.02146387845278,0.671607196331024,0.409527916469992
+1303,81043,450897.952,81143,450797.952,2,13,61.75,0.205833333333333,20.4609703088247,0.753324606736479,14.142135623731,0.0412919323753158,0.41,41,5,90.8489940377466,0.786732517678752,25.5,1.4802949137804,0,1.575404971838,1.13312232494354,0.453027030284935
+1304,81043,450797.952,81143,450697.952,3,13,76,0.126666666666667,9.58749750970469,0.3897127165188,10.6903559372885,0.0396330897122243,0.3975,39.75,3,93.2555725289007,0.835161712044563,31.5,0.327490992516092,0,1.92581593990326,1.83009397983551,0.106439444356732
+1305,81043,450697.952,81143,450597.952,4,13,55.25,0.27625,25.6382661737629,0.80604072529255,11.1803398874989,0.0810387045207608,0.6625,66.25,2,98.3331909921224,0.850957597436471,65.5,3.02334008846643,0,1.72766704360644,1.29380965232849,0.303328261634807
+1306,81043,450597.952,81143,450497.952,5,13,46,0.0657142857142857,6.9136442916472,0.253141336374869,11.6851240022268,0.029741093263101,0.3475,34.75,3,92.9479430182754,0.843123057893625,30.5,1.8689718452289,0,1.35362249612808,0.665989875793457,0.516016634100424
+1307,81043,450497.952,81143,450397.952,6,13,38.25,0.0546428571428571,6.77862248737332,0.199974670719352,10.1686199839284,0.0225814672446813,0.1825,18.25,5,83.6571231041638,0.827981651376147,13.5,1.50684931506849,0,1.2416184792916,0.596514105796814,0.609960086895022
+1308,81043,450397.952,81143,450297.952,7,13,42,0.0381818181818182,4.40806081116936,0.139285714285714,11.7928508681814,0.0384198105391806,0.34,34,3,92.5952387828535,0.731182795698925,24.75,2.74317174799302,0,1.23838706314564,0.773798108100891,0.449812086040826
+1309,81043,450297.952,81143,450197.952,8,13,35,0.0583333333333333,9.96683322262577,0.343696083505866,12.688977302012,0.0407475877855177,0.3625,36.25,3,94.4962785572273,0.881613022567518,34,2.19728790809368,0,1.20925429960092,0.936432778835297,0.299417591650485
+1310,81043,450197.952,81143,450097.952,9,13,37.75,0.0755,11.6487170080586,0.416324614352783,11.3005630797458,0.00406310984151787,0.1,10,2,82.2896125234628,0.867330016583748,6.5,3.75888347625732,0,1.1180712779363,0.828870415687561,0.294534895331822
+1311,81043,450097.952,81143,449997.952,10,13,42.75,0.07125,11.6203079950532,0.473309028233271,13.3870792518717,0.0126776524042634,0.1125,11.25,3,80.0103250032402,0.733135656041512,6.75,1.73892016940647,0,0.865222379565239,0.570176362991333,0.283056882787014
+1312,81043,449997.952,81143,449897.952,11,13,41.25,0.0589285714285714,6.41469733799838,0.228227162829812,12.5753937681886,0.0278853686218645,0.2525,25.25,3,89.8037503905994,0.800439771614405,14.75,1.64567528148689,0,0.593379678825537,0.43737319111824,0.191635975462213
+1313,81043,449897.952,81143,449797.952,12,13,18,0.03,8.96476636046733,0.334115312791783,20.5540381574794,0.016449267760654,0.075,7.5,5,66.24152315956,0.492553778268064,3.5,6.51077582041423,0,0.436809558421373,0.398371696472168,0.0750320836253513
+1314,81043,449797.952,81143,449697.952,13,13,29.75,0.0495833333333333,8.21792588374626,0.21026936026936,16.4309801212218,0.0475183914015724,0.41,41,3,93.3439276671634,0.831630935009541,25,5.00414262166837,0,0.432151923576991,0.388008147478104,0.0692928591772411
+1315,81043,449697.952,81143,449597.952,14,13,20.5,0.0227777777777778,4.58234216247756,0.264880952380952,14.5725942641925,0.00357339808080724,0.0625,6.25,1,84.2105263157895,0.92,6.25,8.32995063781738,0,0.501827778294683,0.42560002207756,0.0715866210850536
+1316,81043,449597.952,81143,449497.952,15,13,19,0.0271428571428571,5.42498159153951,0.306746031746032,14.8376421676753,0.00879199834285828,0.0675,6.75,2,80.0476208282059,0.825425525282125,5.75,1.74337288185402,0,0.616793269912402,0.517301976680756,0.152241365473437
+1317,81043,449497.952,81143,449397.952,16,13,37.75,0.094375,8.99728306267574,0.29492337164751,10,0.0299873152905275,0.23,23,4,90.2494485504275,0.794108330693696,19.5,3.60097719275433,0,0.81787159666419,0.53670746088028,0.325987637387115
+1318,81043,449397.952,81143,449297.952,17,13,45.75,0.07625,8.9452942553925,0.346880474597866,10,-0.00244077212995762,0.07,7,5,62.9260570907507,0.6415770609319,2,5.0993480682373,0,1.17019849518935,0.738191068172455,0.541375762651162
+1319,81043,449297.952,81143,449197.952,18,13,32.5,0.040625,8.54812653312975,0.347681272381239,11.6687789860687,0.0160802128927844,0.11,11,4,74.230921377541,0.726692985119952,4.75,3.58339868892323,0,1.50907718017697,0.952349483966827,0.64107155943013
+1320,81043,449197.952,81143,449097.952,19,13,51,0.17,13.4805342019203,0.42796199340702,10.3934466291663,-0.00269148674817188,0.065,6.5,2,80.469605015409,0.869570888222251,6,1.15384615384615,0,1.42925928533077,0.934125959873199,0.573383765575213
+1321,81043,449097.952,81143,448997.952,20,13,50,0.1,10.459090071543,0.458609530186363,17.8284271247462,0.0375663697817799,0.3575,35.75,3,91.9575467616319,0.827724477975465,26.25,2.57539601092572,0,0.699926520387332,0.349880337715149,0.532489645864315
+1322,81043,448997.952,81143,448897.952,21,13,47.75,0.0530555555555556,9.01741353230571,0.390616692866089,10,0.00486471272794006,0.18,18,3,84.9975557023695,0.798348377184559,9.75,2.44740560319689,0,0.0829942658310756,-0.256190359592438,0.333091316928926
+1323,81043,448897.952,81143,448797.952,22,13,30.75,0.1025,13.006816921929,0.46897589376247,24.9240253062245,-0.000658475199961686,0.1725,17.25,2,87.3169580242115,0.780280142817907,11.5,2.25572392560434,0,-0.329289942979813,-0.488058477640152,0.268896802613062
+1324,81043,448797.952,81143,448697.952,23,13,37,0.0616666666666667,7.30776495314986,0.350371387871388,10.6903559372885,0.0143268865503038,0.285,28.5,2,93.7441024262826,0.891370765157173,27,1.87715071962591,0,-0.450625865720212,-0.588916540145874,0.269512126295321
+1325,81043,448697.952,81143,448597.952,24,13,51,0.102,13.5397100234355,0.445583787053841,10.8284271247462,0.0291190076424391,0.235,23.5,5,83.3446056434293,0.70432617491441,8.75,1.6120816900375,0,-0.555596156666676,-0.852904558181763,0.465877287249028
+1326,81043,448597.952,81143,448497.952,25,13,85.25,0.42625,20.2457540568277,0.49803343166175,11.1803398874989,0.0189084101387834,0.32,32,4,88.0292834613194,0.766473112850291,16.25,0.383922934532166,0,-1.30389476567507,-1.91590631008148,0.624800049815112
+1327,81043,448497.952,81143,448397.952,26,13,94,0.94,37.6160031798964,0.888297872340425,NA,0.136223581750819,0.91,91,2,98.987199925565,0.887114981454604,89.5,0.164835164835165,0,-2.09357010324796,-2.33635807037354,0.322531178735125
+1328,81043,448397.952,81143,448297.952,27,13,68.75,0.34375,23.595628690142,0.728224206349206,25,0.0923863207492104,0.6975,69.75,4,95.2846026082634,0.741341240300297,56,1.62626265112217,0,-2.34002576768398,-2.49529695510864,0.176258246369793
+1329,81043,448297.952,81143,448197.952,28,13,73.75,0.7375,38.7064458239926,0.822598870056497,NA,0.0588877380944541,0.63,63,4,95.3861651637392,0.78240952817224,54.75,0.548747108096168,0,-2.36450811227163,-2.50236988067627,0.175352779505692
+1330,81043,448197.952,81143,448097.952,29,13,78.75,0.7875,37.5080174701841,0.807936507936508,NA,0.0374725901893908,0.455,45.5,4,91.5834964778442,0.771322788773038,19.5,0.137362637362637,0,-2.00902073085308,-2.42005300521851,0.470305244599542
+1331,81043,448097.952,81143,447997.952,30,13,31.5,0.045,7.13818341956855,0.322100233546017,15.5210526197317,0.042834393655703,0.3675,36.75,4,89.0070029966699,0.811922359198907,20.5,1.63704048208639,0,-1.20405993858973,-1.59512841701508,0.587517175815907
+1332,81043,447997.952,81143,447897.952,31,13,76,0.76,36.9886623358973,0.822916666666667,NA,0.0565076668243046,0.5175,51.75,3,95.7892460406682,0.860036336720274,46.25,0.993453868921252,0,-0.598727636039257,-0.949765920639038,0.389118510392933
+1333,81043,447897.952,81143,447797.952,32,13,30.75,0.0615,11.6856378489488,0.316771094402673,18.7492385054615,0.0264873524890572,0.29,29,3,92.5197435198184,0.912810194500335,27.25,5.23712357159319,0,-0.156751104164869,-0.755033373832703,0.678357882127523
+1334,81043,447797.952,81143,447697.952,33,13,62,0.206666666666667,17.9967966210313,0.746779388083736,15.7868932583326,0.0330508701742656,0.365,36.5,2,92.952592775437,0.876139078120853,20.5,1.30578733470342,0,-0.0967126873632272,-0.971253871917725,1.26907157857646
+1335,81043,447697.952,81143,447597.952,34,13,34,0.068,10.2640044603391,0.334370873420109,11,0.0109999661839493,0.3425,34.25,2,92.8875820922815,0.841825095057034,26,1.27111047897896,0,-1.33806109428406,-1.61149632930756,0.366657494982664
+1336,81043,447597.952,81143,447497.952,35,13,24.75,0.02475,5.09052069980835,0.204761904761905,11.2803116489183,-0.0128801408762956,0.1925,19.25,1,93.2673077410907,0.881624476415953,19.25,1.1038961038961,0,-1.73005584875743,-1.87946605682373,0.210277736010772
+1337,81043,447497.952,81143,447397.952,36,13,32.25,0.16125,21.4009207252181,0.664733676975945,18.0277563773199,0.0016071287860359,0.2325,23.25,2,93.1623535917175,0.929359130332404,22.75,2.85185717510921,0,-2.0027236789465,-2.17756938934326,0.148538539430565
+1338,81043,447397.952,81143,447297.952,37,13,16.5,0.165,23.088368589913,0.77020202020202,NA,-0.0218235710590375,0.0025,0.25,1,0,NA,0.25,31.6227760314941,31.6227760314941,-2.09230788548787,-2.21708536148071,0.128812558241153
+1339,81043,447297.952,81143,447197.952,38,13,9,0.09,23.5803961782041,0.592592592592593,NA,-0.0140608251486174,0.025,2.5,2,58.1880425789518,0.605522682445759,1.25,40.1542343139648,40,-2.00779969990253,-2.15542507171631,0.156168597504849
+1340,81043,447197.952,81143,447097.952,39,13,4.25,0.02125,6.23978148064035,0.361111111111111,109.772492000501,0.00545021379326499,0.1625,16.25,3,83.8818307904627,0.714700832122573,8.75,27.2792407109187,0,-1.93518375356992,-2.05390667915344,0.149109477515817
+1341,81043,447097.952,81143,446997.952,40,13,23.25,0.2325,25.3975334551013,0.82078853046595,NA,-0.00153027701215706,0.175,17.5,4,83.8792302853077,0.753633899975364,11.5,10.4820784432547,0,-1.72802263498306,-1.8612779378891,0.138297385895088
+1342,81043,446997.952,81143,446897.952,41,13,22.75,0.0758333333333333,10.1986829332959,0.553502415458937,31.6666666666667,-0.00819567290373925,0.045,4.5,2,77.3869554016877,0.650959860383944,4.25,34.4782998826769,0,-1.6466993590196,-1.6736136674881,0.042164665549874
+1343,81043,446897.952,81143,446797.952,42,13,20.5,0.1025,23.785728223791,0.639816532673676,70.178344238091,0.00523876634604676,0.14,14,5,77.3152272169512,0.700311675857109,8.75,3.87064089093889,0,-1.70343600213528,-1.79593706130981,0.093193225103258
+1344,81043,446797.952,81143,446697.952,43,13,22.75,0.0455,9.53273512370373,0.486547831253714,23.2360679774998,0.00234728897550667,0.1275,12.75,2,84.4300638997701,0.815564996871192,6.75,0.294117647058824,0,-1.94226118922234,-2.19278311729431,0.247052503938425
+1345,81043,446697.952,81143,446597.952,44,13,39,0.39,28.8791075067995,0.711538461538462,NA,-0.0111538477401336,0.035,3.5,5,45.589195561718,0.430051813471503,1.25,10.3251348223005,0,-2.17997166514397,-2.49853515625,0.318983088729774
+1346,81043,446597.952,81143,446497.952,45,13,32.5,0.325,30.611189734514,0.658974358974359,NA,-0.0203506737663452,0.105,10.5,1,89.0207000039903,0.716736171217248,10.5,1.19047619047619,0,-2.24187716841698,-2.57739663124084,0.364115443275322
+1347,81043,446497.952,81143,446397.952,46,13,6,0.00857142857142857,1.86267186771908,0.0436507936507937,10.6744799357137,-0.08634363193647,0.02,2,1,68.0470115164975,0.795918367346939,2,1.875,0,-1.95281828443209,-2.37930917739868,0.387462892455347
+1348,81043,446397.952,81143,446297.952,47,13,0,NA,NA,NA,NA,-0.0244224569072861,0.0075,0.75,1,44.4894453484604,1,0.75,72.4629287719727,69.6419448852539,-1.32962987571955,-1.85918760299683,0.647038829779611
+1349,81043,446297.952,81143,446197.952,48,13,0,NA,NA,NA,NA,-0.0020795878021454,0.075,7.5,1,86.0448225436784,0.889685603971318,7.5,93.3228530883789,74.3303451538086,0.082654341434439,-0.723872005939484,0.995754610316278
+1350,81043,446197.952,81143,446097.952,49,13,0,NA,NA,NA,NA,-0.0249161147256382,0,0,0,NA,NA,0,NA,NA,0.749543861020356,-0.115806199610233,0.54063469414379
+1351,81043,446097.952,81143,445997.952,50,13,0,NA,NA,NA,NA,-0.040797846885398,0,0,0,NA,NA,0,NA,NA,0.655067302286625,0.367581069469452,0.748875183051673
+1352,81043,445997.952,81143,445897.952,51,13,1,0.00333333333333333,0.833333333333333,0.0555555555555556,12.7240226919466,-0.0282634207973024,0.01,1,1,52.6315789473684,1,1,17.8567290306091,15,-0.952923789620399,-1.2889643907547,0.635019959568167
+1353,81043,445897.952,81143,445797.952,52,13,8.5,0.00772727272727273,2.74652984006863,0.0833333333333333,14.3585585449558,-0.0408078266678785,0.0275,2.75,1,73.5251216233933,0.725792630676949,2.75,10.1073762720281,5,-1.56074045101802,-1.68716490268707,0.229494724527894
+1354,81043,445797.952,81143,445697.952,53,13,10,0.0111111111111111,5.23335138119521,0.213624338624339,10,0.00196017500215021,0.3775,37.75,1,96.6969635918825,0.959404404622098,37.75,49.7271647169101,20.6155281066895,-1.84944508224726,-1.96006846427917,0.128971157639329
+1355,81043,445697.952,81143,445597.952,54,13,0,NA,NA,NA,NA,0.0693618241325021,0.995,99.5,1,99.9867925566623,0.20634920634921,99.5,115.826711242522,61.0327758789062,-2.02693184216817,-2.08365249633789,0.0840852368439607
+1356,81043,445597.952,81143,445497.952,55,13,0,NA,NA,NA,NA,-0.0368024596342138,0.1025,10.25,2,86.3135054436428,0.870816680796092,9.75,166.792304806593,154.029220581055,-2.20534086227417,-2.32452726364136,0.168061394505863
+1357,81043,445497.952,81143,445397.952,56,13,0,NA,NA,NA,NA,-0.0209694318909897,0.275,27.5,2,94.101008686059,0.951481545659331,27,118.191298883612,90.5538558959961,-2.51319995522499,-2.70454931259155,0.187596202631752
+1358,81043,445397.952,81143,445297.952,57,13,0,NA,NA,NA,NA,0.0204453317653224,0.1675,16.75,2,87.7534795208807,0.88706655373322,13.5,125.444028598159,93.4077072143555,-2.76260368029277,-2.84130620956421,0.12034049917546
+1359,81043,445297.952,81143,445197.952,58,13,0.75,0.0075,3.33333333333333,0.222222222222222,NA,0.0491801445016063,0.415,41.5,4,92.0886541687786,0.849170437405732,34.25,72.5194357906479,0,-2.90335428714752,-2.95447063446045,0.0730479715159814
+1360,81043,445197.952,81143,445097.952,59,13,2.25,0.005625,2.70833333333333,0.180555555555556,13.4958640941704,0.0635342876038339,0.6975,69.75,1,98.9612174727447,0.974764999053687,69.75,33.2603234185113,0,-2.93540173768997,-2.96587061882019,0.0472699766348165
+1361,81043,445097.952,81143,444997.952,60,13,0,NA,NA,NA,NA,0.0499560082090466,0.4325,43.25,1,97.260148197161,0.96685677985997,43.25,150.196099782955,131.244049072266,-2.88998155295849,-2.94829344749451,0.0653910748939054
+1362,81043,444997.952,81143,444897.952,61,13,0,NA,NA,NA,NA,0.0170172386489139,0.0175,1.75,2,49.299249134574,0.618320610687023,1,74.5642514910017,68.0073547363281,-2.93432209889094,-2.99344205856323,0.070182181461439
+1363,81043,444897.952,81143,444797.952,62,13,1.5,0.003,0.5,0.0333333333333333,18.6938721971897,-0.0556852939220744,0,0,0,NA,NA,0,NA,NA,-3.01552405953407,-3.07092571258545,0.0495143941479054
+1364,81043,444797.952,81143,444697.952,63,13,1.75,0.0025,0,0,21.312609476642,0.0273463715970865,0.485,48.5,1,97.7057035934975,0.832793959007551,48.5,21.2323691967836,0,-3.06876377264659,-3.10519433021545,0.0337224912359585
+1365,81043,444697.952,81143,444597.952,64,13,8.5,0.085,12.5398632588464,0.75,NA,0.0567817115955404,0.455,45.5,4,91.9037067262509,0.831214439332481,29,36.6024577172248,0,-3.04616546630859,-3.09550976753235,0.0422382570096412
+1366,81043,444597.952,81143,444497.952,65,13,12.25,0.1225,14.8383900257834,0.782312925170068,NA,-0.0794306475404119,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.97215489546458,-2.99951004981995,0.0542784124311868
+1367,81043,444497.952,81143,444397.952,66,13,3.5,0.0175,8.72865330862381,0.247474747474747,11.1803398874989,-0.15483761839103,0,0,0,NA,NA,0,NA,NA,-2.91962583859762,-2.96481680870056,0.0632921473862564
+1368,81043,444397.952,81143,444297.952,67,13,0,NA,NA,NA,NA,-0.0418946039610455,0,0,0,NA,NA,0,NA,NA,-2.82028992474079,-2.89502215385437,0.0967411665637321
+1369,81043,444297.952,81143,444197.952,68,13,0,NA,NA,NA,NA,-0.00658629115911936,0,0,0,NA,NA,0,NA,NA,-2.67746404806773,-2.74471235275269,0.121175352088029
+1370,81043,444197.952,81143,444097.952,69,13,0,NA,NA,NA,NA,-0.0665482740895823,0,0,0,NA,NA,0,NA,NA,-2.51276364922523,-2.62563967704773,0.123879520290436
+1371,81043,444097.952,81143,443997.952,70,13,0,NA,NA,NA,NA,-0.116599276354536,0,0,0,NA,NA,0,NA,NA,-2.40045650800069,-2.44916009902954,0.0707837979887521
+1372,81043,443997.952,81143,443897.952,71,13,8.75,0.04375,11.8384177496559,0.552838164251208,10,-0.265758314393461,0,0,0,NA,NA,0,NA,NA,-2.33186683058739,-2.38980865478516,0.0808427438675405
+1373,81043,443897.952,81143,443797.952,72,13,50.75,0.169166666666667,19.5104633607954,0.498733776511554,13.3333333333333,-0.0759597268759808,0,0,0,NA,NA,0,NA,NA,-2.13005997737249,-2.2083146572113,0.147900176900732
+1374,81043,443797.952,81143,443697.952,73,13,58,0.193333333333333,18.3233878544398,0.530116959064327,10,-0.0260782663835016,0.0775,7.75,1,86.3573366287605,0.761517615176152,7.75,0.32258064516129,0,-1.81824635714293,-2.02086138725281,0.259452373081484
+1375,81043,443697.952,81143,443597.952,74,13,47.25,0.118125,14.4048530897502,0.533804600848966,11.25,-0.00110521783637409,0.17,17,3,85.2642281062595,0.827882960413081,9.25,1.78254710926729,0,-1.35326044758161,-1.56543481349945,0.263428313345157
+1376,81043,443597.952,81143,443497.952,75,13,22.25,0.02225,4.47080094250364,0.234404761904762,11.9794844677524,-0.0329354127859688,0.0075,0.75,1,44.4894453484604,1,0.75,4.02368927001953,0,-1.11616843938828,-1.24365305900574,0.144925071634498
+1377,81043,443497.952,81143,443397.952,76,13,23.5,0.0335714285714286,6.41742448660302,0.192469100316183,16.747978948877,-0.0230152862921477,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0,-1.20914926131566,-1.4568372964859,0.214565955952838
+1378,81043,443397.952,81143,443297.952,77,13,22,0.0314285714285714,5.49400208333246,0.221804511278195,12.1428571428571,-0.0407296672328266,0.0075,0.75,1,44.4894453484604,1,0.75,15,10,-1.24781770771369,-1.70690441131592,0.548217676433117
+1379,81043,443297.952,81143,443197.952,78,13,28.75,0.2875,26.9778225588277,0.836231884057971,NA,-0.0429334803582969,0.0025,0.25,1,0,NA,0.25,25,25,-1.33650092128664,-1.93770968914032,0.593816084442543
+1380,81043,443197.952,81143,443097.952,79,13,31.5,0.063,7.07056843205403,0.26264367816092,15.3071357893653,-0.0431980443894281,0,0,0,NA,NA,0,NA,NA,-1.50209918121497,-2.16030526161194,0.587068681722739
+1381,81043,443097.952,81143,442997.952,80,13,15.25,0.0190625,4.20074952105428,0.203009259259259,12.0778470752105,-0.0194614916446517,0.03,3,3,58.8962175806842,0.696785930867192,2.25,3.77687295277913,0,-1.68741072714329,-2.43492913246155,0.677223170023201
+1382,81043,442997.952,81143,442897.952,81,13,31.25,0.0520833333333333,8.46824778103438,0.310634663790004,11.937129433614,-0.0207708436132452,0.1,10,3,82.8677922855033,0.734660033167496,8.5,3.30177669525146,0,-1.5642607913663,-2.42102265357971,1.14123288294634
+1383,81043,442897.952,81143,442797.952,82,13,13.25,0.0220833333333333,8.5146888213096,0.183406432748538,13.1726862050768,-0.00978413302771514,0.2325,23.25,1,94.3478768975745,0.905812173776539,23.25,10.5880579794607,0,-1.23708259593695,-2.08877038955688,1.59008989995374
+1384,81043,442797.952,81143,442697.952,83,13,18,0.018,5.03307257851575,0.333131313131313,12.2082039324994,-0.0382099225369166,0.0725,7.25,2,83.6145503683688,0.793542467167517,7,12.3671292272107,0,-1.57461404800415,-2.41730713844299,1.22436202191143
+1385,81043,442697.952,81143,442597.952,84,13,16.25,0.0203125,6.57001669894628,0.227901785714286,19.14650850948,-0.0694264422939159,0,0,0,NA,NA,0,NA,NA,-1.49450912093744,-2.59983277320862,1.25281945828441
+1386,81043,442597.952,81143,442497.952,85,13,14,0.02,9.88004098023934,0.251587301587302,16.7658113964283,-0.0504388885285925,0,0,0,NA,NA,0,NA,NA,-1.63832443331679,-2.5937831401825,1.05555415014269
+1387,81043,442497.952,81143,442397.952,86,13,6.25,0.0078125,3.61460489917025,0.157175925925926,20.1538820320221,-0.0449553905161156,0,0,0,NA,NA,0,NA,NA,-1.70188210718334,-2.63723707199097,1.04083793110003
+1388,81043,442397.952,81143,442297.952,87,13,6.25,0.00892857142857143,3.69047619047619,0.116269841269841,16.4285714285714,-0.0402750324593944,0,0,0,NA,NA,0,NA,NA,-1.76018837839365,-2.73970103263855,1.09333087385003
+1389,81043,442297.952,81143,442197.952,88,13,5.75,0.00958333333333333,4.35897435897436,0.148504273504274,22.5592231765546,-0.0678056284350896,0,0,0,NA,NA,0,NA,NA,-1.66363717801869,-2.66942024230957,1.07204047923269
+1390,81043,442197.952,81143,442097.952,89,13,5.25,0.02625,12.5,0.158333333333333,20,-0.0827359636538313,0,0,0,NA,NA,0,NA,NA,-1.43098299826185,-2.39366388320923,1.01684258635938
+1391,81043,442097.952,81143,441997.952,90,13,2,0.00666666666666667,3.67851130197758,0.166666666666667,33.8630351054606,-0.075485667898156,0,0,0,NA,NA,0,NA,NA,-1.2384483764569,-2.15401339530945,0.926283812300592
+1392,81043,441997.952,81143,441897.952,91,13,2.25,0.005625,1.875,0.0694444444444444,14.2314560089181,0.00166184764675563,0.23,23,1,94.2887150496276,0.936648717136522,23,38.929604737655,14.1421356201172,-1.85314085148275,-2.31458401679993,0.751279491488056
+1393,81043,441897.952,81143,441797.952,92,13,0,NA,NA,NA,NA,-0.141297421901254,0,0,0,NA,NA,0,NA,NA,-2.28269686301549,-2.48339867591858,0.310445490546094
+1394,81043,441797.952,81143,441697.952,93,13,0.75,0.0025,0,0,22.2420512747135,-0.051399714526633,0.04,4,1,78.9473684210526,0.869791666666667,4,13.5764398574829,5,-2.54642504453659,-2.71852207183838,0.221029568273118
+1395,81043,441697.952,81143,441597.952,94,13,0,NA,NA,NA,NA,-0.0171076065486704,0.2125,21.25,2,90.1118491730098,0.865447282665826,18.25,42.1689207189223,18.0277557373047,-2.74510816733042,-2.82361340522766,0.133095534467801
+1396,81043,441597.952,81143,441497.952,95,13,0.25,0.0025,0,0,NA,-0.0957928438225508,0,0,0,NA,NA,0,NA,NA,-2.82553423941135,-2.87106156349182,0.0813499614379929
+1397,81043,441497.952,81143,441397.952,96,13,0,NA,NA,NA,NA,-0.128151522194967,0,0,0,NA,NA,0,NA,NA,-2.81225754817327,-2.85859823226929,0.0754509853833187
+1398,81043,441397.952,81143,441297.952,97,13,11.75,0.1175,26.1670494240979,0.464539007092199,NA,-0.0651324986709005,0.0425,4.25,2,74.1315351117723,0.74934725848564,3.75,1.88653340059168,0,-2.83187788724899,-2.8893620967865,0.0672947145015005
+1399,81043,441297.952,81143,441197.952,98,13,0,NA,NA,NA,NA,0.083661607215181,0.7725,77.25,1,99.2749460632782,0.886711226917412,77.25,92.4133173624675,58.5234985351562,-2.95455332597097,-3.02270436286926,0.0895487058394839
+1400,81043,441197.952,81143,441097.952,99,13,0,NA,NA,NA,NA,0.0547347664030514,0.3475,34.75,1,96.3348533717898,0.95776390020213,34.75,133.730592192506,83.8152694702148,-2.9313897639513,-3.04180884361267,0.127503502585919
+1401,81143,451097.952,81243,450997.952,0,14,11.5,0.00766666666666667,2.12282138691784,0.140154320987654,11.2930828683043,0.032328508650935,0.2825,28.25,4,90.9721063964865,0.829199972671996,23.5,6.81060772448514,0,1.22229342990451,1.00062787532806,0.280899971294343
+1402,81143,450997.952,81243,450897.952,1,14,36.5,0.045625,5.42533094634812,0.25425,14.9028542656646,0.0389029410275543,0.385,38.5,4,92.7695731301551,0.821885144646499,31.75,3.59866511357295,0,1.53603240847588,1.33051729202271,0.230207970095272
+1403,81143,450897.952,81243,450797.952,2,14,15.5,0.019375,4.49147230811442,0.247916666666667,11.5392754624463,0.0127921160782034,0.28,28,1,95.316724394494,0.862486248624863,28,6.96968116079058,0,1.83435844050513,1.74191665649414,0.1616912160863
+1404,81143,450797.952,81243,450697.952,3,14,29,0.0483333333333333,7.64223497830304,0.293518518518519,11.380711874577,0.0475355182229271,0.3925,39.25,3,96.1397559700018,0.782807498856882,38.5,5.34727761092459,0,1.86981177330017,1.64576661586761,0.201732207203704
+1405,81143,450697.952,81243,450597.952,4,14,64.25,0.160625,15.5364259016379,0.537604974160207,10,0.0160503913135472,0.1225,12.25,3,83.9850001344587,0.755799755799756,10.25,0.204081632653061,0,1.33944192197588,0.967155754566193,0.581186478564142
+1406,81143,450597.952,81243,450497.952,5,14,25.75,0.0321875,5.51965860351977,0.200549450549451,14.7879694766403,-0.0166590919333885,0.02,2,5,25.5687026184117,0.285714285714286,0.75,4.67419290542603,0,0.517109262446562,0.263560950756073,0.368966883437175
+1407,81143,450497.952,81243,450397.952,6,14,12,0.024,5.95561164279083,0.146205962059621,14.128990204492,0.0233547483384348,0.205,20.5,3,92.2057643347295,0.852526566905227,20,13.933569838361,0,0.25834952129258,0.177998647093773,0.216618376058228
+1408,81143,450397.952,81243,450297.952,7,14,37,0.04625,6.48288337271043,0.309380692167577,17.5517265814364,0.023956951849832,0.3025,30.25,3,93.8264236907919,0.876181166503747,29,0.963104783996078,0,0.364532008767128,0.196623831987381,0.336825673619953
+1409,81143,450297.952,81243,450197.952,8,14,17,0.0154545454545455,4.71014780500509,0.304785492285492,14.5218949196051,0.014750077125791,0.0925,9.25,6,64.9943228495179,0.620647608725105,3.5,4.97284275776631,0,0.454015874200397,0.252276599407196,0.397221812399446
+1410,81143,450197.952,81243,450097.952,9,14,10.75,0.00671875,2.88987712776973,0.157291666666667,13.6801862337117,0.00135073928098372,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,2.43872397286551,0,0.42766568561395,0.222286552190781,0.372358994124323
+1411,81143,450097.952,81243,449997.952,10,14,24.25,0.0404166666666667,7.30646336561483,0.356186406186406,13.1024174650041,0.00789412096329897,0.0775,7.75,3,75.4945022088232,0.739837398373984,5,4.99313182215537,0,0.350982168068488,0.211363941431046,0.256848991852764
+1412,81143,449997.952,81243,449897.952,11,14,26.75,0.0334375,7.50387690236041,0.287309218559219,14.0433834059585,0.00627858331696643,0.0775,7.75,2,78.5228097278772,0.826558265582656,4,0.645161290322581,0,0.359477400779724,0.282409608364105,0.113445511017312
+1413,81143,449897.952,81243,449797.952,12,14,19.5,0.0216666666666667,4.72007074517835,0.17793501048218,12.5363914970186,0.0176448423792499,0.0975,9.75,6,67.5479622875599,0.59088003409333,3.75,3.97716825436323,0,0.502551672359308,0.410693466663361,0.139777765984487
+1414,81143,449797.952,81243,449697.952,13,14,38.25,0.0546428571428571,7.8409294306174,0.214132553606238,11.0975936123183,0.0175533824961894,0.155,15.5,2,86.659642623504,0.791803637957484,9.5,5.68870587502756,0,0.669143643644121,0.551211297512054,0.188166841910222
+1415,81143,449697.952,81243,449597.952,14,14,35.5,0.071,7.16991512085871,0.171776155717762,23.7502229891263,0.0138050550877961,0.105,10.5,5,71.9670637093162,0.669525533086789,4.5,2.40983817690895,0,0.681380704045296,0.551154375076294,0.18855809115534
+1416,81143,449597.952,81243,449497.952,15,14,26.25,0.02625,6.40401362848697,0.264862914862915,12.3125592000413,0.00514081571232509,0.0675,6.75,2,77.1298294914489,0.77554710393416,5,6.44182304099754,0,0.571944640742408,0.49687922000885,0.129976882019147
+1417,81143,449497.952,81243,449397.952,16,14,23,0.0255555555555556,4.75886487102287,0.253553443794672,11.766855493055,0.00968863255950282,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,1.11111111111111,0,0.553835406899452,0.49673193693161,0.0968569711096208
+1418,81143,449397.952,81243,449297.952,17,14,27.75,0.0396428571428571,6.24284716348486,0.221736313573048,17.2716713482135,0.0117048226127736,0.0725,7.25,4,73.3289378610842,0.793542467167517,5.75,3.91861527541588,0,0.641540242566003,0.597462177276611,0.117230427557126
+1419,81143,449297.952,81243,449197.952,18,14,17.75,0.044375,7.1119529305513,0.298828125,14.5265409807929,0.0021369134813358,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,8.87523460388184,5,0.67568871875604,0.501459538936615,0.266614403179417
+1420,81143,449197.952,81243,449097.952,19,14,7.25,0.00604166666666667,1.35680409627137,0.0790598290598291,15.0971090380795,0.00827118641471088,0,0,0,NA,NA,0,NA,NA,0.584472136365043,0.355142831802368,0.379182659674314
+1421,81143,449097.952,81243,448997.952,20,14,28.5,0.0316666666666667,6.44918706749863,0.281880900508352,14.0124216356255,0.00471497350057859,0.0525,5.25,3,67.1033981831812,0.637203166226913,2.25,5.33450435456775,0,0.327173261178864,0.125438868999481,0.342673396048447
+1422,81143,448997.952,81243,448897.952,21,14,8,0.016,4.24416245599824,0.243703703703704,15.5432037668651,0.0188703623548736,0.1475,14.75,2,87.9205964465898,0.804496578690127,12.25,7.69045283430714,0,-0.00399851123802364,-0.155905023217201,0.161532025405573
+1423,81143,448897.952,81243,448797.952,22,14,24.5,0.030625,5.79118281934908,0.293551048136646,16.7693449342783,0.0172697242083086,0.1175,11.75,5,80.3249805270516,0.631728045325779,7.75,3.5522761243455,0,-0.184645803438293,-0.31174573302269,0.164486164705482
+1424,81143,448797.952,81243,448697.952,23,14,58,0.145,16.6595050056202,0.443085670854127,10.5901699437495,0.0546136992808897,0.525,52.5,5,92.1498488367085,0.730784762417553,33.75,1.47772607349214,0,-0.218634436527888,-0.320868015289307,0.198534571509188
+1425,81143,448697.952,81243,448597.952,24,14,65,0.13,10.2938475048646,0.30982905982906,10.7082039324994,0.0155068738239061,0.325,32.5,5,90.5962802973131,0.793717768401313,26.25,1.63131590623122,0,-0.533345272143682,-0.731156587600708,0.336672527025407
+1426,81143,448597.952,81243,448497.952,25,14,79.75,0.7975,39.6504836302154,0.804075235109718,NA,0.0446401957143098,0.535,53.5,3,94.7013401791344,0.875722699519101,43.25,1.69393974375502,0,-1.16392585635185,-1.56031930446625,0.381736586988064
+1427,81143,448497.952,81243,448397.952,26,14,95.25,0.9525,37.5923047045304,0.92169728783902,NA,0.0786053558776621,0.88,88,1,99.6526127274839,0.84984984984985,88,0.301742055199363,0,-1.66922928227319,-1.93076980113983,0.376267477525935
+1428,81143,448397.952,81243,448297.952,27,14,100,1,38.2238923285138,0.934166666666667,NA,0.111622766633373,0.9675,96.75,1,99.9123308655226,0.874240201215678,96.75,0,0,-1.95574249823888,-2.16020154953003,0.305655336506037
+1429,81143,448297.952,81243,448197.952,28,14,84.75,0.8475,37.6098568385314,0.812192723697148,NA,0.0987467843593913,0.6925,69.25,2,98.3217912724408,0.874921826141338,67.75,0.523465703971119,0,-1.98643590344323,-2.17132592201233,0.295152290246082
+1430,81143,448197.952,81243,448097.952,29,14,49.25,0.0615625,7.94903893523628,0.259441506724115,13.1469403498136,0.0164991044480121,0.1625,16.25,4,83.1355529295617,0.788667283053758,7.75,3.53994125953087,0,-1.49057257175446,-1.91304671764374,0.401526628116927
+1431,81143,448097.952,81243,447997.952,30,14,11.75,0.00903846153846154,2.48604341810163,0.116452991452991,13.7328609137352,0.0659264292768785,0.67,67,3,97.5810806077625,0.849388517380565,64.25,12.3309106115085,0,-0.957425720161862,-1.11069476604462,0.304450240928754
+1432,81143,447997.952,81243,447897.952,31,14,35.75,0.0715,13.5032160741854,0.512240711524248,17.0063975917688,0.0326870864663397,0.3,30,3,88.7571589907568,0.803407601572739,12,6.33348576227824,0,-0.965344680680169,-1.21501767635345,0.428660854892827
+1433,81143,447897.952,81243,447797.952,32,14,16,0.032,6.79101835359832,0.362828282828283,19.17274728292,-0.00467259831897991,0.105,10.5,3,82.2359978947187,0.842631206231804,8.25,0.952380952380952,0,-1.07801375786463,-1.50352418422699,0.682274701820073
+1434,81143,447797.952,81243,447697.952,33,14,40.75,0.20375,20.5947730474207,0.777050085315668,18.0277563773199,0.0133777970179244,0.2475,24.75,2,90.7662319874141,0.888013736981597,19,1.44731587111348,0,-1.35161153475444,-1.61482155323029,0.846574365242577
+1435,81143,447697.952,81243,447597.952,34,14,8.25,0.020625,6.40918489856309,0.283617424242424,12.5,-0.0117460983824276,0.08,8,2,82.0949636389506,0.790969899665552,7,8.493696808815,0,-1.5723673303922,-1.73967504501343,0.224288381627031
+1436,81143,447597.952,81243,447497.952,35,14,4,0.008,3.10333771730427,0.13,23.236959015233,-0.0412598286478169,0.0475,4.75,3,71.7416211426375,0.746583401212779,4,7.64470110441509,0,-1.81401173273722,-1.94692444801331,0.185587180728944
+1437,81143,447497.952,81243,447397.952,36,14,0.25,0.0025,0,0,NA,-0.0409172896520602,0,0,0,NA,NA,0,NA,NA,-2.0222756365935,-2.09463739395142,0.0920591696555888
+1438,81143,447397.952,81243,447297.952,37,14,4.5,0.01125,3.9146284687925,0.201388888888889,30.8327742305789,-0.0221301883496926,0.03,3,3,56.7739118937307,0.514857489387508,1.5,8.58929920196533,0,-2.09300118022495,-2.13135480880737,0.0599568132487134
+1439,81143,447297.952,81243,447197.952,38,14,23.75,0.11875,25.3521867574214,0.533371040723982,10,0.00364127948683745,0.075,7.5,5,64.9561113929684,0.580805295091009,2.5,2.76587359110514,0,-2.08920244375865,-2.15148496627808,0.103488072629177
+1440,81143,447197.952,81243,447097.952,39,14,21.75,0.0271875,4.13543220691736,0.115350877192982,16.2185531363145,0.00701967647464699,0.1025,10.25,7,66.893734242013,0.596302127487788,3.5,2.22471227878478,0,-2.04924604627821,-2.13478422164917,0.110039578456619
+1441,81143,447097.952,81243,446997.952,40,14,43,0.0716666666666667,9.02250425352003,0.364728009259259,14.0236892706218,0.0292090037950072,0.305,30.5,2,94.3442686777192,0.804681141964257,28.5,2.21374342871494,0,-1.87953578432401,-2.01134300231934,0.141876407566478
+1442,81143,446997.952,81243,446897.952,41,14,40.25,0.0670833333333333,11.2902721716434,0.45395577518219,12.0523672832618,4.07245524547761e-05,0.0475,4.75,3,63.5218230158654,0.637976287446828,1.75,5.07909553929379,0,-1.68158891465929,-1.72862780094147,0.0869487581535194
+1443,81143,446897.952,81243,446797.952,42,14,0.25,0.0025,0,0,NA,-0.0236475841477113,0.0275,2.75,2,66.0118058066693,0.862896315338475,2.5,17.5408377213912,5,-1.61782999833425,-1.68112409114838,0.0925953613439073
+1444,81143,446797.952,81243,446697.952,43,14,3.75,0.0075,2.76297349820361,0.17,13.4721359549996,-0.00152255496498583,0.035,3.5,4,63.1409196670222,0.533678756476684,2.75,6.01105417524065,0,-1.66672654946645,-1.77363121509552,0.145839901133409
+1445,81143,446697.952,81243,446597.952,44,14,10.25,0.0205,7.37368794903527,0.247569444444444,10.4721359549996,0.0100404374286154,0.06,6,2,80.9043128629043,0.832026875699888,5.75,8.24376630783081,0,-1.75012185838487,-1.85717296600342,0.179349705472406
+1446,81143,446597.952,81243,446497.952,45,14,15.25,0.0169444444444444,3.50744609225705,0.0924110384894699,16.4671173371871,0.0144329232957534,0.15,15,3,88.0876269246202,0.830316742081448,13.75,6.54373108545939,0,-1.76255104939143,-1.86845242977142,0.175041172683821
+1447,81143,446497.952,81243,446397.952,46,14,29.25,0.0975,16.2577437197313,0.389688749782646,23.8260502349783,0.013719372964988,0.1825,18.25,4,84.3461761749769,0.770642201834862,13.25,5.29362012262214,0,-1.66746195157369,-1.75234818458557,0.115309812866499
+1448,81143,446397.952,81243,446297.952,47,14,21.25,0.0708333333333333,10.3693230756156,0.269547325102881,10,-0.0141786403883088,0.16,16,3,90.1105453262787,0.766156462585034,15.25,2.77126061916351,0,-1.45615257819494,-1.59033763408661,0.214084280391003
+1449,81143,446297.952,81243,446197.952,48,14,6.75,0.016875,2.94971461258131,0.121527777777778,10.5901699437495,0.0484470153193479,0.49,49,4,94.7103980569224,0.816849816849817,41.75,45.277437735577,0,-1.14296044243707,-1.36837148666382,0.466678781526048
+1450,81143,446197.952,81243,446097.952,49,14,0,NA,NA,NA,NA,-0.00943694624289492,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,98.4458173116048,93.9414672851562,-0.459309116626779,-1.07880687713623,0.839723772517519
+1451,81143,446097.952,81243,445997.952,50,14,0,NA,NA,NA,NA,-0.0226101119779923,0.015,1.5,1,62.2896536353828,1,1.5,88.3763262430827,82.7647323608398,-0.0640486983789338,-0.877801477909088,0.966918337355202
+1452,81143,445997.952,81243,445897.952,51,14,0,NA,NA,NA,NA,-0.0348957716002406,0.005,0.5,1,30.8308651382582,1,0.5,20.1942176818848,18.0277557373047,-1.08642706274986,-1.44026684761047,0.543701713970419
+1453,81143,445897.952,81243,445797.952,52,14,12.75,0.0085,3.41160005565076,0.158148148148148,10.3934466291663,-0.0305585353614879,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5,-1.57428153355916,-1.66460263729095,0.176404532599241
+1454,81143,445797.952,81243,445697.952,53,14,4.5,0.01125,2.72535427046017,0.1,14.2795858817043,0.0111538362867577,0.395,39.5,1,96.8888706928871,0.982901111427757,39.5,47.0743597368651,5,-1.81387854615847,-1.91398143768311,0.12001897805897
+1455,81143,445697.952,81243,445597.952,54,14,0,NA,NA,NA,NA,0.0893982969771605,0.78,78,1,99.3038050834495,0.96134817563389,78,134.773237521832,83.8152694702148,-1.99852306312985,-2.05138301849365,0.108929929044162
+1456,81143,445597.952,81243,445497.952,55,14,0,NA,NA,NA,NA,-0.0466178091558686,0.0725,7.25,1,85.7162801918893,0.931180822389172,7.25,82.2141889374832,68.0073547363281,-2.21633516417609,-2.30295133590698,0.155448017326274
+1457,81143,445497.952,81243,445397.952,56,14,1.5,0.015,5.8857296462896,0.361111111111111,NA,0.0362736902673419,0.4825,48.25,1,97.686149992119,0.983806979191968,48.25,61.8843871101814,15,-2.3734047015508,-2.52339291572571,0.157545893710971
+1458,81143,445397.952,81243,445297.952,57,14,0,NA,NA,NA,NA,0.00995788150597946,0.225,22.5,1,94.1674468064267,0.919855740332599,22.5,84.6598786671956,60.4152297973633,-2.60048874219259,-2.72978329658508,0.194652495657266
+1459,81143,445297.952,81243,445197.952,58,14,4,0.01,4.90831956479163,0.220486111111111,11.1803398874989,0.105793298743665,0.8275,82.75,2,98.245988198511,0.786666666666666,77.25,30.7366860553937,0,-2.80849415063858,-2.91536927223206,0.122702982563755
+1460,81143,445197.952,81243,445097.952,59,14,0,NA,NA,NA,NA,0.0800958352218981,0.54,54,1,98.1009071848445,0.972961280553753,54,42.9775246514214,10,-2.94214298990038,-2.96879696846008,0.0576764430448943
+1461,81143,445097.952,81243,444997.952,60,14,0,NA,NA,NA,NA,0.0803523760955431,0.4675,46.75,1,97.5655534302407,0.972862221498548,46.75,148.541972767223,128.549606323242,-3.00713557004929,-3.05766487121582,0.059659640153763
+1462,81143,444997.952,81243,444897.952,61,14,0,NA,NA,NA,NA,0.0179218862830749,0,0,0,NA,NA,0,NA,NA,-3.04949153794183,-3.08169293403625,0.0569760920533039
+1463,81143,444897.952,81243,444797.952,62,14,2.25,0.00321428571428571,0.714285714285714,0.0476190476190476,18.5566110592684,-0.0785092286665531,0,0,0,NA,NA,0,NA,NA,-3.04780336221059,-3.07459139823914,0.0319121877559194
+1464,81143,444797.952,81243,444697.952,63,14,1.75,0.0035,1,0.0666666666666667,17.7330442317405,0.0645343976837466,0.3975,39.75,2,94.9173988778506,0.920422895469789,37,23.8676173612007,5,-3.02670727835761,-3.03500270843506,0.0295328732327829
+1465,81143,444697.952,81243,444597.952,64,14,27.75,0.13875,13.9627292829559,0.462538226299694,10,0.0431492576409073,0.4025,40.25,3,93.0813844421133,0.773832409815674,22.75,19.9451628264433,0,-2.98136013746262,-3.03269124031067,0.0807153664086358
+1466,81143,444597.952,81243,444497.952,65,14,32.75,0.3275,30.054854379784,0.725190839694656,NA,-0.0538110166805564,0.1525,15.25,2,90.1348767541964,0.888684811042467,14.75,0.491803278688525,0,-2.8647894859314,-2.93253111839294,0.115633315227583
+1467,81143,444497.952,81243,444397.952,66,14,0,NA,NA,NA,NA,-0.0616304161685184,0,0,0,NA,NA,0,NA,NA,-2.76681068208483,-2.85522961616516,0.138813065908083
+1468,81143,444397.952,81243,444297.952,67,14,12.25,0.0408333333333333,9.22224977965067,0.558024691358025,18.3333333333333,0.00414929696815307,0.1075,10.75,3,79.4991336834262,0.782135076252723,6.5,7.6748464273852,0,-2.60579746961594,-2.76480007171631,0.200815255130094
+1469,81143,444297.952,81243,444197.952,68,14,11.5,0.0383333333333333,8.16947452261963,0.496773923244511,18.6851709182133,-0.0238505528009114,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,2.45234086778429,0,-2.41240649753147,-2.58508777618408,0.24151925750248
+1470,81143,444197.952,81243,444097.952,69,14,0,NA,NA,NA,NA,-0.0769572733063251,0,0,0,NA,NA,0,NA,NA,-2.23430087169011,-2.40546250343323,0.21767007076378
+1471,81143,444097.952,81243,443997.952,70,14,0,NA,NA,NA,NA,-0.157712369207293,0,0,0,NA,NA,0,NA,NA,-2.21167882283529,-2.2928261756897,0.155544576696298
+1472,81143,443997.952,81243,443897.952,71,14,23.5,0.0783333333333333,24.9278503664193,0.494824405041123,10,-0.205326689593494,0,0,0,NA,NA,0,NA,NA,-2.22517871856689,-2.30207204818726,0.116198394374506
+1473,81143,443897.952,81243,443797.952,72,14,5.25,0.00875,2.80374929021818,0.22962962962963,20.7611274200351,-0.0116332229327236,0,0,0,NA,NA,0,NA,NA,-2.07419908046722,-2.18454217910767,0.16432522200161
+1474,81143,443797.952,81243,443697.952,73,14,9.25,0.00840909090909091,1.86526710451303,0.120064279155188,13.7748129987969,-0.00311910751090181,0,0,0,NA,NA,0,NA,NA,-1.75572733084361,-1.9289368391037,0.193014038353091
+1475,81143,443697.952,81243,443597.952,74,14,6.25,0.00520833333333333,1.95265495973594,0.106944444444444,17.2358720346258,-0.0196574990585214,0,0,0,NA,NA,0,NA,NA,-1.46304714679718,-1.55987572669983,0.157278512553891
+1476,81143,443597.952,81243,443497.952,75,14,27,0.0675,8.39330079437991,0.205128205128205,13.4958640941704,0.000416903906680091,0.0375,3.75,3,62.1481913561713,0.716646989374262,2.25,0.333333333333333,0,-1.40625895063082,-1.53688704967499,0.179299771896995
+1477,81143,443497.952,81243,443397.952,76,14,9.25,0.0115625,2.22593297686648,0.170486111111111,20.7089950093201,0.0056091107967768,0.02,2,3,41.410345494925,0.591836734693878,1,13.2080543041229,10,-1.56302113003201,-1.69235515594482,0.197497608228413
+1478,81143,443397.952,81243,443297.952,77,14,11.75,0.0235,6.02079439756533,0.139181286549708,11.064495102246,0.00535757993872721,0.045,4.5,5,59.4569413658969,0.612177622648827,3,10.7178568310208,0,-1.77604987886217,-1.88818323612213,0.17870246132279
+1479,81143,443297.952,81243,443197.952,78,14,17.25,0.02875,5.60955636201062,0.135603345280765,18.780525881038,-0.00438029717864993,0.005,0.5,2,0,1,0.25,10,5,-2.03649055957794,-2.24789381027222,0.219389545210071
+1480,81143,443197.952,81243,443097.952,79,14,22,0.044,10.8732383030191,0.35668097840229,11.605551275464,-0.0405610382210307,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,5.83333333333333,0,-2.40148803922865,-2.62876796722412,0.34246784876314
+1481,81143,443097.952,81243,442997.952,80,14,21.5,0.0716666666666667,9.43543072807898,0.238095238095238,13.3333333333333,-0.0273609628993381,0.03,3,4,50.2805031471807,0.575500303214069,1.75,29.5137802759806,18.0277557373047,-2.77223591009776,-3.04864311218262,0.360870777114277
+1482,81143,442997.952,81243,442897.952,81,14,41.5,0.2075,16.4824791432762,0.516871165644172,11.1803398874989,0.0322686851327489,0.34,34,3,89.7108056691656,0.761730205278592,14.25,10.131671035991,0,-2.90421353446113,-3.11859035491943,0.460418424158646
+1483,81143,442897.952,81243,442797.952,82,14,7.25,0.0120833333333333,2.8125865307388,0.138888888888889,20.640671332298,0.0145506541147688,0.3325,33.25,1,96.1356845313251,0.894759649611539,33.25,13.6241462822247,0,-2.77234051624934,-3.11255526542664,0.714970893746444
+1484,81143,442797.952,81243,442697.952,83,14,1.75,0.0035,0.65403883526363,0.0555555555555555,37.5483916036682,-0.0263980443984838,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,37.5266331566705,25.4950981140137,-2.74605660968357,-3.11271286010742,0.854030690865017
+1485,81143,442697.952,81243,442597.952,84,14,14.75,0.0491666666666667,8.56521350369292,0.298611111111111,31.1031729828177,-0.00887902935251986,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,35.9852923343056,21.2132034301758,-2.7617967526118,-3.12750864028931,1.24705782681635
+1486,81143,442597.952,81243,442497.952,85,14,18.75,0.09375,12.5194373850394,0.39527027027027,85,0.00379106638167286,0.47,47,1,97.5860530790582,0.983734547820429,47,30.0978985441492,5,-2.64963126182556,-3.08576321601868,1.27465700802487
+1487,81143,442497.952,81243,442397.952,86,14,25,0.125,17.8174545197772,0.335016835016835,75,-0.107923638469947,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,8.69460084703234,5,-2.63053325812022,-2.99849343299866,1.19430015588224
+1488,81143,442397.952,81243,442297.952,87,14,24,0.06,8.03018040226823,0.287545787545788,26.4038820320221,-0.00943069706147071,0.415,41.5,1,97.093152360986,0.955309759231328,41.5,27.58600378611,0,-2.61844348907471,-2.98414182662964,1.16252553791139
+1489,81143,442297.952,81243,442197.952,88,14,26.5,0.053,6.30944366829129,0.233333333333333,20.2462112512353,-0.0667379693606927,0.02,2,1,68.0470115164975,0.693877551020408,2,6.65642595291138,0,-2.33247858285904,-2.88548541069031,1.10751275355473
+1490,81143,442197.952,81243,442097.952,89,14,9,0.03,4.76210799496612,0.296296296296296,20,-0.114570198386682,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15,-2.05856303373973,-2.43767213821411,1.05756268163503
+1491,81143,442097.952,81243,441997.952,90,14,12.25,0.06125,9.15154298392662,0.369791666666667,35,-0.0233972443026141,0.265,26.5,1,95.039096185713,0.985753463689141,26.5,41.6864958709141,14.1421356201172,-1.91630147563087,-2.49642205238342,1.28304109514716
+1492,81143,441997.952,81243,441897.952,91,14,17.5,0.175,28.2920922281698,0.723809523809524,NA,-0.0490361258234134,0.0075,0.75,1,44.4894453484604,1,0.75,20,15,-1.47312035163244,-2.53043818473816,1.36379403793736
+1493,81143,441897.952,81243,441797.952,92,14,20.5,0.05125,11.1426378055019,0.248804056639878,17.9282719345842,-0.067036125362647,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,5.80358950297038,0,-1.26080971790685,-1.88998639583588,0.999894221470063
+1494,81143,441797.952,81243,441697.952,93,14,15.5,0.0258333333333333,6.36491700764675,0.193581780538302,24.3312773726565,-0.0504816967694205,0.02,2,4,34.5233986084855,0.387755102040816,0.75,20.5779237747192,5,-1.63601832588514,-2.35090637207031,1.13359995221302
+1495,81143,441697.952,81243,441597.952,94,14,14.5,0.0483333333333333,8.62985392963082,0.265656565656566,10.3934466291663,-0.0373852541094857,0.045,4.5,3,62.711629952445,0.573395384913709,1.75,10.5254173278809,0,-2.09747751553853,-2.59241557121277,0.950170523751565
+1496,81143,441597.952,81243,441497.952,95,14,5.25,0.0075,2.69133283154828,0.181216931216931,17.5825200914916,-0.120098758713184,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,25.6055155436198,20,-2.30732022722562,-2.69067692756653,0.690347373447045
+1497,81143,441497.952,81243,441397.952,96,14,0.75,0.00375,1.25,0.0833333333333333,10,-0.154826524404343,0,0,0,NA,NA,0,NA,NA,-2.47087743547228,-2.67489528656006,0.43550187753599
+1498,81143,441397.952,81243,441297.952,97,14,16,0.0228571428571429,5.84863852443256,0.215910808767952,11.4285714285714,-0.0687837900497834,0.075,7.5,2,82.4159966826572,0.867622724765582,7,3.63807118733724,0,-2.63753432035446,-2.84180021286011,0.286441110455369
+1499,81143,441297.952,81243,441197.952,98,14,9.75,0.04875,14.2130862316178,0.378703703703704,10,0.0709982062864583,0.775,77.5,1,99.2846122710835,0.840182648401827,77.5,26.8134930764475,0,-2.87837245729235,-2.99873757362366,0.222351918789387
+1500,81143,441197.952,81243,441097.952,99,14,1.05263157894737,0.01,3.53553390593274,0.416666666666667,NA,0.000643554876805865,0.1225,12.25,2,88.0454022882827,0.891466558133225,11.75,55.4469824810417,0,-3.01246917247772,-3.04597449302673,0.0909797697313576
+1501,81243,451097.952,81343,450997.952,0,15,20.75,0.02075,5.75101280810992,0.291550355774494,12.4907047849146,0.0198337322204952,0.0625,6.25,5,65.4099246181801,0.626666666666667,2.75,3.29442718505859,0,1.10479002694289,0.873723268508911,0.241901565254664
+1502,81243,450997.952,81343,450897.952,1,15,10,0.00714285714285714,2.2038938323418,0.134623015873016,12.7557134852727,0.0271004073917766,0.185,18.5,2,89.8868174314273,0.896177442189712,16.5,6.36118270255424,0,1.38001226633787,1.09238302707672,0.228175198539214
+1503,81243,450897.952,81343,450797.952,2,15,4.75,0.00678571428571429,1.85394881997211,0.15249433106576,18.0738896522261,-0.00737449724238104,0.02,2,2,56.0496280993022,0.591836734693878,1.5,16.755051612854,0,1.58209911982218,1.45368409156799,0.161768875656804
+1504,81243,450797.952,81343,450697.952,3,15,27.75,0.069375,10.020842447953,0.365416666666667,26.1105070145893,0.0312561696464763,0.305,30.5,3,92.3430424201095,0.785149256160682,26,3.8180890161483,0,1.54846523702145,1.47501230239868,0.138972473730852
+1505,81243,450697.952,81343,450597.952,4,15,21.5,0.0238888888888889,6.60809479521853,0.280076199193846,12.9298381261849,0.00103405927591666,0.0275,2.75,4,44.197155902927,0.451585261353899,1,2.38003089211204,0,1.31443306803703,0.988142490386963,0.291285671969755
+1506,81243,450597.952,81343,450497.952,5,15,9.25,0.0308333333333333,8.92498256857354,0.473544973544974,16.6666666666667,-0.00245046461364836,0.075,7.5,3,79.9431043807899,0.823496966354109,6.75,9.32346642812093,0,0.800715852528811,0.32078942656517,0.478473558131589
+1507,81243,450497.952,81343,450397.952,6,15,17.25,0.0215625,7.69575759540205,0.317774470899471,11.25,0.00315051694460635,0.0375,3.75,3,58.8003676892038,0.669421487603306,1.75,3.27614237467448,0,0.55565142010649,0.202692180871964,0.491873156565056
+1508,81243,450397.952,81343,450297.952,7,15,30.75,0.0439285714285714,7.2024838019895,0.231984645710136,11.8419182322622,0.0151549646782951,0.0575,5.75,5,57.1748120313436,0.498968464485706,2,2.78878850522249,0,0.356029463000596,0.190986886620522,0.303675754397428
+1509,81243,450297.952,81343,450197.952,8,15,25.25,0.0229545454545455,5.37154912431741,0.281619489468327,11.4515842303354,0.0199684073765638,0.2,20,3,87.9210421042524,0.841549295774648,12,3.64112377166748,0,0.198247173180183,0.141241371631622,0.139446744436408
+1510,81243,450197.952,81343,450097.952,9,15,17.75,0.0161363636363636,4.2949295157476,0.277935606060606,14.4656995968776,0.00245394852332538,0.0575,5.75,3,70.4640532101323,0.793692897141173,4,4.3632756108823,0,0.0952086515414218,0.0166349317878485,0.0998570427700878
+1511,81243,450097.952,81343,449997.952,10,15,6.75,0.016875,6.01563271507707,0.254960317460317,33.2035724867176,-0.0101122082624897,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,4.51184463500977,0,0.0823484741813445,0.000904114858713001,0.103572467169191
+1512,81243,449997.952,81343,449897.952,11,15,16.75,0.0111666666666667,3.42735338889251,0.138968253968254,12.8780277085154,-0.011640972529899,0,0,0,NA,NA,0,NA,NA,0.275326188653708,0.160824820399284,0.165141095139533
+1513,81243,449897.952,81343,449797.952,12,15,25.5,0.0255,4.97439923534889,0.237013888888889,12.4628407399141,0.0255913153591791,0.1875,18.75,5,83.1212357769083,0.738927738927739,12.5,5.55833017985026,0,0.572609502822161,0.43608283996582,0.155538469846052
+1514,81243,449797.952,81343,449697.952,13,15,23.25,0.0258333333333333,7.67823904494104,0.24074592800083,13.2216610406796,0.000491553858373663,0.075,7.5,1,86.0448225436784,0.911748483177055,7.5,4.74754689534505,0,0.785762359698614,0.699561893939972,0.0998611320363774
+1515,81243,449697.952,81343,449597.952,14,15,24.75,0.04125,8.22186447548176,0.343616722783389,15.0825162613273,0.00871100536929589,0.02,2,1,68.0470115164975,1,2,8.31285190582275,5,0.865369379520416,0.791009128093719,0.0850735833664126
+1516,81243,449597.952,81343,449497.952,15,15,22,0.0275,5.61041188628141,0.292455808080808,19.2017301135011,-0.000236016506264605,0.0275,2.75,3,55.3822898769033,0.725792630676949,2,3.18181818181818,0,0.831917996207873,0.707085728645325,0.118057112798007
+1517,81243,449497.952,81343,449397.952,16,15,36.75,0.091875,9.21947326244895,0.340311004784689,14.01387818866,0.00330697311846961,0.1275,12.75,3,86.5907635730064,0.907782498435596,12,5.6436388352338,0,0.746939525008202,0.65589427947998,0.108548445433543
+1518,81243,449397.952,81343,449297.952,17,15,28,0.028,5.62258666477946,0.283862433862434,13.0183280829841,0.0158074351491859,0.115,11.5,5,77.8725508269745,0.637838620889468,6.75,2.65371886543606,0,0.647664397954941,0.580357789993286,0.0946718427823182
+1519,81243,449297.952,81343,449197.952,18,15,3.25,0.0065,2.0615667555489,0.166666666666667,29.4786656132973,0.00340188275300534,0.005,0.5,2,0,1,0.25,36.7171020507812,35.355339050293,0.456457011401653,0.281594008207321,0.156091077433144
+1520,81243,449197.952,81343,449097.952,19,15,25.5,0.051,7.23609269337036,0.371172839506173,14.2360679774998,-0.0104450623261437,0,0,0,NA,NA,0,NA,NA,0.204506820999086,0.0585391484200954,0.183269606136706
+1521,81243,449097.952,81343,448997.952,20,15,6.25,0.00568181818181818,1.8218380396035,0.109090909090909,15.1818921553152,0.00110247625049851,0.0725,7.25,2,78.3134274440812,0.747663015426966,4.5,10.7320980861269,0,0.0368633267547314,-0.0322672352194786,0.115625722395068
+1522,81243,448997.952,81343,448897.952,21,15,0.75,0.00375,1.25,0.0833333333333333,54.0832691319598,0.000524310738892382,0.0025,0.25,1,0,NA,0.25,25.4950981140137,25.4950981140137,-0.0381982406252064,-0.0562617667019367,0.0380347388742409
+1523,81243,448897.952,81343,448797.952,22,15,2.5,0.00833333333333333,2.66932545204811,0.0833333333333333,36.9599881407082,0.00283924026609384,0,0,0,NA,NA,0,NA,NA,-0.0404510600492358,-0.0648001134395599,0.0353157391466629
+1524,81243,448797.952,81343,448697.952,23,15,57.5,0.0958333333333333,9.49674821070981,0.344951679821898,10,0.0424503641603951,0.3625,36.25,5,90.0035527864303,0.733629300776915,22.5,2.3374429110823,0,-0.115369231440127,-0.259828209877014,0.133281480741099
+1525,81243,448697.952,81343,448597.952,24,15,59.5,0.119,10.1249799838156,0.395064412238325,15.4721359549996,0.0249944392713951,0.225,22.5,4,86.2147704475249,0.767581646964536,14,1.21269039577908,0,-0.456117878357569,-0.651318848133087,0.248035722250623
+1526,81243,448597.952,81343,448497.952,25,15,67.5,0.16875,16.6370345305507,0.569203607517148,10,0.0149077504684101,0.2625,26.25,3,89.512476244337,0.834992377365259,17.25,1,0,-0.818889632821083,-1.12246894836426,0.23590901864461
+1527,81243,448497.952,81343,448397.952,26,15,80.75,0.8075,38.1779824849959,0.821465428276574,NA,0.0256049306345813,0.375,37.5,3,93.3770812383547,0.784727272727273,28.75,1.16903559366862,0,-1.12165594100952,-1.44394385814667,0.308320744575413
+1528,81243,448397.952,81343,448297.952,27,15,79.25,0.7925,39.9640548173002,0.839642481598318,NA,0.0537118615383952,0.575,57.5,1,98.3223108063601,0.890305772658714,57.5,0.889452925972317,0,-1.38371609896421,-1.73791825771332,0.332683608263285
+1529,81243,448297.952,81343,448197.952,28,15,62.75,0.209166666666667,14.5507614643193,0.296145124716553,18.0277563773199,0.0123389351674996,0.195,19.5,5,81.9035440302556,0.684940138626339,7,1.3617077362843,0,-1.51916691660881,-1.74333071708679,0.235460069571058
+1530,81243,448197.952,81343,448097.952,29,15,13.5,0.016875,4.72836195455494,0.232264957264957,16.3452526019434,-0.0127853843281628,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0,-1.50480335205793,-1.62477028369904,0.147069906266701
+1531,81243,448097.952,81343,447997.952,30,15,31.25,0.0520833333333333,7.74274225255343,0.241557734204793,11.280525881038,-0.00949581722292351,0.06,6,2,77.155784368803,0.804031354983203,5,2.55055014292399,0,-1.49762106935183,-1.69038963317871,0.261327417154997
+1532,81243,447997.952,81343,447897.952,31,15,8.5,0.0141666666666667,4.90302531564986,0.17526455026455,12.7240226919466,0.00414459586987505,0.0875,8.75,4,72.4684352537534,0.565422768068021,3.25,14.3094163622175,0,-1.59793117642403,-1.75264298915863,0.2351286417953
+1533,81243,447897.952,81343,447797.952,32,15,8.5,0.085,16.9589176310282,0.563725490196078,NA,-0.0209486565861152,0.1025,10.25,2,85.3191777257007,0.886964595696581,9.5,3.90019067903844,0,-1.68347471952438,-1.78176069259644,0.165266865292748
+1534,81243,447797.952,81343,447697.952,33,15,31,0.31,29.8612491630229,0.731182795698925,NA,0.0348690010842256,0.4225,42.25,1,97.165991902834,0.922299922299922,42.25,1.99152983716254,0,-1.68193661173185,-1.72273361682892,0.0847610887979539
+1535,81243,447697.952,81343,447597.952,34,15,29.5,0.059,7.62526090376491,0.257957957957958,17.9375014650128,0.0465530654770919,0.4625,46.25,3,96.4512857924953,0.798721610227118,44.75,3.72969097446751,0,-1.74678210169077,-1.79313886165619,0.0671971981379594
+1536,81243,447597.952,81343,447497.952,35,15,28,0.07,14.0791676342921,0.524863834422658,15.2509910701015,0.0322041440706653,0.3875,38.75,5,90.4984777700663,0.747941281775868,24,3.34497117073305,0,-1.86772052447001,-1.95971882343292,0.104383092761985
+1537,81243,447497.952,81343,447397.952,36,15,40,0.0666666666666667,14.5879686919035,0.390010160773632,10,0.0323116031341851,0.3325,33.25,6,88.7603950610659,0.739994428452038,22.25,2.90653039458999,0,-2.0234884172678,-2.10047459602356,0.102578013540979
+1538,81243,447397.952,81343,447297.952,37,15,32.5,0.108333333333333,26.0519700262575,0.5657747993215,10,0.0484806114562753,0.3875,38.75,3,94.1565920688287,0.833870390261368,35,2.82764045961442,0,-2.09968066215515,-2.1595151424408,0.104559975061618
+1539,81243,447297.952,81343,447197.952,38,15,16.75,0.08375,23.0721173945152,0.413925438596491,15.8113883008419,0.00823596252970106,0.0725,7.25,2,78.1398832203314,0.793542467167517,5.25,2.72903915931439,0,-2.14465872943401,-2.19515633583069,0.0950346945407003
+1540,81243,447197.952,81343,447097.952,39,15,10,0.025,7.91460767482201,0.270833333333333,26.9151203846546,-0.000251686989668087,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-2.07958206534386,-2.148841381073,0.111492790901
+1541,81243,447097.952,81343,446997.952,40,15,44.5,0.0370833333333333,5.71133077669999,0.239914772727273,10.9316949906249,-0.0097092070992403,0.075,7.5,5,64.7915020705318,0.602868174296746,2.25,5.50146115620931,0,-1.8498989418149,-1.99707162380219,0.166246062877748
+1542,81243,446997.952,81343,446897.952,41,15,44,0.146666666666667,13.0276328815486,0.391503267973856,10.3934466291663,0.0212233818720051,0.185,18.5,5,87.0791312619978,0.792354884379424,15.75,0.675675675675676,0,-1.57435935735703,-1.67542886734009,0.158533412605915
+1543,81243,446897.952,81343,446797.952,42,15,13,0.0433333333333333,10.2420550552413,0.207777777777778,11.1803398874989,-0.0278794416702294,0,0,0,NA,NA,0,NA,NA,-1.43828638643026,-1.54620110988617,0.13134397281724
+1544,81243,446797.952,81343,446697.952,43,15,3,0.03,8.0542346455891,0.527777777777778,NA,-0.0210248132077322,0,0,0,NA,NA,0,NA,NA,-1.46728980541229,-1.55637085437775,0.123000784393586
+1545,81243,446697.952,81343,446597.952,44,15,0,NA,NA,NA,NA,-0.0143013881937395,0,0,0,NA,NA,0,NA,NA,-1.51339798172315,-1.62095355987549,0.109279620762497
+1546,81243,446597.952,81343,446497.952,45,15,1,0.01,5.75693909432999,0.166666666666667,NA,-0.0118635790411645,0,0,0,NA,NA,0,NA,NA,-1.53583125025034,-1.62924802303314,0.0891137601692595
+1547,81243,446497.952,81343,446397.952,46,15,8.5,0.0121428571428571,2.65074385558232,0.137896825396825,10.6744799357137,-0.00360405463301504,0.095,9.5,2,83.5818245529019,0.807068315355608,8,8.68062631707442,0,-1.54157118995984,-1.59503877162933,0.0627891710596318
+1548,81243,446397.952,81343,446297.952,47,15,22.75,0.2275,28.5731180311966,0.767399267399267,NA,0.00622721185617593,0.04,4,3,68.5730794644469,0.652777777777778,3.25,0.625,0,-1.55381910502911,-1.60090959072113,0.0591353008004557
+1549,81243,446297.952,81343,446197.952,48,15,28.25,0.0941666666666667,14.7717309412777,0.412990602542841,23.8260502349783,0.0333049716709229,0.27,27,6,86.024016764162,0.683877766069547,12.5,4.16372723049588,0,-1.49889536698659,-1.61216223239899,0.159953707946356
+1550,81243,446197.952,81343,446097.952,49,15,18.75,0.0375,6.16723194416701,0.102347417840376,10,0.0290412488905713,0.235,23.5,2,92.1167982300021,0.782135076252723,20.5,6.52564294287499,0,-1.35398127883673,-1.60732889175415,0.343067253576394
+1551,81243,446097.952,81343,445997.952,50,15,3.5,0.0116666666666667,4.46765063180822,0.17962962962963,12.7240226919466,-0.0122289202809043,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,2.74058251631887,0,-1.29238196710746,-1.51949322223663,0.355594005262437
+1552,81243,445997.952,81343,445897.952,51,15,2,0.02,7.50062682715126,0.375,NA,-0.0124299349693229,0.075,7.5,2,80.9536728762263,0.889685603971318,6.75,14.2734720865885,0,-1.43158725649118,-1.5129120349884,0.154788180527049
+1553,81243,445897.952,81343,445797.952,52,15,26.75,0.02675,8.06924799471591,0.322083589518372,10.7360679774998,-0.00145738120141687,0.06,6,6,55.8830061061344,0.524076147816349,2,7.51424829165141,0,-1.37885418534279,-1.64261162281036,0.448967064588031
+1554,81243,445797.952,81343,445697.952,53,15,8.25,0.0825,13.2206202221323,0.712121212121212,NA,-0.110092468843795,0,0,0,NA,NA,0,NA,NA,-1.65360009670258,-1.84941029548645,0.287799965495551
+1555,81243,445697.952,81343,445597.952,54,15,0,NA,NA,NA,NA,0.0743806130320445,0.5725,57.25,1,98.3071726267885,0.972609118424477,57.25,110.530611129827,51.4781532287598,-1.86742103099823,-2.00888824462891,0.186862871687103
+1556,81243,445597.952,81343,445497.952,55,15,0,NA,NA,NA,NA,-0.0327798119792351,0,0,0,NA,NA,0,NA,NA,-2.05301199356715,-2.19107484817505,0.159118320194294
+1557,81243,445497.952,81343,445397.952,56,15,15.75,0.0525,10.8397707763284,0.297270955165692,10.3934466291663,-0.0242755242177918,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0,-2.02752311527729,-2.28903341293335,0.330970209331449
+1558,81243,445397.952,81343,445297.952,57,15,8,0.04,10.515502190409,0.513888888888889,11.1803398874989,-0.0128786575135746,0.175,17.5,1,92.6818041122695,0.871889627987189,17.5,49.22282371521,35,-2.40142214298248,-2.55858159065247,0.293950575377208
+1559,81243,445297.952,81343,445197.952,58,15,4.25,0.02125,10.769671995885,0.248015873015873,11.1803398874989,0.153536659684032,1,100,1,100,NA,100,24.4681158256531,0,-2.71051807701588,-2.82513928413391,0.129950770162179
+1560,81243,445197.952,81343,445097.952,59,15,0,NA,NA,NA,NA,0.0812594323856138,0.445,44.5,3,94.0360496666108,0.879514773131795,36.25,69.8753096762668,31.6227760314941,-2.8700599471728,-2.94793200492859,0.0971437315609909
+1561,81243,445097.952,81343,444997.952,60,15,0,NA,NA,NA,NA,0.110574834230356,0.6525,65.25,1,98.7475319937876,0.941151373379824,65.25,116.333542220894,50,-3.00310076773167,-3.06315922737122,0.0716737165068158
+1562,81243,444997.952,81343,444897.952,61,15,0.5,0.0025,0,0,67.2681202353686,-0.012621891386807,0.0375,3.75,2,72.8063268476367,0.858323494687131,3.5,44.4396853129069,35.355339050293,-3.0677836338679,-3.09236121177673,0.0239455478774362
+1563,81243,444897.952,81343,444797.952,62,15,1.25,0.0025,0,0,33.7684745660542,-0.0583304224988387,0.005,0.5,1,30.8308651382582,1,0.5,25.2475490570068,25,-3.04294338822365,-3.082115650177,0.0358690209778052
+1564,81243,444797.952,81343,444697.952,63,15,0.75,0.0025,0,0,27.4873708374511,0.0743314759188797,0.5775,57.75,2,97.575257817266,0.85172778319307,56,27.6581822267342,0,-2.95649023850759,-3.01228952407837,0.0697663638521334
+1565,81243,444697.952,81343,444597.952,64,15,5.75,0.014375,4.08799575045032,0.173406862745098,23.7706760818804,-0.155913312263438,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,33.9934641520182,0,-2.85313014686108,-2.93644237518311,0.074522500544932
+1566,81243,444597.952,81343,444497.952,65,15,10.5,0.105,14.0699973133689,0.726190476190476,NA,-0.141494405000703,0.02,2,1,68.0470115164975,1,2,0,0,-2.75797418753306,-2.82303500175476,0.077736284709685
+1567,81243,444497.952,81343,444397.952,66,15,0,NA,NA,NA,NA,-0.0111439007941271,0,0,0,NA,NA,0,NA,NA,-2.61072055498759,-2.68929529190063,0.131089684300391
+1568,81243,444397.952,81343,444297.952,67,15,1.5,0.0075,3.01776695296637,0.291666666666667,11.1803398874989,-0.0513284040726467,0,0,0,NA,NA,0,NA,NA,-2.35620333254337,-2.54401421546936,0.19801058706452
+1569,81243,444297.952,81343,444197.952,68,15,19.75,0.09875,14.2263504418789,0.47953216374269,25,-0.0398295431284737,0,0,0,NA,NA,0,NA,NA,-2.13106538852056,-2.28395938873291,0.143626019054136
+1570,81243,444197.952,81343,444097.952,69,15,3.75,0.0075,3.88393726014886,0.191111111111111,11.1803398874989,-0.0880764831032138,0,0,0,NA,NA,0,NA,NA,-2.01033159345388,-2.10411286354065,0.0710538816835971
+1571,81243,444097.952,81343,443997.952,70,15,8.75,0.0291666666666667,10.0626430458849,0.406586224233283,17.4535599249993,-0.162721255463548,0,0,0,NA,NA,0,NA,NA,-2.01581065853437,-2.08406567573547,0.0646747436284775
+1572,81243,443997.952,81343,443897.952,71,15,25.75,0.0429166666666667,10.7616357582044,0.292976364522417,14.4226131578044,-0.0766319653750452,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,6.47237862481011,0,-2.03343333303928,-2.11758470535278,0.105803199774635
+1573,81243,443897.952,81343,443797.952,72,15,11.25,0.0102272727272727,3.01083667685497,0.166080447330447,13.6627646911506,-0.000415364205473452,0.025,2.5,3,55.3365473562369,0.526627218934911,1.75,5.3251407623291,0,-1.87022360165914,-2.04216504096985,0.184855708257079
+1574,81243,443797.952,81343,443697.952,73,15,7.5,0.00681818181818182,2.70045718753916,0.155555555555556,13.4317378115742,-0.00856675575905683,0.04,4,4,57.2141030695393,0.609375,2.25,7.15525591373444,0,-1.66512170433998,-1.82271695137024,0.113674996230581
+1575,81243,443697.952,81343,443597.952,74,15,2.25,0.005625,2.16622070989062,0.114583333333333,32.0433778197256,-0.0168694132250312,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0,-1.60664722323418,-1.67627429962158,0.0699939774489678
+1576,81243,443597.952,81343,443497.952,75,15,14.75,0.0184375,4.26437264476038,0.240801656920078,15.149978056645,0.00890818570374904,0.06,6,4,69.0579699263255,0.692049272116461,3.25,2.58629449208577,0,-1.66177685558796,-1.772421002388,0.121149689173014
+1577,81243,443497.952,81343,443397.952,76,15,15.25,0.0190625,4.9591074352498,0.180288461538462,16.0881019908347,0.00274686237777132,0.07,7,3,73.8098052827465,0.68936678614098,3.5,6.19457381112235,0,-1.73719774683317,-1.80848276615143,0.0947307631509107
+1578,81243,443397.952,81343,443297.952,77,15,16.25,0.0232142857142857,6.02170241229606,0.283482142857143,20.6157031122137,-0.00694345695490483,0.0375,3.75,5,48.6975807407065,0.480519480519481,1.5,2.94280904134115,0,-1.85348209738731,-1.93527042865753,0.121649155863134
+1579,81243,443297.952,81343,443197.952,78,15,31.25,0.0625,9.77422819511405,0.308646788990826,14.2135919318807,0.000152010710426111,0.04,4,4,59.4821833392925,0.522569444444444,1.75,2.88627123832703,0,-2.16221664100885,-2.42731904983521,0.236456316727244
+1580,81243,443197.952,81343,443097.952,79,15,47.75,0.119375,10.5937993592856,0.377832602339181,10.5901699437495,-0.0348498866154114,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,0,0,-2.61019186178843,-2.84261775016785,0.281616881118784
+1581,81243,443097.952,81343,442997.952,80,15,21,0.03,6.3821561014312,0.370844791817436,11.4285714285714,-0.0267656008954509,0.0325,3.25,2,64.4889415222974,0.770312948607522,2,2.30769230769231,0,-3.01560889184475,-3.1750910282135,0.197319920879964
+1582,81243,442997.952,81343,442897.952,81,15,33.25,0.0665,5.41760211726671,0.2015625,26.5422981235915,0.0409820486712306,0.5625,56.25,2,95.4370012331053,0.858503401360544,43.25,11.798843866984,0,-3.23206649223963,-3.28042364120483,0.0927390160647008
+1583,81243,442897.952,81343,442797.952,82,15,0.5,0.005,2.5,0.166666666666667,NA,0.0471771656254714,0.4325,43.25,1,97.260148197161,0.917141949649925,43.25,31.007546408328,0,-3.31674653291702,-3.41331720352173,0.117235617814698
+1584,81243,442797.952,81343,442697.952,83,15,1.25,0.003125,0.625,0.0416666666666667,20.6155281280883,0.0371044269738923,0.2825,28.25,1,95.3608329643832,0.911183985789438,28.25,40.3923634554433,20.6155281066895,-3.38503551483154,-3.47845125198364,0.142579389026659
+1585,81243,442697.952,81343,442597.952,84,15,0.25,0.0025,0,0,NA,0.02225383654908,0.1725,17.25,2,91.0259503032426,0.820229207760106,16.5,32.1899314825086,11.1803398132324,-3.38038665056229,-3.47993946075439,0.137837071480955
+1586,81243,442597.952,81343,442497.952,85,15,7.5,0.025,8.47782694990121,0.327546296296296,10.3934466291663,0.0622009763296955,0.665,66.5,1,98.8090595843688,0.976071546077229,66.5,38.6125364662113,5,-3.3061900138855,-3.40586805343628,0.137637908831312
+1587,81243,442497.952,81343,442397.952,86,15,4,0.0133333333333333,5.28531278395521,0.293827160493827,78.6397258756158,-0.0986384784078109,0.0025,0.25,1,0,NA,0.25,0,0,-3.2475613206625,-3.33180928230286,0.128803997653516
+1588,81243,442397.952,81343,442297.952,87,15,0,NA,NA,NA,NA,0.0622573964690673,0.69,69,1,98.9270603639069,0.937725744177357,69,46.5529581636622,15,-3.18938074509303,-3.26849627494812,0.134045992822738
+1589,81243,442297.952,81343,442197.952,88,15,1.75,0.0035,1,0.0666666666666667,20.6155281280883,-0.0413682710059948,0,0,0,NA,NA,0,NA,NA,-2.95263260602951,-3.14242005348206,0.219649888654005
+1590,81243,442197.952,81343,442097.952,89,15,0,NA,NA,NA,NA,-0.105221473248675,0,0,0,NA,NA,0,NA,NA,-2.75493027766546,-2.87925338745117,0.187694214379571
+1591,81243,442097.952,81343,441997.952,90,15,0,NA,NA,NA,NA,0.00281076151368325,0.1775,17.75,1,92.7707193874331,0.970820668693009,17.75,89.9797081745846,66.7083206176758,-2.78904181718826,-2.92971801757812,0.189266235835745
+1592,81243,441997.952,81343,441897.952,91,15,0,NA,NA,NA,NA,-0.0132770374800384,0,0,0,NA,NA,0,NA,NA,-2.81401167809963,-2.95379042625427,0.266390875875351
+1593,81243,441897.952,81343,441797.952,92,15,0,NA,NA,NA,NA,0.100424471962879,0.565,56.5,1,98.2611567869712,0.989079094656947,56.5,41.2228905838148,10,-2.48973974585533,-2.89496684074402,0.77854090869331
+1594,81243,441797.952,81343,441697.952,93,15,12.75,0.0255,5.20385561947451,0.202962962962963,18.4476609459544,-0.0226263889420079,0.2275,22.75,1,94.2285806660851,0.944064884733709,22.75,10.3293616326301,0,-1.89766013249755,-2.72276902198792,1.03204342431654
+1595,81243,441697.952,81343,441597.952,94,15,20.5,0.1025,18.1010311749728,0.620436507936508,25,-0.12069852273853,0,0,0,NA,NA,0,NA,NA,-1.31888352520764,-2.26294922828674,1.02107645612465
+1596,81243,441597.952,81343,441497.952,95,15,35.75,0.17875,25.5268474730707,0.720510563380282,30,-0.0552705860392416,0,0,0,NA,NA,0,NA,NA,-1.10665196180344,-1.9216228723526,1.18688024410406
+1597,81243,441497.952,81343,441397.952,96,15,34.5,0.115,14.8413206005285,0.523584905660377,33.578641939882,-0.0539614218383213,0.0025,0.25,1,0,NA,0.25,5,5,-1.28095247472326,-2.06463313102722,0.812190149974883
+1598,81243,441397.952,81343,441297.952,97,15,33,0.055,6.58223843188011,0.27083893821182,13.0934173713596,-0.0611115465449257,0.0475,4.75,1,81.114133276783,0.855190514978731,4.75,0,0,-1.99651234596968,-2.39871573448181,0.679936085342927
+1599,81243,441297.952,81343,441197.952,98,15,23.25,0.0465,10.2448815810118,0.329017094017094,10.4721359549996,0.0384546278243943,0.44,44,3,96.2012344927242,0.796703296703297,42.25,7.34298139268702,0,-2.28619598348935,-2.63447690010071,0.454390613305729
+1600,81243,441197.952,81343,441097.952,99,15,1.84210526315789,0.00875,4.36402641944747,0.215277777777778,80,-0.0936867488801363,0.02,2,1,68.0470115164975,0.795918367346939,2,3.125,0,-2.80940201878548,-3.01978516578674,0.373530448426098
+1601,81343,451097.952,81443,450997.952,0,16,20.75,0.02075,3.56011723629439,0.178279569892473,13.9907047849146,0.0192418460138379,0.305,30.5,5,90.6687414693744,0.752596113154725,24,5.16417514300737,0,0.7994517882665,0.688932061195374,0.18456353521454
+1602,81343,450997.952,81443,450897.952,1,16,12,0.00571428571428571,1.7367100682635,0.106959706959707,12.1294654773435,0.0293125166065329,0.255,25.5,7,84.5160902761554,0.677265559100744,15.75,7.03426217097862,0,1.09105721116066,0.845624506473541,0.252319503051574
+1603,81343,450897.952,81443,450797.952,2,16,29,0.0483333333333333,6.66571684481598,0.206641414141414,13.8348452418639,0.0416453751279914,0.3875,38.75,5,90.1692618779415,0.667740780522735,20.25,3.87238144413117,0,1.33805486891005,1.1963894367218,0.180527867520879
+1604,81343,450797.952,81443,450697.952,3,16,29.75,0.02975,4.80321112259701,0.233936261843239,13.8638911774009,0.00838113084395445,0.1675,16.75,4,85.0209997386166,0.774133107466441,11,3.73326933561866,0,1.46049546202024,1.36651623249054,0.099696815891849
+1605,81343,450697.952,81443,450597.952,4,16,8.75,0.00972222222222222,3.30752678085779,0.11672278338945,12.1700635306721,0.0203048434549373,0.195,19.5,2,90.4210800149375,0.927986317400306,17.75,4.5723748818422,0,1.61480168501536,1.47278118133545,0.307153055993072
+1606,81343,450597.952,81443,450497.952,5,16,0,NA,NA,NA,NA,-0.00802988699864272,0,0,0,NA,NA,0,NA,NA,1.92533468206724,1.33098816871643,0.796126413333573
+1607,81343,450497.952,81443,450397.952,6,16,0,NA,NA,NA,NA,-0.0104245487618934,0,0,0,NA,NA,0,NA,NA,1.89098290602366,1.30123770236969,0.919273377581154
+1608,81343,450397.952,81443,450297.952,7,16,11.75,0.0391666666666667,8.44863758821816,0.475837742504409,38.1211003119721,0.00181542332668869,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,1.57894736842105,0,1.34912531077862,0.678028464317322,0.839053387936645
+1609,81343,450297.952,81443,450197.952,8,16,11.5,0.0164285714285714,4.81018514210283,0.24047619047619,13.7557336556875,-0.00270726557803755,0.0125,1.25,2,43.859649122807,0.594936708860759,1,14.2821701049805,0,0.480526356233491,0.192862078547478,0.504971765469193
+1610,81343,450197.952,81443,450097.952,9,16,26.75,0.0445833333333333,7.65456678078043,0.404861111111111,18.2868932583326,0.0241949284756993,0.24,24,3,87.3706084805862,0.762851897184822,10.75,5.91120950380961,0,0.0263888911302072,-0.0142183834686875,0.129434544726818
+1611,81343,450097.952,81443,449997.952,10,16,40.25,0.20125,18.4823815200728,0.537813620071685,11.1803398874989,-0.0062871853712204,0.04,4,2,70.9784485168067,0.739583333333333,3.25,3.56694173812866,0,0.000608455894204477,-0.0372048765420914,0.071124196234146
+1612,81343,449997.952,81443,449897.952,11,16,7.5,0.00625,2.01946700017918,0.121527777777778,18.3447631177756,-0.00802817182119725,0.005,0.5,1,30.8308651382582,1,0.5,8.5355339050293,7.07106781005859,0.234865071045028,0.120380833745003,0.198435076227371
+1613,81343,449897.952,81443,449797.952,12,16,13,0.0144444444444444,3.27426422199659,0.172646604938272,14.6051556660657,0.0157769900082758,0.1475,14.75,3,86.106437164034,0.758495773676039,10.25,3.58947142908129,0,0.525030918419361,0.393818020820618,0.149963762681943
+1614,81343,449797.952,81443,449697.952,13,16,22.25,0.0445,8.09059303665757,0.367979553403282,10.7082039324994,0.0191549290996045,0.16,16,5,78.6790743062546,0.702380952380952,7.25,3.39098340272903,0,0.63225480582979,0.565305531024933,0.11588897821999
+1615,81343,449697.952,81443,449597.952,14,16,13.5,0.01125,2.48797321785574,0.18552559912854,15.0355460334245,0.000822694355774729,0.01,1,1,52.6315789473684,1,1,1.25,0,0.675402700901031,0.586793839931488,0.154327185014543
+1616,81343,449597.952,81443,449497.952,15,16,20.5,0.05125,11.1841303379799,0.466229375522139,13.0901699437495,-0.0174367829066478,0,0,0,NA,NA,0,NA,NA,0.709586441516876,0.603341460227966,0.180226168491176
+1617,81343,449497.952,81443,449397.952,16,16,16.5,0.0275,6.54051371684716,0.448435904576255,19.5744224098716,-0.00974227221913679,0,0,0,NA,NA,0,NA,NA,0.658979828159014,0.524033665657043,0.177564593139719
+1618,81343,449397.952,81443,449297.952,17,16,45.75,0.0653571428571429,6.43523078720293,0.270964360587002,13.740048555357,0.0181740046626146,0.215,21.5,4,85.9582314214047,0.808500895050164,12.75,1.54981710744459,0,0.497793737385008,0.343016713857651,0.211967698270424
+1619,81343,449297.952,81443,449197.952,18,16,22.25,0.0445,9.47895565821214,0.327378234398782,22.3239770383633,0.0036984596162165,0.1025,10.25,1,88.8238145380415,0.903112510597069,10.25,14.6415302927901,0,0.223193924253186,-0.00247660651803017,0.252480554038427
+1620,81343,449197.952,81443,449097.952,19,16,35.25,0.05875,8.60307803521565,0.360969517627593,13.2441018558268,-0.00812922081627221,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,2.30769230769231,0,0.0342556707974937,-0.0269507598131895,0.103340511929129
+1621,81343,449097.952,81443,448997.952,20,16,3.5,0.0116666666666667,3.29238833607887,0.212121212121212,18.3333333333333,0.00925430235439308,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,2.30769230769231,0,0.0371197491961842,-0.00442874291911721,0.078246775743771
+1622,81343,448997.952,81443,448897.952,21,16,1.5,0.00375,0.817548544079538,0.0694444444444444,19.167760220682,0.00354403846449713,0,0,0,NA,NA,0,NA,NA,0.0344422189712835,-0.0168784987181425,0.095137266528927
+1623,81343,448897.952,81443,448797.952,22,16,23.25,0.0290625,3.01639437987901,0.0840600775193798,13.4200849718747,0.0187778235169571,0.165,16.5,2,89.0685086017329,0.906274407706327,14.25,1.86794350363991,0,-0.0689917827645938,-0.151075392961502,0.0978394097699415
+1624,81343,448797.952,81443,448697.952,23,16,57.5,0.575,36.4474814106347,0.776811594202898,NA,0.030048055558741,0.1875,18.75,6,79.5600175470484,0.757575757575758,11.5,1.95767054239909,0,-0.260492931430538,-0.394440710544586,0.146773357056622
+1625,81343,448697.952,81443,448597.952,24,16,67.5,0.675,38.0205064084913,0.764197530864198,NA,0.0139131389119575,0.2925,29.25,3,93.5254438656275,0.92666177745183,28.25,1.22465189094217,0,-0.477280454503165,-0.549079835414886,0.119276246075376
+1626,81343,448597.952,81443,448497.952,25,16,67.75,0.6775,37.6445386302291,0.677736777367774,NA,0.0340530635981895,0.3975,39.75,2,93.4520639367542,0.869266185414654,20,1.50943396226415,0,-0.630507871508598,-0.737763702869415,0.125350077030863
+1627,81343,448497.952,81443,448397.952,26,16,67.5,0.3375,24.4639615036835,0.80023527072702,10,0.0525889695715887,0.5675,56.75,3,97.0027697146843,0.797756186884215,54.25,1.86135166857211,0,-0.798972162935469,-0.909050583839417,0.170607302111025
+1628,81343,448397.952,81443,448297.952,27,16,64.5,0.645,33.0855347529913,0.815245478036176,NA,0.0304185464319744,0.32,32,5,92.7230338569433,0.791719262812421,29.25,0.995262056589127,0,-0.990387593706449,-1.14346957206726,0.175252428198468
+1629,81343,448297.952,81443,448197.952,28,16,27.5,0.0392857142857143,5.80284529489994,0.307988043702329,16.9856856250786,0.00771692273302506,0.055,5.5,5,61.0639092147636,0.564270152505447,2.5,1.45777580954812,0,-1.17816472053528,-1.36770784854889,0.245211330208565
+1630,81343,448197.952,81443,448097.952,29,16,16.75,0.0279166666666667,4.21516991166289,0.233712121212121,20.9221246418063,-0.0149359584603553,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,0.434782608695652,0,-1.40522709488869,-1.63191318511963,0.255760884976303
+1631,81343,448097.952,81443,447997.952,30,16,15,0.05,15.5310056101499,0.368138751859682,32.2075922005613,-0.00409676793124163,0.1225,12.25,7,67.7955634903725,0.60656627323294,3.25,4.84021817421427,0,-1.62084441714817,-1.69873714447021,0.171495278779297
+1632,81343,447997.952,81443,447897.952,31,16,15,0.05,10.0976140849601,0.386831275720165,26.7149848700514,0.0289500397651682,0.36,36,1,96.4912280701754,0.810606060606061,36,5.98014495107863,0,-1.81938690609402,-1.96753215789795,0.158275456350173
+1633,81343,447897.952,81443,447797.952,32,16,16.25,0.0325,9.34729014012095,0.313783783783784,10.2360679774998,-0.0141441818040039,0.1625,16.25,4,82.9275969530665,0.746400739664509,10.25,9.59964414743277,0,-1.95386946201324,-2.14646172523499,0.238585848532115
+1634,81343,447797.952,81443,447697.952,33,16,10,0.05,9.22638776939711,0.627777777777778,47.4341649025257,-0.0127691983637851,0.0525,5.25,2,76.1446640085032,0.802110817941952,4.5,7.69249253045945,0,-1.95743199189504,-2.12586855888367,0.220223497503261
+1635,81343,447697.952,81443,447597.952,34,16,42.5,0.085,12.5242258981952,0.420724156992814,11.1622776601684,-0.00854623352101953,0.1775,17.75,2,87.5737240274238,0.863829787234043,10.5,1.46679064253686,0,-1.82907703518867,-1.94873428344727,0.109164554086313
+1636,81343,447597.952,81443,447497.952,35,16,17.75,0.0295833333333333,6.55018097065125,0.206431102772566,14.6875986667354,0.0186704317804652,0.28,28,2,94.4468929109825,0.903740374037404,27.5,3.11468580790928,0,-1.72970288329654,-1.82716953754425,0.166548020718488
+1637,81343,447497.952,81443,447397.952,36,16,8.5,0.02125,8.73100232729049,0.155651340996169,18.3540481324094,-0.00492372158389117,0.0525,5.25,2,73.3998551301285,0.83509234828496,3.75,9.65185837518601,0,-1.6927362481753,-1.88688373565674,0.312816938094389
+1638,81343,447397.952,81443,447297.952,37,16,1.75,0.00875,3.66421356237309,0.25,22.3606797749979,-0.0131201227628634,0,0,0,NA,NA,0,NA,NA,-1.6982292731603,-1.90805971622467,0.345032922640323
+1639,81343,447297.952,81443,447197.952,38,16,3.5,0.007,2.30975552024458,0.114814814814815,14.605551275464,0.00394809769545191,0.05,5,3,66.1171598722772,0.728353140916808,3,8.92983932495117,0,-1.7810177107652,-1.99466264247894,0.34199720093638
+1640,81343,447197.952,81443,447097.952,39,16,8.75,0.0125,5.05232240209233,0.322562358276644,17.2936446792343,-0.00359896716558069,0.0025,0.25,1,0,NA,0.25,0,0,-1.8373122215271,-1.99473190307617,0.277403467539213
+1641,81343,447097.952,81443,446997.952,40,16,28.25,0.0403571428571429,6.92927520766288,0.236827689877449,11.92779194101,0.00649940679660176,0.0175,1.75,2,49.299249134574,0.618320610687023,1,3.86729540143694,0,-1.64777480562528,-1.85646176338196,0.257219049015725
+1642,81343,446997.952,81443,446897.952,41,16,22.5,0.045,6.47759704910098,0.126190476190476,18.4721359549996,-0.0235099056378567,0.005,0.5,2,0,1,0.25,2.5,0,-1.36803330315484,-1.52088832855225,0.188458423767933
+1643,81343,446897.952,81443,446797.952,42,16,12.75,0.031875,7.62003357023633,0.115694444444444,10.2950849718747,-0.0275320878836055,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,5.1733147757394,0,-1.2272595067819,-1.28540694713593,0.0775938196964153
+1644,81343,446797.952,81443,446697.952,43,16,4.5,0.0075,2.68495008790345,0.147222222222222,24.8606797749979,-0.0121905510659053,0.0025,0.25,1,0,NA,0.25,5,5,-1.28236005041334,-1.35067701339722,0.088593913358942
+1645,81343,446697.952,81443,446597.952,44,16,16,0.0533333333333333,8.63686262871437,0.38250319284802,18.6851709182133,-0.0261202750201483,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-1.37550638781654,-1.42863881587982,0.0863710157449281
+1646,81343,446597.952,81443,446497.952,45,16,0.25,0.0025,0,0,NA,-0.0108738014150094,0,0,0,NA,NA,0,NA,NA,-1.44251222411791,-1.46406590938568,0.0449906218870576
+1647,81343,446497.952,81443,446397.952,46,16,0,NA,NA,NA,NA,-0.0112931193193754,0,0,0,NA,NA,0,NA,NA,-1.48434261480967,-1.49993538856506,0.0335516407311313
+1648,81343,446397.952,81443,446297.952,47,16,0,NA,NA,NA,NA,-0.00833491473513277,0,0,0,NA,NA,0,NA,NA,-1.58699650565783,-1.64490187168121,0.0674269077659048
+1649,81343,446297.952,81443,446197.952,48,16,7.75,0.03875,8.37628402656428,0.585016835016835,31.6227766016838,0.0103474378315877,0.16,16,4,82.0285332937756,0.808673469387755,11.75,21.9282298088074,0,-1.67717329661051,-1.69520843029022,0.0513867450776416
+1650,81343,446197.952,81443,446097.952,49,16,22,0.22,29.5511699412464,0.78030303030303,NA,0.0200550324825599,0.1675,16.75,2,88.644101780733,0.876799876799877,14,26.1107707806488,0,-1.63981098930041,-1.68393051624298,0.05177195207087
+1651,81343,446097.952,81443,445997.952,50,16,33.75,0.084375,11.031427602805,0.401836872261544,20.3695376762338,0.0142669645231035,0.15,15,2,90.7712347883201,0.819004524886878,14.75,0.867851130167643,0,-1.58297261926863,-1.60276460647583,0.0664707206590448
+1652,81343,445997.952,81443,445897.952,51,16,36,0.06,6.38235920514875,0.172479423868313,10.1967233145832,0.0312216210046427,0.3225,32.25,3,90.3917612785384,0.742482531208291,18.25,6.81955441023952,0,-1.36354396740596,-1.54024577140808,0.322007710717123
+1653,81343,445897.952,81443,445797.952,52,16,40.5,0.0368181818181818,7.81460666051428,0.47984761508798,10.9090909090909,-0.033644286587587,0.085,8.5,3,74.9506677186284,0.804839968774395,5.25,2.81308679019704,0,-0.175229882200559,-1.12267971038818,1.01054678161779
+1654,81343,445797.952,81443,445697.952,53,16,53.75,0.26875,26.8010552081764,0.763213618780846,18.0277563773199,-0.0578924900819857,0,0,0,NA,NA,0,NA,NA,-0.719530062072105,-1.50480711460114,0.920062596532911
+1655,81343,445697.952,81443,445597.952,54,16,15,0.0375,7.45622535005039,0.311388888888889,11.7479320470852,0.0299215338679255,0.33,33,1,96.1011760023317,0.975227596457546,33,32.4598058353771,0,-1.56436428758833,-1.81673359870911,0.42866464726023
+1656,81343,445597.952,81443,445497.952,55,16,1.75,0.00583333333333333,2.77777777777778,0.185185185185185,12.7240226919466,-0.0392483337958038,0,0,0,NA,NA,0,NA,NA,-1.78906938764784,-1.88507628440857,0.199654034175889
+1657,81343,445497.952,81443,445397.952,56,16,9,0.09,19.2187276075939,0.555555555555556,NA,-0.0161156399447373,0.05,5,1,81.7256002368443,0.966044142614601,5,9.88280811309814,0,-1.64888282616933,-1.88489556312561,0.331078633537798
+1658,81343,445397.952,81443,445297.952,57,16,12.25,0.0153125,5.3158121500678,0.241071428571429,11.5450849718747,0.0201410194916753,0.28,28,2,92.0712103198856,0.910616061606161,23.75,15.5011898790087,5,-2.10698664188385,-2.42557549476624,0.448180958880091
+1659,81343,445297.952,81443,445197.952,58,16,23.5,0.047,8.21272222388066,0.33890056022409,14.8191319096608,0.0511577673401916,0.415,41.5,1,97.093152360986,0.949723479135244,41.5,17.1614555335907,0,-2.52543880542119,-2.67887377738953,0.200805711662048
+1660,81343,445197.952,81443,445097.952,59,16,0,NA,NA,NA,NA,0.068984988121374,0.4175,41.75,3,93.7902091801929,0.888523493673708,34.5,56.0842010132567,7.07106781005859,-2.70804288652208,-2.83398628234863,0.184214466587291
+1661,81343,445097.952,81443,444997.952,60,16,0,NA,NA,NA,NA,0.145447870437201,0.95,95,1,99.8632718311308,0.972260748959778,95,87.3094373000296,50.2493743896484,-2.90897552172343,-3.00744390487671,0.131613360890433
+1662,81343,444997.952,81443,444897.952,61,16,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,17.4704653812252,-0.0937923777953256,0.025,2.5,2,59.7635627407876,0.684418145956607,1.75,51.9988681793213,40.3112869262695,-3.03082243601481,-3.0565230846405,0.0539917571277268
+1663,81343,444897.952,81443,444797.952,62,16,1.25,0.0025,0,0,20.6155281280883,-0.027658845843107,0,0,0,NA,NA,0,NA,NA,-3.04892730712891,-3.07110929489136,0.0338025728798317
+1664,81343,444797.952,81443,444697.952,63,16,1.5,0.0025,0,0,23.7856083324882,0.0653106890072083,0.4975,49.75,2,96.4139995744084,0.94067602367566,47.25,18.3200462571341,0,-2.97440751393636,-3.04482817649841,0.0894190462514527
+1665,81343,444697.952,81443,444597.952,64,16,20.25,0.2025,18.9953491755863,0.820987654320988,NA,-0.190332072125348,0.01,1,2,30.8308651382582,0.494949494949495,0.5,0,0,-2.84908644358317,-2.93707609176636,0.0745836216361097
+1666,81343,444597.952,81443,444497.952,65,16,1,0.0025,0,0,18.2134582144651,-0.0564624442167042,0,0,0,NA,NA,0,NA,NA,-2.76437600453695,-2.79655694961548,0.073816770517278
+1667,81343,444497.952,81443,444397.952,66,16,0,NA,NA,NA,NA,-0.00871664118920307,0,0,0,NA,NA,0,NA,NA,-2.57648579279582,-2.68265867233276,0.192388105090353
+1668,81343,444397.952,81443,444297.952,67,16,3,0.03,9.73832613339293,0.486111111111111,NA,-0.0945060846514753,0,0,0,NA,NA,0,NA,NA,-2.1316037774086,-2.3949658870697,0.299676392968812
+1669,81343,444297.952,81443,444197.952,68,16,17,0.0141666666666667,3.51688962908438,0.228020282186949,11.8650136950549,-0.0230043772163117,0.035,3.5,2,65.5940978380291,0.740932642487047,2,7.37178080422538,0,-1.81967075665792,-2.04297256469727,0.28786641677567
+1670,81343,444197.952,81443,444097.952,69,16,11.75,0.029375,8.74928531111905,0.373850686350686,16.51387818866,-0.192000391073525,0,0,0,NA,NA,0,NA,NA,-1.9039796491464,-1.97328448295593,0.157397388223221
+1671,81343,444097.952,81443,443997.952,70,16,20.5,0.05125,10.6568865955338,0.390873015873016,20.247548783982,-0.0374731127169071,0.0025,0.25,1,0,NA,0.25,0,0,-1.95823940965864,-2.01044869422913,0.104961042882395
+1672,81343,443997.952,81443,443897.952,71,16,10,0.00909090909090909,2.43219513151134,0.192332415059688,16.9521411867572,-0.00263869317542003,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,2.5,0,-1.88988832632701,-1.99893283843994,0.130519584511765
+1673,81343,443897.952,81443,443797.952,72,16,9.25,0.0115625,3.75369440391695,0.192797364672365,12.8115459390351,-0.00323356604619221,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,9.32044792175293,5,-1.67839137713114,-1.78415131568909,0.141731525885558
+1674,81343,443797.952,81443,443697.952,73,16,2.25,0.0045,1.51612377556149,0.0833333333333333,29.3277561597029,-0.0192820322300577,0,0,0,NA,NA,0,NA,NA,-1.5603619714578,-1.58886790275574,0.0558447296188256
+1675,81343,443697.952,81443,443597.952,74,16,4.75,0.0095,2.19123782337325,0.201818181818182,23.3782036012307,-0.00334255885107268,0.02,2,2,55.2425944039245,0.693877551020408,1.5,9.26934480667114,0,-1.66958500279321,-1.73687469959259,0.0965628038622579
+1676,81343,443597.952,81443,443497.952,75,16,23,0.0766666666666667,19.4297846878781,0.467711301044634,10,-0.0119234349773615,0.01,1,2,30.8308651382582,0.494949494949495,0.5,2.5,0,-1.80934186776479,-1.86203980445862,0.0689052990129733
+1677,81343,443497.952,81443,443397.952,76,16,11.5,0.014375,4.34253331985608,0.253927432216906,18.8248164294315,-0.0150892989766726,0.0025,0.25,1,0,NA,0.25,5,5,-1.8549514081743,-1.88767123222351,0.0517323616124236
+1678,81343,443397.952,81443,443297.952,77,16,20.25,0.0405,11.6525292475004,0.273611111111111,10.2360679774998,-0.000232575991612975,0.025,2.5,4,41.6623578643161,0.447731755424063,1,4.62132034301758,0,-1.93517033259074,-2.01211166381836,0.11689358802495
+1679,81343,443297.952,81443,443197.952,78,16,22,0.11,14.4605509795442,0.456395348837209,15,-0.0331504678901547,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,10.1820423126221,5,-2.31161264578501,-2.62825512886047,0.32070230993719
+1680,81343,443197.952,81443,443097.952,79,16,29,0.145,23.6449608943151,0.649948240165631,30,-0.01375544573561,0.0925,9.25,2,80.8209764281737,0.891613602492887,5.25,0.731650481352935,0,-3.04525759485033,-3.67522382736206,0.693300994524373
+1681,81343,443097.952,81443,442997.952,80,16,18.75,0.09375,12.9735496110096,0.738888888888889,10,-0.0358375960076228,0.0575,5.75,1,83.3142722045184,0.882110226937813,5.75,0.217391304347826,0,-3.53248876333237,-4,0.570376048764896
+1682,81343,442997.952,81443,442897.952,81,16,2.25,0.0045,1.5,0.0833333333333333,14.919796900954,0.0457801566251419,0.6825,68.25,1,98.892341761381,0.944635826771654,68.25,17.7157735649919,0,-3.30056884553697,-3.3418927192688,0.0781953827590643
+1683,81343,442897.952,81443,442797.952,82,16,0.25,0.0025,0,0,NA,0.0530292444676161,0.5125,51.25,3,94.3889145016825,0.833097785853691,33.25,46.4344904085485,5,-3.37900127967199,-3.42917776107788,0.0535154068905701
+1684,81343,442797.952,81443,442697.952,83,16,1.5,0.003,0.5,0.0333333333333333,21.5914420160634,0.031991024663439,0.2025,20.25,2,90.7069638119257,0.851967955416231,18,39.6996491043656,18.0277557373047,-3.46433218320211,-3.48723030090332,0.0389412277917527
+1685,81343,442697.952,81443,442597.952,84,16,0.25,0.0025,0,0,NA,0.0184905741443799,0.275,27.5,3,92.1425074368103,0.875238260266852,25.5,44.697284004905,25,-3.44350626071294,-3.48912358283997,0.05592483667059
+1686,81343,442597.952,81443,442497.952,85,16,9.25,0.04625,12.1012532374326,0.210648148148148,10,0.00905359481810592,0.5025,50.25,1,97.8384672014884,0.967666751990516,50.25,34.7572451444408,10,-3.36099391513401,-3.40553331375122,0.0519955208600831
+1687,81343,442497.952,81443,442397.952,86,16,19.25,0.1925,19.3136582061775,0.783549783549784,NA,-0.0600734675645799,0.07,7,1,85.3702908942512,0.97610513739546,7,0,0,-3.33437844117483,-3.36963152885437,0.0381271864476119
+1688,81343,442397.952,81443,442297.952,87,16,8.75,0.04375,6.49941736321246,0.375,45,0.0569621542136883,0.485,48.5,1,97.7057035934975,0.924487594390507,48.5,22.832046125353,0,-3.30899217393663,-3.37002921104431,0.10121888273349
+1689,81343,442297.952,81443,442197.952,88,16,1.75,0.0035,1,0.0666666666666667,29.834086566597,-0.052330795022217,0.0075,0.75,1,44.4894453484604,1,0.75,23.4983660380046,20,-3.15161202351252,-3.3044228553772,0.17069365501174
+1690,81343,442197.952,81443,442097.952,89,16,0,NA,NA,NA,NA,-0.0821596712047176,0.005,0.5,1,30.8308651382582,1,0.5,18.2134580612183,15.8113880157471,-2.98063559002346,-3.0718457698822,0.12724209178909
+1691,81343,442097.952,81443,441997.952,90,16,0,NA,NA,NA,NA,0.0021341959964775,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,119.267773946126,107.70329284668,-2.98010645972358,-3.01255249977112,0.0685317162961964
+1692,81343,441997.952,81443,441897.952,91,16,0,NA,NA,NA,NA,-0.00429508352566245,0,0,0,NA,NA,0,NA,NA,-3.0098738471667,-3.03923535346985,0.0484938002858913
+1693,81343,441897.952,81443,441797.952,92,16,0,NA,NA,NA,NA,0.158204734024876,0.8075,80.75,1,99.4061591150036,0.965935703640622,80.75,68.4299298572836,10,-2.98081170188056,-3.03003454208374,0.105371229175493
+1694,81343,441797.952,81443,441697.952,93,16,0.25,0.0025,0,0,NA,-0.046716987948289,0.035,3.5,1,77.1303955881658,0.792746113989637,3.5,13.5138559341431,0,-2.81961288054784,-2.95699453353882,0.21409280099164
+1695,81343,441697.952,81443,441597.952,94,16,0,NA,NA,NA,NA,-0.162609658320434,0,0,0,NA,NA,0,NA,NA,-2.43759984440274,-2.65687346458435,0.315645263632274
+1696,81343,441597.952,81443,441497.952,95,16,0,NA,NA,NA,NA,-0.0925270153465681,0,0,0,NA,NA,0,NA,NA,-2.04041150212288,-2.33222675323486,0.422684422129272
+1697,81343,441497.952,81443,441397.952,96,16,11.75,0.0235,3.98527322801336,0.175396825396825,22.4924225024706,-0.0903422633366427,0,0,0,NA,NA,0,NA,NA,-1.66971835162905,-2.21671962738037,0.907406540260696
+1698,81343,441397.952,81443,441297.952,97,16,20.75,0.051875,10.5568632173942,0.375378787878788,29.3321946356603,-0.0355135854423497,0.04,4,1,78.9473684210526,0.869791666666667,4,1.5625,0,-1.46861815452576,-2.36948704719543,1.12949697888111
+1699,81343,441297.952,81443,441197.952,98,16,42,0.21,27.1510407758278,0.780348557692308,40,-0.0159544618292421,0.1,10,4,77.58395479897,0.78441127694859,7.25,0.875,0,-1.04330677621894,-1.93030667304993,1.57918753949338
+1700,81343,441197.952,81443,441097.952,99,16,52.6315789473684,0.25,21.2509874662123,0.723622163277336,35.3553390593274,0.00697277846280485,0.31,31,3,90.7564766300428,0.78743961352657,19.5,1.70333228572722,0,-1.7728323439757,-2.73953795433044,1.06657193014047
+1701,81443,451097.952,81543,450997.952,0,17,34,0.113333333333333,12.9023244744522,0.445428309064673,22.4451732089984,0.0201841090818016,0.19,19,3,85.5248450633835,0.834162520729685,12.5,0.526315789473684,0,0.834242602189382,0.500596940517426,0.366971043132672
+1702,81443,450997.952,81543,450897.952,1,17,21.25,0.0303571428571429,6.21081272985656,0.221916971916972,22.4790327599017,0.0165487022768866,0.355,35.5,3,94.5191342805412,0.821109123434705,33.25,5.25345567246558,0,0.845521034672856,0.493863612413406,0.229100448434479
+1703,81443,450897.952,81543,450797.952,2,17,22.75,0.0151666666666667,3.44204323800563,0.168915343915344,12.548687686928,0.02582816439829,0.325,32.5,4,88.6872306967781,0.724957024535084,13.75,5.19427849696233,0,1.09758557875951,0.94411838054657,0.207317701878514
+1704,81443,450797.952,81543,450697.952,3,17,53.75,0.26875,18.6405656520662,0.456367924528302,10,0.0208887649433564,0.14,14,5,79.8926213495168,0.652361543994246,8.75,2.87258659090315,0,1.47869881242514,1.19177532196045,0.260892891433906
+1705,81443,450697.952,81543,450597.952,4,17,8.5,0.00772727272727273,2.63757693183692,0.123496873496873,14.5087756742852,-0.0120332109638821,0.0325,3.25,4,47.1343168217974,0.483204134366925,1,7.58513435950646,0,1.79680407047272,1.55631768703461,0.335574764429348
+1706,81443,450597.952,81543,450497.952,5,17,5.5,0.00785714285714286,3.00138735782141,0.128306878306878,13.5410123780273,-0.0125801439464522,0.0375,3.75,3,59.002942940761,0.716646989374262,2.25,5.78835271199544,0,2.15256138145924,1.682448387146,0.484329866225865
+1707,81443,450497.952,81543,450397.952,6,17,0,NA,NA,NA,NA,-0.00697286169679501,0,0,0,NA,NA,0,NA,NA,2.45117540160815,1.89380979537964,0.589348524014355
+1708,81443,450397.952,81543,450297.952,7,17,3,0.015,4.55822766442409,0.478571428571429,10,-0.00956288930661685,0,0,0,NA,NA,0,NA,NA,1.92525584995747,1.26995491981506,0.785076208751128
+1709,81443,450297.952,81543,450197.952,8,17,14.75,0.0163888888888889,4.76446682280723,0.252581369248036,11.2780905998588,-0.00442362001071615,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,3.28567420111762,0,0.727780630191167,0.314698159694672,0.600015093455063
+1710,81443,450197.952,81543,450097.952,9,17,37,0.0411111111111111,4.88461216811894,0.158713115406029,11.6430096273545,-0.0131241622563473,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,0.15038050004902,0.00529162678867579,0.219950848979005
+1711,81443,450097.952,81543,449997.952,10,17,51.25,0.128125,11.9164950954096,0.50289927827251,12.5,-0.0130345074782963,0.04,4,2,71.3827116079853,0.869791666666667,3.5,0,0,-0.00145269820859539,-0.0296074319630861,0.0498361275380108
+1712,81443,449997.952,81543,449897.952,11,17,35.75,0.0510714285714286,7.43100379121262,0.318723810991495,14.3618211215482,0.00471166288439576,0.08,8,5,65.7314933921048,0.665551839464883,3,8.79152715206146,0,0.0641748715812961,-0.00550449779257178,0.113899550293452
+1713,81443,449897.952,81543,449797.952,12,17,16.25,0.0203125,6.36363324271058,0.223247354497354,11.8343604343211,0.0218211447930935,0.215,21.5,4,87.4845315174804,0.79184879896757,15.75,4.82008949545927,0,0.248225849121809,0.0389415547251701,0.208092249419159
+1714,81443,449797.952,81543,449697.952,13,17,20,0.05,7.97169900296439,0.353602077687444,27.887652580651,0.00988306050722258,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,5.3451779683431,5,0.40770789484183,0.223873004317284,0.190338902103711
+1715,81443,449697.952,81543,449597.952,14,17,19.5,0.0216666666666667,4.61152336704312,0.304861111111111,16.4255349365446,0.000727572699888697,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0,0.445975128561258,0.313905537128448,0.144175665206624
+1716,81443,449597.952,81543,449497.952,15,17,9.5,0.00730769230769231,2.16347271316294,0.161324786324786,14.9293344990918,0.00596374959895911,0.02,2,2,52.6315789473684,0.489795918367347,1,6.29441738128662,0,0.416525187591712,0.277255088090897,0.154392179104519
+1717,81443,449497.952,81543,449397.952,16,17,26.25,0.0291666666666667,4.11078941455365,0.203936803936804,16.4142936316468,-0.00060604698217503,0.015,1.5,2,46.1375166841518,0.564902102973169,1,3.33333333333333,0,0.289206729736179,0.0425474792718887,0.233218395942533
+1718,81443,449397.952,81543,449297.952,17,17,24.75,0.020625,4.73997785932727,0.311634542040721,12.1075343002214,0.00387057453339366,0.06,6,1,83.7764057650598,0.944008958566629,6,9.87620035807292,0,0.0856821321261426,-0.129423096776009,0.273695936377605
+1719,81443,449297.952,81543,449197.952,18,17,44,0.088,7.3765593902298,0.191111111111111,16.4721359549996,-0.0111652482564386,0.0975,9.75,6,71.068471323739,0.693160025569998,5.25,7.00796909821339,0,-0.122258816089015,-0.267679274082184,0.193657721912412
+1720,81443,449197.952,81543,449097.952,19,17,44.75,0.0745833333333333,8.45320994030611,0.258034647550777,15.9937601006309,0.00269063434632699,0.165,16.5,2,87.8793940707267,0.833376724811247,13.25,0.984848484848485,0,0.00467458429435889,-0.152714401483536,0.179613075033224
+1721,81443,449097.952,81543,448997.952,20,17,39,0.0975,12.5554954183896,0.437185534591195,12.7950849718747,0.0220272939828646,0.1325,13.25,3,80.4126387358305,0.809988282610761,6.5,1.68192708717202,0,0.188882533460855,0.0929509550333023,0.101668368593497
+1722,81443,448997.952,81543,448897.952,21,17,2.5,0.00416666666666667,1.26427578268565,0.0740740740740741,24.9178132608831,0.0111358755191077,0.0125,1.25,1,58.1880425789518,1,1.25,18.7575191497803,15,0.150701439939439,0.0652629435062408,0.109520407850313
+1723,81443,448897.952,81543,448797.952,22,17,58.75,0.29375,20.0582666567226,0.449570815450644,14.142135623731,0.021604104959406,0.21,21,5,88.8791847284453,0.813099991504545,18.75,2.23126674833752,0,-0.0452768655183415,-0.147900208830833,0.13898790912234
+1724,81443,448797.952,81543,448697.952,23,17,65,0.216666666666667,17.3029059342549,0.662464387464387,10,-0.0104270666906814,0.0075,0.75,1,44.4894453484604,1,0.75,8.04737854003906,7.07106781005859,-0.226144364103675,-0.374449193477631,0.0985310595529252
+1725,81443,448697.952,81543,448597.952,24,17,60,0.1,10.4287636781203,0.331050831923294,10.8870792518717,0.0410883531620129,0.4025,40.25,5,91.0884536632991,0.824720117607147,26.25,2.43237501345806,0,-0.319986714671055,-0.455490231513977,0.135928084315096
+1726,81443,448597.952,81543,448497.952,25,17,73,0.1825,14.119764357205,0.539409722222222,10.5901699437495,0.0164536284503993,0.2925,29.25,2,95.0791202204546,0.846656443762917,29,2.89683095817892,0,-0.349052303936332,-0.569100439548492,0.231071360234414
+1727,81443,448497.952,81543,448397.952,26,17,66.5,0.16625,12.1671251910401,0.37122732936453,10.2950849718747,0.00537060954710341,0.1325,13.25,3,85.5004174192455,0.82265573043671,11,0.566037735849057,0,-0.3491943301633,-0.676316440105438,0.374131596219816
+1728,81443,448397.952,81543,448297.952,27,17,8.25,0.0275,7.15233187909756,0.464285714285714,29.9690536086616,0.0196682285334032,0.2675,26.75,3,91.3989007698081,0.865603282109321,23.5,17.6036855038081,0,-0.542184148071101,-0.90678197145462,0.415632379517474
+1729,81443,448297.952,81543,448197.952,28,17,22.75,0.0758333333333333,17.5815200729197,0.575158491825159,31.6942347758405,0.021941490164254,0.3225,32.25,2,94.4952033998833,0.855538980921724,30.75,5.38120731087618,0,-0.703550145030022,-0.993488550186157,0.315496374241458
+1730,81443,448197.952,81543,448097.952,29,17,29,0.0725,13.9437434964746,0.32640625,12.9489670038968,0.0449367967547732,0.455,45.5,2,96.793529982709,0.880216698881115,44.75,3.54136951153095,0,-0.88882701843977,-1.25135266780853,0.374153495324332
+1731,81443,448097.952,81543,447997.952,30,17,14.25,0.0475,9.87018810029614,0.276748971193416,10.3934466291663,-0.0242354837292351,0.15,15,2,89.163063425465,0.920814479638009,14.25,2.55473785400391,0,-1.23431973159313,-1.65905153751373,0.504646537486432
+1732,81443,447997.952,81543,447897.952,31,17,27.75,0.2775,30.1710180215058,0.798798798798799,NA,0.0148196391127385,0.1575,15.75,2,89.9075183218339,0.881305637982196,15,1.48070271809896,0,-1.65055041511854,-1.98549056053162,0.467300650107095
+1733,81443,447897.952,81543,447797.952,32,17,17.75,0.1775,22.8781996061973,0.762910798122066,NA,0.00326937008278037,0.1125,11.25,3,80.1800748489521,0.733135656041512,7,3.18409491644965,0,-1.97849124670029,-2.17809772491455,0.310525958629882
+1734,81443,447797.952,81543,447697.952,33,17,1.75,0.00875,3.46372078351511,0.152777777777778,118.004237212059,-0.0123745299055008,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.34912618001302,0,-1.93696278333664,-2.14862442016602,0.291663223892959
+1735,81443,447697.952,81543,447597.952,34,17,26.75,0.0382142857142857,9.23818806951481,0.296911421911422,10,-0.0148064992297441,0.13,13,1,90.6657843098624,0.922510654784967,13,33.7028601719783,20.6155281066895,-1.62359629571438,-1.93418252468109,0.299280922892498
+1736,81443,447597.952,81543,447497.952,35,17,6.25,0.0208333333333333,7.85774334881592,0.243230625583567,36.6666666666667,-0.0411621339383055,0,0,0,NA,NA,0,NA,NA,-1.35844917098681,-1.59739363193512,0.238195550867727
+1737,81443,447497.952,81543,447397.952,36,17,3,0.01,4.4958395891103,0.189814814814815,57.1178741696477,-0.0082994698639061,0,0,0,NA,NA,0,NA,NA,-1.2131968960166,-1.40847742557526,0.205931296303755
+1738,81443,447397.952,81543,447297.952,37,17,1.5,0.005,2.26857602741696,0.12037037037037,44.58127620794,0.0224925750715875,0.1125,11.25,2,86.0581148728601,0.925871015567087,10.5,12.2249659220378,0,-1.13610278069973,-1.37648952007294,0.259925891196761
+1739,81443,447297.952,81543,447197.952,38,17,6.25,0.00568181818181818,1.78227462353348,0.0814393939393939,14.6706363363434,-0.00857353860349576,0.06,6,4,69.4214085221222,0.608062709966405,4,15.5421647230784,0,-1.13994811847806,-1.48291051387787,0.306454722628455
+1740,81443,447197.952,81543,447097.952,39,17,18.5,0.0168181818181818,5.30074328480649,0.28495115995116,10.5365181306813,-0.00225631402433009,0.0525,5.25,2,78.2271746334801,0.934036939313984,5,4.87744794573103,0,-1.25170506040255,-1.49439942836761,0.275273241379626
+1741,81443,447097.952,81543,446997.952,40,17,18.5,0.037,8.92053989279224,0.177055383556932,23.8326775216706,-0.0349522604624508,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0,-1.23628854751587,-1.46222651004791,0.201743543389224
+1742,81443,446997.952,81543,446897.952,41,17,0,NA,NA,NA,NA,-0.00846301256553488,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047,-1.17044243216515,-1.28103768825531,0.117136888043082
+1743,81443,446897.952,81543,446797.952,42,17,2.5,0.00833333333333333,2.76330690462788,0.0555555555555556,11.1803398874989,-0.0112185436265099,0,0,0,NA,NA,0,NA,NA,-1.16388077288866,-1.21041214466095,0.0654928485592052
+1744,81443,446797.952,81543,446697.952,43,17,11.25,0.009375,2.16181720248627,0.0419653524492234,10.5826440156951,-0.0241617427057645,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,38.9686075846354,36.4005508422852,-1.16618637243907,-1.23321163654327,0.0757184986330332
+1745,81443,446697.952,81543,446597.952,44,17,81.5,0.271666666666667,11.6837691277641,0.292866941015089,10,-0.0244101165628308,0.1,10,1,88.6195912622717,0.983416252072968,10,0,0,-1.19764447212219,-1.32546925544739,0.122088989503552
+1746,81443,446597.952,81543,446497.952,45,17,39.75,0.1325,12.080693007109,0.30448717948718,10.3934466291663,-0.00844420148496283,0.0875,8.75,3,77.328745849978,0.829948039678791,5.75,12.8011336735317,0,-1.30900802463293,-1.4499579668045,0.146832962709401
+1747,81443,446497.952,81543,446397.952,46,17,1.5,0.00375,0.817548544079538,0.0694444444444444,19.5430170189599,-0.0396920919703371,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0,-1.44201053182284,-1.51812839508057,0.114026313497079
+1748,81443,446397.952,81543,446297.952,47,17,0,NA,NA,NA,NA,-0.012811332045294,0,0,0,NA,NA,0,NA,NA,-1.54072383791208,-1.61897206306458,0.0858874306587559
+1749,81443,446297.952,81543,446197.952,48,17,0,NA,NA,NA,NA,-0.0142323502761428,0,0,0,NA,NA,0,NA,NA,-1.58976261814435,-1.63913321495056,0.0548281771603805
+1750,81443,446197.952,81543,446097.952,49,17,0,NA,NA,NA,NA,-0.0177961732811218,0,0,0,NA,NA,0,NA,NA,-1.58103354275227,-1.6394020318985,0.0525447935213427
+1751,81443,446097.952,81543,445997.952,50,17,11,0.11,16.43386862835,0.727272727272727,NA,-0.0274883623371716,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-1.45792343219121,-1.58528339862823,0.178570363504564
+1752,81443,445997.952,81543,445897.952,51,17,21.25,0.053125,9.93793349289523,0.310185185185185,28.7493283619845,-0.00158409209756428,0.075,7.5,3,75.4348316037414,0.713182570325428,4.5,2.397527440389,0,-1.08156948164105,-1.43625545501709,0.458946652319217
+1753,81443,445897.952,81543,445797.952,52,17,31.75,0.079375,10.3962500585014,0.509385016025641,20,0.00794386226603819,0.105,10.5,4,77.3360969481629,0.779683688724526,7,1.45745722452799,0,-0.273066698263089,-1.0930403470993,0.936421625277226
+1754,81443,445797.952,81543,445697.952,53,17,11.25,0.1125,20.2733211044623,0.651851851851852,NA,0.0720972651983084,0.655,65.5,1,98.7599782819451,0.952773104282889,65.5,30.0626489042326,0,-1.05740012601018,-1.36362135410309,0.63005304090365
+1755,81443,445697.952,81543,445597.952,54,17,37.25,0.0532142857142857,8.42937306907458,0.39618783993784,11.811879326604,0.0143675966520095,0.34,34,2,92.9480246466787,0.926686217008798,24.25,13.6031038200154,0,-1.3092276006937,-1.50968956947327,0.285970972486461
+1756,81443,445597.952,81543,445497.952,55,17,36.75,0.091875,9.99489036130979,0.342857142857143,14.142135623731,-0.00572592669748701,0.03,3,1,74.8763016215986,0.939357186173438,3,1.66666666666667,0,-1.52272761861483,-1.65184807777405,0.217084612215221
+1757,81443,445497.952,81543,445397.952,56,17,3.75,0.00535714285714286,2.14285714285714,0.142857142857143,11.2662135962467,-0.00121886402974894,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,8.80497008103591,5,-1.7099496871233,-1.83315336704254,0.131245770843447
+1758,81443,445397.952,81543,445297.952,57,17,1.25,0.00416666666666667,1.11111111111111,0.0740740740740741,47.7992880480333,0.00996787425672664,0.32,32,1,95.959121300177,0.955819237566271,32,23.1981842070818,5,-1.9415264626344,-2.10807633399963,0.192150726139298
+1759,81443,445297.952,81543,445197.952,58,17,9.5,0.011875,4.11939808678626,0.180404589371981,12.3381019908347,-0.0118853782990698,0.0025,0.25,1,0,NA,0.25,15,15,-2.22678765654564,-2.4731559753418,0.212569518316172
+1760,81443,445197.952,81543,445097.952,59,17,1.75,0.00583333333333333,2.75673139210605,0.203703703703704,35.0554939639548,0.0183628018156287,0.2675,26.75,2,92.6444081345058,0.929264885320695,24.75,26.9529861022379,5,-2.43670272827148,-2.67610144615173,0.194540919670013
+1761,81443,445097.952,81543,444997.952,60,17,10.75,0.026875,6.69349545446245,0.281150793650794,10,0.0534105741686653,0.55,55,2,97.0678503786775,0.940379403794038,53.75,32.0209777398543,0,-2.65765392780304,-2.90635824203491,0.199602602890099
+1762,81443,444997.952,81543,444897.952,61,17,1.25,0.0025,0,0,20.6155281280883,-0.0822072541576927,0.05,5,1,81.7256002368443,0.966044142614601,5,24.2666772842407,10,-2.87934905290604,-3.00558757781982,0.181818866347765
+1763,81443,444897.952,81543,444797.952,62,17,2.25,0.0028125,0.3125,0.0208333333333333,20.6155281280883,0.0304057243049465,0.4225,42.25,2,93.8444134846811,0.866799866799867,33,23.5213306359285,5,-3.00069522857666,-3.08210182189941,0.113847306857
+1764,81443,444797.952,81543,444697.952,63,17,4,0.00666666666666667,1.86373633191016,0.12037037037037,23.2611805454022,0.0445700056191345,0.4,40,2,94.9343676259515,0.920634920634921,38,17.7133185625076,0,-3.01983952522278,-3.07948732376099,0.10549953461541
+1765,81443,444697.952,81543,444597.952,64,17,12.5,0.0625,9.34427731764369,0.455082742316785,79.0569415042095,-0.108264530067026,0.0975,9.75,1,88.4075627573592,0.948860004261666,9.75,1.71977096948868,0,-2.87456020712852,-3.00334668159485,0.131226009875326
+1766,81443,444597.952,81543,444497.952,65,17,0,NA,NA,NA,NA,0.0159598464248211,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-2.64893998702367,-2.76905608177185,0.210613448574901
+1767,81443,444497.952,81543,444397.952,66,17,9,0.0128571428571429,2.98469298724578,0.216203703703704,12.0136656497577,-0.0314300856449518,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,3.87574502696162,0,-2.33775717020035,-2.5855987071991,0.330086982141922
+1768,81443,444397.952,81543,444297.952,67,17,19.75,0.0658333333333333,9.41947422880207,0.371371371371371,11.6666666666667,-0.096650555692031,0,0,0,NA,NA,0,NA,NA,-1.79362018406391,-2.23891496658325,0.362961902849419
+1769,81443,444297.952,81543,444197.952,68,17,18,0.0257142857142857,6.27547909121961,0.190051020408163,14.0374827446418,-0.0282916716616455,0.095,9.5,2,85.4475438975786,0.877225291589932,9,15.3229721972817,5,-1.44338747859001,-1.60042822360992,0.249017892094583
+1770,81443,444197.952,81543,444097.952,69,17,35.5,0.08875,14.6617839776423,0.679518118182714,15.6066017177982,0.00686200232738884,0.255,25.5,2,94.2952543926266,0.860637400520776,25.25,12.3765100591323,0,-1.5503149330616,-1.75148141384125,0.287972588194437
+1771,81443,444097.952,81543,443997.952,70,17,32.25,0.080625,12.9817433537856,0.475772430184195,14.5710678118655,-0.0241431343650038,0.02,2,4,34.5233986084855,0.387755102040816,0.75,1.25,0,-1.71691790223122,-1.80421841144562,0.172006930488034
+1772,81443,443997.952,81543,443897.952,71,17,19.5,0.0216666666666667,4.62124956119781,0.204179430056623,13.1426968052735,-0.00879446785111213,0.04,4,2,68.4359744004884,0.696180555555556,2.25,2.1875,0,-1.72675658017397,-1.80630850791931,0.114600282165315
+1773,81443,443897.952,81543,443797.952,72,17,10,0.02,5.72634212483333,0.25,16.6729288110808,-0.00594989608530795,0.03,3,3,56.4350514685161,0.514857489387508,1.75,4.51184463500977,0,-1.64976772665977,-1.71783542633057,0.109814011974386
+1774,81443,443797.952,81543,443697.952,73,17,11.75,0.0195833333333333,3.67514470358728,0.229575163398693,14.6248526545526,-0.00851143715333819,0.05,5,3,64.8756471421547,0.66044142614601,2.25,6.07678394317627,0,-1.60343584418297,-1.68148219585419,0.0927218214153994
+1775,81443,443697.952,81543,443597.952,74,17,5.5,0.00611111111111111,2.20921468103991,0.13641975308642,16.8100150655347,-0.0113745767662749,0.03,3,1,74.8763016215986,0.939357186173438,3,2.91666666666667,0,-1.69446562727292,-1.7531418800354,0.0976848885897601
+1776,81443,443597.952,81543,443497.952,75,17,9.25,0.00770833333333333,2.97927225356237,0.205555555555556,14.2171860815305,-0.0123174122693354,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,3.67851130167643,0,-1.81753317266703,-1.85918164253235,0.0520861273666879
+1777,81443,443497.952,81543,443397.952,76,17,20.5,0.0128125,3.54899359054988,0.221175294612795,11.2832967406774,-0.000611549897093937,0.01,1,1,52.6315789473684,0.747474747474748,1,1.25,0,-1.87607663869858,-1.89625370502472,0.0410591841828158
+1778,81443,443397.952,81543,443297.952,77,17,13.75,0.0171875,3.95019898089124,0.276113782051282,17.3693540392485,0.0062080794263602,0.03,3,3,56.49025899395,0.696785930867192,2,3.33333333333333,0,-1.98934242129326,-2.07926368713379,0.142368059510377
+1779,81443,443297.952,81543,443197.952,78,17,26,0.26,26.1592780711163,0.753205128205128,NA,-0.0241960668133106,0.0025,0.25,1,0,NA,0.25,0,0,-2.45881350338459,-2.73353457450867,0.319712331941224
+1780,81443,443197.952,81543,443097.952,79,17,26.75,0.2675,29.7138285130863,0.682242990654206,NA,2.63119383998855e-05,0.095,9.5,1,88.1872188283408,0.894764535648514,9.5,1.57894736842105,0,-2.94964851935705,-3.1485390663147,0.352030149049345
+1781,81443,443097.952,81543,442997.952,80,17,13.25,0.033125,6.32532216723167,0.312037037037037,12.3381019908347,-0.0072843165739414,0.0275,2.75,3,54.7017580401744,0.520137103684661,1.5,24.2397880554199,0,-3.46645326912403,-4,0.418412332195728
+1782,81443,442997.952,81543,442897.952,81,17,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,20.6155281280883,0.0717321222137252,0.94,94,1,99.8346250196906,0.953249181860682,94,18.4303523327442,0,-3.33215604225794,-3.34954023361206,0.0237305634743009
+1783,81443,442897.952,81543,442797.952,82,17,0,NA,NA,NA,NA,0.0308146657987527,0.165,16.5,4,82.3252504285619,0.718823223118979,11,53.6750814842455,7.07106781005859,-3.35107053816319,-3.39372587203979,0.0337664767808358
+1784,81443,442797.952,81543,442697.952,83,17,0.5,0.0025,0,0,92.1954445729289,0.0235506633467639,0.03,3,1,74.8763016215986,0.818071558520315,3,37.5643704732259,30.4138145446777,-3.38207153479258,-3.43622803688049,0.0492583986039607
+1785,81443,442697.952,81543,442597.952,84,17,0.5,0.0025,0,0,20.6155281280883,-0.0050827373080665,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,24.8431417374384,15,-3.33332353830338,-3.42496085166931,0.0830401696590593
+1786,81443,442597.952,81543,442497.952,85,17,10.5,0.035,9.22901528457089,0.196581196581197,27.4873708374511,-0.0411159620650869,0.1825,18.25,1,92.9430371372494,0.904434250764526,18.25,17.74294751311,5,-3.28862257798513,-3.31893134117126,0.049089337299486
+1787,81443,442497.952,81543,442397.952,86,17,7,0.005,1.0758012707857,0.0615079365079365,16.3767781416391,-0.053616851871011,0,0,0,NA,NA,0,NA,NA,-3.3725181221962,-3.4351007938385,0.0678091908996969
+1788,81443,442397.952,81543,442297.952,87,17,3.5,0.00583333333333333,2.30264821166681,0.144444444444444,20.5986226718624,-0.011014268941035,0.045,4.5,1,80.4523936425773,0.883653286794648,4.5,22.3979513380263,10,-3.44784412781397,-3.47344517707825,0.0573853513416738
+1789,81443,442297.952,81543,442197.952,88,17,1,0.0025,0,0,20.6155281280883,-0.0416921689209994,0.2375,23.75,2,92.890288615988,0.930568948891032,23,31.7266961750231,15,-3.34877187013626,-3.45192813873291,0.125581458514748
+1790,81443,442197.952,81543,442097.952,89,17,0.25,0.0025,0,0,NA,-0.0446905370615423,0.0575,5.75,2,75.3995572813645,0.764220453875626,3.75,36.8694196783978,10,-3.1451261639595,-3.2580943107605,0.123105362666353
+1791,81443,442097.952,81543,441997.952,90,17,0,NA,NA,NA,NA,0.00233713160181651,0,0,0,NA,NA,0,NA,NA,-3.04118098815282,-3.07988739013672,0.0443259654924767
+1792,81443,441997.952,81543,441897.952,91,17,0,NA,NA,NA,NA,0.0167614828666046,0.045,4.5,2,71.2193911433968,0.728524335854179,3.25,83.2574628194173,68.0073547363281,-3.02686083316803,-3.03998279571533,0.0108357069218512
+1793,81443,441897.952,81543,441797.952,92,17,0.25,0.0025,0,0,NA,0.16934344223715,0.8075,80.75,1,99.4061591150036,0.974451777730466,80.75,60.2855005470961,0,-2.99522697925568,-3.02959609031677,0.0562532354749668
+1794,81443,441797.952,81543,441697.952,93,17,0,NA,NA,NA,NA,-0.0930112603273301,0,0,0,NA,NA,0,NA,NA,-2.82337671518326,-2.94263529777527,0.13175748555072
+1795,81443,441697.952,81543,441597.952,94,17,0,NA,NA,NA,NA,-0.139462401652709,0,0,0,NA,NA,0,NA,NA,-2.56483924388885,-2.67240619659424,0.16032582244084
+1796,81443,441597.952,81543,441497.952,95,17,0,NA,NA,NA,NA,-0.11257292132359,0,0,0,NA,NA,0,NA,NA,-2.33745339512825,-2.4468731880188,0.153646742080911
+1797,81443,441497.952,81543,441397.952,96,17,2.25,0.00375,1.25,0.0833333333333333,19.8274097589854,-0.0722134840930812,0,0,0,NA,NA,0,NA,NA,-2.52836008866628,-2.9885082244873,0.477983734766934
+1798,81443,441397.952,81543,441297.952,97,17,2,0.02,10,0.291666666666667,NA,-0.0141082968494345,0,0,0,NA,NA,0,NA,NA,-3.00003382563591,-3.2601273059845,0.400794199751667
+1799,81443,441297.952,81543,441197.952,98,17,1.5,0.0075,2.11950369130045,0.216666666666667,10,-0.0100930538476132,0,0,0,NA,NA,0,NA,NA,-2.98799906174342,-3.27375221252441,0.697953879156321
+1800,81443,441197.952,81543,441097.952,99,17,17.6315789473684,0.0558333333333333,7.93022795601108,0.252136752136752,13.5385093760294,0.0192008510263986,0.2375,23.75,5,88.5824170397428,0.853423336547734,21,28.4820996936999,0,-2.46600764989853,-3.10275149345398,0.955017734616767
+1801,81543,451097.952,81643,450997.952,0,18,12.5,0.0125,3.49340638965205,0.200854700854701,15.536649609809,0.0055754853858889,0.0525,5.25,3,69.497145719458,0.736147757255937,3,3.67005084809803,0,1.8572035100725,1.27725660800934,0.855254196883424
+1802,81543,450997.952,81643,450897.952,1,18,29.25,0.02925,5.49595767387888,0.232999249249249,14.507059371766,0.0310655324409254,0.275,27.5,4,88.0093348163207,0.750476520533703,16.25,3.75812575600364,0,1.13690955440203,0.952547311782837,0.358385959232357
+1803,81543,450897.952,81643,450797.952,2,18,34,0.0566666666666667,7.90840828232792,0.247315124489038,14.2106015032431,0.00468069170264243,0.1025,10.25,5,76.1604842948441,0.709337531791207,6,3.06451099674876,0,0.965092579523722,0.924144983291626,0.0942798422709999
+1804,81543,450797.952,81643,450697.952,3,18,33,0.055,6.04656223161292,0.213209683037269,11.1652880313901,-0.0144774519062526,0,0,0,NA,NA,0,NA,NA,1.07336639861266,0.908441424369812,0.292255118776795
+1805,81543,450697.952,81643,450597.952,4,18,18.25,0.0202777777777778,5.96994783759712,0.331937671736522,18.3566772536816,-0.00259722342837449,0.1125,11.25,5,81.338713660371,0.807264640474425,9.5,9.63055008782281,0,1.20937085151672,0.995405077934265,0.351212551236081
+1806,81543,450597.952,81643,450497.952,5,18,24.25,0.0161666666666667,3.87220721405499,0.21191856452726,12.754866609194,0.0111170391021187,0.0475,4.75,3,71.0646031631072,0.674178658702145,3.75,2.36842105263158,0,1.3540011048317,1.14832758903503,0.329793811502902
+1807,81543,450497.952,81643,450397.952,6,18,22.5,0.0321428571428571,7.45044138119936,0.233096070596071,11.6851240022268,0.0349176795281483,0.3525,35.25,2,94.2282226676585,0.814432372571907,29.5,4.34041090890871,0,1.35740847057766,1.18182349205017,0.378396106102355
+1808,81543,450397.952,81643,450297.952,7,18,5.25,0.013125,4.13806939965318,0.150595238095238,25.7458143144958,0.00982043855136908,0.1225,12.25,2,86.4187510059411,0.78293311626645,10.5,9.56067828742825,0,1.06031983097394,0.711282432079315,0.467050055963035
+1809,81543,450297.952,81643,450197.952,8,18,14.75,0.036875,5.46945226612933,0.320512820512821,24.6832609286308,-0.00934663554671715,0.0075,0.75,1,44.4894453484604,1,0.75,35.1184463500977,35,0.598468585146798,0.344215899705887,0.393130627916714
+1810,81543,450197.952,81643,450097.952,9,18,31.75,0.0396875,7.18598032734703,0.290177003361935,16.1813748259539,0.0160208802675629,0.1825,18.25,3,86.5772630588291,0.818425076452599,14,3.5915154757565,0,0.191541702383094,0.0737431272864342,0.207766069963657
+1811,81543,450097.952,81643,449997.952,10,18,37.5,0.09375,11.9130402380683,0.358796296296296,13.4597861695405,0.0116630567885329,0.125,12.5,4,78.3712624625542,0.757983193277311,6,3.28929222106934,0,0.000459458562545478,-0.0517441295087337,0.0665321774333248
+1812,81543,449997.952,81643,449897.952,11,18,41,0.082,9.06121773319428,0.347397260273973,16.2360679774998,-0.0173476003618453,0.0775,7.75,4,67.5448506674899,0.653116531165312,2.5,3.88137017526934,0,-0.0580137475497193,-0.0920914858579636,0.0567457451723901
+1813,81543,449897.952,81643,449797.952,12,18,46.75,0.0667857142857143,7.04536955732277,0.259109513826495,16.6160958067368,0.0442005853505179,0.4275,42.75,2,96.3571146755977,0.817009773341651,41.5,6.03693356430321,0,-0.0283735520060873,-0.157644644379616,0.175541675964322
+1814,81543,449797.952,81643,449697.952,13,18,14,0.0233333333333333,7.62800359027863,0.302634479717813,19.4941250563011,0.0235092578792842,0.24,24,4,87.0594591050797,0.839351285189718,15.75,11.7603156367938,0,-0.0936636875073115,-0.272257536649704,0.317862880061763
+1815,81543,449697.952,81643,449597.952,14,18,17.5,0.021875,6.08421608447619,0.269444444444444,11.9877124296868,0.00190505681541254,0.01,1,2,30.8308651382582,0.494949494949495,0.5,2.5,0,-0.00490370757567386,-0.267447382211685,0.37132387489021
+1816,81543,449597.952,81643,449497.952,15,18,21.25,0.0425,9.62414669053703,0.53359649122807,15.0776872304636,-0.0040823181394677,0.03,3,3,58.8962175806842,0.696785930867192,2.25,1.25,0,0.0909847641984622,-0.0804377198219299,0.293423872731584
+1817,81543,449497.952,81643,449397.952,16,18,14.75,0.0134090909090909,4.42050691434701,0.22357157432915,18.1701803736198,0.00308436114051801,0.03,3,2,69.3435483247553,0.696785930867192,2.75,10.6881065368652,0,-0.0629923399537802,-0.268738567829132,0.24653890317043
+1818,81543,449397.952,81643,449297.952,17,18,46.5,0.155,12.3452203847233,0.296903460837887,15,-0.00523097430130292,0.0625,6.25,2,77.3827239779975,0.84,5.25,14.0354177093506,0,-0.28528421289391,-0.399404257535934,0.191465787745776
+1819,81543,449297.952,81643,449197.952,18,18,86,0.43,24.891627052446,0.686991869918699,11.1803398874989,-0.00886667852166283,0,0,0,NA,NA,0,NA,NA,-0.390161417424679,-0.461875766515732,0.129157030772462
+1820,81543,449197.952,81643,449097.952,19,18,91,0.91,37.893559891452,0.885989010989011,NA,-0.00110463977229301,0.1,10,3,79.186692272218,0.767827529021559,7.5,0.5,0,-0.248622209661537,-0.410059630870819,0.280358864201208
+1821,81543,449097.952,81643,448997.952,20,18,59,0.295,21.676047275659,0.620065789473684,20,0.0288278448096617,0.2625,26.25,4,86.2949645541399,0.777598421666218,14,1.58912527901786,0,-0.0577850995792283,-0.273677915334702,0.297352257987918
+1822,81543,448997.952,81643,448897.952,21,18,27.25,0.2725,27.7564720385166,0.646788990825688,NA,0.0231062189063505,0.1725,17.25,5,78.8484206066425,0.630471149284662,6.5,5.02865031145621,0,-0.0511175051021079,-0.198620364069939,0.176132422903632
+1823,81543,448897.952,81643,448797.952,22,18,55.5,0.2775,19.0901656686362,0.472602739726027,10,0.025138761894932,0.2175,21.75,5,82.4923302834784,0.785633309285788,9,2.01890748122643,0,-0.137816851544711,-0.213517352938652,0.167111922985003
+1824,81543,448797.952,81643,448697.952,23,18,72.25,0.1445,11.2731790302743,0.330915178571429,10,0.0222036287343508,0.34,34,5,88.5849314764888,0.749511241446725,20.5,1.94852941176471,0,-0.245105312516292,-0.356792539358139,0.144832765572019
+1825,81543,448697.952,81643,448597.952,24,18,45.75,0.04575,7.10383901873706,0.259047619047619,10.5,0.0427009307499975,0.4875,48.75,4,92.7218384910833,0.79517585231101,29.5,3.20263752081455,0,-0.187519586748547,-0.256553798913956,0.12844585788023
+1826,81543,448597.952,81643,448497.952,25,18,15,0.0136363636363636,3.73505129289042,0.231601731601732,16.9413662840234,0.0132361439110537,0.135,13.5,7,74.2394897335259,0.639505252035552,7.75,5.91242927975125,0,0.0021629185260584,-0.116261996328831,0.182714420176719
+1827,81543,448497.952,81643,448397.952,26,18,15.5,0.019375,4.15974950336768,0.303943452380952,15.9645023542907,0.0081751312286724,0.1875,18.75,2,92.2020817054083,0.906759906759907,18.5,12.026703898112,0,0.189834592243036,0.0974519178271294,0.186202290694762
+1828,81543,448397.952,81643,448297.952,27,18,42.5,0.141666666666667,10.9647561803544,0.248346560846561,10.3934466291663,0.0501283174661876,0.485,48.5,1,97.7057035934975,0.892125134843581,48.5,3.21696459386767,0,-0.0193489867572983,-0.211648806929588,0.211028613697605
+1829,81543,448297.952,81643,448197.952,28,18,10.75,0.026875,5.90019131977913,0.201923076923077,11.1803398874989,-0.00178919677905469,0.12,12,3,84.8636181376377,0.902993348115299,10.75,4.35821191469828,0,-0.225492763850424,-0.361766248941422,0.21217131158717
+1830,81543,448197.952,81643,448097.952,29,18,3.5,0.035,11.191889844345,0.5,NA,-0.0208441376878363,0,0,0,NA,NA,0,NA,NA,-0.286666267861923,-0.450954467058182,0.234607249775427
+1831,81543,448097.952,81643,447997.952,30,18,0,NA,NA,NA,NA,-0.0337569476885983,0,0,0,NA,NA,0,NA,NA,-0.364079488648309,-0.581443309783936,0.328730305165047
+1832,81543,447997.952,81643,447897.952,31,18,0,NA,NA,NA,NA,-0.0527491097337042,0,0,0,NA,NA,0,NA,NA,-0.606193363666534,-1.12882733345032,0.582462415238924
+1833,81543,447897.952,81643,447797.952,32,18,7.25,0.0725,16.2457606623419,0.626436781609195,NA,-0.035405597349054,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-1.08301726480325,-1.50252270698547,0.643784962225059
+1834,81543,447797.952,81643,447697.952,33,18,32.5,0.1625,19.1969020251144,0.690793650793651,11.1803398874989,0.0514303992896657,0.46,46,2,96.5109870449001,0.836601307189542,44.5,6.01568396195121,0,-1.1921388440662,-1.53301668167114,0.487627547156812
+1835,81543,447697.952,81643,447597.952,34,18,25.5,0.031875,7.13813868362587,0.355648402523403,11.9153094389037,-0.0224213619228499,0.01,1,2,34.5233986084855,0.494949494949495,0.75,0,0,-1.11471337576707,-1.35505080223083,0.26755645611835
+1836,81543,447597.952,81643,447497.952,35,18,37.5,0.075,13.121400259592,0.500065150438285,10,-0.0307874018573784,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,2.47476869470933,0,-1.03987055354648,-1.11877191066742,0.130710328316847
+1837,81543,447497.952,81643,447397.952,36,18,2.5,0.00833333333333333,2.789355918257,0.198412698412698,49.5321060710572,-0.00963201559688059,0,0,0,NA,NA,0,NA,NA,-1.02412978808085,-1.08936381340027,0.0724492288804485
+1838,81543,447397.952,81643,447297.952,37,18,13,0.01625,2.45627872086572,0.173076923076923,22.4200126873696,0.069308697002898,0.3375,33.75,2,95.2578463818866,0.963184537505752,33.25,10.4832800405997,0,-0.911573158370124,-0.972729206085205,0.0877285348237977
+1839,81543,447297.952,81643,447197.952,38,18,31.25,0.0390625,6.56129103229172,0.285643424036281,11.9764235376052,-0.0303986802727013,0.01,1,2,34.5233986084855,0.494949494949495,0.75,1.25,0,-0.911235163609187,-0.994970381259918,0.0932175562950083
+1840,81543,447197.952,81643,447097.952,39,18,17.75,0.0295833333333333,6.89568914659739,0.243736383442266,16.4325933314924,-0.0109416662494914,0.11,11,2,87.8706617775683,0.878530215608867,10.75,12.1496268619191,0,-1.02201843923993,-1.06307220458984,0.0776635432346991
+1841,81543,447097.952,81643,446997.952,40,18,4,0.04,12.033452694407,0.229166666666667,NA,-0.0261010416118097,0,0,0,NA,NA,0,NA,NA,-1.04357246557872,-1.07208847999573,0.0512795179950343
+1842,81543,446997.952,81643,446897.952,41,18,0,NA,NA,NA,NA,-0.00883235785753186,0,0,0,NA,NA,0,NA,NA,-1.00193656153149,-1.02924752235413,0.0540867464545645
+1843,81543,446897.952,81643,446797.952,42,18,3.25,0.008125,2.3834221919521,0.1,11.1803398874989,-0.0109316213126112,0,0,0,NA,NA,0,NA,NA,-1.02820449074109,-1.06476318836212,0.0578669829759578
+1844,81543,446797.952,81643,446697.952,43,18,0,NA,NA,NA,NA,0.00722966818595751,0.13,13,2,87.4879923267414,0.793361746093246,11.25,55.2571072945228,31.6227760314941,-1.0642589463128,-1.07555603981018,0.0424997698283233
+1845,81543,446697.952,81643,446597.952,44,18,5,0.00714285714285714,2.20784334271189,0.0529100529100529,10.3372399678568,-0.0217733067384688,0.0325,3.25,1,76.0684107249879,1,3.25,37.9566588768592,29.1547584533691,-1.06943949063619,-1.08735120296478,0.0465878729283015
+1846,81543,446597.952,81643,446497.952,45,18,49.5,0.055,5.91524882216417,0.169167893683694,10.2622977527775,-0.0451278257195008,0,0,0,NA,NA,0,NA,NA,-1.10975270469983,-1.17947292327881,0.0751279231766861
+1847,81543,446497.952,81643,446397.952,46,18,62.75,0.209166666666667,11.5257906344162,0.340501792114695,11.937129433614,-0.0257504194738613,0.1225,12.25,2,86.1014653339208,0.810066476733144,10,9.191511815908,0,-1.22559013631609,-1.31270813941956,0.121056099904275
+1848,81543,446397.952,81643,446297.952,47,18,39,0.13,8.24124833906791,0.295093795093795,14.142135623731,-0.0422363653903085,0.0075,0.75,1,44.4894453484604,1,0.75,18.1768569946289,14.1421356201172,-1.40324072043101,-1.49990332126617,0.117020776364065
+1849,81543,446297.952,81643,446197.952,48,18,2,0.005,2.32311825006568,0.0625,11.1803398874989,-0.0188000104258572,0,0,0,NA,NA,0,NA,NA,-1.55704720815023,-1.58795595169067,0.0517026939419204
+1850,81543,446197.952,81643,446097.952,49,18,0,NA,NA,NA,NA,-0.0102717382744959,0,0,0,NA,NA,0,NA,NA,-1.55764903624852,-1.59749829769135,0.0626636912415058
+1851,81543,446097.952,81643,445997.952,50,18,14.5,0.0207142857142857,6.54971989796979,0.248466810966811,14.8774479462473,0.0283821489977493,0.295,29.5,1,95.572898758965,0.893948432425267,29.5,6.2427266492682,0,-1.20825082063675,-1.43501853942871,0.469140856173302
+1852,81543,445997.952,81643,445897.952,51,18,32.75,0.0409375,7.92721058421482,0.348537359022556,13.5676274578121,0.0130749590578125,0.095,9.5,4,79.2698961171385,0.701832851004122,7.25,1.42479304263466,0,-0.333346103007595,-1.04949343204498,0.606642005612249
+1853,81543,445897.952,81643,445797.952,52,18,45.25,0.113125,12.2602112313272,0.4371632996633,12.5,0.0354197442583518,0.435,43.5,3,91.6417199508222,0.773936536818019,19.75,3.94245809796213,0,0.347122269372145,-0.517381608486176,1.68399263326178
+1854,81543,445797.952,81643,445697.952,53,18,0,NA,NA,NA,NA,0.0406265430300846,0.3725,37.25,6,88.7772919869566,0.77233921457029,22.75,33.9322552008917,7.07106781005859,-1.23991113901138,-1.45954751968384,0.508715108541022
+1855,81543,445697.952,81643,445597.952,54,18,15.75,0.07875,16.0334140438838,0.549552429667519,20,0.0594943440106363,0.58,58,4,96.1494409482314,0.763554382492027,53.5,16.247497665471,0,-1.56892683770921,-1.68483400344849,0.166578982653369
+1856,81543,445597.952,81643,445497.952,55,18,66.5,0.221666666666667,18.7980204387374,0.498483397190294,10.3934466291663,0.0258382199198604,0.2675,26.75,2,91.4468718514813,0.787794655962086,19.75,2.80461958412812,0,-1.7750135395262,-1.9004909992218,0.170520965116713
+1857,81543,445497.952,81643,445397.952,56,18,7.75,0.0096875,3.90139564114538,0.196180555555556,16.7131019908347,-0.00832583033617993,0.17,17,1,92.4981249980877,0.908879214336337,17,22.4888819245731,14.1421356201172,-1.93549870451291,-2.05419683456421,0.170802068253985
+1858,81543,445397.952,81643,445297.952,57,18,0.25,0.0025,0,0,NA,-0.0245323266730702,0.15,15,1,91.6737426448862,0.909502262443439,15,34.6752092997233,20,-2.12940018706852,-2.28015661239624,0.221541159398694
+1859,81543,445297.952,81643,445197.952,58,18,3,0.01,2.36862922550025,0.166666666666667,39.6856471680698,-0.0459968370440606,0,0,0,NA,NA,0,NA,NA,-2.3237610856692,-2.5310583114624,0.281452651042773
+1860,81543,445197.952,81643,445097.952,59,18,8.5,0.0141666666666667,3.31791590088254,0.148148148148148,21.7261546172138,0.03182894304412,0.385,38.5,1,96.780810904996,0.965526157028355,38.5,11.8150355227582,0,-2.33540542920431,-2.47340607643127,0.155257661114438
+1861,81543,445097.952,81643,444997.952,60,18,10.25,0.0128125,4.00697509684454,0.27260101010101,12.8906990000516,0.0221789515870478,0.1075,10.75,5,71.892281047608,0.688764394646748,4,17.1954473007557,0,-2.37038900454839,-2.51653647422791,0.187416408012399
+1862,81543,444997.952,81643,444897.952,61,18,1.25,0.003125,0.625,0.0416666666666667,18.2134582144651,-0.0746860932573691,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,24.7651363655373,14.1421356201172,-2.48712947633531,-2.68998885154724,0.277765402502337
+1863,81543,444897.952,81643,444797.952,62,18,2.5,0.005,2.16666666666667,0.144444444444444,22.8294830634157,0.0340668362467113,0.355,35.5,2,92.8623608208245,0.821109123434705,20,21.1989733467639,0,-2.66516369581223,-2.84749603271484,0.296401167907239
+1864,81543,444797.952,81643,444697.952,63,18,29.25,0.14625,21.5308570794758,0.600589225589226,10,0.0314494068312729,0.295,29.5,5,85.9571959198632,0.741499304036588,13,11.3847099401183,0,-2.71188224686517,-2.87047672271729,0.273529750391441
+1865,81543,444697.952,81643,444597.952,64,18,32.5,0.1625,12.3506956373715,0.41343669250646,20,0.0157943689910235,0.185,18.5,4,84.0270049661072,0.820670127418594,13.25,1.35135135135135,0,-2.63028071324031,-2.81057214736938,0.271538489349151
+1866,81543,444597.952,81643,444497.952,65,18,7.5,0.075,15.3247563945448,0.638888888888889,NA,0.0172315656492719,0.15,15,1,91.6737426448863,0.898190045248869,15,4.55064156850179,0,-2.27479909525977,-2.56364703178406,0.397160881731399
+1867,81543,444497.952,81643,444397.952,66,18,27.25,0.0302777777777778,5.82820270725159,0.269386778338461,14.7559018321314,0.02690494397355,0.245,24.5,6,84.0326142200758,0.706502107164359,12.75,3.91842775928731,0,-1.85403458277384,-2.11209964752197,0.363231932619484
+1868,81543,444397.952,81643,444297.952,67,18,23.5,0.0156666666666667,3.59111830012256,0.184385099385099,12.1573786516665,0.0140037210052105,0.195,19.5,3,90.8793234051996,0.810964083175803,18.25,7.11554248516376,0,-1.53606770435969,-1.74045252799988,0.192456168956345
+1869,81543,444297.952,81643,444197.952,68,18,39.75,0.1325,12.4466047647423,0.406608569353667,16.0947570824873,0.00628366423362877,0.205,20.5,2,92.135548554757,0.800477119930601,19.5,7.60392135527076,0,-1.61462352010939,-1.79276549816132,0.331255132558532
+1870,81543,444197.952,81643,444097.952,69,18,46.5,0.11625,13.0863991401937,0.586970899470899,11.0355339059327,-0.0152552221034193,0.06,6,2,74.8763016215986,0.832026875699888,3,11.0098447004954,0,-2.0029610991478,-2.20549702644348,0.376339641112746
+1871,81543,444097.952,81643,443997.952,70,18,42.75,0.07125,11.5118458270778,0.315919612794613,14.0587346605565,-0.0476814788210686,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,3.67851130167643,0,-2.08964130613539,-2.24701118469238,0.319006309210327
+1872,81543,443997.952,81643,443897.952,71,18,20,0.0222222222222222,5.73619434068241,0.254187520854187,13.3418554010359,-0.0434016969510321,0.01,1,3,15.8692205350002,0.242424242424242,0.5,15.2999558448792,5,-2.04490330815315,-2.22741222381592,0.329372097562468
+1873,81543,443897.952,81643,443797.952,72,18,11.75,0.01175,3.62302326335502,0.277380952380952,16.829524276059,-0.00765044631072669,0.08,8,3,74.8687581136391,0.749163879598662,5.5,9.70676022768021,0,-1.99102821615007,-2.19181680679321,0.32472073466459
+1874,81543,443797.952,81643,443697.952,73,18,13.75,0.0125,2.78776607251469,0.166508838383838,14.7485341272011,-0.00314421827136812,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,5.46448680332729,0,-1.9176905254523,-2.11482691764832,0.281740528771735
+1875,81543,443697.952,81643,443597.952,74,18,16.75,0.0152272727272727,5.22323087361474,0.29212962962963,15.8562153176078,0.00134712843484067,0.055,5.5,4,69.6095076400679,0.657640834111422,4,4.2791879827326,0,-1.88298572434319,-2.00667262077332,0.207543141780828
+1876,81543,443597.952,81643,443497.952,75,18,6.25,0.00694444444444444,2.77041684206978,0.143827160493827,18.1450814188015,-0.0106253569860655,0,0,0,NA,NA,0,NA,NA,-1.90993198752403,-1.99650132656097,0.144034820001326
+1877,81543,443497.952,81643,443397.952,76,18,22.75,0.0455,8.61721643204123,0.503115404472705,10.2360679774998,-0.0063691344563631,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,0.882352941176471,0,-1.9642204840978,-2.06098127365112,0.1417647108573
+1878,81543,443397.952,81643,443297.952,77,18,49,0.49,33.280773777737,0.732142857142857,NA,-0.0128125806025037,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,0.454545454545455,0,-2.11490959591336,-2.24865221977234,0.203253022407834
+1879,81543,443297.952,81643,443197.952,78,18,14.25,0.0203571428571429,4.83969888597837,0.395568783068783,12.3114771267856,-0.0157924292369842,0,0,0,NA,NA,0,NA,NA,-2.51341009140015,-2.75409245491028,0.26764490358945
+1880,81543,443197.952,81643,443097.952,79,18,15,0.075,16.2927394665164,0.516975308641975,10,-0.0239798253628396,0.0075,0.75,1,44.4894453484604,1,0.75,43.4365247090658,40.3112869262695,-2.93686252170139,-3.05882143974304,0.199301091131788
+1881,81543,443097.952,81643,442997.952,80,18,14.75,0.07375,15.1436336999069,0.474074074074074,10,0.0185118631017758,0.2475,24.75,1,94.6838124709557,0.932808242188958,24.75,23.3729145936292,5,-3.18378607432048,-3.27381753921509,0.125829655673982
+1882,81543,442997.952,81643,442897.952,81,18,2,0.004,1.16666666666667,0.0777777777777778,16.8414528318526,0.0683741674944758,0.7975,79.75,2,98.1160170241471,0.885156474303761,75.25,24.9609458110176,0,-3.33627865049574,-3.37798237800598,0.0699533278903185
+1883,81543,442897.952,81643,442797.952,82,18,0,NA,NA,NA,NA,0.0445923736330587,0.3625,36.25,2,96.100575324952,0.893451720310766,36,85.4653322154078,52.2015342712402,-3.39932346343994,-3.41657567024231,0.0440734568205019
+1884,81543,442797.952,81643,442697.952,83,18,0,NA,NA,NA,NA,0.0213733452014276,0,0,0,NA,NA,0,NA,NA,-3.3410321076711,-3.38281297683716,0.0707295843518329
+1885,81543,442697.952,81643,442597.952,84,18,0.5,0.0025,0,0,65.7647321898295,-0.0100295875889969,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,20.4243105720071,10,-3.20432796080907,-3.2867226600647,0.0941416579261286
+1886,81543,442597.952,81643,442497.952,85,18,19.25,0.0641666666666667,10.4973270771996,0.248498498498498,12.4535599249993,-0.0628435461752088,0.065,6.5,2,77.8621034753678,0.791313421155602,5.25,15.6239825762235,10,-3.18111703130934,-3.24660491943359,0.0892992223611809
+1887,81543,442497.952,81643,442397.952,86,18,4,0.00571428571428571,1.91509629275251,0.149206349206349,15.5236030226718,-0.0313372173643779,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,52.4165393829346,43.0116271972656,-3.28655948241552,-3.37857389450073,0.106609688295624
+1888,81543,442397.952,81643,442297.952,87,18,0,NA,NA,NA,NA,-0.016943597694526,0,0,0,NA,NA,0,NA,NA,-3.39324694209629,-3.44175148010254,0.0759890248316619
+1889,81543,442297.952,81643,442197.952,88,18,0,NA,NA,NA,NA,0.0076382829646036,0.4875,48.75,1,97.7251065890586,0.962269235952028,48.75,71.300037697034,21.2132034301758,-3.39043488105138,-3.43562746047974,0.0524315556079718
+1890,81543,442197.952,81643,442097.952,89,18,0,NA,NA,NA,NA,-0.0146774844308675,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,163.571517944336,159.138305664062,-3.2746061484019,-3.36334681510925,0.130676223488319
+1891,81543,442097.952,81643,441997.952,90,18,0,NA,NA,NA,NA,0.0017420960027053,0,0,0,NA,NA,0,NA,NA,-3.1284311082628,-3.23502945899963,0.123073376511431
+1892,81543,441997.952,81643,441897.952,91,18,0,NA,NA,NA,NA,0.0287678836929263,0.155,15.5,1,91.8947234736642,0.912338373876835,15.5,61.9891720433389,50,-3.03686811526616,-3.08451700210571,0.0383149452893062
+1893,81543,441897.952,81643,441797.952,92,18,1.25,0.003125,0.625,0.0416666666666667,21.8354204880572,0.0839891657425255,0.5625,56.25,1,98.2456140350877,0.972789115646259,56.25,28.4129405466715,0,-2.9811007976532,-3.0118613243103,0.0585874967928685
+1894,81543,441797.952,81643,441697.952,93,18,0,NA,NA,NA,NA,-0.126390112568624,0,0,0,NA,NA,0,NA,NA,-2.82870181401571,-2.91396284103394,0.114208528534061
+1895,81543,441697.952,81643,441597.952,94,18,0,NA,NA,NA,NA,-0.100201040338725,0,0,0,NA,NA,0,NA,NA,-2.627571688758,-2.72587537765503,0.141231041075092
+1896,81543,441597.952,81643,441497.952,95,18,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,-0.121792855337262,0,0,0,NA,NA,0,NA,NA,-2.55067898829778,-2.67948055267334,0.189409405981812
+1897,81543,441497.952,81643,441397.952,96,18,0.25,0.0025,0,0,NA,-0.0174407594747026,0,0,0,NA,NA,0,NA,NA,-2.95630984836155,-3.12754440307617,0.333445492278896
+1898,81543,441397.952,81643,441297.952,97,18,2.5,0.0125,6.25,0.229166666666667,45.2769256906871,0.00426302592449019,0,0,0,NA,NA,0,NA,NA,-3.26671089728673,-3.31192922592163,0.0912217796637382
+1899,81543,441297.952,81643,441197.952,98,18,0,NA,NA,NA,NA,-0.00779124565600341,0,0,0,NA,NA,0,NA,NA,-3.24598627620273,-3.29039788246155,0.0946963051886629
+1900,81543,441197.952,81643,441097.952,99,18,0,NA,NA,NA,NA,0.0384840966218599,0.47,47,1,97.5860530790582,0.913250921708957,47,105.373529454495,55,-3.02571976184845,-3.15316390991211,0.158226785575795
+1901,81643,451097.952,81743,450997.952,0,19,40,0.0363636363636364,6.55790271237203,0.249512245745122,10.2146072522725,0.0129609933446318,0.0775,7.75,6,64.7711683130504,0.501355013550136,3.5,3.40790164086127,0,2.52585506439209,2.15614628791809,0.53084864770127
+1902,81643,450997.952,81743,450897.952,1,19,38.25,0.0765,10.5868210263236,0.475132823082285,16.2624055249564,0.02201470745611,0.285,28.5,3,91.052210405578,0.694480277004549,18.5,4.41307005965919,0,1.75101576000452,1.25262999534607,0.466358085277779
+1903,81643,450897.952,81743,450797.952,2,19,45,0.15,16.9690100383322,0.676995420210881,10.3934466291663,-0.00203161000272303,0.0775,7.75,3,76.2059508763118,0.718157181571816,4.75,1.35713121967931,0,1.11303794880708,0.834436357021332,0.402652385794368
+1904,81643,450797.952,81743,450697.952,3,19,55.5,0.555,31.2160995438239,0.834084084084084,NA,-0.0184588457144855,0.1075,10.75,1,89.2106768070942,0.937752878929349,10.75,1.55979227465253,0,0.748568318784237,0.591867864131927,0.162897334250929
+1905,81643,450697.952,81743,450597.952,4,19,27.25,0.0389285714285714,4.75414694573129,0.178571428571429,17.5794781665908,0.00387315842230237,0.0575,5.75,5,62.1048868348786,0.616858237547893,2.75,4.55453142912492,0,0.793407956759135,0.614983379840851,0.197952883040319
+1906,81643,450597.952,81743,450497.952,5,19,34.5,0.0492857142857143,8.454754512621,0.344862171216851,15.1382037905271,0.0349252586787043,0.2825,28.25,6,83.5026112196148,0.747215959554554,11.25,2.71053010383538,0,1.0105899721384,0.817346930503845,0.168101331427901
+1907,81643,450497.952,81743,450397.952,6,19,21.5,0.026875,6.09472153245438,0.314168019480519,14.7566782151666,0.0106363168742973,0.06,6,9,46.8759738761936,0.384098544232923,1.75,9.84759370485942,0,1.01442607243856,0.813684642314911,0.192560746382242
+1908,81643,450397.952,81743,450297.952,7,19,34,0.0309090909090909,6.02775108797641,0.311673326673327,11.3442806041992,0.0130392612703554,0.105,10.5,6,70.5495138974291,0.606578015579511,5,2.2414794195266,0,0.692945765331388,0.446679562330246,0.289355683984062
+1909,81643,450297.952,81743,450197.952,8,19,20.25,0.01125,4.20080313156504,0.149011610817166,12.8026116152245,-0.0142934662817606,0.0425,4.25,3,64.6030965257522,0.74934725848564,2.5,3.68744681863224,0,0.253397227575382,0.14682973921299,0.208276086048292
+1910,81643,450197.952,81743,450097.952,9,19,24.75,0.0353571428571429,8.12118317013829,0.317060915275201,14.2004463331452,0.00727681483440136,0.075,7.5,4,70.2928230477976,0.669056811913955,3.25,3.04044011433919,0,0.115198970461885,0.0677991062402725,0.100879421587136
+1911,81643,450097.952,81743,449997.952,10,19,10.5,0.00807692307692308,2.39174004292058,0.164529914529915,12.9363129289108,0.0124960130919499,0.07,7,2,80.1188661936748,0.7610513739546,5.75,4.63124581745693,0,0.147347240097588,-0.0044437674805522,0.186672860436066
+1912,81643,449997.952,81743,449897.952,11,19,24.5,0.0408333333333333,6.56876153623158,0.272418630751964,21.011002862997,0.0215132162707596,0.2025,20.25,5,84.232162058589,0.764890282131661,13.75,4.02976358672719,0,0.16097016306594,-0.0592733584344387,0.27354707126908
+1913,81643,449897.952,81743,449797.952,12,19,25.5,0.0231818181818182,4.85811192204976,0.206596885701363,12.437759325568,0.0146015327565146,0.1625,16.25,2,90.0716772540665,0.904900277374191,15.5,8.21082658034105,0,-0.0761633673682809,-0.302395284175873,0.300161222048201
+1914,81643,449797.952,81743,449697.952,13,19,32.5,0.08125,16.0926370706307,0.428200613940051,10,-0.0305602651094523,0.08,8,3,79.3815043696549,0.853678929765886,7,5.63747417926788,0,-0.336255634824435,-0.413368791341782,0.2082082467993
+1915,81643,449697.952,81743,449597.952,14,19,15.25,0.0254166666666667,5.6661701065669,0.184920634920635,17.5700706851936,-0.0669439948587205,0.0475,4.75,2,77.4113871538258,0.818988143723414,4.5,3.00374041105572,0,-0.389488590881228,-0.475212723016739,0.169108592878841
+1916,81643,449597.952,81743,449497.952,15,19,24.5,0.049,9.60766785703592,0.295978835978836,12.2267727624144,-0.0502760995145218,0.115,11.5,2,86.8548459428713,0.869621903520209,10.75,3.12818170630414,0,-0.396291770040989,-0.484816640615463,0.199898298660873
+1917,81643,449497.952,81743,449397.952,16,19,63,0.21,18.4761475796063,0.664572779466396,10.3934466291663,0.00479780736429802,0.2375,23.75,4,89.1725994946916,0.807135969141755,18.25,1.36278537951018,0,-0.414906231686473,-0.523714661598206,0.147990599512199
+1918,81643,449397.952,81743,449297.952,17,19,78,0.78,36.7012462381629,0.78525641025641,NA,-0.00943943730985707,0.1275,12.75,3,81.723859144675,0.815564996871192,6.25,2.31929943608303,0,-0.485558907190959,-0.597941219806671,0.118066836938815
+1919,81643,449297.952,81743,449197.952,18,19,71.5,0.715,36.6957594171501,0.862470862470862,NA,-0.0284995483363673,0,0,0,NA,NA,0,NA,NA,-0.564400777220726,-0.699951767921448,0.127944340703929
+1920,81643,449197.952,81743,449097.952,19,19,29,0.0966666666666667,13.1206095029175,0.727533654181488,21.6935661671952,-0.0356057509233506,0,0,0,NA,NA,0,NA,NA,-0.578638484080633,-0.729441940784454,0.187952076909598
+1921,81643,449097.952,81743,448997.952,20,19,54.25,0.180833333333333,18.7293719058453,0.53226829205166,10,0.0173697742580407,0.26,26,1,94.9412560453587,0.942188177482295,26,0.336538461538462,0,-0.504443861544132,-0.74545830488205,0.261629642347641
+1922,81643,448997.952,81743,448897.952,21,19,72.5,0.3625,20.6688767920151,0.527680652680653,11.1803398874989,0.0370932853602426,0.3875,38.75,2,96.1968780219536,0.805227354099534,38,0.548387096774194,0,-0.360311870928854,-0.823716998100281,0.373206929767241
+1923,81643,448897.952,81743,448797.952,22,19,58.75,0.195833333333333,12.2983447554275,0.333573833573834,10,0.0652910871317727,0.61,61,1,98.5243747403739,0.971884840305893,61,1.04508196721311,0,-0.646349924306075,-1.31594777107239,0.631948944839249
+1924,81643,448797.952,81743,448697.952,23,19,24.75,0.0825,9.6229021272127,0.356087470449173,32.0525770195464,0.00275437083088036,0.2925,29.25,2,92.9239342555249,0.879991999466631,25,1.56900754749265,0,-0.926096074283123,-1.76401793956757,0.551927979539542
+1925,81643,448697.952,81743,448597.952,24,19,20.5,0.041,6.26860074377855,0.20735524256651,24.0384048104053,0.00272218096319193,0.2325,23.25,4,87.4508669178553,0.764530434441348,13.25,3.99007514215285,0,-0.610988155007362,-0.851044774055481,0.300426200355745
+1926,81643,448597.952,81743,448497.952,25,19,23.25,0.0465,11.4397284170489,0.356178175194569,16.3101220645208,0.0481007222365952,0.545,54.5,3,96.6934925383554,0.794294375575164,51,8.44873079247431,0,-0.350175981759094,-0.654645144939423,0.314312641504478
+1927,81643,448497.952,81743,448397.952,26,19,19.25,0.01925,5.01391369230748,0.275867552334944,13.459898450477,0.0138569049303624,0.1625,16.25,2,86.9475552243494,0.767534011359134,10,9.34814177293044,0,-0.19304035945485,-0.471759557723999,0.2925099786234
+1928,81643,448397.952,81743,448297.952,27,19,14.25,0.07125,16.0523768003869,0.470588235294118,11.1803398874989,0.0117702258912615,0.1225,12.25,4,77.5100006992565,0.728666395333062,5,29.0722491205955,0,-0.0825781061430462,-0.255121320486069,0.13791935028
+1929,81643,448297.952,81743,448197.952,28,19,0,NA,NA,NA,NA,-0.0108337303545704,0.13,13,2,86.8439053408564,0.81919152783159,11,65.2188355372502,29.1547584533691,-0.0836030570790172,-0.181043311953545,0.108250200003985
+1930,81643,448197.952,81743,448097.952,29,19,0,NA,NA,NA,NA,-0.0347193069340437,0,0,0,NA,NA,0,NA,NA,-0.172238376922905,-0.269654661417007,0.0958170543067891
+1931,81643,448097.952,81743,447997.952,30,19,0,NA,NA,NA,NA,-0.0386954343978141,0.0025,0.25,1,0,NA,0.25,68.0073547363281,68.0073547363281,-0.235292080789804,-0.293746113777161,0.0666530644480469
+1932,81643,447997.952,81743,447897.952,31,19,0,NA,NA,NA,NA,-0.0371776525431778,0,0,0,NA,NA,0,NA,NA,-0.293362448612849,-0.329328507184982,0.0744337505245652
+1933,81643,447897.952,81743,447797.952,32,19,0,NA,NA,NA,NA,-0.0281806286577557,0,0,0,NA,NA,0,NA,NA,-0.456835594028234,-0.696519434452057,0.177146164965032
+1934,81643,447797.952,81743,447697.952,33,19,43.75,0.21875,25.248548135538,0.790307720655979,10,0.0636380555350661,0.5975,59.75,1,98.4542502383879,0.927744660747287,59.75,1.57349797971079,0,-0.686966468890508,-0.842570841312408,0.193868377928046
+1935,81643,447697.952,81743,447597.952,34,19,12,0.0133333333333333,1.66707576806201,0.104463437796771,12.5577825515902,-0.00114775447271654,0.1125,11.25,2,83.2016953178988,0.836916234247591,7.5,2.23655446370443,0,-0.872485931962729,-0.932553052902222,0.0861363295395727
+1936,81643,447597.952,81743,447497.952,35,19,5,0.025,9.03970066042029,0.323529411764706,11.1803398874989,-0.0251397637954506,0.0025,0.25,1,0,NA,0.25,20.6155281066895,20.6155281066895,-0.920319229364395,-0.970127522945404,0.0436965113912466
+1937,81643,447497.952,81743,447397.952,36,19,17.75,0.0197222222222222,4.20431070151535,0.123544973544974,10.5245955055551,-0.050260817293165,0,0,0,NA,NA,0,NA,NA,-0.997422154992819,-1.04532814025879,0.0578856214020982
+1938,81643,447397.952,81743,447297.952,37,19,52.75,0.0659375,4.83530041298797,0.167130867498515,11.6220259878858,-0.0805901614445611,0,0,0,NA,NA,0,NA,NA,-1.05790371199449,-1.13743305206299,0.0808083266957087
+1939,81643,447297.952,81743,447197.952,38,19,27.5,0.1375,20.7427645322317,0.581792437114776,15,-0.0446183687228859,0,0,0,NA,NA,0,NA,NA,-1.11629166454077,-1.22662556171417,0.117940021997358
+1940,81643,447197.952,81743,447097.952,39,19,12,0.03,8.27972590835891,0.163752913752914,14.0450849718747,0.00489798900495771,0.1175,11.75,2,85.6639681918588,0.815864022662889,10,16.9901395757148,5,-1.17524374524752,-1.238001704216,0.0891753114272849
+1941,81643,447097.952,81743,446997.952,40,19,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.00596660659793997,0,0,0,NA,NA,0,NA,NA,-1.14813232421875,-1.22486937046051,0.0774070942787247
+1942,81643,446997.952,81743,446897.952,41,19,1.5,0.015,5.8857296462896,0.361111111111111,NA,-0.0113434866666648,0,0,0,NA,NA,0,NA,NA,-1.0581062634786,-1.12081980705261,0.0733395133023532
+1943,81643,446897.952,81743,446797.952,42,19,6.75,0.0225,10.3198554369337,0.283831908831909,18.6851709182133,-0.0100758168306311,0,0,0,NA,NA,0,NA,NA,-1.09155268222094,-1.17213094234467,0.0747727123347076
+1944,81643,446797.952,81743,446697.952,43,19,0,NA,NA,NA,NA,0.00116879808705562,0.03,3,2,67.1088255022683,0.636143117040631,2.5,96.4334309895833,82.4621124267578,-1.16725424925486,-1.2292412519455,0.0704317799534535
+1945,81643,446697.952,81743,446597.952,44,19,0.75,0.00375,1.25,0.0833333333333333,41.2310562561766,0.00704913688954548,0.075,7.5,4,71.7071137363772,0.646993932708218,3.75,72.4496635437012,11.1803398132324,-1.20383182168007,-1.29612565040588,0.0937580853350636
+1946,81643,446597.952,81743,446497.952,45,19,20.5,0.0128125,4.56278460879112,0.142446962759463,10.9026699437495,0.0067394368807436,0.1125,11.25,2,84.2027160177388,0.851742031134173,8.75,4.36199781629774,0,-1.25869882851839,-1.38469159603119,0.128186272647009
+1947,81643,446497.952,81743,446397.952,46,19,28.75,0.0159722222222222,3.34779083170565,0.123587369420703,11.0145766229163,-0.015519746559512,0,0,0,NA,NA,0,NA,NA,-1.29515506823858,-1.38511693477631,0.103872516899705
+1948,81643,446397.952,81743,446297.952,47,19,36.75,0.0334090909090909,4.56087464524911,0.158653846153846,10.1073036261363,-0.0478932159153192,0,0,0,NA,NA,0,NA,NA,-1.39216720312834,-1.46576774120331,0.0842356337428067
+1949,81643,446297.952,81743,446197.952,48,19,11.5,0.00958333333333333,2.75958338281047,0.0548835125448029,10.9353479123937,-0.0134268241026389,0,0,0,NA,NA,0,NA,NA,-1.52331161499023,-1.58337533473969,0.0645678370323196
+1950,81643,446197.952,81743,446097.952,49,19,13.5,0.0225,6.24281704004137,0.226964769647696,14.3588913962888,-0.0149762690693206,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-1.50002253800631,-1.58696937561035,0.099904134014994
+1951,81643,446097.952,81743,445997.952,50,19,2,0.005,1.91144603962896,0.0416666666666667,25.7577196246122,-0.0118120718131468,0,0,0,NA,NA,0,NA,NA,-1.24394235014915,-1.40351331233978,0.24822384899554
+1952,81643,445997.952,81743,445897.952,51,19,21.75,0.0310714285714286,5.6483312330569,0.185456885456885,15.2701787930067,0.00727397151782498,0.05,5,3,66.5111507586276,0.728353140916808,2.5,3.66257038116455,0,-0.824950702488422,-1.04842102527618,0.325703188161029
+1953,81643,445897.952,81743,445797.952,52,19,31.25,0.0520833333333333,8.62971330857352,0.358829695400173,19.3844143114676,-0.00863580099816318,0.1575,15.75,4,81.1240632598159,0.784192069058538,7.25,4.88083121890113,0,-0.859220162034035,-1.00239241123199,0.299442699990822
+1954,81643,445797.952,81743,445697.952,53,19,34.5,0.1725,18.1008871791026,0.53030303030303,35,0.0474240959277085,0.53,53,3,95.0765500622607,0.789394103034885,35,18.3151671391613,0,-1.17226890102029,-1.41532719135284,0.242431000735896
+1955,81643,445697.952,81743,445597.952,54,19,28.75,0.2875,28.0912435261348,0.827536231884058,NA,0.0665342435495404,0.6125,61.25,3,94.8258037446616,0.785885335962812,35,20.4660982093033,0,-1.57974753777186,-1.69799828529358,0.193978046487304
+1956,81643,445597.952,81743,445497.952,55,19,31,0.155,18.3571751657008,0.750066436353973,55.9016994374947,0.00454589852859499,0.13,13,4,82.241367491777,0.754617073485729,9.5,1.02406553121713,0,-1.7984451452891,-1.90283632278442,0.131966340503285
+1957,81643,445497.952,81743,445397.952,56,19,35.75,0.089375,15.8239783861372,0.271943873246863,11.4528470752105,0.0187339353631978,0.265,26.5,2,92.176386913229,0.821918296114257,20.25,6.10805534866621,0,-2.05108559131622,-2.20769023895264,0.16728940930413
+1958,81643,445397.952,81743,445297.952,57,19,10.5,0.021,6.43703962725383,0.17218045112782,10.4721359549996,-0.0358233366424065,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,0,0,-2.38378266493479,-2.53616189956665,0.222381704402524
+1959,81643,445297.952,81743,445197.952,58,19,0,NA,NA,NA,NA,-0.0501210297763464,0.0475,4.75,1,81.114133276783,0.855190514978731,4.75,54.0410381116365,38.0788650512695,-2.64748229086399,-2.75506973266602,0.137419328444112
+1960,81643,445197.952,81743,445097.952,59,19,1.25,0.00416666666666667,1.11111111111111,0.0740740740740741,17.4127682432574,0.102003436109517,0.6375,63.75,1,98.6713232517353,0.982686481027269,63.75,34.4519998662612,0,-2.56512184937795,-2.71267104148865,0.227892118476125
+1961,81643,445097.952,81743,444997.952,60,19,14.25,0.0178125,5.71957244670512,0.266774891774892,11.9415934813547,0.0192685554918717,0.1425,14.25,4,80.6718422833071,0.738204319628726,6.25,10.3547634660152,0,-2.29405075311661,-2.47867369651794,0.140563837697549
+1962,81643,444997.952,81743,444897.952,61,19,0.5,0.005,2.5,0.166666666666667,NA,-0.15856259831693,0,0,0,NA,NA,0,NA,NA,-2.11811392505964,-2.27724194526672,0.199894368468174
+1963,81643,444897.952,81743,444797.952,62,19,12.5,0.025,4.49086775894186,0.16,21.7575192407856,-0.0489647189992138,0.03,3,5,42.6119872609418,0.332929047907823,1,6.45495859781901,0,-2.09703349322081,-2.3418300151825,0.310593541569349
+1964,81643,444797.952,81743,444697.952,63,19,77.5,0.19375,11.1343394257708,0.38968484680694,11.25,0.0215392239011953,0.2025,20.25,6,78.5444953221315,0.71264367816092,9.25,1.50044047979661,0,-2.14680597186089,-2.42140293121338,0.323636754999577
+1965,81643,444697.952,81743,444597.952,64,19,30.25,0.075625,14.200098317457,0.443745791245791,16.6556941504209,0.0270304976030457,0.3575,35.75,4,91.8714260571876,0.798021801764339,22.5,7.26717434062824,0,-2.0882545337081,-2.40658354759216,0.281181030275375
+1966,81643,444597.952,81743,444497.952,65,19,38.25,0.19125,25.7231190581043,0.615444214876033,29.1547594742265,0.0334476215656468,0.3175,31.75,3,93.5240522777455,0.854114139828426,29.5,8.25133262093612,0,-1.82923710346222,-2.1463348865509,0.291770567156445
+1967,81643,444497.952,81743,444397.952,66,19,33,0.0825,7.36647838648855,0.294973544973545,25.5901699437495,-0.0158710827499681,0.105,10.5,4,74.9907008009417,0.716736171217248,5.25,10.6417402539934,0,-1.56487286090851,-1.7900642156601,0.239446119058618
+1968,81643,444397.952,81743,444297.952,67,19,22.75,0.0455,6.9688911455815,0.391666666666667,10,-0.0450914063930895,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,17.13323097229,11.1803398132324,-1.44953566789627,-1.77392768859863,0.261008055929994
+1969,81643,444297.952,81743,444197.952,68,19,65.25,0.1305,10.2041183033573,0.389569545332257,10.2360679774998,-0.0519059084700666,0,0,0,NA,NA,0,NA,NA,-1.9906136294206,-2.29868960380554,0.364170151498769
+1970,81643,444197.952,81743,444097.952,69,19,69.5,0.086875,8.97743742273969,0.318501252599735,10,-0.0335006054515725,0.1125,11.25,1,89.5714527894752,0.836916234247591,11.25,2.09204745822483,0,-2.32747028768063,-2.57951831817627,0.225107052954924
+1971,81643,444097.952,81743,443997.952,70,19,54,0.135,10.1382221468755,0.2442074776198,11.920788821557,-0.0302270434350066,0.0175,1.75,1,65.4774238937655,1,1.75,2.85714285714286,0,-2.49506308635076,-2.65772771835327,0.202698429961045
+1972,81643,443997.952,81743,443897.952,71,19,30.25,0.100833333333333,16.8744529141293,0.390817901234568,15.9519257809873,0.00145154652963811,0,0,0,NA,NA,0,NA,NA,-2.55594734847546,-2.75428771972656,0.218602516325949
+1973,81643,443897.952,81743,443797.952,72,19,21.25,0.053125,10.8239925253157,0.416062801932367,20.123774391991,-0.0133263785134295,0.0025,0.25,1,0,NA,0.25,5,5,-2.56733498970668,-2.76539826393127,0.256652977662263
+1974,81643,443797.952,81743,443697.952,73,19,11.75,0.01175,4.03548973613081,0.19265873015873,16.9394377618305,-0.0023892738008999,0.025,2.5,4,45.6098816052137,0.526627218934911,1.5,14.5418199539185,5,-2.46980135142803,-2.7384831905365,0.293638752210976
+1975,81643,443697.952,81743,443597.952,74,19,6.5,0.0065,2.45861710327532,0.103030303030303,17.1957212192135,-0.00724060380740411,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,10.8929222106934,5,-2.34008014202118,-2.58929181098938,0.268640574368676
+1976,81643,443597.952,81743,443497.952,75,19,27,0.09,10.5092116435455,0.360836083608361,19.6837494598444,0.0136934079913044,0.2075,20.75,2,92.656474223752,0.862657996952724,20.25,1.71169961216938,0,-2.27156591415405,-2.45753645896912,0.222386300203616
+1977,81643,443497.952,81743,443397.952,76,19,5.75,0.0071875,2.42581036339107,0.145238095238095,21.8264192576842,-0.0161540281939051,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,13.242450441633,7.07106781005859,-2.31166785955429,-2.4926381111145,0.215426151580172
+1978,81643,443397.952,81743,443297.952,77,19,19.25,0.0275,5.7695787213401,0.318015873015873,14.819809720124,0.000401667923397326,0.0775,7.75,2,83.1405556190056,0.848238482384824,7.25,15.7347970777942,0,-2.43590956926346,-2.57460951805115,0.186724716723187
+1979,81643,443297.952,81743,443197.952,78,19,17,0.034,8.79231376087619,0.310688405797101,18.4679273374327,-0.0192737729436521,0.0025,0.25,1,0,NA,0.25,0,0,-2.58743560314178,-2.69237971305847,0.136586359113174
+1980,81643,443197.952,81743,443097.952,79,19,18.5,0.023125,3.31445528901002,0.162698412698413,12.7950849718747,-0.0206151895587391,0.025,2.5,3,49.6074439197622,0.526627218934911,1.25,16.3300201416016,0,-2.80264979600906,-2.91388344764709,0.151281535797909
+1981,81643,443097.952,81743,442997.952,80,19,8.75,0.0175,5.28517781334637,0.223809523809524,14.2462112512353,0.0529633867308439,0.5375,53.75,1,98.0842701108371,0.983783783783784,53.75,15.7141378092211,0,-3.06014955043793,-3.20682692527771,0.13874610707641
+1982,81643,442997.952,81743,442897.952,81,19,3.5,0.0116666666666667,4.6250606803425,0.261111111111111,44.2883534194222,0.0564766078910907,0.5925,59.25,3,94.8232729204154,0.756263069700453,38.25,25.882748937808,0,-3.22531721989314,-3.3320140838623,0.10685815466974
+1983,81643,442897.952,81743,442797.952,82,19,9,0.09,11.7634556475321,0.777777777777778,NA,0.0339627165812999,0.2725,27.25,2,90.9505329895716,0.853472185880998,21.5,36.2686984560905,0,-3.31301465630531,-3.39267730712891,0.0918712046477592
+1984,81643,442797.952,81743,442697.952,83,19,0,NA,NA,NA,NA,0.0124639419832965,0.11,11,2,86.5484166981592,0.848162769511084,10.25,65.7535582455722,55.2268028259277,-3.31218838691711,-3.36669874191284,0.05740083101302
+1985,81643,442697.952,81743,442597.952,84,19,1.75,0.0025,0,0,33.9571791422555,0.0247472536712667,0.2575,25.75,2,90.7143418876362,0.83983983983984,14,15.0651762693831,5,-3.17884564399719,-3.28036284446716,0.0878472782030431
+1986,81643,442597.952,81743,442497.952,85,19,2,0.005,2.08333333333333,0.138888888888889,33.6888527213477,-0.0322830723162588,0,0,0,NA,NA,0,NA,NA,-3.0953319867452,-3.12605452537537,0.0404850442602197
+1987,81643,442497.952,81743,442397.952,86,19,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,28.4778463372903,0.00515695713358582,0.075,7.5,3,74.4958753322947,0.779371207942636,4.75,27.7456995646159,11.1803398132324,-3.15906941890717,-3.26018714904785,0.0863119454932505
+1988,81643,442397.952,81743,442297.952,87,19,0,NA,NA,NA,NA,-0.0632499134361024,0,0,0,NA,NA,0,NA,NA,-3.29067105054855,-3.35515165328979,0.0889547235500853
+1989,81643,442297.952,81743,442197.952,88,19,0,NA,NA,NA,NA,0.0122916569341032,0.4125,41.25,1,97.0684321667208,0.944008958566629,41.25,140.626898100882,115,-3.39572082459927,-3.43171167373657,0.0484773184658954
+1990,81643,442197.952,81743,442097.952,89,19,0,NA,NA,NA,NA,0.0105691451015809,0.115,11.5,1,89.742951983695,0.898594813849051,11.5,179.583660623302,159.138305664062,-3.39498563607534,-3.42980575561523,0.0674927371115961
+1991,81643,442097.952,81743,441997.952,90,19,0,NA,NA,NA,NA,0.00343871603461594,0,0,0,NA,NA,0,NA,NA,-3.25315370162328,-3.33549928665161,0.133125835659015
+1992,81643,441997.952,81743,441897.952,91,19,0,NA,NA,NA,NA,0.0461158863733908,0.3475,34.75,1,96.3348533717898,0.963797628744683,34.75,51.7711527707765,25.4950981140137,-3.04019713401794,-3.12897419929504,0.10879386286929
+1993,81643,441897.952,81743,441797.952,92,19,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,-0.00232152638653133,0.2725,27.25,1,95.1807759450405,0.951157395293666,27.25,27.9394102184051,10,-2.88437310854594,-2.97642111778259,0.108030812457037
+1994,81643,441797.952,81743,441697.952,93,19,0,NA,NA,NA,NA,-0.140421474613249,0,0,0,NA,NA,0,NA,NA,-2.80827124416828,-2.89902949333191,0.0764424878114954
+1995,81643,441697.952,81743,441597.952,94,19,0,NA,NA,NA,NA,-0.072818283746019,0,0,0,NA,NA,0,NA,NA,-2.79957320292791,-2.87009072303772,0.0794072932439998
+1996,81643,441597.952,81743,441497.952,95,19,0,NA,NA,NA,NA,-0.10072609348892,0,0,0,NA,NA,0,NA,NA,-2.82344183325768,-2.98445248603821,0.160149412869438
+1997,81643,441497.952,81743,441397.952,96,19,0.25,0.0025,0,0,NA,-0.0243035351569415,0,0,0,NA,NA,0,NA,NA,-3.05909319718679,-3.13056302070618,0.149880777201366
+1998,81643,441397.952,81743,441297.952,97,19,2,0.00666666666666667,2.5,0.0925925925925926,40.3713743647599,0.0126273572721402,0.1,10,1,88.6195912622717,0.950248756218905,10,14.7884673118591,0,-3.19707295298576,-3.27701544761658,0.0912219352802383
+1999,81643,441297.952,81743,441197.952,98,19,1,0.00333333333333333,0.833333333333333,0.0555555555555556,22.2420512747135,-0.0108603327080823,0,0,0,NA,NA,0,NA,NA,-3.08603145678838,-3.23311257362366,0.166547192991648
+2000,81643,441197.952,81743,441097.952,99,19,0,NA,NA,NA,NA,0.0144040352487355,0.1725,17.25,1,92.5909628330769,0.970038201293351,17.25,131.673793626868,114.236595153809,-2.8202358186245,-3.05320692062378,0.189385040078873
+2001,81743,451097.952,81843,450997.952,0,20,54.25,0.0904166666666667,6.57472224562553,0.232598978288633,15.2559464911377,0.0827563405788169,0.8175,81.75,2,98.5586335062942,0.893430430052619,80.5,3.37304280365644,0,2.57512617111206,2.08246254920959,0.649468194031315
+2002,81743,450997.952,81843,450897.952,1,20,51.5,0.171666666666667,14.0275630329897,0.383168157279832,10.3934466291663,0.037640619607846,0.3125,31.25,5,88.563567578212,0.79495394473368,20,1.85941125488281,0,1.72612927357356,1.21322965621948,0.464698274088452
+2003,81743,450897.952,81843,450797.952,2,20,7.75,0.00704545454545455,2.9634137142765,0.111742424242424,15.80754485442,0.00530024870749912,0.095,9.5,3,79.1721543791512,0.824607559414189,6.75,8.63572632639032,0,0.889104684193929,0.691015899181366,0.456714690444157
+2004,81743,450797.952,81843,450697.952,3,20,12.5,0.0138888888888889,6.02410786521011,0.248971193415638,15.7122070275416,0.00287172720003582,0.055,5.5,2,75.0436319559662,0.844382197323374,4.75,8.9759200703014,5,0.567025288939476,0.52410089969635,0.11224230102584
+2005,81743,450697.952,81843,450597.952,4,20,7,0.0175,3.97055846949454,0.254699248120301,32.5278386549112,-0.00873089336936573,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,23.8920356526094,15.8113880157471,0.608820259571075,0.55352920293808,0.10237096592602
+2006,81743,450597.952,81843,450497.952,5,20,50.25,0.25125,22.5951384658398,0.705597643097643,15,0.0107377879900923,0.1375,13.75,3,85.7760046172056,0.731502669717773,11.25,3.44034243496982,0,0.752236892779668,0.637587666511536,0.205902899041108
+2007,81743,450497.952,81843,450397.952,6,20,25.75,0.0234090909090909,6.07202243674335,0.302468625650444,12.2473963227269,0.0268105834183189,0.1275,12.75,7,70.7859241567578,0.631129993742384,4.25,5.63185224346086,0,0.662185029851066,0.466140598058701,0.289390394258491
+2008,81743,450397.952,81843,450297.952,7,20,39.75,0.06625,11.9872153937236,0.256066217732884,12.349276591384,-0.0140911102683094,0.04,4,2,68.3743940518637,0.739583333333333,2.75,3.58709645271301,0,0.457259719570478,0.384132236242294,0.155239012729913
+2009,81743,450297.952,81843,450197.952,8,20,14.25,0.0095,4.25645737758246,0.146388888888889,12.7785714494754,0.00479168106641737,0.085,8.5,8,56.3444612878353,0.531615925058548,2,12.300435739405,0,0.357408377859328,0.264325350522995,0.103508938045861
+2010,81743,450197.952,81843,450097.952,9,20,10.5,0.015,2.45869108456898,0.106122448979592,14.0772885232138,0.00745453381554398,0.035,3.5,4,56.2106261286755,0.481865284974093,2,7.67616871425084,0,0.381779707140393,0.255520194768906,0.207618998277217
+2011,81743,450097.952,81843,449997.952,10,20,40.75,0.0679166666666667,8.14687769460132,0.273952173461977,12.761423749154,0.0335071392007376,0.2975,29.75,5,85.9317085493403,0.696849874785818,10.5,2.16595699406472,0,0.549284048378468,0.324984669685364,0.275723509187854
+2012,81743,449997.952,81843,449897.952,11,20,13.5,0.01125,2.87091166570114,0.216944444444444,14.5833333333333,0.00224999031129983,0.02,2,4,37.8666602454306,0.489795918367347,1.25,2.86030697822571,0,0.733898758888245,0.550969541072845,0.350473496879447
+2013,81743,449897.952,81843,449797.952,12,20,19.75,0.0164583333333333,4.24235763981749,0.248070987654321,14.6173267264982,0.0218372329030444,0.1675,16.75,5,84.7335234195297,0.74333307666641,12.75,7.60249795486678,0,0.727344003816446,0.225898295640945,0.626923968017829
+2014,81743,449797.952,81843,449697.952,13,20,13.75,0.0125,4.2982079957692,0.279292929292929,16.6711197573369,0.0413825389612066,0.3825,38.25,4,89.0961922193712,0.804054346103419,17.5,8.47223908916797,0,0.535430106023947,0.04359070956707,0.858944213976824
+2015,81743,449697.952,81843,449597.952,14,20,38.25,0.19125,20.5552092983824,0.655858395989975,25,-0.0128129957286365,0.04,4,3,66.0246528150969,0.522569444444444,2.75,7.48463892936707,0,0.355992997065187,-0.206313595175743,0.928308921451716
+2016,81743,449597.952,81843,449497.952,15,20,44,0.11,13.7396661915917,0.493890156637368,10.2950849718747,-0.0281662643226446,0.0675,6.75,1,85.0052537126447,0.975060789326018,6.75,3.00789642333984,0,0.177478466596868,-0.301913648843765,0.737611494047246
+2017,81743,449497.952,81843,449397.952,16,20,32,0.16,22.1347984769572,0.653336658906995,25,-0.0778353923516261,0,0,0,NA,NA,0,NA,NA,-0.364648100609581,-0.573886215686798,0.351403750636274
+2018,81743,449397.952,81843,449297.952,17,20,70.75,0.7075,33.9802617536036,0.850412249705536,NA,-0.101015619859099,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,0.526315789473684,0,-0.708222303125593,-0.810608506202698,0.158312906472986
+2019,81743,449297.952,81843,449197.952,18,20,61.5,0.3075,22.6476594004023,0.525297619047619,10,0.00144911797076929,0.32,32,1,95.959121300177,0.867457712698813,32,1.484375,0,-0.83315542836984,-0.98114150762558,0.21226239172617
+2020,81743,449197.952,81843,449097.952,19,20,48,0.24,26.7167168618292,0.704507857733664,11.1803398874989,0.0181225508014177,0.26,26,1,94.9412560453587,0.920508744038156,26,0.673076923076923,0,-0.948672592639923,-1.13407182693481,0.387553907105583
+2021,81743,449097.952,81843,448997.952,20,20,45,0.225,23.6217598050355,0.760060244487337,11.1803398874989,0.0130275867232876,0.2325,23.25,1,94.3478768975745,0.905812173776539,23.25,0,0,-1.16410811742147,-2.66071701049805,1.42037562443524
+2022,81743,448997.952,81843,448897.952,21,20,17.25,0.1725,16.9422943934917,0.816425120772947,NA,0.00190046326544689,0.17,17,2,87.6481131742195,0.858256555634302,11.75,4.99176771500531,0,-2.26694060862064,-4.43294954299927,2.32516136726827
+2023,81743,448897.952,81843,448797.952,22,20,20,0.1,12.9408888377753,0.574444444444444,10,0.0318446505814069,0.4675,46.75,1,97.5655534302407,0.951151998697387,46.75,6.0978189050195,0,-1.67889002958934,-2.4364857673645,0.907194652351765
+2024,81743,448797.952,81843,448697.952,23,20,39.25,0.0654166666666667,10.77834984226,0.385416666666667,10.1967233145832,0.0345005133577797,0.3575,35.75,5,89.3859891645478,0.73267591409986,20.5,3.55385386860454,0,-1.00511981546879,-1.51729333400726,0.461791357373625
+2025,81743,448697.952,81843,448597.952,24,20,50.5,0.0561111111111111,5.07917078557392,0.170071903405237,12.060113295833,0.0430136834681616,0.3825,38.25,3,95.6161601765469,0.804054346103419,37,2.91984676535613,0,-0.7020476659139,-0.800439953804016,0.110075118370324
+2026,81743,448597.952,81843,448497.952,25,20,8.75,0.0125,3.60111310390923,0.183531746031746,16.3981552351701,0.00825218143658276,0.1125,11.25,1,89.5714527894752,0.866567828020756,11.25,7.36110064188639,0,-0.697717174887657,-0.739420413970947,0.0915676212004567
+2027,81743,448497.952,81843,448397.952,26,20,4.5,0.00642857142857143,2.59593849433354,0.174603174603175,14.8372973330651,0.00251069992431439,0.0775,7.75,3,74.3711626900813,0.739837398373984,5,13.7207723432972,0,-0.601110478242238,-0.722813010215759,0.202094946169365
+2028,81743,448397.952,81843,448297.952,27,20,24.75,0.0825,11.1269030364767,0.393162393162393,26.5874739841323,0.00776323363131269,0.11,11,3,86.5913658532716,0.817795323413301,10.5,1.3155103596774,0,-0.437196813523769,-0.61555415391922,0.254116283484767
+2029,81743,448297.952,81843,448197.952,28,20,24.25,0.0808333333333333,16.8754447353059,0.407387057387057,13.5385093760294,-0.0247108943183412,0.0575,5.75,3,67.3963548386756,0.675803124078986,2.75,0.959611643915591,0,-0.385495768653022,-0.510620713233948,0.232731778167667
+2030,81743,448197.952,81843,448097.952,29,20,6.5,0.065,12.0220882551346,0.692307692307692,NA,-0.0355721392324449,0.05,5,1,81.7256002368443,0.830220713073005,5,0.75,0,-0.401756765941779,-0.505452036857605,0.171437181953098
+2031,81743,448097.952,81843,447997.952,30,20,0,NA,NA,NA,NA,-0.0421967841728292,0.005,0.5,1,30.8308651382582,1,0.5,115.585647583008,114.017547607422,-0.374730053875181,-0.447751462459564,0.106022499402676
+2032,81743,447997.952,81843,447897.952,31,20,0,NA,NA,NA,NA,-0.0300596229933581,0,0,0,NA,NA,0,NA,NA,-0.351765837934282,-0.395372778177261,0.0674209694977619
+2033,81743,447897.952,81843,447797.952,32,20,13.5,0.135,24.6493912705176,0.675925925925926,NA,0.0268214882174289,0.26,26,1,94.9412560453587,0.927735221852869,26,4.01892313590417,0,-0.426451312998931,-0.529488325119019,0.101738719662234
+2034,81743,447797.952,81843,447697.952,33,20,34,0.113333333333333,10.7048051927421,0.492134706990141,18.3333333333333,0.00264879619968269,0.18,18,2,88.3454186563604,0.836758210101786,12.25,2.65680419074164,0,-0.652089337507884,-0.714955508708954,0.124888926231235
+2035,81743,447697.952,81843,447597.952,34,20,12.75,0.0182142857142857,2.17670584156009,0.106878306878307,19.0413411806562,-0.00778247495482901,0.11,11,2,82.8209772257252,0.848162769511084,5.5,2.55439871007746,0,-0.802943676710129,-0.87878555059433,0.0826446297740599
+2036,81743,447597.952,81843,447497.952,35,20,0.25,0.0025,0,0,NA,-0.00698333441344403,0,0,0,NA,NA,0,NA,NA,-0.881734470526377,-0.902446627616882,0.0401966334396239
+2037,81743,447497.952,81843,447397.952,36,20,3.75,0.00625,2.55207869441597,0.0703703703703704,11.1803398874989,-0.0159056277575291,0,0,0,NA,NA,0,NA,NA,-0.970098003745079,-1.04840445518494,0.0784056598665484
+2038,81743,447397.952,81843,447297.952,37,20,9.25,0.00616666666666667,2.23357285051967,0.0963624338624339,11.7579028757109,-0.0192074140094246,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,23.5925114949544,10,-1.13555841975742,-1.18950200080872,0.0889797101901267
+2039,81743,447297.952,81843,447197.952,38,20,27,0.0245454545454545,6.04590731597627,0.214273572217806,12.6312394942524,-0.0455239122202056,0.02,2,1,68.0470115164975,0.795918367346939,2,1.875,0,-1.24196481704712,-1.26999998092651,0.0458425022462733
+2040,81743,447197.952,81843,447097.952,39,20,11,0.00916666666666667,3.83083497501842,0.0995866402116402,15.1350757414138,-0.00700771055817313,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,3.18181818181818,0,-1.26223776075575,-1.26999998092651,0.0196887248591944
+2041,81743,447097.952,81843,446997.952,40,20,13.25,0.01325,5.17303949179262,0.0947916666666667,10.8262379212493,-0.00629254540513841,0,0,0,NA,NA,0,NA,NA,-1.2154198884964,-1.24691295623779,0.045076566443941
+2042,81743,446997.952,81843,446897.952,41,20,10.75,0.0215,8.26888104649059,0.198601398601399,11.605551275464,-0.0475759929884953,0,0,0,NA,NA,0,NA,NA,-1.16575835810767,-1.1996214389801,0.0577319387526901
+2043,81743,446897.952,81843,446797.952,42,20,0,NA,NA,NA,NA,-0.0907316938544682,0,0,0,NA,NA,0,NA,NA,-1.17569730679194,-1.19299757480621,0.0380331411209758
+2044,81743,446797.952,81843,446697.952,43,20,0,NA,NA,NA,NA,0.0114642759354319,0.0475,4.75,2,71.0756591379485,0.710381029957462,3,88.4495076631245,46.0977210998535,-1.21218372715844,-1.23616361618042,0.0344659801051958
+2045,81743,446697.952,81843,446597.952,44,20,9.5,0.0095,2.72555481688105,0.0413793103448276,11.6434447288332,0.0213360323055531,0.2275,22.75,2,93.6611518183569,0.832194654201127,22.5,30.911203447279,7.07106781005859,-1.29953922165765,-1.34949696063995,0.0774821208935431
+2046,81743,446597.952,81843,446497.952,45,20,15.75,0.0175,5.02154744271497,0.196662925551814,10.5245955055551,-0.00192790157065247,0,0,0,NA,NA,0,NA,NA,-1.4169736802578,-1.4545521736145,0.0573028313876065
+2047,81743,446497.952,81843,446397.952,46,20,22.5,0.0225,6.09708743995573,0.237113095238095,10.7082039324994,-0.00424474591194667,0,0,0,NA,NA,0,NA,NA,-1.43523565928141,-1.45520997047424,0.0449585405970326
+2048,81743,446397.952,81843,446297.952,47,20,20.25,0.0405,9.31635469605218,0.291791044776119,10.2360679774998,-0.00769584274759836,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-1.4268581867218,-1.44271373748779,0.0343946343587447
+2049,81743,446297.952,81843,446197.952,48,20,27.5,0.0196428571428571,2.537060720011,0.079237071172555,10,-0.00105456315608535,0.0775,7.75,2,78.4948604320197,0.826558265582656,4.25,0.645161290322581,0,-1.44982381661733,-1.48173522949219,0.050074693662255
+2050,81743,446197.952,81843,446097.952,49,20,20.5,0.0341666666666667,7.49925612022509,0.177146464646465,10.1967233145832,-0.0336665174847258,0,0,0,NA,NA,0,NA,NA,-1.39066823323568,-1.47263717651367,0.105600322531133
+2051,81743,446097.952,81843,445997.952,50,20,9.5,0.011875,5.0043233587091,0.201327614379085,17.3479973117161,0.00807440451034381,0.1775,17.75,2,91.1245236733251,0.931914893617021,17.25,11.9486088013985,0,-1.16119432449341,-1.27244019508362,0.169184597587585
+2052,81743,445997.952,81843,445897.952,51,20,11.5,0.014375,4.50167077184243,0.238425925925926,14.5994835019484,-0.0163413368970214,0.01,1,1,52.6315789473684,0.747474747474748,1,36.6033697128296,31.6227760314941,-0.869120637575785,-0.998044312000275,0.148413934313338
+2053,81743,445897.952,81843,445797.952,52,20,20.75,0.0109210526315789,3.37362882499326,0.217912569886254,11.3438288342546,-0.00239227793037571,0.12,12,5,77.1535888638826,0.667405764966741,6.75,6.39794353644053,0,-0.921025852362315,-1.0221301317215,0.200491861998696
+2054,81743,445797.952,81843,445697.952,53,20,70,0.14,10.4574294753648,0.44312380952381,11.1803398874989,-0.0483661525812408,0.155,15.5,3,84.2078116682649,0.835634451019066,10.75,2.4055183164535,0,-1.27559166153272,-1.47410297393799,0.220255520553145
+2055,81743,445697.952,81843,445597.952,54,20,33.5,0.08375,12.6139540237217,0.502802558293213,14.1688593638657,0.0334714832891768,0.4525,45.25,1,97.4390089868719,0.765555782730185,45.25,5.94855937641629,0,-1.59599098894331,-1.74530982971191,0.196547582621026
+2056,81743,445597.952,81843,445497.952,55,20,63.5,0.635,36.3061403579124,0.791994750656168,NA,0.0100171298178611,0.32,32,2,92.5784050200126,0.842211562736683,22,0.5078125,0,-1.8807975186242,-1.98086369037628,0.169302768892123
+2057,81743,445497.952,81843,445397.952,56,20,30.75,0.1025,9.92699356785196,0.258034894398531,23.8260502349783,0.010827092997024,0.2875,28.75,2,94.1461945449135,0.878542510121457,27.75,0.53974841573964,0,-2.14680808782578,-2.29397559165955,0.177689682862419
+2058,81743,445397.952,81843,445297.952,57,20,37,0.123333333333333,16.7669400800389,0.570837554880108,23.8260502349783,0.0277340572354296,0.3125,31.25,2,92.2775904436142,0.826992390869043,20.5,0.689705627441406,0,-2.46869100464715,-2.59331178665161,0.199885564748328
+2059,81743,445297.952,81843,445197.952,58,20,38.25,0.095625,14.8814048119374,0.305460154623848,10.2950849718747,0.0112110185137499,0.2775,27.75,2,92.0573953365227,0.847750865051903,20.5,6.75760832777968,0,-2.67753992478053,-2.74052023887634,0.103500266399298
+2060,81743,445197.952,81843,445097.952,59,20,16.25,0.08125,18.0839887666099,0.491582491582492,10,0.0223760235458326,0.2125,21.25,1,93.8457653779655,0.983180910333228,21.25,40.8881648344152,15.8113880157471,-2.54350397321913,-2.68623948097229,0.234695878675359
+2061,81743,445097.952,81843,444997.952,60,20,23.5,0.0335714285714286,6.45963628895519,0.298620869112672,13.6269194503311,-0.0526782174601067,0.0225,2.25,2,55.8584010807395,0.744245524296675,1.5,1.66666666666667,0,-2.19836672147115,-2.45279622077942,0.2999507284629
+2062,81743,444997.952,81843,444897.952,61,20,15.25,0.0254166666666667,7.68894679153609,0.370127087872186,10.8333333333333,-0.0440538109657246,0.0175,1.75,2,56.5210029300127,0.491094147582697,1.5,6.01015254429409,0,-1.86866353617774,-2.00727772712708,0.189167881454823
+2063,81743,444897.952,81843,444797.952,62,20,26,0.0325,7.44265954113833,0.31875,13.4200849718747,0.00599776807734088,0.12,12,5,75.5334832057581,0.695121951219512,5.25,6.12227845191956,0,-1.71114758650462,-1.74694609642029,0.11500084437015
+2064,81743,444797.952,81843,444697.952,63,20,37,0.185,25.7825525543366,0.62012012012012,26.9258240356725,0.0158323870248387,0.24,24,3,89.7427536029249,0.778151774785802,18.5,6.6021835009257,0,-1.78461568885379,-1.8990261554718,0.137875106649903
+2065,81743,444697.952,81843,444597.952,64,20,64,0.64,38.7745239973124,0.809895833333333,NA,0.00767826717259595,0.265,26.5,4,87.0668434001251,0.800548491647968,11.75,4.81034573968851,0,-1.94365918636322,-2.01256394386292,0.0905095315621515
+2066,81743,444597.952,81843,444497.952,65,20,69.75,0.2325,15.117299842963,0.364977614977615,11.937129433614,-0.0102146763070778,0.1425,14.25,3,86.3069155295779,0.869102159814363,12.75,4.10828697472288,0,-1.98873154322306,-2.07782578468323,0.142814634309222
+2067,81743,444497.952,81843,444397.952,66,20,41,0.082,6.41193652646824,0.186582809224319,15.0710678118655,-0.00641671823697379,0.0825,8.25,3,82.4103154051693,0.858714300131194,7.75,2.33548690333511,0,-1.91186213493347,-2.07397246360779,0.334678073198952
+2068,81743,444397.952,81843,444297.952,67,20,70,0.175,10.8735673268078,0.375102124183006,14.7886898685566,-0.0752884217479004,0,0,0,NA,NA,0,NA,NA,-1.70834156870842,-2.03491353988647,0.509440286008566
+2069,81743,444297.952,81843,444197.952,68,20,96.5,0.965,38.1408473245372,0.914075993091537,NA,-0.0826720846630633,0.0025,0.25,1,0,NA,0.25,0,0,-2.18169678582086,-2.34874224662781,0.206949377051351
+2070,81743,444197.952,81843,444097.952,69,20,33.75,0.05625,8.41041051272079,0.379463939477265,13.3333333333333,-0.0215386139805059,0.1125,11.25,3,83.8774804532872,0.807264640474425,9.75,3.32216610378689,0,-2.6028874317805,-2.78492665290833,0.235242123650386
+2071,81743,444097.952,81843,443997.952,70,20,2.25,0.00375,0.972222222222222,0.0648148148148148,12.060113295833,-0.0373155647331123,0,0,0,NA,NA,0,NA,NA,-2.79267650180393,-2.84220337867737,0.106890182257932
+2072,81743,443997.952,81843,443897.952,71,20,50,0.25,18.8352598840609,0.589810017271157,35,-0.00735441481439921,0.135,13.5,1,90.9386564749522,0.937845733109578,13.5,15.9588096759937,5,-2.78097230195999,-2.83278703689575,0.0686873988366966
+2073,81743,443897.952,81843,443797.952,72,20,45.25,0.4525,40.3540346880243,0.674033149171271,NA,-0.000383821563150377,0.0575,5.75,3,74.9553911323359,0.616858237547893,4.5,2.53266989666483,0,-2.73608011669583,-2.79758763313293,0.070406478735665
+2074,81743,443797.952,81843,443697.952,73,20,48,0.24,26.8564387658498,0.668790849673203,15,-0.0251652548927632,0.0325,3.25,2,66.0668178142144,0.770312948607522,2.5,0.384615384615385,0,-2.77437792221705,-2.80313539505005,0.0843581243432035
+2075,81743,443697.952,81843,443597.952,74,20,55,0.1375,14.9370702328758,0.44292573544027,10,-0.0207811085969479,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,6.66666666666667,5,-2.70032866795858,-2.77500700950623,0.130539683316199
+2076,81743,443597.952,81843,443497.952,75,20,33.75,0.0482142857142857,6.51227020611538,0.207824132602894,10.8829056982141,-0.0125083448447913,0.005,0.5,2,0,1,0.25,2.5,0,-2.64565225442251,-2.7498152256012,0.187361180741554
+2077,81743,443497.952,81843,443397.952,76,20,69,0.23,11.7297668031992,0.288929440389294,15,-0.0371363270950678,0,0,0,NA,NA,0,NA,NA,-2.63517981105381,-2.73827481269836,0.178762520964736
+2078,81743,443397.952,81843,443297.952,77,20,14.5,0.0483333333333333,7.69476158467583,0.362139917695473,36.1530100215902,0.0126018975298894,0.19,19,2,89.717362192717,0.861802100608071,16.75,23.4580907068754,0,-2.68422831429376,-2.77302813529968,0.135125016943857
+2079,81743,443297.952,81843,443197.952,78,20,0.75,0.00375,1.25,0.0833333333333333,90.1387818865997,-0.048400938472405,0.005,0.5,1,30.8308651382582,1,0.5,34.0355663299561,32.0156211853027,-2.71525218089422,-2.77614164352417,0.091117361629056
+2080,81743,443197.952,81843,443097.952,79,20,28,0.0466666666666667,8.05013174811355,0.364489638447972,10.1967233145832,0.0207976656203391,0.29,29,3,93.2896299307741,0.832327297116029,26.75,5.44969289056186,0,-2.84170815679762,-2.9069836139679,0.112935751951941
+2081,81743,443097.952,81843,442997.952,80,20,13.25,0.0147222222222222,4.62207496529214,0.223148148148148,10.9080075639822,0.018193287826216,0.31,31,1,95.8102472617487,0.993558776167472,31,16.1551426764457,0,-2.99981399377187,-3.08045887947083,0.0777219506771232
+2082,81743,442997.952,81843,442897.952,81,20,25.75,0.0429166666666667,6.50873840130437,0.321669537754809,11.9281293399695,0.0373451933685828,0.4525,45.25,2,94.54662848915,0.820077693723165,29,14.9407368443947,0,-3.08146712515089,-3.14406967163086,0.0771876986532986
+2083,81743,442897.952,81843,442797.952,82,20,9.25,0.04625,8.72698117422064,0.335648148148148,96.1769203083567,0.0194506409723544,0.035,3.5,3,60.018491879345,0.689119170984456,1.75,3.00507627214704,0,-3.18087685108185,-3.26555800437927,0.0983885989637059
+2084,81743,442797.952,81843,442697.952,83,20,0.5,0.005,2.5,0.166666666666667,NA,0.00509575718049746,0.195,19.5,2,89.917248832956,0.864974345125574,17.25,54.8433648622953,22.3606796264648,-3.27649195988973,-3.30889511108398,0.0747621246862187
+2085,81743,442697.952,81843,442597.952,84,20,2,0.004,1.5,0.1,23.7725323917512,0.0552219729420926,0.54,54,2,97.227636164641,0.929699329439758,53,32.4842838622906,0,-3.22982947031657,-3.29811334609985,0.0924565380183229
+2086,81743,442597.952,81843,442497.952,85,20,3.25,0.008125,3.68239807002797,0.173611111111111,17.0124232576535,-0.0176479855979414,0,0,0,NA,NA,0,NA,NA,-3.10667252540588,-3.14925336837769,0.0577683733883413
+2087,81743,442497.952,81843,442397.952,86,20,0.5,0.0025,0,0,51.478150704935,0.0660824551312544,0.5825,58.25,1,98.3671391359956,0.900887879413587,58.25,26.9807883987099,0,-3.10148630539576,-3.14424562454224,0.0442782570790629
+2088,81743,442397.952,81843,442297.952,87,20,0,NA,NA,NA,NA,-0.0647834580473864,0.185,18.5,2,91.2906729523447,0.886739027843322,17.75,51.2421105359052,35,-3.2193730407291,-3.2754921913147,0.0804456511951003
+2089,81743,442297.952,81843,442197.952,88,20,0,NA,NA,NA,NA,0.00713440695486497,0.345,34.5,1,96.3025628341184,0.939415969950321,34.5,140.356504080952,101.118743896484,-3.32745279868444,-3.38790130615234,0.073360226460988
+2090,81743,442197.952,81843,442097.952,89,20,0,NA,NA,NA,NA,0.0207908358076929,0.18,18,2,89.5591308812818,0.855963126560399,15.75,122.609522077772,81.3941040039062,-3.33642384741041,-3.38928747177124,0.077227884433833
+2091,81743,442097.952,81843,441997.952,90,20,0,NA,NA,NA,NA,0.0150933239097208,0.125,12.5,1,90.3766993434411,0.946218487394958,12.5,101.209354858398,90.1387786865234,-3.2120373249054,-3.30089235305786,0.127094805607774
+2092,81743,441997.952,81843,441897.952,91,20,0,NA,NA,NA,NA,0.0389305940658596,0.4,40,1,96.9413745785043,0.988662131519274,40,41.9572063207626,15,-2.97665192683538,-3.09659147262573,0.137338630997374
+2093,81743,441897.952,81843,441797.952,92,20,0.5,0.0025,0,0,46.0977222864644,-0.0688676666852552,0.09,9,1,87.719298245614,0.89010989010989,9,16.1650740305583,5,-2.76099565294054,-2.8281090259552,0.0976308075648372
+2094,81743,441797.952,81843,441697.952,93,20,0,NA,NA,NA,NA,-0.169193433821201,0,0,0,NA,NA,0,NA,NA,-2.70526585976283,-2.74804377555847,0.0559686605986873
+2095,81743,441697.952,81843,441597.952,94,20,0,NA,NA,NA,NA,-0.0587070607463829,0,0,0,NA,NA,0,NA,NA,-2.84584252039591,-2.90682125091553,0.102001431523626
+2096,81743,441597.952,81843,441497.952,95,20,0.25,0.0025,0,0,NA,-0.0629124850087101,0,0,0,NA,NA,0,NA,NA,-2.98808467388153,-3.03718209266663,0.075339795520591
+2097,81743,441497.952,81843,441397.952,96,20,0,NA,NA,NA,NA,-0.0244005535586484,0,0,0,NA,NA,0,NA,NA,-3.0758372147878,-3.10048460960388,0.052395432551746
+2098,81743,441397.952,81843,441297.952,97,20,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.00561921426728077,0.01,1,1,52.6315789473684,0.747474747474748,1,24.5091123580933,20.6155281066895,-3.11724585294724,-3.1502046585083,0.0520105072576159
+2099,81743,441297.952,81843,441197.952,98,20,0,NA,NA,NA,NA,-0.00381039624691766,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,73.9226014879015,40.3112869262695,-3.041851705975,-3.13803172111511,0.151218782451784
+2100,81743,441197.952,81843,441097.952,99,20,0,NA,NA,NA,NA,-0.000217477762162162,0.165,16.5,2,91.1303623944212,0.937516271804218,16.25,59.3706441359086,31.6227760314941,-2.92937688032786,-3.05591344833374,0.214785112629348
+2101,81843,451097.952,81943,450997.952,0,21,65.5,0.218333333333333,11.6628873085274,0.265811965811966,10.3934466291663,0.0554177106648967,0.585,58.5,1,98.3818899951514,0.911775247442861,58.5,1.19062712253668,0,2.63213429848353,1.07822597026825,0.904680080737425
+2102,81843,450997.952,81943,450897.952,1,21,23.5,0.0235,5.09960994905813,0.183891774891775,13.4175798811353,0.0327620078546283,0.36,36,2,93.9547964434453,0.857954545454545,29.75,3.16519011391534,0,2.34806630015373,1.38575637340546,0.901198775740193
+2103,81843,450897.952,81943,450797.952,2,21,5.5,0.011,3.47267938268126,0.19949494949495,22.9705627484771,0.0221707488805168,0.1875,18.75,5,80.5646232763755,0.757575757575758,7.5,10.4110859680176,0,1.35223879913489,0.787267625331879,0.801115427802416
+2104,81843,450797.952,81943,450697.952,3,21,11.75,0.01175,3.10032824726738,0.239550264550265,16.9043077469784,0.00497835777178352,0.075,7.5,4,70.6488065463538,0.713182570325428,4.75,4.65956954956055,0,0.939401131123304,0.650901257991791,0.419570243242629
+2105,81843,450697.952,81943,450597.952,4,21,6.75,0.00613636363636364,2.07361652931406,0.158080808080808,13.3523642980579,-0.000770151852163963,0.025,2.5,2,65.3357531760436,0.684418145956607,2.25,7.88634948730469,0,0.809390977025032,0.613584339618683,0.253932769297776
+2106,81843,450597.952,81943,450497.952,5,21,18.25,0.0304166666666667,7.20462602482458,0.384952585435677,18.7571806468264,0.0136105785151085,0.2025,20.25,3,90.3438196226249,0.808429118773946,18,5.93451179692775,0,0.460427453741431,0.125060677528381,0.262162172553218
+2107,81843,450497.952,81943,450397.952,6,21,13.25,0.0147222222222222,4.98821100088268,0.182098765432099,17.4242070178868,-0.002058508284033,0.0275,2.75,1,73.5251216233933,0.725792630676949,2.75,6.06812650507147,0,0.166669361914198,-0.0724185481667519,0.272566795459921
+2108,81843,450397.952,81943,450297.952,7,21,19.5,0.0139285714285714,3.82103863281519,0.166367759224902,13.2993087659852,0.011085387207786,0.125,12.5,2,84.9723359881498,0.825210084033613,10.25,3.27213493347168,0,0.129740004282212,-0.0926181897521019,0.242278922037404
+2109,81843,450297.952,81943,450197.952,8,21,32.25,0.05375,4.75044341413089,0.20136975818794,15.9836165729158,-0.0108492574503543,0.05,5,3,69.9885756206132,0.728353140916808,3.75,3.41024656295776,0,0.31104557774961,0.0681473985314369,0.220461673776844
+2110,81843,450197.952,81943,450097.952,9,21,20.75,0.0259375,5.43067612195261,0.217785045219638,15.8504248593737,-0.00247462939630168,0.005,0.5,1,30.8308651382582,1,0.5,0,0,0.651669641335805,0.495564103126526,0.301872370633423
+2111,81843,450097.952,81943,449997.952,10,21,31.75,0.0396875,8.02163208178014,0.379445692483241,10.8852549156242,0.021033507121756,0.1375,13.75,7,71.156492306302,0.548436308161709,3.75,1.67401941472834,0,1.08456467837095,0.694537758827209,0.397381880356167
+2112,81843,449997.952,81943,449897.952,11,21,19,0.0158333333333333,3.3578736969802,0.185449735449735,10.7793673302782,0.0244983324078294,0.205,20.5,3,88.4369355421605,0.791802212101496,15.5,3.1468109037818,0,1.38671700656414,0.967134892940521,0.446025891659887
+2113,81843,449897.952,81943,449797.952,12,21,17.25,0.0132692307692308,2.52593351871382,0.141311369509044,15.4617793980654,0.0108517481095532,0.0325,3.25,4,52.1185727638505,0.540625897215045,1.75,10.4382536961482,0,1.60419578105211,1.256711602211,0.397523363058908
+2114,81843,449797.952,81943,449697.952,13,21,36.5,0.0521428571428571,7.2202330287396,0.366987039464104,13.740048555357,0.0533678329865506,0.5975,59.75,2,97.3411242259155,0.772117776202982,56.5,6.03650978918355,0,1.80235754450162,1.41393136978149,0.451062413075028
+2115,81843,449697.952,81943,449597.952,14,21,21,0.0161538461538462,3.96906053822603,0.225487671774144,14.6279263923202,0.0192031332300576,0.2225,22.25,4,87.1570561662106,0.822038868328985,15.25,3.02806151315068,0,1.71718865633011,1.22206890583038,0.490135057078456
+2116,81843,449597.952,81943,449497.952,15,21,62.25,0.2075,13.7806085011176,0.48210922787194,20.2051760426961,0.0350373776324523,0.42,42,4,92.8145203125423,0.860956618464961,33.5,1.07865002041771,0,1.09450195729733,0.669420838356018,0.610025104704035
+2117,81843,449497.952,81943,449397.952,16,21,45.5,0.091,17.7894339441489,0.504778786159955,10.7082039324994,-0.0141707430983661,0.17,17,3,88.1861188832171,0.807633896932267,13.5,1.57457452661851,0,-0.00519168944447301,-0.490457326173782,0.635702434746066
+2118,81843,449397.952,81943,449297.952,17,21,53,0.1325,14.1012059018849,0.53073715361851,10.5901699437495,-0.00463988607320744,0.285,28.5,3,93.5517395322627,0.904949419512526,27.5,1.00877192982456,0,-0.724569347997506,-0.923684060573578,0.334767459892931
+2119,81843,449297.952,81943,449197.952,18,21,33.25,0.0665,10.7174604208503,0.344311594202899,11.9442719099992,0.0187976097610408,0.18,18,2,88.9261643274838,0.740733627808719,13.75,2.41120481491089,0,-1.61308417841792,-3.47338223457336,1.28250067746019
+2120,81843,449197.952,81943,449097.952,19,21,9,0.0225,4.97685976627145,0.270833333333333,27.0773797371133,-0.00659187181266134,0.0525,5.25,2,73.2721854568656,0.769129287598945,3.5,4.83346739269438,0,-3.51432686050733,-5.84815502166748,2.2063778845753
+2121,81843,449097.952,81943,448997.952,20,21,11,0.0275,8.03438994118341,0.309065934065934,19.18424518429,0.026318922409464,0.27,27,2,94.4433340535962,0.817351598173516,26.5,7.30342344001487,0,-4.33245205879211,-5.41321706771851,2.45006687462699
+2122,81843,448997.952,81943,448897.952,21,21,41.25,0.0825,11.8836770647476,0.486234374221824,10.4721359549996,0.054682961375147,0.5475,54.75,2,95.5909050143175,0.842920593651825,40.25,5.01461594289841,0,-2.55516089498997,-5.1035590171814,2.15524019359323
+2123,81843,448897.952,81943,448797.952,22,21,64.5,0.3225,27.2733968983192,0.719331322272499,10,0.0382758194092639,0.4075,40.75,5,90.6759314220744,0.780590717299578,23.5,1.41848591061458,0,-0.913958976666133,-1.06307411193848,0.38738920803073
+2124,81843,448797.952,81943,448697.952,23,21,47,0.1175,12.2973540539978,0.396366995073892,17.5778221853732,0.0456284729869822,0.47,47,3,93.9164704954367,0.837345478204294,39.5,6.77091679674514,0,-0.815884195268154,-1.42535650730133,0.362420418001808
+2125,81843,448697.952,81943,448597.952,24,21,35,0.0583333333333333,7.91355877798993,0.239748677248677,12.3215759691358,-0.00326147641630996,0.0425,4.25,3,67.8227088468955,0.70757180156658,3.25,1.76470588235294,0,-0.671883190671603,-0.768381237983704,0.115905700738424
+2126,81843,448597.952,81943,448497.952,25,21,5,0.00625,1.83659088680502,0.162698412698413,13.8692559439066,-0.000498866040579742,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-0.798330616205931,-0.864791810512543,0.0673198173060403
+2127,81843,448497.952,81943,448397.952,26,21,14.25,0.0203571428571429,6.08047767803693,0.165145502645503,11.8817240108343,0.0026537813476898,0.0725,7.25,3,73.0820458354102,0.678843837816138,3.75,8.12457617397966,0,-0.835238138834635,-0.895448565483093,0.0829464348932343
+2128,81843,448397.952,81943,448297.952,27,21,12.5,0.025,8.91506913476924,0.228194444444444,19.1022817677342,0.00715451625212609,0.03,3,1,74.8763016215986,0.939357186173438,3,4.33925565083822,0,-0.800533045083284,-0.893455624580383,0.140463461152739
+2129,81843,448297.952,81943,448197.952,28,21,16.25,0.0147727272727273,4.117460853358,0.178671744179766,14.0656508354109,-0.000594321542503167,0.01,1,2,34.5233986084855,0.494949494949495,0.75,3.75,0,-0.765371933579445,-0.883608996868134,0.162872251512399
+2130,81843,448197.952,81943,448097.952,29,21,30.75,0.0439285714285714,10.3779247746911,0.297260470453242,13.5316227928565,0.0128310436178253,0.2375,23.75,3,89.3522401914586,0.845708775313404,19.75,1.23232702957956,0,-0.718696437776089,-0.865285158157349,0.16882291671968
+2131,81843,448097.952,81943,447997.952,30,21,28.75,0.14375,21.8769240563089,0.571111111111111,10,0.0170126432584766,0.1925,19.25,1,93.2673077410907,0.836095428883628,19.25,1.52040347805271,0,-0.64833465218544,-0.806418478488922,0.175448071625588
+2132,81843,447997.952,81943,447897.952,31,21,40.5,0.405,27.0826281251288,0.842592592592593,NA,0.0171104594162898,0.3525,35.25,1,96.3984008308788,0.892251055041753,35.25,2.81851171939931,0,-0.575961855550607,-0.727880120277405,0.154196710770617
+2133,81843,447897.952,81943,447797.952,32,21,17.5,0.0175,4.52602955444709,0.16125,17.6675437455463,-0.0229348415632194,0.1925,19.25,1,93.2673077410907,0.863412857403023,19.25,4.66688988425515,0,-0.548854522407055,-0.638924956321716,0.0945708864408035
+2134,81843,447797.952,81943,447697.952,33,21,23.75,0.0296875,5.22415156720495,0.19552034428795,13.7554793826532,-0.0222156777945384,0.125,12.5,1,90.3766993434411,0.98655462184874,12.5,5.9843766784668,0,-0.627509981393814,-0.707642376422882,0.107528288675458
+2135,81843,447697.952,81943,447597.952,34,21,5,0.01,3.46601598566286,0.245925925925926,21.3166823118986,-0.0329083991106927,0,0,0,NA,NA,0,NA,NA,-0.672548465430737,-0.797459125518799,0.136684318250771
+2136,81843,447597.952,81943,447497.952,35,21,12,0.02,3.9980144717693,0.231981981981982,25.35183758488,-0.00456653946854203,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,15.1996386391776,11.1803398132324,-0.766683012247086,-0.877784430980682,0.148670748969529
+2137,81843,447497.952,81943,447397.952,36,21,12,0.0171428571428571,4.48571275647908,0.168154761904762,12.7646297090484,-0.0204407707866631,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.955341339111328,-1.06266534328461,0.13381146477104
+2138,81843,447397.952,81943,447297.952,37,21,15,0.0125,4.76410805309913,0.194212962962963,11.3251416197912,-0.0125455624860479,0,0,0,NA,NA,0,NA,NA,-1.15424239635468,-1.19861829280853,0.0867263960929754
+2139,81843,447297.952,81943,447197.952,38,21,7,0.0175,5.67445637536965,0.27281746031746,13.2930170189599,0.000797773272416862,0,0,0,NA,NA,0,NA,NA,-1.24729690700769,-1.26893770694733,0.0289982425853516
+2140,81843,447197.952,81943,447097.952,39,21,15,0.0214285714285714,7.49219377748285,0.275647451963241,13.1112592620759,-0.0147378653476153,0,0,0,NA,NA,0,NA,NA,-1.26851890484492,-1.26999998092651,0.00632196337020631
+2141,81843,447097.952,81943,446997.952,40,21,39,0.039,5.23200611891442,0.202063492063492,12.3863495173727,-0.0319235681073769,0,0,0,NA,NA,0,NA,NA,-1.25803834199905,-1.26999998092651,0.0182479841775715
+2142,81843,446997.952,81943,446897.952,41,21,23.25,0.0155,4.01228007549942,0.140246913580247,12.7893135384542,-0.0160001196579788,0.0375,3.75,1,78.0843273950357,0.811097992916175,3.75,1.33333333333333,0,-1.24358063936234,-1.26142227649689,0.0276829635565464
+2143,81843,446897.952,81943,446797.952,42,21,9.25,0.0154166666666667,8.34210359711963,0.168434343434343,12.4535599249993,0.0125212165624225,0.235,23.5,1,94.4060921446443,0.929971988795518,23.5,12.1045187483443,0,-1.22130023688078,-1.24818754196167,0.0255702724981393
+2144,81843,446797.952,81943,446697.952,43,21,5.5,0.01375,6.66248911129056,0.187770562770563,17.1352549156242,0.0492772945964134,0.51,51,1,97.8932627156421,0.870766248451887,51,35.390036910188,7.07106781005859,-1.20256454745928,-1.22504961490631,0.0299336227735283
+2145,81843,446697.952,81943,446597.952,44,21,12.75,0.0141666666666667,5.29924606415541,0.175154320987654,15.6878538840141,-0.0116684590611476,0.01,1,1,52.6315789473684,0.747474747474748,1,12.7834658622742,10,-1.25403547286987,-1.34288501739502,0.0968939233925489
+2146,81843,446597.952,81943,446497.952,45,21,22.25,0.11125,14.4523059003137,0.450581395348837,40,-0.0109834051795042,0,0,0,NA,NA,0,NA,NA,-1.30257450044155,-1.42361998558044,0.160600184535052
+2147,81843,446497.952,81943,446397.952,46,21,3.25,0.0108333333333333,5.13792835080791,0.0757575757575758,50.3544506725865,0.00402306981968593,0.005,0.5,2,0,1,0.25,19.5773792266846,10,-1.24376517534256,-1.40934383869171,0.217552156721519
+2148,81843,446397.952,81943,446297.952,47,21,3.5,0.004375,1.91887430321606,0.09375,20.1011004580398,0.012415452006353,0.005,0.5,2,0,1,0.25,8.09016990661621,5,-1.2234231159091,-1.38520312309265,0.211439995114451
+2149,81843,446297.952,81943,446197.952,48,21,9,0.00818181818181818,3.52964733038752,0.128066378066378,11.1530141169298,0.00311504707276981,0.0425,4.25,3,70.7747433345837,0.7911227154047,3.75,6.73255426743451,0,-1.26874436934789,-1.38603067398071,0.166797205637771
+2150,81843,446197.952,81943,446097.952,49,21,24.25,0.0346428571428571,7.54933995435639,0.276916394263333,12.9492787174943,-0.0181492717747369,0.005,0.5,1,30.8308651382582,1,0.5,12.6612377166748,11.1803398132324,-1.26865041255951,-1.37636017799377,0.118252536550079
+2151,81843,446097.952,81943,445997.952,50,21,25.75,0.0367857142857143,5.24703045031993,0.260335917312661,16.5999300364187,-0.0335256422290331,0,0,0,NA,NA,0,NA,NA,-1.13388055562973,-1.2168744802475,0.129127755649072
+2152,81843,445997.952,81943,445897.952,51,21,9.75,0.0139285714285714,4.88489256115162,0.235260770975057,14.9360726327633,-0.0267276546675203,0.005,0.5,1,30.8308651382582,1,0.5,17.5,15,-1.0610983595252,-1.18098223209381,0.134607765851925
+2153,81843,445897.952,81943,445797.952,52,21,17.75,0.0253571428571429,7.32878304008925,0.16982091982092,13.3630028089281,0.00657418300153722,0.22,22,1,94.042067560231,0.918340682671893,22,13.976355639371,0,-1.25356325507164,-1.45071744918823,0.237365293783176
+2154,81843,445797.952,81943,445697.952,53,21,34,0.113333333333333,15.8960632366125,0.602087656417028,26.0874597374975,-0.0268720505621968,0.0625,6.25,1,84.2105263157895,0.813333333333333,6.25,16.1888373565674,0,-1.47572886943817,-1.64898908138275,0.191556484498318
+2155,81843,445697.952,81943,445597.952,54,21,52,0.13,9.75399639622128,0.349246231155779,11.5450849718747,0.00714628668734804,0.0725,7.25,5,64.9583232685366,0.632964386075586,2.75,4.52185736031368,0,-1.62555624047915,-1.69566679000854,0.118306518971763
+2156,81843,445597.952,81943,445497.952,55,21,18.5,0.0308333333333333,7.85340285171988,0.346825396825397,14.2314060253863,-0.00242352551853401,0.0725,7.25,2,80.5821920145361,0.770602741297241,6,6.43226478839743,0,-1.76943452159564,-1.91673827171326,0.124535997606156
+2157,81843,445497.952,81943,445397.952,56,21,4.5,0.009,4.09332231849997,0.1875,11.9442719099992,-0.0212619622782586,0,0,0,NA,NA,0,NA,NA,-2.00330293923616,-2.27590990066528,0.252370206594302
+2158,81843,445397.952,81943,445297.952,57,21,23.75,0.02375,4.97677733405059,0.269913863822806,13.5094551429903,-0.00019660833706439,0.1775,17.75,3,83.612609813112,0.824924012158055,7,0.973832896057989,0,-2.30864441394806,-2.56839561462402,0.299863336514766
+2159,81843,445297.952,81943,445197.952,58,21,44.25,0.110625,12.247163143675,0.463119873228934,20.5205098312484,0.048337712693974,0.48,48,3,94.2474728508749,0.848746758859118,40,2.71434211730957,0,-2.51557064056396,-2.78382158279419,0.405760391103938
+2160,81843,445197.952,81943,445097.952,59,21,40.5,0.0675,8.82706861353208,0.328014007597341,12.6274853709025,0.0132860170887943,0.27,27,2,91.6301733927737,0.845451352300667,19,1.73512540040193,0,-2.43682710329692,-2.80326652526855,0.39882213105801
+2161,81843,445097.952,81943,444997.952,60,21,48.5,0.097,13.7217971018818,0.510031094527363,11.3983456376682,-0.0373453977994359,0.05,5,4,64.3596379912098,0.626485568760611,3.25,1.10355339050293,0,-1.96468641608953,-2.13081550598145,0.280030934563716
+2162,81843,444997.952,81943,444897.952,61,21,19.25,0.01925,5.53430852302943,0.294867724867725,15.6138553377064,0.0141921016349443,0.19,19,4,85.2092643239373,0.797309747558504,13,8.48565028843127,0,-2.01504510641098,-2.16783142089844,0.17794347702077
+2163,81843,444897.952,81943,444797.952,62,21,58,0.116,7.27413533266238,0.190455212922173,10,-0.030322414595903,0.05,5,2,72.2238122308052,0.762308998302207,3,0.25,0,-1.9106185361743,-2.07874131202698,0.157632570500664
+2164,81843,444797.952,81943,444697.952,63,21,45,0.075,7.3005301468621,0.345715408805031,15.9937601006309,-0.0324705435030773,0.005,0.5,2,0,1,0.25,2.5,0,-1.92874576648076,-1.95859229564667,0.0731633809186731
+2165,81843,444697.952,81943,444597.952,64,21,94.5,0.945,37.7122993384611,0.89373897707231,NA,-0.0898138077306794,0,0,0,NA,NA,0,NA,NA,-1.95921851694584,-2.03413915634155,0.0919023909508261
+2166,81843,444597.952,81943,444497.952,65,21,97.5,0.975,38.027676832613,0.914529914529915,NA,-0.0969481722824276,0,0,0,NA,NA,0,NA,NA,-1.94108793139458,-2.07118105888367,0.194037530662996
+2167,81843,444497.952,81943,444397.952,66,21,84,0.84,36.51292575054,0.876488095238095,NA,-0.070924248562369,0.03,3,2,68.3714310934689,0.818071558520315,2.75,0,0,-1.87629660964012,-2.06416654586792,0.234258736848133
+2168,81843,444397.952,81943,444297.952,67,21,91.75,0.9175,37.4863540274086,0.886920980926431,NA,-0.0717401740717469,0.0275,2.75,2,63.5626245791198,0.794344473007712,2.25,0.909090909090909,0,-2.04882485419512,-2.28612351417542,0.201135370711318
+2169,81843,444297.952,81943,444197.952,68,21,91.5,0.915,37.3880136123777,0.895264116575592,NA,-0.0384387116594007,0.105,10.5,4,76.95336126997,0.716736171217248,6.25,0,0,-2.35324889421463,-2.61381387710571,0.32085726333005
+2170,81843,444197.952,81943,444097.952,69,21,36.25,0.0725,14.0852993151005,0.625928292972769,12.4721359549996,-0.0258599263482756,0.085,8.5,2,81.2893821448882,0.863387978142076,6.75,1.6785608179429,0,-2.71240577101707,-2.80829811096191,0.144980078382127
+2171,81843,444097.952,81943,443997.952,70,21,23.5,0.029375,5.60006394498841,0.219302035330261,17.0623051947394,-0.0341084587182195,0,0,0,NA,NA,0,NA,NA,-2.82130072514216,-2.85717630386353,0.0659341495367861
+2172,81843,443997.952,81943,443897.952,71,21,95.5,0.955,38.3261140794882,0.897905759162304,NA,-0.102599648353644,0,0,0,NA,NA,0,NA,NA,-2.75285163521767,-2.84273910522461,0.0985333814537238
+2173,81843,443897.952,81943,443797.952,72,21,71.25,0.2375,18.5894073934919,0.630367701180106,11.6666666666667,-0.0833093993944931,0,0,0,NA,NA,0,NA,NA,-2.65039823452632,-2.7174346446991,0.0645172331313371
+2174,81843,443797.952,81943,443697.952,73,21,77.75,0.7775,36.1561879670846,0.912647374062165,NA,-0.0606024371099193,0,0,0,NA,NA,0,NA,NA,-2.64010487496853,-2.70307803153992,0.0788100670134765
+2175,81843,443697.952,81943,443597.952,74,21,58.75,0.29375,22.0492409801746,0.797024723868042,20,-0.021952130126665,0.055,5.5,4,61.5877829111435,0.595393713040772,2,8.17122025923296,0,-2.70655179023743,-2.81387591362,0.109617409123781
+2176,81843,443597.952,81943,443497.952,75,21,65,0.325,24.8647309371467,0.604875283446712,14.142135623731,-0.0320992365563143,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.80897065997124,-2.84142017364502,0.0584650236845724
+2177,81843,443497.952,81943,443397.952,76,21,58.75,0.195833333333333,18.8360800785939,0.584312911041883,15,-0.0248362687343251,0.04,4,2,72.4151777478817,0.782986111111111,3.5,2.94194173812866,0,-2.78250559171041,-2.84605026245117,0.117972342619557
+2178,81843,443397.952,81943,443297.952,77,21,50,0.0833333333333333,8.76903114048773,0.359504965859714,12.5887913084729,0.020682306586059,0.32,32,3,90.4331294349876,0.867457712698813,23.5,4.05070261657238,0,-2.72948163747787,-2.81189513206482,0.120461150557833
+2179,81843,443297.952,81943,443197.952,78,21,45,0.0642857142857143,9.38768934285118,0.364464863615349,10.591733660533,-0.0275344416422172,0.0525,5.25,5,56.7280966151408,0.637203166226913,1.75,5.72964168730236,0,-2.7541728168726,-2.82701516151428,0.0970109295165478
+2180,81843,443197.952,81943,443097.952,79,21,26.5,0.0378571428571429,6.96088884829633,0.38115671641791,20.6471972760313,0.00144154564657129,0.2175,21.75,5,85.376099682506,0.802123054725343,13,8.25234748577249,0,-2.93774749835332,-3.04841470718384,0.129123984816707
+2181,81843,443097.952,81943,442997.952,80,21,8.5,0.017,5.64418731457152,0.2375,16.2462112512353,-0.00624837711480723,0.125,12.5,2,88.8888888888889,0.919327731092437,12.25,8.26355876922607,0,-3.06362308561802,-3.17941999435425,0.100375226521383
+2182,81843,442997.952,81943,442897.952,81,21,3.5,0.004375,1.6118399381952,0.0885416666666667,17.3491639531388,-0.0169950455501385,0.13,13,1,90.6657843098624,0.974170218261656,13,24.8096095231863,7.07106781005859,-3.09946046272914,-3.18228626251221,0.0867818590451512
+2183,81843,442897.952,81943,442797.952,82,21,8.75,0.0125,4.5081213136725,0.228937728937729,10.8301983286917,0.00746484498878544,0.145,14.5,2,87.3612602935911,0.894736842105263,12.25,17.2287229340652,0,-3.05234333872795,-3.13729476928711,0.0988070102313427
+2184,81843,442797.952,81943,442697.952,83,21,13.75,0.0275,6.03712305096224,0.291269841269841,14.7082039324994,-0.00940576440103541,0.12,12,1,90.0697297581677,0.930709534368071,12,27.211908698082,5,-3.02645885944366,-3.15939855575562,0.146498839553588
+2185,81843,442697.952,81943,442597.952,84,21,13.5,0.015,4.28717584093401,0.267636684303351,12.1151241367179,0.012200385502947,0.245,24.5,1,94.6299732152399,0.969897652016857,24.5,12.8492396607691,0,-2.99562060832977,-3.15096735954285,0.129912346747722
+2186,81843,442597.952,81943,442497.952,85,21,3.5,0.005,2.14285714285714,0.130952380952381,14.1757189883018,-0.00600112614516547,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,43.7898719787598,41.2310562133789,-3.03168515364329,-3.08118534088135,0.0855645049017887
+2187,81843,442497.952,81943,442397.952,86,21,0.5,0.0025,0,0,46.0977222864644,0.0977763016073732,0.9325,93.25,1,99.8128381781211,0.979045523599978,93.25,28.4715995890845,0,-3.13573822379112,-3.19524669647217,0.0602399013650269
+2188,81843,442397.952,81943,442297.952,87,21,1,0.005,1.66666666666667,0.111111111111111,10,-0.0466430296408362,0.2025,20.25,2,90.5581231819591,0.869383490073145,18.5,40.5683882913472,5,-3.17618022362391,-3.20385241508484,0.0327141173395552
+2189,81843,442297.952,81943,442197.952,88,21,0,NA,NA,NA,NA,-0.000881951860064873,0.2325,23.25,1,94.3478768975745,0.929359130332404,23.25,60.6138565104495,10,-3.22833560407162,-3.28351759910583,0.0502131886652979
+2190,81843,442197.952,81943,442097.952,89,21,2.75,0.0275,10.2315485671252,0.363636363636364,NA,0.0412684506458197,0.35,35,2,95.1941423704335,0.903846153846154,34,42.3602344240461,0,-3.24483611186345,-3.28376603126526,0.0421511554514021
+2191,81843,442097.952,81943,441997.952,90,21,1,0.00333333333333333,0.833333333333333,0.0555555555555556,10.3934466291663,-0.0281541945227218,0.0425,4.25,2,74.792243767313,0.91644908616188,4,78.3959866692038,35.355339050293,-3.17075190941493,-3.21607422828674,0.0756190865833778
+2192,81843,441997.952,81943,441897.952,91,21,2,0.00333333333333333,0.833333333333333,0.0555555555555556,24.8998813685482,-0.016001936720495,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,34.1368743896484,30.4138145446777,-2.98378440737724,-3.1095244884491,0.13310284931735
+2193,81843,441897.952,81943,441797.952,92,21,0,NA,NA,NA,NA,-0.0971336359577253,0,0,0,NA,NA,0,NA,NA,-2.76155179738998,-2.85744833946228,0.10538048876711
+2194,81843,441797.952,81943,441697.952,93,21,0,NA,NA,NA,NA,-0.167736457539722,0,0,0,NA,NA,0,NA,NA,-2.69240231812,-2.72487211227417,0.0337726219358002
+2195,81843,441697.952,81943,441597.952,94,21,0,NA,NA,NA,NA,-0.0635490546133224,0,0,0,NA,NA,0,NA,NA,-2.77586710453033,-2.86914730072021,0.0882142214421949
+2196,81843,441597.952,81943,441497.952,95,21,3,0.005,2.22222222222222,0.148148148148148,13.1024174650041,-0.0894989681051811,0.0125,1.25,1,58.1880425789518,1,1.25,11.3983455657959,5,-2.88938769698143,-2.98483610153198,0.0928906160911345
+2197,81843,441497.952,81943,441397.952,96,21,1,0.0025,0,0,25.4950975679639,-0.0263423746540957,0.07,7,1,85.3702908942512,0.97610513739546,7,22.6429686546326,11.1803398132324,-3.01318579912186,-3.06663131713867,0.0999990516937933
+2198,81843,441397.952,81943,441297.952,97,21,1.25,0.0125,6,0.266666666666667,NA,0.0403951049178795,0.3525,35.25,1,96.3984008308788,0.832390530064949,35.25,25.7071931987789,0,-3.20836241543293,-3.3406126499176,0.1193712966161
+2199,81843,441297.952,81943,441197.952,98,21,0,NA,NA,NA,NA,0.00273247377248481,0.1075,10.75,3,78.0655448893915,0.813258636788049,4.5,81.3140717439873,61.8465843200684,-3.31645250320435,-3.4158308506012,0.129529704551516
+2200,81843,441197.952,81943,441097.952,99,21,0.263157894736842,0.0025,0,0,NA,-0.0291304845500781,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,40.4548321678525,30,-3.308748498559,-3.42736506462097,0.166512618498217
+2201,81943,451097.952,82043,450997.952,0,22,24,0.0218181818181818,4.39322236676079,0.22712703962704,12.4993061374801,0.0235647021081058,0.145,14.5,6,77.894029671998,0.754385964912281,9.75,8.76808843941524,0,4.00408901108636,3.74103713035583,0.421156191425636
+2202,81943,450997.952,82043,450897.952,1,22,22.5,0.015,4.50563188209456,0.190534637627661,13.5135093234592,0.0531031144588542,0.55,55,2,97.5621402325493,0.75609756097561,53.75,5.14148651469838,0,3.50816782315572,2.98423099517822,0.523173899121883
+2203,81943,450897.952,82043,450797.952,2,22,28.25,0.0403571428571429,7.01101714865695,0.344691299039125,13.5647891320818,0.0594128994164566,0.56,56,2,97.4521579098108,0.853197042192258,54.75,4.14502345664161,0,2.73871019151476,2.14070749282837,0.690568178819675
+2204,81943,450797.952,82043,450697.952,3,22,31.5,0.039375,7.46278733588059,0.335409032585781,15.4426274578121,0.0494878830591915,0.535,53.5,2,97.6737508708874,0.740638677257254,52.75,3.92815031960746,0,1.90454932053884,1.36068475246429,0.692156467124683
+2205,81943,450697.952,82043,450597.952,4,22,30.25,0.03025,5.00060695543358,0.122955974842767,12.3541019662497,0.0280177877962524,0.2325,23.25,4,87.2195334597429,0.756681448922727,16,3.28421545541415,0,0.997271060943604,0.725166618824005,0.547935005646778
+2206,81943,450597.952,82043,450497.952,5,22,28.25,0.14125,27.5217403260957,0.45369142351901,14.142135623731,0.0185508892967709,0.21,21,4,85.7865612185411,0.770622716846487,10.5,4.93896820431664,0,0.245527045840087,0.00701763620600104,0.333601765228422
+2207,81943,450497.952,82043,450397.952,6,22,1.75,0.00583333333333333,2.08349487340527,0.0888888888888889,18.3333333333333,0.00235098052889043,0,0,0,NA,NA,0,NA,NA,-0.12815990878476,-0.213252753019333,0.140793990610334
+2208,81943,450397.952,82043,450297.952,7,22,14,0.028,5.93339820423928,0.18695652173913,15.4537432380473,0.00517270459850806,0.1325,13.25,1,90.8041511632959,0.847990626088609,13.25,2.26415094339623,0,-0.38613425505658,-0.816547513008118,0.414699088161696
+2209,81943,450297.952,82043,450197.952,8,22,23.5,0.0391666666666667,5.39029313052348,0.221597501115573,17.5647393587196,0.0318194286529615,0.3325,33.25,2,95.3127712470722,0.857615996533259,32.5,2.621103358448,0,0.00847555205432905,-0.166196182370186,0.371540067324461
+2210,81943,450197.952,82043,450097.952,9,22,31.25,0.0446428571428571,8.18540401189825,0.261807580174927,15.5138297757116,0.0286278953521105,0.2125,21.25,4,85.6192377287906,0.756123199831809,14.25,4.35182542239918,0,0.570822166071998,0.154768973588943,0.534181467389359
+2211,81943,450097.952,82043,449997.952,10,22,28.75,0.0479166666666667,10.1507649558742,0.400326987826988,13.2868932583326,0.0125314791676283,0.0675,6.75,4,67.3004022709612,0.65085105056425,3.25,5.73285505506727,0,1.37264884014924,0.848245561122894,0.49715356800101
+2212,81943,449997.952,82043,449897.952,11,22,40,0.0666666666666667,11.0603563080059,0.395185185185185,11.7692546880147,0.0229085160065824,0.2175,21.75,6,86.7068119116934,0.744408945686901,17.75,1.36944983471399,0,1.9634667634964,1.83931565284729,0.267454352249246
+2213,81943,449897.952,82043,449797.952,12,22,39.5,0.049375,7.08028415389976,0.294636268485889,12.9105339059327,0.0254085582393418,0.1925,19.25,3,87.4929036013271,0.836095428883628,10.5,2.8474246433803,0,2.08869232734044,2.04256963729858,0.136467082932209
+2214,81943,449797.952,82043,449697.952,13,22,22.5,0.0204545454545455,5.47322379968908,0.283713760986488,13.8387591738884,0.0524961144021654,0.4675,46.75,2,95.6111666333165,0.902303997394773,42.25,7.00198895663501,0,2.05410708321465,1.92502653598785,0.212263972549832
+2215,81943,449697.952,82043,449597.952,14,22,65,0.65,37.3000458031296,0.794230769230769,NA,0.0548845130543486,0.5425,54.25,3,94.5177807266317,0.632094356976681,35.5,3.15566124454621,0,1.50093452632427,0.578004777431488,0.947633379896378
+2216,81943,449597.952,82043,449497.952,15,22,77.75,0.38875,21.4767575519801,0.51294498381877,20,0.0461910594358051,0.52,52,2,97.6821118254414,0.709302325581395,51.5,0.738335976233849,0,0.695273993743791,-0.125061556696892,1.09423778467141
+2217,81943,449497.952,82043,449397.952,16,22,75,0.75,35.9935496305364,0.812222222222222,NA,0.0343030698607618,0.36,36,5,87.1401867988956,0.727746212121212,21,0.625,0,-0.320756196044385,-0.874630630016327,0.934743143926979
+2218,81943,449397.952,82043,449297.952,17,22,27,0.045,7.950351181535,0.293134023854363,16.8577479437612,0.037749526408661,0.43,43,2,95.3803271877456,0.795229398417178,36.25,4.71597288930139,0,-1.60722320609623,-4.32198524475098,2.09140260532026
+2219,81943,449297.952,82043,449197.952,18,22,4.75,0.00678571428571429,2.8810450985429,0.164285714285714,24.1853290687744,0.00137578719964949,0.1775,17.75,2,88.900346302823,0.90273556231003,15.25,10.5270350012981,0,-2.57982153693835,-4.84658241271973,2.02872712698818
+2220,81943,449197.952,82043,449097.952,19,22,17.75,0.0355,7.0038357038746,0.394734299516908,14.3294367171337,0.0258830420891172,0.35,35,3,93.3293218806219,0.795673076923077,29.75,5.40773432595389,0,-2.7526091867023,-5.54438543319702,2.45529003591872
+2221,81943,449097.952,82043,448997.952,20,22,31.5,0.105,16.3350056432057,0.478135997988939,20.35183758488,0.012187400600269,0.2725,27.25,3,89.9980622459491,0.804629581174665,15.75,3.48007702608721,0,-1.54485466745165,-3.31743192672729,1.53214788048176
+2222,81943,448997.952,82043,448897.952,21,22,65,0.325,18.9950035063154,0.49515503875969,11.1803398874989,0.00657675109316187,0.2075,20.75,3,88.5094771371616,0.793986995429086,12.25,0.421686746987952,0,-1.01960811515649,-1.16367435455322,0.185034167222713
+2223,81943,448897.952,82043,448797.952,22,22,46.25,0.23125,19.6849641144914,0.735615079365079,15,0.0099250175873749,0.1275,12.75,5,81.1700640961155,0.828738925666107,10.75,0.294117647058824,0,-0.998550666703118,-1.25575435161591,0.240749171053245
+2224,81943,448797.952,82043,448697.952,23,22,19.75,0.0246875,6.28881439570389,0.25051676885916,11.391732976509,-0.0144721676138579,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-1.28127975265185,-1.5,0.453720244902561
+2225,81943,448697.952,82043,448597.952,24,22,19.25,0.0275,5.8906051982731,0.317155067155067,10.3372399678568,-0.00827814538477469,0,0,0,NA,NA,0,NA,NA,-0.777715815438165,-0.822990953922272,0.074412176515186
+2226,81943,448597.952,82043,448497.952,25,22,17.25,0.0246428571428571,6.61343882924227,0.23586914440573,14.9347422323635,0.00156434447082574,0.0275,2.75,3,61.1205432937182,0.588688946015424,2.25,9.24963188171387,0,-0.826929181814194,-0.86182975769043,0.0347142316742285
+2227,81943,448497.952,82043,448397.952,26,22,7.75,0.00704545454545455,2.95367568163853,0.0925925925925926,15.2965799284084,0.00258417384383392,0.01,1,1,52.6315789473684,0.494949494949495,1,12.7950849533081,10,-0.885040071275499,-0.900933027267456,0.028706097131139
+2228,81943,448397.952,82043,448297.952,27,22,15.5,0.0258333333333333,8.37969232198952,0.217399146746973,12.5647393587196,0.00159231048629522,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,8.3870792388916,5,-0.917990197738012,-0.930000007152557,0.0200566103857175
+2229,81943,448297.952,82043,448197.952,28,22,13,0.0185714285714286,5.49091756262781,0.200322234156821,13.2575880698832,0.00208182770190092,0.0025,0.25,1,0,NA,0.25,0,0,-0.925735195477804,-0.939412772655487,0.0292581810558071
+2230,81943,448197.952,82043,448097.952,29,22,14.5,0.0145,5.44653655373957,0.169969135802469,14.7748882382423,-0.00191951928343769,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,8.33333333333333,0,-0.911124885082245,-0.934123158454895,0.0438157161328977
+2231,81943,448097.952,82043,447997.952,30,22,8.25,0.00825,3.10082551973839,0.135714285714286,13.4462203665652,-0.0176011814780941,0,0,0,NA,NA,0,NA,NA,-0.850225203567081,-0.89065420627594,0.0725822598358411
+2232,81943,447997.952,82043,447897.952,31,22,23.25,0.0258333333333333,6.23620295906753,0.245653738933309,13.4739501721505,-0.0281000526672574,0.01,1,1,52.6315789473684,0.747474747474748,1,4.26776695251465,0,-0.729012933042314,-0.787890553474426,0.103574808479477
+2233,81943,447897.952,82043,447797.952,32,22,17.75,0.0161363636363636,3.19615309867469,0.158901515151515,14.2734480509829,-0.0284140793534971,0,0,0,NA,NA,0,NA,NA,-0.540503417452176,-0.65192323923111,0.127735250469729
+2234,81943,447797.952,82043,447697.952,33,22,19.5,0.0139285714285714,4.08383014132161,0.234423314780458,13.4392815989454,-0.0203571912583743,0,0,0,NA,NA,0,NA,NA,-0.396099822388755,-0.490827351808548,0.116964564034148
+2235,81943,447697.952,82043,447597.952,34,22,16.75,0.0239285714285714,8.04166455522623,0.297735760971055,11.7658113964283,0.00993145394092608,0.045,4.5,3,67.3717385621468,0.689742098119062,3.25,2.61505932278103,0,-0.406822914878527,-0.471734762191772,0.0937322889897247
+2236,81943,447597.952,82043,447497.952,35,22,10.25,0.0128125,3.63740288905139,0.207107843137255,17.0570424154127,0.00169523283105264,0.04,4,5,52.7445036954036,0.479166666666667,1.5,6.9153094291687,0,-0.506489233838187,-0.633313894271851,0.153668659081886
+2237,81943,447497.952,82043,447397.952,36,22,12,0.0109090909090909,4.39555197715813,0.18550246050246,15.9087609371786,0.0217664870897352,0.115,11.5,8,70.1509872189186,0.579892800231783,5,9.49505258643109,0,-0.784512216846148,-0.997148096561432,0.232270402794509
+2238,81943,447397.952,82043,447297.952,37,22,11.5,0.0115,3.35466885579936,0.181666666666667,12.2213727062277,0.00309596907345622,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,14.968163899013,10,-1.09306146038903,-1.17835032939911,0.138985966214035
+2239,81943,447297.952,82043,447197.952,38,22,4.5,0.015,5.60252890730946,0.208994708994709,43.0202963144438,0.000654477514108294,0.0075,0.75,1,44.4894453484604,1,0.75,9.41713587443034,7.07106781005859,-1.22087096174558,-1.25512444972992,0.0563669237603076
+2240,81943,447197.952,82043,447097.952,39,22,8,0.02,6.79444114376833,0.294642857142857,27.6379997179014,0.00160934373173859,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,17.8250722018155,11.1803398132324,-1.25922450754378,-1.26999998092651,0.0206092698730024
+2241,81943,447097.952,82043,446997.952,40,22,41.5,0.083,9.04223873333487,0.324692205942206,12.1065495701675,-0.0265360273360739,0.0025,0.25,1,0,NA,0.25,25,25,-1.26844354470571,-1.26999998092651,0.00719625171598568
+2242,81943,446997.952,82043,446897.952,41,22,7.5,0.01875,8.12042089174377,0.247685185185185,11.4528470752105,-0.00523189531716525,0.0125,1.25,1,58.1880425789518,1,1.25,30.6519996643066,26.9258232116699,-1.26293375757005,-1.26999998092651,0.0104471548469703
+2243,81943,446897.952,82043,446797.952,42,22,7.5,0.015,5.79841344347838,0.24457671957672,19.7097201274713,-0.00615737577720211,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-1.22719004750252,-1.25301802158356,0.0322817643935581
+2244,81943,446797.952,82043,446697.952,43,22,17.25,0.014375,4.42552241851271,0.193687343358396,11.9077856354863,-0.00760335560376916,0,0,0,NA,NA,0,NA,NA,-1.15038204193115,-1.18651223182678,0.059076401175768
+2245,81943,446697.952,82043,446597.952,44,22,10.25,0.0205,5.30122911711538,0.304888888888889,11.1803398874989,-0.00679926311759118,0,0,0,NA,NA,0,NA,NA,-1.07229198349847,-1.13641512393951,0.0987040266365018
+2246,81943,446597.952,82043,446497.952,45,22,6.75,0.00964285714285714,4.56716676509826,0.108465608465608,15.2353119408098,6.79719897902942e-05,0.0075,0.75,1,44.4894453484604,1,0.75,25.5051460266113,22.3606796264648,-0.965224941571554,-1.07693231105804,0.147262882535033
+2247,81943,446497.952,82043,446397.952,46,22,27.5,0.025,4.42078430896101,0.161255411255411,13.2900293385266,-0.00442168821443602,0.06,6,2,77.9511773564623,0.832026875699888,5,5.68898661931356,0,-0.84796228673723,-0.939265012741089,0.141318300306956
+2248,81943,446397.952,82043,446297.952,47,22,4,0.00666666666666667,2.29585531752327,0.047979797979798,14.879551304203,0.00701870265249113,0.04,4,4,55.6443768082932,0.565972222222222,1.75,9.36908710002899,0,-0.837638060251872,-0.944555938243866,0.143457374050129
+2249,81943,446297.952,82043,446197.952,48,22,5.5,0.00916666666666667,2.93902825293574,0.0954861111111111,19.2457374455048,0.00180925281295458,0.0375,3.75,2,73.5560880530256,0.763872491145218,3.5,2.94280904134115,0,-0.930860857168833,-1.05495631694794,0.174294361065875
+2250,81943,446197.952,82043,446097.952,49,22,3.25,0.00541666666666667,1.66820025981984,0.146296296296296,35.7086574975461,0.0100100913626784,0.0325,3.25,5,45.8758855837313,0.540625897215045,1.75,7.58260638897236,0,-0.989274616042773,-1.10831451416016,0.202683250344172
+2251,81943,446097.952,82043,445997.952,50,22,17.75,0.0197222222222222,5.86245066567595,0.288624338624339,10.3934466291663,0.0119841000702218,0.1575,15.75,3,85.3561605090612,0.838144051793903,8.25,4.20296962677486,0,-0.89050461186303,-1.02839183807373,0.195392797979027
+2252,81943,445997.952,82043,445897.952,51,22,0.25,0.0025,0,0,NA,-0.0132184764538215,0,0,0,NA,NA,0,NA,NA,-1.10011060039202,-1.30311691761017,0.237633393522034
+2253,81943,445897.952,82043,445797.952,52,22,23.5,0.0195833333333333,5.94151182593541,0.241871962460198,10,-0.0249894465663829,0,0,0,NA,NA,0,NA,NA,-1.49849038653904,-1.64493668079376,0.213019985977366
+2254,81943,445797.952,82043,445697.952,53,22,50.25,0.1675,11.5320642688568,0.410321489001692,25,-0.0120730672427635,0,0,0,NA,NA,0,NA,NA,-1.69365189472834,-1.76402103900909,0.101712823815212
+2255,81943,445697.952,82043,445597.952,54,22,27.75,0.2775,26.0247858474292,0.842342342342342,NA,-0.0151797039725534,0.04,4,2,68.1291563866194,0.696180555555556,2.25,23.1750670671463,5,-1.68146541383531,-1.71660780906677,0.0527916851749778
+2256,81943,445597.952,82043,445497.952,55,22,14.25,0.0475,8.51906158685264,0.216161616161616,12.7240226919466,-0.0169454443979339,0.025,2.5,2,60.6037822408496,0.842209072978304,2,40.6209667205811,26.9258232116699,-1.61732983589172,-1.69233322143555,0.139247231752639
+2257,81943,445497.952,82043,445397.952,56,22,5.75,0.0071875,2.51118515843036,0.210069444444444,13.4047880912215,0.000579893726510363,0.01,1,1,52.6315789473684,1,1,14.7904047966003,11.1803398132324,-1.5623783270518,-1.77497470378876,0.265891773462071
+2258,81943,445397.952,82043,445297.952,57,22,37.5,0.1875,16.6845053243731,0.684216263352954,30.4138126514911,0.0502725279554579,0.52,52,1,97.9644711022996,0.913867355727821,52,3.81785026880411,0,-1.70196061664157,-1.92084467411041,0.351678271029032
+2259,81943,445297.952,82043,445197.952,58,22,54.75,0.1825,18.5873032418672,0.622254607548725,16.4288346035568,0.0262414161498236,0.325,32.5,3,92.3694336475624,0.868729488982653,26.75,5.53838427617,0,-1.68867178757985,-2.14093351364136,0.360782270126277
+2260,81943,445197.952,82043,445097.952,59,22,56.5,0.188333333333333,14.6132970393132,0.370965001698947,13.4628120507726,-0.031244601137987,0.0425,4.25,3,62.446722000152,0.62402088772846,2,4.15558534509995,0,-1.94268798828125,-2.2018826007843,0.369095350761002
+2261,81943,445097.952,82043,444997.952,60,22,49.5,0.2475,21.4514287070472,0.772242739634044,44.7213595499958,0.0403109968776698,0.425,42.5,2,94.6603171915973,0.872204472843451,36.5,0.967632203943589,0,-2.36580914258957,-2.64625692367554,0.33914012614301
+2262,81943,444997.952,82043,444897.952,61,22,47.5,0.2375,19.2176061617654,0.701253078371722,42.7200187265877,0.0167563611040941,0.2725,27.25,4,89.6706208313493,0.769742006384426,19.5,1.88656707203716,0,-2.38031019104852,-2.5737202167511,0.213272997493906
+2263,81943,444897.952,82043,444797.952,62,22,77.5,0.3875,18.3811281394245,0.421790722761597,15,-0.00566827329951593,0.125,12.5,1,90.3766993434411,0.798319327731092,12.5,0,0,-2.10260656476021,-2.2954261302948,0.186976278498791
+2264,81943,444797.952,82043,444697.952,63,22,79.75,0.7975,37.8306991963113,0.844827586206896,NA,-0.0591792947790964,0.0025,0.25,1,0,NA,0.25,0,0,-1.83685439162784,-1.94799339771271,0.169410305313944
+2265,81943,444697.952,82043,444597.952,64,22,93.25,0.9325,37.8164791617075,0.892314566577301,NA,-0.0859211175050587,0,0,0,NA,NA,0,NA,NA,-1.68204253911972,-1.78997838497162,0.162646360124886
+2266,81943,444597.952,82043,444497.952,65,22,94.75,0.9475,38.0134582844378,0.90457343887423,NA,-0.0850128940527793,0,0,0,NA,NA,0,NA,NA,-1.58844353093041,-1.7249401807785,0.251832493806325
+2267,81943,444497.952,82043,444397.952,66,22,95.25,0.9525,38.1380321000397,0.898512685914261,NA,-0.0424120701223728,0.1425,14.25,2,88.2177101271521,0.785803534241685,12.75,0,0,-1.72602836290995,-2.06856775283813,0.395777293240292
+2268,81943,444397.952,82043,444297.952,67,22,94.25,0.9425,38.1773088109765,0.887709991158267,NA,-0.0395703792985296,0.1425,14.25,2,86.7020839439872,0.892901767120843,12,0.350877192982456,0,-2.33623039722443,-2.65786385536194,0.380890691424582
+2269,81943,444297.952,82043,444197.952,68,22,77.25,0.7725,38.6528360121635,0.800431499460626,NA,-0.072112455565948,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,0,0,-2.76744174957275,-2.89436864852905,0.231302352287036
+2270,81943,444197.952,82043,444097.952,69,22,89.25,0.8925,37.870041379723,0.856209150326797,NA,-0.0753337895432196,0,0,0,NA,NA,0,NA,NA,-2.76540372769038,-2.85091423988342,0.105868719096398
+2271,81943,444097.952,82043,443997.952,70,22,78.75,0.7875,37.8771435531,0.837566137566138,NA,-0.0742803378053941,0,0,0,NA,NA,0,NA,NA,-2.61966239081489,-2.71060109138489,0.162828713272623
+2272,81943,443997.952,82043,443897.952,71,22,91.25,0.9125,38.4923275954642,0.862100456621005,NA,-0.0877522551524453,0,0,0,NA,NA,0,NA,NA,-2.52476777633031,-2.64619636535645,0.127674102675495
+2273,81943,443897.952,82043,443797.952,72,22,67.75,0.33875,26.379350295665,0.766115702479339,14.142135623731,-0.0483061627958205,0.0025,0.25,1,0,NA,0.25,15,15,-2.59735316700406,-2.7326807975769,0.13873951110415
+2274,81943,443797.952,82043,443697.952,73,22,60,0.3,24.5616912940636,0.829706101190476,10,-0.042379825716489,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,17.1596987588065,10,-2.68634706735611,-2.75032925605774,0.0750954988163098
+2275,81943,443697.952,82043,443597.952,74,22,81.75,0.8175,35.5317272608205,0.890927624872579,NA,-0.0200717892771354,0.1125,11.25,2,86.796696487485,0.940696812453669,10.75,2.20315856933594,0,-2.74714928203159,-2.8071813583374,0.076988507342677
+2276,81943,443597.952,82043,443497.952,75,22,74.25,0.7425,33.8306135950725,0.904601571268238,NA,-0.0810836130438838,0,0,0,NA,NA,0,NA,NA,-2.74803423881531,-2.81087470054626,0.118278153420713
+2277,81943,443497.952,82043,443397.952,76,22,77.25,0.7725,37.2981521575171,0.849514563106796,NA,-0.0579213748193797,0,0,0,NA,NA,0,NA,NA,-2.66589829656813,-2.74664735794067,0.131337032155409
+2278,81943,443397.952,82043,443297.952,77,22,75.5,0.3775,23.0810131818789,0.710627177700348,11.1803398874989,-0.035509472893682,0,0,0,NA,NA,0,NA,NA,-2.53280650244819,-2.61395645141602,0.102806617839355
+2279,81943,443297.952,82043,443197.952,78,22,86.75,0.8675,38.1567768893866,0.860710854947166,NA,-0.0341455506913371,0,0,0,NA,NA,0,NA,NA,-2.67763084173203,-2.82062005996704,0.154665604681125
+2280,81943,443197.952,82043,443097.952,79,22,30,0.1,8.8875419321358,0.239171374764595,25.8772019008597,0.0198344910973356,0.1675,16.75,1,92.4032163835468,0.928133261466595,16.75,13.2327943773412,0,-2.98615625169542,-3.10917496681213,0.200431878756813
+2281,81943,443097.952,82043,442997.952,80,22,2.5,0.005,1.86988446395335,0.125,15.8806248664033,-0.0376506299717585,0,0,0,NA,NA,0,NA,NA,-3.22541906436284,-3.31307125091553,0.103987372045615
+2282,81943,442997.952,82043,442897.952,81,22,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,20.6155281280883,0.111018006042432,0.7,70,1,98.9724810035032,0.987325728770596,70,24.7675419262477,0,-3.28036003642612,-3.32740616798401,0.0923995934861601
+2283,81943,442897.952,82043,442797.952,82,22,0.5,0.0025,0,0,20.6155281280883,0.0166716188678765,0.125,12.5,1,90.3766993434411,0.892436974789916,12.5,41.0172383880615,30,-3.17641931772232,-3.27841472625732,0.144241863567663
+2284,81943,442797.952,82043,442697.952,83,22,0.25,0.0025,0,0,NA,0.00816395008394465,0,0,0,NA,NA,0,NA,NA,-3.12823428048028,-3.22607517242432,0.165709265464065
+2285,81943,442697.952,82043,442597.952,84,22,6.25,0.0078125,3.33372570769914,0.161458333333333,11.1690509954173,0.0307696462909371,0.235,23.5,5,84.2558664938114,0.774354186118892,10,19.3096147699559,0,-3.04876182476679,-3.19061708450317,0.190167992954491
+2286,81943,442597.952,82043,442497.952,85,22,9.5,0.019,7.92923653784069,0.203011204481793,10.4721359549996,0.071272713506587,0.5575,55.75,2,96.3461761645533,0.858757062146893,49.75,16.7982088183074,0,-3.07959032058716,-3.2369213104248,0.207557172565155
+2287,81943,442497.952,82043,442397.952,86,22,5.5,0.011,4.23869843424946,0.208796296296296,20.6489718207188,0.0520427706019836,0.66,66,1,98.7846583695088,0.887106357694593,66,20.8035528515324,0,-3.22187040249507,-3.27288317680359,0.0825871479980819
+2288,81943,442397.952,82043,442297.952,87,22,9.5,0.00791666666666667,2.65774463775942,0.1875,14.1947406398403,-0.0347516477631279,0.05,5,2,73.2254128934661,0.728353140916808,3.5,10.8361199378967,0,-3.18785230318705,-3.22284770011902,0.0582371314281611
+2289,81943,442297.952,82043,442197.952,88,22,4.75,0.00791666666666667,2.10122007861377,0.0886752136752137,28.2223813730374,0.0265547689894356,0.2475,24.75,1,94.6838124709557,0.89547948784949,24.75,17.9546589514222,0,-3.16615053017934,-3.2300386428833,0.0880426296823095
+2290,81943,442197.952,82043,442097.952,89,22,6,0.02,7.93027323527683,0.331959706959707,10,0.00274179845794833,0.135,13.5,2,85.1132402484988,0.850829759462987,8.75,21.1232911569101,0,-3.17794879277547,-3.23286867141724,0.0926692034765526
+2291,81943,442097.952,82043,441997.952,90,22,3.5,0.005,1.92857142857143,0.10952380952381,20.3384514802141,-0.0437466502508323,0,0,0,NA,NA,0,NA,NA,-3.16504663891262,-3.19371747970581,0.0712258463290194
+2292,81943,441997.952,82043,441897.952,91,22,2.25,0.0075,3.29759146708888,0.155555555555556,14.4280904158206,-0.0082110639874827,0,0,0,NA,NA,0,NA,NA,-3.04294596115748,-3.12492775917053,0.105405738390514
+2293,81943,441897.952,82043,441797.952,92,22,1,0.00333333333333333,0.833333333333333,0.0555555555555556,20.6155281280883,-0.0460036267269425,0,0,0,NA,NA,0,NA,NA,-2.83774267302619,-2.90869450569153,0.127973884583564
+2294,81943,441797.952,82043,441697.952,93,22,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,38.3404791700854,0.0135777829927611,0.325,32.5,1,96.0309682178207,0.956243162994218,32.5,28.1757889380822,7.07106781005859,-2.68576264381409,-2.72485899925232,0.0453082613310655
+2295,81943,441697.952,82043,441597.952,94,22,4.75,0.0095,3.7316635143513,0.306666666666667,21.2462112512353,-0.0496169864571129,0.02,2,1,68.0470115164975,0.897959183673469,2,22.607381105423,15.8113880157471,-2.68690853648716,-2.73415470123291,0.0566455385147013
+2296,81943,441597.952,82043,441497.952,95,22,4.25,0.0141666666666667,4.91251757837987,0.300925925925926,17.4535599249993,-0.0355941173991596,0.02,2,1,68.0470115164975,0.795918367346939,2,5.98530697822571,0,-2.78490336736043,-2.8576500415802,0.0774231331272102
+2297,81943,441497.952,82043,441397.952,96,22,2,0.005,2.08333333333333,0.138888888888889,18.2323156176224,-0.0399458845097797,0,0,0,NA,NA,0,NA,NA,-2.94703080919054,-3.04052019119263,0.148423408462574
+2298,81943,441397.952,82043,441297.952,97,22,2.25,0.0075,3.29124056198988,0.259259259259259,17.9264562718086,0.00402185068847757,0.1575,15.75,3,82.5559734749869,0.838144051793903,7.75,28.0111318315778,5,-3.23198829094569,-3.35098719596863,0.150546665550328
+2299,81943,441297.952,82043,441197.952,98,22,0,NA,NA,NA,NA,-0.0456233533043496,0.015,1.5,2,45.0766242787986,0.709934735315446,1,24.1139386494954,20.6155281066895,-3.44225819905599,-3.50821924209595,0.0924282844343198
+2300,81943,441197.952,82043,441097.952,99,22,0,NA,NA,NA,NA,-0.0395968900123989,0,0,0,NA,NA,0,NA,NA,-3.52122684319814,-3.58055281639099,0.0877297084877164
+2301,82043,451097.952,82143,450997.952,0,23,23,0.046,8.3628090150898,0.404230503795721,13.5711554685924,0.0523505211092015,0.4625,46.25,6,90.6054160998363,0.760641914864681,23,5.06048655123324,0,3.99312535921733,3.43284726142883,0.637597071292582
+2302,82043,450997.952,82143,450897.952,1,23,12.5,0.00694444444444444,2.19918899129364,0.119708994708995,13.8979962234272,0.0317842583218589,0.285,28.5,4,87.5202597208203,0.748794894425962,12.25,7.37243623900832,0,3.34361743927002,2.87863898277283,0.515660792388581
+2303,82043,450897.952,82143,450797.952,2,23,20.25,0.0135,3.49814533304153,0.254108545775212,13.3927685042594,0.0291308551359907,0.1975,19.75,5,82.8795550350182,0.804183355585225,14.5,7.84636639945115,0,2.70619143380059,2.33306241035461,0.518152843921523
+2304,82043,450797.952,82143,450697.952,3,23,32,0.04,6.37411761633838,0.22265551477508,10,0.0449435895312854,0.4625,46.25,2,97.2423712040982,0.842241262069903,46,4.26109435622757,0,2.0388590892156,1.35272395610809,0.617471609288903
+2305,82043,450697.952,82143,450597.952,4,23,25,0.03125,7.37580069293954,0.157093603286385,11.2903094389037,0.00932543044653357,0.12,12,4,75.8704776716942,0.695121951219512,4,3.64139763514201,0,0.853242029746374,0.40025994181633,0.751147315684949
+2306,82043,450597.952,82143,450497.952,5,23,5.25,0.0175,10.536042543093,0.187321937321937,11.380711874577,0.00110822841914796,0.0625,6.25,2,75.6672859078419,0.84,4.25,5.60438247680664,0,0.152591254251699,-0.0514374487102032,0.276221349170543
+2307,82043,450497.952,82143,450397.952,6,23,2.5,0.00625,2.67057064702625,0.15,29.4782678144571,-0.0127180511711549,0.0575,5.75,2,74.957192004106,0.764220453875626,4,15.1480383665665,0,-0.161605791085296,-0.218734726309776,0.105162416977919
+2308,82043,450397.952,82143,450297.952,7,23,2.25,0.0075,3.29559128998825,0.137037037037037,11.380711874577,-0.00391024795207613,0.0025,0.25,1,0,NA,0.25,0,0,-0.28470741584897,-0.408738791942596,0.143449325087701
+2309,82043,450297.952,82143,450197.952,8,23,7.25,0.018125,8.8126589168051,0.236276455026455,22.9809703885628,-0.00529145708573424,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,4.02368927001953,0,-0.196052824457486,-0.257586121559143,0.147388684420806
+2310,82043,450197.952,82143,450097.952,9,23,33.5,0.08375,9.61272897053751,0.418738668738669,16.7318889382175,0.0269811461917197,0.2475,24.75,3,91.7049491758789,0.776027473963194,22.25,2.32682160656862,0,0.0342817334975633,-0.16572730243206,0.348669808235576
+2311,82043,450097.952,82143,449997.952,10,23,32,0.0246153846153846,5.13128750312116,0.249660645867542,12.1593531875804,0.0369831074828289,0.3225,32.25,4,94.2113816230109,0.792729842192039,30.5,3.92367198855378,0,0.686872398480773,0.0949060991406441,0.743158553408678
+2312,82043,449997.952,82143,449897.952,11,23,33.25,0.0221666666666667,4.02292162059162,0.249252327193504,10.8269676557482,0.0277720184499594,0.1475,14.75,7,77.5560277774411,0.64349376114082,8.75,6.69405471672446,0,1.54902633031209,1.04275560379028,0.65815702686161
+2313,82043,449897.952,82143,449797.952,12,23,28,0.0164705882352941,3.74413314912176,0.21504024046239,11.2989434897055,0.0218488425787837,0.1025,10.25,5,73.6334391812566,0.660893787089742,4.5,4.80848210032393,0,1.8269008298715,1.48858797550201,0.410289255238732
+2314,82043,449797.952,82143,449697.952,13,23,42.75,0.0855,9.75349196147369,0.316666666666667,11.3005630797458,0.0438310210129566,0.44,44,3,93.8642342391864,0.774725274725275,30.5,3.86644956198606,0,1.64330506324768,1.38032042980194,0.357845399697886
+2315,82043,449697.952,82143,449597.952,14,23,59.75,0.199166666666667,19.1613313143665,0.68936678614098,10.3934466291663,0.0608438134369499,0.5375,53.75,4,96.125504417386,0.772972972972973,50,1.20681214443473,0,0.779198316236337,0.207089394330978,0.674763460918199
+2316,82043,449597.952,82143,449497.952,15,23,81.25,0.40625,19.9340261233289,0.516769865841073,10,0.0665774437366053,0.7125,71.25,1,99.0279065499043,0.766385463984426,71.25,0.572927267509594,0,-0.197583364038211,-0.863429069519043,1.01465366402333
+2317,82043,449497.952,82143,449397.952,16,23,23.75,0.11875,18.3921437309017,0.625150966183575,22.3606797749979,0.0146249316697822,0.25,25,4,85.0166683602649,0.748148148148148,9.5,7.29033065795898,0,-2.63030866781871,-5.33243131637573,2.91836904275129
+2318,82043,449397.952,82143,449297.952,17,23,8.5,0.017,5.31376473556272,0.290643274853801,22.0972183479651,-0.00224295826126763,0.095,9.5,4,74.0100306677695,0.701832851004122,3.5,7.60549500114039,0,-5.07230310969883,-5.44256258010864,1.50107046779052
+2319,82043,449297.952,82143,449197.952,18,23,11.5,0.0164285714285714,5.29315236544051,0.261904761904762,14.8708085069005,0.0230444125941659,0.285,28.5,4,87.6475156495673,0.775952203136669,11.25,7.13643975843463,0,-4.11568527420362,-5.24256467819214,2.129089485823
+2320,82043,449197.952,82143,449097.952,19,23,17,0.034,6.95164115039611,0.331510947912417,17.4084889114037,0.0316384469297918,0.31,31,6,86.3194448544809,0.780998389694042,17.25,13.8472323417664,0,-1.04351070192125,-1.33427309989929,0.764657711221147
+2321,82043,449097.952,82143,448997.952,20,23,12,0.0171428571428571,4.70597661644858,0.12797619047619,20.9096057549602,-0.00839446403793772,0.15,15,1,91.6737426448862,0.852941176470588,15,12.5631686528524,0,-0.783850252628326,-1.02322125434875,0.558064604787795
+2322,82043,448997.952,82143,448897.952,21,23,8,0.016,3.87068205695863,0.248787878787879,26.9570721850566,0.0422154865874472,0.4375,43.75,1,97.3060110945426,0.972480220158239,43.75,22.7116415514265,0,-0.804741169015566,-0.918737649917603,0.288412333705216
+2323,82043,448897.952,82143,448797.952,22,23,30,0.1,11.6630912312927,0.508928571428571,13.3333333333333,0.0668421319397748,0.5625,56.25,1,98.2456140350877,0.891156462585034,56.25,15.7915411207411,0,-0.827033870750003,-0.909023344516754,0.28245972686817
+2324,82043,448797.952,82143,448697.952,23,23,14.25,0.00890625,2.73257233157628,0.106163194444444,10.9402396913266,-0.0199933968042978,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,3.33333333333333,0,-0.95041079322497,-1.43950915336609,0.370504965084159
+2325,82043,448697.952,82143,448597.952,24,23,9.25,0.0185,7.05885901627701,0.17,15.4368141246024,-0.0175443473315045,0,0,0,NA,NA,0,NA,NA,-0.779556387000614,-0.836123764514923,0.0908140468218763
+2326,82043,448597.952,82143,448497.952,25,23,23.25,0.0290625,6.41796928819365,0.315439130633096,11.3975424859374,-0.0280951517920539,0,0,0,NA,NA,0,NA,NA,-0.799513444304466,-0.844679713249207,0.0653016892872819
+2327,82043,448497.952,82143,448397.952,26,23,13.25,0.01325,4.21226086974028,0.188383838383838,10.5901699437495,-0.0102232953345265,0,0,0,NA,NA,0,NA,NA,-0.866517490810818,-0.89471161365509,0.0507747136448883
+2328,82043,448397.952,82143,448297.952,27,23,14.25,0.0203571428571429,8.31451516866415,0.166991552956465,18.855961169763,0.00818635641069704,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047,-0.918502956628799,-0.934661209583282,0.0234254174904476
+2329,82043,448297.952,82143,448197.952,28,23,12.25,0.01225,4.3753837351149,0.181851851851852,11.4156547790585,0.00371841289939766,0.0225,2.25,4,37.1792809538246,0.403239556692242,0.75,8.36916393703885,5,-0.936515311400096,-0.939999997615814,0.00907881343506159
+2330,82043,448197.952,82143,448097.952,29,23,12.5,0.0138888888888889,4.81886891008316,0.123456790123457,11.2854195599796,-0.00578232361666778,0.005,0.5,1,30.8308651382582,1,0.5,19.0138778686523,18.0277557373047,-0.909968808293343,-0.934473693370819,0.0426384852035429
+2331,82043,448097.952,82143,447997.952,30,23,26.5,0.033125,5.09994741771851,0.161066308243728,10.5901699437495,-0.0124837117405332,0.025,2.5,5,42.4730329554994,0.368836291913215,1.5,23.8737998962402,0,-0.806776364644369,-0.880846202373505,0.122553238004994
+2332,82043,447997.952,82143,447897.952,31,23,27.5,0.0916666666666667,13.0141277604987,0.524216524216524,35.978305734435,-0.0280755712581959,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-0.632876372999615,-0.758582472801208,0.19402930285128
+2333,82043,447897.952,82143,447797.952,32,23,6,0.00666666666666667,2.61709711830232,0.153880070546737,20.2807034802004,-0.0438460445270175,0.015,1.5,3,35.0877192982456,0.564902102973169,1,20.4844156901042,11.1803398132324,-0.463850927849611,-0.57381808757782,0.103011783707862
+2334,82043,447797.952,82143,447697.952,33,23,4.5,0.00642857142857143,2.68132285705147,0.158730158730159,30.5909509791815,-0.00735942804565639,0.01,1,3,15.8692205350002,0.242424242424242,0.5,11.25,5,-0.392991125583649,-0.466887503862381,0.122090452133971
+2335,82043,447697.952,82143,447597.952,34,23,6,0.00857142857142857,2.87816006999262,0.172799422799423,12.3575450569613,-0.00782953211608401,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-0.455656389395396,-0.537403345108032,0.134150600855197
+2336,82043,447597.952,82143,447497.952,35,23,17.5,0.0583333333333333,8.68178204085885,0.41292735042735,23.3333333333333,0.0153149277519424,0.135,13.5,3,83.6081834714533,0.813537199328734,10.25,5.6697831330476,0,-0.464843018187417,-0.550445079803467,0.13529637061547
+2337,82043,447497.952,82143,447397.952,36,23,20.5,0.025625,4.00433864141248,0.226041666666667,19.5563511889227,0.00991808963037329,0.015,1.5,3,34.6304654967883,0.274836838288615,0.75,8.78052584330241,5,-0.65456714729468,-0.83478170633316,0.186021801669676
+2338,82043,447397.952,82143,447297.952,37,23,9,0.01,1.92574005644439,0.148569023569024,18.5399897669076,0.00162785551600791,0.0825,8.25,3,76.9372220654738,0.818346957311535,4.75,7.79394282716693,0,-0.953402664926317,-1.07205069065094,0.152291225564982
+2339,82043,447297.952,82143,447197.952,38,23,15.25,0.0108928571428571,3.56126168302076,0.187603246426776,12.8349496886731,0.00738019536503998,0.0825,8.25,7,63.4406473043933,0.596326571803411,2.5,5.37556191646692,0,-1.11141081651052,-1.20432782173157,0.115159214680629
+2340,82043,447197.952,82143,447097.952,39,23,14.75,0.0163888888888889,3.77659207663488,0.222263484518386,15.1447250994906,0.00845255961816292,0.065,6.5,3,77.382197567949,0.739141776444502,5.5,11.4942569732666,0,-1.20356187555525,-1.24408864974976,0.0673333463865493
+2341,82043,447097.952,82143,446997.952,40,23,9.5,0.0158333333333333,3.0208946238665,0.219907407407407,14.8765342361364,0.00181664377873517,0.06,6,3,74.2383376570041,0.804031354983203,5,15.2326172192891,5,-1.23977495233218,-1.25889217853546,0.0381309714368929
+2342,82043,446997.952,82143,446897.952,41,23,15.25,0.038125,9.17344673923022,0.301551870748299,21.25,-0.00266641885484205,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10,-1.23984675937229,-1.2587662935257,0.041166706661541
+2343,82043,446897.952,82143,446797.952,42,23,9.5,0.0158333333333333,5.7689812015057,0.0538720538720539,11.5774351891601,0.00934089752097862,0.0025,0.25,1,0,NA,0.25,5,5,-1.20972102880478,-1.2418075799942,0.0464810722450469
+2344,82043,446797.952,82143,446697.952,43,23,12.75,0.01275,4.37302324243841,0.106535947712418,12.4823624392907,0.0156642318422564,0.02,2,3,44.8468832832137,0.591836734693878,1.25,1.25,0,-1.16108479764726,-1.18396830558777,0.0445323693106838
+2345,82043,446697.952,82143,446597.952,44,23,8,0.0114285714285714,3.3486939231281,0.180451127819549,12.7775312999988,0.00564931678775793,0,0,0,NA,NA,0,NA,NA,-1.09512413872613,-1.14442873001099,0.0725536862854909
+2346,82043,446597.952,82143,446497.952,45,23,10,0.0111111111111111,4.32004549369409,0.116301907968575,15.3624865791659,0.0108687629022188,0.0525,5.25,4,65.6392288233205,0.670184696569921,3,3.29248264857701,0,-0.964747309684753,-1.06702649593353,0.1036256726266
+2347,82043,446497.952,82143,446397.952,46,23,4,0.00571428571428571,2.43117256168807,0.11547619047619,20.8744231832882,0.00906519316125014,0.0625,6.25,2,81.5567131828758,0.813333333333333,6,9.67870864868164,0,-0.802950481573741,-0.856763064861298,0.0693253140795035
+2348,82043,446397.952,82143,446297.952,47,23,24.5,0.030625,5.07167529107538,0.207532051282051,12.1294454061958,-0.00320800114677695,0.0425,4.25,3,64.6561909374055,0.74934725848564,3,5.7290319554946,0,-0.768056099613508,-0.796766877174377,0.0264256925573294
+2349,82043,446297.952,82143,446197.952,48,23,11.25,0.01875,5.32346545974449,0.218106995884774,13.0824239311783,0.00626245204433872,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,25.035587310791,0,-0.808045486609141,-0.823775291442871,0.0321427557379219
+2350,82043,446197.952,82143,446097.952,49,23,9.25,0.00925,3.59482417003964,0.164646464646465,13.3969843849352,0.005188120727762,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,6.05622046334403,0,-0.787700315316518,-0.826471567153931,0.0583667301135151
+2351,82043,446097.952,82143,445997.952,50,23,16,0.016,3.32194383230473,0.208518518518519,12.0466843698169,0.0127978100746958,0.1025,10.25,4,78.4703875735189,0.628597957288765,5,4.92629548979969,0,-0.749956250190735,-0.816592752933502,0.0943251008110287
+2352,82043,445997.952,82143,445897.952,51,23,0,NA,NA,NA,NA,-0.0179769359129114,0,0,0,NA,NA,0,NA,NA,-1.0555105805397,-1.32239317893982,0.279696919173109
+2353,82043,445897.952,82143,445797.952,52,23,26.25,0.04375,7.64513357962324,0.303893097643098,10.3934466291663,-0.0278815260203373,0,0,0,NA,NA,0,NA,NA,-1.50365881125132,-1.60971081256866,0.180136590851458
+2354,82043,445797.952,82143,445697.952,53,23,74.75,0.7475,33.5928645757403,0.920289855072464,NA,0.016713222905455,0.12,12,2,88.0388533908558,0.861419068736142,11.5,0.355647246042887,0,-1.62055425842603,-1.7107458114624,0.134558214930574
+2355,82043,445697.952,82143,445597.952,54,23,29.5,0.0491666666666667,11.1320489993437,0.563865015703251,12.6967233145832,0.0234050854160523,0.19,19,5,86.6162004239777,0.594619495117008,14.25,4.32027274683902,0,-1.50112395816379,-1.63439035415649,0.275032511129457
+2356,82043,445597.952,82143,445497.952,55,23,20.25,0.0253125,6.15144091511776,0.326287774725275,16.8954524009634,0.0045496707260827,0.155,15.5,5,82.6636770723906,0.737015121630506,12,9.68567685158022,0,-1.36348813109928,-1.54482936859131,0.20695137362825
+2357,82043,445497.952,82143,445397.952,56,23,48.75,0.0541666666666667,5.04596711557719,0.188386844636845,12.5363914970186,0.0391271313353354,0.45,45,2,96.1308328719747,0.863499863499863,42.75,4.18528291914198,0,-1.35986916224162,-1.59588849544525,0.19654931546336
+2358,82043,445397.952,82143,445297.952,57,23,64.5,0.16125,14.5790617769193,0.471768507638073,10.2950849718747,0.0130913618074919,0.2175,21.75,5,83.454126333177,0.760898691126456,10.5,5.32311636826088,0,-1.54510193400913,-1.69165933132172,0.165806457685725
+2359,82043,445297.952,82143,445197.952,58,23,74,0.74,38.3660185987641,0.752252252252252,NA,0.0188765963708101,0.2825,28.25,5,91.6690478632524,0.836031973765116,26,1.61124838769963,0,-1.69457479317983,-1.85715985298157,0.193645731315615
+2360,82043,445197.952,82143,445097.952,59,23,93.5,0.4675,18.5650262820334,0.456434316353887,10,-0.110753791198367,0.0975,9.75,2,81.5825809614979,0.86362667803111,7,1.02564102564103,0,-1.97731815444099,-2.09863615036011,0.201298965688971
+2361,82043,445097.952,82143,444997.952,60,23,47.75,0.4775,39.7272327887528,0.744328097731239,NA,-0.0713384551821946,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0,-2.22459173202515,-2.37685585021973,0.187659659575771
+2362,82043,444997.952,82143,444897.952,61,23,50.75,0.25375,16.9116093763692,0.365511551155116,11.1803398874989,0.00762868613401224,0.135,13.5,3,87.3836940408601,0.763813785816396,12.25,0,0,-2.33882980876499,-2.4697413444519,0.193783141360603
+2363,82043,444897.952,82143,444797.952,62,23,41,0.205,21.1538543482158,0.768543956043956,51.478150704935,0.00632651718344278,0.2125,21.25,2,91.4987138602605,0.840218648165668,18.75,0.0588235294117647,0,-2.06649594505628,-2.42208099365234,0.271167715584408
+2364,82043,444797.952,82143,444697.952,63,23,61.5,0.3075,16.5299711428038,0.422448979591837,51.478150704935,0.0143719202513967,0.1825,18.25,6,81.7511552460113,0.722859327217125,11.25,0.547945205479452,0,-1.69711299737295,-1.81117224693298,0.165615670985712
+2365,82043,444697.952,82143,444597.952,64,23,87,0.87,37.8357299839941,0.85823754789272,NA,0.0288348282634979,0.4375,43.75,1,97.3060110945426,0.933952528379773,43.75,0.285714285714286,0,-1.63432173927625,-1.7357212305069,0.108915400086098
+2366,82043,444597.952,82143,444497.952,65,23,65.5,0.655,40.7631611093886,0.779262086513995,NA,-0.0200587390486908,0.23,23,1,94.2887150496276,0.936648717136522,23,0.0543478260869565,0,-1.89470953411526,-2.04065489768982,0.253248398123396
+2367,82043,444497.952,82143,444397.952,66,23,81,0.81,38.0965806757204,0.781893004115226,NA,-0.0688428227347322,0.0675,6.75,2,77.4354064205079,0.875303946630089,5.25,0.37037037037037,0,-2.1803925037384,-2.28690242767334,0.234626439146152
+2368,82043,444397.952,82143,444297.952,67,23,68.25,0.2275,14.9982233096273,0.426694619147449,10,-0.0369585936510703,0.185,18.5,2,89.658850438164,0.915054270882492,16,2.96573798720901,0,-2.49060690402985,-2.743088722229,0.260455033685396
+2369,82043,444297.952,82143,444197.952,68,23,87.25,0.43625,19.0041048019033,0.420258620689655,10,-0.0476453729216883,0.14,14,2,89.6329112009824,0.832174538479981,13.5,0.357142857142857,0,-2.68521030743917,-2.83751201629639,0.219850926887116
+2370,82043,444197.952,82143,444097.952,69,23,97.75,0.9775,37.9124100310843,0.918158567774936,NA,-0.0837636867462425,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-2.65117863814036,-2.79560351371765,0.118861531620846
+2371,82043,444097.952,82143,443997.952,70,23,97,0.97,37.9927886685587,0.910223367697594,NA,-0.0971965878037736,0,0,0,NA,NA,0,NA,NA,-2.50662891070048,-2.61670398712158,0.140198574899111
+2372,82043,443997.952,82143,443897.952,71,23,96,0.96,37.9378120686403,0.910590277777778,NA,-0.110252130014123,0,0,0,NA,NA,0,NA,NA,-2.53249486287435,-2.76079559326172,0.181419302435831
+2373,82043,443897.952,82143,443797.952,72,23,57.25,0.28625,27.2550145208564,0.732449494949495,10,-0.0580635803194309,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,14.1626258577619,10,-2.80019214418199,-2.95636034011841,0.240983770881355
+2374,82043,443797.952,82143,443697.952,73,23,90.25,0.9025,37.4285661758481,0.872576177285319,NA,-0.0741909851052333,0,0,0,NA,NA,0,NA,NA,-2.73719414075216,-2.82942509651184,0.109933657646462
+2375,82043,443697.952,82143,443597.952,74,23,82.5,0.275,12.9988709848784,0.365485117018859,10,-0.0608991996937948,0,0,0,NA,NA,0,NA,NA,-2.70236794153849,-2.85460686683655,0.166126013876794
+2376,82043,443597.952,82143,443497.952,75,23,71.75,0.7175,33.9947263482247,0.89198606271777,NA,-0.0526437642944074,0,0,0,NA,NA,0,NA,NA,-2.79333122571309,-2.93179535865784,0.203093494698996
+2377,82043,443497.952,82143,443397.952,76,23,66.25,0.6625,37.8370369708696,0.833333333333333,NA,-0.049469194230478,0,0,0,NA,NA,0,NA,NA,-2.68966394000583,-2.77609395980835,0.113423366193803
+2378,82043,443397.952,82143,443297.952,77,23,73,0.365,27.6609817822796,0.835523536865819,15,-0.0514602161389485,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.67525453037686,-2.73017978668213,0.084591865283099
+2379,82043,443297.952,82143,443197.952,78,23,90.5,0.905,37.0708656960923,0.905616942909761,NA,-0.0303785652404622,0.0575,5.75,1,83.3142722045184,0.91158267020336,5.75,0.652173913043478,0,-2.7696261604627,-2.965407371521,0.134934372790902
+2380,82043,443197.952,82143,443097.952,79,23,6.5,0.013,5.21511993844573,0.19281045751634,22.142135623731,0.0893225411830645,0.415,41.5,1,97.093152360986,0.966482319423496,41.5,23.9257667610444,5,-3.1113416618771,-3.23517251014709,0.216925650038167
+2381,82043,443097.952,82143,442997.952,80,23,3.75,0.0375,19.2537279543365,0.277777777777778,NA,-0.0573714445022597,0.005,0.5,1,30.8308651382582,1,0.5,16.9195718765259,15.8113880157471,-3.31372427940369,-3.38649272918701,0.0858235500783958
+2382,82043,442997.952,82143,442897.952,81,23,1,0.0025,0,0,36.3325016141235,0.0972855978264124,0.5925,59.25,1,98.4255810267197,0.950144718802365,59.25,21.7588786354548,0,-3.36492172876994,-3.38932418823242,0.0473035238688705
+2383,82043,442897.952,82143,442797.952,82,23,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,0.0115679440358599,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,26.2371018483089,10,-3.31933224201202,-3.3715672492981,0.0629544695071101
+2384,82043,442797.952,82143,442697.952,83,23,0,NA,NA,NA,NA,0.013991498158839,0.0025,0.25,1,0,NA,0.25,32.0156211853027,32.0156211853027,-3.31099817487929,-3.33769869804382,0.0556478748173459
+2385,82043,442697.952,82143,442597.952,84,23,0.25,0.0025,0,0,NA,0.0656359339645132,0.47,47,2,97.2628910043583,0.886141834743006,46.75,31.7385641869078,0,-3.32172513008118,-3.39428544044495,0.111000937955228
+2386,82043,442597.952,82143,442497.952,85,23,0.75,0.0025,0,0,22.2420512747135,0.14953644127585,0.945,94.5,1,99.849005264488,0.467478128565995,94.5,45.1724525986525,0,-3.37024593353271,-3.43704891204834,0.129768737042964
+2387,82043,442497.952,82143,442397.952,86,23,0,NA,NA,NA,NA,0.109721934118552,0.715,71.5,1,99.0388168843254,0.980434357268636,71.5,62.8711955730732,20,-3.34260374307632,-3.42962074279785,0.108851468007091
+2388,82043,442397.952,82143,442297.952,87,23,8,0.0133333333333333,5.13906312683444,0.257173382173382,11.6666666666667,0.0191762312364881,0.23,23,3,88.4669730489251,0.84954070319924,15.5,31.1192467938299,0,-3.13686021169027,-3.21429324150085,0.137695577267303
+2389,82043,442297.952,82143,442197.952,88,23,17.25,0.0132692307692308,4.23130397105131,0.28048433048433,13.242135878553,0.0367910693703652,0.3425,34.25,2,93.8833570412518,0.902661596958175,30.25,11.9949849817875,0,-2.97395010789235,-3.04925060272217,0.187877933640454
+2390,82043,442197.952,82143,442097.952,89,23,13.75,0.0196428571428571,4.92684568537845,0.281462585034014,13.2924629918544,0.0140887025378424,0.2,20,4,86.6964807642035,0.859154929577465,13.25,13.6054790258408,0,-2.91335492663913,-3.05481672286987,0.231913255905627
+2391,82043,442097.952,82143,441997.952,90,23,6.25,0.0078125,2.9517301106127,0.186979166666667,17.0343614146753,-0.0102958989731451,0.035,3.5,1,77.1303955881658,0.792746113989637,3.5,6.83884102957589,0,-2.95029597812229,-3.06653904914856,0.242691186346586
+2392,82043,441997.952,82143,441897.952,91,23,7.25,0.0145,3.05563267513787,0.1,12.5952415806172,0.0046677145313879,0.0725,7.25,4,75.6373695711579,0.770602741297241,6,21.5396101721402,0,-2.9061695933342,-3.0464973449707,0.186349949555063
+2393,82043,441897.952,82143,441797.952,92,23,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,-0.0216245712728778,0,0,0,NA,NA,0,NA,NA,-2.77533851729499,-2.87825918197632,0.12143720353255
+2394,82043,441797.952,82143,441697.952,93,23,0.25,0.0025,0,0,NA,-0.00761379054658391,0.0775,7.75,1,86.3573366287605,0.848238482384824,7.75,40.2436477907242,26.9258232116699,-2.67423389355342,-2.7101743221283,0.0347884045727867
+2395,82043,441697.952,82143,441597.952,94,23,1.25,0.00625,1.91347050800552,0.166666666666667,76.4852927038918,-0.0753756300825626,0.01,1,1,52.6315789473684,0.747474747474748,1,27.2272453308105,21.2132034301758,-2.67614393764072,-2.70912480354309,0.0408955811574986
+2396,82043,441597.952,82143,441497.952,95,23,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,22.2420512747135,-0.0515707825962454,0,0,0,NA,NA,0,NA,NA,-2.74648503462474,-2.79217743873596,0.0523656823420492
+2397,82043,441497.952,82143,441397.952,96,23,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,27.9836916609214,-0.00212004391898518,0.31,31,1,95.8102472617487,0.967793880837359,31,44.5538969347554,30,-2.87913944986131,-2.98823070526123,0.123412617026325
+2398,82043,441397.952,82143,441297.952,97,23,13.75,0.0458333333333333,9.0967217243637,0.415343915343915,20.137937550497,0.0481637776272692,0.3925,39.25,2,94.8519908695701,0.919981710105167,36.5,12.0883692115735,0,-3.14555251598358,-3.32730460166931,0.210989344374504
+2399,82043,441297.952,82143,441197.952,98,23,2.25,0.0045,1.5,0.0833333333333333,11.1622776601684,-0.0286590531581169,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,26.7847534179688,20.6155281066895,-3.46526164478726,-3.56298661231995,0.174622364955384
+2400,82043,441197.952,82143,441097.952,99,23,0,NA,NA,NA,NA,-0.0169552259227567,0.02,2,1,68.0470115164975,0.897959183673469,2,44.0297141075134,36.0555114746094,-3.64192742109299,-3.71231269836426,0.0935005829938776
+2401,82143,451097.952,82243,450997.952,0,24,21.25,0.0163461538461538,5.265914109335,0.289204118531042,12.9685950793211,0.034529839659881,0.2775,27.75,3,88.4949940572478,0.826989619377163,13.75,4.96534852723818,0,3.28739400704702,3.01934576034546,0.416983841447529
+2402,82143,450997.952,82243,450897.952,1,24,16.25,0.0325,6.87823626051121,0.21358024691358,12.9574173292382,-7.78066382190445e-05,0.005,0.5,2,0,1,0.25,8.09016990661621,5,2.75676400959492,2.36259508132935,0.392566509130842
+2403,82143,450897.952,82243,450797.952,2,24,14.75,0.00983333333333333,1.90127323803424,0.106481481481481,15.045877309279,0.0122596631628699,0.0525,5.25,3,69.1362577513778,0.769129287598945,2.75,3.44731158301944,0,2.13885688781738,1.84451413154602,0.432509126798569
+2404,82143,450797.952,82243,450697.952,3,24,41.5,0.2075,25.5568173247553,0.624441530691531,10,0.0363244212196878,0.34,34,2,94.4306316384752,0.883919843597263,31.25,2.43087113604826,0,1.45951981842518,1.04374372959137,0.49379983714135
+2405,82143,450697.952,82243,450597.952,4,24,10.75,0.0179166666666667,4.55459865997041,0.19417211328976,25.4968894650521,0.00228050241072197,0.1,10,2,82.6083829683769,0.751243781094527,7.25,2.83934707641602,0,0.603491589426994,0.343975156545639,0.418583516535198
+2406,82143,450597.952,82243,450497.952,5,24,6.5,0.00928571428571429,2.1871514671615,0.123015873015873,18.8643054418053,-0.0865605362207134,0,0,0,NA,NA,0,NA,NA,0.196491109978524,-0.0428982675075531,0.274154743182652
+2407,82143,450497.952,82243,450397.952,6,24,6,0.0075,2.84367347689969,0.166145833333333,14.3566017177982,-0.0456527605199517,0.06,6,3,73.878161325217,0.748040313549832,4.25,26.3224360148112,18.0277557373047,-0.00146150433768829,-0.169295459985733,0.234362501757169
+2408,82143,450397.952,82243,450297.952,7,24,8.25,0.0165,5.98075150044953,0.248358585858586,11.634413615168,-0.00193391641991184,0.025,2.5,3,50.7749378731535,0.605522682445759,1.5,17.1034538269043,0,-0.132667216646951,-0.250734180212021,0.172426769088531
+2409,82143,450297.952,82243,450197.952,8,24,3.25,0.0108333333333333,4.38577416078602,0.154320987654321,17.2075922005613,0.0115783947120053,0.08,8,2,79.1248992465258,0.853678929765886,6,16.7149708867073,5,-0.199867629135648,-0.251169353723526,0.0980878042175272
+2410,82143,450197.952,82243,450097.952,9,24,0,NA,NA,NA,NA,-0.00885916414822987,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,43.4707657950265,5,-0.169932262351116,-0.225853428244591,0.114359788286501
+2411,82143,450097.952,82243,449997.952,10,24,31.75,0.0635,9.53501292565137,0.425801975801976,17.0141187435321,0.00702651125311149,0.0675,6.75,6,59.7647878581007,0.476276575846375,2,4.20003509521484,0,0.00755894149187952,-0.137175217270851,0.25420623819584
+2412,82143,449997.952,82243,449897.952,11,24,13.5,0.0135,3.46589171604175,0.171666666666667,14.7305064202538,0.0191137015456206,0.1425,14.25,4,78.3345469303139,0.726304515975486,5.75,9.54203314530222,0,0.347664304388066,-0.0372958667576313,0.553060879587155
+2413,82143,449897.952,82243,449797.952,12,24,21.5,0.026875,7.12834659428391,0.306010765550239,12.1783008588991,0.0312033422269087,0.2825,28.25,4,91.0240095412599,0.747215959554554,22.75,6.50194743671248,0,0.746255484875292,0.0929439440369606,0.688228328741738
+2414,82143,449797.952,82243,449697.952,13,24,72.25,0.180625,15.7033939661768,0.490462145996497,10.5901699437495,0.0543474200634228,0.5575,55.75,3,93.2545046172959,0.739243807040417,25.75,2.31419738632681,0,0.746271304786205,0.129841670393944,0.737989181194694
+2415,82143,449697.952,82243,449597.952,14,24,84.25,0.8425,35.7921248258646,0.913452027695351,NA,0.0544584244137877,0.6375,63.75,1,98.6713232517353,0.901890059154523,63.75,0.117647058823529,0,-0.0916753109777346,-2.92820286750793,1.5445354006357
+2416,82143,449597.952,82243,449497.952,15,24,13.5,0.045,9.21113285945277,0.457707707707708,34.0020324447612,0.00124046548931801,0.15,15,3,87.1256910884538,0.852941176470588,13.25,11.7747820854187,0,-2.7934470747908,-4.58751678466797,2.56719572313961
+2417,82143,449497.952,82243,449397.952,16,24,10.75,0.0179166666666667,6.18784549345614,0.280555555555556,14.120226591666,0.0516535364316587,0.565,56.5,2,97.9347101932045,0.929014115270156,56.25,9.3919058436841,0,-4.14816781878471,-5.71367788314819,2.30689242577789
+2418,82143,449397.952,82243,449297.952,17,24,25.75,0.0367857142857143,5.2442640580008,0.260364145658263,18.198952533406,0.0711288204400262,0.805,80.5,1,99.3970714465752,0.88191632928475,80.5,8.35584491824511,0,-2.56756344437599,-5.40733003616333,2.62948433713886
+2419,82143,449297.952,82243,449197.952,18,24,49.75,0.124375,10.1490752654379,0.24816493955095,16.7705098312484,0.0726437596042524,0.745,74.5,2,98.9208853970113,0.888154905455943,74.25,4.58817153649042,0,0.686231968458742,-3.89343047142029,4.02922256494592
+2420,82143,449197.952,82243,449097.952,19,24,43.5,0.0621428571428571,9.85208633204063,0.404180106365283,12.1585422431877,0.0282944715334452,0.3675,36.75,3,95.3783099206097,0.811922359198907,35.5,1.83277642645803,0,2.80713971704245,-0.346746146678925,3.21492528369206
+2421,82143,449097.952,82243,448997.952,20,24,25.5,0.0283333333333333,6.77310102224761,0.303545807712474,14.4493150068029,-0.0274630604406775,0.115,11.5,5,74.4437220912009,0.681297986382732,6.25,5.40831018530804,0,2.02389223842571,0.0466517619788647,2.58831996873782
+2422,82143,448997.952,82243,448897.952,21,24,21.25,0.0354166666666667,6.57228005611382,0.220857220857221,19.9070046763928,-0.00252572000797954,0.12,12,3,83.9959652153835,0.805986696230599,10.25,12.3643083572388,0,0.257501887856051,-0.530941486358643,0.93104026497826
+2423,82143,448897.952,82243,448797.952,22,24,16,0.0266666666666667,8.38313642850817,0.42270955165692,18.1604022148079,0.0634089029860479,0.46,46,1,97.5030549392159,0.950980392156862,46,12.5304227186286,0,-0.327708716193835,-0.617924749851227,0.355227668634635
+2424,82143,448797.952,82243,448697.952,23,24,24,0.0218181818181818,5.2294797595372,0.138736648784496,11.6266752387123,0.000386890194886291,0.0875,8.75,1,87.4704367425575,0.811053377420879,8.75,6.20571752275739,0,-0.113276202231646,-0.628750860691071,0.878881338222104
+2425,82143,448697.952,82243,448597.952,24,24,3,0.01,4.39652139318486,0.0888888888888889,37.758510461103,-0.00586596229713905,0,0,0,NA,NA,0,NA,NA,-0.477195453519623,-0.653440952301025,0.321944344737156
+2426,82143,448597.952,82243,448497.952,25,24,4,0.01,3.50043972470641,0.160185185185185,12.9056941504209,-0.00233002551554819,0,0,0,NA,NA,0,NA,NA,-0.652821734547615,-0.761023581027985,0.12288398069913
+2427,82143,448497.952,82243,448397.952,26,24,18.75,0.0375,16.9433508324317,0.217693236714976,11.8416192529638,-0.00190121674152124,0,0,0,NA,NA,0,NA,NA,-0.793378164370855,-0.845995187759399,0.085937382347447
+2428,82143,448397.952,82243,448297.952,27,24,16,0.0133333333333333,5.71217716099598,0.162850729517396,11.6544206072732,0.00448270413344289,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,5,0,-0.894901596009731,-0.923738360404968,0.0386561015390288
+2429,82143,448297.952,82243,448197.952,28,24,6,0.00666666666666667,2.92531321098963,0.151234567901235,21.8198024761013,0.00799582894692662,0.0525,5.25,2,77.6115934770946,0.802110817941952,4.75,9.63766197931199,5,-0.921856686472893,-0.930000007152557,0.0136269804804211
+2430,82143,448197.952,82243,448097.952,29,24,20,0.025,5.87798735997612,0.150251116071429,13.0177669529664,-0.00107249372467777,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,6.37523460388184,0,-0.853760004043579,-0.912722051143646,0.0749121936147819
+2431,82143,448097.952,82243,447997.952,30,24,21,0.0161538461538462,4.4491566193224,0.249174128340795,10.3631815038458,-0.00604252749377338,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-0.664016967018445,-0.778176605701447,0.171242871496205
+2432,82143,447997.952,82243,447897.952,31,24,8.75,0.021875,5.50663764659293,0.298333333333333,20.177731330695,0.00493526420323178,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,10.5318984985352,7.07106781005859,-0.454403902093569,-0.552911460399628,0.141203834388995
+2433,82143,447897.952,82243,447797.952,32,24,3,0.0075,2.98263743904288,0.128968253968254,28.7106392577576,0.00554274078949902,0.0525,5.25,3,72.8206210538575,0.83509234828496,4.5,28.9623904455276,7.07106781005859,-0.593726057559252,-0.825953841209412,0.200664180408651
+2434,82143,447797.952,82243,447697.952,33,24,5.75,0.0115,4.69840391614651,0.0614035087719298,23.1444578524523,0.00799633706776149,0.0275,2.75,4,46.7379665307417,0.520137103684661,1.25,7.14308027787642,0,-0.787053520480792,-1.01640129089355,0.252975150713397
+2435,82143,447697.952,82243,447597.952,34,24,10,0.0142857142857143,4.25801092540786,0.187830687830688,14.1327794021164,0.0170625882668537,0.1975,19.75,2,92.1689164016113,0.893190921228304,19.25,12.7979153500328,0,-0.857855275273323,-1.05396461486816,0.248407348093537
+2436,82143,447597.952,82243,447497.952,35,24,20.5,0.0157692307692308,4.09740303077901,0.229875283446712,11.2480134575942,-0.00307133452537528,0.01,1,3,15.8692205350002,0.242424242424242,0.5,3.01776695251465,0,-0.871357783675194,-1.04867362976074,0.2365315042883
+2437,82143,447497.952,82243,447397.952,36,24,28,0.056,7.46569172490608,0.194654088050314,18.8763987067853,0.0088650050018623,0.0375,3.75,2,68.3745502901928,0.669421487603306,2.5,16.7983205159505,7.07106781005859,-0.886684413999319,-1.04233872890472,0.189920652838813
+2438,82143,447397.952,82243,447297.952,37,24,3,0.0075,2.3667503468334,0.140625,30.5901699437495,-0.000420176315219578,0,0,0,NA,NA,0,NA,NA,-0.957308481136958,-1.05410373210907,0.11418844398706
+2439,82143,447297.952,82243,447197.952,38,24,10.5,0.0065625,2.56619157090483,0.164756944444444,11.4204368967158,0.00340178794402163,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0,-1.03025217726827,-1.07995700836182,0.0730164616410419
+2440,82143,447197.952,82243,447097.952,39,24,5.25,0.00477272727272727,1.24214916413495,0.106060606060606,17.415686088718,0.0110356993776026,0.055,5.5,2,76.0387038444882,0.875505757858699,4.5,8.96126209605824,0,-1.11153234044711,-1.1652489900589,0.052549398070006
+2441,82143,447097.952,82243,446997.952,40,24,12,0.008,2.62017811634694,0.145791245791246,15.1638008909558,0.0143774179259344,0.075,7.5,7,57.0135355118328,0.492553778268064,2,6.62942485809326,0,-1.14804144203663,-1.19435882568359,0.0577629528710254
+2442,82143,446997.952,82243,446897.952,41,24,6.75,0.00964285714285714,3.76617038734049,0.249206349206349,20.2276843137021,0.0209762127141039,0.155,15.5,5,80.9595848162913,0.682226605303528,8,12.5990801472818,0,-1.09461641808351,-1.18952369689941,0.120359821361328
+2443,82143,446897.952,82243,446797.952,42,24,3.5,0.0035,0.603553390593274,0.0583333333333333,20.5259002576888,0.0255361710128454,0.1375,13.75,3,87.4646854615048,0.841342486651411,12.75,9.29809809598056,0,-1.01184664666653,-1.15605342388153,0.180048111146515
+2444,82143,446797.952,82243,446697.952,43,24,2.75,0.00458333333333333,1.68094244935232,0.101851851851852,27.9028679974543,0.00791677762888867,0.0725,7.25,4,73.0753174302769,0.72472328955669,4,13.8539580641122,5,-1.00179944932461,-1.1424036026001,0.197874029357265
+2445,82143,446697.952,82243,446597.952,44,24,6,0.02,9.73750039231512,0.184259259259259,20,0.00508071514193944,0.0325,3.25,2,70.7892806005518,0.770312948607522,3,12.5654638730563,5,-0.988238990306854,-1.13551640510559,0.196284775126916
+2446,82143,446597.952,82243,446497.952,45,24,6.25,0.00520833333333333,1.99855322977896,0.1,13.9418020297215,0.0169921412389695,0.0875,8.75,5,72.6184411489207,0.73547472838923,5.5,9.65868312290737,0,-0.873971577733755,-1.06231999397278,0.194883235369614
+2447,82143,446497.952,82243,446397.952,46,24,5,0.00625,2.18990067747582,0.125,22.8141026607557,0.00474779735896846,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-0.738905593752861,-0.850066125392914,0.131101245406917
+2448,82143,446397.952,82243,446297.952,47,24,11.25,0.0102272727272727,2.95908813276362,0.0791245791245791,15.1509460022652,0.00982178688735075,0.0225,2.25,3,52.302732653549,0.403239556692242,1.5,4.48027504814996,0,-0.747390229254961,-0.806023001670837,0.0866593567659076
+2449,82143,446297.952,82243,446197.952,48,24,8.25,0.0103125,3.93839252993272,0.156944444444444,15.0778823734363,0.00983635857311128,0.05,5,5,57.405001194473,0.592529711375212,2.75,7.77448558807373,0,-0.794834251205126,-0.826196491718292,0.069170730081014
+2450,82143,446197.952,82243,446097.952,49,24,7.25,0.00517857142857143,2.01218194850762,0.132936507936508,13.0702670544635,-0.00501658365271055,0.0675,6.75,5,64.4583706523937,0.625911839890268,2.75,7.443959624679,0,-0.784564968198538,-0.816953301429749,0.05544607672907
+2451,82143,446097.952,82243,445997.952,50,24,1,0.01,5,0.25,NA,-0.0161017802558854,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5,-0.822296544909477,-0.866933763027191,0.0859607031698721
+2452,82143,445997.952,82243,445897.952,51,24,7.5,0.0375,6.66536058511554,0.307471264367816,35.3553390593274,-0.0272121038527621,0,0,0,NA,NA,0,NA,NA,-1.07807964831591,-1.31973338127136,0.205425334714972
+2453,82143,445897.952,82243,445797.952,52,24,20.5,0.05125,9.99632166776847,0.294987922705314,23.75,-0.0287243482880149,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,10.2559464772542,5,-1.38057393829028,-1.51201474666595,0.161538567322321
+2454,82143,445797.952,82243,445697.952,53,24,62.75,0.209166666666667,17.1373412513841,0.512956115583761,15.7868932583326,0.0222723875717929,0.2875,28.75,4,93.8782390239646,0.8582995951417,28,6.66353985330333,0,-1.44258692860603,-1.52202022075653,0.0780671125842224
+2455,82143,445697.952,82243,445597.952,54,24,52.5,0.2625,25.6105327927028,0.610807528840316,25,0.0418972471865345,0.415,41.5,3,94.1074894446644,0.759789955868387,30.5,5.03442457497838,0,-1.23216816286246,-1.45396196842194,0.284235486432877
+2456,82143,445597.952,82243,445497.952,55,24,86.75,0.8675,36.1673917193068,0.896253602305475,NA,-0.0135684367047088,0.1725,17.25,3,86.173119999799,0.870165538937854,13.25,1.65067186217377,0,-1.40934707721074,-1.73631119728088,0.334808419430974
+2457,82143,445497.952,82243,445397.952,56,24,54,0.27,27.5015750580666,0.805877495650122,18.0277563773199,-0.024300298547314,0.0775,7.75,2,83.9718421590685,0.67479674796748,7.25,0.483870967741935,0,-1.72619694471359,-1.87847721576691,0.216492676507967
+2458,82143,445397.952,82243,445297.952,57,24,62.75,0.1255,9.08075884885181,0.224142661179698,12.2426406871193,0.0230791015555951,0.2325,23.25,4,85.0368572594243,0.733134492366862,10.75,2.23039147161668,0,-1.72233118613561,-1.77834892272949,0.138192584122231
+2459,82143,445297.952,82243,445197.952,58,24,64.75,0.0925,6.81560696346382,0.254568494064292,12.8505034177961,0.0674469672304258,0.6,60,3,96.0488061863108,0.849665924276169,50.25,2.45792027314504,0,-1.65874041616917,-1.81208908557892,0.216638046329057
+2460,82143,445197.952,82243,445097.952,59,24,57.5,0.115,13.8179064211103,0.485697159610203,10,0.00353707088122519,0.11,11,3,78.9996824825328,0.726692985119952,6.75,2.81634733893655,0,-1.74451783299446,-1.96035051345825,0.212051651914818
+2461,82143,445097.952,82243,444997.952,60,24,76,0.108571428571429,7.64342495029811,0.243090516145436,10.3372399678568,-0.229209194186551,0,0,0,NA,NA,0,NA,NA,-1.9681138843298,-2.12090921401978,0.193281519408821
+2462,82143,444997.952,82243,444897.952,61,24,22.25,0.0317857142857143,7.60682928969419,0.326270221007063,11.8213022753308,-0.044511893154322,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.05371002356211,-2.17552781105042,0.139433193001258
+2463,82143,444897.952,82243,444797.952,62,24,39.5,0.395,34.3065398440352,0.679324894514768,NA,-0.00744627435749862,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,0,0,-1.94445114582777,-2.07226753234863,0.132981475784097
+2464,82143,444797.952,82243,444697.952,63,24,54.25,0.27125,18.9058956275726,0.489356178608515,10,0.00757334118636209,0.1975,19.75,2,91.8156754614608,0.804183355585225,18.75,0.443037974683544,0,-1.85501797000567,-2.02542805671692,0.183316194375954
+2465,82143,444697.952,82243,444597.952,64,24,40.75,0.20375,21.6039692379036,0.771091000502765,51.478150704935,0.00264034107734915,0.2075,20.75,3,86.0393718642724,0.811154745809996,9.25,0.79774943891778,0,-1.79742927104235,-2.00869917869568,0.222388573077346
+2466,82143,444597.952,82243,444497.952,65,24,72.75,0.7275,34.9057157526442,0.870561282932417,NA,0.035232791639246,0.4975,49.75,1,97.8012504735965,0.832814248540495,49.75,0.42713567839196,0,-1.8145577510198,-1.92852771282196,0.166386160083873
+2467,82143,444497.952,82243,444397.952,66,24,74.5,0.3725,21.8245020787974,0.533200152207002,14.142135623731,0.00150657424979727,0.255,25.5,4,87.9954331600537,0.831297905893571,12.75,0.53921568627451,0,-1.89253055055936,-2.0806200504303,0.156788715084314
+2468,82143,444397.952,82243,444297.952,67,24,52,0.173333333333333,20.3244503975584,0.567283950617284,12.67591879244,0.0938716949014633,0.685,68.5,2,96.2749045619486,0.672657649311346,36,3.27319535721828,0,-2.04667725414038,-2.42245078086853,0.253091258935879
+2469,82143,444297.952,82243,444197.952,68,24,42.75,0.0855,16.4734081929693,0.659779011936339,12,0.0803700298110925,0.695,69.5,3,97.06828164822,0.780164562527479,61.5,5.54557363935512,0,-2.20980325341225,-2.54278874397278,0.341230978880191
+2470,82143,444197.952,82243,444097.952,69,24,32.5,0.0541666666666667,10.1332121148333,0.530257936507937,13.3255873207621,0.0404238911997163,0.43,43,3,93.9250379354778,0.916984891250207,38.25,11.0421298049217,0,-2.57955001294613,-2.74319672584534,0.257222054425547
+2471,82143,444097.952,82243,443997.952,70,24,64.5,0.16125,15.6347674031261,0.541457231040564,12.661237755615,-0.0175142085011976,0.03,3,2,69.3435483247553,0.696785930867192,2.75,4.85702260335286,0,-2.73640485604604,-2.91845607757568,0.169344028883426
+2472,82143,443997.952,82243,443897.952,71,24,47,0.094,14.1310857966147,0.497837169392288,11,-0.0266531310907612,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.89851745963097,-3.12803626060486,0.238917770382949
+2473,82143,443897.952,82243,443797.952,72,24,68,0.34,20.7780677881057,0.715686274509804,10,-0.0899754874105565,0,0,0,NA,NA,0,NA,NA,-3.09456864992777,-3.16164302825928,0.135286170693607
+2474,82143,443797.952,82243,443697.952,73,24,77.75,0.38875,27.9610234972379,0.868494668328486,10,-0.0645454943178629,0,0,0,NA,NA,0,NA,NA,-2.97220765054226,-3.11523079872131,0.191485343119519
+2475,82143,443697.952,82243,443597.952,74,24,51.5,0.2575,25.5423677527143,0.783666969972703,33.5410196624968,-0.040165119136982,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-3.07844899098078,-4,0.646771449226936
+2476,82143,443597.952,82243,443497.952,75,24,63.25,0.6325,31.9501986315378,0.887351778656126,NA,-0.0669612788083032,0,0,0,NA,NA,0,NA,NA,-2.94959889352322,-4,0.649590224812763
+2477,82143,443497.952,82243,443397.952,76,24,91.75,0.9175,37.6616380209505,0.903269754768392,NA,-0.0717087847457151,0,0,0,NA,NA,0,NA,NA,-2.73451332251231,-2.91201972961426,0.225486294405212
+2478,82143,443397.952,82243,443297.952,77,24,73.25,0.244166666666667,20.2880409848795,0.620469273508313,11.1803398874989,-0.0536627444480473,0,0,0,NA,NA,0,NA,NA,-2.74888638655345,-2.82819175720215,0.0869639820519222
+2479,82143,443297.952,82243,443197.952,78,24,68.25,0.11375,8.56761060524264,0.271260683760684,11.5236892706218,-0.00649343230470549,0.1125,11.25,1,89.5714527894752,0.896219421793921,11.25,8.0280824025472,0,-2.84390349686146,-3.06818318367004,0.160056875815405
+2480,82143,443197.952,82243,443097.952,79,24,0.25,0.0025,0,0,NA,0.151132166978932,0.7425,74.25,1,99.1551699664667,0.97915834447783,74.25,43.1208981729116,5,-3.16609889268875,-3.26064515113831,0.162867525493464
+2481,82143,443097.952,82243,442997.952,80,24,0,NA,NA,NA,NA,-0.0565851012489293,0,0,0,NA,NA,0,NA,NA,-3.34859910607338,-3.39575290679932,0.0625912861819477
+2482,82143,442997.952,82243,442897.952,81,24,2.25,0.00321428571428571,0.714285714285714,0.0476190476190476,26.4062869947286,0.10262269651641,0.5425,54.25,1,98.1174291231355,0.956716983173727,54.25,15.6518747443977,0,-3.4024530450503,-3.40970134735107,0.0150515851804283
+2483,82143,442897.952,82243,442797.952,82,24,1.75,0.0035,1,0.0666666666666667,18.6938721971897,0.00887934620785927,0,0,0,NA,NA,0,NA,NA,-3.38284677267075,-3.41000008583069,0.0342950902699328
+2484,82143,442797.952,82243,442697.952,83,24,0,NA,NA,NA,NA,0.0306195668521104,0.15,15,5,83.2554822935152,0.751131221719457,10.5,42.2183251063029,11.1803398132324,-3.34128908316294,-3.35993385314941,0.0229895751434095
+2485,82143,442697.952,82243,442597.952,84,24,0.75,0.0025,0,0,78.1398828624123,0.082313394700177,0.7975,79.75,1,99.3695525162542,0.696484967802797,79.75,30.4629316060894,0,-3.38314501941204,-3.41419816017151,0.0387580600280166
+2486,82143,442597.952,82243,442497.952,85,24,0,NA,NA,NA,NA,0.15973670954816,0.985,98.5,1,99.9600766120013,1,98.5,68.0794135398671,15,-3.44727504253387,-3.46634197235107,0.0288686982163707
+2487,82143,442497.952,82243,442397.952,86,24,0.25,0.0025,0,0,NA,0.066869732583873,0.515,51.5,2,95.2020291292885,0.886947861430379,44,71.3851264379557,7.07106781005859,-3.42090557515621,-3.46565556526184,0.0621247115045611
+2488,82143,442397.952,82243,442297.952,87,24,0,NA,NA,NA,NA,0.0745294836872199,0.8575,85.75,1,99.5794816088838,0.772579597141,85.75,41.4175564846562,10,-3.22674248615901,-3.33301949501038,0.204905623961783
+2489,82143,442297.952,82243,442197.952,88,24,20.5,0.041,8.41816683975697,0.436329966329966,27.8191319096608,0.0412440952225734,0.35,35,3,95.2562722043164,0.933894230769231,34.5,6.62645700999669,0,-2.73781807720661,-2.99317526817322,0.334435278280487
+2490,82143,442197.952,82243,442097.952,89,24,5.25,0.0065625,3.18331821465171,0.140625,13.9075598938185,0.0268819527466167,0.2325,23.25,3,87.3016772258163,0.843020289627566,11.75,11.886043384511,0,-2.58122992515564,-2.68195533752441,0.176671973443938
+2491,82143,442097.952,82243,441997.952,90,24,24.25,0.0269444444444444,6.04684984570989,0.266186556927298,12.265381794702,0.018700081291754,0.19,19,2,88.6301597301628,0.82494932743689,15,2.73353792491712,0,-2.51334937413534,-2.67290544509888,0.161860885489793
+2492,82143,441997.952,82243,441897.952,91,24,30.25,0.0504166666666667,6.270444881872,0.24088632657815,14.7965614692376,0.0107155969398627,0.11,11,6,70.8845409398195,0.62040692377771,4.5,3.39511979709972,0,-2.52997602522373,-2.71062350273132,0.169665926251461
+2493,82143,441897.952,82243,441797.952,92,24,3.5,0.0175,5.00424611882444,0.368055555555556,40.3112887414927,0.00869243404134977,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,4.18318275783373,0,-2.55524983008703,-2.67222666740417,0.151008417384164
+2494,82143,441797.952,82243,441697.952,93,24,3.25,0.01625,5.67003692677297,0.194444444444444,11.1803398874989,-0.052134256622594,0,0,0,NA,NA,0,NA,NA,-2.65383443236351,-2.70631814002991,0.0813173209589902
+2495,82143,441697.952,82243,441597.952,94,24,3,0.01,4.14130926528998,0.1,27.7485177344559,-0.0682177215721458,0,0,0,NA,NA,0,NA,NA,-2.71857208013535,-2.74913144111633,0.0450430970112658
+2496,82143,441597.952,82243,441497.952,95,24,2,0.004,1.5,0.1,19.6697860851649,-0.0296896619319159,0,0,0,NA,NA,0,NA,NA,-2.75364951789379,-2.78440141677856,0.0480006998233123
+2497,82143,441497.952,82243,441397.952,96,24,0,NA,NA,NA,NA,0.0321916989141755,0.3475,34.75,1,96.3348533717898,0.891392886234048,34.75,46.1076695833275,25,-2.74974842866262,-2.86401438713074,0.107786304739671
+2498,82143,441397.952,82243,441297.952,97,24,17.25,0.0246428571428571,6.14563643688083,0.280864197530864,11.3060193748187,0.0036528742905648,0.3275,32.75,2,95.1373507064611,0.950226314725234,32.25,11.3418171278393,0,-2.82681214809418,-3.15511608123779,0.248471734011867
+2499,82143,441297.952,82243,441197.952,98,24,6.75,0.016875,3.44198494603737,0.167572463768116,26.9144931712767,-0.0479639293262153,0.02,2,1,68.0470115164975,0.897959183673469,2,0,0,-3.27666519085566,-3.53360748291016,0.341303800808529
+2500,82143,441197.952,82243,441097.952,99,24,0,NA,NA,NA,NA,0.0386666553475516,0.315,31.5,5,91.9726429588105,0.859752016064769,28.5,65.4716411772228,18.0277557373047,-3.63547417521477,-3.72249674797058,0.126136521759012
+2501,82243,451097.952,82343,450997.952,0,25,28.25,0.0565,11.1107039987649,0.335805422647528,14.2360679774998,0.0286789493645665,0.2325,23.25,6,86.0962696738544,0.764530434441348,16.75,2.8466732271256,0,2.83154137929281,2.53752374649048,0.449724023288197
+2502,82243,450997.952,82343,450897.952,1,25,14,0.0175,4.25290625743159,0.224122807017544,10.5901699437495,0.00472914902426339,0.005,0.5,1,30.8308651382582,1,0.5,5,5,2.25041133165359,1.88268160820007,0.434822303373668
+2503,82243,450897.952,82343,450797.952,2,25,60.5,0.3025,27.8387748739868,0.629763243378311,10,0.0457266935335792,0.2975,29.75,3,91.5871460173277,0.855015157506261,25.75,0.791110383362329,0,1.7695699930191,1.51455104351044,0.36791015292663
+2504,82243,450797.952,82343,450697.952,3,25,14,0.0233333333333333,5.19032238984493,0.263106641123882,18.7092228679666,0.0128211049539095,0.1375,13.75,1,91.0694765797212,0.853546910755149,13.75,3.13442805897106,0,1.34618227680524,1.17573261260986,0.236891964941896
+2505,82243,450697.952,82343,450597.952,4,25,3,0.01,4.03835241367089,0.175925925925926,26.961393109532,-0.0022969332964567,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,3.41421356201172,0,1.00950560967127,0.778649508953094,0.268571828031253
+2506,82243,450597.952,82343,450497.952,5,25,13.25,0.0147222222222222,6.08410597831104,0.20215114104003,14.3152769144503,-0.0130227069212469,0.05,5,2,77.8661828264503,0.864176570458404,4.75,7.82678394317627,0,0.79806054631869,0.473814129829407,0.413539328643199
+2507,82243,450497.952,82343,450397.952,6,25,1.75,0.004375,1.70143202056272,0.0902777777777778,46.0149684257178,0.00108065756418,0.0525,5.25,7,51.3719864960616,0.472295514511873,2.25,20.4640800839379,0,0.644529200262494,0.325809240341187,0.441105194683914
+2508,82243,450397.952,82343,450297.952,7,25,3.25,0.0108333333333333,4.64072172623556,0.160493827160494,30.5099414836098,0.0267852371566187,0.235,23.5,2,92.7827481180159,0.875505757858699,22.25,14.5344784107614,0,0.376280362407366,0.0698872357606888,0.400126321469255
+2509,82243,450297.952,82343,450197.952,8,25,15.5,0.019375,7.38474659732754,0.218244092508798,12.4996698732248,-0.00699065883588446,0.06,6,2,75.3144668705491,0.804031354983203,4.25,13.3730362256368,0,0.162515755432347,-0.0240106992423534,0.338905379940245
+2510,82243,450197.952,82343,450097.952,9,25,13.75,0.034375,7.86426700782035,0.19657029478458,24.3950012329323,-0.00724869004397988,0.04,4,4,57.1874202945987,0.609375,2,10.2962881326675,0,0.150070939833919,-0.0337349958717823,0.354823261413277
+2511,82243,450097.952,82343,449997.952,10,25,50.5,0.168333333333333,16.2200972196269,0.336516203703704,12.67591879244,-0.0334301268948911,0.0225,2.25,2,60.8730533773843,0.829497016197783,2,4.80571195814345,0,0.122443533036858,-0.0317503735423088,0.291785320923281
+2512,82243,449997.952,82343,449897.952,11,25,40.75,0.135833333333333,16.8645241272682,0.428750024041698,22.718960097283,0.0365080313513317,0.255,25.5,4,89.3129116225158,0.875307147834379,22.25,5.54555189843271,0,0.00404036215816935,-0.0643936470150948,0.147484849883839
+2513,82243,449897.952,82343,449797.952,12,25,41.75,0.20875,20.4256053033877,0.431069958847737,11.1803398874989,0.0366523009225057,0.3575,35.75,4,92.1487327910223,0.762378590310987,26.25,3.63239923223749,0,-0.136678097769618,-0.482471168041229,0.313011575967512
+2514,82243,449797.952,82343,449697.952,13,25,67.5,0.3375,19.3542070073671,0.652201257861635,11.1803398874989,0.0385650965325476,0.47,47,3,95.9708443881499,0.859032747777055,45,0.725306226852092,0,-0.469926983531978,-2.03363037109375,1.51027229499547
+2515,82243,449697.952,82343,449597.952,14,25,19.75,0.09875,13.570947265291,0.739772727272727,77.7817459305202,0.0120613933095137,0.28,28,3,92.3098291735325,0.883113311331133,25.5,5.91871041910989,0,-3.09659977753957,-4.82534265518188,3.12425514165421
+2516,82243,449597.952,82343,449497.952,15,25,48.5,0.161666666666667,15.427218117162,0.511363636363636,10.3934466291663,0.0512700748541829,0.4775,47.75,1,97.646583102185,0.935122861081826,47.75,3.3898515451641,0,-0.871584799968534,-4.27300691604614,2.96403710686346
+2517,82243,449497.952,82343,449397.952,16,25,9.25,0.0185,4.21210641490646,0.333333333333333,25.3406421781638,-0.00948829125554767,0.125,12.5,4,77.2152590250467,0.74453781512605,5,7.2663793182373,0,-0.525134459137917,-1.5,1.48027953764463
+2518,82243,449397.952,82343,449297.952,17,25,47,0.1175,10.4971963635507,0.371584455300052,11.3306188778075,0.016402305246811,0.3675,36.75,3,91.5073838286907,0.776657801548702,17.75,4.52909228266502,0,0.400769958893458,-1.33004558086395,1.40063511852126
+2519,82243,449297.952,82343,449197.952,18,25,18,0.03,5.90969835801916,0.280483405483405,14.6248526545526,0.0595067055590789,0.4925,49.25,3,94.2045138395213,0.854241176867535,40.25,16.7208725111134,0,0.832127173741659,0.206201702356339,1.52435819540143
+2520,82243,449197.952,82343,449097.952,19,25,27.5,0.0229166666666667,4.35183052300565,0.236701098465804,14.2406009434093,-0.0121757769461874,0.025,2.5,1,71.9760246298065,1,2.5,2,0,1.5270987401406,0.146587327122688,2.68558680919946
+2521,82243,449097.952,82343,448997.952,20,25,39,0.195,15.4308983356713,0.454004329004329,11.1803398874989,-0.0231827434617298,0.0625,6.25,3,69.5121840349285,0.706666666666667,2.75,1.88284271240234,0,0.264545611623261,-0.49191215634346,2.10826614004261
+2522,82243,448997.952,82343,448897.952,21,25,46.25,0.0770833333333333,8.29415822359666,0.326881720430107,11.1803398874989,-0.0113334848647128,0.085,8.5,4,75.1344651869757,0.746291959406714,6.25,1.32352941176471,0,0.189117634048065,-0.58368718624115,1.04306999245307
+2523,82243,448897.952,82343,448797.952,22,25,25.75,0.0321875,4.96664269680036,0.211082175925926,12.7299628846016,-0.0241131171485176,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,1.80473785400391,0,0.187682009819481,-0.0436709001660347,0.330838827895982
+2524,82243,448797.952,82343,448697.952,23,25,30.5,0.0305,7.89459525506913,0.181099294102949,10.2360679774998,-0.00995569054287444,0.0825,8.25,2,80.4366456798843,0.838530628721364,6.25,2.27272727272727,0,0.797429227580627,0.161328688263893,0.870740596274833
+2525,82243,448697.952,82343,448597.952,24,25,17,0.0242857142857143,6.29505155500005,0.285106246799795,11.0515256821426,0.00495679562207442,0.11,11,1,89.3941397590651,0.893713938657759,11,3.19647615606135,0,-0.0882590173019303,-0.393083274364471,0.676279395311995
+2526,82243,448597.952,82343,448497.952,25,25,14.25,0.0129545454545455,3.82235332595263,0.175264364118853,13.2617397406861,-0.0152045393139633,0,0,0,NA,NA,0,NA,NA,-0.642050698399544,-0.811774015426636,0.198405934846415
+2527,82243,448497.952,82343,448397.952,26,25,12,0.01,4.66598356328904,0.136937830687831,10.8369862551021,0.00422744603359661,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-0.856019026703305,-0.91572779417038,0.0909206814001566
+2528,82243,448397.952,82343,448297.952,27,25,8.25,0.00825,2.39539017897146,0.0990740740740741,17.8052494594787,-0.000382446684250226,0.0025,0.25,1,0,NA,0.25,5,5,-0.920624360442162,-0.939913153648376,0.0315287259119873
+2529,82243,448297.952,82343,448197.952,28,25,13.5,0.0122727272727273,4.89971635536913,0.150524475524476,14.0948940964751,0.0141771871646415,0.0775,7.75,5,72.2525051613521,0.609756097560976,5.25,10.3901538233603,0,-0.925106955899133,-0.933821022510529,0.0171261637172995
+2530,82243,448197.952,82343,448097.952,29,25,17.5,0.035,11.429453559421,0.283333333333333,20.424620345479,0.0103194176479519,0.0275,2.75,4,46.8309391098864,0.383033419023136,1.25,12.9389488913796,0,-0.852712328235308,-0.901485502719879,0.0710146189212909
+2531,82243,448097.952,82343,447997.952,30,25,7.75,0.0258333333333333,7.61879726356631,0.506837606837607,35.6940131083312,0.00139501400750646,0.055,5.5,2,76.6744248864547,0.813258636788049,4.5,17.5414703542536,0,-0.690188275443183,-0.749252378940582,0.113026386325727
+2532,82243,447997.952,82343,447897.952,31,25,1.5,0.0075,3.10825609149534,0.0833333333333333,50,0.00385121522664122,0.02,2,3,42.6244177316702,0.489795918367347,1,23.8161082267761,5,-0.610244823826684,-0.683793365955353,0.114643175077498
+2533,82243,447897.952,82343,447797.952,32,25,7.75,0.00775,3.16619095879801,0.0773809523809524,10.7683155286228,-0.00457258598981753,0,0,0,NA,NA,0,NA,NA,-0.889030223091443,-1.06409597396851,0.213373830549447
+2534,82243,447797.952,82343,447697.952,33,25,4.5,0.005,1.07306718535838,0.082716049382716,27.5493674078588,0.00952533892304928,0.0325,3.25,5,45.8758855837313,0.540625897215045,1.75,10.3882519648625,0,-1.1073143084844,-1.1796966791153,0.124778877533055
+2535,82243,447697.952,82343,447597.952,34,25,13.5,0.027,8.75649442787891,0.220940170940171,11.7726990347453,0.00474689821127413,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,1.11111111111111,0,-1.16682752966881,-1.21161198616028,0.0885461844378502
+2536,82243,447597.952,82343,447497.952,35,25,14.5,0.0207142857142857,6.22920275211121,0.203634085213033,13.833987822922,-0.00400311231227533,0.0175,1.75,1,65.4774238937655,1,1.75,1.42857142857143,0,-1.17363890012105,-1.21824550628662,0.0933303806705582
+2537,82243,447497.952,82343,447397.952,36,25,21.75,0.0271875,6.50552962254018,0.215802987861811,12.0280218685906,0.00557338809288808,0.0275,2.75,3,55.3822898769033,0.725792630676949,2,8.24045007879084,0,-1.16761045654615,-1.21173918247223,0.0940630818067025
+2538,82243,447397.952,82343,447297.952,37,25,24.5,0.0408333333333333,7.32583330144629,0.459148259148259,14.4708818183265,-0.000974848152964114,0.0125,1.25,1,58.1880425789518,1,1.25,2,0,-1.15932055314382,-1.20363914966583,0.0807650401237196
+2539,82243,447297.952,82343,447197.952,38,25,5.75,0.00958333333333333,4.73499511340383,0.107051282051282,15.9602713387042,-0.000278914640848598,0,0,0,NA,NA,0,NA,NA,-1.12149998545647,-1.17257511615753,0.054875349285513
+2540,82243,447197.952,82343,447097.952,39,25,5,0.00833333333333333,3.01708968102883,0.139550264550265,17.4218691330708,0.00896370089234551,0.015,1.5,2,46.1375166841518,0.564902102973169,1,17.8352018992106,15,-1.08236005571153,-1.09294176101685,0.027406175307272
+2541,82243,447097.952,82343,446997.952,40,25,5.25,0.0075,2.4954532078789,0.168650793650794,22.9649604975432,0.00645477010020841,0.0275,2.75,4,43.4900566959791,0.520137103684661,1,12.2371746410023,0,-1.08608827988307,-1.1039400100708,0.0368891111955321
+2542,82243,446997.952,82343,446897.952,41,25,12,0.015,4.1314062926563,0.162595785440613,19.4556188778075,0.0126941359770899,0.075,7.5,6,66.6868725578929,0.580805295091009,3.25,5.02149836222331,0,-0.956423812442356,-1.03525519371033,0.143873607318684
+2543,82243,446897.952,82343,446797.952,42,25,8.5,0.00653846153846154,2.58653803260331,0.134004884004884,12.5516975442954,0.0142708526616798,0.0375,3.75,2,72.8063268476367,0.858323494687131,3.5,7.10237859090169,0,-0.697938789923986,-0.837994813919067,0.181210258803479
+2544,82243,446797.952,82343,446697.952,43,25,8.5,0.00708333333333333,2.31728084934148,0.152199074074074,15.4489670038968,0.0208428665015163,0.1225,12.25,2,86.0748602123365,0.877899877899878,10.75,22.0208211237071,5,-0.569388131300608,-0.685880482196808,0.217275396548152
+2545,82243,446697.952,82343,446597.952,44,25,7.25,0.00604166666666667,1.98439791807577,0.107060185185185,16.5650074383185,0.0256128133919992,0.135,13.5,8,70.8817615983023,0.651936105413637,6.5,9.21914446795428,0,-0.522391885519028,-0.670070469379425,0.25778393629762
+2546,82243,446597.952,82343,446497.952,45,25,5,0.00454545454545455,1.49116938859819,0.103535353535354,16.5811516121674,0.0113512033849202,0.04,4,3,65.0436343848543,0.739583333333333,3,22.3333361148834,0,-0.442170269787312,-0.616808950901031,0.271974876685009
+2547,82243,446497.952,82343,446397.952,46,25,16.75,0.0186111111111111,3.98339603396703,0.208082726601245,12.9707756374622,0.0358087912128894,0.3475,34.75,1,96.3348533717898,0.87329170060639,34.75,5.86821469643133,0,-0.378544350465139,-0.525023996829987,0.283606003059397
+2548,82243,446397.952,82343,446297.952,47,25,12.75,0.00708333333333333,1.79609903674638,0.0783950617283951,11.7870694992694,0.018779831699685,0.145,14.5,5,78.1438308969877,0.777777777777778,7.25,6.94969532407563,0,-0.421519514173269,-0.616802036762238,0.319444630272891
+2549,82243,446297.952,82343,446197.952,48,25,5.5,0.00916666666666667,3.82827224110632,0.178703703703704,20.7868932583326,0.00601656281369742,0.1575,15.75,3,86.5574030653255,0.794982465605611,12.75,15.1215405539861,0,-0.501279460059272,-0.656225979328156,0.29435415537796
+2550,82243,446197.952,82343,446097.952,49,25,11,0.022,6.25185557948955,0.261111111111111,15.8309518948453,0.00813619906886743,0.095,9.5,4,73.9707021904349,0.684293606945541,3.75,6.37870793593557,0,-0.571491494774818,-0.694506347179413,0.21682256078687
+2551,82243,446097.952,82343,445997.952,50,25,6.75,0.01125,3.51880863351751,0.1125,12.7240226919466,-0.000167170149361482,0.1275,12.75,5,82.3543917808298,0.828738925666107,10.75,6.42704234403722,0,-0.721043275462257,-0.812351167201996,0.141358755915295
+2552,82243,445997.952,82343,445897.952,51,25,17.75,0.0355,6.72817080003834,0.228438003220612,17.5391558273447,-0.00331431191356387,0.105,10.5,4,76.7818599217667,0.732473050594067,5.5,4.95329747881208,0,-0.926187381148338,-1.07164323329926,0.155051052805522
+2553,82243,445897.952,82343,445797.952,52,25,20.5,0.0136666666666667,2.92537511728428,0.171927975406236,11.5612429744847,0.0111016463463056,0.1575,15.75,3,86.6936967844498,0.719449689776099,12.5,7.53392843216185,0,-1.19342903296153,-1.31924176216125,0.178337592081587
+2554,82243,445797.952,82343,445697.952,53,25,65.5,0.3275,22.7225069446588,0.563517768780927,11.1803398874989,0.00445485737843228,0.0825,8.25,4,71.2666501167217,0.717428600262388,3.5,3.85063841848662,0,-1.44917819897334,-1.63164079189301,0.155785202763701
+2555,82243,445697.952,82343,445597.952,54,25,86.75,0.8675,35.9484953244142,0.898655139289145,NA,-0.000890179914076725,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.11900753445095,0,-1.62143479453193,-1.81479024887085,0.251389215957498
+2556,82243,445597.952,82343,445497.952,55,25,85,0.283333333333333,16.048294823088,0.531395482169476,14.142135623731,-0.0554976531170541,0,0,0,NA,NA,0,NA,NA,-1.77912998199463,-1.89608454704285,0.18470763368805
+2557,82243,445497.952,82343,445397.952,56,25,51,0.085,9.40606049346367,0.26749659358355,10.3934466291663,0.030551854998339,0.415,41.5,1,97.093152360986,0.849170437405732,41.5,4.17705537037677,0,-1.64572821060816,-1.8350738286972,0.382080932877272
+2558,82243,445397.952,82343,445297.952,57,25,85.75,0.285833333333333,14.5604038550614,0.474206349206349,11.937129433614,0.088895591024193,0.9125,91.25,1,99.7534323937872,0.768451519536904,91.25,0.781795449452857,0,-1.29042104217741,-1.59859001636505,0.410368117458653
+2559,82243,445297.952,82343,445197.952,58,25,91.75,0.9175,37.8779130334075,0.870118074477748,NA,0.0576358124970284,0.695,69.5,2,96.7929935638406,0.799007600025124,55.75,0.449640287769784,0,-1.35335566600164,-1.51351988315582,0.184560907668752
+2560,82243,445197.952,82343,445097.952,59,25,81,0.81,38.0588694574673,0.811213991769547,NA,0.0111666131970924,0.295,29.5,2,91.7320640954815,0.834294425664479,16.25,0.169491525423729,0,-1.59435252348582,-1.64868330955505,0.0813484372575006
+2561,82243,445097.952,82343,444997.952,60,25,68.5,0.3425,22.0043745839801,0.688832364341085,14.142135623731,0.0178595680969738,0.2175,21.75,2,92.6602412097379,0.934041018241781,21.25,1.22454803291408,0,-1.71326627333959,-1.82899069786072,0.148676837556236
+2562,82243,444997.952,82343,444897.952,61,25,64.5,0.215,19.0407877339615,0.566677032175971,10.3934466291663,0.0194077208165254,0.08,8,7,60.338807495213,0.561036789297659,2.25,0.9375,0,-1.87828279866113,-1.93081676959991,0.108050930723927
+2563,82243,444897.952,82343,444797.952,62,25,57.75,0.5775,32.463838940391,0.864357864357864,NA,-0.0629616783070014,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-2.02808556954066,-2.11743974685669,0.102833483578594
+2564,82243,444797.952,82343,444697.952,63,25,82.25,0.8225,38.198531423502,0.857649442755826,NA,-0.0141614255893364,0.3075,30.75,1,95.7718985824481,0.954671285878487,30.75,0.609756097560976,0,-2.16827493243747,-2.26809000968933,0.133823761620638
+2565,82243,444697.952,82343,444597.952,64,25,73,0.365,18.9038618697087,0.379152348224513,10,0.03375287214134,0.44,44,3,95.3605547046377,0.846153846153846,40,0.369318181818182,0,-2.13896144429843,-2.26568102836609,0.162841298575946
+2566,82243,444597.952,82343,444497.952,65,25,65.75,0.32875,17.0559749217723,0.426844783715013,47.169905660283,0.0368714572691533,0.6425,64.25,1,98.697022509981,0.930215314830699,64.25,0.447470817120623,0,-1.98326653904385,-2.09714722633362,0.113921936102173
+2567,82243,444497.952,82343,444397.952,66,25,35,0.0875,11.8837144039138,0.606360653235653,22.0014076993644,0.00398032374363538,0.255,25.5,3,87.2348872772783,0.794623537609565,9.75,0.196078431372549,0,-1.89690138234033,-1.95006394386292,0.0809447300543106
+2568,82243,444397.952,82343,444297.952,67,25,27,0.27,37.5311348122394,0.583333333333333,NA,-0.00450520559737925,0.14,14,4,82.3346525910172,0.72428674178854,9.75,14.744574546814,0,-1.93233599265416,-2.02080297470093,0.0910179228962353
+2569,82243,444297.952,82343,444197.952,68,25,29.75,0.074375,19.4323991769868,0.476568672340731,19.5710678118655,-0.0113214003934809,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,5.6903559366862,5,-2.05483516057332,-2.14746475219727,0.137945492273426
+2570,82243,444197.952,82343,444097.952,69,25,40.75,0.0815,10.7947296443893,0.33230667329028,16.1529937427669,0.0870748352236114,0.7125,71.25,1,99.0279065499043,0.922128487994809,71.25,5.08594002305416,0,-2.22590219974518,-2.59770965576172,0.287287474839698
+2571,82243,444097.952,82343,443997.952,70,25,70.75,0.35375,23.7591042881586,0.755090958457779,15.8113883008419,-0.0511005731334626,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,2.10060015591708,0,-2.73573152224223,-2.92710423469543,0.25800382993083
+2572,82243,443997.952,82343,443897.952,71,25,38.75,0.3875,33.4651108154712,0.83763440860215,NA,-0.0556398088004789,0,0,0,NA,NA,0,NA,NA,-2.98490713040034,-3.11453986167908,0.188586338274387
+2573,82243,443897.952,82343,443797.952,72,25,74.75,0.7475,34.4764554669419,0.877926421404682,NA,-0.0613465187280963,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-3.01345899369982,-3.1226327419281,0.175302651954503
+2574,82243,443797.952,82343,443697.952,73,25,69.5,0.3475,20.0394931409329,0.394404332129964,10,-0.0426983601340908,0.02,2,1,68.0470115164975,1,2,1.25,0,-2.85662035147349,-3.042973279953,0.201598018271348
+2575,82243,443697.952,82343,443597.952,74,25,88,0.88,37.479018344581,0.865530303030303,NA,-0.0578277209932639,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.83019831445482,-3.10004329681396,0.421134861521218
+2576,82243,443597.952,82343,443497.952,75,25,66.25,0.6625,33.1895531607955,0.849056603773585,NA,-0.0380202271520466,0,0,0,NA,NA,0,NA,NA,-3.10882562398911,-3.89406156539917,0.772329531007268
+2577,82243,443497.952,82343,443397.952,76,25,69.25,0.230833333333333,15.4368804893923,0.602437417654809,15.2704627669473,-0.034592519398052,0.025,2.5,3,47.9024210673189,0.526627218934911,1,2.61803398132324,0,-2.95304094420539,-3.564293384552,0.416372585126847
+2578,82243,443397.952,82343,443297.952,77,25,64.25,0.32125,26.3016670062426,0.783785103785104,15,-0.0323468137434247,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,0,0,-2.91644385125902,-3.00047898292542,0.112706933334405
+2579,82243,443297.952,82343,443197.952,78,25,45.5,0.0758333333333333,7.9604500127207,0.327623212611346,11.0300566479165,0.129356832844769,0.45,45,1,97.417305342106,0.929019929019929,45,17.4839455074734,0,-3.05506167809168,-3.25622367858887,0.206941664451403
+2580,82243,443197.952,82343,443097.952,79,25,0,NA,NA,NA,NA,0.0545720223348326,0.305,30.5,2,95.1357986803744,0.934893713988086,30.25,50.3230603327517,25,-3.31277955902947,-3.39030075073242,0.130011720833185
+2581,82243,443097.952,82343,442997.952,80,25,0.25,0.0025,0,0,NA,-0.0443663075678342,0.0875,8.75,1,87.4704367425575,0.867737364194615,8.75,24.0812262398856,0,-3.39439338445663,-3.42359280586243,0.0452703935345586
+2582,82243,442997.952,82343,442897.952,81,25,3.25,0.0040625,1.5625,0.104166666666667,18.8139756928709,0.109408509397181,0.615,61.5,1,98.5518240730175,0.937888198757764,61.5,18.0071786322245,0,-3.40013204680549,-3.40767765045166,0.00941481741094525
+2583,82243,442897.952,82343,442797.952,82,25,0,NA,NA,NA,NA,0.0198114517863905,0.0625,6.25,1,84.2105263157895,0.813333333333333,6.25,23.834560546875,18.0277557373047,-3.40201409657796,-3.413578748703,0.0184629276141079
+2584,82243,442797.952,82343,442697.952,83,25,0.5,0.0025,0,0,46.0977222864644,0.0511833165830467,0.5575,55.75,1,98.2142154717639,0.858757062146893,55.75,25.4425589642717,5,-3.39433741569519,-3.42356443405151,0.0420638040776907
+2585,82243,442697.952,82343,442597.952,84,25,0.75,0.0025,0,0,32.3626391407974,0.0979055613838136,0.985,98.5,1,99.9600766120013,0.643493761140819,98.5,26.3242650104658,0,-3.41660936673482,-3.43650031089783,0.0298780520150589
+2586,82243,442597.952,82343,442497.952,85,25,0,NA,NA,NA,NA,0.17341112723574,1,100,1,100,NA,100,87.314477596283,35,-3.43028545379639,-3.43256235122681,0.00650053781157157
+2587,82243,442497.952,82343,442397.952,86,25,0,NA,NA,NA,NA,0.0665480511449277,0.5375,53.75,2,95.0707164196761,0.864864864864865,35.25,125.734633405818,70,-3.43198861678441,-3.45625829696655,0.0382517272004656
+2588,82243,442397.952,82343,442297.952,87,25,0,NA,NA,NA,NA,0.0647207218315452,0.7575,75.75,1,99.2159474776692,0.761676927798942,75.75,89.2070572982133,18.0277557373047,-3.35303945011563,-3.43823838233948,0.14294745662037
+2589,82243,442297.952,82343,442197.952,88,25,2.75,0.01375,4.68699080724836,0.340277777777778,10,0.0523973465443123,0.6425,64.25,2,98.384258518637,0.94184609569225,64,33.4666833098297,5,-3.12862588961919,-3.33356189727783,0.266609583601982
+2590,82243,442197.952,82343,442097.952,89,25,4.5,0.0075,2.4903422484072,0.132716049382716,18.0521825968617,0.0110431207017609,0.0475,4.75,1,81.114133276783,0.855190514978731,4.75,8.99828559473941,5,-2.89522401491801,-3.08677315711975,0.293163595525901
+2591,82243,442097.952,82343,441997.952,90,25,5.25,0.0065625,2.96426319915958,0.133680555555556,24.1193956019065,0.017629295470847,0.1925,19.25,1,93.2673077410907,0.972682571480605,19.25,13.0256191105038,0,-2.67230886883206,-2.88275003433228,0.263620505765524
+2592,82243,441997.952,82343,441897.952,91,25,19,0.0271428571428571,5.19203501215409,0.288712522045855,13.5141406435386,-0.022065233201829,0.02,2,3,44.8468832832137,0.591836734693878,1.25,0.883883476257324,0,-2.4827645222346,-2.66103649139404,0.156881561082148
+2593,82243,441897.952,82343,441797.952,92,25,15.75,0.02625,6.12746597862293,0.142819706498952,18.6367374966758,-0.0031250320228537,0.0425,4.25,2,69.1697389652099,0.83289817232376,2.75,7.51852013083065,0,-2.43813641866048,-2.50987267494202,0.110515325508176
+2594,82243,441797.952,82343,441697.952,93,25,11,0.022,8.25358077194257,0.266372549019608,15.2360679774998,-0.0301033616328277,0.07,7,1,85.3702908942512,0.92831541218638,7,11.3544289043971,0,-2.51389533281326,-2.59254717826843,0.100340790015628
+2595,82243,441697.952,82343,441597.952,94,25,0,NA,NA,NA,NA,-0.0653649591561407,0,0,0,NA,NA,0,NA,NA,-2.63642003801134,-2.69391131401062,0.0896581341454526
+2596,82243,441597.952,82343,441497.952,95,25,6.5,0.01625,5.98745894205425,0.226851851851852,17.8077640640442,-0.0402110265733063,0,0,0,NA,NA,0,NA,NA,-2.5816907286644,-2.69002056121826,0.177107265140236
+2597,82243,441497.952,82343,441397.952,96,25,12,0.12,24.0278975722296,0.583333333333333,NA,-0.00425057530165759,0.22,22,2,90.8766799029653,0.910174750939082,19,31.2455740841952,0,-2.48745226860046,-2.63496804237366,0.204068738185362
+2598,82243,441397.952,82343,441297.952,97,25,14.75,0.0295,7.04741554824066,0.240694444444444,10.4721359549996,-0.067838313223765,0.14,14,1,91.1967767414513,0.952049868137137,14,9.12775261061532,0,-2.66275376081467,-2.92977499961853,0.23169849129129
+2599,82243,441297.952,82343,441197.952,98,25,0,NA,NA,NA,NA,-0.0928346358850831,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,89.745616367885,77.7817459106445,-3.14214274618361,-3.35522484779358,0.304884221142935
+2600,82243,441197.952,82343,441097.952,99,25,0,NA,NA,NA,NA,-0.00615785742280423,0.1275,12.75,5,77.3476250850072,0.696999637716958,7.75,119.62759848202,85,-3.43141482273738,-3.55539393424988,0.22304092722431
+2601,82343,451097.952,82443,450997.952,0,26,37.75,0.18875,24.7349619649603,0.525460549183177,10,0.0129481984574886,0.245,24.5,3,90.7489744521472,0.729078868151716,18.75,2.31783434809471,0,2.29215946793556,1.9041348695755,0.436304504128265
+2602,82343,450997.952,82443,450897.952,1,26,34.75,0.115833333333333,19.6247790213437,0.56918260950519,11.1803398874989,0.0529012536568462,0.395,39.5,3,91.1059156984617,0.829011114277572,25.5,4.5479495253744,0,1.71893116831779,1.32011067867279,0.391247698915046
+2603,82343,450897.952,82443,450797.952,2,26,15,0.0375,5.33657820092799,0.302059712773999,12.9056941504209,0.013549495731163,0.1975,19.75,3,86.0513758885625,0.768580329327993,11.5,19.6446984689447,0,1.32399410009384,1.17614853382111,0.222513449466869
+2604,82343,450797.952,82443,450697.952,3,26,6.75,0.0225,4.73980123873781,0.264090177133655,36.3523138347365,-0.0171466229603175,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,1.34122975667318,0,1.21013094484806,1.18042933940887,0.0774257812445035
+2605,82343,450697.952,82443,450597.952,4,26,0.75,0.0075,4.71404520791032,0.111111111111111,NA,-0.0192569789401387,0,0,0,NA,NA,0,NA,NA,1.25940865278244,1.16833889484406,0.121302134717081
+2606,82343,450597.952,82443,450497.952,5,26,2.5,0.00625,3.2291567612584,0.108333333333333,30.26387818866,-0.00557980554950518,0,0,0,NA,NA,0,NA,NA,1.31733468174934,1.15033674240112,0.176558524450421
+2607,82343,450497.952,82443,450397.952,6,26,19,0.0211111111111111,4.41207285865227,0.189278252611586,13.5793030069196,-0.004267858897352,0.1175,11.75,3,80.4583275807095,0.759206798866855,7.5,13.7665872776762,0,1.12885476648808,0.914529144763947,0.232679566860797
+2608,82343,450397.952,82443,450297.952,7,26,2.5,0.00416666666666667,1.37836569605303,0.101851851851852,18.0473785412436,7.73451757095245e-05,0.0725,7.25,4,69.9692576440996,0.72472328955669,3.5,33.6657612241548,0,0.860501378774643,0.579777836799622,0.247992050527359
+2609,82343,450297.952,82443,450197.952,8,26,17.5,0.04375,9.14567603072468,0.263506355932203,10.2950849718747,-0.000672392664546351,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0,0.763341148694356,0.543421506881714,0.276348536916271
+2610,82343,450197.952,82443,450097.952,9,26,7,0.07,11.178195582734,0.636904761904762,NA,-0.0107508370992946,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,0.745224510629972,0.552038609981537,0.256329542375783
+2611,82343,450097.952,82443,449997.952,10,26,38.5,0.055,7.61285528917029,0.232833304261876,11.484062307474,-0.0087944140406762,0.06,6,2,78.1581530534733,0.692049272116461,5,0.208333333333333,0,0.564643733203411,0.356549233198166,0.232504926736549
+2612,82343,449997.952,82443,449897.952,11,26,55.75,0.27875,23.5982380200673,0.60429831490258,11.1803398874989,0.0251656614816139,0.31,31,4,92.9579872212232,0.884057971014493,29.25,1.3263275084957,0,0.12721291972169,-0.146691262722015,0.295471191588161
+2613,82343,449897.952,82443,449797.952,12,26,44.25,0.1475,12.9663375875072,0.53203477392268,15,0.0125568080553057,0.17,17,2,88.5306681589503,0.858256555634302,13.25,0.220588235294118,0,-0.488873088732362,-1.08642792701721,0.554513853600064
+2614,82343,449797.952,82443,449697.952,13,26,20,0.1,12.0354231076892,0.640046296296296,74.3303437365925,0.0206735658973048,0.3175,31.75,3,93.9201726268581,0.911199911199911,30.5,6.78142571637011,0,-1.73975683252017,-3.76577425003052,1.5221970705491
+2615,82343,449697.952,82443,449597.952,14,26,48.75,0.1625,15.3931284741144,0.584534720076889,11.380711874577,0.044105855904163,0.41,41,3,95.8145802902961,0.848467841508587,39.5,2.17836866146181,0,-0.600237048231065,-4.07150650024414,1.9033812850855
+2616,82343,449597.952,82443,449497.952,15,26,5.75,0.0575,13.5889564441897,0.623188405797101,NA,-0.0304114833127096,0.0175,1.75,2,51.615396620588,0.618320610687023,1.25,1.7244382585798,0,-0.172266330569983,-0.5,0.651817027123908
+2617,82343,449497.952,82443,449397.952,16,26,26,0.052,10.7124944039611,0.419135802469136,10.8284271247462,-0.0102470692587667,0.235,23.5,2,93.3959996477718,0.891067538126362,23,2.03418301521464,0,0.674890386871994,-0.5,2.12959657858641
+2618,82343,449397.952,82443,449297.952,17,26,68.25,0.6825,33.8962774659465,0.907814407814408,NA,0.0709034037636593,0.845,84.5,1,99.5375969134692,0.757685900348327,84.5,4.77703374377369,0,3.49221966663996,0.747075200080872,3.06407037782126
+2619,82343,449297.952,82443,449197.952,18,26,0,NA,NA,NA,NA,0.111716930484399,0.9575,95.75,1,99.8844617862358,0.740722735375142,95.75,41.2791567869659,5,1.84591560438275,0.208991974592209,1.87625951450419
+2620,82343,449197.952,82443,449097.952,19,26,33.25,0.3325,29.3718971503729,0.667919799498747,NA,0.064269491202258,0.565,56.5,2,96.7061950325966,0.90717230458405,52,10.4460794988987,0,0.467878920705213,-0.188215479254723,1.33086794041308
+2621,82343,449097.952,82443,448997.952,20,26,16.5,0.0825,13.456553788554,0.670894308943089,10,0.0135964439444751,0.1525,15.25,2,86.5729797697068,0.89981632993822,10.5,1.85658045284084,0,-1.27896273136139,-1.5,1.32483715349707
+2622,82343,448997.952,82443,448897.952,21,26,48,0.24,24.1696194785331,0.722800925925926,11.1803398874989,0.0459823091115231,0.4925,49.25,2,96.573314996934,0.940616775760847,48,0.960112363553894,0,0.0464195134118199,-1.48293924331665,2.5612680434264
+2623,82343,448897.952,82443,448797.952,22,26,19,0.0475,9.56842779470415,0.540315315315315,25.5205098312484,-0.00856551407901861,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,0,0,-0.457639712840319,-1,1.58863663158457
+2624,82343,448797.952,82443,448697.952,23,26,57,0.285,23.2434798588113,0.579267726047765,11.1803398874989,0.0189407859221683,0.295,29.5,2,94.1061795486424,0.860807317558163,27.75,1.11924633737338,0,0.526385370641947,-1,1.11971210502168
+2625,82343,448697.952,82443,448597.952,24,26,40.75,0.0509375,10.4429727653528,0.344192298398233,10.5901699437495,0.0132801762974123,0.1925,19.25,2,91.9644595672781,0.799672190857767,18.5,1.84926679536894,0,0.980892570068439,-0.172813028097153,1.26289492171827
+2626,82343,448597.952,82443,448497.952,25,26,30,0.0333333333333333,10.2142100696801,0.223033163882837,12.1603021222213,-0.00207843460011645,0.0775,7.75,3,79.7035945669249,0.804878048780488,6.5,1.7741935483871,0,-0.877762736752629,-1.64801931381226,1.27943894987659
+2627,82343,448497.952,82443,448397.952,26,26,6.75,0.00519230769230769,2.35223610518167,0.101709401709402,13.4438026849594,0.00468532578001941,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,21.0794258117676,10,-0.90208604435126,-0.953483700752258,0.189509681920472
+2628,82343,448397.952,82443,448297.952,27,26,11.5,0.023,7.77404972362086,0.348691678691679,17.6046652096173,0.0168590757498168,0.0825,8.25,5,75.4562277747864,0.656877586032899,6.25,14.3504958875252,5,-0.937282353639603,-0.950642108917236,0.0249886632060949
+2629,82343,448297.952,82443,448197.952,28,26,12.25,0.01225,4.44705531245786,0.162037037037037,11.2404514836224,0.00399084637735655,0.0275,2.75,2,60.9733116181825,0.657240788346187,1.75,6.045710476962,0,-0.915340865651766,-0.934103012084961,0.0301724157742281
+2630,82343,448197.952,82443,448097.952,29,26,13.25,0.06625,20.9099418860906,0.500515995872033,14.142135623731,-0.00125383699582926,0.0075,0.75,1,44.4894453484604,1,0.75,32.9979120890299,31.6227760314941,-0.817617997527122,-0.892637372016907,0.0854050721711635
+2631,82343,448097.952,82443,447997.952,30,26,6.75,0.03375,5.41601674058002,0.317307692307692,60.8276253029822,0.00349163347840658,0.0175,1.75,2,49.299249134574,0.618320610687023,1,22.557672228132,7.07106781005859,-0.660801445444425,-0.731014370918274,0.0887587142179397
+2632,82343,447997.952,82443,447897.952,31,26,8,0.016,7.72569497621568,0.198611111111111,15.7522458442801,-0.00766112449438879,0,0,0,NA,NA,0,NA,NA,-0.648872137069702,-0.762783765792847,0.14362857844706
+2633,82343,447897.952,82443,447797.952,32,26,12.75,0.0159375,4.73225992726949,0.222670250896057,13.8627124296868,-0.0156308316390664,0,0,0,NA,NA,0,NA,NA,-0.981541715562344,-1.10270130634308,0.161432450790754
+2634,82343,447797.952,82443,447697.952,33,26,15.75,0.039375,8.96650216448769,0.460116323417239,10,-0.00529788823947456,0,0,0,NA,NA,0,NA,NA,-1.17342714468638,-1.20554256439209,0.0658869959516361
+2635,82343,447697.952,82443,447597.952,34,26,11.75,0.0167857142857143,6.96655650444214,0.206349206349206,17.7646297090484,-0.0113780073045837,0,0,0,NA,NA,0,NA,NA,-1.22389014065266,-1.24000000953674,0.0321680673564709
+2636,82343,447597.952,82443,447497.952,35,26,10,0.0125,4.53919256413519,0.173313492063492,12.3381019908347,0.00932772552376264,0.0725,7.25,3,81.1121467380364,0.655904111945862,6.5,7.1068659815295,0,-1.2263507048289,-1.23989129066467,0.0327429215102925
+2637,82343,447497.952,82443,447397.952,36,26,17.5,0.0194444444444444,6.3745513535218,0.271273485652571,14.1535479732911,-0.00334564764012612,0.0375,3.75,3,59.6678621602474,0.669421487603306,2,9.56849377950033,0,-1.21240108460188,-1.23105895519257,0.0386246413405412
+2638,82343,447397.952,82443,447297.952,37,26,15,0.0125,3.78300149160769,0.16376484139642,15.7212726154091,-0.00369043289914771,0.015,1.5,1,62.2896536353828,1,1.5,5.8870792388916,0,-1.20053138335546,-1.21970844268799,0.0379200427658722
+2639,82343,447297.952,82443,447197.952,38,26,30,0.05,8.29621314501622,0.203932893289329,19.3021228640375,0.004817889657661,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,0.333333333333333,0,-1.17625923454762,-1.20215237140656,0.0481722634317024
+2640,82343,447197.952,82443,447097.952,39,26,12.25,0.0136111111111111,3.23717611290621,0.167695473251029,13.343839047767,0.00347622910104292,0.005,0.5,1,30.8308651382582,1,0.5,13.4958639144897,11.1803398132324,-1.1364044547081,-1.16698038578033,0.0717443752388002
+2641,82343,447097.952,82443,446997.952,40,26,9.25,0.0115625,3.60791401592376,0.19859871031746,17.5403094389037,0.00387650449392822,0.03,3,3,55.5868799243215,0.696785930867192,1.5,24.7904698053996,15,-1.03198769688606,-1.12603282928467,0.169776281322975
+2642,82343,446997.952,82443,446897.952,41,26,13.25,0.0110416666666667,3.50961902787637,0.125274122807018,13.574452302153,0.0153796258369402,0.015,1.5,2,45.0766242787986,0.709934735315446,1,4.51184463500977,0,-0.756711311638355,-0.996163070201874,0.318117489797626
+2643,82343,446897.952,82443,446797.952,42,26,12.25,0.0136111111111111,5.20508496959472,0.163501107945552,13.5793030069196,0.00826015088447093,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.462139599025249,-0.716416001319885,0.225422860691448
+2644,82343,446797.952,82443,446697.952,43,26,29.5,0.0295,8.10087222851157,0.24317823629606,10.3541019662497,0.0145170054084156,0.045,4.5,3,63.346874184061,0.728524335854179,2.25,4.80312993791368,0,-0.316376939415932,-0.432814627885818,0.121395111777295
+2645,82343,446697.952,82443,446597.952,44,26,14.5,0.0120833333333333,3.81819385028677,0.163367650867651,12.6631010160112,0.0194176951292866,0.11,11,6,76.7817663151463,0.665958092924385,7.25,6.95343572443182,0,-0.225016755362352,-0.33164644241333,0.126524074350186
+2646,82343,446597.952,82443,446497.952,45,26,2.5,0.00625,1.87730038972976,0.177777777777778,23.1936231066222,0.00556897554570241,0.0425,4.25,2,69.4704319562038,0.7911227154047,2.5,5.50434606215533,0,-0.0556117932719644,-0.238878607749939,0.205001367357469
+2647,82343,446497.952,82443,446397.952,46,26,6,0.0075,2.64893785905908,0.163888888888889,17.6878519248411,0.0110680008377039,0.065,6.5,2,77.1835258631473,0.739141776444502,4.25,7.64628483698918,0,0.140414820363124,-0.103576429188251,0.266627071946559
+2648,82343,446397.952,82443,446297.952,47,26,3.25,0.00464285714285714,1.66127669199908,0.0833333333333333,10.8430999196421,0.00924336741232423,0.0625,6.25,1,84.2105263157895,0.92,6.25,9.28766403198242,5,0.203657740028575,-0.0774002447724342,0.289402217085392
+2649,82343,446297.952,82443,446197.952,48,26,6,0.015,4.24272856465323,0.355555555555556,20.8113883008419,0.00517069085572984,0.04,4,3,62.6689795569216,0.652777777777778,2.5,15.1276527643204,0,0.10329742814065,-0.198355361819267,0.30581449538343
+2650,82343,446197.952,82443,446097.952,49,26,1.25,0.00625,1.91347050800552,0.166666666666667,55.9016994374947,0.00460695757778012,0.105,10.5,3,82.504405014024,0.700999291840428,8.25,16.6789772396996,0,-0.167340149055235,-0.449897825717926,0.283039127304668
+2651,82343,446097.952,82443,445997.952,50,26,5.5,0.011,4.27302195607956,0.233333333333333,18.8015726721332,0.0088432690821719,0.06,6,2,80.5161428143405,0.888017917133259,5.75,26.1153388818105,0,-0.548193561534087,-0.688497722148895,0.217442432375083
+2652,82343,445997.952,82443,445897.952,51,26,35,0.05,9.79304546467789,0.391947675127399,13.4598334618649,0.0101539844580475,0.2575,25.75,2,93.7394699573425,0.868959868959869,24.75,5.45002900280999,0,-0.860026992857456,-1.00739932060242,0.168366847162567
+2653,82343,445897.952,82443,445797.952,52,26,46,0.23,16.6352276163682,0.457417582417582,10,-0.0357642718518218,0,0,0,NA,NA,0,NA,NA,-1.18195548156897,-1.4072562456131,0.249437406289539
+2654,82343,445797.952,82443,445697.952,53,26,53.5,0.13375,10.3318274691631,0.492776808221834,12.7950849718747,-0.0121394617883789,0,0,0,NA,NA,0,NA,NA,-1.64347629994154,-1.89464950561523,0.273987919102961
+2655,82343,445697.952,82443,445597.952,54,26,25.75,0.2575,27.9605342438043,0.796116504854369,NA,-0.0397760064272734,0,0,0,NA,NA,0,NA,NA,-1.97863079110781,-2.11106085777283,0.182319387345261
+2656,82343,445597.952,82443,445497.952,55,26,88.25,0.44125,28.7691218576181,0.871975806451613,14.142135623731,-0.0602218752667977,0,0,0,NA,NA,0,NA,NA,-2.09075330694517,-2.23263311386108,0.164579482648676
+2657,82343,445497.952,82443,445397.952,56,26,88.75,0.44375,18.2987886099619,0.461393596986817,15,0.0272415369037481,0.4375,43.75,1,97.3060110945426,0.933952528379773,43.75,0.22366934640067,0,-1.82600263506174,-2.33321452140808,0.602751775743915
+2658,82343,445397.952,82443,445297.952,57,26,87.25,0.290833333333333,14.8067118692149,0.469704353476283,12.7240226919466,0.0525289336388232,0.6125,61.25,1,98.5381414210533,0.791519932384843,61.25,0.183673469387755,0,-0.83732908219099,-1.93790078163147,0.851766956757904
+2659,82343,445297.952,82443,445197.952,58,26,64.5,0.3225,18.291176995931,0.396887159533074,11.1803398874989,0.0355784205402961,0.32,32,4,90.3905396692297,0.766473112850291,20.75,0.556096404790878,0,-1.1263893651776,-1.50845694541931,0.57718218340739
+2660,82343,445197.952,82443,445097.952,59,26,22,0.0157142857142857,3.85701703020372,0.19015873015873,11.6932011376198,0.0313322784112461,0.1825,18.25,5,82.1169325652371,0.761085626911315,11.25,2.95782123199881,0,-1.626470297575,-1.74360430240631,0.177198898434174
+2661,82343,445097.952,82443,444997.952,60,26,56,0.186666666666667,12.8911596264925,0.311616161616162,12.1676051329096,0.0332098419543581,0.34,34,3,92.8720762479574,0.841153470185728,28.75,3.80521305869607,0,-1.94687768816948,-2.19037413597107,0.221098355373698
+2662,82343,444997.952,82443,444897.952,61,26,84,0.42,24.0109352572151,0.830292792792793,15,0.0285138673689744,0.335,33.5,5,87.7587790917066,0.753482065820289,16.75,0.748920440673828,0,-2.16050140062968,-2.36424565315247,0.211599917708727
+2663,82343,444897.952,82443,444797.952,62,26,47,0.156666666666667,20.4809504855602,0.710107612068396,17.761423749154,0.00789888047947443,0.115,11.5,7,68.5943386476847,0.594379255396205,4.5,0.978260869565217,0,-2.21530102938414,-2.39515423774719,0.197001750523918
+2664,82343,444797.952,82443,444697.952,63,26,85.75,0.42875,20.9524926466015,0.560349065880039,10,0.0658059345101356,0.525,52.5,2,97.6602719516786,0.919235428725266,52.25,1.16258159819103,0,-2.33725273609161,-2.40559697151184,0.104656342751493
+2665,82343,444697.952,82443,444597.952,64,26,88.25,0.294166666666667,13.402384363318,0.365860129470445,10,0.0553723711101338,0.6375,63.75,1,98.6713232517353,0.907661232145434,63.75,0.313725490196078,0,-2.30086709558964,-2.40327954292297,0.117899693653434
+2666,82343,444597.952,82443,444497.952,65,26,85,0.85,38.6859055671851,0.819117647058824,NA,0.0373705774161863,0.4675,46.75,3,94.8656648118907,0.815463106190127,35.75,0.106951871657754,0,-2.0206422607104,-2.12706351280212,0.172109458985764
+2667,82343,444497.952,82443,444397.952,66,26,57,0.19,18.8087279697377,0.660461393596987,14.120226591666,0.118357694195438,0.565,56.5,2,95.195580868709,0.874409588554891,45.25,1.99537085642857,0,-1.8459881345431,-1.91831123828888,0.0986959277497036
+2668,82343,444397.952,82443,444297.952,67,26,24.25,0.0808333333333333,14.3055556658615,0.40489417989418,24.612943493311,0.00917068976919836,0.2675,26.75,3,89.8458638552821,0.731206564218642,18.5,4.06742295594973,0,-1.95930879563093,-2.07186102867126,0.128388809937723
+2669,82343,444297.952,82443,444197.952,68,26,19.5,0.0325,7.51474111305989,0.313474856970792,14.9845079748576,0.0194023872843536,0.335,33.5,2,92.425739186848,0.852089239492173,17.25,4.77902082187026,0,-2.15735175212224,-2.24740386009216,0.0939954061820214
+2670,82343,444197.952,82443,444097.952,69,26,49.75,0.165833333333333,21.4044251927787,0.663671483983984,11.937129433614,0.076341025667316,0.5975,59.75,3,96.3466258346657,0.849931218475134,56,2.69392369481809,0,-2.22471196949482,-2.33127808570862,0.133993735481783
+2671,82343,444097.952,82443,443997.952,70,26,70.75,0.35375,27.1268455661435,0.79656862745098,18.0277563773199,0.0684270441086846,0.6,60,1,98.4684502698115,0.916481069042316,60,1.66266160011292,0,-2.44427992900213,-2.5944037437439,0.153941446267155
+2672,82343,443997.952,82443,443897.952,71,26,90,0.9,37.1493067135002,0.906944444444444,NA,-0.0390390102247329,0,0,0,NA,NA,0,NA,NA,-2.62246412038803,-2.95720505714417,0.236270583980404
+2673,82343,443897.952,82443,443797.952,72,26,47.25,0.23625,19.6279805060019,0.830947720414322,33.5410196624968,-0.0364254867427735,0,0,0,NA,NA,0,NA,NA,-2.77645639578501,-2.89832043647766,0.150034097536328
+2674,82343,443797.952,82443,443697.952,73,26,87.75,0.8775,36.8553017784062,0.898860398860399,NA,-0.0731318194008782,0,0,0,NA,NA,0,NA,NA,-2.67972181737423,-2.74086403846741,0.0770404123192989
+2675,82343,443697.952,82443,443597.952,74,26,64.5,0.215,19.1860167741208,0.505879166838071,12.67591879244,-0.0405220529679173,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.67933611075083,-2.75903058052063,0.0892690647864626
+2676,82343,443597.952,82443,443497.952,75,26,95.5,0.4775,20.3445974202605,0.594693638229258,10,-0.081524812062562,0,0,0,NA,NA,0,NA,NA,-2.58534280955791,-2.70457410812378,0.102453641001194
+2677,82343,443497.952,82443,443397.952,76,26,89.75,0.8975,37.5352157977278,0.876508820798514,NA,-0.0566905426179437,0,0,0,NA,NA,0,NA,NA,-2.62607504924138,-2.75455498695374,0.126490638019513
+2678,82343,443397.952,82443,443297.952,77,26,76.25,0.7625,39.5975421853772,0.814207650273224,NA,-0.0546023674157914,0,0,0,NA,NA,0,NA,NA,-2.85108703374863,-3.02117371559143,0.227881690317329
+2679,82343,443297.952,82443,443197.952,78,26,23.25,0.0465,7.50321051755279,0.386315206863152,11,0.124779064298928,0.565,56.5,1,98.2611567869712,0.972697736642368,56.5,25.2374824591443,0,-3.20313613116741,-3.3465301990509,0.174577710472608
+2680,82343,443197.952,82443,443097.952,79,26,3.75,0.0075,3.17306462839513,0.141269841269841,11.1803398874989,-0.00326298994899844,0.0425,4.25,1,79.7330921014386,0.66579634464752,4.25,55.8709766163545,38.0788650512695,-3.40972091754278,-3.43617486953735,0.0633101358464829
+2681,82343,443097.952,82443,442997.952,80,26,0.75,0.00375,1.25,0.0833333333333333,41.2310562561766,0.0264968710962057,0.2875,28.75,1,95.4473178079967,0.966261808367072,28.75,17.106093050086,0,-3.42414809763432,-3.4394097328186,0.0147874248387966
+2682,82343,442997.952,82443,442897.952,81,26,4,0.00363636363636364,1.13636363636364,0.0757575757575758,17.1530794198915,0.0551600313875315,0.35,35,3,91.4336782664749,0.84375,23.75,13.5055970191956,0,-3.40345635016759,-3.41099190711975,0.008718254298302
+2683,82343,442897.952,82443,442797.952,82,26,0.25,0.0025,0,0,NA,0.0129507064157133,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,21.7295750065854,5,-3.41220258176327,-3.43135142326355,0.0177469985215941
+2684,82343,442797.952,82443,442697.952,83,26,0,NA,NA,NA,NA,0.0475117893016431,0.515,51.5,2,97.7134454630368,0.773895722860757,51.25,48.3730203572986,18.0277557373047,-3.44617696603139,-3.46157550811768,0.0248518899217923
+2685,82343,442697.952,82443,442597.952,84,26,0.25,0.0025,0,0,NA,0.104519204348326,0.98,98,1,99.9465655549884,0.663978494623657,98,43.7538776981587,0,-3.45556296408176,-3.47000002861023,0.0176964234457658
+2686,82343,442597.952,82443,442497.952,85,26,0,NA,NA,NA,NA,0.167747658124426,0.9625,96.25,1,99.898450616446,0.963470319634702,96.25,108.680637032645,50.9901962280273,-3.44126810630163,-3.45939755439758,0.016061493168878
+2687,82343,442497.952,82443,442397.952,86,26,0,NA,NA,NA,NA,0.0676381154364208,0.5125,51.25,3,96.7718177549961,0.92462480651457,50.25,200.136023619117,150.332962036133,-3.47413985431194,-3.497962474823,0.0307810994313797
+2688,82343,442397.952,82443,442297.952,87,26,0,NA,NA,NA,NA,0.0618907112907618,0.8175,81.75,1,99.442091962007,0.813503252592082,81.75,152.683822771825,105.118980407715,-3.48297633727392,-3.5024995803833,0.0497186626908312
+2689,82343,442297.952,82443,442197.952,88,26,0,NA,NA,NA,NA,0.0662099230661988,0.91,91,1,99.745869280411,0.758103531688437,91,56.0236439338097,5,-3.38473598659039,-3.47204446792603,0.125784937636195
+2690,82343,442197.952,82443,442097.952,89,26,0.75,0.00375,1.25,0.0833333333333333,61.8465843842649,0.0231632383122633,0.2,20,1,93.4943790657906,0.938380281690141,20,19.446835565567,0,-3.16920403639475,-3.2567720413208,0.160108484297931
+2691,82343,442097.952,82443,441997.952,90,26,2.5,0.00416666666666667,0.706501230433484,0.0722222222222222,28.8029085952801,0.00578204062813256,0.0025,0.25,1,0,NA,0.25,20,20,-2.93189140160879,-3.03059697151184,0.168245342041563
+2692,82343,441997.952,82443,441897.952,91,26,18.25,0.0304166666666667,5.85359426727299,0.410968660968661,11.8018980501403,-0.0238607793852134,0.0375,3.75,3,61.9676316777521,0.669421487603306,2.5,7,0,-2.7528303861618,-2.84051132202148,0.12820921732297
+2693,82343,441897.952,82443,441797.952,92,26,8.25,0.0825,14.8306335942848,0.691919191919192,NA,-0.00933146501903138,0.1275,12.75,2,87.446250662632,0.855086783255937,11.5,5.48647039076861,0,-2.74070690075556,-2.88886666297913,0.177789660124335
+2694,82343,441797.952,82443,441697.952,93,26,26,0.0288888888888889,5.81200335506051,0.272587638024797,12.3753320295411,-0.017108383792509,0.0275,2.75,3,53.4089368972002,0.657240788346187,1.75,4.01292142001065,0,-2.72729317843914,-2.91328096389771,0.199283623829479
+2695,82343,441697.952,82443,441597.952,94,26,6.25,0.03125,12.780658165205,0.202485380116959,10,-0.0407785761876948,0,0,0,NA,NA,0,NA,NA,-2.63195616006851,-2.78165030479431,0.152409527094835
+2696,82343,441597.952,82443,441497.952,95,26,2.25,0.005625,2.32886512994894,0.0833333333333333,15.3985381347475,-0.113391594919376,0,0,0,NA,NA,0,NA,NA,-2.29808194935322,-2.50596737861633,0.221623473985594
+2697,82343,441497.952,82443,441397.952,96,26,0,NA,NA,NA,NA,-0.111179724466056,0,0,0,NA,NA,0,NA,NA,-2.22770802179972,-2.37078428268433,0.172249776997106
+2698,82343,441397.952,82443,441297.952,97,26,2,0.00666666666666667,3.71030701319717,0.166666666666667,10.3934466291663,-0.124395888959989,0,0,0,NA,NA,0,NA,NA,-2.54975163936615,-2.74867677688599,0.187954506101252
+2699,82343,441297.952,82443,441197.952,98,26,7.5,0.025,9.12375193211872,0.14983164983165,10.3934466291663,-0.103395288661122,0,0,0,NA,NA,0,NA,NA,-2.82626259326935,-3.03271865844727,0.193722610316496
+2700,82343,441197.952,82443,441097.952,99,26,3.42105263157895,0.01625,5.61442222688439,0.131944444444444,14.142135623731,-0.078102092391722,0,0,0,NA,NA,0,NA,NA,-3.0404072701931,-3.2694525718689,0.203541259684695
+2701,82443,451097.952,82543,450997.952,0,27,28.75,0.0575,11.2509798881458,0.286093090309958,10.7082039324994,0.0170614384354849,0.095,9.5,4,75.8261899383075,0.771989827238446,6.75,2.68608073184365,0,2.01260013050503,1.68128788471222,0.437509189560004
+2702,82443,450997.952,82543,450897.952,1,27,27.75,0.0308333333333333,6.12496309177724,0.326054526748971,15.8015252291418,-0.000310964009840973,0.095,9.5,2,81.7688540172614,0.859686047531351,7,2.29983008535285,0,1.44452618559202,1.28446185588837,0.241233104724153
+2703,82443,450897.952,82543,450797.952,2,27,2.25,0.00375,0.961699029386359,0.0740740740740741,23.3115423125716,0.0183876706157389,0.2075,20.75,2,91.7511064343639,0.948496748857272,20,21.033800331943,5,1.22848320007324,1.19040548801422,0.0535439468655779
+2704,82443,450797.952,82543,450697.952,3,27,0,NA,NA,NA,NA,-0.00688920331424015,0,0,0,NA,NA,0,NA,NA,1.25310363372167,1.19695770740509,0.0576531678651842
+2705,82443,450697.952,82543,450597.952,4,27,0.25,0.0025,0,0,NA,-0.00665353558890729,0.0025,0.25,1,0,NA,0.25,70.7106781005859,70.7106781005859,1.34287869930267,1.30529344081879,0.0594470970673422
+2706,82443,450597.952,82543,450497.952,5,27,25.25,0.0420833333333333,7.14817187707613,0.290625531191569,15.598855705227,0.00445196922624746,0.0625,6.25,5,60.8867092688808,0.546666666666667,2.25,1.8,0,1.40902200341225,1.36647188663483,0.0609017813649631
+2707,82443,450497.952,82543,450397.952,6,27,21.25,0.0354166666666667,10.074726955264,0.401016009852217,13.5300566479165,0.0145604441892465,0.17,17,3,84.2144605499736,0.827882960413081,10.5,1.99051969191607,0,1.32885992527008,1.2373925447464,0.104860069653445
+2708,82443,450397.952,82543,450297.952,7,27,24,0.04,8.15262061115688,0.411889784460117,15.1184463531091,0.0154330241767639,0.205,20.5,4,84.0876195314355,0.748427672955975,10,2.41117095947266,0,1.21587114532789,1.08947658538818,0.197692193498846
+2709,82443,450297.952,82543,450197.952,8,27,2.75,0.006875,3.05006933648123,0.152777777777778,16.1967716615477,-0.00769385796481856,0,0,0,NA,NA,0,NA,NA,1.15859815809462,1.04960131645203,0.165684602882121
+2710,82443,450197.952,82543,450097.952,9,27,1,0.005,1.63509708815908,0.138888888888889,35.3553390593274,0.0089348707193858,0.0975,9.75,2,85.8269464712375,0.86362667803111,9.25,14.5891442421155,0,1.04959644211663,0.959757030010223,0.184647558945291
+2711,82443,450097.952,82543,449997.952,10,27,26.25,0.04375,6.30698692507006,0.207954342785803,20.4236118655704,0.0118633390956848,0.1425,14.25,2,86.9329903476319,0.833402748854644,11.5,0.562650312457168,0,0.566664492711425,0.0820486322045326,0.388571062651536
+2712,82443,449997.952,82543,449897.952,11,27,44.25,0.1475,13.9792941088646,0.532442216652743,27.1592184169087,0.00581198086405493,0.2125,21.25,2,90.2818001343756,0.848628192999054,17.25,0.470588235294118,0,-0.183043907499976,-0.567583441734314,0.510604449496768
+2713,82443,449897.952,82543,449797.952,12,27,19.75,0.09875,17.0416777028534,0.511695906432749,69.462219947249,0.0182696392342405,0.27,27,2,94.1076820973739,0.852476290832455,26.25,1.83399405302825,0,-0.993080893531442,-2.45101833343506,0.9399582557081
+2714,82443,449797.952,82543,449697.952,13,27,13,0.026,6.50107906363175,0.340930735930736,15.7966912753363,0.00398068888018315,0.1025,10.25,3,83.195330860072,0.870816680796092,9.25,3.27363009569122,0,-0.5246550631192,-0.771811008453369,0.427324464331749
+2715,82443,449697.952,82543,449597.952,14,27,35.5,0.1775,22.9216157713616,0.558990442054958,25,0.0159145271174793,0.1825,18.25,3,86.3627086420646,0.732415902140673,9.5,2.11153610438517,0,-0.281543551633755,-0.564973890781403,0.351950889721747
+2716,82443,449597.952,82543,449497.952,15,27,31.5,0.105,13.4578448989954,0.718344889076596,14.6985531827679,0.00615865977702924,0.2075,20.75,3,87.281943523098,0.85407412176227,14.75,2.01718562482351,0,-0.421478350957235,-0.5,0.218175922507757
+2717,82443,449497.952,82543,449397.952,16,27,45.75,0.07625,11.0179265626821,0.463068181818182,14.120226591666,0.0372806017819676,0.465,46.5,3,92.7038803475964,0.853292762442947,29.75,1.09753836354902,0,0.94485371435682,-0.5,3.15573183820262
+2718,82443,449397.952,82543,449297.952,17,27,68.5,0.228333333333333,17.5101170523402,0.65188344793608,10,0.0485459225086379,0.48,48,3,94.0641284405136,0.859550561797753,39.25,2.38161621491114,0,5.22688499589761,0.227516129612923,4.34726785318575
+2719,82443,449297.952,82543,449197.952,18,27,38.25,0.0546428571428571,6.64184338834464,0.275069375069375,12.34670234699,0.080295919450873,0.8625,86.25,1,99.5959799783351,0.821528165086447,86.25,6.85338401241579,0,3.38186726967494,2.58345985412598,1.77480571525459
+2720,82443,449197.952,82543,449097.952,19,27,28.75,0.0479166666666667,7.11840764841722,0.410984848484849,18.8501545511031,0.0155395359386057,0.3275,32.75,1,96.0662730877785,0.888009208131776,32.75,2.643685231682,0,1.25264269775814,-1.00954723358154,2.3757610719975
+2721,82443,449097.952,82543,448997.952,20,27,66.75,0.2225,20.4158601000876,0.725978635181671,10,0.0450365547765432,0.5325,53.25,3,97.0108621727862,0.913574245125047,52.25,0.934939603850315,0,1.63242763943142,-1.5,5.10883988811757
+2722,82443,448997.952,82543,448897.952,21,27,96.5,0.965,37.8657777021009,0.916234887737478,NA,0.0884088751208037,0.9875,98.75,1,99.9667936270881,0.786666666666663,98.75,0.177215189873418,0,8.59687489271164,3.40264248847961,5.98190727133323
+2723,82443,448897.952,82543,448797.952,22,27,19.5,0.065,8.76860391645085,0.46875,11.1803398874989,0.00670303214136993,0.1325,13.25,2,85.0444597713875,0.860658073914558,8.25,2.02629326874355,0,2.22491389678584,-1,6.16231496649586
+2724,82443,448797.952,82543,448697.952,23,27,31.75,0.079375,10.0198502334553,0.368478260869565,13.0901699437495,0.0125685662366413,0.1525,15.25,3,86.8093929120683,0.821895697667947,12.25,1.31147540983607,0,-0.383057143112334,-1,0.943348271571697
+2725,82443,448697.952,82543,448597.952,24,27,11,0.11,18.2714192782518,0.681818181818182,NA,-0.0227287630519822,0,0,0,NA,NA,0,NA,NA,2.38239436017142,0.955759823322296,1.86776615968079
+2726,82443,448597.952,82543,448497.952,25,27,17.75,0.0355,8.9357689936442,0.259623015873016,10.4721359549996,0.00761953749519307,0.0625,6.25,2,80.718217335568,0.733333333333333,5.75,2.4,0,1.15692765514056,-0.636831045150757,2.00287416880866
+2727,82443,448497.952,82543,448397.952,26,27,40.75,0.101875,25.0547745851153,0.464091383422779,10,0.00417492576634686,0.04,4,2,67.9080622555761,0.782986111111111,2.75,3.125,0,-0.626423411899143,-0.834093689918518,0.361299724499729
+2728,82443,448397.952,82543,448297.952,27,27,18.25,0.0260714285714286,7.54039746213369,0.296160042964554,15.1476267392539,-0.0112958905038022,0.025,2.5,1,71.9760246298065,1,2.5,6.6502815246582,0,-0.853197231888771,-0.908964455127716,0.0926030416637684
+2729,82443,448297.952,82543,448197.952,28,27,21.25,0.0236111111111111,6.3520890644701,0.21536212325686,13.0832351030351,0.00577422429631497,0.1,10,4,75.0462056604591,0.684908789386401,4.75,6.04113101959229,0,-0.898154424296485,-0.909808456897736,0.0217765788195854
+2730,82443,448197.952,82543,448097.952,29,27,3.25,0.0065,1.74588290823833,0.146031746031746,33.9156733399847,-0.00262093778528651,0.0075,0.75,1,44.4894453484604,1,0.75,20.334654490153,18.0277557373047,-0.83809986213843,-0.887168049812317,0.070463824674043
+2731,82443,448097.952,82543,447997.952,30,27,7.5,0.009375,3.36531652559809,0.122395833333333,13.8471090380795,0.00745415527499972,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,1.78571428571429,0,-0.740953319602542,-0.802793562412262,0.0888456003263786
+2732,82443,447997.952,82543,447897.952,31,27,24.25,0.0161666666666667,3.82185840297382,0.12025462962963,11.0956298192222,0.0232735352854161,0.2125,21.25,4,86.2146506705353,0.772942289498581,13.75,5.34785472645479,0,-0.744334492418501,-0.779153406620026,0.0791886377028808
+2733,82443,447897.952,82543,447797.952,32,27,43.75,0.145833333333333,13.1417129969936,0.402244668911336,10.3934466291663,0.00931307154591195,0.1675,16.75,4,87.1314339304858,0.784399784399784,14,1.93989562988281,0,-0.907319645086924,-1.05347466468811,0.15982730802493
+2734,82443,447797.952,82543,447697.952,33,27,17.5,0.035,9.35428198852087,0.436550522648084,11.3005630797458,0.0136124815395306,0.055,5.5,5,60.8194159597436,0.626517273576097,3.25,3.98709175803445,0,-1.03030046489504,-1.14725947380066,0.214413478764078
+2735,82443,447697.952,82543,447597.952,34,27,22.75,0.0252777777777778,4.71764264412531,0.161503734886819,12.3370430194197,0.00709603487070126,0.0925,9.25,4,71.83855243985,0.674840807478661,4,8.69542389947015,0,-1.07709493736426,-1.17445480823517,0.207528494540913
+2736,82443,447597.952,82543,447497.952,35,27,8.75,0.0125,5.48907166815281,0.190022675736961,17.9426473479218,-0.000666733269517863,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172,-1.09540200233459,-1.17241930961609,0.140393375793457
+2737,82443,447497.952,82543,447397.952,36,27,7.5,0.0107142857142857,4.35227198149926,0.15922619047619,22.7900816822927,-0.000630892500689697,0,0,0,NA,NA,0,NA,NA,-1.08102622628212,-1.14636814594269,0.111181242988108
+2738,82443,447397.952,82543,447297.952,37,27,5,0.00625,2.43744462066538,0.125,19.2675526080517,-0.00102143902306125,0.0175,1.75,1,65.4774238937655,1,1.75,25.8586529323033,21.2132034301758,-1.06756782531738,-1.12825429439545,0.123054876585714
+2739,82443,447297.952,82543,447197.952,38,27,12.75,0.0141666666666667,3.69894572561776,0.164851125635439,16.4435379126283,-0.0121341710024899,0,0,0,NA,NA,0,NA,NA,-1.0093199412028,-1.12692058086395,0.218822527444451
+2740,82443,447197.952,82543,447097.952,39,27,17.5,0.0291666666666667,5.18878758786142,0.254214559386973,17.8988880110811,0.00838956036743184,0.0325,3.25,2,70.3625424207658,0.827734711455642,3,2.30769230769231,0,-0.813106136189567,-1.05923867225647,0.448225228827169
+2741,82443,447097.952,82543,446997.952,40,27,44.5,0.148333333333333,12.5971416035722,0.461999654934438,16.5501776596679,0.0295193729824678,0.265,26.5,5,87.8957362704808,0.736439078249101,19.25,2.62867556877856,0,-0.445261297437052,-0.91371750831604,0.711296075190416
+2742,82443,446997.952,82543,446897.952,41,27,25.75,0.0321875,7.80104330466682,0.31681572671156,12.6878519248411,0.0185847756876228,0.0475,4.75,4,59.9585418261584,0.601773916191511,2.5,4.74963870801424,0,-0.0290522846496767,-0.393507927656174,0.537153289716815
+2743,82443,446897.952,82543,446797.952,42,27,21.5,0.0153571428571429,4.8154751345332,0.238702214892691,12.3796233804465,0.0193548705354382,0.13,13,5,74.0244571482405,0.63838305566318,4.25,4.68260273566613,0,-0.0480649548893174,-0.183491289615631,0.26031880097128
+2744,82443,446797.952,82543,446697.952,43,27,16,0.032,7.66102915092416,0.32376311844078,16.7909664627976,0.0053346094956396,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,17.7102600097656,7.07106781005859,-0.134102812657754,-0.194691494107246,0.115261267257566
+2745,82443,446697.952,82543,446597.952,44,27,4.25,0.00708333333333333,2.57752307743652,0.2,20.1513877495043,0.00635961361292175,0.01,1,2,34.5233986084855,0.494949494949495,0.75,9.15569400787354,0,-0.0907888591496481,-0.170722499489784,0.113678122435001
+2746,82443,446597.952,82543,446497.952,45,27,10,0.0125,3.92848089681076,0.187996031746032,16.4344779861203,0.00960997385952396,0.035,3.5,2,66.9954634862024,0.689119170984456,2.75,7.39481476375035,0,0.159681581892073,-0.0110102482140064,0.185837566827687
+2747,82443,446497.952,82543,446397.952,46,27,6.75,0.01125,2.91872251793667,0.150231481481481,28.0805594695554,0.000313397976274246,0,0,0,NA,NA,0,NA,NA,0.417024754815631,0.320636361837387,0.108707188596258
+2748,82443,446397.952,82543,446297.952,47,27,21.25,0.0708333333333333,8.44450820266184,0.364883401920439,12.7240226919466,0.00906694834077371,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,0.435193764666716,0.337606281042099,0.0839011183086702
+2749,82443,446297.952,82543,446197.952,48,27,6.25,0.00892857142857143,3.48387578089335,0.224867724867725,17.0409291158101,0.0105994670885411,0.0375,3.75,3,64.7643945182839,0.527744982290437,2.5,12.4858140309652,0,0.282869590653314,0.149105742573738,0.185225787153737
+2750,82443,446197.952,82543,446097.952,49,27,7.5,0.0107142857142857,3.01326317840783,0.170634920634921,19.6666426180402,0.01078354731324,0.085,8.5,4,74.9650227258415,0.804839968774395,4.75,4.89810820186839,0,-0.0393603996684154,-0.217273324728012,0.225845831749379
+2751,82443,446097.952,82543,445997.952,50,27,16.5,0.0117857142857143,4.00108408811124,0.194551282051282,10.5058599517853,-0.00790320578581486,0.01,1,2,30.8308651382582,0.494949494949495,0.5,5,5,-0.439327683713701,-0.587718665599823,0.249618955861353
+2752,82443,445997.952,82543,445897.952,51,27,51,0.06375,11.8968216268186,0.508355816437713,10.1475424859374,-0.0102088838741474,0.1,10,2,86.5594814299325,0.933665008291874,9.75,3.40533008575439,0,-0.893177643418312,-1.07857441902161,0.238582313355326
+2753,82443,445897.952,82543,445797.952,52,27,33.5,0.0558333333333333,9.27330227428735,0.360545647430893,14.8594246317642,0.00758523581929694,0.075,7.5,3,78.6728786855926,0.823496966354109,6.5,1.40236892700195,0,-1.28549007574717,-1.43088340759277,0.24999077169876
+2754,82443,445797.952,82543,445697.952,53,27,13.5,0.03375,9.70144440014399,0.35109819121447,27.9508497187474,0.00754061845658271,0.035,3.5,3,56.9727844546647,0.637305699481865,1.5,3.71936198643276,0,-1.61539444327354,-1.85694324970245,0.284115613606864
+2755,82443,445697.952,82543,445597.952,54,27,58.25,0.194166666666667,11.3799495017444,0.371017305515122,11.1803398874989,-0.0536096401775512,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-1.87919227282206,-2.06671142578125,0.319375560720552
+2756,82443,445597.952,82543,445497.952,55,27,91.5,0.915,38.8860243018718,0.884790528233151,NA,-0.0660617269997238,0,0,0,NA,NA,0,NA,NA,-2.07154157426622,-2.25591635704041,0.296843204493962
+2757,82443,445497.952,82543,445397.952,56,27,100,1,38.2238923285138,0.934166666666667,NA,0.0735169188288273,0.715,71.5,1,99.0388168843254,0.973912476358182,71.5,0,0,-2.29226011037827,-2.41886687278748,0.140041178511168
+2758,82443,445397.952,82543,445297.952,57,27,71.25,0.2375,19.9972534179633,0.746228566020528,10,0.0623262559204159,0.5525,55.25,2,95.761712351338,0.869826978358735,45,0.32611342900479,0,-1.61368038753668,-2.22287201881409,1.09597008546283
+2759,82443,445297.952,82543,445197.952,58,27,42.25,0.140833333333333,14.7024342473202,0.44297052154195,11.1803398874989,0.0261031075100982,0.26,26,4,86.3160440349994,0.775979187743894,14.5,1.40558019051185,0,-1.0254064599673,-1.3654180765152,0.529204843948642
+2760,82443,445197.952,82543,445097.952,59,27,69.25,0.6925,34.4090609165541,0.852587244283995,NA,0.0497934027889494,0.5225,52.25,1,97.9819530119361,0.746968330663939,52.25,0.51230175985674,0,-1.5385250515408,-1.85386657714844,0.488731795339706
+2761,82443,445097.952,82543,444997.952,60,27,66.25,0.33125,18.2383758605283,0.378472222222222,10,0.0583574449007574,0.56,56,3,94.4903625253969,0.83144845585037,33.75,1.54335124152047,0,-2.06768329938253,-2.21715569496155,0.177359338554891
+2762,82443,444997.952,82543,444897.952,61,27,81.5,0.4075,28.3069737726915,0.840282105613029,14.142135623731,0.0733842342105345,0.76,76,1,99.2259017402484,0.781849912739965,76,0.988010983718069,0,-2.32969872156779,-2.38872075080872,0.133748039278398
+2763,82443,444897.952,82543,444797.952,62,27,93.25,0.9325,38.5873696625466,0.877122430741734,NA,0.035231321775791,0.38,38,5,88.7987902104083,0.762978379003353,16.75,0.493421052631579,0,-2.42451401551565,-2.45440030097961,0.0788607805577054
+2764,82443,444797.952,82543,444697.952,63,27,92.5,0.4625,23.1413800634242,0.793930686172065,10,0.0408048665412207,0.4275,42.75,4,91.5713299050444,0.844735565259583,28.75,0.380116959064327,0,-2.43915332688226,-2.45495891571045,0.0467327069457218
+2765,82443,444697.952,82543,444597.952,64,27,62.5,0.3125,23.7502906259863,0.740088858509911,15,0.0150811093354969,0.195,19.5,3,87.4914875916669,0.810964083175803,15,0.667577792436649,0,-2.37000765403112,-2.4374258518219,0.0959601444708076
+2766,82443,444597.952,82543,444497.952,65,27,81,0.81,38.0180312895611,0.790637860082305,NA,0.0127920166196327,0.275,27.5,2,93.478428804578,0.889100675792757,25.75,0.318181818181818,0,-2.1249473757214,-2.25570297241211,0.205749840434722
+2767,82443,444497.952,82543,444397.952,66,27,47,0.1175,15.7305343221373,0.567403669958261,15.1538820320221,0.087906920255773,0.495,49.5,2,94.6804355294124,0.919065476029892,26,3.64435910696935,0,-1.86946584118737,-1.96782445907593,0.17975516157574
+2768,82443,444397.952,82543,444297.952,67,27,38.5,0.077,15.7968634308667,0.484553376906318,16.4721359549996,0.0714691615926313,0.435,43.5,5,90.2435381990605,0.779450279822458,26,2.67629409658498,0,-1.96166178584099,-2.1586434841156,0.220474025936064
+2769,82443,444297.952,82543,444197.952,68,27,43.75,0.0875,16.1923803204801,0.423368430063345,11,0.123703418124933,0.895,89.5,1,99.6998271307191,0.634780165753617,89.5,3.35274360166582,0,-2.3311120139228,-2.54351568222046,0.281214163493499
+2770,82443,444197.952,82543,444097.952,69,27,29.5,0.0983333333333333,15.9858252480666,0.664035472959958,31.2838826904483,0.0945421414087468,0.5675,56.75,3,93.4952620361531,0.797756186884215,25.75,3.50762284064608,0,-2.5207245349884,-2.66381430625916,0.239302579838768
+2771,82443,444097.952,82543,443997.952,70,27,31.75,0.105833333333333,11.1171634856839,0.498931623931624,35.5887302910982,0.0504248469034792,0.4025,40.25,2,95.1935302342336,0.892570394662445,37,2.01799160501231,0,-2.4611636267768,-2.61641430854797,0.168169532267291
+2772,82443,443997.952,82543,443897.952,71,27,68.5,0.3425,26.6282627339947,0.834453691848058,18.0277563773199,0.023857857301191,0.37,37,1,96.6105796155075,0.941427985708428,37,0.683872996149836,0,-2.4591521024704,-2.52345132827759,0.0755653127072447
+2773,82443,443897.952,82543,443797.952,72,27,76.75,0.38375,17.9855676727738,0.416938997821351,18.0277563773199,-0.0486410165281632,0.01,1,1,52.6315789473684,0.747474747474748,1,3.75,0,-2.53034215503269,-2.66970014572144,0.138982070482645
+2774,82443,443797.952,82543,443697.952,73,27,79.5,0.3975,26.2786551594203,0.829215803353734,10,-0.0653607530216686,0,0,0,NA,NA,0,NA,NA,-2.6648216843605,-2.7183039188385,0.107701901251043
+2775,82443,443697.952,82543,443597.952,74,27,65,0.325,22.3963569880315,0.564847077042199,10,-0.0613691051915521,0,0,0,NA,NA,0,NA,NA,-2.79962176746792,-2.92271089553833,0.12452170141667
+2776,82443,443597.952,82543,443497.952,75,27,80.25,0.2675,18.069807516706,0.730176868835945,12.1676051329096,-0.0436975024089043,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0,-2.75093537569046,-2.84952545166016,0.14260929208686
+2777,82443,443497.952,82543,443397.952,76,27,73.25,0.7325,40.6813887275356,0.805460750853242,NA,-0.0558916417979708,0,0,0,NA,NA,0,NA,NA,-2.56923921902974,-2.6578004360199,0.121348861509146
+2778,82443,443397.952,82543,443297.952,77,27,92,0.92,37.9824917179799,0.893115942028985,NA,-0.0667658129490155,0,0,0,NA,NA,0,NA,NA,-2.74270600742764,-2.85786485671997,0.201772714691344
+2779,82443,443297.952,82543,443197.952,78,27,7.5,0.0107142857142857,3.98381026918363,0.156709956709957,19.7988194330249,0.0449898470193148,0.585,58.5,2,97.9275359965111,0.911775247442861,58,22.4873304448576,0,-3.17361225684484,-3.33270931243896,0.212765959350909
+2780,82443,443197.952,82543,443097.952,79,27,2,0.005,1.50888347648318,0.145833333333333,29.4179921291227,0.117616902158334,0.785,78.5,1,99.3228142317568,0.874292897548712,78.5,32.8786267323099,0,-3.39364409446716,-3.42408132553101,0.0592788010523351
+2781,82443,443097.952,82543,442997.952,80,27,1.25,0.00625,3.18126138458903,0.0833333333333333,15.8113883008419,0.0319671066064075,0.2225,22.25,1,94.1052854736172,0.975732572953953,22.25,20.7655237819372,0,-3.42946432034175,-3.44000697135925,0.0117805860210216
+2782,82443,442997.952,82543,442897.952,81,27,0.5,0.0025,0,0,61.8465843842649,0.0159786688822351,0.075,7.5,1,86.0448225436784,0.845559845559846,7.5,39.9996950785319,30,-3.41515692075094,-3.42151284217834,0.0146319673870222
+2783,82443,442897.952,82543,442797.952,82,27,0,NA,NA,NA,NA,-0.00737070337892874,0,0,0,NA,NA,0,NA,NA,-3.40011223157247,-3.40856838226318,0.0135868271856421
+2784,82443,442797.952,82543,442697.952,83,27,1,0.00333333333333333,1.17851130197758,0.0277777777777778,17.9944854588939,0.0260264797835043,0.395,39.5,1,96.8888706928871,0.965802222855514,39.5,28.6076780874518,0,-3.41912002033658,-3.44979524612427,0.0428245923744233
+2785,82443,442697.952,82543,442597.952,84,27,0,NA,NA,NA,NA,0.11381345182599,0.7825,78.25,1,99.3133324321661,0.914280148061562,78.25,45.2229577634281,5,-3.44164888064067,-3.46994042396545,0.0461356681477492
+2786,82443,442597.952,82543,442497.952,85,27,0,NA,NA,NA,NA,0.125420570141432,0.755,75.5,1,99.205943814227,0.985653312291525,75.5,84.419445606257,22.3606796264648,-3.45073805914985,-3.46570324897766,0.0196666883482265
+2787,82443,442497.952,82543,442397.952,86,27,0,NA,NA,NA,NA,0.0852984694920451,0.7375,73.75,1,99.1344998974781,0.986271986271986,73.75,182.012904952744,126.589889526367,-3.438400944074,-3.45498704910278,0.0232075328081512
+2788,82443,442397.952,82543,442297.952,87,27,0,NA,NA,NA,NA,0.06646654012613,0.9725,97.25,1,99.9261039309117,0.753633899975364,97.25,154.069005461156,91.9238891601562,-3.4365795718299,-3.46203231811523,0.0403864239466025
+2789,82443,442297.952,82543,442197.952,88,27,0,NA,NA,NA,NA,0.0660794851416722,0.8375,83.75,1,99.5120172135984,0.97083485235144,83.75,87.3304620885137,35.355339050293,-3.37391142050425,-3.43924283981323,0.0688170500063912
+2790,82443,442197.952,82543,442097.952,89,27,0.75,0.0025,0,0,29.109592847547,-0.00594083293175572,0,0,0,NA,NA,0,NA,NA,-3.20250696606106,-3.28714990615845,0.137743772679324
+2791,82443,442097.952,82543,441997.952,90,27,0.5,0.0025,0,0,55.9016994374947,0.00513764746698143,0.0125,1.25,1,58.1880425789518,1,1.25,34.1227241516113,31.6227760314941,-3.00056709183587,-3.08226585388184,0.13133240370213
+2792,82443,441997.952,82543,441897.952,91,27,0.5,0.0025,0,0,20.6155281280883,-0.0516451540973503,0.005,0.5,1,30.8308651382582,1,0.5,44.5546741485596,43.0116271972656,-2.9123824040095,-3.00304579734802,0.115875883841356
+2793,82443,441897.952,82543,441797.952,92,27,4.75,0.011875,2.75671587370207,0.1328125,14.6608211263521,-0.0199545877939454,0.07,7,2,80.8368543722702,0.92831541218638,6.5,33.0140651975359,0,-3.02801958719889,-3.18554878234863,0.191133331428592
+2794,82443,441797.952,82543,441697.952,93,27,1.75,0.004375,1.25,0.0625,31.5577640640442,-0.0384623479993752,0,0,0,NA,NA,0,NA,NA,-3.13775424162547,-3.31271433830261,0.269215006360829
+2795,82443,441697.952,82543,441597.952,94,27,0.5,0.0025,0,0,66.7083203206317,-0.0693476193817332,0,0,0,NA,NA,0,NA,NA,-2.91149160597059,-3.22464299201965,0.404888958617414
+2796,82443,441597.952,82543,441497.952,95,27,0,NA,NA,NA,NA,-0.119511473681778,0,0,0,NA,NA,0,NA,NA,-2.31153545777003,-2.58520746231079,0.274703982176207
+2797,82443,441497.952,82543,441397.952,96,27,0,NA,NA,NA,NA,-0.0644236207427457,0,0,0,NA,NA,0,NA,NA,-2.17519603835212,-2.26674699783325,0.0973464347690335
+2798,82443,441397.952,82543,441297.952,97,27,0,NA,NA,NA,NA,-0.0594975121226162,0,0,0,NA,NA,0,NA,NA,-2.43818159898122,-2.59564518928528,0.208186553111791
+2799,82443,441297.952,82543,441197.952,98,27,0,NA,NA,NA,NA,-0.0628682405191648,0,0,0,NA,NA,0,NA,NA,-2.74253675672743,-2.8533787727356,0.148280208249972
+2800,82443,441197.952,82543,441097.952,99,27,7.89473684210526,0.075,18.1331139079765,0.388888888888889,NA,-0.0776658145755755,0,0,0,NA,NA,0,NA,NA,-2.91661165157954,-2.9896297454834,0.0879257828442662
+2801,82543,451097.952,82643,450997.952,0,28,29.75,0.074375,6.77363721873131,0.225905797101449,17.0710678118655,0.0193435500763371,0.2125,21.25,1,93.8457653779655,0.924314096499527,21.25,0.470588235294118,0,1.63611403107643,1.37935268878937,0.329439461196768
+2802,82543,450997.952,82643,450897.952,1,28,5.75,0.00958333333333333,3.12178504610009,0.253306878306878,22.1676051329096,0.00212561883063245,0.04,4,2,70.5124003942702,0.782986111111111,3.25,5.07582521438599,0,1.31088301539421,1.24099457263947,0.10946084390817
+2803,82543,450897.952,82643,450797.952,2,28,23.75,0.0791666666666667,12.8722637707862,0.258241758241758,12.7240226919466,-9.52595068338269e-05,0.02,2,2,58.1510768543717,0.795918367346939,1.75,3.125,0,1.25774886210759,1.24292802810669,0.0221853854648438
+2804,82543,450797.952,82643,450697.952,3,28,3.25,0.01625,4.9243634326934,0.363636363636364,15,-0.00270719562375234,0,0,0,NA,NA,0,NA,NA,1.30913981795311,1.27053964138031,0.0461597387061477
+2805,82543,450697.952,82643,450597.952,4,28,17,0.085,15.3624274658695,0.475517890772128,18.0277563773199,0.00413684076509526,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,2.77777777777778,0,1.35628750920296,1.32004499435425,0.0365323246882671
+2806,82543,450597.952,82643,450497.952,5,28,5.75,0.0071875,2.13730152450313,0.0773809523809524,16.2496698593821,-0.00250787949347341,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0,1.36794612556696,1.34506154060364,0.0411968687463379
+2807,82543,450497.952,82643,450397.952,6,28,3.25,0.008125,3.40426161492407,0.1875,16.1967716615477,0.00557707008181751,0.0075,0.75,1,44.4894453484604,1,0.75,4.02368927001953,0,1.43248769640923,1.37150430679321,0.0966618234048831
+2808,82543,450397.952,82643,450297.952,7,28,9,0.045,7.86197707159906,0.271428571428571,39.0512483795333,0.00719024449720564,0.09,9,2,85.6605277551928,0.89010989010989,8.75,2.81952264573839,0,1.46752940118313,1.33193731307983,0.162946492096406
+2809,82543,450297.952,82643,450197.952,8,28,40.25,0.134166666666667,13.6000822964563,0.357431457431457,11.1803398874989,0.0282622344252377,0.25,25,5,87.6925086774537,0.792592592592593,17.25,1.91535678863525,0,1.29218838612239,1.19803822040558,0.159824829257878
+2810,82543,450197.952,82643,450097.952,9,28,16.75,0.0139583333333333,4.06997763456231,0.19877716618308,12.8998381799432,0.0314713808113993,0.2725,27.25,5,85.7020232268526,0.713921886720045,11.5,4.35876177866525,0,0.974539260069529,0.635173678398132,0.313028557597098
+2811,82543,450097.952,82643,449997.952,10,28,35.25,0.17625,16.0936381655445,0.35952380952381,63.6396103067893,0.0026755661010975,0.22,22,4,84.9297517378762,0.738690184550057,13,3.55188619006764,0,0.218772049061954,-0.325269997119904,0.62706562042427
+2812,82543,449997.952,82643,449897.952,11,28,31.5,0.063,9.34092449833573,0.444501903325433,20.2776625562921,0.0429336113603495,0.48,48,1,97.6664438264523,0.940579083837511,48,3.74418917298317,0,0.495768437162042,-0.513771772384644,1.53463296143168
+2813,82543,449897.952,82643,449797.952,12,28,33.5,0.08375,11.491040950692,0.550916075650118,20.8210678118655,0.0389107941130709,0.4525,45.25,2,96.2626490336189,0.836434267021059,43,2.93135062370511,0,0.417686038766988,-0.659030556678772,1.45916134805122
+2814,82543,449797.952,82643,449697.952,13,28,35.25,0.088125,11.3600370056669,0.284101235914213,11.7479320470852,0.045011794415334,0.505,50.5,1,97.8568679502074,0.822222222222222,50.5,3.44364186088638,0,0.241223189591741,-0.327821880578995,0.759537149596918
+2815,82543,449697.952,82643,449597.952,14,28,45.25,0.0905,9.21196530950892,0.348822355289421,15.6212327846343,-0.0143975742648854,0.0775,7.75,2,81.6296771860339,0.89159891598916,7,3.01851235666583,0,0.107809034729144,-0.0312618687748909,0.22061950742919
+2816,82543,449597.952,82643,449497.952,15,28,38.5,0.077,13.4739350459487,0.434516594516595,13.4721359549996,-0.00232061613168298,0.0975,9.75,1,88.4075627573592,0.914766673769444,9.75,0.641025641025641,0,-0.0830226892139763,-0.480970054864883,0.19724924928743
+2817,82543,449497.952,82643,449397.952,16,28,51.25,0.170833333333333,14.5447865642278,0.537881741390513,15.7868932583326,0.023327094114984,0.3925,39.25,2,96.2894550676601,0.885688157293096,38.75,0.790714239618581,0,-0.27792972093448,-0.5,0.255314079585208
+2818,82543,449397.952,82643,449297.952,17,28,27.75,0.0396428571428571,6.52254879454072,0.275798950278117,15.1647640539618,-0.0141363033465495,0.055,5.5,2,73.8467807029537,0.719887955182073,3.25,1.13636363636364,0,-0.318829817076524,-0.5,0.968515490856756
+2819,82543,449297.952,82643,449197.952,18,28,23.25,0.019375,4.5811582583903,0.17355175688509,12.1573405758471,0.0111670304551444,0.225,22.5,3,92.3303376362823,0.935884592266079,22,4.57383600870768,0,0.397850624634884,-0.5,1.31395664661902
+2820,82543,449197.952,82643,449097.952,19,28,33,0.11,17.9508187074157,0.558054552040806,20.4706427181771,-0.00871818784005882,0.11,11,3,77.801411781424,0.787427877315518,4.5,1.41070608659224,0,-0.211884354978489,-1.5,1.1269142030949
+2821,82543,449097.952,82643,448997.952,20,28,57.25,0.28625,15.3043025646018,0.446637426900585,15,0.0700830558651069,0.835,83.5,1,99.5034141561623,0.894347596407819,83.5,5.58081741675645,0,2.82508406912287,0.184574708342552,4.60083718061424
+2822,82543,448997.952,82643,448897.952,21,28,63.75,0.2125,18.4611741956532,0.531030232083788,10,0.0904624159354716,0.9475,94.75,1,99.8561526638156,0.655606331545135,94.75,2.47196009794452,0,9.58730192482471,2.95700073242188,5.70133322339106
+2823,82543,448897.952,82643,448797.952,22,28,38.75,0.129166666666667,12.3941613108894,0.488505747126437,15.2704627669473,0.0563224061167421,0.595,59.5,1,98.4399608047141,0.911222083506728,59.5,5.60970510755266,0,3.52691449721654,-0.586154580116272,5.3692724144274
+2824,82543,448797.952,82643,448697.952,23,28,20.25,0.0675,11.5795015243588,0.415895061728395,22.1564418020437,0.0250765169058286,0.24,24,5,85.9760518197166,0.785801713586291,14.75,24.01539204518,0,-0.389706056099385,-1,0.753451189233307
+2825,82543,448697.952,82643,448597.952,24,28,2,0.005,1.63627124296868,0.125,19.5773797371133,-0.0209348549240872,0,0,0,NA,NA,0,NA,NA,-0.151894628380736,-0.788481116294861,1.27569682430301
+2826,82543,448597.952,82643,448497.952,25,28,2.5,0.00416666666666667,0.804737854124365,0.0555555555555556,31.7001936887634,0.00233107616028065,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471,-0.285402024164796,-0.727297306060791,0.899865737867562
+2827,82543,448497.952,82643,448397.952,26,28,5.5,0.01375,5.74532151513248,0.191666666666667,13.4958640941704,0.00546649918338517,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5,-0.636065468192101,-0.772400379180908,0.184992933489291
+2828,82543,448397.952,82643,448297.952,27,28,23,0.02875,8.353934670552,0.24511516563147,11.5392754624463,-0.00397203571696764,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,2.82141217318448,0,-0.809764470905066,-0.859251081943512,0.0770896027334344
+2829,82543,448297.952,82643,448197.952,28,28,22.5,0.0173076923076923,6.05586050261838,0.161699411699412,12.0832337942303,-0.00515230467610309,0.05,5,4,63.9982983110902,0.592529711375212,3,4.10355339050293,0,-0.875923310716947,-0.892511367797852,0.0191362410101207
+2830,82543,448197.952,82643,448097.952,29,28,14,0.0127272727272727,4.64281104590526,0.16489898989899,11.338305413636,0.00546880688143574,0.0725,7.25,6,66.643665349636,0.518265756724207,3,6.4227751370134,0,-0.859961170703173,-0.889807820320129,0.0409893902145451
+2831,82543,448097.952,82643,447997.952,30,28,15.5,0.0140909090909091,3.92397701365231,0.211822046046645,15.8680367176001,0.011630325417791,0.06,6,2,75.8503233769603,0.748040313549832,4.25,2.75888347625732,0,-0.762433558702469,-0.824936807155609,0.105829662671715
+2832,82543,447997.952,82643,447897.952,31,28,47.75,0.0795833333333333,12.2997616789232,0.428978891478891,13.1903559372885,0.000788336715668265,0.115,11.5,4,76.3251829815864,0.724757351875996,5,3.33927710159965,0,-0.618535429239273,-0.738518953323364,0.180867623764951
+2833,82543,447897.952,82643,447797.952,32,28,8.5,0.0121428571428571,2.86411168956565,0.203703703703704,28.9896572994504,-0.00090320551811601,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,11.6666666666667,5,-0.486095086671412,-0.736616373062134,0.308815481371458
+2834,82543,447797.952,82643,447697.952,33,28,38,0.126666666666667,12.2294327848601,0.472163495419309,30.8746850831879,0.00699836778620011,0.095,9.5,5,69.4145003277785,0.719372095062703,4.25,3.22088271693179,0,-0.423020102083683,-0.727963924407959,0.372241974609496
+2835,82543,447697.952,82643,447597.952,34,28,28.25,0.0403571428571429,6.81600416668469,0.237691023835602,19.5562261529466,0.0312533715102472,0.165,16.5,10,71.6082493942483,0.541785993230929,7.75,3.52409397472035,0,-0.526676973327994,-0.863096356391907,0.347584098246579
+2836,82543,447597.952,82643,447497.952,35,28,25.25,0.0420833333333333,6.66727180274786,0.244560185185185,16.7325494594569,0.00785150092444383,0.0575,5.75,4,67.2276691688115,0.764220453875626,3.25,3.63364708941916,0,-0.777765716115634,-0.938563942909241,0.229805184736866
+2837,82543,447497.952,82643,447397.952,36,28,9.75,0.00975,5.12875874474354,0.138611111111111,13.5534536056455,0.000160803563376248,0.0275,2.75,2,60.4891372592007,0.588688946015424,1.5,7.75957627729936,0,-0.880458567291498,-0.972299635410309,0.12764265273017
+2838,82543,447397.952,82643,447297.952,37,28,4.75,0.00527777777777778,1.9960500910737,0.0388888888888889,21.538941353965,0.0114099028526311,0,0,0,NA,NA,0,NA,NA,-0.866887951890628,-0.955682575702667,0.111099533037336
+2839,82543,447297.952,82643,447197.952,38,28,12.5,0.0178571428571429,4.61943139989266,0.141774891774892,19.5385491836082,0.0014015376493785,0.0025,0.25,1,0,NA,0.25,0,0,-0.60086817946285,-0.870450675487518,0.328396628349065
+2840,82543,447197.952,82643,447097.952,39,28,47.75,0.0530555555555556,4.99793896990207,0.20546992078784,10.1311488763888,0.0324436774483377,0.375,37.5,2,95.3777055957279,0.895272727272727,35.5,0.955228474934896,0,-0.0861749871013065,-0.488978534936905,0.359361262433568
+2841,82543,447097.952,82643,446997.952,40,28,72.5,0.3625,21.9250103929431,0.801864076057624,18.0277563773199,0.0411156238950207,0.425,42.5,3,95.5813583426855,0.78885956382831,39.5,0.808390628590303,0,0.44323736964725,-0.037900660187006,0.388947960014295
+2842,82543,446997.952,82643,446897.952,41,28,60.5,0.3025,23.1586128064871,0.810001249375312,14.142135623731,0.0391590168288531,0.3225,32.25,5,90.3858438744138,0.805291669937976,26.5,0.506375778553098,0,0.591767244040966,0.43600469827652,0.286568817977315
+2843,82543,446897.952,82643,446797.952,42,28,43.25,0.0865,14.0763370949969,0.41863506272074,11.8929222269922,0.0318160222529332,0.2625,26.25,6,84.3020105800514,0.770424177203838,15.25,1.57481275285993,0,0.394222663715482,0.0835145264863968,0.337873820082459
+2844,82543,446797.952,82643,446697.952,43,28,9,0.00642857142857143,2.3889367869681,0.157142857142857,16.4600406435334,0.0166480007515565,0.04,4,5,55.3409139382589,0.479166666666667,2.25,8.12331295013428,0,0.0577219533345973,-0.0527701564133167,0.136679532058605
+2845,82543,446697.952,82643,446597.952,44,28,13.25,0.0189285714285714,6.39019175469886,0.287566137566138,12.66752962854,0.0123412268336324,0.025,2.5,2,60.6037822408496,0.842209072978304,2,5.12132034301758,0,0.026027025305666,-0.0534046702086926,0.0777591102916193
+2846,82543,446597.952,82643,446497.952,45,28,10.75,0.00895833333333333,2.73638522494675,0.190625,16.5242804497316,0.017937268837486,0.0475,4.75,6,50.16137734717,0.565571544936193,1.75,5.58354668868215,0,0.198216961696744,0.0848515555262566,0.129725228660825
+2847,82543,446497.952,82643,446397.952,46,28,12,0.0133333333333333,3.92634241728974,0.215975896531452,15.2622977527775,0.00225830644089001,0.0175,1.75,2,53.5456806074901,0.872773536895674,1.5,2.14285714285714,0,0.329518930365642,0.180825546383858,0.14613596344647
+2848,82543,446397.952,82643,446297.952,47,28,3.25,0.0065,3.63365017028579,0.172222222222222,21.6832385059276,0.00678433249333011,0.0025,0.25,1,0,NA,0.25,5,5,0.185307050967822,-0.104869097471237,0.240457218822268
+2849,82543,446297.952,82643,446197.952,48,28,11.5,0.00676470588235294,1.8704277410705,0.0717553688141923,13.1453550906769,0.0147967193550721,0.0225,2.25,4,40.2289634834257,0.48849104859335,1.25,5,0,-0.0779412740375847,-0.23772095143795,0.211980581026655
+2850,82543,446197.952,82643,446097.952,49,28,10,0.0111111111111111,2.48091747508871,0.180604288499025,15.5982228692316,0.00543768243693535,0.06,6,1,83.7764057650598,0.888017917133259,6,12.2363085746765,0,-0.220435644267127,-0.295953094959259,0.119329198572543
+2851,82543,446097.952,82643,445997.952,50,28,16.25,0.0232142857142857,5.63283602239919,0.244972725932478,20.1661035235297,-0.00420540597807303,0.0275,2.75,2,62.5248264037368,0.657240788346187,2,19.1686404835094,0,-0.429034856458505,-0.554801940917969,0.192219542787284
+2852,82543,445997.952,82643,445897.952,51,28,29.75,0.0330555555555556,4.55566672510654,0.202347549569772,14.1593516558362,0.00607267942511953,0.0725,7.25,3,74.349564463268,0.747663015426966,4.5,2.11080011828192,0,-0.773535910993814,-1.01177763938904,0.239172042864567
+2853,82543,445897.952,82643,445797.952,52,28,76,0.253333333333333,19.4992820511934,0.620099600747537,10,0.0625900568100042,0.695,69.5,1,98.9498932220624,0.905784812511777,69.5,1.03390793834659,0,-0.81282447775205,-1.13798940181732,0.435738248929163
+2854,82543,445797.952,82643,445697.952,53,28,52.25,0.174166666666667,19.9147378990872,0.662002995642701,10,0.0240207883887342,0.21,21,6,85.2552853692792,0.736640897120041,12,1.03656033107213,0,-0.72130874872164,-1.33329606056213,0.730160525905469
+2855,82543,445697.952,82643,445597.952,54,28,81.75,0.8175,36.4014262984819,0.853211009174312,NA,-0.00621958242481924,0.2525,25.25,2,94.2408376963351,0.8595687281731,25,0.495049504950495,0,-0.939899911483129,-1.57963919639587,0.710027382884694
+2856,82543,445597.952,82643,445497.952,55,28,67.5,0.225,19.3676438681122,0.582432432432432,10,0.0139341088046058,0.255,25.5,4,90.6795021839742,0.750614295668757,21.25,3.2937982970593,0,-1.38626302282015,-1.92468988895416,0.66099517809918
+2857,82543,445497.952,82643,445397.952,56,28,84.5,0.4225,28.541360519323,0.827611664820967,10,0.0605448802124738,0.575,57.5,2,97.9531126909392,0.731249143013849,56.75,0.682917686130689,0,-1.90372970700264,-2.244793176651,0.384983574906478
+2858,82543,445397.952,82643,445297.952,57,28,87.75,0.8775,38.4542209478155,0.834757834757835,NA,0.0446641492854542,0.405,40.5,2,94.7581810357129,0.808245445829339,31.75,0.691796714876905,0,-1.86350911855698,-2.01506638526917,0.203816094200884
+2859,82543,445297.952,82643,445197.952,58,28,71.25,0.7125,36.3009324004942,0.854970760233918,NA,0.0591612626545975,0.715,71.5,1,99.0388168843254,0.849996739059545,71.5,1.33851343435007,0,-1.73491579294205,-1.94225466251373,0.32444894961056
+2860,82543,445197.952,82643,445097.952,59,28,73.5,0.3675,30.2095755201448,0.795386904761905,11.1803398874989,0.0678899713169085,0.8175,81.75,1,99.442091962007,0.698052885149087,81.75,1.238967662193,0,-1.77933462460836,-1.92626476287842,0.351525623698429
+2861,82543,445097.952,82643,444997.952,60,28,83.25,0.8325,37.2042283693505,0.851851851851852,NA,0.0422287700908782,0.56,56,1,98.2299673180941,0.847759895606786,56,0.751269068036761,0,-1.86118096858263,-2.06534123420715,0.339877797136876
+2862,82543,444997.952,82643,444897.952,61,28,59.5,0.085,8.54098634363873,0.395868612973876,14.0245811536914,0.0344418061276519,0.34,34,6,90.6252670304974,0.657869012707722,19.25,1.5945452521829,0,-1.8455556233724,-2.21178603172302,0.46443895159771
+2863,82543,444897.952,82643,444797.952,62,28,41.75,0.0321153846153846,3.7353831792084,0.159732755507403,11.9529566271014,0.00748908006513375,0.0475,4.75,8,42.16862994327,0.34835731740429,1.5,4.24447109824733,0,-1.99207964539528,-2.35057497024536,0.467358425774981
+2864,82543,444797.952,82643,444697.952,63,28,45,0.0375,4.15754677977858,0.207323438634713,14.4271326667011,0.0119430339199789,0.0625,6.25,5,64.4033531579938,0.653333333333333,3.25,1,0,-2.16445370515188,-2.38244843482971,0.312320137671668
+2865,82543,444697.952,82643,444597.952,64,28,35.5,0.071,7.91763042486763,0.297451963241437,25.634413615168,-0.00109644958589342,0.045,4.5,4,60.8377345045192,0.573395384913709,2.5,0.277777777777778,0,-2.27630527317524,-2.37873268127441,0.111269869046952
+2866,82543,444597.952,82643,444497.952,65,28,71.25,0.178125,13.0981323473135,0.437451394964518,10,-0.0168490298026882,0.0525,5.25,3,73.9536540018238,0.769129287598945,4.5,0.238095238095238,0,-2.28133662541707,-2.37934136390686,0.0963451420648009
+2867,82543,444497.952,82643,444397.952,66,28,59.5,0.595,35.5157234273113,0.731792717086835,NA,-0.0434713773133262,0.2,20,2,92.5523809915444,0.929577464788732,19.75,2.5151650428772,0,-2.2764772772789,-2.46138143539429,0.206380078794026
+2868,82543,444397.952,82643,444297.952,67,28,69.25,0.34625,27.2598643443158,0.575037399700802,18.0277563773199,0.0850133845279925,0.8025,80.25,1,99.3879413454111,0.724276225090863,80.25,2.04805734224409,0,-2.38150070607662,-2.70267677307129,0.275648791744382
+2869,82543,444297.952,82643,444197.952,68,28,49.75,0.0995,7.78186386102512,0.158247422680412,14,0.0649207671792828,0.7025,70.25,2,96.6267015291079,0.76445123503947,51.25,3.33146873827082,0,-2.65258846680323,-2.84101819992065,0.262615085865369
+2870,82543,444197.952,82643,444097.952,69,28,48.75,0.1625,11.7713800479971,0.353500096955594,19.4280904158206,0.0900031366289477,0.795,79.5,1,99.3602931148206,0.829268292682927,79.5,6.00730860008384,0,-2.90539689362049,-3.05670022964478,0.173686151948813
+2871,82543,444097.952,82643,443997.952,70,28,33.25,0.083125,12.1596919920819,0.395675505050505,15.2950849718747,0.0955362903187051,0.7125,71.25,1,99.0279065499043,0.779364049318624,71.25,8.2439328645405,0,-2.9045828183492,-3.08044648170471,0.239147674436085
+2872,82543,443997.952,82643,443897.952,71,28,27,0.0675,11.0522342730433,0.482296423135464,24.0477100233013,0.0429441109686741,0.425,42.5,2,94.7923313825919,0.894429781914155,37,2.12391774794635,0,-2.63255862891674,-2.9988260269165,0.282866608786785
+2873,82543,443897.952,82643,443797.952,72,28,35.5,0.118333333333333,16.4645113214819,0.554938271604938,30.6793354898856,0.0260749961032707,0.3375,33.75,2,95.52542636915,0.889553612517257,33.25,3.03206219143338,0,-2.51230746507645,-2.67783951759338,0.136919473972538
+2874,82543,443797.952,82643,443697.952,73,28,76.75,0.38375,25.5453211443344,0.78597016678412,15.8113883008419,0.00148319804917264,0.2475,24.75,2,93.3677100817145,0.89547948784949,24,3.356355763445,0,-2.6795724183321,-2.85965418815613,0.143609832337476
+2875,82543,443697.952,82643,443597.952,74,28,90.5,0.905,38.457865160352,0.857274401473297,NA,-0.0617004797610571,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.85145471493403,-2.91856026649475,0.064835372417556
+2876,82543,443597.952,82643,443497.952,75,28,91.25,0.9125,37.7430213222469,0.879908675799087,NA,-0.0635573004063917,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.74575178325176,-2.88790011405945,0.133838516485653
+2877,82543,443497.952,82643,443397.952,76,28,91.5,0.915,38.2570198019871,0.878870673952641,NA,-0.0648082289496233,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.55084198713303,-2.65804362297058,0.140081294248209
+2878,82543,443397.952,82643,443297.952,77,28,75.75,0.12625,5.70030986391961,0.145973154362416,10.6903559372885,-0.0282804788339126,0.06,6,4,64.8134515354827,0.720044792833147,2.25,4.97534147898356,0,-2.7447595000267,-2.89120650291443,0.241174023970038
+2879,82543,443297.952,82643,443197.952,78,28,0.25,0.0025,0,0,NA,0.0860674185729295,0.8775,87.75,1,99.6446261822776,0.778706663388247,87.75,39.1217079923363,5,-3.20569251477718,-3.35112500190735,0.210802286409352
+2880,82543,443197.952,82643,443097.952,79,28,0,NA,NA,NA,NA,0.210379446037114,1,100,1,100,NA,100,66.1080115890503,15,-3.425150791804,-3.44905138015747,0.0494376979158435
+2881,82543,443097.952,82643,442997.952,80,28,1,0.00333333333333333,0.833333333333333,0.0555555555555556,20.6155281280883,0.067585850043688,0.34,34,2,93.2629000313328,0.89613880742913,26.75,48.9558167878319,15,-3.44330959022045,-3.46097254753113,0.0197362425515424
+2882,82543,442997.952,82643,442897.952,81,28,0.25,0.0025,0,0,NA,0.0187743611017504,0.2,20,2,91.2776239892655,0.859154929577465,18.75,35.5600651979446,15.8113880157471,-3.41708344221115,-3.43891954421997,0.024156098191378
+2883,82543,442897.952,82643,442797.952,82,28,0,NA,NA,NA,NA,-0.0278374927538698,0,0,0,NA,NA,0,NA,NA,-3.37549534440041,-3.40106201171875,0.0297922573290119
+2884,82543,442797.952,82643,442697.952,83,28,5.5,0.01375,4.19600129273926,0.323809523809524,10.5901699437495,0.000753871647757478,0.06,6,3,71.4612437556934,0.720044792833147,4.25,40.1378382047017,5,-3.33203995227814,-3.37369728088379,0.138180035859223
+2885,82543,442697.952,82643,442597.952,84,28,12,0.024,4.92273673305637,0.313197586726998,15.3342081765456,0.0305648298709639,0.1375,13.75,5,76.4402298317406,0.69488939740656,4.5,23.2614300467751,0,-3.27991420030594,-3.40214705467224,0.174706570723239
+2886,82543,442597.952,82643,442497.952,85,28,0,NA,NA,NA,NA,0.0704452572623268,0.485,48.5,3,94.1714420557305,0.848975188781014,41.75,57.7089696077956,10,-3.43073318401972,-3.4553849697113,0.045000403117398
+2887,82543,442497.952,82643,442397.952,86,28,0,NA,NA,NA,NA,0.117357280077413,0.9775,97.75,1,99.9397711850087,1,97.75,157.182876996677,111.803398132324,-3.43343171477318,-3.45273303985596,0.0168873790926818
+2888,82543,442397.952,82643,442297.952,87,28,0,NA,NA,NA,NA,0.0641333064809442,0.9425,94.25,1,99.8418294460568,0.708117968987534,94.25,113.643843066471,58.5234985351562,-3.41043599446615,-3.42215275764465,0.0169289649799618
+2889,82543,442297.952,82643,442197.952,88,28,0.5,0.0025,0,0,20.6155281280883,0.0320445333825774,0.1325,13.25,3,85.5010322087894,0.683313804351268,9.75,52.6274656979543,5,-3.37309201061726,-3.413813829422,0.0429065827925264
+2890,82543,442197.952,82643,442097.952,89,28,1,0.005,1.66666666666667,0.111111111111111,71.5891053163818,-0.00411863219273755,0,0,0,NA,NA,0,NA,NA,-3.25040962298711,-3.31865429878235,0.100862297577737
+2891,82543,442097.952,82643,441997.952,90,28,0,NA,NA,NA,NA,0.00248286544818257,0.0025,0.25,1,0,NA,0.25,26.9258232116699,26.9258232116699,-3.13263241449992,-3.20050764083862,0.0861891674548224
+2892,82543,441997.952,82643,441897.952,91,28,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,-0.0689590098778717,0,0,0,NA,NA,0,NA,NA,-3.12175737321377,-3.2470817565918,0.119755465033203
+2893,82543,441897.952,82643,441797.952,92,28,0.25,0.0025,0,0,NA,-0.040126476385667,0,0,0,NA,NA,0,NA,NA,-3.29800814390182,-3.47367715835571,0.192208932218219
+2894,82543,441797.952,82643,441697.952,93,28,0,NA,NA,NA,NA,-0.0374391128884417,0,0,0,NA,NA,0,NA,NA,-3.52168306708336,-3.66443753242493,0.17636505204598
+2895,82543,441697.952,82643,441597.952,94,28,0,NA,NA,NA,NA,-0.0580030644475482,0,0,0,NA,NA,0,NA,NA,-3.39084327220917,-3.63287115097046,0.327030591254434
+2896,82543,441597.952,82643,441497.952,95,28,0,NA,NA,NA,NA,-0.105662491377443,0,0,0,NA,NA,0,NA,NA,-2.87934602797031,-3.38895583152771,0.501065100630162
+2897,82543,441497.952,82643,441397.952,96,28,0,NA,NA,NA,NA,-0.0779711923655123,0,0,0,NA,NA,0,NA,NA,-2.39946244160334,-2.80434560775757,0.366432136916792
+2898,82543,441397.952,82643,441297.952,97,28,0,NA,NA,NA,NA,-0.0768076808168553,0,0,0,NA,NA,0,NA,NA,-2.38161028921604,-2.61932516098022,0.304561771798753
+2899,82543,441297.952,82643,441197.952,98,28,0.25,0.0025,0,0,NA,-0.0768268796872871,0,0,0,NA,NA,0,NA,NA,-2.79609849055608,-2.91529512405396,0.208937131065876
+2900,82543,441197.952,82643,441097.952,99,28,0.263157894736842,0.0025,0,0,NA,-0.0433092594589107,0,0,0,NA,NA,0,NA,NA,-2.95201970636845,-2.98004102706909,0.0496670616080074
+2901,82643,451097.952,82743,450997.952,0,29,2.25,0.0075,1.77141773279003,0.158730158730159,62.2361067735439,-0.00322375852998448,0,0,0,NA,NA,0,NA,NA,1.29926535818312,1.16235709190369,0.190863125785131
+2902,82643,450997.952,82743,450897.952,1,29,1.25,0.00625,3.40773025989788,0.166666666666667,11.1803398874989,0.00035927297121134,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5,1.20932105183601,1.15279352664948,0.0815550139494877
+2903,82643,450897.952,82743,450797.952,2,29,4.25,0.0085,3.09693650672366,0.188888888888889,28.2842712474619,-0.000377629367376358,0.08,8,1,86.6550847056172,0.790969899665552,8,22.1627892255783,0,1.26129819287194,1.2293963432312,0.049169348683855
+2904,82643,450797.952,82743,450697.952,3,29,24.75,0.0165,4.50784367665281,0.262442442442442,11.7726990347453,-0.0157441647899759,0,0,0,NA,NA,0,NA,NA,1.34636829296748,1.30063807964325,0.0536891799920776
+2905,82643,450697.952,82743,450597.952,4,29,9.75,0.024375,6.6849873444865,0.317997685185185,17.0430170189599,-0.00385975400252391,0.0025,0.25,1,0,NA,0.25,5,5,1.40369635158115,1.38575756549835,0.0341877924245615
+2906,82643,450597.952,82743,450497.952,5,29,3.75,0.009375,3.862549569754,0.129166666666667,21.4564500892387,-0.00249373229345792,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0,1.45186021924019,1.41858494281769,0.061921030507269
+2907,82643,450497.952,82743,450397.952,6,29,1,0.01,4.04508497187474,0.333333333333333,NA,-0.000744113987471735,0.0425,4.25,1,79.7330921014386,1,4.25,6.35520553588867,0,1.5990985499488,1.50094056129456,0.159215713350048
+2908,82643,450397.952,82743,450297.952,7,29,0,NA,NA,NA,NA,0.00187909642931118,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,61.3824920654297,56.5685424804688,1.80346378684044,1.64555287361145,0.219003403133818
+2909,82643,450297.952,82743,450197.952,8,29,17.5,0.0291666666666667,7.00089453511214,0.452006172839506,12.3105825289545,0.00668557145731029,0.08,8,2,80.291175928912,0.811872909698997,6.25,1.5625,0,1.64541037877401,1.38420212268829,0.382820585388006
+2910,82643,450197.952,82743,450097.952,9,29,36,0.12,12.399167141504,0.308068783068783,12.1676051329096,0.00359916223831533,0.2075,20.75,2,91.3495969555104,0.785403120238632,18.25,2.4468323810991,0,1.03176076544656,0.620991408824921,0.702020056650228
+2911,82643,450097.952,82743,449997.952,10,29,33,0.066,5.61044394864191,0.22037037037037,26.7279220613579,0.0803593062281652,0.6725,67.25,1,98.8451498857927,0.951628750661326,67.25,5.46622376282419,0,1.96870216083092,-0.0409571640193462,3.20298762881308
+2912,82643,449997.952,82743,449897.952,11,29,91.5,0.915,38.2979853941109,0.884790528233151,NA,0.0741443423181772,0.94,94,1,99.8346250196906,0.789621318373071,94,0.391146456941645,0,4.54419162538317,2.66981601715088,2.60800478301208
+2913,82643,449897.952,82743,449797.952,12,29,84.5,0.845,35.9649506098152,0.892011834319527,NA,0.0652732922749419,0.835,83.5,1,99.5034141561623,0.913557124333669,83.5,0.215781640149876,0,4.34192438920339,2.45064544677734,2.31525160740667
+2914,82643,449797.952,82743,449697.952,13,29,77.5,0.258333333333333,14.7472007664515,0.378955114054452,10.3934466291663,0.0443736545844877,0.5725,57.25,1,98.3071726267885,0.917827355273429,57.25,0.944162460393781,0,2.25479353136486,0.750139951705933,2.32186433604122
+2915,82643,449697.952,82743,449597.952,14,29,52,0.104,12.0793911210736,0.34985754985755,11.064495102246,-0.0825429008292849,0,0,0,NA,NA,0,NA,NA,0.0628614941379055,-0.17289312183857,0.453938828916821
+2916,82643,449597.952,82743,449497.952,15,29,44,0.146666666666667,21.0846514782805,0.664869297424931,12.1676051329096,-0.0357384518315848,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-0.179653745558527,-0.229406446218491,0.0975663503421252
+2917,82643,449497.952,82743,449397.952,16,29,52,0.26,25.3182361978925,0.682847281593363,25,0.00200363943467892,0.12,12,3,80.4211614452653,0.778270509977827,6.75,1.44046115875244,0,-0.129113586619496,-0.1905607432127,0.0799227143554454
+2918,82643,449397.952,82743,449297.952,17,29,49.75,0.124375,10.1682123486466,0.347441520467836,14.5710678118655,0.0263142899089871,0.2625,26.25,6,85.1478168190983,0.763249932741458,12,2.57481275285993,0,-0.0965305577135748,-0.482526361942291,0.348499481468722
+2919,82643,449297.952,82743,449197.952,18,29,39.75,0.099375,12.5540092777313,0.486551001397299,10.2950849718747,0.0146748290540381,0.2625,26.25,5,86.3253645867194,0.856515110752399,14.25,1.01155431838263,0,0.034395376588994,-0.5,0.681105790594256
+2920,82643,449197.952,82743,449097.952,19,29,47,0.0783333333333333,10.8296498286707,0.431760728982951,10.3934466291663,0.030279281842777,0.27,27,4,92.4024109481613,0.894625922023182,25.75,2.0707371323197,0,0.534898016653541,0.00504906894639134,0.801105183308608
+2921,82643,449097.952,82743,448997.952,20,29,25.5,0.0364285714285714,5.44363690147543,0.270799328176377,14.788348083699,0.0266071161139916,0.27,27,6,84.4186157067417,0.683877766069547,12.75,8.88010115093655,0,0.70189944240782,0.3088159263134,0.599457044293159
+2922,82643,448997.952,82743,448897.952,21,29,38.5,0.09625,12.7779322894523,0.495642678625651,12.0710678118655,0.0654769621530431,0.67,67,2,96.4072737282678,0.83733959877101,47.75,4.9679707697968,0,1.44792219996452,0.643413722515106,2.26260723477979
+2923,82643,448897.952,82743,448797.952,22,29,10.25,0.0170833333333333,3.68086634558194,0.180844907407407,13.7112879373573,0.0241548774064449,0.22,22,2,90.2317402547008,0.853013228809407,16.25,20.7624837918715,0,0.338825644718276,-0.305225759744644,1.86932996150959
+2924,82643,448797.952,82743,448697.952,23,29,0.5,0.005,2.5,0.166666666666667,NA,0.012269179308696,0.165,16.5,2,88.6204430346081,0.906274407706327,14.25,55.0632563504306,38.0788650512695,-0.601328807572524,-0.73963725566864,0.226536025035518
+2925,82643,448697.952,82743,448597.952,24,29,11.75,0.029375,3.52727149678791,0.185606060606061,19.4639443357405,-0.0195104674196227,0.0175,1.75,3,38.8779033563773,0.491094147582697,0.75,13.0115116664342,0,-0.726800978183746,-0.806736528873444,0.131434283893275
+2926,82643,448597.952,82743,448497.952,25,29,4.5,0.005625,2.22177535066792,0.117559523809524,16.5853944107785,-0.00747875814720373,0.005,0.5,2,0,1,0.25,13.6803398132324,5,-0.677466998497645,-0.731641352176666,0.0669617405572387
+2927,82643,448497.952,82743,448397.952,26,29,7,0.01,3.8855806209663,0.169047619047619,13.8688627607134,0.00654734033081695,0.08,8,3,76.4728320833198,0.832775919732441,5.25,10.9506322145462,0,-0.74711400270462,-0.7983238697052,0.0795371969134766
+2928,82643,448397.952,82743,448297.952,27,29,20,0.0333333333333333,10.7042104365573,0.185570987654321,11.280525881038,-0.0201984262928022,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.70710678100586,0,-0.845350950956345,-0.874986469745636,0.0477819643819186
+2929,82643,448297.952,82743,448197.952,28,29,6.5,0.01625,5.46038828903798,0.1875,15.4004098969786,-0.0308700691213744,0,0,0,NA,NA,0,NA,NA,-0.873798668384552,-0.879999995231628,0.0151858515457187
+2930,82643,448197.952,82743,448097.952,29,29,34.5,0.069,16.6679354574657,0.392320261437908,13.9193064834273,-0.00280469754257865,0.1475,14.75,2,86.9962651000919,0.861997584957737,12.5,1.44067796610169,0,-0.800062134861946,-0.853868961334229,0.079376649316968
+2931,82643,448097.952,82743,447997.952,30,29,25.75,0.0183928571428571,4.41142128215077,0.191554253280259,12.1520914477125,-0.00416955512140703,0.0675,6.75,4,69.4177151703437,0.750607893260178,3,3.54240558765553,0,-0.615738928318024,-0.717736959457397,0.159857754554084
+2932,82643,447997.952,82743,447897.952,31,29,29.25,0.024375,3.86202780163115,0.193100641007672,15.1739926136104,-0.00799350978695657,0.0575,5.75,4,63.6381893221379,0.675803124078986,2.5,4.01711057580036,0,-0.309600209196409,-0.467316597700119,0.271266347730458
+2933,82643,447897.952,82743,447797.952,32,29,42,0.0525,6.25018763680243,0.205681818181818,11.4460970049771,0.0140375877771294,0.275,27.5,2,91.1699507341829,0.798994974874372,16.75,2.63795717412775,0,0.012039512124223,-0.22307200729847,0.25879435614372
+2934,82643,447797.952,82743,447697.952,33,29,29.75,0.02975,4.21467532776319,0.159871031746032,17.5091629985101,-0.0228488152765203,0.0475,4.75,5,57.0588751642663,0.637976287446828,2.25,5.34398309808028,0,0.143586537160445,-0.000217233027797192,0.234683450564046
+2935,82643,447697.952,82743,447597.952,34,29,26.5,0.0378571428571429,10.1595688019033,0.422832722832723,14.7388668679771,0.0153640260694738,0.145,14.5,5,79.3594066994354,0.754385964912281,9.25,3.21669900828394,0,-0.0548430921990075,-0.314259439706802,0.269498605734496
+2936,82643,447597.952,82743,447497.952,35,29,59.25,0.0740625,7.03919535556669,0.230877120963328,10.2950849718747,0.0418089479003538,0.3825,38.25,3,95.252111895881,0.746423271427954,35.25,1.47851766947827,0,-0.406171306967735,-0.584828615188599,0.28217718843593
+2937,82643,447497.952,82743,447397.952,36,29,22.25,0.0445,5.29572188246592,0.220246913580247,28.3830973385306,0.0198137277170326,0.1575,15.75,3,88.4294806155521,0.838144051793903,14,1.41495453365265,0,-0.544762432575226,-0.751415312290192,0.32503037411306
+2938,82643,447397.952,82743,447297.952,37,29,7,0.007,3.51319251696547,0.110606060606061,15.36355710924,0.0145474637173993,0.075,7.5,4,67.6564642864147,0.646993932708218,3,7.08090686798096,0,-0.671252555317349,-0.786034643650055,0.257594387839127
+2939,82643,447297.952,82743,447197.952,38,29,38.5,0.09625,10.0074797629268,0.303059895833333,19.77081728299,-0.0248562297304306,0.0675,6.75,5,65.3844388749575,0.65085105056425,4.5,3.5634519788954,0,-0.592358661194642,-0.740035891532898,0.297648470013335
+2940,82643,447197.952,82743,447097.952,39,29,81,0.27,16.0848903190784,0.537134502923977,11.6666666666667,-0.0287150710981314,0.165,16.5,4,86.7977707198692,0.854204634209841,14.75,0.864713148637251,0,-0.102497855770505,-0.286012440919876,0.281179554481353
+2941,82643,447097.952,82743,446997.952,40,29,36,0.12,11.4676880789631,0.399972965666396,12.67591879244,-0.00296208443440264,0.065,6.5,4,69.3924193699278,0.660884309377853,3.75,0.769230769230769,0,-0.0189002720483889,-0.236255779862404,0.414804941682493
+2942,82643,446997.952,82743,446897.952,41,29,76.5,0.3825,24.9805841460618,0.67156862745098,18.0277563773199,0.0254578947958362,0.24,24,4,88.046229849948,0.709302325581395,17.5,0.104166666666667,0,0.0717723540340861,-0.206549316644669,0.4729715996812
+2943,82643,446897.952,82743,446797.952,42,29,81.25,0.40625,23.4013628091617,0.66025641025641,11.1803398874989,0.0452492653149238,0.535,53.5,1,98.0675165576351,0.864915977738153,53.5,0.402865436589606,0,0.257958111197998,0.0175324808806181,0.392866118422744
+2944,82643,446797.952,82743,446697.952,43,29,12.5,0.0178571428571429,5.01063027961064,0.194858712715856,17.1585088796315,0.00394841790101054,0.005,0.5,1,30.8308651382582,1,0.5,16.9195718765259,15.8113880157471,0.112904924485419,0.0503986999392509,0.121469290264344
+2945,82643,446697.952,82743,446597.952,44,29,12.5,0.00961538461538462,2.53902442806686,0.143162393162393,14.9968125422693,0.0132495704732719,0.035,3.5,3,57.4204791804608,0.689119170984456,1.75,6.77050617762974,0,0.0664150358902083,0.0294684581458569,0.0661099444056871
+2946,82643,446597.952,82743,446497.952,45,29,13,0.013,3.72808541060013,0.249242424242424,17.5414119155563,0.00663328532124297,0.035,3.5,2,67.5132315290738,0.792746113989637,2.75,4.16787365504674,0,0.0819073046247164,0.0265086907893419,0.103935275219826
+2947,82643,446497.952,82743,446397.952,46,29,12.75,0.0159375,2.84393408004089,0.156517094017094,14.8968479894024,0.0105575267238873,0.04,4,2,75.3066015506073,0.652777777777778,3.75,4.26776695251465,0,0.0516341221001413,-0.0431247837841511,0.144574106008186
+2948,82643,446397.952,82743,446297.952,47,29,14.25,0.0095,3.21842982005485,0.126830206830207,15.4302729686806,0.0304551221018664,0.2,20,3,91.9031259953634,0.788732394366197,19.25,4.95806550979614,0,-0.10927482554689,-0.210621267557144,0.141893663443137
+2949,82643,446297.952,82743,446197.952,48,29,5.25,0.00477272727272727,1.53792037627857,0.0353535353535354,19.3916969318737,0.00579007297382759,0.065,6.5,2,81.2099601139639,0.765227598800052,6,5.93614548903245,0,-0.246585324406624,-0.267898112535477,0.0490689692510245
+2950,82643,446197.952,82743,446097.952,49,29,15.75,0.01125,2.90863744576052,0.135487528344671,12.6477447712617,0.000917164344718913,0.005,0.5,1,30.8308651382582,1,0.5,5,5,-0.273361230889956,-0.293256282806396,0.0304919089746773
+2951,82643,446097.952,82743,445997.952,50,29,20.5,0.041,6.68333964972723,0.277625570776256,13.2912678646603,0.00463976509105123,0.13,13,2,89.3320354404243,0.896680873046623,12.75,1.11312415049626,0,-0.355434437592824,-0.411601603031158,0.0771855242963652
+2952,82643,445997.952,82743,445897.952,51,29,10.75,0.0134375,5.66321510895101,0.15707671957672,19.0450849718747,0.0018585883987862,0,0,0,NA,NA,0,NA,NA,-0.391598486651977,-0.513571441173553,0.213391146437202
+2953,82643,445897.952,82743,445797.952,52,29,16,0.0228571428571429,5.35960566424086,0.196778711484594,15.2080484747574,0.013481508982677,0.12,12,2,88.5396408287888,0.73669623059867,11.5,2.98508898417155,0,0.0651545313497384,-0.389779895544052,0.673965363421064
+2954,82643,445797.952,82743,445697.952,53,29,39.75,0.0795,12.4933649597507,0.459914021164021,12.5952415806172,0.0208231034725395,0.1925,19.25,5,84.5630218137501,0.672190857767256,9,1.65027360792284,0,0.724681220948696,0.251255989074707,0.739367230490477
+2955,82643,445697.952,82743,445597.952,54,29,48.25,0.24125,27.2183906123288,0.756572258533043,10,0.030398651737014,0.3,30,3,92.0623556965278,0.809960681520315,25.25,0.600592231750488,0,0.236607976257801,-0.214532122015953,0.69531507794952
+2956,82643,445597.952,82743,445497.952,55,29,33,0.0253846153846154,4.89010506936508,0.2372610211426,10.6570015124998,0.0359350240932508,0.31,31,4,88.8069525862735,0.813204508856683,20.5,3.15781082645539,0,-0.312779272065705,-0.850995242595673,0.744557980935892
+2957,82643,445497.952,82743,445397.952,56,29,60.5,0.0864285714285714,6.49786698375225,0.305848145709897,14.1631622319616,-0.057713029612496,0.095,9.5,2,82.3597866631913,0.771989827238446,6.5,1.74245272184673,0,-1.31052116056283,-1.65915584564209,0.564073885265189
+2958,82643,445397.952,82743,445297.952,57,29,58.75,0.29375,29.2585526917354,0.694857342378292,10,-0.110146506884485,0,0,0,NA,NA,0,NA,NA,-1.90669635931651,-2.01858353614807,0.210921816324463
+2959,82643,445297.952,82743,445197.952,58,29,86.75,0.43375,29.0407812188613,0.878333091366628,11.1803398874989,0.0414237747582956,0.6075,60.75,2,97.8533084507869,0.876539745784113,59.5,0.733680128560635,0,-1.77146047353745,-1.94484770298004,0.231501526478513
+2960,82643,445197.952,82743,445097.952,59,29,71.5,0.238333333333333,13.0529450771149,0.499603174603175,18.3333333333333,0.0395117434135136,0.47,47,1,97.5860530790582,0.945781826068098,47,0,0,-1.47626565562354,-1.77996325492859,0.327744455268189
+2961,82643,445097.952,82743,444997.952,60,29,24.25,0.0346428571428571,4.87998235400133,0.247732426303855,16.1422084176934,0.0292749647095206,0.2275,22.75,3,90.9631224245388,0.832194654201127,20.25,5.30579208541702,0,-1.15327696998914,-1.36391341686249,0.317702883057886
+2962,82643,444997.952,82743,444897.952,61,29,37.75,0.0419444444444444,5.15566736727067,0.191975308641975,14.4392804360636,0.0162037316150327,0.1475,14.75,3,89.4969941145138,0.838997182450693,14.25,3.71010777101678,0,-0.972605182064904,-1.19389927387238,0.399477264820701
+2963,82643,444897.952,82743,444797.952,62,29,20.5,0.00976190476190476,3.16479924372523,0.189436885865457,12.9472024548117,0.0168774590705652,0.06,6,6,54.19806652601,0.496080627099664,1.5,5.02824227015177,0,-1.08019736409187,-1.4454345703125,0.432409417955698
+2964,82643,444797.952,82743,444697.952,63,29,22,0.0157142857142857,4.65647187929267,0.258160758160758,12.5909506843348,0.0239928572195276,0.18,18,4,84.7539358930272,0.692721336662185,9.75,6.39220288064745,0,-1.56067360772027,-1.87403833866119,0.436612006605536
+2965,82643,444697.952,82743,444597.952,64,29,23.25,0.0258333333333333,6.07857462937433,0.361882716049383,16.6666666666667,0.0153465988344396,0.1825,18.25,4,83.8287561325683,0.722859327217125,10.25,3.95793454941005,0,-2.02553895115852,-2.27129316329956,0.29963404807276
+2966,82643,444597.952,82743,444497.952,65,29,45,0.09,11.9863098687663,0.477623303541874,13,-0.0270286341811334,0.0425,4.25,1,79.7330921014386,1,4.25,2.35294117647059,0,-2.28064643012153,-2.38603973388672,0.180780842393817
+2967,82643,444497.952,82743,444397.952,66,29,80,0.8,37.465069662795,0.8125,NA,0.0252097952913755,0.26,26,4,88.694044835564,0.682034976152623,17.5,0.961538461538462,0,-2.36590139071147,-2.47781991958618,0.187232741220796
+2968,82643,444397.952,82743,444297.952,67,29,47.25,0.23625,21.1341427068843,0.783983451536643,32.0156211871642,0.016804231619335,0.1675,16.75,3,83.9357100030248,0.784399784399784,8.25,0.658837845076376,0,-2.59947206576665,-2.78910064697266,0.271042841785873
+2969,82643,444297.952,82743,444197.952,68,29,36.25,0.120833333333333,17.2452507266863,0.535185185185185,14.120226591666,0.0405849522117933,0.34,34,5,85.9731968974959,0.749511241446725,11,2.66072172277114,0,-2.83953981929355,-2.92975687980652,0.24594686820113
+2970,82643,444197.952,82743,444097.952,69,29,64.75,0.215833333333333,20.7869597578455,0.596502057613169,11.380711874577,0.0493965636354551,0.3975,39.75,4,91.2373832284367,0.766952765304382,24.5,2.28906972153382,0,-2.90394449234009,-2.99330925941467,0.216391110300724
+2971,82643,444097.952,82743,443997.952,70,29,60.25,0.200833333333333,17.0466607438965,0.586021505376344,12.4535599249993,-0.0026002822786586,0.145,14.5,5,79.0700410865633,0.754385964912281,7,1.2426046174148,0,-3.00220839182536,-3.08293628692627,0.168962593903345
+2972,82643,443997.952,82743,443897.952,71,29,66.25,0.220833333333333,14.8163283123758,0.405156136528686,10,0.0604826870391116,0.59,59,2,95.4029312233013,0.773242630385488,45.5,1.6641901792106,0,-3.01269143819809,-3.05361986160278,0.0931776987524987
+2973,82643,443897.952,82743,443797.952,72,29,48,0.12,14.4883316080716,0.375187666554067,13.6894159379548,0.0692308462312212,0.5375,53.75,2,97.1031243015358,0.816216216216216,50.75,2.87531111961187,0,-2.91834749115838,-3.04172205924988,0.230634884969278
+2974,82643,443797.952,82743,443697.952,73,29,32.5,0.108333333333333,15.968603066306,0.662906504065041,31.3015191920426,0.0255201765608945,0.3775,37.75,2,93.9847466118532,0.855015730793209,29.75,2.22922104083939,0,-2.81804464260737,-2.98365998268127,0.183566675130791
+2975,82643,443697.952,82743,443597.952,74,29,47.75,0.119375,14.1973217223031,0.532547300233045,21.4050715821665,0.0110022739876877,0.3275,32.75,2,95.3439440727685,0.894230918791122,32.25,2.46669530504532,0,-2.79736317528619,-2.84465098381042,0.0637679990064615
+2976,82643,443597.952,82743,443497.952,75,29,78.25,0.39125,23.8190380581622,0.768682718185313,20.6155281280883,-0.014093896549457,0.23,23,1,94.2887150496276,0.936648717136522,23,5.22945491127346,0,-2.67052807410558,-2.76557922363281,0.122422171150301
+2977,82643,443497.952,82743,443397.952,76,29,86.25,0.8625,37.8035586131847,0.856038647342995,NA,-0.0706931442899804,0,0,0,NA,NA,0,NA,NA,-2.53568037350973,-2.57855987548828,0.0696629567079545
+2978,82643,443397.952,82743,443297.952,77,29,51,0.085,6.51945332785337,0.21797052154195,10,-0.00656449742993573,0.1975,19.75,3,90.8740260796092,0.875389408099688,18.75,24.8849561667141,0,-2.72722400559319,-2.94251894950867,0.300764916112125
+2979,82643,443297.952,82743,443197.952,78,29,0,NA,NA,NA,NA,0.111515418710187,0.9575,95.75,1,99.8844617862358,0.578674444984605,95.75,78.0427446489857,25.4950981140137,-3.22809453805288,-3.3889901638031,0.20608091452871
+2980,82643,443197.952,82743,443097.952,79,29,0,NA,NA,NA,NA,0.195992485554889,1,100,1,100,NA,100,70.3177279376984,15,-3.439284324646,-3.47018980979919,0.0530701969560577
+2981,82643,443097.952,82743,442997.952,80,29,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,17.4127682432574,0.0446938953665085,0.38,38,2,93.2011775148065,0.81500751531969,20,35.7000718995144,11.1803398132324,-3.48184372981389,-3.49000000953674,0.0201815256405542
+2982,82643,442997.952,82743,442897.952,81,29,0.5,0.0025,0,0,25.4950975679639,0.159678653078154,0.79,79,2,98.9152846150989,0.944071588366891,78.5,28.7436014127128,0,-3.45728943083021,-3.48301291465759,0.0406986012176629
+2983,82643,442897.952,82743,442797.952,82,29,0.5,0.0025,0,0,20.6155281280883,0.0746149240678642,0.315,31.5,3,92.5956423071001,0.929876008032385,29,52.9086746942429,11.1803398132324,-3.36038428544998,-3.4282078742981,0.0833280097779575
+2984,82643,442797.952,82743,442697.952,83,29,20.25,0.03375,5.10636548219817,0.201774691358025,15.2051760426961,0.0306878518935082,0.2775,27.75,6,84.6500510285839,0.778546712802768,10.25,12.8044375857791,0,-2.96505353185866,-3.29729294776917,0.423980003323894
+2985,82643,442697.952,82743,442597.952,84,29,23.75,0.0339285714285714,6.24974073392637,0.204429867184969,12.0136656497577,0.0212476993279233,0.14,14,5,78.0179274394405,0.736274274754256,6.5,19.9734264782497,0,-2.93290201822917,-3.27393817901611,0.529881663856434
+2986,82643,442597.952,82743,442497.952,85,29,0.5,0.005,2.5,0.166666666666667,NA,0.0327381358343473,0.27,27,3,88.8164268854864,0.831401475237092,13,69.4657999674479,25,-3.31595744027032,-3.41481781005859,0.408051295632929
+2987,82643,442497.952,82743,442397.952,86,29,0,NA,NA,NA,NA,0.0921127841016278,0.9475,94.75,1,99.8561526638156,0.947016358699252,94.75,126.347914099379,80,-3.43848299980164,-3.45705342292786,0.0268855235742808
+2988,82643,442397.952,82743,442297.952,87,29,0,NA,NA,NA,NA,0.0497206802549772,0.475,47.5,2,94.8443677468242,0.821428571428571,33.75,99.5406601755243,60,-3.44071822696262,-3.45189094543457,0.0178541713205797
+2989,82643,442297.952,82743,442197.952,88,29,0.25,0.0025,0,0,NA,0.0391833297087396,0.2675,26.75,1,95.0869843258351,0.858529770641391,26.75,33.7970668044046,0,-3.40590035915375,-3.44594025611877,0.0477686540613718
+2990,82643,442197.952,82743,442097.952,89,29,2.75,0.0055,2.28072977050302,0.113333333333333,23.1586537151455,0.0069207745498079,0.01,1,1,52.6315789473684,0.747474747474748,1,28.1758394241333,25,-3.29008197784424,-3.33378672599792,0.0793681218784739
+2991,82643,442097.952,82743,441997.952,90,29,0,NA,NA,NA,NA,-0.00951331733106599,0,0,0,NA,NA,0,NA,NA,-3.2039098739624,-3.22250556945801,0.0324243120031759
+2992,82643,441997.952,82743,441897.952,91,29,1,0.0025,0,0,25.4950975679639,-0.07244144996861,0,0,0,NA,NA,0,NA,NA,-3.25309735536575,-3.34855151176453,0.0868334784299625
+2993,82643,441897.952,82743,441797.952,92,29,0.5,0.0025,0,0,25.4950975679639,-0.033769277505744,0,0,0,NA,NA,0,NA,NA,-3.47273919317457,-3.61529541015625,0.191043379363308
+2994,82643,441797.952,82743,441697.952,93,29,0,NA,NA,NA,NA,-0.0192460419505733,0,0,0,NA,NA,0,NA,NA,-3.7088938554128,-3.77063488960266,0.102238579771285
+2995,82643,441697.952,82743,441597.952,94,29,0,NA,NA,NA,NA,-0.0296708313666022,0,0,0,NA,NA,0,NA,NA,-3.67246739069621,-3.73880696296692,0.125820223568933
+2996,82643,441597.952,82743,441497.952,95,29,1,0.0025,0,0,11.1803398874989,-0.0852725840546191,0,0,0,NA,NA,0,NA,NA,-3.38995850086212,-3.56572079658508,0.233058760638656
+2997,82643,441497.952,82743,441397.952,96,29,0,NA,NA,NA,NA,-0.0894086537417024,0,0,0,NA,NA,0,NA,NA,-3.09355934460958,-3.272141456604,0.324292806945508
+2998,82643,441397.952,82743,441297.952,97,29,0,NA,NA,NA,NA,-0.289261633614078,0,0,0,NA,NA,0,NA,NA,-2.95026844739914,-3.15208601951599,0.320401604606769
+2999,82643,441297.952,82743,441197.952,98,29,0.25,0.0025,0,0,NA,-0.270788797438145,0,0,0,NA,NA,0,NA,NA,-2.88517438040839,-3.00219202041626,0.137590570653833
+3000,82643,441197.952,82743,441097.952,99,29,0,NA,NA,NA,NA,-0.138379914476536,0,0,0,NA,NA,0,NA,NA,-2.87930103143056,-2.91578364372253,0.0552447671654884
+3001,82743,451097.952,82843,450997.952,0,30,3,0.00428571428571429,1.53859916804545,0.111111111111111,24.7346463921663,0.00720514834197275,0.0175,1.75,3,38.8779033563773,0.491094147582697,0.75,13.5787734985352,7.07106781005859,1.06463009119034,1.00555872917175,0.076751947034231
+3002,82743,450997.952,82843,450897.952,1,30,0.25,0.0025,0,0,NA,-0.00164109916075176,0,0,0,NA,NA,0,NA,NA,1.0838026702404,1.01849484443665,0.074056443661514
+3003,82743,450897.952,82843,450797.952,2,30,18.75,0.0375,7.4799600207187,0.337268029128494,19.8378822677365,0.0125411270805853,0.1225,12.25,3,81.2472043287172,0.796499796499796,6,2.47373884551379,0,1.19109853108724,1.14599108695984,0.0680083684716755
+3004,82743,450797.952,82843,450697.952,3,30,9,0.03,5.06021082545454,0.189542483660131,28.2842712474619,-0.00153633062586096,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,2,0,1.2547812089324,1.20814299583435,0.0591221739637793
+3005,82743,450697.952,82843,450597.952,4,30,10.25,0.025625,7.75356315413186,0.374465811965812,43.3300901320649,-0.0220922777446685,0,0,0,NA,NA,0,NA,NA,1.28418120741844,1.20085966587067,0.0925442271437596
+3006,82743,450597.952,82843,450497.952,5,30,3.75,0.0375,13.4899461920545,0.444444444444444,NA,-0.0222799404071429,0,0,0,NA,NA,0,NA,NA,1.38269557803869,1.24247348308563,0.129662519146995
+3007,82743,450497.952,82843,450397.952,6,30,0.75,0.00375,1.25,0.0833333333333333,58.5234995535981,-0.00893396593546015,0,0,0,NA,NA,0,NA,NA,1.64170208573341,1.48100256919861,0.222401136546705
+3008,82743,450397.952,82843,450297.952,7,30,12.75,0.02125,7.0108856613912,0.341805416805417,15.8033250323814,0.00230540331802331,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,24.2753208705357,0,2.0125388354063,1.8205817937851,0.323606913484919
+3009,82743,450297.952,82843,450197.952,8,30,39,0.13,19.466706028863,0.435531788472965,13.3333333333333,0.00529956866412249,0.1825,18.25,4,90.2749545375337,0.74197247706422,17,0.891764706128264,0,2.57378343741099,1.87125706672668,0.977817133586206
+3010,82743,450197.952,82843,450097.952,9,30,30.5,0.101666666666667,8.95085690736034,0.324463118580766,32.7008322530222,0.0685955154477779,0.6625,66.25,1,98.796893507011,0.856919293539012,66.25,8.99737848245873,0,2.99276169141134,1.33334839344025,2.49780508019018
+3011,82743,450097.952,82843,449997.952,10,30,92.75,0.46375,21.1261717552092,0.70260989010989,10,0.071873139468953,0.935,93.5,1,99.8201295789998,0.717912552891397,93.5,0.374331550802139,0,5.17815916240215,3.00325274467468,1.95809239370055
+3012,82743,449997.952,82843,449897.952,11,30,96.75,0.9675,37.9801429411222,0.909991386735573,NA,0.0743274531373754,0.915,91.5,1,99.7609644895861,0.847211611917494,91.5,0.163934426229508,0,6.19865703582764,5.63518762588501,0.767262342648887
+3013,82743,449897.952,82843,449797.952,12,30,96,0.48,19.0014482368944,0.455395996518712,10,0.0831485182170945,0.8675,86.75,1,99.6123355042629,0.689369535204786,86.75,0.129682997118156,0,5.10786263644695,3.85886645317078,1.2248915174672
+3014,82743,449797.952,82843,449697.952,13,30,94.5,0.945,38.3295812899186,0.892416225749559,NA,0.084917366791633,0.86,86,1,99.5877487787664,0.791208791208791,86,0.145348837209302,0,3.71781511108081,1.92677772045135,2.11181271374777
+3015,82743,449697.952,82843,449597.952,14,30,68.25,0.34125,22.2045450712225,0.595152091254753,11.1803398874989,0.0443773676277851,0.3475,34.75,1,96.3348533717898,0.951730171659577,34.75,0.0719424460431655,0,0.884859363344731,-0.14277571439743,1.55888617462398
+3016,82743,449597.952,82843,449497.952,15,30,3.25,0.0325,9.35151854670042,0.41025641025641,NA,-0.0166240069661217,0,0,0,NA,NA,0,NA,NA,0.000937041516105334,-0.246589720249176,0.632890722529719
+3017,82743,449497.952,82843,449397.952,16,30,25.25,0.0505,9.95441048628549,0.283792707436118,13.064495102246,-0.0296327457638836,0,0,0,NA,NA,0,NA,NA,-0.159735283232294,-0.237834766507149,0.180076339172795
+3018,82743,449397.952,82843,449297.952,17,30,41.5,0.138333333333333,15.3253830794363,0.490588693957115,15,-0.0313243154634029,0.0575,5.75,1,83.3142722045184,0.82316534040672,5.75,1.48444067913553,0,-0.0842777270202835,-0.222014740109444,0.24820733911692
+3019,82743,449297.952,82843,449197.952,18,30,51.75,0.129375,10.9797873614479,0.30031179138322,15.4056941504209,0.0331261574560222,0.3675,36.75,4,90.9609963947011,0.835432064299043,26,1.41909351478629,0,0.606265416368842,-0.162123650312424,0.893575221580154
+3020,82743,449197.952,82843,449097.952,19,30,68,0.34,18.5041372672378,0.38530135301353,15,0.0650181684359734,0.7575,75.75,2,99.0250469528652,0.783342661635402,75.5,1.5642313060194,0,2.11107116937637,1.51246631145477,1.16945672190601
+3021,82743,449097.952,82843,448997.952,20,30,43.75,0.0364583333333333,6.05111997586009,0.331352443852444,11.5059659532121,0.0624010347295553,0.8025,80.25,2,98.5619310537169,0.724276225090863,76.25,3.19360945752105,0,1.51417206724485,1.02162611484528,0.903979673222271
+3022,82743,448997.952,82843,448897.952,21,30,32,0.0290909090909091,3.91939422699086,0.191250742721331,13.7679272569335,0.040841719590826,0.3875,38.75,5,88.45730073986,0.788041532402435,24,3.1513364607288,0,0.907128096092492,0.119869418442249,0.807834988148307
+3023,82743,448897.952,82843,448797.952,22,30,2,0.005,2.68739477846076,0.0902777777777778,14.6040481324094,-0.0460603262592372,0.04,4,2,69.8932782516112,0.696180555555556,3,38.5075762271881,10,-0.0910508901191254,-0.261861652135849,0.294775139460434
+3024,82743,448797.952,82843,448697.952,23,30,0.5,0.0025,0,0,14.142135623731,0.0684471864602892,0.4925,49.25,1,97.7634684223253,0.908225926175855,49.25,31.3808678273622,0,-0.456169741228223,-0.608164191246033,0.182806151916581
+3025,82743,448697.952,82843,448597.952,24,30,8,0.0133333333333333,4.3617451865795,0.294808201058201,11.6666666666667,0.0143649505802023,0.1475,14.75,2,86.099773371159,0.884997987464781,10,40.0737609540002,0,-0.606868470708529,-0.746474981307983,0.134876059675466
+3026,82743,448597.952,82843,448497.952,25,30,16,0.016,5.25226117961917,0.206565656565657,11.3929455814815,-0.00125599545537625,0.0725,7.25,3,80.5747893036576,0.839421918908069,6.75,7.02930628020188,0,-0.672953385859728,-0.761741995811462,0.0844573533783867
+3027,82743,448497.952,82843,448397.952,26,30,17,0.0188888888888889,4.9559874673229,0.187869028448739,12.0328047511767,-0.0186733381332579,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0,-0.684828539689382,-0.721881031990051,0.056263509479369
+3028,82743,448397.952,82843,448297.952,27,30,3.75,0.009375,5.69546007282646,0.152777777777778,24.2951574923215,-0.0109341492580188,0,0,0,NA,NA,0,NA,NA,-0.771081537008286,-0.854597568511963,0.0725589190139278
+3029,82743,448297.952,82843,448197.952,28,30,5.25,0.00875,3.14451162807513,0.175,20.6679772267777,-0.0170158670697356,0.0075,0.75,1,44.4894453484604,1,0.75,27.934871673584,25.4950981140137,-0.851521849632263,-0.874422669410706,0.0322637830616031
+3030,82743,448197.952,82843,448097.952,29,30,36.75,0.0525,6.62861249738772,0.247822032038622,16.9175790191517,0.00793763489123194,0.3125,31.25,2,93.8924450908339,0.833400080096115,27.25,5.6909375,0,-0.814754087477922,-0.856982171535492,0.0575462342261665
+3031,82743,448097.952,82843,447997.952,30,30,57.75,0.144375,10.2623887308577,0.337177579365079,12.661237755615,-0.00765626168922609,0.1725,17.25,2,87.2430884762314,0.820229207760106,10,1.2536639890809,0,-0.697236940264702,-0.832117855548859,0.160584806008929
+3032,82743,447997.952,82843,447897.952,31,30,27,0.03,5.59011539025802,0.266975308641975,16.2369123737737,0.0325161713324451,0.2775,27.75,3,90.299610457671,0.750865051903114,16.75,3.84173267811268,0,-0.410610909263293,-0.646163284778595,0.284368694271805
+3033,82743,447897.952,82843,447797.952,32,30,43,0.043,7.41381410833916,0.328084045584046,11.1502815398729,0.0109250500473718,0.1675,16.75,6,84.785329276756,0.763866430533097,13.75,2.84593752960661,0,-0.0252458093164023,-0.419679999351501,0.333002540156293
+3034,82743,447797.952,82843,447697.952,33,30,29.5,0.0421428571428571,8.27508755227261,0.350138888888889,12.1030513642851,-4.82382254176628e-05,0.1425,14.25,5,78.4097627574212,0.773903730588445,7.25,2.07516265333745,0,0.266946206179758,0.0561384074389935,0.156102970749977
+3035,82743,447697.952,82843,447597.952,34,30,43.75,0.0729166666666667,9.72538128969394,0.346627237851662,10,0.0104850250995787,0.175,17.5,2,88.7488973954186,0.832471051983247,13.75,2.38672954014369,0,0.189933666610159,0.018295818939805,0.133056102319769
+3036,82743,447597.952,82843,447497.952,35,30,48,0.08,11.4877130609053,0.347322683687396,11.6739725102043,0.018791854605297,0.17,17,6,78.2288088254114,0.716513111268604,8.75,1.93860721588135,0,0.0741903475718573,-0.200891181826591,0.34117114934896
+3037,82743,447497.952,82843,447397.952,36,30,73,0.1825,12.4878803163348,0.443231102850062,10,0.027434366739908,0.38,38,3,94.8217980506685,0.762978379003353,34.25,1.19057517302664,0,0.260714174510213,-0.207458421587944,0.582051256208384
+3038,82743,447397.952,82843,447297.952,37,30,60.75,0.30375,17.730560983056,0.429063360881543,41.2310562561766,0.0496326102937928,0.625,62.5,2,97.589924820295,0.863247863247863,59.5,1.5294051361084,0,0.512086470456173,-0.291213363409042,0.926794070039633
+3039,82743,447297.952,82843,447197.952,38,30,87.75,0.8775,37.1540346542685,0.901234567901235,NA,-0.00434125819508154,0.3,30,3,89.0578402555567,0.829619921363041,14,0.125,0,0.509805078618228,-0.431878328323364,1.16869835204302
+3040,82743,447197.952,82843,447097.952,39,30,50.5,0.0841666666666667,6.07008765410114,0.219871425829975,10.3934466291663,0.0222162487105197,0.3575,35.75,2,96.0164636236279,0.899010900882169,35.5,0.189308166503906,0,-0.20201582616816,-0.335942208766937,0.282762621160361
+3041,82743,447097.952,82843,446997.952,40,30,4,0.0133333333333333,6.12537364577907,0.271604938271605,19.4720641765459,-0.00730827243035947,0,0,0,NA,NA,0,NA,NA,-0.422105683013797,-0.523578882217407,0.127461423596926
+3042,82743,446997.952,82843,446897.952,41,30,16,0.04,8.65700279968247,0.232519157088123,18.0901699437495,-0.00686324534113282,0.0025,0.25,1,0,NA,0.25,0,0,-0.444229073822498,-0.539983689785004,0.159831002256262
+3043,82743,446897.952,82843,446797.952,42,30,29.5,0.0491666666666667,11.7734044941391,0.357963694920217,11.280525881038,0.00699885229563733,0.0425,4.25,5,53.530052576562,0.415143603133159,1.5,10.3856448005227,0,-0.315393055323511,-0.514676630496979,0.237247348669072
+3044,82743,446797.952,82843,446697.952,43,30,2.75,0.0055,2.21664549455243,0.116666666666667,48.1990730195403,0.0265644915420307,0.215,21.5,3,88.5308120661374,0.79184879896757,11.75,14.3466581522032,0,-0.204317409234742,-0.392280459403992,0.218133065418984
+3045,82743,446697.952,82843,446597.952,44,30,9.5,0.011875,4.18539615694866,0.262425595238095,15.321369000483,0.0116262892512532,0.0275,2.75,5,40.239965362396,0.383033419023136,1.25,10.2133697162975,0,-0.188691072786848,-0.351678371429443,0.185059811685246
+3046,82743,446597.952,82843,446497.952,45,30,14.25,0.011875,3.89884667897374,0.199239417989418,11.8957596606096,0.0106719438481514,0.0275,2.75,3,58.772474842622,0.520137103684661,2,5.77254399386319,0,-0.1518013717141,-0.296444296836853,0.147687716643185
+3047,82743,446497.952,82843,446397.952,46,30,9,0.0128571428571429,3.40854862960248,0.223475355054302,20.0864133243254,0.0148296617045162,0.075,7.5,4,70.1818274463571,0.691119691119691,4.5,9.03038342793783,0,-0.148396284940342,-0.227207779884338,0.105383062540164
+3048,82743,446397.952,82843,446297.952,47,30,13.25,0.00828125,1.85332810164732,0.0757168458781362,13.0409655275864,-0.00296789301416538,0.055,5.5,5,65.2480960047311,0.751011515717398,4.25,4.47851848602295,0,-0.196057808585465,-0.233259797096252,0.0563319767505729
+3049,82743,446297.952,82843,446197.952,48,30,21.25,0.0354166666666667,6.24704910860615,0.196015482695811,12.8530572544695,-0.00887589412392117,0,0,0,NA,NA,0,NA,NA,-0.215097927798827,-0.241538599133492,0.0445463662024656
+3050,82743,446197.952,82843,446097.952,49,30,27,0.0245454545454545,3.51468031468484,0.138812366085093,11.608869768462,0.00677601823246732,0.05,5,6,51.8153241427163,0.524617996604414,1.75,11.9160803794861,0,-0.278323183767498,-0.400480091571808,0.0903991200119641
+3051,82743,446097.952,82843,445997.952,50,30,20.5,0.0205,5.21321977535816,0.175386382623225,11.5043835061226,-0.00284446995177859,0.03,3,2,62.4651075277459,0.757428744693754,1.75,0.833333333333333,0,-0.412387733658155,-0.516972303390503,0.0988727483927454
+3052,82743,445997.952,82843,445897.952,51,30,8.75,0.0125,4.84838247548291,0.161706349206349,18.3630028089281,0.00611416365814875,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0,-0.322047797963023,-0.519470453262329,0.204496315399226
+3053,82743,445897.952,82843,445797.952,52,30,14.75,0.0491666666666667,10.9620219191578,0.404362776703202,29.1447216341752,-0.00560461016124464,0.0275,2.75,2,60.5127517103442,0.725792630676949,1.75,2.27272727272727,0,0.290103970716397,-0.00810886360704899,0.522303854252555
+3054,82743,445797.952,82843,445697.952,53,30,57.5,0.575,42.5397686855932,0.797826086956522,NA,0.0335888536373795,0.385,38.5,3,90.9847481976036,0.804648223160677,17.75,1.29313075077998,0,0.982806414365768,0.779087483882904,0.267239004679438
+3055,82743,445697.952,82843,445597.952,54,30,57,0.114,8.21314298774289,0.283409436834094,11.1803398874989,0.024360006983261,0.235,23.5,2,91.4560180457367,0.844382197323374,19.5,0.898559692058157,0,0.740371286869049,0.513221025466919,0.369587974412011
+3056,82743,445597.952,82843,445497.952,55,30,10,0.00833333333333333,2.22050861509449,0.162816764132554,18.5864889917546,0.00822243537419126,0.0325,3.25,3,58.354796280893,0.770312948607522,2.25,4.93401043231671,0,0.0309901305784782,-0.229596242308617,0.49480117455212
+3057,82743,445497.952,82843,445397.952,56,30,57.25,0.190833333333333,17.6628370624206,0.50164435048156,10,0.0466714914334625,0.46,46,3,92.6171403929824,0.711328976034858,23.5,1.57335584060006,0,-0.756606997922063,-1.44810736179352,0.511875370632493
+3058,82743,445397.952,82843,445297.952,57,30,72,0.24,20.2638816670036,0.629661986244676,10.3934466291663,0.0166970383424814,0.255,25.5,3,88.7031101798389,0.809293284923167,12,1.26609936882468,0,-1.28979288041592,-1.73559153079987,0.506546214413927
+3059,82743,445297.952,82843,445197.952,58,30,75.75,0.37875,22.086848447335,0.754093567251462,18.0277563773199,0.0636924034349249,0.655,65.5,3,97.5763167911241,0.752058797485168,62.5,1.09377306290255,0,-1.43027821928263,-1.6578916311264,0.256345376308706
+3060,82743,445197.952,82843,445097.952,59,30,73.75,0.36875,21.2327362050882,0.738134206219313,14.142135623731,0.059592034223424,0.66,66,1,98.7846583695088,0.845513963161022,66,0.592938177513354,0,-1.18591539561749,-1.42438113689423,0.288564238101542
+3061,82743,445097.952,82843,444997.952,60,30,34.5,0.0575,5.57472256391101,0.218010752688172,27.9954250470571,0.04015913802672,0.2775,27.75,7,84.8513717337377,0.70242214532872,15.5,4.56904842617275,0,-0.788531988859177,-1.08649575710297,0.259465843861181
+3062,82743,444997.952,82843,444897.952,61,30,34.75,0.086875,10.2908441621542,0.557990141430039,23.6803398874989,0.00468692740210088,0.095,9.5,2,86.1868720262614,0.912303779707095,9.25,1.37029125815944,0,-0.543588457008203,-0.678300201892853,0.159531033436197
+3063,82743,444897.952,82843,444797.952,62,30,29.75,0.0228846153846154,2.66239205774402,0.117395676219206,11.8298150926099,0.0048849967708702,0.0875,8.75,4,71.7635987058635,0.716580066131318,3.25,1.57142857142857,0,-0.743679899722338,-0.970867455005646,0.257101095229808
+3064,82743,444797.952,82843,444697.952,63,30,12.5,0.0113636363636364,3.58441470761647,0.29369178800997,14.2894821970823,0.0127496478345347,0.065,6.5,6,59.0913094346657,0.634798487022303,3.25,5.22951639615572,0,-1.21763528386752,-1.44267296791077,0.32707670229374
+3065,82743,444697.952,82843,444597.952,64,30,30,0.05,8.78180821565271,0.393974416317303,16.6610246291781,0.0133223587619705,0.095,9.5,5,67.37648860641,0.596597386652635,2.25,3.22088271693179,0,-1.67816335707903,-1.92862367630005,0.247100735814102
+3066,82743,444597.952,82843,444497.952,65,30,23,0.02875,6.47643380481029,0.305036126085654,11.7411819768518,-0.0208821367403834,0.0725,7.25,1,85.7162801918893,0.931180822389172,7.25,2.8300368210365,0,-1.93000641465187,-2.08853554725647,0.153916890038921
+3067,82743,444497.952,82843,444397.952,66,30,53.5,0.13375,14.0374446546954,0.489625305250305,12.5,0.0492807338145212,0.3,30,2,92.6945522448881,0.921363040629096,26,2.75296115875244,0,-1.96171975135803,-2.1181206703186,0.150721703140809
+3068,82743,444397.952,82843,444297.952,67,30,63.25,0.31625,16.5030317889442,0.409391534391534,14.142135623731,0.0333932833153176,0.4025,40.25,3,94.4645089049175,0.830374307361755,35.75,1.45277241298131,0,-2.02161337435246,-2.3621039390564,0.273034016056993
+3069,82743,444297.952,82843,444197.952,68,30,35.5,0.071,8.552273100317,0.346759259259259,20.7792717443648,0.0104711853152912,0.155,15.5,2,87.060563333743,0.868507560815253,12.5,2.78874095793693,0,-2.1448838810126,-2.57674789428711,0.396380628225532
+3070,82743,444197.952,82843,444097.952,69,30,16.25,0.0270833333333333,8.39248743511876,0.294753086419753,16.9876373392788,0.00678952609440785,0.1,10,2,81.9912484325272,0.78441127694859,6.25,2.05177669525146,0,-2.21003095805645,-2.56328415870667,0.395672448670172
+3071,82743,444097.952,82843,443997.952,70,30,32.5,0.325,32.2332518253694,0.688461538461539,NA,0.0328647063838071,0.315,31.5,1,95.8855704592132,0.885251649507538,31.5,1.22335028269934,0,-2.35729020833969,-2.9962751865387,0.443850420219967
+3072,82743,443997.952,82843,443897.952,71,30,30.25,0.0605,9.04636162253122,0.328989898989899,21.5711554685924,0.0184082988108094,0.2375,23.75,3,86.9305265417615,0.791706846673096,9.5,3.48496969122636,0,-2.78885595500469,-3,0.402377304873483
+3073,82743,443897.952,82843,443797.952,72,30,63.75,0.6375,36.1478752191745,0.748366013071895,NA,0.0184371875591751,0.1675,16.75,4,84.2339976458152,0.753599753599754,11.25,2.00212142716593,0,-3.01048624515533,-3.06845545768738,0.0655427695551507
+3074,82743,443797.952,82843,443697.952,73,30,75.25,0.37625,22.1606130781419,0.638545246277205,21.2132034355964,0.0196057967578236,0.2825,28.25,3,91.5514691286077,0.801871968299515,24.5,2.50002747932367,0,-3.06127008795738,-3.10349535942078,0.102282338803916
+3075,82743,443697.952,82843,443597.952,74,30,55.25,0.0690625,6.85416976285759,0.20151828847481,10.4426274578121,0.0164616411214229,0.41,41,2,95.7477913062767,0.831630935009541,38,1.59493013707603,0,-2.98226108153661,-3.10691142082214,0.151674023449419
+3076,82743,443597.952,82843,443497.952,75,30,19.75,0.0395,7.94841202012826,0.252777777777778,22.843719294105,0.041048302419731,0.4375,43.75,3,93.1736243738055,0.834881320949432,23.75,4.89333972385951,0,-2.77716103196144,-3.03547716140747,0.181002500642797
+3077,82743,443497.952,82843,443397.952,76,30,41.25,0.20625,26.802356542745,0.72267182735163,14.142135623731,0.0788021455088892,0.5275,52.75,1,98.0165432545104,0.946010150091783,52.75,5.98730908976912,0,-2.68968723217646,-2.79438066482544,0.133233280637607
+3078,82743,443397.952,82843,443297.952,77,30,35.75,0.119166666666667,12.1557379357314,0.352805010893246,10,0.0474198587526189,0.4575,45.75,2,94.2739445708072,0.874567120224688,26.75,23.1269766593891,0,-2.93573439121246,-3.16143989562988,0.285637096962915
+3079,82743,443297.952,82843,443197.952,78,30,0,NA,NA,NA,NA,0.113495019720867,0.985,98.5,1,99.9600766120013,0.465240641711228,98.5,81.9779341257163,33.5410194396973,-3.32068204879761,-3.43160057067871,0.147758249794388
+3080,82743,443197.952,82843,443097.952,79,30,0.25,0.0025,0,0,NA,0.116769561432302,0.92,92,1,99.7759364721822,0.766857962697274,92,58.9281754390053,0,-3.45845764875412,-3.47990202903748,0.0350325657847763
+3081,82743,443097.952,82843,442997.952,80,30,0,NA,NA,NA,NA,0.0556752781383693,0.535,53.5,3,95.9103197973801,0.816285729723888,47.25,83.8928070246616,20,-3.49540442228317,-3.5245099067688,0.023463744149636
+3082,82743,442997.952,82843,442897.952,81,30,0,NA,NA,NA,NA,0.302031074492261,1,100,1,100,NA,100,68.962491645813,30,-3.48557996749878,-3.52117586135864,0.0410126788035281
+3083,82743,442897.952,82843,442797.952,82,30,0.5,0.0025,0,0,41.2310562561766,0.0742150005802978,0.39,39,3,91.4091505144872,0.822927971668475,23.5,39.2703603475522,15,-3.36294128000736,-3.45601296424866,0.117307653372431
+3084,82743,442797.952,82843,442697.952,83,30,36.5,0.1825,12.300668185202,0.403448275862069,22.3606797749979,-0.0133295183160226,0.1025,10.25,3,78.7077628962547,0.741633361592184,6,0.853658536585366,0,-2.65791676690181,-3.26475620269775,1.04274608204959
+3085,82743,442697.952,82843,442597.952,84,30,33.75,0.05625,6.67389434788685,0.328222703222703,10.8870792518717,-0.0362228111298464,0.195,19.5,3,90.2506746366116,0.873976055450536,18,2.0182872674404,0,-2.63312389701605,-3.32112765312195,0.965791213027634
+3086,82743,442597.952,82843,442497.952,85,30,0,NA,NA,NA,NA,-0.0965053396474104,0,0,0,NA,NA,0,NA,NA,-3.30353013674418,-3.47545266151428,0.567449917001474
+3087,82743,442497.952,82843,442397.952,86,30,3.5,0.035,7.6668352483722,0.595238095238095,NA,0.0194506633867786,0.185,18.5,4,87.7621212246899,0.792354884379424,16,32.5751265190743,0,-3.46511913836002,-3.48466777801514,0.031967700557038
+3088,82743,442397.952,82843,442297.952,87,30,2.75,0.01375,2.99759459448063,0.3,58.5234995535981,0.0383386590299779,0.205,20.5,4,89.248476843329,0.809152027759705,18,38.9954179903356,14.1421356201172,-3.42657230297724,-3.45610356330872,0.0290514580717915
+3089,82743,442297.952,82843,442197.952,88,30,0.5,0.005,2.5,0.166666666666667,NA,0.0307850439927824,0.0175,1.75,4,28.9394712793554,0.363867684478371,0.75,55.1735044206892,36.0555114746094,-3.38597789406776,-3.43925666809082,0.0496377539033843
+3090,82743,442197.952,82843,442097.952,89,30,1.5,0.003,0.5,0.0333333333333333,27.4924225024706,0.0233062017589327,0.1325,13.25,2,85.0832500210774,0.82265573043671,9.5,25.3674858021286,15,-3.25982622305552,-3.32568192481995,0.091709903263227
+3091,82743,442097.952,82843,441997.952,90,30,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,20.6155281280883,-0.0407925434594108,0,0,0,NA,NA,0,NA,NA,-3.16245041290919,-3.19974756240845,0.0516698068670185
+3092,82743,441997.952,82843,441897.952,91,30,2,0.005,1.875,0.104166666666667,17.1178263677625,-0.0675960634695366,0,0,0,NA,NA,0,NA,NA,-3.28354775905609,-3.41820812225342,0.140173428516985
+3093,82743,441897.952,82843,441797.952,92,30,0,NA,NA,NA,NA,-0.0156695661810227,0,0,0,NA,NA,0,NA,NA,-3.59713232517242,-3.70716953277588,0.185294176914084
+3094,82743,441797.952,82843,441697.952,93,30,0,NA,NA,NA,NA,-0.043961518680444,0,0,0,NA,NA,0,NA,NA,-3.74398957192898,-3.77933096885681,0.0726254261155964
+3095,82743,441697.952,82843,441597.952,94,30,0,NA,NA,NA,NA,-0.0313373067662405,0,0,0,NA,NA,0,NA,NA,-3.60722517967224,-3.72327399253845,0.133486135087609
+3096,82743,441597.952,82843,441497.952,95,30,0,NA,NA,NA,NA,-0.0847768741000664,0,0,0,NA,NA,0,NA,NA,-3.42131969332695,-3.54390740394592,0.0868780565947692
+3097,82743,441497.952,82843,441397.952,96,30,0,NA,NA,NA,NA,-0.0369904926070376,0,0,0,NA,NA,0,NA,NA,-3.33901011943817,-3.37046575546265,0.0642828853620567
+3098,82743,441397.952,82843,441297.952,97,30,0,NA,NA,NA,NA,-0.0526525589159428,0,0,0,NA,NA,0,NA,NA,-3.2746410369873,-3.36036515235901,0.119419529096256
+3099,82743,441297.952,82843,441197.952,98,30,0,NA,NA,NA,NA,-0.30351006758865,0,0,0,NA,NA,0,NA,NA,-3.06809163093567,-3.20567512512207,0.172845550640517
+3100,82743,441197.952,82843,441097.952,99,30,2.89473684210526,0.0055,2.3244163548252,0.11,15.9258791930468,-0.338579622507095,0,0,0,NA,NA,0,NA,NA,-2.821881249547,-2.93634128570557,0.119943366272638
+3101,82843,451097.952,82943,450997.952,0,31,2.5,0.00416666666666667,0.863383801092447,0.0555555555555556,30.5841746499451,0.0111186881326284,0.065,6.5,3,71.0467837264638,0.739141776444502,3.75,10.3913289583646,0,1.07999508910709,1.0241858959198,0.0821918239989581
+3102,82843,450997.952,82943,450897.952,1,31,16.5,0.04125,4.35283996987774,0.167989417989418,17.747548783982,0.00339648703216085,0,0,0,NA,NA,0,NA,NA,1.11964915196101,1.0326429605484,0.0972106066211649
+3103,82843,450897.952,82943,450797.952,2,31,16.5,0.033,6.64324205440595,0.280534591194969,20.7676670051448,0.00861010695671212,0.03,3,2,62.1385964668631,0.696785930867192,1.75,2.67258898417155,0,1.23958955870734,1.17495334148407,0.0737340814834175
+3104,82843,450797.952,82943,450697.952,3,31,10,0.01,5.2979027240318,0.121428571428571,15.5373171176879,-0.0158789206079473,0,0,0,NA,NA,0,NA,NA,1.25973735253016,1.20736789703369,0.0508245808295197
+3105,82843,450697.952,82943,450597.952,4,31,15.25,0.038125,9.54833596916399,0.395833333333333,15.7989902686658,-0.0420899214890596,0.035,3.5,3,60.3154293870224,0.585492227979275,1.75,5.88525308881487,0,1.22966310713026,1.18792295455933,0.0798295585428746
+3106,82843,450597.952,82943,450497.952,5,31,21.25,0.053125,13.1360694637333,0.447769304450339,13.4958640941704,-0.0172408874805114,0.0375,3.75,4,51.8962515582823,0.574970484061393,1.25,5.63097407023112,0,1.2307191491127,1.19523239135742,0.1050809961741
+3107,82843,450497.952,82943,450397.952,6,31,9.75,0.0108333333333333,2.98670870102594,0.120061728395062,17.5854451413359,-0.0259049893932752,0,0,0,NA,NA,0,NA,NA,1.32656056351132,1.22533404827118,0.222015298328546
+3108,82843,450397.952,82943,450297.952,7,31,19,0.02375,7.6270618384245,0.162530795762503,13.4530360993071,-0.0145812021869006,0.025,2.5,2,62.1707778778281,0.684418145956607,2,8.31516494750977,0,1.86186890800794,1.16191804409027,1.67123517679698
+3109,82843,450297.952,82943,450197.952,8,31,32.25,0.0460714285714286,6.79918482225975,0.268077601410935,13.5343729386805,0.053554342543066,0.515,51.5,1,97.9291261653514,0.886947861430379,51.5,4.07230978104675,0,6.10613920953539,3.2075502872467,5.50236705973732
+3110,82843,450197.952,82943,450097.952,9,31,81.75,0.40875,18.355930800929,0.422290388548057,21.2132034355964,0.0526722776875249,0.58,58,2,96.4849285796696,0.76905311778291,47.75,1.48754121517313,0,7.8663625187344,5.81012344360352,2.64056972649683
+3111,82843,450097.952,82943,449997.952,10,31,96,0.96,37.6485646633556,0.914496527777778,NA,0.00738124090479687,0.26,26,2,93.4945029534454,0.869923399335164,24.5,0.288461538461538,0,6.9090131521225,4.87374305725098,1.80125289155261
+3112,82843,449997.952,82943,449897.952,11,31,77.5,0.775,39.8876865756752,0.855376344086021,NA,0.0827332254020075,0.7225,72.25,1,99.0712074303406,0.827768945416004,72.25,1.53927395170535,0,5.05301899380154,4.3493332862854,1.24959018903833
+3113,82843,449897.952,82943,449797.952,12,31,97.5,0.975,38.4038435826486,0.911538461538462,NA,0.130748492686544,0.9225,92.25,2,98.637950737105,0.686187641330933,87.75,0.13550135501355,0,5.00929506619771,4.25786066055298,1.97551668115988
+3114,82843,449797.952,82943,449697.952,13,31,96.75,0.9675,39.0563674227627,0.913006029285099,NA,0.0718930643437852,0.7725,77.25,1,99.2749460632782,0.75831728409048,77.25,0.145631067961165,0,6.84164783689711,5.17920827865601,2.19285049754811
+3115,82843,449697.952,82943,449597.952,14,31,88,0.88,36.7188619837087,0.898674242424242,NA,0.0633699517621426,0.595,59.5,2,97.1089095424543,0.761409349424331,53.25,0.210084033613445,0,3.19098838170369,1.81843829154968,2.1714394286732
+3116,82843,449597.952,82943,449497.952,15,31,69.75,0.6975,34.0645203639129,0.864994026284349,NA,0.0417888413314722,0.4975,49.75,1,97.8012504735965,0.951462201189176,49.75,0.050251256281407,0,1.82054064008925,0.817383408546448,1.20678405402247
+3117,82843,449497.952,82943,449397.952,16,31,38.75,0.3875,33.2798925515047,0.672043010752688,NA,-0.025760267401929,0.005,0.5,2,0,1,0.25,0,0,0.40498034004122,-0.0590125620365143,0.781946038276606
+3118,82843,449397.952,82943,449297.952,17,31,34.5,0.115,13.2719644862367,0.419108514001807,15,-0.0164978087571922,0.06,6,2,75.214492285537,0.804031354983203,3.5,1.04166666666667,0,-0.118244611813376,-0.27791240811348,0.262412901619136
+3119,82843,449297.952,82943,449197.952,18,31,7.75,0.0129166666666667,6.13509169823599,0.199652777777778,26.0577926660198,0.0147216285887225,0.1275,12.75,5,80.5495021414578,0.644303922537299,8,7.87639086854224,0,-0.213610582674543,-0.290187180042267,0.33294802639649
+3120,82843,449197.952,82943,449097.952,19,31,30,0.1,9.12737094619845,0.270244821092279,23.4370962471642,0.0148311157506669,0.2975,29.75,2,92.0072193913103,0.795703176486095,21.25,6.70884876090939,0,0.413460428929991,-0.218142658472061,1.11250188076692
+3121,82843,449097.952,82943,448997.952,20,31,82.5,0.4125,21.3405924720144,0.635773624091381,15,0.0744731736042013,0.8675,86.75,1,99.6123355042629,0.95398067188219,86.75,0.698635178271906,0,0.740639747844802,0.242781952023506,0.807871243643565
+3122,82843,448997.952,82943,448897.952,21,31,11,0.0275,6.38033495516901,0.509424603174603,14.5710678118655,-0.0282693339983962,0.2425,24.25,2,92.9628184632392,0.939304275255112,23.5,8.71199800550323,0,0.430898584425449,-0.215736672282219,0.824299459625579
+3123,82843,448897.952,82943,448797.952,22,31,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.0350024177717569,0,0,0,NA,NA,0,NA,NA,-0.255278228885598,-0.37198868393898,0.204275513565871
+3124,82843,448797.952,82943,448697.952,23,31,0,NA,NA,NA,NA,0.00334231730706733,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,45.4688270568848,35.355339050293,-0.563544131815434,-0.741099238395691,0.194172488718544
+3125,82843,448697.952,82943,448597.952,24,31,0.5,0.0025,0,0,60.4152298679729,0.0064702266144559,0.0275,2.75,3,54.3349392087244,0.657240788346187,1.75,32.5084755637429,18.0277557373047,-0.828649812274509,-0.913017511367798,0.128686937757321
+3126,82843,448597.952,82943,448497.952,25,31,14.5,0.03625,9.41274760493291,0.255285650022492,21.3598863260794,-0.0149437607502023,0.0175,1.75,1,65.4774238937655,1,1.75,3.15300968715123,0,-0.856912404298782,-0.921111524105072,0.0930137900915565
+3127,82843,448497.952,82943,448397.952,26,31,7,0.014,3.56593662066305,0.100724637681159,24.6443443236695,-0.0371937039040495,0.0825,8.25,1,86.9391941099265,0.858714300131194,8.25,12.1424943750555,0,-0.763161102930705,-0.831906497478485,0.0821375807724452
+3128,82843,448397.952,82943,448297.952,27,31,6.25,0.00625,1.50971991599388,0.0816239316239316,16.5043835061226,0.00337124685435811,0.1025,10.25,3,78.4177824574472,0.822372936094627,4.75,17.7681794050263,0,-0.747561867038409,-0.801874756813049,0.0503017056569595
+3129,82843,448297.952,82943,448197.952,28,31,22,0.022,4.88730347021401,0.171357346357346,14.9205455250617,0.0043517070629332,0.03,3,2,67.6935835135484,0.878714372346877,2.75,1.66666666666667,0,-0.833261675304837,-0.861464738845825,0.041421014874209
+3130,82843,448197.952,82943,448097.952,29,31,83.75,0.8375,35.4818105348938,0.895522388059702,NA,-0.0138765477755078,0.18,18,3,84.2664815308847,0.788745918955252,7.5,1.57741504245334,0,-0.847609793146451,-0.8696328997612,0.0301076089210405
+3131,82843,448097.952,82943,447997.952,30,31,100,1,38.2238923285138,0.934166666666667,NA,0.0104122294269473,0.46,46,1,97.5030549392159,0.891067538126362,46,0,0,-0.786980456776089,-0.815464556217194,0.0601089175374546
+3132,82843,447997.952,82943,447897.952,31,31,65.25,0.32625,20.2807304129122,0.673406374501992,28.2842712474619,0.0715395476831691,0.61,61,1,98.5243747403739,0.926900584795322,61,0.623242081188765,0,-0.667273799578349,-0.728373765945435,0.119922814923357
+3133,82843,447897.952,82943,447797.952,32,31,38,0.0422222222222222,6.44981816832388,0.217960023515579,10.6557443819439,0.026765305371664,0.215,21.5,7,81.5137778159148,0.650305982265518,10.5,3.18522351287132,0,-0.500913716852665,-0.672582864761353,0.22804033867828
+3134,82843,447797.952,82943,447697.952,33,31,12,0.0171428571428571,5.94579808149537,0.319212533498248,19.7388668679771,-0.00272930480779905,0.0325,3.25,4,49.9379082282791,0.483204134366925,1.25,5.43422698974609,0,-0.0660828268414156,-0.261637777090073,0.331407791331343
+3135,82843,447697.952,82943,447597.952,34,31,22.75,0.0206818181818182,5.55539610083907,0.207141435799972,11.0983672113631,0.0075072470160103,0.0225,2.25,3,51.2568226763031,0.48849104859335,1.5,6.83364613850911,0,0.160385748681923,-0.0636823102831841,0.210660796870375
+3136,82843,447597.952,82943,447497.952,35,31,15.75,0.0315,6.84109891916501,0.319523809523809,13.4471705284278,0.00509740710513142,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,0,0,0.57916936940617,0.408292084932327,0.328369454297731
+3137,82843,447497.952,82943,447397.952,36,31,31,0.0516666666666667,7.50877797609932,0.236825980392157,11.9281293399695,0.020554186940426,0.1225,12.25,6,75.0684003219718,0.742233075566409,7,1.41106399224729,0,1.15777320663134,0.782237529754639,0.456437927910235
+3138,82843,447397.952,82943,447297.952,37,31,57.75,0.144375,12.9788353571256,0.363138098583304,11.920788821557,0.0361925992084434,0.28,28,5,87.7715244064155,0.718096809680968,13.75,2.07523577553885,0,1.46070906851027,1.17084348201752,0.283819638205272
+3139,82843,447297.952,82943,447197.952,38,31,68.25,0.11375,7.84291737731655,0.217080152671756,10.5901699437495,0.0437572004838421,0.4175,41.75,3,93.5778685063197,0.79376846329636,29,1.05003197036104,0,1.40927604834239,0.540445506572723,0.966693000190075
+3140,82843,447197.952,82943,447097.952,39,31,39.25,0.0785,8.70390943381246,0.251019900497512,13.6251184000825,0.00801922362999903,0.105,10.5,4,74.0091631177455,0.716736171217248,4.25,2.683714730399,0,0.0207169693377283,-0.250195741653442,0.59616492388122
+3141,82843,447097.952,82943,446997.952,40,31,45,0.15,11.0083864840514,0.245942571785268,10.3934466291663,-0.00855512772216571,0.065,6.5,4,67.5532921221715,0.660884309377853,2.75,1.34615384615385,0,-0.40274087836345,-0.512006998062134,0.147700206593943
+3142,82843,446997.952,82943,446897.952,41,31,25.5,0.0283333333333333,6.157456090985,0.194410815173527,11.5045577402774,0.0117240214877904,0.0625,6.25,3,75.4135898811094,0.786666666666667,5.25,1.88284271240234,0,-0.523088845941756,-0.547519385814667,0.0536267014188523
+3143,82843,446897.952,82943,446797.952,42,31,30.5,0.07625,11.9780508820061,0.310383405902274,13.0901699437495,0.0254095652922842,0.2725,27.25,3,93.9328387925051,0.832539641006855,26.5,2.30305858927036,0,-0.521608807146549,-0.540259122848511,0.0426884978904566
+3144,82843,446797.952,82943,446697.952,43,31,7.5,0.0125,5.52481747513089,0.156457739791073,13.5947960066361,0.0244815314740299,0.1575,15.75,4,85.1142040380339,0.697868896681953,12,14.9376914614723,0,-0.501947889725367,-0.535022914409637,0.0766307009007466
+3145,82843,446697.952,82943,446597.952,44,31,14.75,0.0134090909090909,3.93941025001247,0.196678321678322,12.5206354861321,0.0117003347496393,0.0275,2.75,4,43.4900566959791,0.520137103684661,1,14.0938169305975,5,-0.472770141230689,-0.531252920627594,0.108432036077815
+3146,82843,446597.952,82943,446497.952,45,31,0.75,0.00375,1.76776695296637,0.0416666666666667,68.0073525436772,0.00973572388895263,0,0,0,NA,NA,0,NA,NA,-0.392757577200731,-0.48717474937439,0.124536903588409
+3147,82843,446497.952,82943,446397.952,46,31,13,0.0108333333333333,3.88050160639347,0.145023148148148,11.0813506585905,-0.00225579935527094,0.0275,2.75,3,54.7608175262403,0.520137103684661,1.75,14.4883325750178,5,-0.321333633528815,-0.387924820184708,0.10305223838631
+3148,82843,446397.952,82943,446297.952,47,31,14.75,0.0122916666666667,3.93601416354392,0.155061892130858,12.2761836416309,-0.00445285492311086,0.0025,0.25,1,0,NA,0.25,5,5,-0.32285375893116,-0.392761826515198,0.103814687279864
+3149,82843,446297.952,82943,446197.952,48,31,11.75,0.00903846153846154,3.43112763074323,0.146367521367521,13.4243234021169,-0.00834799864658635,0,0,0,NA,NA,0,NA,NA,-0.352568235662248,-0.433297395706177,0.124771272222605
+3150,82843,446197.952,82943,446097.952,49,31,21.75,0.0435,7.70959229707014,0.231926863572433,13.5711554685924,0.00924782310266551,0.0575,5.75,5,63.3803147130953,0.557913351016799,3.25,5.05704465119735,0,-0.450373058517774,-0.560976147651672,0.133385937941245
+3151,82843,446097.952,82943,445997.952,50,31,11.75,0.0167857142857143,4.49699602075324,0.124716553287982,16.8249274894984,0.00883370453688258,0.16,16,3,82.7165970157,0.798044217687075,7.75,17.3427901864052,0,-0.581632243262397,-0.626006007194519,0.0808764629011715
+3152,82843,445997.952,82943,445897.952,51,31,3.5,0.00583333333333333,2.38888888888889,0.137037037037037,16.221137925011,0.0006190212723277,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,34.2932746887207,5,-0.426657525201639,-0.626740336418152,0.286003786978412
+3153,82843,445897.952,82943,445797.952,52,31,38,0.0542857142857143,7.87998315587722,0.307938540332907,10.1686199839284,0.0255468658910104,0.215,21.5,5,86.5202247761884,0.79184879896757,16.25,3.1270839779876,0,0.445969151126014,0.0769549682736397,0.624853559434272
+3154,82843,445797.952,82943,445697.952,53,31,67.75,0.6775,34.7025419960452,0.857933579335793,NA,0.0377508347477124,0.475,47.5,3,95.9428086169112,0.92965367965368,46,0.655076900281404,0,1.11178636054198,0.797451496124268,0.269897908685295
+3155,82843,445697.952,82943,445597.952,54,31,49,0.1225,14.5827463601075,0.405989583333333,13.5355339059327,0.010492926456136,0.15,15,5,83.2182814285629,0.717194570135747,10.75,2.47305157979329,0,0.837307449844148,0.492150515317917,0.491700214910082
+3156,82843,445597.952,82943,445497.952,55,31,13.5,0.01125,2.61478934135047,0.212878787878788,15.877676851182,0.00888708493307604,0.0525,5.25,4,62.2484579018488,0.703166226912929,2.5,5.78363518487839,0,0.228121092336045,-0.0612951926887035,0.419238204943009
+3157,82843,445497.952,82943,445397.952,56,31,64,0.0914285714285714,7.46277319020448,0.31875,10.7142857142857,0.061236235812321,0.545,54.5,2,97.0972600046974,0.886320575975748,52.5,0.481651376146789,0,0.0791137519602974,-0.434870034456253,0.722775673334009
+3158,82843,445397.952,82943,445297.952,57,31,69.25,0.1385,8.01605979105069,0.262098765432099,11.4721359549996,0.0559958442297648,0.4325,43.25,4,92.224785519323,0.812188419206496,25.5,0.729556089191768,0,-0.188096928927633,-0.863298416137695,1.00725701025744
+3159,82843,445297.952,82943,445197.952,58,31,59,0.1475,11.6869329989269,0.437561663143058,11.0355339059327,0.063042756949435,0.7025,70.25,2,98.7113383793404,0.758085052202699,69.75,1.55782520389217,0,-0.53353025779749,-1.08648419380188,0.895645321183057
+3160,82843,445197.952,82943,445097.952,59,31,63,0.09,7.40821569577175,0.254066686013655,10.5058599517853,0.0376406445604027,0.51,51,5,95.6423397108886,0.773840934790803,47,0.800413094314874,0,-0.626505667136775,-0.983026385307312,0.565163226405165
+3161,82843,445097.952,82943,444997.952,60,31,51.25,0.0640625,7.47908412073168,0.425080793049543,11.1690509954173,0.014322653563504,0.2475,24.75,5,83.9021005002208,0.761095972227407,13,1.44731587111348,0,-0.580599144101143,-0.713620543479919,0.141490028730272
+3162,82843,444997.952,82943,444897.952,61,31,51,0.17,17.063091910745,0.529461805555556,10,0.0197113703318882,0.1475,14.75,5,77.4562982584393,0.735495371168996,6,3.32639047655009,0,-0.639364269044664,-0.809485852718353,0.20635823123966
+3163,82843,444897.952,82943,444797.952,62,31,22.75,0.0206818181818182,4.66218072045985,0.187353435917833,11.9068349604566,0.00717197521789785,0.1375,13.75,4,87.6658599047074,0.74370709382151,12.75,8.25855331420899,0,-0.985958596070608,-1.28168475627899,0.327553840685164
+3164,82843,444797.952,82943,444697.952,63,31,48.5,0.0808333333333333,7.89134054151592,0.38148452228912,13.2978477743651,0.0160866467131928,0.135,13.5,5,79.8216354523673,0.714090372304059,6.5,0.462962962962963,0,-1.41953778266907,-1.6086460351944,0.282788006289525
+3165,82843,444697.952,82943,444597.952,64,31,19.75,0.0219444444444444,4.18626478028805,0.180704898446834,13.1858563777533,0.0195037082340059,0.1625,16.25,3,84.4449122652829,0.767534011359134,10.25,3.26738712604229,0,-1.75570954879125,-1.90744018554688,0.188058286487202
+3166,82843,444597.952,82943,444497.952,65,31,37,0.0411111111111111,10.5742214726441,0.29528392028392,10.2622977527775,-0.0459618907299409,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,1.76528894333612,0,-1.95490059587691,-2.02294254302979,0.0981063444167347
+3167,82843,444497.952,82943,444397.952,66,31,12.25,0.0175,5.30461641707912,0.222348198538675,14.8481400430364,-0.00316847637403725,0.03,3,2,65.3583788268078,0.818071558520315,2.5,7.00523296991984,0,-1.9756320450041,-2.02626848220825,0.0804064316119472
+3168,82843,444397.952,82943,444297.952,67,31,26.25,0.0375,4.340333415635,0.20241540187799,17.3764494511982,0.0163462292808072,0.19,19,2,89.4068527246909,0.889441680486457,16.25,1.69923862658049,0,-1.88907094796499,-1.97511172294617,0.0905364220276495
+3169,82843,444297.952,82943,444197.952,68,31,11.5,0.0191666666666667,4.86705311678761,0.216230936819172,20.7518149027128,-0.00253934221693271,0.0275,2.75,2,66.702712212269,0.794344473007712,2.5,4.38947920365767,0,-1.8236640824212,-1.87595474720001,0.0708204235245988
+3170,82843,444197.952,82943,444097.952,69,31,4.5,0.00642857142857143,2.63256504152522,0.129365079365079,13.4488765176759,-0.013706577090361,0,0,0,NA,NA,0,NA,NA,-1.82347678144773,-1.86564517021179,0.0717510250200475
+3171,82843,444097.952,82943,443997.952,70,31,10.75,0.0153571428571429,2.84999065352756,0.150613275613276,12.3575450569613,-0.0122021282811329,0,0,0,NA,NA,0,NA,NA,-1.87086915969849,-1.97090446949005,0.120735245809003
+3172,82843,443997.952,82943,443897.952,71,31,34.5,0.08625,13.5248243254113,0.492958381920151,10.2950849718747,0.033418703155412,0.32,32,2,95.5372195421765,0.854834637717748,31.75,3.63647323846817,0,-2.09211439887683,-2.69372391700745,0.353786171715411
+3173,82843,443897.952,82943,443797.952,72,31,33.75,0.084375,12.3519418934269,0.558885239919723,18.2440519757716,0.0405646613224235,0.3475,34.75,4,91.0131997822862,0.78881950101065,25.75,3.59555797439685,0,-2.62035918235779,-2.97181940078735,0.453911137911792
+3174,82843,443797.952,82943,443697.952,73,31,66,0.66,41.6064833681835,0.806818181818182,NA,0.0426841220027563,0.4425,44.25,5,92.0272377650875,0.818982186201506,28.5,1.41928363519873,0,-2.9040700395902,-3.07706689834595,0.222910104023493
+3175,82843,443697.952,82943,443597.952,74,31,92.25,0.9225,37.9650713320498,0.877145438121048,NA,0.0272418559781363,0.51,51,3,93.737166690872,0.849227289860535,35,0.147058823529412,0,-3.08547552426656,-3.12244462966919,0.0886348817642972
+3176,82843,443597.952,82943,443497.952,75,31,51.75,0.1035,13.514494708868,0.517721139430285,10.7082039324994,0.049205288710582,0.6075,60.75,1,98.5105231673728,0.758691321305312,60.75,1.93341543252576,0,-3.15028913815816,-3.24915289878845,0.186964000120361
+3177,82843,443497.952,82943,443397.952,76,31,50.75,0.5075,33.4840915918553,0.757799671592775,NA,0.0853149791992337,0.695,69.5,2,98.733943988487,0.836693675020413,69.25,1.89556732452173,0,-3.05116600460476,-3.25343418121338,0.30556343185385
+3178,82843,443397.952,82943,443297.952,77,31,35.75,0.17875,20.8574919939255,0.755735759493671,42.7200187265877,0.0695812575129821,0.53,53,2,95.0400757961455,0.854195917485689,28,4.14348207329804,0,-3.22303014331394,-3.36955547332764,0.239859040314662
+3179,82843,443297.952,82943,443197.952,78,31,24.5,0.245,27.7210866973981,0.736394557823129,NA,0.0949175060477501,0.7625,76.25,1,99.2358070072224,0.963386727688787,76.25,23.6388331866655,0,-3.39548516273499,-3.43990874290466,0.0803374168611511
+3180,82843,443197.952,82943,443097.952,79,31,1.5,0.015,5.31486749101805,0.416666666666667,NA,0.0777385905350093,0.755,75.5,1,99.205943814227,0.856533122915247,75.5,59.4693734124796,0,-3.47188586658902,-3.49790215492249,0.0406961075632757
+3181,82843,443097.952,82943,442997.952,80,31,0,NA,NA,NA,NA,0.0858589722961187,0.8975,89.75,1,99.7075809055868,0.942611190817791,89.75,79.4013050259986,44.7213592529297,-3.53764742612839,-3.56370902061462,0.0352395980220353
+3182,82843,442997.952,82943,442897.952,81,31,0.75,0.00375,1.25,0.0833333333333333,45,0.352668435087544,0.935,93.5,1,99.8201295789998,0.978300965607031,93.5,34.1529712524006,0,-3.54051931699117,-3.56245875358582,0.0385846810188747
+3183,82843,442897.952,82943,442797.952,82,31,0.75,0.0025,0,0,34.6269588956283,0.011257406725797,0.32,32,2,94.1382215697609,0.90532693764201,30.5,23.7292108535767,5,-3.44399366776148,-3.50762796401978,0.0796565695928029
+3184,82843,442797.952,82943,442697.952,83,31,0.5,0.0025,0,0,96.5660395791398,-0.0779114102158928,0,0,0,NA,NA,0,NA,NA,-3.34518437915378,-3.39675569534302,0.142737151982783
+3185,82843,442697.952,82943,442597.952,84,31,0,NA,NA,NA,NA,-0.109446298088878,0,0,0,NA,NA,0,NA,NA,-3.38442474603653,-3.46365141868591,0.160107708843845
+3186,82843,442597.952,82943,442497.952,85,31,0,NA,NA,NA,NA,-0.110553369224071,0,0,0,NA,NA,0,NA,NA,-3.4924750857883,-3.52424788475037,0.0584299698549563
+3187,82843,442497.952,82943,442397.952,86,31,1.25,0.00625,2.17471115988337,0.145833333333333,10,-0.0602325223898515,0.125,12.5,1,90.3766993434411,0.973109243697479,12.5,17.1827730941772,0,-3.49161126216253,-3.52712798118591,0.0446629314778808
+3188,82843,442397.952,82943,442297.952,87,31,15.5,0.155,16.0846726909247,0.809139784946237,NA,0.0308457934639591,0.3125,31.25,3,91.130573268736,0.839807769323188,22.75,45.4714604187012,0,-3.4241545730167,-3.46101450920105,0.0391983872916068
+3189,82843,442297.952,82943,442197.952,88,31,0.75,0.0075,3.33333333333333,0.222222222222222,NA,0.0366934054821468,0.31,31,3,89.170211411618,0.864734299516908,19,49.9308776394013,15,-3.37854818503062,-3.40919327735901,0.0505962336961916
+3190,82843,442197.952,82943,442097.952,89,31,0.25,0.0025,0,0,NA,0.0378152913574922,0.3475,34.75,1,96.3348533717898,0.945696443117024,34.75,30.2127524451386,0,-3.23691741625468,-3.29895687103271,0.109038699355733
+3191,82843,442097.952,82943,441997.952,90,31,1.75,0.0035,1,0.0666666666666667,19.6697860851649,-0.0583013752172701,0,0,0,NA,NA,0,NA,NA,-3.10674738883972,-3.13805103302002,0.0507398446775061
+3192,82843,441997.952,82943,441897.952,91,31,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,-0.0567018547002226,0,0,0,NA,NA,0,NA,NA,-3.21627499659856,-3.34813022613525,0.135515347638732
+3193,82843,441897.952,82943,441797.952,92,31,0,NA,NA,NA,NA,-0.0301060171170457,0,0,0,NA,NA,0,NA,NA,-3.50711891386244,-3.63268303871155,0.181294513408987
+3194,82843,441797.952,82943,441697.952,93,31,0,NA,NA,NA,NA,-0.0325651395685418,0,0,0,NA,NA,0,NA,NA,-3.63519473870595,-3.70239496231079,0.111745549850767
+3195,82843,441697.952,82943,441597.952,94,31,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.0577481484559394,0.0075,0.75,1,44.4894453484604,1,0.75,11.3542652130127,7.07106781005859,-3.51243050893148,-3.5798077583313,0.0867173038121661
+3196,82843,441597.952,82943,441497.952,95,31,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.0407450208138471,0.52,52,1,97.9644711022996,0.940783807062877,52,52.5132948251871,20,-3.42500621080399,-3.4569046497345,0.0371414891885107
+3197,82843,441497.952,82943,441397.952,96,31,0,NA,NA,NA,NA,0.0377325246398686,0.465,46.5,2,96.6206279433203,0.961964790262986,45.75,86.184741153512,40.3112869262695,-3.40942724545797,-3.42988324165344,0.0401348178599316
+3198,82843,441397.952,82943,441297.952,97,31,0,NA,NA,NA,NA,0.00558786480306594,0.01,1,1,52.6315789473684,0.747474747474748,1,185.055198669434,181.176696777344,-3.37692107756933,-3.42479515075684,0.0759321326566636
+3199,82843,441297.952,82943,441197.952,98,31,0,NA,NA,NA,NA,-0.0326076990617366,0,0,0,NA,NA,0,NA,NA,-3.20591764979892,-3.31923723220825,0.1759583584901
+3200,82843,441197.952,82943,441097.952,99,31,0,NA,NA,NA,NA,-0.17298987903916,0.1225,12.25,1,90.2255639097744,0.932166598833265,12.25,121.401686532157,98.4885787963867,-2.88868939876556,-3.0986008644104,0.217884602604216
+3201,82943,451097.952,83043,450997.952,0,32,32,0.064,9.35773524025886,0.232294372294372,16.5629686047021,0.00634638184939831,0.095,9.5,3,81.6500537697992,0.771989827238446,7.25,8.87293333756296,0,1.18181817730268,1.12521970272064,0.0776698056032243
+3202,82943,450997.952,83043,450897.952,1,32,9.5,0.0105555555555556,3.0854751029883,0.162037037037037,22.2852406732955,0.0161008744282844,0.115,11.5,4,77.04520561307,0.782703172533681,5.5,10.6052030895067,0,1.21578274667263,1.16769337654114,0.0472167011105403
+3203,82943,450897.952,83043,450797.952,2,32,7.25,0.0145,4.54024351214802,0.197076023391813,20.4406620900337,0.0446268457539827,0.3725,37.25,2,95.965191758935,0.912438159450112,36.75,13.3312394698994,0,1.24665256341298,1.19263088703156,0.042239670959466
+3204,82943,450797.952,83043,450697.952,3,32,4.25,0.0141666666666667,7.97582767479862,0.127865961199295,28.9941183821383,-0.0311458119962481,0.0175,1.75,1,65.4774238937655,1,1.75,6.178772517613,0,1.3221788033843,1.22781562805176,0.136730374996822
+3205,82943,450697.952,83043,450597.952,4,32,9.25,0.0925,23.8433188979173,0.545045045045045,NA,-0.00773435854435775,0,0,0,NA,NA,0,NA,NA,1.52062037587166,1.33838593959808,0.261428729551736
+3206,82943,450597.952,83043,450497.952,5,32,10,0.025,6.21149921942641,0.28707264957265,10.5901699437495,0.0117707632579732,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,6.7131039755685,0,1.70023250579834,1.31961143016815,0.496015115742041
+3207,82943,450497.952,83043,450397.952,6,32,16.25,0.040625,10.311917170758,0.545854011579818,25.9534352801974,0.00266800123576104,0.095,9.5,2,84.3894710590195,0.789529071297027,8.25,4.48865925638299,0,1.88030763467153,1.17552149295807,1.09031828035014
+3208,82943,450397.952,83043,450297.952,7,32,22.75,0.056875,7.41261178965751,0.335390946502058,28.5908252339791,0.0446288237474982,0.36,36,2,95.3356117468041,0.90530303030303,35,5.62681367662218,0,5.45589703321457,1.48495197296143,4.92681357577016
+3209,82943,450297.952,83043,450197.952,8,32,85.25,0.42625,20.7295248402587,0.567631058358061,10,0.0764856384973973,0.7675,76.75,1,99.2554721522595,0.717230345648696,76.75,1.25250083848786,0,15.3644204934438,11.5866956710815,6.43662067649654
+3210,82943,450197.952,83043,450097.952,9,32,98,0.98,37.9523258604254,0.925170068027211,NA,0.0670592455152655,0.8475,84.75,1,99.546047930594,0.867011073885578,84.75,0.0946049197936832,0,11.6350868542989,9.16339778900146,4.81268889727008
+3211,82943,450097.952,83043,449997.952,10,32,71.25,0.7125,33.1902089678285,0.911111111111111,NA,-0.00631248409194086,0.13,13,4,81.4173724930383,0.806276636962418,8.75,7.36167948062603,0,5.54763236641884,4.12128639221191,2.40474426978357
+3212,82943,449997.952,83043,449897.952,11,32,87.75,0.43875,18.426903959827,0.447380952380952,10,0.0969492978765629,0.82,82,1,99.4509723118502,0.766648716567941,82,0.718429728252132,0,4.36716675758362,4.12401056289673,1.65752754810423
+3213,82943,449897.952,83043,449797.952,12,32,94.25,0.9425,38.9002345706209,0.897435897435897,NA,0.0665365992355873,0.81,81,1,99.4152046783626,0.707602339181286,81,0.138888888888889,0,9.1310838162899,5.74752759933472,3.11374789968335
+3214,82943,449797.952,83043,449697.952,13,32,93.75,0.9375,37.9718627797182,0.898666666666667,NA,0.0672756835125574,0.7225,72.25,2,96.811859867778,0.788023317435082,52.75,0.397923875432526,0,6.51929463942846,2.43959999084473,4.39789997911888
+3215,82943,449697.952,83043,449597.952,14,32,27,0.0675,12.6690304372683,0.529607791754018,10.5901699437495,0.0305695293514509,0.3175,31.75,2,92.9177966860159,0.89851418422847,25.25,2.79420302984283,0,1.88885414600372,1.187420129776,1.24549959916577
+3216,82943,449597.952,83043,449497.952,15,32,27.75,0.13875,12.5170049647678,0.494648318042813,20,0.0181178096760777,0.245,24.5,2,93.4764611078809,0.932269717037929,24,0.306122448979592,0,1.18191611766815,0.920198202133179,0.44357472210667
+3217,82943,449497.952,83043,449397.952,16,32,62.25,0.6225,39.7885307619416,0.735609103078983,NA,0.0360144022568602,0.38,38,3,92.2787516063743,0.849693606197248,30.25,1.12640265414589,0,0.753998778760433,0.382666707038879,0.392967122525261
+3218,82943,449397.952,83043,449297.952,17,32,34.25,0.085625,9.31014203416225,0.35308908045977,20.0888347648318,0.00957147093578897,0.115,11.5,3,79.8998747342393,0.797189627698102,7,4.07318587925123,0,0.27716826989005,-0.0258428938686848,0.357184220432702
+3219,82943,449297.952,83043,449197.952,18,32,0,NA,NA,NA,NA,0.0120151032325634,0.0925,9.25,3,82.8918679276768,0.783227204985774,8.25,22.8835969873377,7.07106781005859,-0.210998108639615,-0.416135638952255,0.230927228233644
+3220,82943,449197.952,83043,449097.952,19,32,4.75,0.00678571428571429,2.1935174264316,0.166666666666667,19.5284964587153,0.0248336413115658,0.1425,14.25,5,76.2100592036931,0.714404712322247,5.25,20.3057220860531,0,-0.478908772269885,-0.689132750034332,0.273835214706197
+3221,82943,449097.952,83043,448997.952,20,32,7.25,0.0241666666666667,5.68495969466227,0.237179487179487,30.8463413376963,0.0543171924356284,0.4375,43.75,2,94.0001030454473,0.790849673202614,24.5,30.5965332140241,0,-0.518106438219547,-0.753773391246796,0.39525354456709
+3222,82943,448997.952,83043,448897.952,21,32,0,NA,NA,NA,NA,0.0608415961585706,0.4225,42.25,2,95.6176248896332,0.861249861249861,38.75,41.7477738307073,5,-0.45094283297658,-0.676374614238739,0.270853094282467
+3223,82943,448897.952,83043,448797.952,22,32,6.5,0.065,12.6496212627531,0.602564102564103,NA,-0.0448554438992869,0,0,0,NA,NA,0,NA,NA,-0.438726333280404,-0.50350159406662,0.0915212816560245
+3224,82943,448797.952,83043,448697.952,23,32,1,0.005,2.35702260395516,0.0555555555555556,74.3303437365925,-0.0184065972519602,0,0,0,NA,NA,0,NA,NA,-0.595638703554869,-0.754167556762695,0.157036226011354
+3225,82943,448697.952,83043,448597.952,24,32,4,0.008,2.69995152477348,0.08,12.5606232978365,-0.00383040053277,0,0,0,NA,NA,0,NA,NA,-0.841483245293299,-0.952430665493011,0.140193828685901
+3226,82943,448597.952,83043,448497.952,25,32,19.5,0.04875,13.3363773232203,0.205357142857143,11.3306188778075,-0.0212046101488886,0,0,0,NA,NA,0,NA,NA,-0.901036150753498,-0.939946174621582,0.0706919955457884
+3227,82943,448497.952,83043,448397.952,26,32,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.0363495875461922,0.03,3,1,74.8763016215986,0.939357186173438,3,44.155200958252,39.0512504577637,-0.817775984605153,-0.868351399898529,0.0925440265607112
+3228,82943,448397.952,83043,448297.952,27,32,22.5,0.0375,5.87420656785565,0.264608330894547,14.175391352293,0.00798364641981607,0.1175,11.75,5,76.3489254289002,0.773371104815864,6.5,3.62458168192113,0,-0.739351887255907,-0.803123593330383,0.0928006443402729
+3229,82943,448297.952,83043,448197.952,28,32,11.5,0.014375,6.4069389756647,0.210648148148148,11.8401699437495,-0.00171375219217268,0.035,3.5,2,71.13601550507,0.896373056994819,3.25,2.85714285714286,0,-0.773540501793226,-0.85905247926712,0.106817857139598
+3230,82943,448197.952,83043,448097.952,29,32,26.5,0.0441666666666667,8.23298770403411,0.492935308715451,11.9281293399695,-0.0323201750769567,0.015,1.5,1,62.2896536353828,1,1.5,0,0,-0.822085805237293,-0.870338916778564,0.0739718356737595
+3231,82943,448097.952,83043,447997.952,30,32,84.25,0.42125,25.3900783197584,0.807013464434405,14.142135623731,0.041873850092561,0.465,46.5,1,97.5448886830867,0.902195174961965,46.5,0.0806451612903226,0,-0.763801753520966,-0.813942849636078,0.088574968216982
+3232,82943,447997.952,83043,447897.952,31,32,44.5,0.148333333333333,13.058991554158,0.562378167641326,31.3218828529921,0.0455006995167059,0.435,43.5,2,95.403869366768,0.895238882915667,38.25,0.759029125345164,0,-0.684337481856346,-0.720094680786133,0.0579850398264725
+3233,82943,447897.952,83043,447797.952,32,32,68.5,0.3425,22.6798491793457,0.58510101010101,14.142135623731,0.0283684758709569,0.245,24.5,5,84.0199541037019,0.77423239012643,10.75,0.918367346938776,0,-0.564477231353521,-0.6818608045578,0.140988084197713
+3234,82943,447797.952,83043,447697.952,33,32,36,0.045,9.0537050707176,0.455355791596463,11.5392754624463,0.0172696978131353,0.185,18.5,2,89.6438867312442,0.915054270882492,15.75,4.37742192036397,0,-0.32886132846276,-0.446580946445465,0.155385765727484
+3235,82943,447697.952,83043,447597.952,34,32,27.5,0.0275,4.95365059737261,0.155952380952381,16.9024877595637,0.00102030632792776,0.045,4.5,3,62.2131346278103,0.689742098119062,2,4.95234086778429,0,-0.00143341681268794,-0.231438905000687,0.249942179420703
+3236,82943,447597.952,83043,447497.952,35,32,37.25,0.0465625,7.49416049218135,0.241792441792442,10.2950849718747,0.000314980158277649,0.01,1,2,34.5233986084855,0.494949494949495,0.75,8.01776695251465,5,0.449748871227105,0.180512577295303,0.296725732244344
+3237,82943,447497.952,83043,447397.952,36,32,13.75,0.00808823529411765,2.60482161100767,0.144313725490196,13.2483554995447,0.000858021380313403,0.0825,8.25,4,73.992133886693,0.757795943082047,6,2.39824653394295,0,0.815221315249801,0.472530037164688,0.353038999428208
+3238,82943,447397.952,83043,447297.952,37,32,31.5,0.0185294117647059,3.15297454416361,0.183266291012529,13.4524237293734,0.0297881892298028,0.225,22.5,3,89.4202016735713,0.855740332598678,18.5,1.37935706244575,0,0.87712241212527,0.407989531755447,0.524677397811068
+3239,82943,447297.952,83043,447197.952,38,32,22.75,0.0252777777777778,4.31601052877601,0.141152263374486,13.306024788677,0.0346509113700449,0.245,24.5,2,90.3283124525811,0.834437086092715,13.75,5.45718056815011,0,0.398708686203463,-0.0736809074878693,0.558701453304159
+3240,82943,447197.952,83043,447097.952,39,32,18.75,0.0208333333333333,4.67132498475251,0.146127946127946,11.1542706835909,0.0195707752843555,0.0775,7.75,5,71.0528232827628,0.653116531165312,4.5,7.72937774658203,0,-0.0799874978450437,-0.201927527785301,0.193145130470464
+3241,82943,447097.952,83043,446997.952,40,32,13.75,0.0114583333333333,3.91749556371923,0.149421296296296,13.1885316010411,0.0139610317780216,0.055,5.5,5,57.1111661076159,0.595393713040772,2.25,13.9795333688909,0,-0.277940205298364,-0.401611387729645,0.100955721691833
+3242,82943,446997.952,83043,446897.952,41,32,28,0.0933333333333333,13.2435658359957,0.315853236413984,10.3934466291663,0.0218190122057331,0.13,13,4,81.9507703377305,0.767531964354901,10,3.82447704902062,0,-0.388795273999373,-0.466512143611908,0.079798937744719
+3243,82943,446897.952,83043,446797.952,42,32,16,0.032,8.15328264320748,0.109322033898305,16.4721359549996,0.0108849477315562,0.0875,8.75,4,75.715426049129,0.678790741615494,6,3.66526489257812,0,-0.461346533149481,-0.511113882064819,0.0578027402853249
+3244,82943,446797.952,83043,446697.952,43,32,10,0.025,7.22739121934191,0.112612612612613,18.5122958682192,0.00795981439998286,0.095,9.5,4,74.84660166972,0.631675874769797,4.75,8.91838093807823,0,-0.530124510327975,-0.548346221446991,0.0332447216398288
+3245,82943,446697.952,83043,446597.952,44,32,5.5,0.0034375,0.935375933995392,0.0347222222222222,13.4798499571218,0.000485081068472937,0,0,0,NA,NA,0,NA,NA,-0.556157728036245,-0.567542970180511,0.023925463930397
+3246,82943,446597.952,83043,446497.952,45,32,4.5,0.00409090909090909,1.0207703722026,0.0378787878787879,12.3900123263466,-0.00959935306498664,0,0,0,NA,NA,0,NA,NA,-0.536388762295246,-0.567810893058777,0.0509976487575828
+3247,82943,446497.952,83043,446397.952,46,32,14,0.00823529411764706,2.87768014583241,0.110849673202614,11.4037350102192,-0.00782414830828429,0.0025,0.25,1,0,NA,0.25,26.9258232116699,26.9258232116699,-0.501474601527055,-0.561606526374817,0.0821395197115186
+3248,82943,446397.952,83043,446297.952,47,32,8.25,0.01375,4.09543494525662,0.299382716049383,17.8987779556403,0.0044276547973368,0.005,0.5,2,0,1,0.25,0,0,-0.499950237572193,-0.555990695953369,0.0780017683202294
+3249,82943,446297.952,83043,446197.952,48,32,4.75,0.0158333333333333,5.36683895641438,0.274074074074074,28.5882440632765,-0.000722869381752389,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.515302032232285,-0.556677341461182,0.0594922121284712
+3250,82943,446197.952,83043,446097.952,49,32,15,0.0214285714285714,4.14149461769659,0.102869352869353,20.3933927148412,0.0052857603774828,0.0525,5.25,6,54.3978474434392,0.538258575197889,2,4.02055940173921,0,-0.568352922797203,-0.604754090309143,0.0499592231394324
+3251,82943,446097.952,83043,445997.952,50,32,9.5,0.0475,12.875803140079,0.298611111111111,10,0.013603863940225,0.155,15.5,3,83.6124278400385,0.824676747753671,10,9.7540091852988,0,-0.608504757285118,-0.626957893371582,0.0397837995937091
+3252,82943,445997.952,83043,445897.952,51,32,6.75,0.0135,3.55171091217306,0.240151515151515,17.6046652096173,-0.00933107905887027,0.0375,3.75,2,70.2677531769664,0.858323494687131,3.25,2.27614237467448,0,-0.356278388295323,-0.59340900182724,0.329931752506315
+3253,82943,445897.952,83043,445797.952,52,32,34.75,0.0695,11.33706689046,0.290627396840006,11,0.0205085550730837,0.145,14.5,9,68.7765493656093,0.590643274853801,6,6.20366277365849,0,0.632441154370705,0.135580211877823,0.716859461250603
+3254,82943,445797.952,83043,445697.952,53,32,74.25,0.37125,16.8845312869906,0.451295045045045,31.6227766016838,0.0338207970042549,0.375,37.5,3,94.6325751807191,0.802181818181818,34.25,0.333333333333333,0,1.36538574099541,1.18687295913696,0.248093575928523
+3255,82943,445697.952,83043,445597.952,54,32,28.25,0.0470833333333333,9.42531614112123,0.411441798941799,19.6193364723875,0.0290745548319956,0.2425,24.25,8,83.1745157703426,0.764804066613558,16.75,4.67186577787104,0,1.18390066425006,0.845840275287628,0.364336624966398
+3256,82943,445597.952,83043,445497.952,55,32,12.25,0.0175,5.66156976875921,0.276643990929705,16.0117199035705,0.0184329914208502,0.0825,8.25,5,67.7501691460274,0.596326571803411,2.75,11.1857982404304,0,0.841832841436068,0.556828379631042,0.386503757386505
+3257,82943,445497.952,83043,445397.952,56,32,78.5,0.3925,20.4883940992862,0.672366992399566,10,0.0405532941880665,0.3475,34.75,6,87.9030191116664,0.698313572872356,22.5,0.986122790000422,0,0.976342551410198,0.68351286649704,0.260335786412189
+3258,82943,445397.952,83043,445297.952,57,32,45,0.1125,14.147030228363,0.430341256602724,13.9528470752105,0.0480582604151277,0.425,42.5,4,92.9312405933969,0.738852618419225,23.75,1.77878554849064,0,0.986546263098717,0.592153191566467,0.308240635253682
+3259,82943,445297.952,83043,445197.952,58,32,27,0.03,6.82803683481507,0.406245461147422,10.5913861679144,0.0183740064168978,0.095,9.5,5,72.955827941381,0.631675874769797,5.5,4.53667219061601,0,0.437592421658337,0.144799947738647,0.403348112739221
+3260,82943,445197.952,83043,445097.952,59,32,42.25,0.0704166666666667,9.57234524333409,0.511094237303915,12.9044011451988,0.0237778094953742,0.1775,17.75,6,78.8907409052456,0.659574468085106,6.75,2.63934567948462,0,-0.117903443402611,-0.313751727342606,0.274531963885323
+3261,82943,445097.952,83043,444997.952,60,32,44.25,0.0885,11.9512405505073,0.38838615103293,10.7082039324994,0.0270083011146471,0.2275,22.75,7,84.3954388501458,0.672380039154581,15,2.30180891267546,0,-0.503412079066038,-0.74052494764328,0.233869838101318
+3262,82943,444997.952,83043,444897.952,61,32,41.5,0.051875,5.86111192534746,0.288063683912921,14.5844296819329,0.024095617117091,0.18,18,7,78.9641764493055,0.683118878432879,9.5,5.33728880352444,0,-0.906693205237389,-1.1603856086731,0.256258706354261
+3263,82943,444897.952,83043,444797.952,62,32,12.5,0.0104166666666667,2.89990381563891,0.239766081871345,14.8075613550906,0.0167870509959539,0.0875,8.75,7,62.7251810613812,0.622106754841757,2.75,8.42584462847029,0,-1.33395335823298,-1.58994746208191,0.27276110803424
+3264,82943,444797.952,83043,444697.952,63,32,21.25,0.0177083333333333,3.40358747467625,0.185433201058201,12.895697383508,0.0238764789127163,0.1575,15.75,5,78.4435786658399,0.708659293229026,8.25,4.75883444528731,0,-1.65665252010028,-1.80893933773041,0.188955502985913
+3265,82943,444697.952,83043,444597.952,64,32,27.5,0.0161764705882353,3.35922056862711,0.166911951660908,11.9977286638376,-0.0108770877833103,0.1,10,4,73.1517523685151,0.701492537313433,5,2.22855339050293,0,-1.88531971722841,-2.00558590888977,0.130650727233594
+3266,82943,444597.952,83043,444497.952,65,32,36.5,0.0405555555555556,9.58672812438154,0.413551921329699,10.1311488763888,-0.0223527388136426,0.055,5.5,3,67.1006856569149,0.719887955182073,2.75,4.61376432939009,0,-2.04593416055044,-2.0919291973114,0.0659913713657564
+3267,82943,444497.952,83043,444397.952,66,32,22,0.0366666666666667,9.82884375894131,0.352480689245395,15.0592231765546,0.00627488383761374,0.0975,9.75,1,88.4075627573592,0.965906669507778,9.75,2.87361712333484,0,-2.08337795734406,-2.10922527313232,0.0406062495694449
+3268,82943,444397.952,83043,444297.952,67,32,11.75,0.0235,5.26300122085242,0.262237237237237,21.5777320416261,0.00137654585706514,0.0775,7.75,3,76.3303769129123,0.804878048780488,5.5,2.54319818558231,0,-2.05062260478735,-2.10508441925049,0.0721706528493389
+3269,82943,444297.952,83043,444197.952,68,32,29.75,0.074375,9.22000801634572,0.344594594594595,16.25,-0.000483171648097596,0.0675,6.75,3,74.4361316875908,0.825425525282125,4.75,1.48148148148148,0,-2.00355226794879,-2.0777382850647,0.0931730845832036
+3270,82943,444197.952,83043,444097.952,69,32,7.75,0.0129166666666667,4.54677651102043,0.0944444444444444,20,-0.022118632578854,0,0,0,NA,NA,0,NA,NA,-1.93026701360941,-2.0278422832489,0.0872685702494239
+3271,82943,444097.952,83043,443997.952,70,32,15,0.01875,5.44841481182393,0.263071188071188,15.625,-0.0132621027863934,0.015,1.5,2,46.9371480234533,0.419869470630892,1,6.66666666666667,5,-1.89320835471153,-1.95633471012115,0.0704822178681928
+3272,82943,443997.952,83043,443897.952,71,32,23.5,0.0261111111111111,2.74464301589737,0.106040564373898,11.6666666666667,0.00753255893405623,0.125,12.5,2,87.573715374417,0.892436974789916,11.5,2.72426406860352,0,-2.03832034021616,-2.19368863105774,0.142276734419141
+3273,82943,443897.952,83043,443797.952,72,32,15.25,0.07625,9.21110550469172,0.478813559322034,80.6225774829855,-0.0208239185346974,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.2426406860352,0,-2.36536697546641,-2.52706551551819,0.244254190872481
+3274,82943,443797.952,83043,443697.952,73,32,75,0.375,18.8186201224445,0.545173961840628,10,0.0429410554474816,0.4125,41.25,4,91.1472404297779,0.804031354983203,23,1.24037133419152,0,-2.73458486795425,-2.88835740089417,0.175651054807782
+3275,82943,443697.952,83043,443597.952,74,32,99.25,0.9925,38.2180403562488,0.926952141057935,NA,0.0575101216965413,0.6225,62.25,3,94.3115978179129,0.772617457294716,37.5,0.0602409638554217,0,-2.97150776783625,-3.0495080947876,0.120785416602858
+3276,82943,443597.952,83043,443497.952,75,32,90.5,0.905,37.5609023831819,0.870626151012891,NA,0.0928385490340588,0.86,86,1,99.5877487787664,0.890109890109891,86,0.448087603546852,0,-3.17030800879002,-3.2503969669342,0.117967629456795
+3277,82943,443497.952,83043,443397.952,76,32,43.25,0.0617857142857143,9.35351605773741,0.312014986873302,13.0257628410713,0.038125068573122,0.4325,43.25,3,95.3548816676221,0.756949718973112,39,2.22960490849666,0,-3.34722646077474,-3.41549825668335,0.108986627452322
+3278,82943,443397.952,83043,443297.952,77,32,20.25,0.03375,5.19368353080164,0.233862433862434,11.1803398874989,0.0404830027756543,0.375,37.5,1,96.668457042866,0.947636363636364,37.5,4.87742216746012,0,-3.43895284334819,-3.47024416923523,0.0638898869294674
+3279,82943,443297.952,83043,443197.952,78,32,36,0.18,18.8613702771228,0.612345679012346,42.7200187265877,0.0629916583639715,0.49,49,2,97.3675356121334,0.929971988795518,48.75,1.62571229740065,0,-3.4220123142004,-3.45505857467651,0.0523723003414485
+3280,82943,443197.952,83043,443097.952,79,32,38.75,0.19375,23.5442333087195,0.719517543859649,42.7200187265877,0.0610748248324489,0.47,47,3,94.0077641979774,0.826501843417914,27,3.99000873971493,0,-3.40636378526688,-3.46970844268799,0.0682737269745519
+3281,82943,443097.952,83043,442997.952,80,32,23.25,0.2325,27.0165855101695,0.691756272401434,NA,0.0780589212926498,0.5675,56.75,2,97.9777921874228,0.907077166946802,56.5,25.5982904308168,0,-3.48442484438419,-3.54766130447388,0.0659199661159151
+3282,82943,442997.952,83043,442897.952,81,32,2.5,0.025,8.08668742011156,0.4,NA,0.234340710723773,0.73,73,1,99.1030975159931,0.979761181946974,73,37.2935813420439,0,-3.53580083449682,-3.5521981716156,0.0229431305578457
+3283,82943,442897.952,83043,442797.952,82,32,0.75,0.0025,0,0,20.6155281280883,0.0248875820224021,0.305,30.5,1,95.7330793639454,0.947914971190468,30.5,32.3946275085699,14.1421356201172,-3.49909192323685,-3.52999472618103,0.0405650944309424
+3284,82943,442797.952,83043,442697.952,83,32,1.25,0.003125,0.625,0.0416666666666667,36.9848441442021,-0.0707880000193836,0,0,0,NA,NA,0,NA,NA,-3.46740106741587,-3.52103877067566,0.057536547862937
+3285,82943,442697.952,83043,442597.952,84,32,0,NA,NA,NA,NA,-0.0815389007609338,0,0,0,NA,NA,0,NA,NA,-3.50234751403332,-3.57030987739563,0.0669695749459521
+3286,82943,442597.952,83043,442497.952,85,32,0,NA,NA,NA,NA,-0.115923771848902,0,0,0,NA,NA,0,NA,NA,-3.54275268316269,-3.57577800750732,0.036142357552099
+3287,82943,442497.952,83043,442397.952,86,32,0,NA,NA,NA,NA,-0.113757576346397,0,0,0,NA,NA,0,NA,NA,-3.52006351947784,-3.5491247177124,0.0361283672007059
+3288,82943,442397.952,83043,442297.952,87,32,0.25,0.0025,0,0,NA,-0.00301452223648084,0.155,15.5,3,85.1795401901869,0.813719044488275,9.5,76.600501829578,53.1507301330566,-3.42736969391505,-3.46965384483337,0.0655375546920382
+3289,82943,442297.952,83043,442197.952,88,32,0,NA,NA,NA,NA,0.0861546053981146,0.7775,77.75,2,98.4114978520983,0.892625685469954,75.25,74.7089396657668,35,-3.30626444518566,-3.40032076835632,0.0889171089136485
+3290,82943,442197.952,83043,442097.952,89,32,0.75,0.0025,0,0,25.4950975679639,0.0434977376053575,0.41,41,1,97.0434862163892,0.977550791334605,41,23.5137122782265,0,-3.16657660404841,-3.24094796180725,0.0770555582426554
+3291,82943,442097.952,83043,441997.952,90,32,0.5,0.005,2.5,0.166666666666667,NA,-0.0535863341402728,0,0,0,NA,NA,0,NA,NA,-3.11017956336339,-3.15127396583557,0.0391300859523355
+3292,82943,441997.952,83043,441897.952,91,32,0,NA,NA,NA,NA,-0.0452439928520471,0,0,0,NA,NA,0,NA,NA,-3.21127967536449,-3.28423428535461,0.0887996054618333
+3293,82943,441897.952,83043,441797.952,92,32,1,0.00333333333333333,0.833333333333333,0.0555555555555556,35.9797921922694,-0.0428015374531969,0,0,0,NA,NA,0,NA,NA,-3.36071598529816,-3.47416353225708,0.0941948447838407
+3294,82943,441797.952,83043,441697.952,93,32,0,NA,NA,NA,NA,-0.037263645042658,0,0,0,NA,NA,0,NA,NA,-3.40669441223145,-3.51514530181885,0.121452097953748
+3295,82943,441697.952,83043,441597.952,94,32,0.5,0.0025,0,0,25,-0.00164583103545738,0.06,6,3,73.2134712978121,0.776035834266517,4.75,27.585971514384,7.07106781005859,-3.3969331185023,-3.47657299041748,0.0934538673860377
+3296,82943,441597.952,83043,441497.952,95,32,0,NA,NA,NA,NA,0.0507299083494581,0.435,43.5,3,95.2809506049276,0.80701899484465,39,80.372029227772,22.3606796264648,-3.43497388064861,-3.46384572982788,0.0430505800758849
+3297,82943,441497.952,83043,441397.952,96,32,0,NA,NA,NA,NA,0.071849364163354,0.92,92,1,99.7759364721822,0.802725968436155,92,159.154061960137,96.1769180297852,-3.4856836994489,-3.5366895198822,0.0493908692998821
+3298,82943,441397.952,83043,441297.952,97,32,0,NA,NA,NA,NA,0.0669747784599895,0.74,74,1,99.1448611187463,0.868802651567463,74,188.001188535948,155,-3.49398168921471,-3.55552339553833,0.0724900027824511
+3299,82943,441297.952,83043,441197.952,98,32,0,NA,NA,NA,NA,0.0264420431935321,0.3025,30.25,2,94.4574631811279,0.876181166503747,29.25,199.125995226143,164.468841552734,-3.3822900056839,-3.49211311340332,0.138479526622182
+3300,82943,441197.952,83043,441097.952,99,32,0,NA,NA,NA,NA,-0.00811879929375209,0.0675,6.75,1,85.0052537126447,0.850364735956107,6.75,143.326833089193,131.52946472168,-3.12141667306423,-3.35268330574036,0.22684072684487
+3301,83043,451097.952,83143,450997.952,0,33,15.5,0.0221428571428571,6.0562541349414,0.231193926846101,15.6440637423124,-0.0533954017580936,0.025,2.5,2,61.4794562732788,0.763313609467456,2,4.42409591674805,0,1.02567213111454,0.949687778949738,0.105750100440451
+3302,83043,450997.952,83143,450897.952,1,33,36.5,0.09125,14.2510435398749,0.517789502164502,12.0710678118655,0.000797369520078064,0.255,25.5,3,89.0236060362446,0.853302526863975,19.5,4.94871743520101,0,1.13701818386714,1.08037436008453,0.124461914900728
+3303,83043,450897.952,83143,450797.952,2,33,7.5,0.015,3.95197102075169,0.241919191919192,19.0376291300661,0.035648875635693,0.2525,25.25,2,94.0649496080627,0.933479923871468,25,7.52846094641355,0,1.40183798472087,1.19856548309326,0.38854228234014
+3304,83043,450797.952,83143,450697.952,3,33,0,NA,NA,NA,NA,-0.026372133066543,0.0125,1.25,1,58.1880425789518,1,1.25,35.921891784668,31.6227760314941,1.68787964185079,1.38373398780823,0.369247212880499
+3305,83043,450697.952,83143,450597.952,4,33,5,0.00714285714285714,2.36105329122903,0.18968253968254,22.480097110714,0.00874801510099132,0.0725,7.25,3,79.499561573421,0.816482193037793,6.5,8.6143899457208,0,1.68497387568156,1.21474587917328,0.321337146562301
+3306,83043,450597.952,83143,450497.952,5,33,10.75,0.0179166666666667,6.74669915426265,0.251142568850902,15.8894812796807,0.00557664109477173,0.1475,14.75,3,87.2451398767188,0.746995572422517,12.25,7.95333516395698,0,2.66640004515648,1.43488132953644,1.23332469481985
+3307,83043,450497.952,83143,450397.952,6,33,11.25,0.0375,14.8602541645274,0.340264716126785,39.0273464416646,0.0125002757927541,0.2675,26.75,5,86.1035346690665,0.837309236237599,15.75,9.36184654948867,0,3.81773323482937,3.3906991481781,0.712686848633211
+3308,83043,450397.952,83143,450297.952,7,33,36.5,0.1825,26.2859085799186,0.716020671834625,29.1547594742265,0.0516223446437652,0.5825,58.25,3,94.4103996881707,0.785257072062771,38.25,8.60081372240582,0,4.283726811409,3.27081346511841,2.79737780675208
+3309,83043,450297.952,83143,450197.952,8,33,96,0.96,37.7501639500547,0.913194444444445,NA,0.0682574423402548,0.9075,90.75,1,99.7382749359844,0.732483575278335,90.75,0.212316991212283,0,10.7895340389676,7.20680141448975,4.91022653448097
+3310,83043,450197.952,83143,450097.952,9,33,97.75,0.9775,38.3045956091903,0.916453537936914,NA,0.0563325972645543,0.7325,73.25,1,99.1136185490844,0.782892616652815,73.25,0.102389078498294,0,8.28045331107246,5.26007175445557,2.94870432170265
+3311,83043,450097.952,83143,449997.952,10,33,60.25,0.30125,23.1940201724867,0.660968660968661,10,0.0303629386216926,0.43,43,2,96.1465063299203,0.839504123083735,40.75,2.05131151509839,0,4.68058745066325,4.08133888244629,1.43512227459557
+3312,83043,449997.952,83143,449897.952,11,33,96,0.96,37.9745341093232,0.907986111111111,NA,0.0670931429378106,0.5925,59.25,3,96.7433877423522,0.739644642634575,53.75,0.147679324894515,0,5.73233673307631,4.14613437652588,2.37218525218919
+3313,83043,449897.952,83143,449797.952,12,33,94.75,0.9475,37.9274265632963,0.900615655233069,NA,0.0616322440770455,0.755,75.5,2,99.0416021495957,0.705892901976256,75.25,0.271758502682313,0,7.53803926706314,3.2338387966156,4.91075741832635
+3314,83043,449797.952,83143,449697.952,13,33,73.75,0.7375,35.4095833675043,0.887005649717514,NA,0.07979835344202,0.8475,84.75,2,99.3374766759094,0.805631569525076,84.5,3.09601542380004,0,4.02103699578179,3.05703067779541,1.99408798067568
+3315,83043,449697.952,83143,449597.952,14,33,31,0.0516666666666667,8.71937095098799,0.433035312640576,17.0275769453029,0.0283024555313023,0.2925,29.25,3,92.6219276813291,0.77998533235549,25.5,4.22755952166696,0,1.35063718259335,0.697017073631287,1.1669326303282
+3316,83043,449597.952,83143,449497.952,15,33,24,0.12,18.659022376389,0.605241605241605,14.142135623731,-0.00132092594794813,0.05,5,4,61.8094949037945,0.626485568760611,2.25,1.5,0,0.546792003843519,0.330303966999054,0.324751294280073
+3317,83043,449497.952,83143,449397.952,16,33,37.75,0.0539285714285714,6.82584157982028,0.28517316017316,12.3302896606831,0.0282658286833976,0.29,29,2,92.4857715015804,0.852448021462106,21.5,1.303562098536,0,0.391119572023551,0.222750723361969,0.266342540341167
+3318,83043,449397.952,83143,449297.952,17,33,73.5,0.3675,21.3461800011553,0.746637644227366,28.2842712474619,0.0142923804384554,0.41,41,1,97.0434862163892,0.887753956673027,41,0.609756097560976,0,0.332825991842482,0.1067825704813,0.308358529728416
+3319,83043,449297.952,83143,449197.952,18,33,27,0.054,10.6074736464551,0.446612466124661,15.9599420993373,0.00279663182103832,0.175,17.5,3,83.9822889738035,0.78319783197832,10.25,11.0061094011579,0,-0.0893968703846137,-0.419538736343384,0.436169020729634
+3320,83043,449197.952,83143,449097.952,19,33,1,0.00333333333333333,1.17851130197758,0.0277777777777778,23.1988441390456,0.118263743613279,0.635,63.5,2,98.3821185476916,0.902152641878669,63.25,45.3756380907194,0,-0.74481901857588,-0.924343824386597,0.271648688918304
+3321,83043,449097.952,83143,448997.952,20,33,0.25,0.0025,0,0,NA,0.207634123354219,0.9325,93.25,1,99.8128381781211,0.979045523599978,93.25,52.9725448311813,7.07106781005859,-0.923464039961497,-1.00013518333435,0.138515538056942
+3322,83043,448997.952,83143,448897.952,21,33,3,0.0075,4.70383986596595,0.131944444444444,18.4823639537037,0.0763757842336781,0.4325,43.25,3,91.6683388481942,0.812188419206496,23,33.1364731099564,5,-0.753006483117739,-0.920432090759277,0.170367384239832
+3323,83043,448897.952,83143,448797.952,22,33,4.25,0.02125,6.20020672608664,0.365079365079365,14.142135623731,0.0850742764193274,0.4725,47.25,2,96.1072775086666,0.886255924170616,44.25,42.8277834029425,15.8113880157471,-0.545899636215634,-0.635691702365875,0.105755823802195
+3324,83043,448797.952,83143,448697.952,23,33,7.25,0.0090625,3.35961020838236,0.147858796296296,18.0925763213455,0.00277283933850413,0.06,6,4,66.0222577715978,0.636058230683091,3,21.0069043636322,0,-0.480965050558249,-0.509744167327881,0.0603014964690563
+3325,83043,448697.952,83143,448597.952,24,33,10.5,0.00583333333333333,2.1637261269382,0.0836272780717225,12.9371691031329,-0.0104451378621161,0,0,0,NA,NA,0,NA,NA,-0.601935317118963,-0.732654929161072,0.160644311547037
+3326,83043,448597.952,83143,448497.952,25,33,7.25,0.0145,4.26845346699344,0.175925925925926,22.4721359549996,0.00264769580707252,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,21.6064655597393,0,-0.697715227802595,-0.793195784091949,0.165835823229979
+3327,83043,448497.952,83143,448397.952,26,33,9.5,0.02375,7.60454829376522,0.332125603864734,26.9188494866141,0.00014461835140537,0.085,8.5,3,76.7408996024947,0.765807962529274,5.25,8.68432039373061,0,-0.591556214623981,-0.744306743144989,0.214700999915118
+3328,83043,448397.952,83143,448297.952,27,33,14.25,0.00890625,3.58985226259032,0.14469696969697,11.8442778872617,0.0181992136278677,0.0675,6.75,4,68.3567924771267,0.625911839890268,2.75,4.71827937938549,0,-0.484617692728837,-0.608556687831879,0.154400708990546
+3329,83043,448297.952,83143,448197.952,28,33,9.75,0.0195,4.66045639441831,0.251697530864197,25.8839357053293,-0.0132809375461102,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0,-0.569558223088582,-0.635364651679993,0.0938451464264487
+3330,83043,448197.952,83143,448097.952,29,33,23.5,0.0235,5.5827135897222,0.291065501591817,11.9251931326045,-0.0028768742106331,0.025,2.5,2,61.4794562732788,0.763313609467456,2,11.3936979293823,0,-0.647349526484807,-0.718193054199219,0.0924144884729408
+3331,83043,448097.952,83143,447997.952,30,33,42.75,0.106875,8.33344722557319,0.235279441117764,20.75693909433,0.0060245605099044,0.1025,10.25,2,82.0155287810807,0.838520850995115,6,4.33014558001262,0,-0.604912592305077,-0.709960758686066,0.162949456043079
+3332,83043,447997.952,83143,447897.952,31,33,61.5,0.3075,18.503039122089,0.649239280774551,49.2442890089805,0.00679159747214726,0.095,9.5,3,76.6888741244984,0.719372095062703,4.25,1.18421052631579,0,-0.475870341062546,-0.621376991271973,0.215175389981959
+3333,83043,447897.952,83143,447797.952,32,33,51.25,0.0569444444444444,7.86118357228597,0.327134293319919,11.7568209223158,-0.00443062639067648,0.085,8.5,3,77.0220175360927,0.746291959406714,6,1.44535693000345,0,-0.417062342166901,-0.517987132072449,0.133338020920599
+3334,83043,447797.952,83143,447697.952,33,33,48.25,0.0965,12.1663755309997,0.307706093189964,14,0.0101691861598374,0.15,15,6,79.1718426251652,0.739819004524887,9,1.58333333333333,0,-0.385802070299784,-0.45848360657692,0.102531206397625
+3335,83043,447697.952,83143,447597.952,34,33,36.75,0.0735,10.9463266395859,0.414363143631436,15,0.0092719649249193,0.08,8,2,81.1969936923135,0.874581939799331,6.75,0.9375,0,-0.180613790017863,-0.299765825271606,0.175305749826622
+3336,83043,447597.952,83143,447497.952,35,33,54.25,0.135625,15.3780900676512,0.466833774008046,11.4528470752105,0.0120062945505379,0.04,4,3,64.2053482637619,0.652777777777778,2.75,0.9375,0,0.0950712562642164,-0.132426425814629,0.319993953470287
+3337,83043,447497.952,83143,447397.952,36,33,40.25,0.0575,8.07347432624755,0.366310621745404,13.9438937594899,0.00191587791399797,0.0025,0.25,1,0,NA,0.25,5,5,0.253765509958612,-0.0263290666043758,0.31933851750737
+3338,83043,447397.952,83143,447297.952,37,33,56.5,0.188333333333333,13.3521826010046,0.336363636363636,14.120226591666,0.0254765430030352,0.2125,21.25,4,83.2185152913492,0.747713654998423,10.5,2.12182751823874,0,0.291710298922327,0.135717824101448,0.190413225892569
+3339,83043,447297.952,83143,447197.952,38,33,33,0.066,6.85640700868344,0.116145833333333,14.4721359549996,0.0242762540055082,0.235,23.5,2,93.5390541265441,0.844382197323374,23,6.62156376940139,0,0.0113312541895236,-0.113839477300644,0.222510132026553
+3340,83043,447197.952,83143,447097.952,39,33,19,0.0172727272727273,5.52562291666636,0.250974025974026,13.0933901307189,0.0180217000877747,0.0675,6.75,2,81.5222116982841,0.800486314608143,6.25,3.23679789790401,0,-0.16704475796885,-0.212289661169052,0.10602247976325
+3341,83043,447097.952,83143,446997.952,40,33,33.5,0.041875,6.27216456600463,0.281111506805951,14.4194173824159,0.0238207301109833,0.215,21.5,2,92.2708416439434,0.85013113525665,20.5,3.15453374108603,0,-0.30131200949351,-0.383957743644714,0.0813720365373345
+3342,83043,446997.952,83143,446897.952,41,33,19,0.0316666666666667,5.97837620319544,0.20501922687715,14.5523672832618,0.0114858097710749,0.0775,7.75,2,78.5945182788431,0.739837398373984,4,0.550679606776084,0,-0.375433084037569,-0.419044971466064,0.0616683999205621
+3343,83043,446897.952,83143,446797.952,42,33,30.5,0.0508333333333333,4.8291855946068,0.208250661375661,17.8042151516598,0.0294310554612821,0.2425,24.25,2,90.6273004428476,0.863434619324001,17,3.49697946764759,0,-0.422083194057147,-0.459542453289032,0.0415107048334499
+3344,83043,446797.952,83143,446697.952,43,33,63.5,0.211666666666667,11.8217049710083,0.339973439575033,10.3934466291663,0.0325299072629059,0.33,33,2,93.8649610773668,0.845172477859665,29.75,2.80930595686941,0,-0.465349988804923,-0.513044118881226,0.0762618195567924
+3345,83043,446697.952,83143,446597.952,44,33,15.75,0.0525,5.82608122446298,0.249544626593807,32.9017777284494,0.0135087085620762,0.115,11.5,3,80.9709920162463,0.811676082862524,5.75,5.45708606554114,0,-0.511124849319458,-0.552706003189087,0.0714373591517806
+3346,83043,446597.952,83143,446497.952,45,33,4.75,0.00791666666666667,2.97177513206656,0.0456349206349206,13.4023021085818,-0.00242745498564545,0.0325,3.25,3,55.8088816938752,0.712891185759403,1.5,10.8454115940974,0,-0.555418387055397,-0.572288811206818,0.0346615567901055
+3347,83043,446497.952,83143,446397.952,46,33,17,0.0242857142857143,6.74859438142046,0.304039150813344,10.3372399678568,-0.0126793067021501,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,3.33333333333333,0,-0.576142615742154,-0.580679416656494,0.0163318919370571
+3348,83043,446397.952,83143,446297.952,47,33,9,0.045,12.1858851693654,0.245238095238095,29.1547594742265,0.00286466053024924,0.0075,0.75,3,0,1,0.25,3.33333333333333,0,-0.579832355181376,-0.58971893787384,0.0161303719355028
+3349,83043,446297.952,83143,446197.952,48,33,0,NA,NA,NA,NA,0.00759924875297656,0.0075,0.75,1,44.4894453484604,1,0.75,31.3013127644857,26.9258232116699,-0.576127601994408,-0.584954082965851,0.0190075953326691
+3350,83043,446197.952,83143,446097.952,49,33,14.25,0.0101785714285714,3.27134316637921,0.148720014321518,13.329299804198,-0.0042851948756288,0,0,0,NA,NA,0,NA,NA,-0.590811197956403,-0.602122962474823,0.0126216697460922
+3351,83043,446097.952,83143,445997.952,50,33,14.5,0.0145,5.54288840689559,0.255291005291005,11.9352407963339,-0.00185355882091244,0,0,0,NA,NA,0,NA,NA,-0.566654801368713,-0.6006960272789,0.0640210116703934
+3352,83043,445997.952,83143,445897.952,51,33,28.25,0.0565,12.2245275822986,0.301077694235589,11.1622776601684,0.000348922002945073,0.09,9,1,87.719298245614,0.908424908424908,9,4.37295574612088,0,-0.27826468871596,-0.485581398010254,0.304787461233375
+3353,83043,445897.952,83143,445797.952,52,33,44,0.11,11.9243555076093,0.452777777777778,21.1243686707646,0.00454619255098805,0.0475,4.75,4,59.4625064994853,0.637976287446828,2,3.87230963456003,0,0.449112951755524,0.126114949584007,0.583442201285846
+3354,83043,445797.952,83143,445697.952,53,33,49,0.163333333333333,16.2531660337493,0.449506172839506,12.4535599249993,0.00171642989713291,0.0825,8.25,5,73.7512481780211,0.677061257442729,5.5,3.21858192212654,0,1.01978246619304,0.448262423276901,0.639885980809711
+3355,83043,445697.952,83143,445597.952,54,33,24,0.024,4.84005547450919,0.28593137254902,14.5,0.0176568295432662,0.1275,12.75,6,75.4549601124302,0.631129993742384,7,5.78358055563534,0,1.22981990708245,0.865754127502441,0.451418706459587
+3356,83043,445597.952,83143,445497.952,55,33,34.75,0.0496428571428571,7.29308055145023,0.247852046017184,14.3448303787844,0.0373372349817146,0.32,32,5,85.7635758230978,0.753850037869225,16.25,5.64927572011948,0,1.10586335923937,0.912768483161926,0.291153072485373
+3357,83043,445497.952,83143,445397.952,56,33,50.25,0.1005,9.44979020500601,0.335,11.4721359549996,0.0194388000861181,0.215,21.5,3,88.044363975028,0.85013113525665,11.5,1.2421545427899,0,0.995257203777631,0.858876466751099,0.174005750291079
+3358,83043,445397.952,83143,445297.952,57,33,51.5,0.2575,19.2421341498215,0.606666666666667,25,0.0315320958433585,0.2425,24.25,2,94.1765015107588,0.711695307461781,24,2.08653137364338,0,0.849759923087226,0.707210123538971,0.210264792999794
+3359,83043,445297.952,83143,445197.952,58,33,51,0.1275,11.6655416522557,0.335610476884463,10.5901699437495,0.0237009194354505,0.185,18.5,6,79.356164876317,0.631901840490797,6.75,1.82868210045067,0,0.434847270449003,0.131446987390518,0.329509232303001
+3360,83043,445197.952,83143,445097.952,59,33,48,0.096,16.4637644308532,0.605370726171616,10,0.0395573911833526,0.39,39,4,95.4442363947377,0.691551950648312,37,2.20987570591462,0,-0.146328639756474,-0.388912588357925,0.325088203313984
+3361,83043,445097.952,83143,444997.952,60,33,55.25,0.184166666666667,14.7591284900362,0.488301294833958,11.1803398874989,0.0501260287679906,0.4675,46.75,5,93.7796628309787,0.788325327688675,39,0.728412852567785,0,-0.648091887434324,-0.870933771133423,0.286677200343223
+3362,83043,444997.952,83143,444897.952,61,33,34,0.068,10.4143689964462,0.541757443718228,10,0.0288189778176638,0.2275,22.75,3,89.1666750812105,0.840185384953454,14,2.59253791138366,0,-1.03229775693682,-1.20580244064331,0.292790477604193
+3363,83043,444897.952,83143,444797.952,62,33,24,0.0218181818181818,5.59317514202118,0.389829089565585,14.334832298748,0.0181327940952542,0.155,15.5,5,78.8748369233497,0.726057418365111,7.25,6.31600392249323,0,-1.51647975047429,-1.68894708156586,0.229540184019703
+3364,83043,444797.952,83143,444697.952,63,33,44.75,0.0639285714285714,6.9717512061254,0.258332014976533,13.6269194503311,0.0379567260151816,0.335,33.5,6,88.2478279213646,0.765807962529274,23,1.85319482034712,0,-1.82018763489193,-1.90236401557922,0.133320537174519
+3365,83043,444697.952,83143,444597.952,64,33,17.25,0.0115,4.32926394847396,0.193585858585859,12.5237184895308,-0.0273586821177742,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,3.82464252818715,0,-1.98457322518031,-2.0492787361145,0.0844611172617174
+3366,83043,444597.952,83143,444497.952,65,33,30.75,0.0615,8.88160631202058,0.403425925925926,16.8704815926677,-0.00678641656802483,0.0825,8.25,3,74.1404419777226,0.757795943082047,4,2.1309841040409,0,-2.08439122305976,-2.1051025390625,0.0365668209511568
+3367,83043,444497.952,83143,444397.952,66,33,33.5,0.0478571428571429,10.9389184839948,0.341419023749851,11.3520873049944,0.00395599320945621,0.07,7,3,71.7128598992375,0.73715651135006,3,2.67857142857143,0,-2.11485176616245,-2.11999988555908,0.011519986151296
+3368,83043,444397.952,83143,444297.952,67,33,6,0.02,5.98500637673934,0.305555555555556,41.446603773522,-0.00968410526493244,0.0125,1.25,1,58.1880425789518,1,1.25,4,0,-2.1014643907547,-2.11345911026001,0.0200914950975914
+3369,83043,444297.952,83143,444197.952,68,33,34.25,0.0685,7.82748834931916,0.31,11.4721359549996,0.000507783166031004,0.155,15.5,4,81.9623131782425,0.791803637957484,9.5,4.729874303264,0,-2.06482116381327,-2.08492040634155,0.0342683810756069
+3370,83043,444197.952,83143,444097.952,69,33,16,0.0266666666666667,5.81055731875317,0.303877314814815,17.5518814569155,-0.0222683822534327,0,0,0,NA,NA,0,NA,NA,-2.00486731529236,-2.03588533401489,0.0376217839297098
+3371,83043,444097.952,83143,443997.952,70,33,20,0.0333333333333333,6.89011293812409,0.321527777777778,15.4556452758176,0.0110640940261601,0.135,13.5,3,83.5405236796008,0.763813785816396,8,5.89557351006402,0,-1.97547672854529,-1.99799251556396,0.0401148916137187
+3372,83043,443997.952,83143,443897.952,71,33,15.5,0.019375,2.5838964357771,0.0914351851851852,17.717122592145,0.00732872382917776,0.1075,10.75,4,77.1851106414807,0.782135076252723,6.25,4.90667232247286,0,-2.12702618042628,-2.27254748344421,0.152291679656184
+3373,83043,443897.952,83143,443797.952,72,33,56.75,0.141875,12.3189802839463,0.548016934046346,11.3306188778075,-0.0480873272268218,0.05,5,3,70.1193672488412,0.796264855687606,4,2.95710678100586,0,-2.48576908641391,-2.62476468086243,0.226565510965143
+3374,83043,443797.952,83143,443697.952,73,33,93.5,0.935,37.355589496891,0.898395721925134,NA,0.0797278814009769,0.845,84.5,1,99.5375969134692,0.747589479529507,84.5,0.22189349112426,0,-2.79341950019201,-2.93725919723511,0.158823009770731
+3375,83043,443697.952,83143,443597.952,74,33,97.75,0.9775,37.9609376602872,0.930946291560102,NA,0.0668155095446855,0.875,87.5,1,99.6366054334226,0.625377643504532,87.5,0.0975489589146205,0,-2.94278115696377,-3.01541519165039,0.101607986838876
+3376,83043,443597.952,83143,443497.952,75,33,96.75,0.9675,37.7400996451549,0.914298018949182,NA,0.125592651766201,0.89,89,1,99.684221684177,0.959536012948476,89,0.140449438202247,0,-3.12797103325526,-3.26216411590576,0.137758421055192
+3377,83043,443497.952,83143,443397.952,76,33,13.25,0.033125,10.6765034167137,0.265857100415924,10,0.0460000557501917,0.4775,47.75,3,96.3424818230761,0.940529289325008,46.75,25.6904555914914,0,-3.36585953500536,-3.42374515533447,0.101585924859555
+3378,83043,443397.952,83143,443297.952,77,33,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,20.6155281280883,0.0116999385266604,0.0775,7.75,4,79.40591667616,0.718157181571816,6.75,16.6271349999212,5,-3.43246708975898,-3.45041346549988,0.0364391784303124
+3379,83043,443297.952,83143,443197.952,78,33,0.5,0.005,2.5,0.166666666666667,NA,-0.0186006972487667,0.09,9,3,83.6252713197817,0.853479853479854,8.5,50.0514154434204,7.07106781005859,-3.34460477034251,-3.41012263298035,0.0624349369191036
+3380,83043,443197.952,83143,443097.952,79,33,19.75,0.0658333333333333,8.18792099763851,0.29093567251462,47.2579920743639,0.0161758030699912,0.2925,29.25,3,91.8209424097834,0.866657777185146,25,4.67186337658483,0,-3.31874585151672,-3.34245681762695,0.047298088668892
+3381,83043,443097.952,83143,442997.952,80,33,33.5,0.1675,17.7750879551471,0.528552971576227,42.7200187265877,0.0687823402879621,0.555,55.5,2,96.5396256587707,0.891440047766379,50.25,4.04201992997178,0,-3.41791621843974,-3.47793459892273,0.0615242587986178
+3382,83043,442997.952,83143,442897.952,81,33,41.5,0.2075,25.0469332911614,0.715277777777778,41.2310562561766,0.0620789866083942,0.4725,47.25,4,92.5827074299081,0.794177386594448,30.5,2.97058645379606,0,-3.49170229170057,-3.52286243438721,0.0423448295463955
+3383,83043,442897.952,83143,442797.952,82,33,24,0.24,28.4773030615866,0.713541666666667,NA,0.0225677326581626,0.225,22.5,3,91.0573869203909,0.807653776798237,20.25,6.56999469333225,0,-3.49746352434158,-3.52633166313171,0.0465702783302567
+3384,83043,442797.952,83143,442697.952,83,33,11.25,0.0375,6.44896465451435,0.273809523809524,26.4366405951654,-0.0399419865960954,0.1475,14.75,1,91.5590620020185,0.861997584957737,14.75,5.2766570398363,0,-3.50548471344842,-3.53549575805664,0.0469145965706127
+3385,83043,442697.952,83143,442597.952,84,33,0,NA,NA,NA,NA,-0.0755556159751723,0,0,0,NA,NA,0,NA,NA,-3.56091777483622,-3.59046530723572,0.0433739855294677
+3386,83043,442597.952,83143,442497.952,85,33,0,NA,NA,NA,NA,-0.11937598497243,0,0,0,NA,NA,0,NA,NA,-3.57853780852424,-3.59044003486633,0.022125321335848
+3387,83043,442497.952,83143,442397.952,86,33,0.5,0.0025,0,0,79.0569415042095,-0.123546979848325,0,0,0,NA,NA,0,NA,NA,-3.52213428417842,-3.55557012557983,0.0446528115961901
+3388,83043,442397.952,83143,442297.952,87,33,0,NA,NA,NA,NA,-0.00284633619208307,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,102.794760567801,76.1577301025391,-3.42940637800429,-3.46996164321899,0.068358752110177
+3389,83043,442297.952,83143,442197.952,88,33,0,NA,NA,NA,NA,0.0668036817591201,0.605,60.5,1,98.496585825966,0.977596056906015,60.5,90.0072810748392,41.2310562133789,-3.31000818808874,-3.39563369750977,0.0924463451246904
+3390,83043,442197.952,83143,442097.952,89,33,0,NA,NA,NA,NA,0.0105573706226278,0.24,24,1,94.5197818298983,0.954100367197062,24,60.5602171421051,14.1421356201172,-3.18404059939914,-3.24383544921875,0.0728891737479305
+3391,83043,442097.952,83143,441997.952,90,33,0,NA,NA,NA,NA,-0.0540284543903545,0,0,0,NA,NA,0,NA,NA,-3.14771416452196,-3.15832304954529,0.0305702184921084
+3392,83043,441997.952,83143,441897.952,91,33,0,NA,NA,NA,NA,-0.0184168886396947,0,0,0,NA,NA,0,NA,NA,-3.23131841421127,-3.28937792778015,0.0607518112326929
+3393,83043,441897.952,83143,441797.952,92,33,2.5,0.00625,3.03045763365663,0.0357142857142857,20.3077640640442,-0.0237580870877719,0,0,0,NA,NA,0,NA,NA,-3.29306226306491,-3.31789207458496,0.0491315278535995
+3394,83043,441797.952,83143,441697.952,93,33,1.25,0.00625,4.12478955692153,0.0972222222222222,35.3553390593274,0.00180061305088202,0,0,0,NA,NA,0,NA,NA,-3.2416092356046,-3.30472588539124,0.0784349682596397
+3395,83043,441697.952,83143,441597.952,94,33,0,NA,NA,NA,NA,-0.0174365547683919,0,0,0,NA,NA,0,NA,NA,-3.21658121214973,-3.29282307624817,0.101156976951943
+3396,83043,441597.952,83143,441497.952,95,33,0,NA,NA,NA,NA,0.017462645571577,0.04,4,3,65.4532751543838,0.696180555555556,3,160.624940872192,144.222045898438,-3.34234603246053,-3.44388270378113,0.123110250556404
+3397,83043,441497.952,83143,441397.952,96,33,0,NA,NA,NA,NA,0.0376536946160786,0.5775,57.75,1,98.3373505793708,0.950575927731023,57.75,150.418594294296,90.1387786865234,-3.49752595689562,-3.54130697250366,0.0781067080767318
+3398,83043,441397.952,83143,441297.952,97,33,0,NA,NA,NA,NA,0.0784951993543655,0.8975,89.75,1,99.7075809055868,0.870875179340029,89.75,110.398424844556,55,-3.56820724407832,-3.58831906318665,0.0339979693095223
+3399,83043,441297.952,83143,441197.952,98,33,0,NA,NA,NA,NA,0.0578457260271534,0.6275,62.75,2,98.3088985310162,0.800085677566757,62.25,153.05497000037,89.0224609375,-3.51775198512607,-3.57405853271484,0.0890209050286027
+3400,83043,441197.952,83143,441097.952,99,33,0,NA,NA,NA,NA,0.021598182869941,0.1725,17.25,2,88.0431106910161,0.860178272702305,12.75,159.084563766701,105,-3.30690066019694,-3.46128797531128,0.171959386020548
+3401,83143,451097.952,83243,450997.952,0,34,1.25,0.00416666666666667,1.09006472543938,0.0925925925925926,42.5402911604334,-0.00180608580712942,0.0275,2.75,2,64.8325839433609,0.657240788346187,2.25,33.1978773637251,18.0277557373047,0.991154061423408,0.938929259777069,0.106287148737043
+3402,83143,450997.952,83243,450897.952,1,34,18.5,0.0168181818181818,4.12971412191161,0.202694235588972,13.753648689983,0.00794091929681599,0.23,23,1,94.2887150496276,0.904973075704783,23,9.59406456740006,0,1.25250752766927,1.06371796131134,0.241283802642791
+3403,83143,450897.952,83243,450797.952,2,34,0.5,0.005,2.5,0.166666666666667,NA,0.00299524792179,0.065,6.5,2,78.2200880999434,0.843485065866701,5.25,15.407282095689,5,1.83403764830695,1.5641268491745,0.471987030818971
+3404,83143,450797.952,83243,450697.952,3,34,1.75,0.0175,5.86806775477099,0.428571428571429,NA,-0.00378441132823809,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,4.50762899298417,0,2.32206513484319,2.0639488697052,0.429941321824112
+3405,83143,450697.952,83243,450597.952,4,34,20,0.1,17.5087443723211,0.499278499278499,11.1803398874989,0.0202899307303232,0.2675,26.75,1,95.0869843258351,0.886823816513113,26.75,4.08452723850714,0,2.76155908902486,1.84048438072205,1.57566840391067
+3406,83143,450597.952,83243,450497.952,5,34,21,0.07,13.3476883792435,0.544011544011544,14.120226591666,-0.00723423350026678,0.125,12.5,3,84.6114577118969,0.717647058823529,10.25,1.18284271240234,0,4.10874789953232,2.72241044044495,1.21160690368242
+3407,83143,450497.952,83243,450397.952,6,34,32,0.04,6.9859439061435,0.17552504492363,16.1445684738231,0.0388869431160492,0.3925,39.25,3,92.0137096101913,0.771376314586191,23,6.16862180430418,0,4.22857469982571,4.00371313095093,0.475152585531992
+3408,83143,450397.952,83243,450297.952,7,34,40.5,0.135,15.5877679911912,0.379223744292237,20.7868932583326,0.0256782714249857,0.2275,22.75,7,80.7920200669511,0.680370769906908,10,4.36593221308111,0,4.06244065364202,3.82458519935608,0.559474234861999
+3409,83143,450297.952,83243,450197.952,8,34,94,0.94,37.8706663307946,0.891843971631206,NA,0.0794040750525892,0.845,84.5,1,99.5375969134692,0.787975162804786,84.5,0.236686390532544,0,7.48134570651584,4.04984283447266,3.49711753829637
+3410,83143,450197.952,83243,450097.952,9,34,93,0.93,37.3171266243701,0.911290322580645,NA,0.13601428133843,0.9025,90.25,1,99.7229916897507,0.910031488978857,90.25,0.152354570637119,0,6.96830428971185,3.58925843238831,3.91853319440642
+3411,83143,450097.952,83243,449997.952,10,34,67,0.335,16.6460671160687,0.431960049937578,30,0.0435734158811101,0.5025,50.25,3,93.7532868307588,0.735945141255877,26,2.3170523382538,0,3.69045662879944,3.21489524841309,1.07978852553562
+3412,83143,449997.952,83243,449897.952,11,34,82.75,0.41375,18.1095151727148,0.442171717171717,11.1803398874989,0.0434328135110991,0.43,43,4,89.9258418785139,0.77862637666722,16,1.98864338009856,0,2.88857123586867,1.08644831180573,2.58452213726071
+3413,83143,449897.952,83243,449797.952,12,34,66,0.66,34.6437090572635,0.856691919191919,NA,0.0707262046032702,0.7975,79.75,2,98.7500517969383,0.721094294737705,78,4.89793841442718,0,1.78929482400417,0.466037213802338,2.12421060610869
+3414,83143,449797.952,83243,449697.952,13,34,58.25,0.29125,18.3167528680386,0.579106280193237,18.0277563773199,0.0696870303286414,0.81,81,2,99.2221302147334,0.77640178878569,80.75,6.46332283373232,0,2.90962343745761,2.01797771453857,1.91966669488326
+3415,83143,449697.952,83243,449597.952,14,34,33.25,0.083125,9.27765815399174,0.455573114201433,18.7481430627556,-0.00423326026368159,0.3225,32.25,4,92.8023625447797,0.755044358954228,27.75,6.65082149357759,0,1.11488771935304,0.726031124591827,0.676522299187304
+3416,83143,449597.952,83243,449497.952,15,34,29.25,0.0265909090909091,6.2898747934383,0.276422924901186,12.1418427893877,0.0213410886324345,0.2025,20.25,4,90.5510580704765,0.782305816788575,18.5,5.06402790399245,0,0.625304718812307,0.361161798238754,0.429157438471141
+3417,83143,449497.952,83243,449397.952,16,34,17.5,0.0134615384615385,4.02562597011152,0.174453941120608,12.4857079768901,0.0202061293096995,0.1625,16.25,4,81.3670370676489,0.756967375511821,6.5,9.87325239915114,0,0.123790191952139,-0.080826111137867,0.252149244516878
+3418,83143,449397.952,83243,449297.952,17,34,15,0.03,5.92814777325804,0.230810810810811,13.4164078649987,0.0118702937840862,0.0975,9.75,6,67.2082796554467,0.624973364585553,3.75,12.0408883706117,0,-0.147308908920321,-0.257717192173004,0.217910908433301
+3419,83143,449297.952,83243,449197.952,18,34,37,0.074,10.6197400571696,0.339220720720721,13.1869125971184,-0.0336751556253876,0.1025,10.25,2,86.902038910584,0.919260425497558,10,2.08103598617926,0,-0.380138768504063,-0.563066184520721,0.254152755292823
+3420,83143,449197.952,83243,449097.952,19,34,4.5,0.0225,8.38356488386834,0.409722222222222,11.1803398874989,-0.125341851896337,0.0675,6.75,2,82.3132184428663,0.875303946630089,6.5,76.5671412150065,0,-0.756028340922462,-0.914963603019714,0.22845894993969
+3421,83143,449097.952,83243,448997.952,20,34,0.5,0.0025,0,0,50,-0.0476580872375416,0.2925,29.25,1,95.5315755048205,0.973331555437029,29.25,38.4923487606212,5,-0.914695607291328,-0.987205147743225,0.131870264688177
+3422,83143,448997.952,83243,448897.952,21,34,0,NA,NA,NA,NA,-0.149619978468691,0.1975,19.75,1,93.4201273586734,0.937694704049844,19.75,56.7873421681078,30,-0.789230604966482,-0.930311679840088,0.140042785810808
+3423,83143,448897.952,83243,448797.952,22,34,0,NA,NA,NA,NA,0.0384353697948973,0.475,47.5,2,95.851617520243,0.875541125541126,42.25,76.417200088501,33.5410194396973,-0.611092170079549,-0.662931621074677,0.0942303473755734
+3424,83143,448797.952,83243,448697.952,23,34,2.25,0.0075,3.24581101736365,0.12962962962963,35.1466791510584,0.0443216586665585,0.32,32,2,92.2639669480693,0.90532693764201,21.5,43.835431098938,11.1803398132324,-0.541991179188093,-0.561744332313538,0.0440396326342732
+3425,83143,448697.952,83243,448597.952,24,34,0,NA,NA,NA,NA,-0.0139749219521764,0.0025,0.25,1,0,NA,0.25,35.355339050293,35.355339050293,-0.541946589946747,-0.571646630764008,0.0517480232989453
+3426,83143,448597.952,83243,448497.952,25,34,14.25,0.02375,6.44571258173383,0.266325536062378,16.1737407595031,-0.00810590451868848,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,4.41421356201172,0,-0.52994001408418,-0.567144811153412,0.0741698579970996
+3427,83143,448497.952,83243,448397.952,26,34,27.75,0.02775,5.32475555193444,0.294711870255349,13.2290965583551,0.0296847813938803,0.215,21.5,3,88.5196881730337,0.808500895050164,13,3.57898508116256,0,-0.437018682559331,-0.483075320720673,0.0929576090818144
+3428,83143,448397.952,83243,448297.952,27,34,12.25,0.00720588235294118,3.12933571578106,0.143915343915344,11.9374860404154,0.0087607301557,0.0925,9.25,2,86.2068965517241,0.855484803323849,9,7.46028410421835,0,-0.489141032099724,-0.607941269874573,0.126916371425609
+3429,83143,448297.952,83243,448197.952,28,34,17.25,0.02875,5.67348738882759,0.351874657909141,18.4672028985154,-0.0304703140398487,0,0,0,NA,NA,0,NA,NA,-0.611360808213552,-0.648953855037689,0.0706054773042455
+3430,83143,448197.952,83243,448097.952,29,34,9.5,0.02375,7.68372309242644,0.265,16.2909490660452,-0.00707050143480956,0.0075,0.75,1,44.4894453484604,1,0.75,16.2797145843506,15,-0.595756555596987,-0.65515923500061,0.064904878926812
+3431,83143,448097.952,83243,447997.952,30,34,32.75,0.0363888888888889,6.12484674894194,0.270243182743183,12.2762524194901,-0.00705010443715537,0.02,2,3,41.2877050769818,0.489795918367347,0.75,0.625,0,-0.413793418142531,-0.532838463783264,0.180242333079491
+3432,83143,447997.952,83243,447897.952,31,34,68,0.136,10.6745360275926,0.426852674974137,11.8284271247462,-0.00287136085633392,0.07,7,5,61.8822495318296,0.5221027479092,2.25,3.94126210893903,0,-0.220850787229008,-0.352809816598892,0.147750872637319
+3433,83143,447897.952,83243,447797.952,32,34,44,0.044,7.21091631647939,0.289324958074958,12,0.00437081811281132,0.0775,7.75,10,56.5498540983734,0.436314363143631,3.5,3.2649420461347,0,-0.212575494001309,-0.299001663923264,0.119346262922377
+3434,83143,447797.952,83243,447697.952,33,34,38,0.0475,8.8798552998489,0.312540487665837,10.5177669529664,0.00556261244744746,0.1075,10.75,6,69.9705980708507,0.673202614379085,3.75,3.82475839659225,0,-0.313756482468711,-0.333289593458176,0.0533765230171366
+3435,83143,447697.952,83243,447597.952,34,34,14,0.0233333333333333,5.26028556010344,0.299634502923977,15.6439158622878,0.00429577934308327,0.025,2.5,2,62.1707778778281,0.684418145956607,2,10.1456338882446,0,-0.292768359184265,-0.330021649599075,0.0659205254075867
+3436,83143,447597.952,83243,447497.952,35,34,10.75,0.0119444444444444,3.80667206713326,0.263888888888889,11.7040986308982,0.0240874695097591,0.135,13.5,3,85.6293017478072,0.788675492572565,10.75,5.37837106210214,0,-0.162178023821778,-0.215402454137802,0.0991691214115544
+3437,83143,447497.952,83243,447397.952,36,34,22.25,0.0445,8.92377921089468,0.300427881297447,15,0.021461131854594,0.1475,14.75,6,76.0744778495233,0.677994364901386,7.25,5.1617216983084,0,0.00365655015533169,-0.0949493572115898,0.172304588533114
+3438,83143,447397.952,83243,447297.952,37,34,42.25,0.140833333333333,18.1508376146792,0.53725947760583,20.2051760426961,0.0117182521020641,0.09,9,1,87.719298245614,0.835164835164835,9,0.972222222222222,0,0.270659213264783,0.10215725004673,0.282936846724054
+3439,83143,447297.952,83243,447197.952,38,34,44,0.04,5.67763860438989,0.242540392483184,11.6266752387123,0.016695262377325,0.2475,24.75,2,92.3549143412595,0.850684982642129,21.75,1.74134892165059,0,0.520047133167585,0.0709677487611771,0.546974848606909
+3440,83143,447197.952,83243,447097.952,39,34,24.5,0.030625,6.42636628416926,0.207586146272855,16.2481210711818,0.0319708995326437,0.21,21,2,93.2438053871095,0.770622716846487,20.75,1.78782417660668,0,0.00867038049424688,-0.151613250374794,0.38840855559369
+3441,83143,447097.952,83243,446997.952,40,34,50,0.5,34.226558338575,0.8125,NA,0.0265578431404356,0.31,31,1,95.8102472617487,0.774557165861514,31,1.99079156691028,0,-0.310845214873552,-0.409592896699905,0.153019673513706
+3442,83143,446997.952,83243,446897.952,41,34,26.5,0.053,11.3396061527241,0.261254480286738,12.5498231854631,0.0255908096819803,0.2275,22.75,4,89.1848301020487,0.79224100043949,17.5,2.04041554377629,0,-0.432049211528566,-0.445660501718521,0.0406897634714668
+3443,83143,446897.952,83243,446797.952,42,34,15.25,0.0117307692307692,3.71372867688586,0.180530417295123,15.3954779375059,0.0249841230711741,0.1,10,5,76.040210911525,0.684908789386401,5.75,3.78757038116455,0,-0.369098039964835,-0.427305519580841,0.0761352653968639
+3444,83143,446797.952,83243,446697.952,43,34,30.5,0.0305,5.54583878595744,0.245102952602953,11.4674883474569,0.0112512321145368,0.0525,5.25,4,68.0590799590187,0.736147757255937,4,4.49831481206985,0,-0.306145855122142,-0.38383612036705,0.120566368133095
+3445,83143,446697.952,83243,446597.952,44,34,34.25,0.0428125,6.96555156233407,0.277176816239316,12.0225424859374,0.0257172971273576,0.2275,22.75,4,85.2526216000714,0.768268808182508,8.5,2.680540902274,0,-0.357403712140189,-0.454570591449738,0.147043669179651
+3446,83143,446597.952,83243,446497.952,45,34,40,0.0666666666666667,6.4049546080021,0.194259259259259,10.3934466291663,0.0192088317176103,0.2025,20.25,3,89.590122185558,0.773598049460118,17.25,2.75656332793059,0,-0.450487658381462,-0.537848353385925,0.126845336939387
+3447,83143,446497.952,83243,446397.952,46,34,36.75,0.18375,20.3284339782708,0.413793103448276,14.142135623731,0.0126577368109611,0.16,16,1,92.1052631578947,0.925595238095238,16,4.56652075052261,0,-0.523636847734451,-0.570695221424103,0.0912426255864846
+3448,83143,446397.952,83243,446297.952,47,34,31.25,0.104166666666667,15.236067305235,0.43830051753549,17.4535599249993,0.00367036133589863,0.055,5.5,4,67.6638268799795,0.782135076252723,4.25,3.82464252818715,0,-0.565935671329498,-0.587384223937988,0.0404951547375239
+3449,83143,446297.952,83243,446197.952,48,34,22.25,0.0370833333333333,8.97382545890445,0.444092329508996,13.3039373988179,0.0064715133378013,0.025,2.5,1,71.9760246298065,1,2.5,1.5,0,-0.58564074171914,-0.589999973773956,0.0115480371164668
+3450,83143,446197.952,83243,446097.952,49,34,25.75,0.0286111111111111,6.70769727433348,0.366955266955267,11.4092394762475,0.0101746901979459,0.1025,10.25,5,70.5461516555142,0.709337531791207,3.5,2.29614964927115,0,-0.586142808198929,-0.589999973773956,0.0101953358121684
+3451,83143,446097.952,83243,445997.952,50,34,7,0.0175,6.43072978587831,0.329594017094017,15.8113883008419,-0.0508414126151183,0,0,0,NA,NA,0,NA,NA,-0.55105890168084,-0.574697136878967,0.0472688672292112
+3452,83143,445997.952,83243,445897.952,51,34,16,0.04,6.73356425879749,0.329326923076923,15.4056941504209,-0.049065703125234,0,0,0,NA,NA,0,NA,NA,-0.373941404124101,-0.503081500530243,0.183416451930465
+3453,83143,445897.952,83243,445797.952,52,34,13.5,0.016875,5.15800805772698,0.305975274725275,16.902057139745,-0.0132306018111376,0.0125,1.25,1,58.1880425789518,1,1.25,7.06449508666992,5,-0.0227537139305948,-0.23796509206295,0.296269761423969
+3454,83143,445797.952,83243,445697.952,53,34,10,0.0142857142857143,3.91820439756155,0.233737939620293,16.2756031814174,-0.0170167799786759,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,0.259265222586691,0.0172869153320789,0.331109893984369
+3455,83143,445697.952,83243,445597.952,54,34,21.5,0.0165384615384615,3.38624383834486,0.134006953498479,11.2282635795146,-0.0184009238267572,0.0525,5.25,2,72.8497686088748,0.83509234828496,3,1.05100322905041,0,0.490760842959086,0.285136312246323,0.306297077344917
+3456,83143,445597.952,83243,445497.952,55,34,58.75,0.146875,14.6539318497102,0.445070806100218,14.01387818866,0.0450435473454127,0.3925,39.25,4,93.123470698127,0.839963420210334,33.5,1.60213808193328,0,0.620287868711684,0.501445293426514,0.205692865208997
+3457,83143,445497.952,83243,445397.952,56,34,46,0.23,16.4535423993189,0.499693063228975,25,0.0396726639616827,0.365,36.5,1,96.5515169620803,0.834852104161137,36.5,1.70720340781016,0,0.733883927265803,0.617105960845947,0.126178729365064
+3458,83143,445397.952,83243,445297.952,57,34,45.5,0.091,7.97541352419701,0.187142857142857,13.6212327846343,0.0305311850843282,0.28,28,5,86.9538576047316,0.766226622662266,12.75,1.77805478232247,0,0.766429788536496,0.687551915645599,0.0921029505493701
+3459,83143,445297.952,83243,445197.952,58,34,69,0.69,33.5307409519009,0.875,NA,0.0342951048292525,0.285,28.5,4,90.8633435977612,0.762373548781316,18.75,1.87038960373192,0,0.535705283284187,0.303931355476379,0.232558950137787
+3460,83143,445197.952,83243,445097.952,59,34,51.75,0.129375,11.6420314642471,0.387613378684807,10,0.0469918759727443,0.4575,45.75,3,94.4128940129751,0.754587843917869,35.75,2.45668946980127,0,-0.0771050635311339,-0.376401841640472,0.473397129076579
+3461,83143,445097.952,83243,444997.952,60,34,70,0.7,39.5088900666227,0.831547619047619,NA,0.0455694520912857,0.4375,43.75,3,92.9040322418786,0.763329893360853,25.25,0.847338692801339,0,-0.752426798144976,-0.930095314979553,0.263593911719097
+3462,83143,444997.952,83243,444897.952,61,34,44,0.088,11.0962590694541,0.571375827237896,11.605551275464,0.0314823563124082,0.2775,27.75,6,88.6028756695814,0.750865051903114,19.5,2.52350956684834,0,-0.994304862287309,-1.16236400604248,0.277546877592882
+3463,83143,444897.952,83243,444797.952,62,34,28.5,0.0285,5.74058669547822,0.263797514619883,11.7082039324994,0.020161817561202,0.1925,19.25,8,77.114209547995,0.735931524312511,10.25,3.23078626162046,0,-1.4197293817997,-1.6856255531311,0.35513580490187
+3464,83143,444797.952,83243,444697.952,63,34,41.25,0.0825,10.9733978854587,0.283659147869674,16.4339784002102,0.0354839839700844,0.3825,38.25,4,93.3579363040155,0.76947570129814,29.5,3.66247430190541,0,-1.83620822429657,-1.92341291904449,0.161708349597567
+3465,83143,444697.952,83243,444597.952,64,34,27.25,0.0227083333333333,8.10469295501145,0.265861441798942,10.6133899812498,-0.0503858833952927,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-2.02764347195625,-2.08428740501404,0.0745154384233435
+3466,83143,444597.952,83243,444497.952,65,34,33.25,0.110833333333333,19.1212354868346,0.591598233171581,26.1744998511994,-0.00799126899968542,0.11,11,2,85.8548247370362,0.848162769511084,10,1.18343335931951,0,-2.10208691491021,-2.11855030059814,0.0264235373943771
+3467,83143,444497.952,83243,444397.952,66,34,47.5,0.158333333333333,13.8152359508075,0.494455148790409,15,-0.026537303267105,0.075,7.5,1,86.0448225436784,0.823496966354109,7.5,0.166666666666667,0,-2.1125226020813,-2.11988592147827,0.0126380587332149
+3468,83143,444397.952,83243,444297.952,67,34,11,0.0122222222222222,2.91469738964577,0.19037037037037,14.5755933208332,-0.00444096027329579,0.025,2.5,1,71.9760246298065,0.763313609467456,2.5,4.70710678100586,0,-2.06944515307744,-2.10412263870239,0.0470074268155808
+3469,83143,444297.952,83243,444197.952,68,34,33.25,0.0475,7.76304204702529,0.268420560613252,10.8829056982141,0.000541512190696949,0.0975,9.75,1,88.4075627573592,0.829533347538888,9.75,1.28205128205128,0,-2.00416855017344,-2.04966568946838,0.0646207688384991
+3470,83143,444197.952,83243,444097.952,69,34,28.25,0.0353125,6.73250093969142,0.304239241803279,14.3401699437495,-0.0123048433805343,0,0,0,NA,NA,0,NA,NA,-1.96483680605888,-2.00785064697266,0.0498323062996263
+3471,83143,444097.952,83243,443997.952,70,34,36,0.06,5.75247543037846,0.138888888888889,12.9960346505144,-0.0099858238210436,0.05,5,1,81.7256002368443,0.898132427843803,5,1.75,0,-1.96111276414659,-2.00189113616943,0.0520464811764384
+3472,83143,443997.952,83243,443897.952,71,34,10.75,0.026875,4.36374777964434,0.314867424242424,42.6776695296637,-0.00608642014514771,0.025,2.5,2,61.4794562732788,0.763313609467456,2,1,0,-2.12519591053327,-2.28645205497742,0.182441574404486
+3473,83143,443897.952,83243,443797.952,72,34,69,0.115,10.607552996738,0.42977988686514,10,-0.0457785083478666,0.035,3.5,3,59.833803098894,0.740932642487047,1.75,2.64793341500419,0,-2.55655423800151,-2.68647766113281,0.267828493050996
+3474,83143,443797.952,83243,443697.952,73,34,62.75,0.31375,25.7936000882745,0.797779266062848,15,0.0880984535504467,0.7375,73.75,1,99.1344998974781,0.855855855855856,73.75,2.86347239219536,0,-2.95354902744293,-3.1027569770813,0.188235617960302
+3475,83143,443697.952,83243,443597.952,74,34,36.25,0.0453125,9.86327897204848,0.418384277134277,10.8739660235426,0.0636180719852564,0.6525,65.25,3,98.2564278317512,0.682217416251048,64.25,5.13349809317753,0,-3.10620170169406,-3.15002799034119,0.0908434160151215
+3476,83143,443597.952,83243,443497.952,75,34,68.25,0.34125,26.9316316283138,0.721320346320346,10,0.0763024372096061,0.5625,56.25,4,94.4864497405634,0.858503401360544,45.75,1.12857432047526,0,-3.16355329751968,-3.23975944519043,0.0699477305793971
+3477,83143,443497.952,83243,443397.952,76,34,7.5,0.015,3.52658554918385,0.211111111111111,30.369316876853,0.0486656574645895,0.49,49,4,95.6478451035427,0.876104287868994,46,24.8034459036224,0,-3.30830171373155,-3.39354038238525,0.107868277511357
+3478,83143,443397.952,83243,443297.952,77,34,1.25,0.0025,0,0,20.6155281280883,0.0317989983224834,0.4525,45.25,1,97.4390089868719,0.940025897907722,45.25,37.2563122912665,5,-3.3824332025316,-3.41394138336182,0.0474252686544043
+3479,83143,443297.952,83243,443197.952,78,34,0,NA,NA,NA,NA,0.0512268501200015,0.575,57.5,2,97.1507579184842,0.764157411216235,52,93.0584438323975,45.276927947998,-3.36834458510081,-3.4046893119812,0.0418485197201028
+3480,83143,443197.952,83243,443097.952,79,34,0,NA,NA,NA,NA,0.0488569837024261,0.5925,59.25,1,98.4255810267197,0.850434156407096,59.25,79.1992896840542,35.355339050293,-3.39771106508043,-3.46262788772583,0.0851765186484456
+3481,83143,443097.952,83243,442997.952,80,34,0.5,0.005,2.5,0.166666666666667,NA,-0.0379118128970003,0.0925,9.25,3,79.2952875772722,0.710969606647699,5,20.718423585634,0,-3.45907374223073,-3.49902081489563,0.0615460464628045
+3482,83143,442997.952,83243,442897.952,81,34,14.5,0.0483333333333333,8.22149646229168,0.36512928022362,45.4242102586769,0.0931952346937032,0.725,72.5,1,99.081892426161,0.933277731442869,72.5,13.3601024233062,0,-3.4591572019789,-3.48572373390198,0.0295490683675421
+3483,83143,442897.952,83243,442797.952,82,34,32.25,0.3225,29.780501900185,0.760981912144703,NA,0.0884034023238564,0.665,66.5,3,98.3343116388704,0.760715460772291,65.75,7.70685202376287,0,-3.41907326380412,-3.44686317443848,0.0368586752239669
+3484,83143,442797.952,83243,442697.952,83,34,43.5,0.2175,23.8224173957612,0.735642348317367,42.7200187265877,0.0650305649541406,0.4875,48.75,3,95.0450713061905,0.886807707856084,44,2.35530544183193,0,-3.42723902066549,-3.45969438552856,0.046940204360117
+3485,83143,442697.952,83243,442597.952,84,34,29,0.145,20.1075015174989,0.656108961960026,41.2310562561766,-0.000728452561015729,0.25,25,2,90.9355288231614,0.792592592592593,16.25,2.63284271240234,0,-3.50598319371541,-3.54902243614197,0.0509984268598548
+3486,83143,442597.952,83243,442497.952,85,34,22.75,0.2275,27.2342238770294,0.688644688644689,NA,-0.0603540747758962,0.18,18,1,92.8577757686571,0.884770501248319,18,2.92562431759304,0,-3.5595502058665,-3.5650897026062,0.0148116642872524
+3487,83143,442497.952,83243,442397.952,86,34,5,0.05,12.6197537984566,0.508333333333333,NA,-0.0532334092630344,0.0925,9.25,1,87.9580013362782,0.855484803323849,9.25,4.46906321757549,0,-3.54560673236847,-3.56629467010498,0.0259071038573857
+3488,83143,442397.952,83243,442297.952,87,34,0,NA,NA,NA,NA,-0.0161287466558247,0.04,4,1,78.9473684210526,0.782986111111111,4,32.4275369644165,25,-3.49689515431722,-3.52834272384644,0.0527554856717718
+3489,83143,442297.952,83243,442197.952,88,34,0,NA,NA,NA,NA,0.048714286138711,0.465,46.5,4,93.1241253574138,0.864159965224951,36.75,64.1637136397823,5,-3.41499608755112,-3.49150133132935,0.0940772579611184
+3490,83143,442197.952,83243,442097.952,89,34,0,NA,NA,NA,NA,0.0555957458612102,0.56,56,1,98.2299673180941,0.940191387559809,56,79.6397051300321,22.3606796264648,-3.27813135253059,-3.36020803451538,0.107298806080446
+3491,83143,442097.952,83243,441997.952,90,34,0.5,0.0025,0,0,25.4950975679639,-0.0270272183984889,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,59.3903160095215,53.8516464233398,-3.18526890542772,-3.23322248458862,0.0501202824230524
+3492,83143,441997.952,83243,441897.952,91,34,1.5,0.0075,4.24264068711929,0.0666666666666667,109.658560997307,-0.0129713009275815,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,3.33333333333333,0,-3.18673926591873,-3.22939038276672,0.0352263292348761
+3493,83143,441897.952,83243,441797.952,92,34,3,0.01,6.41633931076682,0.0771604938271605,11.1803398874989,-0.0140596510386786,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,4.01292142001065,0,-3.2121291425493,-3.24043917655945,0.0380948458827075
+3494,83143,441797.952,83243,441697.952,93,34,0,NA,NA,NA,NA,-0.0436613258929583,0,0,0,NA,NA,0,NA,NA,-3.1986728310585,-3.21863269805908,0.0407804617024156
+3495,83143,441697.952,83243,441597.952,94,34,0,NA,NA,NA,NA,-0.0322624259166798,0,0,0,NA,NA,0,NA,NA,-3.17366078164842,-3.20961689949036,0.0550596131946223
+3496,83143,441597.952,83243,441497.952,95,34,0,NA,NA,NA,NA,-0.0749301495333202,0,0,0,NA,NA,0,NA,NA,-3.25699061155319,-3.34544849395752,0.102692619553819
+3497,83143,441497.952,83243,441397.952,96,34,0,NA,NA,NA,NA,-0.0903899694755819,0,0,0,NA,NA,0,NA,NA,-3.46034905645582,-3.52491140365601,0.108703922205017
+3498,83143,441397.952,83243,441297.952,97,34,0.25,0.0025,0,0,NA,0.0446230384153569,0.48,48,3,93.456269718358,0.810933448573898,30,38.2753401299318,0,-3.59631812572479,-3.63469982147217,0.0471542977749401
+3499,83143,441297.952,83243,441197.952,98,34,0,NA,NA,NA,NA,0.0474822817044333,0.32,32,3,92.6547967361119,0.83590002524615,24.75,88.2918139696121,60.4152297973633,-3.58980263604058,-3.63144469261169,0.0700273866522692
+3500,83143,441197.952,83243,441097.952,99,34,0,NA,NA,NA,NA,0.0245992801147077,0.0875,8.75,2,81.3755793163086,0.829948039678791,7.25,73.3377490452358,50.9901962280273,-3.37752574682236,-3.50916790962219,0.161371107578275
+3501,83243,451097.952,83343,450997.952,0,35,10.75,0.0119444444444444,3.62562255190754,0.155555555555556,16.0352953802488,-0.0310805917345397,0,0,0,NA,NA,0,NA,NA,0.863671327630679,0.801906645298004,0.103146535004825
+3502,83243,450997.952,83343,450897.952,1,35,2.5,0.005,2.01518445171381,0.127777777777778,14.919796900954,0.0202570646857203,0.2275,22.75,1,94.2285806660851,0.952055615486036,22.75,38.6142219920735,11.1803398132324,1.04820007830858,0.868947148323059,0.344010831531097
+3503,83243,450897.952,83343,450797.952,2,35,25.25,0.0315625,7.35317137618889,0.33880643812709,10.4426274578121,0.00743073309598913,0.115,11.5,4,76.5309752658354,0.739243807040417,5,4.9534444394319,0,2.0489721596241,1.55773293972015,0.80763725199232
+3504,83243,450797.952,83343,450697.952,3,35,24.75,0.2475,33.3491272111953,0.781144781144781,NA,0.0105893729847594,0.2425,24.25,1,94.5753035249093,0.863434619324001,24.25,1.39541586649787,0,3.50847958028316,2.39156770706177,1.48272969958283
+3505,83243,450697.952,83343,450597.952,4,35,24,0.24,22.3271370767071,0.748263888888889,NA,0.0064373644378793,0.255,25.5,1,94.8405521791929,0.889976895147981,25.5,1.64111316905302,0,4.55032871166865,3.12695646286011,1.25309716517082
+3506,83243,450597.952,83343,450497.952,5,35,66.75,0.33375,19.4927897873891,0.481761006289308,20,0.0566950370969789,0.59,59,2,97.2680065668206,0.811957303246502,55,0.614406779661017,0,3.30983635038137,1.15393722057343,1.79582692210892
+3507,83243,450497.952,83343,450397.952,6,35,24,0.04,8.85439005207389,0.262935729847495,17.8689155862306,0.0325308229280199,0.225,22.5,3,91.618826190019,0.823682628731717,21,2.54007496303982,0,1.76905797421932,0.888880729675293,1.48809018378584
+3508,83243,450397.952,83343,450297.952,7,35,61,0.203333333333333,10.7139425785137,0.289026629935721,11.1803398874989,0.0406759159579087,0.415,41.5,2,95.3717641886998,0.854756717501816,37,0.739253124558782,0,2.64379374310374,0.952528417110443,1.9353298706128
+3509,83243,450297.952,83343,450197.952,8,35,86.75,0.8675,36.9575189851101,0.861671469740634,NA,0.0746043098566588,0.73,73,1,99.1030975159931,0.682925183835931,73,0.768714421415982,0,6.85726030667623,2.46948337554932,3.84921924316425
+3510,83243,450197.952,83343,450097.952,9,35,98.5,0.985,38.1133167316608,0.921319796954315,NA,0.0993765305168927,0.6775,67.75,1,98.8688764291496,0.920805348684912,67.75,0.0922509225092251,0,6.10834230979284,3.39047980308533,2.92597342511919
+3511,83243,450097.952,83343,449997.952,10,35,71,0.71,39.3691055299999,0.832159624413146,NA,0.0414109740316781,0.435,43.5,3,95.9248005918285,0.784964022826896,41.25,1.33365403098622,0,3.09687229692463,0.000474077387480065,2.04064465740567
+3512,83243,449997.952,83343,449897.952,11,35,20.5,0.1025,15.9715549986914,0.555844907407407,15,0.0175309415392985,0.19,19,6,79.421780076577,0.751243781094527,9,19.4390337090743,0,1.23907456795375,-0.786650896072388,2.55864224486608
+3513,83243,449897.952,83343,449797.952,12,35,11.75,0.05875,16.2928262093148,0.515196078431372,67.2681202353686,0.0100077349405547,0.1025,10.25,2,82.642125103351,0.870816680796092,7.25,8.97016488051996,0,-0.0553109021857381,-0.655893564224243,0.829077654456341
+3514,83243,449797.952,83343,449697.952,13,35,53.5,0.535,35.2336273715411,0.767133956386293,NA,0.0542923507502542,0.6,60,4,95.5925306410389,0.760579064587973,51.5,2.30727721055349,0,0.83426308290412,-0.0418364219367504,1.15451935413038
+3515,83243,449697.952,83343,449597.952,14,35,34.75,0.0579166666666667,7.98168529080549,0.351593133764372,13.3333333333333,0.0390147843235536,0.345,34.5,4,94.3206082829361,0.818247909850963,32.75,3.8955483643905,0,1.45421822741628,0.887435615062714,0.512291907930258
+3516,83243,449597.952,83343,449497.952,15,35,41.25,0.0825,8.33549018650697,0.266244725738397,13.7345414799559,0.0120554286836705,0.2,20,3,86.0044315464611,0.797535211267606,11.75,7.254367852211,0,1.04899024963379,0.635613799095154,0.551179026733325
+3517,83243,449497.952,83343,449397.952,16,35,49.25,0.24625,16.5593274883378,0.542668957617411,11.1803398874989,-0.000831168603763217,0.2275,22.75,3,91.2275678991582,0.888129769467418,21,17.0936358315604,0,0.215344384647324,-0.0674800872802734,0.355245928404847
+3518,83243,449397.952,83343,449297.952,17,35,39,0.39,28.6650341555153,0.739316239316239,NA,0.0635520700924098,0.5425,54.25,3,95.1434633767107,0.778174538765352,44.5,7.4860781568536,0,-0.187016541759173,-0.277303516864777,0.128569615434139
+3519,83243,449297.952,83343,449197.952,18,35,76.25,0.7625,36.8694975777245,0.828415300546448,NA,0.0548869988997467,0.6575,65.75,1,98.7723535160189,0.82825246887076,65.75,0.662137397795122,0,-0.311428458429873,-0.407010018825531,0.0914502027492378
+3520,83243,449197.952,83343,449097.952,19,35,41,0.41,37.7712153139966,0.692073170731707,NA,-0.0175375219976559,0.2725,27.25,1,95.1807759450405,0.916269820503428,27.25,1.10683441162109,0,-0.335652076949676,-0.642170548439026,0.272368050574969
+3521,83243,449097.952,83343,448997.952,20,35,9,0.09,15.0767299707201,0.587962962962963,NA,-0.218080859278562,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,0.833333333333333,0,-0.426756214971344,-0.75411581993103,0.389332630258653
+3522,83243,448997.952,83343,448897.952,21,35,0,NA,NA,NA,NA,-0.258363930750638,0,0,0,NA,NA,0,NA,NA,-0.336842834367417,-0.726217567920685,0.457060970006505
+3523,83243,448897.952,83343,448797.952,22,35,1.75,0.004375,1.78118823893566,0.0694444444444444,25.9823639537037,-0.0934968272179503,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,5.80094310215541,0,-0.198717863919834,-0.549564361572266,0.339561191641614
+3524,83243,448797.952,83343,448697.952,23,35,25.25,0.12625,14.4644103106378,0.79593511951668,15,0.0479199873921243,0.36,36,1,96.4912280701754,0.940814393939394,36,4.93371285332574,0,-0.454542963765562,-0.572253406047821,0.191250460822468
+3525,83243,448697.952,83343,448597.952,24,35,0.25,0.0025,0,0,NA,-0.0101404390011885,0.0625,6.25,2,79.7566743110988,0.706666666666667,5.5,47.0872410583496,5,-0.626374110579491,-0.673613309860229,0.0769228862759368
+3526,83243,448597.952,83343,448497.952,25,35,12.25,0.0204166666666667,3.55799430363298,0.23562091503268,13.0693654216063,-0.0239708944309041,0.015,1.5,2,45.0766242787986,0.709934735315446,1,17.3011798858643,11.1803398132324,-0.656542163342237,-0.716147243976593,0.0766682502645486
+3527,83243,448497.952,83343,448397.952,26,35,29.5,0.0327777777777778,5.6176760833668,0.248378781712115,13.3257172036811,-0.0112837893322239,0.045,4.5,2,71.0186110213899,0.844871049059531,3,8.50322098202176,0,-0.642144059141477,-0.729267060756683,0.114326315466919
+3528,83243,448397.952,83343,448297.952,27,35,46.75,0.155833333333333,12.2854688773418,0.554666382131171,16.8816503408199,-0.051884969303519,0,0,0,NA,NA,0,NA,NA,-0.67589745298028,-0.734958827495575,0.0845084978939473
+3529,83243,448297.952,83343,448197.952,28,35,45.25,0.0646428571428571,7.41595252128449,0.238975468975469,15.8508913948504,-0.0480281496873249,0,0,0,NA,NA,0,NA,NA,-0.674045587579409,-0.705342948436737,0.0675435622839907
+3530,83243,448197.952,83343,448097.952,29,35,40.5,0.2025,18.681692043135,0.640681466184822,11.1803398874989,-0.0217940398838391,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0,-0.493464464321733,-0.658134937286377,0.208200338877095
+3531,83243,448097.952,83343,447997.952,30,35,71.75,0.179375,8.77554794094298,0.210974178403756,12.9489670038968,-0.0727452505275869,0.0025,0.25,1,0,NA,0.25,0,0,-0.114575368507455,-0.402307450771332,0.299750223719014
+3532,83243,447997.952,83343,447897.952,31,35,25.75,0.0171666666666667,3.00310453844476,0.169751633986928,12.6212370492271,0.0241702915251517,0.135,13.5,6,72.2286754102752,0.602212691901299,3.75,5.10964722103543,0,0.0378783332804839,-0.117813095450401,0.201907625733323
+3533,83243,447897.952,83343,447797.952,32,35,28.5,0.0285,3.60864471633221,0.157239057239057,11.5532747850838,0.00435410922479605,0.0425,4.25,3,63.2191204886279,0.66579634464752,2,5.45388345157399,0,-0.0724491864093579,-0.195651441812515,0.170036194538779
+3534,83243,447797.952,83343,447697.952,33,35,10.75,0.0215,6.38204757274484,0.232063492063492,13.4721359549996,-0.0074771838196466,0,0,0,NA,NA,0,NA,NA,-0.220717693368594,-0.31489971280098,0.137112128655688
+3535,83243,447697.952,83343,447597.952,34,35,18.25,0.0202777777777778,4.40796642005616,0.235662706731889,12.234395795269,0.0133230527942669,0.0625,6.25,2,81.0200477655928,0.893333333333333,6,1.28284271240234,0,-0.194778398668859,-0.324198782444,0.162503144044817
+3536,83243,447597.952,83343,447497.952,35,35,9,0.00818181818181818,1.68904588518496,0.108111187058555,15.825899010367,0.00463764926882504,0.0275,2.75,2,64.2650533028319,0.725792630676949,2.25,6.7665224942294,0,0.0186295335491498,-0.204963430762291,0.273900773262457
+3537,83243,447497.952,83343,447397.952,36,35,28.25,0.0470833333333333,7.17694395024603,0.316269841269841,17.9671860815305,0.0318215066455923,0.255,25.5,3,89.940699349119,0.801958411266366,16,6.65176741282145,0,0.464402975747362,0.0378338657319546,0.453854201232482
+3538,83243,447397.952,83343,447297.952,37,35,70.5,0.705,36.7674740983667,0.798463356973995,NA,0.034575137306656,0.3075,30.75,3,94.709782167501,0.896391510579398,30.25,0.569105691056911,0,1.03537006676197,0.42391711473465,0.520863664016977
+3539,83243,447297.952,83343,447197.952,38,35,89.5,0.895,36.2639136514552,0.907355679702048,NA,0.0415035141712906,0.445,44.5,3,93.4136914497279,0.879514773131795,33.25,0.140449438202247,0,1.28672880679369,0.882260859012604,0.398509597990557
+3540,83243,447197.952,83343,447097.952,39,35,55.25,0.138125,15.1790247734112,0.425593828914141,11.1803398874989,0.0266355951785226,0.25,25,6,83.2449538244658,0.725925925925926,11.25,0.98251407623291,0,0.866664476692677,0.188533991575241,0.616908960814293
+3541,83243,447097.952,83343,446997.952,40,35,58.75,0.29375,21.0587286153474,0.781428571428571,25,-0.0128373190450111,0.0425,4.25,3,65.1582854089214,0.70757180156658,2.5,0.294117647058824,0,-0.00611699535511434,-0.318573415279388,0.436006979125612
+3542,83243,446997.952,83343,446897.952,41,35,16.75,0.0335,7.17489682299261,0.325802879291251,19.3913957294483,0.0104640802284484,0.0575,5.75,2,80.190713001571,0.852637783672267,5.5,0.217391304347826,0,-0.258155563846231,-0.39782840013504,0.21565649480004
+3543,83243,446897.952,83343,446797.952,42,35,10.75,0.0119444444444444,3.8195440389282,0.0925925925925926,11.9053073801321,0.0148292224137731,0.0225,2.25,3,46.3840245365161,0.573742540494459,1.25,13.5124354892307,0,-0.22482829913497,-0.373208105564117,0.159019399922457
+3544,83243,446797.952,83343,446697.952,43,35,18.5,0.0115625,3.76611882915924,0.203740763546798,12.3258579413923,0.0162556423209298,0.1,10,6,78.8365965320653,0.701492537313433,8,5.37049875259399,0,-0.140446711331606,-0.212535798549652,0.084616171876797
+3545,83243,446697.952,83343,446597.952,44,35,15.25,0.0117307692307692,3.22458606202652,0.20868999421631,12.6251618610143,0.0314423540555981,0.2375,23.75,3,87.2842703301253,0.776277724204436,13.75,4.46121191727488,0,-0.117780396714807,-0.226453274488449,0.0925107485598374
+3546,83243,446597.952,83343,446497.952,45,35,34.25,0.0428125,7.81108275185998,0.317201141898723,11.1079368967158,0.0286139238612668,0.26,26,5,89.5490151226451,0.761526232114467,21.75,2.70192586458646,0,-0.194429376162589,-0.347701072692871,0.137392483770072
+3547,83243,446497.952,83343,446397.952,46,35,36.75,0.0408333333333333,6.39510164102598,0.272536461553525,11.8336461554143,0.00451039370964281,0.0975,9.75,3,79.4343956020836,0.795440017046665,5.25,2.59521034436348,0,-0.292855309943358,-0.445930391550064,0.160982995902651
+3548,83243,446397.952,83343,446297.952,47,35,49,0.07,4.95440991272482,0.0997493734335839,10.3372399678568,0.0234360903923516,0.1975,19.75,5,79.828627147816,0.724076546506453,7.75,2.5762962872469,0,-0.440913703292608,-0.550331473350525,0.126779334994768
+3549,83243,446297.952,83343,446197.952,48,35,21,0.042,8.73273833095858,0.389994775339603,15.0551998871605,0.00791990296218501,0.125,12.5,3,84.7841179392924,0.852100840336134,11,3.74694133758545,0,-0.53611317028602,-0.577886283397675,0.0644823641961805
+3550,83243,446197.952,83343,446097.952,49,35,8.75,0.00729166666666667,2.58205927944573,0.136146723646724,16.2491456095488,0.00360857332418277,0.01,1,1,52.6315789473684,1,1,4.26776695251465,0,-0.536829881370068,-0.579808056354523,0.0690996502429779
+3551,83243,446097.952,83343,445997.952,50,35,4.5,0.00642857142857143,1.70349141973085,0.116666666666667,22.9932022580246,0.00251672309402238,0.005,0.5,2,0,1,0.25,12.8077640533447,5,-0.51199330141147,-0.560287475585938,0.0649794327019947
+3552,83243,445997.952,83343,445897.952,51,35,8,0.0114285714285714,3.70612964270339,0.291269841269841,23.3357828000767,-0.0124886428622085,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,4.08088022867839,0,-0.438710704445839,-0.511482059955597,0.0918579794319567
+3553,83243,445897.952,83343,445797.952,52,35,16,0.0145454545454545,4.43726092408747,0.247067747067747,11.5295719009053,0.00429359887099963,0.0375,3.75,6,45.0087641818347,0.433293978748524,1.5,3.66666666666667,0,-0.241063021744291,-0.342593640089035,0.188025847318494
+3554,83243,445797.952,83343,445697.952,53,35,34.5,0.0345,5.73442566990014,0.320202745849298,13.7314203699571,0.0326871888935057,0.3575,35.75,3,93.8201216147299,0.863367689428818,31.75,2.05942289979308,0,0.152519572526217,-0.07975984364748,0.293554409013183
+3555,83243,445697.952,83343,445597.952,54,35,43.5,0.0435,4.89821041707488,0.212936507936508,11.1133863812072,0.0367778789400609,0.3075,30.75,3,89.859783566224,0.831636204691522,19.25,1.91345804105929,0,0.582939937710762,0.315582811832428,0.294827296461594
+3556,83243,445597.952,83343,445497.952,55,35,57.25,0.190833333333333,17.7326186110713,0.678163978274516,18.9752746785575,0.0327145348189515,0.3825,38.25,3,94.4363178730747,0.90202717305171,35,1.392408458236,0,0.770379389325778,0.525148630142212,0.25180936269301
+3557,83243,445497.952,83343,445397.952,56,35,47.25,0.0945,7.34508850943729,0.284814814814815,18.9208226783992,0.0232027511766773,0.1725,17.25,5,81.1091889240224,0.780280142817907,9.25,1.10453918014748,0,0.864758513867855,0.648976981639862,0.214985593023018
+3558,83243,445397.952,83343,445297.952,57,35,47,0.0671428571428571,8.06184445865854,0.299954363296681,11.4285714285714,0.0265489427078683,0.16,16,6,84.3280986749943,0.798044217687075,13.75,1.59486043453217,0,0.816148256262143,0.742371678352356,0.115223366639443
+3559,83243,445297.952,83343,445197.952,58,35,47.75,0.0955,11.5914382978703,0.42875946566834,13.4339784002102,-0.00142954640397875,0.0925,9.25,7,64.1705161159507,0.584518809556067,3,3.3879821364944,0,0.599240398034453,0.367799043655396,0.239659383171777
+3560,83243,445197.952,83343,445097.952,59,35,39.75,0.06625,12.9456740689049,0.478181247165106,13.7267799624997,0.0335473809828909,0.2975,29.75,4,88.2538604884499,0.756161855805984,16.25,3.63176999773298,0,0.0919923686500018,-0.278239369392395,0.597453828986689
+3561,83243,445097.952,83343,444997.952,60,35,48,0.08,9.16609926354874,0.411952861952862,14.2893813604535,0.0194450818013229,0.195,19.5,4,85.4358004721323,0.801962372850842,10.75,1.59570014171111,0,-0.41449322970584,-0.697263896465302,0.40237289991572
+3562,83243,444997.952,83343,444897.952,61,35,44,0.11,13.2322145252788,0.597232824427481,15.1538820320221,0.0267034309403152,0.23,23,5,86.1236016416244,0.762432689261958,14.25,3.45379219884458,0,-0.550021174053351,-0.699993550777435,0.289405016871568
+3563,83243,444897.952,83343,444797.952,62,35,30.75,0.0279545454545455,4.54134294895768,0.273159751229927,13.1372247454359,0.0158724718545182,0.1475,14.75,5,78.0500359450053,0.723995169915474,5.75,3.42544558896857,0,-1.01220632344484,-1.55791068077087,0.443636488810924
+3564,83243,444797.952,83343,444697.952,63,35,37.5,0.0535714285714286,7.92049898845067,0.305611189885383,14.8896544043542,0.00909132854587369,0.085,8.5,4,74.4476012839751,0.590163934426229,5,2.56091375911937,0,-1.70243183771769,-1.89176964759827,0.296237095127663
+3565,83243,444697.952,83343,444597.952,64,35,31.5,0.063,12.6533979671967,0.370522088353414,13.3851648071345,-0.0192944634429318,0.09,9,3,78.1889578211371,0.853479853479854,5.25,2.47617043389214,0,-2.01500298082829,-2.0906400680542,0.114606700610203
+3566,83243,444597.952,83343,444497.952,65,35,33,0.0471428571428571,9.70168598361073,0.303765950824774,11.939126172942,-0.0196852991573087,0.04,4,3,66.2624149457428,0.782986111111111,3.25,3.69638347625732,0,-2.11526310443878,-2.12450051307678,0.019009999608249
+3567,83243,444497.952,83343,444397.952,66,35,42.25,0.0845,8.32396578729287,0.342973110096398,19.6158231849971,0.0058838941698923,0.035,3.5,4,59.3757884937328,0.585492227979275,2.5,2.08158111572266,0,-2.10419956843058,-2.12128686904907,0.0317452989599563
+3568,83243,444397.952,83343,444297.952,67,35,16.25,0.0232142857142857,5.44109863900263,0.185079365079365,19.8547794823831,0.015091666025437,0.145,14.5,2,86.7683092855191,0.824561403508772,10.75,4.22046700839339,0,-2.02327986806631,-2.07963299751282,0.060889535202581
+3569,83243,444297.952,83343,444197.952,68,35,16.5,0.0235714285714286,6.9001677550237,0.38287037037037,10.7142857142857,0.000158812206414041,0.0325,3.25,3,58.5463350269874,0.598047660063164,2,2.85162060077374,0,-1.9347797135512,-1.96451199054718,0.0375882470153391
+3570,83243,444197.952,83343,444097.952,69,35,12.25,0.0102083333333333,2.46971635653235,0.207583311749978,14.6319553516263,-0.0151655129351457,0.0025,0.25,1,0,NA,0.25,15,15,-1.91749528050423,-1.93274891376495,0.0209014895336822
+3571,83243,444097.952,83343,443997.952,70,35,58,0.58,32.8846000160021,0.836925287356322,NA,0.0145310819132646,0.1575,15.75,4,84.0879820246975,0.773401672511465,9,1.03174603174603,0,-1.92584569255511,-1.97921776771545,0.0513979259644388
+3572,83243,443997.952,83343,443897.952,71,35,37.25,0.093125,13.3197795792858,0.446120689655172,18.6133560913059,-0.0137622521212325,0.025,2.5,4,41.6623578643161,0.447731755424063,1,6.66227760314941,0,-2.0613722205162,-2.19564986228943,0.161584286597533
+3573,83243,443897.952,83343,443797.952,72,35,13.5,0.0122727272727273,3.06054709138879,0.160829910829911,16.9434362893354,-0.00441095875023166,0.12,12,2,88.3920881242357,0.930709534368071,11.75,6.88912113507589,0,-2.47007189194361,-2.67410922050476,0.316564417562598
+3574,83243,443797.952,83343,443697.952,73,35,46.5,0.0775,9.65912286613907,0.373901234567901,10.1967233145832,0.020975534088401,0.375,37.5,1,96.668457042866,0.901090909090909,37.5,1.98856180826823,0,-2.96038553118706,-3.09940266609192,0.189680603581324
+3575,83243,443697.952,83343,443597.952,74,35,86.5,0.865,37.0969747377415,0.875722543352601,NA,0.0554834261606447,0.6125,61.25,4,96.1688827789402,0.752077757430624,54.25,0.836734693877551,0,-3.14517398675283,-3.15964317321777,0.0377896568555716
+3576,83243,443597.952,83343,443497.952,75,35,54.25,0.135625,12.9960493108875,0.409375,10.5901699437495,0.034925371293939,0.2725,27.25,3,88.927690178756,0.804629581174665,17,1.95673643339665,0,-3.17300543189049,-3.26160979270935,0.0548319914876697
+3577,83243,443497.952,83343,443397.952,76,35,7,0.07,15.4117997855246,0.625,NA,0.0138430907164002,0.01,1,2,34.5233986084855,0.494949494949495,0.75,11.25,0,-3.28190807501475,-3.34173560142517,0.0817736379375851
+3578,83243,443397.952,83343,443297.952,77,35,1,0.00333333333333333,0.833333333333333,0.0555555555555556,20.6155281280883,0.0460803833055252,0.5275,52.75,1,98.0165432545104,0.913616240146852,52.75,44.5462657422251,5,-3.36254223187765,-3.40372157096863,0.0439633253010573
+3579,83243,443297.952,83343,443197.952,78,35,0,NA,NA,NA,NA,0.0666692553739995,0.825,82.5,2,99.1106475094932,0.880761293281358,82,119.480169330944,74.3303451538086,-3.41360196471214,-3.44232225418091,0.0346418887909616
+3580,83243,443197.952,83343,443097.952,79,35,0,NA,NA,NA,NA,0.0282579536845878,0.4875,48.75,1,97.7251065890586,0.967659345101738,48.75,143.849557808118,109.201652526855,-3.470605413119,-3.50475120544434,0.0444729964722897
+3581,83243,443097.952,83343,442997.952,80,35,0,NA,NA,NA,NA,-0.0611757053248584,0,0,0,NA,NA,0,NA,NA,-3.51561392843723,-3.53291630744934,0.0349899036950002
+3582,83243,442997.952,83343,442897.952,81,35,0,NA,NA,NA,NA,-0.0614773401734419,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471,-3.51592079798381,-3.54733443260193,0.0412144112654163
+3583,83243,442897.952,83343,442797.952,82,35,0.5,0.005,2.5,0.166666666666667,NA,-0.0644525741898178,0.0475,4.75,2,77.8316651557823,0.746583401212779,4.5,20.5420955858733,10,-3.48399342596531,-3.55179286003113,0.0721130290884826
+3584,83243,442797.952,83343,442697.952,83,35,3.25,0.0325,9.2051287874005,0.474358974358974,NA,-0.0593507336975745,0.045,4.5,1,80.4523936425773,0.844871049059531,4.5,1.66666666666667,0,-3.48826436201731,-3.54695534706116,0.0677582345744503
+3585,83243,442697.952,83343,442597.952,84,35,26.75,0.13375,13.3913574804694,0.367924528301887,49.2442890089805,-0.0129980194898235,0.3575,35.75,1,96.460610420978,0.958416253304423,35.75,1.35763731202879,0,-3.52981539070606,-3.54777264595032,0.0325085731806695
+3586,83243,442597.952,83343,442497.952,85,35,31.25,0.15625,16.1524212877053,0.486794171220401,42.7200187265877,0.0431546778776101,0.4375,43.75,1,97.3060110945426,0.95046439628483,43.75,1.84409153529576,0,-3.55144999424616,-3.5680103302002,0.0230332362544403
+3587,83243,442497.952,83343,442397.952,86,35,46.25,0.23125,25.8997958292759,0.72766354016354,41.2310562561766,0.0515010804595659,0.49,49,2,95.1605552031628,0.892264598146951,41.25,2.31142088831687,0,-3.53663754463196,-3.56378436088562,0.0293907661071898
+3588,83243,442397.952,83343,442297.952,87,35,28.5,0.095,13.4997597432559,0.432789432789433,23.7436854187255,0.0148725050146459,0.4275,42.75,2,94.2060181310192,0.855825882026755,31.75,7.24890921966374,0,-3.53010549147924,-3.53995633125305,0.021820007131965
+3589,83243,442297.952,83343,442197.952,88,35,23.5,0.1175,14.8688535828764,0.439311594202899,57.0087712549569,0.035776229785406,0.4825,48.25,2,97.3319519890616,0.913637222357164,48,12.0401996256774,0,-3.49941471219063,-3.53051114082336,0.0466084041785525
+3590,83243,442197.952,83343,442097.952,89,35,13.75,0.0458333333333333,9.17039547243299,0.394444444444444,15.2704627669473,0.000372348040327779,0.2925,29.25,3,93.2856102296687,0.813320888059204,27.5,10.8022578638843,0,-3.39203554391861,-3.46224904060364,0.0950349054699128
+3591,83243,442097.952,83343,441997.952,90,35,6.25,0.0125,3.83073721211013,0.202380952380952,13.3005630797458,-0.00509212401186232,0.02,2,3,44.0901705406037,0.489795918367347,1,6.76776695251465,0,-3.27809089422226,-3.36223530769348,0.0953783826838314
+3592,83243,441997.952,83343,441897.952,91,35,3.5,0.0116666666666667,7.68625305523135,0.12037037037037,11.1803398874989,0.0933865671581316,0.5075,50.75,1,97.8751325648042,0.956913382434124,50.75,35.371233869656,0,-3.22198104858398,-3.29652214050293,0.0757927149386402
+3593,83243,441897.952,83343,441797.952,92,35,0,NA,NA,NA,NA,0.0606723021968992,0.455,45.5,1,97.4605335088305,0.972776522472981,45.5,83.3771736857655,47.1699066162109,-3.2566543618838,-3.32948112487793,0.0732415934162265
+3594,83243,441797.952,83343,441697.952,93,35,0,NA,NA,NA,NA,-0.00922776612489542,0.085,8.5,1,87.210675248157,0.921935987509758,8.5,102.822690851548,91.2414398193359,-3.29301466047764,-3.34666657447815,0.0642739885967535
+3595,83243,441697.952,83343,441597.952,94,35,0.25,0.0025,0,0,NA,-0.0256774679065893,0.03,3,1,74.8763016215986,0.878714372346877,3,71.4941148757935,55.9016990661621,-3.29403978586197,-3.32991075515747,0.0507895633722061
+3596,83243,441597.952,83343,441497.952,95,35,0,NA,NA,NA,NA,-0.0196722778141702,0.0675,6.75,2,77.0326683961247,0.850364735956107,4.75,78.3994474057798,69.6419448852539,-3.32650575041771,-3.37185096740723,0.0562348270120954
+3597,83243,441497.952,83343,441397.952,96,35,0,NA,NA,NA,NA,-0.0274806655092107,0.225,22.5,1,94.1674468064267,0.871769184532158,22.5,97.7765421549479,72.1110229492188,-3.43699097633362,-3.50924062728882,0.0837181811741517
+3598,83243,441397.952,83343,441297.952,97,35,0,NA,NA,NA,NA,0.0828851376660168,0.8475,84.75,1,99.546047930594,0.918160660852664,84.75,97.4894837573566,50,-3.54191429913044,-3.63145899772644,0.0925209183484992
+3599,83243,441297.952,83343,441197.952,98,35,0,NA,NA,NA,NA,0.0845278782537207,0.9675,96.75,1,99.9123308655226,0.958080067071894,96.75,80.9406573470557,40,-3.51323713858922,-3.62604975700378,0.144068440416337
+3600,83243,441197.952,83343,441097.952,99,35,10,0.0316666666666667,9.05210286508818,0.251851851851852,13.3333333333333,0.0228725353086884,0.335,33.5,1,96.169806046512,0.870578084555651,33.5,28.4300861928,0,-3.2913751155138,-3.48112726211548,0.176193724855416
+3601,83343,451097.952,83443,450997.952,0,36,32.5,0.040625,7.00767373728989,0.217832732644977,12.6878519248411,-0.00322854723392084,0.0725,7.25,3,75.9249779267682,0.816482193037793,5.75,1.37931034482759,0,0.790394167105357,0.552857518196106,0.345669112442124
+3602,83343,450997.952,83443,450897.952,1,36,33.5,0.08375,14.3293567984147,0.385167020148462,15.5901699437495,-0.0143954999983544,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,3,0,1.24873824417591,0.960185468196869,0.46722973260687
+3603,83343,450897.952,83443,450797.952,2,36,31.75,0.0453571428571429,9.33995551555322,0.417698912135411,10.5058599517853,0.0243537228320383,0.3125,31.25,3,93.9648190376201,0.891069283139768,30,2.44568542480469,0,2.49398318926493,2.02358984947205,0.861190589236451
+3604,83343,450797.952,83443,450697.952,3,36,16.75,0.08375,9.48222203423325,0.343434343434343,88.4590300647707,-0.00342547548718358,0.135,13.5,2,89.732352335363,0.875691466219156,13.25,2.06486694901078,0,4.16699010133743,3.13381552696228,1.58289544456892
+3605,83343,450697.952,83443,450597.952,4,36,84.5,0.845,36.6342896572811,0.874753451676529,NA,0.0528414918488124,0.5975,59.75,1,98.4542502383879,0.799908291300179,59.75,0.711297071129707,0,4.14895991484324,1.37930262088776,2.6712524965066
+3606,83343,450597.952,83443,450497.952,5,36,81.5,0.4075,18.9965181151118,0.524434156378601,11.1803398874989,0.0614736155702849,0.7575,75.75,2,99.0094832782249,0.819452218029501,75.5,0.442713318878275,0,1.51880767941475,0.97920149564743,1.10124879329438
+3607,83343,450497.952,83443,450397.952,6,36,38.5,0.128333333333333,14.3289961145756,0.488130988130988,22.3899685534277,0.0265743616595864,0.185,18.5,3,89.2973308018499,0.830108541764983,16.5,1.61438663585766,0,0.891259365611606,0.838810086250305,0.124903724853818
+3608,83343,450397.952,83443,450297.952,7,36,4,0.00666666666666667,2.29009541041222,0.0777777777777778,37.2571177103633,0.0110127766228106,0.04,4,3,69.6811656412875,0.739583333333333,3.5,7.01963770389557,0,0.796223605672518,0.670997619628906,0.313505574334465
+3609,83343,450297.952,83443,450197.952,8,36,74.75,0.37375,18.4937401882724,0.585679429429429,11.1803398874989,0.0763335178201669,0.8625,86.25,1,99.5959799783351,0.843837144450641,86.25,1.77004100412562,0,1.88332206010818,0.983681499958038,2.17961826183732
+3610,83343,450197.952,83443,450097.952,9,36,78.5,0.3925,17.3167321177638,0.456070287539936,18.0277563773199,0.0255807476414338,0.225,22.5,2,89.65582628905,0.767581646964536,12.5,0.0555555555555556,0,2.69114353259405,0.785265922546387,3.16335956617897
+3611,83343,450097.952,83443,449997.952,10,36,62,0.31,22.8450754363591,0.818831949957897,11.1803398874989,0.0101521881460258,0.085,8.5,3,74.8115841678086,0.60967993754879,4.5,1.44535693000345,0,0.830775505552689,-0.500159919261932,2.02542096326702
+3612,83343,449997.952,83443,449897.952,11,36,2.5,0.025,6.35738832105943,0.55,NA,-0.0396862344392866,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,54.288402557373,46.0977210998535,-0.735065639019012,-0.849468171596527,0.24791042534939
+3613,83343,449897.952,83443,449797.952,12,36,28.5,0.285,29.0316080469928,0.720760233918129,NA,-0.0334084815624874,0.02,2,1,68.0470115164975,0.795918367346939,2,8.76235294342041,0,-0.635225104788939,-0.783813238143921,0.272105427372167
+3614,83343,449797.952,83443,449697.952,13,36,94.5,0.945,37.7986488539697,0.90299823633157,NA,0.018442282470287,0.2025,20.25,2,89.3100895226803,0.851967955416231,13.25,1.04277297596873,0,-0.00672700649334325,-0.497977733612061,0.728459474710811
+3615,83343,449697.952,83443,449597.952,14,36,55,0.1375,14.1562445663587,0.434930929919137,10.2950849718747,0.0436457948146563,0.405,40.5,2,96.1800756764388,0.706728328915459,39,5.14606581793891,0,1.1010717737178,0.0629084557294846,0.735793604141333
+3616,83343,449597.952,83443,449497.952,15,36,50.25,0.1005,11.0459690620083,0.496493628626511,13.7966912753363,-0.0174138611790841,0.085,8.5,4,70.9400545663034,0.668227946916471,3.5,4.17229865579044,0,1.18194401264191,0.929150283336639,0.353423393215422
+3617,83343,449497.952,83443,449397.952,16,36,32,0.032,6.38196827781502,0.418307707618052,13.5532747850838,0.0124424800062525,0.18,18,3,88.7613300370451,0.769541002496639,15.75,3.18450779385037,0,0.367966442368925,0.0606626123189926,0.432574470758864
+3618,83343,449397.952,83443,449297.952,17,36,96,0.96,37.3088467311535,0.931857638888889,NA,0.0640352136545698,0.82,82,1,99.4509723118502,0.856399210195656,82,0.106707317073171,0,-0.121662239647574,-0.204682603478432,0.140257103386083
+3619,83343,449297.952,83443,449197.952,18,36,75.75,0.2525,14.8221654559216,0.427702955480733,10,0.057027814041212,0.68,68,1,98.8806414464123,0.847113502935421,68,0.581927467794979,0,-0.19018093124032,-0.245626270771027,0.100843358091308
+3620,83343,449197.952,83443,449097.952,19,36,89.5,0.4475,19.5492713253009,0.541198501872659,11.1803398874989,0.0573222380805964,0.6425,64.25,2,96.9312170101714,0.825538287076749,57.75,0.606877145136377,0,-0.0556799195085963,-0.20588818192482,0.212043757690896
+3621,83343,449097.952,83443,448997.952,20,36,49,0.163333333333333,16.4307807139249,0.453407068395627,11.1803398874989,-0.00777371163119824,0.1525,15.25,3,87.7526988377664,0.86642177325096,14,0.491803278688525,0,0.285141776626309,0.0256629083305597,0.421805678960215
+3622,83343,448997.952,83443,448897.952,21,36,12,0.06,16.8083123754478,0.255434782608696,11.1803398874989,-0.0872086000019772,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,0.449656872699658,0.189539179205894,0.375408636828372
+3623,83343,448897.952,83443,448797.952,22,36,7.5,0.00833333333333333,4.26341541727622,0.125925925925926,16.9756148236199,0.0596607919151211,0.48,48,2,96.35530999768,0.918971477960242,46,14.9877467056115,0,-0.00954883685335517,-0.145134165883064,0.210001423819665
+3624,83343,448797.952,83443,448697.952,23,36,0,NA,NA,NA,NA,0.203893555393443,1,100,1,100,NA,100,38.6461522817612,5,-0.21327253136163,-0.457683175802231,0.250361611829426
+3625,83343,448697.952,83443,448597.952,24,36,3.75,0.0046875,1.50364732900757,0.075,22.8317152846771,0.03347833698258,0.2375,23.75,2,93.0594784849603,0.899710703953713,22.75,22.7535114689877,0,-0.571887549426821,-0.653559982776642,0.131095984350925
+3626,83343,448597.952,83443,448497.952,25,36,4.5,0.009,2.54782759963342,0.239722222222222,18.5453107274736,-0.0151035812436021,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,6.93261591593425,0,-0.702551752328873,-0.73204118013382,0.0482292824903457
+3627,83343,448497.952,83443,448397.952,26,36,3.75,0.0075,3.04085103253531,0.08,13.9589689355047,-0.000586560773298288,0,0,0,NA,NA,0,NA,NA,-0.749420934253269,-0.759999990463257,0.0200929362053983
+3628,83343,448397.952,83443,448297.952,27,36,10.25,0.0113888888888889,2.60177031620356,0.185350529100529,16.1240729229708,-0.0033960003176395,0,0,0,NA,NA,0,NA,NA,-0.736543074250221,-0.757306814193726,0.0332152315706747
+3629,83343,448297.952,83443,448197.952,28,36,13.5,0.027,6.12215506483337,0.422916666666667,20.7062120872777,-0.00751815120901483,0,0,0,NA,NA,0,NA,NA,-0.605915500058068,-0.677500605583191,0.136701358865912
+3630,83343,448197.952,83443,448097.952,29,36,54.75,0.136875,10.738948521111,0.463363557858377,10.5901699437495,0.00202459468899178,0.11,11,1,89.3941397590651,0.954448830853325,11,0.454545454545455,0,-0.263308726251125,-0.460247576236725,0.244703489065196
+3631,83343,448097.952,83443,447997.952,30,36,22.5,0.0204545454545455,4.59750577201385,0.209014514896868,14.1585977137427,0.006869129723691,0.0325,3.25,4,52.3946295034838,0.655469422911283,1.75,8.42185343228854,0,0.152838341891766,0.039077915251255,0.196009082621283
+3632,83343,447997.952,83443,447897.952,31,36,25,0.0625,10.999338798295,0.208185579196217,10.2950849718747,0.0072211932181682,0.085,8.5,5,66.0158419027934,0.629195940671351,2.75,8.22043626448687,0,0.323680672380659,0.281745314598083,0.0898435942573276
+3633,83343,447897.952,83443,447797.952,32,36,19.5,0.0278571428571429,5.03472614495863,0.27994227994228,18.7074879723103,0.0161083963338115,0.08,8,5,69.8555880530902,0.728260869565217,5.5,5.27553182840347,0,0.253125056624413,0.0784560441970825,0.170285652266124
+3634,83343,447797.952,83443,447697.952,33,36,51,0.1275,14.4744570637501,0.544897642679901,10,-0.00264039036177564,0.15,15,6,79.6911279717689,0.773755656108597,11,2.62377344767253,0,0.116269279995726,-0.00821905862540007,0.209025123647419
+3635,83343,447697.952,83443,447597.952,34,36,24.5,0.049,10.5446173789948,0.382539682539683,10,0.0230673934188235,0.1175,11.75,6,70.4810076696394,0.631728045325779,3.75,3.94443479497382,0,0.192407815173889,-0.00958194304257631,0.260252995613219
+3636,83343,447597.952,83443,447497.952,35,36,3.25,0.00295454545454545,0.454545454545455,0.0303030303030303,16.7953216046614,0.00802060363073906,0.04,4,1,78.9473684210526,0.956597222222222,4,10.4785101413727,0,0.413335290220049,0.219763576984406,0.268074633466894
+3637,83343,447497.952,83443,447397.952,36,36,37.75,0.0755,11.8215132412552,0.469785575048733,11.2360679774998,0.0197555937980724,0.1075,10.75,4,79.2449235402913,0.626517273576097,6.75,2.4219101307004,0,0.81694507598877,0.515049636363983,0.300783997709127
+3638,83343,447397.952,83443,447297.952,37,36,93.5,0.935,37.8260771790585,0.899286987522282,NA,0.0588800569002342,0.5225,52.25,2,97.4431984224353,0.930012516992153,51.75,0.450440840287642,0,1.34425605667962,1.09151828289032,0.291032424649801
+3639,83343,447297.952,83443,447197.952,38,36,76.5,0.3825,17.8508715624246,0.424043715846995,20,0.0263925495379226,0.2425,24.25,4,87.9705766847963,0.787564963392891,16,0.360824742268041,0,1.4698969523112,1.33309853076935,0.16982872934925
+3640,83343,447197.952,83443,447097.952,39,36,51.25,0.25625,24.3623034652289,0.71627532228361,20,0.0355564936898008,0.2625,26.25,4,89.6910239608897,0.791946910590978,20.5,1.15441146123977,0,1.17989742093616,0.741397500038147,0.487957712192108
+3641,83343,447097.952,83443,446997.952,40,36,44,0.088,12.4475174125469,0.488451735707833,13.8284271247462,0.0267942235674582,0.26,26,3,91.0886755223691,0.812111576817459,21.75,1.50205003298246,0,0.653097671767076,0.222115337848663,0.543139203740822
+3642,83343,446997.952,83443,446897.952,41,36,32.25,0.080625,10.3547955210289,0.281859161793372,12.9056941504209,0.0144939452548351,0.065,6.5,4,65.9504077844542,0.634798487022303,2.25,2.65931290846605,0,0.386882377995385,0.113278821110725,0.514617590723165
+3643,83343,446897.952,83443,446797.952,42,36,11.75,0.0167857142857143,4.28179356044343,0.276535614245698,17.9833619600403,0.0116845568225835,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,2.8451779683431,0,0.213270087687609,0.00411059474572539,0.360581230249093
+3644,83343,446797.952,83443,446697.952,43,36,8,0.0114285714285714,3.80942975336867,0.188492063492063,16.1674382965485,0.0133515323189158,0.0325,3.25,2,68.6830534279938,0.712891185759403,2.75,12.9028684175931,0,0.0392088058611585,-0.058146670460701,0.189716019895151
+3645,83343,446697.952,83443,446597.952,44,36,1.5,0.003,0.707106781186548,0.0166666666666667,18.6832385059276,0.0193008730942347,0.115,11.5,2,83.4695586329334,0.840648993191366,7,15.7526564390763,0,-0.0249120771057076,-0.0648966133594513,0.0859776648523845
+3646,83343,446597.952,83443,446497.952,45,36,7.75,0.0129166666666667,4.70351980856286,0.214173789173789,15.9067973776794,0.003930197622376,0.01,1,1,52.6315789473684,0.747474747474748,1,8.31285190582275,5,-0.0332534560390438,-0.0796959549188614,0.0740559130115618
+3647,83343,446497.952,83443,446397.952,46,36,9.5,0.0158333333333333,4.57061167466326,0.268518518518518,12.060113295833,-0.0127596176065072,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-0.0674445763644245,-0.15150474011898,0.115138940575674
+3648,83343,446397.952,83443,446297.952,47,36,17.75,0.0221875,7.31912573487277,0.351415945165945,14.2732463356196,0.00753145041702282,0.1025,10.25,3,83.6257991591721,0.838520850995115,9.25,2.5609756097561,0,-0.165517385893812,-0.357546985149384,0.242083727830906
+3649,83343,446297.952,83443,446197.952,48,36,55,0.1375,13.3390732424339,0.418223637650389,10,0.0472111040648451,0.4825,48.25,1,97.686149992119,0.919034895959841,48.25,1.29089189440475,0,-0.211972506509887,-0.457484483718872,0.390430497929546
+3650,83343,446197.952,83443,446097.952,49,36,76.25,0.127083333333333,10.5213064308229,0.358852957435047,10,-0.0130014914645653,0.145,14.5,2,85.6585579500072,0.859649122807018,9.75,3.64160695569269,0,-0.235956372693181,-0.406135082244873,0.347762837927897
+3651,83343,446097.952,83443,445997.952,50,36,34.25,0.17125,17.9804550193278,0.460029686174724,30.4138126514911,0.0176504989632849,0.1175,11.75,5,78.6972799323955,0.702549575070822,7.5,1.87838874979222,0,-0.305829187234243,-0.407736390829086,0.208462167855527
+3652,83343,445997.952,83443,445897.952,51,36,30,0.0375,5.89975493342212,0.238888888888889,11.2903094389037,0.0243690867706027,0.2275,22.75,4,90.7066992869987,0.808222461944145,20.25,3.24614476633596,0,-0.264027324194709,-0.383318930864334,0.186624858485435
+3653,83343,445897.952,83443,445797.952,52,36,19.75,0.01975,5.88289021984925,0.235768106162843,15.1260479150548,0.0236507120583428,0.2275,22.75,3,88.8554138685406,0.79224100043949,12.25,6.79654886434366,0,-0.110940235770411,-0.261970162391663,0.207237221031497
+3654,83343,445797.952,83443,445697.952,53,36,54.25,0.1085,8.6785841248799,0.266241360978203,11.8929222269922,0.0359389333133549,0.415,41.5,3,93.3249941778878,0.782135076252723,21,1.66587758351521,0,0.403961119242013,0.031388271600008,0.392898796778585
+3655,83343,445697.952,83443,445597.952,54,36,61.25,0.102083333333333,10.953463421069,0.413505168149131,10,0.0250675515753028,0.2575,25.75,7,80.0179743111503,0.67967967967968,8,1.19693467223529,0,0.821742660469479,0.704187035560608,0.2056132926664
+3656,83343,445597.952,83443,445497.952,55,36,84,0.84,38.0738358058644,0.848214285714286,NA,0.0168612942255641,0.0925,9.25,6,68.255801066795,0.674840807478661,5.25,0.27027027027027,0,1.13811364438799,0.897929787635803,0.367343504575034
+3657,83343,445497.952,83443,445397.952,56,36,71.75,0.35875,22.4617000347023,0.74796177492649,10,-0.0289420616729331,0.005,0.5,2,0,1,0.25,0,0,1.14459560314814,0.999528169631958,0.218424703768696
+3658,83343,445397.952,83443,445297.952,57,36,49.5,0.12375,10.2935338815766,0.355452127659574,10,0.00239996144056931,0.0625,6.25,3,69.8210805165151,0.653333333333333,2.75,0.8,0,1.20118661059274,0.967280328273773,0.396258892208054
+3659,83343,445297.952,83443,445197.952,58,36,76,0.76,35.8063704878434,0.842105263157895,NA,0.0270825391133121,0.3075,30.75,4,92.5845465214213,0.831636204691522,26.5,0.660269946586795,0,1.03875148793062,0.740646541118622,0.446621777642055
+3660,83343,445197.952,83443,445097.952,59,36,57.5,0.575,37.0303676780985,0.77536231884058,NA,0.00734150312015117,0.0875,8.75,3,77.5425798579055,0.716580066131318,6.25,1,0,0.916861640082465,0.503305792808533,0.547993989178986
+3661,83343,445097.952,83443,444997.952,60,36,50,0.166666666666667,17.819761539519,0.50976430976431,15,-0.0127733831339174,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0,0.333870117863019,0.165530920028687,0.360348818499561
+3662,83343,444997.952,83443,444897.952,61,36,47,0.1175,11.8801223828495,0.501925888439046,10,0.00601179467511884,0.105,10.5,4,74.7253002115051,0.763946809347706,5.75,1.52719370524089,0,-0.203397921596964,-0.452089339494705,0.402254066589563
+3663,83343,444897.952,83443,444797.952,62,36,33,0.0366666666666667,6.92413199132535,0.323394380900508,11.4418008781207,-0.00388508093295968,0.055,5.5,2,73.9871629170036,0.782135076252723,3.5,0.909090909090909,0,-0.909369096159935,-1.33566296100616,0.443762880408758
+3664,83343,444797.952,83443,444697.952,63,36,54,0.18,17.698944674023,0.440965282404323,11.6666666666667,-0.0213588754095326,0.045,4.5,4,58.0675381704942,0.534613147178592,1.75,0.277777777777778,0,-1.52194550302294,-1.70064663887024,0.340659006354596
+3665,83343,444697.952,83443,444597.952,64,36,30.5,0.0435714285714286,10.0587277986801,0.382836299502966,13.6593611611555,-0.021715283597805,0.0875,8.75,1,87.4704367425575,0.943316013226264,8.75,2.20203050885882,0,-1.98844051361084,-2.06885051727295,0.151238188911893
+3666,83343,444597.952,83443,444497.952,65,36,44.75,0.0559375,10.2914091550109,0.394443517282302,10.2950849718747,0.0105378555311108,0.2275,22.75,2,92.6034158693668,0.79224100043949,21,1.42857142857143,0,-2.0918108092414,-2.10695552825928,0.0287201204215461
+3667,83343,444497.952,83443,444397.952,66,36,24.25,0.0269444444444444,4.93435891776819,0.222656355989689,11.8528263839403,0.00597730291868629,0.09,9,3,76.9432185098331,0.725274725274725,5.75,0.833333333333333,0,-2.04733309480879,-2.09222006797791,0.0693067342855901
+3668,83343,444397.952,83443,444297.952,67,36,21,0.035,6.95275419200598,0.409229444113165,19.3633899812498,0.0123957070295364,0.11,11,2,84.9697428974216,0.787427877315518,8.75,1.5243424502286,0,-1.94450257221858,-2.02328491210938,0.082185387767737
+3669,83343,444297.952,83443,444197.952,68,36,22.75,0.0379166666666667,7.96191907422673,0.521427469135803,13.4158495946607,-0.00642230397219578,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,0.714285714285714,0,-1.89427235391405,-1.92658817768097,0.0553936163436366
+3670,83343,444197.952,83443,444097.952,69,36,25.25,0.0315625,5.23903609144117,0.248575498575499,16.3404419392554,-0.00429261466678327,0.055,5.5,2,72.9675780225572,0.813258636788049,3.75,0.227272727272727,0,-1.92730651299159,-1.96562874317169,0.0524143114614287
+3671,83343,444097.952,83443,443997.952,70,36,32.5,0.08125,12.7617525480473,0.431382793451759,12.00693909433,-0.00663589859074705,0.0975,9.75,1,88.4075627573592,0.948860004261666,9.75,0,0,-2.0269507434633,-2.09518694877625,0.0921706766884937
+3672,83343,443997.952,83443,443897.952,71,36,19.25,0.0213888888888889,4.39276603451314,0.187684041342578,15.0568232042968,-0.00975532974325688,0.065,6.5,2,76.2166124170089,0.817399243511152,4.25,4.94514934833233,0,-2.21268222729365,-2.3874077796936,0.180394579012765
+3673,83343,443897.952,83443,443797.952,72,36,5.5,0.00611111111111111,1.66655144518456,0.0848765432098765,16.4238714470567,-0.00226480246554274,0.0575,5.75,2,77.7607066677127,0.793692897141173,5,3.92504343779191,0,-2.55538601345486,-2.74103212356567,0.275337839086705
+3674,83343,443797.952,83443,443697.952,73,36,66,0.22,12.3758305566558,0.348005698005698,10.3934466291663,0.012233978701679,0.2175,21.75,5,86.0282026885184,0.826857672884675,16.25,0.632183908045977,0,-2.94436611731847,-3.04304051399231,0.152948114168949
+3675,83343,443697.952,83443,443597.952,74,36,86.25,0.8625,38.4252929556265,0.834782608695652,NA,0.0476727151981322,0.4225,42.25,3,93.995748423634,0.672549672549673,31,0.29585798816568,0,-3.12245779567295,-3.15953493118286,0.0704603390618847
+3676,83343,443597.952,83443,443497.952,75,36,42.25,0.140833333333333,16.5927624822575,0.42025632670794,10,0.0440504378514379,0.4425,44.25,5,89.6445012842432,0.731215973450721,17.75,4.28448282662085,0,-3.22082211573919,-3.2824239730835,0.0716362841271642
+3677,83343,443497.952,83443,443397.952,76,36,6,0.06,25.4547810683746,0.388888888888889,NA,-0.0142062098799488,0,0,0,NA,NA,0,NA,NA,-3.32614519861009,-3.37131690979004,0.0830416186277158
+3678,83343,443397.952,83443,443297.952,77,36,7,0.07,25.3971970335638,0.446428571428571,NA,2.19998990905879e-05,0.15,15,2,86.0979814327583,0.819004524886878,10.75,57.8782714207967,29.1547584533691,-3.3877805074056,-3.42431807518005,0.0665329637918317
+3679,83343,443297.952,83443,443197.952,78,36,0.75,0.0075,3.33333333333333,0.222222222222222,NA,0.0427109763484259,0.5775,57.75,1,98.3373505793708,0.901151855462046,57.75,68.3852783797623,25,-3.42755667368571,-3.43993806838989,0.035755090257395
+3680,83343,443197.952,83443,443097.952,79,36,0,NA,NA,NA,NA,-0.000592753972196078,0.2525,25.25,1,94.7890822083159,0.970435521720652,25.25,80.6212089085343,36.0555114746094,-3.42548902829488,-3.44197177886963,0.0330962036976291
+3681,83343,443097.952,83443,442997.952,80,36,0,NA,NA,NA,NA,-0.0421685529872775,0,0,0,NA,NA,0,NA,NA,-3.45680580536524,-3.49969887733459,0.0501984642688922
+3682,83343,442997.952,83443,442897.952,81,36,0,NA,NA,NA,NA,-0.0738616884313524,0,0,0,NA,NA,0,NA,NA,-3.53276006380717,-3.56104207038879,0.0462269592417988
+3683,83343,442897.952,83443,442797.952,82,36,0,NA,NA,NA,NA,-0.0671090559220465,0,0,0,NA,NA,0,NA,NA,-3.5645903746287,-3.57836747169495,0.0342706529928064
+3684,83343,442797.952,83443,442697.952,83,36,0,NA,NA,NA,NA,-0.0256689625791023,0,0,0,NA,NA,0,NA,NA,-3.55776270230611,-3.5678985118866,0.0327591484420515
+3685,83343,442697.952,83443,442597.952,84,36,0,NA,NA,NA,NA,-0.0556543688542797,0,0,0,NA,NA,0,NA,NA,-3.53391430775324,-3.55913233757019,0.0386648818588372
+3686,83343,442597.952,83443,442497.952,85,36,0.25,0.0025,0,0,NA,-0.0669821552378817,0,0,0,NA,NA,0,NA,NA,-3.48773678143819,-3.52169561386108,0.0501908023524581
+3687,83343,442497.952,83443,442397.952,86,36,4.75,0.02375,5.63782420789598,0.25,40.3112887414927,-0.057366705870445,0.0625,6.25,1,84.2105263157895,0.866666666666667,6.25,1.8,0,-3.46536813179652,-3.49114322662354,0.0394409182348408
+3688,83343,442397.952,83443,442297.952,87,36,26.25,0.2625,26.2920852299793,0.719047619047619,NA,0.0526661875577702,0.46,46,2,94.2930058855651,0.863834422657952,37.25,7.97775696671527,0,-3.48510199122959,-3.50900888442993,0.0351907128837114
+3689,83343,442297.952,83443,442197.952,88,36,30.25,0.15125,15.6208424699207,0.453781512605042,46.0977222864644,0.12754326548792,0.7675,76.75,1,99.2554721522595,0.947910853145813,76.75,9.28424251817337,0,-3.51467194159826,-3.53150510787964,0.0222608417943391
+3690,83343,442197.952,83443,442097.952,89,36,42.75,0.21375,24.2923013032151,0.728869565217391,41.2310562561766,0.0814509955091489,0.585,58.5,2,97.1321545887246,0.944859529651788,56.75,3.7444277543288,0,-3.4916684627533,-3.52950835227966,0.0659135031236619
+3691,83343,442097.952,83443,441997.952,90,36,39.5,0.131666666666667,18.1122856798251,0.571353436185133,23.7436854187255,0.0626463477969628,0.5,50,2,94.7368421052632,0.83288409703504,25,3.07547974586487,0,-3.44023807843526,-3.50061440467834,0.0957098421327828
+3692,83343,441997.952,83443,441897.952,91,36,23.25,0.2325,27.6654812315077,0.702508960573477,NA,0.0205226968221723,0.285,28.5,3,91.3475793886333,0.796320184669699,22.25,12.0133612448709,0,-3.40519094467163,-3.4624490737915,0.102103233621595
+3693,83343,441897.952,83443,441797.952,92,36,18.25,0.1825,24.0501937750943,0.655251141552511,NA,0.10162685971417,0.575,57.5,2,95.332841346355,0.835458658988071,36.5,37.8582616888958,0,-3.41156225734287,-3.45708084106445,0.0850789551921511
+3694,83343,441797.952,83443,441697.952,93,36,1.25,0.0125,5.57731388147087,0.3,NA,0.141700762759428,0.7675,76.75,2,97.6834254209594,0.873497786211259,71.5,61.9731082357102,0,-3.3990726073583,-3.44909048080444,0.0551365145517414
+3695,83343,441697.952,83443,441597.952,94,36,0,NA,NA,NA,NA,0.0942332396437632,0.555,55.5,1,98.1983573135366,0.962004016718233,55.5,60.3176275889079,25,-3.33788275718689,-3.3601450920105,0.039882399474033
+3696,83343,441597.952,83443,441497.952,95,36,6,0.01,2.83483221957359,0.19783950617284,22.1021619562686,-0.0171840394205228,0,0,0,NA,NA,0,NA,NA,-3.31797383228938,-3.35092687606812,0.0433235668491613
+3697,83343,441497.952,83443,441397.952,96,36,2.5,0.0125,5.29195249269421,0.239583333333333,20,-0.0413750877429266,0.045,4.5,1,80.4523936425773,1,4.5,88.9046991136339,78.1025009155273,-3.35799105962118,-3.40378046035767,0.0659383574639822
+3698,83343,441397.952,83443,441297.952,97,36,0,NA,NA,NA,NA,-0.0164591071206814,0.115,11.5,4,75.3125998384731,0.65232507605389,3.75,83.7401486272397,46.0977210998535,-3.36621958017349,-3.42080426216125,0.100967178412684
+3699,83343,441297.952,83443,441197.952,98,36,6.5,0.013,4.81137427792565,0.300854700854701,11.634413615168,0.0211098028554261,0.1475,14.75,4,80.891188306055,0.769995974929561,10.25,28.5395759970455,0,-3.21778951750861,-3.35857653617859,0.208525854537969
+3700,83343,441197.952,83443,441097.952,99,36,11.5789473684211,0.022,6.9374323516594,0.245238095238095,10.7082039324994,0.0208185148162738,0.2025,20.25,4,82.9132763346574,0.773598049460118,8.25,20.4438475149649,0,-3.12145133813222,-3.21170282363892,0.118936173677398
+3701,83443,451097.952,83543,450997.952,0,37,56.5,0.14125,13.1954544382228,0.500433201058201,15,0.0387126201013416,0.3225,32.25,4,89.4813012911474,0.824134411556882,21.25,0.348837209302326,0,0.250208984594792,0.0162031147629023,0.431520522973683
+3702,83443,450997.952,83543,450897.952,1,37,43,0.1075,10.3013081629837,0.377256944444444,17.9056941504209,0.0284603854620241,0.3675,36.75,1,96.5811989595545,0.964735442349795,36.75,0.858593220613441,0,1.35294966027141,0.593275368213654,0.921219471894226
+3703,83443,450897.952,83543,450797.952,2,37,15.25,0.1525,16.7949491127144,0.789617486338798,NA,0.00483180695700867,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,0.748171790171478,0,2.22582999865214,1.51810681819916,1.07574122959437
+3704,83443,450797.952,83543,450697.952,3,37,34,0.0566666666666667,9.64556533234676,0.321697130030463,16.620226591666,0.0179898017999221,0.105,10.5,3,81.5470286112894,0.842631206231804,7.75,2.22105407714844,0,2.02087510377169,1.06792747974396,1.13433395674674
+3705,83443,450697.952,83543,450597.952,4,37,45.5,0.091,13.5223092324898,0.416069416272256,14,0.00546115541787003,0.0525,5.25,1,82.2928536593692,0.967018469656992,5.25,0.238095238095238,0,1.48190327485402,0.945146441459656,0.965368503501868
+3706,83443,450597.952,83543,450497.952,5,37,40.75,0.0679166666666667,9.85335930758914,0.391323953823954,18.7267799624996,-0.0154479127788545,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,5,0,0.940805830061436,0.639312565326691,0.299121137195347
+3707,83443,450497.952,83543,450397.952,6,37,34.75,0.0496428571428571,10.0571420235559,0.363819176319176,14.2857142857143,0.0209582914781822,0.145,14.5,2,85.7532497382572,0.812865497076023,8,4.50419698912522,0,0.842674165964127,0.636105477809906,0.203279212778931
+3708,83443,450397.952,83543,450297.952,7,37,23.25,0.0290625,7.80765028294645,0.267418981481481,17.3657241914397,0.00925458051786336,0.0825,8.25,4,74.5419276988125,0.757795943082047,5.25,3.99570164535985,0,0.676874160766602,0.289568215608597,0.286527560532857
+3709,83443,450297.952,83543,450197.952,8,37,18,0.018,6.55539378496228,0.302242332830568,15.1446400994591,0.00692203277136286,0.095,9.5,5,73.9425352982044,0.614136630711216,4.25,7.97005573071932,0,0.589952449003855,0.163647249341011,0.441776025186216
+3710,83443,450197.952,83543,450097.952,9,37,17,0.02125,5.03825673373455,0.364273313492063,16.2704745330226,0.00862191260301188,0.095,9.5,4,76.5226441824495,0.789529071297027,6,6.39452678278873,0,0.510833653310935,0.191923871636391,0.397028531623237
+3711,83443,450097.952,83543,449997.952,10,37,54.25,0.5425,30.426434530676,0.887864823348694,NA,-0.0203908663477614,0,0,0,NA,NA,0,NA,NA,0.102930177468807,-0.323239505290985,0.431008354027619
+3712,83443,449997.952,83543,449897.952,11,37,44.25,0.22125,19.3037742437211,0.828957485300769,25,0.00656561731191459,0.1625,16.25,2,88.7194678318791,0.820367190595694,13,2.51702687190129,0,-0.129931815705883,-0.558398425579071,0.368006635745384
+3713,83443,449897.952,83543,449797.952,12,37,56.5,0.565,38.0242359833899,0.829646017699115,NA,0.023912560098297,0.2375,23.75,2,89.9765724510926,0.830279652844744,12.25,0.473684210526316,0,-0.092084864329081,-0.653508841991425,0.413833038146776
+3714,83443,449797.952,83543,449697.952,13,37,75.5,0.755,35.8357133301324,0.873068432671082,NA,0.0130891414531288,0.135,13.5,3,85.4797658144723,0.763813785816396,10.5,0.408723477964048,0,-0.0378508362919092,-0.518579542636871,0.424801787039426
+3715,83443,449697.952,83543,449597.952,14,37,77.5,0.3875,21.4438268868623,0.58374183006536,11.1803398874989,0.0492654414560457,0.5525,55.25,1,98.1823916421441,0.837283722948419,55.25,1.08389732740583,0,0.719575580675155,-0.175166979432106,0.740130851636913
+3716,83443,449597.952,83543,449497.952,15,37,64,0.106666666666667,8.03728316835618,0.317516069788797,10.7868932583326,0.0520821865396283,0.4375,43.75,4,92.4118246391356,0.785345717234262,32.75,1.93508348737444,0,1.23308947185675,0.751660406589508,0.445963760201891
+3717,83443,449497.952,83543,449397.952,16,37,64.5,0.215,14.8707987140361,0.578741965105601,10.3934466291663,0.0342933429991535,0.3375,33.75,6,87.0669252532718,0.809786777113054,22.25,1.08124019481518,0,0.358978476142511,0.0572907142341137,0.367492990085817
+3718,83443,449397.952,83543,449297.952,17,37,15.5,0.0221428571428571,4.73756223072779,0.258393458393458,20.0306446618369,0.0163564474655368,0.14,14,4,81.6730022365788,0.664349076959962,8.5,3.42027997970581,0,0.0811418375621239,-0.0905265808105469,0.160414318162852
+3719,83443,449297.952,83543,449197.952,18,37,27.75,0.0308333333333333,4.35095725860119,0.208098138245197,19.5884330647417,0.0181676899381819,0.1825,18.25,4,83.7801241193824,0.761085626911315,9.75,2.61157466940684,0,0.100019739824347,-0.101356565952301,0.206050012305328
+3720,83443,449197.952,83543,449097.952,19,37,51.75,0.129375,8.56712078903316,0.197508169934641,10.5901699437495,0.0423171856574481,0.435,43.5,5,93.4696553909781,0.823560223857966,38.25,2.93462060511797,0,0.259009288623929,0.0621235743165016,0.203570919461527
+3721,83443,449097.952,83543,448997.952,20,37,53,0.1325,17.7351506120117,0.610124666975559,10,0.0442031078608852,0.43,43,3,92.9564902822143,0.690076927334108,24,1.43852562128111,0,0.558903535207113,0.287573635578156,0.265674242328996
+3722,83443,448997.952,83543,448897.952,21,37,40.25,0.0805,10.7094343249025,0.324365079365079,14.0842599400831,0.0242413025822134,0.1675,16.75,8,76.498445221388,0.691999691999692,7.5,2.59979060158801,0,0.829441029578447,0.51264625787735,0.228689752998013
+3723,83443,448897.952,83543,448797.952,22,37,45.75,0.0571875,7.04895892108605,0.30480522021015,14.4423665786487,0.0419726431722302,0.4075,40.75,5,91.5319689458275,0.763713080168776,30.75,2.38831614862922,0,0.70197988829265,-0.0490995980799198,0.566367805273848
+3724,83443,448797.952,83543,448697.952,23,37,30.25,0.0605,10.6200207631636,0.307258771929825,12.3650581819917,0.0955878919360112,0.55,55,2,96.7840818735015,0.83739837398374,52.25,9.4322171384638,0,0.129534412524663,-0.373114973306656,0.570968247317208
+3725,83443,448697.952,83543,448597.952,24,37,23.75,0.0197916666666667,3.41077699183684,0.166795441982009,16.02127810065,0.0336560087226826,0.335,33.5,2,93.1006098568339,0.827437446074202,26,4.51468840641762,0,-0.331972819132109,-0.555870711803436,0.307080030164747
+3726,83443,448597.952,83543,448497.952,25,37,16.75,0.0558333333333333,13.2313116053713,0.440716690716691,40.2368927062182,-0.0139225601621729,0.03,3,1,74.8763016215986,0.878714372346877,3,3.92258898417155,0,-0.660175010561943,-0.736989140510559,0.117626600396231
+3727,83443,448497.952,83543,448397.952,26,37,16.5,0.055,6.22589554318821,0.363201911589008,30.1083800452057,-0.0328842021334276,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,15.4429086797378,7.07106781005859,-0.771297360459963,-0.792872607707977,0.0274491622543292
+3728,83443,448397.952,83543,448297.952,27,37,18.25,0.1825,18.4836054864801,0.821917808219178,NA,-0.0255420365775717,0,0,0,NA,NA,0,NA,NA,-0.767331916838884,-0.798382759094238,0.0349050439571586
+3729,83443,448297.952,83543,448197.952,28,37,22.75,0.0284375,7.12033097422828,0.29083820662768,14.4556188778075,-0.0161603765604013,0,0,0,NA,NA,0,NA,NA,-0.668608988324801,-0.747687220573425,0.118625574853222
+3730,83443,448197.952,83543,448097.952,29,37,7.75,0.0096875,3.04972303491404,0.190972222222222,24.0338864400367,0.000794775342997127,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-0.348523757886142,-0.576528072357178,0.258000174933675
+3731,83443,448097.952,83543,447997.952,30,37,33.75,0.1125,10.2349868047703,0.411538461538462,26.3504161265111,0.0244136812802026,0.1675,16.75,2,90.5534564163247,0.784399784399784,15.75,3.34654976004985,0,0.116682027738231,-0.00701411534100771,0.218786252988872
+3732,83443,447997.952,83543,447897.952,31,37,29.5,0.0226923076923077,4.8381503484469,0.296719330052663,10.500216569133,0.0211778357275216,0.0725,7.25,5,67.3197040443909,0.632964386075586,3.25,3.1859842497727,0,0.372590797642867,0.286227762699127,0.112011224971886
+3733,83443,447897.952,83543,447797.952,32,37,30.5,0.0254166666666667,3.59741233321792,0.129607155699389,14.3500095445789,0.0181739907589173,0.0825,8.25,7,59.8762284075553,0.495408214754264,3,2.03245660030481,0,0.403124054893851,0.314902305603027,0.0651874247116619
+3734,83443,447797.952,83543,447697.952,33,37,16.25,0.0108333333333333,3.42060253893127,0.205890313390313,13.4653986804795,0.0265650078120962,0.165,16.5,6,76.9292404264908,0.718823223118979,7,5.21967081590132,0,0.369480279584726,0.291937559843063,0.098100097712148
+3735,83443,447697.952,83543,447597.952,34,37,19.5,0.015,3.43356926420797,0.184918505267342,13.0569880088967,0.0193551696062241,0.0575,5.75,5,62.140590637079,0.587385794282346,2.75,3.65835372261379,0,0.49412702396512,0.321115225553513,0.152098282403593
+3736,83443,447597.952,83543,447497.952,35,37,35.5,0.0322727272727273,6.60176995391821,0.215316627816628,11.3636363636364,0.0360802222214625,0.255,25.5,5,88.7017043151828,0.728609674698353,19.5,2.53536026150573,0,0.706605936090151,0.544283390045166,0.160682969550638
+3737,83443,447497.952,83543,447397.952,36,37,45,0.15,15.7499015155917,0.519725239023485,11.6666666666667,0.0497414472688979,0.4625,46.25,2,95.0920257784979,0.749762001903985,34.25,1.42315822292019,0,0.932838756591082,0.751566529273987,0.160477002837225
+3738,83443,447397.952,83543,447297.952,37,37,93.25,0.9325,37.6069983138497,0.895889186773905,NA,0.029385503991507,0.2175,21.75,10,72.7804620615284,0.628980727610018,5,0.655989285173087,0,1.26944185296694,1.09799754619598,0.194206936839803
+3739,83443,447297.952,83543,447197.952,38,37,72,0.36,19.561918208657,0.500582750582751,10,0.043017627968643,0.455,45.5,3,93.7652817876832,0.776767484278442,23.25,0.940731886978988,0,1.45158506184816,1.32911670207977,0.113521870529731
+3740,83443,447197.952,83543,447097.952,39,37,35.75,0.0715,8.61751559698561,0.25328320802005,10,0.04230933585537,0.415,41.5,3,95.5649968702945,0.837997877213564,39.75,1.35199847853327,0,1.48185715079308,1.26909720897675,0.176615913483491
+3741,83443,447097.952,83543,446997.952,40,37,38.25,0.03825,6.20726210187125,0.326835973195248,11.5901699437495,0.0275911245800899,0.15,15,9,66.9530588439498,0.558823529411765,3,5.28872146606445,0,1.35619334131479,1.04842615127563,0.285856613490196
+3742,83443,446997.952,83543,446897.952,41,37,40.5,0.045,5.89440514963194,0.223531194885362,12.0959439081919,0.018865995565684,0.1775,17.75,2,91.9491358603769,0.854103343465046,17.5,0.492957746478873,0,1.1726039648056,0.883734583854675,0.332565437828523
+3743,83443,446897.952,83543,446797.952,42,37,37.25,0.0745,10.234425360158,0.363888888888889,23.5141550116265,0.0235746276770078,0.1825,18.25,4,86.6189836100404,0.761085626911315,14.25,1.10030788264862,0,0.837745660915971,0.408540099859238,0.374097155816811
+3744,83443,446797.952,83543,446697.952,43,37,13.5,0.016875,5.00665643790424,0.220486111111111,12.8436394909145,0.0207993350947618,0.1475,14.75,4,86.9274457567348,0.746995572422517,13,5.85738802764375,0,0.470386524995168,0.168929129838943,0.323043337698756
+3745,83443,446697.952,83543,446597.952,44,37,3.25,0.00541666666666667,2.04681482514651,0.0694444444444444,23.9582221227173,0.00436643258890399,0,0,0,NA,NA,0,NA,NA,0.221786102280021,0.0716741159558296,0.205337089615573
+3746,83443,446597.952,83543,446497.952,45,37,13.5,0.03375,6.04122550564585,0.276268115942029,20.5901699437495,-0.00147670364733358,0.05,5,2,72.3925942250362,0.728353140916808,3,14.7147754669189,0,0.120967646595091,0.031873919069767,0.108521321627513
+3747,83443,446497.952,83543,446397.952,46,37,20.25,0.03375,8.23903252092409,0.451296493808571,17.3643284474928,0.022228529445747,0.2325,23.25,4,87.0294540157517,0.843020289627566,12.25,4.28110955351142,0,0.173650703392923,0.0374787449836731,0.195380866892712
+3748,83443,446397.952,83543,446297.952,47,37,61.5,0.1025,10.975441263052,0.400018456995201,10.8333333333333,-0.0107358637291327,0.1775,17.75,4,81.5498698472521,0.756838905775076,8.25,1.28469300605881,0,0.275157320778817,0.0636683478951454,0.295010835086212
+3749,83443,446297.952,83543,446197.952,48,37,64.25,0.160625,9.95654682312958,0.279761904761905,11.4528470752105,0.0426890215765161,0.3975,39.75,4,95.1013478048087,0.761268686409367,36.75,1.13431030849241,0,0.471270898357034,0.0945628508925438,0.331209709860872
+3750,83443,446197.952,83543,446097.952,49,37,35.25,0.0503571428571429,8.39487410259104,0.434765139075484,13.4629942589881,0.0231391830963457,0.1625,16.25,6,78.6877185005255,0.756967375511821,8.5,2.6522083575909,0,0.424653715395834,0.00670812930911779,0.337695663294113
+3751,83443,446097.952,83543,445997.952,50,37,29.5,0.0491666666666667,6.80031783918131,0.328551078551079,16.818213402059,0.0126234069149314,0.1175,11.75,3,81.3981254480752,0.759206798866855,5.75,2.53493905574717,0,0.0883112042210996,-0.0703819617629051,0.238879680273151
+3752,83443,445997.952,83543,445897.952,51,37,42,0.0466666666666667,6.21033635325995,0.212934414373263,13.3821995222204,0.0196209528458439,0.1475,14.75,2,87.3090378790321,0.873497786211259,12.25,1.73001809847557,0,-0.00629961502272636,-0.0762941315770149,0.14927056760839
+3753,83443,445897.952,83543,445797.952,52,37,31,0.062,11.6832754181964,0.391632996632997,14.2360679774998,0.0310377009689228,0.2925,29.25,4,92.1198153205153,0.799986665777719,25.75,4.07062315329527,0,0.0381589711178094,-0.0247311070561409,0.145441277377992
+3754,83443,445797.952,83543,445697.952,53,37,52.5,0.13125,11.0192377961845,0.414099326599327,11.7479320470852,0.0352993186612002,0.34,34,4,93.1346892032082,0.786168132942326,30,1.81276234458475,0,0.223898533738975,-0.0193361788988113,0.282071839593025
+3755,83443,445697.952,83543,445597.952,54,37,30.75,0.03075,4.72185312220031,0.239126984126984,12.9142135623731,-0.00121299434220418,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,0.961538461538462,0,0.289869029695789,0.0352089591324329,0.314422230667392
+3756,83443,445597.952,83543,445497.952,55,37,42.5,0.085,12.5059363933661,0.341062801932367,10,-0.0149866240068695,0,0,0,NA,NA,0,NA,NA,0.410363810757796,0.128905817866325,0.394154215611026
+3757,83443,445497.952,83543,445397.952,56,37,48.25,0.0689285714285714,6.98665314872131,0.273567305710163,14.0772885232138,0.00607982282521334,0.0975,9.75,2,86.2765838040978,0.778393351800554,9.25,1.90850634452624,0,0.639752104878426,0.311552107334137,0.348546438194774
+3758,83443,445397.952,83543,445297.952,57,37,42.5,0.141666666666667,14.9963756137857,0.386395601585475,15,0.023125719693885,0.19,19,7,79.4954023665047,0.705177814630551,9.5,1.81205287732576,0,0.711893583337466,0.28493532538414,0.428973587375588
+3759,83443,445297.952,83543,445197.952,58,37,61.25,0.30625,18.1419703555058,0.590248962655602,18.0277563773199,0.0412159357461496,0.415,41.5,3,96.0343831793363,0.759789955868387,40,1.67076546312815,0,0.518804599996656,-0.0836346745491028,0.518915428151159
+3760,83443,445197.952,83543,445097.952,59,37,36.75,0.091875,9.61092277836806,0.247562056737589,19.6352549156242,0.0362932004935647,0.3225,32.25,3,94.9544681189962,0.767606186700165,31.25,1.69212613364523,0,0.317845425878962,-0.295598179101944,0.614044127398004
+3761,83443,445097.952,83543,444997.952,60,37,20,0.025,4.2197576704088,0.230742872807018,17.2987525693222,0.00985307135657422,0.125,12.5,4,79.8444977847766,0.757983193277311,7.25,1.78284271240234,0,0.0140799949876964,-0.666631996631622,0.612475632876864
+3762,83443,444997.952,83543,444897.952,61,37,16,0.02,3.9965072328157,0.202664399092971,11.1690509954173,0.0129209012369597,0.115,11.5,2,83.5989703784527,0.855135448355787,8,4.24614077029021,0,-0.548437751208742,-1.06467437744141,0.55715197629296
+3763,83443,444897.952,83543,444797.952,62,37,22.5,0.028125,5.41738373422083,0.233005401234568,12.4190509954173,0.000847071435928228,0.0075,0.75,3,0,1,0.25,0,0,-1.27959671989083,-1.71403348445892,0.453051730321177
+3764,83443,444797.952,83543,444697.952,63,37,25.25,0.0360714285714286,9.78579776725178,0.364798864798865,11.220145666071,-0.0251179469494673,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,0.833333333333333,0,-1.81816271940867,-1.96462690830231,0.238588698853795
+3765,83443,444697.952,83543,444597.952,64,37,30,0.075,11.7168192878018,0.367049808429119,14.5710678118655,-0.000803060464249938,0.0875,8.75,1,87.4704367425575,0.962210675484176,8.75,1.68977530343192,0,-2.03098303079605,-2.06905221939087,0.0657405629903008
+3766,83443,444597.952,83543,444497.952,65,37,33.5,0.0257692307692308,5.44028710160311,0.174305484817164,11.2410664470824,0.0268511702035539,0.2525,25.25,5,87.5288213924638,0.770875293335058,15,1.90169374069365,0,-2.05602985620499,-2.0789098739624,0.0335930766356386
+3767,83443,444497.952,83543,444397.952,66,37,29.75,0.0495833333333333,9.32446102624028,0.512359168609169,15.0592231765546,0.0188796728495822,0.1825,18.25,5,87.0893501979634,0.808868501529052,15.75,1.02739726027397,0,-1.99064947168032,-2.0348117351532,0.0657950902361649
+3768,83443,444397.952,83543,444297.952,67,37,40.5,0.0578571428571429,5.86113206357621,0.276299062450342,11.5971914124998,0.0085184321054976,0.11,11,1,89.3941397590651,0.893713938657759,11,2.15909090909091,0,-1.86548877507448,-1.93023633956909,0.0807820012544921
+3769,83443,444297.952,83543,444197.952,68,37,19.25,0.0128333333333333,3.20526968343743,0.200833333333333,10.3934466291663,-0.014308930873799,0,0,0,NA,NA,0,NA,NA,-1.76192340254784,-1.82598781585693,0.0885368441784261
+3770,83443,444197.952,83543,444097.952,69,37,38.5,0.09625,7.94903420464034,0.224166666666667,11.25,0.0113257386928672,0.0825,8.25,3,77.969194715952,0.777979614491876,6,1.33764047333688,0,-1.84293915331364,-1.93535280227661,0.112957386928396
+3771,83443,444097.952,83543,443997.952,70,37,14,0.035,8.74813413435228,0.45247113997114,12.9056941504209,-0.0107007635799641,0,0,0,NA,NA,0,NA,NA,-2.05732395251592,-2.15074515342712,0.14152425612215
+3772,83443,443997.952,83543,443897.952,71,37,25.75,0.0429166666666667,7.56444450208348,0.339140019937121,11.33795939622,0.0136424503294256,0.1175,11.75,3,80.7848086016422,0.787535410764873,6,3.00453624319523,0,-2.36271859705448,-2.57601094245911,0.217085315321647
+3773,83443,443897.952,83543,443797.952,72,37,17.5,0.035,6.36114070864741,0.303888888888889,20.5432037668651,-0.0194230496666319,0,0,0,NA,NA,0,NA,NA,-2.76185786724091,-2.93806123733521,0.232560132252891
+3774,83443,443797.952,83543,443697.952,73,37,45.75,0.22875,25.2835889401132,0.77302357113058,50,0.0337802504786669,0.41,41,2,94.6624648737291,0.921427769671119,36,0.457317073170732,0,-3.02026224136353,-3.09582376480103,0.0989315210610858
+3775,83443,443697.952,83543,443597.952,74,37,92.75,0.9275,38.3897083110565,0.880503144654088,NA,0.0662305622905842,0.655,65.5,2,96.0960860970316,0.834705864990112,39,0.17175572519084,0,-3.09642785787582,-3.11509537696838,0.03306010801587
+3776,83443,443597.952,83543,443497.952,75,37,51.5,0.515,30.3252535009274,0.860032362459547,NA,0.0524774099034403,0.455,45.5,2,95.1905755044986,0.831214439332481,40.5,0.423467405549772,0,-3.13465498387814,-3.19017362594604,0.0410968974853766
+3777,83443,443497.952,83543,443397.952,76,37,0,NA,NA,NA,NA,-0.0605325603612437,0,0,0,NA,NA,0,NA,NA,-3.17537927627563,-3.24833416938782,0.0676158861242605
+3778,83443,443397.952,83543,443297.952,77,37,0.5,0.005,2.5,0.166666666666667,NA,-0.0728075636038557,0.13,13,1,90.6657843098624,0.922510654784967,13,67.0504561937772,20,-3.23638661702474,-3.32817387580872,0.0843089828183013
+3779,83443,443297.952,83543,443197.952,78,37,4.75,0.0475,16.8633434327778,0.43859649122807,NA,0.00511437469671364,0.4,40,1,96.9413745785043,0.96031746031746,40,49.2047668933868,10,-3.31694163382053,-3.39048147201538,0.071330425540687
+3780,83443,443197.952,83543,443097.952,79,37,0.5,0.0025,0,0,20.6155281280883,-0.0608702421111593,0,0,0,NA,NA,0,NA,NA,-3.34345368544261,-3.3905508518219,0.0547385322932523
+3781,83443,443097.952,83543,442997.952,80,37,0,NA,NA,NA,NA,-0.0472602090390319,0,0,0,NA,NA,0,NA,NA,-3.37399806082249,-3.453852891922,0.0652376852979404
+3782,83443,442997.952,83543,442897.952,81,37,2,0.01,4.07201091049247,0.154761904761905,15.8113883008419,-0.0709430204465752,0,0,0,NA,NA,0,NA,NA,-3.41275701920191,-3.50073289871216,0.0893306927884335
+3783,83443,442897.952,83543,442797.952,82,37,1,0.01,5,0.25,NA,-0.0821604650818335,0,0,0,NA,NA,0,NA,NA,-3.41033479571342,-3.51620006561279,0.12640552385621
+3784,83443,442797.952,83543,442697.952,83,37,0.25,0.0025,0,0,NA,-0.0561664300521079,0,0,0,NA,NA,0,NA,NA,-3.40329943100611,-3.51488494873047,0.132794865293543
+3785,83443,442697.952,83543,442597.952,84,37,0,NA,NA,NA,NA,-0.0259331865430795,0,0,0,NA,NA,0,NA,NA,-3.42646852135658,-3.49658870697021,0.084017968843224
+3786,83443,442597.952,83543,442497.952,85,37,0,NA,NA,NA,NA,-0.0161968160272068,0,0,0,NA,NA,0,NA,NA,-3.42488050460815,-3.45287156105042,0.0326006488732034
+3787,83443,442497.952,83543,442397.952,86,37,0,NA,NA,NA,NA,-0.0465108495298773,0,0,0,NA,NA,0,NA,NA,-3.42180849611759,-3.44019818305969,0.0203761292305722
+3788,83443,442397.952,83543,442297.952,87,37,0,NA,NA,NA,NA,-0.0520648229122162,0,0,0,NA,NA,0,NA,NA,-3.44090553124746,-3.46781158447266,0.0264181016544379
+3789,83443,442297.952,83543,442197.952,88,37,0,NA,NA,NA,NA,-0.0248192972799734,0.0975,9.75,1,88.4075627573592,0.86362667803111,9.75,37.2877033429268,15.8113880157471,-3.49322763085365,-3.53503441810608,0.0393681956297514
+3790,83443,442197.952,83543,442097.952,89,37,1,0.01,4.34942231976673,0.291666666666667,NA,0.0563023523622542,0.5725,57.25,1,98.3071726267885,0.874001944752592,57.25,27.0386163303425,0,-3.53824057181676,-3.54805207252502,0.0193113866398107
+3791,83443,442097.952,83543,441997.952,90,37,16.25,0.1625,24.0464102668512,0.671794871794872,NA,0.1464277592898,0.865,86.5,1,99.6041754676792,0.762147468569487,86.5,26.8896916670606,0,-3.52037022511164,-3.54105639457703,0.0304988042909658
+3792,83443,441997.952,83543,441897.952,91,37,33,0.33,29.5532880888786,0.755050505050505,NA,0.108503250283684,0.78,78,1,99.3038050834495,0.80674087816945,78,10.610048532486,0,-3.49823538959026,-3.50935387611389,0.0202847806365406
+3793,83443,441897.952,83543,441797.952,92,37,39.25,0.19625,20.6349464455894,0.687469586374696,41.2310562561766,0.0732711103846668,0.62,62,1,98.5789406842005,0.977313974591652,62,4.47404143118089,0,-3.47696971893311,-3.49115252494812,0.0301119619557379
+3794,83443,441797.952,83543,441697.952,93,37,43.25,0.21625,25.9722460204328,0.725267737617135,42.7200187265877,0.0371315643940761,0.4225,42.25,2,93.7310764104156,0.833499833499833,27.75,1.77217440633379,0,-3.3867943584919,-3.45558452606201,0.08138391594144
+3795,83443,441697.952,83543,441597.952,94,37,24.25,0.0808333333333333,10.2118374991487,0.285460992907801,39.6259165950756,0.0311757143017894,0.3475,34.75,3,91.4086058309712,0.78881950101065,21,11.9932800402744,0,-3.24384830395381,-3.33971524238586,0.101290032061201
+3796,83443,441597.952,83543,441497.952,95,37,25.25,0.0315625,5.37289147460718,0.249007936507937,17.2904050473479,0.00773590478864207,0.1925,19.25,1,93.2673077410907,0.881624476415953,19.25,5.15457128549551,0,-3.1746641844511,-3.25836968421936,0.0860295566636065
+3797,83443,441497.952,83543,441397.952,96,37,6.5,0.0108333333333333,3.15162477822992,0.146604938271605,25.7144173017784,-0.000138158596673748,0.115,11.5,2,83.5580835324086,0.782703172533681,6.75,21.0799056758051,0,-3.21770497163137,-3.3018639087677,0.0945789215940949
+3798,83443,441397.952,83543,441297.952,97,37,0,NA,NA,NA,NA,-0.00833329860757658,0.0375,3.75,1,78.0843273950357,0.811097992916175,3.75,31.9469342549642,18.0277557373047,-3.27015556395054,-3.30042672157288,0.0639527794763823
+3799,83443,441297.952,83543,441197.952,98,37,7.75,0.00861111111111111,2.84461587929039,0.130401234567901,13.6822226852519,-0.018826180912115,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-3.05656985441844,-3.17881894111633,0.169530077740358
+3800,83443,441197.952,83543,441097.952,99,37,7.36842105263158,0.00875,2.8860909623873,0.152777777777778,14.4877124296868,-0.0533137015903776,0.0025,0.25,1,0,NA,0.25,0,0,-3.06338159739971,-3.22048044204712,0.130058495136257
+3801,83543,451097.952,83643,450997.952,0,38,36,0.36,34.1930658763755,0.783564814814815,NA,0.032677023213098,0.34,34,3,94.3347599428561,0.847262952101662,32.25,1.84378318225636,0,0.165764653900017,-0.00570606766268611,0.430701696480839
+3802,83543,450997.952,83643,450897.952,1,38,15.5,0.0775,11.7574022350414,0.704916360669115,86.0232526704263,0.00384703059149615,0.1925,19.25,4,82.620448102437,0.717719905299581,7,12.4126953521332,0,2.38630516330401,0.681455254554749,2.08656869753326
+3803,83543,450897.952,83643,450797.952,2,38,73.5,0.735,36.648099572172,0.834467120181406,NA,0.0763198839651886,0.8,80,1,99.3787684802637,0.875827814569537,80,0.740847086906433,0,1.11499515175819,0.388645619153976,1.50978291023214
+3804,83543,450797.952,83643,450697.952,3,38,96.75,0.9675,37.8724591586968,0.917743324720069,NA,0.0203633335098857,0.3425,34.25,3,92.2442682866859,0.83574144486692,21.5,0.109489051094891,0,0.466714727381865,0.0803201571106911,0.659102518421414
+3805,83543,450697.952,83643,450597.952,4,38,85.5,0.4275,19.0240356489708,0.437438905180841,11.1803398874989,-0.01734973957693,0.0675,6.75,2,76.6536165090006,0.800486314608143,3.75,2.56081983778212,0,0.511503746112188,0.352444291114807,0.352104810610069
+3806,83543,450597.952,83643,450497.952,5,38,94.25,0.47125,18.8481264427199,0.457446808510638,10,-0.0333057194957291,0.0825,8.25,2,82.3599866446219,0.899081642950853,7.5,1.70343040697502,0,0.500243914624055,0.408841550350189,0.124459399991835
+3807,83543,450497.952,83643,450397.952,6,38,87.75,0.8775,38.2872341342388,0.86039886039886,NA,0.00439075733185746,0.2125,21.25,3,90.7152121021987,0.831809103332282,19.25,1.46049571317785,0,0.493071609073215,0.325080335140228,0.213616624893445
+3808,83543,450397.952,83643,450297.952,7,38,62,0.124,12.1579947942084,0.500719822812846,12.5366310572456,0.00281262474360119,0.0525,5.25,2,77.3416134336187,0.83509234828496,4.75,0.238095238095238,0,0.171874660998583,-0.0982588976621628,0.301364614182857
+3809,83543,450297.952,83643,450197.952,8,38,85.25,0.8525,37.3954218882664,0.886119257086999,NA,-0.024053042346045,0.0125,1.25,1,58.1880425789518,1,1.25,0,0,-0.164852590196662,-0.284722328186035,0.245231662316045
+3810,83543,450197.952,83643,450097.952,9,38,35,0.04375,7.63543106176274,0.358351236243027,10.2950849718747,-0.0114307410057518,0.0575,5.75,2,76.7307922521525,0.882110226937813,5,3.87574502696162,0,-0.0702674877312448,-0.188934132456779,0.257591643519973
+3811,83543,450097.952,83643,449997.952,10,38,0.75,0.00375,1.25,0.0833333333333333,10,-0.00513609366649575,0.0025,0.25,1,0,NA,0.25,35,35,0.0221943407474707,-0.146628424525261,0.223586664323714
+3812,83543,449997.952,83643,449897.952,11,38,6.25,0.0104166666666667,4.20491058483281,0.241975308641975,16.1326446692645,-0.0114283475570846,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,9.02368927001953,7.07106781005859,0.139391263222529,0.0155653199180961,0.185718319687312
+3813,83543,449897.952,83643,449797.952,12,38,36.5,0.09125,8.60952390428727,0.382248580697486,21.373774391991,-0.0119551384913575,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,8.3983455657959,0,0.245380381122231,0.0877550467848778,0.22748179334813
+3814,83543,449797.952,83643,449697.952,13,38,59.75,0.149375,11.658812164804,0.363472222222222,16.4528470752105,-0.0164499226694443,0.0325,3.25,6,36.3623845194002,0.368360608670686,0.75,13.0397660182073,7.07106781005859,0.238426766461796,0.0776182562112808,0.239252139555074
+3815,83543,449697.952,83643,449597.952,14,38,32.5,0.040625,4.99004887456596,0.212214781746032,15.7056188778075,-0.00786863203484245,0.0475,4.75,6,49.520790239472,0.565571544936193,2.25,2.32327029579564,0,0.200872453841536,-0.0953215137124062,0.522762100403943
+3816,83543,449597.952,83643,449497.952,15,38,23.5,0.0146875,3.73098928222422,0.184185711631364,12.2438562148434,0.0346634625752631,0.35,35,6,92.9966029642039,0.849759615384615,32.5,5.35906306675502,0,0.340962378515138,-0.100698381662369,0.790026491522534
+3817,83543,449497.952,83643,449397.952,16,38,13.5,0.016875,5.4141445274741,0.2813013136289,22.7407280044591,0.0183197134359852,0.095,9.5,8,62.7666589603867,0.614136630711216,3.25,9.96293273725008,0,0.124585760873742,-0.0805316492915154,0.296135331072231
+3818,83543,449397.952,83643,449297.952,17,38,9,0.01125,4.70791270771691,0.247048611111111,20.1798520785581,0.0205329846820541,0.0625,6.25,8,52.2609745942464,0.44,2.25,8.00003196716309,0,0.174228238562743,0.0495632812380791,0.151839825025968
+3819,83543,449297.952,83643,449197.952,18,38,14.75,0.0113461538461538,3.33247968134547,0.236009361009361,13.1452374546281,0.0242843682690727,0.115,11.5,7,76.9568865885954,0.637838620889468,7.75,9.10378447822903,0,0.293478682637215,0.169348508119583,0.132143058281696
+3820,83543,449197.952,83643,449097.952,19,38,10.5,0.02625,6.86451714743034,0.277314814814815,28.9528470752105,0.0150652813566376,0.05,5,3,64.9446155287094,0.728353140916808,2.5,8.45673542022705,0,0.438964575529099,0.388805210590363,0.114576455541368
+3821,83543,449097.952,83643,448997.952,20,38,8.75,0.00875,3.86538461538462,0.164102564102564,13.5901699437495,0.0101614135392811,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,2,0,0.584308793147405,0.475409001111984,0.162400791145741
+3822,83543,448997.952,83643,448897.952,21,38,19.25,0.0240625,5.47662213285286,0.276444091149973,15.6304793826532,0.0174444754800697,0.165,16.5,5,77.8450416401321,0.718823223118979,8.25,3.06706677061139,0,0.832770695288976,0.699599742889404,0.138876713380818
+3823,83543,448897.952,83643,448797.952,22,38,22.25,0.02225,4.47884752436247,0.264761904761905,12.2082039324994,0.0112302756158715,0.125,12.5,3,83.5128282347047,0.878991596638656,10.5,5.7779271697998,0,0.978055397669474,0.919544219970703,0.102464936733078
+3824,83543,448797.952,83643,448697.952,23,38,23.5,0.0156666666666667,4.52033336930787,0.240019063180828,11.7812848344459,0.0209456609760673,0.1325,13.25,2,85.405896718819,0.885992969566457,10.25,2.09836232887124,0,0.666774705052376,0.307006299495697,0.378455746871562
+3825,83543,448697.952,83643,448597.952,24,38,31.25,0.0240384615384615,5.50870071059631,0.269439961747654,12.1593531875804,0.00436587785603479,0.1275,12.75,3,81.5348893216212,0.776043210486447,6.5,1.74788501215916,0,-0.1287654493418,-0.338812232017517,0.41296606562614
+3826,83543,448597.952,83643,448497.952,25,38,15.75,0.0196875,5.20470341854972,0.283279718137255,15.3825505836011,-0.0277239577648834,0,0,0,NA,NA,0,NA,NA,-0.604068254431089,-0.723527729511261,0.161500203961331
+3827,83543,448497.952,83643,448397.952,26,38,0,NA,NA,NA,NA,-0.0351791635656946,0,0,0,NA,NA,0,NA,NA,-0.758778638309903,-0.791331112384796,0.0521559890210187
+3828,83543,448397.952,83643,448297.952,27,38,0,NA,NA,NA,NA,-0.0360844578717024,0,0,0,NA,NA,0,NA,NA,-0.778326104084651,-0.797616899013519,0.032491406170449
+3829,83543,448297.952,83643,448197.952,28,38,8.5,0.0121428571428571,3.56907218151366,0.207057823129252,17.6053170092128,-0.0165782829136697,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.703555285930634,-0.749537229537964,0.0867867798713478
+3830,83543,448197.952,83643,448097.952,29,38,38.75,0.0430555555555556,6.60705525732953,0.320925428116288,14.0200377652777,-0.00496252216154744,0.035,3.5,2,71.6522426099107,0.844559585492228,3.25,0.357142857142857,0,-0.446851458400488,-0.596128046512604,0.212813348450531
+3831,83543,448097.952,83643,447997.952,30,38,63,0.315,18.0184354369023,0.406042496679947,15,-0.0307826932278113,0.015,1.5,2,46.1375166841518,0.564902102973169,1,0,0,-0.0210411968227062,-0.24384106695652,0.31474667751988
+3832,83543,447997.952,83643,447897.952,31,38,24.25,0.0269444444444444,4.08545378810592,0.198907882241216,12.362275461172,0.00646824951145732,0.0325,3.25,5,46.7891302011801,0.540625897215045,1.75,2.3550406235915,0,0.285756638480557,0.102078668773174,0.248758029707296
+3833,83543,447897.952,83643,447797.952,32,38,13.5,0.00675,2.48371470002704,0.0984126984126984,11.7092985342478,0.0169564208393422,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172,0.423199892044067,0.291109919548035,0.116634656728526
+3834,83543,447797.952,83643,447697.952,33,38,9,0.00818181818181818,3.0073052268039,0.197186147186147,14.5647327768386,0.0270152794316209,0.1475,14.75,4,83.452690211427,0.70099476740843,10.25,9.98875714964786,0,0.468380156490538,0.446917444467545,0.0547193759414498
+3835,83543,447697.952,83643,447597.952,34,38,14.75,0.00867647058823529,2.31123827408928,0.151143790849673,12.6901399388043,0.0195012591124578,0.065,6.5,3,77.6859806194748,0.713055954088953,5.5,6.49601378807655,0,0.573166017731031,0.50888329744339,0.0930658489127704
+3836,83543,447597.952,83643,447497.952,35,38,13.75,0.0105769230769231,3.13601390054482,0.202716727716728,14.7661280215206,0.0139374053238953,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,4.41421356201172,0,0.717914044857025,0.628076374530792,0.121268957639251
+3837,83543,447497.952,83643,447397.952,36,38,14.25,0.00890625,2.43524304967435,0.168055555555556,13.2298961373273,0.0189584473598734,0.12,12,5,73.0804530961048,0.653547671840355,4.25,4.52381038665771,0,0.889057258764903,0.761782586574554,0.149900025700913
+3838,83543,447397.952,83643,447297.952,37,38,19,0.0135714285714286,3.71429698758107,0.180851434140908,11.3823148545242,0.0243090497466346,0.14,14,6,77.0055309329637,0.748261807719971,9.25,4.41393981661115,0,1.0774000287056,0.948034822940826,0.196461886267541
+3839,83543,447297.952,83643,447197.952,38,38,8,0.00727272727272727,2.34493471279764,0.165656565656566,14.9343007113834,0.014128248912275,0.03,3,6,33.3339461453335,0.332929047907823,0.75,10.4044205347697,0,1.29842889308929,1.09474742412567,0.219697882548824
+3840,83543,447197.952,83643,447097.952,39,38,11,0.00916666666666667,2.28366662930899,0.13712962962963,17.3443147315637,0.0265910108989738,0.1525,15.25,3,88.3089212192867,0.710580508710414,13.25,5.08223949494909,0,1.53166066275703,1.40399253368378,0.168383746739229
+3841,83543,447097.952,83643,446997.952,40,38,11,0.00916666666666667,2.88777156088148,0.154320987654321,14.1779310167906,0.0229929104809935,0.1625,16.25,5,80.0568309728109,0.756967375511821,8.5,12.1616407541128,0,1.57245035966237,1.44949984550476,0.136301803904643
+3842,83543,446997.952,83643,446897.952,41,38,22.75,0.0189583333333333,4.44333518308389,0.215996168582375,11.8725396231093,0.0346312521330947,0.3175,31.75,3,94.2589822032967,0.816056958914102,30,2.89845843577948,0,1.3830368121465,1.26287305355072,0.185957618186812
+3843,83543,446897.952,83643,446797.952,42,38,15.75,0.02625,5.18390531138168,0.242808519982433,13.5629980443116,0.0112905979067409,0.09,9,2,85.1312371433222,0.816849816849817,8.5,3.42456309000651,0,1.10949785013994,0.960680305957794,0.176698995153418
+3844,83543,446797.952,83643,446697.952,43,38,34,0.0377777777777778,5.75698815498035,0.182832460251815,14.5804638831916,0.028077439153767,0.295,29.5,2,91.5837852075304,0.834294425664479,16,2.4709198515294,0,0.812328802214728,0.696849822998047,0.194224654046607
+3845,83543,446697.952,83643,446597.952,44,38,33.5,0.041875,9.22813320813072,0.296918604651163,10.8852549156242,0.0233427877584768,0.2425,24.25,5,89.7458248976763,0.757217101020447,20,1.88952856948695,0,0.484835813442866,0.319364458322525,0.232784798971846
+3846,83543,446597.952,83643,446497.952,45,38,54,0.54,32.657331790407,0.741512345679012,NA,0.0402789503720123,0.3875,38.75,3,94.4098469005072,0.828141783029001,35,1.17465205038747,0,0.271563870211442,0.214931830763817,0.103205594652277
+3847,83543,446497.952,83643,446397.952,46,38,57,0.285,16.956298963483,0.380690161527166,25,0.0625492522686545,0.68,68,1,98.8806414464123,0.853228962818004,68,1.34637207143447,0,0.461067855358124,0.308948278427124,0.216495452263705
+3848,83543,446397.952,83643,446297.952,47,38,54.5,0.13625,12.7427129452692,0.472748015873016,13.6894159379548,0.0392344347866947,0.3975,39.75,3,93.981350084839,0.840845790939578,33.75,1.0062893081761,0,0.654835653801759,0.442255526781082,0.263437297575358
+3849,83543,446297.952,83643,446197.952,48,38,50.75,0.0845833333333333,7.60681134894977,0.303455318209417,11.2267799624997,0.0353616088757371,0.2425,24.25,6,87.015227451425,0.787564963392891,20,1.57991141879681,0,0.543406546115875,0.291229248046875,0.339713338779979
+3850,83543,446197.952,83643,446097.952,49,38,49.5,0.0825,10.3676359380963,0.387716049382716,10.3934466291663,0.0420498655246047,0.3925,39.25,3,94.0987718160381,0.811385459533608,35,2.37214271885574,0,0.330744508653879,0.121914982795715,0.325392234439782
+3851,83543,446097.952,83643,445997.952,50,38,59.5,0.14875,17.4073586582467,0.610758318478907,12.9056941504209,-0.0352524872732465,0.16,16,2,90.8173346757834,0.819302721088435,15.5,1.015625,0,-0.0443452973073969,-0.181030452251434,0.218113107768934
+3852,83543,445997.952,83643,445897.952,51,38,57,0.285,19.6183153819242,0.597123464770524,15,-0.00997813354849995,0.0475,4.75,4,59.0810207824286,0.637976287446828,2.5,1.57894736842105,0,-0.222988354663054,-0.3480464220047,0.178782979259682
+3853,83543,445897.952,83643,445797.952,52,38,29.25,0.0325,7.54958365924372,0.365466945440064,14.8268410032012,-0.000589920153543062,0.1125,11.25,4,82.5630160604689,0.807264640474425,9.5,2.53649190266927,0,-0.251293723781904,-0.366271257400513,0.215836458565651
+3854,83543,445797.952,83643,445697.952,53,38,38.75,0.0298076923076923,5.27470120098449,0.286013176638177,11.5794421423721,0.000885863383039123,0.04,4,4,55.2401117590713,0.565972222222222,1.5,3.38388347625732,0,-0.154925880643229,-0.321154743432999,0.173427818764129
+3855,83543,445697.952,83643,445597.952,54,38,37,0.0308333333333333,5.02501830699207,0.265650959581035,11.6434466291663,-0.0231439978228286,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,1.66666666666667,0,0.0032705310990827,-0.0752385705709457,0.107470070006175
+3856,83543,445597.952,83643,445497.952,55,38,45.5,0.0758333333333333,7.69056230905994,0.250560897435897,13.7112879373573,-0.000948702718187633,0.035,3.5,4,56.4246256514146,0.585492227979275,2.25,0.357142857142857,0,0.158005097673999,0.0856315866112709,0.11277592312576
+3857,83543,445497.952,83643,445397.952,56,38,42.75,0.07125,10.1310683855496,0.418853105449323,11.720412585205,0.00387742727481054,0.1175,11.75,5,75.2393937306467,0.631728045325779,5.25,1.81537181773084,0,0.277995757758617,0.250385761260986,0.100510163734732
+3858,83543,445397.952,83643,445297.952,57,38,52,0.173333333333333,15.3870534865219,0.52692497837103,11.6666666666667,0.0145535552621459,0.1975,19.75,3,85.0457291101057,0.786381842456609,10.25,2.22335380843923,0,0.101717040149702,-0.116310700774193,0.280907920833675
+3859,83543,445297.952,83643,445197.952,58,38,42,0.06,8.56324372471415,0.394665750915751,11.5971914124998,0.0220977839802617,0.1875,18.75,5,83.2619118615224,0.785547785547786,10.25,4.26838727315267,0,-0.37288570861953,-0.690495252609253,0.425325223988424
+3860,83543,445197.952,83643,445097.952,59,38,19,0.0316666666666667,7.71970020482515,0.31853995440952,11.5346827108031,0.000575377017353276,0.03,3,3,52.8348194941446,0.575500303214069,1.25,5.69585259755452,0,-0.79358172416687,-1.10619103908539,0.46162140764391
+3861,83543,445097.952,83643,444997.952,60,38,29.25,0.04875,8.07584787446757,0.432345606730853,20.2525732082041,0.0237787806916822,0.2225,22.25,6,81.0101782490323,0.692612590750066,10,2.93621084663305,0,-1.07194978992144,-1.34141683578491,0.443247719865614
+3862,83543,444997.952,83643,444897.952,61,38,28.5,0.0475,4.70586904926989,0.170993423329872,21.7279938183038,0.00967494000069337,0.0725,7.25,5,67.3209220477973,0.72472328955669,4.5,2.03938398690059,0,-1.28918585512373,-1.47821307182312,0.315725361273961
+3863,83543,444897.952,83643,444797.952,62,38,40.75,0.135833333333333,16.1625919780212,0.579431237350348,16.6666666666667,0.0157134654430411,0.1125,11.25,5,73.1125078225726,0.629355077835434,4.75,3.37935706244575,0,-1.61158353090286,-1.77249348163605,0.224626156568631
+3864,83543,444797.952,83643,444697.952,63,38,30.75,0.05125,12.4734603724384,0.336445689386866,15.2051760426961,-0.000302694366328069,0.075,7.5,3,76.4895436045393,0.735245449531164,5.5,1.16666666666667,0,-1.89084525903066,-1.96611642837524,0.120467193414813
+3865,83543,444697.952,83643,444597.952,64,38,34.25,0.085625,15.8201421283642,0.496474358974359,10,0.00662036986238945,0.1125,11.25,3,80.2993654774927,0.77761304670126,6.25,2.11900753445095,0,-1.99542719125748,-2.04057216644287,0.0742320362993623
+3866,83543,444597.952,83643,444497.952,65,38,40.25,0.0670833333333333,6.74652796690372,0.263416477702192,13.1903559372885,0.0216198061406612,0.1425,14.25,6,73.104332248144,0.666805497709288,3.75,2.26565150210732,0,-1.97143236796061,-2.03214573860168,0.106399843715391
+3867,83543,444497.952,83643,444397.952,66,38,17,0.034,7.71369166331593,0.330858175248419,25.7660320636415,0.0213204387591327,0.19,19,5,83.7839231773107,0.769670167680118,11.5,3.18644593891345,0,-1.89736262957255,-1.98717999458313,0.140158527710226
+3868,83543,444397.952,83643,444297.952,67,38,33.5,0.041875,5.49656814009661,0.330654761904762,15.0517265814364,0.0138629083674596,0.1275,12.75,3,82.7256610501808,0.789217139281362,9.25,1.94396344353171,0,-1.74855922659238,-1.8875960111618,0.161222802037955
+3869,83543,444297.952,83643,444197.952,68,38,36.25,0.090625,8.129298026917,0.247123015873016,15.7440519757716,0.0150628429923427,0.0875,8.75,3,77.7780179506658,0.829948039678791,7,3.69898888724191,0,-1.62065168221792,-1.66080045700073,0.0817133191119513
+3870,83543,444197.952,83643,444097.952,69,38,17.25,0.0191666666666667,4.30408295382444,0.220017636684303,15.0341604534094,0.000980991782926139,0.02,2,3,41.2877050769818,0.489795918367347,0.75,2.5,0,-1.76571936408679,-1.8979400396347,0.136195364136634
+3871,83543,444097.952,83643,443997.952,70,38,12.75,0.0141666666666667,3.79480931001468,0.21878733572282,12.7940111004597,-0.00610486767196562,0.0175,1.75,1,65.4774238937655,1,1.75,7.9032107761928,5,-2.02677630053626,-2.1393837928772,0.167809515886874
+3872,83543,443997.952,83643,443897.952,71,38,13.25,0.0265,5.10522686154407,0.0897959183673469,22.0710678118655,0.0168768791260663,0.2025,20.25,2,91.2370618308376,0.869383490073145,18.25,3.41402072671019,0,-2.39041982094447,-2.59680533409119,0.233672464214731
+3873,83543,443897.952,83643,443797.952,72,38,33,0.11,8.32369030992083,0.285470085470086,36.8051529545502,-0.0278260244106605,0.09,9,1,87.719298245614,0.926739926739927,9,3.81648731231689,0,-2.79176017973158,-2.93541836738586,0.20166746386839
+3874,83543,443797.952,83643,443697.952,73,38,66.25,0.165625,12.6836467766482,0.426497113997114,11.1803398874989,0.0201395439189946,0.405,40.5,3,94.2075107162253,0.887203203429023,36.25,0.154320987654321,0,-3.0060421427091,-3.09672713279724,0.129486107879234
+3875,83543,443697.952,83643,443597.952,74,38,88.25,0.8825,38.0222396260895,0.836166194523135,NA,0.0838119998463662,0.6475,64.75,2,97.1766705067086,0.929809168677341,60.25,0.424710424710425,0,-3.07846829626295,-3.11703443527222,0.0803765633416087
+3876,83543,443597.952,83643,443497.952,75,38,30.75,0.3075,26.5810240466683,0.853658536585366,NA,0.0173938429504778,0.3175,31.75,1,95.9225630587777,0.936571365142794,31.75,0.69489297341174,0,-3.10667850573858,-3.13921689987183,0.0589878393398794
+3877,83543,443497.952,83643,443397.952,76,38,0,NA,NA,NA,NA,-0.0900625726114958,0,0,0,NA,NA,0,NA,NA,-3.15597907702128,-3.17659068107605,0.0430421380990843
+3878,83543,443397.952,83643,443297.952,77,38,0,NA,NA,NA,NA,-0.0225746794251609,0.3275,32.75,1,96.0662730877785,0.956448025384579,32.75,99.7691231938719,62.6498222351074,-3.21299582057529,-3.23492884635925,0.0382828545365168
+3879,83543,443297.952,83643,443197.952,78,38,0.75,0.0025,0,0,20.6155281280883,-0.0210244340366626,0.25,25,1,94.7368421052632,0.940740740740741,25,75.8246483230591,57.0087738037109,-3.2538020213445,-3.27503490447998,0.0227550300858465
+3880,83543,443197.952,83643,443097.952,79,38,0,NA,NA,NA,NA,-0.0604590040177573,0,0,0,NA,NA,0,NA,NA,-3.26341173383925,-3.28247952461243,0.0292012774230577
+3881,83543,443097.952,83643,442997.952,80,38,0,NA,NA,NA,NA,-0.0572027657501167,0,0,0,NA,NA,0,NA,NA,-3.2852952281634,-3.31350827217102,0.0375029757601498
+3882,83543,442997.952,83643,442897.952,81,38,0,NA,NA,NA,NA,-0.0553758437512442,0,0,0,NA,NA,0,NA,NA,-3.28568082385593,-3.31420516967773,0.0575993930315995
+3883,83543,442897.952,83643,442797.952,82,38,1,0.00333333333333333,0.833333333333333,0.0555555555555556,17.4127682432574,-0.113143571802157,0,0,0,NA,NA,0,NA,NA,-3.2167181968689,-3.28329253196716,0.0776213820230986
+3884,83543,442797.952,83643,442697.952,83,38,3.75,0.0075,3.5,0.216666666666667,11.1803398874989,-0.0608552165138826,0,0,0,NA,NA,0,NA,NA,-3.19433853361342,-3.23785829544067,0.0726783557959227
+3885,83543,442697.952,83643,442597.952,84,38,0,NA,NA,NA,NA,-0.0116206984300152,0,0,0,NA,NA,0,NA,NA,-3.29918640851974,-3.36104035377502,0.0707621402524062
+3886,83543,442597.952,83643,442497.952,85,38,1,0.0025,0,0,11.1803398874989,-0.0245151971398263,0,0,0,NA,NA,0,NA,NA,-3.36162776417202,-3.38702988624573,0.0348792271367079
+3887,83543,442497.952,83643,442397.952,86,38,0.25,0.0025,0,0,NA,-0.0437657609954476,0,0,0,NA,NA,0,NA,NA,-3.39632161458333,-3.43217515945435,0.0382930022498508
+3888,83543,442397.952,83643,442297.952,87,38,0,NA,NA,NA,NA,-0.0560630711633712,0,0,0,NA,NA,0,NA,NA,-3.46321564250522,-3.51631140708923,0.0594035790304415
+3889,83543,442297.952,83643,442197.952,88,38,0.25,0.0025,0,0,NA,-0.0532488256203942,0,0,0,NA,NA,0,NA,NA,-3.51836959520976,-3.55795216560364,0.059710415468072
+3890,83543,442197.952,83643,442097.952,89,38,0,NA,NA,NA,NA,-0.00365351149135677,0.0575,5.75,1,83.3142722045184,0.882110226937813,5.75,64.331923775051,55,-3.53110464413961,-3.55152893066406,0.0294869554079348
+3891,83543,442097.952,83643,441997.952,90,38,0,NA,NA,NA,NA,0.0306256370962365,0.2925,29.25,1,95.5315755048205,0.939995999733315,29.25,95.5088763114734,65.192024230957,-3.50326408280267,-3.51858901977539,0.0259015471624794
+3892,83543,441997.952,83643,441897.952,91,38,0,NA,NA,NA,NA,0.00981383473197638,0.2325,23.25,5,86.0452070074492,0.819473333071701,17,102.004583830475,36.4005508422852,-3.49033298095067,-3.49520826339722,0.0138152434910041
+3893,83543,441897.952,83643,441797.952,92,38,0,NA,NA,NA,NA,0.0692966124456507,0.3725,37.25,5,92.377972283675,0.842388687010201,32.5,49.6319599407631,5,-3.46165815989176,-3.48575830459595,0.0388961129087847
+3894,83543,441797.952,83643,441697.952,93,38,14,0.14,21.7772623489315,0.669642857142857,NA,0.0336182178002491,0.3475,34.75,2,93.0277665163722,0.879325429148943,23.25,27.5195800726362,0,-3.33698040246964,-3.41452789306641,0.09107840980664
+3895,83543,441697.952,83643,441597.952,94,38,34.5,0.345,29.1673469882661,0.777777777777778,NA,0.0915865694894092,0.6375,63.75,1,98.6713232517353,0.948059443081806,63.75,7.1299986670999,0,-3.18058421876695,-3.23038387298584,0.0788896414641583
+3896,83543,441597.952,83643,441497.952,95,38,40,0.2,20.7739301679383,0.695103205972771,42.7200187265877,0.0736888700953568,0.585,58.5,2,98.0612246396199,0.928317388547324,58.25,3.64186340723282,0,-3.12864516178767,-3.15239238739014,0.0416564357230538
+3897,83543,441497.952,83643,441397.952,96,38,39,0.195,24.8076929411992,0.705269607843137,42.7200187265877,0.054765044646083,0.49,49,2,94.5943555951849,0.833010127127774,27.75,4.17756403708945,0,-3.17879939079285,-3.22547912597656,0.0582498720569151
+3898,83543,441397.952,83643,441297.952,97,38,23.25,0.2325,28.4619515160713,0.691756272401434,NA,0.0262043732742313,0.2625,26.25,2,94.1131962391188,0.885212088601919,25.75,5.28735854739235,0,-3.20374196767807,-3.26937103271484,0.106609779717505
+3899,83543,441297.952,83643,441197.952,98,38,15.25,0.0254166666666667,5.88661409045632,0.171023965141612,11.9659780025979,0.0124538126368861,0.1825,18.25,1,92.9430371372494,0.904434250764526,18.25,6.72261977522341,0,-3.09585110346476,-3.18576264381409,0.12739694774487
+3900,83543,441197.952,83643,441097.952,99,38,3.68421052631579,0.00875,3.95833333333333,0.170138888888889,30.8996963465179,0.000812228948179836,0.0625,6.25,1,84.2105263157895,0.92,6.25,29.2858939361572,15.8113880157471,-3.06317603588104,-3.20331954956055,0.0815360828735889
+3901,83643,451097.952,83743,450997.952,0,39,14.5,0.0483333333333333,9.94360641422446,0.546717171717172,47.3353657780945,0.00340517218336572,0.155,15.5,4,83.9769817268739,0.813719044488275,12.5,2.80470146671418,0,0.202957824493448,0.0721484571695328,0.235285957555415
+3902,83643,450997.952,83743,450897.952,1,39,38.5,0.128333333333333,13.6368627084817,0.68681110230406,21.6666666666667,0.0219800707441755,0.2525,25.25,4,87.0629992317904,0.815222010754079,13.75,2.53933047304059,0,0.300079432490747,-0.280113250017166,0.792895156521539
+3903,83643,450897.952,83743,450797.952,2,39,90,0.9,37.3155890113021,0.8875,NA,0.0562336554888839,0.54,54,2,97.868960185494,0.81613670776552,53.75,0.208333333333333,0,-0.382776150169472,-1.07556629180908,0.821650893051052
+3904,83643,450797.952,83743,450697.952,3,39,95.5,0.955,37.730085654263,0.900087260034904,NA,-0.0639182360642008,0.05,5,2,76.3172662672173,0.830220713073005,4.5,0,0,-0.400830992963165,-0.986516237258911,0.624136803158909
+3905,83643,450697.952,83743,450597.952,4,39,48.75,0.121875,12.9518307731496,0.386521500492089,17.5,-0.00564773758273077,0.0675,6.75,1,85.0052537126447,0.925182367978054,6.75,0,0,-0.0123904099649129,-0.676564753055573,0.544939392071911
+3906,83643,450597.952,83743,450497.952,5,39,98.25,0.9825,38.1698852805265,0.923240033927057,NA,-0.0508797420014162,0.0225,2.25,2,55.8584010807395,0.744245524296675,1.5,0,0,0.16570478642825,-0.145310819149017,0.342160480782052
+3907,83643,450497.952,83743,450397.952,6,39,83.5,0.835,38.5173793278422,0.861776447105788,NA,-0.0459818269852258,0.0175,1.75,2,49.299249134574,0.618320610687023,1,0,0,-0.12308366697592,-0.454864203929901,0.382078122719396
+3908,83643,450397.952,83743,450297.952,7,39,95.25,0.47625,18.9415205168162,0.456140350877193,11.1803398874989,-0.0174191122916091,0.0925,9.25,3,79.6565942225259,0.69290520706318,6.75,0,0,-0.200292302732123,-0.474953085184097,0.29212156345461
+3909,83643,450297.952,83743,450197.952,8,39,90,0.9,38.4310191429116,0.871759259259259,NA,-0.0467171279528702,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,0,0,-0.324707801143328,-0.507037997245789,0.164901539464233
+3910,83643,450197.952,83743,450097.952,9,39,92.5,0.4625,20.2079823567049,0.57160157432637,10,-0.018911405140534,0.125,12.5,2,85.1564048165705,0.811764705882353,9.75,0,0,-0.47863748172919,-0.688705086708069,0.236662041514967
+3911,83643,450097.952,83743,449997.952,10,39,34.75,0.3475,28.2676961962665,0.776978417266187,NA,0.0021643980434601,0.0825,8.25,1,86.9391941099265,0.919265314360682,8.25,0,0,-0.565915033221245,-0.828546524047852,0.336924508158771
+3912,83643,449997.952,83743,449897.952,11,39,41.75,0.4175,26.4328394425881,0.878243512974052,NA,0.0276616765641575,0.27,27,1,95.1342058036908,0.922725676150334,27,0.185185185185185,0,-0.499190684407949,-0.820070266723633,0.400721787622855
+3913,83643,449897.952,83743,449797.952,12,39,65.75,0.6575,36.6025394543547,0.859949302915082,NA,-0.017114126479828,0.045,4.5,2,74.3332443231453,0.844871049059531,4,2.73011864556207,0,-0.46894405875355,-0.736674249172211,0.390375315055877
+3914,83643,449797.952,83743,449697.952,13,39,91.75,0.9175,37.8815463383589,0.8905540417802,NA,-0.0245851391218639,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,0,0,-0.397961074214739,-0.735100269317627,0.371223071245827
+3915,83643,449697.952,83743,449597.952,14,39,72.25,0.7225,35.6073151885711,0.844867358708189,NA,-0.0134880577176136,0.1025,10.25,5,71.789766756321,0.660893787089742,4.25,4.41383966585485,0,-0.476082851178944,-0.699177920818329,0.307836817105852
+3916,83643,449597.952,83743,449497.952,15,39,67.25,0.33625,18.5282051271453,0.585141509433962,33.5410196624968,0.0583057103598912,0.6375,63.75,2,97.7887574086435,0.867263021209061,62.25,1.43943064072553,0,-0.570978845159213,-0.750847280025482,0.271710446173623
+3917,83643,449497.952,83743,449397.952,16,39,39.25,0.0560714285714286,7.8958504921799,0.268558429118774,16.9898888957031,0.0197482731532091,0.19,19,4,84.441360343839,0.778883360972913,12.25,0.712396521317331,0,-0.48390578199178,-0.74246484041214,0.31467229504178
+3918,83643,449397.952,83743,449297.952,17,39,21.25,0.02125,6.84237700112736,0.301490384615385,15,0.00611648056909189,0.0625,6.25,3,71.8178928946382,0.6,3,1.8,0,-0.349695720244199,-0.655372560024261,0.348010939211271
+3919,83643,449297.952,83743,449197.952,18,39,15,0.015,5.76870674461144,0.191534391534392,11.802775637732,0.00670419305455653,0.035,3.5,2,65.3750124249461,0.792746113989637,2,3.92857142857143,0,-0.0995351004676195,-0.499631404876709,0.355994582411404
+3920,83643,449197.952,83743,449097.952,19,39,17,0.0188888888888889,5.68278346147157,0.269417211328976,12.7614496985865,0.0133832171540053,0.0625,6.25,4,66.7450276360751,0.573333333333333,3.5,3.41289901733398,0,0.371969028065602,0.151701614260674,0.284581980523533
+3921,83643,449097.952,83743,448997.952,20,39,12,0.02,3.36263458930812,0.173489278752437,17.7704627669473,0.0125131668796348,0.035,3.5,3,58.3216942398678,0.637305699481865,1.5,6.03083910260882,0,0.735953912138939,0.594543516635895,0.213438777118213
+3922,83643,448997.952,83743,448897.952,21,39,7.75,0.00861111111111111,2.1658388479703,0.148758648758649,18.548039476073,0.0105773056892031,0.03,3,4,47.6856322087627,0.514857489387508,1.25,8.49931065241496,0,0.93471172824502,0.828954458236694,0.0898384024226965
+3923,83643,448897.952,83743,448797.952,22,39,10,0.00769230769230769,2.12090869843961,0.105921855921856,14.0765917283652,0.00644563762933558,0.0575,5.75,3,74.2815363368755,0.852637783672267,5,10.5390330604885,0,0.841783593098323,0.639820635318756,0.197293349044924
+3924,83643,448797.952,83743,448697.952,23,39,29,0.0725,11.1397541031587,0.418236642743222,20.3788598123061,-0.0037696607002789,0.0525,5.25,3,69.2042535454862,0.736147757255937,3.25,3.53057788667225,0,0.35415674361866,-0.102394960820675,0.428124531928589
+3925,83643,448697.952,83743,448597.952,24,39,28,0.0466666666666667,8.16842279952237,0.304392446633826,11.1652880313901,-0.00024984382216644,0.0225,2.25,2,55.8151493223867,0.573742540494459,1.25,5.49606789482964,0,-0.230324420457085,-0.433981120586395,0.299501242398039
+3926,83643,448597.952,83743,448497.952,25,39,8.75,0.0291666666666667,6.93864536626012,0.34469696969697,42.7485177344559,-0.0283711161901192,0.005,0.5,2,0,1,0.25,6.0355339050293,5,-0.54727877676487,-0.663245379924774,0.12796058902064
+3927,83643,448497.952,83743,448397.952,26,39,0,NA,NA,NA,NA,-0.0298786582557295,0,0,0,NA,NA,0,NA,NA,-0.664876237511635,-0.729621589183807,0.0922413579380935
+3928,83643,448397.952,83743,448297.952,27,39,3.25,0.01625,3.59320360945351,0.291666666666667,46.0977222864644,-0.0370075797713071,0,0,0,NA,NA,0,NA,NA,-0.679781917482615,-0.74897563457489,0.106496471842959
+3929,83643,448297.952,83743,448197.952,28,39,0.75,0.0025,0,0,58.0507692566896,0.00494231999976364,0.02,2,1,68.0470115164975,1,2,21.9311845302582,15.8113880157471,-0.605935834348202,-0.71503359079361,0.128597182413639
+3930,83643,448197.952,83743,448097.952,29,39,6.75,0.0135,4.3782321741245,0.254166666666667,25.5097766046326,-0.00771991850383785,0,0,0,NA,NA,0,NA,NA,-0.529064612463117,-0.604141414165497,0.118632727729039
+3931,83643,448097.952,83743,447997.952,30,39,50,0.25,18.0853392889881,0.654947916666667,26.9258240356725,0.00571443457076384,0.08,8,1,86.6550847056172,0.832775919732441,8,0,0,-0.427799882988135,-0.562300086021423,0.206941641861449
+3932,83643,447997.952,83743,447897.952,31,39,48.75,0.0609375,5.52358381414091,0.187851123595506,16.2391611394897,0.015246067936223,0.105,10.5,5,71.5825301600966,0.669525533086789,3.5,2.93533979143415,0,-0.273997493165856,-0.547501027584076,0.323450536312306
+3933,83643,447897.952,83743,447797.952,32,39,10.25,0.00602941176470588,1.54829778352577,0.101919934640523,13.544436838193,0.0176181205347166,0.0575,5.75,5,59.6673571496253,0.587385794282346,2.5,9.92787352852199,0,0.0273815802065656,-0.370499014854431,0.328201805535557
+3934,83643,447797.952,83743,447697.952,33,39,7.5,0.00625,2.85004872623521,0.168981481481481,16.8300278594386,0.0168615861159196,0.0325,3.25,4,49.3286888608125,0.540625897215045,1.5,13.1458204709567,0,0.320489478607972,0.156650125980377,0.165426158655211
+3935,83643,447697.952,83743,447597.952,34,39,8.5,0.0085,1.82345512134918,0.124603174603175,14.1866901055482,0.00890555933860014,0,0,0,NA,NA,0,NA,NA,0.45537132397294,0.363072335720062,0.0892638094286133
+3936,83643,447597.952,83743,447497.952,35,39,4.5,0.005625,2.36196623632254,0.130555555555556,17.2534134469773,0.00511147938850627,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,16.4645992914836,5,0.571583102146784,0.514221906661987,0.0909207275301294
+3937,83643,447497.952,83743,447397.952,36,39,2.5,0.00416666666666667,1.37836569605303,0.101851851851852,26.9476849813004,0.00347540845315052,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,0.707649346441031,0.616082668304443,0.107952000866931
+3938,83643,447397.952,83743,447297.952,37,39,2.75,0.00458333333333333,1.50339649977558,0.0611111111111111,29.5558393266676,0.00490509672529697,0.0025,0.25,1,0,NA,0.25,5,5,0.828784316778183,0.724040567874908,0.132058872614274
+3939,83643,447297.952,83743,447197.952,38,39,4.5,0.01125,2.73230852554072,0.236111111111111,20.4056941504209,0.00654939369842396,0.005,0.5,1,30.8308651382582,1,0.5,33.6854801177979,32.0156211853027,0.964275721460581,0.77431732416153,0.207609283225451
+3940,83643,447197.952,83743,447097.952,39,39,2.25,0.0025,0,0,27.8432898174851,0.0177302536569914,0.02,2,3,43.0810370501115,0.591836734693878,1,21.3440024852753,15.8113880157471,1.18010656535625,0.955914199352264,0.238986752785317
+3941,83643,447097.952,83743,446997.952,40,39,8.25,0.00515625,1.29809986142005,0.0993923611111111,13.8688743449551,0.00764925651663361,0.01,1,3,15.8692205350002,0.242424242424242,0.5,5.51776695251465,0,1.25788956880569,1.10240149497986,0.190123145352563
+3942,83643,446997.952,83743,446897.952,41,39,26,0.026,4.83589193575556,0.304216101694915,13.1951436891266,0.0222738960794322,0.14,14,4,81.7052140789344,0.628386478062815,7.5,4.82196824891227,0,1.09707941611608,0.930073499679565,0.190897681775334
+3943,83643,446897.952,83743,446797.952,42,39,9.75,0.0108333333333333,3.66743315127106,0.171296296296296,20.8535360215829,0.0175265348886842,0.0475,4.75,3,70.5370126938154,0.710381029957462,3.75,11.6503505706787,0,0.912329025566578,0.677457690238953,0.227253660569429
+3944,83643,446797.952,83743,446697.952,43,39,39,0.04875,5.74497170232496,0.238134057971015,12.1700849718747,0.0450835981696127,0.4125,41.25,4,94.538162469856,0.876819708846585,38.5,2.44413108825684,0,0.660398257275422,0.428169906139374,0.245472792864673
+3945,83643,446697.952,83743,446597.952,44,39,33.75,0.0421875,8.05125665028971,0.441653785222099,11.326941016011,0.0100879226536563,0.08,8,5,66.7304741950268,0.665551839464883,4,4.10410970449448,0,0.452689784268538,0.245809495449066,0.216427357325421
+3946,83643,446597.952,83743,446497.952,45,39,30,0.0428571428571429,11.8682816633289,0.414306064306064,13.4055920968803,0.0135884466061816,0.09,9,3,83.3966977368433,0.871794871794872,8.5,4.30859894222683,0,0.228884761221707,-0.0172425806522369,0.204761520706786
+3947,83643,446497.952,83743,446397.952,46,39,51.25,0.0465909090909091,6.71283541826953,0.283514934677725,11.0163945352272,0.0367059052309196,0.3125,31.25,7,84.5258593340864,0.647577092511013,10.25,1.90885397338867,0,0.106136111348557,-0.117104008793831,0.306461345348155
+3948,83643,446397.952,83743,446297.952,47,39,46.75,0.0519444444444444,9.16260786423858,0.438562751700007,11.1795031253431,0.0105644550493889,0.13,13,4,78.9537696479056,0.793361746093246,6,1.09752053480882,0,0.0988127705059014,-0.0857881307601929,0.267278683173354
+3949,83643,446297.952,83743,446197.952,48,39,29.5,0.0327777777777778,8.05241198530492,0.325255169049495,11.5537173751869,0.00765982746983354,0.1275,12.75,3,84.1875948599615,0.841912854461022,10.25,3.81303158928366,0,0.0586912982786695,-0.0291570872068405,0.144141597393079
+3950,83643,446197.952,83743,446097.952,49,39,66.25,0.220833333333333,17.3070801420585,0.610207083979067,10.3934466291663,0.0096115847297915,0.2175,21.75,2,93.1681485639896,0.917551272802226,21.5,0.172413793103448,0,-0.0130049350555055,-0.136452868580818,0.146724514823066
+3951,83643,446097.952,83743,445997.952,50,39,66.75,0.1335,15.8809465576804,0.409693004718666,10,0.0276043526666035,0.3175,31.75,5,85.6553449013564,0.746285460571175,13.75,1.26939530259981,0,-0.215934156440198,-0.324053555727005,0.180754539671742
+3952,83643,445997.952,83743,445897.952,51,39,58.5,0.117,18.0901890958489,0.524320623376255,10,0.0329075973216459,0.2775,27.75,4,86.2642273414842,0.764705882352941,13,2.24452374432538,0,-0.43447882682085,-0.520024359226227,0.108037023767786
+3953,83643,445897.952,83743,445797.952,52,39,44.25,0.0885,17.6184338976526,0.510009806118297,10,0.0199363322781483,0.275,27.5,4,88.3772847865562,0.805926182637325,15,2,0,-0.506728092829386,-0.537534415721893,0.0805033815123537
+3954,83643,445797.952,83743,445697.952,53,39,49,0.0544444444444444,9.63144970967731,0.331445761614538,10,0.0153042597974854,0.185,18.5,5,83.700008376345,0.754601226993865,11.25,2.79057858441327,0,-0.34785324614495,-0.502209305763245,0.182413048182551
+3955,83643,445697.952,83743,445597.952,54,39,68.25,0.1365,15.3509910338111,0.446907993966818,10,0.0101627206489502,0.1625,16.25,5,84.7151227708903,0.830933826443006,13.75,0.615384615384615,0,0.0093616641825065,-0.0967392325401306,0.198561569416536
+3956,83643,445597.952,83743,445497.952,55,39,72.25,0.180625,10.443565749554,0.313238770685579,10,0.0325004730406908,0.25,25,7,82.0936671722372,0.711111111111111,7.75,1.15,0,0.226344071949522,0.119896255433559,0.117781992695497
+3957,83643,445497.952,83743,445397.952,56,39,47.5,0.0678571428571429,7.65491196919862,0.337572512271307,10.3372399678568,0.0407498146220678,0.4175,41.75,4,93.7078519175726,0.788194637980046,35.75,1.98504679788372,0,0.344491563737392,0.268940418958664,0.0602495256958313
+3958,83643,445397.952,83743,445297.952,57,39,67,0.223333333333333,20.4053306610072,0.657167904290429,14.120226591666,0.046652076487153,0.48,48,3,93.520860453919,0.800129645635264,25.75,0.442708333333333,0,0.0763760020490736,-0.189220860600471,0.335419604517163
+3959,83643,445297.952,83743,445197.952,58,39,40.25,0.0365909090909091,6.34942028374768,0.274310144493631,10.5911650362481,0.0307915179054908,0.22,22,4,88.2117051903746,0.853013228809407,18.25,2.47038117322055,0,-0.508173161186278,-0.814775764942169,0.345269724643522
+3960,83643,445197.952,83743,445097.952,59,39,19,0.0271428571428571,5.58550589493017,0.352671451355662,13.6355173560767,0.0104739948364113,0.0675,6.75,3,76.5703526868339,0.825425525282125,5.75,1.97227435641819,0,-0.988677069544792,-1.17514491081238,0.272072825535653
+3961,83643,445097.952,83743,444997.952,60,39,7,0.0116666666666667,4.13937180545564,0.215740740740741,18.5716196655172,0.0183735250509483,0.08,8,7,60.5565353255727,0.519230769230769,3,7.0630669593811,0,-1.29894335567951,-1.41722500324249,0.172145303745535
+3962,83643,444997.952,83743,444897.952,61,39,10.75,0.0179166666666667,6.33763402109617,0.342216810966811,21.410478558734,0.0155037330826508,0.0875,8.75,6,65.8908705412835,0.641001417099669,4.5,3.29492786952427,0,-1.44235674540202,-1.51940548419952,0.126700523631467
+3963,83643,444897.952,83743,444797.952,62,39,29.25,0.0585,7.99045054947461,0.344285714285714,18.3239770383633,0.0147641002040336,0.135,13.5,5,78.1162358168439,0.726521225682143,8,2.53441026475694,0,-1.61031158268452,-1.72854375839233,0.133332632086012
+3964,83643,444797.952,83743,444697.952,63,39,46.25,0.0925,17.0293344860035,0.421508185301289,10,-6.58945114264497e-05,0.2875,28.75,1,95.4473178079967,0.892037786774629,28.75,1.5577577010445,0,-1.80336559812228,-1.88410782814026,0.0986234730092945
+3965,83643,444697.952,83743,444597.952,64,39,6.25,0.0625,22.0771631000567,0.446666666666667,NA,-0.00827086454272376,0.0575,5.75,2,78.0090690070094,0.73474801061008,4.75,12.7415532651155,0,-1.85392938554287,-1.92068076133728,0.0763701082741148
+3966,83643,444597.952,83743,444497.952,65,39,32,0.064,7.74548106354313,0.282850241545894,13.5366310572456,0.0265004882057838,0.2625,26.25,2,93.8106267592021,0.806295399515738,25,1.38402357555571,0,-1.75053689877192,-1.87433958053589,0.141427900208322
+3967,83643,444497.952,83743,444397.952,66,39,19,0.0271428571428571,6.71438146245754,0.356120036667149,11.0515256821426,0.00922644671147282,0.045,4.5,4,60.7589582982191,0.612177622648827,2.25,4.5173348320855,0,-1.62803582350413,-1.77473092079163,0.145995700643035
+3968,83643,444397.952,83743,444297.952,67,39,34.25,0.085625,10.6149668750143,0.3906262505002,16.8585412256314,0.0130408243126385,0.1725,17.25,3,85.5727923374144,0.770292876582357,12,2.03833262125651,0,-1.53886967897415,-1.65777480602264,0.0795145397184177
+3969,83643,444297.952,83743,444197.952,68,39,28.5,0.02375,5.5294263344381,0.306806386689348,11.6232519418179,0.0175056434594444,0.1275,12.75,3,82.2301652244034,0.815564996871192,9,1.5175204557531,0,-1.58939424157143,-1.68549644947052,0.0985954229015661
+3970,83643,444197.952,83743,444097.952,69,39,30,0.025,4.08763420752345,0.200066137566138,11.0976723396533,-0.00106205058882551,0.0675,6.75,2,76.6488469684613,0.825425525282125,4.75,1.37300251148365,0,-1.82061923295259,-2.02354526519775,0.173842414482063
+3971,83643,444097.952,83743,443997.952,70,39,2.5,0.00416666666666667,1.38888888888889,0.0925925925925926,14.560113295833,0.000420919720594384,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,4.41421356201172,0,-2.08940223852793,-2.23316025733948,0.171380605949828
+3972,83643,443997.952,83743,443897.952,71,39,16,0.032,6.04268056651873,0.152107279693487,26.0827625302982,0.00568352713242348,0.105,10.5,2,82.2337263702782,0.858368085608624,6,2.26190476190476,0,-2.37513782083988,-2.53677248954773,0.185844534635802
+3973,83643,443897.952,83743,443797.952,72,39,41.75,0.0835,6.91703352360359,0.24727463312369,14.2360679774998,0.028799430209765,0.3,30,2,93.4166259202685,0.934469200524246,27.5,1.53468015988668,0,-2.67780160903931,-2.79368996620178,0.141168702112252
+3974,83643,443797.952,83743,443697.952,73,39,59,0.196666666666667,13.0785395576209,0.368773946360153,10.3934466291663,0.0780064263040549,0.7025,70.25,1,98.9836843550327,0.783549783549783,70.25,2.98529636478085,0,-2.8120234310627,-2.90249991416931,0.0930285682769032
+3975,83643,443697.952,83743,443597.952,74,39,91.75,0.9175,38.2034443712877,0.866939146230699,NA,0.0978242304967608,0.715,71.5,1,99.0388168843254,0.889128024522272,71.5,0.27972027972028,0,-2.87729416290919,-2.9784848690033,0.1042240235708
+3976,83643,443597.952,83743,443497.952,75,39,17,0.02125,6.10440572332843,0.211935763888889,16.7760120331024,0.0377304065604949,0.365,36.5,1,96.5515169620803,0.935120469491875,36.5,8.54804717024712,0,-2.93521752953529,-3.0549304485321,0.113781868869579
+3977,83643,443497.952,83743,443397.952,76,39,3.5,0.0116666666666667,3.85892110893975,0.274691358024691,10,-0.0671660164300988,0,0,0,NA,NA,0,NA,NA,-3.08840628465017,-3.16945576667786,0.12768609255219
+3978,83643,443397.952,83743,443297.952,77,39,0.25,0.0025,0,0,NA,0.00924472623522888,0.2375,23.75,5,85.173864716533,0.814850530376085,13.25,56.5132441872045,15,-3.23816480239232,-3.28745818138123,0.0759642101762053
+3979,83643,443297.952,83743,443197.952,78,39,0.25,0.0025,0,0,NA,-0.0419295271134933,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,48.4065628051758,39.0512504577637,-3.27354054152966,-3.29733157157898,0.02980174965688
+3980,83643,443197.952,83743,443097.952,79,39,0,NA,NA,NA,NA,-0.0460515898265294,0,0,0,NA,NA,0,NA,NA,-3.23937499523163,-3.25251054763794,0.0199839348330854
+3981,83643,443097.952,83743,442997.952,80,39,0,NA,NA,NA,NA,-0.0618882528226823,0,0,0,NA,NA,0,NA,NA,-3.22287841141224,-3.25611114501953,0.0355123620707738
+3982,83643,442997.952,83743,442897.952,81,39,0,NA,NA,NA,NA,-0.0791266338666901,0,0,0,NA,NA,0,NA,NA,-3.18677018086116,-3.24386882781982,0.0556370994777444
+3983,83643,442897.952,83743,442797.952,82,39,0.5,0.005,2.5,0.166666666666667,NA,-0.102251657484594,0,0,0,NA,NA,0,NA,NA,-3.13817995786667,-3.18496417999268,0.038147531688991
+3984,83643,442797.952,83743,442697.952,83,39,2.75,0.0055,2.66666666666667,0.177777777777778,27.2093304192346,-0.042525068953546,0,0,0,NA,NA,0,NA,NA,-3.18840356667837,-3.2385425567627,0.0710575885827159
+3985,83643,442697.952,83743,442597.952,84,39,0,NA,NA,NA,NA,-0.0184532999446674,0,0,0,NA,NA,0,NA,NA,-3.32705539464951,-3.3897340297699,0.0733633449191503
+3986,83643,442597.952,83743,442497.952,85,39,0.5,0.0025,0,0,49.2442890089805,-0.0230525015113744,0,0,0,NA,NA,0,NA,NA,-3.4015483657519,-3.44997024536133,0.0491498706024618
+3987,83643,442497.952,83743,442397.952,86,39,0,NA,NA,NA,NA,-0.0354530080407858,0,0,0,NA,NA,0,NA,NA,-3.453219845891,-3.51727414131165,0.0608142244463281
+3988,83643,442397.952,83743,442297.952,87,39,0,NA,NA,NA,NA,-0.0267790423915721,0.1475,14.75,1,91.5590620020185,0.884997987464781,14.75,63.3516868332685,43.0116271972656,-3.5407966375351,-3.57423114776611,0.0549464128070798
+3989,83643,442297.952,83743,442197.952,88,39,0,NA,NA,NA,NA,0.0197368917119456,0.17,17,1,92.4981249980877,0.979750936519186,17,74.3196103152107,52.2015342712402,-3.59625370800495,-3.61869835853577,0.0410822972089136
+3990,83643,442197.952,83743,442097.952,89,39,0,NA,NA,NA,NA,-0.0101906538621188,0,0,0,NA,NA,0,NA,NA,-3.60132751862208,-3.61822009086609,0.0338180984536678
+3991,83643,442097.952,83743,441997.952,90,39,0,NA,NA,NA,NA,-0.0212378330699266,0,0,0,NA,NA,0,NA,NA,-3.57465161879857,-3.6134877204895,0.0477164350890024
+3992,83643,441997.952,83743,441897.952,91,39,0,NA,NA,NA,NA,0.0156285690374762,0.03,3,2,62.2896536353828,0.696785930867192,1.5,154.873147328695,136.014709472656,-3.53633008897305,-3.58468699455261,0.0447519311573577
+3993,83643,441897.952,83743,441797.952,92,39,0,NA,NA,NA,NA,0.0349506536582294,0.275,27.5,3,91.2390638205452,0.826719805926183,21.75,142.638413585316,109.201652526855,-3.47351169586182,-3.51476168632507,0.0509217121708661
+3994,83643,441797.952,83743,441697.952,93,39,0,NA,NA,NA,NA,0.0395856319047743,0.19,19,5,80.713852148134,0.732817394508937,11,121.004411195454,74.3303451538086,-3.37951527535915,-3.45139479637146,0.0790437139198
+3995,83643,441697.952,83743,441597.952,94,39,0,NA,NA,NA,NA,0.0402079033737391,0.295,29.5,4,89.1765366331483,0.754755749983429,17,94.1275544570664,36.4005508422852,-3.30206670363744,-3.38914442062378,0.0999295029739644
+3996,83643,441597.952,83743,441497.952,95,39,0,NA,NA,NA,NA,0.0162298177481716,0.1925,19.25,5,83.547362050965,0.781460571844837,10.5,77.4435998000108,5,-3.22554913163185,-3.35333514213562,0.0999599876600541
+3997,83643,441497.952,83743,441397.952,96,39,17.5,0.175,23.4621109558863,0.685714285714286,NA,0.0246946980794019,0.2825,28.25,1,95.3608329643832,0.945343991255039,28.25,2.42415240802596,0,-3.04912328720093,-3.14377665519714,0.155431354812082
+3998,83643,441397.952,83743,441297.952,97,39,34.25,0.17125,14.8853763603124,0.381740196078431,25.4950975679639,0.0844071214547148,0.5525,55.25,1,98.1823916421441,0.945761240982806,55.25,2.60546090484205,0,-2.90976074337959,-3.08373498916626,0.159449231367878
+3999,83643,441297.952,83743,441197.952,98,39,42.5,0.141666666666667,17.2100019805524,0.576657329598506,20.9066729088626,0.0516041132326063,0.4575,45.75,3,95.5122481637776,0.901835137567147,43.75,2.19947052001953,0,-2.90131920576096,-3.00596284866333,0.109081816168843
+4000,83643,441197.952,83743,441097.952,99,39,20.7894736842105,0.049375,9.56943895094864,0.389192708333333,25.3749268641711,0.0336973473159924,0.375,37.5,2,94.8740057814841,0.877818181818182,34.75,4.18020534515381,0,-3.0126326084137,-3.14218473434448,0.0936325459781317
+4001,83743,451097.952,83843,450997.952,0,40,34,0.17,15.7238026908977,0.794642857142857,15,3.44813493029505e-05,0.0825,8.25,4,74.8089732923595,0.777979614491876,5.5,3.12142620664654,0,-0.301376852413846,-1.15209197998047,1.18648522537088
+4002,83743,450997.952,83843,450897.952,1,40,56.25,0.1875,18.1142671631818,0.754773223532348,17.9944854588939,0.0326998290171832,0.3975,39.75,2,93.79024763254,0.852213948729608,25.75,0.125786163522013,0,-0.654293255259593,-1.56813144683838,1.24917094420504
+4003,83743,450897.952,83843,450797.952,2,40,46.25,0.23125,22.9235753758686,0.792681623931624,32.0156211871642,0.00348891764377186,0.085,8.5,4,73.4077094546301,0.590163934426229,5,5.18499710980584,0,-1.60514638821284,-2.03932499885559,0.738755016215943
+4004,83743,450797.952,83843,450697.952,3,40,78.75,0.39375,19.597587875137,0.563034188034188,29.1547594742265,-0.000705150682824751,0.125,12.5,4,77.973204840646,0.74453781512605,5.25,3.99793296813965,0,-1.67603333791097,-2.08687782287598,0.675096488717174
+4005,83743,450697.952,83843,450597.952,4,40,84.5,0.845,36.2437462237004,0.892011834319527,NA,-0.0255945934253396,0.07,7,3,73.9318044345165,0.78494623655914,5,0.357142857142857,0,-1.1667902469635,-1.60381901264191,0.784792717205118
+4006,83743,450597.952,83843,450497.952,5,40,94.5,0.945,37.2510464658688,0.925485008818342,NA,-0.0374738862787899,0.0025,0.25,1,0,NA,0.25,0,0,-0.530866795529922,-0.893507242202759,0.522449939257502
+4007,83743,450497.952,83843,450397.952,6,40,93,0.93,37.6763874054047,0.899641577060932,NA,-0.0172661934538949,0.1725,17.25,1,92.5909628330769,0.960050935057801,17.25,0.36231884057971,0,-0.592007898622089,-0.830681562423706,0.29644393436605
+4008,83743,450397.952,83843,450297.952,7,40,88,0.88,39.3099419127225,0.877367424242424,NA,-0.0402757389705948,0.03,3,1,74.8763016215986,0.939357186173438,3,0,0,-0.600377542277177,-0.727206289768219,0.243882303385099
+4009,83743,450297.952,83843,450197.952,8,40,93.5,0.4675,18.5815529753784,0.462689901697945,15.8113883008419,-0.0581678172656757,0.0025,0.25,1,0,NA,0.25,0,0,-0.669621255662706,-0.846856296062469,0.262957128919789
+4010,83743,450197.952,83843,450097.952,9,40,77,0.256666666666667,14.6837894505834,0.550788288288288,14.120226591666,-0.0185988688374164,0.1225,12.25,1,90.2255639097744,0.864333197666531,12.25,0.204081632653061,0,-0.819385276900397,-0.959792017936707,0.231164992522763
+4011,83743,450097.952,83843,449997.952,10,40,78.25,0.260833333333333,16.5222329251639,0.59556530214425,11.6666666666667,-0.0472708206339303,0.08,8,3,82.1681795165348,0.728260869565217,7.25,0.598191738128662,0,-0.971366032958031,-1.03813087940216,0.123841400051137
+4012,83743,449997.952,83843,449897.952,11,40,96,0.96,38.2240025318195,0.908420138888889,NA,-0.00188782754408749,0.2175,21.75,1,93.9777627911811,0.950530763681336,21.75,0.172413793103448,0,-0.973568525579241,-1.04175496101379,0.132223299654027
+4013,83743,449897.952,83843,449797.952,12,40,89,0.296666666666667,15.5840586317844,0.558402742365007,10,-0.0538093387979461,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0,-0.936498324076335,-1.03155100345612,0.16942296471262
+4014,83743,449797.952,83843,449697.952,13,40,75,0.375,20.5248013699537,0.610544217687075,15.8113883008419,-0.0303729312308133,0.0425,4.25,3,63.9588260140201,0.70757180156658,2.75,0,0,-0.865416440698836,-0.979820430278778,0.164756628276012
+4015,83743,449697.952,83843,449597.952,14,40,79.5,0.3975,21.1440756374096,0.70873786407767,20,-0.010938766654117,0.1225,12.25,1,90.2255639097744,0.918599918599919,12.25,0,0,-0.790715858340263,-0.874893486499786,0.0879136287762225
+4016,83743,449597.952,83843,449497.952,15,40,24,0.06,10.9611842482174,0.290277777777778,10.5901699437495,-0.0082210840262087,0.0425,4.25,3,61.0472407741546,0.66579634464752,1.75,6.85503993314855,0,-0.789833698007796,-0.807034611701965,0.0488981816116806
+4017,83743,449497.952,83843,449397.952,16,40,6.75,0.0225,6.55907486727902,0.25,15.1650325226546,-0.00446669648239549,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,1.9047619047619,0,-0.798762564857801,-0.816283345222473,0.0689332485359336
+4018,83743,449397.952,83843,449297.952,17,40,26,0.13,10.9194245454722,0.418284789644013,14.142135623731,0.0178181355994775,0.2725,27.25,1,95.1807759450405,0.930224850419523,27.25,1.26435635068001,0,-0.75326093700197,-0.797572076320648,0.10658165872279
+4019,83743,449297.952,83843,449197.952,18,40,18.75,0.0375,11.3620814887601,0.251754850088183,23.37368698591,0.000638292443727551,0.0875,8.75,2,84.306248254537,0.886632026452527,8.25,3.62357973371233,0,-0.494075391441584,-0.700168013572693,0.282499559087391
+4020,83743,449197.952,83843,449097.952,19,40,8.75,0.00795454545454545,2.43075098880859,0.162878787878788,21.0833747122808,-0.0062706240464118,0.035,3.5,2,70.070453198383,0.740932642487047,3,4.75020108904157,0,0.104744426285227,-0.222264841198921,0.42025767609889
+4021,83743,449097.952,83843,448997.952,20,40,31.25,0.0625,11.8922292692705,0.517986928104575,18.754306317793,0.00789419167875167,0.0825,8.25,5,70.7513562202132,0.656877586032899,4.5,1.70343040697502,0,0.584944009780884,0.334980666637421,0.332389661868585
+4022,83743,448997.952,83843,448897.952,21,40,9.75,0.00975,2.38969499093138,0.161666666666667,16.1947040318531,0.0203761223243328,0.14,14,6,72.9769530997116,0.676336609925677,3.5,11.1008442129408,0,0.755608225862185,0.520695269107819,0.283117369251293
+4023,83743,448897.952,83843,448797.952,22,40,12.5,0.0178571428571429,2.64977751756608,0.115448504983389,25.7662401170936,0.0148692962314999,0.0675,6.75,4,71.2763122056695,0.700729471912214,4.75,8.83963203430176,0,0.434784294830428,0.0665381252765656,0.480662174549142
+4024,83743,448797.952,83843,448697.952,23,40,29.75,0.0495833333333333,7.1304101170946,0.262041488603989,13.0693654216063,-0.00740521272758087,0,0,0,NA,NA,0,NA,NA,-0.112691015005112,-0.347549736499786,0.318849231050156
+4025,83743,448697.952,83843,448597.952,24,40,7.5,0.009375,3.60112962191251,0.175,17.9119053450738,-0.00326682204712824,0,0,0,NA,NA,0,NA,NA,-0.408174547884199,-0.450535804033279,0.0936347232233741
+4026,83743,448597.952,83843,448497.952,25,40,16.75,0.041875,9.02981249617526,0.249305555555556,16.3471090380795,0.00227917145732135,0.0025,0.25,1,0,NA,0.25,5,5,-0.457757311562697,-0.510937571525574,0.0967502697859977
+4027,83743,448497.952,83843,448397.952,26,40,11.5,0.0575,11.0532275527367,0.606150793650794,42.7200187265877,-0.0186876007620958,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.357291665342119,-0.522689640522003,0.300824767692062
+4028,83743,448397.952,83843,448297.952,27,40,6.25,0.0125,3.65090410950241,0.166666666666667,17.0710678118655,-0.00653201646995512,0,0,0,NA,NA,0,NA,NA,-0.289240376558155,-0.517449259757996,0.446666997121131
+4029,83743,448297.952,83843,448197.952,28,40,1,0.01,4.04508497187474,0.333333333333333,NA,0.00705586077456246,0.01,1,1,52.6315789473684,0.747474747474748,1,38.9056434631348,35,-0.21409563264913,-0.440120607614517,0.470264313119203
+4030,83743,448197.952,83843,448097.952,29,40,2.5,0.005,1.97249498438876,0.116666666666667,18.7147926194567,0.00398513541128295,0.0175,1.75,1,65.4774238937655,1,1.75,42.0300500052316,38.0788650512695,-0.269991965033114,-0.477528035640717,0.33573200487033
+4031,83743,448097.952,83843,447997.952,30,40,62.5,0.625,30.8958397632174,0.902666666666667,NA,-0.0308539021491742,0.0675,6.75,2,77.6982105934207,0.850364735956107,4.75,0.185185185185185,0,-0.502531462245517,-0.593363881111145,0.197883407692458
+4032,83743,447997.952,83843,447897.952,31,40,45.25,0.0646428571428571,8.18724903076873,0.342519314666238,12.0223639700836,-0.0425337803039292,0,0,0,NA,NA,0,NA,NA,-0.546615570783615,-0.597357392311096,0.147197231149188
+4033,83743,447897.952,83843,447797.952,32,40,14.25,0.01425,4.93048998319187,0.248452380952381,14.5981369343374,-0.0105442942148147,0.0675,6.75,1,85.0052537126447,0.825425525282125,6.75,4.79864572595667,0,-0.306693733980258,-0.493605375289917,0.274137236333855
+4034,83743,447797.952,83843,447697.952,33,40,5.25,0.00875,3.54747944721703,0.113425925925926,24.7200815531856,0.00873173278589093,0.0325,3.25,4,49.0805680465096,0.598047660063164,1.5,11.4193493769719,0,0.173395103412784,0.00248753605410457,0.255604121627235
+4035,83743,447697.952,83843,447597.952,34,40,2.25,0.0028125,0.3125,0.0208333333333333,19.2659684019452,0.0102509087901853,0.0125,1.25,1,58.1880425789518,1,1.25,36.220768737793,33.5410194396973,0.470397837460041,0.35752072930336,0.154833354557621
+4036,83743,447597.952,83843,447497.952,35,40,9,0.009,3.17125344157429,0.216944444444444,16.6579514008052,0.0173188965242298,0.1,10,4,79.8939676284337,0.734660033167496,7.75,10.3002525806427,0,0.612137052747938,0.546703279018402,0.0968888415068996
+4037,83743,447497.952,83843,447397.952,36,40,1.25,0.003125,0.625,0.0416666666666667,29.0043142831677,0.0122325025581858,0.005,0.5,1,30.8308651382582,1,0.5,47.7975978851318,46.0977210998535,0.663365572690964,0.623215973377228,0.0485034110532429
+4038,83743,447397.952,83843,447297.952,37,40,4,0.00666666666666667,2.25247554602232,0.0861111111111111,22.7220281453418,0.00728616936454273,0,0,0,NA,NA,0,NA,NA,0.692552679114872,0.679131388664246,0.0414477245364207
+4039,83743,447297.952,83843,447197.952,38,40,0.75,0.0025,0,0,24.3372087784044,0.00455473654696107,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,16.4149459203084,15,0.74305526415507,0.700653314590454,0.0751372652968361
+4040,83743,447197.952,83843,447097.952,39,40,5.5,0.0055,1.02367015360418,0.0680555555555556,15.4106318164799,0.00398681253203449,0.0325,3.25,2,64.4889415222974,0.770312948607522,2,5.63725163386418,0,0.861483262644874,0.791480541229248,0.129394616905899
+4041,83743,447097.952,83843,446997.952,40,40,5.75,0.00821428571428572,2.88624703568566,0.135034013605442,22.1602229260006,0.00850487222893321,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047,0.973804424206416,0.879789352416992,0.14309436000953
+4042,83743,446997.952,83843,446897.952,41,40,11.75,0.0195833333333333,5.65755486824066,0.340599838969404,22.3009119129378,0.0271444015950237,0.12,12,2,87.458216774975,0.847560975609756,11.25,4.80578780174255,0,0.869492411613464,0.746072828769684,0.182401221464023
+4043,83743,446897.952,83843,446797.952,42,40,13.5,0.016875,4.39128218506824,0.163690476190476,17.229406730507,0.0103771951056979,0.0325,3.25,3,58.4284697750696,0.770312948607522,2,2.46700521615835,0,0.556085425118605,0.365777552127838,0.222183721288793
+4044,83743,446797.952,83843,446697.952,43,40,28.25,0.0353125,5.52668812633731,0.227379590799339,13.8323617290181,0.0254285659679863,0.1475,14.75,3,84.6842056590128,0.792996377436605,8.25,1.65902467501366,0,0.261979688372877,0.0763505771756172,0.250849010363287
+4045,83743,446697.952,83843,446597.952,44,40,27.5,0.055,8.04558009948866,0.411978810663021,21.0602494273588,0.00608779723469297,0.0375,3.75,3,67.2858037951689,0.622195985832349,3,2.58927625020345,0,0.0320264973237904,-0.112653970718384,0.228870953398383
+4046,83743,446597.952,83843,446497.952,45,40,36.5,0.0365,6.76995850679887,0.336274038461538,10.4142135623731,0.0269285064206633,0.175,17.5,5,84.5000435467624,0.753633899975364,12.25,1.74894866943359,0,-0.132219411432743,-0.254368782043457,0.178433281627219
+4047,83743,446497.952,83843,446397.952,46,40,19,0.0172727272727273,5.34906049924943,0.276856803327392,17.803782803158,0.0283838908916732,0.2025,20.25,6,80.3451785818861,0.747474747474748,10.75,5.48496196888111,0,-0.231647254692184,-0.268349468708038,0.0892981933932073
+4048,83743,446397.952,83843,446297.952,47,40,50.25,0.08375,12.8777982073291,0.355988950167032,11.2267799624997,0.0200705774145763,0.1725,17.25,7,73.8182800996932,0.660432947991311,5,2.75877302971439,0,-0.109278436585252,-0.212129011750221,0.102103924993664
+4049,83743,446297.952,83843,446197.952,48,40,58.25,0.145625,11.0761483596656,0.316997063142438,13.3852549156242,0.00502138189041943,0.145,14.5,6,74.0522741882347,0.684210526315789,5.75,1.50122530706998,0,-0.0506009927743839,-0.121078118681908,0.0797880729188246
+4050,83743,446197.952,83843,446097.952,49,40,41.75,0.104375,13.0022288083187,0.275039682539683,13.8471090380795,0.00357504524843534,0.12,12,3,80.9099378697055,0.792128603104213,5.75,2.90551273028056,0,-0.222992748022079,-0.356627911329269,0.164484806271799
+4051,83743,446097.952,83843,445997.952,50,40,41.75,0.104375,10.7336170045186,0.40411220043573,10,-0.0359837966789564,0.02,2,3,46.9544081498484,0.693877551020408,1.5,3.125,0,-0.380343741840786,-0.438742876052856,0.10948371315933
+4052,83743,445997.952,83843,445897.952,51,40,27.75,0.0396428571428571,8.40331781312456,0.390538033395176,16.6295921390622,0.000690747344051488,0.045,4.5,3,71.0526315789474,0.844871049059531,4,1.94444444444444,0,-0.45799786845843,-0.50477409362793,0.0579198614131383
+4053,83743,445897.952,83843,445797.952,52,40,39,0.0433333333333333,8.82656833238525,0.455381663948623,11.2780905998588,-0.0083009577978919,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,4.45760515001085,0,-0.448889311816957,-0.51252669095993,0.11818236299909
+4054,83743,445797.952,83843,445697.952,53,40,33.75,0.16875,21.0216671241828,0.611772486772487,10,0.0071981643575964,0.12,12,2,85.2085386959614,0.83370288248337,10,1.81398057937622,0,-0.268387186651429,-0.447960495948792,0.221654857483347
+4055,83743,445697.952,83843,445597.952,54,40,96.5,0.965,37.9608514662565,0.913644214162349,NA,0.00470064325483691,0.25,25,2,90.5567761371746,0.866666666666667,16.75,0.45,0,0.148640351990859,-0.0478453636169434,0.249713241964733
+4056,83743,445597.952,83843,445497.952,55,40,51.5,0.0735714285714286,9.02840779674961,0.451758741400685,10,0.0359034983005631,0.37,37,2,95.933702574572,0.912141978562643,36.5,1.88247801806476,0,0.352818760606978,0.286234170198441,0.135795588591396
+4057,83743,445497.952,83843,445397.952,56,40,57.75,0.1155,12.7162340572583,0.390232717820447,10,0.0509465949752394,0.545,54.5,4,96.8813268598933,0.805120987386997,52.75,1.87842878289179,0,0.415767706930637,0.334326893091202,0.157514691975163
+4058,83743,445397.952,83843,445297.952,57,40,59.5,0.074375,9.62400415083959,0.327373853770364,10.1475424859374,0.056495208244196,0.625,62.5,2,98.2831150000722,0.680911680911681,61.75,1.7248528137207,0,0.292688341604339,0.0890132188796997,0.264178080784954
+4059,83743,445297.952,83843,445197.952,58,40,68.25,0.170625,18.0729927033878,0.498229847494553,10,0.046434429954752,0.42,42,5,90.4198095836908,0.799777530589544,20,1.43068654196603,0,-0.0915489774973442,-0.499968230724335,0.39937119444126
+4060,83743,445197.952,83843,445097.952,59,40,58.25,0.145625,19.0286933609215,0.466461009691233,15,0.0467377122543712,0.4625,46.25,1,97.5240566095389,0.864001087991296,46.25,1.41660036654086,0,-0.520075463586383,-0.807453036308289,0.499248524448852
+4061,83743,445097.952,83843,444997.952,60,40,61.75,0.205833333333333,15.205969897779,0.470449172576832,11.6666666666667,0.0550392338854363,0.535,53.5,3,95.5154620321723,0.729831955476306,42,1.75550380599833,0,-0.922929232319196,-1.16309177875519,0.399557131537305
+4062,83743,444997.952,83843,444897.952,61,40,83.25,0.41625,19.4311147807585,0.523413897280967,15,0.0395293630398373,0.425,42.5,4,89.5792431289259,0.78885956382831,17.75,0.394535693000345,0,-1.15587329864502,-1.30177235603333,0.276713534085775
+4063,83743,444897.952,83843,444797.952,62,40,33,0.033,5.58631462976326,0.255569016317435,12.3614504790025,0.0101685515847566,0.1475,14.75,2,86.2546505195446,0.838997182450693,10.5,1.13679775949252,0,-1.48526935776075,-1.67606699466705,0.241516489338144
+4064,83743,444797.952,83843,444697.952,63,40,56.75,0.1135,15.342398694068,0.480299979453462,10,-0.0333288239259491,0.1225,12.25,1,90.2255639097744,0.918599918599919,12.25,1.61514562490035,0,-1.81509929233127,-1.86805546283722,0.10685913353451
+4065,83743,444697.952,83843,444597.952,64,40,14.75,0.07375,9.0902697419514,0.359195402298851,20,0.0137847355820941,0.1525,15.25,1,91.785591586011,0.888684811042467,15.25,3.14467689639232,0,-1.80154510339101,-1.86243152618408,0.0767575416940139
+4066,83743,444597.952,83843,444497.952,65,40,22.5,0.045,7.35568610535968,0.305982905982906,25.0127339387363,0.0201327888874584,0.19,19,3,85.818925825476,0.815736134144094,10,4.5258304947301,0,-1.62201481395298,-1.68328714370728,0.10281372527268
+4067,83743,444497.952,83843,444397.952,66,40,32.75,0.0467857142857143,7.92361599564094,0.327133169386691,11.8213022753308,0.0136737895046826,0.05,5,5,56.4038012741402,0.592529711375212,2.25,2.76776695251465,0,-1.51813048786587,-1.54762160778046,0.0571473603308835
+4068,83743,444397.952,83843,444297.952,67,40,46,0.0766666666666667,6.7648554314465,0.245852065938771,14.1939660440301,0.00890243015686792,0.075,7.5,3,77.1617628582901,0.823496966354109,6.25,1.13807118733724,0,-1.53742258747419,-1.59545266628265,0.0672872671057232
+4069,83743,444297.952,83843,444197.952,68,40,30.5,0.0305,4.27108553691202,0.169175508399646,11.1713087738337,0.0375554722466222,0.325,32.5,3,94.2787051656578,0.881231442412877,31.25,3.29508438110352,0,-1.67600921789805,-1.75686228275299,0.131185968575726
+4070,83743,444197.952,83843,444097.952,69,40,42.5,0.0472222222222222,6.40023082311527,0.290745382749059,11.7098262391464,0.00684224268718026,0.125,12.5,5,74.1901977593032,0.717647058823529,4,0.7,0,-1.93524448076884,-2.06281900405884,0.157191976122093
+4071,83743,444097.952,83843,443997.952,70,40,68,0.17,10.0656276170111,0.297955974842767,10.5901699437495,0.0238078478149492,0.2475,24.75,3,87.6340624345455,0.74616447049162,12.5,1.75901147091027,0,-2.20791692203946,-2.29568481445312,0.162354375554197
+4072,83743,443997.952,83843,443897.952,71,40,29.25,0.0417857142857143,5.9659742095418,0.274800095476787,12.2716713482135,0.0154511622798691,0.1675,16.75,2,89.6970368270247,0.774133107466441,14.25,2.61194029850746,0,-2.46918924649556,-2.59445285797119,0.14449917928028
+4073,83743,443897.952,83843,443797.952,72,40,43,0.086,8.91623947916741,0.345877565463553,17.6568542494924,0.103359811923074,0.585,58.5,2,97.6249560580831,0.961401670756252,57.75,2.24314807011531,0,-2.65989009539286,-2.70333957672119,0.0689140499124072
+4074,83743,443797.952,83843,443697.952,73,40,32.5,0.108333333333333,9.36848656448239,0.240885416666667,34.8255364865147,0.0398947186045552,0.255,25.5,5,84.8635787234452,0.743279422011956,10.25,3.97524368061739,0,-2.69285976886749,-2.76980829238892,0.0889453971530065
+4075,83743,443697.952,83843,443597.952,74,40,65.25,0.32625,17.523105965613,0.425961538461538,15,0.0605946968559874,0.6425,64.25,1,98.697022509981,0.779015163630548,64.25,4.99964836506528,0,-2.74373451868693,-2.77941632270813,0.0738382424875545
+4076,83743,443597.952,83843,443497.952,75,40,4.5,0.005,1.26962929235003,0.0987654320987654,14.2677054963942,0.0783967141222092,0.7375,73.75,1,99.1344998974781,0.931359931359931,73.75,15.8388178615247,0,-2.83225248257319,-2.89108538627625,0.072921413696122
+4077,83743,443497.952,83843,443397.952,76,40,0,NA,NA,NA,NA,-0.00959600399524788,0.025,2.5,1,71.9760246298065,0.763313609467456,2.5,65.160871887207,58.5234985351562,-2.98009745279948,-3.06481409072876,0.108123933731988
+4078,83743,443397.952,83843,443297.952,77,40,1.25,0.0125,4.2390073826009,0.433333333333333,NA,0.034692970979886,0.55,55,1,98.166317237229,0.967479674796748,55,47.9869675116106,15.8113880157471,-3.12525163756476,-3.22011709213257,0.131678536415772
+4079,83743,443297.952,83843,443197.952,78,40,0,NA,NA,NA,NA,-0.0199582282515257,0,0,0,NA,NA,0,NA,NA,-3.21633491913478,-3.26825404167175,0.0926179836813473
+4080,83743,443197.952,83843,443097.952,79,40,0,NA,NA,NA,NA,-0.0443819046371937,0,0,0,NA,NA,0,NA,NA,-3.20082969135708,-3.24368786811829,0.0628207875300365
+4081,83743,443097.952,83843,442997.952,80,40,0,NA,NA,NA,NA,-0.0606077746945084,0,0,0,NA,NA,0,NA,NA,-3.17754258712133,-3.20325112342834,0.0409246018302372
+4082,83743,442997.952,83843,442897.952,81,40,1.5,0.003,0.5,0.0333333333333333,18.6938721971897,-0.104629181465134,0,0,0,NA,NA,0,NA,NA,-3.16801603635152,-3.17822289466858,0.0246739752635432
+4083,83743,442897.952,83843,442797.952,82,40,1,0.005,1.66666666666667,0.111111111111111,98.9949493661167,-0.135137707814574,0,0,0,NA,NA,0,NA,NA,-3.1338521639506,-3.15024948120117,0.026238088976198
+4084,83743,442797.952,83843,442697.952,83,40,2,0.02,5.56064255642433,0.520833333333333,NA,-0.0730409932642942,0,0,0,NA,NA,0,NA,NA,-3.16607779926724,-3.21362400054932,0.0618083992452742
+4085,83743,442697.952,83843,442597.952,84,40,2.75,0.00458333333333333,0.950224896244969,0.0648148148148148,14.9620126531122,-0.0477669482491183,0,0,0,NA,NA,0,NA,NA,-3.28598519166311,-3.3718900680542,0.087582761848219
+4086,83743,442597.952,83843,442497.952,85,40,7.5,0.075,15.0284866624055,0.644444444444444,NA,-0.0349692599048558,0,0,0,NA,NA,0,NA,NA,-3.39115341504415,-3.44604444503784,0.0797044646726458
+4087,83743,442497.952,83843,442397.952,86,40,0.25,0.0025,0,0,NA,-0.0106638133026718,0.2425,24.25,1,94.5753035249093,0.954478206441334,24.25,35.5910102018376,0,-3.45278741916021,-3.51023626327515,0.0731777751445916
+4088,83743,442397.952,83843,442297.952,87,40,0.25,0.0025,0,0,NA,0.019668102592882,0.295,29.5,2,94.1499872291778,0.907204878372108,28.5,67.4793400198726,10,-3.49022695753309,-3.530357837677,0.0729226606599408
+4089,83743,442297.952,83843,442197.952,88,40,1.5,0.0025,0,0,14.5764286477517,0.0399398220914009,0.4075,40.75,2,93.6790647275495,0.853727144866385,24.5,24.4089429305375,0,-3.5314809679985,-3.5812041759491,0.0648705941795148
+4090,83743,442197.952,83843,442097.952,89,40,1,0.0025,0,0,16.2744730278781,0.0386562521574342,0.26,26,2,93.2769101238485,0.862696921520451,24.5,30.3378058580252,0,-3.59563488430447,-3.61440515518188,0.0352867355570298
+4091,83743,442097.952,83843,441997.952,90,40,0,NA,NA,NA,NA,0.0361892275810169,0.3175,31.75,2,95.0610992303466,0.854114139828426,31,62.345606435941,26.9258232116699,-3.61712344487508,-3.61984443664551,0.0112657769187221
+4092,83743,441997.952,83843,441897.952,91,40,0,NA,NA,NA,NA,0.0201671121687832,0.145,14.5,4,81.0482731503438,0.789473684210526,8,67.3068831871296,36.4005508422852,-3.58836768070857,-3.6143491268158,0.0403457106770426
+4093,83743,441897.952,83843,441797.952,92,40,0,NA,NA,NA,NA,0.0200840260830955,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,65.0040855407715,53.1507301330566,-3.5317808787028,-3.56911659240723,0.0523028874597395
+4094,83743,441797.952,83843,441697.952,93,40,0,NA,NA,NA,NA,-0.00271155612579605,0,0,0,NA,NA,0,NA,NA,-3.48472388585409,-3.52585053443909,0.0509028056407557
+4095,83743,441697.952,83843,441597.952,94,40,0,NA,NA,NA,NA,0.053110906807924,0.47,47,2,96.921859874017,0.956625460854479,46.5,79.8227582282208,25.4950981140137,-3.44190210766262,-3.46778202056885,0.0578774244357563
+4096,83743,441597.952,83843,441497.952,95,40,0,NA,NA,NA,NA,0.132259506492046,0.9725,97.25,1,99.9261039309117,0.852180339985219,97.25,52.7810734354132,10,-3.31031390031179,-3.4023859500885,0.153883918056984
+4097,83743,441497.952,83843,441397.952,96,40,4.5,0.00642857142857143,2.35817768893796,0.154761904761905,11.5046782644054,-0.0697306133274105,0.08,8,1,86.6550847056172,0.895484949832776,8,13.7153840661049,5,-2.9311490588718,-3.04507160186768,0.188036908476248
+4098,83743,441397.952,83843,441297.952,97,40,2.25,0.0045,1.39737508619941,0.04,39.1119775015166,-0.0176775531010935,0.135,13.5,2,85.7508731534955,0.875691466219156,10,24.8280951888473,11.1803398132324,-2.79445978005727,-2.83239817619324,0.0532093289445214
+4099,83743,441297.952,83843,441197.952,98,40,14,0.0155555555555556,3.78377227744222,0.212567268122824,14.6306041617181,-0.0190039384852389,0.1125,11.25,3,84.4710310673487,0.881393624907339,10.25,3.7007928636339,0,-2.87170346577962,-2.9476912021637,0.0901582827244963
+4100,83743,441197.952,83843,441097.952,99,40,49.7368421052632,0.1575,16.9492615191065,0.488554691028271,11.937129433614,0.0742624867029372,0.5,50,1,97.819928619089,0.956873315363881,50,2.91768129348755,0,-3.0139438311259,-3.08441734313965,0.0933678412049858
+4101,83843,451097.952,83943,450997.952,0,41,42.5,0.141666666666667,25.5154404039291,0.662087076603206,11.380711874577,-0.00936896354076453,0.025,2.5,3,47.9024210673189,0.526627218934911,1,4.5,0,-2.00485194722811,-2.14418244361877,0.378863800839382
+4102,83843,450997.952,83943,450897.952,1,41,47.75,0.159166666666667,24.8414221847424,0.638277467479884,14.4280904158206,0.00507032929665002,0.1525,15.25,3,83.8676468887045,0.788501140980687,8.5,1.47540983606557,0,-2.10040242224932,-2.21164488792419,0.267989262223603
+4103,83843,450897.952,83943,450797.952,2,41,53,0.176666666666667,19.6190534800809,0.700793650793651,10,-0.0231824804780263,0.0075,0.75,1,44.4894453484604,1,0.75,5,5,-2.05046779910723,-2.16129088401794,0.125962864196469
+4104,83843,450797.952,83943,450697.952,3,41,69,0.23,20.0972519226149,0.794748146324113,15.6419413452242,0.00483197843343078,0.1275,12.75,2,85.8509438597251,0.894608569640681,10.75,3.28437461105047,0,-2.1149672344327,-2.25841236114502,0.18168378671201
+4105,83843,450697.952,83943,450597.952,4,41,46.75,0.155833333333333,15.4706407399905,0.514094143404488,26.6666666666667,0.00833058872811307,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0,-2.01918654640516,-2.33014059066772,0.370432630414641
+4106,83843,450597.952,83943,450497.952,5,41,58.5,0.2925,27.2011195657728,0.774537037037037,15,0.0303642045126503,0.3225,32.25,4,91.3059164410728,0.849258067048756,27.25,4.3168809136679,0,-1.76701208204031,-2.49238324165344,0.811717273600677
+4107,83843,450497.952,83943,450397.952,6,41,65.75,0.32875,24.7348511077084,0.67443919716647,15,0.0128498709763153,0.2075,20.75,6,80.4385006597396,0.648061117191356,8.75,1.67641127253153,0,-1.40819398562113,-2.24021434783936,0.782647842676291
+4108,83843,450397.952,83943,450297.952,7,41,91.5,0.915,37.9680828081149,0.892987249544627,NA,-0.0402870570692176,0.1225,12.25,1,90.2255639097744,0.864333197666531,12.25,0,0,-1.34379705041647,-1.95400249958038,0.633888466911239
+4109,83843,450297.952,83943,450197.952,8,41,88.5,0.885,38.2634439293449,0.878531073446328,NA,-0.0501116649771575,0.035,3.5,4,49.9491485217681,0.533678756476684,1.25,0,0,-1.24072279036045,-1.64252364635468,0.445761425349089
+4110,83843,450197.952,83943,450097.952,9,41,90,0.9,37.1974065463449,0.886111111111111,NA,-0.0178060229955361,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-1.13354406754176,-1.39825224876404,0.230661488328067
+4111,83843,450097.952,83943,449997.952,10,41,81.75,0.8175,40.1861844870242,0.854230377166157,NA,-0.0296997664310356,0.0125,1.25,2,43.859649122807,0.594936708860759,1,4,0,-1.05070050805807,-1.09961712360382,0.0683407575581973
+4112,83843,449997.952,83943,449897.952,11,41,68.75,0.229166666666667,16.8967659643061,0.590516213638531,15,-0.0519822266064148,0.03,3,2,62.3313604517085,0.757428744693754,2,3.75,0,-0.968572974205017,-1.04955446720123,0.107066589492488
+4113,83843,449897.952,83943,449797.952,12,41,79.25,0.7925,35.9674011700072,0.894321766561514,NA,-0.0365462880938139,0.055,5.5,3,71.1141350867235,0.782135076252723,4.25,1.09736980091442,0,-0.9346276037395,-1.07503914833069,0.179460084915732
+4114,83843,449797.952,83943,449697.952,13,41,65.5,0.3275,19.9536105776508,0.574643320363165,20,-0.0426536741551081,0.035,3.5,3,60.3695132574486,0.637305699481865,2.25,1.42857142857143,0,-0.866749281684558,-1.0189254283905,0.232793787397632
+4115,83843,449697.952,83943,449597.952,14,41,81.25,0.40625,19.487711458743,0.525283797729618,20,-0.064240673191307,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.724331472069025,-0.891575038433075,0.221266345180631
+4116,83843,449597.952,83943,449497.952,15,41,64.5,0.215,15.7524358387874,0.428178307976026,14.120226591666,-0.00723704795061167,0.0175,1.75,4,32.8947368421053,0.363867684478371,1,0,0,-0.550164274871349,-0.750033676624298,0.25348885613716
+4117,83843,449497.952,83943,449397.952,16,41,0,NA,NA,NA,NA,-0.00670877485215897,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859,-0.570014698430896,-0.727969706058502,0.178373089499818
+4118,83843,449397.952,83943,449297.952,17,41,0.25,0.0025,0,0,NA,-0.00672372751527291,0,0,0,NA,NA,0,NA,NA,-0.620841503143311,-0.729615092277527,0.117297731556926
+4119,83843,449297.952,83943,449197.952,18,41,21.75,0.02175,4.565026728039,0.157514880952381,12.0388436152318,-0.0127786030124253,0,0,0,NA,NA,0,NA,NA,-0.51934901997447,-0.68246853351593,0.17511244569905
+4120,83843,449197.952,83943,449097.952,19,41,35.25,0.05875,8.54913445650795,0.303306878306878,12.4458139124281,0.0107661509980426,0.13,13,3,85.2941544814523,0.767531964354901,11,3.72383865943322,0,-0.15320655858765,-0.344411820173264,0.302883593150334
+4121,83843,449097.952,83943,448997.952,20,41,3.75,0.009375,2.6015149405951,0.15530303030303,36.8688719599549,-0.0060790668077243,0,0,0,NA,NA,0,NA,NA,0.254264871279399,0.121832720935345,0.226619791804337
+4122,83843,448997.952,83943,448897.952,21,41,15.75,0.0143181818181818,2.7924426062751,0.137241985068072,11.5193716125761,-0.00218171685506604,0.0675,6.75,3,74.3247211519702,0.825425525282125,5.25,6.34729625560619,0,0.363972831517458,0.259526669979095,0.157932564959818
+4123,83843,448897.952,83943,448797.952,22,41,4.25,0.00386363636363636,1.64605470161802,0.0681818181818182,11.8048224806617,-0.000674431017032475,0,0,0,NA,NA,0,NA,NA,0.0728943084056179,-0.0557936206459999,0.223950387241509
+4124,83843,448797.952,83943,448697.952,23,41,6,0.0075,2.84404981643719,0.176587301587302,23.0711943208253,0.00150798025673794,0.02,2,2,54.1958020619036,0.795918367346939,1.5,6.03142595291138,0,-0.245659715961665,-0.368650108575821,0.16456577154002
+4125,83843,448697.952,83943,448597.952,24,41,4.25,0.00708333333333333,2.69412313685584,0.148148148148148,20.7458518901112,-0.0102427563055244,0,0,0,NA,NA,0,NA,NA,-0.3483598853151,-0.423413693904877,0.153369341213685
+4126,83843,448597.952,83943,448497.952,25,41,10.5,0.015,4.27001452501174,0.234920634920635,16.4926602132195,0.00138092044380755,0.0625,6.25,4,66.4192984331372,0.733333333333333,3,1.88284271240234,0,-0.184512423467822,-0.41531577706337,0.331553282886601
+4127,83843,448497.952,83943,448397.952,26,41,38,0.126666666666667,15.9498358501094,0.490151616202036,16.6666666666667,0.00235023663921311,0.04,4,2,69.8932782516112,0.826388888888889,3,1.5625,0,0.276347519208988,-0.213237822055817,0.626107264364488
+4128,83843,448397.952,83943,448297.952,27,41,28.5,0.0316666666666667,7.10686707701272,0.281085647652364,12.4052426206298,0.0250447002222245,0.1575,15.75,3,87.8061964148488,0.751820879417319,13.25,1.93763599698506,0,0.852661249227822,0.193341299891472,0.760966047243075
+4129,83843,448297.952,83943,448197.952,28,41,26.5,0.0240909090909091,5.30333566757157,0.352096977096977,11.0457104907935,0.00962334565689162,0.0425,4.25,3,61.6259047094115,0.70757180156658,2,4.77724726059858,0,0.94690947731336,0.451381266117096,0.681515007579621
+4130,83843,448197.952,83943,448097.952,29,41,50,0.5,30.8015436987132,0.7725,NA,0.027097200049102,0.255,25.5,5,87.5520506057562,0.750614295668757,19,4.59217421213786,0,0.674396889517084,-0.047559279948473,0.748122995593793
+4131,83843,448097.952,83943,447997.952,30,41,26,0.0288888888888889,5.9028353486763,0.264462081128748,16.6393581220104,0.00742069061662505,0.0975,9.75,3,79.5295564104063,0.795440017046665,7.25,2.72341547256861,0,0.565961635981997,-0.254983335733414,0.931570648117638
+4132,83843,447997.952,83943,447897.952,31,41,26,0.0216666666666667,4.60539786798577,0.228472222222222,11.9315210711826,0.0207080071175255,0.2075,20.75,3,86.9158852539652,0.759651494667268,10,2.4281407091991,0,0.358483515058955,-0.319129824638367,0.912203611195759
+4133,83843,447897.952,83943,447797.952,32,41,10.25,0.01025,2.43771634544333,0.0904761904761905,15.8495853509289,0.00341483511340812,0.0075,0.75,1,44.4894453484604,1,0.75,26.5499521891276,25,0.535242669051513,-0.275639474391937,0.868141425799801
+4134,83843,447797.952,83943,447697.952,33,41,5.25,0.00875,3.8361454893709,0.149074074074074,13.8155712709726,-0.0240299086573759,0,0,0,NA,NA,0,NA,NA,0.763899947206179,0.146544009447098,0.674376985861065
+4135,83843,447697.952,83943,447597.952,34,41,13.5,0.045,8.84366970134387,0.45959595959596,37.4754689570643,0.0110539335534304,0.0575,5.75,3,73.0479770648937,0.73474801061008,4.5,3.54360066289487,0,0.903466507792473,0.531725883483887,0.40475725931458
+4136,83843,447597.952,83943,447497.952,35,41,12.25,0.0111363636363636,3.53170346928393,0.180430077169208,14.8833008105557,0.0135477418831761,0.03,3,4,45.8904501860257,0.514857489387508,1.25,3.92258898417155,0,0.92340690890948,0.716436088085175,0.272861650982833
+4137,83843,447497.952,83943,447397.952,36,41,30.25,0.0605,6.11506612985299,0.285027000490918,12.0776872304636,0.000861672837941114,0.035,3.5,2,71.13601550507,0.896373056994819,3.25,2.64793341500419,0,0.871464513242245,0.719797909259796,0.219020315412657
+4138,83843,447397.952,83943,447297.952,37,41,7.25,0.00659090909090909,2.77405627486081,0.165909090909091,17.5246203908422,0.0116856098105632,0.025,2.5,3,48.7490195044348,0.605522682445759,1.25,14.025276184082,5,0.855018963416417,0.72497022151947,0.198283021778625
+4139,83843,447297.952,83943,447197.952,38,41,4.25,0.0085,4.41710863655847,0.216666666666667,33.2403183744242,0.0134818797726257,0.035,3.5,5,52.8690006627922,0.637305699481865,2.5,14.3732858385359,5,0.879349082708359,0.742014527320862,0.176583294507369
+4140,83843,447197.952,83943,447097.952,39,41,3.25,0.00464285714285714,1.90700146144721,0.0952380952380952,22.1823855637998,0.012111058067494,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,6.43138398064507,0,0.945137287179629,0.817063987255096,0.166900109896068
+4141,83843,447097.952,83943,446997.952,40,41,15.5,0.0258333333333333,2.6157621522599,0.123294346978558,20.8350708452671,0.00839189225465816,0.04,4,1,78.9473684210526,0.782986111111111,4,4.15642595291138,0,0.958951361477375,0.875395059585571,0.121634735575253
+4142,83843,446997.952,83943,446897.952,41,41,8,0.0133333333333333,2.52473071899726,0.137407407407407,27.8778290766876,0.00067928578122519,0,0,0,NA,NA,0,NA,NA,0.821102877457937,0.727700352668762,0.146763660432154
+4143,83843,446897.952,83943,446797.952,42,41,4.5,0.01125,3.29567524917059,0.227564102564103,24.5946894909864,0.0033974486459465,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,0.511435829102993,0.340606242418289,0.188661279794344
+4144,83843,446797.952,83943,446697.952,43,41,3.75,0.00625,2.24266478035356,0.119708994708995,18.2293834936937,0.0160545195828036,0.03,3,3,54.6658847081426,0.636143117040631,1.75,3.01502831776937,0,0.227347364649177,0.0704900473356247,0.179298366430047
+4145,83843,446697.952,83943,446597.952,44,41,28.75,0.0319444444444444,5.06782302755187,0.233726150392817,14.589169543935,0.0209585662826066,0.12,12,6,74.816164494393,0.667405764966741,7.5,3.13446172078451,0,0.0438658994777749,-0.113195151090622,0.17923385720904
+4146,83843,446597.952,83943,446497.952,45,41,26,0.0371428571428571,8.17356288531476,0.363083900226757,14.6445502968488,0.0351541341791199,0.285,28.5,6,82.4004728357964,0.660533641116165,7.5,3.37657466687654,0,-0.0864041883032769,-0.236150041222572,0.149329964268191
+4147,83843,446497.952,83943,446397.952,46,41,29.25,0.024375,4.33272398409201,0.208446067821068,11.5198162643362,0.0438404660966228,0.35,35,5,91.6422810588885,0.783653846153846,28.75,3.87029928479876,0,-0.184737914552291,-0.26479497551918,0.0987717767297683
+4148,83843,446397.952,83943,446297.952,47,41,53.5,0.066875,5.67699654560367,0.172315505804312,10.7725424859374,0.0224493141225139,0.16,16,7,79.056194899553,0.638605442176871,8.5,1.25,0,-0.19922909559682,-0.343011349439621,0.124247840307996
+4149,83843,446297.952,83943,446197.952,48,41,51,0.06375,7.61408851063245,0.354638009049774,10.5177669529664,-0.0261372185045911,0.05,5,3,65.9190959828982,0.694397283531409,2.75,1.75,0,-0.256989741077026,-0.425820708274841,0.184325876905118
+4150,83843,446197.952,83943,446097.952,49,41,50.5,0.0841666666666667,7.49058749431411,0.295311268715524,11.8633899812498,-0.0432807808781217,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,2.01184463500977,0,-0.407616000622511,-0.490191519260406,0.109520549584711
+4151,83843,446097.952,83943,445997.952,50,41,9,0.01,2.98261269820016,0.18016975308642,14.9042646748191,0.00300561077082421,0.085,8.5,5,76.6652872608395,0.687743950039032,6.75,5.31103639041676,0,-0.453941511611144,-0.486219555139542,0.048865912682199
+4152,83843,445997.952,83943,445897.952,51,41,4.25,0.02125,7.07298306737696,0.445833333333333,80.156097709407,0.000416211232318346,0.0375,3.75,2,71.305744570345,0.763872491145218,3.25,6.05325876871745,0,-0.319038584362715,-0.424551516771317,0.19034967784395
+4153,83843,445897.952,83943,445797.952,52,41,23.75,0.0475,6.6269127576924,0.152222222222222,14.831309558117,0.0289954082038184,0.3025,30.25,2,91.7529033526453,0.869664385793418,15.5,18.0054272107842,0,-0.0566389732994139,-0.344130307435989,0.387262246825882
+4154,83843,445797.952,83943,445697.952,53,41,35,0.04375,7.78379521940894,0.253675144300144,12.9105339059327,0.0373028532868557,0.29,29,3,93.3242594828928,0.832327297116029,27.25,3.12742884405728,0,0.1191165780765,-0.222834020853043,0.382049963451377
+4155,83843,445697.952,83943,445597.952,54,41,47.75,0.0596875,8.52164016015097,0.449163449163449,11.1427669529664,0.00802732232281414,0.085,8.5,3,74.8465569484731,0.746291959406714,5,0.735294117647059,0,0.399308086683353,0.199972867965698,0.302278598816407
+4156,83843,445597.952,83943,445497.952,55,41,43.5,0.0621428571428571,6.85991597945838,0.259310134310134,12.8853783397673,0.0232596047015068,0.0925,9.25,6,74.1797618213171,0.584518809556067,6,2.84744159595386,0,0.644856366018454,0.453600019216537,0.184089281504287
+4157,83843,445497.952,83943,445397.952,56,41,51,0.17,15.7031033262119,0.40391363022942,12.4535599249993,0.0287100596437995,0.2125,21.25,6,78.586626447692,0.680437296331336,5.5,3.41266703886144,0,0.771167665719986,0.615796804428101,0.219185741537734
+4158,83843,445397.952,83943,445297.952,57,41,36.25,0.0402777777777778,8.01489460449198,0.310456518789852,12.6897884738688,0.0316885210602049,0.26,26,6,85.8523563291427,0.747073276485041,13.5,2.29119491577148,0,0.68870401630799,0.474316388368607,0.232942625929329
+4159,83843,445297.952,83943,445197.952,58,41,32.25,0.0645,8.78401510353189,0.399377645008713,13.1529824450829,0.0228176413328492,0.13,13,6,73.9375513644768,0.728787291747385,7.5,3.68894789769099,0,0.547059126198292,0.127934888005257,0.306702558341511
+4160,83843,445197.952,83943,445097.952,59,41,45,0.15,15.4508749775273,0.40980369603558,23.4712708838304,0.0526823974327999,0.51,51,3,96.3346548959344,0.833073070917021,47.5,3.20907289841596,0,0.45846396094809,-0.0757762342691422,0.530318466089039
+4161,83843,445097.952,83943,444997.952,60,41,53.25,0.1065,16.9073221483832,0.53419888635576,10,0.0397362959436941,0.385,38.5,4,95.6917073056586,0.787411301674854,37.5,1.51483293013139,0,0.0525771629181691,-0.620386064052582,0.587808130803693
+4162,83843,444997.952,83943,444897.952,61,41,74.75,0.249166666666667,25.6864201663463,0.679980517848165,10,0.0304081646085615,0.4075,40.75,1,97.0183110527583,0.864978902953587,40.75,0.626202870000359,0,-0.434993404274185,-0.948498547077179,0.638894872707988
+4163,83843,444897.952,83943,444797.952,62,41,61.25,0.0680555555555556,10.8455724148363,0.589084608202255,10,0.00964848863406587,0.3125,31.25,2,92.1450275463605,0.89747697236684,19.75,0.72,0,-1.27267836034298,-1.69101428985596,0.463713527358458
+4164,83843,444797.952,83943,444697.952,63,41,48,0.16,14.1977112172728,0.45048046742962,10.3934466291663,-0.0408871685872145,0.0925,9.25,1,87.9580013362782,0.963871200830962,9.25,1.62162162162162,0,-1.79159956177076,-1.87489223480225,0.180563325485542
+4165,83843,444697.952,83943,444597.952,64,41,31.25,0.0625,9.4901216795886,0.392476851851852,14.0432914235919,0.0021136376229515,0.0425,4.25,4,61.2204737286666,0.62402088772846,2.75,1.17647058823529,0,-1.84015887230635,-1.88010859489441,0.0660500875523359
+4166,83843,444597.952,83943,444497.952,65,41,14.75,0.0134090909090909,3.89143760925767,0.215798334219387,15.3648667412597,0.00661348403709781,0.0425,4.25,1,79.7330921014386,0.95822454308094,4.25,1.76470588235294,0,-1.72319894035657,-1.83782267570496,0.117023790477115
+4167,83843,444497.952,83943,444397.952,66,41,15,0.025,5.11354672115096,0.326543209876543,17.8902803253715,0.0119853521470975,0.0175,1.75,3,44.8240830231146,0.491094147582697,1.25,5.29586683000837,0,-1.66812673211098,-1.76103103160858,0.1020561303416
+4168,83843,444397.952,83943,444297.952,67,41,52,0.13,10.8673390696001,0.376999158249158,10,0.0137415878893808,0.145,14.5,5,79.4175718326221,0.707602339181287,7,3.90522095252728,0,-1.67386765033007,-1.74489402770996,0.0774566430353753
+4169,83843,444297.952,83943,444197.952,68,41,67.5,0.225,12.7223873410052,0.306699958385352,12.67591879244,0.0662583590100439,0.6125,61.25,1,98.5381414210533,0.836596703761093,61.25,1.6017404361647,0,-1.6931204299132,-1.75242173671722,0.0658284699181695
+4170,83843,444197.952,83943,444097.952,69,41,85.25,0.213125,9.93998382393288,0.258036597428289,10,0.0232229344116786,0.3275,32.75,6,87.6357592052281,0.813348680219626,17.75,0.534351145038168,0,-1.79014411568642,-2.03537344932556,0.17566388490214
+4171,83843,444097.952,83943,443997.952,70,41,78.25,0.7825,37.9334237431816,0.810436634717785,NA,0.0139744255200185,0.27,27,3,92.2402787060982,0.859501229364243,23.5,0.972222222222222,0,-2.08273879686991,-2.24704527854919,0.240314239873675
+4172,83843,443997.952,83943,443897.952,71,41,29.5,0.0491666666666667,5.07796624559849,0.155505952380952,15.5879011891945,-0.00478228657506406,0.1725,17.25,3,88.5082667983625,0.870165538937854,15.75,1.54495128686877,0,-2.41763697564602,-2.57148122787476,0.171923695935469
+4173,83843,443897.952,83943,443797.952,72,41,1.5,0.00375,1.25,0.0833333333333333,44.405218370325,-0.0105853858377304,0.0375,3.75,3,58.764858570913,0.480519480519481,1.5,27.1755532582601,15,-2.53334265947342,-2.62299513816833,0.110833491785654
+4174,83843,443797.952,83943,443697.952,73,41,57,0.57,31.8081998464923,0.827485380116959,NA,0.0481302623310694,0.335,33.5,1,96.169806046512,0.963022309873043,33.5,0.335820895522388,0,-2.55454590916634,-2.63949632644653,0.0848323025414645
+4175,83843,443697.952,83943,443597.952,74,41,35.5,0.355,28.5833707788257,0.80868544600939,NA,-0.00711132857424673,0.4275,42.75,3,93.9541385245942,0.866916198793928,36.75,26.555118817335,0,-2.66406794389089,-2.72822284698486,0.099134665567263
+4176,83843,443597.952,83943,443497.952,75,41,1.25,0.003125,0.625,0.0416666666666667,40.734111994542,0.0110430652324794,0.51,51,1,97.8932627156421,0.951537343169458,51,22.4135376705843,0,-2.84124347567558,-2.91265034675598,0.0796535287907994
+4177,83843,443497.952,83943,443397.952,76,41,0.75,0.00375,1.76776695296637,0.0416666666666667,28.2842712474619,-0.0180803335003384,0,0,0,NA,NA,0,NA,NA,-2.93454045057297,-2.9788806438446,0.048915598277947
+4178,83843,443397.952,83943,443297.952,77,41,4.5,0.009,3.00331651842638,0.222222222222222,22.4164078649987,0.0112309715314586,0.1325,13.25,3,86.3380688960196,0.898660417392406,12.25,27.1596158585458,11.1803398132324,-2.99140693744024,-3.06612634658813,0.077749229225478
+4179,83843,443297.952,83943,443197.952,78,41,0,NA,NA,NA,NA,-0.0204234205929697,0.0325,3.25,2,68.6830534279938,0.712891185759403,2.75,40.2039513221154,35,-3.03233699500561,-3.12807393074036,0.10446649506545
+4180,83843,443197.952,83943,443097.952,79,41,0,NA,NA,NA,NA,0.00948003755802347,0.21,21,1,93.778005777053,0.983009090136777,21,119.194898968651,100,-3.02687724431356,-3.12907791137695,0.124156389908264
+4181,83843,443097.952,83943,442997.952,80,41,0.25,0.0025,0,0,NA,-0.0414567033577453,0.0075,0.75,1,44.4894453484604,1,0.75,97.1645914713542,96.1769180297852,-3.01927089691162,-3.12824487686157,0.123253150057133
+4182,83843,442997.952,83943,442897.952,81,41,1,0.0025,0,0,20.6155281280883,-0.123720083199441,0,0,0,NA,NA,0,NA,NA,-3.05300871531169,-3.15064024925232,0.138948692743239
+4183,83843,442897.952,83943,442797.952,82,41,0.75,0.00375,1.25,0.0833333333333333,35,-0.148822790700942,0,0,0,NA,NA,0,NA,NA,-3.0073166936636,-3.12282037734985,0.159415955437998
+4184,83843,442797.952,83943,442697.952,83,41,0,NA,NA,NA,NA,-0.049070392572321,0,0,0,NA,NA,0,NA,NA,-3.06826816002528,-3.16280221939087,0.128742471205953
+4185,83843,442697.952,83943,442597.952,84,41,0,NA,NA,NA,NA,-0.0387685814734141,0,0,0,NA,NA,0,NA,NA,-3.18843404948711,-3.26260375976562,0.0757835986470134
+4186,83843,442597.952,83943,442497.952,85,41,6.25,0.015625,3.35534166506527,0.143939393939394,26.1107340393706,-0.0567997875926085,0,0,0,NA,NA,0,NA,NA,-3.25451783339183,-3.32444548606873,0.0648972437439072
+4187,83843,442497.952,83943,442397.952,86,41,25.75,0.12875,15.7977057423452,0.651103425559947,11.1803398874989,0.038258665926769,0.4975,49.75,3,94.8745566009676,0.854386603567528,37.75,25.9362550284994,0,-3.28721231222153,-3.38400268554688,0.0882537556591888
+4188,83843,442397.952,83943,442297.952,87,41,0,NA,NA,NA,NA,0.0794338675122708,0.655,65.5,2,97.034043740896,0.911449570530417,60,81.7263225671899,38.0788650512695,-3.34622079133987,-3.42383670806885,0.0837246349007749
+4189,83843,442297.952,83943,442197.952,88,41,0,NA,NA,NA,NA,0.0985541050264146,0.7175,71.75,1,99.0496701463057,0.882005899705015,71.75,84.4048017707851,29.1547584533691,-3.44938652217388,-3.52007651329041,0.0807202705629697
+4190,83843,442197.952,83943,442097.952,89,41,0.5,0.0025,0,0,11.1803398874989,0.0488255283807302,0.44,44,2,96.6417541339063,0.950549450549451,43.5,74.8396249684421,15.8113880157471,-3.57245781024297,-3.60456347465515,0.0553253963103469
+4191,83843,442097.952,83943,441997.952,90,41,1.5,0.0025,0,0,14.5764286477517,0.00423647573676135,0.34,34,2,92.8877860006827,0.883919843597263,26.25,32.2797461397508,5,-3.6264589826266,-3.64000010490417,0.0199277362718656
+4192,83843,441997.952,83943,441897.952,91,41,0.5,0.0025,0,0,65,0.035595645683934,0.455,45.5,3,92.8202911012874,0.814880352816269,23.75,33.9166911827339,10,-3.6285487562418,-3.64000010490417,0.0224087393126004
+4193,83843,441897.952,83943,441797.952,92,41,0,NA,NA,NA,NA,0.0816238620898366,0.765,76.5,2,97.9891198630169,0.882001548729673,73,81.5502303005044,40,-3.57198802630107,-3.59917140007019,0.0549329387003744
+4194,83843,441797.952,83943,441697.952,93,41,3.5,0.035,8.79752576533386,0.535714285714286,NA,0.0343366369208888,0.3925,39.25,2,96.4994412527648,0.874256973022405,39,40.6946603447009,0,-3.44104734063148,-3.52653789520264,0.109406013230859
+4195,83843,441697.952,83943,441597.952,94,41,16.25,0.0270833333333333,6.98698203762141,0.382275132275132,15.3966551326276,0.0253841560085948,0.2625,26.25,2,94.2599403169796,0.827818132902879,25.75,14.9354828062512,0,-3.27660663922628,-3.43208885192871,0.163506485819258
+4196,83843,441597.952,83943,441497.952,95,41,0.5,0.0025,0,0,26.9258240356725,0.0564280059484736,0.71,71,1,99.016938641085,0.922510654784967,71,31.1101549712705,0,-3.20586320757866,-3.36072444915771,0.136199280210286
+4197,83843,441497.952,83943,441397.952,96,41,2.5,0.00625,2.64027445338715,0.0972222222222222,15.1167109245423,-0.0203496822854504,0.16,16,2,90.79710342609,0.946853741496599,15.75,15.7293988466263,0,-2.98195670048396,-3.10042500495911,0.139360037708237
+4198,83843,441397.952,83943,441297.952,97,41,11.75,0.0146875,4.02138227059876,0.223396381578947,12.9105339059327,-0.00999453330012329,0.17,17,3,86.5660393141272,0.878505619115116,11.75,19.070626932032,0,-2.81838491559029,-2.95468139648438,0.1043262298821
+4199,83843,441297.952,83943,441197.952,98,41,7,0.0116666666666667,3.97048988120615,0.248842592592593,17.7031792456546,-0.0419402158109369,0.0075,0.75,1,44.4894453484604,1,0.75,5,5,-2.89711393912633,-3.06040644645691,0.166340960706847
+4200,83843,441197.952,83943,441097.952,99,41,0.789473684210526,0.00375,1.76776695296637,0.0416666666666667,15.8113883008419,-0.0190388597235142,0.2875,28.75,1,95.4473178079967,0.939271255060729,28.75,73.635941049327,43.0116271972656,-3.14458271861076,-3.27830100059509,0.139065626910151
+4201,83943,451097.952,84043,450997.952,0,42,42.75,0.21375,25.6597732946057,0.801685706324882,20.6155281280883,-0.00472539441458139,0.0025,0.25,1,0,NA,0.25,0,0,-1.45394488837984,-1.93304407596588,0.595581918267965
+4202,83943,450997.952,84043,450897.952,1,42,40.5,0.135,21.2472127563808,0.689245165094041,25.1650325226546,0.0102759998777765,0.125,12.5,2,89.0144825150124,0.892436974789916,12.25,4.77213493347168,0,-1.83822237451871,-1.99815654754639,0.273962496993688
+4203,83943,450897.952,84043,450797.952,2,42,61,0.203333333333333,17.6668854095428,0.513011532242301,20,0.00757643176679267,0.0925,9.25,2,82.9489990500574,0.837420403739331,7.75,2.75867750837996,0,-2.00961167282528,-2.17126297950745,0.120078659590982
+4204,83943,450797.952,84043,450697.952,3,42,59,0.196666666666667,22.1002988346142,0.755881519274376,16.6666666666667,0.00944033034307722,0.11,11,2,83.2925665299046,0.787427877315518,7.25,2.95454545454545,0,-2.11517042915026,-2.25631213188171,0.139545011161867
+4205,83943,450697.952,84043,450597.952,4,42,62,0.206666666666667,17.4701319212718,0.554589675557418,20.5409255338946,0.0235119285607652,0.2425,24.25,1,94.5753035249093,0.939304275255112,24.25,1.08247422680412,0,-2.26095011499193,-2.35200691223145,0.157199051459815
+4206,83943,450597.952,84043,450497.952,5,42,19,0.0633333333333333,12.947054522019,0.511136136136136,28.8001831488009,0.018947605295939,0.16,16,4,83.2603852769114,0.819302721088435,12.5,6.53124892711639,0,-2.63475000858307,-2.81110668182373,0.267722404420193
+4207,83943,450497.952,84043,450397.952,6,42,13,0.0433333333333333,12.3502479042692,0.376919602529359,42.7485177344559,0.0459906075318213,0.4425,44.25,5,89.4268826291943,0.731215973450721,19,7.52933195081808,0,-2.73513791296217,-2.81030130386353,0.320965872949831
+4208,83943,450397.952,84043,450297.952,7,42,9.75,0.04875,8.0928788752675,0.353070175438596,33.5410196624968,0.0126219165131079,0.1525,15.25,4,84.7164801825392,0.73284354650192,11.75,12.6750350702004,0,-2.57345271110535,-2.74989247322083,0.406799611833197
+4209,83943,450297.952,84043,450197.952,8,42,23.75,0.0791666666666667,13.8277374067279,0.489514776100142,11.937129433614,0.0188842056296335,0.1375,13.75,5,84.1460298293126,0.731502669717773,11.5,2.09090909090909,0,-2.3257409201728,-2.61705207824707,0.566600713030286
+4210,83943,450197.952,84043,450097.952,9,42,52.25,0.174166666666667,11.6435554942677,0.375816993464052,10.3934466291663,0.0182042792381435,0.155,15.5,3,88.1335930157995,0.90138067061144,14.5,0.51727528725901,0,-2.04669013288286,-2.55118083953857,0.798193264712765
+4211,83943,450097.952,84043,449997.952,10,42,70,0.233333333333333,11.7826628902201,0.346971520256719,10.3934466291663,0.00578852449606529,0.22,22,1,94.042067560231,0.88567695574065,22,0.397727272727273,0,-1.61383183300495,-2.41027855873108,0.948287594918721
+4212,83943,449997.952,84043,449897.952,11,42,85.5,0.285,18.0899475685064,0.463812436289501,10,0.000373131134401774,0.17,17,3,85.3301935699518,0.777260301711046,12,0.735294117647059,0,-1.03661356369654,-1.69718885421753,0.706266168224424
+4213,83943,449897.952,84043,449797.952,12,42,95,0.95,38.0090753216791,0.908771929824561,NA,-0.00496345490115345,0.12,12,5,75.4749011023078,0.611973392461197,6.5,0.459813912709554,0,-0.588074065744877,-0.85182112455368,0.358839140570698
+4214,83943,449797.952,84043,449697.952,13,42,80.25,0.8025,39.9325450956243,0.867601246105919,NA,-0.0127181594251215,0.175,17.5,2,91.0889198445999,0.921162847992116,17,4.31686613900321,0,-0.418638573752509,-0.500740528106689,0.213797598436415
+4215,83943,449697.952,84043,449597.952,14,42,96,0.48,18.9552873548977,0.462576153176675,10,-0.0439847073185956,0.0675,6.75,3,75.9252764268604,0.800486314608143,5.25,0,0,-0.22283991985023,-0.405615001916885,0.246087159169889
+4216,83943,449597.952,84043,449497.952,15,42,94.5,0.945,37.159070849727,0.92989417989418,NA,-0.0261978468377492,0.0675,6.75,2,81.5222116982841,0.800486314608143,6.25,0,0,-0.118641664170557,-0.268115192651749,0.190055968617093
+4217,83943,449497.952,84043,449397.952,16,42,14,0.028,10.0949930403327,0.343921568627451,19.0735925819646,-0.00119672384858859,0.035,3.5,2,68.5078421627077,0.689119170984456,2.75,7.12530163356236,0,-0.360283917436997,-0.466477572917938,0.153826067201846
+4218,83943,449397.952,84043,449297.952,17,42,8.5,0.017,6.99802762877434,0.0844827586206896,16.7082039324994,-0.00704705654487043,0,0,0,NA,NA,0,NA,NA,-0.47019765774409,-0.510324954986572,0.0767615817517861
+4219,83943,449297.952,84043,449197.952,18,42,11,0.022,5.92371896741693,0.206045548654244,23.5048952078357,0.00603427636187917,0.0325,3.25,5,52.6315789473684,0.540625897215045,2.25,4.41488794180063,0,-0.303136449307203,-0.460256278514862,0.165875611701697
+4220,83943,449197.952,84043,449097.952,19,42,1,0.005,2.35702260395516,0.0555555555555556,82.0060973342836,0.00233689193520149,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,17.1895917256673,11.1803398132324,-0.0264960830617282,-0.14012485742569,0.176021090543812
+4221,83943,449097.952,84043,448997.952,20,42,2.75,0.00458333333333333,0.885811248503009,0.0694444444444444,22.3279776831943,0.0100425098598635,0.0425,4.25,3,61.9812491572988,0.66579634464752,2.25,13.8037092545453,0,0.171791191730234,0.0851919427514076,0.157682686173168
+4222,83943,448997.952,84043,448897.952,21,42,14.75,0.0163888888888889,5.40262220571631,0.229703013036346,14.2858897357045,0.0201184377951358,0.115,11.5,3,79.4957701595074,0.797189627698102,6,4.91519811879034,0,0.201010486731927,0.098258450627327,0.148194599531771
+4223,83943,448897.952,84043,448797.952,22,42,3,0.0075,3.52937114650012,0.166666666666667,18.0552502882626,0.00532815162247971,0.02,2,2,58.1510768543717,0.795918367346939,1.75,25.9614682197571,7.07106781005859,0.109575036085314,0.0221948139369488,0.108673038434828
+4224,83943,448797.952,84043,448697.952,23,42,8.5,0.02125,5.31333769272387,0.197916666666667,16.1803398874989,0.00911920167257904,0.03,3,3,53.8251783921332,0.636143117040631,1.25,22.0206432342529,10,0.0538481551532944,-0.130366235971451,0.305063629989715
+4225,83943,448697.952,84043,448597.952,24,42,33.5,0.0558333333333333,10.890375860293,0.516747888239116,14.6338527481971,0.00290592349876533,0.08,8,2,82.45961647842,0.853678929765886,7.25,2.47319173812866,0,0.211155240527458,-0.0898727253079414,0.465031683913693
+4226,83943,448597.952,84043,448497.952,25,42,34.25,0.0489285714285714,11.1236420933371,0.338123171974104,15.7142857142857,0.014520084747096,0.2125,21.25,2,92.8070961834859,0.865447282665826,20.75,2.22520159553079,0,0.742770977318287,0.102902486920357,0.850165477786842
+4227,83943,448497.952,84043,448397.952,26,42,26.25,0.0291666666666667,6.80006281742624,0.35628786237948,16.6666666666667,0.0163444209013988,0.1675,16.75,3,84.6754811074483,0.835733169066502,11.5,2.91044776119403,0,1.54817218250699,0.966699481010437,0.81722602809064
+4228,83943,448397.952,84043,448297.952,27,42,74,0.37,28.230399487802,0.783754055986361,15,0.0508911092688504,0.5825,58.25,3,95.9683878418727,0.867850505884782,52,0.631206299613985,0,1.98324239253998,1.42099630832672,0.468208327206546
+4229,83943,448297.952,84043,448197.952,28,42,35.5,0.08875,10.7218257985317,0.589093261418042,20,0.0239792227333146,0.26,26,2,92.2776355921477,0.913282266223443,23,2.24590272169847,0,1.98234498500824,1.68095064163208,0.459901334476143
+4230,83943,448197.952,84043,448097.952,29,42,23.5,0.047,5.91521362087051,0.270640432098765,12.0776872304636,0.000958690652187215,0.0375,3.75,3,58.8003676892038,0.669421487603306,1.75,12.901576868693,0,1.96606274445852,1.69734191894531,0.543324525703764
+4231,83943,448097.952,84043,447997.952,30,42,5.75,0.00958333333333333,3.30808657150042,0.202777777777778,24.1804507212536,-0.0367333227057225,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,5,0,2.02825901243422,1.71080541610718,0.507851062693851
+4232,83943,447997.952,84043,447897.952,31,42,11,0.00916666666666667,1.5568586524591,0.085727969348659,14.3365689039016,-0.00553074414242474,0.055,5.5,3,69.3191633835973,0.782135076252723,3.75,2.78241833773526,0,1.99915651480357,1.68263578414917,0.609825107100205
+4233,83943,447897.952,84043,447797.952,32,42,12.25,0.0245,4.94388532616091,0.306404320987654,17.6281518376933,0.0161940883161878,0.1075,10.75,3,83.2137930141788,0.859943977591036,9.5,4.5092176393021,0,2.13657716910044,1.74694657325745,0.715346170401146
+4234,83943,447797.952,84043,447697.952,33,42,11,0.00785714285714286,2.95182657689838,0.178174603174603,17.3038114260623,0.0155873594906552,0.0675,6.75,4,67.6747851381951,0.65085105056425,2.5,4.35985254358362,0,2.10743186208937,1.67996072769165,0.700223465885448
+4235,83943,447697.952,84043,447597.952,34,42,11.75,0.0195833333333333,6.18873636554264,0.196277289019225,21.4026987549396,0.0125128141023015,0.1325,13.25,4,79.7822125504897,0.771985939132913,8.75,8.73114261987074,0,1.83234235644341,1.41180717945099,0.616772675175418
+4236,83943,447597.952,84043,447497.952,35,42,5.25,0.00875,3.18092844805307,0.273148148148148,17.2075922005613,-0.0157457144136788,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,1.55092644691467,1.28141605854034,0.478589657114007
+4237,83943,447497.952,84043,447397.952,36,42,5,0.00833333333333333,3.04170554867939,0.174768518518519,26.6968349807444,0.00622366771694033,0.06,6,4,67.1984746734843,0.58006718924972,3.25,8.81475957234701,0,1.42034735282262,1.20598590373993,0.362196076114564
+4238,83943,447397.952,84043,447297.952,37,42,6,0.00545454545454545,1.35975354630433,0.117045454545455,13.6145753346652,0.0189949548379354,0.075,7.5,5,66.3124794113863,0.646993932708218,2.75,16.3514472961426,0,1.3442845609453,1.17855596542358,0.267986682867533
+4239,83943,447297.952,84043,447197.952,38,42,8.5,0.00772727272727273,2.31833852521661,0.154617604617605,13.4113160035617,0.0148915645388189,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,2.5,0,1.27691717942556,1.15446734428406,0.16569352800632
+4240,83943,447197.952,84043,447097.952,39,42,3,0.00375,1.03377427203977,0.0763888888888889,23.639489677931,0.0190916524904605,0.0625,6.25,5,70.5362662379784,0.573333333333333,4.5,15.8938111114502,5,1.28236511018541,1.22054779529572,0.138043340828987
+4241,83943,447097.952,84043,446997.952,40,42,2.5,0.00416666666666667,1.31578658426027,0.0625,16.4138928028888,0.00358793481028442,0,0,0,NA,NA,0,NA,NA,1.17641114195188,1.06230926513672,0.146912988222738
+4242,83943,446997.952,84043,446897.952,41,42,1,0.005,1.63509708815908,0.138888888888889,47.169905660283,-0.000161992399580413,0,0,0,NA,NA,0,NA,NA,0.888259258535173,0.771077215671539,0.207607731158936
+4243,83943,446897.952,84043,446797.952,42,42,5.75,0.00821428571428571,2.86725829258268,0.178030303030303,22.9901601746359,0.0157317502160254,0.07,7,1,85.3702908942512,0.73715651135006,7,3.79332869393485,0,0.572674855589867,0.487840354442596,0.120445243901697
+4244,83943,446797.952,84043,446697.952,43,42,29.25,0.024375,6.09985079706436,0.22579534662868,12.6388843052425,0.0362609785646646,0.2825,28.25,3,91.350788998183,0.781375965020154,22.75,3.58562202791197,0,0.471429957283868,0.382409036159515,0.106129639001225
+4245,83943,446697.952,84043,446597.952,44,42,48.25,0.24125,19.6751595251735,0.488888888888889,10,0.031419356368674,0.2725,27.25,5,87.0047838843971,0.651124252097615,12.75,1.94099580257311,0,0.344921987917688,0.211714699864388,0.162566822326625
+4246,83943,446597.952,84043,446497.952,45,42,11,0.022,6.80089603432506,0.334848484848485,19.6011261594915,0.0137406972842746,0.0875,8.75,4,72.5449713249592,0.678790741615494,4.5,1.97548958914621,0,0.120472967702275,-0.0286933779716492,0.162288598699187
+4247,83943,446497.952,84043,446397.952,46,42,31.25,0.078125,13.0597899611591,0.484195788530466,10.5901699437495,0.017358146872557,0.195,19.5,4,85.3504167840203,0.783958952200918,13.5,2.2591436337202,0,-0.138206132998069,-0.221537873148918,0.148103433421954
+4248,83943,446397.952,84043,446297.952,47,42,24,0.0266666666666667,6.95823848513678,0.225462962962963,15.7988742950891,0.017170299094505,0.1075,10.75,4,76.0106866849247,0.797696856520386,7.75,2.73008240100949,0,-0.370472262303034,-0.461664229631424,0.110532619765351
+4249,83943,446297.952,84043,446197.952,48,42,24.5,0.030625,6.97118171763334,0.215709805427547,10.625,0.0113603668216092,0.1075,10.75,3,81.036747905842,0.797696856520386,6.75,1.49167757256086,0,-0.493856542640262,-0.531188070774078,0.0708967791321216
+4250,83943,446197.952,84043,446097.952,49,42,32.75,0.081875,11.6323467207336,0.506407675791734,13.75,-0.0195691539532169,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.509350965420405,-0.534208595752716,0.0447816330844715
+4251,83943,446097.952,84043,445997.952,50,42,15.5,0.03875,7.53154629306331,0.16454802259887,24.7011571704889,0.010461410216958,0.0925,9.25,4,72.4221520962428,0.747098405816737,3.25,6.37681806409681,0,-0.374782631794612,-0.475598782300949,0.185719687113992
+4252,83943,445997.952,84043,445897.952,51,42,10.25,0.0170833333333333,4.34353589634258,0.180976430976431,10.5901699437495,0.00530857283154546,0.0925,9.25,4,74.2158962476294,0.747098405816737,5,20.6612610688081,0,0.0925806807354093,-0.287983655929565,0.463008278816422
+4253,83943,445897.952,84043,445797.952,52,42,18,0.03,7.64894866307402,0.36629188712522,14.1666666666667,0.00526881491757194,0.1875,18.75,3,86.4908861480266,0.878787878787879,10.25,15.0226747131348,0,0.726144505871667,0.404123187065125,0.429713497349732
+4254,83943,445797.952,84043,445697.952,53,42,37.75,0.0629166666666667,9.36790442053591,0.316204866766665,10.3934466291663,0.0217672672311164,0.2275,22.75,5,85.5947286506208,0.744296615925526,14,2.39872825538719,0,0.989806200067202,0.650325298309326,0.568594573688982
+4255,83943,445697.952,84043,445597.952,54,42,47,0.0783333333333333,11.5416591755095,0.492603942933976,10.6903559372885,0.0550476988981245,0.4825,48.25,3,95.6351010301355,0.848865139125037,43.25,3.51097688032555,0,1.02190242211024,0.749331474304199,0.468532247475599
+4256,83943,445597.952,84043,445497.952,55,42,65.75,0.164375,9.11247861203018,0.270833333333333,13.0785509248927,0.0405625311857875,0.355,35.5,8,89.3162076036347,0.713774597495528,28.25,1.04041509225335,0,0.773503892951541,0.726670622825623,0.143809038743715
+4257,83943,445497.952,84043,445397.952,56,42,40.75,0.0582142857142857,7.24779809223157,0.319602488809087,11.4285714285714,0.0191686581359704,0.1975,19.75,3,90.7746740155064,0.777481085892301,18,3.51677950122688,0,0.590809144079685,0.416287958621979,0.195226990309023
+4258,83943,445397.952,84043,445297.952,57,42,51.75,0.08625,9.34149101587923,0.386904129009392,13.02867801264,0.0362229951757035,0.3525,35.25,5,88.7072707023068,0.754571847595104,21.5,2.98697932899421,0,0.479234864314397,0.361507743597031,0.221577736625845
+4259,83943,445297.952,84043,445197.952,58,42,46,0.0418181818181818,5.08609743691596,0.24243582025039,11.3785269331073,0.0164197963181505,0.1625,16.25,8,72.7209059180274,0.640734381191388,6.75,3.59891110933744,0,0.587681273619334,0.409328430891037,0.237132892406852
+4260,83943,445197.952,84043,445097.952,59,42,54.5,0.109,10.7885349086184,0.453405593469825,12,0.0403545763732473,0.44,44,3,93.8433967970534,0.791208791208791,29.75,0.920858339829878,0,0.676207078827752,0.458862543106079,0.30744418701554
+4261,83943,445097.952,84043,444997.952,60,42,49.25,0.123125,13.3825527384394,0.43287037037037,21.51387818866,0.0231355787022517,0.1475,14.75,7,78.6612643711596,0.689494566154908,9.25,0.593220338983051,0,0.238888297850887,-0.191121876239777,0.449092823844756
+4262,83943,444997.952,84043,444897.952,61,42,77.75,0.38875,18.6014832926138,0.399731182795699,10,0.0716970811576175,0.7725,77.25,1,99.2749460632782,0.765869868962652,77.25,0.718676594854559,0,-0.515298088391622,-0.764911234378815,0.43564210308803
+4263,83943,444897.952,84043,444797.952,62,42,76,0.253333333333333,26.6609385296664,0.750240808495102,10.3934466291663,0.0381975716160377,0.485,48.5,2,94.5753035249093,0.82740021574973,24.25,0.902061855670103,0,-1.08360725144545,-1.34115386009216,0.309543827036591
+4264,83943,444797.952,84043,444697.952,63,42,51.5,0.0572222222222222,8.29342872300375,0.352085410659265,10,-0.013197931476825,0.1925,19.25,4,89.1528682762288,0.826989619377163,17.5,2.43368237978452,0,-1.59457102086809,-1.78689861297607,0.292647058423206
+4265,83943,444697.952,84043,444597.952,64,42,45.75,0.0508333333333333,8.4626249664658,0.378776655443322,11.9839752603291,0.0106933248009409,0.1125,11.25,7,67.3310826440284,0.599703484062268,2.5,1.33333333333333,0,-1.83001158634822,-1.89324450492859,0.13302479710705
+4266,83943,444597.952,84043,444497.952,65,42,39.5,0.049375,6.95156122067263,0.308283354377104,13.0901699437495,0.0142340703628315,0.0775,7.75,5,64.1755305478591,0.609756097560976,2.25,2.52529907226562,0,-1.82999334070418,-1.87187838554382,0.0778564258243231
+4267,83943,444497.952,84043,444397.952,66,42,25.75,0.0367857142857143,8.04027185359644,0.362757514353259,11.0975936123183,0.00705677131569246,0.0475,4.75,3,65.9103482695844,0.710381029957462,2.75,3.5300562005294,0,-1.75121051735348,-1.7968053817749,0.0734455468726511
+4268,83943,444397.952,84043,444297.952,67,42,77.75,0.194375,10.7936863475123,0.383779264214047,10,0.00918681638184353,0.2425,24.25,3,90.4788445542235,0.886195516103334,21.25,1.02208387237234,0,-1.72723323106766,-1.75699841976166,0.0783401934154154
+4269,83943,444297.952,84043,444197.952,68,42,69.75,0.34875,20.3775544348294,0.454873646209386,10,0.0280116825485311,0.3175,31.75,3,91.4968007441127,0.822399822399822,26,1.62372601126123,0,-1.75955584314134,-1.88872861862183,0.130176049378119
+4270,83943,444197.952,84043,444097.952,69,42,85.25,0.8525,36.6620699788415,0.855327468230694,NA,-0.135920156427746,0,0,0,NA,NA,0,NA,NA,-1.82222927610079,-2.00799345970154,0.140710436891889
+4271,83943,444097.952,84043,443997.952,70,42,49.75,0.124375,9.24769241402926,0.309914302600473,17.6034531628728,-0.00835553471479216,0.19,19,2,90.8970666498295,0.907868067072047,18,0.723684210526316,0,-1.88996888531579,-2.10100936889648,0.241718095688475
+4272,83943,443997.952,84043,443897.952,71,42,3.5,0.005,1.70014515292964,0.0912698412698413,16.1626022644155,-0.0544854522530659,0.0175,1.75,1,65.4774238937655,1,1.75,2.14285714285714,0,-2.22452749808629,-2.30991840362549,0.146129718322107
+4273,83943,443897.952,84043,443797.952,72,42,22.25,0.2225,20.2922613183075,0.816479400749064,NA,0.0506500156660604,0.3825,38.25,2,93.6520262320533,0.90202717305171,31.75,6.58228629866457,0,-2.34416217274136,-2.39330720901489,0.096837795241536
+4274,83943,443797.952,84043,443697.952,73,42,77.25,0.7725,35.1370251918734,0.85059331175836,NA,0.0378283163488959,0.3775,37.75,3,93.3548796842672,0.866614472329752,34,1.59574494772399,0,-2.43361447254817,-2.5369348526001,0.118172171265951
+4275,83943,443697.952,84043,443597.952,74,42,14.75,0.1475,18.2902719833571,0.774011299435028,NA,0.0208752040813488,0.6225,62.25,1,98.5923763102686,0.965892618594207,62.25,33.204558039286,7.07106781005859,-2.61505744192335,-2.71381545066833,0.143254452173794
+4276,83943,443597.952,84043,443497.952,75,42,0.5,0.0025,0,0,20.6155281280883,-0.0271405869588489,0.2875,28.75,1,95.4473178079967,0.9527665317139,28.75,22.2502705283787,5,-2.80676529804866,-2.89884853363037,0.102474090166438
+4277,83943,443497.952,84043,443397.952,76,42,8,0.02,5.50149717044377,0.243357487922705,14.696899050982,-0.00991715152071265,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,3,0,-2.85078144073486,-2.89608192443848,0.0701060329976562
+4278,83943,443397.952,84043,443297.952,77,42,2.25,0.005625,1.60285115486226,0.0833333333333333,22.747548783982,-0.00860198537057386,0,0,0,NA,NA,0,NA,NA,-2.86749728520711,-2.90735960006714,0.0672010558525005
+4279,83943,443297.952,84043,443197.952,78,42,0,NA,NA,NA,NA,-0.0209367775471901,0,0,0,NA,NA,0,NA,NA,-2.87170753876368,-2.91627669334412,0.0691167717765932
+4280,83943,443197.952,84043,443097.952,79,42,0,NA,NA,NA,NA,0.0216431823307357,0.3775,37.75,1,96.6969635918825,0.96520377539037,37.75,149.490637469765,110.453605651855,-2.81657910346985,-2.87675046920776,0.0951096978017768
+4281,83943,443097.952,84043,442997.952,80,42,0,NA,NA,NA,NA,-0.0357556696358142,0,0,0,NA,NA,0,NA,NA,-2.79463891188304,-2.87154102325439,0.11850895679935
+4282,83943,442997.952,84043,442897.952,81,42,0,NA,NA,NA,NA,-0.0651294542686082,0,0,0,NA,NA,0,NA,NA,-2.70254304673937,-2.84371662139893,0.326741218103014
+4283,83943,442897.952,84043,442797.952,82,42,1,0.01,4.04508497187474,0.333333333333333,NA,-0.0660932759568095,0,0,0,NA,NA,0,NA,NA,-2.3436710635821,-2.74785280227661,0.735857760839309
+4284,83943,442797.952,84043,442697.952,83,42,0,NA,NA,NA,NA,-0.0458583453856409,0,0,0,NA,NA,0,NA,NA,-2.84832040468852,-2.98651552200317,0.342986455967504
+4285,83943,442697.952,84043,442597.952,84,42,0.25,0.0025,0,0,NA,-0.0430313008482335,0,0,0,NA,NA,0,NA,NA,-3.12865734100342,-3.19015336036682,0.0876175628408715
+4286,83943,442597.952,84043,442497.952,85,42,12.5,0.125,19.6886942221252,0.726666666666667,NA,-0.034075760304404,0.0125,1.25,1,58.1880425789518,1,1.25,0,0,-3.18822439511617,-3.20653820037842,0.0279421195027734
+4287,83943,442497.952,84043,442397.952,86,42,65,0.65,34.2125176562587,0.85448717948718,NA,0.0277856083170627,0.3825,38.25,4,94.0598348286078,0.763712593830594,33.5,4.24033504062229,0,-3.17866744597753,-3.22742938995361,0.0639448902609222
+4288,83943,442397.952,84043,442297.952,87,42,0,NA,NA,NA,NA,0.0403989824204473,0.325,32.5,1,96.0309682178207,0.906235349273324,32.5,51.6580120673546,25,-3.30383663707309,-3.35780596733093,0.0917755375339352
+4289,83943,442297.952,84043,442197.952,88,42,0,NA,NA,NA,NA,0.0179883102617714,0,0,0,NA,NA,0,NA,NA,-3.46524902184804,-3.53343391418457,0.0854030218802225
+4290,83943,442197.952,84043,442097.952,89,42,0,NA,NA,NA,NA,0.0068652342385019,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,91.7477486020043,82.4621124267578,-3.58149700694614,-3.60171866416931,0.0431378106209394
+4291,83943,442097.952,84043,441997.952,90,42,0,NA,NA,NA,NA,0.0418751176061232,0.39,39,1,96.835360326048,0.960015993602559,39,84.3327536216149,60.4152297973633,-3.61400021447076,-3.61999988555908,0.0142059612566769
+4292,83943,441997.952,84043,441897.952,91,42,0,NA,NA,NA,NA,0.00244759214667283,0.12,12,2,88.2989819813811,0.944567627494457,11.75,96.4148406982422,72.8011016845703,-3.60582995414734,-3.6283164024353,0.0312972079306239
+4293,83943,441897.952,84043,441797.952,92,42,0,NA,NA,NA,NA,0.103679548613363,0.6875,68.75,1,98.9155506404681,0.975193798449612,68.75,100.791978399103,50,-3.54653575685289,-3.59387731552124,0.0689437796480816
+4294,83943,441797.952,84043,441697.952,93,42,0.25,0.0025,0,0,NA,0.117393014410627,0.81,81,1,99.4152046783626,0.922600619195047,81,56.7873988445894,5,-3.39018774032593,-3.47291159629822,0.112043033163205
+4295,83943,441697.952,84043,441597.952,94,42,6,0.01,4.76343472712102,0.160185185185185,13.4221246418063,-0.055675702256849,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,12.2250385284424,5,-3.18628984027439,-3.28899145126343,0.134127221154568
+4296,83943,441597.952,84043,441497.952,95,42,10,0.02,6.21638094517733,0.191111111111111,17.0065296582977,-0.0469483639261307,0.0525,5.25,1,82.2928536593692,1,5.25,11.6807753245036,5,-3.12924563884735,-3.22970938682556,0.0984559931342465
+4297,83943,441497.952,84043,441397.952,96,42,11.75,0.0391666666666667,9.44342036921141,0.226851851851852,12.4535599249993,0.0105262080141983,0.1175,11.75,2,84.8304359692,0.844192634560907,9.75,19.6443409209556,0,-2.96837499406603,-3.08062219619751,0.110068869441928
+4298,83943,441397.952,84043,441297.952,97,42,5.25,0.0105,4.06154838286421,0.258888888888889,41.5410196624968,0.0253206335500909,0.31,31,1,95.8102472617487,0.916264090177134,31,24.8968240368751,0,-2.96459988753001,-3.02665781974792,0.0926269156647438
+4299,83943,441297.952,84043,441197.952,98,42,4.25,0.0085,3.31339969290769,0.140740740740741,11.7726990347453,-0.0494524271963746,0,0,0,NA,NA,0,NA,NA,-3.08686521318224,-3.21212005615234,0.189207677878154
+4300,83943,441197.952,84043,441097.952,99,42,0,NA,NA,NA,NA,-0.00933485313181905,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,99.36803654262,95,-3.29672447840373,-3.36671876907349,0.10503371551802
+4301,84043,451097.952,84143,450997.952,0,43,60.5,0.3025,22.8598410095771,0.752000179791442,25,0.0438417769775333,0.405,40.5,2,93.7207569776173,0.836444644972083,26.75,2.02293838689357,0,-1.07462594409784,-1.42647123336792,0.509024511539726
+4302,84043,450997.952,84143,450897.952,1,43,43,0.43,30.100685759423,0.727713178294574,NA,0.033498730238789,0.31,31,2,92.038561171401,0.800322061191626,20.25,1.3070247404037,0,-1.64383825659752,-1.98874986171722,0.280760961600987
+4303,84043,450897.952,84143,450797.952,2,43,50.25,0.25125,16.5456760352704,0.4025,10,0.0208102572262214,0.21,21,1,93.778005777053,0.881063630957438,21,1.39370318821498,0,-1.81608536839485,-2.10130214691162,0.284986534989147
+4304,84043,450797.952,84143,450697.952,3,43,43.75,0.0875,13.7727721726487,0.523894458368143,10.7082039324994,-0.00736297306568304,0.135,13.5,3,86.9596003639597,0.813537199328734,12,1.55818769666884,0,-1.74231207370758,-2.19024848937988,0.364883491585462
+4305,84043,450697.952,84143,450597.952,4,43,78.75,0.2625,16.8295126277546,0.466623600344531,11.6666666666667,0.000798920019396974,0.065,6.5,2,78.1238490241854,0.765227598800052,5.25,1.53846153846154,0,-1.78769940137863,-2.22229766845703,0.360317667063927
+4306,84043,450597.952,84143,450497.952,5,43,88.75,0.8875,37.6688413698196,0.864788732394366,NA,0.0164255639866678,0.165,16.5,4,83.2091712714526,0.802134860713356,9.25,0.788955572879676,0,-1.52863938454539,-2.57596397399902,1.1715358217452
+4307,84043,450497.952,84143,450397.952,6,43,85.75,0.42875,29.4481707625706,0.788401592718999,10,0.0207154614328829,0.22,22,1,94.042067560231,0.934672546137514,22,1.875,0,-0.997331117590268,-2.6634316444397,1.82220964295422
+4308,84043,450397.952,84143,450297.952,7,43,90,0.45,19.9700231710624,0.564892623716153,10,0.0103755591718618,0.0975,9.75,3,83.205456717178,0.744300021308332,8.5,4.02746327718099,0,-1.58747875131667,-2.65755414962769,1.19022974127641
+4309,84043,450297.952,84143,450197.952,8,43,86.5,0.865,36.5404497858545,0.892581888246628,NA,-0.00497926060001191,0.0675,6.75,1,85.0052537126447,0.875303946630089,6.75,4.5211506596318,0,-2.11228733261426,-2.5881974697113,0.749371072013107
+4310,84043,450197.952,84143,450097.952,9,43,61.5,0.3075,17.6361005526062,0.550068587105624,15,-0.00742270088592704,0.05,5,1,81.7256002368443,0.762308998302207,5,3.95710678100586,0,-2.56324726343155,-2.85331845283508,0.377293884744902
+4311,84043,450097.952,84143,449997.952,10,43,54.75,0.1825,12.7912588398737,0.426317162232655,10,-0.00438029246612132,0.06,6,1,83.7764057650598,0.860022396416573,6,10.2332697709401,5,-2.6816745698452,-2.95426249504089,0.293631495416239
+4312,84043,449997.952,84143,449897.952,11,43,41.5,0.2075,19.4621259562976,0.583119658119658,57.0087712549569,0.000341143593632296,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,11.7714273012601,5,-2.48758038878441,-2.67599058151245,0.519507162768615
+4313,84043,449897.952,84143,449797.952,12,43,25.75,0.0429166666666667,9.12023780527655,0.33459885022385,19.3980521302434,-0.0018295082957593,0.105,10.5,2,86.5433109935193,0.874104964985443,10,0.595238095238095,0,-2.17375897616148,-2.94188237190247,1.07949057024196
+4314,84043,449797.952,84143,449697.952,13,43,48.5,0.0808333333333333,6.8918468106359,0.201275045537341,10.3934466291663,0.0202934436371288,0.2775,27.75,2,92.3788349395914,0.896193771626298,22.75,1.43371293351457,0,-1.58572797477245,-2.71748971939087,1.17215651422606
+4315,84043,449697.952,84143,449597.952,14,43,78.5,0.261666666666667,16.0412868410209,0.487531328320802,10.3934466291663,-0.00326269630568277,0.3,30,2,94.6497311296921,0.947575360419397,29.5,1.6351100285848,0,-0.483298218809068,-1.69466733932495,0.724860895352337
+4316,84043,449597.952,84143,449497.952,15,43,93,0.93,37.2070087884375,0.897401433691756,NA,-0.0175800341688955,0.115,11.5,4,80.532833884629,0.797189627698102,9,0.217391304347826,0,-0.0688540018163621,-0.492360264062881,0.403369819269573
+4317,84043,449497.952,84143,449397.952,16,43,41,0.1025,10.5885286778432,0.378497592749929,14.7886898685566,0.00766464256941617,0.0875,8.75,5,69.0773029259772,0.641001417099669,3,1.68977530343192,0,-0.363133903359994,-0.670621693134308,0.379161714276967
+4318,84043,449397.952,84143,449297.952,17,43,7,0.01,3.13350898735845,0.145337301587302,21.1603091633853,0.00787809238490354,0.0275,2.75,5,34.7904595213921,0.383033419023136,0.75,9.04400860179554,0,-0.509826314946016,-0.748004376888275,0.252822829244553
+4319,84043,449297.952,84143,449197.952,18,43,12.5,0.0138888888888889,4.15513734206543,0.238406141183919,15.1903430820374,0.0101173128165101,0.0425,4.25,4,60.5048564501201,0.540469973890339,2.5,5.90713523415958,0,-0.364207088015974,-0.704452574253082,0.298250029115935
+4320,84043,449197.952,84143,449097.952,19,43,15.75,0.0175,5.67095864037735,0.329237891737892,11.1159816734695,0.0199353219592194,0.16,16,2,89.6795265549484,0.787414965986394,14.5,3.08478760719299,0,-0.30597581466039,-0.627992272377014,0.350816133424178
+4321,84043,449097.952,84143,448997.952,20,43,18.5,0.0205555555555556,6.2628611034766,0.321580817925847,11.7456568515053,0.0259810441576701,0.19,19,5,84.7476494309238,0.751243781094527,9,4.03013028596577,0,-0.322448056501647,-0.665556728839874,0.416763269812016
+4322,84043,448997.952,84143,448897.952,21,43,6.5,0.0108333333333333,2.53379389042766,0.130065359477124,30.675234712973,0.0065378716205214,0.015,1.5,2,45.0766242787986,0.709934735315446,1,1.66666666666667,0,-0.216295889635148,-0.581279933452606,0.326874862720299
+4323,84043,448897.952,84143,448797.952,22,43,2.5,0.0125,3.62954495180152,0.222222222222222,91.7877987534291,0.00920904478601642,0.025,2.5,3,52.9103541849425,0.684418145956607,1.75,35.4884601593018,14.1421356201172,0.0541389668360353,-0.219386532902718,0.239941249488642
+4324,84043,448797.952,84143,448697.952,23,43,3,0.0075,2.67092181323587,0.140625,40.2123650013136,0.0183464671953243,0.085,8.5,5,70.5568845296337,0.668227946916471,3.75,14.4839447806863,0,0.428865626454353,0.246748268604279,0.246507125225176
+4325,84043,448697.952,84143,448597.952,24,43,36.25,0.0402777777777778,5.45041732372534,0.284986104430549,13.421035467711,0.0152775613756785,0.04,4,3,67.9341673846635,0.696180555555556,3.25,2.88832521438599,0,0.79665086666743,0.526019871234894,0.322985221286801
+4326,84043,448597.952,84143,448497.952,25,43,23.5,0.0213636363636364,3.2751878913811,0.181818181818182,16.5971878292367,0.0176453258514084,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,5.39344660441081,0,1.43356839939952,0.87595397233963,0.469042093782844
+4327,84043,448497.952,84143,448397.952,26,43,44.75,0.0559375,8.15882558256387,0.298182957393484,14.3886952696776,0.0301560771612435,0.24,24,4,87.8670859500461,0.785801713586291,17,1.59671115875244,0,1.90647727251053,1.64176774024963,0.275649755293317
+4328,84043,448397.952,84143,448297.952,27,43,89.25,0.8925,37.4264157521562,0.875350140056022,NA,0.0775353155014454,0.8375,83.75,2,98.9972764697019,0.79584396646008,83,0.447761194029851,0,2.01916503161192,1.66854405403137,0.269086508842978
+4329,84043,448297.952,84143,448197.952,28,43,46.75,0.0519444444444444,5.1673552589867,0.23689319927464,13.1302297862044,0.0456527375750011,0.415,41.5,5,91.3210039690628,0.726272275291883,22.5,2.35620081568339,0,2.28960653146108,2.0175473690033,0.225642978426889
+4330,84043,448197.952,84143,448097.952,29,43,35,0.07,10.4132644888221,0.532714397152747,16.770329614269,0.00590236631822336,0.1225,12.25,5,75.5134173625166,0.755799755799756,7,10.1578339557258,0,2.44360634684563,2.38534498214722,0.14787033800469
+4331,84043,448097.952,84143,447997.952,30,43,22,0.0314285714285714,4.84140352796668,0.313052953421806,13.9619816649865,0.0189668603396967,0.16,16,3,87.0264258793707,0.840561224489796,12.25,2.24334192276001,0,2.40869822104772,2.36126351356506,0.11881910313908
+4332,84043,447997.952,84143,447897.952,31,43,4.25,0.00386363636363636,1.23828987291333,0.0631313131313131,17.8324393391996,0.00642888725436933,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,7.48479189191546,0,2.50495958328247,2.39601588249207,0.227676466382916
+4333,84043,447897.952,84143,447797.952,32,43,5.75,0.0071875,2.2069292385753,0.175099206349206,20.0347500499571,-0.00689168427013101,0.0675,6.75,2,76.6092397242206,0.825425525282125,3.5,10.7660011715359,0,2.81643465161324,2.61741828918457,0.257414549292923
+4334,84043,447797.952,84143,447697.952,33,43,9.5,0.0095,2.88058365135756,0.159960317460317,12.7082039324994,0.00118032966502142,0.0725,7.25,4,70.7949918534607,0.701783563686414,3.5,6.12881042217386,0,2.96180367469788,2.61260199546814,0.334822601951388
+4335,84043,447697.952,84143,447597.952,34,43,26,0.026,4.09414390934862,0.23891687016687,13.889979937555,0.0187386548882569,0.26,26,4,88.7394968717383,0.804885099002746,20.5,1.96632187183087,0,2.94910430908203,2.34079766273499,0.599969197945227
+4336,84043,447597.952,84143,447497.952,35,43,24,0.06,6.0591490978885,0.278240740740741,28.3960182527706,0.0227414390874765,0.1475,14.75,4,85.0060399985609,0.827496981197171,12.5,1.65073802107472,0,2.53027806679408,1.89459323883057,0.701251328505832
+4337,84043,447497.952,84143,447397.952,36,43,2.5,0.00833333333333333,3.0849556152353,0.194444444444444,70.8207041707844,0.00351510066349874,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,5.90492553710938,0,2.07850066572428,1.68057370185852,0.516272582755924
+4338,84043,447397.952,84143,447297.952,37,43,4.5,0.01125,3.63364964109163,0.263888888888889,22.0710678118655,0.00217675985557435,0.0125,1.25,2,43.859649122807,0.594936708860759,1,8.6502815246582,5,1.60396087169647,1.33569061756134,0.41637278204296
+4339,84043,447297.952,84143,447197.952,38,43,3.25,0.00464285714285714,1.1644393539647,0.0714285714285714,21.6205908788114,0.0069991405896144,0.075,7.5,4,69.8550017770202,0.713182570325428,3.5,8.81384976704915,0,1.00437028333545,0.396731317043304,0.490763241717272
+4340,84043,447197.952,84143,447097.952,39,43,5,0.00714285714285714,2.58782912671885,0.12962962962963,20.0048969877969,0.0106764520761908,0.04,4,3,61.8167382747864,0.609375,2,7.53535068035126,0,0.795273825526237,0.286028772592545,0.562874627496409
+4341,84043,447097.952,84143,446997.952,40,43,6.75,0.0135,4.0305558671123,0.324365079365079,25.7046999107196,0.0130962720673324,0.045,4.5,3,71.3191782238097,0.689742098119062,3.75,12.4658483929104,5,0.733094155788422,0.258916169404984,0.516641411431954
+4342,84043,446997.952,84143,446897.952,41,43,6.25,0.00694444444444444,2.19161548796031,0.129739858906526,20.57960634644,0.0159027390781694,0.04,4,4,55.7718973752911,0.565972222222222,2,5.83438944816589,0,0.546833876520395,0.179808989167213,0.417168087174541
+4343,84043,446897.952,84143,446797.952,42,43,7.75,0.00704545454545455,2.73330690475216,0.140909090909091,11.4858305592436,0.00978453446443382,0.0325,3.25,3,56.873919087992,0.540625897215045,1.5,18.9451675415039,0,0.367464571725577,0.0670533701777458,0.303586942394975
+4344,84043,446797.952,84143,446697.952,43,43,13.5,0.016875,6.30135667812467,0.206292172739541,15.5195684738231,0.00933794533198124,0.0425,4.25,2,72.6514752200981,0.66579634464752,3.25,7.40640662698185,0,0.258959917972485,0.0179644655436277,0.27292280114558
+4345,84043,446697.952,84143,446597.952,44,43,21.25,0.0265625,6.82809308775842,0.208498677248677,13.3054936133697,0.0132896741346394,0.09,9,4,71.8980291976573,0.688644688644689,3.5,3.98907629648844,0,0.200076130179999,-0.0843140855431557,0.285440141927752
+4346,84043,446597.952,84143,446497.952,45,43,10.25,0.00788461538461538,2.75522467359635,0.121794871794872,13.4513430349333,0.00477548756844044,0.0675,6.75,4,70.1158604911101,0.625911839890268,4,6.71509622644495,0,-0.00785591697786003,-0.314630478620529,0.282583712074106
+4347,84043,446497.952,84143,446397.952,46,43,5.5,0.011,5.14569857596388,0.183333333333333,38.2757619476415,0.00542777313220085,0.03,3,4,53.0874156553448,0.393571861734384,1.75,17.4196960131327,7.07106781005859,-0.273303031300505,-0.433523148298264,0.196691430117612
+4348,84043,446397.952,84143,446297.952,47,43,6,0.012,4.37865825236327,0.195833333333333,22.369316876853,-0.000719893005712038,0.0025,0.25,1,0,NA,0.25,0,0,-0.450822155922651,-0.526863038539886,0.0953041225379991
+4349,84043,446297.952,84143,446197.952,48,43,14.25,0.0129545454545455,4.55430150728685,0.141896235078053,15.3997517298339,-0.00136886994893757,0.0025,0.25,1,0,NA,0.25,10,10,-0.525212402145068,-0.533930063247681,0.0198976926816621
+4350,84043,446197.952,84143,446097.952,49,43,14.75,0.0134090909090909,5.08178141072844,0.278156565656566,11.0983672113631,0.00616037664048577,0.0175,1.75,2,53.5456806074901,0.872773536895674,1.5,7.02030508858817,5,-0.49211448431015,-0.530209064483643,0.0563604527648394
+4351,84043,446097.952,84143,445997.952,50,43,11.25,0.01875,4.09113314117995,0.0904558404558405,10.8333333333333,0.0120563809469604,0.0475,4.75,1,81.114133276783,0.963797628744683,4.75,45.4163734034488,36.0555114746094,-0.282496612519026,-0.399825125932693,0.229012070524727
+4352,84043,445997.952,84143,445897.952,51,43,28.75,0.0319444444444444,7.66076979783429,0.345933737238085,10.1311488763888,-0.00451008051883036,0,0,0,NA,NA,0,NA,NA,0.287028170314443,-0.104713171720505,0.398091875808235
+4353,84043,445897.952,84143,445797.952,52,43,53.75,0.0488636363636364,6.58817080603129,0.338864444278718,10.5911650362481,0.00719631218802533,0.115,11.5,2,83.2869681561077,0.869621903520209,7,3.29425388833751,0,0.997464845577876,0.745520651340485,0.435629484534775
+4354,84043,445797.952,84143,445697.952,53,43,55,0.183333333333333,12.6988940723814,0.289554531490015,13.3333333333333,0.0243502557996544,0.31,31,3,89.7559886806588,0.748792270531401,17.75,2.9562863995952,0,1.58525940775871,1.20017850399017,0.429412822674727
+4355,84043,445697.952,84143,445597.952,54,43,45.75,0.0653571428571429,11.207458072549,0.409247120085728,10.5058599517853,0.0252982749988587,0.2575,25.75,5,82.6505638106579,0.650559650559651,9.25,1.79956639854653,0,1.57753156622251,0.899125516414642,0.677219071716332
+4356,84043,445597.952,84143,445497.952,55,43,52.25,0.130625,19.3582644301044,0.633893614418095,10.5901699437495,0.051795176329033,0.515,51.5,4,93.7273965626607,0.779279158030739,33.5,2.31224643373952,0,0.913257122039795,0.576351463794708,0.937895925871789
+4357,84043,445497.952,84143,445397.952,56,43,51.75,0.1035,9.75016890125903,0.32372157033174,11.8929222269922,0.0366301115939405,0.3575,35.75,3,93.1885320779504,0.756438055068762,29,1.54920055149318,0,0.537627527490258,0.330723494291306,0.434995073143359
+4358,84043,445397.952,84143,445297.952,57,43,59.25,0.29625,21.3108003050881,0.5,15,0.0728547201420588,0.5725,57.25,3,95.5846652178839,0.791829300026021,43.25,2.39506782298525,0,0.243565606574217,0.127328857779503,0.218015798343165
+4359,84043,445297.952,84143,445197.952,58,43,47.75,0.0596875,7.60121902143428,0.277109300095877,11.9922504549148,0.0317502858901571,0.225,22.5,5,84.7555208556586,0.799639350831497,13.25,1.3829401228163,0,0.150646016467363,0.0589263737201691,0.184613830744781
+4360,84043,445197.952,84143,445097.952,59,43,75.25,0.37625,22.2974451433962,0.762318029115342,10,0.0699395675794221,0.6575,65.75,3,96.9471134629745,0.822330140211131,61.5,0.975420832180705,0,0.0854731999958555,-0.253794729709625,0.338372754118537
+4361,84043,445097.952,84143,444997.952,60,43,51.75,0.1035,13.14365943389,0.565443869855635,11.3005630797458,0.0519937369692343,0.48,48,4,91.6581981396755,0.783923941227312,26,1.13689724604289,0,-0.129673901945353,-0.725689172744751,0.474795683862012
+4362,84043,444997.952,84143,444897.952,61,43,89.5,0.298333333333333,16.2855227803828,0.47845946226513,10.3934466291663,0.0728406825021375,0.81,81,1,99.4152046783626,0.819401444788442,81,0.385802469135802,0,-0.80942593763272,-1.01009619235992,0.369172965024158
+4363,84043,444897.952,84143,444797.952,62,43,52.75,0.1055,17.7343088341426,0.530348297191954,10.7082039324994,0.00973945275949518,0.205,20.5,4,82.6542820556348,0.731077857297766,8,1.48867155865925,0,-1.14316174015403,-1.31799840927124,0.159534943467546
+4364,84043,444797.952,84143,444697.952,63,43,58.5,0.195,17.7294034080678,0.567049808429119,10.3934466291663,0.00682495431260804,0.1,10,4,73.1357287916804,0.701492537313433,4,1.42677669525146,0,-1.358538210392,-1.44351756572723,0.113837206363779
+4365,84043,444697.952,84143,444597.952,64,43,77.75,0.7775,37.7290519181424,0.82529474812433,NA,0.0375361695979518,0.395,39.5,3,94.1125056755951,0.811912225705329,31.5,0.716989058482496,0,-1.49486386030912,-1.72159469127655,0.191538716096298
+4366,84043,444597.952,84143,444497.952,65,43,48,0.16,14.4210652078434,0.319050433412136,12.7240226919466,0.00666205411405826,0.1025,10.25,5,76.242338395323,0.5801542125873,4.75,4.32067722227515,0,-1.57774324218432,-1.74012720584869,0.192820222143988
+4367,84043,444497.952,84143,444397.952,66,43,46.75,0.0935,8.82983556478462,0.283936507936508,14.5474424673029,-0.00916148949199851,0.06,6,4,68.2169357308006,0.692049272116461,3.75,4.64731995264689,0,-1.54651896158854,-1.68455481529236,0.152835752957379
+4368,84043,444397.952,84143,444297.952,67,43,34,0.085,10.007861212726,0.231022052586938,12.1352549156242,0.0101680327850863,0.1575,15.75,3,85.2341238474815,0.751820879417319,8.75,2.68991446116614,0,-1.57376284152269,-1.65363717079163,0.116834806560091
+4369,84043,444297.952,84143,444197.952,68,43,38,0.076,10.2445070468378,0.333584752635848,10.2360679774998,0.015850802919158,0.1075,10.75,5,79.2322288576993,0.688764394646748,8,2.65446827023528,0,-1.78466232617696,-1.88660192489624,0.156134424216069
+4370,84043,444197.952,84143,444097.952,69,43,72,0.18,15.3493047905305,0.550553919162167,11.0355339059327,-0.0701207327693191,0.0275,2.75,3,51.437012348381,0.588688946015424,1.25,3.37009707364169,0,-1.90748181194067,-1.96437406539917,0.0978815768607247
+4371,84043,444097.952,84143,443997.952,70,43,38,0.0422222222222222,6.74286975351087,0.25423247600667,10.4602372915257,0.0146775338651605,0.21,21,2,89.3343749702417,0.864072721094215,14.25,1.19047619047619,0,-1.96444138884544,-2.10689282417297,0.161480772531591
+4372,84043,443997.952,84143,443897.952,71,43,14,0.014,3.46667731921448,0.219178033532253,19.4454540368102,0.021376677469616,0.1475,14.75,6,79.5232845337442,0.746995572422517,10,5.62445572675285,0,-2.05825160443783,-2.23670339584351,0.235591920379862
+4373,84043,443897.952,84143,443797.952,72,43,19.5,0.039,5.82344424596803,0.284487734487734,31.4403065089105,0.0578301441687654,0.5025,50.25,2,94.9842749878422,0.865278133293815,32.25,15.6957574436321,0,-2.08779702583949,-2.25391602516174,0.248349929070945
+4374,84043,443797.952,84143,443697.952,73,43,57.5,0.191666666666667,11.6347015569219,0.284356725146199,16.6666666666667,-0.0380716608273269,0.1825,18.25,1,92.9430371372494,0.971330275229358,18.25,0.205479452054795,0,-2.18255702406168,-2.41044044494629,0.301329287993228
+4375,84043,443697.952,84143,443597.952,74,43,1.25,0.003125,0.625,0.0416666666666667,25.3940301226679,0.0440707899298741,0.4675,46.75,1,97.5655534302407,0.826318217590708,46.75,22.5536513303053,0,-2.43739706277847,-2.61581921577454,0.227507406284319
+4376,84043,443597.952,84143,443497.952,75,43,0.5,0.0025,0,0,20.6155281280883,-0.0653961663948212,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,12.4642382229076,5,-2.63913016021252,-2.77145266532898,0.148904467841908
+4377,84043,443497.952,84143,443397.952,76,43,4.5,0.009,3.94979793482206,0.190277777777778,10.2360679774998,-0.0167830424314161,0,0,0,NA,NA,0,NA,NA,-2.73334991931915,-2.79279851913452,0.09679639597644
+4378,84043,443397.952,84143,443297.952,77,43,0,NA,NA,NA,NA,-0.0204555479915143,0,0,0,NA,NA,0,NA,NA,-2.78271156549454,-2.82927203178406,0.0808096116851719
+4379,84043,443297.952,84143,443197.952,78,43,0,NA,NA,NA,NA,-0.0545541757991305,0,0,0,NA,NA,0,NA,NA,-2.79074753820896,-2.8409206867218,0.0666852844218923
+4380,84043,443197.952,84143,443097.952,79,43,0,NA,NA,NA,NA,0.0369210822347486,0.4625,46.25,1,97.5240566095389,0.972800217598259,46.25,149.494217207625,105.948104858398,-2.71796900033951,-2.77457094192505,0.0677071559788781
+4381,84043,443097.952,84143,442997.952,80,43,0,NA,NA,NA,NA,-0.0376148232414562,0,0,0,NA,NA,0,NA,NA,-2.66744740307331,-2.71832203865051,0.0457505743692833
+4382,84043,442997.952,84143,442897.952,81,43,0.5,0.0025,0,0,41.2310562561766,-0.0780311085376889,0,0,0,NA,NA,0,NA,NA,-2.57858179012934,-2.64837074279785,0.301782372727994
+4383,84043,442897.952,84143,442797.952,82,43,7,0.035,5.66606145021211,0.324074074074074,58.309518948453,-0.055889689074902,0,0,0,NA,NA,0,NA,NA,-2.14508617669344,-2.69705677032471,0.596830390316974
+4384,84043,442797.952,84143,442697.952,83,43,0,NA,NA,NA,NA,-0.0510796008573379,0,0,0,NA,NA,0,NA,NA,-2.90202778577805,-3.04057502746582,0.298756060484492
+4385,84043,442697.952,84143,442597.952,84,43,0,NA,NA,NA,NA,-0.0456256871292135,0,0,0,NA,NA,0,NA,NA,-3.1477063447237,-3.20890235900879,0.0825195709825541
+4386,84043,442597.952,84143,442497.952,85,43,37,0.37,27.8284477439156,0.872747747747748,NA,-0.0117921955311022,0.235,23.5,1,94.4060921446443,0.891067538126362,23.5,0,0,-3.17948993047078,-3.20632815361023,0.0348841324317418
+4387,84043,442497.952,84143,442397.952,86,43,84.75,0.8475,35.8067928163838,0.9031465093412,NA,0.0761874714447185,0.72,72,2,98.5841161938501,0.775962045334739,71,0.651905841297574,0,-3.166164457798,-3.22602009773254,0.0521211443508743
+4388,84043,442397.952,84143,442297.952,87,43,8.75,0.0875,18.599851444453,0.652380952380952,NA,0.00948195573742851,0.35,35,3,91.2833559973971,0.855769230769231,24.25,21.4591242517744,0,-3.31092385450999,-3.37298727035522,0.10604025965015
+4389,84043,442297.952,84143,442197.952,88,43,0,NA,NA,NA,NA,-0.0275137244939106,0.055,5.5,1,82.8209772257252,0.906629318394024,5.5,76.2567310333252,60.8276290893555,-3.47042208909988,-3.53026485443115,0.0730920753136699
+4390,84043,442197.952,84143,442097.952,89,43,0,NA,NA,NA,NA,-0.0141225836487047,0.07,7,1,85.3702908942512,0.95221027479092,7,219.910575321742,205.548034667969,-3.55806410312653,-3.59267044067383,0.0426437275283493
+4391,84043,442097.952,84143,441997.952,90,43,0,NA,NA,NA,NA,-0.0346180939460464,0,0,0,NA,NA,0,NA,NA,-3.59595572948456,-3.60790538787842,0.0185099198179106
+4392,84043,441997.952,84143,441897.952,91,43,0,NA,NA,NA,NA,-0.0219211659746361,0,0,0,NA,NA,0,NA,NA,-3.58108779788017,-3.60698843002319,0.0279450059777091
+4393,84043,441897.952,84143,441797.952,92,43,5.75,0.02875,6.47306075392012,0.369047619047619,30,-0.0550191403955978,0,0,0,NA,NA,0,NA,NA,-3.51224295298258,-3.54385805130005,0.0590863507909108
+4394,84043,441797.952,84143,441697.952,93,43,2.75,0.00916666666666667,2.78961366071217,0.259259259259259,17.8470065541656,-0.00492771910060583,0.0575,5.75,2,80.7944553712876,0.73474801061008,5.5,61.7791631947393,40.3112869262695,-3.41411578655243,-3.4566023349762,0.0491135657657538
+4395,84043,441697.952,84143,441597.952,94,43,0,NA,NA,NA,NA,-0.016948582183777,0.015,1.5,2,50.6391968181879,0.564902102973169,1.25,71.4839884440104,66.7083206176758,-3.34582702318827,-3.39168477058411,0.0658828989706352
+4396,84043,441597.952,84143,441497.952,95,43,2.75,0.00458333333333333,1.63885463492874,0.0583333333333333,18.2611274200351,-0.0273516831364032,0.1175,11.75,3,81.8858794913731,0.830028328611898,6,35.0476296607484,5,-3.21563863754272,-3.33201003074646,0.120805410973251
+4397,84043,441497.952,84143,441397.952,96,43,5.25,0.0075,2.15250714624457,0.130952380952381,17.0091649826096,-0.0689794082799517,0.04,4,2,72.803776664771,0.739583333333333,3.5,10.495866894722,0,-3.06135249137878,-3.2037181854248,0.162554649677338
+4398,84043,441397.952,84143,441297.952,97,43,8.5,0.00772727272727273,3.25183623659285,0.143939393939394,13.1568727130224,-0.0261057887440256,0,0,0,NA,NA,0,NA,NA,-3.07946075499058,-3.2337212562561,0.15528677540518
+4399,84043,441297.952,84143,441197.952,98,43,0,NA,NA,NA,NA,-0.106352323889732,0,0,0,NA,NA,0,NA,NA,-3.24646206696828,-3.33925652503967,0.13504865976236
+4400,84043,441197.952,84143,441097.952,99,43,0,NA,NA,NA,NA,-0.0791211421697517,0,0,0,NA,NA,0,NA,NA,-3.36106766760349,-3.4021589756012,0.0596403849804011
+4401,84143,451097.952,84243,450997.952,0,44,2.5,0.0125,4.040715873521,0.175925925925926,10,0.000236537512423638,0.0275,2.75,3,51.932222811463,0.588688946015424,1.25,16.4260357943448,0,-0.95965533124076,-1.12903380393982,0.212750860779924
+4402,84143,450997.952,84243,450897.952,1,44,0,NA,NA,NA,NA,-0.00252685474544251,0,0,0,NA,NA,0,NA,NA,-1.16344777246316,-1.37023544311523,0.260381067721218
+4403,84143,450897.952,84243,450797.952,2,44,4,0.008,3.06358911985395,0.149047619047619,17.142135623731,-0.00773094005201528,0,0,0,NA,NA,0,NA,NA,-1.3712305492825,-1.46266722679138,0.202941394651498
+4404,84143,450797.952,84243,450697.952,3,44,20.5,0.0683333333333333,14.5406701133985,0.368421052631579,25.7868932583326,-0.0345718621970263,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,1,0,-1.49942348400752,-1.68704438209534,0.173742645903045
+4405,84143,450697.952,84243,450597.952,4,44,16.5,0.033,6.72913527668008,0.410076252723312,12.8191319096608,-0.0244220749012698,0,0,0,NA,NA,0,NA,NA,-1.75741812917921,-2.09671831130981,0.40711856596346
+4406,84143,450597.952,84243,450497.952,5,44,24.5,0.0408333333333333,7.18374636886742,0.306657848324515,13.4221246418063,-0.0194410557913397,0,0,0,NA,NA,0,NA,NA,-2.10939238468806,-2.6679310798645,1.15438960258817
+4407,84143,450497.952,84243,450397.952,6,44,46.5,0.155,15.3431870242587,0.481816911250874,18.8903469609094,-0.0349977038020734,0,0,0,NA,NA,0,NA,NA,-2.1528901192877,-3.28815937042236,2.47363868053026
+4408,84143,450397.952,84243,450297.952,7,44,65,0.216666666666667,24.6971655154215,0.705788592968365,11.380711874577,-0.0322242152405119,0.0025,0.25,1,0,NA,0.25,5,5,-2.5651295563827,-3.5607578754425,1.90742236963547
+4409,84143,450297.952,84243,450197.952,8,44,50,0.166666666666667,20.1979533609743,0.676751279024006,14.4280904158206,-0.0192746821861056,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,3.70118291754472,0,-3.28446115387811,-3.60368680953979,0.832797499908308
+4410,84143,450197.952,84243,450097.952,9,44,36.75,0.0525,10.242966662024,0.503933312455417,11.5971914124998,-0.0204531906527336,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,9.71404520670573,5,-3.42072484228346,-3.61391806602478,0.465352546294552
+4411,84143,450097.952,84243,449997.952,10,44,61,0.203333333333333,21.0031110275627,0.62744341563786,14.3254026343621,-0.021239157279324,0,0,0,NA,NA,0,NA,NA,-3.41555718580882,-3.63029789924622,0.436797670125653
+4412,84143,449997.952,84243,449897.952,11,44,69.5,0.17375,16.2512135186408,0.564185967657799,10.5901699437495,-0.0148230615121065,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,0,0,-2.96140016449822,-3.38145399093628,0.547384712853248
+4413,84143,449897.952,84243,449797.952,12,44,87.25,0.43625,20.0811222573637,0.477305475504323,10,-0.00674854148477607,0.0125,1.25,1,58.1880425789518,1,1.25,0,0,-2.21544980009397,-2.71435189247131,0.553524283889551
+4414,84143,449797.952,84243,449697.952,13,44,61.25,0.6125,32.3183610796984,0.859863945578231,NA,-0.015652647699153,0.005,0.5,1,30.8308651382582,1,0.5,21.4881038665771,20.6155281066895,-2.14729057417976,-2.6223509311676,0.688475494958728
+4415,84143,449697.952,84243,449597.952,14,44,27.75,0.0925,13.017593243607,0.558093584656085,27.5499401435694,0.00479908001649164,0.17,17,3,90.4705015866516,0.807633896932267,16.25,1.90389133902157,0,-2.35505963861942,-2.85014891624451,1.1990086763551
+4416,84143,449597.952,84243,449497.952,15,44,41.25,0.20625,18.53707034997,0.720155423280423,32.0156211871642,0.0110584997200021,0.21,21,3,87.3112465936188,0.813099991504545,13.5,1.45706599099295,0,-1.2918819901016,-2.53867292404175,1.71083308206068
+4417,84143,449497.952,84243,449397.952,16,44,58,0.29,21.6794981829176,0.723107890499195,41.2310562561766,0.0107271890440643,0.2925,29.25,2,94.7637059136826,0.879991999466631,28.75,0.512820512820513,0,-1.57298157115777,-2.29909658432007,1.14261806850021
+4418,84143,449397.952,84243,449297.952,17,44,21.25,0.0708333333333333,10.0013879792769,0.569061542745753,12.1676051329096,0.00492954663836827,0.08,8,2,81.1777435341838,0.874581939799331,7.25,3.20391345024109,0,-1.59116480085585,-2.18164920806885,0.96742412032042
+4419,84143,449297.952,84243,449197.952,18,44,12,0.06,15.8457634487899,0.382404181184669,10,0.0155992107689417,0.0825,8.25,3,78.054792375198,0.717428600262388,5.25,6.39852911053282,0,-1.5759733915329,-2.31345367431641,1.08935952926409
+4420,84143,449197.952,84243,449097.952,19,44,30.5,0.0305,7.77414267379679,0.315617924939046,12.2360679774998,0.0244928517903827,0.1875,18.75,6,81.1611136919249,0.72027972027972,10,3.75836850484212,0,-1.48266610834334,-2.05915284156799,0.978381110212885
+4421,84143,449097.952,84243,448997.952,20,44,21.75,0.0435,8.06455619077765,0.292836257309942,16.4822792287351,0.00266167164532817,0.065,6.5,3,78.8255740930129,0.843485065866701,6,3.1565795311561,0,-1.25928713877996,-1.80701422691345,0.666952187495505
+4422,84143,448997.952,84243,448897.952,21,44,4.25,0.02125,5.65242860304247,0.483974358974359,25,-0.00250274755546343,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,5.83110323819247,0,-0.726503662765026,-1.14997613430023,0.391912098838953
+4423,84143,448897.952,84243,448797.952,22,44,10,0.0333333333333333,7.7706687442604,0.236111111111111,17.9944854588939,-9.95698901533615e-07,0.0025,0.25,1,0,NA,0.25,44.7213592529297,44.7213592529297,-0.150675104103155,-0.367589741945267,0.36078088344535
+4424,84143,448797.952,84243,448697.952,23,44,17.5,0.0291666666666667,6.44217030163053,0.219300144300144,17.4645144410318,0.0383242202995461,0.3675,36.75,1,96.5811989595545,0.923593458424556,36.75,5.1222661336263,0,0.386395348856847,0.175274312496185,0.241963013421319
+4425,84143,448697.952,84243,448597.952,24,44,18,0.03,6.675226261991,0.400613275613276,19.9064346985479,0.0242360688755434,0.1875,18.75,1,93.1084153854816,0.878787878787879,18.75,4.22832285563151,0,0.758946425384945,0.603529393672943,0.25489673915353
+4426,84143,448597.952,84243,448497.952,25,44,43.25,0.0720833333333333,8.37239055919109,0.337114577631819,17.1800174151797,0.0383619074477429,0.27,27,2,93.6233411758223,0.824376536705304,24.75,3.99175788738109,0,1.23398375014464,0.961564242839813,0.291083385501448
+4427,84143,448497.952,84243,448397.952,26,44,44.5,0.11125,15.2919302172086,0.54770202020202,18.2440519757716,0.0342438547899451,0.2525,25.25,4,86.7248601265035,0.785657532474731,14,4.06563065783812,0,1.56286282009549,1.51522028446198,0.0849532414475696
+4428,84143,448397.952,84243,448297.952,27,44,56.5,0.070625,6.51630342960326,0.26675135501355,12.1239660235426,0.0565400451561436,0.5525,55.25,5,93.1938734737566,0.783044963931225,39.25,2.18513694176307,0,1.71429056922595,1.57942497730255,0.206612170809811
+4429,84143,448297.952,84243,448197.952,28,44,46.5,0.0775,5.94292472821581,0.225047080979284,16.4972427294469,0.0275314530309811,0.2625,26.25,3,91.2108227581519,0.799121155053358,20.75,5.67376545497349,0,2.10242268774245,1.92184519767761,0.215836367441003
+4430,84143,448197.952,84243,448097.952,29,44,10.75,0.0134375,3.78357124595305,0.294097222222222,22.0492989005634,0.0183385973374789,0.09,9,3,79.3912461272194,0.853479853479854,7,4.88770797517565,0,2.19213030735652,2.04651570320129,0.235623860739401
+4431,84143,448097.952,84243,447997.952,30,44,8.25,0.0117857142857143,2.71266749461465,0.160714285714286,20.6613422807477,0.0337864227656792,0.2,20,3,87.6330614798417,0.841549295774648,15.25,17.8577258110046,0,2.1664141813914,2.03213763237,0.228928845399529
+4432,84143,447997.952,84243,447897.952,31,44,2,0.004,1.9142135623731,0.0666666666666667,16.3733802110964,0.0128040608589163,0.0425,4.25,4,58.1614031190891,0.66579634464752,1.75,25.9876323026769,0,2.25382500224643,2.07569789886475,0.26083212005912
+4433,84143,447897.952,84243,447797.952,32,44,5.25,0.0075,2.39791896450706,0.136904761904762,14.3335856231036,0.0113579203649806,0.075,7.5,3,75.7417808744913,0.779371207942636,5,7.61048310597738,0,2.59160407384237,2.27016663551331,0.36526339930654
+4434,84143,447797.952,84243,447697.952,33,44,7.25,0.0120833333333333,3.20912992866547,0.230936819172113,19.8680160441365,-0.0126269955067619,0.0225,2.25,3,52.2992512649976,0.658994032395567,1.75,13.7077460818821,10,3.12780123286777,2.77794075012207,0.362573928632367
+4435,84143,447697.952,84243,447597.952,34,44,12,0.024,7.25927459550844,0.384,27.0956316563972,0.00886835006902402,0.07,7,3,74.6927519411831,0.71326164874552,4.5,2.15437412261963,0,3.53616944948832,3.41908955574036,0.20584478288212
+4436,84143,447597.952,84243,447497.952,35,44,7.5,0.00681818181818182,2.97553433563828,0.168181818181818,16.6972999936792,0.00116604817230836,0.0375,3.75,3,64.9626786721516,0.763872491145218,3,6.02368927001953,0,3.6458338631524,3.25335454940796,0.498328732702075
+4437,84143,447497.952,84243,447397.952,36,44,20.75,0.02075,4.69635564084472,0.227324263038549,14.0920950458263,0.023148840845588,0.175,17.5,4,82.1761928030724,0.793052475979305,8.5,4.27463863917759,0,3.16821390390396,2.56301021575928,0.716815483079739
+4438,84143,447397.952,84243,447297.952,37,44,4.25,0.0141666666666667,3.84014184713418,0.234126984126984,20.4044011451988,-0.00380493872740772,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,7.55863952636719,0,2.08554553985596,1.34648931026459,1.06381739626078
+4439,84143,447297.952,84243,447197.952,38,44,3.25,0.0108333333333333,3.57197196559962,0.271428571428571,26.8900662411503,0.000422070685972358,0,0,0,NA,NA,0,NA,NA,0.289532826902966,-0.613709628582001,1.09161278375339
+4440,84143,447197.952,84243,447097.952,39,44,9.75,0.00886363636363636,3.42445651207259,0.169191919191919,13.8658614581071,-0.00363887024712312,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5,-0.402760378602478,-0.767095804214478,0.58914572263843
+4441,84143,447097.952,84243,446997.952,40,44,5.75,0.02875,14.1666666666667,0.269444444444444,10,-0.000281328336677689,0.0625,6.25,4,65.7049094975663,0.626666666666667,2.75,33.9561855316162,15,-0.208422784072657,-0.367689520120621,0.335209498682259
+4442,84143,446997.952,84243,446897.952,41,44,26.25,0.04375,8.29858373013858,0.311995789952779,11.9281293399695,0.0247582525419421,0.1775,17.75,3,87.649923703157,0.815197568389058,14.75,4.28177352690361,0,-0.228475133164061,-0.388600021600723,0.319850369139491
+4443,84143,446897.952,84243,446797.952,42,44,5,0.005,2,0.133333333333333,16.0532747850838,-0.00627452136373904,0,0,0,NA,NA,0,NA,NA,-0.246713883553942,-0.391921788454056,0.287452681535418
+4444,84143,446797.952,84243,446697.952,43,44,6,0.00666666666666667,2.25444945811523,0.141975308641975,15.7655151711615,0.00286259912692003,0.0125,1.25,2,43.859649122807,0.594936708860759,1,35.9125968933105,33.5410194396973,-0.275566479398145,-0.421282440423965,0.261809717993527
+4445,84143,446697.952,84243,446597.952,44,44,6.75,0.0084375,2.92745989143353,0.126736111111111,24.9651699437495,-0.0120562266243542,0,0,0,NA,NA,0,NA,NA,-0.358077627089288,-0.483631134033203,0.237685787670124
+4446,84143,446597.952,84243,446497.952,45,44,8.75,0.00875,3.61838010272185,0.14265873015873,14.5779324392269,-0.022640057239114,0.0225,2.25,3,48.4271621843021,0.403239556692242,1.25,3.5956310696072,0,-0.444690369069576,-0.527283608913422,0.160696229454037
+4447,84143,446497.952,84243,446397.952,46,44,7.75,0.019375,7.21230613661862,0.182638888888889,31.4520660094107,-0.0156595238391242,0,0,0,NA,NA,0,NA,NA,-0.50073958436648,-0.544289708137512,0.085284031165968
+4448,84143,446397.952,84243,446297.952,47,44,3.75,0.00535714285714286,2.29805042391585,0.104761904761905,11.8419182322622,-0.0179712926397951,0,0,0,NA,NA,0,NA,NA,-0.541192750136057,-0.5596804022789,0.0349815355181161
+4449,84143,446297.952,84243,446197.952,48,44,7.75,0.0110714285714286,2.83839888301855,0.105590062111801,20.7960802418662,-0.00844973915955052,0.015,1.5,1,62.2896536353828,1,1.5,10.6771326065063,5,-0.546016520924038,-0.558306872844696,0.0182311967432402
+4450,84143,446197.952,84243,446097.952,49,44,49.5,0.0825,7.04295499965966,0.296087216248507,11.3620113459733,0.0266578396209343,0.1675,16.75,2,87.161009935801,0.85626652293319,10,0.777180116568039,0,-0.510469630360603,-0.54188060760498,0.0444775137192124
+4451,84143,446097.952,84243,445997.952,50,44,21.75,0.03625,6.16092943962005,0.358292483660131,14.5874126731964,0.0294042318437891,0.2175,21.75,4,84.8823719909743,0.793878182005565,10.75,3.78661760790595,0,-0.389368597004149,-0.460910230875015,0.136569684353139
+4452,84143,445997.952,84243,445897.952,51,44,19,0.02375,5.58883158561081,0.283096764346764,18.2825598938185,0.0116865447711825,0.12,12,2,88.0388533908558,0.861419068736142,11.5,10.4518103202184,0,-0.0987999926631649,-0.300664037466049,0.356550810582483
+4453,84143,445897.952,84243,445797.952,52,44,30,0.0428571428571429,10.3507942454507,0.395381662149955,10.3372399678568,0.0301439644330094,0.235,23.5,5,84.7485765645482,0.774354186118892,15.75,3.99346341478064,0,0.419025224530035,-0.045196145772934,0.746192027387351
+4454,84143,445797.952,84243,445697.952,53,44,34,0.034,7.19222286427034,0.18698013201964,10.2360679774998,0.0289988148627162,0.4275,42.75,2,96.8443713288168,0.900187149095446,42.5,3.71863138745403,0,0.874448474496603,0.228978827595711,0.799847957239028
+4455,84143,445697.952,84243,445597.952,54,44,51.5,0.0735714285714286,5.77209029096569,0.158899642331159,10.3372399678568,0.0397266737589547,0.34,34,5,87.8075230736121,0.767839687194526,19,3.76471014583812,0,0.960724102126227,0.371824771165848,1.03003925072152
+4456,84143,445597.952,84243,445497.952,55,44,69.25,0.230833333333333,12.3405264044839,0.330697485806975,10.3934466291663,0.0375896660980288,0.35,35,5,90.8644258803267,0.825721153846154,30,0.514793341500419,0,2.03701304064857,0.650626480579376,1.58823731121017
+4457,84143,445497.952,84243,445397.952,56,44,63.5,0.127,12.4775214240346,0.538226381461676,10.2360679774998,0.0307001742737839,0.325,32.5,4,90.3597149051986,0.837474605407095,26,2.12307915320763,0,1.62426056464513,0.979005694389343,1.31348135404069
+4458,84143,445397.952,84243,445297.952,57,44,42.75,0.07125,14.4454035998203,0.421817534317534,10.968564716807,0.0140003782406529,0.215,21.5,5,82.7361159863945,0.783522750926273,7.75,2.15491250503895,0,1.32572486665514,0.26843672990799,1.49827746504453
+4459,84143,445297.952,84243,445197.952,58,44,39,0.078,11.2639534754922,0.50276121463078,14.7082039324994,0.0172363413453877,0.15,15,6,75.9575354099241,0.649321266968326,4.75,1.28451779683431,0,0.558573088298241,0.173808917403221,0.75113885612106
+4460,84143,445197.952,84243,445097.952,59,44,58,0.116,14.0732367622912,0.639999026682796,11.2360679774998,0.064251694950035,0.6325,63.25,2,98.1462847194271,0.690002583311806,61.75,2.19564333829013,0,0.0695937954717212,-0.249751299619675,0.661732408746632
+4461,84143,445097.952,84243,444997.952,60,44,47.25,0.07875,9.30289280745338,0.370990994224459,10.5901699437495,0.0436393277163734,0.475,47.5,6,94.032160554378,0.772727272727273,40.25,2.00970811341938,0,-0.416349777641396,-0.745149195194244,0.355878561282724
+4462,84143,444997.952,84243,444897.952,61,44,73.75,0.245833333333333,24.6009454025541,0.738496830163497,10,0.0399118382980305,0.4325,43.25,4,92.8000313933882,0.86742711943988,36.75,0.722543352601156,0,-0.9818760421541,-1.10909569263458,0.208622464399095
+4463,84143,444897.952,84243,444797.952,62,44,61.5,0.0878571428571429,5.527811770492,0.130752300920368,10.9289736283898,0.0102598002536797,0.195,19.5,5,86.3035106506875,0.783958952200918,16,2.11538461538462,0,-1.16938384373983,-1.22432684898376,0.0970392656028277
+4464,84143,444797.952,84243,444697.952,63,44,6.75,0.00613636363636364,1.62782725614054,0.129476584022039,13.796709464274,0.0130190816084212,0.055,5.5,5,66.4083617800683,0.719887955182073,4.25,8.35320646112615,0,-1.24601210488213,-1.29398679733276,0.0752786897321545
+4465,84143,444697.952,84243,444597.952,64,44,48.5,0.161666666666667,11.5159705733321,0.329842931937173,20.6718737290547,0.0209314905891279,0.19,19,4,86.8192356346527,0.705177814630551,12,3.65840123829089,0,-1.21898849805196,-1.30806744098663,0.170392550023194
+4466,84143,444597.952,84243,444497.952,65,44,25.5,0.051,8.26635022071423,0.413802816901408,17.2135919318807,0.031366182895872,0.165,16.5,4,83.1194608896204,0.82296277011195,8.5,3.30411148071289,0,-1.2048409514957,-1.33730721473694,0.251444501648809
+4467,84143,444497.952,84243,444397.952,66,44,37,0.0411111111111111,6.15902889189703,0.309064883944111,16.0318337567412,0.0301011102781467,0.2425,24.25,6,85.0531848618799,0.719282273054892,15,3.2284376793301,0,-1.2233649359809,-1.35704898834229,0.247434619931203
+4468,84143,444397.952,84243,444297.952,67,44,8.5,0.00944444444444444,2.7187038109768,0.196502057613169,15.3054573252573,0.000472461667477546,0.01,1,1,52.6315789473684,1,1,12.9979319572449,10,-1.38711321353912,-1.56027626991272,0.213156972556752
+4469,84143,444297.952,84243,444197.952,68,44,7.75,0.00775,2.94004895551419,0.181746031746032,15.064495102246,0.014804002301421,0.1225,12.25,4,75.9521955199903,0.647266313932981,4.5,6.17191357515296,0,-1.6455393632253,-1.75955104827881,0.170246483858359
+4470,84143,444197.952,84243,444097.952,69,44,11,0.011,2.99510051121903,0.223055555555556,11.817206807584,0.00273544239397779,0.01,1,1,52.6315789473684,0.747474747474748,1,5,0,-1.74864394466082,-1.84227383136749,0.16723405064373
+4471,84143,444097.952,84243,443997.952,70,44,21.5,0.043,7.56054004130764,0.356007751937985,16.3851648071345,0.0155885421431594,0.1325,13.25,6,77.1164307520485,0.708648700003167,6.75,2.79781643849499,0,-1.62894248962402,-1.83034908771515,0.307060099659592
+4472,84143,443997.952,84243,443897.952,71,44,14.75,0.0105357142857143,3.27901440331208,0.233531746031746,14.2179463128238,0.00534361617248578,0.115,11.5,6,75.6145099179521,0.623352165725047,6.25,3.50463485717773,0,-1.4294207294782,-1.67127239704132,0.372871754812338
+4473,84143,443897.952,84243,443797.952,72,44,42.75,0.0534375,7.88914611327722,0.298635728071212,11.4460970049771,-0.0426837320391178,0.03,3,4,48.1770522231756,0.514857489387508,1.25,2.5,0,-1.44234475824568,-1.72670495510101,0.524221332403136
+4474,84143,443797.952,84243,443697.952,73,44,37.25,0.0620833333333333,8.5384646746542,0.325043362922151,12.2140452079103,-0.0248800235437409,0.15,15,3,84.3526737001981,0.796380090497738,8.25,3.69763590494792,0,-1.12469569345315,-1.83898043632507,0.760253850315778
+4475,84143,443697.952,84243,443597.952,74,44,28.25,0.0403571428571429,4.4994938731252,0.163945578231293,15.8829056982141,0.0292486231881776,0.315,31.5,2,91.9314542855231,0.847002199343384,16.75,12.4050226060171,0,-1.82382198174795,-2.26634693145752,0.772495145615927
+4476,84143,443597.952,84243,443497.952,75,44,5.75,0.0575,14.4285879385294,0.594202898550725,NA,-0.0174438944645954,0.0325,3.25,1,76.0684107249879,0.770312948607522,3.25,0,0,-2.30743990341822,-2.57331871986389,0.459111005153844
+4477,84143,443497.952,84243,443397.952,76,44,1.5,0.005,2.28962241308869,0.101851851851852,17.4127682432574,-0.00718550757448611,0,0,0,NA,NA,0,NA,NA,-2.46350063218011,-2.5864565372467,0.213578283648954
+4478,84143,443397.952,84243,443297.952,77,44,2.25,0.005625,2.0356003839517,0.125,26.1393574345629,-0.0349668549927264,0.025,2.5,2,59.7635627407876,0.684418145956607,1.75,12.6008047103882,7.07106781005859,-2.57289128833347,-2.66960549354553,0.170636963029827
+4479,84143,443297.952,84243,443197.952,78,44,1,0.01,3.82694101601104,0.333333333333333,NA,-0.0785611970771788,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,91.1582919034091,86.3133850097656,-2.61174541711807,-2.68669819831848,0.136328876932758
+4480,84143,443197.952,84243,443097.952,79,44,0,NA,NA,NA,NA,0.00226942578370654,0.2425,24.25,2,92.8972064101684,0.946891240848223,23.75,97.4226100960958,68.0073547363281,-2.60827793015374,-2.66292023658752,0.084820323012168
+4481,84143,443097.952,84243,442997.952,80,44,0,NA,NA,NA,NA,-0.0478634166705888,0,0,0,NA,NA,0,NA,NA,-2.6622639298439,-2.70590567588806,0.0485967767503447
+4482,84143,442997.952,84243,442897.952,81,44,0.75,0.0025,0,0,20.6155281280883,-0.0778550725150853,0,0,0,NA,NA,0,NA,NA,-2.72530661688911,-2.76228380203247,0.0666026596108227
+4483,84143,442897.952,84243,442797.952,82,44,4.5,0.015,7.61598922894861,0.243827160493827,11.1803398874989,-0.070561112430878,0,0,0,NA,NA,0,NA,NA,-2.75797665119171,-2.81674599647522,0.183965882651541
+4484,84143,442797.952,84243,442697.952,83,44,0,NA,NA,NA,NA,-0.0581652488077088,0,0,0,NA,NA,0,NA,NA,-2.87798955705431,-3.00116086006165,0.169233006051255
+4485,84143,442697.952,84243,442597.952,84,44,0,NA,NA,NA,NA,-0.0631835233839229,0,0,0,NA,NA,0,NA,NA,-3.04734182357788,-3.13755869865417,0.124561416113797
+4486,84143,442597.952,84243,442497.952,85,44,61.25,0.30625,15.72675787542,0.451844262295082,10,-0.0244586572249682,0.1875,18.75,2,89.5768465754486,0.897435897435897,16.5,0.788561808268229,0,-3.1421369711558,-3.1536877155304,0.0348669622942613
+4487,84143,442497.952,84243,442397.952,86,44,78.25,0.39125,20.5236508392068,0.739018087855297,10,0.00641801174046122,0.35,35,1,96.3667973186472,0.795673076923077,35,2.26787932259696,0,-3.17904428641001,-3.22900533676147,0.048879754131381
+4488,84143,442397.952,84243,442297.952,87,44,13,0.13,26.7608201363563,0.692307692307692,NA,0.0571146006051276,0.6375,63.75,3,97.9279243652024,0.84994950223633,62.75,32.7408360724356,0,-3.28286449114482,-3.33726024627686,0.0845072720483981
+4489,84143,442297.952,84243,442197.952,88,44,0,NA,NA,NA,NA,0.0695450818398967,0.89,89,1,99.684221684177,0.824656056110062,89,108.78807853313,60,-3.41705580552419,-3.47736287117004,0.0748161549882443
+4490,84143,442197.952,84243,442097.952,89,44,0,NA,NA,NA,NA,0.0138739857364635,0.0925,9.25,2,81.8967258511709,0.801291604570293,6.5,171.052432498416,160,-3.52782156732347,-3.55685806274414,0.0541079120620446
+4491,84143,442097.952,84243,441997.952,90,44,0,NA,NA,NA,NA,-0.0216902025334457,0,0,0,NA,NA,0,NA,NA,-3.59411327044169,-3.61661458015442,0.0335639690602312
+4492,84143,441997.952,84243,441897.952,91,44,0,NA,NA,NA,NA,-0.0469448661967908,0,0,0,NA,NA,0,NA,NA,-3.60365931193034,-3.6224217414856,0.0292805692920968
+4493,84143,441897.952,84243,441797.952,92,44,0.5,0.0025,0,0,96.1769203083567,-0.0802290566591546,0,0,0,NA,NA,0,NA,NA,-3.51955933041043,-3.55686807632446,0.0602581031378641
+4494,84143,441797.952,84243,441697.952,93,44,2,0.01,3.94247811284974,0.354166666666667,36.0555127546399,-0.0228146468194063,0,0,0,NA,NA,0,NA,NA,-3.45135229825974,-3.47915983200073,0.0362586036731457
+4495,84143,441697.952,84243,441597.952,94,44,0,NA,NA,NA,NA,0.0131854151064726,0.065,6.5,1,84.6193541959806,0.921742532933351,6.5,65.7664125882662,46.0977210998535,-3.4144643412696,-3.45323705673218,0.0521557663825318
+4496,84143,441597.952,84243,441497.952,95,44,2.75,0.0055,1.90008575004103,0.14,16.9574173292382,0.00285524788429029,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,19.4585297902425,11.1803398132324,-3.32946499188741,-3.39389872550964,0.0772442884199161
+4497,84143,441497.952,84243,441397.952,96,44,2.25,0.0045,1.78605068229887,0.0583333333333333,21.1065495701675,-0.016548373915648,0.005,0.5,1,30.8308651382582,1,0.5,5,5,-3.30561727947659,-3.36392760276794,0.0944979664975477
+4498,84143,441397.952,84243,441297.952,97,44,10,0.0166666666666667,5.00564960367523,0.295039682539683,11.9521812897228,-0.0518530162748539,0,0,0,NA,NA,0,NA,NA,-3.36311427752177,-3.44489884376526,0.124527170529458
+4499,84143,441297.952,84243,441197.952,98,44,0.25,0.0025,0,0,NA,-0.111026012790389,0,0,0,NA,NA,0,NA,NA,-3.41044412718879,-3.46054792404175,0.0866500375439663
+4500,84143,441197.952,84243,441097.952,99,44,0.263157894736842,0.0025,0,0,NA,-0.0964818931091577,0,0,0,NA,NA,0,NA,NA,-3.42038371165593,-3.44142317771912,0.0325855980358167
+4501,84243,451097.952,84343,450997.952,0,45,0,NA,NA,NA,NA,-0.00672462503032875,0,0,0,NA,NA,0,NA,NA,-0.875886380672455,-0.904613494873047,0.0737804604815435
+4502,84243,450997.952,84343,450897.952,1,45,0.25,0.0025,0,0,NA,-0.0054201467418784,0,0,0,NA,NA,0,NA,NA,-0.983398740490278,-1.07504260540009,0.13152255802094
+4503,84243,450897.952,84343,450797.952,2,45,3.75,0.01875,13.160042872083,0.143518518518518,39.0512483795333,-0.0148991075298181,0,0,0,NA,NA,0,NA,NA,-1.33274273077647,-1.50747346878052,0.284479102090434
+4504,84243,450797.952,84343,450697.952,3,45,0,NA,NA,NA,NA,-0.00484740809785762,0.0075,0.75,1,44.4894453484604,1,0.75,45.4264183044434,43.0116271972656,-1.86394244432449,-2.3198094367981,0.431613074126291
+4505,84243,450697.952,84343,450597.952,4,45,0.25,0.0025,0,0,NA,-0.00772409566293845,0,0,0,NA,NA,0,NA,NA,-2.46858202086555,-2.98519420623779,0.612717555585533
+4506,84243,450597.952,84343,450497.952,5,45,11.5,0.0191666666666667,3.27564910078533,0.201851851851852,11.9171358997881,-0.0244378323006094,0,0,0,NA,NA,0,NA,NA,-3.05925401051839,-3.4633150100708,0.589941893522356
+4507,84243,450497.952,84343,450397.952,6,45,42,0.14,18.1008750816693,0.441005291005291,12.1676051329096,-0.0273090300481908,0.0025,0.25,1,0,NA,0.25,5,5,-3.42837376064724,-3.64424133300781,0.379059799192025
+4508,84243,450397.952,84343,450297.952,7,45,8.5,0.02125,4.06316723908983,0.255952380952381,26.5966920016321,-0.00300360619102094,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-3.65703900655111,-3.70832061767578,0.113112880036311
+4509,84243,450297.952,84343,450197.952,8,45,2.5,0.0125,6.16794259790803,0.138888888888889,25,0.00664088932825507,0,0,0,NA,NA,0,NA,NA,-3.70612896813287,-3.72669291496277,0.0694300259617959
+4510,84243,450197.952,84343,450097.952,9,45,34.75,0.115833333333333,16.1758005035167,0.585809252475919,10,-0.0164870405212423,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,16.3983455657959,11.1803398132324,-3.71185602082147,-3.73242783546448,0.0678241512204876
+4511,84243,450097.952,84343,449997.952,10,45,65.25,0.32625,16.6788415736778,0.449679487179487,30,-0.0271477194041381,0,0,0,NA,NA,0,NA,NA,-3.68938831488291,-3.73671412467957,0.0974964530500635
+4512,84243,449997.952,84343,449897.952,11,45,82.5,0.4125,23.595447201553,0.807291666666667,22.3606797749979,-0.0331256621855209,0.0025,0.25,1,0,NA,0.25,0,0,-3.45455225308736,-3.59060907363892,0.294817318347977
+4513,84243,449897.952,84343,449797.952,12,45,71.75,0.239166666666667,15.8094837164399,0.585821174710064,11.937129433614,-0.0197427639897796,0.1025,10.25,1,88.8238145380415,0.903112510597069,10.25,0.78222116609899,0,-2.58881009618441,-3.20057463645935,0.686005407766241
+4514,84243,449797.952,84343,449697.952,13,45,53.25,0.0760714285714286,10.2481371768096,0.396270892462945,10.9988183126201,-0.035222055119732,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,3.7599048614502,0,-1.97047842873467,-2.49107837677002,0.581583746416328
+4515,84243,449697.952,84343,449597.952,14,45,25.25,0.0841666666666667,14.0341580155334,0.528126244524094,15,-0.029300766277247,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-2.55047291517258,-2.96180462837219,0.589438249641525
+4516,84243,449597.952,84343,449497.952,15,45,11,0.0366666666666667,9.31950927281881,0.0992063492063492,41.4775014018255,0.0127353796747047,0.1025,10.25,4,80.2276168424402,0.741633361592184,8,9.2800860986477,0,-2.92950100368924,-3.19555354118347,0.447806227547332
+4517,84243,449497.952,84343,449397.952,16,45,29.75,0.2975,25.9370448390243,0.80672268907563,NA,0.0344662767164846,0.375,37.5,3,92.6968097413281,0.877818181818182,31.5,2.77367855072021,0,-2.96799349784851,-3.22589659690857,0.540179832637464
+4518,84243,449397.952,84343,449297.952,17,45,17.75,0.0295833333333333,11.4242225377091,0.276902427637722,19.7140452079103,-0.0386546752420327,0.0125,1.25,2,43.859649122807,0.594936708860759,1,2.82842712402344,0,-2.81776332855225,-3.11631631851196,0.540440413557774
+4519,84243,449297.952,84343,449197.952,18,45,24,0.06,10.8528310924168,0.527675653594771,12.661237755615,-0.00713310394915197,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,4.35727691650391,0,-2.76488341887792,-2.96106910705566,0.367847883450489
+4520,84243,449197.952,84343,449097.952,19,45,25.5,0.0231818181818182,4.93622632606411,0.183498519024835,12.4446592319133,0.0159699320091647,0.185,18.5,4,87.0788653092123,0.735724398301085,14.25,2.98649040428368,0,-2.60680630471971,-2.81537580490112,0.395110931245242
+4521,84243,449097.952,84343,448997.952,20,45,13.25,0.0265,7.5636930147995,0.331365079365079,19.3172790631008,-0.00493820098789911,0,0,0,NA,NA,0,NA,NA,-2.0347111887402,-2.50159573554993,0.673617845364922
+4522,84243,448997.952,84343,448897.952,21,45,20.75,0.0259375,5.93785924434427,0.290895432692308,17.6935378496652,0.00247277710728667,0.0775,7.75,2,83.73164788394,0.739837398373984,7.25,4.10946913688414,0,-0.949099610249201,-1.51213264465332,0.556097739288195
+4523,84243,448897.952,84343,448797.952,22,45,24,0.04,6.15437865014161,0.168650793650794,18.3945655107473,0.0167481107276399,0.095,9.5,4,72.930730483331,0.596597386652635,3.75,2.47742462158203,0,-0.185818137329382,-0.374360054731369,0.350122245450283
+4524,84243,448797.952,84343,448697.952,23,45,21,0.02625,4.98778741425384,0.182250330687831,11.4460970049771,0.0177039720131415,0.1275,12.75,2,88.7625674960991,0.841912854461022,12.25,3.99861219817517,0,0.31286492322882,0.11015060544014,0.233075937833797
+4525,84243,448697.952,84343,448597.952,24,45,19.5,0.024375,4.58840344915647,0.21547619047619,16.5378771162292,0.00142425023434953,0,0,0,NA,NA,0,NA,NA,0.663618657324049,0.535911440849304,0.219422568896697
+4526,84243,448597.952,84343,448497.952,25,45,38.75,0.0484375,6.56166930204608,0.254498954599761,11.8442778872617,0.0308558442811227,0.2375,23.75,3,89.0578208206274,0.830279652844744,15.75,5.48758924383866,0,1.10925079882145,0.861433863639832,0.281971565405743
+4527,84243,448497.952,84343,448397.952,26,45,46.5,0.0664285714285714,6.68486568043788,0.385968852949985,14.4197148056169,0.0220049817879772,0.17,17,2,87.175538521556,0.868381087374709,13,3.34089161367977,0,1.52183997631073,1.37244999408722,0.162605058240551
+4528,84243,448397.952,84343,448297.952,27,45,31,0.062,10.2358345248565,0.424098722159067,17.7382117285254,0.0287780542521432,0.3225,32.25,4,90.3407828834384,0.817853497683913,25.5,3.64101931845495,0,1.76913796861966,1.60786771774292,0.142715863608226
+4529,84243,448297.952,84343,448197.952,28,45,50,0.125,9.7669128197869,0.409289513677812,14.1067291072325,0.0211092593661579,0.1525,15.25,3,82.8495683961313,0.8330272165637,7.25,4.42802560524862,0,1.86470573478275,1.80629301071167,0.121363167108309
+4530,84243,448197.952,84343,448097.952,29,45,17.5,0.025,4.14984573309279,0.242775742775743,20.7079017328843,0.0338533866434955,0.24,24,2,93.9128000541575,0.869951040391677,23.75,10.2340726852417,0,1.89596663912137,1.83421969413757,0.127443219280163
+4531,84243,448097.952,84343,447997.952,30,45,26.25,0.0875,11.2090812807888,0.469681887934967,18.0277563773199,0.0264340891069151,0.11,11,4,75.7076871308036,0.757060431217735,4.75,12.0996283617887,0,1.90347715218862,1.85731160640717,0.0958976238729713
+4532,84243,447997.952,84343,447897.952,31,45,5.25,0.013125,4.11120099807613,0.278409090909091,29.9367131971657,0.0174059754159839,0.1025,10.25,3,77.3251825777349,0.757781276492673,5,7.70895241528023,0,1.99836824999915,1.92660629749298,0.147339788722319
+4533,84243,447897.952,84343,447797.952,32,45,2.75,0.01375,6.22478985117158,0.302777777777778,76.3216876123687,0.0132949172533131,0.1,10,2,82.3278514836259,0.867330016583748,7.75,22.8831892967224,0,2.31327754259109,2.1193151473999,0.263210546118949
+4534,84243,447797.952,84343,447697.952,33,45,12,0.012,3.54806512520362,0.250439814814815,15.5725090285509,0.0223758923047171,0.1475,14.75,4,78.1480715505769,0.758495773676039,5.5,3.89469638113248,0,2.90229301982456,2.67621088027954,0.408596678380558
+4535,84243,447697.952,84343,447597.952,34,45,3.5,0.004375,1.57988267694803,0.09375,15.9710750616221,0.00639297316551165,0.025,2.5,3,47.9024210673189,0.526627218934911,1,9.00194835662842,0,3.51186545689901,3.26486563682556,0.275135389961497
+4536,84243,447597.952,84343,447497.952,35,45,8.75,0.00729166666666667,1.80748556645372,0.102546296296296,14.1438582925545,0.0112983427979975,0.0775,7.75,3,75.174031671689,0.826558265582656,4.75,3.78688849172285,0,3.81480479240417,3.72012424468994,0.17742514898442
+4537,84243,447497.952,84343,447397.952,36,45,6.75,0.01125,2.30467468760692,0.166666666666667,20.4221968756685,0.00701630189028947,0.015,1.5,2,46.1375166841518,0.564902102973169,1,6.17851130167643,5,3.64445068438848,3.35322785377502,0.276850301496832
+4538,84243,447397.952,84343,447297.952,37,45,2.5,0.00357142857142857,0.97363721711368,0.0476190476190476,17.1710926254815,0.0074404022374074,0.02,2,3,43.0810370501115,0.591836734693878,1,8.20151090621948,0,3.00688807169596,2.39804077148438,0.776225822491004
+4539,84243,447297.952,84343,447197.952,38,45,3.5,0.005,1.10262831689775,0.0884353741496599,20.7140083566563,0.0170335757903376,0.055,5.5,5,60.677244642946,0.533146591970121,2.75,9.85872953588312,0,1.5138942177097,0.36069843173027,1.38876499681557
+4540,84243,447197.952,84343,447097.952,39,45,14,0.02,4.23823007845569,0.282407407407407,14.570502341994,0.0212188111836622,0.2075,20.75,2,92.2764363485203,0.785403120238632,19.75,3.96593201878559,0,0.359472242494424,-0.831438541412354,1.26034221539969
+4541,84243,447097.952,84343,446997.952,40,45,2,0.00666666666666667,3.03450916988383,0.222222222222222,17.4127682432574,0.0105852627483728,0.0425,4.25,2,69.5200953136286,0.7911227154047,2.75,23.1891317928539,0,-0.181320656090975,-0.399164080619812,0.466797118645128
+4542,84243,446997.952,84343,446897.952,41,45,11.75,0.029375,5.92991927440185,0.408148148148148,20.5901699437495,-0.0278365049605236,0,0,0,NA,NA,0,NA,NA,-0.416101538472705,-0.463889837265015,0.130735404350562
+4543,84243,446897.952,84343,446797.952,42,45,27.25,0.13625,12.6347493087203,0.361111111111111,10,-0.0687030425489502,0.015,1.5,1,62.2896536353828,1,1.5,20,15,-0.489454751213392,-0.527510702610016,0.0788261945990439
+4544,84243,446797.952,84343,446697.952,43,45,0.75,0.00375,1.76776695296637,0.0416666666666667,25,-0.00954537997789885,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,33.3919542486017,25,-0.521832896603478,-0.558568000793457,0.0706029267445966
+4545,84243,446697.952,84343,446597.952,44,45,3.5,0.007,2.91541153493224,0.133333333333333,14.4721359549996,-0.00495421058247302,0.0425,4.25,1,79.7330921014386,1,4.25,41.4069256502039,32.0156211853027,-0.547170745001899,-0.569504737854004,0.0502972802930926
+4546,84243,446597.952,84343,446497.952,45,45,0,NA,NA,NA,NA,-0.043249951609445,0.0075,0.75,1,44.4894453484604,1,0.75,53.68439356486,52.2015342712402,-0.562415783603986,-0.574680626392365,0.0291412484318854
+4547,84243,446497.952,84343,446397.952,46,45,4,0.01,3.18247731064704,0.213541666666667,13.0901699437495,-0.0429004361375883,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,41.8138144356864,35.355339050293,-0.567840655644735,-0.579999983310699,0.021015887270081
+4548,84243,446397.952,84343,446297.952,47,45,14.75,0.07375,12.29826891893,0.326149425287356,10,-0.0284101905283569,0.0025,0.25,1,0,NA,0.25,36.0555114746094,36.0555114746094,-0.573941429456075,-0.579999983310699,0.0132130702970441
+4549,84243,446297.952,84343,446197.952,48,45,15,0.00714285714285714,2.93743785189331,0.150699168556311,11.6984235261293,-0.0161178395796378,0.0975,9.75,1,88.4075627573592,0.948860004261666,9.75,4.73070447872847,0,-0.569065107239617,-0.579048156738281,0.0142235243468874
+4550,84243,446197.952,84343,446097.952,49,45,13.25,0.00828125,3.52669992283322,0.166956018518519,14.0834553789987,0.00266983047198664,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,2.85714285714286,0,-0.535547718405724,-0.560327887535095,0.0323425511710738
+4551,84243,446097.952,84343,445997.952,50,45,29.25,0.0417857142857143,8.87290790292834,0.385620058834345,14.3448303787844,0.0311237618252744,0.2025,20.25,5,80.5023550557281,0.73876698014629,9.25,4.15017389368128,0,-0.471802817450629,-0.502054810523987,0.056008844518942
+4552,84243,445997.952,84343,445897.952,51,45,42,0.105,19.8829329150506,0.597907860305958,11.25,0.0206633916282408,0.155,15.5,5,83.8959218334649,0.726057418365111,10.75,2.24422799387286,0,-0.449258096516132,-0.581561684608459,0.174125608662986
+4553,84243,445897.952,84343,445797.952,52,45,41,0.0683333333333333,12.5697411436796,0.515162590820486,12.8934466291663,0.0442014821741031,0.3675,36.75,6,87.4852216734402,0.670864128598087,14,3.80101477694349,0,-0.486789362298118,-0.757230520248413,0.445123395670656
+4554,84243,445797.952,84343,445697.952,53,45,17.5,0.0194444444444444,6.40545236621926,0.314143264143264,15.2213031320379,0.0273831226180478,0.2225,22.25,5,82.6705263648706,0.652166879006653,11.25,5.8140077483788,0,-0.458544459737216,-0.888818919658661,0.734530290757949
+4555,84243,445697.952,84343,445597.952,54,45,33.25,0.0277083333333333,4.06512577292738,0.176675084175084,11.5719579311439,0.0542726400650281,0.565,56.5,2,97.3767238778352,0.792502798481994,53.75,3.61765095195939,0,-0.405268119673969,-0.850156366825104,0.817840807467545
+4556,84243,445597.952,84343,445497.952,55,45,38.5,0.035,6.4064063823157,0.252309325135412,11.8725886315484,0.0292856603306791,0.31,31,3,94.0077963494735,0.793880837359098,29,4.72173486217376,0,-0.0761787452631527,-0.740972816944122,1.00544874418326
+4557,84243,445497.952,84343,445397.952,56,45,33,0.0366666666666667,7.78634401503669,0.30243320140981,11.7098262391464,0.0618515737153939,0.6025,60.25,3,94.9090928306231,0.720475192173305,38.75,5.3647740550061,0,0.367138661444187,-0.311543256044388,1.0100803717152
+4558,84243,445397.952,84343,445297.952,57,45,52.75,0.26375,21.6543109294528,0.675355054302423,11.1803398874989,-0.0127644854644495,0.0825,8.25,2,83.4509865174781,0.777979614491876,7.5,4.2827236291134,0,0.833761975169182,-0.146213665604591,0.991892210775208
+4559,84243,445297.952,84343,445197.952,58,45,60.5,0.3025,22.9213412075962,0.645154185022026,20,-0.00387926248697113,0.1725,17.25,6,81.537322100504,0.740331077875709,11.5,2.49845714845519,0,1.79789042472839,0.71802806854248,1.82102430242128
+4560,84243,445197.952,84343,445097.952,59,45,55.5,0.0925,9.12104695801915,0.288126026272578,13.9972427294469,0.0336572233644983,0.4375,43.75,4,92.0376918588962,0.807361541107671,30.75,3.13533397129604,0,2.29265610376994,0.399460643529892,2.87174782197765
+4561,84243,445097.952,84343,444997.952,60,45,60.75,0.0867857142857143,10.3995084456867,0.54109804490902,10.9988183126201,0.0163682222392242,0.265,26.5,5,88.1922556811961,0.772055419026249,17,1.02964278886903,0,-0.0167960409695903,-0.795705318450928,1.71987337986657
+4562,84243,444997.952,84343,444897.952,61,45,56.25,0.140625,16.8531378076462,0.569265342620482,10.5901699437495,0.0448262710419658,0.45,45,1,97.417305342106,0.961779961779962,45,1.80078964233398,0,-1.14457208580441,-1.26909828186035,0.264593760321948
+4563,84243,444897.952,84343,444797.952,62,45,18,0.0138461538461538,4.62185547079231,0.247455073416612,11.1040313817953,0.0213644016216676,0.1425,14.25,8,74.8787772412604,0.726304515975486,10,6.19592174730803,0,-1.27470776438713,-1.30879199504852,0.0629582086513897
+4564,84243,444797.952,84343,444697.952,63,45,6.25,0.0078125,1.99640399525848,0.17337962962963,17.7233216082331,0.0127065972735818,0.065,6.5,4,67.8794629579283,0.739141776444502,3.5,10.8924802633432,0,-1.15992082489861,-1.2254410982132,0.126694000872501
+4565,84243,444697.952,84343,444597.952,64,45,41.25,0.0825,12.2811359472465,0.413260582010582,11.1622776601684,0.0508161527502671,0.4425,44.25,4,93.8538145436405,0.813496797904582,37.25,3.08183719613458,0,-0.932715157667796,-1.10731256008148,0.238630788026155
+4566,84243,444597.952,84343,444497.952,65,45,32.25,0.0645,8.60537116453065,0.380180287862941,16.9086391253089,0.0249832499234617,0.1175,11.75,5,79.718455413152,0.71671388101983,8.25,3.33054635879841,0,-0.748806218306224,-0.948891401290894,0.318608816290516
+4567,84243,444497.952,84343,444397.952,66,45,29.25,0.04875,6.55209955576686,0.25400641025641,15.6982352231138,0.0197766232767641,0.1575,15.75,3,90.6252541080983,0.697868896681953,15.25,1.46144552079458,0,-0.760843932628632,-0.977573931217194,0.333865833128964
+4568,84243,444397.952,84343,444297.952,67,45,10,0.0111111111111111,3.98465986071421,0.267489711934156,14.7149072113917,-0.000559405851236079,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,3.33333333333333,0,-1.08713067571322,-1.33918046951294,0.312495243089821
+4569,84243,444297.952,84343,444197.952,68,45,25.5,0.0425,11.6933999090331,0.406304209530016,17.8470065541656,0.0152191609280146,0.15,15,4,85.1201348762213,0.830316742081448,12.75,3.36785113016764,0,-1.46017763349745,-1.58962106704712,0.197700674731967
+4570,84243,444197.952,84343,444097.952,69,45,14.75,0.0122916666666667,3.03602427368992,0.181697530864198,13.5713147785802,0.00848696635721353,0.0275,2.75,3,54.1168226130773,0.657240788346187,1.5,3.47740069302646,0,-1.52162877718608,-1.61787521839142,0.149953092441006
+4571,84243,444097.952,84343,443997.952,70,45,20.75,0.0415,9.57448277930222,0.32449494949495,10.4721359549996,0.00548761540911528,0.085,8.5,2,81.5493577776897,0.843871975019516,7,2.91594516529756,0,-1.30734120474921,-1.45846402645111,0.182957586090928
+4572,84243,443997.952,84343,443897.952,71,45,41.75,0.0695833333333333,11.1031951680582,0.394715899180185,10.1967233145832,0.0759972127035144,0.7075,70.75,1,99.0059126497077,0.903605166763061,70.75,4.07738490155223,0,-1.15212485194206,-1.22300159931183,0.0900374185619203
+4573,84243,443897.952,84343,443797.952,72,45,73,0.146,9.17501333244493,0.290341578327444,10.2360679774998,0.0957717255974421,0.8175,81.75,2,97.0336558258527,0.769099265114007,48,1.36040615816729,0,-1.01236593723297,-1.11984419822693,0.202523636945195
+4574,84243,443797.952,84343,443697.952,73,45,61.5,0.0878571428571429,8.88237841810808,0.344967069055739,10.1686199839284,0.0665977303116961,0.525,52.5,3,95.3325915906038,0.811549333692287,44.25,0.839110492524647,0,-0.866723760962486,-1.00351583957672,0.189583449528561
+4575,84243,443697.952,84343,443597.952,74,45,68,0.34,18.9037498945407,0.346555965559656,10,0.071021351573072,0.745,74.5,3,96.3703902496425,0.832232358183915,47.25,1.57646673317724,0,-1.1568872001436,-1.50159788131714,0.455282224616266
+4576,84243,443597.952,84343,443497.952,75,45,72,0.72,36.2856356356272,0.788773148148148,NA,0.0508568766634562,0.4625,46.25,3,94.2528704591706,0.912960696314429,41.25,2.12471004176784,0,-1.72742209831874,-2.15679621696472,0.423918527632516
+4577,84243,443497.952,84343,443397.952,76,45,48.25,0.0804166666666667,8.36053073947567,0.238546473302571,12.688977302012,-0.0398224802688992,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.16180557674832,-2.29674077033997,0.209907690091769
+4578,84243,443397.952,84343,443297.952,77,45,56,0.08,6.96957080784353,0.291961338991042,11.2662135962467,0.00448655364428305,0.1325,13.25,4,79.0626243174227,0.721316147829116,7,4.829574081133,0,-2.30575903256734,-2.43087530136108,0.206131095247255
+4579,84243,443297.952,84343,443197.952,78,45,19,0.02375,3.9883957893729,0.206857638888889,13.6161527837402,-0.0341240909237968,0.07,7,3,72.7591443453761,0.78494623655914,4.75,7.0997314453125,0,-2.36551024516424,-2.48042559623718,0.197355970003077
+4580,84243,443197.952,84343,443097.952,79,45,5.75,0.00638888888888889,2.22324461765767,0.137654320987654,16.1418806322986,-0.039389275340709,0.0025,0.25,1,0,NA,0.25,0,0,-2.39420262972514,-2.53884768486023,0.233154674851329
+4581,84243,443097.952,84343,442997.952,80,45,1.75,0.004375,1.3486798763904,0.0520833333333333,15.6843030841286,-0.102300942786969,0,0,0,NA,NA,0,NA,NA,-2.52892309427261,-2.70236444473267,0.240762049652813
+4582,84243,442997.952,84343,442897.952,81,45,3.75,0.0075,2.52997387882451,0.11,14.2462112512353,-0.101572376294062,0,0,0,NA,NA,0,NA,NA,-2.61177417967055,-2.72890067100525,0.223628898270877
+4583,84243,442897.952,84343,442797.952,82,45,6,0.00857142857142857,3.44452139541228,0.188888888888889,21.0086604996386,-0.053357951302969,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-2.49974548816681,-2.68329262733459,0.271829749125849
+4584,84243,442797.952,84343,442697.952,83,45,17,0.017,3.79451333616098,0.249506974506975,14.1778871322951,0.00243622517093172,0.1525,15.25,3,85.1692829274866,0.721712027606167,9.75,7.70402483080254,0,-2.568465868632,-2.76039624214172,0.262507981121699
+4585,84243,442697.952,84343,442597.952,84,45,3.5,0.00583333333333333,1.8057250577681,0.130952380952381,18.9972427294469,-0.0566337795035361,0.02,2,1,68.0470115164975,0.897959183673469,2,10,5,-2.86940538883209,-3.04217195510864,0.223964477736061
+4586,84243,442597.952,84343,442497.952,85,45,75,0.375,20.5302541618625,0.67401680030546,20.6155281280883,0.057204978119662,0.5825,58.25,1,98.3671391359956,0.862344276963315,58.25,2.27111466043497,0,-3.12604040569729,-3.17405462265015,0.0964959067602039
+4587,84243,442497.952,84343,442397.952,86,45,46.75,0.155833333333333,19.8984869292822,0.758968158747087,11.380711874577,0.0342424800150184,0.465,46.5,2,94.6716763975522,0.80439034992393,35,2.47561774715301,0,-3.23215399185816,-3.27768802642822,0.0628099716523812
+4588,84243,442397.952,84343,442297.952,87,45,0,NA,NA,NA,NA,-0.0181178821019103,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,73.6262020111084,58.3095169067383,-3.33774124251472,-3.38122797012329,0.0890526560273593
+4589,84243,442297.952,84343,442197.952,88,45,0,NA,NA,NA,NA,0.011122057745124,0.3475,34.75,1,96.3348533717898,0.963797628744683,34.75,135.329062537324,85,-3.45585217078527,-3.52533721923828,0.077355878258175
+4590,84243,442197.952,84343,442097.952,89,45,0,NA,NA,NA,NA,0.0179135981014406,0.0475,4.75,2,72.4101107744032,0.818988143723414,3.75,224.584755345395,174.642486572266,-3.56333949830797,-3.58923268318176,0.0518951194770435
+4591,84243,442097.952,84343,441997.952,90,45,0,NA,NA,NA,NA,0.0357121461455245,0.055,5.5,3,69.1187784637777,0.657640834111422,3.5,251.866560502486,220.056823730469,-3.61317170990838,-3.62746739387512,0.0266941059894671
+4592,84243,441997.952,84343,441897.952,91,45,0,NA,NA,NA,NA,0.0109769866252282,0,0,0,NA,NA,0,NA,NA,-3.60761710007985,-3.62798476219177,0.0343551274943989
+4593,84243,441897.952,84343,441797.952,92,45,0.25,0.0025,0,0,NA,-0.0274589459096933,0,0,0,NA,NA,0,NA,NA,-3.53243560261197,-3.56170725822449,0.0462021209935294
+4594,84243,441797.952,84343,441697.952,93,45,0,NA,NA,NA,NA,-0.00650672674822999,0.01,1,1,52.6315789473684,0.747474747474748,1,95.2323112487793,92.195442199707,-3.48527052005132,-3.49701547622681,0.0196567529119694
+4595,84243,441697.952,84343,441597.952,94,45,0,NA,NA,NA,NA,-0.00677887333793478,0,0,0,NA,NA,0,NA,NA,-3.45840252770318,-3.47749447822571,0.0290301996512761
+4596,84243,441597.952,84343,441497.952,95,45,0,NA,NA,NA,NA,0.000214080185605781,0,0,0,NA,NA,0,NA,NA,-3.4108909368515,-3.44050669670105,0.0457250472846241
+4597,84243,441497.952,84343,441397.952,96,45,0.75,0.00375,1.25,0.0833333333333333,25.4950975679639,-0.0142416677896108,0,0,0,NA,NA,0,NA,NA,-3.40410081545512,-3.43356657028198,0.0455394838335797
+4598,84243,441397.952,84343,441297.952,97,45,6.25,0.00694444444444444,2.45099506511076,0.161816578483245,12.4125653042596,-0.0253095768408821,0,0,0,NA,NA,0,NA,NA,-3.45955946048101,-3.4920973777771,0.0419500990838794
+4599,84243,441297.952,84343,441197.952,98,45,0,NA,NA,NA,NA,-0.00579368732962394,0,0,0,NA,NA,0,NA,NA,-3.48803517553541,-3.5,0.0274381460757353
+4600,84243,441197.952,84343,441097.952,99,45,0,NA,NA,NA,NA,-0.109924200133537,0,0,0,NA,NA,0,NA,NA,-3.43752584854762,-3.47471833229065,0.0372965437242213
+4601,84343,451097.952,84443,450997.952,0,46,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.00884598965501027,0.0075,0.75,1,44.4894453484604,1,0.75,57.0227979024251,53.8516464233398,-1.19487354656061,-1.5523008108139,0.401044839705734
+4602,84343,450997.952,84443,450897.952,1,46,3.75,0.01875,13.1778991039311,0.138257575757576,32.0156211871642,-0.0111434472990913,0,0,0,NA,NA,0,NA,NA,-1.32192436605692,-1.7302520275116,0.412547067406638
+4603,84343,450897.952,84443,450797.952,2,46,0,NA,NA,NA,NA,-0.00994056082547104,0,0,0,NA,NA,0,NA,NA,-1.63908516367277,-1.962965965271,0.40553988168163
+4604,84343,450797.952,84443,450697.952,3,46,1.5,0.0075,2.40826299154644,0.183333333333333,14.142135623731,-0.0109491415244929,0,0,0,NA,NA,0,NA,NA,-2.22703796625137,-2.96240925788879,0.532538397945036
+4605,84343,450697.952,84443,450597.952,4,46,20,0.0666666666666667,6.60250871772451,0.25997150997151,17.4535599249993,-0.0105955595586784,0,0,0,NA,NA,0,NA,NA,-3.13509299357732,-3.49062132835388,0.492367370562361
+4606,84343,450597.952,84443,450497.952,5,46,50,0.166666666666667,18.2039023709058,0.483735380116959,11.6666666666667,-0.034913741430355,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,1.80473785400391,0,-3.59176382422447,-3.74828720092773,0.20810541134581
+4607,84343,450497.952,84443,450397.952,6,46,24.75,0.0495,12.0422667263788,0.486427498927499,16.5600450158631,-0.00622019081416511,0.01,1,1,52.6315789473684,0.747474747474748,1,1.25,0,-3.70839814345042,-3.75306701660156,0.0690505232672129
+4608,84343,450397.952,84443,450297.952,7,46,1,0.0025,0,0,29.4760567367967,-2.89888791303383e-05,0.0075,0.75,1,44.4894453484604,1,0.75,13.9972426096598,11.1803398132324,-3.64063642919064,-3.68600273132324,0.0686682656845809
+4609,84343,450297.952,84443,450197.952,8,46,7.25,0.0145,5.17971359717152,0.169607843137255,12.2360679774998,0.00301371767228375,0,0,0,NA,NA,0,NA,NA,-3.58473082383474,-3.67182731628418,0.0976401054128418
+4610,84343,450197.952,84443,450097.952,9,46,8,0.02,4.67124861775062,0.145833333333333,32.6101431120243,-0.00175729484537442,0,0,0,NA,NA,0,NA,NA,-3.61519759893417,-3.70781707763672,0.103798350860724
+4611,84343,450097.952,84443,449997.952,10,46,20.25,0.0675,13.3988277052786,0.620618768629869,20.1037629138309,-0.00309203417951721,0.01,1,2,34.5233986084855,0.494949494949495,0.75,7.98145580291748,0,-3.66665044426918,-3.72020363807678,0.0644828733322038
+4612,84343,449997.952,84443,449897.952,11,46,80,0.8,37.4584408992324,0.877604166666667,NA,-0.0148963453630131,0.03,3,2,62.733446895491,0.696785930867192,1.75,0.416666666666667,0,-3.50711047649384,-3.62423467636108,0.201863936214944
+4613,84343,449897.952,84443,449797.952,12,46,69.5,0.17375,15.5128872244533,0.550634193467963,10.2950849718747,-0.0488641574451322,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0,-3.08599102497101,-3.44025850296021,0.443385521512948
+4614,84343,449797.952,84443,449697.952,13,46,72.5,0.241666666666667,15.8112627495199,0.447617500541477,10,-0.0425851386488648,0.03,3,3,55.6416293904177,0.696785930867192,2,7.79782358805339,0,-2.86469330390294,-3.4147744178772,0.538196578854986
+4615,84343,449697.952,84443,449597.952,14,46,9,0.0225,6.85215321509989,0.190304487179487,18.2258412112829,-0.00195815541804222,0.0725,7.25,3,77.2712295471706,0.862361644778345,6.25,14.914400100708,0,-3.32585519552231,-3.80416512489319,0.506021887452671
+4616,84343,449597.952,84443,449497.952,15,46,7.5,0.01875,3.95573362073109,0.177777777777778,31.2056980718378,-0.00449684289528705,0,0,0,NA,NA,0,NA,NA,-3.61020231246948,-3.8821017742157,0.35286885118831
+4617,84343,449497.952,84443,449397.952,16,46,19.75,0.1975,31.1730219364348,0.552742616033755,NA,-0.00119083474368381,0.1525,15.25,1,91.785591586011,0.79963265987644,15.25,14.8707318227799,7.07106781005859,-3.54926231503487,-3.86207294464111,0.296025085297324
+4618,84343,449397.952,84443,449297.952,17,46,9,0.018,6.0822823549009,0.280193236714976,31.55849869836,-0.006071134146041,0.0775,7.75,6,65.2262607863484,0.609756097560976,3.5,15.9258273340041,10,-3.3055619597435,-3.44855642318726,0.219137583725348
+4619,84343,449297.952,84443,449197.952,18,46,23.25,0.0258333333333333,6.03809833278474,0.208413525795242,17.5676594489407,-0.00218907523511916,0.11,11,3,80.9962894205273,0.817795323413301,8,5.34384194287387,0,-3.0257775336504,-3.17903089523315,0.185752639734178
+4620,84343,449197.952,84443,449097.952,19,46,43.25,0.144166666666667,19.6869272214049,0.676719576719577,15.7868932583326,0.0258546976363368,0.25,25,6,82.2195213268201,0.711111111111111,9,2.7038556098938,0,-2.70744838317235,-2.8609766960144,0.252478566900915
+4621,84343,449097.952,84443,448997.952,20,46,60.25,0.200833333333333,16.8169535177182,0.624344325852947,16.8816503408199,0.0122341286110895,0.1925,19.25,2,90.035696423435,0.872518666909488,16.25,0.12987012987013,0,-2.16087343295415,-2.50057077407837,0.534072990936915
+4622,84343,448997.952,84443,448897.952,21,46,65.25,0.163125,11.7060127318551,0.470732118758435,14.7158737934317,0.0403717890588814,0.4375,43.75,2,95.0648304255716,0.90092879256966,38.25,0.801842716761998,0,-1.12535544484854,-1.65390849113464,0.663583902592862
+4623,84343,448897.952,84443,448797.952,22,46,75.75,0.2525,22.1957004468973,0.754091521116611,10.3934466291663,0.012054824219731,0.25,25,5,83.4102685756427,0.725925925925926,9,0.670710678100586,0,-0.173944711064299,-0.521597504615784,0.492515193630345
+4624,84343,448797.952,84443,448697.952,23,46,31,0.0516666666666667,5.62898722201537,0.126412429378531,14.2016825471891,-0.000193355022256583,0.025,2.5,2,58.7318836713039,0.605522682445759,1.5,3.20710678100586,0,0.264239703930798,0.00272928434424102,0.290525718217831
+4625,84343,448697.952,84443,448597.952,24,46,44,0.088,7.78461644073491,0.302674897119342,10.8284271247462,0.00939975361050983,0.1525,15.25,4,83.4041730063982,0.73284354650192,9.75,3.32725565550757,0,0.715631643931071,0.53434830904007,0.286035696323519
+4626,84343,448597.952,84443,448497.952,25,46,37.75,0.0471875,8.18281503023495,0.391229908279347,11.4641359672921,0.0202897551834576,0.1125,11.25,5,75.0464720389263,0.659006671608599,6,7.91376436021593,0,1.14249296858907,0.85650223493576,0.278327726788514
+4627,84343,448497.952,84443,448397.952,26,46,54.25,0.0904166666666667,9.38993177336516,0.359191762829534,10.6903559372885,0.0430276385265461,0.3525,35.25,6,89.2406797661675,0.778516057585825,23.5,2.32389746321009,0,1.49871669212977,1.35945355892181,0.215811443220362
+4628,84343,448397.952,84443,448297.952,27,46,22.75,0.0189583333333333,4.67786143863008,0.213521711366539,13.6068219815128,0.0112870921206195,0.115,11.5,3,81.1081624927711,0.797189627698102,7.5,4.32383388021718,0,1.59700563549995,1.40043807029724,0.196747708706263
+4629,84343,448297.952,84443,448197.952,28,46,37.25,0.03725,5.10976500120425,0.278974519632414,15.5831985246048,0.00667890550275388,0.0525,5.25,4,68.8519905456903,0.703166226912929,4,2.97112110682896,0,1.59732083479563,1.41419851779938,0.203423650095604
+4630,84343,448197.952,84443,448097.952,29,46,7.25,0.018125,5.17728032923252,0.290104166666667,42.5,0.00930404172286217,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,3.64565717256986,0,1.68492887914181,1.46857249736786,0.171820284335611
+4631,84343,448097.952,84443,447997.952,30,46,58.5,0.585,33.3081428743168,0.777777777777778,NA,0.0184711572818196,0.065,6.5,2,75.8851035062131,0.739141776444502,3.5,0.769230769230769,0,1.88555616140366,1.78837728500366,0.140223004010039
+4632,84343,447997.952,84443,447897.952,31,46,8,0.00888888888888889,2.70601649856663,0.2,14.8832155978306,0.0225459768326073,0.085,8.5,5,70.6665671202728,0.668227946916471,5,7.83302935431985,0,2.10794859131177,1.98032176494598,0.173020140226996
+4633,84343,447897.952,84443,447797.952,32,46,24.25,0.0346428571428571,5.1692400518884,0.342973692973693,14.5422668593696,0.0216597342896785,0.1275,12.75,5,76.1039612912478,0.657477851332213,6.25,6.25437366261202,0,2.399319678545,2.1825098991394,0.216352191776575
+4634,84343,447797.952,84443,447697.952,33,46,1.75,0.0025,0,0,29.2598370497751,-0.00852369981897937,0,0,0,NA,NA,0,NA,NA,2.79647268851598,2.64737153053284,0.269748799564778
+4635,84343,447697.952,84443,447597.952,34,46,2.25,0.005625,2.19403048787545,0.0958333333333333,44.240934595648,0.0110568218585649,0.04,4,2,68.1529391607007,0.782986111111111,2.25,5.6653094291687,0,3.14488860964775,2.85033249855042,0.321619242982597
+4636,84343,447597.952,84443,447497.952,35,46,0,NA,NA,NA,NA,0.0211895838472446,0.2025,20.25,1,93.5672514619883,0.895506792058516,20.25,65.7711113823785,40.3112869262695,3.27934461832047,2.97391414642334,0.356303355025035
+4637,84343,447497.952,84443,447397.952,36,46,0.5,0.0025,0,0,36.4005494464026,0.00484352994418259,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,3.31513194739819,3.02261686325073,0.278073958718713
+4638,84343,447397.952,84443,447297.952,37,46,6.5,0.0065,1.79348519712635,0.148571428571429,16.4041703604762,0.0170014157319952,0.105,10.5,6,71.5177600838592,0.653788653709969,5.5,8.74945776803153,0,3.2293775677681,3.02151274681091,0.255921188089617
+4639,84343,447297.952,84443,447197.952,38,46,5.5,0.00785714285714286,2.63165912640292,0.179761904761905,20.9054024843357,0.0155017648316061,0.03,3,5,39.9860247601969,0.393571861734384,1,10.6939706802368,0,2.82136049866676,2.1888484954834,0.49639030366845
+4640,84343,447197.952,84443,447097.952,39,46,10,0.00909090909090909,2.78319902742209,0.220538720538721,18.4711995691502,0.0191528138600916,0.0825,8.25,4,71.0032956098986,0.737612271672217,3.75,7.44128880356297,0,2.10482369860013,1.17911612987518,0.731791811740147
+4641,84343,447097.952,84443,446997.952,40,46,13,0.0216666666666667,5.44843976448283,0.252627627627628,16.6719979931407,0.0273016451150033,0.135,13.5,5,76.4497913846522,0.738952079060227,6.25,4.23381907851608,0,1.0498473807238,0.0687813237309456,0.968418797777583
+4642,84343,446997.952,84443,446897.952,41,46,1.75,0.004375,1.33774262700138,0.0416666666666667,22.6416719071894,0.00791512222606116,0.0475,4.75,2,71.7732068996853,0.782785772468097,3.25,13.2681457117984,5,0.173411962964262,-0.317351400852203,0.569712759299079
+4643,84343,446897.952,84443,446797.952,42,46,1.75,0.00583333333333333,1.72676760218489,0.111111111111111,37.3079605180837,0.00365966647012101,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,6.2440857357449,0,-0.241529804188758,-0.495271265506744,0.338838658597794
+4644,84343,446797.952,84443,446697.952,43,46,6,0.00545454545454545,2.52102847341456,0.111111111111111,11.6602162920448,-0.00834122297750582,0.0225,2.25,2,55.8704762942355,0.744245524296675,1.25,10.9548185136583,0,-0.433050602674484,-0.550677299499512,0.168051724626639
+4645,84343,446697.952,84443,446597.952,44,46,5.75,0.00958333333333333,3.65091895101867,0.185541310541311,19.3947571892774,-0.00449515312641552,0.0025,0.25,1,0,NA,0.25,28.2842712402344,28.2842712402344,-0.504826828837395,-0.568365275859833,0.101016569389512
+4646,84343,446597.952,84443,446497.952,45,46,16.25,0.0270833333333333,7.32178662568293,0.222619047619048,13.5247126631543,-0.00806593348091383,0,0,0,NA,NA,0,NA,NA,-0.541026966646314,-0.578200697898865,0.0635274760201266
+4647,84343,446497.952,84443,446397.952,46,46,12,0.03,7.70512975500516,0.254674796747967,15.5901699437495,-0.0364761819559499,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,22.8579610188802,21.2132034301758,-0.560637826720873,-0.579999983310699,0.0413597613735746
+4648,84343,446397.952,84443,446297.952,47,46,5.5,0.0275,10.7060326184611,0.337254901960784,10,-0.0455228999133396,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,15.1294784545898,5,-0.568746518343687,-0.579999983310699,0.0310272998156874
+4649,84343,446297.952,84443,446197.952,48,46,15.5,0.0172222222222222,4.72383625407865,0.27716049382716,14.7659167299291,-0.0240054421499599,0.04,4,2,67.9738222173253,0.826388888888889,2.25,7.68785190582275,0,-0.57235794266065,-0.579999983310699,0.0226138879169875
+4650,84343,446197.952,84443,446097.952,49,46,26.75,0.0222916666666667,4.89157111351336,0.153416149068323,12.4872921276086,-0.000883503041886797,0.1025,10.25,2,86.195059041911,0.886964595696581,9.75,4.45648826040873,0,-0.552557460963726,-0.570006787776947,0.0257942700523786
+4651,84343,446097.952,84443,445997.952,50,46,37.75,0.0755,12.4678820554171,0.481628050495975,10,0.0293987301896232,0.2225,22.25,8,76.1036413746122,0.635988594309288,5,5.01041371634837,0,-0.514316683014234,-0.532115519046783,0.0284018113982555
+4652,84343,445997.952,84443,445897.952,51,46,33,0.0366666666666667,6.91258552173265,0.251138521971855,10.6867044319443,0.0377533104663962,0.255,25.5,7,84.5843082959244,0.743279422011956,15.5,1.8340300765692,0,-0.558631971478462,-0.656928837299347,0.0953572799208412
+4653,84343,445897.952,84443,445797.952,52,46,49.25,0.123125,11.7134034368744,0.48190852294429,16.25,0.0506097613750899,0.3875,38.75,3,95.02683746641,0.833870390261368,36,1.26589163503339,0,-0.838284780581792,-0.968624532222748,0.21811127964461
+4654,84343,445797.952,84443,445697.952,53,46,25.25,0.0315625,7.36434822950473,0.300694444444444,16.1894159379548,0.0157322796196377,0.0325,3.25,5,44.000729295247,0.425782371518806,1,2.08238983154297,0,-1.10478018224239,-1.24182713031769,0.188726478764967
+4655,84343,445697.952,84443,445597.952,54,46,20.5,0.0205,6.55078466896805,0.385704561139344,11.2169892001051,0.00369197044416069,0.15,15,2,86.5057275821684,0.830316742081448,10.25,1.95118446350098,0,-1.21510324875514,-1.30784904956818,0.173779717777945
+4656,84343,445597.952,84443,445497.952,55,46,28.25,0.0217307692307692,3.79599499130993,0.210481825866441,10.7991104732552,0.0161922426455203,0.06,6,4,66.2448928334697,0.608062709966405,3.25,5.35861444473267,0,-1.17199701567491,-1.30803680419922,0.267677040280967
+4657,84343,445497.952,84443,445397.952,56,46,31.25,0.104166666666667,11.1905253836422,0.403361344537815,20.0999641448754,0.0514244924203012,0.4275,42.75,1,97.2134830220855,0.905732307479032,42.75,4.16506772849992,0,-1.03333775699139,-1.27833938598633,0.390646122745993
+4658,84343,445397.952,84443,445297.952,57,46,31,0.0442857142857143,10.2089909188139,0.418783068783069,10.8430999196421,0.018102603555717,0.205,20.5,2,89.6558270754278,0.852526566905227,15.75,2.17379765394257,0,-0.725096986008187,-1.17754006385803,0.665039872280543
+4659,84343,445297.952,84443,445197.952,58,46,33.5,0.0372222222222222,7.00227461797427,0.285185185185185,10.5245955055551,0.065489692889123,0.54,54,2,96.5830041377912,0.745836037205278,46,4.29354455735948,0,-0.301561870146543,-0.961232781410217,1.03037199563673
+4660,84343,445197.952,84443,445097.952,59,46,38.5,0.0641666666666667,8.74514555041669,0.314419119974676,11.2267799624997,0.0450417311537603,0.365,36.5,5,87.9590288561321,0.681500486596479,13.75,4.2678608437107,0,0.986428511639436,-0.29339388012886,2.50255141663472
+4661,84343,445097.952,84443,444997.952,60,46,53.75,0.0597222222222222,8.98643272436286,0.52904724179234,11.4225684987981,-0.0181054904927441,0.15,15,4,82.8235566654453,0.751131221719457,7,0.652368927001953,0,0.983694493304938,-0.909919798374176,2.56913998417592
+4662,84343,444997.952,84443,444897.952,61,46,28.25,0.0256818181818182,5.50607521177263,0.345867753955989,13.8349367425368,-0.00184574298154985,0.1525,15.25,4,80.6418972249758,0.688317470918907,8,5.7233751015585,0,-1.11155886451403,-1.31441390514374,0.265435292211903
+4663,84343,444897.952,84443,444797.952,62,46,19.5,0.015,3.83136054445477,0.216076516076516,12.7332882962183,0.0234688698393074,0.1275,12.75,6,76.3726023055503,0.696999637716958,8.25,5.14418141982135,0,-1.25280206650496,-1.30905365943909,0.0849049804483871
+4664,84343,444797.952,84443,444697.952,63,46,11.25,0.01125,3.67045488513096,0.175714285714286,15.7753749003888,0.0258223447348064,0.14,14,6,80.3853170934931,0.72428674178854,10.5,4.17013226236616,0,-1.10121024648348,-1.19478869438171,0.167402173787869
+4665,84343,444697.952,84443,444597.952,64,46,43.5,0.145,11.5211387470794,0.299870045484081,19.4280904158206,0.0295990999866081,0.325,32.5,3,93.905298411619,0.74996093139553,29.25,1.6565795311561,0,-0.733885649591684,-0.96237325668335,0.241563349560201
+4666,84343,444597.952,84443,444497.952,65,46,56.25,0.140625,10.3135410029937,0.331039755351682,16.5276564240131,0.0265382736380775,0.2525,25.25,7,79.7514601478503,0.630444021508158,6.5,1.13331298072739,0,-0.407217882573605,-0.509915411472321,0.14913756654464
+4667,84343,444497.952,84443,444397.952,66,46,40,0.1,8.10671868147231,0.319078947368421,10.2950849718747,0.0152188919084711,0.0925,9.25,4,75.8730734294058,0.747098405816737,6,1.59843609784101,0,-0.42040823896726,-0.520448386669159,0.137299459477623
+4668,84343,444397.952,84443,444297.952,67,46,30.25,0.0504166666666667,7.75173097900278,0.266152263374486,11.720412585205,0.00602454821997526,0.055,5.5,6,53.371361802444,0.533146591970121,2.25,4.16467163779519,0,-0.795373659580946,-1.10728406906128,0.303124095824189
+4669,84343,444297.952,84443,444197.952,68,46,11.75,0.0167857142857143,5.29828272506418,0.285026455026455,22.683289636953,0.00852660097602893,0.035,3.5,4,49.2807863341098,0.533678756476684,1.25,3.21428571428571,0,-1.2566272119681,-1.41195499897003,0.198471320870008
+4670,84343,444197.952,84443,444097.952,69,46,14.25,0.0129545454545455,3.46403444005185,0.139366639366639,15.4049702551136,0.0144811419099096,0.0475,4.75,4,58.1941823606998,0.601773916191511,2,3.37590187474301,0,-1.38742855936289,-1.44218373298645,0.0815164001068236
+4671,84343,444097.952,84443,443997.952,70,46,44,0.22,20.7303308401635,0.604166666666667,29.1547594742265,0.0173595065998234,0.2475,24.75,3,91.7164165982093,0.932808242188958,23.25,2.58180277275317,0,-1.33964147170385,-1.48872590065002,0.159516740570822
+4672,84343,443997.952,84443,443897.952,71,46,73.25,0.36625,17.0906484585586,0.430079908675799,14.142135623731,0.113236372754909,0.96,96,1,99.8914698623176,0.793956043956045,96,1.87705045938492,0,-1.32921278476715,-1.52329349517822,0.189074338626382
+4673,84343,443897.952,84443,443797.952,72,46,85.5,0.4275,18.8146815509599,0.412512218963832,15.8113883008419,0.0920586998539511,0.77,77,3,96.7616752412561,0.820089955022489,68.75,0.574906064318372,0,-1.377887626489,-1.62906324863434,0.242864669041177
+4674,84343,443797.952,84443,443697.952,73,46,65,0.216666666666667,20.8596264409847,0.808295603110943,12.67591879244,0.0969121895995522,0.705,70.5,2,97.399783895795,0.750559641829229,59.75,1.67984506593528,0,-1.39911146461964,-1.71764302253723,0.359105689327121
+4675,84343,443697.952,84443,443597.952,74,46,68.25,0.2275,13.191663097893,0.304526748971193,11.937129433614,0.0596694186555396,0.5525,55.25,2,96.1358785914631,0.766773336226067,43.25,2.01679039864519,0,-1.66125066081683,-1.84825217723846,0.29027555880161
+4676,84343,443597.952,84443,443497.952,75,46,75,0.75,35.1222324119312,0.883888888888889,NA,0.0616081398793904,0.61,61,1,98.5243747403739,0.848178137651822,61,1.80883454494789,0,-1.85515820980072,-1.9191882610321,0.111599933421567
+4677,84343,443497.952,84443,443397.952,76,46,95,0.95,38.8963810819941,0.900438596491228,NA,0.0420489358644772,0.4625,46.25,2,95.3290412205599,0.842241262069903,38,0.0810810810810811,0,-1.98493126034737,-2.04550671577454,0.112674851199512
+4678,84343,443397.952,84443,443297.952,77,46,72,0.36,24.6861875965564,0.812046745303626,10,0.0412647839527926,0.415,41.5,3,91.0871132043551,0.759789955868387,18.25,1.43544741710985,0,-2.08252837260564,-2.21471691131592,0.167557805678403
+4679,84343,443297.952,84443,443197.952,78,46,65.25,0.2175,13.1502812523651,0.329226113272806,10.3934466291663,0.0134289177331902,0.2025,20.25,2,91.7210080338381,0.851967955416231,18.75,0.544964637285397,0,-2.13491749763489,-2.21294403076172,0.170646475444353
+4680,84343,443197.952,84443,443097.952,79,46,56.25,0.28125,19.711908660324,0.501126126126126,10,0.0182814421975854,0.3625,36.25,1,96.5215284364484,0.928967813540511,36.25,0.862068965517241,0,-2.06362225612005,-2.14976406097412,0.199213073630288
+4681,84343,443097.952,84443,442997.952,80,46,82,0.41,17.4443916248878,0.452344546381244,15,0.0272010194332324,0.4025,40.25,2,94.4246384651125,0.915187153680878,34.75,0.031055900621118,0,-2.11357241868973,-2.33314251899719,0.246061125093186
+4682,84343,442997.952,84443,442897.952,81,46,37.25,0.0620833333333333,8.18426041206426,0.421403298521943,10,0.00324963703562389,0.245,24.5,3,89.8136925399751,0.887116195063215,19.75,6.43100771612051,0,-2.25318239132563,-2.35879826545715,0.250288166794511
+4683,84343,442897.952,84443,442797.952,82,46,32.5,0.108333333333333,13.2846989367248,0.426078971533517,10.3934466291663,-0.0452700962608469,0.0925,9.25,2,81.8165148167256,0.873549202908368,7,6.39540043392697,0,-2.26663616299629,-2.41048455238342,0.17934140469235
+4684,84343,442797.952,84443,442697.952,83,46,37.75,0.03775,4.63410489331431,0.20635698723934,12.2803116489183,-0.046104005412999,0.0025,0.25,1,0,NA,0.25,0,0,-2.38723403215408,-2.53427934646606,0.191938949946721
+4685,84343,442697.952,84443,442597.952,84,46,45.5,0.0505555555555556,7.28779687759556,0.288383710797504,11.0157928470812,0.0166545850793773,0.205,20.5,4,88.0763566853778,0.835176751247018,15.75,1.36672033914706,0,-2.70068842172623,-2.92825818061829,0.216921934492108
+4686,84343,442597.952,84443,442497.952,85,46,82.75,0.275833333333333,15.3565725490981,0.424479166666667,10.3934466291663,0.00856817742450403,0.14,14,3,82.9137506834997,0.784224406617118,7,0,0,-3.00527622302373,-3.14245390892029,0.146849650880505
+4687,84343,442497.952,84443,442397.952,86,46,35.5,0.0591666666666667,9.04335478924982,0.381308275058275,12.67591879244,-0.068950217483507,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,0.928543677696815,0,-3.04177930951118,-3.21685481071472,0.2286838920362
+4688,84343,442397.952,84443,442297.952,87,46,18.5,0.185,16.9000348691782,0.815315315315315,NA,-0.0722505901974307,0.0225,2.25,1,70.1754385964912,1,2.25,0,0,-3.12145922581355,-3.32461762428284,0.213667377784243
+4689,84343,442297.952,84443,442197.952,88,46,0,NA,NA,NA,NA,-0.0591705455802003,0,0,0,NA,NA,0,NA,NA,-3.35820673406124,-3.51119565963745,0.155929441771477
+4690,84343,442197.952,84443,442097.952,89,46,0,NA,NA,NA,NA,-0.0705997845414095,0,0,0,NA,NA,0,NA,NA,-3.49567327896754,-3.57777047157288,0.0981260800768791
+4691,84343,442097.952,84443,441997.952,90,46,0,NA,NA,NA,NA,-0.0120126366349018,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,220.434921264648,203.531326293945,-3.54807887474696,-3.6016252040863,0.0639869436370069
+4692,84343,441997.952,84443,441897.952,91,46,0,NA,NA,NA,NA,-0.00339302349428181,0.035,3.5,2,66.4957355443448,0.740932642487047,2.5,169.452151707241,150.416091918945,-3.55516466498375,-3.59868001937866,0.033947768004035
+4693,84343,441897.952,84443,441797.952,92,46,0,NA,NA,NA,NA,0.0227074835730548,0.075,7.5,3,75.1503979967916,0.735245449531164,5.25,35.953413772583,14.1421356201172,-3.52429882685343,-3.54655599594116,0.0257927495584058
+4694,84343,441797.952,84443,441697.952,93,46,0.5,0.0025,0,0,11.1803398874989,-0.062805355362143,0,0,0,NA,NA,0,NA,NA,-3.51843491196632,-3.54813051223755,0.0271633895047274
+4695,84343,441697.952,84443,441597.952,94,46,0,NA,NA,NA,NA,-0.017074271978272,0,0,0,NA,NA,0,NA,NA,-3.49821452299754,-3.52848744392395,0.0312529994397628
+4696,84343,441597.952,84443,441497.952,95,46,0,NA,NA,NA,NA,-0.0091314013389092,0.065,6.5,2,76.5078419501691,0.843485065866701,4.25,102.218149625338,61.0327758789062,-3.4628749191761,-3.50285720825195,0.0346341026349249
+4697,84343,441497.952,84443,441397.952,96,46,4,0.02,8.80185330379333,0.272727272727273,11.1803398874989,-0.00125064282317908,0.1025,10.25,3,80.7197157637104,0.79007710629365,7.5,23.3612075433498,0,-3.43937973181407,-3.46805548667908,0.0273406019727532
+4698,84343,441397.952,84443,441297.952,97,46,1.25,0.0125,6.77089244761518,0.233333333333333,NA,0.0241691496143176,0.1725,17.25,2,91.5727230142321,0.910114603880053,17,56.9616651120393,10,-3.46724440157413,-3.49532318115234,0.0344086049335514
+4699,84343,441297.952,84443,441197.952,98,46,0,NA,NA,NA,NA,0.00968804847458841,0.0675,6.75,1,85.0052537126447,0.77554710393416,6.75,113.424112955729,100.124923706055,-3.50822615623474,-3.52968049049377,0.0201779979228564
+4700,84343,441197.952,84443,441097.952,99,46,0,NA,NA,NA,NA,0.0150722387268252,0.02,2,2,55.2425944039245,0.693877551020408,1.5,94.0576982498169,35,-3.49586367607117,-3.53487610816956,0.0390264845293441
+4701,84443,451097.952,84543,450997.952,0,47,6.75,0.0135,4.51565969358336,0.220555555555556,18.8752601924324,-0.0145659823184178,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0,-2.305857790841,-2.69385099411011,0.719610254037935
+4702,84443,450997.952,84543,450897.952,1,47,0,NA,NA,NA,NA,-0.0167483145330334,0,0,0,NA,NA,0,NA,NA,-2.38484109441439,-2.75924611091614,0.684849977717869
+4703,84443,450897.952,84543,450797.952,2,47,0,NA,NA,NA,NA,-0.0110196898152822,0,0,0,NA,NA,0,NA,NA,-2.45763251516554,-2.93433594703674,0.658307154567495
+4704,84443,450797.952,84543,450697.952,3,47,26,0.13,16.0891046669493,0.479308390022676,39.0512483795333,-0.0136568147724756,0,0,0,NA,NA,0,NA,NA,-2.94663800795873,-3.45024561882019,0.689564180798429
+4705,84443,450697.952,84543,450597.952,4,47,60,0.2,17.3655505811708,0.504242536851232,15.4373425415939,-0.0256473673381697,0,0,0,NA,NA,0,NA,NA,-3.50235467486911,-3.68005561828613,0.308492576645449
+4706,84443,450597.952,84543,450497.952,5,47,22.75,0.0379166666666667,6.30183963866922,0.252101661779081,16.599383145374,0.00545339644060732,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,1.47058823529412,0,-3.73277080059052,-3.76691889762878,0.0749245870012662
+4707,84443,450497.952,84543,450397.952,6,47,8.75,0.0109375,3.30317777087325,0.17609126984127,15.6884484628544,0.00632970951185172,0.015,1.5,1,62.2896536353828,0.564902102973169,1.5,23.8015594482422,18.0277557373047,-3.72472439871894,-3.76282238960266,0.0647372896069706
+4708,84443,450397.952,84543,450297.952,7,47,24.75,0.04125,11.2213181374308,0.28963529856387,15.9945710889483,-0.00764702687973113,0,0,0,NA,NA,0,NA,NA,-3.60918033123016,-3.67771911621094,0.0731979390937472
+4709,84443,450297.952,84543,450197.952,8,47,6,0.015,5.6967050620496,0.200694444444444,17.9645386145141,-0.00767400248032573,0,0,0,NA,NA,0,NA,NA,-3.49253106117249,-3.53909254074097,0.0583667207744502
+4710,84443,450197.952,84543,450097.952,9,47,3,0.00428571428571429,1.83446599831195,0.0873015873015873,17.6928403780567,7.76854730156629e-05,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-3.4889792866177,-3.52439260482788,0.0590206195688232
+4711,84443,450097.952,84543,449997.952,10,47,11,0.0366666666666667,6.68238931643767,0.23015873015873,35.6809562365139,0.0128562944494843,0.0275,2.75,3,51.932222811463,0.588688946015424,1.25,15.642392245206,0,-3.63008838891983,-3.72644639015198,0.0955894217109659
+4712,84443,449997.952,84543,449897.952,11,47,36,0.0514285714285714,6.27160121354391,0.193642072213501,15.3607472943398,-0.0065656824205962,0.0125,1.25,1,58.1880425789518,1,1.25,29.9619979858398,25,-3.73764226171705,-3.83711361885071,0.148264650657158
+4713,84443,449897.952,84543,449797.952,12,47,41.75,0.0835,15.6981069512679,0.418701843881184,13.7345414799559,0.001666294344177,0.1,10,2,85.906953061,0.767827529021559,9.25,1.30177669525146,0,-3.75161749124527,-3.9350962638855,0.307717009868514
+4714,84443,449797.952,84543,449697.952,13,47,26,0.0325,7.94251279961714,0.29784266848816,13.3183313074943,0.00416799777229244,0.0825,8.25,4,70.68025552943,0.717428600262388,4.25,4.93078844475024,0,-3.83381991916233,-3.98042273521423,0.315291260256768
+4715,84443,449697.952,84543,449597.952,14,47,42.5,0.0708333333333333,11.7410295043823,0.411044973544974,12.1676051329096,0.0201694697628409,0.235,23.5,4,89.261837105346,0.782135076252723,18.5,4.03242902552828,0,-3.91434649626414,-4.02452659606934,0.219667164348834
+4716,84443,449597.952,84543,449497.952,15,47,9,0.045,12.4014759719789,0.358585858585859,14.142135623731,-0.0135478668685028,0,0,0,NA,NA,0,NA,NA,-4.01879294713338,-4.07472705841064,0.11265277365387
+4717,84443,449497.952,84543,449397.952,16,47,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.0116087280937427,0,0,0,NA,NA,0,NA,NA,-3.95474205414454,-4.06864452362061,0.182675021223573
+4718,84443,449397.952,84543,449297.952,17,47,21,0.035,8.25119981396182,0.136507936507936,11.9986213647235,-0.0100867353866852,0.0375,3.75,2,68.2820249404777,0.716646989374262,2.75,4.04299672444661,0,-3.590000655916,-3.87589144706726,0.394117692848799
+4719,84443,449297.952,84543,449197.952,18,47,23.75,0.0475,9.94789235510435,0.351203277009729,18.5962673580625,0.00761366064234608,0.1225,12.25,4,75.6719378604741,0.687966354633021,4.5,2.64213491945851,0,-3.05487062533697,-3.49393558502197,0.365228988483426
+4720,84443,449197.952,84543,449097.952,19,47,35.5,0.118333333333333,14.6820425729788,0.474469940955448,16.4288346035568,0.0338606977070049,0.3325,33.25,3,90.2508198789428,0.808091125762219,17,1.99772404548817,0,-2.46421723895603,-2.66357588768005,0.391461025056479
+4721,84443,449097.952,84543,448997.952,20,47,52,0.13,16.6047241623365,0.46995709378887,10.5901699437495,0.00680097933707202,0.1425,14.25,4,80.2438736415218,0.702504908669007,6,0.738088908948396,0,-1.83539904488458,-2.19895148277283,0.503775580767949
+4722,84443,448997.952,84543,448897.952,21,47,86.5,0.865,38.7954349042731,0.855009633911368,NA,-0.0241437736291664,0.085,8.5,3,74.2049035511315,0.765807962529274,4.5,0.588235294117647,0,-0.262598005433877,-1.39627122879028,1.70078899850819
+4723,84443,448897.952,84543,448797.952,22,47,63,0.1575,13.7905722797044,0.508652518978606,12.7950849718747,-0.00297873901648927,0.165,16.5,2,88.5155935840078,0.875032543608435,13.75,0.757575757575758,0,1.09739441672961,0.236151725053787,2.61090062945787
+4724,84443,448797.952,84543,448697.952,23,47,45.75,0.0915,9.1542216084493,0.430858585858586,15.1231056256177,-0.00943305449016933,0.0325,3.25,3,58.1653013090477,0.712891185759403,1.75,2.46700521615835,0,0.692934118211269,0.390734285116196,0.519623050438219
+4725,84443,448697.952,84543,448597.952,24,47,55.25,0.184166666666667,19.4333641917269,0.499338624338624,10.3934466291663,0.0130998189941693,0.105,10.5,5,69.317724204076,0.685262412463609,4.25,0.714285714285714,0,0.805503057108985,0.690827488899231,0.197324207933827
+4726,84443,448597.952,84543,448497.952,25,47,71.5,0.143,7.76467831691022,0.248924731182796,10.7082039324994,0.0342634143485702,0.2775,27.75,4,87.6159520874349,0.785467128027682,15.25,1.99611299531954,0,1.2393936663866,0.985229074954987,0.239134294621421
+4727,84443,448497.952,84543,448397.952,26,47,35.5,0.071,9.32198110440258,0.439180418041804,21.9863263557724,0.0282489159448778,0.245,24.5,6,83.1112666676721,0.781757977122216,10.25,2.85175784753293,0,1.29889833927155,1.17782080173492,0.15096989222693
+4728,84443,448397.952,84543,448297.952,27,47,24.5,0.0222727272727273,3.06554569680763,0.105567725447244,11.7946221923324,0.00512410587602062,0.0725,7.25,1,85.7162801918893,0.862361644778345,7.25,2.14038164862271,0,1.23554416497548,1.12614762783051,0.194767743594638
+4729,84443,448297.952,84543,448197.952,28,47,17.25,0.0156818181818182,3.8477428016148,0.185748462064252,16.7306571506548,0.0324881716214986,0.32,32,1,95.959121300177,0.936884625094673,32,5.48183287680149,0,1.23141351011064,1.12580120563507,0.175302274976997
+4730,84443,448197.952,84543,448097.952,29,47,28.75,0.0575,11.4799230028799,0.317601887601888,18.734541479956,0.0161840736007798,0.1025,10.25,3,77.0991764134538,0.806225021194138,4.75,1.75783092219655,0,1.44407326976458,1.25805330276489,0.220361958425793
+4731,84443,448097.952,84543,447997.952,30,47,10.5,0.015,3.79994044807205,0.261309523809524,22.7608675349106,0.0149842088959213,0.065,6.5,1,84.6193541959806,0.895656710577801,6.5,4.18832148038424,0,1.78518754906125,1.67858374118805,0.219696545231357
+4732,84443,447997.952,84543,447897.952,31,47,8.25,0.00589285714285714,2.18747256611891,0.152777777777778,14.9839131352555,0.00991770062518754,0.1075,10.75,3,83.3029886588808,0.859943977591036,9,6.02618328360624,0,1.97469100687239,1.79939746856689,0.25926329839675
+4733,84443,447897.952,84543,447797.952,32,47,40.75,0.0815,7.76872391698084,0.298057553956835,14.567196007456,0.0362340829213281,0.305,30.5,2,94.9640272503197,0.895829942380937,30,1.58694054650479,0,2.13860825697581,1.91680514812469,0.323425338145062
+4734,84443,447797.952,84543,447697.952,33,47,4.5,0.009,2.9852103373475,0.205555555555556,30.7491839320576,0.0279502467921702,0.1575,15.75,6,79.7310457646264,0.676288103587807,9.25,22.8582792130728,0,2.461232052909,2.20686388015747,0.332610129260884
+4735,84443,447697.952,84543,447597.952,34,47,1.25,0.00416666666666667,2.35702260395516,0.0555555555555556,36.433238028127,0.0171080898257696,0.1225,12.25,2,86.9113564173292,0.850766517433184,10.75,29.7732348928646,5,2.70784705877304,2.51985549926758,0.203230947893494
+4736,84443,447597.952,84543,447497.952,35,47,4.75,0.0095,2.18279497929183,0.0888888888888889,13.4164078649987,0.0199743098064937,0.1425,14.25,2,88.6147166761258,0.857202356161123,13,30.7685811561451,0,2.87065360281203,2.80760836601257,0.129707933197771
+4737,84443,447497.952,84543,447397.952,36,47,10.25,0.025625,5.47977820199056,0.410493827160494,20.2028470752105,0.00904151352099689,0.025,2.5,3,47.9024210673189,0.526627218934911,1,5.23935432434082,0,2.99402054150899,2.9613471031189,0.0958026261103729
+4738,84443,447397.952,84543,447297.952,37,47,7.25,0.0120833333333333,3.08751081967079,0.141414141414141,22.694681039705,-0.00427936925781069,0.0325,3.25,1,76.0684107249879,0.770312948607522,3.25,23.0830968710092,11.1803398132324,2.85459804534912,2.66252255439758,0.271242925330811
+4739,84443,447297.952,84543,447197.952,38,47,6.25,0.00892857142857143,2.61043197655306,0.168681318681319,19.1102187984236,0.000203563566287812,0.03,3,3,53.8251783921332,0.636143117040631,1.25,12.4224150975545,5,2.42565610011419,2.09914469718933,0.388684619827866
+4740,84443,447197.952,84543,447097.952,39,47,12,0.024,3.20203196970424,0.186046511627907,28.329905588795,0.014880894529224,0.095,9.5,5,72.3882656670693,0.631675874769797,5.75,8.05352406752737,0,2.07131659984589,1.90475344657898,0.314330956672504
+4741,84443,447097.952,84543,446997.952,40,47,3,0.006,1.11212851128487,0.104166666666667,26.8578082766144,0.010293521075364,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,20.4084008534749,15,1.67481954892476,1.30484616756439,0.400945117980298
+4742,84443,446997.952,84543,446897.952,41,47,2.5,0.005,1.7329765679125,0.0916666666666667,22.4852813742386,0.0147976873668995,0.0575,5.75,4,63.336672152895,0.705275567344533,2.25,13.4716247890307,0,0.931128746933407,0.582472324371338,0.453498768904278
+4743,84443,446897.952,84543,446797.952,42,47,3.5,0.0116666666666667,3.23598373481662,0.318055555555556,30.5297017721273,0.00278985121547521,0.04,4,2,74.2500702543702,0.826388888888889,3.75,4.19811820983887,0,0.332897599466378,0,0.43697427153716
+4744,84443,446797.952,84543,446697.952,43,47,1.75,0.00875,4.39879695181984,0.216666666666667,25,0.00641455896142475,0.015,1.5,2,46.1375166841518,0.564902102973169,1,16.8370234171549,0,-0.0895381806832221,-0.255231529474258,0.179758203586186
+4745,84443,446697.952,84543,446597.952,44,47,6.75,0.016875,5.22124731014482,0.393055555555556,21.7591473132937,0.00453419397010293,0.0025,0.25,1,0,NA,0.25,5,5,-0.192798821462525,-0.356401532888412,0.222436719018688
+4746,84443,446597.952,84543,446497.952,45,47,11.5,0.0191666666666667,4.01447330031244,0.282615147198481,18.9478143369568,0.00515660080972566,0.015,1.5,3,35.0877192982456,0.564902102973169,1,25.7086162567139,0,-0.291448353479306,-0.438865631818771,0.244283297801751
+4747,84443,446497.952,84543,446397.952,46,47,6.75,0.03375,7.94547266511357,0.288461538461538,35.3553390593274,-0.0171592345373574,0.01,1,2,30.8308651382582,0.494949494949495,0.5,14.2236728668213,7.07106781005859,-0.349983644154337,-0.476769834756851,0.248161063535418
+4748,84443,446397.952,84543,446297.952,47,47,8.75,0.00972222222222222,2.15591964114577,0.12037037037037,16.027966420128,0.00776018405843729,0.0325,3.25,4,49.9379082282791,0.483204134366925,1.25,6.39248877305251,0,-0.372411405046781,-0.501610457897186,0.267290453811558
+4749,84443,446297.952,84543,446197.952,48,47,0.5,0.005,2.5,0.166666666666667,NA,-0.00420261147907695,0.01,1,1,52.6315789473684,0.747474747474748,1,5,5,-0.43168431520462,-0.529005110263824,0.198493182380922
+4750,84443,446197.952,84543,446097.952,49,47,11.25,0.0375,7.61129516327141,0.330555555555556,25.4041092821143,-0.02542271570499,0.0025,0.25,1,0,NA,0.25,0,0,-0.460015758872032,-0.531488060951233,0.151957132672008
+4751,84443,446097.952,84543,445997.952,50,47,25.5,0.1275,16.1368138088593,0.495791245791246,30.4138126514911,-0.0152836936711537,0.02,2,2,53.5230890372948,0.591836734693878,1.25,1.25,0,-0.416683034764396,-0.50275856256485,0.161101513867295
+4752,84443,445997.952,84543,445897.952,51,47,42.25,0.105625,10.8875767063115,0.263211382113821,13.4958640941704,0.0124510567071047,0.145,14.5,3,86.1928433701907,0.801169590643275,12,1.32881151396653,0,-0.395726017653942,-0.536644339561462,0.229346387801175
+4753,84443,445897.952,84543,445797.952,52,47,5,0.0166666666666667,5.00757179920266,0.277160493827161,33.4877255113548,0.0136165271434857,0.08,8,3,75.6362748807133,0.770066889632107,5.25,12.3922607302666,0,-0.618313597308265,-0.870947360992432,0.337566223713455
+4754,84443,445797.952,84543,445697.952,53,47,34.5,0.08625,10.5479755837458,0.403326023391813,17.5,0.0316613938628052,0.2225,22.25,3,88.9006326552902,0.708790875447431,13.25,9.22512238748958,0,-1.01573587954044,-1.21239900588989,0.247821570432254
+4755,84443,445697.952,84543,445597.952,54,47,34.75,0.0315909090909091,7.02129291298523,0.316337175895999,10.8837599590905,0.0241140229683515,0.285,28.5,5,85.4975948723792,0.789530857492022,15.25,2.77691703930236,0,-1.20521896415287,-1.28961801528931,0.144611621132668
+4756,84443,445597.952,84543,445497.952,55,47,40.25,0.0805,9.83579754033391,0.308140900195695,15.2426406871193,0.0274781448837166,0.18,18,5,82.8788650413539,0.721528711350106,11.75,2.21478626463148,0,-1.25561808215247,-1.29963541030884,0.0903586730471055
+4757,84443,445497.952,84543,445397.952,56,47,24,0.024,6.90789531046641,0.424897787397787,10.6180339887499,0.0217033316675952,0.1925,19.25,5,85.2121635482532,0.726825714806046,14,5.49396980582894,0,-1.29056791464488,-1.30753993988037,0.0502144846893877
+4758,84443,445397.952,84543,445297.952,57,47,26.5,0.0240909090909091,3.33376202048381,0.1243961352657,14.7890365214426,0.021717475428959,0.1575,15.75,4,83.2330848081871,0.719449689776099,10,1.40081599402049,0,-1.26123379336463,-1.30806362628937,0.108512264660878
+4759,84443,445297.952,84543,445197.952,58,47,24.5,0.0408333333333333,6.33786170693787,0.280405405405405,21.3384797497415,0.0213807725122388,0.165,16.5,5,81.6515864731918,0.677167404321791,8,4.02980948939468,0,-0.988106658061345,-1.22166764736176,0.322390761750036
+4760,84443,445197.952,84543,445097.952,59,47,46.75,0.0935,11.5593997224503,0.506943487689756,12.2360679774998,0.0584282287301721,0.555,55.5,2,97.9135598548881,0.886012050154698,55.25,2.11258986189559,0,-0.498319158951441,-0.681631743907928,0.33956299764024
+4761,84443,445097.952,84543,444997.952,60,47,55.25,0.138125,17.5835199731864,0.57724358974359,12.5,0.0187460269352778,0.2725,27.25,1,95.1807759450405,0.90929230554538,27.25,1.29553397642363,0,-0.288587179034948,-0.524102330207825,0.265591273228087
+4762,84443,444997.952,84543,444897.952,61,47,22,0.0244444444444444,7.15728729395262,0.309269372602706,10,0.00729067898938411,0.11,11,4,76.2985192548679,0.681141815973277,5.5,4.62009707364169,0,-0.706113470925225,-0.965130865573883,0.324899798722836
+4763,84443,444897.952,84543,444797.952,62,47,26.5,0.0265,6.43735889590313,0.342902369281046,14.7893427625836,0.0283142097026212,0.32,32,5,87.466927080496,0.690734662963898,14.75,5.04055237770081,0,-1.08371082941691,-1.19193863868713,0.165619798128997
+4764,84443,444797.952,84543,444697.952,63,47,49,0.0816666666666667,10.0346061660997,0.327846364883402,10.5901699437495,0.0451628371952393,0.4075,40.75,9,88.891106571738,0.639943741209564,22,3.09089038123382,0,-1.14624843332503,-1.17912662029266,0.0669753667077892
+4765,84443,444697.952,84543,444597.952,64,47,17,0.0130769230769231,3.70486729068204,0.249804952881876,14.0432744958938,0.003470343519366,0.02,2,2,52.9470541148176,0.693877551020408,1.25,5.81285190582275,0,-0.943488890926043,-1.11443901062012,0.252388577559016
+4766,84443,444597.952,84543,444497.952,65,47,37.25,0.124166666666667,14.8918053955238,0.518523567187689,11.6666666666667,0.008850102191318,0.135,13.5,4,83.584993487523,0.738952079060227,9.75,3.01325960512514,0,-0.672676606310738,-0.904348254203796,0.3397088130601
+4767,84443,444497.952,84543,444397.952,66,47,32.5,0.040625,6.2559838528793,0.212957702020202,13.9378519248411,0.0158708836052028,0.1375,13.75,3,85.995813937085,0.780320366132723,11.25,1.20327890569513,0,-0.602908005317052,-0.812390148639679,0.301263890384607
+4768,84443,444397.952,84543,444297.952,67,47,36.5,0.0365,9.02473236046372,0.341599658346338,11.4352407963339,0.0210288773013417,0.1825,18.25,7,76.5248211756225,0.646406727828746,5.75,2.24852240575503,0,-0.844108983874321,-1.03342759609222,0.260778356650822
+4769,84443,444297.952,84543,444197.952,68,47,13,0.00928571428571429,2.85381133617334,0.189879460556152,13.8927170364505,0.00890935498689942,0.0025,0.25,1,0,NA,0.25,0,0,-1.19767781098684,-1.29144787788391,0.178364179901616
+4770,84443,444197.952,84543,444097.952,69,47,17.5,0.025,6.31611120723365,0.20984570984571,21.1449071909549,0.00782877772800475,0.025,2.5,3,50.582681473338,0.684418145956607,1.5,3.20710678100586,0,-1.45157977938652,-1.5827602148056,0.135883911458081
+4771,84443,444097.952,84543,443997.952,70,47,35.5,0.08875,12.3937575728061,0.578706414259693,12.5,0.0771472108910166,0.4125,41.25,1,97.0684321667208,0.966405375139978,41.25,5.26232104445949,0,-1.66156995296478,-1.78744494915009,0.181127986238834
+4772,84443,443997.952,84543,443897.952,71,47,78.75,0.7875,36.2889275399675,0.851851851851852,NA,0.262117945789359,0.915,91.5,1,99.7609644895861,0.779305661658603,91.5,1.49280491813284,0,-1.75724518299103,-1.96970796585083,0.241008923209135
+4773,84443,443897.952,84543,443797.952,72,47,76.5,0.3825,26.3927095107859,0.84665365575019,15.8113883008419,0.0757532567598173,0.69,69,2,96.8499427257815,0.701083572051314,46.25,1.49275572403618,0,-1.72490531868405,-1.91560590267181,0.222931550574376
+4774,84443,443797.952,84543,443697.952,73,47,81,0.405,29.0616923934273,0.773662721730255,15,0.0518038514783348,0.5075,50.75,3,92.9536281530777,0.833039356932233,29.5,2.137582374911,0,-1.7691788772742,-1.83243846893311,0.0855212571907603
+4775,84443,443697.952,84543,443597.952,74,47,94.5,0.945,37.920668919976,0.897266313932981,NA,0.0636786176543683,0.59,59,2,96.3532523445066,0.823018638349649,49.75,0.432504524618892,0,-1.79997754096985,-1.88613533973694,0.115358289055645
+4776,84443,443597.952,84543,443497.952,75,47,98.75,0.9875,37.9358602288308,0.929957805907173,NA,0.0351228396718398,0.37,37,5,91.2155122996115,0.859427165700228,31,0.135135135135135,0,-1.92379236221313,-1.99146544933319,0.0566006357879056
+4777,84443,443497.952,84543,443397.952,76,47,89,0.89,38.5438883735631,0.878277153558052,NA,0.0477466518174333,0.4975,49.75,3,93.2277875486572,0.784276449729671,27.25,0.150753768844221,0,-2.07836255762312,-2.17170286178589,0.163111301752437
+4778,84443,443397.952,84543,443297.952,77,47,86.75,0.289166666666667,14.4069992741438,0.495823910749284,13.4628120507726,0.0590132137834462,0.665,66.5,2,97.4051670367959,0.904286184308916,63.25,0.128353893308711,0,-2.29976219601101,-2.42730712890625,0.229740184162635
+4779,84443,443297.952,84543,443197.952,78,47,88.25,0.44125,23.6538915629612,0.82643756490135,11.1803398874989,0.0652110584371258,0.735,73.5,1,99.1240858576863,0.836227779862841,73.5,0.405245359252099,0,-2.47788059711456,-2.58831214904785,0.188476773948815
+4780,84443,443197.952,84543,443097.952,79,47,65.5,0.655,36.2179062671125,0.770356234096692,NA,0.0487389751880983,0.57,57,2,96.7483895051248,0.759233926128591,49.75,1.33019417210629,0,-2.42745754453871,-2.5814003944397,0.265512516443977
+4781,84443,443097.952,84543,442997.952,80,47,35.75,0.17875,19.5196367221067,0.704554865424431,15.8113883008419,0.00248503685674223,0.1425,14.25,4,82.8272680681212,0.845302552507884,11,3.07454949094538,0,-2.50812657674154,-3,0.434611509445408
+4782,84443,442997.952,84543,442897.952,81,47,18.75,0.1875,27.3581834295822,0.584444444444444,NA,0.105147612080327,0.8325,83.25,1,99.4947723752506,0.724746695773913,83.25,15.9877422722252,0,-2.65863423877292,-2.89876198768616,0.274873045310042
+4783,84443,442897.952,84543,442797.952,82,47,0,NA,NA,NA,NA,-0.0139610784964862,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,38.164909362793,30.4138145446777,-2.65390612681707,-2.83281326293945,0.230399115734479
+4784,84443,442797.952,84543,442697.952,83,47,6.75,0.0225,6.87477100843212,0.412037037037037,35.723301886761,-0.0261477128664865,0,0,0,NA,NA,0,NA,NA,-2.75250713030497,-2.90142583847046,0.24836769841084
+4785,84443,442697.952,84543,442597.952,84,47,26.25,0.13125,14.9839603074736,0.521885521885522,10,-0.041987764427613,0.0975,9.75,1,88.4075627573592,0.897720008523333,9.75,0.641025641025641,0,-2.83561635017395,-2.95178055763245,0.194479816499199
+4786,84443,442597.952,84543,442497.952,85,47,41.75,0.0596428571428571,4.60761412365595,0.131696428571429,11.3887656499994,-0.00453095489175212,0.225,22.5,3,88.6988787238119,0.871769184532158,14.75,4.84812728034125,0,-2.88106555408902,-2.96243190765381,0.149691442805391
+4787,84443,442497.952,84543,442397.952,86,47,51.25,0.0732142857142857,5.98553645303295,0.267118372171564,13.5854131587875,-0.0782090622908436,0.025,2.5,4,42.102215676649,0.526627218934911,1.25,7.85738830566406,5,-2.62571044762929,-2.76081466674805,0.226807646416071
+4788,84443,442397.952,84543,442297.952,87,47,28.5,0.07125,6.11080919302406,0.176801801801802,10.5901699437495,-0.105747848339306,0,0,0,NA,NA,0,NA,NA,-2.83760902616713,-3.0055205821991,0.2526021308938
+4789,84443,442297.952,84543,442197.952,88,47,1.25,0.0025,0,0,11.3005630797458,-0.102776920748875,0,0,0,NA,NA,0,NA,NA,-3.17284484704336,-3.29724383354187,0.150464101174127
+4790,84443,442197.952,84543,442097.952,89,47,0,NA,NA,NA,NA,-0.0675915152952075,0,0,0,NA,NA,0,NA,NA,-3.33915111753676,-3.40937042236328,0.0942950337410586
+4791,84443,442097.952,84543,441997.952,90,47,0,NA,NA,NA,NA,-0.0689169759047218,0,0,0,NA,NA,0,NA,NA,-3.42221389876472,-3.49550580978394,0.10473967512443
+4792,84443,441997.952,84543,441897.952,91,47,0,NA,NA,NA,NA,-0.0544418767490424,0,0,0,NA,NA,0,NA,NA,-3.49995243549347,-3.54483890533447,0.076078592608607
+4793,84443,441897.952,84543,441797.952,92,47,0,NA,NA,NA,NA,-0.0461586813588838,0,0,0,NA,NA,0,NA,NA,-3.53832496537103,-3.55149149894714,0.0334709529083801
+4794,84443,441797.952,84543,441697.952,93,47,0,NA,NA,NA,NA,-0.077478357203363,0,0,0,NA,NA,0,NA,NA,-3.53672450780869,-3.55489420890808,0.0298502237874444
+4795,84443,441697.952,84543,441597.952,94,47,0,NA,NA,NA,NA,-0.14520407574164,0,0,0,NA,NA,0,NA,NA,-3.50523567199707,-3.52989387512207,0.0287050376971227
+4796,84443,441597.952,84543,441497.952,95,47,0,NA,NA,NA,NA,-0.118580737555967,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,63.4396438598633,53.8516464233398,-3.49382825692495,-3.50887179374695,0.0161096807390422
+4797,84443,441497.952,84543,441397.952,96,47,3,0.00333333333333333,0.833333333333333,0.0555555555555556,12.0239892374517,-0.0715850360972036,0.0325,3.25,1,76.0684107249879,1,3.25,44.7484345069298,36.0555114746094,-3.50204920768738,-3.51837420463562,0.0295904388535248
+4798,84443,441397.952,84543,441297.952,97,47,0,NA,NA,NA,NA,0.00724247492863469,0.2225,22.25,1,94.1052854736172,0.93528686121054,22.25,81.8186111450195,47.4341621398926,-3.51451728741328,-3.5239577293396,0.0239017711469794
+4799,84443,441297.952,84543,441197.952,98,47,0.25,0.0025,0,0,NA,0.0371615347744046,0.505,50.5,1,97.8568679502074,0.92996632996633,50.5,75.105143159923,40.3112869262695,-3.51879241731432,-3.52991771697998,0.0229837855809785
+4800,84443,441197.952,84543,441097.952,99,47,1.84210526315789,0.00583333333333333,2.22222222222222,0.148148148148148,15.8113883008419,0.0632986270598485,0.5875,58.75,1,98.3965465994375,0.889556153793056,58.75,32.9283681585434,0,-3.52124096949895,-3.53809881210327,0.0288069736627577
+4801,84543,451097.952,84643,450997.952,0,48,3,0.006,2.21607259895045,0.0880952380952381,27.2424655692686,-0.00170517791139673,0,0,0,NA,NA,0,NA,NA,-3.2926536599795,-3.57600355148315,0.391554634838385
+4802,84543,450997.952,84643,450897.952,1,48,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,75.9846124216764,-0.00622405140196248,0,0,0,NA,NA,0,NA,NA,-3.30573034286499,-3.66048145294189,0.410554419052446
+4803,84543,450897.952,84643,450797.952,2,48,29.75,0.0495833333333333,5.33561830689819,0.19040404040404,13.7112879373573,-0.0120113711187747,0,0,0,NA,NA,0,NA,NA,-3.49311606089274,-3.76757073402405,0.40531701253433
+4804,84543,450797.952,84643,450697.952,3,48,54.5,0.545,36.2983383893301,0.684250764525994,NA,-0.0312621521728124,0,0,0,NA,NA,0,NA,NA,-3.69824978709221,-3.82756161689758,0.228717228927793
+4805,84543,450697.952,84643,450597.952,4,48,16.25,0.0232142857142857,4.14039347709265,0.154938271604938,19.951385098654,-0.00836076504491871,0,0,0,NA,NA,0,NA,NA,-3.77216500043869,-3.81184411048889,0.0792259249226592
+4806,84543,450597.952,84643,450497.952,5,48,26.25,0.04375,9.73678356591449,0.251058201058201,13.8024738372518,0.000602676508297009,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,16.3470359075637,0,-3.68938001990318,-3.75860095024109,0.0900526498971848
+4807,84543,450497.952,84643,450397.952,6,48,17.75,0.0147916666666667,4.91777951082998,0.153935185185185,12.6557604975987,0.00607342793831776,0,0,0,NA,NA,0,NA,NA,-3.5817377169927,-3.68791389465332,0.0931070086068494
+4808,84543,450397.952,84643,450297.952,7,48,10.75,0.00895833333333333,2.43268314148622,0.115740740740741,15.7987044803229,0.00856981416800181,0.02,2,2,59.8245365374189,0.591836734693878,1.75,5.4105339050293,0,-3.58546063303947,-3.62163496017456,0.0527461146290353
+4809,84543,450297.952,84643,450197.952,8,48,20.5,0.0292857142857143,7.9819275779339,0.345929407386582,15.8299622646762,0.00618459873124891,0.015,1.5,4,20.9533576270945,0.274836838288615,0.5,13.0009384155273,5,-3.62778224547704,-3.71412110328674,0.0961688703890515
+4810,84543,450197.952,84643,450097.952,9,48,1.75,0.00583333333333333,3.1019093607503,0.175925925925926,38.9027734402106,0.00337559287323529,0.01,1,1,52.6315789473684,0.747474747474748,1,19.3532567024231,15.8113880157471,-3.63875232140223,-3.79135584831238,0.146622851079025
+4811,84543,450097.952,84643,449997.952,10,48,31,0.0442857142857143,6.02788650142622,0.208057665604835,17.8863709653237,0.0102212652858361,0.07,7,2,77.5009217169574,0.83273596176822,4,8.27151564189366,0,-3.75445671379566,-3.90806484222412,0.153708419070683
+4812,84543,449997.952,84643,449897.952,11,48,43.25,0.0480555555555556,9.7229122503208,0.310976785201591,12.8184789524951,0.00507893345696175,0.065,6.5,4,71.4949218597925,0.660884309377853,4.5,2.19504106961764,0,-3.91243074337641,-3.99566841125488,0.107811494970994
+4813,84543,449897.952,84643,449797.952,12,48,13.25,0.0165625,6.510203287647,0.184716802923325,12.8698943402538,0.002124899676528,0.0175,1.75,2,55.7829931777349,0.618320610687023,1.5,2.43872397286551,0,-4.00618788599968,-4.04863119125366,0.0634103821851838
+4814,84543,449797.952,84643,449697.952,13,48,14,0.035,12.0420937289247,0.302455357142857,11.3306188778075,0.0045220901456014,0.055,5.5,6,52.146327057223,0.502023031434796,1.25,4.29833793640137,0,-4.05760216712952,-4.09180307388306,0.0508359204642429
+4815,84543,449697.952,84643,449597.952,14,48,27,0.0192857142857143,4.52818562699755,0.186528822055138,12.6748821355321,0.0126679353731743,0.085,8.5,3,82.490748401098,0.687743950039032,7.5,4.69239145166734,0,-4.09297114610672,-4.12264442443848,0.0437027105412106
+4816,84543,449597.952,84643,449497.952,15,48,37.25,0.0465625,8.9221836145007,0.306292087542088,11.7008433448365,-0.0102734081798963,0.145,14.5,2,85.7296115226131,0.871345029239766,7.75,4.37441911368535,0,-4.11045543352763,-4.12360429763794,0.0264907758112668
+4817,84543,449497.952,84643,449397.952,16,48,23.25,0.03875,10.4542439446597,0.246861268047709,15.5046260628867,-0.0280776643534773,0.01,1,2,30.8308651382582,0.494949494949495,0.5,2.5,0,-4.06955057382584,-4.11215019226074,0.0728479942630162
+4818,84543,449397.952,84643,449297.952,17,48,8.5,0.010625,4.81550733371434,0.138888888888889,14.8277147705103,-0.00772672236604194,0,0,0,NA,NA,0,NA,NA,-3.89752926429113,-3.9972128868103,0.19303342748424
+4819,84543,449297.952,84643,449197.952,18,48,25.5,0.06375,12.1534411280403,0.492222596585804,18.9112377556149,-0.00117934350257428,0.085,8.5,4,72.7874143460285,0.726775956284153,3.75,1.38444317088408,0,-3.43999902904034,-3.73720693588257,0.395396380033565
+4820,84543,449197.952,84643,449097.952,19,48,29,0.0725,12.082153419829,0.386856368563686,30.7813335726508,0.00333282611776667,0.0725,7.25,3,75.7003326867018,0.793542467167517,5.5,2.00866922838935,0,-2.67334316174189,-3.14169597625732,0.508682218826976
+4821,84543,449097.952,84643,448997.952,20,48,42,0.21,22.2631165736589,0.56505376344086,44.7213595499958,0.0421497084297152,0.42,42,1,97.1419289493636,0.899888765294772,42,2.27547769319443,0,-1.9572097013394,-2.56240105628967,0.744281875092673
+4822,84543,448997.952,84643,448897.952,21,48,89.25,0.8925,37.2337351585063,0.88375350140056,NA,0.0649858571342338,0.715,71.5,2,98.6234684458713,0.810865453596817,70.5,0.546200011993622,0,1.36023965571076,-1.88102281093597,4.14683990379563
+4823,84543,448897.952,84643,448797.952,22,48,93.75,0.46875,19.7939866082918,0.541108132260947,10,0.0542703711906506,0.64,64,2,98.3196676444472,0.74537037037037,63.25,0.1171875,0,7.00973840554555,3.09718704223633,3.75105685014506
+4824,84543,448797.952,84643,448697.952,23,48,54,0.108,12.6338475574396,0.471258184988162,10,0.0227792903643376,0.2225,22.25,2,91.5619026442049,0.846306295375033,19.75,0.449438202247191,0,2.18070474639535,0.92301481962204,2.23380713261583
+4825,84543,448697.952,84643,448597.952,24,48,46.75,0.0935,7.87474139747161,0.284108527131783,10,-0.00512047740307025,0.035,3.5,1,77.1303955881658,1,3.5,3.51015254429408,0,0.933945417404175,0.66180020570755,0.343299099917636
+4826,84543,448597.952,84643,448497.952,25,48,77.25,0.7725,37.6217472476057,0.82740021574973,NA,0.0155589993448666,0.165,16.5,2,90.3983436907883,0.875032543608435,15.75,0.151515151515152,0,0.934296069666743,0.378030151128769,0.381527132280782
+4827,84543,448497.952,84643,448397.952,26,48,58.25,0.0832142857142857,8.53129080956073,0.345078703453088,10.3372399678568,0.0395419985670742,0.2725,27.25,6,83.4488607332329,0.734854431594188,13.5,1.07404649367026,0,0.869041572014491,0.523045003414154,0.391573986135365
+4828,84543,448397.952,84643,448297.952,27,48,32.75,0.0545833333333333,8.63350270029778,0.348951973951974,13.0901699437495,0.0495149770286298,0.4875,48.75,2,95.5416245676708,0.876027489556664,43.5,4.39736818166879,0,0.829728787764907,0.437817305326462,0.356052391810795
+4829,84543,448297.952,84643,448197.952,28,48,1.5,0.005,1.44980743992224,0.0972222222222222,23.3333333333333,0.0103464706558407,0.025,2.5,1,71.9760246298065,0.763313609467456,2.5,19.3174654006958,14.1421356201172,0.791503051916758,0.400041133165359,0.441460302780507
+4830,84543,448197.952,84643,448097.952,29,48,8.25,0.0117857142857143,3.48335807503141,0.165266106442577,18.7173547977109,0.00834647464859188,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,22.7669397989909,18.0277557373047,1.01069087162614,0.520378887653351,0.431426536220003
+4831,84543,448097.952,84643,447997.952,30,48,26,0.052,12.7427319375229,0.36357586512866,16.0153397218646,0.0151900019510163,0.0925,9.25,4,77.5416552251493,0.729034006232218,6.75,3.17368667190139,0,1.28053769965967,0.892704606056213,0.388233558575532
+4832,84543,447997.952,84643,447897.952,31,48,19.25,0.0275,5.82397133115026,0.301373882886488,14.2996988730732,-0.00580552227663702,0.035,3.5,3,60.5745129160863,0.740932642487047,2.5,3.51721136910575,0,1.45614329973857,1.1556248664856,0.31683874446646
+4833,84543,447897.952,84643,447797.952,32,48,7.5,0.0107142857142857,2.6952852865552,0.123582766439909,20.1447019903261,0.0199205931026245,0.0925,9.25,4,74.9647821066023,0.747098405816737,6,21.0745904252336,0,1.67422287911177,1.40164268016815,0.266932927843061
+4834,84543,447797.952,84643,447697.952,33,48,7.25,0.0103571428571429,3.2087427845414,0.235827664399093,16.2023132185197,0.018437731932172,0.0525,5.25,7,50.3818991896626,0.406332453825858,1.5,17.8759029933384,0,2.08098087708155,1.85416114330292,0.335884293708324
+4835,84543,447697.952,84643,447597.952,34,48,14,0.035,4.17172900860711,0.165880503144654,27.2628120948833,0.00422483438524978,0.0325,3.25,3,62.7191086127874,0.827734711455642,2.75,3.23623598538912,0,2.61172835528851,2.35939311981201,0.268055365348996
+4836,84543,447597.952,84643,447497.952,35,48,18.75,0.0133928571428571,3.86192938506779,0.278373015873016,12.5680297004409,0.0129285971173522,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0,2.99701712528865,2.87182092666626,0.22394514234027
+4837,84543,447497.952,84643,447397.952,36,48,15,0.03,6.93840137036527,0.346338383838384,20.5711554685924,0.0154422280195286,0.07,7,3,79.6316802616589,0.7610513739546,6.25,3.31723056520735,0,3.08126111328602,2.88464760780334,0.213381369058206
+4838,84543,447397.952,84643,447297.952,37,48,4.25,0.0141666666666667,4.86770751798024,0.358024691358025,32.9983164553722,0.00346688827768503,0.0025,0.25,1,0,NA,0.25,5,5,2.67988208929698,2.44725966453552,0.344308194341727
+4839,84543,447297.952,84643,447197.952,38,48,6.5,0.013,2.00656445677085,0.125757575757576,21.1803398874989,-0.00148098950101845,0.01,1,3,15.8692205350002,0.242424242424242,0.5,18.1843028068542,5,2.16362480074167,1.93395936489105,0.263210837243586
+4840,84543,447197.952,84643,447097.952,39,48,5,0.00833333333333333,3.29402016211698,0.167508417508417,13.3178413081909,-0.01462821618612,0.0375,3.75,6,44.7402736753127,0.480519480519481,1.75,9.29764073689779,0,1.77284973859787,1.62671196460724,0.217775476596653
+4841,84543,447097.952,84643,446997.952,40,48,6.5,0.00541666666666667,1.78193163617964,0.123346560846561,13.5049546873658,-0.0191803536601947,0.02,2,3,41.2877050769818,0.489795918367347,0.75,5.15165042877197,0,1.44447355717421,1.21546578407288,0.230726214704654
+4842,84543,446997.952,84643,446897.952,41,48,8.75,0.0175,6.45045213203437,0.252777777777778,26.4522576882517,0.0174709733558393,0.0975,9.75,3,80.4977789984568,0.761346686554443,6.5,6.94292298341409,0,1.07218035062154,0.933261513710022,0.222339207923773
+4843,84543,446897.952,84643,446797.952,42,48,10.25,0.0128125,3.35614058004128,0.156450320512821,17.1434708026486,-0.0010957807947716,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,4.90468173556858,0,0.570119770127349,0,0.40041537068402
+4844,84543,446797.952,84643,446697.952,43,48,8,0.01,3.05256164880946,0.251587301587302,15.4426274578121,-0.0060017790706479,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,7.01184463500977,5,0.246838594718914,-0.00651220325380564,0.332300817315123
+4845,84543,446697.952,84643,446597.952,44,48,18.75,0.03125,5.71517096466946,0.309813474929008,20.2157448335253,0.00487451297263306,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,3.54360066289487,0,0.033374420182857,-0.00978609453886747,0.219740829907784
+4846,84543,446597.952,84643,446497.952,45,48,8.75,0.04375,7.69603505069561,0.291666666666667,60.4152298679729,0.00163882095488589,0.01,1,1,52.6315789473684,1,1,24.8743686676025,21.2132034301758,0.103968832008832,-0.0335127711296082,0.196276380168708
+4847,84543,446497.952,84643,446397.952,46,48,11,0.0366666666666667,6.97137327261928,0.428623188405797,20.9066729088626,-3.17625844218128e-05,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,0.223813074602125,-0.0626941472291946,0.283948724973455
+4848,84543,446397.952,84643,446297.952,47,48,2.25,0.005625,2.10602496759067,0.0916666666666667,23.58372196361,0.0078973884336483,0.035,3.5,3,59.270360875528,0.689119170984456,2,19.0142984390259,7.07106781005859,0.280734716739971,-0.0449295826256275,0.308816585421804
+4849,84543,446297.952,84643,446197.952,48,48,0.25,0.0025,0,0,NA,0.00127777295489068,0,0,0,NA,NA,0,NA,NA,0.114394152226547,-0.217820480465889,0.345719108439636
+4850,84543,446197.952,84643,446097.952,49,48,0,NA,NA,NA,NA,-0.000574608555871237,0,0,0,NA,NA,0,NA,NA,0.0334965802030638,-0.251791775226593,0.344239317036384
+4851,84543,446097.952,84643,445997.952,50,48,3,0.00428571428571429,0.962715340371557,0.0857142857142857,11.5046782644054,-0.00182517749025465,0,0,0,NA,NA,0,NA,NA,0.109096073855956,-0.227729514241219,0.407806079412516
+4852,84543,445997.952,84643,445897.952,51,48,1,0.00333333333333333,0.833333333333333,0.0555555555555556,21.0818510677892,0.00110979134162335,0.02,2,1,68.0470115164975,0.795918367346939,2,14.1712143421173,10,0.240827998146415,-0.132937341928482,0.39909853447211
+4853,84543,445897.952,84643,445797.952,52,48,11,0.022,6.51680085470634,0.19954954954955,15.4721359549996,-0.000217364773507143,0.05,5,3,66.789305607889,0.728353140916808,2.5,10.3389407157898,5,-0.00302900622288386,-0.495506554841995,0.494460734951427
+4854,84543,445797.952,84643,445697.952,53,48,16,0.04,11.5997998172061,0.245644599303136,22.3994481380408,0.0252432735358661,0.2725,27.25,1,95.1807759450405,0.930224850419523,27.25,15.6132341437384,0,-0.580455741845071,-0.939058780670166,0.394337461056463
+4855,84543,445697.952,84643,445597.952,54,48,21,0.105,12.0216733407485,0.488683127572016,35,0.00360346781923909,0.0875,8.75,4,73.7070180033392,0.754369390647142,5.5,1.57142857142857,0,-0.802410468459129,-1.06101202964783,0.336908870891195
+4856,84543,445597.952,84643,445497.952,55,48,16.5,0.0825,14.1576893759174,0.411458333333333,65,0.0274011746513133,0.2,20,4,85.4342204129589,0.744718309859155,12.25,7.81080820560455,0,-0.905726969242096,-1.15788125991821,0.339796481710141
+4857,84543,445497.952,84643,445397.952,56,48,20.5,0.025625,6.68859162287888,0.231645114942529,11.64650850948,0.0165422589124591,0.0425,4.25,3,68.4345785580466,0.66579634464752,3.25,6.12600797765395,0,-1.08627911657095,-1.28066623210907,0.25086824588729
+4858,84543,445397.952,84643,445297.952,57,48,41.75,0.0835,8.98553778700142,0.293290598290598,14.9814095698291,0.0522833743409137,0.54,54,1,98.1009071848445,0.826952195544019,54,2.88937273731938,0,-1.19540724158287,-1.29404366016388,0.147945238364109
+4859,84543,445297.952,84643,445197.952,58,48,38,0.076,11.8806219217573,0.674268764744955,14.0776872304636,-0.0054167161011901,0.0775,7.75,4,73.8333223492161,0.761517615176152,6,2.26846694946289,0,-1.07663253322244,-1.23727929592133,0.177636615705293
+4860,84543,445197.952,84643,445097.952,59,48,53.75,0.1075,14.5138663719025,0.542909491232209,11.1803398874989,0.0320761198873515,0.4525,45.25,3,96.1279772709793,0.814625502623867,43.25,1.69848843569255,0,-0.648367193837961,-0.846199870109558,0.300494196031602
+4861,84543,445097.952,84643,444997.952,60,48,41.75,0.0835,8.22037009866497,0.305422885572139,13,0.0148544208052675,0.2925,29.25,1,95.5315755048205,0.899993332888859,29.25,0.530521947094518,0,-0.4727334221825,-0.630115509033203,0.211001179723291
+4862,84543,444997.952,84643,444897.952,61,48,24,0.0266666666666667,6.67990438537259,0.28641975308642,10.7768586875934,0.0178883456335143,0.1525,15.25,4,84.2956717313877,0.710580508710414,11.25,4.88784352286917,0,-0.748173187176386,-0.919990539550781,0.223481223241563
+4863,84543,444897.952,84643,444797.952,62,48,31.5,0.039375,6.79081602307513,0.291827085444107,15.1475424859374,0.0408204928461055,0.3425,34.25,6,90.4464687878889,0.774904942965779,27.5,4.99278056012453,0,-1.03646630421281,-1.13991165161133,0.132542230731942
+4864,84543,444797.952,84643,444697.952,63,48,35.25,0.03525,4.73777873055692,0.194821428571429,10.6180339887499,0.0427563721813931,0.3575,35.75,8,86.1357880583743,0.584162533044227,15,4.20522004240876,0,-1.1970608929793,-1.2692723274231,0.0765616688978248
+4865,84543,444697.952,84643,444597.952,64,48,3.75,0.00375,0.827019417631815,0.0527777777777778,21.0232768388667,0.00642985739340929,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,8.73898051335261,5,-1.24840604513884,-1.35559785366058,0.13434045882105
+4866,84543,444597.952,84643,444497.952,65,48,35.75,0.0595833333333333,8.88439140943142,0.350854995782532,15,0.0116219751138851,0.17,17,2,89.3362055792284,0.807633896932267,14.25,3.79820405735689,0,-1.1928159147501,-1.35020792484283,0.208141211236688
+4867,84543,444497.952,84643,444397.952,66,48,17.25,0.0115,3.4068902860521,0.187566137566138,12.0244207048304,0.0160969076043693,0.1125,11.25,4,81.5667202669702,0.659006671608599,8.25,3.29520602756076,0,-1.09075830876827,-1.25252950191498,0.191189444157887
+4868,84543,444397.952,84643,444297.952,67,48,37.5,0.0625,6.30644209126426,0.257160937916334,13.2978477743651,0.0235893851314995,0.19,19,6,81.5401748489275,0.723604201216142,10.25,1.6879509373715,0,-1.07906874641776,-1.13531017303467,0.0934500416472045
+4869,84543,444297.952,84643,444197.952,68,48,15,0.0166666666666667,3.93669146858667,0.183501683501683,15.877193060895,0.020629977057506,0.105,10.5,4,78.5700374564919,0.779683688724526,6.5,5.38252975827172,0,-1.21681648492813,-1.29572665691376,0.129814091253948
+4870,84543,444197.952,84643,444097.952,69,48,18,0.0225,6.12766875789705,0.260511363636364,16.875,0.011564649292086,0.1225,12.25,3,80.9340484571144,0.728666395333062,6.25,3.63845451510682,0,-1.49062951654196,-1.63115906715393,0.168295954844935
+4871,84543,444097.952,84643,443997.952,70,48,75,0.75,38.9000438391053,0.818888888888889,NA,0.0421187194796948,0.3625,36.25,2,94.4948842232861,0.875693673695893,33,0.890635418069774,0,-1.78429380059242,-1.87542903423309,0.144870101096157
+4872,84543,443997.952,84643,443897.952,71,48,84.75,0.42375,28.2118484654348,0.837992939713199,10,0.223677480579063,0.93,93,1,99.8055173961557,0.716312056737588,93,0.888051986694336,0,-1.96861708909273,-2.02762079238892,0.0874728446952025
+4873,84543,443897.952,84643,443797.952,72,48,83.25,0.8325,38.3593586022468,0.832832832832833,NA,0.0741040036466438,0.7425,74.25,1,99.1551699664667,0.749900133733956,74.25,0.826112252694589,0,-1.91317601005236,-1.98242688179016,0.0785105472024828
+4874,84543,443797.952,84643,443697.952,73,48,71.25,0.35625,19.2082672092362,0.576141755634638,30,0.0466790536119106,0.5575,55.75,1,98.2142154717639,0.91851368970013,55.75,1.37893769131648,0,-1.88533310592175,-1.90985894203186,0.0467085601026128
+4875,84543,443697.952,84643,443597.952,74,48,69,0.345,24.5471104910407,0.813930038825436,25,0.0295299940072437,0.36,36,3,94.0740543164378,0.757339015151515,30.5,0.535215748680962,0,-1.88899843891462,-1.91114020347595,0.0648965030184307
+4876,84543,443597.952,84643,443497.952,75,48,85.75,0.8575,39.0239349390844,0.878522837706511,NA,0.0446963733929442,0.42,42,4,93.81099832504,0.788654060066741,35.5,0.178571428571429,0,-1.72117319703102,-1.89757871627808,0.237338688603941
+4877,84543,443497.952,84643,443397.952,76,48,100,1,38.2238923285138,0.934166666666667,NA,0.0576570449021528,0.4375,43.75,3,94.1363954670958,0.840385276917785,37,0,0,-1.45420424888531,-1.94123029708862,0.590319544345906
+4878,84543,443397.952,84643,443297.952,77,48,90,0.9,36.5354990818739,0.929166666666667,NA,0.00786228717195627,0.2175,21.75,2,89.338467347909,0.785633309285788,12.25,0.541046756437455,0,-1.54981387903293,-2.34999966621399,0.764212770309678
+4879,84543,443297.952,84643,443197.952,78,48,39,0.0975,13.0237739943868,0.615679331091004,25.43424518429,0.00038422392346547,0.055,5.5,2,79.8050134223298,0.813258636788049,5.25,0.681818181818182,0,-2.40339651703835,-2.62783479690552,0.438818638300838
+4880,84543,443197.952,84643,443097.952,79,48,42.25,0.140833333333333,11.8365611896678,0.448361823361823,30.8168006348887,0.0382184117291035,0.43,43,1,97.2369173509155,0.966793956500083,43,0.583270206007847,0,-2.66858265797297,-2.71018075942993,0.0638529674087817
+4881,84543,443097.952,84643,442997.952,80,48,22,0.0733333333333333,8.95228733473614,0.443766937669377,30.8463413376963,0.0301368273832486,0.2825,28.25,3,90.563416620966,0.842863974858236,15,6.00222616280075,0,-2.83269360661507,-3,0.225727759100973
+4882,84543,442997.952,84643,442897.952,81,48,14.75,0.07375,13.2816252778299,0.365497076023392,11.1803398874989,0.091494633283728,0.73,73,1,99.1030975159931,0.85832827362882,73,20.4656813503945,0,-2.74334186315536,-2.79606127738953,0.12840390043122
+4883,84543,442897.952,84643,442797.952,82,48,0,NA,NA,NA,NA,-0.00506580021701666,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,41.7268402099609,40,-2.82714353501797,-2.90008234977722,0.0841785384724322
+4884,84543,442797.952,84643,442697.952,83,48,1,0.00333333333333333,0.833333333333333,0.0555555555555556,29.5438492855469,0.00960343964223284,0,0,0,NA,NA,0,NA,NA,-2.95938823620478,-3.00157856941223,0.0825750087772961
+4885,84543,442697.952,84643,442597.952,84,48,0,NA,NA,NA,NA,-0.0246184225650632,0,0,0,NA,NA,0,NA,NA,-3.05085770785809,-3.12641096115112,0.0739083895899449
+4886,84543,442597.952,84643,442497.952,85,48,0.25,0.0025,0,0,NA,0.0981334639713168,0.6175,61.75,1,98.5654235476234,0.966047024870554,61.75,38.8757398968283,7.07106781005859,-3.05206147829692,-3.1410436630249,0.132620901483016
+4887,84543,442497.952,84643,442397.952,86,48,8.5,0.02125,3.22510162234003,0.174731182795699,33.0219793555981,0.00666938651040255,0.25,25,1,94.7368421052632,0.97037037037037,25,34.637114276886,11.1803398132324,-2.92984136939049,-3.13563704490662,0.216281485552881
+4888,84543,442397.952,84643,442297.952,87,48,31.25,0.104166666666667,9.73208705964745,0.3091985428051,11.937129433614,-0.0351761500093562,0.19,19,2,88.2112353292236,0.889441680486457,10,36.2872716000206,15.8113880157471,-2.97158451875051,-3.10403060913086,0.191784776284312
+4889,84543,442297.952,84643,442197.952,88,48,44.5,0.445,31.9498530776199,0.72752808988764,NA,-0.101242437668152,0,0,0,NA,NA,0,NA,NA,-3.1103193461895,-3.22571730613708,0.0935166118554131
+4890,84543,442197.952,84643,442097.952,89,48,14,0.0155555555555556,4.38265481510571,0.184095860566449,10.6557443819439,-0.0815150842709613,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-3.18882209062576,-3.28419971466064,0.103415778561716
+4891,84543,442097.952,84643,441997.952,90,48,10,0.0166666666666667,5.34900648432774,0.341269841269841,14.1666666666667,-0.0561255314014124,0.01,1,1,52.6315789473684,1,1,1.25,0,-3.21488209565481,-3.33343076705933,0.116379051639299
+4892,84543,441997.952,84643,441897.952,91,48,0,NA,NA,NA,NA,-0.0874119767639786,0,0,0,NA,NA,0,NA,NA,-3.33521167933941,-3.45317554473877,0.120691771415392
+4893,84543,441897.952,84643,441797.952,92,48,0,NA,NA,NA,NA,-0.0678363741422072,0,0,0,NA,NA,0,NA,NA,-3.43166782458623,-3.49316668510437,0.0878862634977143
+4894,84543,441797.952,84643,441697.952,93,48,0,NA,NA,NA,NA,-0.0632369194924831,0,0,0,NA,NA,0,NA,NA,-3.46720349788666,-3.49886727333069,0.0453486129205163
+4895,84543,441697.952,84643,441597.952,94,48,0,NA,NA,NA,NA,-0.0574597166819149,0,0,0,NA,NA,0,NA,NA,-3.4857016603152,-3.5058388710022,0.0162027584160002
+4896,84543,441597.952,84643,441497.952,95,48,0.25,0.0025,0,0,NA,-0.081027293127263,0,0,0,NA,NA,0,NA,NA,-3.48636095225811,-3.50758266448975,0.0179956634078293
+4897,84543,441497.952,84643,441397.952,96,48,3.5,0.00583333333333333,2.18637028865312,0.1125,10.7868932583326,-0.265714448541403,0,0,0,NA,NA,0,NA,NA,-3.48117653528849,-3.50262570381165,0.0234558163932802
+4898,84543,441397.952,84643,441297.952,97,48,0.25,0.0025,0,0,NA,-0.247715851666871,0,0,0,NA,NA,0,NA,NA,-3.48649041354656,-3.51356792449951,0.0309889300219825
+4899,84543,441297.952,84643,441197.952,98,48,0.75,0.0025,0,0,19.5162002124521,-0.148133415013508,0,0,0,NA,NA,0,NA,NA,-3.43972114721934,-3.49017238616943,0.0556987984559467
+4900,84543,441197.952,84643,441097.952,99,48,0.263157894736842,0.0025,0,0,NA,0.0484444343768701,0.4275,42.75,1,97.2134830220855,0.872461357177514,42.75,47.4940740797255,0,-3.43294203281403,-3.47874641418457,0.0578809753486171
+4901,84643,451097.952,84743,450997.952,0,49,41.25,0.0825,14.5462531450543,0.457560790273556,14.2360679774998,-0.0430707901397545,0,0,0,NA,NA,0,NA,NA,-3.64210017522176,-3.72112727165222,0.130055193450165
+4902,84643,450997.952,84743,450897.952,1,49,43.25,0.0540625,8.19803848057249,0.352682277412881,10.9200849718747,-0.0187329973959822,0,0,0,NA,NA,0,NA,NA,-3.7744621237119,-3.84847974777222,0.113020524684482
+4903,84643,450897.952,84743,450797.952,2,49,56.75,0.28375,26.6727525283178,0.740321304210193,14.142135623731,-0.00474951808332662,0.0325,3.25,4,50.0616168529462,0.598047660063164,1.25,6.96561431884766,0,-3.83916298548381,-3.87494015693665,0.073887510903476
+4904,84643,450797.952,84743,450697.952,3,49,18.5,0.0264285714285714,7.17323460762323,0.219126984126984,12.4496809173127,0.00379848439007219,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,2.77777777777778,0,-3.85155008236567,-3.874844789505,0.0336394912223453
+4905,84643,450697.952,84743,450597.952,4,49,6,0.0075,3.54811667706957,0.112847222222222,20.1866803955812,0.0052036764731838,0.0025,0.25,1,0,NA,0.25,5,5,-3.77683515018887,-3.81645798683167,0.0745629903160474
+4906,84643,450597.952,84743,450497.952,5,49,7,0.01,6.56599153958937,0.0783730158730159,24.5961717457583,0.0111699747872899,0,0,0,NA,NA,0,NA,NA,-3.612508893013,-3.69412279129028,0.0943815919607104
+4907,84643,450497.952,84743,450397.952,6,49,12.25,0.00765625,3.62271476057196,0.128736772486772,14.1738974124176,0.00774723083505705,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,9.78814021023837,5,-3.49726104736328,-3.50896644592285,0.0308068709124912
+4908,84643,450397.952,84743,450297.952,7,49,2.75,0.0034375,0.850716010281361,0.0451388888888889,26.3566099840405,9.44138035265496e-06,0,0,0,NA,NA,0,NA,NA,-3.57261614004771,-3.64324975013733,0.0803506274708668
+4909,84643,450297.952,84743,450197.952,8,49,10.5,0.021,5.38983826911619,0.301396011396011,24.0230041486214,0.00550323341958574,0,0,0,NA,NA,0,NA,NA,-3.73767095141941,-3.81885933876038,0.109213042231905
+4910,84643,450197.952,84743,450097.952,9,49,33.75,0.05625,8.69773501767892,0.427437363834423,17.6667150136312,0.00655835465262499,0.035,3.5,1,77.1303955881659,0.844559585492228,3.5,2.88017681666783,0,-3.87463940514459,-3.9608256816864,0.119183179531484
+4911,84643,450097.952,84743,449997.952,10,49,34.25,0.0428125,8.70677821308801,0.231657379263762,14.6972265898787,0.0287163540193433,0.255,25.5,1,94.8405521791929,0.911981516118385,25.5,3.44257564170688,0,-3.97624512513479,-4.04039669036865,0.0967783728558054
+4912,84643,449997.952,84743,449897.952,11,49,9.25,0.0132142857142857,7.13682556475189,0.184807256235828,14.6972243028151,0.0115413732069464,0.0025,0.25,1,0,NA,0.25,5,5,-4.02857936753167,-4.05256175994873,0.0523379284368716
+4913,84643,449897.952,84743,449797.952,12,49,14.5,0.0207142857142857,9.66069159364626,0.202063492063492,11.5207072889228,-0.0107307131044399,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-4.05473168690999,-4.08085441589355,0.030868136206566
+4914,84643,449797.952,84743,449697.952,13,49,9.5,0.00863636363636364,4.06719872516807,0.127822177822178,14.6219646213398,-0.0042031508033017,0.0275,2.75,4,45.875772491231,0.451585261353899,1.25,7.17617884549228,0,-4.08895243538751,-4.10646104812622,0.0269549782589129
+4915,84643,449697.952,84743,449597.952,14,49,20.5,0.0341666666666667,9.00947462298998,0.306203314659197,15.1967233145832,-0.0188526476662082,0,0,0,NA,NA,0,NA,NA,-4.11358229319255,-4.12023115158081,0.0174160438047085
+4916,84643,449597.952,84743,449497.952,15,49,29.75,0.14875,17.0552232077059,0.344729344729345,47.169905660283,-0.00242751226252949,0.045,4.5,2,72.5141018795214,0.844871049059531,3.75,2.5,0,-4.08414210213555,-4.11870241165161,0.069339199975942
+4917,84643,449497.952,84743,449397.952,16,49,20.25,0.02025,5.59716067310032,0.218777777777778,14.7536202573506,0.00780415311111938,0.125,12.5,3,83.3670732440826,0.73109243697479,8.75,3.48929222106934,0,-3.94359902540843,-4.07451629638672,0.199866203078701
+4918,84643,449397.952,84743,449297.952,17,49,15,0.0166666666666667,4.31098029949304,0.236772486772487,15.0168031990404,-0.00804001174987207,0.04,4,2,68.0470115164975,0.739583333333333,2,3.58709645271301,0,-3.61988936530219,-3.87494397163391,0.356925568044549
+4919,84643,449297.952,84743,449197.952,18,49,32.5,0.0361111111111111,5.82822380276377,0.280969019333799,12.9707756374622,0.0140782095778923,0.15,15,4,83.9297643286764,0.773755656108597,8.75,0.867851130167643,0,-3.36121157805125,-3.65281558036804,0.332242547361619
+4920,84643,449197.952,84743,449097.952,19,49,14.5,0.0131818181818182,5.31217384376145,0.282449494949495,10.5365181306813,0.013455679091021,0.0525,5.25,4,62.6587117622427,0.703166226912929,3.25,10.3201142265683,0,-3.02295062277052,-3.15443968772888,0.229420741559028
+4921,84643,449097.952,84743,448997.952,20,49,16.25,0.0325,6.53816817444843,0.192816091954023,21.5498231854631,0.0169011331562069,0.185,18.5,2,90.3212913021258,0.848985370457763,16.75,2.73984976072569,0,-2.70851500829061,-2.88484621047974,0.324831814145395
+4922,84643,448997.952,84743,448897.952,21,49,26.75,0.0891666666666667,14.0296776154883,0.430104017060539,24.7939978446421,0.0455462676275602,0.44,44,3,92.1955813508261,0.818681318681319,27,2.80076785521074,0,-1.87736472984155,-2.54940271377563,2.49556430496649
+4923,84643,448897.952,84743,448797.952,22,49,70,0.7,35.0928743730436,0.84047619047619,NA,0.0540295869503825,0.585,58.5,2,97.6081894154282,0.86214882412947,57.25,0.551889468462039,0,1.72830052177111,-1.85536062717438,5.21477716189817
+4924,84643,448797.952,84743,448697.952,23,49,78,0.78,39.0104695335332,0.798611111111111,NA,0.0242037753929981,0.2425,24.25,3,90.20856676665,0.772391032206669,16.5,0.412371134020619,0,2.39295547207197,0.916111826896667,1.67288862246169
+4925,84643,448697.952,84743,448597.952,24,49,90.5,0.4525,20.9167790387541,0.667915106117353,10,-0.0168590633711574,0.055,5.5,2,76.4902019111937,0.844382197323374,4.75,0,0,1.12321699990167,0.770654201507568,0.807184692590948
+4926,84643,448597.952,84743,448497.952,25,49,55,0.1375,10.6397408205325,0.275234741784038,14.0450849718747,0.00365685901929282,0.105,10.5,1,89.0207000039903,0.937052482492722,10.5,3.15222722008115,0,0.637146403392156,0.333716511726379,0.443786335701557
+4927,84643,448497.952,84743,448397.952,26,49,60.25,0.1205,11.4691075124709,0.486958112703948,10.2360679774998,0.0352424536730427,0.325,32.5,2,95.594462042648,0.868729488982653,32.25,0.862085137000451,0,0.212830267432663,-0.149217993021011,0.470374361101392
+4928,84643,448397.952,84743,448297.952,27,49,29.5,0.0983333333333333,10.4311595512941,0.216954022988506,12.4535599249993,0.0229903178135828,0.265,26.5,1,95.039096185713,0.900274245823984,26.5,1.89014470802163,0,-0.056483993306756,-0.568462193012238,0.663342993700656
+4929,84643,448297.952,84743,448197.952,28,49,24.25,0.12125,25.7123533649542,0.510515069725596,11.1803398874989,0.0466849440856276,0.4,40,2,95.8847059741097,0.909297052154195,38.5,4.40105783939362,0,-0.259550664263467,-0.601904571056366,0.615954018439144
+4930,84643,448197.952,84743,448097.952,29,49,7,0.0116666666666667,3.59611628157056,0.175925925925926,18.9839150514428,0.016079038145981,0.095,9.5,3,81.2868170091389,0.859686047531351,7.75,8.18775518316972,0,0.11021594547977,-0.45558562874794,0.639329267960668
+4931,84643,448097.952,84743,447997.952,30,49,26.5,0.0441666666666667,5.12045037142316,0.264204545454545,15.1352313834736,0.0159058586928768,0.0975,9.75,1,88.4075627573592,0.897720008523333,9.75,0.694129943847656,0,0.589221116569307,0.279170542955399,0.493920012531533
+4932,84643,447997.952,84743,447897.952,31,49,19.5,0.024375,7.75099105525028,0.307118055555556,17.0321298121028,0.00649237805006123,0.0275,2.75,2,61.172968273306,0.794344473007712,1.75,1.55191525545987,0,0.921654144922892,0.593626797199249,0.428658270798217
+4933,84643,447897.952,84743,447797.952,32,49,2.5,0.003125,0.754441738241592,0.03125,17.7028470752105,0.00434149160735615,0.0025,0.25,1,0,NA,0.25,5,5,1.33379952112834,1.00779235363007,0.371275964982078
+4934,84643,447797.952,84743,447697.952,33,49,2.25,0.005625,1.96274860643212,0.145833333333333,30.7049043705017,0.0144479554525662,0.04,4,3,66.2624149457428,0.782986111111111,3.25,11.5632457733154,0,1.80653170744578,1.53017926216125,0.390580648445601
+4935,84643,447697.952,84743,447597.952,34,49,9,0.018,4.45757455013474,0.334391534391534,14.7858911629629,-0.000317241845727949,0,0,0,NA,NA,0,NA,NA,2.31555152932803,1.91179931163788,0.450891898160286
+4936,84643,447597.952,84743,447497.952,35,49,17,0.0425,4.75594612342181,0.267195767195767,41.0766175205522,-0.0018510839251303,0,0,0,NA,NA,0,NA,NA,2.62235834863451,2.38963985443115,0.381120709746584
+4937,84643,447497.952,84743,447397.952,36,49,11,0.0157142857142857,4.16062041799277,0.178708791208791,14.1865616982731,0.00350916774383222,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15,2.54300971825918,2.2229368686676,0.435889257314937
+4938,84643,447397.952,84743,447297.952,37,49,4.25,0.010625,3.59616159134976,0.301388888888889,19.01387818866,0.00531819349660964,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,7.51661682128906,0,2.3084831237793,2.15274572372437,0.316175753508701
+4939,84643,447297.952,84743,447197.952,38,49,1.5,0.00375,0.817548544079538,0.0694444444444444,42.8101877431575,0.0144125788415113,0.0775,7.75,2,80.0561092657327,0.761517615176152,5.5,18.2045369302073,5,2.03098611036936,1.8796581029892,0.199335970023341
+4940,84643,447197.952,84743,447097.952,39,49,8.5,0.0121428571428571,4.98255962877422,0.239087301587302,18.66356443178,0.00445747424417959,0.025,2.5,1,71.9760246298065,1,2.5,1.5,0,1.70989904138777,1.60153579711914,0.181833010177873
+4941,84643,447097.952,84743,446997.952,40,49,14.75,0.0184375,6.18134829357607,0.226546717171717,12.6820424154127,0.0114460157470694,0.1275,12.75,6,70.3106598438986,0.617956064947469,4,8.48651025809494,0,1.4173217912515,1.22472190856934,0.201163128318212
+4942,84643,446997.952,84743,446897.952,41,49,26.75,0.0222916666666667,5.20773412480944,0.242106017939091,13.0754719764917,0.0183211707301723,0.0725,7.25,7,56.2670313103282,0.518265756724207,1.75,3.11456811839137,0,1.12583735254076,0.944963932037354,0.243569711320644
+4943,84643,446897.952,84743,446797.952,42,49,12.5,0.0178571428571429,4.14173238212422,0.225,22.5339565160979,0.0097462877964881,0.0425,4.25,2,69.4258805220027,0.70757180156658,2.75,6.33623639275046,0,0.854935641090075,0.69290679693222,0.20737623114578
+4944,84643,446797.952,84743,446697.952,43,49,7.75,0.0129166666666667,3.50605697873947,0.233187134502924,18.1383341968548,0.02039742002602,0.065,6.5,1,84.6193541959806,0.921742532933351,6.5,13.5899403645442,5,0.678013589647081,0.609483242034912,0.137059719071573
+4945,84643,446697.952,84743,446597.952,44,49,4,0.00666666666666667,2.74213711625556,0.136243386243386,22.9256346595723,0.0146935633729481,0.015,1.5,2,46.1375166841518,0.564902102973169,1,13.2465693155924,0,0.596306065718333,0.369557082653046,0.258093004596914
+4946,84643,446597.952,84743,446497.952,45,49,12.25,0.0245,5.85909892955482,0.263116883116883,15.211102550928,0.00846322736762431,0.0375,3.75,2,66.706117556603,0.763872491145218,2,2.47140452067057,0,0.302057607720296,0,0.420595362654429
+4947,84643,446497.952,84743,446397.952,46,49,7,0.0175,4.29722969751381,0.252480158730159,15,0.00691366962674692,0.0075,0.75,3,0,1,0.25,14.0236892700195,5,0.241578070653809,0,0.249307685986472
+4948,84643,446397.952,84743,446297.952,47,49,3.5,0.00388888888888889,1.38888888888889,0.0925925925925926,16.0883160752804,0.00556533150837652,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,11.0515256609235,5,0.350049900511901,0,0.279161714641009
+4949,84643,446297.952,84743,446197.952,48,49,2.25,0.005625,2.06754854407954,0.131944444444444,35.0987003390127,0.0025249192804813,0,0,0,NA,NA,0,NA,NA,0.518001188834508,0.436389356851578,0.166651291452419
+4950,84643,446197.952,84743,446097.952,49,49,0,NA,NA,NA,NA,0.00158333091334043,0,0,0,NA,NA,0,NA,NA,0.531924193104108,0.427715480327606,0.147189547515763
+4951,84643,446097.952,84743,445997.952,50,49,0,NA,NA,NA,NA,0.00385324591019412,0,0,0,NA,NA,0,NA,NA,0.694287710719638,0.53887403011322,0.192071474605279
+4952,84643,445997.952,84743,445897.952,51,49,0,NA,NA,NA,NA,0.00203445257677004,0,0,0,NA,NA,0,NA,NA,0.750612328449885,0.600133061408997,0.158224093343756
+4953,84643,445897.952,84743,445797.952,52,49,0,NA,NA,NA,NA,0.0078534533802781,0.05,5,2,75.9413455967301,0.864176570458404,4.5,31.8325025558472,22.3606796264648,0.459387938181559,0.297323197126389,0.273731004453371
+4954,84643,445797.952,84743,445697.952,53,49,3.5,0.005,1.70014515292964,0.0912698412698413,17.2189639786911,-0.000738573454100333,0,0,0,NA,NA,0,NA,NA,0.0175818672093252,-0.287269502878189,0.38506116632733
+4955,84643,445697.952,84743,445597.952,54,49,0,NA,NA,NA,NA,-0.00897242808434385,0,0,0,NA,NA,0,NA,NA,0.0121649778965447,-0.297836512327194,0.560406518665804
+4956,84643,445597.952,84743,445497.952,55,49,0,NA,NA,NA,NA,-0.022478745759654,0,0,0,NA,NA,0,NA,NA,-0.010530623089936,-0.436026841402054,0.6257857270317
+4957,84643,445497.952,84743,445397.952,56,49,1,0.01,4.34942231976673,0.291666666666667,NA,-0.0231592952481151,0,0,0,NA,NA,0,NA,NA,-0.396956530710061,-0.767995357513428,0.559301156035045
+4958,84643,445397.952,84743,445297.952,57,49,19.25,0.0320833333333333,5.60910554238202,0.290322580645161,10.7868932583326,-0.00920225183232105,0.155,15.5,1,91.8947234736642,0.912338373876835,15.5,2.00229251000189,0,-0.900516264968448,-1.03702807426453,0.235738085386239
+4959,84643,445297.952,84743,445197.952,58,49,17.75,0.0221875,7.90099354283233,0.329238816738817,11.8343604343211,-0.0128248847336363,0.0725,7.25,4,67.5821915544928,0.632964386075586,2.5,3.53081183597959,0,-0.981490408380826,-1.12193882465363,0.1256188111131
+4960,84643,445197.952,84743,445097.952,59,49,49.75,0.0829166666666667,8.72798786963795,0.314353946706888,12.7504692331215,0.0345281581677227,0.41,41,2,93.6266754367002,0.848467841508587,21.75,0.609756097560976,0,-0.940198249287076,-1.13444519042969,0.295884069055794
+4961,84643,445097.952,84743,444997.952,60,49,19.25,0.0240625,5.57272497790314,0.313644598155468,12.7602549156242,0.0211205196089941,0.0875,8.75,5,78.8641518751854,0.603212092583845,7,2.33796375819615,0,-0.887689203023911,-1.11438512802124,0.324723772737997
+4962,84643,444997.952,84743,444897.952,61,49,41,0.082,9.81154346094123,0.322685761726858,11.2360679774998,0.0304560692857376,0.255,25.5,3,93.3248100571861,0.743279422011956,24.25,2.09943270215801,0,-0.971058474646674,-1.15608549118042,0.266844660897224
+4963,84643,444897.952,84743,444797.952,62,49,9.75,0.0139285714285714,3.7080048618544,0.216374269005848,16.9044476108786,0.0106700343464581,0.035,3.5,2,69.0285060247284,0.844559585492228,3,4.44070652553013,0,-1.14183778564135,-1.3020601272583,0.179038883167755
+4964,84643,444797.952,84743,444697.952,63,49,31.75,0.0635,5.82551527011989,0.185792349726776,14.064495102246,0.0245342409205296,0.21,21,3,89.1430051773069,0.821595446436157,17.5,0.896696136111305,0,-1.33191047774421,-1.43522846698761,0.149535570219437
+4965,84643,444697.952,84743,444597.952,64,49,8.75,0.00972222222222222,2.97846596681191,0.220037986704653,19.6948240626704,0.012415844307252,0.0325,3.25,4,52.4153934420662,0.598047660063164,1.5,7.42329348050631,0,-1.42769530415535,-1.47746825218201,0.0917673688407742
+4966,84643,444597.952,84743,444497.952,65,49,30.25,0.0605,8.28623686132843,0.250660066006601,14.8704815926677,0.0407711025139906,0.3625,36.25,4,91.5577099042891,0.840177580466149,28.25,4.1420272169442,0,-1.38145189815097,-1.43650186061859,0.0820305661023495
+4967,84643,444497.952,84743,444397.952,66,49,10,0.0125,3.15508285872761,0.184280303030303,15.7360108637706,0.0111557264810472,0.05,5,6,53.3643255806968,0.558573853989813,2.5,10.8041816711426,0,-1.25702526834276,-1.31270635128021,0.0940021348418099
+4968,84643,444397.952,84743,444297.952,67,49,36.25,0.0725,6.31734807919065,0.211670663469225,18.0827625302982,0.0276631116967292,0.315,31.5,1,95.8855704592132,0.898001466228923,31.5,1.78146516709101,0,-1.17344974478086,-1.21935856342316,0.0749116432669176
+4969,84643,444297.952,84743,444197.952,68,49,6.75,0.00519230769230769,1.62624870074698,0.111645299145299,19.422757844345,0.0100005411615166,0.03,3,3,56.8821676030257,0.636143117040631,2,6.62205092112223,0,-1.24431120024787,-1.33554041385651,0.127438922526714
+4970,84643,444197.952,84743,444097.952,69,49,40.75,0.135833333333333,17.6086505183872,0.573877665544332,24.9071198499986,-0.014038088629186,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,1.3131590623122,0,-1.53402858972549,-1.70427167415619,0.189363566149448
+4971,84643,444097.952,84743,443997.952,70,49,74.5,0.3725,23.961342971119,0.795418739635158,15,0.0526036852534162,0.48,48,2,97.3948956978562,0.837942955920484,47.75,1.50316013892492,0,-1.80468416213989,-1.87999272346497,0.112734647302454
+4972,84643,443997.952,84743,443897.952,71,49,74,0.185,14.775463493737,0.505564236111111,10,0.0986862202634802,0.7925,79.25,1,99.350989933666,0.758230245396301,79.25,2.23519756666117,0,-1.91624583800634,-1.97149217128754,0.0736576301237938
+4973,84643,443897.952,84743,443797.952,72,49,65.75,0.1315,13.6815609966993,0.387528265107212,10,0.0515866459060999,0.5175,51.75,4,93.913166359534,0.822353811991118,33.5,1.5276000165709,0,-1.93754867712657,-1.94809639453888,0.0423925824177009
+4974,84643,443797.952,84743,443697.952,73,49,69.5,0.695,38.3277673747778,0.807553956834532,NA,0.0808300931419944,0.8625,86.25,1,99.5959799783351,0.877300613496932,86.25,2.02309566995372,0,-1.8965574602286,-1.94864869117737,0.0578072703983585
+4975,84643,443697.952,84743,443597.952,74,49,81,0.405,25.3339089539219,0.842097555480455,15.8113883008419,0.0398345635253645,0.4825,48.25,3,95.8117642804462,0.821876771111651,45,0.509244928705878,0,-1.78312344021267,-1.89435696601868,0.191701804645514
+4976,84643,443597.952,84743,443497.952,75,49,79,0.395,24.4806574558424,0.812042951032121,20,0.0335917778886869,0.33,33,5,89.373262463087,0.851365578745278,24.25,0.227272727272727,0,-1.33224055916071,-1.6824072599411,0.565265067603942
+4977,84643,443497.952,84743,443397.952,76,49,96.5,0.965,38.6036222922579,0.919689119170985,NA,0.0637215329837636,0.6825,68.25,2,98.6001741759901,0.790846456692913,67.75,0.0183150183150183,0,-0.631108696262042,-1.11129689216614,0.593450165842921
+4978,84643,443397.952,84743,443297.952,77,49,81.75,0.40875,22.707154738463,0.780116720955483,25,0.0434107849650536,0.505,50.5,4,94.1931982499304,0.822222222222222,44,0.0495049504950495,0,-1.51830725537406,-2.04233527183533,0.951928929769202
+4979,84643,443297.952,84743,443197.952,78,49,44,0.11,13.6027340719407,0.595211269935808,20,0.0326549831918237,0.365,36.5,4,90.4976087529195,0.769972573653012,24,0.787671232876712,0,-2.39425371090571,-2.59996247291565,0.401019298749874
+4980,84643,443197.952,84743,443097.952,79,49,93,0.93,38.0999334827946,0.893817204301075,NA,0.0807643783511594,0.7275,72.75,2,98.4846253291342,0.805444207772169,71.25,0.189003436426117,0,-2.68177196714613,-2.71093058586121,0.0606296989928569
+4981,84643,443097.952,84743,442997.952,80,49,32.75,0.16375,26.1047134626311,0.67284718765555,50.2493781056044,0.0759162934117558,0.5225,52.25,2,94.9801758179383,0.843874076367111,32,4.40183681506289,0,-2.79763778050741,-2.97126626968384,0.144820889165838
+4982,84643,442997.952,84743,442897.952,81,49,2.5,0.00625,2.80701320972374,0.149305555555556,21.9060721986142,0.0158915439456632,0.23,23,4,83.8929567672209,0.762432689261958,9,22.8614192838254,0,-2.75267020861308,-2.76338028907776,0.0383799319418623
+4983,84643,442897.952,84743,442797.952,82,49,0.5,0.005,2.5,0.166666666666667,NA,0.0168871018723075,0.1075,10.75,2,87.3361671092643,0.937752878929349,10.5,28.5137117075366,15,-2.78475348154704,-2.84383606910706,0.0627034718206014
+4984,84643,442797.952,84743,442697.952,83,49,0,NA,NA,NA,NA,-0.0139803038494165,0,0,0,NA,NA,0,NA,NA,-2.8821341196696,-2.94974088668823,0.0998852483757001
+4985,84643,442697.952,84743,442597.952,84,49,0,NA,NA,NA,NA,-0.00533391052758816,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,69.1477228800456,65,-3.05131377776464,-3.13701391220093,0.106268946125548
+4986,84643,442597.952,84743,442497.952,85,49,0,NA,NA,NA,NA,0.0874842421789435,0.6975,69.75,2,96.4976854214121,0.854898744558703,51.5,53.4532048625331,11.1803398132324,-3.18524771266513,-3.20580744743347,0.0457308886608317
+4987,84643,442497.952,84743,442397.952,86,49,3.5,0.00388888888888889,1.2037037037037,0.0802469135802469,16.4221111322708,0.0422907991737884,0.525,52.5,2,96.6704580865269,0.84385516220218,50.25,16.1037924993606,0,-3.19499061505,-3.20853018760681,0.0407307605563112
+4988,84643,442397.952,84743,442297.952,87,49,0.25,0.0025,0,0,NA,0.0489595479576928,0.5175,51.75,2,96.9971199884729,0.89233564363098,50,39.8157289569505,14.1421356201172,-3.1630609565311,-3.18989396095276,0.0518065425796769
+4989,84643,442297.952,84743,442197.952,88,49,11.75,0.0195833333333333,5.00942323377115,0.184472934472934,15.068395467602,0.0153529693805831,0.135,13.5,1,90.9386564749522,0.838398906084903,13.5,11.5804847434715,0,-3.09132430950801,-3.12553191184998,0.0375953112017618
+4990,84643,442197.952,84743,442097.952,89,49,3.25,0.01625,5.44820430843512,0.352777777777778,70,-0.00499081538297105,0,0,0,NA,NA,0,NA,NA,-3.09379903475444,-3.11264753341675,0.032147441512616
+4991,84643,442097.952,84743,441997.952,90,49,11.75,0.0391666666666667,12.5692671538777,0.277777777777778,31.1441962669098,-0.0481493005517405,0,0,0,NA,NA,0,NA,NA,-3.12890073988173,-3.14068913459778,0.0281983969908983
+4992,84643,441997.952,84743,441897.952,91,49,18.5,0.0616666666666667,18.6503541270432,0.397553971083383,13.3333333333333,-0.0942497670022385,0,0,0,NA,NA,0,NA,NA,-3.1529040535291,-3.24337100982666,0.0892680602487028
+4993,84643,441897.952,84743,441797.952,92,49,18.75,0.046875,9.06600317417725,0.295896464646465,11.3306188778075,-0.0596795117678994,0.1075,10.75,3,81.7731928980946,0.735449735449735,7,5.23587036132812,0,-3.18817382388645,-3.33733510971069,0.196400354178537
+4994,84643,441797.952,84743,441697.952,93,49,0.5,0.005,2.5,0.166666666666667,NA,-0.00493071662896,0.09,9,1,87.719298245614,0.963369963369963,9,85.3015028635661,66.7083206176758,-3.34549872080485,-3.45413160324097,0.165954293579939
+4995,84643,441697.952,84743,441597.952,94,49,0,NA,NA,NA,NA,0.00651975379707437,0.245,24.5,1,94.6299732152399,0.969897652016857,24.5,89.0198843041245,66.7083206176758,-3.45749735832214,-3.51451897621155,0.109306158189265
+4996,84643,441597.952,84743,441497.952,95,49,6.5,0.00928571428571429,3.49860178501412,0.171201814058957,10.7142857142857,-0.0573043390971225,0,0,0,NA,NA,0,NA,NA,-3.49847515424093,-3.52497267723083,0.0675710945807719
+4997,84643,441497.952,84743,441397.952,96,49,0.5,0.0025,0,0,103.077640640442,-0.234030914232135,0,0,0,NA,NA,0,NA,NA,-3.50827132331,-3.52764296531677,0.0394237099684184
+4998,84643,441397.952,84743,441297.952,97,49,0,NA,NA,NA,NA,-0.256396050285548,0,0,0,NA,NA,0,NA,NA,-3.49714191754659,-3.52722263336182,0.0459831788754402
+4999,84643,441297.952,84743,441197.952,98,49,0,NA,NA,NA,NA,-0.276025678934529,0,0,0,NA,NA,0,NA,NA,-3.38771528667874,-3.43068861961365,0.0676219381820228
+5000,84643,441197.952,84743,441097.952,99,49,3.68421052631579,0.035,7.73883642549597,0.619047619047619,NA,0.101234748983406,0.765,76.5,1,99.2456636792102,0.963125483978023,76.5,56.1371991338294,5,-3.36531329154968,-3.41049861907959,0.0464884055275169
+5001,84743,451097.952,84843,450997.952,0,50,35.5,0.071,9.70623558724131,0.416693823417961,10.7082039324994,-0.0160186869859172,0.0375,3.75,2,73.5560880530256,0.763872491145218,3.5,4.55228474934896,0,-3.55012675126394,-3.70514965057373,0.230085607487252
+5002,84743,450997.952,84843,450897.952,1,50,42,0.14,17.8507580905149,0.581128747795414,13.4628120507726,-0.0311909472009029,0.005,0.5,1,30.8308651382582,1,0.5,21.2132034301758,21.2132034301758,-3.81974020600319,-3.872722864151,0.0749107667879169
+5003,84743,450897.952,84843,450797.952,2,50,14,0.0466666666666667,12.8352421156704,0.396367521367521,14.5246277368648,-0.0158522189508949,0.0025,0.25,1,0,NA,0.25,21.2132034301758,21.2132034301758,-3.86784579356511,-3.88000011444092,0.0258670221069657
+5004,84743,450797.952,84843,450697.952,3,50,5.75,0.00522727272727273,2.23608239887492,0.0543290043290043,16.3455908011859,0.00616578159089841,0.0025,0.25,1,0,NA,0.25,18.0277557373047,18.0277557373047,-3.82715548574924,-3.87764286994934,0.0600110829806932
+5005,84743,450697.952,84843,450597.952,4,50,28,0.04,5.8812538160334,0.165945165945166,19.3892986122156,-0.00580657443180939,0,0,0,NA,NA,0,NA,NA,-3.75256659587224,-3.81430244445801,0.0709737056340468
+5006,84743,450597.952,84843,450497.952,5,50,11.5,0.0127777777777778,4.71397223892342,0.162345679012346,15.9611757577686,0.00341460466467652,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859,-3.64054173231125,-3.70099306106567,0.0693312515939531
+5007,84743,450497.952,84843,450397.952,6,50,4,0.00333333333333333,0.919627825494395,0.0486111111111111,20.9165854462984,0.00290051495750959,0,0,0,NA,NA,0,NA,NA,-3.5668802857399,-3.63016033172607,0.0752326720697478
+5008,84743,450397.952,84843,450297.952,7,50,8.25,0.00825,3.76213886758283,0.137380952380952,19.2208008249827,0.00466616673126737,0.0225,2.25,2,55.8584010807395,0.744245524296675,1.5,6.66883150736491,0,-3.64605410397053,-3.78470540046692,0.120452606792142
+5009,84743,450297.952,84843,450197.952,8,50,29,0.058,9.53070852230065,0.456535947712418,21.3464208641203,0.0122017003287169,0.0525,5.25,2,77.0265364828171,0.868073878627968,4.75,1.42857142857143,0,-3.85249461730321,-3.96220421791077,0.139216218769289
+5010,84743,450197.952,84843,450097.952,9,50,31.25,0.0446428571428571,9.50076862262654,0.357877212187557,16.5660800862551,0.00748604142746444,0.09,9,1,87.719298245614,0.871794871794872,9,1.25,0,-4.00192467371623,-4.07099151611328,0.0917266397636163
+5011,84743,450097.952,84843,449997.952,10,50,9,0.015,6.35483807299545,0.166666666666667,19.099383145374,-0.00920278815900019,0.0025,0.25,1,0,NA,0.25,5,5,-4.07410469651222,-4.11142587661743,0.0438876958457236
+5012,84743,449997.952,84843,449897.952,11,50,13.25,0.0120454545454545,5.98529930294886,0.157775810048537,12.3060282338596,0.0029173958381034,0,0,0,NA,NA,0,NA,NA,-4.09123122692108,-4.11890077590942,0.0312348724451997
+5013,84743,449897.952,84843,449797.952,12,50,6.75,0.0084375,3.95207139614757,0.1015625,18.0195672095182,-0.00457631750343353,0.01,1,2,34.5233986084855,0.494949494949495,0.75,5.81285190582275,0,-4.10187140107155,-4.11917352676392,0.0226479629121874
+5014,84743,449797.952,84843,449697.952,13,50,11,0.022,4.28128869307229,0.165315315315315,29.7989898732233,0.00345559742982005,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-4.09578549861908,-4.10817050933838,0.0305443351706543
+5015,84743,449697.952,84843,449597.952,14,50,42.5,0.141666666666667,16.385057350638,0.511274509803922,20.4044011451988,-0.00435785099130953,0.005,0.5,2,0,1,0.25,2.5,0,-4.0318751335144,-4.10784292221069,0.112502096596387
+5016,84743,449597.952,84843,449497.952,15,50,13,0.0144444444444444,4.69800531934104,0.2722810111699,13.2335382585173,0.00933334989106697,0.1,10,4,78.1661763294126,0.684908789386401,6.5,5.63580093383789,0,-3.88644860188166,-4.04966831207275,0.223140196669671
+5017,84743,449497.952,84843,449397.952,16,50,31.25,0.0390625,7.048246081821,0.332126612828367,13.0440509954173,0.0213306242173712,0.255,25.5,6,88.9191420674506,0.699270180071148,18,3.3441089555329,0,-3.56713339686394,-3.90136504173279,0.368522558294475
+5018,84743,449397.952,84843,449297.952,17,50,52,0.173333333333333,14.4149419461367,0.407788944723618,12.4535599249993,0.0428114750932582,0.445,44.5,2,96.8902008288083,0.764506147484871,43.75,1.86737945642364,0,-2.99792399009069,-3.50580143928528,0.426268370846739
+5019,84743,449297.952,84843,449197.952,18,50,25.5,0.06375,8.45529685654477,0.314658759883479,11.0355339059327,0.0270113601268167,0.275,27.5,3,93.3706358257172,0.798994974874372,26,4.65478333559903,0,-3.01868024468422,-3.32413101196289,0.338191401369478
+5020,84743,449197.952,84843,449097.952,19,50,21.5,0.1075,12.0123002047606,0.483134920634921,75.1664818918645,0.0281789078545808,0.265,26.5,2,94.4320031312769,0.900274245823984,26.25,4.54935964548363,0,-3.0929375688235,-3.26827073097229,0.153095949472712
+5021,84743,449097.952,84843,448997.952,20,50,11.5,0.0127777777777778,4.07655738072436,0.156472128694351,13.7984411872174,-0.00116036761976375,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,2.77777777777778,0,-3.09076543649038,-3.28355693817139,0.232260542475795
+5022,84743,448997.952,84843,448897.952,21,50,24.75,0.061875,10.3623689510023,0.278703703703704,20.9475994420253,0.00530726190343557,0.09,9,3,79.2984921875539,0.78021978021978,6.25,2.62401697370741,0,-2.98913924396038,-3.30211710929871,0.436230960585972
+5023,84743,448897.952,84843,448797.952,22,50,27,0.09,20.2831263891201,0.406568223997418,24.7939978446421,0.0121201100986718,0.05,5,2,76.3172662672173,0.830220713073005,4.5,1.5,0,-2.63223986824354,-3.23303771018982,1.04966309154468
+5024,84743,448797.952,84843,448697.952,23,50,51.25,0.25625,19.9594985137349,0.625438596491228,46.0977222864644,0.0397373749367216,0.4375,43.75,3,94.8220774918512,0.856897144822841,39.25,0.771428571428571,0,-0.601603304967284,-2.93443560600281,2.40343147764747
+5025,84743,448697.952,84843,448597.952,24,50,80.25,0.40125,20.2085463210614,0.492424242424242,11.1803398874989,0.0211053305776113,0.29,29,3,92.2614371950921,0.765258215962441,22.5,0.664405756983264,0,0.55968502163887,-0.442627996206284,1.09181685084463
+5026,84743,448597.952,84843,448497.952,25,50,56.5,0.188333333333333,13.9440821258862,0.29920279023418,11.937129433614,0.017764756415927,0.1425,14.25,6,77.7979487893316,0.666805497709288,7.5,0.913527505439624,0,0.0362543324008584,-0.538817048072815,0.595744704812351
+5027,84743,448497.952,84843,448397.952,26,50,44.25,0.22125,16.9858626854199,0.47047619047619,40.3112887414927,0.0171731043600425,0.2625,26.25,2,92.5974912503282,0.921083310913819,24,1.39250669933501,0,-0.642970411727826,-0.963434338569641,0.450336253113084
+5028,84743,448397.952,84843,448297.952,27,50,0,NA,NA,NA,NA,0.00324027978348568,0,0,0,NA,NA,0,NA,NA,-0.930900864303112,-1.08862018585205,0.267658881437277
+5029,84743,448297.952,84843,448197.952,28,50,12.5,0.025,5.97793951443458,0.226651126651127,13.3350874910926,0.0276489436129964,0.2325,23.25,3,88.6763763874864,0.850869275146187,18.5,7.51207275800807,0,-0.938956881562869,-1.04309725761414,0.210164418022655
+5030,84743,448197.952,84843,448097.952,29,50,30.75,0.05125,9.78901042080356,0.316894473838918,11.380711874577,0.0560564083329518,0.5075,50.75,3,93.6737070333249,0.795338566562092,35.25,3.74456753284473,0,-0.612409315072,-0.871501326560974,0.351752756113789
+5031,84743,448097.952,84843,447997.952,30,50,26,0.0216666666666667,4.95455737335517,0.22768759018759,12.4729069562141,0.030024255035496,0.2275,22.75,4,87.1863232937829,0.720324423668545,15.25,2.51804544637491,0,-0.12595533238103,-0.364151358604431,0.373495299211032
+5032,84743,447997.952,84843,447897.952,31,50,3.75,0.00625,1.96505406952747,0.118518518518519,16.562716827027,0.00322059859162437,0.015,1.5,3,33.3339461453335,0.419869470630892,0.75,6.2322572072347,0,0.303837958878527,-0.0292532797902822,0.39680499663136
+5033,84743,447897.952,84843,447797.952,32,50,8.5,0.02125,6.43667193661308,0.341337719298246,25.7296685460897,0.0021181215972274,0.0325,3.25,1,76.0684107249879,1,3.25,6.78856981717623,0,0.631461331620812,0.213856309652328,0.485137585313525
+5034,84743,447797.952,84843,447697.952,33,50,7,0.0175,4.04607798479142,0.324195906432749,37.2158425824568,-0.00273126700950115,0.01,1,1,52.6315789473684,0.747474747474748,1,44.8058099746704,38.0788650512695,1.0492106800278,0.484980493783951,0.574497752117447
+5035,84743,447697.952,84843,447597.952,34,50,4,0.004,1.22004475878125,0.0569444444444444,19.6774632932109,0.00156061475224305,0,0,0,NA,NA,0,NA,NA,1.58635552600026,0.926025092601776,0.511402614938137
+5036,84743,447597.952,84843,447497.952,35,50,12.25,0.0204166666666667,5.70954278645578,0.237777777777778,14.4093898872169,0.0104771031008931,0.005,0.5,2,0,1,0.25,5.59016990661621,0,1.89559171597163,1.59051966667175,0.362971169062532
+5037,84743,447497.952,84843,447397.952,36,50,9.25,0.0132142857142857,4.92988745464553,0.199234693877551,22.4150614532868,0.00826406170093833,0.065,6.5,2,75.9874103064922,0.791313421155602,3.5,7.36247422144963,0,1.90381951630116,1.70832896232605,0.24993315571031
+5038,84743,447397.952,84843,447297.952,37,50,1.75,0.00583333333333333,1.41300246086697,0.144444444444444,41.0337402150692,0.0127128286894234,0.125,12.5,5,78.6388632321236,0.717647058823529,7.75,23.6766566467285,0,1.94742973645528,1.8285721540451,0.1360793157606
+5039,84743,447297.952,84843,447197.952,38,50,3,0.006,2.46211650579089,0.2,17.4721359549996,0.00717576815011853,0.0725,7.25,4,70.5222397370398,0.747663015426966,4.25,10.4233711505758,0,2.00455007702112,1.93420326709747,0.0676852632437129
+5040,84743,447197.952,84843,447097.952,39,50,9.75,0.01625,5.75242932978824,0.223611111111111,17.2787868431686,0.0208902856616078,0.105,10.5,5,74.3821340990601,0.700999291840428,6.5,4.52641814095633,0,1.92119852701823,1.71826589107513,0.19158442217571
+5041,84743,447097.952,84843,446997.952,40,50,25.75,0.12875,27.2056438814958,0.58158295281583,25,0.00232546396422549,0.12,12,6,75.8811563801711,0.667405764966741,7,5.44422427813212,0,1.72927954047918,1.49030029773712,0.224417365234515
+5042,84743,446997.952,84843,446897.952,41,50,54,0.108,11.2037327873485,0.455972092054566,15.5280239729053,0.0511629205937788,0.4875,48.75,5,92.6893291603292,0.746664869963617,35.75,2.11996837518154,0,1.51209176580111,1.29056596755981,0.272959956384791
+5043,84743,446897.952,84843,446797.952,42,50,20,0.02,4.4696210593533,0.183365449628127,14.739439945104,0.0267469118481131,0.17,17,6,77.8274154069638,0.665890452566569,7.25,5.18676123899572,0,1.1910337433219,0.914748311042786,0.272757552750621
+5044,84743,446797.952,84843,446697.952,43,50,14,0.014,4.25410598587273,0.22039592760181,16.454475039801,0.014920841754938,0.08,8,5,68.2633656199126,0.686454849498328,4,5.59431582689285,0,0.934327205022176,0.743727624416351,0.229933693183314
+5045,84743,446697.952,84843,446597.952,44,50,10.75,0.0179166666666667,4.46032294038951,0.265941434044882,17.7704627669473,0.0169047033121478,0.0875,8.75,5,70.5273911883726,0.716580066131318,3.75,7.79407762799944,0,0.892433772484461,0.729181349277496,0.223357826058561
+5046,84743,446597.952,84843,446497.952,45,50,4.5,0.005625,1.20263776041684,0.0875,20.2036497354842,0.0125716390428715,0.0725,7.25,5,64.2050196276152,0.655904111945862,2.75,16.1244835031444,0,0.893673934042454,0.508958637714386,0.279877345365469
+5047,84743,446497.952,84843,446397.952,46,50,21,0.0233333333333333,5.75199352407086,0.227865961199295,13.3515329182423,-0.00717798930549179,0.025,2.5,6,35.5048353375862,0.211045364891519,1.25,2.11803398132324,0,0.624866998444001,0.0968991965055466,0.401715026150873
+5048,84743,446397.952,84843,446297.952,47,50,0.5,0.005,2.5,0.166666666666667,NA,-0.0166137529550724,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,7.06449508666992,5,0.418811071896926,0,0.333461355876614
+5049,84743,446297.952,84843,446197.952,48,50,8.5,0.0283333333333333,5.84962887481895,0.378787878787879,34.0671775148509,-0.00172879223291687,0.0725,7.25,2,77.5825456465957,0.793542467167517,4,7.82910603490369,0,0.203125098720193,0,0.290668799972145
+5050,84743,446197.952,84843,446097.952,49,50,4,0.01,3.573971209465,0.296875,23.3315933705188,0.00386893629498218,0,0,0,NA,NA,0,NA,NA,0.380243710707873,0.0805901363492012,0.246173052193878
+5051,84743,446097.952,84843,445997.952,50,50,3.75,0.0075,2.22683614235022,0.216666666666667,11.634413615168,0.00542809150851099,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,0.529097008208434,0.277105152606964,0.237026518385208
+5052,84743,445997.952,84843,445897.952,51,50,0,NA,NA,NA,NA,0.000575868395353609,0,0,0,NA,NA,0,NA,NA,0.587472684681416,0.41226914525032,0.191277052517913
+5053,84743,445897.952,84843,445797.952,52,50,5.5,0.00785714285714286,2.17100506981634,0.164021164021164,14.1404937680974,0.00396116558049471,0.01,1,2,30.8308651382582,0.494949494949495,0.5,8.01776695251465,5,0.487543997665246,0.432805478572845,0.104062735226616
+5054,84743,445797.952,84843,445697.952,53,50,2.25,0.0075,2.50306718630635,0.237037037037037,44.9509379141286,0.000570029576251727,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,0.569503117352724,0.302030891180038,0.386429050704342
+5055,84743,445697.952,84843,445597.952,54,50,0,NA,NA,NA,NA,-0.00346459802396566,0,0,0,NA,NA,0,NA,NA,1.13883198797703,0.515040159225464,0.640551877631284
+5056,84743,445597.952,84843,445497.952,55,50,0,NA,NA,NA,NA,0.00377878759669329,0,0,0,NA,NA,0,NA,NA,0.945034811894099,0.437691450119019,0.586007628176648
+5057,84743,445497.952,84843,445397.952,56,50,0,NA,NA,NA,NA,-0.00929445715839393,0,0,0,NA,NA,0,NA,NA,0.0532618012512103,-0.399386316537857,0.558790655452758
+5058,84743,445397.952,84843,445297.952,57,50,3.25,0.0325,8.78073918532634,0.538461538461538,NA,-0.0144276344949907,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,38.8709476695341,25,-0.629706390202045,-0.892195403575897,0.342123294561664
+5059,84743,445297.952,84843,445197.952,58,50,17.25,0.0575,6.71426615804363,0.295454545454545,18.8742588672279,-0.0105307270369622,0.0475,4.75,2,77.4113871538258,0.818988143723414,4.5,2.36842105263158,0,-0.799848301336169,-1.12496364116669,0.560088180968727
+5060,84743,445197.952,84843,445097.952,59,50,8.25,0.020625,5.29954899450367,0.353670634920635,17.5,-0.0132869857842525,0.015,1.5,1,62.2896536353828,1,1.5,1.66666666666667,0,-0.988823269804319,-1.20272946357727,0.470433115035137
+5061,84743,445097.952,84843,444997.952,60,50,23.75,0.059375,11.8375537173487,0.433266742770167,10,0.000159239666500071,0.0875,8.75,3,78.5875856552017,0.848842701936703,7,4.51371372767857,0,-1.1592527590692,-1.28660047054291,0.291312803767936
+5062,84743,444997.952,84843,444897.952,61,50,46.25,0.0385416666666667,5.80858773226325,0.267273987586488,10.0983616572916,0.021222555100212,0.3625,36.25,3,93.8260136742394,0.79874213836478,29.75,2.12665110620959,0,-1.18283046782017,-1.32484304904938,0.302039800720469
+5063,84743,444897.952,84843,444797.952,62,50,22,0.02,5.17237603170695,0.19616016625586,12.77147925231,0.00483175598579692,0.18,18,2,87.6556575485763,0.846360668331093,12.75,4.15069280730353,0,-1.38558531552553,-1.49982178211212,0.170503882874178
+5064,84743,444797.952,84843,444697.952,63,50,37,0.04625,6.78335128646563,0.257552083333333,14.0492928703275,0.0414298629108271,0.3825,38.25,5,90.5696685859945,0.775238808765687,27.25,3.9519664789337,0,-1.51893357435862,-1.56545448303223,0.098030340836327
+5065,84743,444697.952,84843,444597.952,64,50,20.25,0.0184090909090909,4.2561936653595,0.259469696969697,10.9444032865743,0.0136902455475774,0.1375,13.75,3,88.5916069644314,0.865751334858886,13.25,2.93114915327592,0,-1.53880251199007,-1.56970226764679,0.0572018759392697
+5066,84743,444597.952,84843,444497.952,65,50,11,0.00611111111111111,2.13704171532592,0.103086419753086,11.3089169015643,0.0122472555443892,0.1425,14.25,7,77.4025230563014,0.58350687213661,6.25,7.9078421676368,0,-1.46949279308319,-1.52750384807587,0.0765562825295789
+5067,84743,444497.952,84843,444397.952,66,50,10.25,0.00683333333333333,2.13097576245386,0.175925925925926,15.4721359549996,0.0178922615524061,0.09,9,4,79.1315433379221,0.706959706959707,7.25,6.41721593009101,0,-1.39964638153712,-1.49311399459839,0.108172310484149
+5068,84743,444397.952,84843,444297.952,67,50,25.75,0.02575,4.07135163008054,0.171963824289406,16.1983557278591,0.0122313934629051,0.1325,13.25,3,86.9493979744503,0.911327865218355,12.5,0.660377358490566,0,-1.37385921925306,-1.48466217517853,0.1291552315619
+5069,84743,444297.952,84843,444197.952,68,50,14,0.01,2.68066286399671,0.16950006012506,11.7506032997276,0.0138243959272404,0.0425,4.25,4,57.5863751631355,0.5822454308094,1.75,4.36130209530101,0,-1.44908918937047,-1.60902237892151,0.167287617268051
+5070,84743,444197.952,84843,444097.952,69,50,42.5,0.141666666666667,14.445909159624,0.378545826932924,16.6666666666667,-0.0105315809269086,0.0225,2.25,4,38.4629500951775,0.403239556692242,1,0.555555555555556,0,-1.67767959088087,-1.82910871505737,0.163999859047242
+5071,84743,444097.952,84843,443997.952,70,50,63.25,0.1265,14.0199256739008,0.467591094932047,11,0.0504424179882881,0.3275,32.75,4,93.5300949583669,0.925339472087851,31.5,2.10194915305567,0,-1.80968210101128,-1.8442462682724,0.0556969772615337
+5072,84743,443997.952,84843,443897.952,71,50,57.25,0.28625,21.4436520563589,0.60176282051282,25,0.0400755189038273,0.3975,39.75,4,92.6579116851052,0.795373159779458,29.5,3.69469577861282,0,-1.73330088704824,-1.83817291259766,0.125111935290725
+5073,84743,443897.952,84843,443797.952,72,50,63.25,0.105416666666667,9.78641976108579,0.385516285516286,10.8333333333333,0.0366117158763154,0.355,35.5,4,90.065691944626,0.779367918902803,18.75,2.69564609796229,0,-1.79823568463326,-1.90272104740143,0.108593790788738
+5074,84743,443797.952,84843,443697.952,73,50,55.75,0.185833333333333,13.4361229989817,0.411546338965694,11.937129433614,0.0498730815500858,0.5775,57.75,2,97.2917687078153,0.939592800560139,56.5,2.2084931130017,0,-1.91358811408281,-1.96186137199402,0.0762500140571319
+5075,84743,443697.952,84843,443597.952,74,50,53.75,0.26875,23.9792475066388,0.820261437908497,18.0277563773199,0.0336959259754417,0.435,43.5,2,94.02377864116,0.784964022826896,26,1.99790110533265,0,-1.82935841878255,-1.93148446083069,0.194163655439156
+5076,84743,443597.952,84843,443497.952,75,50,89.5,0.4475,24.0473453408328,0.791107503607504,10,0.0517942357849097,0.4675,46.75,4,92.5197866677617,0.810035550489837,34.25,1.11381963230072,0,-1.362100597471,-1.77542269229889,0.476406037845164
+5077,84743,443497.952,84843,443397.952,76,50,100,1,38.2238923285138,0.934166666666667,NA,0.0650719485827722,0.6425,64.25,3,97.84641645479,0.744122821045898,62.5,0,0,-0.832381580024958,-1.27087354660034,0.510589962715075
+5078,84743,443397.952,84843,443297.952,77,50,90.25,0.45125,20.1044301654883,0.67874531835206,11.1803398874989,0.057504564778792,0.6825,68.25,2,98.3916400605444,0.790846456692913,66.75,0.396645682198661,0,-1.40731705228488,-1.89180016517639,0.688245542270339
+5079,84743,443297.952,84843,443197.952,78,50,71.25,0.178125,11.827286817736,0.427693833943834,11.25,0.0608055320153653,0.6425,64.25,1,98.697022509981,0.877876800953724,64.25,1.89117958573516,0,-2.31806145608425,-2.56650471687317,0.333257330573498
+5080,84743,443197.952,84843,443097.952,79,50,83.25,0.8325,36.8786838735325,0.875375375375375,NA,0.0605511000644037,0.635,63.5,1,98.6583599459141,0.815816737653966,63.5,0.31496062992126,0,-2.62805660565694,-2.68343234062195,0.08561858682396
+5081,84743,443097.952,84843,442997.952,80,50,40.25,0.134166666666667,13.9371991222522,0.534651179312305,13.3333333333333,0.0464571121695553,0.39,39,2,95.8036830869689,0.897183983549437,38,4.28958709423359,0,-2.72680263221264,-2.93936395645142,0.0987703105885385
+5082,84743,442997.952,84843,442897.952,81,50,1,0.0025,0,0,20.6155281280883,0.00921482186041885,0.04,4,5,50.9234260275385,0.522569444444444,1.5,13.0167655944824,5,-2.69385802745819,-2.72411108016968,0.0392767298811351
+5083,84743,442897.952,84843,442797.952,82,50,0,NA,NA,NA,NA,0.0012793176696141,0.0975,9.75,1,88.4075627573592,0.965906669507778,9.75,112.835964691945,99.6242904663086,-2.68169447779655,-2.73806977272034,0.0524151711138572
+5084,84743,442797.952,84843,442697.952,83,50,0,NA,NA,NA,NA,-0.0359423692683049,0,0,0,NA,NA,0,NA,NA,-2.7799808382988,-2.85173392295837,0.10623033504222
+5085,84743,442697.952,84843,442597.952,84,50,0,NA,NA,NA,NA,0.0443671734828604,0.2975,29.75,1,95.613700031282,0.947278239093186,29.75,85.8011338049624,60,-2.99550266563892,-3.10394215583801,0.132144793381693
+5086,84743,442597.952,84843,442497.952,85,50,1,0.0025,0,0,26.9860766676823,0.0704473801026688,0.6,60,3,94.639797349338,0.810690423162584,29.5,35.1036227623622,0,-3.16641292969386,-3.19297528266907,0.0502368637637699
+5087,84743,442497.952,84843,442397.952,86,50,3.75,0.00625,2.63888888888889,0.175925925925926,18.5214174205718,0.0799731776257977,0.8675,86.75,1,99.6123355042629,0.735388863322596,86.75,22.0910952125571,0,-3.1869041621685,-3.1978805065155,0.0231747234140198
+5088,84743,442397.952,84843,442297.952,87,50,0,NA,NA,NA,NA,0.0284312333343405,0.1825,18.25,2,88.2210000582554,0.78019877675841,11,56.9099262707854,38.0788650512695,-3.14181981484095,-3.17251133918762,0.044256766726382
+5089,84743,442297.952,84843,442197.952,88,50,13,0.13,26.4800847780712,0.657051282051282,NA,0.0183027608936027,0.175,17.5,2,87.5635619302482,0.881744271988175,10.75,11.3973777226039,0,-3.06514972448349,-3.10544967651367,0.0498468442446751
+5090,84743,442197.952,84843,442097.952,89,50,0.75,0.00375,1.25,0.0833333333333333,20.6155281280883,0.00572879666904555,0,0,0,NA,NA,0,NA,NA,-3.12389624118805,-3.18304109573364,0.0639278529373445
+5091,84743,442097.952,84843,441997.952,90,50,0,NA,NA,NA,NA,-0.0214360658562418,0,0,0,NA,NA,0,NA,NA,-3.18861734867096,-3.23965668678284,0.0516355328819313
+5092,84743,441997.952,84843,441897.952,91,50,0,NA,NA,NA,NA,-0.0611146664386615,0,0,0,NA,NA,0,NA,NA,-3.16258344054222,-3.2344868183136,0.0658471950029502
+5093,84743,441897.952,84843,441797.952,92,50,8,0.02,6.50760268462922,0.242916666666667,12.1352549156242,-0.0458085884354659,0.15,15,2,86.8029259249605,0.830316742081448,11.25,18.8575923283895,0,-3.07964686552683,-3.16287207603455,0.0796965093601662
+5094,84743,441797.952,84843,441697.952,93,50,16.25,0.040625,12.8392659363559,0.349124053030303,12.661237755615,0.0760995871843625,0.5275,52.75,2,94.7935131904616,0.848828420256992,33,18.9999298891185,0,-3.07364512979984,-3.2316997051239,0.12953828140313
+5095,84743,441697.952,84843,441597.952,94,50,13,0.013,4.56557889069984,0.149596774193548,11.4073767513335,0.0371328984412685,0.2925,29.25,3,92.1032478628144,0.846656443762917,25.75,10.0276650485829,0,-3.12554885943731,-3.33413505554199,0.180327838396077
+5096,84743,441597.952,84843,441497.952,95,50,16,0.0145454545454545,4.09096930329105,0.211447811447811,11.6368755270416,-0.0120066095596053,0.1325,13.25,2,89.3250663717934,0.784653386958862,12.75,4.16981679088665,0,-3.21995875239372,-3.389488697052,0.210112565573948
+5097,84743,441497.952,84843,441397.952,96,50,0,NA,NA,NA,NA,-0.057649744305636,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,35.8702708973604,10,-3.34184261163076,-3.49359464645386,0.207206544959323
+5098,84743,441397.952,84843,441297.952,97,50,0,NA,NA,NA,NA,-0.0885837579303188,0,0,0,NA,NA,0,NA,NA,-3.37003287672997,-3.50517296791077,0.175152527964482
+5099,84743,441297.952,84843,441197.952,98,50,13.5,0.045,6.94120655320231,0.237179487179487,50.0317116303292,-0.113530017937483,0.0025,0.25,1,0,NA,0.25,0,0,-3.28693395853043,-3.39899158477783,0.111336921429908
+5100,84743,441197.952,84843,441097.952,99,50,15,0.1425,19.7823451052079,0.754385964912281,NA,-0.00146082443163323,0.0325,3.25,2,64.4889415222974,0.770312948607522,2,41.2532122685359,7.07106781005859,-3.2983760535717,-3.35957956314087,0.0611466439585006
+5101,84843,451097.952,84943,450997.952,0,51,33,0.0825,18.6655905623769,0.472140065033901,20.6577873288131,-0.00127958358491014,0.0075,0.75,1,44.4894453484604,1,0.75,7.35702260335286,5,-3.58512910207113,-3.73282051086426,0.221430573242204
+5102,84843,450997.952,84943,450897.952,1,51,35,0.0875,10.2886909761077,0.302025641025641,10.5901699437495,-0.0290608094691197,0,0,0,NA,NA,0,NA,NA,-3.81535462538401,-3.84844374656677,0.0575160914858521
+5103,84843,450897.952,84943,450797.952,2,51,8.75,0.0125,4.30644850998318,0.179761904761905,22.6818011327899,-0.0156526968878461,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471,-3.80575566821628,-3.84659385681152,0.0670834394081476
+5104,84843,450797.952,84943,450697.952,3,51,4.25,0.0085,4.84364534623676,0.0873015873015873,26.8781659690576,0.00426187684477554,0,0,0,NA,NA,0,NA,NA,-3.68549130360285,-3.77805137634277,0.120288681211626
+5105,84843,450697.952,84943,450597.952,4,51,2.75,0.00392857142857143,1.47732314116909,0.0634920634920635,22.7577020416477,0.00352522685034273,0.0125,1.25,2,43.859649122807,0.594936708860759,1,23.0390830993652,10,-3.63009463416206,-3.68691682815552,0.0995133376716899
+5106,84843,450597.952,84943,450497.952,5,51,7.25,0.00725,2.22418251073737,0.115353535353535,12.128990204492,0.010048744394644,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,21.2052555084229,10,-3.66530587275823,-3.71928691864014,0.0567785193500525
+5107,84843,450497.952,84943,450397.952,6,51,8,0.00571428571428571,2.44593217973542,0.0892857142857143,13.6620007149965,0.00452101999570914,0.0025,0.25,1,0,NA,0.25,0,0,-3.7309336927202,-3.81559586524963,0.106085283001942
+5108,84843,450397.952,84943,450297.952,7,51,39,0.0975,11.1005219955539,0.359444444444444,16.0849460005254,0.0189648943407337,0.1175,11.75,3,83.5887424126546,0.773371104815864,9.25,6.99125188462278,0,-3.82635613282522,-3.94955730438232,0.146061718025131
+5109,84843,450297.952,84943,450197.952,8,51,31.5,0.045,11.3232503996401,0.393202355569093,16.8814545832626,0.030616255069217,0.2525,25.25,2,94.1295546558704,0.911306565161958,25,2.56430642911703,0,-3.98055577278137,-4.05117607116699,0.112520112544705
+5110,84843,450197.952,84943,450097.952,9,51,13.75,0.0275,10.7468259637312,0.32843137254902,12.9574173292382,0.0153949559723696,0.105,10.5,3,84.329024435403,0.748209929970887,9.25,4.26021957397461,0,-4.07791879442003,-4.11086511611938,0.0555301779552122
+5111,84843,450097.952,84943,449997.952,10,51,6,0.03,11.095465940837,0.204545454545455,50,-0.00671479198979796,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,5.19400133405413,0,-4.12035330136617,-4.13000011444092,0.0186730042874972
+5112,84843,449997.952,84943,449897.952,11,51,13.25,0.033125,13.293970861719,0.183581504702194,18.9296090374969,-0.0104236478942494,0.005,0.5,2,0,1,0.25,6.0355339050293,5,-4.12879345152113,-4.13000011444092,0.00795501881648646
+5113,84843,449897.952,84943,449797.952,12,51,16.5,0.0275,6.21575787547098,0.177729284112263,13.0693654216063,-0.00243086940312423,0.01,1,2,30.8308651382582,0.242424242424242,0.5,4.7855339050293,0,-4.10930784543355,-4.13000011444092,0.0341232714971256
+5114,84843,449797.952,84943,449697.952,13,51,27.5,0.06875,7.57261245625883,0.239583333333333,17.1434708026486,0.0017086297584774,0.0625,6.25,3,71.6645375984106,0.733333333333333,3.5,7.38165237426758,0,-4.01868560579088,-4.08562564849854,0.116722935078367
+5115,84843,449697.952,84943,449597.952,14,51,23,0.0255555555555556,4.79027950781567,0.259676126342793,16.2941315095187,-0.00646601409389518,0.0675,6.75,1,85.0052537126447,0.875303946630089,6.75,6.14522036799678,0,-3.7975102464358,-3.97050094604492,0.245612351740333
+5116,84843,449597.952,84943,449497.952,15,51,22.25,0.0370833333333333,6.65693036876842,0.361111111111111,25.6641234244409,0.0286779994471362,0.27,27,5,88.0159848410479,0.782226905514577,14.75,4.26384373064394,0,-3.39853146341112,-3.61850214004517,0.319116888319719
+5117,84843,449497.952,84943,449397.952,16,51,61.25,0.30625,17.5974894616907,0.385245901639344,26.9258240356725,0.0763751383436011,0.6425,64.25,4,97.867712152931,0.779015163630548,63,1.68848324193101,0,-3.14633085330327,-3.40556263923645,0.264323570891044
+5118,84843,449397.952,84943,449297.952,17,51,44.75,0.0895,10.2598683567603,0.492820512820513,12.8191319096608,0.0386904359809705,0.4425,44.25,3,94.1784111597606,0.769613691529189,37,1.7386942502469,0,-3.12991144922045,-3.41462135314941,0.437176156071173
+5119,84843,449297.952,84943,449197.952,18,51,12,0.03,7.08365989296522,0.471643518518519,15.123774391991,0.0144519273976493,0.185,18.5,4,84.8712655030717,0.773478055686645,9.25,3.13321830130912,0,-3.43529921770096,-3.50860667228699,0.240332463743976
+5120,84843,449197.952,84943,449097.952,19,51,41,0.41,30.9836595056829,0.832317073170732,NA,0.0103601136212546,0.1775,17.75,1,92.7707193874331,0.863829787234043,17.75,3.00054217056489,0,-3.22689382235209,-3.39926242828369,0.237439711960622
+5121,84843,449097.952,84943,448997.952,20,51,20.25,0.050625,7.47229649024928,0.278991841491841,14.7855339059327,0.0210398769926178,0.2725,27.25,1,95.1807759450405,0.860449700839046,27.25,3.08257146712837,0,-3.24805143144396,-3.35893511772156,0.251481592543656
+5122,84843,448997.952,84943,448897.952,21,51,7.5,0.015,4.30231912516538,0.158695652173913,17.4986021069313,0.00276826251508282,0.045,4.5,1,80.4523936425773,0.883653286794648,4.5,11.000638961792,5,-3.29915442069372,-3.34424138069153,0.243607479652738
+5123,84843,448897.952,84943,448797.952,22,51,1.75,0.0175,8.18723604699415,0.285714285714286,NA,-0.0124400914599937,0,0,0,NA,NA,0,NA,NA,-3.3121239344279,-3.34549832344055,0.107839711600842
+5124,84843,448797.952,84943,448697.952,23,51,24,0.12,30.1421219070781,0.396478873239437,11.1803398874989,-0.00301780512037112,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-2.947823792696,-3.31311106681824,0.867361614633687
+5125,84843,448697.952,84943,448597.952,24,51,37.75,0.18875,22.005692338174,0.693421052631579,42.4264068711929,0.00605780318791176,0.06,6,3,71.7893364729839,0.748040313549832,3.25,0.416666666666667,0,-1.76875657505459,-2.88591742515564,1.53163555231688
+5126,84843,448597.952,84943,448497.952,25,51,44.25,0.22125,24.4803370879971,0.650709706959707,10,-0.00173223530868199,0.1225,12.25,1,90.2255639097744,0.82363315696649,12.25,2.08966414782466,0,-0.690489519503899,-1.6546128988266,0.880077413616978
+5127,84843,448497.952,84943,448397.952,26,51,3.75,0.00625,1.51229691184148,0.12962962962963,29.5461904843302,-0.0265107471552437,0,0,0,NA,NA,0,NA,NA,-0.979783693949381,-1.04378926753998,0.164075996177789
+5128,84843,448397.952,84943,448297.952,27,51,4.25,0.02125,6.42902406381104,0.5,11.1803398874989,0.00290584613743704,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,9.78161512102399,0,-1.01755227148533,-1.08399677276611,0.148260131148201
+5129,84843,448297.952,84943,448197.952,28,51,9.5,0.0135714285714286,3.65862306143014,0.238460735171261,17.8871564690192,0.00593175462277941,0.0225,2.25,3,49.9662138210575,0.573742540494459,1.5,3.36916393703885,0,-0.853826052612729,-1.00733685493469,0.223581028569126
+5130,84843,448197.952,84943,448097.952,29,51,26.25,0.0291666666666667,5.42216906393474,0.233647390080139,16.2226626978229,0.0192333181097638,0.2125,21.25,4,87.0037137242113,0.806580468832124,12.25,5.85674045787138,0,-0.523824950059255,-0.777601778507233,0.213385378912525
+5131,84843,448097.952,84943,447997.952,30,51,33.25,0.0369444444444444,6.67415827911633,0.318962701678751,11.6666666666667,0.0130340162856919,0.14,14,1,91.1967767414513,0.820187005514265,14,3.82972519738334,0,-0.306454944941733,-0.361408919095993,0.108474611460279
+5132,84843,447997.952,84943,447897.952,31,51,29.5,0.0491666666666667,5.3315497560092,0.141369047619048,15.7636134880081,0.0376193033910022,0.3225,32.25,2,92.2319657671551,0.836696239302818,17.25,3.15228868824567,0,-0.206266823949085,-0.321040719747543,0.223289492201259
+5133,84843,447897.952,84943,447797.952,32,51,4.75,0.00678571428571429,2.74101957152266,0.184920634920635,20.0096735843152,0.0142987224487479,0.075,7.5,3,74.4999381242418,0.823496966354109,5.5,6.90602099100749,0,-0.0325054691638798,-0.255358040332794,0.297406592491455
+5134,84843,447797.952,84943,447697.952,33,51,6.5,0.0325,9.61655815305228,0.441102756892231,31.6227766016838,-0.00134563329788762,0,0,0,NA,NA,0,NA,NA,0.305637677510579,0.0351100116968155,0.398159918839362
+5135,84843,447697.952,84943,447597.952,34,51,15.5,0.0258333333333333,6.75442018990921,0.246875,27.0977808995485,0.00931128997033738,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,0.973049566149712,0.524330079555511,0.466570536687927
+5136,84843,447597.952,84943,447497.952,35,51,4.25,0.00607142857142857,1.49830522632845,0.119047619047619,24.2278019025268,0.0120854063603292,0.0225,2.25,2,56.58687201489,0.658994032395567,1.5,19.5062446594238,0,1.47745589415232,1.32652223110199,0.233536860439267
+5137,84843,447497.952,84943,447397.952,36,51,4.75,0.0158333333333333,4.4126687836159,0.240740740740741,33.5410196624968,0.0209791162507167,0.1325,13.25,4,80.6657436403374,0.721316147829116,9,24.6787021564987,0,1.71214519937833,1.58688902854919,0.133923769789793
+5138,84843,447397.952,84943,447297.952,37,51,18.5,0.0616666666666667,11.7345551042659,0.374019607843137,15.6419413452242,0.0352905470808696,0.22,22,6,84.3691395026327,0.722358321084436,13,11.5176951885223,0,1.92806494235992,1.83253717422485,0.11585854920924
+5139,84843,447297.952,84943,447197.952,38,51,5.5,0.01375,4.63332406392078,0.374255952380952,36.2862386525386,0.0170357574882246,0.08,8,3,73.0006111776685,0.749163879598662,3.25,4.27681732177734,0,2.078657746315,1.99650812149048,0.0808537839428348
+5140,84843,447197.952,84943,447097.952,39,51,17.5,0.0159090909090909,4.3436642856114,0.288203463203463,12.4306346124691,0.0269484637372989,0.2225,22.25,3,90.4894755992606,0.797771441282938,19.25,3.62037632974346,0,2.13070657518175,2.03707456588745,0.116255727217469
+5141,84843,447097.952,84943,446997.952,40,51,34.75,0.0695,7.26197797810755,0.30916884626562,21.9649916395355,0.0074747268787155,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,0.588235294117647,0,1.96550649404526,1.88508248329163,0.159202547502678
+5142,84843,446997.952,84943,446897.952,41,51,37.5,0.0625,8.32029313960552,0.360243257194477,19.2685164662547,0.023898216638554,0.2525,25.25,3,90.9822691970953,0.733919695485874,20,1.62836248567789,0,1.84057507250044,1.7215803861618,0.146300233173755
+5143,84843,446897.952,84943,446797.952,42,51,19.5,0.0216666666666667,4.48415135945983,0.197063730397064,11.9289644194442,0.0315071919302864,0.25,25,4,87.4122635106964,0.8,14,3.2951188659668,0,1.59387935201327,1.34019434452057,0.258546555051072
+5144,84843,446797.952,84943,446697.952,43,51,11,0.00916666666666667,3.35533747623809,0.185206228956229,15.2136009688006,0.0199666052814246,0.1025,10.25,6,71.5799921017568,0.693189616890719,5.25,9.60706459603658,0,1.44505778948466,1.25861048698425,0.312114274859543
+5145,84843,446697.952,84943,446597.952,44,51,24.75,0.02475,6.30476901443515,0.315375,12.2380164340659,0.0300788776280751,0.155,15.5,8,72.8128361959118,0.660311198772737,5.25,5.31730639549994,0,1.39579990175035,1.21000444889069,0.322953039746754
+5146,84843,446597.952,84943,446497.952,45,51,34.5,0.0383333333333333,5.58640968971605,0.190586419753086,11.8828057903237,0.0235023234671462,0.13,13,6,74.959963086555,0.586723492186491,4.5,2.27406553121713,0,1.28968908389409,1.09543478488922,0.289160341242801
+5147,84843,446497.952,84943,446397.952,46,51,29.75,0.0425,6.71468970950233,0.299813458146792,14.6560382917186,0.0145578790869513,0.1475,14.75,3,85.161767681849,0.873497786211259,12.5,3.82088198904264,0,1.02577969763014,0.805033028125763,0.321818197514983
+5148,84843,446397.952,84943,446297.952,47,51,1.75,0.004375,1.70386512994894,0.0833333333333333,40.5947212746138,-0.00369848973662556,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471,0.555851124227047,0.348933398723602,0.268966855827874
+5149,84843,446297.952,84943,446197.952,48,51,1,0.005,1.63509708815908,0.138888888888889,36.4005494464026,0.0133493240708776,0.26,26,4,88.8204206579908,0.855470443705738,20.25,36.6546765657572,11.1803398132324,0.225350063708093,0.152444824576378,0.111984903018261
+5150,84843,446197.952,84943,446097.952,49,51,1,0.005,1.63509708815908,0.138888888888889,22.3606797749979,0.0375830434100681,0.155,15.5,3,86.7905924570581,0.857549857549858,13.75,26.8951395711591,0,0.12227469154944,0.0339225195348263,0.0655154286203472
+5151,84843,446097.952,84943,445997.952,50,51,0.75,0.0025,0,0,64.173453246811,0.00388186379735998,0,0,0,NA,NA,0,NA,NA,0.0904574259701702,0,0.196133379846669
+5152,84843,445997.952,84943,445897.952,51,51,0,NA,NA,NA,NA,0.00568536797517481,0,0,0,NA,NA,0,NA,NA,0.279740184545517,0.128940224647522,0.181961881442343
+5153,84843,445897.952,84943,445797.952,52,51,1.25,0.00416666666666667,1.11111111111111,0.0740740740740741,25.0450574004956,0.00265713685616447,0.0125,1.25,1,58.1880425789518,1,1.25,2,0,0.440916548172633,0.334067046642303,0.167580721723932
+5154,84843,445797.952,84943,445697.952,53,51,0,NA,NA,NA,NA,0.00565637288843391,0,0,0,NA,NA,0,NA,NA,0.819060370326042,0.531699240207672,0.363746154005242
+5155,84843,445697.952,84943,445597.952,54,51,0.5,0.005,2.5,0.166666666666667,NA,-0.00277457116739242,0,0,0,NA,NA,0,NA,NA,1.33604025840759,0.977841138839722,0.476628772269871
+5156,84843,445597.952,84943,445497.952,55,51,0.5,0.005,2.5,0.166666666666667,NA,0.00817953510813368,0.01,1,2,30.8308651382582,0.494949494949495,0.5,20.0266904830933,0,1.22488060924742,0.834648966789246,0.581360158149816
+5157,84843,445497.952,84943,445397.952,56,51,8,0.0266666666666667,7.72441053991973,0.411513323278029,22.761423749154,0.0105215220804905,0.075,7.5,2,79.6623670967835,0.7573083287369,5.75,1.90236892700195,0,0.404535867273808,-0.0782194435596466,0.480658267544864
+5158,84843,445397.952,84943,445297.952,57,51,11,0.055,8.27710429758022,0.337209302325581,18.0277563773199,0.0311206162026247,0.355,35.5,2,96.0810876053689,0.827072152653548,35.25,12.9554985476212,0,0.215926636010408,-0.270172238349915,0.876363139882681
+5159,84843,445297.952,84943,445197.952,58,51,46,0.153333333333333,17.2700271192976,0.482294794794795,13.5385093760294,0.0196210722373962,0.2525,25.25,4,88.939378253928,0.770875293335058,15.25,2.87237190019966,0,1.13691795431077,-0.149839237332344,1.62344151806718
+5160,84843,445197.952,84943,445097.952,59,51,25.5,0.255,24.3899392330869,0.792483660130719,NA,0.01212599023032,0.165,16.5,1,92.3061588442808,0.854204634209841,16.5,0.606060606060606,0,0.555508835448159,-0.342998445034027,1.26904709697467
+5161,84843,445097.952,84943,444997.952,60,51,19.5,0.04875,8.87917817940646,0.322041316526611,13.0901699437495,0.00704728869670362,0.1,10,1,88.6195912622717,0.867330016583748,10,3.86161527633667,0,0.0465982376287381,-0.688174068927765,1.03330097136627
+5162,84843,444997.952,84943,444897.952,61,51,7.25,0.0241666666666667,10.2907291436862,0.223703703703704,32.4780549675086,0.0185179742619948,0.2125,21.25,2,92.5571335991024,0.840218648165668,20.5,6.13070413926068,0,-0.325235180556774,-0.865866243839264,0.771142372201757
+5163,84843,444897.952,84943,444797.952,62,51,17.25,0.0246428571428571,7.15150684470968,0.29973544973545,14.6301994490965,-0.000964924349127614,0.0525,5.25,5,57.1552604075627,0.571240105540897,2.5,10.5646740141369,0,-0.925453110287587,-1.36238980293274,0.714397577695061
+5164,84843,444797.952,84943,444697.952,63,51,17.25,0.0123214285714286,3.54068339105036,0.161149825783972,13.1545770464277,0.0200303585868312,0.215,21.5,2,89.1769681231061,0.816826943091462,12.75,4.2695422061654,0,-1.22798154089186,-1.45718479156494,0.43974458729298
+5165,84843,444697.952,84943,444597.952,64,51,32.25,0.026875,6.48668535839187,0.212750204248366,10.4435396259358,0.0360440100874257,0.355,35.5,3,91.1241036602118,0.749552772808587,18.25,3.73589975061551,0,-1.37023660540581,-1.50531661510468,0.253229134289964
+5166,84843,444597.952,84943,444497.952,65,51,35.25,0.0391666666666667,8.13340312169854,0.323126852777738,11.2012653667602,0.0201063697916061,0.2,20,5,84.0210132678204,0.700704225352113,13.25,4.42838976383209,0,-1.46625908215841,-1.51942300796509,0.115309041849908
+5167,84843,444497.952,84943,444397.952,66,51,31.75,0.0396875,6.88752922026741,0.278993055555556,13.4603944107785,0.00542919670523588,0.1325,13.25,6,72.3726960057982,0.619976565221522,4,4.14542917935353,0,-1.51914146211412,-1.53808784484863,0.0550269916098819
+5168,84843,444397.952,84943,444297.952,67,51,12.25,0.00816666666666667,1.65488480224249,0.0944691358024691,15.3961248069788,0.0129149631859582,0.075,7.5,4,75.3950334175579,0.801434087148373,6.25,3.64617570241292,0,-1.53665295243263,-1.56604170799255,0.0593401764667401
+5169,84843,444297.952,84943,444197.952,68,51,14.25,0.01425,5.05091680811259,0.133630952380952,13.1180339887499,0.0105173972543798,0.015,1.5,3,33.3339461453335,0.419869470630892,0.75,2.01184463500977,0,-1.64127398861779,-1.71920371055603,0.121964834906516
+5170,84843,444197.952,84943,444097.952,69,51,20.5,0.0683333333333333,13.0009786286563,0.416716716716717,20.7868932583326,0.0152450869389213,0.1925,19.25,2,92.4035041885147,0.899836095428884,19,2.39145630675477,0,-1.84387730558713,-1.93937110900879,0.11362337097694
+5171,84843,444097.952,84943,443997.952,70,51,32.5,0.325,28.2876215873214,0.767948717948718,NA,0.00656139706705289,0.185,18.5,2,91.5232221168933,0.839546956111373,17.75,1.08108108108108,0,-1.91889765527513,-1.9592764377594,0.0782052777654724
+5172,84843,443997.952,84943,443897.952,71,51,51.25,0.170833333333333,12.2168711640844,0.395462962962963,11.1803398874989,-0.163993445588858,0.0425,4.25,2,70.5473617155285,0.7911227154047,3.25,0.294117647058824,0,-1.866383989652,-1.95188724994659,0.130927060668556
+5173,84843,443897.952,84943,443797.952,72,51,28.75,0.02875,4.94425695325125,0.1894726062468,11.3541019662497,-0.0265585890921648,0.065,6.5,3,74.9780626833141,0.713055954088953,5,4.00546675461989,0,-1.84306968583001,-1.90636110305786,0.0913386970791809
+5174,84843,443797.952,84943,443697.952,73,51,39.5,0.1975,26.0551412059033,0.740731837606838,44.7213595499958,0.0106001860904416,0.1275,12.75,6,75.4559182105454,0.670651780127128,6.25,0.980392156862745,0,-1.81648778915405,-1.86069774627686,0.0509632985455447
+5175,84843,443697.952,84943,443597.952,74,51,71,0.355,21.1929470035969,0.595152140278494,11.1803398874989,0.0189994394505266,0.1375,13.75,4,82.126968758787,0.74370709382151,8.5,0.909090909090909,0,-1.77355272240109,-1.8621917963028,0.128951793788338
+5176,84843,443597.952,84943,443497.952,75,51,84,0.28,14.4021647833742,0.405197493566074,10,0.0517549821551074,0.535,53.5,3,93.7653361991955,0.805479007942941,30.25,1.11347790299175,0,-1.54353414972623,-1.74473345279694,0.187576069694355
+5177,84843,443497.952,84943,443397.952,76,51,64.75,0.1295,11.1887833060588,0.370223044506116,10,0.0664461498335004,0.74,74,1,99.1448611187463,0.723795055931501,74,2.41831162169173,0,-1.21894739733802,-1.40879487991333,0.254621517789112
+5178,84843,443397.952,84943,443297.952,77,51,61.25,0.1225,8.57421586400595,0.24648382559775,15,0.0964546880312264,0.985,98.5,1,99.9600766120013,0.465240641711228,98.5,3.24197981200242,0,-1.49450135231018,-1.82034516334534,0.412324449266626
+5179,84843,443297.952,84943,443197.952,78,51,82.25,0.41125,25.2485326818892,0.771771962511292,11.1803398874989,0.0732693985573133,0.7375,73.75,4,97.5458313243925,0.89017589017589,71.5,1.01815369169591,0,-2.21441228191058,-2.44108200073242,0.320257961571122
+5180,84843,443197.952,84943,443097.952,79,51,69,0.69,38.4562636904331,0.804951690821256,NA,0.0343966728978739,0.3025,30.25,4,88.2862492981767,0.771912675138482,14.5,0.595628659587261,0,-2.53593103090922,-2.61287999153137,0.118229434420697
+5181,84843,443097.952,84943,442997.952,80,51,44.25,0.4425,28.9381533675923,0.809792843691149,NA,0.0249642047805901,0.22,22,1,94.042067560231,0.967336273068757,22,0.909090909090909,0,-2.63528247674306,-2.671471118927,0.065262548717872
+5182,84843,442997.952,84943,442897.952,81,51,1,0.0025,0,0,20.6155281280883,6.8652582122013e-05,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-2.65797585911221,-2.67126655578613,0.0211816385608196
+5183,84843,442897.952,84943,442797.952,82,51,0,NA,NA,NA,NA,0.00111414134393272,0.13,13,2,84.6314109001852,0.870851091308278,6.75,111.3973435622,86.3133850097656,-2.70580798387527,-2.80281591415405,0.076474024134397
+5184,84843,442797.952,84943,442697.952,83,51,0,NA,NA,NA,NA,-0.0359028550445873,0,0,0,NA,NA,0,NA,NA,-2.85828259256151,-2.97248792648315,0.143435876170689
+5185,84843,442697.952,84943,442597.952,84,51,0,NA,NA,NA,NA,0.109245242315865,0.675,67.5,1,98.8570461110507,0.975724472765893,67.5,68.8756191394947,20,-3.06645375490189,-3.16441607475281,0.119462021839768
+5186,84843,442597.952,84943,442497.952,85,51,0.75,0.0025,0,0,34.3592135468138,0.0756565330084413,0.8525,85.25,1,99.5628383044854,0.695178031796085,85.25,29.2458809324024,0,-3.19298209084405,-3.21597623825073,0.0394013610009194
+5187,84843,442497.952,84943,442397.952,86,51,2.5,0.005,2.5,0.166666666666667,15.8113883008419,0.0843663416965865,0.86,86,1,99.5877487787664,0.725274725274725,86,32.6047592662102,0,-3.21366983652115,-3.22000002861023,0.0177492772922258
+5188,84843,442397.952,84943,442297.952,87,51,1,0.00333333333333333,0.833333333333333,0.0555555555555556,27.4873708374511,-0.00357824288315896,0.0775,7.75,3,75.0886341003228,0.761517615176152,4.75,60.3914521740329,47.4341621398926,-3.16746152771844,-3.19205236434937,0.0439932356214094
+5189,84843,442297.952,84943,442197.952,88,51,13,0.065,15.1552098378464,0.406666666666667,57.0087712549569,-0.00805844563172286,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,4.2167605082194,0,-3.10349589586258,-3.13825726509094,0.0643739735917463
+5190,84843,442197.952,84943,442097.952,89,51,0.5,0.0025,0,0,100,-0.00595413713515882,0,0,0,NA,NA,0,NA,NA,-3.17161189185248,-3.20256948471069,0.0614111429761113
+5191,84843,442097.952,84943,441997.952,90,51,0.25,0.0025,0,0,NA,-0.0254523093697207,0.02,2,1,68.0470115164975,0.693877551020408,2,38.0203099250793,26.9258232116699,-3.23656204011705,-3.24770641326904,0.0215230942830183
+5192,84843,441997.952,84943,441897.952,91,51,1.25,0.0025,0,0,21.8508764608526,-0.0617879330227152,0,0,0,NA,NA,0,NA,NA,-3.22941186030706,-3.24491453170776,0.0244501795403773
+5193,84843,441897.952,84943,441797.952,92,51,0,NA,NA,NA,NA,0.028053057971656,0.3825,38.25,1,96.7531359636374,0.965421355194721,38.25,98.3074236851112,50,-3.20035394032796,-3.22498083114624,0.0505672678800879
+5194,84843,441797.952,84943,441697.952,93,51,0,NA,NA,NA,NA,0.0883223848324269,0.6225,62.25,1,98.5923763102686,0.909046982917886,62.25,99.8520160200127,46.0977210998535,-3.16590629021327,-3.2176525592804,0.0842547900271395
+5195,84843,441697.952,84943,441597.952,94,51,2.75,0.006875,2.57871687275451,0.1875,12.7028470752105,0.0141574514942113,0.23,23,3,90.4423793933378,0.841621792841305,18.5,53.9094845315684,0,-3.07693288061354,-3.1538519859314,0.114522968309266
+5196,84843,441597.952,84943,441497.952,95,51,16.75,0.0335,8.53141956801084,0.345314992025518,14.6356505708383,0.0966333366967956,0.6925,69.25,1,98.9385077039357,0.818636647904941,69.25,17.1477868255725,0,-2.96712762117386,-3.0644850730896,0.128999901043681
+5197,84843,441497.952,84943,441397.952,96,51,29.75,0.14875,27.2382764818613,0.657379518072289,14.142135623731,0.0442010621089412,0.33,33,5,89.0581298496793,0.684151854833715,21,11.4250062306722,0,-2.85209099451701,-3.04755663871765,0.263429922837032
+5198,84843,441397.952,84943,441297.952,97,51,31.75,0.15875,18.6762273903572,0.608672936259143,15.8113883008419,0.0189272061685551,0.1675,16.75,5,79.8723278104882,0.722799722799723,10.75,6.50706413610658,0,-2.91042000055313,-3.07310748100281,0.287933411280233
+5199,84843,441297.952,84943,441197.952,98,51,40,0.2,19.041535452432,0.775684380032206,10,0.0342531127284383,0.32,32,2,94.9546451026158,0.899015400151477,31.25,5.87759175896645,0,-3.0127014848921,-3.1679322719574,0.292725135833829
+5200,84843,441197.952,84943,441097.952,99,51,0.263157894736842,0.0025,0,0,NA,0.0768286170219289,0.3175,31.75,1,95.9225630587777,0.955599955599956,31.75,30.5985818547527,0,-3.12290817499161,-3.25878596305847,0.23493460102811
+5201,84943,451097.952,85043,450997.952,0,52,10.75,0.026875,6.0275865199038,0.283564814814815,25.8566182502829,-0.00230502997001167,0.0075,0.75,3,0,1,0.25,22.7020543416341,11.1803398132324,-3.75392897923787,-3.80639672279358,0.0850460894253584
+5202,84943,450997.952,85043,450897.952,1,52,11,0.00785714285714286,2.99232263485741,0.11671626984127,14.689769904538,0.00476324364522952,0.025,2.5,2,60.6037822408496,0.842209072978304,2,6.94317474365234,0,-3.80396817624569,-3.83735752105713,0.0617392853582032
+5203,84943,450897.952,85043,450797.952,2,52,29.75,0.0595,9.63819901669252,0.281383277216611,11.8929222269922,-0.0183891772246477,0.01,1,1,52.6315789473684,0.747474747474748,1,12.043016910553,10,-3.71891997257868,-3.80014729499817,0.107384748447473
+5204,84943,450797.952,85043,450697.952,3,52,1,0.0025,0,0,17.1352549156242,0.00115287441120927,0.005,0.5,1,30.8308651382582,1,0.5,24.6432514190674,22.3606796264648,-3.54956814646721,-3.67013025283813,0.102449695989892
+5205,84943,450697.952,85043,450597.952,4,52,5.75,0.00638888888888889,2.98327526936847,0.0652263374485597,15.2011628738542,-0.000184531298497177,0.0075,0.75,1,44.4894453484604,1,0.75,22.4754689534505,21.2132034301758,-3.46778339147568,-3.53003120422363,0.0732954204650313
+5206,84943,450597.952,85043,450497.952,5,52,5.25,0.00403846153846154,1.27233756558741,0.094017094017094,18.3098133710549,0.0115637126600913,0.0125,1.25,2,43.859649122807,0.594936708860759,1,16.2399646759033,11.1803398132324,-3.61119113862514,-3.72244596481323,0.123966225639697
+5207,84943,450497.952,85043,450397.952,6,52,42,0.14,17.7548700658924,0.52110472541507,19.0895720634121,0.0215218494347209,0.1125,11.25,2,87.9214008814579,0.911045218680504,11,2.16503126356337,0,-3.84041051069895,-3.93920040130615,0.127331251591786
+5208,84943,450397.952,85043,450297.952,7,52,31.5,0.045,10.0370926824032,0.306671626984127,18.0068692865232,0.0100985407471671,0.1775,17.75,1,92.7707193874331,0.883282674772036,17.75,3.38682959113323,0,-4.00616396963596,-4.09186601638794,0.0956308635081707
+5209,84943,450297.952,85043,450197.952,8,52,23,0.0328571428571429,7.40199345724395,0.176492819349962,14.3778501460657,0.00403921237083523,0.0775,7.75,4,73.5053457685632,0.739837398373984,4.75,7.25070387317288,0,-4.09345614910126,-4.1287317276001,0.052509114780189
+5210,84943,450197.952,85043,450097.952,9,52,42.75,0.106875,11.1904409287351,0.415714285714286,16.0849460005254,-0.0151277934893869,0.0575,5.75,2,80.190713001571,0.852637783672267,5.5,3.0962262360946,0,-4.12432555357615,-4.1399998664856,0.0232366476027868
+5211,84943,450097.952,85043,449997.952,10,52,7,0.0175,9.7007403191844,0.104166666666667,24.8743686707646,-0.0188264991739925,0.0125,1.25,1,58.1880425789518,1,1.25,4.82842712402344,0,-4.13664820790291,-4.1399998664856,0.00815378927977175
+5212,84943,449997.952,85043,449897.952,11,52,13.25,0.01325,4.65720878522635,0.190206349206349,15.9449112614629,-0.00743585077673686,0.0025,0.25,1,0,NA,0.25,0,0,-4.11976365248362,-4.13000011444092,0.0270701572112453
+5213,84943,449897.952,85043,449797.952,12,52,26,0.0866666666666667,15.4045066081177,0.434973302822273,39.0606571460006,-0.00160867376558599,0.06,6,2,76.1024811026653,0.804031354983203,4.5,7.81537771224976,0,-4.00334580242634,-4.10781097412109,0.143132446143708
+5214,84943,449797.952,85043,449697.952,13,52,29.25,0.073125,7.64439497717502,0.247372372372372,11.1803398874989,-0.0100315000640694,0.0125,1.25,2,43.859649122807,0.594936708860759,1,3.41421356201172,0,-3.79349261522293,-3.9965705871582,0.254928404229119
+5215,84943,449697.952,85043,449597.952,14,52,32.75,0.03275,6.42406991326857,0.199012775842044,10.7082039324994,0.0353591690796748,0.3725,37.25,2,96.1655195676762,0.807363950790246,36.75,2.83940508541645,0,-3.36180266737938,-3.8029191493988,0.523779495429876
+5216,84943,449597.952,85043,449497.952,15,52,62.75,0.31375,23.2206079508549,0.767337580193368,11.1803398874989,0.0666188737024913,0.6025,60.25,2,97.2570384665228,0.882599580712788,57,1.03512286744177,0,-3.12061955531438,-3.30007743835449,0.326961711559837
+5217,84943,449497.952,85043,449397.952,16,52,56.25,0.1125,10.0384468597296,0.294142857142857,12.1065495701675,0.00117283182858955,0.1875,18.75,4,89.1494211393546,0.776223776223776,16.5,1.17668543497721,0,-3.45575501024723,-3.88063764572144,0.393181817881581
+5218,84943,449397.952,85043,449297.952,17,52,61.25,0.6125,36.7489792816667,0.826530612244898,NA,0.0181673319925903,0.32,32,2,92.081037365507,0.861146175208281,16.75,1.13558858633041,0,-3.70672792196274,-3.89310550689697,0.248211781980061
+5219,84943,449297.952,85043,449197.952,18,52,65.5,0.3275,25.6132657269792,0.734758297258297,11.1803398874989,0.0080752453221794,0.24,24,4,89.4380578499867,0.747552019583843,19.75,1.70981391270955,0,-3.58645212650299,-3.85035490989685,0.145655279347919
+5220,84943,449197.952,85043,449097.952,19,52,57.25,0.5725,33.8283436535439,0.828966521106259,NA,-0.0822826819973852,0.1475,14.75,1,91.5590620020185,0.861997584957737,14.75,1.47578081033998,0,-3.34772497415543,-3.53792285919189,0.39417706609449
+5221,84943,449097.952,85043,448997.952,20,52,91.5,0.915,37.0319404050085,0.892987249544627,NA,0.0759885958093219,0.89,89,1,99.684221684177,0.81116806042622,89,0.475118358483475,0,-2.75111567974091,-3.22639513015747,0.535462228340209
+5222,84943,448997.952,85043,448897.952,21,52,67.5,0.3375,27.0763367204386,0.52604010775217,11.1803398874989,0.0597571318006612,0.68,68,1,98.8806414464123,0.896037181996086,68,0.633920613457175,0,-2.64484383165836,-3.11952424049377,0.40033237024031
+5223,84943,448897.952,85043,448797.952,22,52,9.75,0.024375,9.42260635471787,0.263888888888889,12.8757038496822,0.00655041097399362,0.1425,14.25,1,91.3207120308943,0.916701374427322,14.25,4.63599469368918,0,-3.16525890429815,-3.31839323043823,0.259916998501982
+5224,84943,448797.952,85043,448697.952,23,52,6.25,0.015625,3.42814114091601,0.253703703703704,30.4645386145141,0.00300704458190012,0.175,17.5,1,92.6818041122695,0.901453559990145,17.5,11.101615851266,0,-3.25573542714119,-3.32482886314392,0.135142182415977
+5225,84943,448697.952,85043,448597.952,24,52,59.75,0.199166666666667,22.0920557762019,0.620002723311547,13.5385093760294,0.0665511515719663,0.62,62,2,97.0112811615012,0.869555353901997,55.25,1.47939926578153,0,-2.51044681668282,-3.03105449676514,0.871340343408416
+5226,84943,448597.952,85043,448497.952,25,52,43.25,0.21625,20.0531184182611,0.69812091503268,39.0512483795333,0.0388599774454724,0.3025,30.25,4,90.9632296996428,0.817530140110785,25,1.43210141520855,0,-0.931174169294536,-1.74318826198578,0.854575668132685
+5227,84943,448497.952,85043,448397.952,26,52,34.25,0.114166666666667,12.6225768948024,0.412786596119929,20.8906561721635,-0.00644182957063094,0.055,5.5,2,75.0425938808522,0.844382197323374,4,1.81818181818182,0,-0.352070559281856,-0.888366758823395,0.504129234534106
+5228,84943,448397.952,85043,448297.952,27,52,26.75,0.0535,9.17885764811214,0.480249908821337,13.4721359549996,0.0161166173654692,0.165,16.5,3,86.6126091833521,0.854204634209841,13.25,1.77869004914255,0,-0.33291299326811,-0.804854393005371,0.536040348788481
+5229,84943,448297.952,85043,448197.952,28,52,11,0.011,4.04434641553864,0.202686202686203,16.0070844113326,0.0053262334934243,0.0625,6.25,2,77.9292199694423,0.786666666666667,5,7.36875335693359,0,-0.406495557477077,-0.709294438362122,0.329894010492177
+5230,84943,448197.952,85043,448097.952,29,52,42.25,0.4225,31.9337909271308,0.724852071005917,NA,0.0169449266788456,0.2,20,1,93.4943790657906,0.806338028169014,20,1.9674192905426,0,-0.400539314374328,-0.538524746894836,0.116003538869599
+5231,84943,448097.952,85043,447997.952,30,52,9.75,0.008125,2.87575610958838,0.191931216931217,13.0217531990904,-0.00369934140740952,0.0425,4.25,2,75.187969924812,0.87467362924282,4,15.3589796178481,0,-0.395272113382816,-0.412530332803726,0.0310467572276547
+5232,84943,447997.952,85043,447897.952,31,52,18.5,0.0185,5.68005074127864,0.29265873015873,12.8518436585893,0.0211335021605191,0.135,13.5,5,77.955528092943,0.68922866554789,7.25,3.4001249383997,0,-0.39800588786602,-0.418724179267883,0.0507103292247098
+5233,84943,447897.952,85043,447797.952,32,52,26.5,0.033125,6.0741850625704,0.285335497835498,12.7299628846016,0.0142904710374569,0.09,9,5,69.5369157876516,0.688644688644689,5.25,2.24013752407498,0,-0.281634837388992,-0.379536300897598,0.136578764461475
+5234,84943,447797.952,85043,447697.952,33,52,6.25,0.00892857142857143,2.75516535975388,0.177777777777778,25.5522635374023,0.00106310241142637,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,7.8451779683431,0,0.0677781783354779,-0.106615275144577,0.279950875045418
+5235,84943,447697.952,85043,447597.952,34,52,23.5,0.029375,6.13132162267231,0.354569003527337,16.5089834314238,0.00143276777782376,0.07,7,2,79.2487354916399,0.85663082437276,6,1.75507627214704,0,0.538005601614714,0.197953939437866,0.352875816716872
+5236,84943,447597.952,85043,447497.952,35,52,25,0.0227272727272727,5.85679905598657,0.277741049430353,11.4413839420061,-0.00134268859801523,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,3.33333333333333,0,0.987850308418274,0.609393835067749,0.441020411528489
+5237,84943,447497.952,85043,447397.952,36,52,11,0.0275,3.72569800511125,0.183943089430894,30.8137522257655,0.0185332881919021,0.0875,8.75,5,70.3858769121403,0.659896079357582,4.5,11.0835694449288,0,1.42536282539368,0.930754780769348,0.403225047839964
+5238,84943,447397.952,85043,447297.952,37,52,13.5,0.0225,4.69129206578405,0.320684970684971,26.6353890578636,0.0198787061193798,0.1275,12.75,4,77.0813013567471,0.749695352896617,5,5.14337876263787,0,1.70576325058937,1.43001651763916,0.294425789393062
+5239,84943,447297.952,85043,447197.952,38,52,3,0.01,1.9964383688418,0.194444444444444,27.5733395755292,0.0171161893356111,0.07,7,4,74.5534285416858,0.71326164874552,5.5,9.86134317943028,0,1.79957485944033,1.54535400867462,0.302180734114711
+5240,84943,447197.952,85043,447097.952,39,52,24,0.08,11.4204260434374,0.226359338061466,15.6419413452242,0.0231795310169616,0.1225,12.25,4,79.6215753702475,0.769366436033103,5.5,14.555762933225,0,1.73602910836538,1.37214374542236,0.358207757486067
+5241,84943,447097.952,85043,446997.952,40,52,6.5,0.0108333333333333,2.74714462796811,0.188657407407407,19.2980381861156,0.0168040912791184,0.07,7,4,68.3435286766296,0.68936678614098,3,7.87164402008057,0,1.53678920120001,1.29821336269379,0.296480129175467
+5242,84943,446997.952,85043,446897.952,41,52,14.75,0.0163888888888889,4.53706796760655,0.268336964415396,19.6167344802893,0.0207110373099385,0.175,17.5,1,92.6818041122695,0.862034983986204,17.5,9.08394579206194,0,1.58144133289655,1.37509322166443,0.218399081492413
+5243,84943,446897.952,85043,446797.952,42,52,16.75,0.0186111111111111,4.08582026257273,0.254829738163071,15.1593633590955,0.0256003385082613,0.11,11,6,68.3372474150577,0.681141815973277,3.5,4.61090486699885,0,1.67347373068333,1.50263285636902,0.123376937749943
+5244,84943,446797.952,85043,446697.952,43,52,12.75,0.010625,2.33856678782197,0.137375356125356,16.1629026928323,0.0220705214030022,0.11,11,6,72.0121941120588,0.590039477679927,3.75,7.64667493646795,0,1.73002978165944,1.6611909866333,0.121194058344784
+5245,84943,446697.952,85043,446597.952,44,52,28.25,0.0256818181818182,4.33535446417628,0.208333333333333,15.204235510034,0.0298215123093541,0.22,22,7,78.8756968366266,0.640699003756329,6.5,3.23988138545643,0,1.77594941854477,1.70240151882172,0.13936442367558
+5246,84943,446597.952,85043,446497.952,45,52,50.25,0.0628125,7.93012178327508,0.289502514367816,11.6868179483837,0.0268737720304489,0.25,25,3,89.2889375649214,0.785185185185185,15,2.31535678863525,0,1.69829554110765,1.51059722900391,0.200249877522189
+5247,84943,446497.952,85043,446397.952,46,52,13,0.0144444444444444,3.10591910276382,0.130223171889839,20.4862556624625,0.0187018385063675,0.1625,16.25,4,81.6887940109055,0.672434288733325,7.25,16.1726363255427,0,1.3455569644769,1.12774276733398,0.304911073766453
+5248,84943,446397.952,85043,446297.952,47,52,9,0.009,1.52290231546371,0.0518518518518519,16.1750191579685,0.0117546992056464,0.0725,7.25,1,85.7162801918893,0.954120548259448,7.25,3.07386674552128,0,0.779404645785689,0.387405872344971,0.369922761443642
+5249,84943,446297.952,85043,446197.952,48,52,5,0.01,3.61566948852653,0.201984126984127,12.1065495701675,-0.0183341371318238,0.0525,5.25,4,64.8678241100257,0.670184696569921,3,27.6572085789272,0,0.29517449811101,0.161131337285042,0.161681262227761
+5250,84943,446197.952,85043,446097.952,49,52,17.75,0.0295833333333333,6.23609114888251,0.34619341563786,10.3934466291663,0.0468938880154508,0.265,26.5,2,90.8234487037017,0.893150977668554,15.25,11.2740817519854,0,0.211432267911732,0.122951686382294,0.134965188343793
+5251,84943,446097.952,85043,445997.952,50,52,0.5,0.0025,0,0,65.7647321898295,0.00567835016558092,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,68.209348042806,60.2079734802246,0.227520000189543,0.146322220563889,0.137075607817237
+5252,84943,445997.952,85043,445897.952,51,52,0,NA,NA,NA,NA,-0.0601096414318363,0,0,0,NA,NA,0,NA,NA,0.217554552247748,0.0313170216977596,0.105169488732772
+5253,84943,445897.952,85043,445797.952,52,52,23,0.23,19.3757645120411,0.806159420289855,NA,-0.00610645950009712,0.06,6,2,77.4557184380648,0.776035834266517,5,6.36728509267171,0,0.171790386394908,0.0218780692666769,0.190017241534277
+5254,84943,445797.952,85043,445697.952,53,52,1.5,0.005,1.27564700533701,0.111111111111111,40.5297017721273,-0.00264256109720009,0.04,4,2,73.3496291899809,0.913194444444444,3.75,10.5126430988312,5,0.277806388097815,0.0107839275151491,0.317528986543465
+5255,84943,445697.952,85043,445597.952,54,52,14.5,0.0725,18.9209002412443,0.558531746031746,14.142135623731,-0.00576165468085492,0.0025,0.25,1,0,NA,0.25,5,5,0.465775361284614,0.0931046083569527,0.404676485762837
+5256,84943,445597.952,85043,445497.952,55,52,29.75,0.14875,15.112265114644,0.81714593114241,10,-0.0204599521715863,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0,0.507369716962179,0.286932677030563,0.307590733896878
+5257,84943,445497.952,85043,445397.952,56,52,46.25,0.115625,17.7090782728598,0.508730060675947,12.6538820320221,0.0516061065303802,0.56,56,1,98.2299673180941,0.80426272292301,56,2.69738377843584,0,0.74692408926785,0.468248009681702,0.402500701271824
+5258,84943,445397.952,85043,445297.952,57,52,74.25,0.2475,15.3268535653243,0.615303211975874,12.67591879244,0.0661380900409131,0.76,76,2,98.3780962636084,0.927283304246655,74.25,0.460526315789474,0,1.71844748655955,1.10616290569305,0.984765771210171
+5259,84943,445297.952,85043,445197.952,58,52,39.75,0.0496875,7.15366955653745,0.302512302512302,11.9877124296868,0.0273637394820616,0.26,26,5,89.0056493425988,0.768752709929181,20.25,1.28982822711651,0,3.01839216053486,2.13387799263,1.13961619076493
+5260,84943,445197.952,85043,445097.952,59,52,29,0.0966666666666667,13.9017810602931,0.513309061488673,11.937129433614,0.0203739063911962,0.1775,17.75,2,89.7116301565753,0.786018237082067,14.25,1.67805824817066,0,1.85699692368507,1.28985965251923,0.810893915528593
+5261,84943,445097.952,85043,444997.952,60,52,23.25,0.03875,7.48714850054221,0.315333288248687,12.9394465351334,0.0215988480715532,0.1725,17.25,3,86.0107378143672,0.830216473995656,10.5,5.23070011968198,0,1.03752138838172,0.50868684053421,0.474455401306324
+5262,84943,444997.952,85043,444897.952,61,52,1,0.005,1.63509708815908,0.138888888888889,30,0.0126877524156589,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,0.543527146180471,0.374649256467819,0.29899501623541
+5263,84943,444897.952,85043,444797.952,62,52,1,0.01,4.34942231976673,0.291666666666667,NA,-0.000600126060571711,0,0,0,NA,NA,0,NA,NA,0.141364052193239,-0.365123003721237,0.41575034972976
+5264,84943,444797.952,85043,444697.952,63,52,7,0.07,24.2099164905047,0.476190476190476,NA,-0.0154516412917656,0.035,3.5,2,68.0553838449148,0.740932642487047,2.75,6.50790187290737,0,-0.341885037427952,-0.823015034198761,0.471186536707417
+5265,84943,444697.952,85043,444597.952,64,52,10.25,0.0341666666666667,11.7187972983269,0.316721132897604,21.1972453437248,0.0221129066854473,0.1625,16.25,2,88.1162935848653,0.862633733984943,13.5,6.8073248056265,0,-0.764651795849204,-1.17045640945435,0.385195305518764
+5266,84943,444597.952,85043,444497.952,65,52,14.5,0.0241666666666667,9.37765749460101,0.272334147334147,19.4744946147198,0.0185686874674866,0.2875,28.75,2,92.0930354025602,0.824561403508772,23.25,4.8686665078868,0,-1.07491760452588,-1.38103353977203,0.349040162134273
+5267,84943,444497.952,85043,444397.952,66,52,42,0.0525,8.25860596718366,0.319870580808081,13.2930170189599,0.036404445408225,0.4275,42.75,3,95.2563826324989,0.855825882026755,40.25,3.44459164491174,0,-1.21610308190187,-1.46527373790741,0.315895488502149
+5268,84943,444397.952,85043,444297.952,67,52,56.25,0.09375,9.90119950611881,0.355422307812014,11.6666666666667,0.0846346006577369,0.71,71,2,97.0705040352501,0.825648973266176,56.75,1.58991436219551,0,-1.27492423355579,-1.52096450328827,0.274454071294335
+5269,84943,444297.952,85043,444197.952,68,52,50.5,0.101,13.0125404705986,0.400762411347518,10.2360679774998,0.0790139963332331,0.7075,70.75,1,99.0059126497077,0.884326200115674,70.75,2.32003018544335,0,-1.3905609746774,-1.69644331932068,0.290599666610505
+5270,84943,444197.952,85043,444097.952,69,52,37,0.0528571428571429,9.54765170289239,0.369596184813576,11.3060193748187,0.0550753457259998,0.49,49,1,97.7443609022556,0.924585218702866,49,2.33545348109031,0,-1.72493517398834,-1.93081986904144,0.242290467101114
+5271,84943,444097.952,85043,443997.952,70,52,11.5,0.0383333333333333,12.038322582135,0.356572258533043,12.7240226919466,-0.0182435873066424,0.05,5,1,81.7256002368443,0.830220713073005,5,0.5,0,-1.88710219661395,-1.96922969818115,0.123153911610339
+5272,84943,443997.952,85043,443897.952,71,52,0.25,0.0025,0,0,NA,-0.22193737231195,0,0,0,NA,NA,0,NA,NA,-1.88299371302128,-1.96882808208466,0.100082953449976
+5273,84943,443897.952,85043,443797.952,72,52,22.25,0.0370833333333333,7.8790517548217,0.491022272272272,13.131266033988,-0.0581182327956776,0,0,0,NA,NA,0,NA,NA,-1.89622767766317,-1.9399436712265,0.0797479832487099
+5274,84943,443797.952,85043,443697.952,73,52,27,0.27,42.7738717668227,0.641975308641975,NA,-0.011050281004791,0.085,8.5,2,83.7838779856093,0.785323965651835,7.75,1.47058823529412,0,-1.8322270065546,-1.91398775577545,0.115702224959987
+5275,84943,443697.952,85043,443597.952,74,52,75.25,0.250833333333333,17.4981738336971,0.529248172576432,10,0.0871238067554077,0.755,75.5,1,99.205943814227,0.75610630895592,75.5,1.30344241818055,0,-1.66136514147123,-1.8120151758194,0.154833360641834
+5276,84943,443597.952,85043,443497.952,75,52,75.25,0.37625,18.2536238520883,0.404166666666667,20,0.0644437738992565,0.6725,67.25,2,98.1740236732486,0.764190159473963,65,1.83405564886044,0,-1.55056872218847,-1.61717808246613,0.0829582038560811
+5277,84943,443497.952,85043,443397.952,76,52,75.25,0.250833333333333,13.0712026628046,0.364384586606809,10.3934466291663,0.0718600659007461,0.7925,79.25,2,97.4385766374972,0.798525204496918,64.75,1.52940047351344,0,-1.52959861358007,-1.70147979259491,0.16688370171648
+5278,84943,443397.952,85043,443297.952,77,52,73,0.365,26.0945109794612,0.685072951739618,10,0.0831149391585495,0.8525,85.25,1,99.5628383044854,0.674155827092366,85.25,1.56240981205468,0,-1.81727179884911,-2.02120447158813,0.299587472280215
+5279,84943,443297.952,85043,443197.952,78,52,64.5,0.215,15.3597133672479,0.508465030844944,16.0092521257733,0.0573366002740659,0.6225,62.25,2,98.2621556602899,0.693033567347867,61.5,2.21597159818473,0,-2.15199156105518,-2.36012864112854,0.179064680011745
+5280,84943,443197.952,85043,443097.952,79,52,47,0.0783333333333333,8.50812140902742,0.336030173530174,18.0901699437495,0.0663843216998066,0.6425,64.25,2,96.2799830010029,0.889507581815274,51.5,4.56061432241002,0,-2.3670049905777,-2.48364305496216,0.141234254928734
+5281,84943,443097.952,85043,442997.952,80,52,61,0.305,17.2337978805287,0.416666666666667,10,0.0247176744921671,0.385,38.5,1,96.780810904996,0.89083283058979,38.5,0.519480519480519,0,-2.49125269055367,-2.60629510879517,0.111351673622941
+5282,84943,442997.952,85043,442897.952,81,52,34,0.34,27.388409794325,0.850490196078431,NA,-0.0294291805744433,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,0.384615384615385,0,-2.60307804743449,-2.65543079376221,0.0786259088055538
+5283,84943,442897.952,85043,442797.952,82,52,9.75,0.04875,12.8733685434451,0.554861111111111,10,-0.0547534863125475,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,3.33333333333333,0,-2.74312929809093,-2.83103775978088,0.103657682356715
+5284,84943,442797.952,85043,442697.952,83,52,0.25,0.0025,0,0,NA,-0.0173395292394343,0.06,6,1,83.7764057650598,0.944008958566629,6,31.2631154060364,10,-2.94459315141042,-3.0133798122406,0.117122912561238
+5285,84943,442697.952,85043,442597.952,84,52,0.5,0.0025,0,0,87.3212459828649,0.0800395499491424,0.7475,74.75,1,99.1756322950922,0.767863109579164,74.75,36.2244949021866,5,-3.12287183105946,-3.19397568702698,0.0852453104567588
+5286,84943,442597.952,85043,442497.952,85,52,2.25,0.0045,1.33333333333333,0.0888888888888889,13.0327592528361,0.0770228193560615,0.91,91,2,99.1702351181993,0.822609256571521,90,23.8275911781814,0,-3.21662227312724,-3.22755742073059,0.0203040075651041
+5287,84943,442497.952,85043,442397.952,86,52,1.5,0.005,2.5,0.166666666666667,15.8113883008419,0.0915247382689267,0.9525,95.25,1,99.8703629518046,0.79588861350051,95.25,41.6615201344327,0,-3.20798049867153,-3.22401785850525,0.0181934030854464
+5288,84943,442397.952,85043,442297.952,87,52,7.75,0.0110714285714286,3.4621263166781,0.201587301587302,19.4365018220914,0.0186886082206911,0.2875,28.75,1,95.4473178079967,0.8582995951417,28.75,20.2990523960279,0,-3.19607520103455,-3.2127571105957,0.0217064766878459
+5289,84943,442297.952,85043,442197.952,88,52,11.5,0.0191666666666667,5.09057910962817,0.182347670250896,18.5035805973294,-0.00613222536128887,0.135,13.5,1,90.9386564749522,0.88812231959724,13.5,14.9830584349456,0,-3.21183305978775,-3.26907753944397,0.0572620409980099
+5290,84943,442197.952,85043,442097.952,89,52,1.5,0.00375,1.25,0.0833333333333333,28.1155281280883,0.112527372824261,0.905,90.5,1,99.7306491449722,0.923165578179024,90.5,22.609852627496,0,-3.2433313926061,-3.30518198013306,0.0627865002173917
+5291,84943,442097.952,85043,441997.952,90,52,0,NA,NA,NA,NA,0.0598078624266964,0.565,56.5,1,98.2611567869712,0.989079094656947,56.5,56.6343219048154,30,-3.28343659639359,-3.33784246444702,0.054248147256916
+5292,84943,441997.952,85043,441897.952,91,52,1.75,0.0035,1,0.0666666666666667,23.6261517097095,-0.06654907616321,0,0,0,NA,NA,0,NA,NA,-3.29486352205276,-3.3440957069397,0.0555777155283387
+5293,84943,441897.952,85043,441797.952,92,52,0,NA,NA,NA,NA,0.115328687853762,0.6675,66.75,1,98.8211572488199,0.987993936938154,66.75,94.0201155273209,50,-3.27397817373276,-3.32147336006165,0.0459329073781269
+5294,84943,441797.952,85043,441697.952,93,52,0,NA,NA,NA,NA,0.0826771340845153,0.965,96.5,1,99.9054042256917,0.570647931303671,96.5,152.663559157614,106.301460266113,-3.24206401407719,-3.26866030693054,0.0312964573126004
+5295,84943,441697.952,85043,441597.952,94,52,0,NA,NA,NA,NA,0.058571404135364,0.31,31,2,92.3006294815445,0.851851851851852,24.75,118.001834131056,57.0087738037109,-3.22718282540639,-3.28206372261047,0.0675140335121271
+5296,84943,441597.952,85043,441497.952,95,52,0,NA,NA,NA,NA,0.162817182922736,1,100,1,100,NA,100,94.9666474246979,45,-3.1773668974638,-3.282306432724,0.132348084467159
+5297,84943,441497.952,85043,441397.952,96,52,0,NA,NA,NA,NA,0.129667366473004,0.99,99,1,99.9734851828463,0.867021276595747,99,74.6493070823978,14.1421356201172,-3.04827280839284,-3.21528840065002,0.230473428797223
+5298,84943,441397.952,85043,441297.952,97,52,8,0.04,9.26641311237389,0.260752688172043,11.1803398874989,0.109612981340615,0.755,75.5,2,98.8004478278978,0.806319715935583,74.75,43.9867512342946,0,-2.87935456633568,-3.13020658493042,0.235534911880551
+5299,84943,441297.952,85043,441197.952,98,52,48.5,0.161666666666667,13.9185690891745,0.495665445665446,10.3934466291663,0.0500445183546253,0.4,40,5,93.5351892349442,0.852607709750567,36.5,15.6054746389389,0,-2.66598159074783,-2.93890500068665,0.290551998082914
+5300,84943,441197.952,85043,441097.952,99,52,50.7894736842105,0.4825,32.9658404432071,0.72020725388601,NA,0.0482567731439485,0.4125,41.25,2,93.5521415761774,0.843225083986562,26.5,10.6674117348411,0,-2.61772090196609,-2.81115579605103,0.244803929745437
+5301,85043,451097.952,85143,450997.952,0,53,8.75,0.00729166666666667,4.04170684950166,0.127777777777778,13.0669499062491,0.00601366718943609,0,0,0,NA,NA,0,NA,NA,-3.70201992988586,-3.75725126266479,0.133255253091259
+5302,85043,450997.952,85143,450897.952,1,53,6.25,0.0078125,2.70888018017992,0.130208333333333,28.6292576118132,0.0110403367237814,0.0875,8.75,2,80.9627098638407,0.811053377420879,6.25,22.4327122279576,10,-3.60408161083857,-3.73172426223755,0.18042353192795
+5303,85043,450897.952,85143,450797.952,2,53,11.5,0.00821428571428571,1.55681048267919,0.0407647907647908,13.6796133250987,-0.0139981826662552,0.01,1,1,52.6315789473684,0.747474747474748,1,18.1395816802979,14.1421356201172,-3.53739301363627,-3.63920021057129,0.138055956604255
+5304,85043,450797.952,85143,450697.952,3,53,7.5,0.0125,4.24362645076674,0.176058201058201,11.7741585037433,-0.00516587105553299,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.3251407623291,0,-3.47702165444692,-3.52210903167725,0.0588980287460704
+5305,85043,450697.952,85143,450597.952,4,53,22,0.22,23.1126802912875,0.755681818181818,NA,0.0229659143041499,0.1575,15.75,2,88.6981087887809,0.794982465605611,13.5,37.3790868123372,11.1803398132324,-3.49753218226963,-3.55765962600708,0.0711081564519519
+5306,85043,450597.952,85143,450497.952,5,53,35.75,0.0595833333333333,8.54909703603154,0.361734892787524,19.9382326608724,0.00764125783480949,0.045,4.5,3,70.1539628083604,0.767306573589296,3.75,0.833333333333333,0,-3.67535356680552,-3.82489824295044,0.154310117186579
+5307,85043,450497.952,85143,450397.952,6,53,31.25,0.078125,16.5890439733888,0.56580460808402,13.8471090380795,0.0180286289925789,0.2125,21.25,2,92.2058266392636,0.840218648165668,20,1.63696630141314,0,-3.92147511906094,-3.99956011772156,0.129653405654748
+5308,85043,450397.952,85143,450297.952,7,53,6,0.01,3.3046172511527,0.181878306878307,23.0956472017657,-0.00784719410183243,0,0,0,NA,NA,0,NA,NA,-4.07160504659017,-4.10777997970581,0.0556439495442229
+5309,85043,450297.952,85143,450197.952,8,53,7,0.0233333333333333,7.36410343818264,0.244444444444444,30.0365207191402,0.00520228055367625,0.035,3.5,2,69.0285060247284,0.844559585492228,3,2.79586683000837,0,-4.12803851233588,-4.13598299026489,0.017214078639121
+5310,85043,450197.952,85143,450097.952,9,53,18.5,0.0168181818181818,6.14443892828203,0.207108136702998,12.3325068066323,0.000916759950505366,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859,-4.13993406295776,-4.1399998664856,0.00224345873407236
+5311,85043,450097.952,85143,449997.952,10,53,11,0.0122222222222222,3.67985956041771,0.19949494949495,12.234395795269,-0.0137693604044443,0,0,0,NA,NA,0,NA,NA,-4.13962507247925,-4.1399998664856,0.00306433649294913
+5312,85043,449997.952,85143,449897.952,11,53,4.25,0.0141666666666667,5.53860944908767,0.365740740740741,50.4508294523978,0.0094231924921587,0.045,4.5,3,66.6428185985891,0.689742098119062,2.5,23.5237125820584,0,-4.11257939868503,-4.12922763824463,0.0373906953940853
+5313,85043,449897.952,85143,449797.952,12,53,35.75,0.089375,10.4440879932815,0.279660154660155,14.1257038496822,0.00558689113757282,0.0925,9.25,1,87.9580013362782,0.801291604570293,9.25,8.80020430281356,0,-3.9658587773641,-4.07297706604004,0.155921543071837
+5314,85043,449797.952,85143,449697.952,13,53,24.5,0.0245,3.75216775326417,0.135515873015873,15.4211218385948,0.0235841300369384,0.2725,27.25,1,95.1807759450405,0.881382245713189,27.25,2.0216086151403,0,-3.59102998839484,-3.80082082748413,0.306092418985613
+5315,85043,449697.952,85143,449597.952,14,53,67.75,0.225833333333333,13.0964763199708,0.305348258706468,17.4535599249993,0.0656244720948868,0.7175,71.75,1,99.0496701463057,0.836119305145854,71.75,1.55896782293552,0,-2.98906437555949,-3.50027132034302,0.4912849435686
+5316,85043,449597.952,85143,449497.952,15,53,55.5,0.2775,22.0713743647291,0.524727414330218,10,0.0465327745686227,0.47,47,2,94.8014788124744,0.826501843417914,30.25,1.30508159069305,0,-3.01680172814263,-3.58494281768799,0.589667189936324
+5317,85043,449497.952,85143,449397.952,16,53,67.5,0.225,18.4553529460575,0.583570710194087,11.380711874577,-0.0345650860280148,0.0525,5.25,2,74.9292782083333,0.901055408970976,4.5,0.952380952380952,0,-3.7734211285909,-4.0082426071167,0.305382932112161
+5318,85043,449397.952,85143,449297.952,17,53,64.25,0.32125,28.4369527601473,0.785057113187954,14.142135623731,-0.0325479260161228,0.15,15,2,87.7162726179733,0.852941176470588,12.75,0.75,0,-3.94259436925252,-4.01471424102783,0.132785906398124
+5319,85043,449297.952,85143,449197.952,18,53,86.75,0.8675,39.05916847293,0.848222862632085,NA,-0.0726135333082493,0.08,8,2,81.8066549469335,0.707357859531773,6.5,0.78125,0,-3.75705248117447,-3.86278438568115,0.208885560013758
+5320,85043,449197.952,85143,449097.952,19,53,96,0.96,38.0900726057992,0.907118055555555,NA,0.0138322179135866,0.6075,60.75,1,98.5105231673728,0.831645107887427,60.75,0.246913580246914,0,-2.92053084903293,-3.36548614501953,0.692788821123232
+5321,85043,449097.952,85143,448997.952,20,53,68.25,0.34125,21.1349800877062,0.769434987029831,29.1547594742265,0.0474170970403065,0.425,42.5,4,92.3829607510022,0.833310181969718,32,0.820380065020393,0,-2.80005711979336,-3.14363026618958,0.404545748907984
+5322,85043,448997.952,85143,448897.952,21,53,85.25,0.8525,37.3170367312042,0.871456500488759,NA,0.068163589662654,0.7,70,1,98.9724810035032,0.740177439797212,70,0.601015254429409,0,-2.85667955875397,-3.06125140190125,0.297646505901527
+5323,85043,448897.952,85143,448797.952,22,53,90,0.45,20.4611240644624,0.610252808988764,14.142135623731,0.0710173635109095,0.6975,69.75,1,98.9612174727447,0.741341240300297,69.75,0.595746248853677,0,-3.01705196168688,-3.14325928688049,0.164520439085345
+5324,85043,448797.952,85143,448697.952,23,53,55.75,0.1115,11.9213389376547,0.358080082954455,11.634413615168,0.0459872700862616,0.4325,43.25,1,97.260148197161,0.895046469556571,43.25,1.9915682621774,0,-3.05024929841359,-3.18952465057373,0.290104062946455
+5325,85043,448697.952,85143,448597.952,24,53,66.75,0.2225,21.4698070965039,0.72034921168121,13.4628120507726,0.0629355442912856,0.6,60,3,95.783396495158,0.749443207126949,45,1.3175550142924,0,-2.45916480488247,-2.84819841384888,0.481870875134084
+5326,85043,448597.952,85143,448497.952,25,53,62.5,0.15625,14.7927855177727,0.5535026028837,10.2950849718747,0.0377913120532685,0.335,33.5,6,91.4001495228454,0.808948601010724,29.5,0.373134328358209,0,-1.34763879080613,-2.06947350502014,0.835290404732985
+5327,85043,448497.952,85143,448397.952,26,53,39.75,0.0795,8.67254225229615,0.305374396135266,11.1622776601684,0.034195429736662,0.3125,31.25,1,95.8481348315798,0.903884661593913,31.25,1.08970562744141,0,-0.164940104716354,-0.46583566069603,0.513740225831527
+5328,85043,448397.952,85143,448297.952,27,53,40.75,0.20375,23.1963332636278,0.692539682539683,39.0512483795333,0.0351576988978559,0.3225,32.25,3,89.7222516196918,0.824134411556882,17.75,2.14045424054759,0,0.324852975706259,0.110665395855904,0.291138506990905
+5329,85043,448297.952,85143,448197.952,28,53,39.25,0.130833333333333,11.6228456713619,0.283189033189033,11.6666666666667,0.0048190984412031,0.135,13.5,2,88.6602386726794,0.850829759462987,12.75,1.11111111111111,0,0.0470975517657482,-0.0625895708799362,0.206621689590247
+5330,85043,448197.952,85143,448097.952,29,53,10.25,0.0170833333333333,3.85055777246159,0.264204545454545,18.0552578270689,0.00251505090047885,0,0,0,NA,NA,0,NA,NA,-0.187583840141694,-0.335370898246765,0.166189184384068
+5331,85043,448097.952,85143,447997.952,30,53,15.75,0.0225,6.8180872157093,0.216727716727717,10.8430999196421,0.00349719071031359,0.03,3,1,74.8763016215986,0.939357186173438,3,2.5,0,-0.334645436869727,-0.390150725841522,0.1098955450237
+5332,85043,447997.952,85143,447897.952,31,53,29.5,0.0268181818181818,6.21105420433234,0.221189164370983,12.0914209815871,-0.00418492917511685,0.0075,0.75,1,44.4894453484604,1,0.75,6.3807118733724,5,-0.352059854401482,-0.397958099842072,0.098817705757317
+5333,85043,447897.952,85143,447797.952,32,53,21,0.014,3.6682179977266,0.23208312384783,13.0397222621887,0.00132950942896059,0.0525,5.25,2,76.1446640085032,0.802110817941952,4.5,3.44731158301944,0,-0.265718907117844,-0.356712639331818,0.100113336023772
+5334,85043,447797.952,85143,447697.952,33,53,39,0.39,32.0516972190622,0.770299145299145,NA,0.0157429573987974,0.2325,23.25,3,90.5273254797307,0.850869275146187,20,3.22757437921339,0,-0.0916922914071216,-0.168563231825829,0.14332781807952
+5335,85043,447697.952,85143,447597.952,34,53,5.75,0.00575,1.18153595020207,0.0944444444444444,14.8920980089056,0.00266786509353551,0.0125,1.25,1,58.1880425789518,1,1.25,8.88634948730469,5,0.106498444297661,-0.0769546926021576,0.267538284526604
+5336,85043,447597.952,85143,447497.952,35,53,21.5,0.05375,9.7407031851634,0.358544685990338,20,-0.00363270414950421,0.005,0.5,1,30.8308651382582,1,0.5,0,0,0.318304094175498,0.0845269933342934,0.356064130153739
+5337,85043,447497.952,85143,447397.952,36,53,17.75,0.0295833333333333,5.51942441068412,0.394639539204757,22.7022005725994,0.000191534567366034,0.08,8,3,78.1534801697676,0.790969899665552,6.25,3.00666260719299,0,0.63748716066281,0.312140911817551,0.468310539988933
+5338,85043,447397.952,85143,447297.952,37,53,27.5,0.0458333333333333,9.38567746563612,0.474537037037037,12.060113295833,0.0103934295987347,0.075,7.5,4,78.6496218400943,0.713182570325428,6.5,6.84773457845052,0,1.03191168440713,0.679492473602295,0.466115754682878
+5339,85043,447297.952,85143,447197.952,38,53,50.5,0.2525,21.3848559526313,0.762363315696649,31.6227766016838,0.0166578177088013,0.105,10.5,8,64.692232583066,0.559367377449052,3.75,2.52888579595657,0,1.26794189214706,1.05664467811584,0.262243104278368
+5340,85043,447197.952,85143,447097.952,39,53,54.5,0.13625,13.7888374928174,0.554967852119751,11.25,0.0323982383698058,0.2925,29.25,6,83.9597420553207,0.713314220948063,10.5,1.9334461831639,0,1.24591644605001,1.19342517852783,0.126531002765598
+5341,85043,447097.952,85143,446997.952,40,53,28.75,0.0958333333333333,12.0199066002121,0.417695473251029,28.6667633605957,0.0278582945745984,0.2225,22.25,5,84.6894884897476,0.676434306052701,9.75,8.41517409849703,0,1.25257594386737,1.1799293756485,0.0992597341775029
+5342,85043,446997.952,85143,446897.952,41,53,47,0.05875,6.87760419840122,0.247205488621151,14.3566309109098,0.0203498198337547,0.1775,17.75,4,85.5664074776858,0.737386018237082,12,2.96336864417707,0,1.41018662187788,1.31940066814423,0.124757688792467
+5343,85043,446897.952,85143,446797.952,42,53,23.25,0.0258333333333333,6.4107104912664,0.289329805996473,13.9673384148493,0.00960086850191146,0.1225,12.25,3,80.2253221429685,0.728666395333062,6.5,3.67570534530951,0,1.48148667812347,1.39722228050232,0.0919586486459259
+5344,85043,446797.952,85143,446697.952,43,53,19.5,0.0325,8.12266038537245,0.285648148148148,11.1803398874989,0.0369159353533541,0.3125,31.25,3,91.2258221390781,0.7436924309171,18.25,8.0587979888916,0,1.45566594600677,1.30129420757294,0.232424446330171
+5345,85043,446697.952,85143,446597.952,44,53,22,0.0244444444444444,5.46882288271685,0.265909090909091,13.5309794260591,0.112562802448228,0.77,77,1,99.2652328179138,0.707646176911544,77,7.46379934038435,0,1.4559147755305,1.1755964756012,0.406905493972302
+5346,85043,446597.952,85143,446497.952,45,53,49.75,0.165833333333333,10.4907215984853,0.251551043429216,10.3934466291663,0.0361958102266453,0.375,37.5,4,93.0181791576122,0.744,30.75,4.03152900695801,0,1.35500688354174,1.03917860984802,0.515297929918154
+5347,85043,446497.952,85143,446397.952,46,53,4,0.008,3.02689318300973,0.17,28.4295532842377,-0.0356853274335913,0.095,9.5,8,61.8565605496866,0.491361922301149,2.75,15.6834586294074,0,1.10548646582498,0.754905462265015,0.488851725681486
+5348,85043,446397.952,85143,446297.952,47,53,7,0.0116666666666667,3.22651369981548,0.186728395061728,12.4535599249993,0.0034389519314675,0.1275,12.75,6,75.5015962082583,0.736521424101703,7.25,8.58694016699697,0,0.680935608843962,0.488435089588165,0.313413138208949
+5349,85043,446297.952,85143,446197.952,48,53,23.25,0.0258333333333333,5.80317262094522,0.378909048499692,14.4963159664633,-0.0197957490909539,0.0425,4.25,2,69.1697389652099,0.83289817232376,2.75,3.01254137824563,0,0.436531027158101,0.370837330818176,0.0813061474778246
+5350,85043,446197.952,85143,446097.952,49,53,46.5,0.465,32.6789523547904,0.794802867383512,NA,-0.000520438626153918,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,2.01184463500977,0,0.506126053631306,0.372882455587387,0.142455718385151
+5351,85043,446097.952,85143,445997.952,50,53,25,0.0416666666666667,9.39098887876812,0.377563719633612,11.5346827108031,0.00572280736264474,0.0775,7.75,4,69.209934680401,0.696476964769648,3.25,0.645161290322581,0,0.563219487667084,0.464443683624268,0.171555100109101
+5352,85043,445997.952,85143,445897.952,51,53,21.5,0.043,7.26555112973546,0.386967418546366,11,0.0186536898391023,0.245,24.5,1,94.6299732152399,0.917218543046358,24.5,1.62389934306242,0,0.307562450567881,0.120091393589973,0.202172807129219
+5353,85043,445897.952,85143,445797.952,52,53,12,0.03,10.4010858196639,0.296218487394958,12.9056941504209,-0.0161619555553557,0.04,4,2,74.2500702543702,0.826388888888889,3.75,24.2305688858032,0,0.042658609603273,-0.0573873519897461,0.136424974810252
+5354,85043,445797.952,85143,445697.952,53,53,3,0.0075,4.02554482021527,0.145833333333333,19.1143163945465,-0.00779687643903344,0,0,0,NA,NA,0,NA,NA,-0.00270730070769787,-0.0791523009538651,0.106722484558573
+5355,85043,445697.952,85143,445597.952,54,53,3.5,0.00875,3.54271036426585,0.23125,41.2310562561766,0.00167173374269623,0,0,0,NA,NA,0,NA,NA,0.0376377448232637,-0.0345712341368198,0.107215721797319
+5356,85043,445597.952,85143,445497.952,55,53,21,0.03,5.53306729443332,0.338382594417077,22.230789732584,0.0188791700084266,0.12,12,4,84.0410920631382,0.83370288248337,10.75,0.796904325485229,0,0.138790935594847,0.000493957719299942,0.205085175082353
+5357,85043,445497.952,85143,445397.952,56,53,30.75,0.1025,17.1325145438591,0.460014741109268,17.1718130830748,0.0359306299982381,0.32,32,5,88.8634389525963,0.810653875284019,20.5,3.85957346856594,0,0.722911068393538,0.0228838063776493,0.711646877948751
+5358,85043,445397.952,85143,445297.952,57,53,71.25,0.35625,17.0576448934449,0.418133802816901,11.1803398874989,0.0402502961169375,0.57,57,1,98.2919349628155,0.967168262653899,57,0.0657894736842105,0,2.23015373282962,1.47114443778992,1.26653539628616
+5359,85043,445297.952,85143,445197.952,58,53,47,0.235,18.8849212496474,0.636974963790606,22.3606797749979,0.0225882671564545,0.225,22.5,2,93.5691605449061,0.839711480665197,22.25,0.833333333333333,0,2.95157905419668,2.2517421245575,0.879544384824914
+5360,85043,445197.952,85143,445097.952,59,53,16.75,0.041875,8.04796472034687,0.524751984126984,10.2950849718747,0.00186882773994512,0,0,0,NA,NA,0,NA,NA,2.01876747608185,1.52741277217865,0.675212013435908
+5361,85043,445097.952,85143,444997.952,60,53,22.25,0.2225,27.4043927891102,0.775280898876405,NA,-0.00223348061374054,0.095,9.5,2,86.0224991721307,0.771989827238446,9,2.64705828616494,0,1.05556914707025,0.708721280097961,0.459014340433159
+5362,85043,444997.952,85143,444897.952,61,53,12.75,0.0425,11.9136171792981,0.439329189329189,14.4280904158206,0.000181001901964919,0.0625,6.25,3,74.2791497993851,0.76,4.75,3.08284271240234,0,0.462482266955905,0.293783485889435,0.246658275091451
+5363,85043,444897.952,85143,444797.952,62,53,16.5,0.0825,13.9536725004121,0.563690476190476,22.3606797749979,0.00584042185779254,0.0725,7.25,1,85.7162801918893,0.885301370648621,7.25,2.48520923482961,0,0.176602649812897,-0.0427252762019634,0.230249568675091
+5364,85043,444797.952,85143,444697.952,63,53,14,0.02,3.81852828853815,0.178968253968254,11.8611080539028,0.00409939541816129,0.065,6.5,3,69.976126859703,0.660884309377853,3,1.61811799269456,0,-0.142296498617119,-0.246169224381447,0.199371306197673
+5365,85043,444697.952,85143,444597.952,64,53,1.5,0.015,6.9010160705075,0.305555555555556,NA,-0.00728184302239924,0,0,0,NA,NA,0,NA,NA,-0.376349804302057,-0.520287334918976,0.146047489936078
+5366,85043,444597.952,85143,444497.952,65,53,0.25,0.0025,0,0,NA,-0.0114108825754738,0,0,0,NA,NA,0,NA,NA,-0.52316516968939,-0.681798934936523,0.212441512791448
+5367,85043,444497.952,85143,444397.952,66,53,7.5,0.0375,12.9295834626971,0.426666666666667,11.1803398874989,-0.00538073981600064,0.0575,5.75,2,79.9790455901811,0.882110226937813,5.5,8.94336078477942,0,-0.656219197644128,-0.797459602355957,0.229392404752955
+5368,85043,444397.952,85143,444297.952,67,53,22.5,0.1125,18.2390207493087,0.598900420064245,15,0.0410180223349016,0.39,39,1,96.835360326048,0.965727994516479,39,4.94887786033826,0,-0.845623716711998,-0.989754617214203,0.189049437923596
+5369,85043,444297.952,85143,444197.952,68,53,59,0.196666666666667,19.9972420685218,0.725740740740741,11.6666666666667,0.0722338782025326,0.655,65.5,1,98.7599782819451,0.834705864990112,65.5,1.72026976374269,0,-1.05285070339839,-1.2040628194809,0.200448504739905
+5370,85043,444197.952,85143,444097.952,69,53,54.5,0.2725,28.1846428940037,0.685441036504866,14.142135623731,0.0753540218510898,0.665,66.5,1,98.8090595843688,0.826518709059911,66.5,1.78060003868619,0,-1.33794904748599,-1.61225342750549,0.295053453552764
+5371,85043,444097.952,85143,443997.952,70,53,32,0.08,11.0054338485717,0.354448198198198,21.5859170420709,0.0575672352354741,0.3925,39.25,2,95.0289443229582,0.925697302240512,37,1.99544121809066,0,-1.54577318827311,-1.68960762023926,0.241653909752551
+5372,85043,443997.952,85143,443897.952,71,53,23.75,0.0395833333333333,10.3109254279752,0.263095238095238,10.8870792518717,-0.00579539301139448,0.07,7,1,85.3702908942512,0.90442054958184,7,3.21428571428571,0,-1.64968949556351,-1.72966027259827,0.171673325651797
+5373,85043,443897.952,85143,443797.952,72,53,61.75,0.205833333333333,12.2830704766468,0.327185792349727,10,-0.037478163033461,0.025,2.5,2,60.3016612897646,0.605522682445759,1.75,2.5,0,-1.7114116748174,-1.78481936454773,0.134327091319621
+5374,85043,443797.952,85143,443697.952,73,53,84.5,0.845,36.5228325545492,0.861439842209073,NA,-0.00291456002414634,0.385,38.5,1,96.780810904996,0.896578471085064,38.5,1.19572815337738,0,-1.63604239622752,-1.68795776367188,0.142033741877079
+5375,85043,443697.952,85143,443597.952,74,53,97,0.97,37.7089670504933,0.928694158075601,NA,0.0975488891665736,0.92,92,1,99.7759364721822,0.928263988522238,92,0.0271739130434783,0,-1.44657009177738,-1.53183197975159,0.198311636483528
+5376,85043,443597.952,85143,443497.952,75,53,67.25,0.224166666666667,14.786209206096,0.400673400673401,10,0.0819329523952911,0.85,85,1,99.5544616363511,0.751166407465008,85,1.41385493558996,0,-1.50356663266818,-1.61585462093353,0.177384200585566
+5377,85043,443497.952,85143,443397.952,76,53,72,0.24,19.6906351535303,0.488753387533875,11.1803398874989,0.0694329569549882,0.7625,76.25,1,99.2358070072224,0.802288329519451,76.25,1.21709247026287,0,-1.6601820256975,-1.72871613502502,0.117251081963298
+5378,85043,443397.952,85143,443297.952,77,53,55.5,0.111,11.3962354685421,0.443202614379085,13.3591736031175,0.0308975217953684,0.3475,34.75,4,93.6518080096277,0.849156786436178,31.75,1.8689718452289,0,-1.84931479560004,-1.97258353233337,0.15134825828711
+5379,85043,443297.952,85143,443197.952,78,53,70,0.14,11.9727836994868,0.39468274292218,10,0.0445182020781795,0.4475,44.75,3,93.5645030061169,0.759401785348116,26.25,1.63727015489973,0,-2.02908266584078,-2.14934921264648,0.116167509074906
+5380,85043,443197.952,85143,443097.952,79,53,77.25,0.38625,21.6709148991924,0.768804887361588,26.9258240356725,0.0537375743353914,0.605,60.5,2,98.2391717755468,0.876778312983085,60.25,1.8046361119294,0,-2.22971765200297,-2.3188648223877,0.14796803373939
+5381,85043,443097.952,85143,442997.952,80,53,95.75,0.9575,37.7622865691592,0.908616187989556,NA,0.0465402560120856,0.605,60.5,3,97.3825747401077,0.915985213397558,59.25,0.165289256198347,0,-2.36433500051498,-2.42385196685791,0.0871102653498317
+5382,85043,442997.952,85143,442897.952,81,53,93.75,0.46875,18.8901083275414,0.450089126559715,10,0.0297086530416709,0.415,41.5,2,95.0094428837261,0.88827439807832,38.75,0.0602409638554217,0,-2.53700810008579,-2.6231529712677,0.139001577857186
+5383,85043,442897.952,85143,442797.952,82,53,73.75,0.36875,24.9141468834378,0.660516781083143,10,0.0466779029872487,0.525,52.5,1,97.9993099016594,0.892313904967021,52.5,1.68230605352493,0,-2.78400888045629,-2.9369843006134,0.164305989163916
+5384,85043,442797.952,85143,442697.952,83,53,6.5,0.0216666666666667,4.9172114423495,0.196759259259259,48.4481395124954,0.0656275744116647,0.3925,39.25,2,96.0671828175272,0.959990855052583,38.75,22.6243741831202,0,-3.01262500551012,-3.09760165214539,0.128344348404819
+5385,85043,442697.952,85143,442597.952,84,53,1,0.0025,0,0,20.6155281280883,0.0754933298472315,0.685,68.5,3,95.3052403626646,0.777654252362424,50.75,23.7362659830247,0,-3.16986350218455,-3.21484971046448,0.064473166662217
+5386,85043,442597.952,85143,442497.952,85,53,5.5,0.011,4.89681170301719,0.0882352941176471,20.9645584574702,0.0837688674009405,0.77,77,1,99.2652328179138,0.775112443778111,77,15.7195825391002,0,-3.21145995457967,-3.22199130058289,0.0281426743943075
+5387,85043,442497.952,85143,442397.952,86,53,0,NA,NA,NA,NA,0.0838775496836752,0.8325,83.25,3,97.1645318458513,0.753221175521439,76.25,49.3999088104065,15,-3.17399464050929,-3.20135879516602,0.0252416402608348
+5388,85043,442397.952,85143,442297.952,87,53,4,0.01,2.61012504652191,0.170138888888889,20.2317042173953,-0.0244852970472857,0.2,20,1,93.4943790657906,0.911971830985915,20,17.9299684047699,0,-3.19372746679518,-3.22242093086243,0.0406048201741465
+5389,85043,442297.952,85143,442197.952,88,53,3,0.006,2.24823404046385,0.0944444444444444,14.9544151837347,0.0803257975141423,0.65,65,1,98.735013968989,0.929598122616603,65,26.4931430156414,0,-3.26670545339584,-3.29374217987061,0.0331179828390239
+5390,85043,442197.952,85143,442097.952,89,53,0,NA,NA,NA,NA,0.104607831585599,0.8275,82.75,2,98.4492316334923,0.897971014492754,80.75,60.7953959692641,25.4950981140137,-3.30802101559109,-3.32330942153931,0.0270877610264778
+5391,85043,442097.952,85143,441997.952,90,53,0.5,0.0025,0,0,25.4950975679639,-0.0414958181715338,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,58.9337156790274,43.0116271972656,-3.35445690155029,-3.37866473197937,0.0360994619833937
+5392,85043,441997.952,85143,441897.952,91,53,1,0.0025,0,0,20.6155281280883,-0.0583867638441734,0,0,0,NA,NA,0,NA,NA,-3.38368233044942,-3.40258240699768,0.0357476525621097
+5393,85043,441897.952,85143,441797.952,92,53,0,NA,NA,NA,NA,0.137894146293183,0.8925,89.25,1,99.6920407997372,0.958717490023394,89.25,83.7201955351843,45,-3.33705859714084,-3.3707537651062,0.0489476305274577
+5394,85043,441797.952,85143,441697.952,93,53,0,NA,NA,NA,NA,0.0985400710022805,0.7825,78.25,1,99.3133324321661,0.968829144749659,78.25,123.748989665851,60.2079734802246,-3.28621202707291,-3.31446361541748,0.0297391002695131
+5395,85043,441697.952,85143,441597.952,94,53,0,NA,NA,NA,NA,0.133556956144093,0.625,62.5,1,98.6057312417508,0.971509971509972,62.5,194.843089416504,149.164337158203,-3.29851876364814,-3.30913734436035,0.021536831900336
+5396,85043,441597.952,85143,441497.952,95,53,0,NA,NA,NA,NA,0.126668122187257,1,100,1,100,NA,100,192.383389892578,142.302490234375,-3.31244446833928,-3.32308220863342,0.0288651228902782
+5397,85043,441497.952,85143,441397.952,96,53,0,NA,NA,NA,NA,0.197190434653312,1,100,1,100,NA,100,163.361795463562,105.948104858398,-3.2992561923133,-3.34895730018616,0.0825505549703936
+5398,85043,441397.952,85143,441297.952,97,53,0,NA,NA,NA,NA,0.203043938744813,1,100,1,100,NA,100,97.2995850563049,46.0977210998535,-3.27372298638026,-3.3600640296936,0.161877853689686
+5399,85043,441297.952,85143,441197.952,98,53,5.25,0.02625,6.53183974772115,0.538888888888889,74.3303437365925,0.118847706113011,0.9075,90.75,1,99.7382749359844,0.6852747944451,90.75,28.2938244664636,0,-3.12451550695631,-3.30076098442078,0.281774222786076
+5400,85043,441197.952,85143,441097.952,99,53,0.526315789473684,0.0025,0,0,10,0.237403516191989,0.995,99.5,1,99.9867925566623,1,99.5,48.8305775915558,0,-2.9106463988622,-3.1368465423584,0.311894532123873
+5401,85143,451097.952,85243,450997.952,0,54,12.75,0.0141666666666667,5.1182262964744,0.161375661375661,12.9702858115553,0.00603384126807214,0.025,2.5,2,65.3357531760436,0.684418145956607,2.25,23.4266883850098,5,-3.45605325698853,-3.61246752738953,0.141778020665734
+5402,85143,450997.952,85243,450897.952,1,54,18.75,0.0125,3.11444110206728,0.116913580246914,11.6308135777102,-0.00460863638984392,0,0,0,NA,NA,0,NA,NA,-3.33991040289402,-3.46113801002502,0.0939777038597288
+5403,85143,450897.952,85243,450797.952,2,54,1.75,0.0035,1,0.0666666666666667,30.6355697507009,0.0157988590814875,0.1225,12.25,4,78.4897264574708,0.701533034866368,6.5,16.8412946973528,5,-3.3574097553889,-3.4110426902771,0.0837069536368031
+5404,85143,450797.952,85243,450697.952,3,54,32.25,0.05375,6.90638550362956,0.344288119288119,16.2255420043367,0.03084422766442,0.235,23.5,3,93.3158302661182,0.813258636788048,23,10.2869731213184,0,-3.46857868134975,-3.65794944763184,0.124982001857174
+5405,85143,450697.952,85243,450597.952,4,54,61.75,0.205833333333333,21.2347024912435,0.468483035545854,13.4628120507726,-0.0376968142138139,0,0,0,NA,NA,0,NA,NA,-3.69880121946335,-3.9159152507782,0.300639114490198
+5406,85143,450597.952,85243,450497.952,5,54,51,0.102,12.491715055483,0.662822822822823,12.7678289356324,-0.0124097216896917,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,1.66666666666667,0,-3.92781883478165,-4.53625392913818,0.328342746109425
+5407,85143,450497.952,85243,450397.952,6,54,38.5,0.077,5.83325921123255,0.22042042042042,15.2624055249564,-0.0157482497226738,0.0025,0.25,1,0,NA,0.25,0,0,-3.97351006666819,-4.01025915145874,0.0667575019020576
+5408,85143,450397.952,85243,450297.952,7,54,14,0.02,4.48732563284128,0.0828571428571429,15.0666919568813,0.00590389100800166,0.0025,0.25,1,0,NA,0.25,5,5,-4.06796810030937,-4.10626554489136,0.0467090957969911
+5409,85143,450297.952,85243,450197.952,8,54,11.25,0.0160714285714286,5.61039367803338,0.220462387853692,23.6745415247917,-0.00479817633533457,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5,-4.12573818365733,-4.13573408126831,0.0195100496746149
+5410,85143,450197.952,85243,450097.952,9,54,4.25,0.0053125,1.17234121145809,0.0740740740740741,15.7976548981476,0.013384811876158,0.0275,2.75,2,67.2501647699269,0.725792630676949,2.5,13.8958029313521,5,-4.1399998664856,-4.1399998664856,0.00146978439391613
+5411,85143,450097.952,85243,449997.952,10,54,14,0.0127272727272727,3.6762906094418,0.150550964187328,16.4119177638844,0.00315336900361217,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,10.102014541626,7.07106781005859,-4.13997855782509,-4.1399998664856,0.000475140575732169
+5412,85143,449997.952,85243,449897.952,11,54,31.5,0.105,11.8462165186777,0.425459072517896,14.5246277368648,0.0124106108054184,0.1225,12.25,1,90.2255639097744,0.877899877899878,12.25,21.6494515866649,5,-4.13408660888672,-4.1399998664856,0.0157224134735212
+5413,85143,449897.952,85243,449797.952,12,54,17.25,0.0215625,5.72969812694358,0.174340569561158,18.3074455900523,-0.0100048997872125,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,32.0722314394437,21.2132034301758,-4.07465174794197,-4.13168430328369,0.0784572684149134
+5414,85143,449797.952,85243,449697.952,13,54,6.5,0.00928571428571429,1.98905465340226,0.107769423558897,10.6744799357137,0.0319669930649252,0.1525,15.25,3,85.154143579998,0.79963265987644,7.75,10.7025056745185,0,-3.89914655685425,-4.03385925292969,0.194617761629154
+5415,85143,449697.952,85243,449597.952,14,54,48.75,0.1625,21.4909200516441,0.659635571400277,10.3934466291663,0.0193690001661344,0.2875,28.75,2,92.6530810911146,0.844804318488529,24,2.27633751578953,0,-3.54415428638458,-3.75948119163513,0.334399099492044
+5416,85143,449597.952,85243,449497.952,15,54,17.75,0.0253571428571429,6.336174589057,0.342460317460317,11.7591719570815,-0.00397149108757276,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,0.333333333333333,0,-3.72213657697042,-3.93902087211609,0.316639709276765
+5417,85143,449497.952,85243,449397.952,16,54,17.25,0.08625,12.5032868304131,0.661764705882353,15,-0.00480185174345024,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,0,0,-3.92277064919472,-4.05650234222412,0.158758497524005
+5418,85143,449397.952,85243,449297.952,17,54,72.75,0.7275,37.6392970350591,0.81901489117984,NA,-0.019893317509559,0.0425,4.25,3,66.6524689638038,0.66579634464752,2.75,0.882352941176471,0,-3.81925131877263,-3.9234573841095,0.122987699977611
+5419,85143,449297.952,85243,449197.952,18,54,95.75,0.9575,38.7967619113786,0.898607484769365,NA,0.015394308452087,0.37,37,3,93.7465767784051,0.841855561412757,30.25,0.202702702702703,0,-3.59860554337502,-3.83208346366882,0.237137504987845
+5420,85143,449197.952,85243,449097.952,19,54,98.75,0.9875,38.0199480630891,0.929113924050633,NA,0.0817914124415256,0.805,80.5,1,99.3970714465752,0.856612685560054,80.5,0.062111801242236,0,-3.3895777463913,-3.48455595970154,0.225413285462092
+5421,85143,449097.952,85243,448997.952,20,54,61.75,0.1235,9.33345251314626,0.363790849673203,14.1622776601684,0.05422580180777,0.5975,59.75,2,97.4990622492641,0.749885364125224,57.25,1.18170044711444,0,-3.28187376260757,-3.36939120292664,0.231508154022115
+5422,85143,448997.952,85243,448897.952,21,54,96,0.96,38.3767871019568,0.905815972222222,NA,0.149867355939932,0.9125,91.25,1,99.7534323937872,0.751912342360968,91.25,0.219178082191781,0,-3.21735037863255,-3.331627368927,0.149617155368057
+5423,85143,448897.952,85243,448797.952,22,54,90.5,0.4525,22.3406664895652,0.736242744838733,15.8113883008419,0.133381684127962,0.87,87,1,99.620460342959,0.859714753331775,87,0.668913062961622,0,-2.93760238091151,-3.09030342102051,0.21152529152529
+5424,85143,448797.952,85243,448697.952,23,54,69.25,0.173125,15.7865415433027,0.534559468605088,11.0355339059327,0.0433693698293791,0.3925,39.25,2,93.4952626680843,0.862825788751715,22.75,0.963141423122139,0,-2.58589769899845,-2.84806084632874,0.302540013257902
+5425,85143,448697.952,85243,448597.952,24,54,83,0.83,39.7514629254282,0.816767068273092,NA,0.0721939002524596,0.765,76.5,1,99.2456636792102,0.749253291050555,76.5,0.942105461569393,0,-2.05706323186556,-2.38296556472778,0.354387702359733
+5426,85143,448597.952,85243,448497.952,25,54,70.75,0.35375,19.2804857873395,0.50711743772242,25,0.0435242611110516,0.445,44.5,3,96.6905371083002,0.726169938935897,43.5,1.13566160737798,0,-1.48452104628086,-2.00605058670044,0.547622182535681
+5427,85143,448497.952,85243,448397.952,26,54,74,0.37,17.4236192740535,0.427966101694915,18.0277563773199,0.0500362483355127,0.57,57,1,98.2919349628155,0.857729138166895,57,0.834891837939881,0,-0.48547419005384,-1.04628562927246,0.573673516829449
+5428,85143,448397.952,85243,448297.952,27,54,71.25,0.7125,34.6174035285478,0.855555555555556,NA,0.0155144691519445,0.1675,16.75,2,87.7885965940422,0.876799876799877,11.5,2.05064989915535,0,-0.107732252130518,-0.422940999269485,0.290238176416453
+5429,85143,448297.952,85243,448197.952,28,54,48,0.24,22.4374553316521,0.763888888888889,40.3112887414927,0.0355208220544046,0.38,38,3,93.8467492646226,0.867036651636027,30.75,1.66494314294112,0,0.0746318235372504,-0.220965981483459,0.277796001164979
+5430,85143,448197.952,85243,448097.952,29,54,49,0.245,18.0476476282273,0.563327576280944,40.3112887414927,0.0319194532899769,0.31,31,3,94.4903042621512,0.838969404186795,30,0.574300027662708,0,0.254380842088722,-0.125097319483757,0.435574511443229
+5431,85143,448097.952,85243,447997.952,30,54,45.5,0.0758333333333333,7.02536018073183,0.207717833440377,11.7741585037433,0.0258146797977679,0.1775,17.75,6,80.8805407456046,0.717933130699088,9.5,4.52140526032784,0,0.178122491575778,-0.206839993596077,0.608761862486779
+5432,85143,447997.952,85243,447897.952,31,54,36.25,0.0604166666666667,9.36834955079025,0.412977626948215,12.3215759691358,0.0133618097361273,0.1225,12.25,4,77.4409936522763,0.674399674399675,5.75,2.88848324211276,0,0.161454962566495,-0.21678651869297,0.612547221732065
+5433,85143,447897.952,85243,447797.952,32,54,28,0.035,8.36178065972919,0.321463380673907,12.3381019908347,0.0104141908192832,0.105,10.5,3,79.4962027658268,0.826894326854985,7.75,3.70661463056292,0,-0.0333317239710595,-0.197679191827774,0.266066235610822
+5434,85143,447797.952,85243,447697.952,33,54,56.75,0.189166666666667,11.2165033683512,0.258518518518519,10,0.00783564093185077,0.13,13,2,89.5205369366759,0.845021309569934,12.75,0.384615384615385,0,-0.18726314107577,-0.215462535619736,0.0595559927066626
+5435,85143,447697.952,85243,447597.952,34,54,11,0.055,7.79332187102793,0.329457364341085,11.1803398874989,-0.0147612288534719,0,0,0,NA,NA,0,NA,NA,-0.153170995181426,-0.219889104366302,0.106107824075479
+5436,85143,447597.952,85243,447497.952,35,54,8,0.00888888888888889,2.60822460769942,0.177469135802469,18.8932187923691,-0.00733791119855141,0,0,0,NA,NA,0,NA,NA,0.0276328544714488,-0.0643249899148941,0.172571492447991
+5437,85143,447497.952,85243,447397.952,36,54,10.5,0.0075,3.03118121591389,0.158919123204837,14.5252395721199,0.0113483654308629,0.0625,6.25,2,78.2831090920657,0.866666666666667,5.5,4.21421356201172,0,0.287889057770371,0.134537681937218,0.2260179960452
+5438,85143,447397.952,85243,447297.952,37,54,7.75,0.0155,4.60382223926348,0.249074074074074,28.8108543447639,0.00786572793639607,0.035,3.5,4,53.4653723515938,0.481865284974093,1.75,10.6507193701608,0,0.707300558686256,0.502003610134125,0.36678991628639
+5439,85143,447297.952,85243,447197.952,38,54,40.75,0.135833333333333,11.4111570375599,0.344164919636618,19.120226591666,0.0208817874203851,0.14,14,4,81.7340314814477,0.712299208822824,9,4.12500517708915,0,1.15935594588518,0.940052568912506,0.188492553863512
+5440,85143,447197.952,85243,447097.952,39,54,59.5,0.2975,21.2952053722797,0.684151785714286,15,0.0395207561225834,0.37,37,5,91.5431619524581,0.812569554266971,30.5,1.22441353669038,0,1.27482291062673,1.21145975589752,0.0545850751974952
+5441,85143,447097.952,85243,446997.952,40,54,58,0.193333333333333,16.2105533173359,0.563607085346216,10.3934466291663,0.0366533418211475,0.385,38.5,3,96.2134544822597,0.770174380189032,38,2.60611849945861,0,1.36812072992325,1.29287946224213,0.104902384683836
+5442,85143,446997.952,85243,446897.952,41,54,67.75,0.6775,33.6131329474234,0.84009840098401,NA,0.0258469529518061,0.28,28,5,88.120927259356,0.773102310231023,17,0.706626210893903,0,1.53980405131976,1.46935665607452,0.0981656617099474
+5443,85143,446897.952,85243,446797.952,42,54,6.25,0.015625,4.20960835290448,0.361492673992674,25.6954364826301,0.0204029381295368,0.055,5.5,5,60.8854636910973,0.595393713040772,2.25,11.3660961497914,0,1.46353639662266,1.34527659416199,0.11482438395977
+5444,85143,446797.952,85243,446697.952,43,54,29.75,0.0991666666666667,14.3004328774986,0.591462418300654,19.0392913898826,0.0314207216452269,0.225,22.5,4,86.1766575167512,0.751552795031056,14,7.2914064195421,0,1.1138422191143,0.814456820487976,0.34338789016968
+5445,85143,446697.952,85243,446597.952,44,54,27,0.0385714285714286,8.46450978904774,0.311387559808612,15.2240774992748,0.0763459974742364,0.5575,55.75,2,96.4240575386291,0.913081269013472,50.25,9.8441036463853,0,0.728246045609315,0.478327333927155,0.354348458007003
+5446,85143,446597.952,85243,446497.952,45,54,26.75,0.0297222222222222,4.39798182598192,0.188028496533063,12.3224110486105,0.0115586497023173,0.1125,11.25,3,79.7794116476351,0.733135656041512,6.75,8.95005476209852,0,0.457040276378393,0.231088072061539,0.323493456094183
+5447,85143,446497.952,85243,446397.952,46,54,13,0.026,6.49586919363926,0.31484126984127,17.2055690837603,0.00966870599379035,0.0925,9.25,7,65.8384179813453,0.638712008309624,4.75,5.4886247274038,0,0.320358121146758,0.173970341682434,0.262707236904387
+5448,85143,446397.952,85243,446297.952,47,54,11.75,0.1175,24.1746755600883,0.542553191489362,NA,0.0236137626943673,0.145,14.5,2,85.6281725375841,0.801169590643275,8.25,5.25797600581728,0,0.311983074061573,0.17810095846653,0.160145114726013
+5449,85143,446297.952,85243,446197.952,48,54,39.25,0.0654166666666667,8.04477756204321,0.346410533910534,12.3215759691358,0.0116231525161265,0.0825,8.25,4,70.9576805675919,0.697244928852558,3.75,1.4263959942442,0,0.476534952720006,0.371112942695618,0.113240530184281
+5450,85143,446197.952,85243,446097.952,49,54,14,0.0175,7.22122519294526,0.291542658730159,11.1690509954173,0.00279496159777409,0.01,1,1,52.6315789473684,1,1,6.0355339050293,5,0.695593357086182,0.514437556266785,0.203727737918361
+5451,85143,446097.952,85243,445997.952,50,54,27.5,0.0458333333333333,8.23423758037591,0.276801305027111,11.9521812897228,0.00847188776175244,0.0825,8.25,3,74.4656851042894,0.697244928852558,3.75,4.13644894686612,0,0.768480745454629,0.46854230761528,0.280210798162331
+5452,85143,445997.952,85243,445897.952,51,54,38.5,0.048125,7.11787124106816,0.280184108527132,12.3579368967158,0.0505578626882925,0.475,47.5,2,97.0860263889005,0.913419913419913,47,5.23047230369166,0,0.455406780354679,0.099343940615654,0.39272789763764
+5453,85143,445897.952,85243,445797.952,52,54,78.25,0.39125,20.6684386727916,0.577218614718615,10,0.0708859941014089,0.725,72.5,2,98.6994636481338,0.899916597164304,72,0.742491294597757,0,0.00523755687754601,-0.0886969715356827,0.20850270809633
+5454,85143,445797.952,85243,445697.952,53,54,48.5,0.0692857142857143,6.47930525353993,0.27315350032113,10.1686199839284,0.0522591896005179,0.46,46,1,97.5030549392159,0.918300653594771,46,1.0345398861429,0,-0.114081871695817,-0.135068252682686,0.03979087676675
+5455,85143,445697.952,85243,445597.952,54,54,20,0.0285714285714286,3.37124989472463,0.164965986394558,11.183467321066,0.0162960286658154,0.1475,14.75,1,91.5590620020185,0.873497786211259,14.75,0.677966101694915,0,-0.0924244121027489,-0.129625454545021,0.0643441094953295
+5456,85143,445597.952,85243,445497.952,55,54,0.25,0.0025,0,0,NA,0.00664300744228058,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,34.9556217193604,28.2842712402344,0.0193309431585173,-0.0711867660284042,0.133776832442306
+5457,85143,445497.952,85243,445397.952,56,54,0.25,0.0025,0,0,NA,0.00886609981869697,0.035,3.5,2,67.5132315290738,0.792746113989637,2.75,28.5394139971052,18.0277557373047,0.177269368898124,0.0477095134556293,0.216170963490392
+5458,85143,445397.952,85243,445297.952,57,54,15.25,0.0254166666666667,6.20684124633873,0.394099727433061,14.0236892706218,0.00874691043417442,0.1275,12.75,3,83.2120552180998,0.723347495306788,9,2.00139348647174,0,0.664691309755047,0.0456734225153923,0.901087822696115
+5459,85143,445297.952,85243,445197.952,58,54,22,0.0244444444444444,4.4152936688861,0.222619047619048,10,0.00349268366511978,0.085,8.5,1,87.210675248157,0.941451990632318,8.5,0.147058823529412,0,1.20825301110744,0.0697430968284607,0.995362889909598
+5460,85143,445197.952,85243,445097.952,59,54,23.75,0.0263888888888889,4.81230576252226,0.193862433862434,11.6393581220104,0.00513614208090985,0.0925,9.25,3,80.7216757248599,0.801291604570293,7.75,1.97976777360246,0,1.2362913787365,0.67866051197052,0.685953364681366
+5461,85143,445097.952,85243,444997.952,60,54,6,0.00857142857142857,1.91887396445673,0.144444444444444,17.3371961648314,0.00379494098184296,0.0475,4.75,5,61.3569784935917,0.565571544936193,2.75,29.8292820579127,0,0.822807848453522,0.605145394802094,0.332774885127033
+5462,85143,444997.952,85243,444897.952,61,54,13.25,0.033125,6.27285839253456,0.30220398970399,15,-0.00808599128777587,0.0725,7.25,3,75.9095445700403,0.770602741297241,4.75,9.14997436260355,0,0.334889346112808,0.159462586045265,0.309773482537779
+5463,85143,444897.952,85243,444797.952,62,54,5.25,0.00875,3.18027051060448,0.205555555555556,17.1798109215533,-0.0107508843212599,0.005,0.5,2,0,1,0.25,28.2390766143799,5,-0.0800692045595497,-0.275017023086548,0.224086181017439
+5464,85143,444797.952,85243,444697.952,63,54,1.5,0.005,1.92339805877272,0.148148148148148,27.6688025151905,-0.00186435475580311,0.0425,4.25,1,79.7330921014386,0.87467362924282,4.25,57.548355326933,46.0977210998535,-0.364259108901024,-0.479560256004333,0.156125636421811
+5465,85143,444697.952,85243,444597.952,64,54,10.5,0.0525,12.019481547513,0.633529411764706,15,-0.00618179631593193,0,0,0,NA,NA,0,NA,NA,-0.442623035982251,-0.534346044063568,0.0962167577465569
+5466,85143,444597.952,85243,444497.952,65,54,8,0.04,9.9558226691125,0.534567901234568,20.6155281280883,-0.00595301090622343,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,5.3451779683431,0,-0.402872070670128,-0.480023205280304,0.0713706204040647
+5467,85143,444497.952,85243,444397.952,66,54,8.75,0.04375,12.0219139259049,0.495689655172414,10,-0.00906456245331356,0,0,0,NA,NA,0,NA,NA,-0.407815871139367,-0.549050450325012,0.110594537722804
+5468,85143,444397.952,85243,444297.952,67,54,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,10.3934466291663,-0.00947648879533517,0.02,2,1,68.0470115164975,0.795918367346939,2,4.63388347625732,0,-0.483197322115302,-0.757304906845093,0.21252283498912
+5469,85143,444297.952,85243,444197.952,68,54,3.25,0.0108333333333333,4.65084362831913,0.25462962962963,26.996731711976,-0.0186294820120384,0,0,0,NA,NA,0,NA,NA,-0.618832459052404,-0.887740254402161,0.290153374450642
+5470,85143,444197.952,85243,444097.952,69,54,52.75,0.175833333333333,11.860833466023,0.260765550239234,11.6666666666667,0.0277079037464864,0.4375,43.75,1,97.3060110945426,0.884416924664603,43.75,1.52324881417411,0,-0.939547505229712,-1.23788547515869,0.338627154168599
+5471,85143,444097.952,85243,443997.952,70,54,74.5,0.248333333333333,16.930973451213,0.464845244305338,11.6666666666667,0.0995565628563054,0.925,92.5,1,99.7907868956838,0.695672848311935,92.5,1.19110994081239,0,-1.29991659522057,-1.41315674781799,0.177659910294928
+5472,85143,443997.952,85243,443897.952,71,54,62.25,0.0889285714285714,8.97963975102311,0.297483766233766,10.8829056982141,0.128201458093245,0.97,97,1,99.9192307098231,0.864130434782609,97,2.0192256711193,0,-1.22242189571261,-1.49317336082458,0.322405734871195
+5473,85143,443897.952,85243,443797.952,72,54,42.25,0.0704166666666667,13.1471866138077,0.395588235294118,13.0473785412437,0.080007783248584,0.6775,67.75,2,98.5208916340707,0.853794489879837,67.25,3.39902900329815,0,-1.12412891536951,-1.56613564491272,0.574761364885852
+5474,85143,443797.952,85243,443697.952,73,54,74.25,0.185625,11.8084643770959,0.372814685314685,12.0710678118655,-0.00127031701242231,0.2475,24.75,1,94.6838124709557,0.858150733510023,24.75,1.8304363982846,0,-1.33313762769103,-1.56677865982056,0.39364239677137
+5475,85143,443697.952,85243,443597.952,74,54,96.5,0.965,37.8368851506229,0.908031088082902,NA,0.060211927840719,0.7275,72.75,1,99.0925222972574,0.939620616205156,72.75,0.171821305841924,0,-1.02346909046173,-1.31882035732269,0.365734648169387
+5476,85143,443597.952,85243,443497.952,75,54,96.75,0.9675,38.0670327389331,0.906976744186046,NA,0.0699468981288374,0.915,91.5,1,99.7609644895861,0.626517273576097,91.5,0.150273224043716,0,-0.881187526509166,-1.44551956653595,0.485281609686022
+5477,85143,443497.952,85243,443397.952,76,54,88.75,0.8875,37.5754514780753,0.864319248826291,NA,0.0778602756885812,0.8675,86.75,2,99.3986483737564,0.815922687528762,86.5,0.582337371210544,0,-1.40809791783492,-1.68779695034027,0.385551226752024
+5478,85143,443397.952,85243,443297.952,77,54,68.25,0.2275,24.6916212532009,0.793913224121557,15,0.0353414810676622,0.3025,30.25,3,90.1326924697147,0.824046920821114,14.5,0.909090909090909,0,-1.87296544512113,-2.00042080879211,0.244794038049699
+5479,85143,443297.952,85243,443197.952,78,54,94,0.94,38.1639898785322,0.886081560283688,NA,0.0239770514913835,0.3875,38.75,1,96.8082175905,0.9656283566058,38.75,0.290322580645161,0,-2.09019515663385,-2.20161056518555,0.13153122633184
+5480,85143,443197.952,85243,443097.952,79,54,93,0.93,38.3899311941612,0.878136200716846,NA,-0.0112824797732901,0.035,3.5,3,63.5119947148021,0.740932642487047,2.75,0,0,-2.25194152196248,-2.31737565994263,0.10798702658695
+5481,85143,443097.952,85243,442997.952,80,54,95,0.95,38.2165986535841,0.895614035087719,NA,0.0366667797301488,0.555,55.5,1,98.1983573135366,0.831732074037887,55.5,0.247747747747748,0,-2.36914317309856,-2.46990084648132,0.115963670071383
+5482,85143,442997.952,85243,442897.952,81,54,85.5,0.4275,29.3583827892133,0.779352957511802,10,-0.0113020113616949,0.2975,29.75,2,91.7682029312121,0.848424937392909,18.25,0.521605611849232,0,-2.63814560572306,-2.74729609489441,0.185663142725694
+5483,85143,442897.952,85243,442797.952,82,54,63.25,0.31625,18.3414989036623,0.477755644090305,10,0.0450598042937054,0.4,40,4,92.7915842164816,0.824263038548753,32,1.34375,0,-2.91489847004414,-3.01742553710938,0.138281199018288
+5484,85143,442797.952,85243,442697.952,83,54,1.5,0.003,0.5,0.0333333333333333,28.1329059474898,0.0577835372451773,0.475,47.5,1,97.6265657883157,0.983766233766234,47.5,24.5383008354589,0,-3.08924144506454,-3.12483501434326,0.0680792205941873
+5485,85143,442697.952,85243,442597.952,84,54,0.25,0.0025,0,0,NA,0.0567126557632582,0.4075,40.75,4,92.4431563560803,0.859353023909986,31,37.5220786369651,5,-3.12094204127789,-3.18797636032104,0.0724711900417534
+5486,85143,442597.952,85243,442497.952,85,54,12,0.024,7.21829016010473,0.235333333333333,21.5645202109687,0.0506452550821996,0.4625,46.25,4,92.6433234602169,0.869441044471644,30.25,22.0156559815278,0,-3.08421164751053,-3.18364548683167,0.110043970396682
+5487,85143,442497.952,85243,442397.952,86,54,0.25,0.0025,0,0,NA,0.057555153752437,0.5975,59.75,2,97.0128393260026,0.861047424514014,54.25,37.5756260460889,0,-3.16256992518902,-3.22469139099121,0.0629438855604289
+5488,85143,442397.952,85243,442297.952,87,54,0.25,0.0025,0,0,NA,-0.0364126681376365,0.115,11.5,1,89.742951983695,0.913081269013472,11.5,31.852549345597,20,-3.23068183660507,-3.27079892158508,0.0481412855791363
+5489,85143,442297.952,85243,442197.952,88,54,1.75,0.0035,1,0.0666666666666667,18.6938721971897,0.110085134104011,0.905,90.5,1,99.7306491449722,0.754129850172877,90.5,25.456945456194,0,-3.28069122135639,-3.2980797290802,0.0244164002417993
+5490,85143,442197.952,85243,442097.952,89,54,0.75,0.0025,0,0,20.6155281280883,0.0880035458967541,0.7225,72.25,1,99.0712074303406,0.980127186009539,72.25,30.0762022209827,0,-3.30904016892115,-3.31640648841858,0.0164258396486466
+5491,85143,442097.952,85243,441997.952,90,54,1.5,0.003,0.5,0.0333333333333333,34.5439164052724,-0.0554276101132473,0,0,0,NA,NA,0,NA,NA,-3.34660412867864,-3.3785183429718,0.0392004792347246
+5492,85143,441997.952,85243,441897.952,91,54,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.028060526848567,0.13,13,1,90.6657843098624,0.896680873046623,13,43.596307351039,15,-3.39556843042374,-3.40931844711304,0.0224060274923878
+5493,85143,441897.952,85243,441797.952,92,54,0.5,0.0025,0,0,20.6155281280883,0.166721885185689,1,100,1,100,NA,100,32.477774438858,0,-3.369189341863,-3.38760995864868,0.0317456312666761
+5494,85143,441797.952,85243,441697.952,93,54,0,NA,NA,NA,NA,0.0966658881737385,0.5875,58.75,2,96.6885974635456,0.911644923034445,54.25,75.3001744209452,40,-3.3201926201582,-3.35100984573364,0.0291001295473386
+5495,85143,441697.952,85243,441597.952,94,54,0,NA,NA,NA,NA,0.158087817220949,0.95,95,1,99.8632718311308,0.972260748959778,95,192.135598875347,140.089248657227,-3.28547410170237,-3.29528045654297,0.0194482554337148
+5496,85143,441597.952,85243,441497.952,95,54,0,NA,NA,NA,NA,0.13783468385227,1,100,1,100,NA,100,264.028444786072,234.093994140625,-3.28260335326195,-3.32053709030151,0.0335011208497529
+5497,85143,441497.952,85243,441397.952,96,54,0,NA,NA,NA,NA,0.154219107634854,0.8025,80.25,1,99.3879413454111,0.941513138655638,80.25,202.476504982446,145,-3.32203966379166,-3.36794328689575,0.0498948007367893
+5498,85143,441397.952,85243,441297.952,97,54,0,NA,NA,NA,NA,0.131733084698208,0.95,95,1,99.8632718311308,0.944521497919556,95,103.347348895826,45,-3.37866641581059,-3.40569734573364,0.0498511295141716
+5499,85143,441297.952,85243,441197.952,98,54,1,0.01,4.04508497187474,0.333333333333333,NA,0.209003967903554,1,100,1,100,NA,100,51.9214111185074,0,-3.33748145898183,-3.37858319282532,0.0756808400306666
+5500,85143,441197.952,85243,441097.952,99,54,0,NA,NA,NA,NA,0.217568306401372,1,100,1,100,NA,100,108.907988185883,45.276927947998,-3.23329746723175,-3.33300971984863,0.11854659752497
+5501,85243,451097.952,85343,450997.952,0,55,9.5,0.0316666666666667,8.12824570489306,0.287037037037037,28.4256418968957,0.0127174146686411,0.065,6.5,2,80.469605015409,0.869570888222251,6,12.876180428725,0,-3.38347872098287,-3.43264865875244,0.0598600123239083
+5502,85243,450997.952,85343,450897.952,1,55,28.75,0.0479166666666667,12.6540890469713,0.441916900567815,10.3934466291663,-0.0111105679668617,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-3.33250248432159,-3.4000883102417,0.0711908391301728
+5503,85243,450897.952,85343,450797.952,2,55,30.25,0.03025,4.77791359876934,0.20772895503583,14.4541309744284,0.0125850847900438,0.115,11.5,7,66.5798669285238,0.579892800231783,3.5,7.97680017222529,0,-3.44223435719808,-3.62731289863586,0.214685743074015
+5504,85243,450797.952,85343,450697.952,3,55,60.5,0.15125,17.9819411727116,0.453221236757822,10.5901699437495,0.00696020288216914,0.085,8.5,2,84.2963148647428,0.843871975019516,8,0.441176470588235,0,-3.77324950695038,-4.06920719146729,0.381945147476959
+5505,85243,450697.952,85343,450597.952,4,55,10.25,0.0128125,4.96086424573675,0.194444444444444,13.7903094389037,-0.0216677550692475,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-4.4627074930403,-5,0.728262200357582
+5506,85243,450597.952,85343,450497.952,5,55,19,0.095,10.2444293119861,0.493243243243243,40,-0.032845947642345,0,0,0,NA,NA,0,NA,NA,-4.79365913073222,-5,0.534243998516417
+5507,85243,450497.952,85343,450397.952,6,55,41.25,0.4125,36.9082658079301,0.806060606060606,NA,-0.0113675166426674,0.0275,2.75,1,73.5251216233933,1,2.75,0,0,-4.08303342925178,-4.55964803695679,0.431473376987958
+5508,85243,450397.952,85343,450297.952,7,55,10.75,0.0134375,4.66761885831345,0.174236673414305,16.4707738591618,-0.0081967854659888,0.01,1,1,52.6315789473684,0.747474747474748,1,13.3375577926636,10,-4.08668911457062,-4.13171195983887,0.0616341429772503
+5509,85243,450297.952,85343,450197.952,8,55,1.5,0.003,0.5,0.0333333333333333,30.5503013714467,-0.0168052006593825,0,0,0,NA,NA,0,NA,NA,-4.12543948491414,-4.1352367401123,0.019065768749439
+5510,85243,450197.952,85343,450097.952,9,55,12.5,0.0125,3.98559936896641,0.0847953216374269,14.4472140884948,-0.00355817798327735,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,19.6024524143764,5,-4.13991774453057,-4.1399998664856,0.00218512183369242
+5511,85243,450097.952,85343,449997.952,10,55,28.25,0.0470833333333333,9.33823780247596,0.243715450525152,10.1967233145832,-0.00285214782959883,0.0025,0.25,1,0,NA,0.25,25,25,-4.1399998664856,-4.1399998664856,0
+5512,85243,449997.952,85343,449897.952,11,55,37.25,0.0745,7.68638423821826,0.209420289855072,14.7966912753363,0.000740779392508557,0.0775,7.75,2,79.612505752468,0.89159891598916,6,7.61354108010569,0,-4.1399998664856,-4.1399998664856,0.00266083450269215
+5513,85243,449897.952,85343,449797.952,12,55,5.75,0.0071875,3.15044244610866,0.151041666666667,21.8272200492494,-0.00794856790127597,0.055,5.5,3,68.2775604035065,0.719887955182073,3.25,7.70492935180664,0,-4.10662984848022,-4.13205718994141,0.0395486049552039
+5514,85243,449797.952,85343,449697.952,13,55,34.5,0.0492857142857143,7.47075663544616,0.342723415149633,10.5058599517853,0.0423573383011535,0.355,35.5,3,89.9747502317861,0.809183064997019,15,7.37954977868309,0,-3.98699061075846,-4.06670951843262,0.133104310364247
+5515,85243,449697.952,85343,449597.952,14,55,36.25,0.18125,17.1686743611793,0.532949172576832,20,0.00466597172453476,0.0775,7.75,3,80.946724255699,0.804878048780488,7,1.45161290322581,0,-3.87778174877167,-4.01620578765869,0.200642228398621
+5516,85243,449597.952,85343,449497.952,15,55,22.5,0.225,25.6731548569047,0.714814814814815,NA,0.00418964827127638,0.08,8,2,82.8157980848341,0.811872909698997,7.25,2.03125,0,-3.95962574746874,-4.00907516479492,0.104604088001693
+5517,85243,449497.952,85343,449397.952,16,55,40.25,0.4025,32.2032780167249,0.791925465838509,NA,0.00735627316571481,0.1275,12.75,4,82.7409474209399,0.710173566511873,10.25,2.42366169948204,0,-3.96630167961121,-4.08240175247192,0.0887432407854571
+5518,85243,449397.952,85343,449297.952,17,55,91,0.91,38.2683593286795,0.882326007326007,NA,-0.0164406410659285,0.215,21.5,1,93.912339662796,0.900087423504434,21.5,0.581395348837209,0,-3.79171477423774,-3.89345097541809,0.193332485046202
+5519,85243,449297.952,85343,449197.952,18,55,98,0.98,38.1304850931689,0.919642857142857,NA,0.0554221754759783,0.575,57.5,1,98.3223108063601,0.764157411216235,57.5,0.108695652173913,0,-3.3084931174914,-3.59529900550842,0.28759828908127
+5520,85243,449197.952,85343,449097.952,19,55,87.75,0.8775,38.6454562594988,0.871794871794872,NA,0.0891520722163841,0.815,81.5,1,99.4331707829294,0.74511096462316,81.5,0.497150514754781,0,-3.05713033676147,-3.2538013458252,0.215831813389256
+5521,85243,449097.952,85343,448997.952,20,55,92.25,0.9225,38.1338741068911,0.881662149954833,NA,0.0962188403587788,0.915,91.5,1,99.7609644895861,0.864188099482217,91.5,0.368852459016393,0,-3.01561657587687,-3.21017789840698,0.228090147848991
+5522,85243,448997.952,85343,448897.952,21,55,88,0.88,38.541362057102,0.87405303030303,NA,0.0867369741073344,0.5825,58.25,3,96.6989996018839,0.878862963727717,55.25,0.189451225837413,0,-3.06523291269938,-3.22127795219421,0.322401756316558
+5523,85243,448897.952,85343,448797.952,22,55,70.5,0.235,20.8638233735315,0.785588807327938,12.1676051329096,0.0640321663137365,0.685,68.5,2,97.5822163044076,0.796183064665555,63,1.29300934728915,0,-2.68481628100077,-2.92153096199036,0.358891701603118
+5524,85243,448797.952,85343,448697.952,23,55,83.5,0.4175,23.175459224162,0.750087904360056,14.142135623731,0.0967756485223072,0.8575,85.75,1,99.5794816088838,0.826727312107429,85.75,0.858593220613441,0,-2.43080387512843,-2.64210629463196,0.251105672539056
+5525,85243,448697.952,85343,448597.952,24,55,95.25,0.9525,37.9346495634587,0.913823272090989,NA,0.0637581178457185,0.705,70.5,2,98.748051759347,0.88487368084426,70.25,0.195035460992908,0,-1.94069997469584,-2.14635920524597,0.321992541459328
+5526,85243,448597.952,85343,448497.952,25,55,39.5,0.1975,21.7610848387991,0.764868686868687,20,0.0457969323135649,0.4,40,2,95.6006628673428,0.886621315192744,38.5,1.96308135986328,0,-1.51682457327843,-1.77410268783569,0.350283490122961
+5527,85243,448497.952,85343,448397.952,26,55,92.75,0.9275,37.5111275687068,0.893530997304582,NA,0.0651233996776864,0.74,74,2,98.8894969566059,0.903328269576025,73.75,0.219594594594595,0,-0.844160709116194,-1.06700301170349,0.48148355355732
+5528,85243,448397.952,85343,448297.952,27,55,27.75,0.069375,12.6745719696404,0.475464947239141,26.3278221853732,-0.0132319321309853,0.07,7,1,85.3702908942512,0.95221027479092,7,2.14285714285714,0,-0.334632333988945,-0.487542688846588,0.423236269783472
+5529,85243,448297.952,85343,448197.952,28,55,63,0.315,17.7930726540057,0.421978751660027,14.142135623731,-0.0719871488192803,0.05,5,2,76.3172662672173,0.830220713073005,4.5,0.25,0,-0.35305024517907,-0.467439472675323,0.225200425162746
+5530,85243,448197.952,85343,448097.952,29,55,51.5,0.171666666666667,14.3761512132685,0.517287342287342,23.4370962471642,0.0250096977992507,0.2825,28.25,5,88.4254846187582,0.829199972671996,20.75,0.486725663716814,0,0.203488693572581,-0.339717328548431,0.659467837840252
+5531,85243,448097.952,85343,447997.952,30,55,46,0.115,12.7983479993554,0.551417748917749,18.6133560913059,0.0301754619166604,0.2625,26.25,6,84.4979388360586,0.784772666128598,11.5,1.41530234927223,0,1.22718075911204,1.04134500026703,0.447999845162091
+5532,85243,447997.952,85343,447897.952,31,55,46.25,0.0770833333333333,12.8022648092762,0.403424694214168,11.7314060253863,0.00488015200526206,0.0925,9.25,3,80.7722900226046,0.819356004154812,7.5,0.945945945945946,0,1.25688316424688,0.958052635192871,0.568599804917743
+5533,85243,447897.952,85343,447797.952,32,55,41.25,0.0515625,6.49254603944611,0.239159798534799,11.3165934813547,-0.0116041279526507,0.055,5.5,2,79.4049244770798,0.875505757858699,5.25,2.23373343727805,0,0.307031920645386,-0.0280338954180479,0.458133850107485
+5534,85243,447797.952,85343,447697.952,33,55,33.25,0.0665,9.8303596757013,0.433634085213033,18.9515327503638,-0.0280698729646747,0.015,1.5,1,62.2896536353828,1,1.5,0,0,-0.12001583725214,-0.187451004981995,0.105352358274859
+5535,85243,447697.952,85343,447597.952,34,55,16.25,0.0232142857142857,5.6906534381954,0.391043083900227,16.4331411369777,-0.0183803121303481,0.0075,0.75,1,44.4894453484604,1,0.75,21.4136530558268,18.0277557373047,-0.0473180669359863,-0.181304916739464,0.162288092976152
+5536,85243,447597.952,85343,447497.952,35,55,12,0.015,4.08353234966156,0.246271929824561,15.814429906153,0.0245719834975898,0.175,17.5,4,83.8615670595442,0.773343187977334,9.75,13.7507613863264,0,0.235476700796021,0.0647163093090057,0.221433063189331
+5537,85243,447497.952,85343,447397.952,36,55,55,0.11,8.45318869528231,0.328227078170759,11.6568542494924,0.0591436065645394,0.5625,56.25,1,98.2456140350877,0.891156462585034,56.25,1.65938208685981,0,0.586615684131781,0.3159219622612,0.381448935571389
+5538,85243,447397.952,85343,447297.952,37,55,25.75,0.064375,7.97538089474732,0.282502863688431,29.3806146107002,0.0168203358483697,0.055,5.5,8,46.223495552917,0.502023031434796,1.5,4.54545454545455,0,1.20163581106398,1.04937636852264,0.316414615128721
+5539,85243,447297.952,85343,447197.952,38,55,22.5,0.0132352941176471,3.75260799587089,0.247899713244982,10.5024129213233,0.0163941325431915,0.065,6.5,6,58.9767711216088,0.530455197600104,2,2.88461538461538,0,1.34947802623113,1.21514666080475,0.110819357537001
+5540,85243,447197.952,85343,447097.952,39,55,12.75,0.01275,4.21634902080126,0.225694444444444,13.6046011025273,0.00338044437003191,0.005,0.5,1,30.8308651382582,1,0.5,5,5,1.28728026813931,1.17055201530457,0.134522084367066
+5541,85243,447097.952,85343,446997.952,40,55,23.75,0.0215909090909091,4.97944239807902,0.281912027366573,14.0715533314719,0.00569122894848988,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,1.34122975667318,0,1.23681185642878,1.10968315601349,0.20070593452119
+5542,85243,446997.952,85343,446897.952,41,55,22.25,0.0278125,5.4155787788597,0.299112274220033,13.7852730267693,0.0050411690654073,0.0675,6.75,3,72.0079631906891,0.675790261238232,3.5,3.0846026385272,0,1.42968368530273,1.28327286243439,0.182250342329962
+5543,85243,446897.952,85343,446797.952,42,55,51.5,0.171666666666667,12.006879002687,0.362119545287862,11.937129433614,0.0303922218148364,0.2425,24.25,6,81.5502923300484,0.711695307461781,10.25,1.23159392838626,0,1.61529734730721,1.45705544948578,0.225801245616836
+5544,85243,446797.952,85343,446697.952,43,55,61,0.101666666666667,10.1781767593714,0.331815245478036,10.1967233145832,0.0501913136929215,0.475,47.5,4,93.9561527063352,0.794372294372295,29.75,1.47368421052632,0,1.39901343319151,0.98873108625412,0.537103405149697
+5545,85243,446697.952,85343,446597.952,44,55,48,0.096,10.0086365039695,0.283143939393939,10,0.0262808378045884,0.185,18.5,5,85.6495760417684,0.707409155261916,13.5,1.37933875418998,0,0.882222122616238,0.541920304298401,0.499662689349199
+5546,85243,446597.952,85343,446497.952,45,55,59.5,0.14875,12.5265601728682,0.503075325505232,10.5901699437495,0.0481448495970108,0.4825,48.25,2,96.3388091938909,0.859660486330392,45.5,0.995186879844863,0,0.434836948911349,0.250203430652618,0.235950371742767
+5547,85243,446497.952,85343,446397.952,46,55,27.25,0.0545,11.4872994417046,0.418118131868132,18.211102550928,-0.00321651883445156,0.0925,9.25,3,76.9716624100661,0.837420403739331,6.75,5.90703433268779,0,0.226159289479256,0.174662545323372,0.0943131912280567
+5548,85243,446397.952,85343,446297.952,47,55,14,0.0233333333333333,7.5546726225724,0.420450498575499,14.120226591666,0.00697176153450414,0.0475,4.75,2,71.052023261746,0.637976287446828,2.5,16.1090877934506,0,0.216456780831019,0.171547025442123,0.060594409377469
+5549,85243,446297.952,85343,446197.952,48,55,7,0.035,8.1613912943481,0.457971014492754,92.1954445729289,0.012271311686427,0.05,5,2,72.8212875767485,0.864176570458404,3.5,2.35355339050293,0,0.422935158014297,0.295471459627151,0.21156336976957
+5550,85243,446197.952,85343,446097.952,49,55,28.25,0.0941666666666667,12.3554242303627,0.589402136218616,14.120226591666,0.0111006924747198,0.055,5.5,2,76.6744248864547,0.813258636788049,4.5,2.68827889182351,0,0.879807273546855,0.610305607318878,0.244908894129547
+5551,85243,446097.952,85343,445997.952,50,55,67.5,0.3375,16.3141973832107,0.448574969021066,15,0.0363044147134133,0.425,42.5,2,96.3593293031142,0.922211418252535,41.5,0.147058823529412,0,1.11621607674493,1.07067716121674,0.0869211415321637
+5552,85243,445997.952,85343,445897.952,51,55,26,0.026,7.25850646959168,0.425090504037872,11.9721359549996,0.0296682335119021,0.215,21.5,4,84.1614925272669,0.79184879896757,10.5,3.08965904768123,0,1.05113310118516,0.813739895820618,0.317093393179873
+5553,85243,445897.952,85343,445797.952,52,55,40.5,0.0675,12.7430294123854,0.563601778481809,10,0.0137045348360152,0.1625,16.25,4,82.8688735709845,0.683000924580637,8.5,3.49812733576848,0,0.317096979253822,-0.102935969829559,0.463310743676342
+5554,85243,445797.952,85343,445697.952,53,55,45.5,0.455,35.3719526538427,0.738095238095238,NA,0.0231571163584363,0.21,21,6,83.7324046920313,0.719649987256818,14.75,3.23602487927391,0,-0.0593579718843102,-0.126993343234062,0.123059280116838
+5555,85243,445697.952,85343,445597.952,54,55,44.75,0.22375,17.6123140432764,0.620664739884393,20,0.02844807194635,0.3025,30.25,1,95.6937799043062,0.941348973607038,30.25,0.247933884297521,0,-0.118440974917677,-0.141220286488533,0.0393668310714834
+5556,85243,445597.952,85343,445497.952,55,55,46,0.0766666666666667,5.71278927702694,0.134698944754811,11.1803398874989,0.0374881410847047,0.42,42,1,97.1419289493636,0.916573971078977,42,0.667089689345587,0,0.00525589897814724,-0.066969521343708,0.121690872007512
+5557,85243,445497.952,85343,445397.952,56,55,39.75,0.0567857142857143,8.01094966812819,0.305799847466514,12.440291332142,0.0399482052248641,0.4225,42.25,4,94.0813260412332,0.777999777999778,36,2.68390386908717,0,0.211730433007081,0.0749409794807434,0.189971342214538
+5558,85243,445397.952,85343,445297.952,57,55,11.25,0.0375,6.11860509378827,0.232558139534884,25.1184463531091,0.00930317247765743,0.06,6,2,75.3144668705491,0.804031354983203,4.25,0.208333333333333,0,0.301933985617426,0.23789544403553,0.108770442550151
+5559,85243,445297.952,85343,445197.952,58,55,0.5,0.0025,0,0,51.478150704935,-0.000270776877368917,0,0,0,NA,NA,0,NA,NA,0.268648717552423,0.136601939797401,0.170391346562379
+5560,85243,445197.952,85343,445097.952,59,55,7,0.00875,2.67680355861886,0.171428571428571,13.0232463356196,-0.00727580804325044,0,0,0,NA,NA,0,NA,NA,0.224466160767608,0.0405240580439568,0.252870910424609
+5561,85243,445097.952,85343,444997.952,60,55,23.75,0.059375,10.6089943629741,0.298357843137255,12.3381019908347,0.0076763644307357,0.16,16,3,84.8122880197423,0.819302721088435,9.75,3.7976371049881,0,0.337312549352646,0.00521351397037506,0.352680291994311
+5562,85243,444997.952,85343,444897.952,61,55,13.25,0.1325,20.2224965912102,0.647798742138365,NA,0.00785604414379122,0.1075,10.75,4,76.1165407083883,0.751011515717398,7,19.9984114447305,0,0.289735323852963,0.174246981739998,0.224629121076377
+5563,85243,444897.952,85343,444797.952,62,55,1,0.00333333333333333,0.833333333333333,0.0555555555555556,42.5402911604334,0.00415180690990383,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,39.9566189692571,10,-0.045606400196751,-0.229200154542923,0.211425342001892
+5564,85243,444797.952,85343,444697.952,63,55,0,NA,NA,NA,NA,-0.00703150966489375,0.0025,0.25,1,0,NA,0.25,52.2015342712402,52.2015342712402,-0.406442519691255,-0.501325964927673,0.164615026963273
+5565,85243,444697.952,85343,444597.952,64,55,3,0.015,3.70767784091158,0.242424242424242,30,-0.00917926473861371,0,0,0,NA,NA,0,NA,NA,-0.577794407804807,-0.609877705574036,0.0627486068734084
+5566,85243,444597.952,85343,444497.952,65,55,2.75,0.0055,2.52975877062582,0.144444444444444,19.5440997776296,-0.02364871892672,0,0,0,NA,NA,0,NA,NA,-0.528938644462162,-0.591004729270935,0.100155384273241
+5567,85243,444497.952,85343,444397.952,66,55,1.25,0.0125,5.68228258810501,0.266666666666667,NA,-0.0139871714295396,0,0,0,NA,NA,0,NA,NA,-0.438733206854926,-0.517450869083405,0.131585443777272
+5568,85243,444397.952,85343,444297.952,67,55,10.25,0.0170833333333333,3.90084612329603,0.209259259259259,10.8333333333333,-0.0082446901279036,0.03,3,2,63.6107546195582,0.757428744693754,2,0.416666666666667,0,-0.366901884476344,-0.481674760580063,0.121991346217439
+5569,85243,444297.952,85343,444197.952,68,55,11.25,0.0225,6.62342364258354,0.253535353535354,13.3983456376682,-0.00305303134579844,0.0375,3.75,1,78.0843273950357,1,3.75,3.13807118733724,0,-0.380088524685966,-0.509237170219421,0.170287460524669
+5570,85243,444197.952,85343,444097.952,69,55,67.75,0.225833333333333,14.6714132374032,0.519027484143763,10.3934466291663,0.0603726550280408,0.55,55,2,97.5993223658118,0.804878048780488,54,1.5352221922441,0,-0.99775256216526,-1.71281623840332,0.613478169908795
+5571,85243,444097.952,85343,443997.952,70,55,69,0.345,19.6597861120729,0.472323600973236,15.8113883008419,0.121912241405807,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,1.63339410058718,0,-1.64657107988993,-1.85881185531616,0.312402313521068
+5572,85243,443997.952,85343,443897.952,71,55,82.75,0.41375,19.5025495417757,0.512664640324215,10,0.106512427264825,0.995,99.5,1,99.9867925566623,0.735449735449744,99.5,1.01562521086266,0,-0.88557086015741,-1.91993892192841,1.34190601582666
+5573,85243,443897.952,85343,443797.952,72,55,69.25,0.173125,10.3563942806509,0.302941779417794,12.7950849718747,0.102476004268974,0.995,99.5,1,99.9867925566623,0.735449735449744,99.5,1.99816952518482,0,-0.140431208742989,-0.496613174676895,0.881343397021385
+5574,85243,443797.952,85343,443697.952,73,55,80.25,0.40125,20.1213381532295,0.537473794549266,14.142135623731,0.10135532326065,0.995,99.5,1,99.9867925566623,0.20634920634921,99.5,1.06226569324283,0,-0.367033793455145,-0.792391955852509,0.562130422389033
+5575,85243,443697.952,85343,443597.952,74,55,68.5,0.17125,15.1746106899595,0.480752010233918,11.0355339059327,0.0910977193294093,0.9,90,1,99.7153023505818,0.618768328445748,90,1.66486191219754,0,-1.04534140560362,-1.4030909538269,0.472563027518535
+5576,85243,443597.952,85343,443497.952,75,55,77.75,0.38875,28.675734028555,0.808028236420196,15,0.0895613402035087,0.9025,90.25,1,99.7229916897507,0.745089218773429,90.25,1.12385229390744,0,-1.02880418797334,-1.43368756771088,0.504693904988695
+5577,85243,443497.952,85343,443397.952,76,55,81.75,0.40875,23.2410665455466,0.698183760683761,14.142135623731,0.0352460016965051,0.3875,38.75,3,92.6543518567605,0.810955961331901,27.5,0.800917004000756,0,-1.33783875571357,-1.59713101387024,0.361076699003341
+5578,85243,443397.952,85343,443297.952,77,55,83.5,0.278333333333333,18.7696350668542,0.586229527938343,10,0.0512505511956988,0.4625,46.25,1,97.5240566095389,0.907520739834081,46.25,0.632816582757074,0,-1.75657849841648,-1.89552426338196,0.232111123994398
+5579,85243,443297.952,85343,443197.952,78,55,95.5,0.955,38.343518971555,0.910994764397906,NA,0.00132946062542032,0.285,28.5,4,87.7143162533035,0.755584221603639,12.75,0.087719298245614,0,-2.00448206067085,-2.10075664520264,0.136731964491354
+5580,85243,443197.952,85343,443097.952,79,55,94,0.94,37.8919624467139,0.894060283687943,NA,0.0136966846339055,0.205,20.5,4,84.194725598427,0.809152027759705,9.25,0.365853658536585,0,-2.1836670504676,-2.28270483016968,0.131343861629192
+5581,85243,443097.952,85343,442997.952,80,55,92.75,0.9275,38.5470082560867,0.872866127583109,NA,0.0139612165435756,0.2225,22.25,4,88.7461180400122,0.87057372242108,18.25,0.0561797752808989,0,-2.35326484839121,-2.46413207054138,0.107660554125078
+5582,85243,442997.952,85343,442897.952,81,55,82.25,0.41125,29.561120627184,0.807958553791887,10,-0.00275875506224111,0.295,29.5,2,93.2055571843807,0.781268641877113,24.75,1.03450057466151,0,-2.60038601027595,-2.71981143951416,0.177442604703352
+5583,85243,442897.952,85343,442797.952,82,55,37.5,0.1875,14.0225418498127,0.410514541387025,56.5685424949238,0.0466287412034944,0.4625,46.25,3,93.0165481109796,0.79328165374677,26.75,6.66350037858293,0,-2.89091151952744,-3.01619172096252,0.155707412959668
+5584,85243,442797.952,85343,442697.952,83,55,1,0.00333333333333333,0.833333333333333,0.0555555555555556,50.4297678280855,0.086596825751385,0.6475,64.75,1,98.7224235157768,0.953206112451561,64.75,20.6859258261427,0,-3.10335795084635,-3.14332127571106,0.0642834545702387
+5585,85243,442697.952,85343,442597.952,84,55,4,0.008,3.50639890054989,0.134920634920635,20.1231056256177,0.0207422044803025,0.1225,12.25,2,86.1014653339208,0.810066476733144,10,12.3893766597826,0,-3.04361828168233,-3.15133500099182,0.126821256548686
+5586,85243,442597.952,85343,442497.952,85,55,26,0.0325,7.29912700021963,0.393002946127946,10.8739660235426,0.0385011464240188,0.25,25,4,89.8368810954636,0.777777777777778,20.5,3.42416017532349,0,-2.92984162436591,-2.9965968132019,0.127691468543916
+5587,85243,442497.952,85343,442397.952,86,55,0.25,0.0025,0,0,NA,0.0383291527476104,0.2825,28.25,2,91.3724366670602,0.863359978137597,19.75,43.2531573033966,10,-3.1720395286878,-3.25646042823792,0.115157002512771
+5588,85243,442397.952,85343,442297.952,87,55,0,NA,NA,NA,NA,0.0474793789423529,0.53,53,3,96.0778592458434,0.908197429528027,49.75,63.6101643004507,22.3606796264648,-3.28671945465936,-3.29762673377991,0.0302021308086512
+5589,85243,442297.952,85343,442197.952,88,55,0,NA,NA,NA,NA,0.174156084861606,1,100,1,100,NA,100,49.4301954364777,10,-3.29088600476583,-3.29597187042236,0.00694525224610216
+5590,85243,442197.952,85343,442097.952,89,55,1.25,0.0025,0,0,34.5201788797906,0.0491414361860006,0.4525,45.25,1,97.4390089868719,0.97273904450351,45.25,38.4795384064564,0,-3.29648190074497,-3.31266736984253,0.0219999528626866
+5591,85243,442097.952,85343,441997.952,90,55,5,0.00833333333333333,3.40494038357667,0.181818181818182,12.3305760627803,-0.00481839525033138,0.1825,18.25,1,92.9430371372494,0.971330275229358,18.25,19.8987587445403,5,-3.33274126052856,-3.37024641036987,0.0473997279403447
+5592,85243,441997.952,85343,441897.952,91,55,19,0.0475,10.2450158007069,0.430657894736842,11.1803398874989,-0.00166591129789595,0.2325,23.25,1,94.3478768975745,0.976453043444135,23.25,21.2956857168546,5,-3.39438398679098,-3.42407131195068,0.035685294923939
+5593,85243,441897.952,85343,441797.952,92,55,0.25,0.0025,0,0,NA,0.114257156078675,0.925,92.5,1,99.7907868956838,0.904897765097479,92.5,40.6879451957909,0,-3.39316129684448,-3.41705322265625,0.0290664779067159
+5594,85243,441797.952,85343,441697.952,93,55,0,NA,NA,NA,NA,0.103369899239624,0.71,71,1,99.016938641085,0.845021309569934,71,121.075362353258,60,-3.33932091792425,-3.37276411056519,0.0399489841319516
+5595,85243,441697.952,85343,441597.952,94,55,0,NA,NA,NA,NA,0.127409351468086,1,100,1,100,NA,100,200.573335609436,150.416091918945,-3.267239385181,-3.28763604164124,0.0359285948789122
+5596,85243,441597.952,85343,441497.952,95,55,0,NA,NA,NA,NA,0.182795427872334,0.9675,96.75,1,99.9123308655226,1,96.75,252.708486118366,197.294189453125,-3.23777947823207,-3.24588131904602,0.0164492530740695
+5597,85243,441497.952,85343,441397.952,96,55,0,NA,NA,NA,NA,0.0500931095919805,0.3475,34.75,2,92.7425287522938,0.867257972063837,22,239.531060747105,188.215301513672,-3.26481782065497,-3.28363442420959,0.0313182378297907
+5598,85243,441397.952,85343,441297.952,97,55,0,NA,NA,NA,NA,0.166338807088323,0.975,97.5,1,99.9329506995597,0.83783783783784,97.5,172.348690150334,105.118980407715,-3.3083731730779,-3.33329319953918,0.0317872492091489
+5599,85243,441297.952,85343,441197.952,98,55,0,NA,NA,NA,NA,0.238079512640834,1,100,1,100,NA,100,141.04449596405,95,-3.32941471205817,-3.33856964111328,0.0171653171524363
+5600,85243,441197.952,85343,441097.952,99,55,0,NA,NA,NA,NA,0.158551771487109,0.955,95.5,1,99.8774262095089,0.877225291589933,95.5,136.935624886558,90,-3.31898202498754,-3.33688259124756,0.0232922553336685
+5601,85343,451097.952,85443,450997.952,0,56,4.25,0.010625,3.30624912278808,0.25625,26.0582086205715,0.00265627281174602,0.01,1,3,15.8692205350002,0.242424242424242,0.5,13.9038820266724,0,-3.43914419412613,-3.48718070983887,0.0682065420483633
+5602,85343,450997.952,85443,450897.952,1,56,12,0.024,5.99296235160152,0.355555555555556,20.6422232804578,0.00259726954276175,0.035,3.5,4,50.6993553062848,0.533678756476684,1.5,21.5848434993199,5,-3.52161952853203,-3.69968867301941,0.155523436399433
+5603,85343,450897.952,85443,450797.952,2,56,50.5,0.12625,15.984489855352,0.641555614783227,15.1135408121282,0.00856877496871675,0.2275,22.75,1,94.2285806660851,0.944064884733709,22.75,1.49684838934259,0,-3.76119116942088,-3.89623641967773,0.212352826598986
+5604,85343,450797.952,85443,450697.952,3,56,52.5,0.2625,19.8580826814023,0.511788617886179,18.0277563773199,0.0494436134831631,0.3,30,3,93.3911678394327,0.921363040629096,28.5,1.81698745091756,0,-4.13503839075565,-4.61965131759644,0.360052168591978
+5605,85343,450697.952,85443,450597.952,4,56,19,0.095,11.5513065799047,0.714116575591985,26.9258240356725,-0.015075650778308,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,5.97696702376656,0,-4.89430288473765,-5,0.410946249885698
+5606,85343,450597.952,85443,450497.952,5,56,0,NA,NA,NA,NA,-0.0169409744750499,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,54.9720024108887,46.0977210998535,-5,-5,0.0230043033649845
+5607,85343,450497.952,85443,450397.952,6,56,11.75,0.05875,9.46812172968287,0.621422558922559,62.6498204307083,-0.0224962775575477,0,0,0,NA,NA,0,NA,NA,-4.75962801774343,-5,0.512893116403825
+5608,85343,450397.952,85443,450297.952,7,56,1.75,0.0035,0.942809041582063,0.0222222222222222,35.5819329255952,0.00244138868054051,0.0325,3.25,3,59.5396962454495,0.712891185759403,2.25,18.3319103534405,7.07106781005859,-4.18254542350769,-4.27255010604858,0.124969462220649
+5609,85343,450297.952,85443,450197.952,8,56,4.5,0.00642857142857143,3.56920565741781,0.0686507936507937,12.4496809173127,-0.0105534101443664,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-4.12067770957947,-4.13031625747681,0.0153401465358124
+5610,85343,450197.952,85443,450097.952,9,56,9.75,0.024375,6.76389190895281,0.292121212121212,21.0464926712392,-0.0166286306420079,0,0,0,NA,NA,0,NA,NA,-4.1288583278656,-4.1399998664856,0.0144745297783451
+5611,85343,450097.952,85443,449997.952,10,56,39.75,0.099375,10.2556180696967,0.241149237472767,15.7930170189599,-0.000491732429762415,0.0125,1.25,1,58.1880425789518,1,1.25,12.3071357727051,7.07106781005859,-4.13837441802025,-4.1399998664856,0.00609837481586529
+5612,85343,449997.952,85443,449897.952,11,56,9.5,0.00791666666666667,4.00352920935478,0.110016835016835,12.7882532520642,-0.00905984616786554,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,6.87708309718541,0,-4.13756867249807,-4.1399998664856,0.0086444125406435
+5613,85343,449897.952,85443,449797.952,12,56,14.5,0.0725,9.82957440070176,0.302631578947368,26.9258240356725,0.0237089649018071,0.25,25,3,93.5185845546423,0.866666666666667,24.5,7.88415691375732,0,-4.13209965825081,-4.1399998664856,0.0181905728035547
+5614,85343,449797.952,85443,449697.952,13,56,70.5,0.3525,23.6870610468154,0.70244708994709,11.1803398874989,-0.0970701668893889,0.1,10,4,73.7632261258441,0.635157545605307,5,2.8098385810852,0,-4.12634364763896,-4.15698909759521,0.0465421952549647
+5615,85343,449697.952,85443,449597.952,14,56,25.5,0.0425,5.64672333474291,0.211574074074074,11.280525881038,-0.023194571926324,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,0,0,-4.10414603352547,-4.14929533004761,0.059722647594696
+5616,85343,449597.952,85443,449497.952,15,56,8,0.08,14.0033397198461,0.65625,NA,-0.00604818279711253,0.0125,1.25,1,58.1880425789518,1,1.25,1,0,-4.05300907293956,-4.08203315734863,0.0551996317035487
+5617,85343,449497.952,85443,449397.952,16,56,21.25,0.053125,8.91015587460293,0.450844226579521,23.2002747232013,0.000770402456480497,0.035,3.5,3,57.751632375124,0.585492227979275,1.75,0.714285714285714,0,-3.96669645607471,-4.01471519470215,0.0576944529655698
+5618,85343,449397.952,85443,449297.952,17,56,91,0.91,38.0620441136851,0.890567765567766,NA,0.0526147087983554,0.625,62.5,2,98.4324301102714,0.726495726495727,62.25,0.24,0,-3.87878080209096,-3.96747064590454,0.132160169752526
+5619,85343,449297.952,85443,449197.952,18,56,69.5,0.3475,21.802381752645,0.782502624915076,36.4005494464026,0.0552198965721618,0.5575,55.75,2,96.5530314515592,0.837027379400261,48.75,0.36019047279529,0,-3.73083201050758,-3.93866419792175,0.28768992707107
+5620,85343,449197.952,85443,449097.952,19,56,84.75,0.42375,21.630748820868,0.687234042553191,15.8113883008419,0.0829670292319497,0.83,83,1,99.48609157949,0.709165963035932,83,0.416518889277814,0,-3.31633323431015,-3.65638470649719,0.395273404654765
+5621,85343,449097.952,85443,448997.952,20,56,84.5,0.845,39.5300146879271,0.854043392504931,NA,0.0706280587878427,0.765,76.5,1,99.2456636792102,0.771378000663741,76.5,0.642273460338318,0,-2.83319278558095,-3.03186130523682,0.277395223544054
+5622,85343,448997.952,85443,448897.952,21,56,54,0.09,9.17730678467525,0.366305859850461,13.4090272080855,0.0634244550111907,0.635,63.5,1,98.6583599459141,0.827328191550593,63.5,2.44912314227247,0,-2.50031970441341,-2.84960794448853,0.348414095761674
+5623,85343,448897.952,85443,448797.952,22,56,79.5,0.3975,27.7839840510516,0.835273368606702,10,0.0973992349114269,0.7225,72.25,3,95.6975924852613,0.721780604133546,39.75,0.866281450001014,0,-2.16520357131958,-2.35839343070984,0.357047672476345
+5624,85343,448797.952,85443,448697.952,23,56,86.5,0.4325,22.7927803298915,0.779084249084249,10,0.076417568163015,0.8925,89.25,1,99.6920407997372,0.64221824686941,89.25,0.669865926106771,0,-1.68396446481347,-2.32546043395996,0.80331506332833
+5625,85343,448697.952,85443,448597.952,24,56,95.5,0.955,38.0364000222943,0.900087260034904,NA,0.017376736262313,0.42,42,2,96.086402078359,0.866518353726363,40,0.476190476190476,0,-1.38959596554438,-2.02394390106201,0.513584397145709
+5626,85343,448597.952,85443,448497.952,25,56,64.5,0.3225,24.1034079019119,0.84751872659176,20,0.00119506223842109,0.1875,18.75,3,84.1319088828175,0.804195804195804,7.75,0.937633005777995,0,-1.02143839374185,-1.37064635753632,0.425753350899153
+5627,85343,448497.952,85443,448397.952,26,56,93.25,0.9325,38.3650383378867,0.893655049151028,NA,0.0739382057264447,0.875,87.5,1,99.6366054334226,0.697885196374623,87.5,0.342857142857143,0,-0.404854171598951,-0.984687745571136,0.756810196907517
+5628,85343,448397.952,85443,448297.952,27,56,66,0.33,28.5150323278159,0.810662180793053,10,0.00905242780729168,0.235,23.5,1,94.4060921446443,0.922191098661687,23.5,0.531914893617021,0,0.0311041024979204,-0.446281492710114,0.472060727518186
+5629,85343,448297.952,85443,448197.952,28,56,95.75,0.47875,18.644906669441,0.466404886561955,14.142135623731,-0.0838908664415794,0,0,0,NA,NA,0,NA,NA,-0.345740760366122,-0.459494173526764,0.184844584645846
+5630,85343,448197.952,85443,448097.952,29,56,44.5,0.0404545454545455,6.80610646159858,0.35376545238967,10.5365181306813,0.0177457454733303,0.2375,23.75,5,85.969588685132,0.760848601735776,15.5,1.92027796695107,0,0.127961310441606,-0.266955494880676,0.446491069981876
+5631,85343,448097.952,85443,447997.952,30,56,76.25,0.7625,39.0185221325215,0.860655737704918,NA,0.0372136182512804,0.33,33,4,88.65954894851,0.777048368117917,12.75,0.265151515151515,0,0.988694205880165,0.66266918182373,0.371993024205062
+5632,85343,447997.952,85443,447897.952,31,56,28.75,0.0410714285714286,7.73265705812875,0.438337001467254,11.5971914124998,0.0170053487249606,0.1025,10.25,5,71.4354207541582,0.660893787089742,3.5,2.12255101087617,0,0.953059072295825,0.660228133201599,0.321186919388118
+5633,85343,447897.952,85443,447797.952,32,56,28.75,0.0479166666666667,8.42676155890601,0.270006858710562,17.9822379376393,0.0175074143226084,0.15,15,3,83.219560605062,0.785067873303167,8,3.95838508605957,0,0.341462240321562,0.0381906516849995,0.344869281046876
+5634,85343,447797.952,85443,447697.952,33,56,37.25,0.0413888888888889,5.48311516347593,0.201571942312683,14.413484394444,-0.00439562658233626,0.035,3.5,4,49.9491485217681,0.533678756476684,1.25,1.93364770071847,0,0.0264521390199661,-0.0665864050388336,0.130209058691204
+5635,85343,447697.952,85443,447597.952,34,56,18.5,0.0168181818181818,3.41919778259659,0.163341750841751,11.3129744636356,0.0157035596375044,0.195,19.5,3,90.6014625250081,0.891979476100459,18.5,8.17576887668707,0,0.056460014951881,-0.0327285900712013,0.115076175709283
+5636,85343,447597.952,85443,447497.952,35,56,20,0.0285714285714286,5.57945742863571,0.350118203309693,15.6978794020252,0.0121994872889627,0.065,6.5,4,66.2621410296599,0.660884309377853,2.75,7.79460011995756,0,0.192267919056273,0.00223837536759675,0.206014801479432
+5637,85343,447497.952,85443,447397.952,36,56,46.75,0.116875,16.4982848439599,0.680256294168215,12.6538820320221,0.0597367969274274,0.56,56,3,96.4021251875779,0.744454110482819,48.25,2.7566767675536,0,0.426543876994401,0.11155541986227,0.381132872898059
+5638,85343,447397.952,85443,447297.952,37,56,51.25,0.0854166666666667,8.65113986733827,0.399277497194164,14.7530727643155,0.0347843663622189,0.3825,38.25,3,92.6523239996467,0.844396098376244,32,1.01539437287773,0,1.09798388679822,0.694049596786499,0.550977476851941
+5639,85343,447297.952,85443,447197.952,38,56,7,0.007,2.68805292724768,0.195555555555556,24.5109501857865,0.00958151780218031,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,11.6409862518311,7.07106781005859,0.938274590298533,0.475324213504791,0.488004098651221
+5640,85343,447197.952,85443,447097.952,39,56,4.75,0.0059375,1.90340769932793,0.152777777777778,23.3678263734964,0.00248754110366917,0,0,0,NA,NA,0,NA,NA,0.748431208233039,0.407322555780411,0.420387396630338
+5641,85343,447097.952,85443,446997.952,40,56,10.25,0.00539473684210526,1.61606925999751,0.136330409356725,11.6434316290702,0.0172534587260873,0.1175,11.75,3,80.3448141694889,0.773371104815864,8,8.3676380400962,0,0.729513294994831,0.425037026405334,0.3309620524431
+5642,85343,446997.952,85443,446897.952,41,56,31,0.0258333333333333,5.25048518367601,0.1691377758833,12.154601946839,0.0197251811085152,0.0525,5.25,5,56.1608105398994,0.604221635883905,1.75,4.77726073492141,0,1.13383095959822,0.7328080534935,0.441421589423238
+5643,85343,446897.952,85443,446797.952,42,56,80.5,0.805,37.5217112800503,0.845238095238095,NA,0.0441135042603423,0.3775,37.75,3,93.902219228713,0.715830832354689,31.75,0.617558990882722,0,1.87581902742386,1.35562717914581,0.48539649796447
+5644,85343,446797.952,85443,446697.952,43,56,68,0.17,10.3533718200248,0.218594527363184,11.3306188778075,0.0394066037957236,0.34,34,5,90.7043851210608,0.718963831867058,22.5,1.8040833753698,0,2.05777398745219,1.78717648983002,0.371824085182118
+5645,85343,446697.952,85443,446597.952,44,56,86.25,0.8625,37.5262576728681,0.844927536231884,NA,0.0531039615536793,0.62,62,2,98.262296102908,0.807168784029038,61.5,0.540895708145634,0,1.40783994396528,0.865602195262909,0.846853088806731
+5646,85343,446597.952,85443,446497.952,45,56,55.75,0.139375,19.3796345912429,0.578888888888889,12.00693909433,0.0374965667799188,0.385,38.5,3,93.07206362956,0.787411301674854,30.5,1.57419744714514,0,0.579834708943963,0.426037937402725,0.21300398260611
+5647,85343,446497.952,85443,446397.952,46,56,15.25,0.0254166666666667,6.64423387841423,0.378225055942447,21.6666666666667,0.00202974312376682,0.0275,2.75,2,67.6946396934892,0.657240788346187,2.5,8.37009707364169,5,0.345240565637747,0.252347022294998,0.108516872694872
+5648,85343,446397.952,85443,446297.952,47,56,48.5,0.0808333333333333,8.33391485798625,0.297195767195767,12.060113295833,-0.0263294309627236,0.035,3.5,2,65.5940978380291,0.740932642487047,2,1.07142857142857,0,0.340041507966816,0.226981982588768,0.161677521283232
+5649,85343,446297.952,85443,446197.952,48,56,57.25,0.190833333333333,19.5781462105459,0.391681235431235,17.8470065541656,-0.0316833451768707,0.01,1,2,34.5233986084855,0.494949494949495,0.75,5.51776695251465,0,0.454475005467733,0.285011619329453,0.295370964978829
+5650,85343,446197.952,85443,446097.952,49,56,34.5,0.0575,9.174547712032,0.413199665831245,11.8018980501403,-0.00360142762325268,0.145,14.5,2,88.2317015569267,0.91812865497076,13.75,1.2426046174148,0,0.821795053780079,0.487920373678207,0.505376697914662
+5651,85343,446097.952,85443,445997.952,50,56,8.25,0.0103125,3.37041504150465,0.176215277777778,13.7151699437495,-0.000586643220685801,0,0,0,NA,NA,0,NA,NA,1.20796286066373,0.960840225219727,0.335811454320024
+5652,85343,445997.952,85443,445897.952,51,56,16,0.016,3.78110383668327,0.240088183421517,12.6224174948725,-0.00191911412293848,0,0,0,NA,NA,0,NA,NA,0.999612368643284,0.619828343391418,0.310214338669363
+5653,85343,445897.952,85443,445797.952,52,56,21.75,0.02175,6.54760972740467,0.3502431002431,11.1180339887499,0.0284818068828645,0.2225,22.25,6,85.6961033743507,0.789682298934256,16,3.73147516572074,0,0.339588386006653,0.0344915799796581,0.408700600942765
+5654,85343,445797.952,85443,445697.952,53,56,18.5,0.0925,15.9171184500052,0.615680615680616,33.5410196624968,0.0130654127375055,0.175,17.5,3,85.6945221386202,0.78319783197832,9.5,9.27707386016846,0,-0.105694309459068,-0.228778168559074,0.154396421989505
+5655,85343,445697.952,85443,445597.952,54,56,4.25,0.02125,8.85259915371055,0.330808080808081,11.1803398874989,-0.00270265726047001,0,0,0,NA,NA,0,NA,NA,-0.200684529418747,-0.292830020189285,0.0809283769252636
+5656,85343,445597.952,85443,445497.952,55,56,30.5,0.305,26.8174569478464,0.815573770491803,NA,0.0333590672016251,0.3575,35.75,2,95.8319484142514,0.881189295155493,35.25,3.06599767724951,0,0.0146341995180895,-0.132239833474159,0.296335472343807
+5657,85343,445497.952,85443,445397.952,56,56,60.75,0.30375,22.2410585375834,0.62975670617592,25,0.0439742392742482,0.565,56.5,2,96.4492328995738,0.808884156496573,49.5,0.993351657833673,0,0.622677836567163,0.218995630741119,0.511543874768701
+5658,85343,445397.952,85443,445297.952,57,56,54.75,0.27375,21.5971763861364,0.534535040431267,10,0.032200998999906,0.4025,40.25,1,96.9672588816937,0.892570394662445,40.25,0.623120965424532,0,0.186707847751677,-0.468642622232437,0.492073699561273
+5659,85343,445297.952,85443,445197.952,58,56,40.75,0.101875,8.37245228203973,0.24895178197065,17.2628120948833,0.0324134428167599,0.315,31.5,3,91.0288512075846,0.866126924425461,18,1.32340786949037,0,-0.178356863732915,-0.53256744146347,0.346340966623275
+5660,85343,445197.952,85443,445097.952,59,56,35.25,0.0440625,4.850116332553,0.226736111111111,15.1014235376052,0.0282876731901251,0.35,35,1,96.3667973186472,0.915865384615385,35,2.32451455252511,0,-0.0108279090685149,-0.172818139195442,0.20858128275607
+5661,85343,445097.952,85443,444997.952,60,56,3.75,0.01875,4.75052783650201,0.267857142857143,89.0224690738243,0.00537144304980302,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,1.11111111111111,0,0.175413612509146,0.0588926710188389,0.0905010178388104
+5662,85343,444997.952,85443,444897.952,61,56,10.75,0.1075,17.2682764145797,0.589147286821705,NA,0.00903886018592857,0.1025,10.25,2,84.5856217918724,0.870816680796092,8.75,6.83407276432689,0,0.156438961625099,0.0741466581821442,0.111893865163486
+5663,85343,444897.952,85443,444797.952,62,56,28.75,0.0575,6.35027150395215,0.169090909090909,21.9020197067108,0.0199417457180677,0.2,20,3,85.6834965906238,0.867957746478873,11.5,2.45669598579407,0,-0.0469676875418372,-0.23005598783493,0.138530018661474
+5664,85343,444797.952,85443,444697.952,63,56,24,0.24,24.6941850068324,0.751736111111111,NA,0.012314275663748,0.125,12.5,2,85.2487543426608,0.825210084033613,8.75,0.8,0,-0.274661252275109,-0.475210666656494,0.217449152625641
+5665,85343,444697.952,85443,444597.952,64,56,2.25,0.01125,4.46694794992167,0.305555555555556,75,-0.0135477044498111,0.0025,0.25,1,0,NA,0.25,0,0,-0.486775310710073,-0.615214467048645,0.165385729244161
+5666,85343,444597.952,85443,444497.952,65,56,4.5,0.009,3.44149012256993,0.256666666666667,29.829047008897,-0.0184869407897349,0,0,0,NA,NA,0,NA,NA,-0.594293435414632,-0.630169272422791,0.0766390429766219
+5667,85343,444497.952,85443,444397.952,66,56,3.5,0.0175,3.74294115939257,0.301282051282051,70.7106781186548,-0.0166767046929181,0,0,0,NA,NA,0,NA,NA,-0.631380106012026,-0.672044932842255,0.0789343879851984
+5668,85343,444397.952,85443,444297.952,67,56,0.5,0.0025,0,0,74.3303437365925,-0.00665068997753224,0,0,0,NA,NA,0,NA,NA,-0.636723866686225,-0.731624841690063,0.116192272802853
+5669,85343,444297.952,85443,444197.952,68,56,27,0.135,14.427862203367,0.482704402515723,20.6155281280883,0.0215897824408694,0.2175,21.75,1,93.9777627911811,0.793878182005565,21.75,2.2618254519057,0,-0.732780734697978,-0.953848779201508,0.23379849228132
+5670,85343,444197.952,85443,444097.952,69,56,86.75,0.43375,28.3949472239878,0.81620790481952,14.142135623731,0.094850577935722,0.81,81,1,99.4152046783626,0.793601651186791,81,0.849862157562633,0,-1.33229352906346,-2.0175187587738,0.602443149612656
+5671,85343,444097.952,85443,443997.952,70,56,79.5,0.795,38.0943320619602,0.807127882599581,NA,0.136179309021682,1,100,1,100,NA,100,1.04053300857544,0,-1.88010524710019,-2.23542094230652,0.402256393332222
+5672,85343,443997.952,85443,443897.952,71,56,68,0.17,11.597397702259,0.362913486005089,11.1803398874989,0.0981006229575723,0.9475,94.75,1,99.8561526638156,0.708589972845884,94.75,1.89408560478593,0,-1.34321570210159,-2.38395166397095,1.62500334275915
+5673,85343,443897.952,85443,443797.952,72,56,81,0.405,18.6406273537481,0.412796697626419,10,0.114453554525971,1,100,1,100,NA,100,0.981066017150879,0,-0.678128326932589,-2.11547255516052,1.70809523727327
+5674,85343,443797.952,85443,443697.952,73,56,79.75,0.7975,39.4198435294338,0.809299895506792,NA,0.0887807231629267,0.895,89.5,1,99.6998271307191,0.775249332771457,89.5,1.15292983880922,0,-1.31884975638241,-2.45366907119751,1.04292645574714
+5675,85343,443697.952,85443,443597.952,74,56,64.75,0.6475,36.8658170911298,0.693693693693694,NA,0.0854311864543706,0.9425,94.25,1,99.8418294460568,0.586500456065673,94.25,1.8563735111955,0,-2.10315650701523,-2.6271665096283,0.738209375848478
+5676,85343,443597.952,85443,443497.952,75,56,63,0.315,18.8771104656801,0.372509960159362,10,0.101080531090192,0.9725,97.25,1,99.9261039309117,1,97.25,2.13515286090135,0,-1.97970352321863,-2.59985136985779,0.545108269579574
+5677,85343,443497.952,85443,443397.952,76,56,73.25,0.104642857142857,7.85445298689327,0.321959225090341,11.0515256821426,0.0185958694646251,0.355,35.5,5,89.3972877487099,0.773404889683959,17,1.51031416234836,0,-1.83887755870819,-2.08575415611267,0.305443391939485
+5678,85343,443397.952,85443,443297.952,77,56,62.75,0.0896428571428571,10.9365848681788,0.492906426378959,10.3372399678568,0.0800662860140437,0.7775,77.75,1,99.2942318197501,0.808260152624919,77.75,2.03294648541515,0,-1.8990965684255,-2.0388925075531,0.158656939554959
+5679,85343,443297.952,85443,443197.952,78,56,69.5,0.0695,7.18601390223804,0.255156156156156,10.1180339887499,0.0814516538800672,0.81,81,1,99.4152046783626,0.742002063983488,81,1.58640416463216,0,-2.02867583930492,-2.16387581825256,0.151606024217903
+5680,85343,443197.952,85443,443097.952,79,56,72.5,0.0725,6.13035386752673,0.240342505514919,10.6180339887499,0.0744967105193064,0.6725,67.25,2,97.8095642789397,0.842793439649308,65,1.93704839089546,0,-2.17550506194433,-2.22006797790527,0.0919538582985221
+5681,85343,443097.952,85443,442997.952,80,56,90,0.45,20.0182383567096,0.515828677839851,10,0.00845030119940929,0.2825,28.25,2,92.0444069818416,0.897519983603197,22.25,0.575221238938053,0,-2.29554802179337,-2.40965008735657,0.0814638172608917
+5682,85343,442997.952,85443,442897.952,81,56,79.75,0.7975,37.7377900500473,0.799373040752351,NA,0.0113860672447299,0.25,25,4,89.8363926329891,0.77037037037037,20,1.25,0,-2.43355520566305,-2.60737681388855,0.163139736963055
+5683,85343,442897.952,85443,442797.952,82,56,5.75,0.0575,13.434915755529,0.608695652173913,NA,0.131717044212855,0.83,83,2,98.1059125331414,0.887419082465522,77.5,42.1529620756586,0,-2.81134685873985,-3.01516675949097,0.254497903257472
+5684,85343,442797.952,85443,442697.952,83,56,1.5,0.0075,3.75,0.208333333333333,41.2310562561766,0.125218122118222,0.9575,95.75,1,99.8844617862358,0.967590341921894,95.75,46.3568440031445,0,-3.14465868473053,-3.20570254325867,0.111587518274151
+5685,85343,442697.952,85443,442597.952,84,56,0,NA,NA,NA,NA,-0.106864047071631,0.2425,24.25,2,93.3298475820494,0.946891240848223,23.75,66.5302713531809,25,-3.19092859327793,-3.29880118370056,0.0978795959901728
+5686,85343,442597.952,85443,442497.952,85,56,18,0.03,4.07804344250465,0.248207885304659,23.3333333333333,-0.194906505983836,0.0475,4.75,2,71.2678745650251,0.818988143723414,3.5,2.05593661258095,0,-3.12121389309565,-3.18896341323853,0.0994772665659137
+5687,85343,442497.952,85443,442397.952,86,56,9.75,0.0975,12.3685271926236,0.782051282051282,NA,-0.0724215019107214,0.0825,8.25,2,79.6991052139412,0.798163285901705,5,26.5610664830063,0,-3.18679893016815,-3.22209167480469,0.0472841007397669
+5688,85343,442397.952,85443,442297.952,87,56,0.75,0.00375,1.25,0.0833333333333333,30.4138126514911,-0.0118642797949724,0.1375,13.75,3,86.2798435857877,0.841342486651411,12,45.5619182239879,25,-3.2516167362531,-3.28002095222473,0.0403126175184208
+5689,85343,442297.952,85443,442197.952,88,56,2,0.005,1.99605984605712,0.0972222222222222,19.7579301644315,0.020335172556006,0.3675,36.75,1,96.5811989595545,0.970612868624829,36.75,31.6188152339183,5,-3.30854584276676,-3.34701991081238,0.0329768375249232
+5690,85343,442197.952,85443,442097.952,89,56,0,NA,NA,NA,NA,-0.0355040977162571,0.105,10.5,2,86.1458307946562,0.921315603115902,10,45.5697918846494,30,-3.35178885857264,-3.37786626815796,0.0363436563877883
+5691,85343,442097.952,85443,441997.952,90,56,7.25,0.0120833333333333,3.47815143434965,0.108695652173913,19.6686043892022,-0.00426920413086009,0.12,12,2,86.9894628299558,0.902993348115299,11.25,24.838923573494,0,-3.3920658826828,-3.41415500640869,0.0415827359528843
+5692,85343,441997.952,85443,441897.952,91,56,5.5,0.011,3.70523733378404,0.216666666666667,22.736841742084,-0.00312835178163368,0.2525,25.25,1,94.7890822083159,0.940871043441305,25.25,30.5333525591558,10,-3.41428585350513,-3.43661737442017,0.0430718286321126
+5693,85343,441897.952,85443,441797.952,92,56,0,NA,NA,NA,NA,0.093958940783632,0.675,67.5,1,98.8570461110507,0.951448945531786,67.5,59.3046793478507,26.9258232116699,-3.36609307924906,-3.41939735412598,0.0665740592810333
+5694,85343,441797.952,85443,441697.952,93,56,0,NA,NA,NA,NA,0.115464509883896,0.81,81,1,99.4152046783626,0.965600275197799,81,104.276185141669,49.2442893981934,-3.29564802348614,-3.36807870864868,0.0551499639342123
+5695,85343,441697.952,85443,441597.952,94,56,0,NA,NA,NA,NA,0.0743168038705335,0.7725,77.25,1,99.2749460632782,0.962237075639138,77.25,137.432655309782,72.8011016845703,-3.23961486419042,-3.27653169631958,0.0293459822573326
+5696,85343,441597.952,85443,441497.952,95,56,0,NA,NA,NA,NA,0.0682280824917143,0.3875,38.75,2,95.4941677276599,0.9484425349087,37.75,175.260441540134,130.384048461914,-3.22932060062885,-3.24309754371643,0.015804448117921
+5697,85343,441497.952,85443,441397.952,96,56,0,NA,NA,NA,NA,0.0761387626070064,0.805,80.5,1,99.3970714465752,0.966261808367072,80.5,187.475277444591,131.52946472168,-3.27140424648921,-3.29329204559326,0.0302353834471302
+5698,85343,441397.952,85443,441297.952,97,56,0,NA,NA,NA,NA,0.225496176369488,1,100,1,100,NA,100,201.976337165833,156.205001831055,-3.31704717874527,-3.34151577949524,0.0247278925817569
+5699,85343,441297.952,85443,441197.952,98,56,0,NA,NA,NA,NA,0.221358963247039,0.9475,94.75,1,99.8561526638156,0.920524538048878,94.75,141.961714007295,81.3941040039062,-3.33926258484522,-3.3456654548645,0.0172433292236503
+5700,85343,441197.952,85443,441097.952,99,56,1.31578947368421,0.0125,4.2390073826009,0.433333333333333,NA,0.115592469298281,0.93,93,1,99.8055173961557,0.696048632218844,93,61.672962193848,0,-3.28181332349777,-3.33495426177979,0.0583401448581272
+5701,85443,451097.952,85543,450997.952,0,57,8.25,0.0275,5.59963760879666,0.293650793650794,40.3544506725865,0.0144286269655277,0.0475,4.75,3,69.6198191795422,0.674178658702145,3.5,28.1544804824026,15.8113880157471,-3.60051242510478,-3.72981452941895,0.18400879956909
+5702,85443,450997.952,85543,450897.952,1,57,52.25,0.130625,13.320622986632,0.365858585858586,20.4168416710273,0.0315639204347462,0.3025,30.25,2,95.0193116026074,0.850114043662431,29.75,3.0452110038316,0,-3.75460914770762,-3.86507892608643,0.155773890880135
+5703,85443,450897.952,85543,450797.952,2,57,38,0.0542857142857143,10.4116763214371,0.227545489740612,13.0047695963968,0.0746142962837985,0.615,61.5,1,98.5518240730175,0.841897233201581,61.5,3.37721883572214,0,-3.86645023028056,-3.92646145820618,0.102765841804377
+5704,85443,450797.952,85543,450697.952,3,57,56.5,0.2825,16.3850107936182,0.401111111111111,10,0.102399466706265,0.6475,64.75,2,98.1747163580875,0.824522921693354,63.5,1.98143036301072,0,-3.99694643417994,-4.14999294281006,0.124978165991107
+5705,85443,450697.952,85543,450597.952,4,57,58.75,0.29375,17.7508919821063,0.38960113960114,21.2132034355964,0.115753585678631,0.56,56,1,98.2299673180941,0.940191387559809,56,1.08226074491228,0,-4.2077194319831,-4.57004690170288,0.484424251934528
+5706,85443,450597.952,85543,450497.952,5,57,6,0.06,11.0238136351648,0.652777777777778,NA,-0.0125719726870011,0.0575,5.75,1,83.3142722045184,0.852637783672267,5.75,0.869565217391304,0,-4.94381336371104,-5,0.280552217636114
+5707,85443,450497.952,85543,450397.952,6,57,0.25,0.0025,0,0,NA,-0.0205623073762581,0,0,0,NA,NA,0,NA,NA,-4.98402494854397,-5,0.219373232862642
+5708,85443,450397.952,85543,450297.952,7,57,2.75,0.00392857142857143,1.68358757425368,0.0396825396825397,13.9020290999387,-0.00404131897546904,0,0,0,NA,NA,0,NA,NA,-4.32568327585856,-4.95662784576416,0.363604598381654
+5709,85443,450297.952,85543,450197.952,8,57,0.75,0.0025,0,0,43.6284789786545,0.000231289874791401,0.0175,1.75,1,65.4774238937655,1,1.75,18.8030174800328,11.1803398132324,-4.31515004899767,-4.99245119094849,0.419081411838509
+5710,85443,450197.952,85543,450097.952,9,57,33.25,0.083125,10.5227125977689,0.201826334208224,14.6352549156242,0.0118541810084389,0.1275,12.75,4,79.085239718967,0.789217139281362,6.25,7.63223898644541,0,-4.2241063117981,-4.69050025939941,0.309861126241394
+5711,85443,450097.952,85543,449997.952,10,57,10.25,0.01025,2.96007687765181,0.0873456790123457,16.2494299980789,-0.00122542689612601,0,0,0,NA,NA,0,NA,NA,-4.11133245627085,-4.1249885559082,0.0233959875079066
+5712,85443,449997.952,85543,449897.952,11,57,3.75,0.0046875,1.84392132730252,0.0833333333333333,16.6995871215399,-0.0427406129620067,0.0075,0.75,1,44.4894453484604,1,0.75,9.81058247884115,7.07106781005859,-4.10038730833265,-4.12446928024292,0.0324391992980238
+5713,85443,449897.952,85543,449797.952,12,57,16.75,0.0111666666666667,3.19641224546172,0.108024691358025,11.9792863760949,-0.013200091469671,0.03,3,3,54.3403644704551,0.575500303214069,1.5,4.33925565083822,0,-4.10754601160685,-4.12876415252686,0.0286490586929199
+5714,85443,449797.952,85543,449697.952,13,57,61.5,0.205,12.2746301996716,0.310013717421125,17.6119933457601,-0.038110210950108,0.055,5.5,5,63.5955415391761,0.657640834111422,3,3.37009707364169,0,-4.12830856111315,-4.14429664611816,0.031029025026963
+5715,85443,449697.952,85543,449597.952,14,57,19,0.0633333333333333,12.848550725153,0.567901234567901,25,0.00275149112637337,0.0675,6.75,3,73.7173960895189,0.675790261238232,4.25,0.555555555555556,0,-4.10602267583211,-4.14194011688232,0.0671688636014245
+5716,85443,449597.952,85543,449497.952,15,57,69,0.69,33.5588742577821,0.84963768115942,NA,-0.00609134862687142,0.125,12.5,2,88.5334060400009,0.852100840336134,12,0.4,0,-4.01022794511583,-4.04645442962646,0.048337494016347
+5717,85443,449497.952,85543,449397.952,16,57,68.25,0.6825,35.4843278565275,0.866910866910867,NA,0.0365418615764065,0.5,50,1,97.819928619089,0.838274932614555,50,1.14019247055054,0,-3.97808583577474,-4.00733041763306,0.0332236614684971
+5718,85443,449397.952,85543,449297.952,17,57,94.75,0.9475,37.5408599994406,0.917326297273527,NA,0.00318872311647283,0.3125,31.25,2,93.9462814025751,0.833400080096115,28,0,0,-3.99417357974582,-4.01591777801514,0.0388287686088007
+5719,85443,449297.952,85543,449197.952,18,57,88.5,0.885,37.680546798748,0.884180790960452,NA,0.0694579595280811,0.7525,75.25,3,97.8300218084517,0.850355405910961,73,0.332225913621262,0,-3.90215243895849,-3.99565410614014,0.10624929509102
+5720,85443,449197.952,85543,449097.952,19,57,61.25,0.6125,33.3811784422593,0.873469387755102,NA,0.0957891505397856,0.99,99,1,99.9734851828463,0.335106382978722,99,6.153758800391,0,-3.65315137969123,-3.8583025932312,0.330521901999384
+5721,85443,449097.952,85543,448997.952,20,57,69.5,0.695,35.4114078248686,0.853717026378897,NA,0.097402908993804,0.885,88.5,1,99.6684841741817,0.974042829331603,88.5,2.57561967063085,0,-3.16624948713515,-3.57290554046631,0.559078788928638
+5722,85443,448997.952,85543,448897.952,21,57,50.75,0.126875,18.533118995784,0.689072477650064,10.5901699437495,0.0470304441798362,0.5075,50.75,4,92.4817720189259,0.703779504234607,30,1.5814441060785,0,-2.26941784222921,-2.66086196899414,0.400838950198325
+5723,85443,448897.952,85543,448797.952,22,57,89.5,0.895,38.6233772734042,0.854283054003724,NA,0.096303403545171,0.93,93,1,99.8055173961557,0.513677811550151,93,0.551075268817204,0,-1.4688436322742,-2.07471823692322,0.890140207969096
+5724,85443,448797.952,85543,448697.952,23,57,94.25,0.9425,38.8400124536087,0.886383731211318,NA,0.0812881580989051,0.88,88,1,99.6526127274839,0.937437437437437,88,0.298295454545455,0,-0.106586111088594,-0.789367616176605,1.10664480650091
+5725,85443,448697.952,85543,448597.952,24,57,99.25,0.9925,38.1994523524207,0.92863140218304,NA,0.00546907041828717,0.3825,38.25,1,96.7531359636374,0.896264065584163,38.25,0.0326797385620915,0,-0.233450616399447,-1.30866122245789,1.18213668666366
+5726,85443,448597.952,85543,448497.952,25,57,85,0.85,35.944219972351,0.907352941176471,NA,0.015315887222896,0.2875,28.75,2,93.426489676332,0.939271255060729,27,0.130434782608696,0,-0.0524119290833672,-1.20274567604065,1.41064708812875
+5727,85443,448497.952,85543,448397.952,26,57,69.25,0.34625,22.3599854535936,0.709577677224736,25,0.059630336749542,0.725,72.5,2,98.1078299524991,0.919933277731443,70.75,0.63608486570161,0,0.423770568437046,-0.245904058218002,0.739660669234619
+5728,85443,448397.952,85543,448297.952,27,57,83.25,0.8325,37.9728545749938,0.857357357357357,NA,0.0381266352547391,0.625,62.5,1,98.6057312417508,0.846153846153846,62.5,0.48,0,0.466222922938565,-0.0550366304814816,0.585686229965932
+5729,85443,448297.952,85543,448197.952,28,57,50.5,0.0561111111111111,5.10189510155967,0.195412374899554,11.3682448555079,-0.0175395605509539,0.05,5,2,71.9760246298065,0.728353140916808,2.5,3.61967716217041,0,0.0590119376364681,-0.115196600556374,0.34079733759942
+5730,85443,448197.952,85543,448097.952,29,57,59.5,0.2975,16.7110558396653,0.411392405063291,18.0277563773199,0.0227226758119286,0.3625,36.25,2,95.8165084888866,0.8283388827229,35.25,1.02265014648437,0,0.426680693771535,-0.00385909085161984,0.382956922094083
+5731,85443,448097.952,85543,447997.952,30,57,67,0.335,24.5231542357938,0.770723696487889,11.1803398874989,0.0396642958787015,0.3725,37.25,6,89.4364792266241,0.743151934386994,20,1.29145239503592,0,0.824098805586497,0.741048276424408,0.122537550315025
+5732,85443,447997.952,85543,447897.952,31,57,60.25,0.1205,11.8208964459887,0.432055267702936,11.064495102246,0.0422013342886203,0.53,53,3,94.2696675853972,0.789394103034885,33.75,1.19473712849167,0,0.883454806274838,0.820999443531036,0.109903859640556
+5733,85443,447897.952,85543,447797.952,32,57,33.25,0.083125,16.2729038408648,0.390798978671685,20.1331869627094,0.0228408441408465,0.1875,18.75,4,84.5774299163479,0.766899766899767,10,3.15810872395833,0,0.550384854276975,0.307334065437317,0.270647041197473
+5734,85443,447797.952,85543,447697.952,33,57,21.5,0.043,9.33258864818665,0.296895424836601,22.8994949366117,0.0121176435732423,0.135,13.5,4,81.0215059252431,0.664366958791721,8.25,2.32139516759802,0,0.108981491651826,-0.048726562410593,0.230795096154506
+5735,85443,447697.952,85543,447597.952,34,57,27.5,0.0196428571428571,5.0244551044182,0.231015410550185,11.7012156498785,0.00247304612789776,0.1275,12.75,5,75.4225872104283,0.710173566511873,5,2.75206547157437,0,-0.136327030835673,-0.252177745103836,0.149657117000888
+5736,85443,447597.952,85543,447497.952,35,57,7.75,0.0258333333333333,7.76587373859719,0.480555555555556,15.7868932583326,-0.00410052206636919,0.0075,0.75,1,44.4894453484604,1,0.75,6.3807118733724,5,-0.193239014181826,-0.285650163888931,0.182320071313521
+5737,85443,447497.952,85543,447397.952,36,57,28.5,0.0475,5.96389392473534,0.178418803418803,11.5587346605565,0.0157195772009345,0.1925,19.25,2,88.4664736846487,0.781460571844837,12,1.44432731727501,0,-0.147292220963815,-0.284571588039398,0.28509960595704
+5738,85443,447397.952,85543,447297.952,37,57,33,0.055,7.2616823439553,0.319611605325891,13.6543040059454,0.0305228014742715,0.2375,23.75,6,84.8008509869711,0.668273866923819,13.25,6.14377935309159,0,0.00573679390880797,-0.226744070649147,0.49910533931809
+5739,85443,447297.952,85543,447197.952,38,57,20.75,0.0415,7.86230378366241,0.429887106357695,18.3294367171337,0.0066185250320359,0.0275,2.75,3,51.3242173142448,0.657240788346187,1.5,4.73373343727805,0,0.0559345032670535,-0.139629691839218,0.320357817797122
+5740,85443,447197.952,85543,447097.952,39,57,7.5,0.00576923076923077,1.31555115587949,0.101495726495726,18.3013983452581,0.00357342853609225,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,0.15520630342265,0.030413581058383,0.213351703318687
+5741,85443,447097.952,85543,446997.952,40,57,6,0.01,2.65912587778597,0.173032407407407,20.6761828594832,-0.00784768677430065,0,0,0,NA,NA,0,NA,NA,0.27202199647824,0.108449637889862,0.244269533773716
+5742,85443,446997.952,85543,446897.952,41,57,19.25,0.0240625,5.85931875973504,0.278918650793651,18.4753895611478,0.0183242942453398,0.13,13,5,81.9427244064427,0.81919152783159,10.75,4.76376958993765,0,0.59523762928115,0.29444631934166,0.471899625653813
+5743,85443,446897.952,85543,446797.952,42,57,30,0.0375,5.43079309112074,0.259995791245791,14.1220259878858,0.0291533909195823,0.2675,26.75,2,92.0924005981534,0.865603282109321,21.75,2.65323699523355,0,1.27553717792034,0.691381573677063,0.700348195167018
+5744,85443,446797.952,85543,446697.952,43,57,65.5,0.655,35.8885778016765,0.793256997455471,NA,0.0231570206966717,0.23,23,2,89.711307757116,0.881216344630979,13.75,0.67468551967455,0,1.70150008466509,1.20678496360779,0.76303615928057
+5745,85443,446697.952,85543,446597.952,44,57,70.5,0.17625,11.2805978906424,0.29989898989899,10,0.0521455789524407,0.525,52.5,1,97.9993099016594,0.816933638443936,52.5,1.98365972609747,0,1.71955631838904,1.13039588928223,0.871941638243391
+5746,85443,446597.952,85543,446497.952,45,57,30.75,0.076875,17.8013238641425,0.582918176328502,15,-0.0221316923392988,0.0525,5.25,2,78.5327883598405,0.901055408970976,5,0.952380952380952,0,0.841728816429774,0.451971173286438,0.548595444872888
+5747,85443,446497.952,85543,446397.952,46,57,26,0.0371428571428571,8.11777227130221,0.479659692159692,14.5608320050961,-0.0327806638184848,0,0,0,NA,NA,0,NA,NA,0.445127927594715,0.409711420536041,0.0790999701054208
+5748,85443,446397.952,85543,446297.952,47,57,8.5,0.010625,4.82626367130977,0.177840909090909,12.1352549156242,0.00551298294899027,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,0.694193303585052,0.444330751895905,0.336891302625554
+5749,85443,446297.952,85543,446197.952,48,57,24,0.03,7.02955420092674,0.356572420634921,15.0095873261654,0.0124514689000898,0.15,15,2,86.1440376476599,0.875565610859729,8.5,2.75592231750488,0,1.26904341247347,0.840072333812714,0.557721555512064
+5750,85443,446197.952,85543,446097.952,49,57,30.25,0.0605,9.37122713372054,0.458454106280193,12.0776872304636,-0.0226428554695281,0,0,0,NA,NA,0,NA,NA,1.8939827978611,1.28563761711121,0.56017088482136
+5751,85443,446097.952,85543,445997.952,50,57,52,0.52,32.5199320480578,0.741987179487179,NA,-0.0186068588923081,0.0275,2.75,2,66.0118058066693,0.862896315338475,2.5,3.74665485728871,0,1.60486425293816,1.24840795993805,0.572868346853677
+5752,85443,445997.952,85543,445897.952,51,57,45.5,0.151666666666667,21.9133165015026,0.646575331862688,12.67591879244,-0.0208434958129283,0,0,0,NA,NA,0,NA,NA,0.738104561964671,0.249923974275589,0.497660776432112
+5753,85443,445897.952,85543,445797.952,52,57,32.5,0.065,14.945468064629,0.410642570281124,11,0.00176537832708163,0.22,22,3,88.4661601645773,0.804017638412543,14,4.88588341799649,0,0.050719808631887,-0.0643044710159302,0.244760986201107
+5754,85443,445797.952,85543,445697.952,53,57,21.75,0.054375,7.94494440554022,0.391459235209235,15,-0.0603798794915201,0.05,5,6,55.400633236788,0.490662139219015,2.25,33.30881690979,5,-0.164492124070724,-0.226624399423599,0.0868342994864719
+5755,85443,445697.952,85543,445597.952,54,57,8.5,0.085,18.0952489690691,0.632352941176471,NA,-0.00023396135410735,0.015,1.5,3,33.3339461453335,0.419869470630892,0.75,16.4918454488118,0,-0.146365774795413,-0.229059636592865,0.151290212417618
+5756,85443,445597.952,85543,445497.952,55,57,47.5,0.2375,17.0758747649127,0.578629032258065,35,0.0376734097277767,0.47,47,1,97.5860530790582,0.815658208631533,47,1.05470357042678,0,-0.00653296026090781,-0.301431000232697,0.52304459747132
+5757,85443,445497.952,85543,445397.952,56,57,65,0.1625,13.3009147391025,0.409619354055367,10,0.0511774032891844,0.5925,59.25,2,95.5933424346319,0.81719730227534,29.75,1.26144339967881,0,0.639952802720169,-0.291811138391495,0.809423167655688
+5758,85443,445397.952,85543,445297.952,57,57,13,0.0325,7.70483461556125,0.311636178861789,10.2950849718747,-0.00929150010901594,0.015,1.5,2,46.1375166841518,0.564902102973169,1,0.833333333333333,0,-0.652491071157985,-0.894866347312927,0.565689466193639
+5759,85443,445297.952,85543,445197.952,58,57,31.75,0.0635,9.0471991217299,0.233333333333333,12.0776872304636,-0.0118112929276322,0.0525,5.25,5,61.9522751764967,0.604221635883905,3.25,3.83883467174712,0,-0.696595971783002,-0.911704003810883,0.295529497678901
+5760,85443,445197.952,85543,445097.952,59,57,16.5,0.0275,5.09529044620809,0.243217054263566,26.4752746785575,-0.0278227990965752,0.0875,8.75,7,63.9658127891957,0.546528105810109,4,10.7574452536447,0,-0.0552353387077649,-0.307404547929764,0.380856989963083
+5761,85443,445097.952,85543,444997.952,60,57,51.25,0.1025,10.5782552331624,0.410338082739657,10.4721359549996,0.00804050030939834,0.1775,17.75,4,81.1306669130679,0.795744680851064,8,1.40091001483756,0,0.271950603773197,0.191234648227692,0.119979199170933
+5762,85443,444997.952,85543,444897.952,61,57,29.5,0.0421428571428571,9.31184699738001,0.35459949745664,13.071830771247,-0.0267553548207638,0.01,1,2,30.8308651382582,0.494949494949495,0.5,1.25,0,0.150013295519683,-0.0157517660409212,0.200877565335711
+5763,85443,444897.952,85543,444797.952,62,57,11.75,0.0146875,3.71070808787187,0.0950231481481481,18.2672630131653,-0.0113075053122157,0,0,0,NA,NA,0,NA,NA,-0.219338184843461,-0.54579758644104,0.340776599763932
+5764,85443,444797.952,85543,444697.952,63,57,10.5,0.105,16.6052848845719,0.619047619047619,NA,0.016393748541899,0.19,19,2,91.8756820909629,0.797309747558504,18.25,17.7415672603406,0,-0.320168189911379,-0.654362797737122,0.464627515898754
+5765,85443,444697.952,85543,444597.952,64,57,31,0.103333333333333,9.39952957327758,0.240892531876138,30.2730272788201,0.0271631975150376,0.3175,31.75,1,95.9225630587777,0.879485593771308,31.75,1.4524772523895,0,-0.187215063294085,-0.399835646152496,0.379442914511884
+5766,85443,444597.952,85543,444497.952,65,57,28.25,0.0403571428571429,5.11816138248022,0.163232600732601,16.7234105153972,0.00934022328061474,0.185,18.5,2,91.5612298148894,0.830108541764983,17.75,1.10906848391971,0,-0.344685406320625,-0.524113118648529,0.289018659738069
+5767,85443,444497.952,85543,444397.952,66,57,15.75,0.0225,4.76675494509885,0.252422723475355,11.5971914124998,-0.00534067049853547,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.484358996152878,-0.623146235942841,0.254665927346893
+5768,85443,444397.952,85543,444297.952,67,57,2.5,0.005,1.86988446395335,0.125,29.3356209304689,-0.012530815304508,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-0.64082924524943,-0.745182275772095,0.152982450137325
+5769,85443,444297.952,85543,444197.952,68,57,57.25,0.143125,8.46350865359413,0.258703703703704,12.7950849718747,0.0212763419778275,0.15,15,4,83.045804530405,0.785067873303167,9.75,1.18467636108398,0,-0.895689249038696,-1.02643883228302,0.267788995195767
+5770,85443,444197.952,85543,444097.952,69,57,79.75,0.39875,28.8820851694561,0.803533062783481,14.142135623731,0.074188756269114,0.56,56,1,98.2299673180941,0.951065680730753,56,1.55101074491228,0,-1.69278121987979,-2.17377829551697,0.521477236799965
+5771,85443,444097.952,85543,443997.952,70,57,85,0.425,18.8856614937961,0.417895771878073,10,0.117177355615422,0.985,98.5,1,99.9600766120013,0.286987522281638,98.5,0.71591641576157,0,-2.3047771718767,-2.45025825500488,0.24169991797538
+5772,85443,443997.952,85543,443897.952,71,57,71.25,0.178125,10.9416274901909,0.275872442839952,11.5450849718747,0.105011383220553,0.9425,94.25,1,99.8418294460568,0.635147461234418,94.25,1.75189628904631,0,-2.40435552597046,-2.45669317245483,0.154636642896695
+5773,85443,443897.952,85543,443797.952,72,57,82.25,0.41125,22.2029146384908,0.690393518518519,10,0.102180235479027,1,100,1,100,NA,100,0.933210678100586,0,-2.45123579767015,-2.58271479606628,0.30833238278788
+5774,85443,443797.952,85543,443697.952,73,57,84.75,0.211875,9.95544687831907,0.285886560212907,10,0.0955257618706673,0.86,86,2,99.0192016244123,0.846153846153846,85,0.80294535880865,0,-2.53610279162725,-2.87764596939087,0.413668445786994
+5775,85443,443697.952,85543,443597.952,74,57,58.75,0.05875,6.5792000924132,0.25421835400827,10,0.089813201664947,0.9175,91.75,1,99.7684657792434,0.790712884238064,91.75,2.41862277828705,0,-2.90910620159573,-3.05574369430542,0.277020271310902
+5776,85443,443597.952,85543,443497.952,75,57,72,0.36,23.2810234969826,0.750779327317473,14.142135623731,0.00353040203395722,0.4425,44.25,3,94.7471003105125,0.846409127686126,37,1.64042564435194,0,-2.69735644261042,-2.95318746566772,0.444909431065596
+5777,85443,443497.952,85543,443397.952,76,57,62.5,0.625,38.7337826932292,0.684,NA,0.035437175028037,0.43,43,3,92.9157589076668,0.795229398417178,31.5,2.11399271321851,0,-2.34174108505249,-2.65250325202942,0.370307561456621
+5778,85443,443397.952,85543,443297.952,77,57,72.5,0.3625,22.6772964698249,0.644334906970286,18.0277563773199,0.0738158212866983,0.81,81,1,99.4152046783626,0.862401100791194,81,1.08873111819044,0,-2.2550311088562,-2.41090273857117,0.229219020049564
+5779,85443,443297.952,85543,443197.952,78,57,100,1,38.2238923285138,0.934166666666667,NA,0.0724655925482511,0.8225,82.25,1,99.4598121429477,0.836701367626046,82.25,0,0,-2.33281429608663,-2.46617698669434,0.195931427938924
+5780,85443,443197.952,85543,443097.952,79,57,90.5,0.4525,18.9614507285166,0.444598337950139,11.1803398874989,0.0940249610319734,0.9575,95.75,1,99.8844617862358,0.740722735375142,95.75,0.391644908616188,0,-2.34297296735975,-2.46361899375916,0.1532808534046
+5781,85443,443097.952,85543,442997.952,80,57,66.25,0.0552083333333333,4.97701800043897,0.202231121281465,10.2950849718747,0.0564679139033251,0.6325,63.25,3,97.9803679365595,0.810557134246103,62.25,1.24307302241269,0,-2.34815800189972,-2.47822737693787,0.14035067604749
+5782,85443,442997.952,85543,442897.952,81,57,52.5,0.065625,9.14326694682955,0.363428971734893,10.1475424859374,0.0245862550935635,0.325,32.5,2,94.3842254829876,0.881231442412877,30.5,2.20164002638597,0,-2.50168228149414,-2.69159746170044,0.247542673776222
+5783,85443,442897.952,85543,442797.952,82,57,21.25,0.10625,24.276881820384,0.424336650082919,15,0.0643938471417823,0.51,51,1,97.8932627156421,0.989230520704324,51,26.8615136894525,0,-2.79881687959035,-2.96826672554016,0.201733166471969
+5784,85443,442797.952,85543,442697.952,83,57,9,0.09,20.7935053850074,0.402777777777778,NA,0.109187224104244,0.81,81,1,99.4152046783626,0.931200550395597,81,44.5773112214642,0,-3.03692944844564,-3.10894799232483,0.121938213038187
+5785,85443,442697.952,85543,442597.952,84,57,0,NA,NA,NA,NA,-0.190718031961005,0.1375,13.75,1,91.0694765797212,0.914569031273837,13.75,70.9939303311435,25,-3.09821265935898,-3.20174217224121,0.155383114638452
+5786,85443,442597.952,85543,442497.952,85,57,45.5,0.151666666666667,8.76187397747995,0.299074074074074,22.0185042515466,-0.102545381177624,0.3125,31.25,1,95.8481348315798,0.935923107729275,31.25,0.562579803466797,0,-3.08913103739421,-3.15988874435425,0.128313968352191
+5787,85443,442497.952,85543,442397.952,86,57,21.75,0.2175,23.8165643457038,0.81992337164751,NA,-0.00412981266861607,0.1625,16.25,1,92.2068700432412,0.841500462290318,16.25,0.0769230769230769,0,-3.20131691296895,-3.28792119026184,0.0892038060778462
+5788,85443,442397.952,85543,442297.952,87,57,0,NA,NA,NA,NA,-0.0434826348194838,0,0,0,NA,NA,0,NA,NA,-3.28174742062887,-3.32894682884216,0.078640131885746
+5789,85443,442297.952,85543,442197.952,88,57,0,NA,NA,NA,NA,-0.0449996795510742,0,0,0,NA,NA,0,NA,NA,-3.35980413357417,-3.38703417778015,0.0456953244678173
+5790,85443,442197.952,85543,442097.952,89,57,0,NA,NA,NA,NA,-0.0494301146344515,0,0,0,NA,NA,0,NA,NA,-3.36843281322055,-3.38363075256348,0.0193184756573434
+5791,85443,442097.952,85543,441997.952,90,57,1.25,0.00625,2.5,0.125,45,-0.0388954942211421,0,0,0,NA,NA,0,NA,NA,-3.34293381373088,-3.36636638641357,0.0434800488514236
+5792,85443,441997.952,85543,441897.952,91,57,13.75,0.01375,3.3307453701534,0.161842105263158,10.4721359549996,0.00377781882612908,0.1175,11.75,4,77.9618431639894,0.787535410764873,7,15.3327193564557,0,-3.31415530045827,-3.36214137077332,0.0636989691496194
+5793,85443,441897.952,85543,441797.952,92,57,15,0.075,14.5804002654173,0.570601851851852,11.1803398874989,0.0212582830595056,0.2025,20.25,5,86.9189877569161,0.869383490073145,18,25.7044445555887,10,-3.2522173192766,-3.3054096698761,0.0633380605835309
+5794,85443,441797.952,85543,441697.952,93,57,18,0.06,11.8244249067428,0.358024691358025,11.6666666666667,0.0616434439139994,0.6075,60.75,2,95.8159595247135,0.870927916047027,49,28.8061625790694,0,-3.23374589284261,-3.25434398651123,0.0305104049157703
+5795,85443,441697.952,85543,441597.952,94,57,7.5,0.0375,10.2631240496913,0.221264367816092,10,0.00101981168936618,0.185,18.5,1,93.0265643427559,0.962246342614441,18.5,50.1250336879009,11.1803398132324,-3.25526192453172,-3.27554273605347,0.0250116811748423
+5796,85443,441597.952,85543,441497.952,95,57,0,NA,NA,NA,NA,0.0375390202639028,0.415,41.5,1,97.093152360986,0.955309759231328,41.5,64.2843361820083,18.0277557373047,-3.24925822019577,-3.2688193321228,0.0272875002865566
+5797,85443,441497.952,85543,441397.952,96,57,0,NA,NA,NA,NA,0.137694252575748,0.9775,97.75,1,99.9397711850087,0.580712788259958,97.75,93.0340666124583,36.0555114746094,-3.28914184040493,-3.31751799583435,0.038017183391164
+5798,85443,441397.952,85543,441297.952,97,57,0,NA,NA,NA,NA,0.227501155696809,0.9825,98.25,1,99.9533339757335,0.846801991574109,98.25,119.498912112403,60.8276290893555,-3.3449844121933,-3.36929035186768,0.02954705231449
+5799,85443,441297.952,85543,441197.952,98,57,0,NA,NA,NA,NA,0.058326983588704,0.525,52.5,2,97.2481979356173,0.881545295463723,51.25,97.8837031409854,18.0277557373047,-3.34205465846592,-3.36377716064453,0.038565868651166
+5800,85443,441197.952,85543,441097.952,99,57,26.0526315789474,0.2475,31.6447757710871,0.606060606060606,NA,0.184780411318643,0.7425,74.25,1,99.1551699664667,0.951369470448269,74.25,6.6923068332351,0,-3.21359340349833,-3.2862536907196,0.0908404176825518
+5801,85543,451097.952,85643,450997.952,0,58,48.25,0.160833333333333,17.9276691132392,0.458393458393458,22.6903779806014,0.00558204628683143,0.0825,8.25,4,72.1087539926824,0.656877586032899,4.25,6.75255532698198,0,-3.84994310802884,-3.95656204223633,0.156522579025711
+5802,85543,450997.952,85643,450897.952,1,58,42.75,0.07125,10.5769030145356,0.285831766917293,12.3215759691358,0.0475918145815149,0.39,39,1,96.835360326048,0.908607985377278,39,2.01257747258895,0,-3.95750431219737,-4.02887773513794,0.112674025652386
+5803,85543,450897.952,85643,450797.952,2,58,26.5,0.0240909090909091,5.16713923506925,0.170086945403401,16.0402621142281,-0.00803047666569693,0.0575,5.75,1,83.3142722045184,0.764220453875626,5.75,4.14588430653448,0,-3.99081299040053,-4.03422737121582,0.0706019147909276
+5804,85543,450797.952,85643,450697.952,3,58,8.25,0.0165,5.51982475210804,0.36521164021164,28.8353450132475,-0.00602429198122991,0,0,0,NA,NA,0,NA,NA,-3.93965800603231,-3.98773503303528,0.0439108754017084
+5805,85543,450697.952,85643,450597.952,4,58,59,0.295,23.5154820725003,0.787030677655678,11.1803398874989,0.0299656518485244,0.215,21.5,3,91.6368591381366,0.825152991132759,20.25,2.17890832590502,0,-3.90786409378052,-3.99130916595459,0.116091799052052
+5806,85543,450597.952,85643,450497.952,5,58,65.75,0.6575,34.9806855159837,0.819391634980989,NA,0.0465714008617215,0.3925,39.25,4,92.2230080260902,0.834247828074989,20.75,0.586439922357061,0,-4.25469626983007,-5,0.704096681249218
+5807,85543,450497.952,85643,450397.952,6,58,9.75,0.0975,13.3679971007418,0.735042735042735,NA,-0.00736332832040716,0.0425,4.25,2,72.9569086624483,0.87467362924282,3.75,1.76470588235294,0,-4.95623185899523,-5,0.438565687368679
+5808,85543,450397.952,85643,450297.952,7,58,5.5,0.01375,5.58686518183686,0.257440476190476,19.7855339059327,-0.0139849424169734,0,0,0,NA,NA,0,NA,NA,-4.87974858283997,-5,0.336209990065701
+5809,85543,450297.952,85643,450197.952,8,58,22,0.055,6.34507251941429,0.297633744855967,15.6066017177982,-0.0149067697573264,0.0075,0.75,1,44.4894453484604,1,0.75,7.75046920776367,5,-4.78201447592841,-5,0.526266232446016
+5810,85543,450197.952,85643,450097.952,9,58,28.5,0.035625,4.00709045645595,0.136680825242718,13.4603944107785,-0.006249330511273,0,0,0,NA,NA,0,NA,NA,-4.1789387067159,-4.595778465271,0.265942294885767
+5811,85543,450097.952,85643,449997.952,10,58,13,0.0118181818181818,3.20465764029794,0.0968253968253968,12.7803149290469,-0.00835740848033311,0.1125,11.25,2,83.8886736880599,0.836916234247591,8.75,8.18296665615506,0,-4.08491512139638,-4.09882831573486,0.0207662178719855
+5812,85543,449997.952,85643,449897.952,11,58,8.25,0.00634615384615385,3.04169129914868,0.105006105006105,11.6950433268897,-0.0190611011502551,0,0,0,NA,NA,0,NA,NA,-4.06386555565728,-4.07235050201416,0.0151265672289585
+5813,85543,449897.952,85643,449797.952,12,58,11,0.00916666666666667,2.62285448748454,0.164872685185185,17.9480492536624,-0.00300482115515479,0,0,0,NA,NA,0,NA,NA,-4.07565530141195,-4.0927267074585,0.0160390207611914
+5814,85543,449797.952,85643,449697.952,13,58,5.5,0.00785714285714286,2.00993331083598,0.137973137973138,28.4396687605842,0.00411596213878738,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,4.16316223144531,0,-4.05941613515218,-4.09596920013428,0.0621861723436808
+5815,85543,449697.952,85643,449597.952,14,58,32.5,0.065,7.05213246602655,0.172086720867209,22.3005630797458,0.0187496480842788,0.12,12,4,80.9230087537187,0.805986696230599,9.75,1.96129449208577,0,-3.94986844062805,-4.06012773513794,0.13769408607402
+5816,85543,449597.952,85643,449497.952,15,58,87.75,0.8775,36.6672262636278,0.87369420702754,NA,0.004143842255653,0.22,22,2,89.4882793265835,0.787685774946921,13,0.511363636363636,0,-3.85880819956462,-3.9643931388855,0.174664143189105
+5817,85543,449497.952,85643,449397.952,16,58,93.75,0.9375,37.6157889134003,0.910222222222222,NA,0.0462593118513541,0.4925,49.25,3,94.9515843583059,0.740873203320062,37.25,0.477878861015823,0,-3.96199311812719,-4.01921844482422,0.0952395635363407
+5818,85543,449397.952,85643,449297.952,17,58,69.5,0.3475,26.418476635357,0.837825206418445,14.142135623731,-0.0545727320320657,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-4.01710886425442,-4.03542137145996,0.061757995666611
+5819,85543,449297.952,85643,449197.952,18,58,85,0.85,36.7842994042191,0.877450980392157,NA,0.0292320807464421,0.4625,46.25,1,97.5240566095389,0.864001087991296,46.25,0.135135135135135,0,-3.98833016554515,-4.02483987808228,0.0720530981103082
+5820,85543,449197.952,85643,449097.952,19,58,43.5,0.435,36.9350436088084,0.727969348659004,NA,0.0314138532457582,0.6125,61.25,1,98.5381414210533,0.876038878715312,61.25,8.40865376530861,0,-3.84537381596035,-3.9322509765625,0.171329133497492
+5821,85543,449097.952,85643,448997.952,20,58,59.5,0.198333333333333,20.3466333608924,0.728645428645429,14.5246277368648,0.0616384419921087,0.58,58,2,95.4845591594388,0.76905311778291,30.25,1.48629288837827,0,-3.41503230730693,-3.64331245422363,0.482052792569413
+5822,85543,448997.952,85643,448897.952,21,58,84.75,0.42375,23.4775330898066,0.757894736842105,11.1803398874989,0.0765577883935475,0.7275,72.75,3,95.379860942608,0.698103081025779,58.25,0.877509756186574,0,-2.52715808153152,-2.90154242515564,0.539320350697381
+5823,85543,448897.952,85643,448797.952,22,58,88.5,0.885,36.7658927427403,0.888888888888889,NA,0.026799556394144,0.445,44.5,2,96.2306756991488,0.863084969467948,42.25,0.224719101123595,0,-1.75792141755422,-2.56327652931213,1.10382050027369
+5824,85543,448797.952,85643,448697.952,23,58,43,0.43,31.1776939041848,0.793604651162791,NA,-0.0175290837059583,0.045,4.5,2,70.1754385964912,0.767306573589296,2.25,0,0,-2.26044979691505,-3.70070123672485,2.17697431448242
+5825,85543,448697.952,85643,448597.952,24,58,61,0.61,35.6812463040854,0.849726775956284,NA,0.0205282613519375,0.2625,26.25,3,93.6264914345891,0.849340866290019,25.5,0.411918167840867,0,-1.6340832180447,-3.7631196975708,2.90473921519044
+5826,85543,448597.952,85643,448497.952,25,58,91.75,0.9175,37.492097792686,0.891916439600363,NA,0.0571631301753223,0.685,68.5,3,97.1829425307685,0.709715273917608,58,0.387639428577284,0,1.32493315637112,0.636540293693542,1.5753753945386
+5827,85543,448497.952,85643,448397.952,26,58,68.75,0.34375,27.7495773779109,0.786793197474168,20.6155281280883,0.0764750817773165,0.67,67,4,97.282248629654,0.903608651123562,65,1.30637896238868,0,0.804199589623345,0.371731340885162,0.772869501972975
+5828,85543,448397.952,85643,448297.952,27,58,78,0.39,17.9506167615134,0.444801714898178,11.1803398874989,0.0716121623283834,0.8375,83.75,1,99.5120172135984,0.8541742617572,83.75,0.779733020156177,0,1.08764186004798,0.708941519260406,0.511642203643592
+5829,85543,448297.952,85643,448197.952,28,58,63.75,0.2125,13.1372130374092,0.365,10,0.0327542013273342,0.3625,36.25,4,88.4982998633363,0.769145394006659,17.25,2.09551642845417,0,0.645920541551378,0.286498159170151,0.366997901333381
+5830,85543,448197.952,85643,448097.952,29,58,78.5,0.3925,19.3632767198993,0.525641025641026,22.3606797749979,-0.0311808873450995,0.045,4.5,4,57.8137685927342,0.612177622648827,2,1.94444444444444,0,0.461960501968861,0.265198737382889,0.267478251800013
+5831,85543,448097.952,85643,447997.952,30,58,70.5,0.235,18.4597798879885,0.538871849174182,11.380711874577,0.0531200358286151,0.5,50,4,91.7613458449774,0.762803234501348,27.5,0.775,0,0.582426561249627,0.290510624647141,0.361148489733063
+5832,85543,447997.952,85643,447897.952,31,58,61.75,0.205833333333333,19.3317907915154,0.70674883039083,11.937129433614,0.0505360278790613,0.5275,52.75,2,96.3862153840683,0.805636540330418,44.75,1.45023834083883,0,0.724584324492349,0.48919203877449,0.266575488439459
+5833,85543,447897.952,85643,447797.952,32,58,25.25,0.0505,6.99620215582489,0.346932137834037,12.5606232978365,0.0185742606913118,0.15,15,4,81.5592184308302,0.717194570135747,8.75,7.01252746582031,0,0.315030391638478,-0.0370898619294167,0.379981219382787
+5834,85543,447797.952,85643,447697.952,33,58,18.75,0.03125,11.1711167519311,0.176032529239766,19.5158159111955,0.0154341556790132,0.07,7,4,65.9837565249193,0.6415770609319,2.25,11.5356020246233,0,-0.101117252889607,-0.226099297404289,0.202376577989759
+5835,85543,447697.952,85643,447597.952,34,58,20.25,0.03375,11.3778706989404,0.310391576016576,14.2314060253863,0.0355197717488682,0.3175,31.75,5,88.6573926823032,0.758971187542616,21,4.98881963294322,0,-0.271560267855724,-0.335094481706619,0.0892035030423451
+5836,85543,447597.952,85643,447497.952,35,58,45.75,0.22875,26.8728361064237,0.734972677595628,20,0.0548525115210214,0.595,59.5,3,95.3460125462867,0.805798307670967,38.5,4.50445632774289,0,-0.345312545696894,-0.378634840250015,0.0512106763130516
+5837,85543,447497.952,85643,447397.952,36,58,34.5,0.0215625,5.64850604987767,0.244540224169156,11.5317778872617,0.00449179697814543,0.095,9.5,4,74.8946790201481,0.771989827238446,5.25,1.05263157894737,0,-0.338080557684104,-0.374324113130569,0.0576229581147771
+5838,85543,447397.952,85643,447297.952,37,58,14,0.00875,2.38629631483552,0.161979166666667,14.7119017634181,0.0159039327218716,0.0425,4.25,3,64.5607527263618,0.62402088772846,2.5,6.3708091062658,0,-0.231097501185205,-0.289820402860641,0.120507058009843
+5839,85543,447297.952,85643,447197.952,38,58,26.75,0.02675,4.80238418510659,0.226,12.3929455814815,0.00601050503382794,0.0175,1.75,3,36.9702568437254,0.491094147582697,0.75,2.85714285714286,0,-0.0351131980617841,-0.174932703375816,0.185633873967018
+5840,85543,447197.952,85643,447097.952,39,58,11.75,0.0195833333333333,4.09204211617859,0.289480452674897,26.4399350511315,-0.00377557908490417,0.0175,1.75,1,65.4774238937655,1,1.75,3.15300968715123,0,0.0466917047484054,-0.00379807874560356,0.0840976667542281
+5841,85543,447097.952,85643,446997.952,40,58,13.25,0.0147222222222222,2.24691352223076,0.128839205058717,16.4418008781207,0.00935384789877844,0.1125,11.25,3,86.2865489506695,0.881393624907339,10.75,1.8701057434082,0,0.0199362774922823,-0.0494981370866299,0.109232882700128
+5842,85543,446997.952,85643,446897.952,41,58,2.5,0.00625,2.83173525400276,0.208333333333333,10,6.88456995703746e-05,0.0025,0.25,1,0,NA,0.25,36.0555114746094,36.0555114746094,0.093202159843511,-0.0489547587931156,0.272027224101889
+5843,85543,446897.952,85643,446797.952,42,58,1.75,0.00583333333333333,2.01184463531091,0.194444444444444,42.8667419111156,0.000117876663280185,0.02,2,1,68.0470115164975,0.693877551020408,2,40.8262467384338,36.4005508422852,0.328133703675121,0.0172507707029581,0.524682991281129
+5844,85543,446797.952,85643,446697.952,43,58,15.5,0.0258333333333333,7.25811846453008,0.176674836601307,12.8209706726121,0.0205415907704264,0.16,16,3,88.9617154264189,0.744897959183673,14.25,3.76267793774605,0,0.612971653540929,0.204120546579361,0.640935374486984
+5845,85543,446697.952,85643,446597.952,44,58,25.75,0.0858333333333333,10.4827212137611,0.396572104018913,10.3934466291663,0.00261668310400637,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0,0.706652724080616,0.397265762090683,0.544123090991428
+5846,85543,446597.952,85643,446497.952,45,58,35.5,0.0591666666666667,7.1589912086987,0.305121527777778,14.5307173613175,-0.0228631704663349,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,2.8451779683431,0,0.549101913968722,0.348160564899445,0.346194554566584
+5847,85543,446497.952,85643,446397.952,46,58,38.25,0.1275,11.7123445268596,0.359806114839672,12.4535599249993,0.0178692669153679,0.26,26,3,89.4280878095524,0.848243965891025,17.75,2.37363609900841,0,0.317673159970178,0.279983431100845,0.0962149208882326
+5848,85543,446397.952,85643,446297.952,47,58,11,0.0157142857142857,5.95831253300906,0.26750700280112,11.7658113964283,0.0471937234881034,0.3975,39.75,1,96.9152464661248,0.931791053259819,39.75,5.81833819023468,0,0.562768292923768,0.392149537801743,0.282167560702772
+5849,85543,446297.952,85643,446197.952,48,58,16,0.0266666666666667,7.41556910716989,0.362037037037037,12.9960346505144,0.00986004177333371,0.06,6,5,58.6063816118502,0.552071668533035,2.25,5.96687213579814,0,1.12570827537113,0.757814824581146,0.541060836174671
+5850,85543,446197.952,85643,446097.952,49,58,28.5,0.0316666666666667,7.24171810038792,0.438713818860878,14.1870172540253,-0.0139031077182881,0.04,4,3,68.9413506964927,0.782986111111111,3.5,1.5625,0,1.65364468097687,1.29248821735382,0.670618624364074
+5851,85543,446097.952,85643,445997.952,50,58,8.25,0.00825,2.9899715423127,0.2004329004329,12.5254107400833,0.00343146378008896,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859,1.04416046539942,0.672209560871124,0.612127522021261
+5852,85543,445997.952,85643,445897.952,51,58,58.5,0.585,37.8481482826276,0.735754985754986,NA,-0.0238169051167642,0.0575,5.75,2,75.1033148733524,0.82316534040672,4.5,0.217391304347826,0,0.37333979892234,0.0726673454046249,0.420391797697423
+5853,85543,445897.952,85643,445797.952,52,58,57.75,0.144375,10.6285080032795,0.329365079365079,10,-0.00167078728074557,0.0375,3.75,3,61.4288139205841,0.763872491145218,2,3.74754689534505,0,0.00622000835008091,-0.0680439546704292,0.107299656537939
+5854,85543,445797.952,85643,445697.952,53,58,52.75,0.175833333333333,12.0149576081163,0.349704777241009,17.2075922005613,0.00999713193385105,0.0925,9.25,1,87.9580013362782,0.909678002077406,9.25,0.5965153462178,0,-0.0656634041418632,-0.109987951815128,0.0931983998335157
+5855,85543,445697.952,85643,445597.952,54,58,21.25,0.0303571428571429,5.96153147180398,0.190964590964591,12.7552148300958,-0.030448474268378,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,15.8889736599392,11.1803398132324,0.0942622297960851,-0.0126814031973481,0.197325314532378
+5856,85543,445597.952,85643,445497.952,55,58,67,0.223333333333333,12.1527145320228,0.331656184486373,11.937129433614,0.0604786579415668,0.6625,66.25,1,98.796893507011,0.803264028616141,66.25,1.99485648533083,0,0.32522860997253,0.134544059634209,0.275801456359354
+5857,85543,445497.952,85643,445397.952,56,58,63.5,0.15875,15.4401197870479,0.564397247472602,13.3852549156242,0.033530192195812,0.3425,34.25,2,93.7214764144676,0.872243346007605,29,0.97913967605925,0,0.0393200644757599,-0.606263637542725,0.585391929568397
+5858,85543,445397.952,85643,445297.952,57,58,31.25,0.104166666666667,11.7503435410897,0.33734827264239,10.3934466291663,-0.00806334670167416,0.035,3.5,2,69.6004318449248,0.792746113989637,3,2.85714285714286,0,-0.864998373720381,-0.994737029075623,0.245934653397199
+5859,85543,445297.952,85643,445197.952,58,58,30,0.0428571428571429,9.86762159576987,0.450544105732785,10.8430999196421,0.00525241540301067,0.1,10,4,73.0236170028263,0.734660033167496,3.5,2.42677669525146,0,-0.87961042424043,-1.01570701599121,0.234930533530565
+5860,85543,445197.952,85643,445097.952,59,58,36.75,0.091875,13.1643385636942,0.47185534591195,14.01387818866,-0.089087393993359,0.01,1,3,15.8692205350002,0.242424242424242,0.5,1.25,0,-0.245488259320458,-0.59395706653595,0.52740806842895
+5861,85543,445097.952,85643,444997.952,60,58,72.75,0.36375,20.6101761781966,0.589510489510489,18.0277563773199,0.024629608710602,0.225,22.5,4,85.8960617140126,0.735523943097576,10.25,0.781360838148329,0,0.284541081171483,-0.0311709251254797,0.346269450798464
+5862,85543,444997.952,85643,444897.952,61,58,49.5,0.099,11.3840848657815,0.425491335587489,11.064495102246,-0.0229964749705323,0.0975,9.75,5,71.7998002565617,0.693160025569998,4.25,2.85162060077374,0,-0.0835596343709363,-0.671262264251709,0.64122175156884
+5863,85543,444897.952,85643,444797.952,62,58,22,0.0244444444444444,6.34446755142045,0.267849794238683,10.6557443819439,-0.0034570899060418,0.075,7.5,3,78.2404380797693,0.845559845559846,6.5,3.77504692077637,0,-0.98744710534811,-1.68971621990204,0.778966502653673
+5864,85543,444797.952,85643,444697.952,63,58,23,0.02875,7.83763905512263,0.260140056022409,11.7940509954173,-0.0037817505095154,0.1325,13.25,3,84.2852885823626,0.873325521740507,11.5,5.20257150901938,0,-1.32035434908337,-1.84536612033844,0.754959842562547
+5865,85543,444697.952,85643,444597.952,64,58,22.5,0.045,10.1348861625854,0.387354138398915,14.128990204492,0.0518191582227155,0.43,43,2,96.8431938157587,0.916984891250207,42.75,4.89846835025521,0,-1.23523268600305,-1.8274302482605,0.902247962483746
+5866,85543,444597.952,85643,444497.952,65,58,5,0.05,11.092084762588,0.616666666666667,NA,0.00381364491742715,0.09,9,2,81.646720703688,0.835164835164835,7.75,5.88035191429986,0,-0.52508992039495,-1.35974884033203,0.808503828214948
+5867,85543,444497.952,85643,444397.952,66,58,17.25,0.0575,8.44840069804465,0.341145833333333,38.1720680758398,-0.00328810079991854,0,0,0,NA,NA,0,NA,NA,-0.159975608810782,-0.401313096284866,0.452005786018762
+5868,85543,444397.952,85643,444297.952,67,58,25,0.125,16.0869204135822,0.548611111111111,10,0.0019593195537891,0.055,5.5,3,69.6465250956313,0.782135076252723,4,0.909090909090909,0,-0.378531099607547,-0.599619209766388,0.262064455821711
+5869,85543,444297.952,85643,444197.952,68,58,82,0.82,35.8757365140124,0.852134146341463,NA,0.0131318150780135,0.165,16.5,4,82.7558704974253,0.739651132517574,9.75,0.378787878787879,0,-0.741593440373739,-0.963234424591064,0.305755926790819
+5870,85543,444197.952,85643,444097.952,69,58,73.25,0.36625,28.4749796656098,0.789048531289911,10,0.103293884387786,0.8275,82.75,1,99.4773714744283,0.795942028985507,82.75,1.32412166537835,0,-1.50980026523272,-1.8890917301178,0.537675295777689
+5871,85543,444097.952,85643,443997.952,70,58,81.5,0.271666666666667,13.4587091583622,0.337461300309598,10,0.106847190540284,0.97,97,1,99.9192307098231,0.547101449275363,97,0.92653988317116,0,-1.98571492566003,-2.21053624153137,0.357906706741582
+5872,85543,443997.952,85643,443897.952,71,58,95.75,0.9575,38.6142200747498,0.897737162750218,NA,0.082176776509732,0.975,97.5,1,99.9329506995597,0.297297297297296,97.5,0.217948717948718,0,-2.03278238574664,-2.27208018302917,0.347498194403066
+5873,85543,443897.952,85643,443797.952,72,58,74.25,0.7425,38.1144679044621,0.771043771043771,NA,0.10308551998809,0.9975,99.75,1,99.9934086913499,0.472295514511877,99.75,1.40735759113666,0,-2.32642200258043,-2.6481728553772,0.422710431598701
+5874,85543,443797.952,85643,443697.952,73,58,82,0.41,18.8104826345171,0.421508664627931,10,0.0926188540644944,0.8225,82.25,1,99.4598121429477,0.745979905196072,82.25,1.02919983791363,0,-2.82822742064794,-3.03403520584106,0.325734478826811
+5875,85543,443697.952,85643,443597.952,74,58,52.25,0.130625,18.1318279726142,0.46038240621574,10.2950849718747,0.104695148207247,0.9875,98.75,1,99.9667936270881,0.893333333333336,98.75,2.84230698211284,0,-3.16196846961975,-3.23003602027893,0.130286422350514
+5876,85543,443597.952,85643,443497.952,75,58,53,0.176666666666667,16.4108727443073,0.58607490171736,15,0.0116413811404345,0.3575,35.75,2,93.3571266418952,0.863367689428818,25.5,2.20528209126079,0,-3.12768818934759,-3.2291374206543,0.16406644773594
+5877,85543,443497.952,85643,443397.952,76,58,62.5,0.078125,8.46178400919523,0.357974744627287,10.7725424859374,0.0215601338005581,0.3525,35.25,4,90.9601472020143,0.778516057585825,20.5,2.87311746042671,0,-2.88775822851393,-3.11426377296448,0.378915277337512
+5878,85543,443397.952,85643,443297.952,77,58,86,0.43,20.1619728377967,0.505116959064328,10,0.0796537640294991,0.8525,85.25,2,99.3748164328144,0.737222441203521,85,0.651234802962049,0,-2.66582894325256,-2.94975519180298,0.392141547338821
+5879,85543,443297.952,85643,443197.952,78,58,89.5,0.895,39.0123052882891,0.851024208566108,NA,0.073514054317493,0.835,83.5,1,99.5034141561623,0.798299956778562,83.5,0.62874251497006,0,-2.65372139215469,-2.89143133163452,0.304289141033833
+5880,85543,443197.952,85643,443097.952,79,58,93,0.93,38.3599024514114,0.879480286738351,NA,0.0839153596066171,0.7825,78.25,1,99.3133324321661,0.805182154685369,78.25,0.399361022364217,0,-2.48973843786452,-2.59555768966675,0.135667912915927
+5881,85543,443097.952,85643,442997.952,80,58,89.75,0.8975,37.2499402851983,0.875580315691736,NA,0.0598571918886591,0.595,59.5,2,95.635539755969,0.739214870301013,31.25,0.752698048824022,0,-2.52575832605362,-2.70787525177002,0.160741387579763
+5882,85543,442997.952,85643,442897.952,81,58,49.5,0.2475,22.2866429695703,0.721230361150786,10,-0.00853827357306727,0.4625,46.25,1,97.5240566095389,0.907520739834081,46.25,2.25520807214685,0,-2.79582246144613,-2.89612936973572,0.251886757158619
+5883,85543,442897.952,85643,442797.952,82,58,1.75,0.00583333333333333,2.25696414920506,0.0777777777777778,32.3775852312238,-0.0526003708801773,0,0,0,NA,NA,0,NA,NA,-2.99687381585439,-3.12895464897156,0.195570830017303
+5884,85543,442797.952,85643,442697.952,83,58,10,0.02,7.96961889090879,0.201455026455026,12.5498231854631,0.0142447448657185,0.2375,23.75,2,93.566901792855,0.961427193828351,23.5,38.9902422854775,0,-3.00268207656013,-3.12075877189636,0.134679382631616
+5885,85543,442697.952,85643,442597.952,84,58,20,0.1,26.5324916307161,0.355555555555556,15,-0.01612235399778,0.2,20,2,92.380762576146,0.964788732394366,19.75,18.338526391983,0,-2.95878253380458,-3.04826283454895,0.118198515177426
+5886,85543,442597.952,85643,442497.952,85,58,41.5,0.2075,27.3464491382397,0.48223864258347,14.142135623731,0.0110674773745268,0.2025,20.25,5,86.3554927939329,0.756182514803205,14.5,5.98649620715483,0,-2.92900808652242,-3.01337456703186,0.0976368373638457
+5887,85543,442497.952,85643,442397.952,86,58,12.25,0.0408333333333333,8.90396645874829,0.224691358024691,18.3333333333333,-0.0307903980335323,0.0375,3.75,2,69.8118255760756,0.716646989374262,3,2.33333333333333,0,-3.09524369239807,-3.3954222202301,0.157723292889075
+5888,85543,442397.952,85643,442297.952,87,58,0,NA,NA,NA,NA,-0.0393065468618806,0,0,0,NA,NA,0,NA,NA,-3.27854911486308,-3.42770385742188,0.175723362379402
+5889,85543,442297.952,85643,442197.952,88,58,0.75,0.00375,1.25,0.0833333333333333,15.8113883008419,-0.029484695256956,0,0,0,NA,NA,0,NA,NA,-3.32403182983398,-3.38067960739136,0.115303939155896
+5890,85543,442197.952,85643,442097.952,89,58,0,NA,NA,NA,NA,-0.0362100950483,0,0,0,NA,NA,0,NA,NA,-3.33665294117398,-3.37518763542175,0.0643092910395148
+5891,85543,442097.952,85643,441997.952,90,58,2,0.02,10.4666115924998,0.270833333333333,NA,-0.0143230379129818,0,0,0,NA,NA,0,NA,NA,-3.29721744855245,-3.32298588752747,0.0334101071359274
+5892,85543,441997.952,85643,441897.952,91,58,2.5,0.0125,6.26599490432117,0.242063492063492,11.1803398874989,0.034163791130195,0.3125,31.25,2,94.8048343586167,0.903884661593913,30.5,70.7085588073731,5,-3.26447828610738,-3.28000545501709,0.0242613827102682
+5893,85543,441897.952,85643,441797.952,92,58,1.5,0.0075,3,0.133333333333333,46.0977222864644,0.0286378686826174,0.2075,20.75,7,80.7191122161053,0.630893366810447,9,36.0121200285762,0,-3.21709481875102,-3.24179625511169,0.0378340578579079
+5894,85543,441797.952,85643,441697.952,93,58,2.5,0.025,9.3487513509829,0.4,NA,0.193082726132125,1,100,1,100,NA,100,36.5930682039261,0,-3.22315734624863,-3.26099276542664,0.0301831488172993
+5895,85543,441697.952,85643,441597.952,94,58,10.5,0.013125,4.34336163883275,0.162152777777778,16.0327974015616,0.135374500342587,0.84,84,1,99.5205818358949,0.970472440944882,84,16.4131959449677,0,-3.25325465202332,-3.27119851112366,0.0324611341089611
+5896,85543,441597.952,85643,441497.952,95,58,11.75,0.029375,9.25115550236711,0.320795795795796,13.3852549156242,0.00324126567866188,0.1575,15.75,2,86.6949651342759,0.805772862152684,9,12.4813488854302,0,-3.24886087576548,-3.27235150337219,0.0371212619460783
+5897,85543,441497.952,85643,441397.952,96,58,9.5,0.0158333333333333,5.13642951879506,0.185185185185185,10.7868932583326,0.0734822587063172,0.4375,43.75,1,97.3060110945426,0.972480220158239,43.75,25.5134134674072,5,-3.29773248566522,-3.32814002037048,0.0477297508382881
+5898,85543,441397.952,85643,441297.952,97,58,13,0.065,12.3013506608212,0.236928104575163,11.1803398874989,0.131884314045019,0.7325,73.25,1,99.1136185490844,0.952507759892803,73.25,38.9735956224565,0,-3.35119390487671,-3.36999988555908,0.0386952871347841
+5899,85543,441297.952,85643,441197.952,98,58,12.75,0.0425,11.3525785792892,0.387865497076023,23.4370962471642,0.123098435484972,0.6725,67.25,2,96.0930439646797,0.800468596477969,45.25,23.2627084866775,0,-3.32305259174771,-3.36390113830566,0.0713977171712911
+5900,85543,441197.952,85643,441097.952,99,58,39.7368421052632,0.125833333333333,19.854364117263,0.444885361552028,10.3934466291663,0.315219397190958,1,100,1,100,NA,100,3.98740871429443,0,-3.1758376955986,-3.27392959594727,0.106830870714038
+5901,85643,451097.952,85743,450997.952,0,59,30.5,0.0277272727272727,5.42555940127873,0.2003367003367,11.0203795407931,0.00405394476723814,0.12,12,2,83.8173725795448,0.778270509977827,6.5,6.17444705963135,0,-3.90673969189326,-3.98201394081116,0.118614192406054
+5902,85643,450997.952,85743,450897.952,1,59,18.75,0.01875,7.4068503888576,0.208170615227067,13.9371892529,-0.0149691026578603,0.0025,0.25,1,0,NA,0.25,0,0,-3.96401897072792,-4.04512166976929,0.118719748047649
+5903,85643,450897.952,85743,450797.952,2,59,20.75,0.02075,6.25623371836154,0.169179894179894,11.0901699437495,-0.0183581026252796,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-4.019660115242,-4.04779195785522,0.0632092389821869
+5904,85643,450797.952,85743,450697.952,3,59,3,0.0075,2.36344074993297,0.087962962962963,10.5901699437495,0.00549092690351245,0,0,0,NA,NA,0,NA,NA,-3.9807606190443,-4.02452898025513,0.057271396666419
+5905,85643,450697.952,85743,450597.952,4,59,9.25,0.04625,14.9539868999162,0.491358024691358,20,0.00328310573524504,0,0,0,NA,NA,0,NA,NA,-3.85937458276749,-3.92657446861267,0.0827400507253767
+5906,85643,450597.952,85743,450497.952,5,59,19.75,0.01975,5.00264260985328,0.220691609977324,13.8416192529638,0.0198147534173404,0.2075,20.75,5,88.3130238897847,0.83690637138136,18.5,5.2641738983522,0,-3.74751542508602,-3.83779454231262,0.215795702592291
+5907,85643,450497.952,85743,450397.952,6,59,73.5,0.735,36.9333961484661,0.814625850340136,NA,0.0326775351725519,0.325,32.5,3,92.388790437119,0.724957024535084,25,0.887348761925331,0,-3.4238933523496,-4.73607349395752,0.877917565086145
+5908,85643,450397.952,85743,450297.952,7,59,18,0.06,10.0535283120852,0.412524366471735,21.6666666666667,-0.0019424835961604,0.02,2,1,68.0470115164975,0.795918367346939,2,4.00888347625732,0,-4.52615439891815,-5,0.830241923908876
+5909,85643,450297.952,85743,450197.952,8,59,44,0.44,33.4523548980752,0.693181818181818,NA,-0.00594839386075819,0.1425,14.25,3,84.1685331961422,0.773903730588445,10.75,3.72812465199253,0,-4.24790674448013,-5,0.406481920471735
+5910,85643,450197.952,85743,450097.952,9,59,12.5,0.0104166666666667,3.31917830889676,0.0929861111111111,14.7590873647579,-0.016603633221257,0,0,0,NA,NA,0,NA,NA,-4.12391026814779,-4.18638372421265,0.0449942277653746
+5911,85643,450097.952,85743,449997.952,10,59,26.75,0.13375,18.1493849983568,0.391826923076923,14.142135623731,-0.0212781248627471,0.02,2,1,68.0470115164975,0.897959183673469,2,4.89276695251465,0,-4.08690828084946,-4.1041579246521,0.0159867482663247
+5912,85643,449997.952,85743,449897.952,11,59,11.5,0.0104545454545455,2.81124024239228,0.10565330726621,15.273020302559,-0.009649382414309,0,0,0,NA,NA,0,NA,NA,-4.07615923881531,-4.07999992370605,0.00758782211907345
+5913,85643,449897.952,85743,449797.952,12,59,9,0.01,2.37502774884802,0.108024691358025,24.0843749751616,0.00461390937434771,0.0225,2.25,4,38.5289898720462,0.48849104859335,1,3.42348755730523,0,-4.07774391770363,-4.07999992370605,0.00871331960946926
+5914,85643,449797.952,85743,449697.952,13,59,20.75,0.0259375,6.01427917904337,0.269469246031746,16.5764690759614,0.0041716938931566,0.06,6,1,83.7764057650598,0.832026875699888,6,2.88092231750488,0,-4.03773911794027,-4.06620025634766,0.0507408712692715
+5915,85643,449697.952,85743,449597.952,14,59,17,0.02125,4.54550480746093,0.164028275587415,16.1757725304825,-0.00111210192229919,0,0,0,NA,NA,0,NA,NA,-3.90763448178768,-3.99850344657898,0.0924359228223209
+5916,85643,449597.952,85743,449497.952,15,59,22,0.0244444444444444,6.58575793319747,0.191984464297761,15.9529712478109,0.00843154262981443,0.0875,8.75,2,81.1443654111035,0.848842701936703,6.5,12.8449124472482,0,-3.75162865718206,-3.82548713684082,0.107057740104645
+5917,85643,449497.952,85743,449397.952,16,59,49,0.0816666666666667,7.7239335743382,0.254860636439584,13.0176939871952,0.0424142228768324,0.38,38,4,93.485947143135,0.832350560758469,33.25,2.02435793374714,0,-3.64555734395981,-3.86835861206055,0.222248110900574
+5918,85643,449397.952,85743,449297.952,17,59,91.5,0.915,37.5613364195507,0.877504553734062,NA,0.0291544442376471,0.4225,42.25,3,95.4260912128432,0.816849816849817,38.5,0.355029585798817,0,-3.65887965758642,-3.92577433586121,0.288116735045887
+5919,85643,449297.952,85743,449197.952,18,59,50.25,0.1675,16.0689573098599,0.581624813668157,17.2075922005613,0.00287068162404466,0.2275,22.75,2,92.0278729125519,0.856166846458108,20.75,0.827719510256589,0,-3.70866043865681,-3.93431067466736,0.28566771316653
+5920,85643,449197.952,85743,449097.952,19,59,60.75,0.6075,35.6363324832267,0.770233196159122,NA,0.0562510262722208,0.545,54.5,3,95.2914627981773,0.853840740540248,48.25,1.5776569821419,0,-3.45644400517146,-3.84570932388306,0.482485044744669
+5921,85643,449097.952,85743,448997.952,20,59,71,0.236666666666667,18.3760422384186,0.524054373522459,19.9690159497152,0.0724155098572373,0.67,67,2,96.3951696827346,0.668654738237243,39.75,1.50640413654384,0,-3.05892650286357,-3.49901628494263,0.382628890114306
+5922,85643,448997.952,85743,448897.952,21,59,90.75,0.9075,37.1222187329345,0.894398530762167,NA,0.0416246322208099,0.4425,44.25,2,95.9876724828422,0.82446757449843,40,0.282485875706215,0,-2.82628621160984,-3.23680233955383,0.326803508357585
+5923,85643,448897.952,85743,448797.952,22,59,15.25,0.1525,17.544429750709,0.710382513661202,NA,-0.0263170955166061,0,0,0,NA,NA,0,NA,NA,-3.43236211935679,-4,0.814502453847696
+5924,85643,448797.952,85743,448697.952,23,59,0,NA,NA,NA,NA,-0.0300520348467398,0,0,0,NA,NA,0,NA,NA,-4,-4,0.156180963618742
+5925,85643,448697.952,85743,448597.952,24,59,9.5,0.095,11.7825699387044,0.789473684210526,NA,-0.0189557980756217,0.0625,6.25,2,79.7107959003771,0.866666666666667,5.75,1.35356575012207,0,-3.77987460295359,-4,0.817980628019737
+5926,85643,448597.952,85743,448497.952,25,59,57.5,0.2875,20.3071028016924,0.706459948320413,11.1803398874989,0.0333420006283177,0.3375,33.75,5,91.9034776209023,0.779107225034514,27.5,2.77423092877423,0,-1.5867623675731,-4,2.43041314833598
+5927,85643,448497.952,85743,448397.952,26,59,88.25,0.44125,20.1893953799089,0.599032951289398,15.8113883008419,0.0624593244714197,0.7075,70.75,2,98.2261361206391,0.781505044662939,68.5,0.19434628975265,0,-0.309221036576976,-1.01968574523926,0.895308752564775
+5928,85643,448397.952,85743,448297.952,27,59,28,0.0233333333333333,5.06979034334449,0.204425381263617,13.8520145790604,0.0178505590627901,0.145,14.5,3,88.8228852784744,0.906432748538012,14,0.172413793103448,0,0.27119430154562,-0.477852046489716,0.672938470234478
+5929,85643,448297.952,85743,448197.952,28,59,29.25,0.0225,5.35872605723544,0.2180330634278,14.0383261192778,0.00117657577389991,0.0475,4.75,4,59.1283162488617,0.637976287446828,2.25,1.42479304263466,0,0.438943746189276,-0.0551204532384872,0.447996889347767
+5930,85643,448197.952,85743,448097.952,29,59,71.25,0.1425,10.4403709522037,0.418533157663592,11.4721359549996,0.0435386138711328,0.4725,47.25,2,96.3374209360566,0.826675693974272,43.5,0.789111828677869,0,0.351569922175258,-0.59207671880722,0.595832490135211
+5931,85643,448097.952,85743,447997.952,30,59,87.75,0.43875,23.3543800350333,0.761920946626385,11.1803398874989,0.066736622012686,0.72,72,3,97.6577427746378,0.789140748550343,68,0.190972222222222,0,-0.257165390600373,-0.661409258842468,0.491454155637103
+5932,85643,447997.952,85743,447897.952,31,59,63,0.63,38.056407745065,0.707010582010582,NA,0.0626498887341586,0.655,65.5,2,98.5174159576545,0.870126036777945,65.25,1.71891350782555,0,0.113533370196819,-0.433401167392731,0.511073743840552
+5933,85643,447897.952,85743,447797.952,32,59,43.5,0.0725,7.95015640300326,0.206798756798757,10.6903559372885,0.0299476534187488,0.3875,38.75,1,96.8082175905,0.856784819190834,38.75,1.41935483870968,0,-0.00484800342746894,-0.129556849598885,0.167111080925396
+5934,85643,447797.952,85743,447697.952,33,59,21.5,0.043,6.21077755018918,0.141152263374486,14.7752238048445,0.00675862722350871,0.0725,7.25,2,78.2701035031027,0.839421918908069,5,2.48520923482961,0,-0.167609465618928,-0.272123217582703,0.184300455551096
+5935,85643,447697.952,85743,447597.952,34,59,16.75,0.0209375,8.67026801250678,0.343371212121212,16.2548711414152,0.0185388865051664,0.1025,10.25,4,74.2277199471408,0.725485446691696,5.75,12.234761493962,0,-0.353796224109828,-0.450425893068314,0.108622631239767
+5936,85643,447597.952,85743,447497.952,35,59,14.25,0.0158333333333333,5.68484576159113,0.243365494345887,14.7771604475245,0.0193536387212953,0.23,23,3,88.5014117234045,0.83370288248337,16.75,9.6116014148878,0,-0.420678916076819,-0.487134218215942,0.0613091917754381
+5937,85643,447497.952,85743,447397.952,36,59,37.5,0.125,14.5702199086834,0.545920138888889,11.1803398874989,0.029950856483174,0.41,41,2,95.9344934092183,0.927040071837468,40,1.88174845532673,0,-0.325173707678914,-0.439010053873062,0.124180273206434
+5938,85643,447397.952,85743,447297.952,37,59,44.25,0.0553125,7.93509954864818,0.303207285880174,12.5778823734363,0.023200353075963,0.16,16,3,86.7017035711716,0.787414965986394,12.25,1.25503867864609,0,-0.032612505601719,-0.211306497454643,0.228397420242509
+5939,85643,447297.952,85743,447197.952,38,59,23.5,0.047,9.48984099828263,0.324069264069264,12.9442719099992,0.0121574689405679,0.09,9,2,80.4523936425773,0.835164835164835,4.5,6.34125195609199,0,0.306853458285332,0.0571572035551071,0.208787701052634
+5940,85643,447197.952,85743,447097.952,39,59,7,0.014,5.68916375334963,0.300952380952381,23.4800625355188,0.0114641524900298,0.045,4.5,4,56.2468071120173,0.612177622648827,1.75,5.19854905870226,0,0.258484098439415,0.0870953276753426,0.21454564678136
+5941,85643,447097.952,85743,446997.952,40,59,4.75,0.00431818181818182,1.10160929400974,0.0777777777777778,16.7980750059487,-0.00265973705502802,0.0025,0.25,1,0,NA,0.25,5,5,0.00199817470274866,-0.0922107771039009,0.125340497980503
+5942,85643,446997.952,85743,446897.952,41,59,4.5,0.00642857142857143,2.31646247225421,0.167800453514739,17.5392132037841,0.0060189255352077,0.0025,0.25,1,0,NA,0.25,0,0,-0.116506397724152,-0.146182179450989,0.0644580902743316
+5943,85643,446897.952,85743,446797.952,42,59,0.25,0.0025,0,0,NA,0.00577685997513981,0,0,0,NA,NA,0,NA,NA,-0.113155817351071,-0.154474183917046,0.0923339677101469
+5944,85643,446797.952,85743,446697.952,43,59,17.5,0.0291666666666667,8.85320907963261,0.160493827160494,17.5790707788381,0.0117039644817942,0.05,5,4,58.4792009459564,0.558573853989813,1.75,2.25,0,-0.0242462113189201,-0.113313660025597,0.165838424289363
+5945,85643,446697.952,85743,446597.952,44,59,1.75,0.004375,1.44254854407954,0.111111111111111,25.5901699437495,-0.00352112056583792,0,0,0,NA,NA,0,NA,NA,0.134447284353276,0.0158031135797501,0.212814210520654
+5946,85643,446597.952,85743,446497.952,45,59,34.75,0.086875,9.27332136082493,0.3666015625,14.9767619622864,0.00587839337493278,0.0325,3.25,2,63.7958532695375,0.712891185759403,2.25,1.53846153846154,0,0.373324127867818,0.233297139406204,0.164601824926882
+5947,85643,446497.952,85743,446397.952,46,59,62,0.206666666666667,18.5453413985428,0.627777777777778,10,0.0320117103601478,0.2425,24.25,6,86.1070529141377,0.688934410682448,13.75,2.49304423381373,0,0.461804029842218,0.302660077810287,0.141712576329017
+5948,85643,446397.952,85743,446297.952,47,59,64.75,0.1295,10.6074889990163,0.419407407407407,10.2360679774998,0.020452145206782,0.19,19,4,83.5302274508764,0.760456974387323,10.25,1.84210526315789,0,0.502416324336082,-0.0374696180224419,0.357928821572119
+5949,85643,446297.952,85743,446197.952,48,59,56.75,0.0709375,6.68083030777192,0.278311314363144,10.6653094389037,-0.000195413958581412,0.0375,3.75,2,68.798930366971,0.811097992916175,3,2.66666666666667,0,0.476878384438654,-0.0415621288120747,0.497284531068155
+5950,85643,446197.952,85743,446097.952,49,59,27.25,0.0545,11.189073260452,0.496002554278416,12.3650581819917,0.0055655523954556,0.1175,11.75,5,73.6588238466914,0.688385269121813,5.5,2.49087378319274,0,0.585191683843732,0.422549545764923,0.372178771796201
+5951,85643,446097.952,85743,445997.952,50,59,31,0.0221428571428571,4.36771917997801,0.293284777679188,11.0515256821426,-0.00899875769504433,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,2,0,0.518165610730648,0.316185384988785,0.355239410432013
+5952,85643,445997.952,85743,445897.952,51,59,47,0.1175,13.2242374376227,0.378597444470982,11.4528470752105,-0.00555397509020622,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,0,0,0.263270350871608,0.0511116497218609,0.339398084226268
+5953,85643,445897.952,85743,445797.952,52,59,40.5,0.0675,8.44503498736271,0.370346424010217,11.6666666666667,-0.0138838146216858,0.1575,15.75,2,88.4228089641175,0.870515241435123,13.25,2.06861072116428,0,0.138251860936483,-0.0798258483409882,0.214809371401574
+5954,85643,445797.952,85743,445697.952,53,59,57.5,0.0638888888888889,7.28929393181495,0.257769679089476,10,0.00299007626956154,0.2025,20.25,3,88.7364328897978,0.817136886102403,17,1.35802469135802,0,-0.249974624024162,-0.679817259311676,0.400330756145798
+5955,85643,445697.952,85743,445597.952,54,59,72.75,0.0909375,7.20286826164151,0.217464862771138,10,-0.00847359637013142,0.1025,10.25,3,80.4667891803082,0.79007710629365,5.75,3.03572222081626,0,-0.253538215222458,-0.760118424892426,0.34399809131227
+5956,85643,445597.952,85743,445497.952,55,59,51.5,0.0515,6.27822789681446,0.252468674136321,10,0.0152241693963697,0.25,25,4,85.4824475996408,0.762962962962963,14.5,1.59142135620117,0,0.198852458794136,-0.0963435396552086,0.379189869313919
+5957,85643,445497.952,85743,445397.952,56,59,70.75,0.176875,9.91855198521611,0.249850657108722,10,-0.00521174102643272,0.135,13.5,2,87.5854481173737,0.900553172975325,12,1.14946421870479,0,-0.255006634048186,-0.921698093414307,0.656659813137775
+5958,85643,445397.952,85743,445297.952,57,59,67.75,0.33875,20.2739819276546,0.57416142557652,22.3606797749979,-0.0201861439943968,0.065,6.5,1,84.6193541959806,0.9478283552889,6.5,10.5592811291034,5,-0.900244235992432,-1.00913441181183,0.237392695291513
+5959,85643,445297.952,85743,445197.952,58,59,59.25,0.1185,13.4409387876411,0.494613082007054,10.8284271247462,-0.0237312864659907,0.075,7.5,1,86.0448225436784,0.889685603971318,7.5,1.80473785400391,0,-1.07647609338164,-1.21533215045929,0.161232881281824
+5960,85643,445197.952,85743,445097.952,59,59,63.5,0.635,35.8373262552834,0.80511811023622,NA,4.82660191846662e-05,0.11,11,2,86.9786256956069,0.893713938657759,10.5,0.227272727272727,0,-0.961126054326693,-1.29984819889069,0.445617187582595
+5961,85643,445097.952,85743,444997.952,60,59,80,0.4,19.23337092063,0.648997890295359,10,0.0319201278534092,0.365,36.5,2,95.306250376997,0.929222330354773,35.25,0,0,-0.818642579833977,-1.64329278469086,0.802594096313016
+5962,85643,444997.952,85743,444897.952,61,59,80.5,0.4025,20.1591414004103,0.652426160337553,10,0.0656028081959812,0.67,67,1,98.8331871391418,0.939755406952226,67,0.149253731343284,0,-1.28338113675515,-1.97973024845123,0.874543629423824
+5963,85643,444897.952,85743,444797.952,62,59,56,0.14,13.0887428630972,0.319264069264069,10,-0.0188210141684976,0.1225,12.25,2,87.3127129052834,0.891466558133225,11.5,0.204081632653061,0,-1.9251224398613,-2.15655469894409,0.356663331405469
+5964,85643,444797.952,85743,444697.952,63,59,35.5,0.071,14.4588795949803,0.396296296296296,10.7082039324994,0.00986045766527241,0.22,22,2,92.503659574908,0.820349501878164,20.5,0.340909090909091,0,-2.11839891473452,-2.20244836807251,0.159191994595693
+5965,85643,444697.952,85743,444597.952,64,59,20.5,0.041,6.42982143169597,0.175324675324675,25.1853633739162,0.0049865275213233,0.1425,14.25,5,79.2260920749891,0.762003926935206,9.25,4.24091820967825,0,-2.09796752035618,-2.29343795776367,0.316106053026815
+5966,85643,444597.952,85743,444497.952,65,59,28.25,0.0470833333333333,9.4814025248268,0.407735339506173,11.0300566479165,0.0279696760950901,0.26,26,6,82.4429395989768,0.689261453967336,8.5,3.59351013256953,0,-1.7994666347901,-2.28161358833313,0.590093438484558
+5967,85643,444497.952,85743,444397.952,66,59,25.25,0.0841666666666667,10.1869753848525,0.43010752688172,12.4535599249993,0.0162157566289511,0.1625,16.25,2,90.4987647252432,0.830933826443006,15.5,2.2730597275954,0,-1.53197249025106,-2.12624716758728,0.86599926678327
+5968,85643,444397.952,85743,444297.952,67,59,12,0.024,6.4636685056056,0.207692307692308,21,-0.00377836899326667,0.0325,3.25,4,49.3251963757179,0.540625897215045,1.25,3.84615384615385,0,-0.91497273958521,-1.95421814918518,0.910503357850749
+5969,85643,444297.952,85743,444197.952,68,59,15.75,0.039375,8.16495718742081,0.234739108409321,22.7254248593737,0.000663289077969154,0.045,4.5,4,60.0413245205646,0.612177622648827,2.5,3.44839265611437,0,-0.426694515937318,-1.03370046615601,0.654437071911189
+5970,85643,444197.952,85743,444097.952,69,59,39.5,0.079,9.97363477283408,0.274182822008909,15.3245553203368,0.0252655161245093,0.3,30,4,88.8274137464354,0.73132372214941,15,2.39790735244751,0,-0.672460232469916,-1.30674827098846,0.652701802664701
+5971,85643,444097.952,85743,443997.952,70,59,59.75,0.199166666666667,12.1725233511799,0.369301994301994,13.5385093760294,0.0575219694879979,0.5425,54.25,3,96.7680579210343,0.870150949521182,52,1.41746637019144,0,-1.29437144100666,-1.6543573141098,0.58221397805956
+5972,85643,443997.952,85743,443897.952,71,59,80.5,0.4025,19.9097302168886,0.494688261929641,14.142135623731,0.0671797584481828,0.695,69.5,2,98.7059326173539,0.880660762514918,69.25,1.57794903679717,0,-1.53658547624946,-1.83125448226929,0.370496858921301
+5973,85643,443897.952,85743,443797.952,72,59,81.5,0.4075,21.5235143550633,0.605902777777778,10,0.0900922498782165,0.8975,89.75,1,99.7075809055868,0.583931133428982,89.75,0.989847741087167,0,-1.96438105901082,-2.26407551765442,0.384118046221369
+5974,85643,443797.952,85743,443697.952,73,59,79.25,0.39625,20.298933638205,0.636538461538461,15.8113883008419,0.0883622972341254,0.855,85.5,2,99.2517132038116,0.808133027767415,85,1.19485266166821,0,-2.75162445008755,-3.09017586708069,0.449396644630173
+5975,85643,443697.952,85743,443597.952,74,59,69.75,0.2325,14.9104098221638,0.428223336118073,10,0.0880346852261573,0.965,96.5,1,99.9054042256917,0.648711943793913,96.5,1.61878967285156,0,-3.11453926563263,-3.22863221168518,0.192053239519434
+5976,85643,443597.952,85743,443497.952,75,59,71.75,0.179375,11.5077931234356,0.415602189781022,10.5901699437495,0.0600472254632723,0.6475,64.75,1,98.7224235157768,0.801125977919134,64.75,2.23467967501018,0,-3.13305656611919,-3.22799277305603,0.0970866550229206
+5977,85643,443497.952,85743,443397.952,76,59,75.75,0.2525,20.2235694393226,0.727684793673166,10.3934466291663,0.0319523982064129,0.3675,36.75,2,94.5225142293824,0.853064343124146,32.5,1.53302951734893,0,-3.15826783577601,-3.19019055366516,0.0623823709016007
+5978,85643,443397.952,85743,443297.952,77,59,71.75,0.7175,39.290237985017,0.804297328687573,NA,0.0326904384829686,0.5175,51.75,1,97.946862664664,0.854653118901823,51.75,2.16045165868197,0,-3.16266016165415,-3.22650766372681,0.111196354983112
+5979,85643,443297.952,85743,443197.952,78,59,76.75,0.7675,35.7964895217123,0.859391965255157,NA,0.0708194239529257,0.805,80.5,1,99.3970714465752,0.789136302294197,80.5,0.895292767826815,0,-3.05330367386341,-3.1992449760437,0.183739391550247
+5980,85643,443197.952,85743,443097.952,79,59,89.5,0.895,36.5755355603167,0.886871508379888,NA,0.0867140934383497,0.695,69.5,2,98.2507632075606,0.786445575026694,67,0.842237897914091,0,-2.73543254534403,-3.01767039299011,0.324690627892249
+5981,85643,443097.952,85743,442997.952,80,59,98.75,0.9875,38.2941655426991,0.923206751054852,NA,0.0655464338511229,0.8125,81.25,1,99.4242084607871,0.79989124524198,81.25,0.0769230769230769,0,-2.70052625238895,-2.90594053268433,0.228829684238044
+5982,85643,442997.952,85743,442897.952,81,59,44,0.22,14.4379699597591,0.441428571428571,22.3606797749979,-0.0911576520438655,0.07,7,1,85.3702908942512,0.95221027479092,7,0,0,-2.74507166941961,-3.07770681381226,0.41389508776235
+5983,85643,442897.952,85743,442797.952,82,59,0,NA,NA,NA,NA,-0.0419751760578708,0,0,0,NA,NA,0,NA,NA,-3.17194943130016,-3.25600743293762,0.105926600580689
+5984,85643,442797.952,85743,442697.952,83,59,0,NA,NA,NA,NA,0.0253509450875572,0.3075,30.75,2,92.0305474925468,0.88991597999061,18.25,112.798563577295,65,-3.2316160996755,-3.26999998092651,0.0699501755107995
+5985,85643,442697.952,85743,442597.952,84,59,0,NA,NA,NA,NA,0.112937247658388,0.74,74,1,99.1448611187463,0.986189752796575,74,60.9828254983232,22.3606796264648,-3.18525490164757,-3.26358342170715,0.113612816373576
+5986,85643,442597.952,85743,442497.952,85,59,1.25,0.003125,0.625,0.0416666666666667,35.4324531168464,0.163963255230337,1,100,1,100,NA,100,28.2672837781906,0,-3.11438355843226,-3.22393941879272,0.135016771917973
+5987,85643,442497.952,85743,442397.952,86,59,8.25,0.0275,12.2643994879736,0.276190476190476,12.1676051329096,0.126655050702393,0.9075,90.75,2,98.6711121034053,0.826901136944805,88.5,35.1607220862523,0,-3.03116565942764,-3.16282963752747,0.121218322864393
+5988,85643,442397.952,85743,442297.952,87,59,20.75,0.10375,26.9055953097625,0.362169312169312,14.142135623731,0.0881417989517831,0.67,67,2,97.0697083046633,0.825290680161456,61.5,18.6407942487233,0,-2.99067803223928,-3.08809232711792,0.148320431036479
+5989,85643,442297.952,85743,442197.952,88,59,22,0.044,10.6537808400263,0.233365384615385,12.0776872304636,0.00585136101261014,0.1875,18.75,2,91.2432647057661,0.906759906759907,17.75,10.5425435638428,0,-3.02163292467594,-3.1987087726593,0.15350684194616
+5990,85643,442197.952,85743,442097.952,89,59,13.25,0.0441666666666667,9.57147828459214,0.301851851851852,12.4535599249993,-0.0036279690043375,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,14.8545204162598,0,-3.11275380849838,-3.25757789611816,0.165326462341203
+5991,85643,442097.952,85743,441997.952,90,59,6.75,0.03375,17.515722580758,0.268452380952381,30,0.00193829350383567,0.055,5.5,2,77.9968052670883,0.844382197323374,5,15.0455170544711,5,-3.18169170618057,-3.27884960174561,0.135490873085742
+5992,85643,441997.952,85743,441897.952,91,59,0.25,0.0025,0,0,NA,0.0574486479355255,0.5825,58.25,1,98.3671391359956,0.972468855392663,58.25,51.8702053921417,14.1421356201172,-3.23896895349026,-3.28805184364319,0.0825721909721055
+5993,85643,441897.952,85743,441797.952,92,59,0.25,0.0025,0,0,NA,0.0859002840926405,0.565,56.5,3,96.0791843339928,0.847107325197259,52.25,55.6731277820283,5,-3.26444278160731,-3.28692364692688,0.0580704532877465
+5994,85643,441797.952,85743,441697.952,93,59,0,NA,NA,NA,NA,0.202866024039686,1,100,1,100,NA,100,50.8879779577255,10,-3.24385391175747,-3.27445840835571,0.0409152471743297
+5995,85643,441697.952,85743,441597.952,94,59,29,0.0725,10.412902684217,0.301817602040816,10,0.107510473613002,0.815,81.5,1,99.4331707829294,0.80663590419688,81.5,7.77582208949364,0,-3.20196072260539,-3.22366905212402,0.026826537545009
+5996,85643,441597.952,85743,441497.952,95,59,0,NA,NA,NA,NA,0.00603167437072443,0,0,0,NA,NA,0,NA,NA,-3.19291086494923,-3.21630597114563,0.0248378836291333
+5997,85643,441497.952,85743,441397.952,96,59,0,NA,NA,NA,NA,-0.0141924650653004,0,0,0,NA,NA,0,NA,NA,-3.21617162227631,-3.26966142654419,0.0439708532300761
+5998,85643,441397.952,85743,441297.952,97,59,5,0.00625,2.38301279379855,0.100694444444444,15.3201045911777,-0.048944318259928,0,0,0,NA,NA,0,NA,NA,-3.22940695285797,-3.30621314048767,0.0777422242879676
+5999,85643,441297.952,85743,441197.952,98,59,6.25,0.0125,5.37039333252884,0.161538461538462,29,-0.0203316122770048,0.1125,11.25,1,89.5714527894752,0.925871015567087,11.25,5.97547463311089,0,-3.18600652615229,-3.28812503814697,0.100155708418207
+6000,85643,441197.952,85743,441097.952,99,59,5.78947368421053,0.00916666666666667,2.0554369750691,0.148809523809524,19.9118183013984,0.0145609132119239,0.3925,39.25,1,96.8622433213934,0.959990855052583,39.25,15.0556235100813,0,-3.04866252839565,-3.18117594718933,0.113952342681456
+6001,85743,451097.952,85843,450997.952,0,60,30.75,0.15375,18.934806897259,0.486467236467236,46.0977222864644,-0.00415886250848416,0.1075,10.75,1,89.2106768070942,0.859943977591036,10.75,16.1211334494657,7.07106781005859,-3.57272630267673,-3.72965908050537,0.250446027225189
+6002,85743,450997.952,85843,450897.952,1,60,9.25,0.0185,6.53775108800108,0.175287356321839,18.7561755145384,0.00405485572311591,0.1175,11.75,2,88.0632470985481,0.815864022662889,11.25,8.89191225741772,0,-3.60557468732198,-3.79636359214783,0.261090824313036
+6003,85743,450897.952,85843,450797.952,2,60,6.5,0.00928571428571429,3.05866759457767,0.0901027077497666,22.1389212285637,0.0077404834920813,0.015,1.5,3,35.0877192982456,0.564902102973169,1,19.1164658864339,18.0277557373047,-3.7984799279107,-3.94331932067871,0.23140210786788
+6004,85743,450797.952,85843,450697.952,3,60,19.75,0.0151923076923077,5.35011335283177,0.191721704221704,11.4544100180733,-0.00391538610479074,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5,-3.94096932808558,-3.98280811309814,0.0923616995604542
+6005,85743,450697.952,85843,450597.952,4,60,1.25,0.003125,0.883883476483184,0.0208333333333333,28.9521868216601,0.00673300782946171,0,0,0,NA,NA,0,NA,NA,-3.93899162610372,-3.97052192687988,0.0643170476823251
+6006,85743,450597.952,85843,450497.952,5,60,17.5,0.0134615384615385,4.63058963310079,0.268627450980392,12.6511239334585,0.0214925919283269,0.0975,9.75,6,67.6406136608767,0.624973364585553,4.25,6.35970653631748,0,-3.81120002269745,-3.93298077583313,0.147038373124151
+6007,85743,450497.952,85843,450397.952,6,60,32.25,0.0403125,7.28639913420545,0.348691239316239,12.6021966348992,0.0195775348595998,0.27,27,1,95.1342058036908,0.831401475237092,27,3.37885307382654,0,-3.60456156730652,-3.7153697013855,0.18503626614293
+6008,85743,450397.952,85843,450297.952,7,60,63.25,0.158125,13.1916278096451,0.370567042606516,10,0.0327463945168233,0.35,35,3,93.3482647072994,0.813701923076923,29.75,2.37756031581334,0,-3.56300644079844,-3.83992123603821,0.266169025815078
+6009,85743,450297.952,85843,450197.952,8,60,37.25,0.124166666666667,12.2999466518876,0.453493265993266,15.7868932583326,0.0133296171810071,0.2775,27.75,3,92.3910362476397,0.896193771626298,26.25,7.64615906036652,0,-3.87801429960463,-4.01921939849854,0.247864299221593
+6010,85743,450197.952,85843,450097.952,9,60,44.5,0.2225,18.9101712321771,0.389204545454546,14.142135623731,-0.0302133344864706,0.0275,2.75,1,73.5251216233933,0.725792630676949,2.75,5.56483667547053,0,-4.03990491231283,-4.10103750228882,0.0985137797047679
+6011,85743,450097.952,85843,449997.952,10,60,20.75,0.0138333333333333,2.62514381761536,0.0957407407407407,12.2373669485438,-0.00753849766861634,0.0025,0.25,1,0,NA,0.25,5,5,-4.08065577348073,-4.08998966217041,0.0185090125959656
+6012,85743,449997.952,85843,449897.952,11,60,3.75,0.00340909090909091,0.717701773232874,0.0340909090909091,18.2944170105072,0.00240588546398612,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,7.55374590555827,5,-4.07568359375,-4.08024597167969,0.0105375614259433
+6013,85743,449897.952,85843,449797.952,12,60,14.5,0.0161111111111111,4.53392712556139,0.219638590203106,12.1912621722218,-0.0101727457773541,0,0,0,NA,NA,0,NA,NA,-4.07501872380575,-4.07940053939819,0.0103443679327856
+6014,85743,449797.952,85843,449697.952,13,60,4.75,0.00527777777777778,2.32536758968882,0.116666666666667,24.2692281260068,-0.000840806414216786,0,0,0,NA,NA,0,NA,NA,-4.04946857028537,-4.06660842895508,0.0360451892491505
+6015,85743,449697.952,85843,449597.952,14,60,21.5,0.0358333333333333,9.95843590469095,0.145590277777778,16.7159140002439,-0.0109651057522024,0,0,0,NA,NA,0,NA,NA,-3.93705719709396,-4.00996017456055,0.10371677739788
+6016,85743,449597.952,85843,449497.952,15,60,15.25,0.007625,2.31760920033818,0.126157407407407,12.8533387174778,0.00524334427116628,0.0275,2.75,3,56.7578274850337,0.657240788346187,2,4.12022503939542,0,-3.68291833665636,-3.81454682350159,0.197965143906337
+6017,85743,449497.952,85843,449397.952,16,60,17.75,0.0136538461538462,3.59739925458822,0.216346153846154,14.1809544587184,0.023984547714208,0.115,11.5,8,68.3278402307062,0.608865710560626,4.25,5.58490064869756,0,-3.36294901371002,-3.5473415851593,0.193977262123807
+6018,85743,449397.952,85843,449297.952,17,60,39.5,0.09875,12.0799508878491,0.365659435261708,11.1803398874989,0.0260831088048963,0.1575,15.75,5,77.6773036618974,0.654707310493661,7,2.47957465762184,0,-3.2173830933041,-3.37793231010437,0.223610058201902
+6019,85743,449297.952,85843,449197.952,18,60,43,0.143333333333333,17.9887443713125,0.656202233980012,10,0.035880954190834,0.405,40.5,3,94.2233869020886,0.859004004286278,33.5,3.50121752421061,0,-3.13858217000961,-3.37735939025879,0.369510715174666
+6020,85743,449197.952,85843,449097.952,19,60,40,0.0571428571428571,6.68282071227166,0.358263832840104,15.2209500657078,0.0536291011939466,0.6175,61.75,2,97.5131357486212,0.756670344905639,58.5,3.42155998631528,0,-2.72076556417677,-3.07280874252319,0.385288540718357
+6021,85743,449097.952,85843,448997.952,20,60,85,0.283333333333333,13.153085835857,0.344873062973953,10.3934466291663,0.0728483379134559,0.7275,72.75,1,99.0925222972574,0.812153028193818,72.75,0.446735395189003,0,-2.59142332606845,-2.7525954246521,0.33369620709697
+6022,85743,448997.952,85843,448897.952,21,60,53,0.53,31.2639809213173,0.840408805031447,NA,0.00108033639782661,0.075,7.5,1,86.0448225436784,0.779371207942636,7.5,0.833333333333333,0,-2.91671003897985,-4,0.775766411652126
+6023,85743,448897.952,85843,448797.952,22,60,0,NA,NA,NA,NA,-0.0648537956457585,0,0,0,NA,NA,0,NA,NA,-4,-4,0.120659760901543
+6024,85743,448797.952,85843,448697.952,23,60,0,NA,NA,NA,NA,-0.0604672934953123,0,0,0,NA,NA,0,NA,NA,-4,-4,1.9878466759147e-16
+6025,85743,448697.952,85843,448597.952,24,60,0,NA,NA,NA,NA,-0.044927274575457,0,0,0,NA,NA,0,NA,NA,-4,-4,1.9878466759147e-16
+6026,85743,448597.952,85843,448497.952,25,60,31,0.31,27.4775584521671,0.756720430107527,NA,0.0128008273144405,0.26,26,3,91.5301788953077,0.768752709929181,22.25,7.45586842757005,0,-3.03451843063037,-4,1.27231599539473
+6027,85743,448497.952,85843,448397.952,26,60,54,0.0675,5.98070520287157,0.239718614718615,12.3258433448365,0.015575448552263,0.165,16.5,2,87.2882480818771,0.916688362405623,11,0.454545454545455,0,-1.07629574007458,-1.58501243591309,0.602665566456451
+6028,85743,448397.952,85843,448297.952,27,60,21.25,0.0141666666666667,3.81832668994092,0.189610651023694,13.0331998873159,-0.0090122015340603,0.035,3.5,4,49.299249134574,0.481865284974093,1,4.37237167358398,0,-0.388604551553726,-0.684872567653656,0.279165770731256
+6029,85743,448297.952,85843,448197.952,28,60,23.25,0.01453125,4.18888279198467,0.209572140822141,11.2710554798803,0.00618282072311558,0.0375,3.75,5,48.3436292159939,0.527744982290437,1.75,9.50382258097331,5,-0.0853640532328023,-0.146300256252289,0.142586732939269
+6030,85743,448197.952,85843,448097.952,29,60,39.75,0.19875,18.6103942617781,0.560740740740741,15,0.00590032564752619,0.12,12,3,80.6681610414211,0.764412416851441,8,1.69194173812866,0,-0.329606567819913,-0.749804615974426,0.482762012641942
+6031,85743,448097.952,85843,447997.952,30,60,37.5,0.375,28.6362689780725,0.796666666666667,NA,0.0078786561738525,0.1025,10.25,3,78.446983922493,0.660893787089742,5.25,1.93735969357374,0,-0.725074801180098,-0.849782407283783,0.292105579860135
+6032,85743,447997.952,85843,447897.952,31,60,92.5,0.4625,22.5110491207218,0.726140595903166,10,0.0488666975562228,0.4575,45.75,3,94.1367401400925,0.678237395358983,35,0.541760303935067,0,-0.109301207794083,-0.473217219114304,0.578179522077639
+6033,85743,447897.952,85843,447797.952,32,60,78.25,0.7825,38.4869796978402,0.813631522896699,NA,0.0740390451613348,0.8425,84.25,1,99.5291083083911,0.730881363534425,84.25,0.885116531870132,0,0.171815308742225,-0.0480547696352005,0.242055068102448
+6034,85743,447797.952,85843,447697.952,33,60,69.5,0.695,34.9273152942651,0.781774580335731,NA,0.0510818573558936,0.5,50,2,97.2719757508955,0.84366576819407,49,0.825,0,0.399287328537967,0.0259506218135357,0.62086076176629
+6035,85743,447697.952,85843,447597.952,34,60,24.25,0.0346428571428571,9.1711292893948,0.340030721966206,14.819809720124,-0.0116974110720003,0,0,0,NA,NA,0,NA,NA,-0.140595741569996,-0.433347314596176,0.476410454414812
+6036,85743,447597.952,85843,447497.952,35,60,36.25,0.0604166666666667,12.6740512368679,0.535762849200983,10.8870792518717,-0.0295132922330231,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-0.450189295742247,-0.503231763839722,0.140535940926327
+6037,85743,447497.952,85843,447397.952,36,60,13,0.01625,6.26350629634429,0.249041603821016,14.2493978638762,0.041725180465728,0.46,46,2,96.4961462516724,0.836601307189542,44,7.70025763304337,0,-0.441668751339118,-0.531272411346436,0.157374008603757
+6038,85743,447397.952,85843,447297.952,37,60,21.25,0.0708333333333333,14.3166819161331,0.573968253968254,33.1658248943528,0.0331798411257114,0.34,34,2,92.5072565504053,0.865591397849462,17.75,5.312696723377,0,0.0806056811577744,-0.217718094587326,0.455703260113024
+6039,85743,447297.952,85843,447197.952,38,60,24,0.06,13.0593211866314,0.338629612257661,20.0525238207836,-0.0151009368571431,0.015,1.5,1,62.2896536353828,1,1.5,6.37523460388184,0,0.447818160057068,0.286116749048233,0.187339119526197
+6040,85743,447197.952,85843,447097.952,39,60,32,0.0533333333333333,8.6687850832031,0.291388060600584,17.2568366104161,0.00514517253133818,0.0525,5.25,2,75.8036735892983,0.83509234828496,4.5,5.98309289841425,0,0.459462861220042,0.353935420513153,0.120314561426399
+6041,85743,447097.952,85843,446997.952,40,60,13,0.0185714285714286,3.74630842845668,0.186507936507937,18.6910163047535,0.00453429269310845,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859,0.196287756164869,0.0177997499704361,0.199043472658504
+6042,85743,446997.952,85843,446897.952,41,60,19.75,0.01975,5.429528283531,0.259848484848485,16.5388436152318,0.00616343205907569,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,6,0,-0.0330037243871225,-0.110665209591389,0.128340046130257
+6043,85743,446897.952,85843,446797.952,42,60,11.5,0.014375,5.3363962648156,0.254312865497076,21.1193087463641,0.0155780012843331,0.1025,10.25,5,75.3108552121514,0.725485446691696,6,6.1713442453524,0,-0.109983826677005,-0.138903245329857,0.0569973294579181
+6044,85743,446797.952,85843,446697.952,43,60,13,0.0216666666666667,6.60452576769507,0.345882066276803,11.8633899812498,0.00395245477455546,0.0275,2.75,3,52.3625639110009,0.588688946015424,1.5,1.36363636363636,0,0.0138060905349751,-0.088110625743866,0.17001312035477
+6045,85743,446697.952,85843,446597.952,44,60,13.25,0.0220833333333333,6.18672763098093,0.337834168755221,21.9152714381653,0.0107433771860178,0.075,7.5,2,79.9034757320981,0.801434087148373,5.75,11.7471871058146,0,0.322269456254111,0.103356927633286,0.28993301746686
+6046,85743,446597.952,85843,446497.952,45,60,69.75,0.34875,19.31447986295,0.393285371702638,10,0.0220170818832867,0.1675,16.75,3,88.2226041900521,0.74333307666641,13.75,2.54261700075064,0,0.573953362802664,0.413658827543259,0.131356535654464
+6047,85743,446497.952,85843,446397.952,46,60,53.5,0.0891666666666667,7.00265244778862,0.17914653784219,10.7868932583326,0.0234303645042321,0.265,26.5,5,83.9171905648823,0.786301955337109,11,3.09501280874576,0,0.524343315098021,0.409749150276184,0.252129850319021
+6048,85743,446397.952,85843,446297.952,47,60,31.25,0.0347222222222222,4.47134457451539,0.242146139655718,13.8250992323185,0.00509700435951345,0.0675,6.75,5,67.4667687800166,0.65085105056425,4,3.56051346107765,0,-0.312618004158139,-0.823286116123199,0.71400280267801
+6049,85743,446297.952,85843,446197.952,48,60,43.75,0.0486111111111111,6.64221287304998,0.24353547686881,13.3297706768252,0.034711734718403,0.24,24,3,92.3007718386838,0.793451652386781,21.5,2.8508692185084,0,-0.508790355796615,-0.837571859359741,0.606532328708936
+6050,85743,446197.952,85843,446097.952,49,60,45,0.15,13.1208824196363,0.518628747795414,27.3385403957214,0.0112035063612166,0.0425,4.25,3,64.6995737630074,0.70757180156658,2.25,5.26069102567785,0,0.389514439661677,-0.341358006000519,0.641711319167308
+6051,85743,446097.952,85843,445997.952,50,60,63.25,0.1265,15.6648737718089,0.600897807147807,10,0.0253660313129876,0.115,11.5,6,71.3883842598405,0.681297986382732,3.5,1.30434782608696,0,1.1259291238255,0.76035088300705,0.541684818637414
+6052,85743,445997.952,85843,445897.952,51,60,40,0.0444444444444444,8.40492315425698,0.375515093404553,11.8879697987045,-0.0149564346535772,0.0975,9.75,4,73.2266637638044,0.693160025569998,3.75,2.77651977539062,0,0.947620145976543,0.490213483572006,0.52062780862682
+6053,85743,445897.952,85843,445797.952,52,60,27.5,0.0392857142857143,6.39808946659673,0.257421150278293,20.0120542223285,0.0115423868427388,0.1075,10.75,5,72.4418472432696,0.719887955182073,5.75,1.42279860030773,0,0.361083820462227,0.208500400185585,0.211779328245576
+6054,85743,445797.952,85843,445697.952,53,60,84.25,0.42125,21.7196893825303,0.727867462774583,10,-0.0792524745363335,0.1575,15.75,3,85.835408210129,0.838144051793903,11.5,2.47107642037528,0,-0.0897096442058682,-0.418683141469955,0.385275272407983
+6055,85743,445697.952,85843,445597.952,54,60,97.75,0.9775,38.27162935455,0.916027280477408,NA,-0.0555615774139915,0.2425,24.25,2,92.9976302739402,0.878608550510223,23.25,0.463917525773196,0,-0.317335877153609,-0.594298899173737,0.363007309663974
+6056,85743,445597.952,85843,445497.952,55,60,64.75,0.32375,26.0889703262559,0.807744333674165,25,0.0461372065613978,0.485,48.5,5,91.1338923024029,0.741100323624596,26.5,0.908315481598844,0,-0.00262074783030483,-0.108580589294434,0.284197912470516
+6057,85743,445497.952,85843,445397.952,56,60,83.75,0.1046875,5.7238753116761,0.210050585729499,10,0.0619030024611857,0.6375,63.75,1,98.6713232517353,0.919203578127254,63.75,0.137254901960784,0,0.367709690627332,-0.0962968245148659,0.732322927172811
+6058,85743,445397.952,85843,445297.952,57,60,44.75,0.0406818181818182,7.65126350107345,0.394209807793399,10.7764563329543,0.0451956758808956,0.44,44,2,94.2365602436001,0.818681318681319,27.75,3.28493213653564,0,-0.495079712735282,-1.08110046386719,1.02383478915396
+6059,85743,445297.952,85843,445197.952,58,60,43.25,0.0480555555555556,7.44439137647197,0.353658693415638,12.73322050053,0.0295909373083305,0.3725,37.25,3,93.2627208782167,0.789851582680268,30.75,1.65078809597348,0,-1.34154187639554,-1.71338605880737,0.330476547170142
+6060,85743,445197.952,85843,445097.952,59,60,44.5,0.148333333333333,15.2900857686273,0.64962814962815,10,0.0128630007611628,0.1225,12.25,5,72.856894340365,0.647266313932981,3.75,5.43303695990115,0,-1.75467295116848,-2.04315447807312,0.435273850837005
+6061,85743,445097.952,85843,444997.952,60,60,22.75,0.2275,21.8173555974282,0.690476190476191,NA,0.00812938642269728,0.0975,9.75,2,81.9928397555265,0.914766673769444,7,27.7833519960061,14.1421356201172,-1.98843966921171,-2.21959471702576,0.424808162141957
+6062,85743,444997.952,85843,444897.952,61,60,47.5,0.475,30.343795006994,0.737719298245614,NA,-0.00111443489859084,0.1925,19.25,4,90.2546465550749,0.808778000364232,18,7.80058806283133,0,-2.13520688480801,-2.22662615776062,0.190145227972083
+6063,85743,444897.952,85843,444797.952,62,60,31.75,0.0396875,8.77026105753393,0.471147486772487,10.1475424859374,-0.00979354742648866,0.065,6.5,2,78.8073067298194,0.895656710577801,5.75,2.75010827871469,0,-2.12126859029134,-2.16220450401306,0.0595862291136101
+6064,85743,444797.952,85843,444697.952,63,60,37.75,0.03775,7.85221137778025,0.256706349206349,12.3215903137065,0.0214616785626004,0.2,20,2,90.6075317072378,0.929577464788732,18.5,0.3125,0,-2.15468480851915,-2.21069288253784,0.0989951529817426
+6065,85743,444697.952,85843,444597.952,64,60,18.5,0.0185,4.66312374985558,0.152155172413793,12.9777818461717,0.00273471734028135,0.06,6,3,70.2447992008092,0.804031354983203,3.75,6.21745141347249,0,-2.30748130877813,-2.37224674224854,0.101239595477402
+6066,85743,444597.952,85843,444497.952,65,60,25.25,0.0280555555555556,7.44792918458547,0.304204204204204,15.8086735748848,0.0169374580745352,0.2125,21.25,4,86.3947332733341,0.697256385998108,10.75,5.63665273329791,0,-2.38994426197476,-2.41546869277954,0.0906652854522095
+6067,85743,444497.952,85843,444397.952,66,60,37.25,0.093125,12.6282947560082,0.352045348293595,10,0.00865338157587757,0.05,5,1,81.7256002368443,0.966044142614601,5,0,0,-2.34935000207689,-2.4172158241272,0.166711169640194
+6068,85743,444397.952,85843,444297.952,67,60,30.75,0.0615,10.4913018893887,0.448500788320513,21.7792717443648,0.0245027127271169,0.1825,18.25,3,88.5987718187896,0.799311926605505,15.5,1.77790529433995,0,-2.09023913741112,-2.34598755836487,0.383633324237034
+6069,85743,444297.952,85843,444197.952,68,60,37.75,0.125833333333333,10.7442997988975,0.483747733747734,26.8046042171637,-0.00179419964373665,0.07,7,2,79.2732248959665,0.7610513739546,5.5,1.21936198643276,0,-1.50543275144365,-1.92848134040833,0.711499251705957
+6070,85743,444197.952,85843,444097.952,69,60,16.75,0.0335,5.38110842032971,0.222777777777778,23.8567143739093,0.00287444176151439,0.0675,6.75,2,77.5569125005367,0.800486314608143,5,2.08197049741392,0,-0.53957918100059,-1.42562162876129,0.730211462831022
+6071,85743,444097.952,85843,443997.952,70,60,14.75,0.0491666666666667,11.155076650237,0.499206349206349,32.7541264041642,-0.013171887369499,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,3.15300968715123,0,-0.314852647017688,-0.783556461334229,0.721935219171747
+6072,85743,443997.952,85843,443897.952,71,60,52,0.26,17.1032519360087,0.597619047619048,11.1803398874989,0.00915796890305501,0.2475,24.75,2,93.6288382921075,0.828287730038449,24,1.09378051757812,0,-0.805383190512657,-1.45193362236023,0.682915484136348
+6073,85743,443897.952,85843,443797.952,72,60,35.5,0.08875,12.6521499969327,0.301432291666667,12.0710678118655,0.0339286932302639,0.3975,39.75,3,93.3129385748168,0.801057238674473,34,1.95171368197075,0,-1.42563166883257,-1.78414833545685,0.650676792363931
+6074,85743,443797.952,85843,443697.952,73,60,52.5,0.175,13.7639489953832,0.311325818572195,12.4535599249993,0.0570903889855253,0.54,54,3,96.2073594553567,0.740428293316029,48.75,2.48725165261163,0,-2.07806448141734,-2.51969337463379,0.694311114923824
+6075,85743,443697.952,85843,443597.952,74,60,61.5,0.205,13.1275738450345,0.264571948998179,12.4535599249993,0.0845865230582422,0.795,79.5,1,99.3602931148206,0.886178861788618,79.5,1.38949105124803,0,-2.41625589794583,-2.82449746131897,0.640477537408437
+6076,85743,443597.952,85843,443497.952,75,60,92.5,0.4625,29.0101474504889,0.88944099378882,10,0.0350166704208823,0.3875,38.75,2,94.34873612343,0.851056211958467,32.5,0,0,-2.76840060949326,-3.02869439125061,0.403826046370068
+6077,85743,443497.952,85843,443397.952,76,60,90.75,0.45375,28.8386423698393,0.867950336700337,10,0.0369902002116214,0.46,46,1,97.5030549392159,0.874727668845316,46,0.0543478260869565,0,-3.10194767846002,-3.1904764175415,0.170475217711715
+6078,85743,443397.952,85843,443297.952,77,60,64.5,0.215,22.0310666267739,0.779404389343605,10,-0.000570555329904892,0.2175,21.75,3,88.1592577635421,0.793878182005565,15,1.27831268310547,0,-3.24796133571201,-3.2691764831543,0.0440257109570418
+6079,85743,443297.952,85843,443197.952,78,60,77.25,0.7725,35.7196041936301,0.873247033441208,NA,0.0545016717218095,0.61,61,3,96.7753062213576,0.797570850202429,55,0.874115865738666,0,-3.20365514357885,-3.25971627235413,0.0742272933665469
+6080,85743,443197.952,85843,443097.952,79,60,91,0.91,37.5841438836285,0.884157509157509,NA,0.089580230305437,0.905,90.5,2,99.1073525340569,0.600461006530926,89,0.550116396740655,0,-3.0491169028812,-3.1160945892334,0.14076670935188
+6081,85743,443097.952,85843,442997.952,80,60,97.25,0.9725,38.0395727012387,0.911739502999143,NA,0.0659860428725369,0.7875,78.75,2,98.3833215774562,0.865319865319865,77,0.158730158730159,0,-3.02523841460546,-3.14405179023743,0.204159128975108
+6082,85743,442997.952,85843,442897.952,81,60,20,0.1,15.9002853948853,0.652506697282817,22.3606797749979,-0.0949228507181397,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-3.03706934716966,-3.17305898666382,0.217190866136116
+6083,85743,442897.952,85843,442797.952,82,60,0,NA,NA,NA,NA,-0.102699477979913,0.0425,4.25,1,79.7330921014386,0.87467362924282,4.25,129.498962402344,114.12712097168,-3.20619225502014,-3.25671148300171,0.0627527994922205
+6084,85743,442797.952,85843,442697.952,83,60,0,NA,NA,NA,NA,0.0230242758531858,0.3375,33.75,2,94.6026690563703,0.926369075011505,32.5,162.039088948568,127.475494384766,-3.27998540136549,-3.30918741226196,0.0362032312760973
+6085,85743,442697.952,85843,442597.952,84,60,0,NA,NA,NA,NA,0.166513797975458,0.93,93,1,99.8055173961557,0.979736575481256,93,74.6296613344582,20,-3.29824074109395,-3.3274462223053,0.0505050176820741
+6086,85743,442597.952,85843,442497.952,85,60,0.5,0.0025,0,0,71.5891053163818,0.182777206972241,1,100,1,100,NA,100,36.7552628517151,0,-3.26156369845072,-3.31033754348755,0.0710523953693797
+6087,85743,442497.952,85843,442397.952,86,60,0,NA,NA,NA,NA,0.156745953895152,1,100,1,100,NA,100,103.789458789825,65,-3.20008864005407,-3.25467562675476,0.0790391473729646
+6088,85743,442397.952,85843,442297.952,87,60,0,NA,NA,NA,NA,0.141215678919107,1,100,1,100,NA,100,94.4607888507843,35.355339050293,-3.14216796557109,-3.19732618331909,0.109416673922859
+6089,85743,442297.952,85843,442197.952,88,60,0,NA,NA,NA,NA,0.0958516368071332,0.7175,71.75,1,99.0496701463057,0.980334316617502,71.75,65.2609397542601,10,-3.08479422330856,-3.17771816253662,0.14406017889371
+6090,85743,442197.952,85843,442097.952,89,60,5.75,0.014375,7.40551089944961,0.227092352092352,11.920788821557,0.0291514937531156,0.3225,32.25,1,95.995253617625,0.905786291905472,32.25,30.5125283973162,0,-3.0083196428087,-3.1168909072876,0.127495816363784
+6091,85743,442097.952,85843,441997.952,90,60,11.75,0.0195833333333333,9.50198032490877,0.278908591408591,12.3215759691358,0.0329013250281423,0.3275,32.75,1,96.0662730877785,0.950226314725234,32.75,21.9248958471167,0,-2.95792841911316,-3.03045988082886,0.12221460798143
+6092,85743,441997.952,85843,441897.952,91,60,9.5,0.02375,12.6314238766536,0.250412087912088,11.1803398874989,0.00961250192998705,0.1175,11.75,2,88.3714095114287,0.90084985835694,11.5,41.321376475882,20,-3.00033462047577,-3.14094758033752,0.135346331195012
+6093,85743,441897.952,85843,441797.952,92,60,5,0.0166666666666667,8.82396765967507,0.218803418803419,12.4535599249993,0.0919538347221896,0.6225,62.25,1,98.5923763102686,0.960208055026575,62.25,49.4711775032871,5,-3.0967763264974,-3.18972539901733,0.150052314027528
+6094,85743,441797.952,85843,441697.952,93,60,0,NA,NA,NA,NA,0.190397176556289,1,100,1,100,NA,100,47.4437326478958,7.07106781005859,-3.1497500538826,-3.20989346504211,0.0968010323955074
+6095,85743,441697.952,85843,441597.952,94,60,15.75,0.039375,7.13935443792387,0.367888064316636,12.1352549156242,0.091278496490977,0.6925,69.25,1,98.9385077039357,0.974984365228268,69.25,19.4253973702661,0,-3.16392585966322,-3.19139051437378,0.0394624370832838
+6096,85743,441597.952,85843,441497.952,95,60,0,NA,NA,NA,NA,0.00272346209603711,0,0,0,NA,NA,0,NA,NA,-3.21138377984365,-3.23701047897339,0.0339199749568724
+6097,85743,441497.952,85843,441397.952,96,60,0,NA,NA,NA,NA,0.0107621699252422,0.0825,8.25,2,80.7534789434012,0.798163285901705,6,128.048666058165,104.40306854248,-3.21495106485155,-3.24524068832397,0.0308693085941283
+6098,85743,441397.952,85843,441297.952,97,60,0,NA,NA,NA,NA,-0.0125711207757558,0.0175,1.75,1,65.4774238937655,1,1.75,132.896711077009,128.160064697266,-3.1735737323761,-3.21060037612915,0.0367547325402042
+6099,85743,441297.952,85843,441197.952,98,60,2.5,0.025,13.9509158163466,0.233333333333333,NA,-0.0182463589586587,0,0,0,NA,NA,0,NA,NA,-3.1280616124471,-3.16688466072083,0.0549225730323978
+6100,85743,441197.952,85843,441097.952,99,60,7.10526315789474,0.0084375,2.74895440506588,0.150267094017094,16.7695684738231,-0.0194079994675849,0.0875,8.75,1,87.4704367425575,0.905526688710439,8.75,15.9592632293701,0,-2.9851363102595,-3.08951711654663,0.114031676378075
+6101,85843,451097.952,85943,450997.952,0,61,30.75,0.1025,9.97549942114456,0.322595704948646,12.1676051329096,-0.00910242428031779,0.09,9,2,80.4523936425773,0.761904761904762,4.5,21.3361829121908,0,-3.21092420816422,-3.34137177467346,0.131490393250605
+6102,85843,450997.952,85943,450897.952,1,61,20,0.0666666666666667,10.3487407672463,0.43578431372549,22.8651866629849,0.014876638499918,0.1925,19.25,1,93.2673077410907,0.781460571844837,19.25,20.7432494473148,5,-3.26615722477436,-3.42917585372925,0.14248194690609
+6103,85843,450897.952,85943,450797.952,2,61,7.25,0.0120833333333333,2.66881948512316,0.0787037037037037,15.1184463531091,0.0121537901350166,0.1125,11.25,1,89.5714527894752,0.911045218680504,11.25,24.9870776706272,7.07106781005859,-3.43058423201243,-3.64540982246399,0.22179667970572
+6104,85843,450797.952,85943,450697.952,3,61,13.5,0.0192857142857143,4.51783537909213,0.203373015873016,13.8632063652884,0.0174323484752676,0.04,4,3,63.4534875697327,0.739583333333333,2.25,12.257795214653,0,-3.73788446187973,-3.93174576759338,0.220853384895045
+6105,85843,450697.952,85943,450597.952,4,61,35,0.0388888888888889,3.95347623503341,0.130271216097988,12.1676051329096,0.0102612170977591,0.0425,4.25,3,71.3822151414983,0.74934725848564,3.75,0.710062812356388,0,-3.97390766938527,-4.00772094726562,0.0724767540953826
+6106,85843,450597.952,85943,450497.952,5,61,20.25,0.0135,3.98567220742171,0.255639730639731,12.1155048202665,0.0138344642775519,0,0,0,NA,NA,0,NA,NA,-3.88865661621094,-4.01294946670532,0.160715897922055
+6107,85843,450497.952,85943,450397.952,6,61,22.25,0.0202272727272727,5.01311835440417,0.258428155068471,11.8432726759821,-0.00401135582841107,0,0,0,NA,NA,0,NA,NA,-3.50865683952967,-3.73905944824219,0.316661191067308
+6108,85843,450397.952,85943,450297.952,7,61,43.25,0.144166666666667,9.82046125229382,0.278102664067576,26.4991582276861,0.020389351100057,0.4225,42.25,1,97.165991902834,0.911199911199911,42.25,2.15868229837813,0,-3.29865847527981,-3.50706624984741,0.290828467726367
+6109,85843,450297.952,85943,450197.952,8,61,42.5,0.0607142857142857,7.84552735498144,0.331640751538711,13.6129159432367,0.013221643156794,0.1625,16.25,3,86.0687827471272,0.735834103817197,12.5,0.538461538461538,0,-3.4909331202507,-3.75722002983093,0.328571335859784
+6110,85843,450197.952,85943,450097.952,9,61,36,0.045,8.87807318319893,0.333776882319719,11.6687789860687,-0.026831977316433,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0,-3.86944198608398,-4.00478744506836,0.216418275722458
+6111,85843,450097.952,85943,449997.952,10,61,42.25,0.21125,20.5906949124536,0.67953667953668,15.8113883008419,-0.0294193368063861,0,0,0,NA,NA,0,NA,NA,-4.0596489161253,-4.10518264770508,0.0598813048242565
+6112,85843,449997.952,85943,449897.952,11,61,15.5,0.0155,3.27716226812999,0.180375375375375,15.2315991905188,-0.00617718744542799,0,0,0,NA,NA,0,NA,NA,-4.10767980416616,-4.12748193740845,0.0226494586764669
+6113,85843,449897.952,85943,449797.952,12,61,4.75,0.00395833333333333,1.57387736097177,0.0694444444444444,16.5018347376813,0.00209247356472702,0,0,0,NA,NA,0,NA,NA,-4.10554420948029,-4.12770986557007,0.0258651576865512
+6114,85843,449797.952,85943,449697.952,13,61,12.75,0.00980769230769231,3.07128118623692,0.0879487179487179,15.6609011790882,-0.00717664820642312,0,0,0,NA,NA,0,NA,NA,-4.06151751677195,-4.10440635681152,0.0536803650250445
+6115,85843,449697.952,85943,449597.952,14,61,22,0.022,5.67093654927131,0.151598981619473,13.4251931326045,-0.000553439138420799,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-3.91145032644272,-4.02673530578613,0.131349705579754
+6116,85843,449597.952,85943,449497.952,15,61,17.5,0.0145833333333333,3.55022359813323,0.123456790123457,15.7535382188301,0.00731035640067603,0.05,5,3,64.8416808841178,0.694397283531409,2.25,3.91421356201172,0,-3.63257131973902,-3.77535843849182,0.195997973493675
+6117,85843,449497.952,85943,449397.952,16,61,30.25,0.03025,5.09820445195279,0.201278921055691,11.7380164340659,0.0358302276344693,0.3275,32.75,3,92.2534590406087,0.738688152307477,25.75,5.61764401151934,0,-3.27934330701828,-3.49652695655823,0.218062373060054
+6118,85843,449397.952,85943,449297.952,17,61,50,0.05,5.5812500806757,0.239435394040657,12.5341960076891,0.051182655767916,0.4425,44.25,3,93.6870749561859,0.758642914935341,32.5,2.36362129685569,0,-2.92906010150909,-3.07786846160889,0.20867162372984
+6119,85843,449297.952,85943,449197.952,18,61,35.75,0.0595833333333333,9.00487086315331,0.377449360115264,10.7868932583326,0.019946062872923,0.1925,19.25,6,81.6326741454906,0.781460571844837,9,1.47498549424209,0,-2.57384786009789,-2.87079954147339,0.342839288768513
+6120,85843,449197.952,85943,449097.952,19,61,64.5,0.215,11.4920520989245,0.268880208333333,14.4280904158206,0.0440232974043647,0.53,53,2,97.1995909601925,0.864996219894157,51.5,1.36159949932458,0,-2.06483258803686,-2.54882574081421,0.751988681096546
+6121,85843,449097.952,85943,448997.952,20,61,80.75,0.40375,19.4186667382908,0.647727272727273,25,0.0473806386295473,0.6075,60.75,1,98.5105231673728,0.803585959201998,60.75,0.461197809917937,0,-1.23765595257282,-2.16428804397583,0.856227492529043
+6122,85843,448997.952,85943,448897.952,21,61,35.25,0.3525,28.9746629405615,0.783687943262411,NA,-0.00106921780850826,0.0375,3.75,2,66.8904594781932,0.669421487603306,2,0.804737854003906,0,-2.42848604917526,-4,1.44159590315068
+6123,85843,448897.952,85943,448797.952,22,61,0,NA,NA,NA,NA,-0.0679357977537438,0,0,0,NA,NA,0,NA,NA,-4,-4,1.9878466759147e-16
+6124,85843,448797.952,85943,448697.952,23,61,0,NA,NA,NA,NA,-0.0898716363683343,0,0,0,NA,NA,0,NA,NA,-4,-4,1.9878466759147e-16
+6125,85843,448697.952,85943,448597.952,24,61,0,NA,NA,NA,NA,-0.0650421622907743,0,0,0,NA,NA,0,NA,NA,-4,-4,1.9878466759147e-16
+6126,85843,448597.952,85943,448497.952,25,61,14.5,0.145,16.4532724708609,0.78448275862069,NA,-0.0301794108409376,0.0225,2.25,1,70.1754385964912,1,2.25,0,0,-3.63830925524235,-4,0.883274995901011
+6127,85843,448497.952,85943,448397.952,26,61,68,0.226666666666667,11.428671809944,0.285390946502058,11.1803398874989,0.0254852191188547,0.2475,24.75,3,91.467681381592,0.820821979170555,21.75,0.727990583939986,0,-1.07695640126864,-2.809250831604,1.51619026084838
+6128,85843,448397.952,85943,448297.952,27,61,39,0.0354545454545455,7.18922689384099,0.248758930771126,10.9444032865743,0.0180468573871076,0.1275,12.75,3,82.7955421768717,0.881434640845766,10,1.41315819235409,0,-0.319207738270052,-0.590974986553192,0.295285676631689
+6129,85843,448297.952,85943,448197.952,28,61,52.75,0.131875,14.5525851357568,0.470748081841432,12.7028470752105,0.00428838406580326,0.065,6.5,4,65.6776994365871,0.634798487022303,2.75,1.73076923076923,0,-0.293297880639633,-0.782125651836395,0.372636985174873
+6130,85843,448197.952,85943,448097.952,29,61,15.25,0.1525,18.4844784588314,0.756830601092896,NA,-0.00255616652701633,0.0325,3.25,2,66.0668178142144,0.770312948607522,2.5,1.53846153846154,0,-0.818490909878165,-1.31844782829285,0.531603020017215
+6131,85843,448097.952,85943,447997.952,30,61,0.5,0.0025,0,0,29.1547594742265,-0.0131310240272433,0.05,5,2,78.5400859266239,0.762308998302207,4.75,10.0048090934753,0,-1.15513987839222,-1.3769998550415,0.290781273841783
+6132,85843,447997.952,85943,447897.952,31,61,40.5,0.10125,8.91365883679006,0.368923611111111,16.25,-0.000282550377110056,0.22,22,3,89.0794612040256,0.828515433610975,14.5,5.13506516543302,0,-0.859046598275503,-1.26389467716217,0.568371931834729
+6133,85843,447897.952,85943,447797.952,32,61,82.25,0.8225,36.9528045141601,0.850557244174265,NA,0.0534230424039561,0.625,62.5,1,98.6057312417508,0.925925925925926,62.5,0.834426986694336,0,0.319254951202311,-0.805189967155457,0.81152337195508
+6134,85843,447797.952,85943,447697.952,33,61,21.25,0.10625,11.4276738117809,0.386904761904762,10,0.0133226810923291,0.1525,15.25,1,91.785591586011,0.910947848833973,15.25,0.327868852459016,0,1.17770880460739,0.584071099758148,0.480069328793989
+6135,85843,447697.952,85943,447597.952,34,61,2.5,0.00833333333333333,3.90758998430896,0.123015873015873,50.2368927062182,-0.0145222714059082,0,0,0,NA,NA,0,NA,NA,1.0381316319108,-0.0164607018232346,0.792535091071979
+6136,85843,447597.952,85943,447497.952,35,61,20.75,0.0259375,6.8342821161382,0.299018780926676,15.564923125789,-0.0124757395146662,0,0,0,NA,NA,0,NA,NA,0.237220543747147,-0.390218496322632,0.933388732452498
+6137,85843,447497.952,85943,447397.952,36,61,17.25,0.0215625,7.47242537413226,0.331341911764706,11.25,-0.00498710313800984,0.0525,5.25,4,62.0559142467603,0.604221635883905,2,11.0836727505638,0,-0.213202300714329,-0.626671612262726,0.573355226252177
+6138,85843,447397.952,85943,447297.952,37,61,23.25,0.03875,5.05786967740509,0.086489898989899,11.2267799624997,0.02147216292542,0.1725,17.25,4,86.0689814858851,0.720356545404609,13,6.15679168701172,0,-0.110502375173382,-0.360527068376541,0.426614113657776
+6139,85843,447297.952,85943,447197.952,38,61,17.75,0.044375,9.80051393599383,0.399977438020916,22.898892438868,-0.00668344418380002,0.0375,3.75,3,59.1088832689987,0.574970484061393,1.5,3.55009384155273,0,0.40727737150155,-0.0445708483457565,0.482842470352699
+6140,85843,447197.952,85943,447097.952,39,61,37.75,0.3775,35.6650726040066,0.682119205298013,NA,0.0115088995858241,0.0625,6.25,4,64.9723667340588,0.653333333333333,3,1.28284271240234,0,0.341556852062543,0.13276894390583,0.164351940767546
+6141,85843,447097.952,85943,446997.952,40,61,20.75,0.0230555555555556,5.73912542012168,0.168447293447293,11.1827723358289,0.01454983773756,0.0725,7.25,6,59.6243235574025,0.541205482594483,2,3.58149982320851,0,0.322856357321143,0.209117516875267,0.141446057114426
+6142,85843,446997.952,85943,446897.952,41,61,7.75,0.00704545454545455,2.33852423850054,0.137247474747475,22.3500567572486,0.0121728881402316,0.075,7.5,5,67.8170359206013,0.691119691119691,4.25,6.93428516387939,0,0.102223223075271,-0.0179038625210524,0.138038308863125
+6143,85843,446897.952,85943,446797.952,42,61,17,0.0425,13.3078693499731,0.243734335839599,10.5901699437495,0.0222269461816268,0.1475,14.75,6,74.9317797983118,0.689494566154908,6.75,5.43912354162184,0,-0.00987076346063986,-0.080396980047226,0.113386356017891
+6144,85843,446797.952,85943,446697.952,43,61,1.25,0.00416666666666667,1.43848683993192,0.0555555555555556,69.1589654368046,-0.0220942283766954,0.0475,4.75,6,48.2419854481387,0.493166802425559,1.75,23.8322169655248,10,0.141305548221377,-0.000482101866509765,0.223183820325763
+6145,85843,446697.952,85943,446597.952,44,61,47,0.156666666666667,17.8500816929646,0.611883315214578,14.4280904158206,0.0261145515000317,0.21,21,4,87.1066255417716,0.762127261914876,15,3.55230753762381,0,0.523940794169903,0.340786963701248,0.285443112669568
+6146,85843,446597.952,85943,446497.952,45,61,63.75,0.1275,8.60184707968715,0.284702627939142,15.3342081765456,0.0279175883438438,0.18,18,3,84.5845228107319,0.779143460725946,8,3.90680419074164,0,0.663788011297584,0.458284169435501,0.254294851286519
+6147,85843,446497.952,85943,446397.952,46,61,43,0.215,17.9494330957709,0.333820662768031,14.142135623731,-0.0130843308230396,0.215,21.5,1,93.912339662796,0.866783231339245,21.5,1.55979227465253,0,0.0379872640284399,-0.684510707855225,0.778951935587139
+6148,85843,446397.952,85943,446297.952,47,61,28.75,0.0410714285714286,7.91039506974133,0.427249285302421,14.9219177664605,-0.0336300345463587,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,11.7741584777832,10,-0.971841387450695,-1.16071212291718,0.337811485441809
+6149,85843,446297.952,85943,446197.952,48,61,7.25,0.00805555555555556,3.37816157171618,0.195987654320988,14.1891884822565,0.01659276639788,0.0575,5.75,4,67.1008561631457,0.646330680813439,3,15.0646069568136,0,-1.15460614363352,-1.35124516487122,0.266165782989005
+6150,85843,446197.952,85943,446097.952,49,61,12,0.024,3.95168532718247,0.228333333333333,11,0.0146324502227617,0.045,4.5,4,60.9119514728441,0.650959860383944,2.5,6.50394821166992,0,-0.876632798230276,-1.36416077613831,0.757492693091306
+6151,85843,446097.952,85943,445997.952,50,61,21.5,0.0716666666666667,13.5502919283192,0.414878157835904,18.8001831488009,0.0231654632593563,0.145,14.5,4,86.9689126324757,0.824561403508772,13.25,4.31929542278421,0,-0.0960122045750419,-1.07561278343201,1.14614269027046
+6152,85843,445997.952,85943,445897.952,51,61,49.75,0.124375,12.3042505962568,0.35554909833756,11.5450849718747,0.0281605876401591,0.2875,28.75,3,91.6050782681603,0.817813765182186,23.75,1.53974841573964,0,0.309746657963842,-0.536110520362854,0.761938075081881
+6153,85843,445897.952,85943,445797.952,52,61,37.25,0.0620833333333333,10.1673935754761,0.413345119468552,13.1903559372885,0.00848090005244899,0.15,15,5,78.7004718660919,0.728506787330317,6.75,1.23570226033529,0,0.353039509781714,-0.0369570553302765,0.335373536931698
+6154,85843,445797.952,85943,445697.952,53,61,77.25,0.38625,24.5963619188034,0.777505487379028,10,-0.0286337497593195,0.0925,9.25,4,76.8750082392278,0.69290520706318,5.5,0.27027027027027,0,0.285008584265597,-0.128738597035408,0.275770939362371
+6155,85843,445697.952,85943,445597.952,54,61,74,0.74,34.293340017847,0.85304054054054,NA,0.00464299929549725,0.2775,27.75,2,92.5843573010575,0.875432525951557,23.5,0.36036036036036,0,0.191886738253136,-0.101659052073956,0.233930555299622
+6156,85843,445597.952,85943,445497.952,55,61,44.5,0.445,32.078654972426,0.720037453183521,NA,0.0199850463599432,0.295,29.5,2,93.9543712737375,0.8409226486379,27.25,0.949754811949649,0,0.0872483541703938,-0.0620859861373901,0.249988403897127
+6157,85843,445497.952,85943,445397.952,56,61,40,0.133333333333333,14.4360475483366,0.42632097581762,11.1803398874989,0.0346190067575753,0.3325,33.25,1,96.1356845313251,0.882378431918779,33.25,1.04618147082795,0,-0.517909517046064,-0.989618241786957,0.585290504663652
+6158,85843,445397.952,85943,445297.952,57,61,45.5,0.0505555555555556,9.27457313209458,0.371165191976661,11.9839752603291,0.036797083308702,0.4875,48.75,4,93.7678554570751,0.80595607061043,37.25,4.61071194379758,0,-0.820721343159676,-1.21734178066254,0.735975442607758
+6159,85843,445297.952,85943,445197.952,58,61,46.5,0.11625,13.4169566308662,0.412216050701417,10.2950849718747,0.0145471720824753,0.315,31.5,2,92.153774711734,0.815127657539923,20,1.08786561754015,0,-1.71422249823809,-2.04179096221924,0.355903864277177
+6160,85843,445197.952,85943,445097.952,59,61,38.25,0.031875,6.9814135876805,0.328699107937614,11.1284183052081,0.00818053054557822,0.15,15,2,89.0783316152399,0.852941176470588,13.5,1.86785113016764,0,-2.09206491708755,-2.19163775444031,0.187590404381256
+6161,85843,445097.952,85943,444997.952,60,61,24.5,0.0245,5.76632482248402,0.23966049382716,10.1180339887499,0.0442289414362676,0.3725,37.25,2,93.4857630090956,0.842388687010201,27.5,21.4140529376548,0,-2.21438221633434,-2.27327060699463,0.122216148430443
+6162,85843,444997.952,85943,444897.952,61,61,1.25,0.00625,2.17471115988337,0.145833333333333,90,0.380731459483504,0.99,99,1,99.9734851828463,1,99,32.4221308496263,0,-2.1544257303079,-2.26262450218201,0.187922934121004
+6163,85843,444897.952,85943,444797.952,62,61,34.25,0.0570833333333333,10.1839359535866,0.425346740638003,12.5459999059671,0.025391455817346,0.145,14.5,4,83.5597575533491,0.801169590643275,10.75,7.10305621706206,0,-1.96467862278223,-2.16257977485657,0.246530207407289
+6164,85843,444797.952,85943,444697.952,63,61,29.75,0.0425,8.31600799052307,0.299321587873441,10.591733660533,0.00385104543087692,0.165,16.5,1,92.3061588442808,0.875032543608435,16.5,1.80518387303208,0,-1.90425940354665,-2.10973143577576,0.225309639173252
+6165,85843,444697.952,85943,444597.952,64,61,35.75,0.0595833333333333,9.04487777487157,0.322406045751634,11.2267799624997,-0.0222654900443558,0.055,5.5,2,74.4436028906616,0.813258636788049,4.25,8.41407099637118,5,-2.03232183307409,-2.24452614784241,0.230672691627022
+6166,85843,444597.952,85943,444497.952,65,61,37.25,0.0465625,9.46500479374449,0.388555657305657,10.7725424859374,-0.0406014637981571,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0,-2.20051451524099,-2.38253474235535,0.250119867556406
+6167,85843,444497.952,85943,444397.952,66,61,17,0.02125,5.4007754693162,0.260617760617761,15.1023852295575,-0.00343275272714891,0.045,4.5,3,67.3731244668155,0.728524335854179,3.25,5.361267513699,0,-2.3624316851298,-2.41413688659668,0.0881489317450281
+6168,85843,444397.952,85943,444297.952,67,61,38,0.126666666666667,17.3742049568354,0.502459098665061,21.0947570824873,0.0348149799369276,0.28,28,3,90.7662324229312,0.814356435643564,18.25,4.29262496743883,0,-2.29482617974281,-2.39132332801819,0.186565757979109
+6169,85843,444297.952,85943,444197.952,68,61,41,0.082,8.29888456195536,0.316492118904052,15.0710678118655,0.029267614866767,0.465,46.5,1,97.5448886830867,0.951097587480982,46.5,1.81412046699114,0,-1.3414448350668,-2.08253622055054,1.2785126131071
+6170,85843,444197.952,85943,444097.952,69,61,24.25,0.060625,10.6878125768606,0.383512544802867,10.2950849718747,-0.0103031229141561,0.185,18.5,2,89.5835321382604,0.735724398301085,15.25,2.12258199743322,0,-1.07496874046046,-1.58130359649658,0.719879981579778
+6171,85843,444097.952,85943,443997.952,70,61,10.75,0.0153571428571429,4.21024713160916,0.209863945578231,16.0515256821426,-0.0429619806898609,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0.833333333333333,0,-1.25630496939023,-1.42942774295807,0.347538077722905
+6172,85843,443997.952,85943,443897.952,71,61,42.75,0.4275,27.4522260962428,0.852826510721247,NA,-0.047476898451896,0.0025,0.25,1,0,NA,0.25,0,0,-0.851977068698034,-1.34079456329346,0.514345798164483
+6173,85843,443897.952,85943,443797.952,72,61,19.5,0.04875,7.55021764836918,0.253129890453834,31.3745579636579,-0.0114525659384526,0.045,4.5,4,63.3227805680526,0.650959860383944,3,0.948392656114366,0,-0.442408371406297,-1.03277444839478,0.703060639478058
+6174,85843,443797.952,85943,443697.952,73,61,42.5,0.425,35.7985168768667,0.62156862745098,NA,0.0391918711518792,0.4075,40.75,2,94.4160255423113,0.90436005625879,33.5,2.36283696648533,0,-0.805724397068843,-1.64324402809143,0.750087677503382
+6175,85843,443697.952,85943,443597.952,74,61,55.5,0.13875,17.1708936492948,0.47394647696477,11.0355339059327,0.0673115917346877,0.6425,64.25,2,96.3238578324606,0.819722896645974,48.5,1.70581258039066,0,-1.32910918196042,-1.9527143239975,0.743145940240186
+6176,85843,443597.952,85943,443497.952,75,61,88,0.44,19.1596331022795,0.441358024691358,10,0.0505256056868893,0.5325,53.25,2,97.3692328725818,0.789337222492303,51.5,0.140845070422535,0,-2.24417874962091,-2.79731392860413,0.633367015805699
+6177,85843,443497.952,85943,443397.952,76,61,90.75,0.45375,22.7700094919867,0.678966005665722,11.1803398874989,0.0644588662218303,0.74,74,1,99.1448611187463,0.716889932329789,74,0.202702702702703,0,-2.97470064957937,-3.17061233520508,0.31976545175211
+6178,85843,443397.952,85943,443297.952,77,61,64,0.32,19.6154796337313,0.520997375328084,35,0.0429440781985613,0.54,54,2,97.6161473878024,0.735020549426779,53,2.18052583270603,0,-3.13350701332092,-3.25596976280212,0.2284407904762
+6179,85843,443297.952,85943,443197.952,78,61,86.5,0.865,39.0125191901909,0.842003853564547,NA,0.0639169423503154,0.7,70,2,98.1064777458471,0.727503168567808,67.5,0.525253813607352,0,-3.14855848252773,-3.24886465072632,0.121401577944537
+6180,85843,443197.952,85943,443097.952,79,61,95,0.95,38.4088079811008,0.89780701754386,NA,0.0738884095195681,0.76,76,2,97.4134093965584,0.716404886561955,62.5,0.328947368421053,0,-3.15028522411982,-3.18334031105042,0.0529998827423198
+6181,85843,443097.952,85943,442997.952,80,61,88,0.88,36.6500740640757,0.906723484848485,NA,0.0354571681293237,0.59,59,3,96.1827119429456,0.845141308555943,54.25,0.127118644067797,0,-3.22628974914551,-3.28120970726013,0.0673393600651029
+6182,85843,442997.952,85943,442897.952,81,61,1.25,0.0025,0,0,39.4524583923103,-0.116097991871675,0,0,0,NA,NA,0,NA,NA,-3.24759795268377,-3.30598068237305,0.0708084962099384
+6183,85843,442897.952,85943,442797.952,82,61,0,NA,NA,NA,NA,-0.0513011267572438,0.33,33,1,96.1011760023317,0.96284139468632,33,98.3555191502427,75.6637268066406,-3.28391166031361,-3.33862400054932,0.0597618508942479
+6184,85843,442797.952,85943,442697.952,83,61,0,NA,NA,NA,NA,0.0412477219166522,0.3625,36.25,2,92.9024661854633,0.852016278209397,23.75,104.172059526115,53.8516464233398,-3.33987903594971,-3.3649640083313,0.0374749735733162
+6185,85843,442697.952,85943,442597.952,84,61,0,NA,NA,NA,NA,0.205607409998775,1,100,1,100,NA,100,87.6391767215729,43.0116271972656,-3.37287813425064,-3.39336276054382,0.0304053582939409
+6186,85843,442597.952,85943,442497.952,85,61,0,NA,NA,NA,NA,0.172537299729884,1,100,1,100,NA,100,80.1428661441803,25,-3.36968237161636,-3.39823913574219,0.0460779995805131
+6187,85843,442497.952,85943,442397.952,86,61,0,NA,NA,NA,NA,0.156554037593305,1,100,1,100,NA,100,141.04642988205,74.3303451538086,-3.30643032491207,-3.37678217887878,0.0654816022844882
+6188,85843,442397.952,85943,442297.952,87,61,0,NA,NA,NA,NA,0.138381647858769,1,100,1,100,NA,100,186.787981910706,129.807556152344,-3.23711488644282,-3.27357697486877,0.0359564559017641
+6189,85843,442297.952,85943,442197.952,88,61,0,NA,NA,NA,NA,0.0601584408613053,0.4575,45.75,1,97.4818813583729,0.978185586126033,45.75,162.974562598056,114.017547607422,-3.22975450754166,-3.2531144618988,0.0380094634256979
+6190,85843,442197.952,85943,442097.952,89,61,0,NA,NA,NA,NA,0.046127567925505,0.565,56.5,1,98.2611567869712,0.90717230458405,56.5,122.59804035288,77.6208724975586,-3.20748058954875,-3.25081324577332,0.0709337800406121
+6191,85843,442097.952,85943,441997.952,90,61,0,NA,NA,NA,NA,0.0539817402863167,0.53,53,2,96.0871350728603,0.832595312668755,43.75,104.064742736097,49.2442893981934,-3.1278129418691,-3.19838356971741,0.0914776573616109
+6192,85843,441997.952,85943,441897.952,91,61,0,NA,NA,NA,NA,-0.0031919219721658,0,0,0,NA,NA,0,NA,NA,-3.06581783294678,-3.14625191688538,0.101040778214732
+6193,85843,441897.952,85943,441797.952,92,61,4.5,0.0225,11.745433457072,0.255952380952381,14.142135623731,-0.0230780842152672,0,0,0,NA,NA,0,NA,NA,-3.04772492249807,-3.13868451118469,0.0947164059158282
+6194,85843,441797.952,85943,441697.952,93,61,9.75,0.024375,11.9363159580201,0.181746031746032,11.920788821557,-0.0380073754978002,0.165,16.5,1,92.3061588442808,0.906274407706327,16.5,13.504212177161,5,-3.04491578042507,-3.12686276435852,0.104096641033195
+6195,85843,441697.952,85943,441597.952,94,61,17.25,0.08625,24.1109910676972,0.456963249516441,14.142135623731,0.0629075744011971,0.425,42.5,2,93.9466079392949,0.905542436449507,28,15.4190880943747,0,-3.03405390183131,-3.132479429245,0.118256052124482
+6196,85843,441597.952,85943,441497.952,95,61,7.75,0.0155,7.13053928893583,0.155119825708061,15.5467743309811,0.0072074129411476,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,6.17851130167643,5,-3.06851388514042,-3.20470190048218,0.146812820562325
+6197,85843,441497.952,85943,441397.952,96,61,0,NA,NA,NA,NA,0.0309224847197765,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,92.4506225585938,76.4852905273438,-3.13805331786474,-3.23253655433655,0.130787811410902
+6198,85843,441397.952,85943,441297.952,97,61,0,NA,NA,NA,NA,0.0187442719326646,0.0175,1.75,1,65.4774238937655,1,1.75,124.085578918457,120.208145141602,-3.16851003468037,-3.21392011642456,0.0813246118510949
+6199,85843,441297.952,85943,441197.952,98,61,5.75,0.0575,29.8480535799069,0.311594202898551,NA,-0.0371630968100456,0,0,0,NA,NA,0,NA,NA,-3.155288875103,-3.1952657699585,0.0794010952621869
+6200,85843,441197.952,85943,441097.952,99,61,1.84210526315789,0.00583333333333333,2.07217072766356,0.0555555555555556,28.3333333333333,-0.0660017789975973,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,4.87744794573103,0,-3.00628425180912,-3.11257791519165,0.131706746001665
+6201,85943,451097.952,86043,450997.952,0,62,2.5,0.003125,0.754441738241592,0.03125,27.9725919020498,0.00748759016303666,0.0625,6.25,7,61.9387073168408,0.573333333333333,4,15.856704864502,5,-3.08714048067729,-3.11422252655029,0.0499764248799272
+6202,85943,450997.952,86043,450897.952,1,62,5,0.00357142857142857,0.82994317188919,0.0436507936507936,14.1485635167478,0.0210384568608424,0.12,12,5,79.4336829140515,0.73669623059867,9,12.8998550971349,0,-3.0861341158549,-3.15813708305359,0.11655142169309
+6203,85943,450897.952,86043,450797.952,2,62,6.25,0.00446428571428571,1.537606255052,0.0873015873015873,14.834812491175,0.0129769618285536,0.0325,3.25,4,48.1809419678784,0.598047660063164,1.5,7.19799100435697,0,-3.14238010512458,-3.30213022232056,0.225693667705881
+6204,85943,450797.952,86043,450697.952,3,62,8,0.00666666666666667,2.26353989131154,0.151388888888889,16.5788254843612,0.0139075619877258,0.11,11,4,77.3198784494588,0.71150926207106,5,11.4658451513811,0,-3.44076764583588,-3.73825836181641,0.334705131043156
+6205,85943,450697.952,86043,450597.952,4,62,7.75,0.0096875,3.71063610511511,0.154803240740741,20.1820424154127,0.00708396286573588,0.035,3.5,3,62.3846730506608,0.792746113989637,2.75,4.8138245173863,0,-3.82050047980414,-3.97837209701538,0.2608318054596
+6206,85943,450597.952,86043,450497.952,5,62,30.5,0.038125,9.46298275684705,0.374270044191919,10.625,-9.18088970956887e-05,0.025,2.5,3,51.3198758158094,0.605522682445759,1.25,2.70710678100586,0,-3.67599844932556,-3.9817898273468,0.390586284767533
+6207,85943,450497.952,86043,450397.952,6,62,55.5,0.0616666666666667,9.07917651565308,0.410135969960709,10,0.0246329710725695,0.2175,21.75,3,87.4969104905086,0.785633309285788,15,3.78079565640154,0,-3.03017735481262,-3.36494636535645,0.436792164573766
+6208,85943,450397.952,86043,450297.952,7,62,53.25,0.1775,11.8389941474594,0.340687577529683,20.4706427181771,0.0611559667616166,0.5875,58.75,3,96.2811612553974,0.86194519224132,53.25,2.34846117547218,0,-2.77556286255519,-2.98943948745728,0.204770910137063
+6209,85943,450297.952,86043,450197.952,8,62,60.25,0.200833333333333,12.7533767739325,0.350914205344585,10.3934466291663,0.013017516155378,0.225,22.5,4,89.1167813553802,0.847725906631937,19.5,0.902368927001953,0,-3.13962684737311,-3.42498707771301,0.480213484665102
+6210,85943,450197.952,86043,450097.952,9,62,23.75,0.0296875,5.83798128231245,0.237291640975048,13.5156990000516,-0.00187762974353973,0.005,0.5,1,30.8308651382582,1,0.5,12.6612377166748,11.1803398132324,-3.8064132531484,-3.94631767272949,0.301503901401516
+6211,85943,450097.952,86043,449997.952,10,62,48.25,0.0965,7.06456792236584,0.195424836601307,13.7345414799559,-0.0197202268082583,0,0,0,NA,NA,0,NA,NA,-4.06927907466888,-4.12463712692261,0.079280781623689
+6212,85943,449997.952,86043,449897.952,11,62,29,0.058,10.753548482585,0.274032258064516,11.634413615168,-0.0393915523223404,0,0,0,NA,NA,0,NA,NA,-4.13489548365275,-4.1399998664856,0.0129866648057907
+6213,85943,449897.952,86043,449797.952,12,62,27,0.054,6.33418112415202,0.172875816993464,19.4721359549996,-0.0276817050080535,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-4.1366693576177,-4.1399998664856,0.00987297307472966
+6214,85943,449797.952,86043,449697.952,13,62,17.75,0.0355,11.82936492638,0.261082621082621,16.1553744609271,-0.00536793272019168,0.05,5,2,77.5556366186497,0.898132427843803,4.75,16.2358595848083,5,-4.11071517732408,-4.12888383865356,0.0366766495737199
+6215,85943,449697.952,86043,449597.952,14,62,8.25,0.00916666666666667,3.17996576449322,0.149216524216524,20.7102456331454,-0.00174111376210931,0,0,0,NA,NA,0,NA,NA,-4.01505080858866,-4.09443521499634,0.102693313281946
+6216,85943,449597.952,86043,449497.952,15,62,11.75,0.0130555555555556,3.41319235180993,0.206883651328096,23.1645478955267,0.0225385433811607,0.1375,13.75,6,73.7089346644628,0.682684973302822,7.75,10.0818404457786,0,-3.79838037490845,-3.9336633682251,0.203500890394878
+6217,85943,449497.952,86043,449397.952,16,62,33,0.0471428571428571,7.0964497851912,0.321855066013944,10.3372399678568,0.058962064483203,0.6025,60.25,3,97.6689203968019,0.77078965758211,58.75,7.90633966912867,0,-3.39694704612096,-3.65643954277039,0.281026796644454
+6218,85943,449397.952,86043,449297.952,17,62,53.5,0.13375,11.3216423966552,0.439900893355667,18.6803398874989,0.03602083756914,0.2675,26.75,3,93.9988125958094,0.858529770641391,26.25,0.506001267477731,0,-2.94979757732815,-3.07869553565979,0.210804599651665
+6219,85943,449297.952,86043,449197.952,18,62,38.75,0.0484375,6.11917928642271,0.185381081780538,11.1510120331024,0.0640930336000019,0.675,67.5,2,97.0116051915598,0.866484600212411,57.75,3.88291356828478,0,-2.61123939355214,-2.90941452980042,0.377778395984442
+6220,85943,449197.952,86043,449097.952,19,62,52.25,0.130625,11.357816114274,0.430807571684588,10.2950849718747,0.0416727447166522,0.555,55.5,1,98.1983573135366,0.853444064484612,55.5,2.22373798301628,0,-2.03687618838416,-2.56754207611084,0.919548925207159
+6221,85943,449097.952,86043,448997.952,20,62,87.5,0.875,38.2363591075696,0.849047619047619,NA,0.0678517001960427,0.825,82.5,2,98.522950811127,0.862416876863105,79,0.61233656912139,0,-0.911005781756507,-1.61743080615997,0.603205471525977
+6222,85943,448997.952,86043,448897.952,21,62,51,0.255,15.2105132934504,0.411330049261084,15,0.0120809601578367,0.195,19.5,3,88.3809689287179,0.909982896750383,15.25,0.576923076923077,0,-1.93081618845463,-4,1.65652620955756
+6223,85943,448897.952,86043,448797.952,22,62,1.25,0.0125,5.57731388147087,0.3,NA,-0.0350732986068761,0.055,5.5,2,74.7764965583772,0.782135076252723,4,10.7347311540083,5,-4,-4,0.283484908672365
+6224,85943,448797.952,86043,448697.952,23,62,1,0.01,4.34942231976673,0.291666666666667,NA,-0.0627085502026603,0,0,0,NA,NA,0,NA,NA,-4,-4,0.0734815675107126
+6225,85943,448697.952,86043,448597.952,24,62,0,NA,NA,NA,NA,-0.0850833448208868,0,0,0,NA,NA,0,NA,NA,-4,-4,1.9878466759147e-16
+6226,85943,448597.952,86043,448497.952,25,62,0,NA,NA,NA,NA,-0.0466799191950122,0.0325,3.25,1,76.0684107249879,0.712891185759403,3.25,17.4112248053918,14.1421356201172,-4,-4,0.179280193589844
+6227,85943,448497.952,86043,448397.952,26,62,71.25,0.7125,33.4527446697743,0.912865497076023,NA,0.0412491382574081,0.385,38.5,2,93.32531312855,0.827630785141774,20.25,1.16548113389449,0,-2.09689592321714,-3.99837636947632,2.01819898439812
+6228,85943,448397.952,86043,448297.952,27,62,81.5,0.4075,19.651578357329,0.545063639490884,10,0.0256469930640014,0.2,20,2,91.1210222710059,0.823943661971831,18,0.1875,0,-0.793688737476865,-1.47440242767334,0.893003289995256
+6229,85943,448297.952,86043,448197.952,28,62,35.75,0.0595833333333333,7.42353690319579,0.223950332821301,13.0693654216063,-0.0184105837581228,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,0.555555555555556,0,-1.18984700573815,-1.49268805980682,0.515658159553273
+6230,85943,448197.952,86043,448097.952,29,62,0,NA,NA,NA,NA,-0.0225418460156652,0,0,0,NA,NA,0,NA,NA,-1.46306670705477,-1.61790072917938,0.266950073725027
+6231,85943,448097.952,86043,447997.952,30,62,8.5,0.017,4.65797572436248,0.102222222222222,20.2331944456456,-0.00793552636634558,0.0725,7.25,2,83.705155371197,0.770602741297241,7,19.0127304340231,0,-1.5455590221617,-1.62820243835449,0.153584357301936
+6232,85943,447997.952,86043,447897.952,31,62,3,0.01,3.65402307422127,0.201388888888889,44.0443905918329,-0.0917121961840894,0,0,0,NA,NA,0,NA,NA,-1.41740743319194,-1.56333005428314,0.242630228096216
+6233,85943,447897.952,86043,447797.952,32,62,27.5,0.055,10.7842076575842,0.471241830065359,13.0673775356168,-0.0163385852276406,0.13,13,4,76.6355548802237,0.728787291747385,5.75,2.68264374366173,0,-0.752463763890167,-1.31283295154572,0.898827119331296
+6234,85943,447797.952,86043,447697.952,33,62,32.25,0.1075,13.2693339052176,0.501904761904762,14.142135623731,0.0219068473747757,0.24,24,2,92.631357295189,0.869951040391677,22.25,1.09745144844055,0,0.704689275887277,-0.366355091333389,1.17975151800662
+6235,85943,447697.952,86043,447597.952,34,62,1.5,0.0075,2.50038071528318,0.166666666666667,60.2079728939615,-0.0157458860307815,0.0025,0.25,1,0,NA,0.25,0,0,1.77274050315221,1.47082614898682,0.436987145317896
+6236,85943,447597.952,86043,447497.952,35,62,11.25,0.01875,5.2897755351511,0.337563131313131,10,0.00887946364318395,0.23,23,1,94.2887150496276,0.952486537852391,23,4.26146536288054,0,2.10671832826402,1.66374802589417,0.785314226129479
+6237,85943,447497.952,86043,447397.952,36,62,74,0.37,20.3228365151607,0.518264840182648,10,0.0628693848681723,0.555,55.5,4,93.3005010609115,0.826304076426206,38.75,1.54667103397954,0,1.84094316760699,0.349843680858612,1.59747453975068
+6238,85943,447397.952,86043,447297.952,37,62,25.75,0.0234090909090909,3.29831176546501,0.161874771814531,13.8509708886362,0.0277591071224379,0.2175,21.75,2,92.2096120669936,0.934041018241781,21,1.59933489218526,0,0.266087622899148,-0.0705001950263977,0.848890607720082
+6239,85943,447297.952,86043,447197.952,38,62,21.25,0.0151785714285714,3.52122160687883,0.164728327228327,14.3413803137335,0.000301237012079696,0.055,5.5,2,76.0387038444882,0.875505757858699,4.5,1.81818181818182,0,-0.0690973470918834,-0.100915588438511,0.119209446271939
+6240,85943,447197.952,86043,447097.952,39,62,29.5,0.07375,9.37368821852503,0.280405405405405,25.5205098312484,0.00798871516193685,0.0425,4.25,3,70.7747433345837,0.7911227154047,3.75,2.05882352941176,0,-0.0161571384718021,-0.092590905725956,0.158461010040162
+6241,85943,447097.952,86043,446997.952,40,62,28.25,0.070625,10.4820678465296,0.340072016460905,26.3430765275528,0.0152561211949433,0.11,11,4,77.3537926838159,0.71150926207106,7,3.97115161202171,0,0.12393163338614,0.00884283427149057,0.140372650254357
+6242,85943,446997.952,86043,446897.952,41,62,23,0.0191666666666667,4.52082695738251,0.160475995953937,13.5679035852926,0.00744199789940267,0.1125,11.25,7,71.1658575616716,0.599703484062268,5.75,6.12144224378798,0,0.206705575188001,0.150853410363197,0.116687071076657
+6243,85943,446897.952,86043,446797.952,42,62,27.5,0.034375,5.47072495092416,0.266716943187531,13.4753895611478,0.0116995113816336,0.1225,12.25,3,85.2916573984237,0.78293311626645,10.75,1.69900831884267,0,0.367882575839758,0.145186752080917,0.579021714603811
+6244,85943,446797.952,86043,446697.952,43,62,16.75,0.0128846153846154,3.56270698586619,0.23605175688509,15.4272323555474,0.0133227224539587,0.1225,12.25,2,86.0556343849858,0.877899877899878,10.5,4.47954029939613,0,0.772679958078596,0.298320114612579,1.00796359906599
+6245,85943,446697.952,86043,446597.952,44,62,70,0.35,23.9526041076212,0.712809451305476,14.142135623731,0.0165263393931673,0.1475,14.75,6,75.3185281759659,0.70099476740843,4.75,1.6452723357637,0,1.1826012134552,0.602791130542755,0.700791553544733
+6246,85943,446597.952,86043,446497.952,45,62,53.75,0.1075,9.65423491662935,0.232686084142395,10.4721359549996,0.0334569069319241,0.2675,26.75,5,85.9693050093404,0.780721144494156,11,2.6701932532765,0,0.999583502610525,0.446437835693359,0.657252530259076
+6247,85943,446497.952,86043,446397.952,46,62,5.75,0.0575,12.729250886946,0.615942028985507,NA,-0.0157773495199945,0.0225,2.25,1,70.1754385964912,0.744245524296675,2.25,1.11111111111111,0,-0.300331744572355,-0.797360837459564,0.769735044683013
+6248,85943,446397.952,86043,446297.952,47,62,39.25,0.0785,11.1797962143045,0.554443151082025,13.8284271247462,-0.0625305906533322,0.0175,1.75,1,65.4774238937655,1,1.75,0.714285714285714,0,-1.08044053117434,-1.26823687553406,0.2480131416159
+6249,85943,446297.952,86043,446197.952,48,62,27.5,0.1375,17.2185639427116,0.43287037037037,25,-0.0526198717021907,0,0,0,NA,NA,0,NA,NA,-1.38249750932058,-1.47776925563812,0.148023557318027
+6250,85943,446197.952,86043,446097.952,49,62,4.5,0.009,4.80423491012166,0.223888888888889,26.8752601924324,0.00140869162216404,0.0025,0.25,1,0,NA,0.25,5,5,-1.48061882456144,-1.53572118282318,0.117533678613688
+6251,85943,446097.952,86043,445997.952,50,62,14.5,0.0241666666666667,6.69451658266252,0.229316816816817,17.4242182727577,-0.0476031098248495,0.0475,4.75,3,65.8757303178702,0.674178658702145,3,1.31578947368421,0,-1.26406647099389,-1.43741798400879,0.307963948646825
+6252,85943,445997.952,86043,445897.952,51,62,13.5,0.0225,5.17003365580448,0.20679012345679,21.3501545511031,0.0108229885429489,0.1875,18.75,1,93.1084153854816,0.869463869463869,18.75,2.14950937906901,0,-0.760280758142471,-1.10262715816498,0.447318081248186
+6253,85943,445897.952,86043,445797.952,52,62,14.5,0.0161111111111111,5.45677103216945,0.303011803011803,16.1379426043996,0.0264400717848184,0.2375,23.75,3,90.3212912352851,0.853423336547734,20.25,4.11987886930767,0,-0.244488220247957,-0.439634084701538,0.33043441942315
+6254,85943,445797.952,86043,445697.952,53,62,27.5,0.025,4.11988513474471,0.157380254154448,12.6322574830898,0.0442822638409598,0.3875,38.75,2,95.6903216056853,0.868242033655567,37.5,4.22701460315335,0,0.237962534166096,-0.0130127612501383,0.349514152987219
+6255,85943,445697.952,86043,445597.952,54,62,39,0.0557142857142857,7.94187458864739,0.349667904987054,14.3618211215482,0.0352726584539778,0.3425,34.25,2,92.8292869501106,0.878326996197719,22.25,0.766423357664234,0,0.482557558351093,0.257268041372299,0.447612018447174
+6256,85943,445597.952,86043,445497.952,55,62,32,0.0355555555555556,7.85008119450888,0.262145432310527,10.5245955055551,0.0269420352779173,0.275,27.5,3,88.7274354681983,0.812857390400277,14.75,2.41525285894221,0,-0.0262045194912288,-0.369259834289551,0.544491717722792
+6257,85943,445497.952,86043,445397.952,56,62,41.25,0.06875,6.94917864944462,0.232885906040268,10.3934466291663,0.0288549995385983,0.2425,24.25,3,90.2308780254839,0.764804066613558,19,4.34432436756252,0,-1.02422944704692,-1.44888091087341,0.486624859060589
+6258,85943,445397.952,86043,445297.952,57,62,52.5,0.13125,18.180393853862,0.418635986733002,12.00693909433,0.0480135314782092,0.5275,52.75,4,93.3438474503408,0.713853795486449,33.25,2.16059810403399,0,-1.44029057025909,-1.72559928894043,0.427046006710854
+6259,85943,445297.952,86043,445197.952,58,62,42.5,0.0708333333333333,8.30989761287781,0.374750199840128,11.8556439686786,0.0379740899609033,0.34,34,3,92.4221806464319,0.914467253176931,29.5,0.692221585442038,0,-1.76915043592453,-1.90511250495911,0.196791225845647
+6260,85943,445197.952,86043,445097.952,59,62,25.25,0.0315625,6.58106654993503,0.236753073924127,12.3176274578121,-0.00169802588428865,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3,0,-1.94224875503116,-2.03679752349854,0.123655017710434
+6261,85943,445097.952,86043,444997.952,60,62,68.25,0.170625,11.9159274651065,0.452453739648033,15.1167109245423,-0.0105090968882587,0.0875,8.75,4,77.6430387119807,0.73547472838923,6.75,4.84403741019113,0,-1.81857912739118,-2.06010317802429,0.408799501247077
+6262,85943,444997.952,86043,444897.952,61,62,68.75,0.1375,11.2080866467643,0.502428694328635,10.2360679774998,-0.00732308637296228,0.1075,10.75,3,83.8611517583996,0.828820417055711,9.5,11.4704518872638,0,-1.57963731553819,-1.82166039943695,0.371319512642173
+6263,85943,444897.952,86043,444797.952,62,62,79.25,0.39625,22.7143880527334,0.811964491679025,14.142135623731,0.0043954449247758,0.185,18.5,2,90.4372746305744,0.764039641340255,16,1.23261085716454,0,-1.28846308092276,-1.66033589839935,0.50454271291633
+6264,85943,444797.952,86043,444697.952,63,62,56.75,0.189166666666667,20.8827514450565,0.716154601571268,15.4373425415939,0.0274907568530762,0.245,24.5,5,89.4645877097475,0.77423239012643,20.25,2.29045521483129,0,-1.42530058489905,-1.64818453788757,0.463228799489486
+6265,85943,444697.952,86043,444597.952,64,62,35.5,0.071,9.49823698035314,0.369086021505376,10.4721359549996,0.00963526539582745,0.185,18.5,3,85.0208758010163,0.773478055686645,9,1.64960902446025,0,-1.67164131999016,-1.78283941745758,0.207017587136103
+6266,85943,444597.952,86043,444497.952,65,62,29,0.0966666666666667,12.4567298796468,0.542962962962963,10,-0.0411622483706378,0,0,0,NA,NA,0,NA,NA,-1.89357497957018,-2.03372883796692,0.224669784176868
+6267,85943,444497.952,86043,444397.952,66,62,35.5,0.044375,7.38094508115525,0.33582965776362,14.2475706208518,0.020857892635031,0.3175,31.75,3,93.1185809368004,0.873142730285588,28.75,1.83688402551366,0,-2.23669044176737,-2.3172025680542,0.15891546183196
+6268,85943,444397.952,86043,444297.952,67,62,14.25,0.0475,9.47191388827018,0.366809116809117,59.5334085777822,0.0237560252791445,0.22,22,4,88.9402204312072,0.795851706679732,18,24.2331601923162,0,-2.20222677787145,-2.36104655265808,0.299529448140552
+6269,85943,444297.952,86043,444197.952,68,62,71.75,0.1435,8.89800434023726,0.293602085840353,10,0.0702048983518034,0.83,83,1,99.48609157949,0.962473027488508,83,0.894792372921863,0,-0.444752821698785,-1.65549600124359,1.39489971490522
+6270,85943,444197.952,86043,444097.952,69,62,92,0.92,37.1718123303641,0.892663043478261,NA,0.0666187086753416,0.7175,71.75,2,98.8183169004236,0.862340216322517,71.5,0.24390243902439,0,-0.865324378634493,-1.36265027523041,0.664215655365782
+6271,85943,444097.952,86043,443997.952,70,62,85.75,0.285833333333333,18.4800697328406,0.656930489452964,13.3333333333333,-0.0717323622072581,0,0,0,NA,NA,0,NA,NA,-1.42258148723178,-1.46296882629395,0.117466041791394
+6272,85943,443997.952,86043,443897.952,71,62,93.5,0.935,38.4859471953404,0.893939393939394,NA,-0.0527308973357867,0.2525,25.25,1,94.7890822083159,0.940871043441305,25.25,0.346534653465347,0,-1.27625247836113,-1.42369222640991,0.209595549856545
+6273,85943,443897.952,86043,443797.952,72,62,34.75,0.0434375,6.59719235453357,0.30534188034188,12.7975205425823,0.00707773547850593,0.18,18,3,85.1303730534966,0.788745918955252,10.75,0.960307439168294,0,-0.942694081200494,-1.11385226249695,0.374154497847873
+6274,85943,443797.952,86043,443697.952,73,62,56.25,0.5625,31.8954926598167,0.859259259259259,NA,0.0347190278491689,0.42,42,2,96.0185922299812,0.838709677419355,39.75,0.50084604535784,0,-0.51289428359208,-0.97932893037796,0.543778481004297
+6275,85943,443697.952,86043,443597.952,74,62,30.75,0.05125,8.68690431720666,0.346532788199455,16.2866697877646,0.00885467202895597,0.2125,21.25,2,91.1678515474091,0.789761379165353,17.75,2.7833885417265,0,-0.423191563950645,-0.925356268882751,0.632769810924134
+6276,85943,443597.952,86043,443497.952,75,62,42.25,0.0845,10.0211308863944,0.425095014531634,18.5250984882127,0.011181116630778,0.26,26,2,92.8663814550729,0.804885099002746,24,1.765449487246,0,-1.32563291614254,-2.22784471511841,1.08494794061594
+6277,85943,443497.952,86043,443397.952,76,62,41.25,0.06875,10.4265230501071,0.335082304526749,12.060113295833,0.00870169228484883,0.27,27,3,90.5500180903881,0.810326659641728,18.5,2.6556636845624,0,-2.09221139219072,-2.55906462669373,0.83641085770823
+6278,85943,443397.952,86043,443297.952,77,62,88.25,0.8825,37.7056872520504,0.852219074598678,NA,0.0628832832695616,0.6525,65.25,1,98.7475319937876,0.782260081505348,65.25,0.708812260536398,0,-2.39573842949337,-2.79232883453369,0.617321574102197
+6279,85943,443297.952,86043,443197.952,78,62,78.25,0.195625,14.0101098072041,0.540525554071182,10,0.0282083009869166,0.395,39.5,2,96.5040173189716,0.891707039042462,39.25,1.49706125862991,0,-2.7268630862236,-3.01368165016174,0.411292817914842
+6280,85943,443197.952,86043,443097.952,79,62,88,0.88,38.1374909796277,0.839015151515151,NA,0.069649606840976,0.7625,76.25,1,99.2358070072224,0.802288329519451,76.25,0.531380550196913,0,-3.05985260009766,-3.15369915962219,0.191577865958435
+6281,85943,443097.952,86043,442997.952,80,62,62.75,0.6275,31.707986069358,0.902390438247012,NA,-0.0450735425316088,0.4175,41.75,1,97.1176501838512,0.92754027088791,41.75,0.0598802395209581,0,-3.25279255708059,-3.30532169342041,0.0871756974141381
+6282,85943,442997.952,86043,442897.952,81,62,1.5,0.0025,0,0,19.0141481856728,-0.12757950768806,0,0,0,NA,NA,0,NA,NA,-3.32785198423598,-3.34059715270996,0.0299607936769183
+6283,85943,442897.952,86043,442797.952,82,62,0,NA,NA,NA,NA,-0.000519678180244227,0.41,41,1,97.0434862163892,0.966326187001908,41,96.4600678420648,72.8011016845703,-3.34560610850652,-3.35490107536316,0.0189903746085762
+6284,85943,442797.952,86043,442697.952,83,62,0,NA,NA,NA,NA,0.094032168913684,0.5125,51.25,1,97.9112600445307,0.983848172824551,51.25,52.4043622831019,20,-3.35719969537523,-3.35999989509583,0.0101962239591657
+6285,85943,442697.952,86043,442597.952,84,62,0.25,0.0025,0,0,NA,0.189977813586593,1,100,1,100,NA,100,46.0325643920898,0,-3.36657508214315,-3.37517309188843,0.00999831659303855
+6286,85943,442597.952,86043,442497.952,85,62,0,NA,NA,NA,NA,0.165205521993339,1,100,1,100,NA,100,100.131197633743,45,-3.37269141938951,-3.38753223419189,0.0248616091438429
+6287,85943,442497.952,86043,442397.952,86,62,0,NA,NA,NA,NA,0.146022433899343,1,100,1,100,NA,100,165.483298454285,100.623054504395,-3.33916532993317,-3.3775486946106,0.0451329870603164
+6288,85943,442397.952,86043,442297.952,87,62,0,NA,NA,NA,NA,0.141070163249969,1,100,1,100,NA,100,242.764177474976,195.256225585938,-3.25782974561056,-3.28366279602051,0.0392731847448079
+6289,85943,442297.952,86043,442197.952,88,62,0,NA,NA,NA,NA,0.0151875450495118,0.1775,17.75,1,92.7707193874331,0.922188449848024,17.75,244.87314917336,218.288803100586,-3.21366192897161,-3.23213863372803,0.0255226030033932
+6290,85943,442197.952,86043,442097.952,89,62,0,NA,NA,NA,NA,0.0742047163116877,0.6875,68.75,1,98.9155506404681,0.968992248062015,68.75,210.261656105735,164.924224853516,-3.1871149275038,-3.21613526344299,0.0380169515451042
+6291,85943,442097.952,86043,441997.952,90,62,0,NA,NA,NA,NA,0.0297041402830291,0.265,26.5,2,91.3633658941877,0.829041564269687,19.5,193.526342284005,143.961807250977,-3.16183159086439,-3.18514657020569,0.0219348197948447
+6292,85943,441997.952,86043,441897.952,91,62,0,NA,NA,NA,NA,0.00854600166510863,0,0,0,NA,NA,0,NA,NA,-3.1809325615565,-3.22986674308777,0.0443510972607359
+6293,85943,441897.952,86043,441797.952,92,62,0,NA,NA,NA,NA,-0.0388248916112389,0,0,0,NA,NA,0,NA,NA,-3.23932417233785,-3.29817414283752,0.0884645094469022
+6294,85943,441797.952,86043,441697.952,93,62,0,NA,NA,NA,NA,-0.0676062743154578,0,0,0,NA,NA,0,NA,NA,-3.25147457917531,-3.33022522926331,0.135562395472821
+6295,85943,441697.952,86043,441597.952,94,62,0,NA,NA,NA,NA,0.2037210478208,0.8375,83.75,1,99.5120172135984,0.980556568234293,83.75,72.112765633882,15,-3.18669414520264,-3.30038022994995,0.174718815355945
+6296,85943,441597.952,86043,441497.952,95,62,8,0.04,9.10104097640686,0.5,11.1803398874989,0.0190506242503761,0.45,45,2,94.157335102783,0.858039858039858,23.75,37.690175819397,0,-3.04243499040604,-3.19964337348938,0.183678401252846
+6297,85943,441497.952,86043,441397.952,96,62,29.5,0.0491666666666667,7.62747595529333,0.272895622895623,11.1803398874989,0.0799803727108997,0.68,68,1,98.8806414464123,0.975538160469667,68,12.0132994020686,0,-2.96454522344801,-3.06294178962708,0.133085464195863
+6298,85943,441397.952,86043,441297.952,97,62,16,0.0266666666666667,8.15150777225191,0.262678062678063,10.7868932583326,0.0467964765043871,0.39,39,1,96.835360326048,0.965727994516479,39,11.7933941009717,0,-2.86755015452703,-3.02227258682251,0.261933585138377
+6299,85943,441297.952,86043,441197.952,98,62,10.75,0.0215,10.2132038622361,0.293321493321493,13.9442719099992,0.0215314170353849,0.2225,22.25,3,89.3483696560748,0.83821715302635,17.5,17.6027813386381,0,-2.85171990924411,-3.01903128623962,0.356317921323733
+6300,85943,441197.952,86043,441097.952,99,62,30.7894736842105,0.14625,15.5084160102277,0.491959064327485,25,-0.027329453423381,0.2275,22.75,2,93.2283684847592,0.880139038715091,22.25,1.8394894861913,0,-2.80472775300344,-2.99210214614868,0.254418809371735
+6301,86043,451097.952,86143,450997.952,0,63,5.5,0.0055,1.5469720110594,0.0783333333333333,16.0421987882278,0.0109219331569602,0.06,6,3,70.4261822192427,0.636058230683091,3.5,12.2794773578644,0,-3.01288251082102,-3.05709195137024,0.0699554173460501
+6302,86043,450997.952,86143,450897.952,1,63,10.25,0.00931818181818182,4.34579926993357,0.165584415584416,16.0107130741303,0.0264952007246029,0.1175,11.75,9,71.1504789854387,0.61756373937677,7.25,9.0139108617255,0,-2.92109373211861,-2.99741721153259,0.0842354271930356
+6303,86043,450897.952,86143,450797.952,2,63,34.75,0.0434375,3.73944263666105,0.127564102564103,17.379475561305,-0.0142669067071256,0.0425,4.25,3,65.0001857459207,0.66579634464752,2.5,13.6017489713781,0,-2.84265164534251,-2.9234139919281,0.118344718310075
+6304,86043,450797.952,86143,450697.952,3,63,54.5,0.13625,13.2543943885805,0.60422514619883,10.2950849718747,0.00473025877239706,0.1825,18.25,4,88.0893119001939,0.789755351681957,16,2.1443243679935,0,-2.9928969591856,-3.3479745388031,0.249060452733268
+6305,86043,450697.952,86143,450597.952,4,63,39.5,0.049375,7.27325952284096,0.320582257293161,12.3217354013243,0.0181534967799598,0.1275,12.75,6,73.1748997647013,0.657477851332213,5.5,1.96775174608418,0,-3.32934852441152,-3.58667731285095,0.265229562527269
+6306,86043,450597.952,86143,450497.952,5,63,36,0.045,7.256836045053,0.412142255892256,11.4744835019484,0.0291467869141161,0.2825,28.25,4,90.3407691787056,0.808703969392635,17.75,3.00508117675781,0,-3.09105938673019,-3.39808177947998,0.309274320655323
+6307,86043,450497.952,86143,450397.952,6,63,22.75,0.0189583333333333,5.92041072136074,0.230157257459889,11.0624263272763,0.0468193490704289,0.3375,33.75,4,89.2588121242692,0.730019941708851,14,5.3643069797092,0,-2.7536879380544,-2.88426089286804,0.235620716313541
+6308,86043,450397.952,86143,450297.952,7,63,60,0.2,18.816486345586,0.739806766011891,14.9071198499986,0.0624053668313172,0.4825,48.25,2,94.5237531382585,0.821876771111651,25.75,2.15266788067595,0,-2.9564109146595,-3.40778088569641,0.380224633581041
+6309,86043,450297.952,86143,450197.952,8,63,26,0.0371428571428571,5.05398258934632,0.167791005291005,15.1476267392539,0.0019461269065323,0.075,7.5,3,73.4560473384328,0.779371207942636,3.75,7.73412456512451,0,-3.58355806271235,-3.92000389099121,0.438707557000742
+6310,86043,450197.952,86143,450097.952,9,63,6,0.012,4.69464441155545,0.0970588235294118,13.634413615168,-0.00598619627577705,0,0,0,NA,NA,0,NA,NA,-3.96783071756363,-4.08573436737061,0.189417714350768
+6311,86043,450097.952,86143,449997.952,10,63,2.75,0.00458333333333333,1.94271706296938,0.0763888888888889,20.4221968756685,0.0077128089151438,0,0,0,NA,NA,0,NA,NA,-4.11185064911842,-4.13998317718506,0.0462867624128586
+6312,86043,449997.952,86143,449897.952,11,63,26.25,0.0525,8.78347026195225,0.234229390681004,11.634413615168,-0.0128658741724576,0,0,0,NA,NA,0,NA,NA,-4.13977026939392,-4.1399998664856,0.0021115273465415
+6313,86043,449897.952,86143,449797.952,12,63,43,0.0716666666666667,9.56440693769952,0.325431474673203,14.0806826167703,-0.0381344160558365,0,0,0,NA,NA,0,NA,NA,-4.13997176289558,-4.14006996154785,0.00082108813099096
+6314,86043,449797.952,86143,449697.952,13,63,22.5,0.0375,9.37931285399684,0.294829244829245,16.4026987549396,-0.0303063517810642,0,0,0,NA,NA,0,NA,NA,-4.13548680146535,-4.14041805267334,0.0126791326588887
+6315,86043,449697.952,86143,449597.952,14,63,8.75,0.00673076923076923,2.25725348683669,0.13034188034188,19.0895711592502,0.00082122635579708,0.0125,1.25,1,58.1880425789518,1,1.25,15.9554294586182,11.1803398132324,-4.09339752793312,-4.13621473312378,0.0562242506296945
+6316,86043,449597.952,86143,449497.952,15,63,6.75,0.00675,2.3996637258731,0.167261904761905,14.6290135589813,0.00365375752437103,0.02,2,2,52.9470541148176,0.693877551020408,1.25,8.85142350196838,0,-3.93884094556173,-4.03966283798218,0.159289874431536
+6317,86043,449497.952,86143,449397.952,16,63,46.5,0.155,10.4853389349039,0.282004830917874,12.7240226919466,0.0514673509777458,0.44,44,3,94.1161785885481,0.857142857142857,34.25,3.55302664366635,0,-3.50353643298149,-3.76719379425049,0.305412824415723
+6318,86043,449397.952,86143,449297.952,17,63,35.75,0.0715,11.8677783597802,0.380674947853429,17.9789314865603,0.0104758974732431,0.0225,2.25,1,70.1754385964912,0.744245524296675,2.25,0,0,-3.07996745904287,-3.19652056694031,0.134713370517488
+6319,86043,449297.952,86143,449197.952,18,63,67.75,0.33875,20.9635806432791,0.720182291666667,35.3553390593274,0.0564373883345979,0.5625,56.25,2,96.5424708495163,0.853061224489796,51,0.440631713867188,0,-2.99868910014629,-3.07452583312988,0.138405849310222
+6320,86043,449197.952,86143,449097.952,19,63,79,0.79,35.7902178904676,0.869725738396624,NA,0.069149294346571,0.82,82,1,99.4509723118502,0.784598815293484,82,1.03130492931459,0,-2.6353284517924,-2.91836500167847,0.57741420792324
+6321,86043,449097.952,86143,448997.952,20,63,73.75,0.245833333333333,13.8955211696007,0.391943489881634,12.4535599249993,0.0748989442177117,0.8175,81.75,1,99.442091962007,0.689172087653471,81.75,1.74661380872814,0,-1.4544672369957,-2.08433675765991,0.745485728907207
+6322,86043,448997.952,86143,448897.952,21,63,85,0.85,37.4989689641416,0.844607843137255,NA,0.0708767394867027,0.8075,80.75,1,99.4061591150036,0.812646370023419,80.75,0.816119958741746,0,-0.570825671718922,-1.89982223510742,1.07562155719658
+6323,86043,448897.952,86143,448797.952,22,63,70.25,0.234166666666667,17.3034610107637,0.594512723804569,14.5246277368648,0.0423900809668885,0.46,46,3,95.5046962986832,0.852941176470588,42.75,0.850558778514033,0,-1.12773571318636,-3.75871229171753,2.19323086296143
+6324,86043,448797.952,86143,448697.952,23,63,40.25,0.4025,30.1029053617135,0.797101449275362,NA,-0.0652688754459814,0.0125,1.25,1,58.1880425789518,1,1.25,1,0,-2.84111610427499,-4,1.69592837739886
+6325,86043,448697.952,86143,448597.952,24,63,1,0.01,5,0.25,NA,-0.0780272509214956,0,0,0,NA,NA,0,NA,NA,-3.94887646039327,-4,0.666138884079612
+6326,86043,448597.952,86143,448497.952,25,63,31.25,0.15625,18.7875643788261,0.70115268329554,10,0.0465204808210001,0.48,48,1,97.6664438264523,0.82713915298185,48,6.44600705305735,0,-3.4895161986351,-4,0.888787024207296
+6327,86043,448497.952,86143,448397.952,26,63,94.25,0.47125,21.2979995753499,0.678925353925354,11.1803398874989,0.0294855958031258,0.24,24,3,88.999264159939,0.877600979192166,15.75,0.43824028968811,0,-2.18251717090607,-3.07764196395874,0.544354725989875
+6328,86043,448397.952,86143,448297.952,27,63,35.75,0.119166666666667,15.8031799535175,0.627382105943152,20.1465151014391,0.00228121895031506,0.0325,3.25,2,64.9662647106596,0.712891185759403,2.5,0,0,-1.8627562224865,-2.19132328033447,0.300967737925602
+6329,86043,448297.952,86143,448197.952,28,63,6.25,0.015625,4.66550329789919,0.190277777777778,19.9632618218197,-0.00167260734613137,0.1325,13.25,1,90.8041511632959,0.936662760870254,13.25,9.84303657963591,0,-1.71931771437327,-1.8509669303894,0.161317758089218
+6330,86043,448197.952,86143,448097.952,29,63,2.5,0.00625,1.8730634968572,0.152777777777778,48.3593943138485,0.00578848710451894,0.085,8.5,2,85.1988007169034,0.629195940671351,8,15.2395348829382,0,-1.68581612408161,-1.74222707748413,0.0652463714498966
+6331,86043,448097.952,86143,447997.952,30,63,7.25,0.0241666666666667,7.63007523075806,0.315972222222222,17.9944854588939,-0.0221779280839655,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-1.6436380147934,-1.67437124252319,0.0472116702408267
+6332,86043,447997.952,86143,447897.952,31,63,4.75,0.02375,13.1736251666584,0.111111111111111,11.1803398874989,-0.100620492431335,0,0,0,NA,NA,0,NA,NA,-1.55171393354734,-1.59305191040039,0.0881668856710976
+6333,86043,447897.952,86143,447797.952,32,63,0.25,0.0025,0,0,NA,-0.091584287652513,0.0025,0.25,1,0,NA,0.25,5,5,-1.33241333067417,-1.4978119134903,0.253631851729148
+6334,86043,447797.952,86143,447697.952,33,63,41.5,0.138333333333333,12.955837496258,0.58627889634601,25.7868932583326,0.0372346725558964,0.3975,39.75,3,95.5837499945975,0.909054737679759,38.5,1.65475002024908,0,-0.594956209417433,-1.11307430267334,1.11087323767079
+6335,86043,447697.952,86143,447597.952,34,63,63.25,0.31625,18.5963574743676,0.402116402116402,10,0.0399647516714867,0.43,43,1,97.2369173509155,0.811832420167137,43,1.02449536878009,0,1.71715885773301,0.461187541484833,1.38603988637856
+6336,86043,447597.952,86143,447497.952,35,63,64.25,0.32125,18.8182365102333,0.502614379084967,11.1803398874989,0.0419759169569397,0.4425,44.25,3,94.6939326595666,0.786069856419961,35.25,1.21669683079262,0,2.96832631031672,2.69026732444763,0.788119876579505
+6337,86043,447497.952,86143,447397.952,36,63,72,0.24,14.3433965660559,0.450418160095579,10.3934466291663,0.0574562805709866,0.5925,59.25,2,97.2793063443302,0.81719730227534,55.75,0.815545448271031,0,2.38664180412889,0.860396921634674,1.17961346286107
+6338,86043,447397.952,86143,447297.952,37,63,63.75,0.159375,10.0668052063078,0.213313413014608,10,0.0166830848241079,0.2475,24.75,4,85.6041311947154,0.7685617230953,8.5,2.21681425306532,0,0.772810824215412,0.288049548864365,0.739068772652152
+6339,86043,447297.952,86143,447197.952,38,63,30.25,0.03025,5.03157829396122,0.224841897233202,13.5901699437495,0.0181778903378108,0.215,21.5,4,85.5733478750689,0.79184879896757,10.25,1.994218781937,0,0.321234051603824,-0.00408980250358582,0.406154465983748
+6340,86043,447197.952,86143,447097.952,39,63,54.25,0.1085,7.74788485572133,0.276190476190476,20.7707113468549,0.0149221464843504,0.165,16.5,2,91.0185062261396,0.958344181202812,16.25,0.0757575757575758,0,0.1059713261396,-0.0962002724409103,0.245996306030053
+6341,86043,447097.952,86143,446997.952,40,63,55.25,0.5525,32.7872708535494,0.72473604826546,NA,0.00461668635500246,0.01,1,1,52.6315789473684,1,1,2.5,0,-0.0605175002347096,-0.162979543209076,0.122422337047634
+6342,86043,446997.952,86143,446897.952,41,63,15.75,0.0315,7.03345631823422,0.463118765292678,31.9112248695854,-0.00297751151372722,0.07,7,4,68.6338431451317,0.56989247311828,3.5,1.68110956464495,0,0.210970988807579,0.0525714531540871,0.301936728719126
+6343,86043,446897.952,86143,446797.952,42,63,49.5,0.2475,16.101943105306,0.408206429780034,20,0.0382990729895937,0.3925,39.25,4,92.5395211205812,0.828532235939644,32.75,0.920156758302336,0,1.27596609480679,0.482855290174484,1.15013132948141
+6344,86043,446797.952,86143,446697.952,43,63,81.25,0.40625,17.895935833306,0.440586419753086,11.1803398874989,0.0531248876178142,0.6225,62.25,2,97.6800142317681,0.772617457294716,58.75,1.12636506413839,0,2.23857330282529,1.39557278156281,0.799386613613331
+6345,86043,446697.952,86143,446597.952,44,63,72.5,0.241666666666667,15.4617366829395,0.467320261437909,12.1676051329096,0.0409882090658232,0.2825,28.25,6,83.9574338928164,0.733551957368313,10.5,1.41907379690525,0,1.81279726823171,1.33139908313751,0.663977224957594
+6346,86043,446597.952,86143,446497.952,45,63,30,0.075,11.3390906159698,0.502610870833762,13.5391369476463,0.0704341181745985,0.535,53.5,1,98.0675165576351,0.864915977738153,53.5,11.8339427876695,0,-0.342633979395032,-2.5,1.79725234646435
+6347,86043,446497.952,86143,446397.952,46,63,6,0.015,7.8754219223347,0.164583333333333,26.9501793070433,-0.00913787263752965,0.02,2,2,55.2425944039245,0.693877551020408,1.5,17.4428992271423,5,-1.2783027117451,-2.30258250236511,1.05129814704764
+6348,86043,446397.952,86143,446297.952,47,63,7.25,0.0120833333333333,2.66011155561453,0.146464646464646,23.6032487347491,-0.018305192452608,0.07,7,1,85.3702908942512,0.8805256869773,7,3.33158111572266,0,-1.36638892814517,-1.86512112617493,0.361382027842776
+6349,86043,446297.952,86143,446197.952,48,63,0,NA,NA,NA,NA,-0.092132949277875,0,0,0,NA,NA,0,NA,NA,-1.5275387664636,-1.66515016555786,0.163823708523841
+6350,86043,446197.952,86143,446097.952,49,63,0.25,0.0025,0,0,NA,-0.0993399385656812,0,0,0,NA,NA,0,NA,NA,-1.49217136204243,-1.59561169147491,0.102222138482335
+6351,86043,446097.952,86143,445997.952,50,63,21.25,0.053125,14.1183182942715,0.467854840195266,14.773914887076,-0.0207075778936996,0.035,3.5,4,49.7723889961533,0.585492227979275,1.25,8.45958600725446,0,-1.29099178314209,-1.42290711402893,0.169295465431457
+6352,86043,445997.952,86143,445897.952,51,63,14.75,0.0295,9.64306697595965,0.325966625966626,14,0.011752106940221,0.11,11,3,78.7240775302404,0.802611600364409,6.25,2.57464252818715,0,-0.916989553719759,-1.12635099887848,0.286685438085879
+6353,86043,445897.952,86143,445797.952,52,63,19.5,0.04875,6.88305347618508,0.210426179604262,10.2950849718747,0.0341008719727051,0.3,30,2,93.8232577925418,0.842726081258191,27.25,4.13602304458618,0,-0.245625191989044,-0.546798527240753,0.506072891585425
+6354,86043,445797.952,86143,445697.952,53,63,41,0.0455555555555556,6.97342067285733,0.225031941671066,10.1311488763888,0.0658749100974751,0.645,64.5,1,98.7097599330033,0.912518589799668,64.5,2.4994192714839,0,0.726024311501533,0.0823708400130272,0.675520241202904
+6355,86043,445697.952,86143,445597.952,54,63,53.25,0.1065,19.7706390869262,0.638650338184054,10.7082039324994,0.00267603504123144,0.2075,20.75,2,89.4802710213103,0.879825747333634,14.75,1.20481927710843,0,1.41145822157462,0.484294444322586,1.09083389716397
+6356,86043,445597.952,86143,445497.952,55,63,23,0.115,16.8738117883721,0.661746031746032,11.1803398874989,0.0250538137850981,0.26,26,2,91.0056765142645,0.869923399335164,20.25,2.16890010466942,0,-0.390366004159053,-1.06286191940308,1.027049992883
+6357,86043,445497.952,86143,445397.952,56,63,59.5,0.0991666666666667,10.7174027771943,0.469905464905465,10.7868932583326,-0.00933478417556671,0.075,7.5,5,69.2997495605692,0.646993932708218,4,0.333333333333333,0,-1.39273330941796,-1.66015386581421,0.396819792339519
+6358,86043,445397.952,86143,445297.952,57,63,62,0.206666666666667,20.7005274583176,0.566989399134898,17.8470065541656,0.0255219469490112,0.3275,32.75,2,92.6678947551096,0.807126969560281,23.5,5.51933582684466,0,-1.74096189936002,-1.85344588756561,0.20068989158539
+6359,86043,445297.952,86143,445197.952,58,63,47.75,0.0795833333333333,10.8959558798952,0.490773073174389,10.3934466291663,0.0480557868603864,0.4275,42.75,2,96.2298255491612,0.911277465862619,41.75,8.14971076117622,0,-1.77686415612698,-1.91013360023499,0.192145991714529
+6360,86043,445197.952,86143,445097.952,59,63,10.75,0.0358333333333333,12.4748716140341,0.465698653198653,32.4535891093288,0.081933774985373,0.485,48.5,1,97.7057035934975,0.946062567421791,48.5,12.2465897294664,0,-1.71952655911446,-1.89578676223755,0.193107204224711
+6361,86043,445097.952,86143,444997.952,60,63,92.25,0.9225,36.6527316468352,0.931345980126468,NA,0.0585290717802127,0.7175,71.75,1,99.0496701463057,0.92133726647001,71.75,0.658289972498026,0,-1.35377739369869,-1.66481912136078,0.220130027213812
+6362,86043,444997.952,86143,444897.952,61,63,83,0.276666666666667,18.5801100386997,0.552453544244589,10.3934466291663,-0.0489660580831333,0.0025,0.25,1,0,NA,0.25,0,0,-1.25362545251846,-1.36456847190857,0.232644378437592
+6363,86043,444897.952,86143,444797.952,62,63,93.75,0.9375,37.3783977346951,0.919111111111111,NA,-0.166476118771243,0.03,3,1,74.8763016215986,0.878714372346877,3,0.416666666666667,0,-0.721795463934541,-1.14966905117035,0.450862840096138
+6364,86043,444797.952,86143,444697.952,63,63,88.25,0.44125,28.7139728829678,0.883169608169608,11.1803398874989,-0.0178064910569083,0.335,33.5,1,96.169806046512,0.870578084555651,33.5,0.553299519553113,0,-0.599976728359858,-1.10512161254883,0.51448928886084
+6365,86043,444697.952,86143,444597.952,64,63,93.5,0.935,37.4996631901326,0.893939393939394,NA,0.0480452252032774,0.255,25.5,4,86.2733061817783,0.772618916639161,14.25,0.882352941176471,0,-1.27470467612147,-1.7426073551178,0.418403084803018
+6366,86043,444597.952,86143,444497.952,65,63,62.75,0.6275,32.4178989042814,0.835989375830013,NA,0.0624413043732056,0.44,44,1,97.328648826901,0.851648351648352,44,2.26664330742576,0,-1.77362088362376,-2.06904172897339,0.314443586525715
+6367,86043,444497.952,86143,444397.952,66,63,50.75,0.5075,34.9321041103212,0.841543513957307,NA,0.0439998815552826,0.445,44.5,1,97.3733506421488,0.912374380459487,44.5,1.40329823868998,0,-2.08342521389325,-2.20231509208679,0.186825513178968
+6368,86043,444397.952,86143,444297.952,67,63,17.5,0.175,23.6356314654522,0.745238095238095,NA,0.042894375049782,0.45,45,3,93.7984316368673,0.808899808899809,24,18.5516807980008,0,-1.94950133562088,-2.22504353523254,0.396992395254443
+6369,86043,444297.952,86143,444197.952,68,63,46.25,0.02890625,4.76142342450543,0.250873610165646,10.82325425474,0.0418498126057602,0.38,38,4,91.3645522126427,0.716730257833275,21.75,2.31507248627512,0,-0.997456895808379,-1.36834764480591,0.654643044077015
+6370,86043,444197.952,86143,444097.952,69,63,98.5,0.985,38.1349551006473,0.922165820642978,NA,0.0378958118891023,0.4875,48.75,4,93.5544184259688,0.865247271257243,35.5,0.0256410256410256,0,-1.29620572552085,-1.48241853713989,0.383225910370666
+6371,86043,444097.952,86143,443997.952,70,63,88.5,0.4425,30.3828743728508,0.802449651002534,10,-0.00248536981227517,0.335,33.5,2,92.8050617331072,0.932207568100579,25.5,0.149253731343284,0,-1.44599242011706,-1.52492654323578,0.136140212478044
+6372,86043,443997.952,86143,443897.952,71,63,78,0.78,39.7151157192267,0.818910256410256,NA,-0.0162034663181112,0.1775,17.75,4,82.6262966699594,0.77629179331307,9.5,0.352112676056338,0,-1.39347025752068,-1.46052968502045,0.125299649788459
+6373,86043,443897.952,86143,443797.952,72,63,78.75,0.39375,24.065042457906,0.584699453551913,11.1803398874989,0.0400093453664886,0.3925,39.25,2,96.3214880731104,0.765660722450846,38.5,0.414012738853503,0,-1.18534642457962,-1.29533696174622,0.189948459232385
+6374,86043,443797.952,86143,443697.952,73,63,92.75,0.9275,38.0540846240098,0.88858939802336,NA,0.0118885236781352,0.2025,20.25,6,82.9573872397954,0.721351445489377,10,0,0,-1.05023896321654,-1.20940101146698,0.171932616478889
+6375,86043,443697.952,86143,443597.952,74,63,82.25,0.205625,10.2649083175937,0.332496279761905,10,0.0376460513983875,0.4325,43.25,3,93.5341113851656,0.756949718973112,27.25,0.260115606936416,0,-1.24339119593302,-1.76330280303955,0.526479854059812
+6376,86043,443597.952,86143,443497.952,75,63,28.75,0.0359375,5.89983819453618,0.280532094594595,10.7725424859374,0.0410818095200648,0.39,39,4,91.0173330858854,0.840063974410236,19.75,9.19619711851462,0,-1.20835879445076,-2.10889101028442,0.828097474022484
+6377,86043,443497.952,86143,443397.952,76,63,25.25,0.0315625,8.56674080557682,0.285260126777984,16.4754248593737,-0.00939162852373556,0.1275,12.75,2,87.3885365575967,0.934130356025426,12,10.0982008915321,0,-1.25172058741252,-2.01695609092712,1.03977477406799
+6378,86043,443397.952,86143,443297.952,77,63,42,0.07,7.59442129633134,0.261604733872946,14.736032088273,0.00497468170025968,0.245,24.5,3,92.3994847126646,0.864539434075858,23.25,1.11369526142977,0,-0.961012079225232,-1.90372860431671,1.16949793365435
+6379,86043,443297.952,86143,443197.952,78,63,74,0.37,18.7028539192379,0.394350282485876,10,-0.018165384702661,0.1,10,2,81.7010134096932,0.800995024875622,6,0.801776695251465,0,-1.7794926315546,-2.63954377174377,0.950356564482489
+6380,86043,443197.952,86143,443097.952,79,63,91.25,0.9125,37.6721079757794,0.871232876712329,NA,0.0687103937329084,0.695,69.5,1,98.9498932220624,0.74247848753219,69.5,0.503597122302158,0,-2.57460176944733,-3.03473901748657,0.565576300393991
+6381,86043,443097.952,86143,442997.952,80,63,30.75,0.05125,4.91161083222539,0.17451690821256,21.8718427093628,-0.081352611862967,0.25,25,2,91.4386364260126,0.925925925925926,20.75,1.2532247543335,0,-2.95928254723549,-3.26315236091614,0.38217042302104
+6382,86043,442997.952,86143,442897.952,81,63,1.25,0.003125,0.625,0.0416666666666667,38.9925504735282,-0.107422379727941,0,0,0,NA,NA,0,NA,NA,-3.21580769618352,-3.31033825874329,0.169363115497322
+6383,86043,442897.952,86143,442797.952,82,63,0,NA,NA,NA,NA,-0.0592736491461983,0,0,0,NA,NA,0,NA,NA,-3.28750586509705,-3.33611249923706,0.07393688737203
+6384,86043,442797.952,86143,442697.952,83,63,0,NA,NA,NA,NA,0.0939090668690915,0.665,66.5,1,98.8090595843688,0.988035773038615,66.5,76.0053640093122,25,-3.30959248542786,-3.35245537757874,0.05312141886541
+6385,86043,442697.952,86143,442597.952,84,63,0.5,0.005,2.5,0.166666666666667,NA,0.160779490554705,1,100,1,100,NA,100,41.5896962785721,0,-3.33106414973736,-3.36518359184265,0.0375606843447511
+6386,86043,442597.952,86143,442497.952,85,63,0.5,0.0025,0,0,20.6155281280883,0.162295479271561,1,100,1,100,NA,100,47.2308880519867,0,-3.3362354238828,-3.35388016700745,0.0212326080746943
+6387,86043,442497.952,86143,442397.952,86,63,0,NA,NA,NA,NA,0.141291455924511,1,100,1,100,NA,100,140.619824542999,90,-3.29803662002087,-3.32987880706787,0.0401626579690316
+6388,86043,442397.952,86143,442297.952,87,63,0,NA,NA,NA,NA,0.143796055171988,0.9475,94.75,1,99.8561526638156,0.973508179349626,94.75,212.849876061593,172.046508789062,-3.25646672646205,-3.27347087860107,0.0232520202585387
+6389,86043,442297.952,86143,442197.952,88,63,0,NA,NA,NA,NA,0.00604022922632581,0.04,4,2,69.6584485569959,0.696180555555556,2.75,202.87553691864,161.941360473633,-3.24618911743164,-3.28140068054199,0.0405781626427205
+6390,86043,442197.952,86143,442097.952,89,63,0,NA,NA,NA,NA,0.101220977626217,0.8825,88.25,1,99.6605653114489,0.898076188049433,88.25,149.80653742285,100,-3.21404884258906,-3.27720427513123,0.0636396297456706
+6391,86043,442097.952,86143,441997.952,90,63,0,NA,NA,NA,NA,0.0302197834559775,0.305,30.5,2,95.1357986803744,0.934893713988086,30.25,178.059018244509,128.062484741211,-3.18432172139486,-3.2433180809021,0.0565529092963551
+6392,86043,441997.952,86143,441897.952,91,63,0,NA,NA,NA,NA,0.0152578138130775,0,0,0,NA,NA,0,NA,NA,-3.22586359083652,-3.28426504135132,0.0627593069156478
+6393,86043,441897.952,86143,441797.952,92,63,0,NA,NA,NA,NA,-0.0596634760030429,0,0,0,NA,NA,0,NA,NA,-3.30676939090093,-3.32911586761475,0.0423968374138401
+6394,86043,441797.952,86143,441697.952,93,63,0,NA,NA,NA,NA,-0.021129658969345,0.0775,7.75,1,86.3573366287605,0.89159891598916,7.75,209.489478818832,172.409393310547,-3.35940377414227,-3.37977409362793,0.0306585317199312
+6395,86043,441697.952,86143,441597.952,94,63,0,NA,NA,NA,NA,0.235818305324356,0.9675,96.75,1,99.9123308655226,1,96.75,163.951441052656,103.07763671875,-3.35430765151978,-3.37704610824585,0.0489482297580286
+6396,86043,441597.952,86143,441497.952,95,63,0,NA,NA,NA,NA,0.0470463827392086,0.575,57.5,2,96.2353283547927,0.917729329494035,52.5,109.475992368615,53.8516464233398,-3.29505097866058,-3.34468531608582,0.0805821714870326
+6397,86043,441497.952,86143,441397.952,96,63,0,NA,NA,NA,NA,0.112466926677153,0.9925,99.25,1,99.9801514397,1,99.25,76.7197463950823,30,-3.18826925754547,-3.27641224861145,0.128688849429456
+6398,86043,441397.952,86143,441297.952,97,63,30.5,0.101666666666667,9.33442630547915,0.350125549278092,10.3934466291663,0.0921072895720135,0.855,85.5,1,99.5711782059382,0.88274796141342,85.5,18.7194304549903,0,-2.82135544717312,-3.13808345794678,0.344516464447565
+6399,86043,441297.952,86143,441197.952,98,63,25.25,0.0841666666666667,14.8161495761653,0.488528138528139,25.1704696128904,0.0749686283036135,0.79,79,1,99.3416426267051,0.776286353467561,79,11.1130050647108,0,-2.44530089696248,-2.67224812507629,0.236087781282412
+6400,86043,441197.952,86143,441097.952,99,63,65,0.102916666666667,10.6601044791775,0.431561626204483,10,0.0606318905997614,0.485,48.5,7,89.2844286557136,0.730312837108954,18.75,1.85474201084412,0,-2.41570803523064,-2.56954455375671,0.179829337867929
+6401,86143,451097.952,86243,450997.952,0,64,15.75,0.0196875,4.89093465574215,0.241916023166023,11.3627124296868,0.00738864328753834,0.07,7,2,78.265617197666,0.85663082437276,5.25,2.03825242178781,0,-3.08078935411241,-3.15765738487244,0.115743298326551
+6402,86143,450997.952,86243,450897.952,1,64,27.25,0.0545,7.5802856487016,0.184358144552319,11.6568542494924,0.0085377004226757,0.1925,19.25,4,84.7631156331875,0.754143143325442,12.5,4.88851601736886,0,-3.02214187383652,-3.09846639633179,0.118801490707187
+6403,86143,450897.952,86243,450797.952,2,64,32.75,0.0363888888888889,6.54868142128536,0.311569945084438,12.4845199749998,-0.00806236346164951,0.0325,3.25,2,65.015479876161,0.712891185759403,2.25,6.17507685147799,0,-2.97586462232802,-3.0606517791748,0.133588475513782
+6404,86143,450797.952,86243,450697.952,3,64,31.5,0.039375,6.77651019277695,0.349530677655678,15.637236513939,0.00867964086516622,0.09,9,3,76.1789600256796,0.725274725274725,5.25,7.10450749927097,0,-3.01350158452988,-3.08110690116882,0.107359050612496
+6405,86143,450697.952,86243,450597.952,4,64,36,0.0257142857142857,5.05196340489429,0.298350153833051,10.8829056982141,0.00976175791278365,0.0525,5.25,2,72.8497686088748,0.83509234828496,3,2.2414794195266,0,-3.1408089266883,-3.16516304016113,0.0525868084319943
+6406,86143,450597.952,86243,450497.952,5,64,35.75,0.0715,11.9226859392404,0.3851698091449,15.2360679774998,0.0188446761843943,0.07,7,6,62.7813238026564,0.59378733572282,3,5.61953810283116,0,-3.1148736278216,-3.2532787322998,0.173880037636589
+6407,86143,450497.952,86243,450397.952,6,64,56.25,0.28125,20.6117476335393,0.563914027149321,10,0.023934654918412,0.1925,19.25,3,90.2824705075199,0.717719905299581,17.25,2.06678098207944,0,-3.28387522697449,-3.60469388961792,0.420990262445696
+6408,86143,450397.952,86243,450297.952,7,64,43.25,0.108125,7.3274290373879,0.205637254901961,25.2744305716161,0.0114094087391845,0.085,8.5,3,81.5368936496304,0.785323965651835,7.5,8.83258847629323,0,-3.64361888170242,-3.96023917198181,0.43665171465822
+6409,86143,450297.952,86243,450197.952,8,64,10.25,0.00931818181818182,4.33029714731971,0.103174603174603,13.2526658538426,-0.000976069124294554,0.0075,0.75,1,44.4894453484604,1,0.75,22.2762438456217,20.6155281066895,-3.9893598291609,-4.08980798721313,0.191781179985434
+6410,86143,450197.952,86243,450097.952,9,64,22.25,0.0247222222222222,4.37082606413864,0.239536878216123,14.2185458614848,-0.00241248606530462,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-4.10417795181274,-4.13132572174072,0.0620545504180119
+6411,86143,450097.952,86243,449997.952,10,64,11,0.01,2.91809303953128,0.152813852813853,14.7024999813136,0.00194427388288204,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,6.6502815246582,5,-4.13763709863027,-4.1399998664856,0.0092710728264131
+6412,86143,449997.952,86243,449897.952,11,64,19,0.0135714285714286,4.56907964666396,0.125887635756057,11.4364139787367,-0.00761641107519722,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,11.5920949935913,7.07106781005859,-4.1399998664856,-4.1399998664856,6.49240636497733e-07
+6413,86143,449897.952,86243,449797.952,12,64,23,0.0575,10.8544517034239,0.270555555555556,28.5531378633712,-0.0211661230281425,0,0,0,NA,NA,0,NA,NA,-4.14011959234873,-4.14143657684326,0.000572748646385693
+6414,86143,449797.952,86243,449697.952,13,64,12.75,0.0115909090909091,3.62892039685671,0.125312187812188,14.9956246796786,-0.00841703518282884,0,0,0,NA,NA,0,NA,NA,-4.14123423894246,-4.14590692520142,0.00221273162452922
+6415,86143,449697.952,86243,449597.952,14,64,18,0.045,11.3289148127943,0.444775132275132,15.5901699437495,-0.00986780910187918,0.01,1,1,52.6315789473684,0.747474747474748,1,8.31285190582275,5,-4.11990348498027,-4.1399998664856,0.0346945230547062
+6416,86143,449597.952,86243,449497.952,15,64,9.25,0.0185,5.50960270884866,0.229949874686717,35.4772725556485,-0.000338777772340109,0.1025,10.25,1,88.8238145380415,0.919260425497558,10.25,4.87991947081031,0,-3.98539678255717,-4.05477952957153,0.139853298891021
+6417,86143,449497.952,86243,449397.952,16,64,61.75,0.30875,21.5271632504364,0.790277777777778,14.142135623731,0.050429954668507,0.3775,37.75,5,90.1516366515768,0.739028315427776,23.75,2.08186264543344,0,-3.57811077435811,-3.83324456214905,0.291714690553836
+6418,86143,449397.952,86243,449297.952,17,64,51.5,0.103,11.9009763998568,0.441807749492759,10.2360679774998,0.018209585380464,0.275,27.5,4,92.916230587703,0.81978859816323,26,1.47630493857644,0,-3.14480728573269,-3.32337307929993,0.183448575183357
+6419,86143,449297.952,86243,449197.952,18,64,58.25,0.194166666666667,16.2289830412717,0.590483276643991,12.1676051329096,0.0163044634778635,0.53,53,3,95.3630900084187,0.789394103034885,44,0.875838747564352,0,-2.88476246595383,-3.1038806438446,0.365426557941506
+6420,86143,449197.952,86243,449097.952,19,64,84,0.42,18.3628581257622,0.435323383084577,15,0.0659162405878305,0.8,80,1,99.3787684802637,0.933774834437086,80,0.566291260719299,0,-2.05584112803141,-2.63992118835449,0.652316055459605
+6421,86143,449097.952,86243,448997.952,20,64,22.75,0.02275,5.55063869472676,0.35719696969697,14.6243482457912,0.0562195151095511,0.6375,63.75,3,95.963348253332,0.867263021209061,49.75,9.19051907857259,0,-1.26239725616243,-1.51515483856201,0.540124240338337
+6422,86143,448997.952,86243,448897.952,21,64,54.25,0.0904166666666667,10.5033750319086,0.409087514934289,11.7314060253863,0.0783439364191145,0.8125,81.25,3,98.4996486519973,0.834692767808592,79.75,3.67127765362079,0,-0.204586618967975,-0.9366175532341,0.790361057306809
+6423,86143,448897.952,86243,448797.952,22,64,93,0.93,37.8810488643035,0.889784946236559,NA,0.0615732601424679,0.74,74,1,99.1448611187463,0.723795055931501,74,0.27027027027027,0,0.286183964461088,-0.402168124914169,0.788192449193501
+6424,86143,448797.952,86243,448697.952,23,64,63.25,0.105416666666667,8.09591691331916,0.24371408045977,13.0693654216063,0.0571267276674916,0.6325,63.25,3,97.9156320555571,0.845001291655903,62.25,1.8902164202905,0,-0.465402658407887,-0.808228135108948,1.05298197656188
+6425,86143,448697.952,86243,448597.952,24,64,54.5,0.2725,22.9180467403681,0.804409947482237,25,0.0270793310465558,0.2975,29.75,3,92.0627146439193,0.868195597732964,24.5,0.689672838739988,0,-1.67289383543862,-3.1182553768158,1.80498740990652
+6426,86143,448597.952,86243,448497.952,25,64,47.25,0.1575,16.0413352971854,0.761197377501725,23.3333333333333,0.0344100888668618,0.38,38,3,93.2843819917512,0.861255636489768,30.5,2.82839560508728,0,-2.90483615795771,-3.79798555374146,0.877978391708274
+6427,86143,448497.952,86243,448397.952,26,64,51.25,0.170833333333333,20.4779125675016,0.656240273887333,10.3934466291663,0.00132562335382772,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,0,0,-2.43974335988363,-2.66845703125,0.22274067069245
+6428,86143,448397.952,86243,448297.952,27,64,1.75,0.00875,3.80980824804244,0.284722222222222,92.1954445729289,-0.0167792126670884,0,0,0,NA,NA,0,NA,NA,-2.09502918521563,-2.24966788291931,0.179835414727045
+6429,86143,448297.952,86243,448197.952,28,64,4.75,0.011875,3.90411376749341,0.157738095238095,19.7458640941704,-0.127644639567861,0,0,0,NA,NA,0,NA,NA,-1.85363374816047,-1.91448223590851,0.102774406742372
+6430,86143,448197.952,86243,448097.952,29,64,5.5,0.01375,7.07347374369734,0.169791666666667,16.6339197367066,-0.0520510696896235,0.0025,0.25,1,0,NA,0.25,5,5,-1.70867896080017,-1.76848912239075,0.071648775345074
+6431,86143,448097.952,86243,447997.952,30,64,3,0.03,17.4619737705261,0.222222222222222,NA,-0.010981635580174,0,0,0,NA,NA,0,NA,NA,-1.60672995779249,-1.64081919193268,0.0492361144840525
+6432,86143,447997.952,86243,447897.952,31,64,2,0.02,11.6087348825783,0.208333333333333,NA,-0.110251420522109,0,0,0,NA,NA,0,NA,NA,-1.54600158002641,-1.58681333065033,0.0755729072660442
+6433,86143,447897.952,86243,447797.952,32,64,12.25,0.1225,15.4481581499074,0.758503401360544,NA,-0.0534632318747754,0.1375,13.75,1,91.0694765797212,0.951182303585049,13.75,1.16622064763849,0,-1.26029214511315,-1.50414514541626,0.557980395631758
+6434,86143,447797.952,86243,447697.952,33,64,90.5,0.905,37.3211077259322,0.892265193370166,NA,0.0673397815418502,0.7325,73.25,1,99.1136185490844,0.782892616652815,73.25,0.464891479283876,0,-0.0301231028926041,-0.996040165424347,1.095458687234
+6435,86143,447697.952,86243,447597.952,34,64,96.75,0.9675,37.7062276654057,0.921188630490956,NA,0.0781308282585815,0.9025,90.25,1,99.7229916897507,0.760083970610287,90.25,0.0692520775623269,0,0.744210081795851,0.30411770939827,0.734592614875555
+6436,86143,447597.952,86243,447497.952,35,64,72.25,0.7225,36.6950410383994,0.832756632064591,NA,0.0649892264034133,0.7225,72.25,2,98.3239884491998,0.82114467408585,70.5,2.59857526864972,0,1.30068536599477,0.952311098575592,0.89268536475199
+6437,86143,447497.952,86243,447397.952,36,64,45.25,0.0646428571428571,8.23013455381869,0.25141424991049,13.0445753749688,0.0230340144877664,0.2925,29.25,2,93.5996162363547,0.819987999199947,26.75,2.24296074239617,0,1.32466806968053,1.02383148670197,0.467784645119756
+6438,86143,447397.952,86243,447297.952,37,64,62.75,0.1255,9.43566408545644,0.264060356652949,10.2360679774998,0.0184643952314218,0.1075,10.75,5,71.2577855271659,0.688764394646748,4.75,1.95679385163063,0,1.37393833531274,1.19368290901184,0.383594470961585
+6439,86143,447297.952,86243,447197.952,38,64,84.5,0.4225,18.231145781856,0.433234421364985,10,0.0287196586553182,0.275,27.5,5,87.6592914036915,0.757407728296656,17,0.272727272727273,0,1.17216765383879,0.64895224571228,0.570155625554181
+6440,86143,447197.952,86243,447097.952,39,64,48.25,0.24125,16.9260004325232,0.457897033158813,20.6155281280883,0.0232665611390257,0.17,17,5,81.5143776220653,0.807633896932267,11.75,1.55360221862793,0,0.555148018731011,0.120238557457924,0.620499188712527
+6441,86143,447097.952,86243,446997.952,40,64,13.75,0.0114583333333333,3.2338502424476,0.23737974987975,13.5810117337383,0.00397300700540654,0.0275,2.75,2,61.6023954152147,0.725792630676949,1.75,4.65275816483931,0,0.0748792133914928,-0.110832013189793,0.335613887734026
+6442,86143,446997.952,86243,446897.952,41,64,27.25,0.02725,3.95439261926394,0.21359357696567,15.9563435324146,-0.00327098762822061,0.1225,12.25,2,88.8214443456101,0.701533034866368,11.75,2.23397165415238,0,-0.11099809801413,-0.365060240030289,0.345838200158151
+6443,86143,446897.952,86243,446797.952,42,64,36,0.06,13.3722505485796,0.33117709417299,11.2267799624997,-0.00640116248432605,0.0375,3.75,2,72.3135955990145,0.622195985832349,3.25,2,0,0.0827023590294023,-0.478296279907227,0.87939460247809
+6444,86143,446797.952,86243,446697.952,43,64,36.75,0.0735,9.94627581900571,0.316996391688441,18.770329614269,0.0252111593401605,0.245,24.5,2,90.2620438383955,0.766706803130644,16.25,0.459183673469388,0,0.697809125607212,-0.172129169106483,1.31603661405189
+6445,86143,446697.952,86243,446597.952,44,64,49.5,0.099,7.37086028577531,0.220175438596491,10.4721359549996,0.033649379644994,0.3175,31.75,4,91.2753767654062,0.854114139828426,25.25,1.04948245071051,0,0.838918538557159,-0.0335153080523014,1.32555026745337
+6446,86143,446597.952,86243,446497.952,45,64,61.25,0.30625,17.5724873521904,0.411543715846995,11.1803398874989,0.0582554299305048,0.66,66,1,98.7846583695088,0.82174688057041,66,2.22491397279682,0,-0.0389038858314355,-2.34864258766174,1.38006590178523
+6447,86143,446497.952,86243,446397.952,46,64,59.5,0.595,31.0911880078236,0.896358543417367,NA,0.0384983988185195,0.53,53,4,93.4641616905541,0.832595312668755,42,3.54402298297522,0,-1.25054179359641,-2.5,1.26113203624548
+6448,86143,446397.952,86243,446297.952,47,64,40.75,0.20375,27.8616859187992,0.580408902691511,20,-0.00248233939761121,0.1375,13.75,2,88.0050396679281,0.804729214340198,12,1.08117474642667,0,-1.32760014136632,-2.46633982658386,0.627774892614985
+6449,86143,446297.952,86243,446197.952,48,64,15.25,0.0217857142857143,5.47551488738154,0.228174603174603,10.1686199839284,-0.0514844220087252,0.0025,0.25,1,0,NA,0.25,0,0,-1.23270505004459,-1.41137862205505,0.239399064371621
+6450,86143,446197.952,86243,446097.952,49,64,4.25,0.0425,11.0371384885172,0.558823529411765,NA,-0.0908260990975032,0,0,0,NA,NA,0,NA,NA,-1.23220528165499,-1.44718050956726,0.207930035350525
+6451,86143,446097.952,86243,445997.952,50,64,18,0.06,14.4012955753315,0.398243114909782,25.4556004987109,0.0153105085335847,0.1275,12.75,3,80.5952974758194,0.762869281691532,6.5,19.7064220952053,0,-1.12964448663923,-1.25606298446655,0.184359719049361
+6452,86143,445997.952,86243,445897.952,51,64,30.75,0.1025,10.013786170796,0.317771553065671,10.3934466291663,0.0141049795010917,0.1475,14.75,3,85.8642526596704,0.861997584957737,11.75,6.08632233183263,0,-0.765535555779934,-1.05086731910706,0.448585907604855
+6453,86143,445897.952,86243,445797.952,52,64,15,0.0136363636363636,3.87532319024242,0.254648760330578,15.8502189057581,0.0267345068817076,0.2175,21.75,4,82.8639226956426,0.711429454807791,7,4.0106807138728,0,0.15137097498195,-0.406398415565491,0.945889837005626
+6454,86143,445797.952,86243,445697.952,53,64,69,0.0985714285714286,11.8257181124332,0.377097505668934,10,0.0561592874214693,0.5925,59.25,1,98.4255810267197,0.833815729341218,59.25,1.03013559333383,0,1.39645354946454,0.53005850315094,0.709707575597032
+6455,86143,445697.952,86243,445597.952,54,64,34.75,0.0434375,9.66390430542775,0.367429792429792,10.7725424859374,0.00306426932711474,0.1625,16.25,2,91.3180386864597,0.85206709813763,16,0.692307692307692,0,0.990819055173132,-0.556588351726532,1.56498496457619
+6456,86143,445597.952,86243,445497.952,55,64,15,0.03,4.25482499921009,0.121428571428571,25.8324195285548,-0.0111656648438122,0,0,0,NA,NA,0,NA,NA,-1.13430404663086,-1.43266308307648,0.67284907136416
+6457,86143,445497.952,86243,445397.952,56,64,32.5,0.065,9.67023528317724,0.332479972135145,21,-0.0407878584701757,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-1.47770915428797,-1.5241037607193,0.117486149241155
+6458,86143,445397.952,86243,445297.952,57,64,63.5,0.127,13.3577482420351,0.529511494252874,10.2360679774998,0.0213477678457275,0.2075,20.75,2,92.6160139529838,0.974248374428636,20.5,0,0,-1.32913629213969,-1.50891435146332,0.355983704690676
+6459,86143,445297.952,86243,445197.952,58,64,68.5,0.3425,25.6218841168706,0.713162086818001,10,0.0410012877036115,0.2875,28.75,2,91.7285796210723,0.885290148448043,19.75,0,0,-1.25772136449814,-1.5802309513092,0.33525664935923
+6460,86143,445197.952,86243,445097.952,59,64,77.5,0.3875,29.4167140325673,0.815718261945261,10,0.0505082016038068,0.4525,45.25,3,93.2493313767676,0.852790840318953,36.25,2.3313941007161,0,-1.57125757800208,-1.60405766963959,0.0988837270098028
+6461,86143,445097.952,86243,444997.952,60,64,54,0.108,15.5250117332575,0.456791341412573,10,0.0496755452427806,0.3275,32.75,3,94.2898067689431,0.925339472087851,31.75,5.53242791154002,0,-1.53726400931676,-1.62706708908081,0.135966209659797
+6462,86143,444997.952,86243,444897.952,61,64,31.25,0.0446428571428571,8.20290448678613,0.383158093290984,14.5777251860142,0.0390378813384086,0.4125,41.25,2,95.5837412609522,0.876819708846585,38,8.81771433281176,0,-1.2265427576171,-1.47392153739929,0.439693349968145
+6463,86143,444897.952,86243,444797.952,62,64,70.75,0.35375,25.0659001144744,0.80340573286052,10,0.0270939719449962,0.3325,33.25,1,96.1356845313251,0.888569040765159,33.25,4.15750576678972,0,-0.145309487280125,-0.839815557003021,0.99310122329017
+6464,86143,444797.952,86243,444697.952,63,64,85.25,0.284166666666667,15.5176481346183,0.549019607843137,11.380711874577,0.0349496385545353,0.465,46.5,4,94.1829220037349,0.891327972179961,41.5,0.264205030215684,0,-0.381709526810381,-0.711137771606445,0.566264932208338
+6465,86143,444697.952,86243,444597.952,64,64,94.25,0.9425,38.887433398351,0.900972590627763,NA,0.0479854808670643,0.3775,37.75,5,87.6035966095198,0.750627056964319,16,0.377954091457342,0,-1.04547589520613,-1.35518717765808,0.392076499331163
+6466,86143,444597.952,86243,444497.952,65,64,96.5,0.965,37.9918571649622,0.916234887737478,NA,0.023624223804627,0.21,21,6,81.9312593227266,0.702659077393594,9.5,0.119047619047619,0,-1.40256187650892,-1.58625626564026,0.215479075305863
+6467,86143,444497.952,86243,444397.952,66,64,61.5,0.615,31.5581739575065,0.909891598915989,NA,0.062697977855878,0.605,60.5,3,96.1571908345003,0.82636944102162,52.75,4.88013212345848,0,-1.65103104379442,-1.87479305267334,0.359376718960133
+6468,86143,444397.952,86243,444297.952,67,64,39,0.13,10.4762930038348,0.328976034858388,10,0.0453261694851517,0.405,40.5,3,93.4884910748483,0.768766567029496,30.5,9.76798300095546,0,-1.81728480259577,-1.98264718055725,0.265399999624919
+6469,86143,444297.952,86243,444197.952,68,64,67.75,0.33875,29.8448943380229,0.689341676841677,10,0.0556946760950814,0.4475,44.75,3,93.7862626430747,0.846892045221528,35.75,0.402631663743344,0,-1.43905834356944,-1.68851351737976,0.194961278182312
+6470,86143,444197.952,86243,444097.952,69,64,97.25,0.9725,38.3391952495361,0.91216795201371,NA,0.041407495366584,0.4275,42.75,4,90.1403493946058,0.811464614958065,21.25,0,0,-1.4437918762366,-1.66486191749573,0.196536509230126
+6471,86143,444097.952,86243,443997.952,70,64,93.5,0.4675,29.1740940191241,0.892193775100402,10,0.0550704876253712,0.5075,50.75,2,95.5829877250434,0.843811011323702,40.5,0.123152709359606,0,-1.35003120369381,-1.47961688041687,0.173617120299587
+6472,86143,443997.952,86243,443897.952,71,64,75,0.25,23.0882437152589,0.737184952429818,10,0.0197319201484061,0.245,24.5,2,90.9685778698639,0.804334738109573,17.5,1.16471566959303,0,-1.21960815787315,-1.40318810939789,0.186325551919179
+6473,86143,443897.952,86243,443797.952,72,64,88.25,0.8825,38.0418630849879,0.850330500472143,NA,0.0511827344883568,0.485,48.5,2,97.1587268981969,0.919093851132686,48,0.618556701030928,0,-0.926149792141385,-1.10443115234375,0.226749329840363
+6474,86143,443797.952,86243,443697.952,73,64,97.25,0.48625,18.9197432015944,0.462628865979381,10,0.00492780969456362,0.18,18,3,83.9508612761417,0.750336086038026,9,0,0,-1.02455255885919,-1.3471097946167,0.279072005037817
+6475,86143,443697.952,86243,443597.952,74,64,88.75,0.8875,37.4990649532394,0.857746478873239,NA,0.013000159056246,0.2475,24.75,3,90.6199996447199,0.798424726566874,19.25,0.980515836465238,0,-1.80958826012082,-2.14175748825073,0.546537380181048
+6476,86143,443597.952,86243,443497.952,75,64,30.5,0.1525,16.7138704750964,0.666071428571429,60,0.0637912962644623,0.575,57.5,3,94.7508099163504,0.868366927190457,49.5,18.4847912663999,0,-2.40369999408722,-2.6665461063385,0.401895835172494
+6477,86143,443497.952,86243,443397.952,76,64,12.5,0.0208333333333333,4.65388523542342,0.197916666666667,19.6426295571603,-0.011302664315981,0.085,8.5,3,81.7665378292013,0.765807962529274,7.5,6.01333595724667,0,-2.56172572241889,-2.89309072494507,0.596980582785885
+6478,86143,443397.952,86243,443297.952,77,64,19,0.095,12.5617096414132,0.352222222222222,14.142135623731,0.0371831604748149,0.5825,58.25,2,97.8450690639084,0.944937710785326,57.75,26.8261016632866,0,-2.52053521739112,-3.00412464141846,1.19875185236239
+6479,86143,443297.952,86243,443197.952,78,64,31,0.155,22.2290025149335,0.539090909090909,36.0555127546399,-0.0500780046818909,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,0.714285714285714,0,-1.52906559407711,-2.94542598724365,1.6510243505888
+6480,86143,443197.952,86243,443097.952,79,64,47.5,0.158333333333333,18.1509048467432,0.506195002168929,19.3596218431065,0.0141633907151925,0.2625,26.25,2,94.230482276273,0.949780288763339,26,0.619047619047619,0,-1.20284171236886,-2.17762231826782,1.24080256093509
+6481,86143,443097.952,86243,442997.952,80,64,24.5,0.0188461538461538,2.74775877709559,0.107723577235772,14.7461895213154,-0.0490380563971121,0.045,4.5,4,61.5052550829673,0.612177622648827,2.75,6.37706036037869,0,-1.92804314941168,-2.68867206573486,1.17140727494767
+6482,86143,442997.952,86243,442897.952,81,64,2.5,0.00625,2.35531588805558,0.111111111111111,28.75,-0.0340554307965544,0,0,0,NA,NA,0,NA,NA,-2.77470609876845,-3.05172538757324,0.532101546427632
+6483,86143,442897.952,86243,442797.952,82,64,2.75,0.0275,6.67918259830476,0.545454545454546,NA,-0.0189460662661986,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,48.9101594289144,11.1803398132324,-3.03038817644119,-3.20381331443787,0.288626611005011
+6484,86143,442797.952,86243,442697.952,83,64,0.25,0.0025,0,0,NA,0.100397347757607,0.9175,91.75,1,99.7684657792434,0.982559407019839,91.75,56.6581808812612,0,-3.17800752321879,-3.2455153465271,0.130136117714367
+6485,86143,442697.952,86243,442597.952,84,64,0.25,0.0025,0,0,NA,0.103711436078302,0.955,95.5,1,99.8774262095089,0.662369551872315,95.5,46.5827428807763,0,-3.28685313463211,-3.34474873542786,0.0641161104498284
+6486,86143,442597.952,86243,442497.952,85,64,0,NA,NA,NA,NA,0.126898824730888,0.9175,91.75,1,99.7684657792434,0.773272291257903,91.75,91.9071220896874,40,-3.35494414965312,-3.36978578567505,0.0259799596739398
+6487,86143,442497.952,86243,442397.952,86,64,0,NA,NA,NA,NA,0.136048534661531,1,100,1,100,NA,100,155.084028224945,103.07763671875,-3.33952343463898,-3.36960983276367,0.0325902906889933
+6488,86143,442397.952,86243,442297.952,87,64,0,NA,NA,NA,NA,0.0781136559925653,0.685,68.5,1,98.9039779649455,0.981471187696869,68.5,181.832324842467,140.356689453125,-3.30524010128445,-3.32004308700562,0.0303274376383058
+6489,86143,442297.952,86243,442197.952,88,64,0,NA,NA,NA,NA,0.00815026534823119,0.45,45,2,96.6753999688446,0.967239967239967,44.5,65.4887921015422,25,-3.32076332966487,-3.33708333969116,0.0311368309976323
+6490,86143,442197.952,86243,442097.952,89,64,0.25,0.0025,0,0,NA,0.102372100427747,0.9775,97.75,1,99.9397711850087,0.520814615154239,97.75,63.0866150624307,0,-3.32095175319248,-3.33724355697632,0.0361041476661106
+6491,86143,442097.952,86243,441997.952,90,64,0,NA,NA,NA,NA,0.0226735755836035,0.2825,28.25,1,95.3608329643832,0.897519983603197,28.25,109.953366710021,80,-3.30489831500583,-3.31998872756958,0.0384759968444646
+6492,86143,441997.952,86243,441897.952,91,64,0,NA,NA,NA,NA,0.00624676339118537,0,0,0,NA,NA,0,NA,NA,-3.31944286823273,-3.33859014511108,0.0360002163496061
+6493,86143,441897.952,86243,441797.952,92,64,0,NA,NA,NA,NA,-0.086156305708937,0,0,0,NA,NA,0,NA,NA,-3.32976818084717,-3.33454442024231,0.0145600277835175
+6494,86143,441797.952,86243,441697.952,93,64,0,NA,NA,NA,NA,0.0688507054036563,0.36,36,1,96.4912280701754,0.964488636363636,36,289.17466184828,234.093994140625,-3.32886495192846,-3.3423171043396,0.0233559110937041
+6495,86143,441697.952,86243,441597.952,94,64,0,NA,NA,NA,NA,0.169450502372347,0.7475,74.75,1,99.1756322950922,0.978896646325379,74.75,252.445343936167,187.949462890625,-3.30910886658563,-3.33957314491272,0.0468395238943747
+6496,86143,441597.952,86243,441497.952,95,64,0,NA,NA,NA,NA,0.0999651629322761,0.805,80.5,1,99.3970714465752,0.974696356275303,80.5,201.952329694855,143.17822265625,-3.26844362417857,-3.31105208396912,0.0632547289495473
+6497,86143,441497.952,86243,441397.952,96,64,0,NA,NA,NA,NA,0.108761726939119,0.9075,90.75,1,99.7382749359844,0.984263739722255,90.75,133.330472604631,65,-3.21262494723002,-3.26899552345276,0.0795649906132705
+6498,86143,441397.952,86243,441297.952,97,64,0,NA,NA,NA,NA,0.0477552498481236,0.365,36.5,2,94.3242266909093,0.876139078120853,32,62.9083204922611,26.9258232116699,-3.07244785626729,-3.16176462173462,0.175989879859839
+6499,86143,441297.952,86243,441197.952,98,64,36.75,0.18375,13.691318378365,0.363584474885845,10,0.0810786245390773,0.8225,82.25,1,99.4598121429477,0.736907758953074,82.25,13.4250118812167,0,-2.79761804474725,-2.95592474937439,0.255520210082121
+6500,86143,441197.952,86243,441097.952,99,64,93.4210526315789,0.8875,36.973460498283,0.886384976525822,NA,0.0677265116665512,0.6225,62.25,5,93.242336448114,0.738510075888924,24.5,0.542168674698795,0,-2.36004642645518,-2.57846689224243,0.256059375510217
+6501,86243,451097.952,86343,450997.952,0,65,20,0.02,5.16068770378897,0.219607614607615,12.5743775211645,0.00905516204926243,0.0675,6.75,7,63.5177351777592,0.675790261238232,4.75,9.49615944756402,0,-3.32193110386531,-3.45443868637085,0.153219147100372
+6502,86243,450997.952,86343,450897.952,1,65,41,0.1025,9.07065121443691,0.244123931623932,13.0785509248927,0.0271082504840888,0.2025,20.25,8,76.8788750109486,0.686520376175549,8.5,6.71214313271605,0,-3.23140673339367,-3.38180565834045,0.13312360233761
+6503,86243,450897.952,86343,450797.952,2,65,47,0.156666666666667,19.9349247977672,0.500021190930282,15.1650325226546,-0.000348577292279515,0.0975,9.75,1,88.4075627573592,0.982953334753889,9.75,2.82878142136794,0,-3.11188473304113,-3.21621942520142,0.0975612285502371
+6504,86243,450797.952,86343,450697.952,3,65,21.25,0.0193181818181818,3.96624410436262,0.162018309559293,13.429726395223,-0.0208301057422432,0.0875,8.75,4,76.140885149532,0.697685403873406,4.75,4.17940466744559,0,-3.0009940713644,-3.09050583839417,0.0899593970582322
+6505,86243,450697.952,86343,450597.952,4,65,28.25,0.0235416666666667,6.42998804520895,0.3447848583878,10.7673413554016,0.00291901757137566,0.0925,9.25,3,76.3120963516624,0.837420403739331,6,2.48840723810969,0,-3.07502609491348,-3.18130731582642,0.144447196777427
+6506,86243,450597.952,86343,450497.952,5,65,51,0.1275,11.4199028263178,0.304599436392915,12.3020240662047,0.0217913050695824,0.1725,17.25,4,87.7530558356697,0.830216473995656,15,0.8995806928994,0,-3.13139249384403,-3.43313097953796,0.326201194861114
+6507,86243,450497.952,86343,450397.952,6,65,45.5,0.11375,10.8072148684386,0.392180475272961,19.6204799064582,-0.0201534617489233,0.0275,2.75,2,60.517542786349,0.725792630676949,1.5,0.909090909090909,0,-3.60365474224091,-3.79833459854126,0.386594175749732
+6508,86243,450397.952,86343,450297.952,7,65,11,0.011,4.59490560983201,0.147222222222222,16.345979404597,0.00134679962277801,0.035,3.5,2,66.9463328122734,0.689119170984456,2.5,10.3189007895333,0,-3.96649834513664,-4.06763553619385,0.150199280637536
+6509,86243,450297.952,86343,450197.952,8,65,8.25,0.00916666666666667,2.68632340942482,0.130658436213992,15.225633035518,0.00303702795032223,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-4.10676352183024,-4.13074159622192,0.0503665902488112
+6510,86243,450197.952,86343,450097.952,9,65,4.25,0.00607142857142857,2.34948820584674,0.128968253968254,16.7301465013257,0.00404519430909943,0.005,0.5,1,30.8308651382582,1,0.5,12.6612377166748,11.1803398132324,-4.13674469788869,-4.1399998664856,0.0108100485251942
+6511,86243,450097.952,86343,449997.952,10,65,9.5,0.0059375,2.7863396422747,0.0916193181818182,13.0626838088964,-9.15579754655482e-05,0,0,0,NA,NA,0,NA,NA,-4.13999968767166,-4.1399998664856,0.000268621846876583
+6512,86243,449997.952,86343,449897.952,11,65,39.5,0.131666666666667,18.29933486,0.3611344734137,22.1564418020437,-0.0158275393273834,0,0,0,NA,NA,0,NA,NA,-4.1399998664856,-4.1399998664856,0
+6513,86243,449897.952,86343,449797.952,12,65,10.25,0.0146428571428571,5.43110310525113,0.223639455782313,20.8629259034421,-0.0111012127279901,0,0,0,NA,NA,0,NA,NA,-4.13996714353561,-4.1399998664856,0.000579128008791099
+6514,86243,449797.952,86343,449697.952,13,65,11,0.0183333333333333,5.53117326762313,0.147376543209877,17.4658074462539,0.00508571377515182,0.0175,1.75,1,65.4774238937655,1,1.75,13.303655896868,10,-4.13568699359894,-4.1399998664856,0.0125355409954113
+6515,86243,449697.952,86343,449597.952,14,65,4.75,0.00678571428571429,2.68514317921269,0.165816326530612,21.5515828084209,0.00726682604403322,0.0425,4.25,4,62.6890698911149,0.74934725848564,3.25,18.0933237636791,0,-4.0873941630125,-4.13907194137573,0.0772082342557977
+6516,86243,449597.952,86343,449497.952,15,65,18.75,0.0375,8.2585863239627,0.321786492374728,11,0.0175472059939602,0.095,9.5,4,77.6071855324068,0.719372095062703,4.75,10.9768953323364,0,-3.89550524950027,-4.04559469223022,0.25497089408206
+6517,86243,449497.952,86343,449397.952,16,65,63,0.105,10.3010601993492,0.346067821067821,10.6903559372885,0.0489014284102996,0.5525,55.25,2,97.5469949979813,0.701686825405435,53.5,1.95989631204044,0,-3.34689819812775,-3.82359671592712,0.553297057860271
+6518,86243,449397.952,86343,449297.952,17,65,44.75,0.0639285714285714,7.49534800684586,0.286848072562358,13.2404507551754,0.0192061181550162,0.4025,40.25,2,95.521759242803,0.869953635644012,38,2.46514519401219,0,-3.14959619442622,-3.33050656318665,0.24535444973192
+6519,86243,449297.952,86343,449197.952,18,65,91.25,0.9125,37.1948920709135,0.910958904109589,NA,0.062547245392343,0.8575,85.75,1,99.5794816088838,0.902534113060429,85.75,0.0291545189504373,0,-2.53309287130833,-3.06672549247742,0.419715402247918
+6520,86243,449197.952,86343,449097.952,19,65,74.75,0.37375,17.6724329746684,0.437080536912752,33.5410196624968,0.0597011770842073,0.765,76.5,1,99.2456636792102,0.859876839116486,76.5,0.468249252419067,0,-2.1433230638504,-2.38163208961487,0.371556305771327
+6521,86243,449097.952,86343,448997.952,20,65,80.5,0.20125,10.3373303905997,0.283068783068783,10.5901699437495,0.0724355720262975,0.8625,86.25,1,99.5959799783351,0.799219185722253,86.25,0.670183198348336,0,-1.35711326698462,-1.90639054775238,0.704804832969116
+6522,86243,448997.952,86343,448897.952,21,65,70.25,0.1405,8.88390700721452,0.316380718954248,14.5952415806172,0.0756958459923044,0.825,82.5,1,99.4686117624928,0.706489337307957,82.5,1.99272440708045,0,-1.50050211325288,-1.8901242017746,0.657988027889121
+6523,86243,448897.952,86343,448797.952,22,65,74.25,0.37125,21.8142452914595,0.698426573426573,11.1803398874989,0.0602031801380508,0.65,65,3,96.7080633404743,0.700792021120563,51.75,1.22335137587327,0,-1.28550413747629,-2.1948447227478,1.0133620133826
+6524,86243,448797.952,86343,448697.952,23,65,87.25,0.8725,37.435302305918,0.864851957975167,NA,0.0546758039441193,0.5925,59.25,2,97.7695558695321,0.795039399520835,57.25,0.557261889493918,0,-2.01115722209215,-2.8862771987915,1.11846198709695
+6525,86243,448697.952,86343,448597.952,24,65,50.25,0.1675,15.2831656537517,0.607619914996964,21.1803398874989,0.0532536824898534,0.4775,47.75,4,95.4903159792149,0.848620009190928,44.75,2.95024024004712,0,-2.78442624211311,-3.50575256347656,1.00427873593831
+6526,86243,448597.952,86343,448497.952,25,65,60.25,0.200833333333333,15.1827843909993,0.450617283950617,15.8113883008419,0.0187793383845565,0.2925,29.25,2,92.6126851955786,0.913327555170345,25,1.27014313396226,0,-2.70828439295292,-3.09719300270081,0.38161717929325
+6527,86243,448497.952,86343,448397.952,26,65,5.25,0.0075,3.21042175601023,0.153769841269841,12.0503439947627,0.00405088525109932,0.0275,2.75,3,58.9473684210526,0.725792630676949,2.25,15.946964784102,5,-2.5079975326856,-2.81196689605713,0.269829209521487
+6528,86243,448397.952,86343,448297.952,27,65,0,NA,NA,NA,NA,-0.144699469815569,0,0,0,NA,NA,0,NA,NA,-2.08105272054672,-2.25165748596191,0.197996780233614
+6529,86243,448297.952,86343,448197.952,28,65,5.5,0.055,17.1023923032036,0.507575757575758,NA,-0.142095520425573,0,0,0,NA,NA,0,NA,NA,-1.8294052084287,-1.91496109962463,0.109445210429213
+6530,86243,448197.952,86343,448097.952,29,65,3.75,0.01875,6.32896919941986,0.333333333333333,10,-0.0137731449520709,0,0,0,NA,NA,0,NA,NA,-1.67422936856747,-1.76332879066467,0.0810075842450265
+6531,86243,448097.952,86343,447997.952,30,65,0,NA,NA,NA,NA,-0.0316309390333754,0,0,0,NA,NA,0,NA,NA,-1.55652717749278,-1.59983968734741,0.0654133929296324
+6532,86243,447997.952,86343,447897.952,31,65,1.75,0.00875,2.45264563223861,0.222222222222222,53.1507290636732,-0.0785485412571506,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,2,0,-1.44083754221598,-1.53609049320221,0.196615387463994
+6533,86243,447897.952,86343,447797.952,32,65,74.75,0.7475,34.7694901934137,0.897993311036789,NA,0.0599494374143978,0.6375,63.75,1,98.6713232517353,0.896118886163613,63.75,0.333333333333333,0,-0.399699966423213,-1.37337732315063,1.49529979589744
+6534,86243,447797.952,86343,447697.952,33,65,92,0.92,38.3028963246607,0.885869565217391,NA,0.0744309659535065,0.895,89.5,1,99.6998271307191,0.747155499367888,89.5,0.446927374301676,0,1.38148805499077,0.47612988948822,1.0999835635702
+6535,86243,447697.952,86343,447597.952,34,65,99,0.99,38.3380080744638,0.925084175084175,NA,0.0853048296459019,0.99,99,1,99.9734851828463,0.468085106382976,99,0.0505050505050505,0,0.493081944063306,0.389990448951721,0.211649535468768
+6536,86243,447597.952,86343,447497.952,35,65,85.25,0.8525,39.1547484034897,0.85386119257087,NA,0.0730513067106949,0.85,85,1,99.5544616363511,0.668221876620011,85,0.751045114853803,0,0.556060907741388,0.342937737703323,0.345477882440639
+6537,86243,447497.952,86343,447397.952,36,65,89.5,0.895,38.259115592501,0.871042830540037,NA,0.0673668784924666,0.845,84.5,1,99.5375969134692,0.818264425261245,84.5,0.502958579881657,0,1.08904662542045,0.469966769218445,0.645513658690775
+6538,86243,447397.952,86343,447297.952,37,65,74,0.37,19.044321356204,0.386158192090396,10,0.0518800710534561,0.5725,57.25,1,98.3071726267885,0.819220181601545,57.25,0.965996521529152,0,1.96279804905256,1.74622213840485,0.300871956153926
+6539,86243,447297.952,86343,447197.952,38,65,68.25,0.2275,13.2150266037937,0.293827160493827,10,0.0464777703856817,0.3925,39.25,3,95.2580283017238,0.845679012345679,37.25,0.828025477707006,0,1.94267663359642,1.40200257301331,0.497445244290613
+6540,86243,447197.952,86343,447097.952,39,65,80.25,0.40125,18.6015878244709,0.422135416666667,11.1803398874989,0.0457761401469861,0.45,45,2,96.7852676816624,0.858039858039858,44,0.344839265611437,0,1.13795812427998,0.734781980514526,0.721258808418957
+6541,86243,447097.952,86343,446997.952,40,65,25,0.0416666666666667,7.37269340019796,0.302666302666303,18.2837269545378,0.00169108243118899,0.005,0.5,1,30.8308651382582,1,0.5,0,0,0.197552940575406,-0.576646447181702,0.670338199677575
+6542,86243,446997.952,86343,446897.952,41,65,74.25,0.7425,36.5608543934939,0.877104377104377,NA,-0.0662077280793164,0.0575,5.75,1,83.3142722045184,0.91158267020336,5.75,0.652173913043478,0,-0.71397681782643,-1.07993268966675,0.449662410801584
+6543,86243,446897.952,86343,446797.952,42,65,42.75,0.21375,14.2340301133084,0.653942115768463,10,-0.0930792918130464,0,0,0,NA,NA,0,NA,NA,-1.08819417282939,-1.56699931621552,0.502321121466691
+6544,86243,446797.952,86343,446697.952,43,65,9,0.03,7.62756182070026,0.42483660130719,11.937129433614,0.0260598275969278,0.29,29,3,90.6046396517672,0.738430583501006,20.5,25.441514344051,0,-1.19016585250696,-1.67354881763458,0.688176468610862
+6545,86243,446697.952,86343,446597.952,44,65,44.25,0.110625,8.85268121056495,0.227601156069364,12.9489670038968,0.0356127523292525,0.38,38,3,91.9864919891456,0.734073303272055,20.5,2.30921243366442,0,-1.23405410349369,-1.79159295558929,0.794186988927874
+6546,86243,446597.952,86343,446497.952,45,65,38.5,0.385,29.647832934912,0.704545454545455,NA,0.0130139835332557,0.14,14,3,86.8078585060154,0.856149604411412,12.75,0.714285714285714,0,-1.31820778176188,-1.88086819648743,0.822183475464587
+6547,86243,446497.952,86343,446397.952,46,65,35.75,0.119166666666667,17.7458473786696,0.630967716328026,26.1744998511994,0.0117994069915949,0.1375,13.75,4,84.0386451932339,0.74370709382151,10.5,0.363636363636364,0,-1.49822468558947,-1.84495234489441,0.572389604237685
+6548,86243,446397.952,86343,446297.952,47,65,28.25,0.14125,17.3723101089038,0.582043650793651,65.7647321898295,0.0192991781640194,0.3,30,1,95.6539902192076,0.927916120576671,30,1.1351100285848,0,-1.44169483333826,-1.77739894390106,0.440861473712669
+6549,86243,446297.952,86343,446197.952,48,65,45.25,0.4525,29.3672801756323,0.876611418047882,NA,0.0337605885630455,0.445,44.5,1,97.3733506421488,0.956187190229743,44.5,2.05980472350388,0,-1.39665873845418,-1.69310593605042,0.303664289332984
+6550,86243,446197.952,86343,446097.952,49,65,48.5,0.161666666666667,13.663974619319,0.428055060408002,13.3333333333333,0.0306879036282317,0.2975,29.75,5,88.870957514319,0.81547383682615,18.5,2.12860298156738,0,-1.36355799436569,-1.63031411170959,0.250952589029886
+6551,86243,446097.952,86343,445997.952,50,65,56,0.112,9.55763349136305,0.359960445882776,11.4721359549996,0.0407187213384304,0.485,48.5,1,97.7057035934975,0.929881337648328,48.5,1.40741491809334,0,-0.984314734737078,-1.33356809616089,0.434355749066934
+6552,86243,445997.952,86343,445897.952,51,65,61.5,0.123,8.89468437981545,0.315384615384615,10.8284271247462,0.0469887714413471,0.53,53,2,96.8995826322063,0.870396371098391,51,1.04837422101003,0,0.156815192662179,-0.782434642314911,0.965290581607648
+6553,86243,445897.952,86343,445797.952,52,65,71.25,0.178125,13.8869958418302,0.562457482993197,14.6352549156242,0.0591766417604504,0.6225,62.25,3,96.4596859600683,0.789671147997612,55,0.832905796158266,0,1.20079389214516,0.696221709251404,0.627692325422897
+6554,86243,445797.952,86343,445697.952,53,65,82.25,0.274166666666667,14.5161753304423,0.472654897888543,10.3934466291663,0.0747750279592765,0.7575,75.75,4,98.0553308183788,0.906115153375341,74.5,0.138848408614055,0,1.84385054558516,1.50254952907562,0.413145793930876
+6555,86243,445697.952,86343,445597.952,54,65,28.5,0.1425,13.6020952043985,0.383480825958702,10,0.0201222485946028,0.2675,26.75,1,95.0869843258351,0.915117862384834,26.75,1.06674893102913,0,1.15039700269699,-0.0455160140991211,1.44831799999128
+6556,86243,445597.952,86343,445497.952,55,65,31,0.103333333333333,13.7712037265174,0.598888888888889,16.0092521257733,-0.0328372969317343,0.025,2.5,1,71.9760246298065,1,2.5,0,0,-1.20872940619787,-1.47171187400818,0.850747324453832
+6557,86243,445497.952,86343,445397.952,56,65,22.5,0.05625,12.8895059364367,0.506712962962963,13.9038820320221,-0.0165643720868684,0.06,6,3,72.5244459478541,0.776035834266517,4,3.80055014292399,0,-1.53355543315411,-1.59056162834167,0.109634089666451
+6558,86243,445397.952,86343,445297.952,57,65,57.5,0.071875,5.96336300580224,0.163549002347418,14.9996698732248,0.022960487859782,0.225,22.5,3,86.6827099200548,0.831697054698457,11.75,0.745234086778429,0,-1.11793039242427,-1.4909952878952,0.412663815455984
+6559,86243,445297.952,86343,445197.952,58,65,53.75,0.1075,12.0618176329168,0.297156286721504,11.634413615168,0.0276399095664783,0.2775,27.75,3,91.1962841821246,0.903114186851211,22.25,0.18018018018018,0,-1.33527802303433,-1.66452121734619,0.370959976302352
+6560,86243,445197.952,86343,445097.952,59,65,87.5,0.4375,25.2038796230323,0.846668996040065,11.1803398874989,0.0519171442210791,0.54,54,2,96.722158848994,0.832359939433268,50.5,0.863591105849655,0,-1.62843090295792,-1.74151599407196,0.123208119603226
+6561,86243,445097.952,86343,444997.952,60,65,44,0.04,4.44709691143449,0.185110192837466,14.4324978891324,-0.00299268753981778,0.1775,17.75,3,86.4264778256288,0.87355623100304,14.25,0,0,-1.59094148129225,-1.66896164417267,0.0978928988760821
+6562,86243,444997.952,86343,444897.952,61,65,26.75,0.0891666666666667,11.7055101560899,0.454264870931538,11.1803398874989,0.060720560425616,0.545,54.5,2,97.5641192678035,0.79970768148108,53.25,11.3379786955107,0,-1.52193697293599,-1.86489760875702,0.286723647129094
+6563,86243,444897.952,86343,444797.952,62,65,54.5,0.545,29.9978864517831,0.90519877675841,NA,0.0439086729479095,0.4925,49.25,2,95.2452696173119,0.908225926175855,40.25,6.33102248525862,0,-1.43217174336314,-2.00287675857544,0.704981290439002
+6564,86243,444797.952,86343,444697.952,63,65,90.75,0.9075,37.1854661780533,0.896694214876033,NA,0.031686490140778,0.3475,34.75,3,91.5886319031766,0.758650858297885,18.25,0.533396659137534,0,-0.414789655556281,-1.2197402715683,0.851060225008035
+6565,86243,444697.952,86343,444597.952,64,65,61,0.305,20.8591255476208,0.805031446540881,10,0.0306172240701562,0.285,28.5,3,90.6809405226609,0.830266820558083,21,0.63220234921104,0,-1.17144917324185,-2.0984354019165,0.740988633082946
+6566,86243,444597.952,86343,444497.952,65,65,88.75,0.8875,36.6407007872359,0.898591549295775,NA,0.03034882733367,0.255,25.5,4,89.3155954319634,0.76528404298236,16.5,0.0980392156862745,0,-1.66880105932554,-2.13058161735535,0.421962899673305
+6567,86243,444497.952,86343,444397.952,66,65,10.75,0.05375,11.3477582992667,0.459935897435897,40,0.0302745492760369,0.3225,32.25,3,91.2843307398484,0.805291669937976,17,28.0666546045348,0,-1.92729715506236,-2.22054529190063,0.365937938729331
+6568,86243,444397.952,86343,444297.952,67,65,59.5,0.2975,16.3248994933886,0.413502109704641,10,0.0676062092763641,0.665,66.5,2,98.5726243152689,0.862411389944067,66.25,2.55025127955845,0,-1.98333940654993,-2.17878007888794,0.191047815774973
+6569,86243,444297.952,86343,444197.952,68,65,80.5,0.268333333333333,19.5414791426505,0.549228130360206,10,0.0888228748567053,0.735,73.5,1,99.1240858576863,0.720222457265686,73.5,0.731292517006803,0,-1.84077554941177,-2.04726409912109,0.276117008664401
+6570,86243,444197.952,86343,444097.952,69,65,98.75,0.9875,38.2516960225596,0.923206751054852,NA,0.0311868161426901,0.3225,32.25,2,92.415987381553,0.842977153175787,24,0,0,-1.70779467374086,-1.98338973522186,0.27684320555383
+6571,86243,444097.952,86343,443997.952,70,65,60.75,0.151875,11.7181122916548,0.284840425531915,12.4883809811432,0.00970334068395459,0.11,11,3,79.1412612074861,0.772244154266626,4.75,2.20616063204679,0,-1.5169705748558,-1.67449283599854,0.205000581186841
+6572,86243,443997.952,86343,443897.952,71,65,65,0.108333333333333,8.89303896756536,0.343400228422255,11.6666666666667,0.0348237853046157,0.3375,33.75,2,94.5555352080388,0.932504985427213,32.25,0.0740740740740741,0,-1.24562972784042,-1.37445974349976,0.126167198504672
+6573,86243,443897.952,86343,443797.952,72,65,88.5,0.885,38.5285464262416,0.864406779661017,NA,0.0298719614565925,0.4375,43.75,2,95.7885515700858,0.933952528379773,41.5,0.257142857142857,0,-1.17931393782298,-1.25704824924469,0.124107855547034
+6574,86243,443797.952,86343,443697.952,73,65,98.25,0.9825,38.0390038167333,0.923664122137405,NA,-0.0392887927079573,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,0,0,-1.37962950766087,-1.88179552555084,0.381416606147371
+6575,86243,443697.952,86343,443597.952,74,65,82.75,0.41375,20.8785848595711,0.635512820512821,10,0.0110925795447292,0.315,31.5,1,95.8855704592132,0.885251649507538,31.5,1.00850053817507,0,-2.13741091887156,-2.59804320335388,0.510585495152213
+6576,86243,443597.952,86343,443497.952,75,65,14,0.028,8.72721462628465,0.414285714285714,20.9442719099992,0.000618686556917964,0.155,15.5,1,91.8947234736642,0.967126890203813,15.5,16.103569492217,0,-2.75230686366558,-3.07681894302368,0.344003396459129
+6577,86243,443497.952,86343,443397.952,76,65,10.5,0.02625,5.45008743839366,0.244369369369369,21.3782576079613,-0.0187073972731014,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,27.2877222782857,5,-3.12970481316249,-3.2746741771698,0.214247376473353
+6578,86243,443397.952,86343,443297.952,77,65,1.25,0.003125,0.625,0.0416666666666667,15.8113883008419,-0.0502405299272505,0.3925,39.25,1,96.8622433213934,0.971422039323274,39.25,30.6847291812775,7.07106781005859,-3.26542148987452,-3.33846950531006,0.154386145063818
+6579,86243,443297.952,86343,443197.952,78,65,0.25,0.0025,0,0,NA,-0.14698818936944,0,0,0,NA,NA,0,NA,NA,-3.22620032727718,-3.34843730926514,0.319440289486244
+6580,86243,443197.952,86343,443097.952,79,65,7.75,0.0129166666666667,4.6097505332842,0.233333333333333,15.7376488484778,-0.0683311018043605,0.0975,9.75,1,88.4075627573592,0.846580012784999,9.75,20.6738397647173,0,-2.47129852076372,-3.23800921440125,1.17973089670699
+6581,86243,443097.952,86343,442997.952,80,65,25.75,0.0858333333333333,12.0320891436558,0.421345029239766,20.1465151014391,0.0467099845562188,0.445,44.5,2,96.3365316559829,0.928804184123333,43.5,15.3933272308178,0,-1.75068156607449,-3.02463746070862,1.39849831298357
+6582,86243,442997.952,86343,442897.952,81,65,30.5,0.07625,14.6780947341673,0.347915293342123,10.5901699437495,-0.0150231243333292,0.0375,3.75,3,58.6488496964614,0.669421487603306,1.5,1,0,-1.44121354321639,-2.56344771385193,1.74563268680916
+6583,86243,442897.952,86343,442797.952,82,65,18.5,0.0925,15.9439787508263,0.390453834115806,25.4950975679639,-0.00168185079226532,0.1325,13.25,1,90.8041511632959,0.923995313044304,13.25,34.1685304101908,7.07106781005859,-1.84120922163129,-2.88698625564575,1.19580780266022
+6584,86243,442797.952,86343,442697.952,83,65,3.5,0.00583333333333333,2.2679791036445,0.150925925925926,25.4746547071261,0.0424685261084232,0.4875,48.75,1,97.7251065890586,0.935318690203477,48.75,27.6980042090783,0,-2.82918733358383,-3.09465026855469,0.546849032043284
+6585,86243,442697.952,86343,442597.952,84,65,0.75,0.00375,1.25,0.0833333333333333,15,0.117160341723284,0.8225,82.25,1,99.4598121429477,0.918350683813023,82.25,40.2391145410509,0,-3.15270580351353,-3.34076881408691,0.256925499903628
+6586,86243,442597.952,86343,442497.952,85,65,2,0.005,2.08333333333333,0.138888888888889,11.1803398874989,0.092952995384112,0.985,98.5,1,99.9600766120013,0.821746880570409,98.5,44.2190742444266,0,-3.33079453309377,-3.37772035598755,0.0997815684529508
+6587,86243,442497.952,86343,442397.952,86,65,0,NA,NA,NA,NA,0.100481078606099,1,100,1,100,NA,100,100.077348203659,38.0788650512695,-3.3379587829113,-3.37778520584106,0.0541559726625626
+6588,86243,442397.952,86343,442297.952,87,65,0,NA,NA,NA,NA,0.0204669686164925,0.4275,42.75,1,97.2134830220855,0.972274208082068,42.75,101.418665724191,47.1699066162109,-3.29345381259918,-3.32919383049011,0.057107486266412
+6589,86243,442297.952,86343,442197.952,88,65,0,NA,NA,NA,NA,0.0701449422747828,0.755,75.5,1,99.205943814227,0.856533122915247,75.5,50.3411753319747,10,-3.2736743837595,-3.31842136383057,0.0532320779648278
+6590,86243,442197.952,86343,442097.952,89,65,0.75,0.0025,0,0,20.6155281280883,0.107804039241746,1,100,1,100,NA,100,43.3776465702057,0,-3.28194189071655,-3.31540679931641,0.0318792133727037
+6591,86243,442097.952,86343,441997.952,90,65,0,NA,NA,NA,NA,0.0532572343270294,0.5675,56.75,1,98.2765967200003,0.978135803987483,56.75,115.542062902241,80.1560974121094,-3.29023287693659,-3.31621909141541,0.0207066299691016
+6592,86243,441997.952,86343,441897.952,91,65,0,NA,NA,NA,NA,-0.0212963970395867,0,0,0,NA,NA,0,NA,NA,-3.30169846117496,-3.32630586624146,0.0223993011785549
+6593,86243,441897.952,86343,441797.952,92,65,0,NA,NA,NA,NA,-0.077448815440348,0,0,0,NA,NA,0,NA,NA,-3.30825757980347,-3.3258330821991,0.0197273756931076
+6594,86243,441797.952,86343,441697.952,93,65,0,NA,NA,NA,NA,0.138019857570162,0.5875,58.75,1,98.3965465994375,0.983433423068958,58.75,357.834841074842,320.351379394531,-3.29725378751755,-3.32001423835754,0.0269436008805931
+6595,86243,441697.952,86343,441597.952,94,65,0,NA,NA,NA,NA,0.10039373023581,0.575,57.5,2,95.6300247077124,0.879336349924585,48.75,311.803167525582,242.744720458984,-3.26038056612015,-3.28682851791382,0.0352661757451484
+6596,86243,441597.952,86343,441497.952,95,65,0,NA,NA,NA,NA,0.141574387811124,0.9975,99.75,1,99.9934086913499,1,99.75,219.109920606876,156.524765014648,-3.18846283853054,-3.23407864570618,0.0570527145892856
+6597,86243,441497.952,86343,441397.952,96,65,0,NA,NA,NA,NA,0.0599101050395984,0.3925,39.25,1,96.8622433213934,0.954275262917238,39.25,159.032701820325,134.164077758789,-3.08701970179876,-3.15416669845581,0.0890712540761795
+6598,86243,441397.952,86343,441297.952,97,65,5.75,0.0575,14.1437368551814,0.347826086956522,NA,0.0573108765413053,0.645,64.5,3,97.9029228175528,0.88335811973289,63.5,38.4126714735992,0,-2.94362466037273,-3.08628582954407,0.148809470603634
+6599,86243,441297.952,86343,441197.952,98,65,81.75,0.8175,36.6370103580519,0.836391437308869,NA,0.0879959375364706,0.7675,76.75,1,99.2554721522595,0.680023812181419,76.75,1.20643525014871,0,-2.68128077189128,-2.87226986885071,0.206392660156788
+6600,86243,441197.952,86343,441097.952,99,65,99.2105263157895,0.9425,37.2284262147482,0.928381962864722,NA,0.0416356614804863,0.33,33,6,85.7034619709552,0.74608286368985,12.5,0,0,-2.36761674284935,-2.57732892036438,0.202309530260223
+6601,86343,451097.952,86443,450997.952,0,66,40,0.0571428571428571,9.21002590798201,0.437352458089785,14.2506032997276,-0.0122063543388663,0.05,5,4,63.8807374306771,0.558573853989813,2.5,3.91421356201172,0,-3.5342337290446,-3.57609367370605,0.0778890121640086
+6602,86343,450997.952,86443,450897.952,1,66,18.5,0.0264285714285714,6.97380233254436,0.138266747376917,11.5971914124998,0.0184732298999734,0.1425,14.25,3,86.9723062820246,0.762003926935206,12,3.16978621901127,0,-3.41727826992671,-3.50447201728821,0.113288599297266
+6603,86343,450897.952,86443,450797.952,2,66,8.5,0.00944444444444444,3.55157097720271,0.243827160493827,21.6144083378557,0.00317887164630292,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,14.6130479176839,10,-3.21647845374213,-3.29312443733215,0.146135208991154
+6604,86343,450797.952,86443,450697.952,3,66,30.5,0.07625,9.41905232313638,0.347254672897196,10.5901699437495,-0.00420445640484104,0.01,1,2,30.8308651382582,0.494949494949495,0.5,9.29247283935547,0,-3.00148739417394,-3.09507775306702,0.122961663189394
+6605,86343,450697.952,86443,450597.952,4,66,40.25,0.134166666666667,14.1170782034785,0.445852841536295,15,-0.00727492897141929,0.0775,7.75,3,79.1307726586835,0.913279132791328,7,5.41338200722971,0,-2.92670981089274,-3.03096437454224,0.153247269741403
+6606,86343,450597.952,86443,450497.952,5,66,48.25,0.4825,34.2479373640784,0.731433506044905,NA,0.00564548683226064,0.08,8,7,59.3046197807963,0.561036789297659,2.75,1.72882735729218,0,-3.03470313549042,-3.32880973815918,0.318636097832822
+6607,86343,450497.952,86443,450397.952,6,66,24.5,0.0272222222222222,5.84943931840444,0.28389372475394,13.80306453672,0.0181485458630232,0.1975,19.75,3,87.5197188993046,0.777481085892301,13,4.68590202814416,0,-3.40799027019077,-3.69929766654968,0.483496385243387
+6608,86343,450397.952,86443,450297.952,7,66,4.75,0.00395833333333333,1.42972687566495,0.0648148148148148,20.7898184631347,0.0178759991370725,0.08,8,4,76.775995855102,0.686454849498328,6,11.9041886925697,0,-3.92714782555898,-4.04593515396118,0.153678320122919
+6609,86343,450297.952,86443,450197.952,8,66,6.5,0.00928571428571429,3.00297355026628,0.0925925925925926,29.4058754081013,0.0135326033653473,0.005,0.5,2,0,1,0.25,14.1421356201172,14.1421356201172,-4.09224865171644,-4.12059497833252,0.0503062145656144
+6610,86343,450197.952,86443,450097.952,9,66,11.25,0.00803571428571428,3.32057312325833,0.112301587301587,15.4859570624992,-0.000178026638204756,0,0,0,NA,NA,0,NA,NA,-4.13217523362901,-4.1399998664856,0.015835344330994
+6611,86343,450097.952,86443,449997.952,10,66,28.25,0.0470833333333333,11.4136994157222,0.248553459119497,13.4628120507726,-0.0121194680743611,0.005,0.5,2,0,1,0.25,5,5,-4.13989706834157,-4.1399998664856,0.00124351827741085
+6612,86343,449997.952,86443,449897.952,11,66,16.25,0.08125,17.120511051433,0.510145784081954,69.462219947249,-0.0139001338149683,0,0,0,NA,NA,0,NA,NA,-4.1399998664856,-4.1399998664856,0
+6613,86343,449897.952,86443,449797.952,12,66,11,0.0122222222222222,3.96472885153379,0.154861111111111,18.4828804841441,0.00344898832907347,0.0025,0.25,1,0,NA,0.25,20.6155281066895,20.6155281066895,-4.13630441824595,-4.1399998664856,0.0103853871191158
+6614,86343,449797.952,86443,449697.952,13,66,23,0.046,9.15836857629674,0.281060606060606,14.1803398874989,-0.000281792771343134,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,1,0,-4.0969148212009,-4.12838363647461,0.0631779973143095
+6615,86343,449697.952,86443,449597.952,14,66,12,0.01,2.70372079140351,0.183181605975724,17.0154975570797,0.00287007566936154,0.04,4,2,74.2500702543702,0.826388888888889,3.75,4.19811820983887,0,-3.92596332232157,-4.07491397857666,0.222939630752652
+6616,86343,449597.952,86443,449497.952,15,66,46.25,0.0925,12.3746335757858,0.38199876602822,10.2360679774998,0.00191515898761281,0.1125,11.25,4,82.2040086429256,0.673832468495182,8.75,1.60874540540907,0,-3.3297377427419,-3.80954146385193,0.770619211829118
+6617,86343,449497.952,86443,449397.952,16,66,28.5,0.0475,8.08645084150414,0.301282051282051,10,0.0704247207305525,0.66,66,2,98.0942245170617,0.904931669637552,65,7.16260027162956,0,-2.41656196117401,-2.84612607955933,0.585023556695907
+6618,86343,449397.952,86443,449297.952,17,66,74.75,0.37375,18.6847310852613,0.659745762711864,36.0555127546399,0.0965188135555945,0.9425,94.25,1,99.8418294460568,0.756764974156279,94.25,2.55535216293537,0,-2.81299614906311,-2.98106098175049,0.328388034739643
+6619,86343,449297.952,86443,449197.952,18,66,86.25,0.8625,38.5633653712585,0.840579710144928,NA,0.052151833658354,0.54,54,1,98.1009071848445,0.913476097772009,54,0.634588276898419,0,-2.36819223562876,-2.62202596664429,0.261985280023163
+6620,86343,449197.952,86443,449097.952,19,66,74.25,0.37125,21.3630926741652,0.62277397260274,10,0.0747063647699542,0.87,87,1,99.620460342959,0.731119943885902,87,1.41440659007807,0,-2.41437045733134,-2.56166934967041,0.260445149555901
+6621,86343,449097.952,86443,448997.952,20,66,69.25,0.1385,7.78659851820695,0.181495098039216,10.7082039324994,0.0533396513477783,0.5275,52.75,4,96.1875435072803,0.827232480293705,49.75,1.06971885355728,0,-2.47782233026293,-2.85374426841736,0.559384399542897
+6622,86343,448997.952,86443,448897.952,21,66,27.5,0.034375,5.95805760629022,0.299386070853462,13.389734271206,0.0685280188670731,0.655,65.5,3,98.2995653796284,0.840609226954751,65,5.48240180415962,0,-2.60636866092682,-3.24661660194397,0.855961747739573
+6623,86343,448897.952,86443,448797.952,22,66,78.75,0.2625,15.4906542297329,0.517293447293447,10,0.0801059451606125,0.7875,78.75,2,99.0848702861244,0.897009308774015,78.5,1.23639559064593,0,-3.16648946868049,-4.01733493804932,1.30148116115992
+6624,86343,448797.952,86443,448697.952,23,66,63.25,0.1265,11.4044520225804,0.508202306079665,13.1421823327095,0.0653158251759078,0.69,69,1,98.9270603639069,0.757130402291693,69,1.95614727683689,0,-3.89567689100901,-4.44351434707642,0.901421733417218
+6625,86343,448697.952,86443,448597.952,24,66,51.25,0.0854166666666667,7.88714665421205,0.276754385964912,17.8595687171175,0.0444050596469606,0.4975,49.75,4,95.2306031559546,0.746524828432364,43.5,1.93436310159501,0,-3.91741874482897,-4.27006578445435,0.636264308564552
+6626,86343,448597.952,86443,448497.952,25,66,53.75,0.179166666666667,16.5203796279325,0.661686686686687,10.3934466291663,0.0114686646834525,0.13,13,3,81.000370324091,0.806276636962418,7,0.809058996347281,0,-3.2897535165151,-3.64639759063721,0.475662161329406
+6627,86343,448497.952,86443,448397.952,26,66,8.75,0.04375,9.87612738323605,0.575396825396825,38.0788655293195,-0.056889110599077,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,3.79357062445747,0,-2.75299379560682,-3.05776238441467,0.43096044532662
+6628,86343,448397.952,86443,448297.952,27,66,2,0.005,1.63509708815908,0.138888888888889,12.7950849718747,-0.181714986497536,0,0,0,NA,NA,0,NA,NA,-2.12972141305606,-2.42117238044739,0.291143732214814
+6629,86343,448297.952,86443,448197.952,28,66,8.25,0.0103125,3.4197459087179,0.128968253968254,19.630713486321,-0.0348281455878532,0,0,0,NA,NA,0,NA,NA,-1.78954561551412,-1.87916445732117,0.121010448864938
+6630,86343,448197.952,86443,448097.952,29,66,2.75,0.006875,3.96137668585874,0.0902777777777778,11.1803398874989,-0.0190517651007576,0,0,0,NA,NA,0,NA,NA,-1.66672125458717,-1.71196162700653,0.0569108667394253
+6631,86343,448097.952,86443,447997.952,30,66,0,NA,NA,NA,NA,-0.00163176880898391,0,0,0,NA,NA,0,NA,NA,-1.51255949338277,-1.59224772453308,0.175137137478584
+6632,86343,447997.952,86443,447897.952,31,66,45,0.45,29.2350084208022,0.856481481481482,NA,0.0664691379998476,0.61,61,1,98.5243747403739,0.971884840305893,61,1.98946473637565,0,-0.919806333051787,-1.37861752510071,1.21362176200508
+6633,86343,447897.952,86443,447797.952,32,66,96.25,0.9625,38.3643941073425,0.904329004329004,NA,0.0780929749179631,0.9575,95.75,1,99.8844617862358,0.578674444984605,95.75,0.195822454308094,0,1.18006783661743,0.115637116134167,1.08402813083955
+6634,86343,447797.952,86443,447697.952,33,66,60.5,0.3025,18.1242795941424,0.514930555555556,11.1803398874989,0.0303375208513535,0.3875,38.75,2,95.219539739798,0.839598997493734,35,0.413820229807208,0,0.912031617429521,0.299313366413116,1.03010431016077
+6635,86343,447697.952,86443,447597.952,34,66,78.5,0.785,35.8067927870347,0.895966029723991,NA,0.0533641760428918,0.62,62,1,98.5789406842005,0.920598911070781,62,0.161290322580645,0,0.116920547249417,-0.104463011026382,0.358396378245018
+6636,86343,447597.952,86443,447497.952,35,66,80.75,0.8075,37.9807114127573,0.852941176470588,NA,0.0630749388798722,0.6175,61.75,3,95.7867729735805,0.756670344905639,39.25,0.832570651282183,0,-0.000855122692883015,-0.150002494454384,0.283266656605617
+6637,86343,447497.952,86443,447397.952,36,66,77.25,0.2575,12.5651438334414,0.359295570079884,15.2704627669473,0.0539811618320527,0.5375,53.75,1,98.0842701108371,0.886486486486487,53.75,0.0465116279069767,0,0.18466236271585,-0.146669983863831,0.673638261778048
+6638,86343,447397.952,86443,447297.952,37,66,48.5,0.097,7.0486795823219,0.211720142602496,13.9589689355047,0.037458508881391,0.355,35.5,2,95.3361328335121,0.88670244484198,34.25,0.246478873239437,0,0.774039410882526,-0.0297011248767376,1.40547110822606
+6639,86343,447297.952,86443,447197.952,38,66,88.25,0.44125,18.3564737244912,0.451704545454545,10,0.0682580209290609,0.815,81.5,1,99.4331707829294,0.75390024170512,81.5,0.406115163323338,0,1.44430174057682,0.198746040463448,1.48694175622523
+6640,86343,447197.952,86443,447097.952,39,66,69.25,0.230833333333333,11.8519144720683,0.273737373737374,10.3934466291663,0.04885924510716,0.465,46.5,3,93.2900063376388,0.766355140186916,24.5,0.955462466004074,0,1.04382584450973,-0.017319317907095,1.61775705021937
+6641,86343,447097.952,86443,446997.952,40,66,51,0.17,12.9744637221416,0.458994708994709,36.9035593728849,-0.0564568205181422,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,1.36363636363636,0,-0.487789421963195,-1.04523038864136,0.653497454378258
+6642,86343,446997.952,86443,446897.952,41,66,61.75,0.6175,35.7408791143389,0.873819163292847,NA,-0.0202090148823845,0.0325,3.25,3,60.7522026964716,0.770312948607522,2.5,0,0,-1.20403530200322,-1.48061275482178,0.387537252181461
+6643,86343,446897.952,86443,446797.952,42,66,17,0.0425,8.36289445291478,0.323660714285714,10.5901699437495,0.00379056883943122,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,2.22222222222222,0,-1.70033513506254,-1.90200877189636,0.276941141079762
+6644,86343,446797.952,86443,446697.952,43,66,27,0.0385714285714286,7.86288829927402,0.275396825396825,10.1686199839284,0.0277949117347021,0.2275,22.75,5,89.6602564180061,0.824203923448799,20.75,4.88836456131149,0,-1.91950576835208,-2.04224038124084,0.203373604596726
+6645,86343,446697.952,86443,446597.952,44,66,53.75,0.179166666666667,21.5246448113274,0.679005357558817,10.3934466291663,0.0056627464016492,0.2325,23.25,2,93.3595307167392,0.882265217220674,22.75,3.95220916501937,0,-2.00863933563232,-2.12924003601074,0.206673257866187
+6646,86343,446597.952,86443,446497.952,45,66,60.75,0.30375,23.2776399467368,0.600894134477825,15,0.0216035101331681,0.185,18.5,3,87.5046206116123,0.915054270882492,16,0.990327989732897,0,-2.0678958594799,-2.14575219154358,0.166006813330728
+6647,86343,446497.952,86443,446397.952,46,66,59.25,0.29625,24.0983425093405,0.595611787315823,10,0.0256484007189374,0.2825,28.25,5,85.3771262997022,0.726719956275193,13.25,1.91339118079802,0,-1.98144332567851,-2.09446287155151,0.173613807324139
+6648,86343,446397.952,86443,446297.952,47,66,77.25,0.7725,36.2538533533573,0.809061488673139,NA,-0.015815589269987,0.0925,9.25,3,80.2800706978058,0.765162805401255,6.75,1.89189189189189,0,-1.83436851700147,-1.97044050693512,0.128332841639539
+6649,86343,446297.952,86443,446197.952,48,66,44.25,0.4425,31.1121889309528,0.683615819209039,NA,0.0185963688632069,0.2225,22.25,2,92.2600787033744,0.894841149467128,21.5,2.60590812597382,0,-1.72854440742069,-1.77748954296112,0.0811865690213593
+6650,86343,446197.952,86443,446097.952,49,66,23.5,0.0261111111111111,6.08014176350022,0.29071032087828,15.0500144722004,-0.00586955035672872,0.12,12,4,85.8526547340865,0.681263858093126,10.75,2.08670576413473,0,-1.55867097775141,-1.6794810295105,0.167715039452852
+6651,86343,446097.952,86443,445997.952,50,66,21.75,0.0725,20.5540714465588,0.54925221204291,30.2730272788201,0.00240067679971617,0.0475,4.75,2,73.8602038269029,0.818988143723414,4,7.55407403644763,0,-1.08574019538032,-1.35508406162262,0.38611828887369
+6652,86343,445997.952,86443,445897.952,51,66,14,0.07,15.2488318508354,0.498039215686275,61.8465843842649,0.0206550638819317,0.29,29,2,91.9365483534084,0.812206572769953,20.75,6.92929726633532,0,-0.460598144990702,-0.806094348430634,0.735095289582857
+6653,86343,445897.952,86443,445797.952,52,66,25,0.0625,10.0721753968393,0.620558415967455,20.3183273951719,0.016346121288243,0.2575,25.75,4,87.7732290162546,0.832559832559833,18.75,4.07321659569601,0,0.141971525399842,-0.633987426757812,1.22890961047001
+6654,86343,445797.952,86443,445697.952,53,66,50.25,0.25125,22.6944177765577,0.830055210489993,15.8113883008419,0.0483928440437012,0.4925,49.25,5,92.9056435925909,0.811053377420878,27.5,2.06553554050813,0,0.917703557759523,-0.412181198596954,1.6711424906915
+6655,86343,445697.952,86443,445597.952,54,66,49,0.245,21.7097187447918,0.725867446393762,18.0277563773199,0.0510311937652659,0.54,54,2,96.1964336711574,0.881029634436513,47.25,0.981810499120642,0,-0.115257324443923,-0.676847398281097,1.16041898580853
+6656,86343,445597.952,86443,445497.952,55,66,24.75,0.12375,21.9305157732283,0.654830224772836,15.8113883008419,0.0577207883996016,0.625,62.5,2,97.8551214974652,0.863247863247863,61,15.1335633239746,0,-1.2924833562639,-1.48884725570679,0.456253949340416
+6657,86343,445497.952,86443,445397.952,56,66,24,0.04,7.26133362200413,0.346537558685446,13.7267799624997,0.0356511061658966,0.4425,44.25,2,96.0097259311225,0.873836069170746,42.5,17.179445611555,0,-1.59865505496661,-1.86703419685364,0.280372818077027
+6658,86343,445397.952,86443,445297.952,57,66,37.75,0.094375,9.82753286166464,0.406184321143338,10.5901699437495,0.01740755937426,0.2675,26.75,4,91.8183454934336,0.900970839448973,25.25,25.3287592201589,0,-1.85456550121307,-2.08847165107727,0.403345383827132
+6659,86343,445297.952,86443,445197.952,58,66,40.25,0.0670833333333333,11.128911793878,0.385223475355054,12.060113295833,0.0207830813434748,0.245,24.5,1,94.6299732152399,0.82691149909693,24.5,5.31700017500897,0,-2.01386135816574,-2.20051693916321,0.383104424281667
+6660,86343,445197.952,86443,445097.952,59,66,84.25,0.280833333333333,17.6986699214094,0.57113063542776,14.4280904158206,0.0249158053137216,0.3275,32.75,4,91.4091006440447,0.819570390878972,28,0.565970500916925,0,-1.95507611168755,-2.17812609672546,0.310401139353882
+6661,86343,445097.952,86443,444997.952,60,66,53.75,0.1075,9.32437162417961,0.29778825235678,11.2360679774998,0.051662595547532,0.45,45,1,97.417305342106,0.87987987987988,45,1.48239534166124,0,-1.89835988481839,-2.06447291374207,0.285518032039934
+6662,86343,444997.952,86443,444897.952,61,66,3,0.01,3.77298965996481,0.270833333333333,12.4535599249993,0.0269620114254212,0.51,51,1,97.8932627156421,0.870766248451887,51,45.9282458155763,0,-2.03958911365933,-2.23490571975708,0.301054112987024
+6663,86343,444897.952,86443,444797.952,62,66,6.5,0.0325,4.90765623560735,0.36,10,-0.0381977739221475,0.105,10.5,2,82.2607976660941,0.795420568101346,7,31.3560738790603,0,-2.00774344801903,-2.28162336349487,0.476816761574134
+6664,86343,444797.952,86443,444697.952,63,66,85.75,0.42875,18.0638099412487,0.454678362573099,11.1803398874989,0.0489085105739923,0.535,53.5,2,97.2172729263097,0.870319338628627,51.75,0.497676706759729,0,-1.4674910042021,-1.85439002513885,0.866434628947149
+6665,86343,444697.952,86443,444597.952,64,66,58.5,0.585,31.827718388145,0.881766381766382,NA,0.0348685112627572,0.43,43,1,97.2369173509155,0.784160717250539,43,0.0872093023255814,0,-1.83146441976229,-2.13565564155579,0.50031261596559
+6666,86343,444597.952,86443,444497.952,65,66,48.25,0.24125,19.2011000712682,0.485602094240838,10,-0.0133044721972328,0.135,13.5,2,86.1175372745653,0.875691466219156,10,0.871686440927011,0,-2.236832830641,-2.34263682365417,0.166030536664359
+6667,86343,444497.952,86443,444397.952,66,66,10.75,0.0215,6.30381399796283,0.359621578099839,24.4717521351098,-0.0255610229022932,0.185,18.5,2,91.4395598676943,0.858423784804153,17.75,26.401390900483,0,-2.32591920428806,-2.39195799827576,0.140812668487085
+6668,86343,444397.952,86443,444297.952,67,66,65,0.216666666666667,14.6588737716041,0.370806100217865,10,0.0560020117842942,0.545,54.5,6,92.5126880492554,0.723921398798246,42.75,1.93380065358013,0,-2.17950918277105,-2.34553074836731,0.184768951594596
+6669,86343,444297.952,86443,444197.952,68,66,83.25,0.2775,16.0395310031404,0.455418381344307,10,0.0556368328515236,0.5325,53.25,2,96.966615737584,0.800140441851672,49.25,0.610328638497653,0,-1.98264204131232,-2.10224962234497,0.234842891682154
+6670,86343,444197.952,86443,444097.952,69,66,95.5,0.955,37.9779177764783,0.899214659685864,NA,0.0198278844777815,0.27,27,2,94.5331139580391,0.90165086055497,26.75,0.138888888888889,0,-1.85899898409843,-1.98284757137299,0.258622682533919
+6671,86343,444097.952,86443,443997.952,70,66,88.75,0.44375,28.8509901938181,0.877569925257786,10,0.0434979200147791,0.4225,42.25,4,91.1342282876495,0.766899766899767,19.5,0.14792899408284,0,-1.40922465589311,-1.59312891960144,0.262130950822489
+6672,86343,443997.952,86443,443897.952,71,66,96.75,0.9675,38.0281708534697,0.914728682170543,NA,0.056787148341391,0.445,44.5,3,95.4291940298076,0.802842356033845,38.25,0.168539325842697,0,-1.15962206323942,-1.2786750793457,0.105752339289341
+6673,86343,443897.952,86443,443797.952,72,66,80.5,0.805,39.8909086712934,0.816770186335404,NA,0.0360582832060754,0.3125,31.25,2,95.0047280713211,0.92310772927513,30.75,0.48,0,-1.24567964341905,-1.44322824478149,0.211684537516246
+6674,86343,443797.952,86443,443697.952,73,66,85.5,0.855,35.4740384543749,0.923489278752437,NA,-0.0342586751053841,0,0,0,NA,NA,0,NA,NA,-1.80492666363716,-2.29082202911377,0.471951796693432
+6675,86343,443697.952,86443,443597.952,74,66,45,0.1125,9.64675803369297,0.37015503875969,14.1688593638657,-0.00400949134244001,0.18,18,3,86.8599656364179,0.846360668331093,13.5,0.625,0,-2.59923137558831,-2.80832409858704,0.389622154902214
+6676,86343,443597.952,86443,443497.952,75,66,0,NA,NA,NA,NA,-0.0320785126532428,0,0,0,NA,NA,0,NA,NA,-3.02878737449646,-3.20630073547363,0.223778512694501
+6677,86343,443497.952,86443,443397.952,76,66,1.5,0.005,2.5,0.166666666666667,27.7003091022063,0.00277758393140175,0.3925,39.25,1,96.8622433213934,0.971422039323274,39.25,26.7191400102749,5,-3.29254651069641,-3.38049030303955,0.13210861460078
+6678,86343,443397.952,86443,443297.952,77,66,0.75,0.0025,0,0,22.6744420160288,-0.0873169955678895,0.165,16.5,1,92.3061588442808,0.906274407706327,16.5,17.2641552144831,0,-3.397444513109,-3.45571398735046,0.0826923648122887
+6679,86343,443297.952,86443,443197.952,78,66,1,0.0025,0,0,18.1843030841286,-0.115834181797691,0,0,0,NA,NA,0,NA,NA,-3.42363965511322,-3.47003960609436,0.0874459827038865
+6680,86343,443197.952,86443,443097.952,79,66,0,NA,NA,NA,NA,-0.0424166401091497,0.2625,26.25,1,94.9905255479102,0.94260604430096,26.25,72.6914551144555,50,-3.38593027326796,-3.45590424537659,0.151240095469836
+6681,86343,443097.952,86443,442997.952,80,66,0.75,0.0025,0,0,39.0209380182864,0.0409914134972496,0.6225,62.25,1,98.5923763102686,0.960208055026575,62.25,39.1969880253436,0,-3.2433397769928,-3.4096519947052,0.257851079862333
+6682,86343,442997.952,86443,442897.952,81,66,5.5,0.00785714285714286,1.69327531468975,0.0610119047619048,19.9514434901519,-0.0176789231006478,0.155,15.5,1,91.8947234736642,0.90138067061144,15.5,9.66172673625331,0,-2.98795024553935,-3.21667456626892,0.637792198113711
+6683,86343,442897.952,86443,442797.952,82,66,21.25,0.0708333333333333,11.8081325833875,0.234567901234568,26.1606398752776,0.0119936379140154,0.25,25,2,93.8582098110828,0.866666666666667,24.5,21.209375,0,-1.99207108964523,-3.02025890350342,1.5610339411258
+6684,86343,442797.952,86443,442697.952,83,66,28,0.0933333333333333,18.1620884974063,0.472164736798883,18.8001831488009,-0.015020128333199,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,4,0,-1.27107522471084,-2.29706120491028,1.71260686492335
+6685,86343,442697.952,86443,442597.952,84,66,15,0.01875,4.40789791771432,0.135416666666667,15.310147592818,0.0200120959032574,0.22,22,3,92.4623534658784,0.828515433610975,21.25,23.5714709542014,0,-2.07783170541128,-2.9629271030426,1.30391297472313
+6686,86343,442597.952,86443,442497.952,85,66,11,0.01375,4.82470442562889,0.1225,10.5901699437495,0.100817556864931,0.8275,82.75,2,99.2311120695325,0.897971014492754,82.5,16.4751203657997,0,-2.83900915251838,-3.19505882263184,0.845002898840007
+6687,86343,442497.952,86443,442397.952,86,66,0.75,0.00375,1.76776695296637,0.0416666666666667,18.0277563773199,0.0839558364928234,0.875,87.5,1,99.6366054334226,0.830815709969788,87.5,49.4231033379691,0,-3.08677017688751,-3.24228119850159,0.336560400126549
+6688,86343,442397.952,86443,442297.952,87,66,1,0.00333333333333333,0.833333333333333,0.0555555555555556,42.7008322530222,0.0340231590462099,0.3025,30.25,2,92.1677228030182,0.843597262952102,22.75,36.931211203583,0,-3.06825129191081,-3.21081328392029,0.321997938201867
+6689,86343,442297.952,86443,442197.952,88,66,0.5,0.005,2.5,0.166666666666667,NA,0.098941815844737,0.9175,91.75,1,99.7684657792434,0.73839110529758,91.75,33.4025745963531,0,-3.19371753931046,-3.24513745307922,0.0920555432274576
+6690,86343,442197.952,86443,442097.952,89,66,0,NA,NA,NA,NA,0.0934736070875078,0.985,98.5,1,99.9600766120013,0.643493761140819,98.5,92.8986367743633,45,-3.27989448441399,-3.29842138290405,0.0255958251971372
+6691,86343,442097.952,86443,441997.952,90,66,0,NA,NA,NA,NA,0.0228885824424833,0.295,29.5,1,95.572898758965,0.946974216212633,29.5,137.381050691766,105.118980407715,-3.28502077526516,-3.28999996185303,0.00821062204714338
+6692,86343,441997.952,86443,441897.952,91,66,0,NA,NA,NA,NA,-0.0400956687470898,0,0,0,NA,NA,0,NA,NA,-3.28752698500951,-3.28999996185303,0.00677275848891878
+6693,86343,441897.952,86443,441797.952,92,66,0,NA,NA,NA,NA,-0.0459265815950494,0,0,0,NA,NA,0,NA,NA,-3.27247285842896,-3.2871265411377,0.0296401249794679
+6694,86343,441797.952,86443,441697.952,93,66,0,NA,NA,NA,NA,0.126806839933924,0.64,64,1,98.6842105263158,0.959490740740741,64,306.916791856289,248.39485168457,-3.23404103517532,-3.27077269554138,0.0423557712331198
+6695,86343,441697.952,86443,441597.952,94,66,0,NA,NA,NA,NA,0.0250547027554421,0.4525,45.25,2,94.4630429464966,0.890956178014039,29.75,252.560661189464,195.576080322266,-3.23241766293844,-3.24252796173096,0.0188240003563519
+6696,86343,441597.952,86443,441497.952,95,66,0,NA,NA,NA,NA,0.113317127767468,0.815,81.5,1,99.4331707829294,0.97363216875412,81.5,181.585316710677,140.890029907227,-3.21505238612493,-3.24874091148376,0.0470301139199137
+6697,86343,441497.952,86443,441397.952,96,66,0,NA,NA,NA,NA,0.0156083082938193,0.105,10.5,2,86.0994547209726,0.826894326854985,9.75,56.470232918149,38.0788650512695,-3.09310544861688,-3.16937065124512,0.107190772676951
+6698,86343,441397.952,86443,441297.952,97,66,19,0.038,6.54247324729167,0.181010101010101,11.1803398874989,0.0478692623823372,0.4825,48.25,6,88.265043508824,0.703127951852751,20.75,17.5902486613377,0,-2.86199420690536,-2.99544072151184,0.165974480359998
+6699,86343,441297.952,86443,441197.952,98,66,86.5,0.865,36.7025948650179,0.881984585741811,NA,0.0209088343407348,0.215,21.5,6,81.6977625960804,0.766870654843678,8,0.290697674418605,0,-2.4893454975552,-2.64009928703308,0.252291960611211
+6700,86343,441197.952,86443,441097.952,99,66,89.4736842105263,0.425,18.2893610403191,0.441002949852507,10,0.0449232476380166,0.3775,37.75,3,93.0567357711405,0.808620764647036,23.25,0.165562913907285,0,-2.15161404013634,-2.39329314231873,0.251431283722406
+6701,86443,451097.952,86543,450997.952,0,67,35.75,0.0510714285714286,6.89004591089877,0.190353791455383,10.9289736283898,0.0326442277629212,0.3,30,5,88.8084332251232,0.724770642201835,15,2.66812740961711,0,-3.41981971263885,-3.5628228187561,0.213975040102186
+6702,86443,450997.952,86543,450897.952,1,67,2,0.00666666666666667,1.63509708815908,0.148148148148148,40,0.0125989462473808,0.0325,3.25,3,58.0282779749979,0.712891185759403,2,22.4743122687707,15.8113880157471,-3.25107584893703,-3.47678804397583,0.239477713263076
+6703,86443,450897.952,86543,450797.952,2,67,13.5,0.0192857142857143,3.27731113205128,0.173680324843116,17.762685062287,0.015142916043751,0.0175,1.75,4,26.6441421219611,0.363867684478371,0.5,9.14049366542271,0,-3.11557416121165,-3.26306295394897,0.134348106718229
+6704,86443,450797.952,86543,450697.952,3,67,4.75,0.00431818181818182,1.48273410858785,0.0848484848484849,14.6389960768676,0.00448839358346959,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,5.82842712402344,0,-3.16468374431133,-3.44105553627014,0.182368272732312
+6705,86443,450697.952,86543,450597.952,4,67,16.25,0.040625,7.25594149405987,0.218220338983051,12.661237755615,0.00544877182524942,0.025,2.5,2,58.3790172198822,0.684418145956607,1.5,11.1033386230469,5,-3.37099730968475,-3.72641158103943,0.339798343853805
+6706,86443,450597.952,86543,450497.952,5,67,6.25,0.0125,6.44130594952791,0.196785714285714,22.0212266838033,-0.0131292431845213,0.0725,7.25,1,85.7162801918893,0.931180822389172,7.25,10.2889489141004,0,-3.58195798099041,-3.86911177635193,0.318912527785509
+6707,86443,450497.952,86543,450397.952,6,67,7.25,0.00725,2.4292344927129,0.147698412698413,15.8193320060462,0.00134412103865849,0.095,9.5,4,76.8910368347435,0.771989827238446,6,9.02985989420038,0,-3.75894248485565,-3.92237043380737,0.2052331268803
+6708,86443,450397.952,86543,450297.952,7,67,6.75,0.0075,2.54622142723113,0.160648148148148,18.9983404552957,0.0025500236220978,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,13.8137962341309,7.07106781005859,-3.93898655474186,-4.00701808929443,0.0962846662086717
+6709,86443,450297.952,86543,450197.952,8,67,2.5,0.00357142857142857,1.12157063224693,0.0357142857142857,19.2917457215189,0.000328606578596009,0,0,0,NA,NA,0,NA,NA,-4.05176452795664,-4.09220790863037,0.0488581288032274
+6710,86443,450197.952,86543,450097.952,9,67,14,0.028,7.85791221915456,0.261447811447811,20.9265450322597,0.00603300750910421,0.03,3,1,74.8763016215986,0.818071558520315,3,9.0642941792806,0,-4.10182229677836,-4.1266942024231,0.0316165060109228
+6711,86443,450097.952,86543,449997.952,10,67,17.75,0.0197222222222222,6.61216885685961,0.25946106362773,14.0186400605096,-0.0184531649010205,0.0025,0.25,1,0,NA,0.25,5,5,-4.13140684366226,-4.1399998664856,0.0132801077519232
+6712,86443,449997.952,86543,449897.952,11,67,16.5,0.055,13.3522546283986,0.319218608852755,15.7868932583326,0.000143877491427702,0.085,8.5,2,79.6323309394513,0.843871975019516,5,13.3806675742654,0,-4.13935911655426,-4.1399998664856,0.00378470087884348
+6713,86443,449897.952,86543,449797.952,12,67,12.75,0.02125,6.22594128389931,0.124368686868687,14.5246277368648,0.00312588279471584,0.0125,1.25,1,58.1880425789518,1,1.25,3.41421356201172,0,-4.12253102660179,-4.1399998664856,0.0299554198934956
+6714,86443,449797.952,86543,449697.952,13,67,1.25,0.003125,0.883883476483184,0.0208333333333333,35.3930848202979,0.0113551592212843,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15,-4.01321758826574,-4.09492540359497,0.134315434725875
+6715,86443,449697.952,86543,449597.952,14,67,46.5,0.093,8.62485453231887,0.284827044025157,16.4434335432005,0.0297039447851239,0.2025,20.25,3,86.4612274136874,0.730059212817833,12.5,4.6653247880347,0,-3.59844879806042,-3.93499684333801,0.437732334261773
+6716,86443,449597.952,86543,449497.952,15,67,57.5,0.191666666666667,20.7630168637942,0.643614658288571,14.142135623731,0.0263931544531079,0.54,54,2,96.4451880614423,0.913476097772009,50.25,2.70388325938472,0,-2.9568021496137,-3.41384673118591,0.428898471317263
+6717,86443,449497.952,86543,449397.952,16,67,76.75,0.38375,19.2698410110585,0.541758040935673,10,0.0917224594624713,0.9425,94.25,1,99.8418294460568,0.610823958650045,94.25,1.57353667808148,0,-2.80492781102657,-2.98538327217102,0.314851775303972
+6718,86443,449397.952,86543,449297.952,17,67,86.75,0.8675,37.247000128772,0.848703170028818,NA,0.0687881180131808,0.8275,82.75,1,99.4773714744283,0.84231884057971,82.75,0.707378053232982,0,-2.91905816396077,-2.99043154716492,0.232452482368367
+6719,86443,449297.952,86543,449197.952,18,67,75.5,0.125833333333333,8.0118174452366,0.277000777000777,10,0.0452822051112526,0.4475,44.75,2,96.6425526442701,0.759401785348116,42.75,1.66160003832599,0,-2.74342158436775,-2.9326708316803,0.404531905197462
+6720,86443,449197.952,86543,449097.952,19,67,66.75,0.166875,13.6066040202864,0.427072098571755,10,0.0746253331843764,0.935,93.5,1,99.8201295789998,0.522621243354671,93.5,2.27232666321617,0,-2.1035530368487,-3.15215039253235,0.864535482080837
+6721,86443,449097.952,86543,448997.952,20,67,68.5,0.137,8.00046802954778,0.187856257744734,10.7082039324994,0.0521474884117197,0.54,54,1,98.1009071848445,0.843175427211767,54,1.55257101412173,0,-3.11643060048421,-4.07912158966064,0.986289682404448
+6722,86443,448997.952,86543,448897.952,21,67,65,0.325,20.4582194603351,0.757056451612903,14.142135623731,0.0177808446466224,0.3275,32.75,3,90.60121275797,0.807126969560281,20,0.435657006183653,0,-3.92546597123146,-4.81130838394165,0.877065302514145
+6723,86443,448897.952,86543,448797.952,22,67,29,0.0725,12.5812020492051,0.580677163338454,15.75693909433,-0.0181143277933006,0.08,8,3,76.7094089027815,0.749163879598662,4,6.82959032058716,0,-4.6141587694486,-5.01113796234131,0.621377734116636
+6724,86443,448797.952,86543,448697.952,23,67,6,0.0075,3.48217256666903,0.154861111111111,16.3627124296868,0.0365896127491578,0.3825,38.25,1,96.7531359636374,0.878974743181524,38.25,16.3714204800674,0,-4.85672438144684,-5.13157939910889,0.392909723304654
+6725,86443,448697.952,86543,448597.952,24,67,2.25,0.0075,2.34797208842961,0.0793650793650794,15.7868932583326,-0.0560154675720696,0.02,2,5,23.4585531379581,0.285714285714286,0.5,10.0485544204712,0,-4.78592987855275,-5.10070657730103,0.417385087905712
+6726,86443,448597.952,86543,448497.952,25,67,37.5,0.1875,14.6364288029427,0.504504504504505,35,0.0107695630261151,0.355,35.5,1,96.4296699126664,0.86881335718545,35.5,3.22104662237033,0,-4.32118007540703,-4.91982936859131,0.709421115581359
+6727,86443,448497.952,86543,448397.952,26,67,60.5,0.3025,22.81061776116,0.805768990504748,11.1803398874989,0.0141430303383095,0.3025,30.25,3,89.5893190909275,0.824046920821114,17,2.28393081791145,0,-3.19316005706787,-3.94532370567322,0.815940809320906
+6728,86443,448397.952,86543,448297.952,27,67,29.5,0.0295,4.29063834570684,0.221182450508293,13.6046011025273,-0.0229797033614111,0.09,9,2,85.4080655988713,0.926739926739927,8.75,0.416666666666667,0,-2.26056395471096,-2.64505529403687,0.390839341552798
+6729,86443,448297.952,86543,448197.952,28,67,14,0.0155555555555556,4.72347438486168,0.222962962962963,16.9457613419935,0.0082414193097793,0.1625,16.25,1,92.2068700432412,0.926033549068815,16.25,9.20406954838679,0,-1.77660691738129,-1.89966523647308,0.209969441436914
+6730,86443,448197.952,86543,448097.952,29,67,2,0.00666666666666667,4.27600230206515,0.111111111111111,10.3934466291663,-0.00313551218299835,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,51.9241386413574,44.7213592529297,-1.59070395678282,-1.70201623439789,0.141195551433844
+6731,86443,448097.952,86543,447997.952,30,67,19.5,0.195,19.1002114097312,0.811965811965812,NA,0.0544079182544374,0.4325,43.25,2,93.8786074712757,0.839807769323188,28,20.4680799803982,0,-1.26833972831567,-1.60127806663513,0.936518179602795
+6732,86443,447997.952,86543,447897.952,31,67,92.75,0.9275,37.7368533088765,0.906558849955076,NA,0.0815133250271902,0.955,95.5,2,98.9644111968639,0.693063228974831,91.75,0.353403141361257,0,1.09737693083783,-1.05358290672302,2.02696151020645
+6733,86443,447897.952,86543,447797.952,32,67,87.25,0.43625,18.9952271556746,0.422413793103448,10,0.087131099421531,0.9525,95.25,1,99.8703629518046,0.679253535500802,95.25,0.643044619422572,0,2.31288708746433,1.46146547794342,0.903202724433764
+6734,86443,447797.952,86543,447697.952,33,67,80.25,0.8025,35.9843239147368,0.896677050882658,NA,0.0626556135753344,0.65,65,1,98.735013968989,0.906130830155471,65,0.400546675461989,0,1.75637803475062,1.15850353240967,0.962564379312179
+6735,86443,447697.952,86543,447597.952,34,67,45,0.15,15.7878497728681,0.619432419432419,26.6666666666667,0.0228804565668179,0.2575,25.75,3,88.6119180373195,0.854399854399854,13.5,1.95352624689491,0,0.234941997099668,-0.109646782279015,0.567705302005199
+6736,86443,447597.952,86543,447497.952,35,67,31.5,0.0242307692307692,5.66941314514475,0.257094659726239,11.8320783921769,0.0322196057722613,0.295,29.5,7,83.99461994185,0.688473520249221,13.5,3.18218444565595,0,-0.140296809996168,-0.200237020850182,0.0896888857960699
+6737,86443,447497.952,86543,447397.952,36,67,38.25,0.03825,3.63748047641266,0.154423436041083,11.032247551123,0.0361849685158677,0.295,29.5,3,92.5279940093444,0.787896864850534,25.25,1.49333223245912,0,-0.246331298723817,-0.383826017379761,0.118822926867606
+6738,86443,447397.952,86543,447297.952,37,67,17.5,0.025,6.51416152680612,0.242876860889283,12.9379444855622,0.0137101867846673,0.07,7,3,77.3984439434929,0.73715651135006,5.75,1.68110956464495,0,-0.300312644491593,-0.431662917137146,0.193032351159372
+6739,86443,447297.952,86543,447197.952,38,67,19.75,0.0164583333333333,3.70329991128591,0.133964447938505,12.9490363460265,0.031476849731007,0.2525,25.25,3,92.0180421141178,0.8595687281731,23.25,3.64589260592319,0,-0.231147198945109,-0.478415578603745,0.364506130947888
+6740,86443,447197.952,86543,447097.952,39,67,21.5,0.0119444444444444,3.49301405944323,0.242214421381088,11.8535913364113,0.035276634155889,0.305,30.5,6,91.5307272835382,0.746085484553534,26,5.19262912625172,0,-0.418319473974407,-0.768091320991516,0.442659375090422
+6741,86443,447097.952,86543,446997.952,40,67,15.25,0.0117307692307692,4.09631446993408,0.170773979107312,10,-0.0134864804893732,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,9.02368927001953,5,-1.01771955564618,-1.43520641326904,0.443557924799246
+6742,86443,446997.952,86543,446897.952,41,67,26.75,0.0382142857142857,7.71675110975461,0.348611111111111,15.9481445302949,0.0112816473277053,0.07,7,3,74.5215880515101,0.7610513739546,3.75,3.07904297964913,0,-1.57212253411611,-1.7570641040802,0.272143474488889
+6743,86443,446897.952,86543,446797.952,42,67,21.5,0.043,11.1107323533257,0.398407859078591,16.607698869111,0.00479902127990499,0.015,1.5,2,44.4894453484604,0.564902102973169,0.75,1.66666666666667,0,-1.85820953547955,-1.94406759738922,0.122801605640094
+6744,86443,446797.952,86543,446697.952,43,67,9.5,0.011875,3.19295263797268,0.0927777777777778,18.824838547648,0.00629023490668033,0.045,4.5,3,62.4104322863097,0.728524335854179,1.75,3.67851130167643,0,-1.99670292933782,-2.05188083648682,0.0636547357207039
+6745,86443,446697.952,86543,446597.952,44,67,22.25,0.0247222222222222,2.98000991434701,0.139523084728564,19.2901792644619,-0.00628109087042276,0.0025,0.25,1,0,NA,0.25,22.3606796264648,22.3606796264648,-2.07312274972598,-2.15071678161621,0.0768994385718914
+6746,86443,446597.952,86543,446497.952,45,67,36.75,0.091875,8.90981849407696,0.292917529330573,22.4830738875342,-0.0444919400907384,0,0,0,NA,NA,0,NA,NA,-2.14764429628849,-2.18410325050354,0.057841429316848
+6747,86443,446497.952,86543,446397.952,46,67,29.5,0.0491666666666667,5.84582954072815,0.159021406727829,16.7314060253863,0.00399522025505576,0.1125,11.25,3,81.4817742551216,0.807264640474425,8,5.86779933505588,0,-2.16325211524963,-2.19119453430176,0.0593372325608316
+6748,86443,446397.952,86543,446297.952,47,67,60.25,0.30125,27.6379282070728,0.755962035201538,10,-0.0235749814569499,0.09,9,5,74.6148068707121,0.725274725274725,6.25,4.3308392100864,0,-2.08804562687874,-2.19121527671814,0.153587365702142
+6749,86443,446297.952,86543,446197.952,48,67,73.75,0.1475,6.84107495443807,0.166666666666667,10.4721359549996,-0.0464686638336434,0.0775,7.75,2,79.3751909073719,0.78319783197832,5.25,3.32919133094049,0,-1.98192105690638,-2.18146753311157,0.210418623106567
+6750,86443,446197.952,86543,446097.952,49,67,10.5,0.015,4.83094238807287,0.180555555555556,10.8430999196421,-0.00357674903209954,0.0225,2.25,3,46.3840245365161,0.573742540494459,1.25,3.00789642333984,0,-1.74932242929935,-2.07724165916443,0.324593122467635
+6751,86443,446097.952,86543,445997.952,50,67,34.5,0.0492857142857143,6.5947777597414,0.207780379911527,10.6744799357137,-0.0016529799687487,0.075,7.5,3,72.4938682090577,0.713182570325428,4.25,0.166666666666667,0,-1.29504122833411,-1.60258507728577,0.406412623150378
+6752,86443,445997.952,86543,445897.952,51,67,44.25,0.110625,11.8802216505447,0.333562729396063,14.2795858817043,0.0409761735691427,0.465,46.5,2,94.8513445832795,0.880460769397957,38.75,1.99934213904924,0,-1.02716528810561,-1.5247118473053,0.561723817899646
+6753,86443,445897.952,86543,445797.952,52,67,52.75,0.5275,30.2224457521849,0.898894154818325,NA,0.0423377480091585,0.4825,48.25,1,97.686149992119,0.962216284781259,48.25,3.76169943933042,0,-0.42144707373033,-0.987155258655548,1.06903676339878
+6754,86443,445797.952,86543,445697.952,53,67,24,0.08,9.28789230660618,0.524503161698284,15,0.0245110842222857,0.31,31,3,92.6239356945628,0.851851851851852,24.25,10.5533299292288,0,-0.800627625198103,-1.15124809741974,1.22811673177133
+6755,86443,445697.952,86543,445597.952,54,67,23,0.0766666666666667,14.7302603666435,0.459757834757835,32.0770187520589,0.034867011998258,0.41,41,2,93.6316061134922,0.831630935009541,24,7.65781592159736,0,-0.821447069446246,-1.4142826795578,1.38923991062538
+6756,86443,445597.952,86543,445497.952,55,67,27.5,0.0916666666666667,18.7415826653371,0.660611214182643,31.9038515619745,0.0316018845365033,0.35,35,3,90.0130431959017,0.735576923076923,14.5,2.40406101771763,0,-1.53013904889425,-1.71549189090729,0.542993373292648
+6757,86443,445497.952,86543,445397.952,56,67,26,0.052,9.92312657620209,0.245054945054945,15.9442719099992,0.0126044213213754,0.3475,34.75,3,92.4340220909081,0.806920686638308,24.5,3.75520733620623,0,-1.94415030628443,-2.13187909126282,0.274935254632096
+6758,86443,445397.952,86543,445297.952,57,67,5.5,0.005,1.95248205493875,0.071969696969697,14.8703530191449,-0.0181799456640692,0.33,33,2,92.294870298653,0.808013872545984,16.75,20.0476200797341,5,-2.20225346088409,-2.28391981124878,0.157419069261926
+6759,86443,445297.952,86543,445197.952,58,67,24.75,0.0225,5.65580189305849,0.186013986013986,10.2146072522725,-0.0414242782698784,0.04,4,4,53.4990879091673,0.565972222222222,1.25,5.07582521438599,0,-2.31285391747952,-2.35312747955322,0.0783830255506382
+6760,86443,445197.952,86543,445097.952,59,67,21,0.0233333333333333,6.94826991337583,0.342662211083264,12.8679320334269,-0.014682787092861,0.0675,6.75,1,85.0052537126447,0.875303946630089,6.75,1.11111111111111,0,-2.31992550690969,-2.35747456550598,0.0905406661906033
+6761,86443,445097.952,86543,444997.952,60,67,40.5,0.135,15.2401881697367,0.464774951076321,11.380711874577,0.0025358077439887,0.185,18.5,2,88.1469902929818,0.848985370457763,10.75,4.40433716129612,0,-2.28743995726109,-2.3390839099884,0.106329070143927
+6762,86443,444997.952,86543,444897.952,61,67,1,0.005,1.66666666666667,0.111111111111111,40,-0.0183838455094246,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,61.4453362358941,56.5685424804688,-2.30819302797318,-2.36582541465759,0.0936184997336173
+6763,86443,444897.952,86543,444797.952,62,67,1,0.00333333333333333,0.833333333333333,0.0555555555555556,23.461938576801,-0.0346345363087403,0.025,2.5,2,58.1880425789518,0.684418145956607,1.25,41.5303894042969,10,-2.4229676425457,-2.59731245040894,0.15328683235718
+6764,86443,444797.952,86543,444697.952,63,67,7.25,0.0725,13.4257986875133,0.683908045977012,NA,-0.278753984773357,0,0,0,NA,NA,0,NA,NA,-2.38057892521222,-2.732097864151,0.429322982802992
+6765,86443,444697.952,86543,444597.952,64,67,45.25,0.4525,32.0586168498061,0.829650092081031,NA,-0.183159254247876,0.15,15,2,89.5239094849231,0.875565610859729,14.25,0.166666666666667,0,-2.35729808360338,-2.78435921669006,0.394113414971439
+6766,86443,444597.952,86543,444497.952,65,67,40.75,0.4075,29.4083441542851,0.738241308793456,NA,-0.0864218937110854,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.4646085302035,-2.64042448997498,0.2062182370282
+6767,86443,444497.952,86543,444397.952,66,67,19.5,0.0325,6.13532512986058,0.247374239911553,12.060113295833,-0.00392838132242559,0.2525,25.25,6,85.6690886710573,0.682181858497016,10.5,15.3968463746628,0,-2.48278210560481,-2.59589624404907,0.110584463926383
+6768,86443,444397.952,86543,444297.952,67,67,69.25,0.115416666666667,10.0537229217942,0.317385594729345,10,0.051192120796768,0.47,47,3,94.04393485009,0.745174582520061,27.75,1.09687874164987,0,-2.35187594592571,-2.4210638999939,0.0975974850703918
+6769,86443,444297.952,86543,444197.952,68,67,80.5,0.268333333333333,15.1908899600417,0.33508036338225,10,0.0667866448883433,0.64,64,1,98.6842105263158,0.809027777777778,64,1.28374847769737,0,-2.14140723148982,-2.34503269195557,0.297265429653392
+6770,86443,444197.952,86543,444097.952,69,67,92.5,0.925,38.417300044193,0.866666666666667,NA,0.0654867945346632,0.52,52,4,92.3438837995845,0.795434969853575,36.25,0.456730769230769,0,-1.77231538295746,-2.19289922714233,0.477155488541224
+6771,86443,444097.952,86543,443997.952,70,67,91.5,0.915,39.2929012162055,0.891165755919854,NA,0.0398901634227423,0.2725,27.25,5,88.5080210500812,0.776719521342474,16.75,0.0458715596330275,0,-1.27974458535512,-1.53571212291718,0.394542181348568
+6772,86443,443997.952,86543,443897.952,71,67,97,0.97,38.0733033493332,0.90979381443299,NA,0.0739886251624762,0.7725,77.25,1,99.2749460632782,0.826290547940033,77.25,0.194174757281553,0,-1.20851077884436,-1.37049424648285,0.165858067852802
+6773,86443,443897.952,86543,443797.952,72,67,94.75,0.9475,37.9722089994538,0.895338610378188,NA,0.0580674035310835,0.4125,41.25,3,94.0331616525337,0.882418812989922,36,0.575757575757576,0,-1.20032076537609,-1.49388146400452,0.263282357636975
+6774,86443,443797.952,86543,443697.952,73,67,80.75,0.8075,35.7210818682078,0.880804953560371,NA,-0.00375420905233113,0.06,6,3,68.0886290408693,0.720044792833147,2.5,0.625,0,-1.82871278375387,-2.25118327140808,0.51847806921687
+6775,86443,443697.952,86543,443597.952,74,67,39.5,0.1975,19.4413343579548,0.501813308104699,10,0.0272968822167286,0.325,32.5,3,90.8202423511374,0.837474605407095,16.5,12.9299421457144,0,-2.66145386298498,-2.83564352989197,0.357230685406546
+6776,86443,443597.952,86543,443497.952,75,67,2.25,0.0045,2,0.133333333333333,25.3146385168424,0.00855305512937775,0.2425,24.25,1,94.5753035249093,0.969652137627556,24.25,21.1709397896049,0,-3.11855690181255,-3.26681971549988,0.194924642431773
+6777,86443,443497.952,86543,443397.952,76,67,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,33.7653331428247,0.0206396748944462,0.5025,50.25,1,97.8384672014884,0.956889002654021,50.25,23.6723768699228,5,-3.37946452697118,-3.44659900665283,0.120217892725792
+6778,86443,443397.952,86543,443297.952,77,67,0.5,0.0025,0,0,15.8113883008419,-0.102398709720583,0,0,0,NA,NA,0,NA,NA,-3.49715187152227,-3.53971242904663,0.0580579377980615
+6779,86443,443297.952,86543,443197.952,78,67,1.5,0.0025,0,0,18.3510222365027,-0.044605551538989,0,0,0,NA,NA,0,NA,NA,-3.52597904205322,-3.55919218063354,0.0410556219272258
+6780,86443,443197.952,86543,443097.952,79,67,0,NA,NA,NA,NA,0.0331378916784888,0.455,45.5,2,96.6451912226409,0.92921895842975,44.75,45.6995562354287,14.1421356201172,-3.50206913550695,-3.54175972938538,0.0432601337321869
+6781,86443,443097.952,86543,442997.952,80,67,1.75,0.0025,0,0,17.94120359438,-0.0264911715555354,0.2775,27.75,1,95.2720210973421,0.951557093425606,27.75,17.1442393225593,0,-3.44114182889462,-3.49763560295105,0.0697263213368545
+6782,86443,442997.952,86543,442897.952,81,67,0.5,0.0025,0,0,26.9258240356725,-0.0274204591607486,0,0,0,NA,NA,0,NA,NA,-3.34180488189061,-3.41186189651489,0.122701684638733
+6783,86443,442897.952,86543,442797.952,82,67,1.5,0.0025,0,0,13.8045872455279,-0.0493676710657019,0.05,5,1,81.7256002368443,0.694397283531409,5,23.4302787780762,7.07106781005859,-3.18776723742485,-3.31028461456299,0.215872095798976
+6784,86443,442797.952,86543,442697.952,83,67,5,0.00416666666666667,1.32075085251088,0.0625,14.3055556792774,-0.0551848268568574,0,0,0,NA,NA,0,NA,NA,-2.90754350026449,-3.16063761711121,0.57976662703122
+6785,86443,442697.952,86543,442597.952,84,67,5.75,0.00638888888888889,2.70379131193668,0.0817901234567901,11.6715372290251,-0.0209953703643805,0,0,0,NA,NA,0,NA,NA,-2.01449417360709,-2.97087788581848,1.18293114209124
+6786,86443,442597.952,86543,442497.952,85,67,23.75,0.0339285714285714,9.86990409196519,0.363662803724915,15.0115283573694,-0.0047143915610468,0.0225,2.25,2,62.5208930833619,0.658994032395567,2,3.33333333333333,0,-1.36657091788948,-2.56920123100281,1.60016356608144
+6787,86443,442497.952,86543,442397.952,86,67,27.25,0.068125,9.60130158297994,0.252202380952381,21.8895854531502,0.0152810746791511,0.2325,23.25,1,94.3478768975745,0.992151014481378,23.25,12.3376541137695,0,-1.73828433916788,-2.81314468383789,1.33285015837184
+6788,86443,442397.952,86543,442297.952,87,67,32.25,0.03225,7.91722820280509,0.215972222222222,10.532247551123,0.0124952885205857,0.1825,18.25,4,87.6962625697636,0.847094801223242,15.75,3.14776830803858,0,-2.45937669277191,-2.88922619819641,1.00669580769058
+6789,86443,442297.952,86543,442197.952,88,67,13.25,0.1325,23.4992089630722,0.544025157232704,NA,0.0901098635862581,0.7975,79.75,1,99.3695525162542,0.868750256347156,79.75,32.5198379444852,0,-2.95931144058704,-3.23024392127991,0.465809978537747
+6790,86443,442197.952,86543,442097.952,89,67,0,NA,NA,NA,NA,0.0570338017538597,0.64,64,2,96.0257411754766,0.855324074074074,41.25,85.3487666100264,32.0156211853027,-3.20457388957342,-3.29020094871521,0.140453110359629
+6791,86443,442097.952,86543,441997.952,90,67,0,NA,NA,NA,NA,-0.0140211079823894,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,131.361009216309,120.415946960449,-3.26012937227885,-3.28999996185303,0.0727128421914596
+6792,86443,441997.952,86543,441897.952,91,67,0,NA,NA,NA,NA,-0.070885835607387,0,0,0,NA,NA,0,NA,NA,-3.27561567723751,-3.28999996185303,0.0293934959151574
+6793,86443,441897.952,86543,441797.952,92,67,0,NA,NA,NA,NA,0.00357223837389938,0.1675,16.75,2,90.0242004443591,0.815199815199815,15.5,145.009002343932,108.166542053223,-3.23758602142334,-3.26888060569763,0.0361865546218195
+6794,86443,441797.952,86543,441697.952,93,67,0,NA,NA,NA,NA,0.0500583766269847,0.4825,48.25,1,97.686149992119,0.956818611178582,48.25,216.363054344691,161.012420654297,-3.19252842664719,-3.2141637802124,0.0213644900527606
+6795,86443,441697.952,86543,441597.952,94,67,0,NA,NA,NA,NA,0.0466309791867934,0.59,59,1,98.4111099483777,0.977877329793706,59,191.273215407032,152.643371582031,-3.19970095157623,-3.23694944381714,0.0295531787514457
+6796,86443,441597.952,86543,441497.952,95,67,0,NA,NA,NA,NA,0.0396645346881451,0.2975,29.75,1,95.613700031282,0.947278239093186,29.75,159.572166763434,140.890029907227,-3.19965825974941,-3.23802924156189,0.0415718240656284
+6797,86443,441497.952,86543,441397.952,96,67,5,0.025,7.43934735257587,0.12719298245614,10,0.00662096085085068,0.1425,14.25,1,91.3207120308943,0.797703337894925,14.25,6.60560393751713,0,-3.10452530781428,-3.16947722434998,0.0909491873111486
+6798,86443,441397.952,86543,441297.952,97,67,7.5,0.009375,4.14574703246419,0.101762820512821,17.619769793652,0.05720738635624,0.62,62,2,96.6539149735407,0.807168784029038,55.5,12.7845988119802,0,-2.89578318595886,-3.01454663276672,0.171987047606004
+6799,86443,441297.952,86543,441197.952,98,67,85.5,0.855,36.6064448598938,0.903508771929825,NA,0.0436852282649852,0.3975,39.75,2,96.303118572263,0.818109475359518,39,0.473726260587104,0,-2.36910442511241,-2.65829253196716,0.36073160584593
+6800,86443,441197.952,86543,441097.952,99,67,99.7368421052632,0.9475,37.2076742592842,0.931398416886544,NA,0.0441800203838648,0.335,33.5,2,92.4028582526989,0.827437446074202,17,0.335820895522388,0,-2.16593319177628,-2.43510222434998,0.331175350549999
+6801,86543,451097.952,86643,450997.952,0,68,12,0.015,4.7830665167552,0.275562169312169,18.2167841852848,0.0157233912155115,0.1575,15.75,5,80.7885450448001,0.730240086323172,10,6.39401490347726,0,-2.83267294036018,-3.12738823890686,0.431389137685107
+6802,86543,450997.952,86643,450897.952,1,68,21.5,0.0238888888888889,5.21407071952448,0.253692075120647,13.4098651204095,0.042815504050559,0.3775,37.75,3,95.2304881668159,0.831818247720122,35.75,5.3817673740008,0,-2.73319923877716,-2.9361743927002,0.301391240918433
+6803,86543,450897.952,86643,450797.952,2,68,7,0.005,2.15403865259832,0.134920634920635,19.1446099468267,0.0118621445860208,0.0725,7.25,3,72.1763404541935,0.678843837816138,3.25,7.09958918341275,0,-2.9557372464074,-3.10282397270203,0.241645042600609
+6804,86543,450797.952,86643,450697.952,3,68,11.5,0.00884615384615385,3.01479918779633,0.183281995781996,14.187984954119,0.00851110476376846,0.1,10,4,79.6921587534009,0.718076285240464,6.5,4.97124705314636,0,-3.48039521773656,-3.74199509620667,0.310958129497202
+6805,86543,450697.952,86643,450597.952,4,68,32.75,0.0655,8.26293888388061,0.388275418275418,13.1421823327095,0.0102508175859111,0.22,22,3,88.0296491126479,0.844847297076596,16.5,7.30028796195984,0,-3.839396821128,-3.91769027709961,0.165326687048998
+6806,86543,450597.952,86643,450497.952,5,68,2.5,0.0125,4.36034987878564,0.322916666666667,11.1803398874989,-0.00566946989267308,0.175,17.5,1,92.6818041122695,0.931017491993102,17.5,12.0664165224348,0,-3.90840931733449,-3.93362307548523,0.0848186695956833
+6807,86543,450497.952,86643,450397.952,6,68,0,NA,NA,NA,NA,-0.0323481461955134,0,0,0,NA,NA,0,NA,NA,-3.89391718970405,-3.94109678268433,0.10000637130953
+6808,86543,450397.952,86643,450297.952,7,68,2.5,0.005,1.70710678118655,0.15,33.3787284961929,-0.0150681411006462,0,0,0,NA,NA,0,NA,NA,-3.96238577365875,-3.99869251251221,0.0567410183253356
+6809,86543,450297.952,86643,450197.952,8,68,7.5,0.0075,2.651382032249,0.147777777777778,19.990040288892,-0.0247851378562154,0.0075,0.75,1,44.4894453484604,1,0.75,5,5,-4.03910541534424,-4.0696759223938,0.0415214482669723
+6810,86543,450197.952,86643,450097.952,9,68,39.75,0.099375,8.50086371582076,0.147168803418803,12.1352549156242,-0.00798743196927148,0.01,1,2,34.5233986084855,0.494949494949495,0.75,1.25,0,-4.08679564793905,-4.09818363189697,0.0254314229848931
+6811,86543,450097.952,86643,449997.952,10,68,6.75,0.00519230769230769,1.47733877744354,0.0759259259259259,17.3863256236957,0.00244609951821531,0,0,0,NA,NA,0,NA,NA,-4.11415346463521,-4.12850046157837,0.015063775670113
+6812,86543,449997.952,86643,449897.952,11,68,10.25,0.0113888888888889,3.58518933169436,0.138804713804714,12.4572114303435,0.0061167793844379,0.0425,4.25,4,62.0175290953649,0.5822454308094,2.25,17.9545256670784,7.07106781005859,-4.11865589353773,-4.13096904754639,0.0294081003127132
+6813,86543,449897.952,86643,449797.952,12,68,21,0.105,15.036295913418,0.336345381526104,15.8113883008419,-0.00510810826697707,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,13.4408251444499,11.1803398132324,-4.06861700614293,-4.12398529052734,0.0938106589041921
+6814,86543,449797.952,86643,449697.952,13,68,25.25,0.0420833333333333,6.68975618333802,0.3160140562249,16.3885911604023,0.00966075227772308,0.0825,8.25,3,80.2453423091583,0.63669391462307,6.5,2.61252131606593,0,-3.8557153807746,-4.01214790344238,0.295997108842496
+6815,86543,449697.952,86643,449597.952,14,68,62.75,0.209166666666667,24.1688758802474,0.735260830351168,12.1676051329096,-0.00257352075568633,0.1425,14.25,6,75.7672956130946,0.654905694056048,6,2.02377787807532,0,-2.99023177226384,-3.70353555679321,0.562777945633252
+6816,86543,449597.952,86643,449497.952,15,68,54,0.0771428571428571,9.93395938337898,0.390810170221935,11.2662135962467,0.0727137205182225,0.6825,68.25,1,98.892341761381,0.778543307086614,68.25,3.29928907457289,0,-2.49659376674228,-2.74973607063293,0.354050985454021
+6817,86543,449497.952,86643,449397.952,16,68,84.5,0.845,37.8867659046529,0.842702169625246,NA,0.0915008093602955,0.985,98.5,1,99.9600766120013,0.376114081996433,98.5,0.802571582310091,0,-2.70807719230652,-2.85555362701416,0.282856839113365
+6818,86543,449397.952,86643,449297.952,17,68,80.75,0.8075,38.4514447210067,0.797213622291022,NA,0.087660158071667,0.9825,98.25,1,99.9533339757335,0.923400995787055,98.25,0.962555397557848,0,-2.74827029969957,-2.89465236663818,0.205735711943563
+6819,86543,449297.952,86643,449197.952,18,68,62.75,0.0896428571428571,7.0712957711973,0.188818747838118,10.1686199839284,0.0660328432032838,0.785,78.5,1,99.3228142317568,0.795725958516656,78.5,1.98611340856856,0,-2.80870606501897,-3.28723239898682,0.563576831566499
+6820,86543,449197.952,86643,449097.952,19,68,66.75,0.6675,35.2198882200158,0.797128589263421,NA,0.0919709356618114,0.9625,96.25,1,99.898450616446,0.671232876712328,96.25,3.05307450727983,0,-3.48112069235908,-4.55415010452271,1.33171385641344
+6821,86543,449097.952,86643,448997.952,20,68,5,0.00625,1.74961689354474,0.0928030303030303,20.4755785852445,-0.00471056594395122,0.1675,16.75,1,92.4032163835468,0.917866584533251,16.75,15.1925907704368,0,-4.6082329750061,-4.90299987792969,0.554538047644805
+6822,86543,448997.952,86643,448897.952,21,68,3,0.03,11.6222899395377,0.305555555555556,NA,-0.0564866886345408,0,0,0,NA,NA,0,NA,NA,-4.95354890823364,-5.12695121765137,0.272864240694699
+6823,86543,448897.952,86643,448797.952,22,68,0,NA,NA,NA,NA,-0.0893939482234055,0,0,0,NA,NA,0,NA,NA,-5.12637726465861,-5.20416879653931,0.143155596039237
+6824,86543,448797.952,86643,448697.952,23,68,4.25,0.00607142857142857,3.65286851926229,0.0873015873015873,11.1803398874989,-0.051652466914602,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,8.36769757952009,5,-5.20090679327647,-5.22566175460815,0.0723164736346812
+6825,86543,448697.952,86643,448597.952,24,68,0,NA,NA,NA,NA,-0.0796926582604647,0,0,0,NA,NA,0,NA,NA,-5.05474906497532,-5.15213298797607,0.182903541409651
+6826,86543,448597.952,86643,448497.952,25,68,28.75,0.071875,9.78258967192754,0.596717266366817,10,0.0281852702478136,0.5,50,1,97.819928619089,0.924528301886792,50,3.84030437469482,0,-4.44623539845149,-4.93756341934204,0.793186534017298
+6827,86543,448497.952,86643,448397.952,26,68,61.5,0.076875,6.45551287689301,0.256252360049089,10,0.0167040248087869,0.315,31.5,2,93.123214314764,0.853377107704077,24,3.62672790648445,0,-2.97266011767917,-3.74404859542847,0.999912860649145
+6828,86543,448397.952,86643,448297.952,27,68,44,0.044,6.52286012632554,0.301813370275646,10.3541019662497,0.0313439799790967,0.2175,21.75,7,82.9348852475548,0.769143563846233,15.25,3.89114934548564,0,-1.94197100400925,-2.42428731918335,0.423664929434601
+6829,86543,448297.952,86643,448197.952,28,68,29,0.0241666666666667,4.18715361297547,0.25,12.5414998591449,-0.0100056958338246,0.0525,5.25,2,72.9754577050405,0.736147757255937,3.25,2.10200645810082,0,-1.53692638874054,-1.66507589817047,0.187826225963666
+6830,86543,448197.952,86643,448097.952,29,68,12.75,0.010625,2.75871980353029,0.154265873015873,10.9084749531246,-0.0607750516501983,0,0,0,NA,NA,0,NA,NA,-1.29566956559817,-1.45721423625946,0.232219449086624
+6831,86543,448097.952,86643,447997.952,30,68,53.5,0.178333333333333,14.5919817979802,0.39896004378763,10,0.0236676544375587,0.3075,30.75,3,94.0875654318821,0.812209612925159,29.25,0.684082403415587,0,-0.291978338215914,-1.18991577625275,1.50736534306199
+6832,86543,447997.952,86643,447897.952,31,68,96.25,0.9625,37.8918045829287,0.908658008658009,NA,0.0798910896293819,0.9475,94.75,1,99.8561526638156,0.947016358699252,94.75,0.171503957783641,0,1.5085342811524,0.00458284048363566,1.54887264009784
+6833,86543,447897.952,86643,447797.952,32,68,99.25,0.9925,38.304429188215,0.92863140218304,NA,0.0780384141951799,0.995,99.5,1,99.9867925566623,-0.0582010582010683,99.5,0.0376884422110553,0,2.75967131058375,1.2567286491394,1.31059682484938
+6834,86543,447797.952,86643,447697.952,33,68,93.5,0.935,39.1140639353805,0.903297682709447,NA,0.0867364214081317,1,100,1,100,NA,100,0.378033008575439,0,1.381839974059,0.471745163202286,1.4076380775127
+6835,86543,447697.952,86643,447597.952,34,68,41.25,0.0375,6.15634977612107,0.229442220951655,11.1796552639169,0.0401170669987789,0.2975,29.75,3,89.4905895282835,0.756161855805984,14,1.70827118689273,0,0.0783549988021453,-0.251047819852829,0.47723183208603
+6836,86543,447597.952,86643,447497.952,35,68,47,0.05875,8.1657519224563,0.361623297147722,10.7725424859374,0.0481561655696714,0.5175,51.75,5,96.4570047011328,0.773904851625059,49.5,2.93118262175777,0,-0.279427881042163,-0.38680163025856,0.156828103086668
+6837,86543,447497.952,86643,447397.952,36,68,15.75,0.00984375,2.28048505659052,0.138684640522876,12.5477037360816,0.0155658786045387,0.1425,14.25,7,72.3347092035745,0.643005890402808,4.5,4.73876424421344,0,-0.39656334122022,-0.462266623973846,0.0921396355616918
+6838,86543,447397.952,86643,447297.952,37,68,9.25,0.00660714285714286,1.96391557561017,0.135204081632653,15.4272406673839,0.0242841125099312,0.0725,7.25,5,67.1046651855973,0.655904111945862,3.25,4.75994807276232,0,-0.507702238029904,-0.59096097946167,0.0989830156512003
+6839,86543,447297.952,86643,447197.952,38,68,15.75,0.0315,5.84438222725443,0.218518518518519,20.1485104414099,0.017348496587465,0.0325,3.25,4,54.8681123072349,0.655469422911283,2.25,4.09879009540264,0,-0.637431179483732,-0.813620567321777,0.195853092636749
+6840,86543,447197.952,86643,447097.952,39,68,2.25,0.00375,1.14481120654435,0.0509259259259259,24.5753849600164,0.00234404182954677,0.0625,6.25,3,68.9949404657305,0.706666666666667,2.75,17.1010899353027,0,-0.881709436575572,-1.06752121448517,0.29352505480435
+6841,86543,447097.952,86643,446997.952,40,68,2.75,0.00305555555555556,0.555555555555556,0.037037037037037,24.8210973801699,0.00962583932883717,0.0225,2.25,3,47.6809287864226,0.573742540494459,1.25,30.7867952982585,18.0277557373047,-1.30981208880742,-1.50359869003296,0.257499799927038
+6842,86543,446997.952,86643,446897.952,41,68,6.25,0.015625,5.02147442165981,0.133012820512821,27.9576873739113,0.00305773535477783,0,0,0,NA,NA,0,NA,NA,-1.67784070968628,-1.76751565933228,0.176073830299926
+6843,86543,446897.952,86643,446797.952,42,68,18,0.0225,5.03772685476773,0.169181034482759,10.8852549156242,0.00351331386250422,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,4.90468173556858,0,-1.91158464550972,-2.00068330764771,0.105236401461516
+6844,86543,446797.952,86643,446697.952,43,68,16,0.0266666666666667,6.54769190845639,0.312829514658783,10.1967233145832,0.00222358432612964,0.0275,2.75,3,51.3242173142448,0.657240788346187,1.5,1.81818181818182,0,-1.99624137083689,-2.03061890602112,0.0543449155224449
+6845,86543,446697.952,86643,446597.952,44,68,13.25,0.0265,5.72814965022257,0.252037037037037,20.2821703627935,0.00539810804889385,0.0425,4.25,2,70.804392268477,0.74934725848564,3,2.05882352941176,0,-2.01197429498037,-2.05828952789307,0.0656958356615038
+6846,86543,446597.952,86643,446497.952,45,68,3.75,0.00625,2.04333282741393,0.143518518518519,17.8470065541656,0.00183058457152583,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471,-2.09327683846156,-2.15702342987061,0.0763798838187362
+6847,86543,446497.952,86643,446397.952,46,68,0.75,0.0025,0,0,13.4628120507726,0.00542920206698113,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,31.6413040161133,29.1547584533691,-2.20258540577359,-2.25276780128479,0.0624453299723075
+6848,86543,446397.952,86643,446297.952,47,68,2.5,0.005,1.80807767052726,0.144444444444444,19.3573145731729,0.00196481834476913,0,0,0,NA,NA,0,NA,NA,-2.27575093507767,-2.33265829086304,0.0775326153528316
+6849,86543,446297.952,86643,446197.952,48,68,27.25,0.0545,8.59957113260745,0.304843304843305,13.3851648071345,-0.00546915425838051,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,1.5,0,-2.26208493444655,-2.32382655143738,0.102562611561637
+6850,86543,446197.952,86643,446097.952,49,68,16,0.0266666666666667,5.70660115036828,0.187182280319535,17.2116600312253,0.00341952988979756,0.0925,9.25,4,75.6416590484342,0.620647608725105,4.25,2.89041220175253,0,-2.05552499492963,-2.18732857704163,0.178944036661932
+6851,86543,446097.952,86643,445997.952,50,68,10.75,0.026875,6.66709342672602,0.243421052631579,19.3585412256314,-0.00673207190015091,0.005,0.5,2,0,1,0.25,7.07106781005859,7.07106781005859,-1.7569399939643,-1.8777529001236,0.265215888822894
+6852,86543,445997.952,86643,445897.952,51,68,33.75,0.0675,12.1081556192052,0.361858283206598,11,-0.0121789198688566,0.1225,12.25,1,90.2255639097744,0.905033238366572,12.25,1.02040816326531,0,-1.25972180813551,-1.8585616350174,1.06219735411733
+6853,86543,445897.952,86643,445797.952,52,68,58.75,0.146875,16.8519938113731,0.75763312803754,12.00693909433,0.0125726523680714,0.175,17.5,5,78.5487152520628,0.724069967972407,6,0.357142857142857,0,1.00115707682239,-0.0347672402858734,1.51504686179728
+6854,86543,445797.952,86643,445697.952,53,68,51.25,0.128125,16.0219324969341,0.554060084180566,14.1257038496822,0.00999402470761197,0.1125,11.25,5,75.041094271745,0.71830985915493,6.75,1.55555555555556,0,0.363008111715317,-1.09344673156738,1.6673926018134
+6855,86543,445697.952,86643,445597.952,54,68,69,0.345,28.0772876609404,0.790633972766827,10,0.0377760256422698,0.3825,38.25,2,96.0606841648451,0.844396098376244,37.5,1.20915032679739,0,0.0462596747610304,-0.872179448604584,1.39742841611721
+6856,86543,445597.952,86643,445497.952,55,68,46.25,0.115625,17.6622867086693,0.526227589357086,13.75,0.0422299987765382,0.4375,43.75,2,95.9960636846712,0.90092879256966,42.25,1.62366934640067,0,-0.86095098985566,-1.17112648487091,0.736638092797618
+6857,86543,445497.952,86643,445397.952,56,68,39.75,0.06625,13.0068233199501,0.273090132739256,11.8018980501403,0.0503587562756366,0.5175,51.75,2,97.405431814605,0.930018168360137,51.25,2.63768255998547,0,-1.67815058430036,-1.98950958251953,0.422766663727184
+6858,86543,445397.952,86643,445297.952,57,68,22,0.0733333333333333,8.95724615916739,0.258169934640523,10,0.0449733354648924,0.5575,55.75,2,97.4971319178766,0.940243372446762,55,6.02562363799912,0,-2.08992160691155,-2.22357892990112,0.199395220713748
+6859,86543,445297.952,86643,445197.952,58,68,14,0.02,6.57164718306123,0.365873015873016,10.8829056982141,0.0228782759397291,0.365,36.5,4,91.4995274861553,0.823055825886933,28.75,6.12717440356947,0,-2.26186488072077,-2.3156304359436,0.0789133770472766
+6860,86543,445197.952,86643,445097.952,59,68,6.75,0.0084375,3.59725589497356,0.232638888888889,20.0631903495223,0.0124581811687494,0.215,21.5,3,88.2091729497606,0.725240414637192,12.5,10.6123244263405,0,-2.26889567905002,-2.29472517967224,0.0440879503809672
+6861,86543,445097.952,86643,444997.952,60,68,14.5,0.029,8.70775835321387,0.327920227920228,14.5548984852978,-0.00207390905266948,0.085,8.5,4,74.4690287440167,0.60967993754879,4,5.55614650950712,0,-2.23907093207041,-2.28613829612732,0.0602329110361444
+6862,86543,444997.952,86643,444897.952,61,68,3.5,0.005,1.45346518080087,0.0697278911564626,12.5893702857732,0.00623679217811514,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,7.60734394618443,5,-2.28667447302077,-2.34153723716736,0.0848565569550839
+6863,86543,444897.952,86643,444797.952,62,68,0.25,0.0025,0,0,NA,-0.0582718282709857,0,0,0,NA,NA,0,NA,NA,-2.53330274422963,-2.72758889198303,0.194533065247328
+6864,86543,444797.952,86643,444697.952,63,68,0.75,0.00375,1.25,0.0833333333333333,15.8113883008419,-0.419970758128911,0,0,0,NA,NA,0,NA,NA,-2.84772851732042,-2.92689895629883,0.159855148729138
+6865,86543,444697.952,86643,444597.952,64,68,2.25,0.0225,7.6702319142193,0.425925925925926,NA,-0.151901943311677,0,0,0,NA,NA,0,NA,NA,-2.88070201873779,-2.94770932197571,0.137338148910437
+6866,86543,444597.952,86643,444497.952,65,68,8.75,0.04375,11.1320172488677,0.416310541310541,73.824115301167,-0.0425695077091223,0.14,14,1,91.1967767414513,0.892112203308559,14,8.21576016289847,0,-2.78576069407993,-2.87696266174316,0.131643283764888
+6867,86543,444497.952,86643,444397.952,66,68,70,0.35,19.4332040809227,0.473021582733813,10,0.116563284978802,0.905,90.5,1,99.7306491449722,0.953899346907414,90.5,1.57310666036869,0,-2.63697936799791,-2.75827956199646,0.191248160986052
+6868,86543,444397.952,86643,444297.952,67,68,66.5,0.16625,16.2318315872174,0.678201911589008,12.5,0.0911576364618577,0.6325,63.25,3,97.5386080517922,0.879445449065702,61.25,2.40357399740709,0,-2.41605577866236,-2.51479029655457,0.142420746357121
+6869,86543,444297.952,86643,444197.952,68,68,68.75,0.171875,17.8113771011382,0.75501217562189,11.4528470752105,0.0523528149589038,0.4925,49.25,3,93.2248557091816,0.838045752075039,36.5,2.04152603923972,0,-2.36138089497884,-2.43516874313354,0.10673663593518
+6870,86543,444197.952,86643,444097.952,69,68,75.25,0.250833333333333,19.2741621734985,0.721295121760238,11.937129433614,0.0771598239854939,0.625,62.5,3,95.6997947292367,0.783475783475783,49.75,1.51798989868164,0,-2.06641859809558,-2.27488780021667,0.246656136746159
+6871,86543,444097.952,86643,443997.952,70,68,98.25,0.9825,37.9301935529456,0.927480916030534,NA,0.0147524045001774,0.2925,29.25,5,89.9794823340984,0.846656443762917,25,0.0427350427350427,0,-1.68003368377686,-1.83806979656219,0.245340121428999
+6872,86543,443997.952,86643,443897.952,71,68,100,1,38.2238923285138,0.934166666666667,NA,0.0528106396400835,0.5025,50.25,2,96.9070994149881,0.827556010616083,47.75,0,0,-1.29459140698115,-1.5267596244812,0.25978541541491
+6873,86543,443897.952,86643,443797.952,72,68,91,0.455,23.1668365682172,0.768071705426357,11.1803398874989,0.0794621384915445,0.7075,70.75,1,99.0059126497077,0.85862091125249,70.75,0.527004012791934,0,-1.33000116878086,-1.55742108821869,0.303711800247673
+6874,86543,443797.952,86643,443697.952,73,68,83.25,0.8325,37.062238231921,0.83983983983984,NA,0.0336642260827921,0.3275,32.75,4,89.2990361400988,0.76357499494486,21,0.99236641221374,0,-1.81724089384079,-2.28029179573059,0.596928825635205
+6875,86543,443697.952,86643,443597.952,74,68,21.5,0.0358333333333333,6.77640925201288,0.288812785388128,10.7868932583326,0.0895021281378286,0.6525,65.25,2,96.8292232243258,0.917611922731753,59.75,23.5021420986716,0,-2.56983953052097,-2.82929086685181,0.374250343717079
+6876,86543,443597.952,86643,443497.952,75,68,10.25,0.0128125,3.71131548565925,0.174382716049383,11.4460970049771,0.0505852625498665,0.4525,45.25,1,97.4390089868719,0.950930280106318,45.25,21.815818080586,0,-3.09006685018539,-3.29222869873047,0.22182093904663
+6877,86543,443497.952,86643,443397.952,76,68,15.25,0.0305,4.52489965010099,0.14702380952381,17.6084988475635,-0.0244042800405032,0.0975,9.75,1,88.4075627573592,0.914766673769444,9.75,21.4476554577167,10,-3.40413875050015,-3.48629331588745,0.129070422830433
+6878,86543,443397.952,86643,443297.952,77,68,0,NA,NA,NA,NA,-0.0703392535168678,0,0,0,NA,NA,0,NA,NA,-3.53837633132935,-3.56587862968445,0.0536626954348883
+6879,86543,443297.952,86643,443197.952,78,68,0,NA,NA,NA,NA,-0.0201597740661236,0,0,0,NA,NA,0,NA,NA,-3.56603382031123,-3.5798192024231,0.0234257637154369
+6880,86543,443197.952,86643,443097.952,79,68,1,0.0025,0,0,26.1059688736222,0.0287664676837903,0.3975,39.75,1,96.9152464661248,0.98863184220997,39.75,22.0777178830321,0,-3.51614777247111,-3.55106520652771,0.0530882026784988
+6881,86543,443097.952,86643,442997.952,80,68,2,0.0025,0,0,21.6166245699424,-0.069384121557232,0.0075,0.75,1,44.4894453484604,1,0.75,5.6903559366862,5,-3.44982659816742,-3.49312281608582,0.0433267230259356
+6882,86543,442997.952,86643,442897.952,81,68,1.25,0.0025,0,0,12.1065495701675,-0.0412814696013811,0,0,0,NA,NA,0,NA,NA,-3.39259367518955,-3.42005896568298,0.0500552136357942
+6883,86543,442897.952,86643,442797.952,82,68,2,0.0025,0,0,11.1803398874989,-0.134010349484088,0,0,0,NA,NA,0,NA,NA,-3.28515509764353,-3.34089088439941,0.0752218071901322
+6884,86543,442797.952,86643,442697.952,83,68,2.5,0.00277777777777778,0.277777777777778,0.0185185185185185,14.3825243444435,-0.0495717055119167,0,0,0,NA,NA,0,NA,NA,-3.18070191807217,-3.24477100372314,0.103427781669617
+6885,86543,442697.952,86643,442597.952,84,68,1.25,0.00625,2.88509708815908,0.222222222222222,10,-0.0317736922354561,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,55.105510075887,51.4781532287598,-3.08540650208791,-3.18147873878479,0.171249650150375
+6886,86543,442597.952,86643,442497.952,85,68,8.25,0.0117857142857143,3.90920075365485,0.225694444444444,11.3520873049944,-0.0145369152350395,0.0875,8.75,1,87.4704367425575,0.943316013226264,8.75,45.6767786298479,35.355339050293,-2.95127669970194,-3.15060710906982,0.522913652676333
+6887,86543,442497.952,86643,442397.952,86,68,18,0.18,26.4062395765277,0.543981481481482,NA,0.128386841759639,0.6675,66.75,3,98.0620782379474,0.921960590097999,66,28.1294794332669,0,-2.40356916810075,-3.12843608856201,1.43714750362046
+6888,86543,442397.952,86643,442297.952,87,68,22,0.055,13.8583839782888,0.37102266535905,20.1331869627094,-0.0137714281812441,0.055,5.5,3,70.4993035660702,0.719887955182073,3.75,7.82939043912021,0,-1.20927779293723,-2.86333870887756,1.49787102541322
+6889,86543,442297.952,86643,442197.952,88,68,19,0.0316666666666667,10.7252797024053,0.277063722884156,12.2140452079103,6.74485381750856e-06,0.11,11,2,87.1763607281996,0.863346492559976,10.5,10.2045875462619,0,-1.23729578281442,-2.6977903842926,1.4317748988093
+6890,86543,442197.952,86643,442097.952,89,68,9.5,0.019,5.70653128302054,0.223448275862069,10.4721359549996,-0.0152880184132755,0.0775,7.75,2,82.792198480001,0.89159891598916,7.25,16.5098452414236,5,-2.53811299800873,-3.00635170936584,1.30085998119928
+6891,86543,442097.952,86643,441997.952,90,68,7.75,0.0258333333333333,6.25626455586424,0.402173913043478,16.6666666666667,-0.0201226495599258,0.13,13,2,84.6565442134301,0.81919152783159,6.75,9.77987872637235,0,-2.83255985048082,-3.14656186103821,0.665098238050018
+6892,86543,441997.952,86643,441897.952,91,68,0.75,0.00375,1.25,0.0833333333333333,28.2842712474619,-0.0611152803539881,0.0475,4.75,1,81.114133276783,0.746583401212779,4.75,48.553820559853,25.4950981140137,-3.13465231657028,-3.2349967956543,0.209323757334242
+6893,86543,441897.952,86643,441797.952,92,68,0,NA,NA,NA,NA,0.143378350078128,0.82,82,1,99.4509723118502,0.811523963381799,82,90.1811343867604,29.1547584533691,-3.1843015882704,-3.22232985496521,0.0735384186517747
+6894,86543,441797.952,86643,441697.952,93,68,0,NA,NA,NA,NA,-0.0584449653394404,0.205,20.5,1,93.6387867289635,0.921925829538061,20.5,134.025775723341,99.6242904663086,-3.17254902919134,-3.19636750221252,0.0305177050857044
+6895,86543,441697.952,86643,441597.952,94,68,0,NA,NA,NA,NA,0.0826758602751943,0.635,63.5,1,98.6583599459141,0.948198457465178,63.5,122.534953335139,61.8465843200684,-3.17169210645888,-3.17912125587463,0.0096975848707898
+6896,86543,441597.952,86643,441497.952,95,68,0,NA,NA,NA,NA,-0.0224851207769825,0,0,0,NA,NA,0,NA,NA,-3.16330498456955,-3.18231058120728,0.023098439552893
+6897,86543,441497.952,86643,441397.952,96,68,6.25,0.00694444444444444,2.8045724609462,0.0529100529100529,10.9180421347214,0.0287834429683608,0.39,39,2,95.9061039283818,0.925743988119038,38.25,13.3978055318197,0,-3.08310553762648,-3.12738418579102,0.0830217790585956
+6898,86543,441397.952,86643,441297.952,97,68,15,0.03,4.65647222723552,0.193846153846154,24.175818121727,0.0171650708707239,0.2475,24.75,4,85.6891467349417,0.738698719623726,9.75,17.502758796769,0,-2.89025974273682,-2.99070739746094,0.155903204322471
+6899,86543,441297.952,86643,441197.952,98,68,95.25,0.9525,37.5222333424271,0.92344706911636,NA,0.0298792977811536,0.3075,30.75,4,88.1108071310034,0.792783021158796,12.5,0.382691608211858,0,-2.49244311120775,-2.64838600158691,0.250567602966399
+6900,86543,441197.952,86643,441097.952,99,68,95.5263157894737,0.9075,37.4279867234585,0.901285583103765,NA,0.0549657128452236,0.4825,48.25,1,97.686149992119,0.875853507138423,48.25,0.207253886010363,0,-2.37022344271342,-2.47878050804138,0.139493736308744
+6901,86643,451097.952,86743,450997.952,0,69,7.75,0.00704545454545455,2.70204339829216,0.133207070707071,13.5299675407996,0.0228197194752647,0.125,12.5,5,75.543721857919,0.704201680672269,6.25,6.03869705200195,0,-2.38871335983276,-2.59291362762451,0.142556075856265
+6902,86643,450997.952,86743,450897.952,1,69,26.75,0.02675,4.44531955392689,0.216435185185185,16.3090842459313,0.0300603046375181,0.205,20.5,11,78.8537850402266,0.574929516373889,11.75,3.75870751171577,0,-2.55346290270487,-2.87343406677246,0.280788463479794
+6903,86643,450897.952,86743,450797.952,2,69,16,0.0177777777777778,3.763096341543,0.204473304473304,15.9796687887,0.0271340659342241,0.1975,19.75,5,82.7731248562027,0.777481085892301,12.75,4.7376098874249,0,-3.13935226864285,-3.38371348381042,0.344193923591859
+6904,86643,450797.952,86743,450697.952,3,69,12,0.024,4.88713898382448,0.161111111111111,12.1065495701675,0.0460279024253214,0.3675,36.75,1,96.5811989595545,0.935348310974624,36.75,12.0156604221889,0,-3.62322723865509,-3.8313524723053,0.260074117377262
+6905,86643,450697.952,86743,450597.952,4,69,1.5,0.005,1.92339805877272,0.148148148148148,15.8113883008419,-0.111534256917876,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,5.1733147757394,0,-3.88107959429423,-3.90177226066589,0.055173523880789
+6906,86643,450597.952,86743,450497.952,5,69,0.75,0.00375,1.76776695296637,0.0416666666666667,36.0555127546399,-0.0362487783601318,0,0,0,NA,NA,0,NA,NA,-3.80023137728373,-3.87615013122559,0.0940424993610272
+6907,86643,450497.952,86743,450397.952,6,69,0,NA,NA,NA,NA,-0.040032474566251,0,0,0,NA,NA,0,NA,NA,-3.74601973427667,-3.80071687698364,0.105062985080036
+6908,86643,450397.952,86743,450297.952,7,69,0.25,0.0025,0,0,NA,-0.0343762519261509,0,0,0,NA,NA,0,NA,NA,-3.92495757341385,-4.02011299133301,0.113996888377575
+6909,86643,450297.952,86743,450197.952,8,69,5.75,0.00821428571428572,3.19563806307806,0.118367346938776,17.711922339526,-0.0363181439731488,0.01,1,1,52.6315789473684,1,1,16.7924728393555,14.1421356201172,-4.06895960701836,-4.10469007492065,0.0548264052706633
+6910,86643,450197.952,86743,450097.952,9,69,23.25,0.02325,4.99120906292244,0.238762626262626,12.3137552079634,-0.0083925173139869,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-4.10811509026421,-4.11991405487061,0.0230221000488776
+6911,86643,450097.952,86743,449997.952,10,69,13,0.0118181818181818,4.5122213172608,0.203787878787879,15.7528806110618,0.00577272889244341,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,2.22222222222222,0,-4.09430654843648,-4.11266088485718,0.0313827939339118
+6912,86643,449997.952,86743,449897.952,11,69,9.75,0.0139285714285714,4.86836375367404,0.21005291005291,13.9020371697129,0.00434926191083605,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,5.41321126152487,0,-4.0360861354404,-4.08866310119629,0.110724567126417
+6913,86643,449897.952,86743,449797.952,12,69,10,0.00833333333333333,2.23614886039103,0.121693121693122,13.5829743723956,0.0115362051929742,0.0375,3.75,3,59.1088832689987,0.574970484061393,1.5,9.8464714050293,0,-3.87998803456624,-4.04543972015381,0.256206767617559
+6914,86643,449797.952,86743,449697.952,13,69,55,0.183333333333333,21.3986135293409,0.659914722414722,14.142135623731,-0.000736053409855231,0.0825,8.25,7,59.7117715744212,0.495408214754264,2.5,3.46862457737778,0,-3.38817392455207,-3.76957321166992,0.625030278688744
+6915,86643,449697.952,86743,449597.952,14,69,59.75,0.149375,13.7247852498567,0.491003588011819,11.0355339059327,0.0128750719790605,0.24,24,6,82.4875802066505,0.739902080783354,9.25,3.27601536115011,0,-2.49829136331876,-3.12059569358826,0.72220257723657
+6916,86643,449597.952,86743,449497.952,15,69,56,0.186666666666667,15.8610457379093,0.390130166398282,10,0.0711562422501447,0.7225,72.25,1,99.0712074303406,0.807896131425543,72.25,2.64777907533217,0,-2.34783762031131,-2.81023859977722,0.640316536713003
+6917,86643,449497.952,86743,449397.952,16,69,61.75,0.154375,12.9537275222477,0.45641326482448,10,0.0781648779549869,0.89,89,2,99.4609068255905,0.824656056110062,88.75,2.15359018090066,0,-2.8857976992925,-3.20643353462219,0.478529720683294
+6918,86643,449397.952,86743,449297.952,17,69,87.5,0.291666666666667,13.7449456842262,0.379201455791051,11.380711874577,0.0715719645656645,0.9025,90.25,1,99.7229916897507,0.625131204078572,90.25,0.676294004487859,0,-2.68195666207208,-2.94170713424683,0.438179813579624
+6919,86643,449297.952,86743,449197.952,18,69,77,0.1925,9.18354940957079,0.19931693989071,10,0.0673795396555215,0.84,84,2,97.5565579572522,0.744094488188977,68.75,1.28443018595378,0,-2.14076336224874,-3.53133749961853,1.66232351290508
+6920,86643,449197.952,86743,449097.952,19,69,38.25,0.19125,13.5758856325223,0.422149122807018,10,0.0676829521593754,0.84,84,1,99.5205818358949,0.822834645669292,84,14.4253250076657,0,-4.52840301725599,-4.81531047821045,0.81242702647545
+6921,86643,449097.952,86743,448997.952,20,69,3.5,0.0175,6.77066407251636,0.295454545454545,18.0277563773199,-0.0351127297897074,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,31.3174991607666,22.3606796264648,-4.91655460993449,-5.01821947097778,0.185709204189256
+6922,86643,448997.952,86743,448897.952,21,69,0,NA,NA,NA,NA,-0.0806803214495812,0,0,0,NA,NA,0,NA,NA,-5.09203902880351,-5.14542531967163,0.0758927538577066
+6923,86643,448897.952,86743,448797.952,22,69,3.25,0.00464285714285714,2.68098408278194,0.0634920634920635,12.1585422431877,-0.0471116895364685,0.0525,5.25,1,82.2928536593692,0.901055408970976,5.25,36.952402024042,26.9258232116699,-5.15088113149007,-5.19935941696167,0.060529427504184
+6924,86643,448797.952,86743,448697.952,23,69,0.25,0.0025,0,0,NA,-0.0857373538124375,0,0,0,NA,NA,0,NA,NA,-5.14943206310272,-5.21392011642456,0.0892729266107675
+6925,86643,448697.952,86743,448597.952,24,69,8,0.08,12.5511874415069,0.71875,NA,-0.0182730237332726,0.2125,21.25,1,93.8457653779655,0.957952275833071,21.25,6.88723685320686,0,-4.88305897182888,-5.05079126358032,0.323652051945845
+6926,86643,448597.952,86743,448497.952,25,69,68.5,0.3425,28.369930704172,0.800036099711202,11.1803398874989,0.0553807300466633,0.6125,61.25,2,96.5481941096129,0.814058318072968,49.75,2.44313927475287,0,-3.6767339905103,-4.59890270233154,0.927594450529822
+6927,86643,448497.952,86743,448397.952,26,69,63.25,0.105416666666667,9.22641699309351,0.45475062548706,10.1967233145832,0.0755318489839556,0.775,77.5,1,99.2846122710835,0.931506849315068,77.5,1.34214844242219,0,-2.4387362268236,-2.81720805168152,0.579739835854674
+6928,86643,448397.952,86743,448297.952,27,69,37,0.04625,5.5483925679537,0.296028828197946,14.6683834059585,-0.0199781199558038,0.2725,27.25,2,92.2743878462217,0.916269820503428,24.5,2.03099803749574,0,-1.77568498253822,-1.9250955581665,0.208744032560209
+6929,86643,448297.952,86743,448197.952,28,69,30.75,0.3075,27.706698169621,0.776422764227642,NA,-0.0794018453088938,0.06,6,5,62.2199855658663,0.608062709966405,3.25,3.43306430180868,0,-1.57744722896152,-1.68690776824951,0.154212269382594
+6930,86643,448197.952,86743,448097.952,29,69,6,0.015,3.51488150588511,0.25,18.8432979699769,-0.154490593709052,0,0,0,NA,NA,0,NA,NA,-1.38077980279922,-1.56725287437439,0.24797077404715
+6931,86643,448097.952,86743,447997.952,30,69,17.5,0.0194444444444444,4.60380949658737,0.230301379811184,18.5655133666504,-0.0477852157503003,0,0,0,NA,NA,0,NA,NA,-0.956771734688017,-1.28071534633636,0.529639909771241
+6932,86643,447997.952,86743,447897.952,31,69,30,0.075,10.403777987071,0.334169913095595,14.1688593638657,-0.0243316302660605,0.0675,6.75,1,85.0052537126447,0.800486314608143,6.75,0.555555555555556,0,-0.458253610465262,-0.935998678207397,0.933707177248169
+6933,86643,447897.952,86743,447797.952,32,69,56.5,0.070625,5.36282987773903,0.187980769230769,10.8739660235426,0.0234684294486146,0.2775,27.75,4,88.3302143864194,0.833910034602076,19.75,1.83006592484208,0,0.376124451557795,-0.560014247894287,1.4092191627716
+6934,86643,447797.952,86743,447697.952,33,69,55.25,0.0920833333333333,9.06056402249743,0.298888888888889,10.1967233145832,0.0416876213482465,0.4575,45.75,3,95.0670664410625,0.781855861260328,38.25,1.75215820145737,0,0.196931545001765,-0.222708135843277,0.883240238609643
+6935,86643,447697.952,86743,447597.952,34,69,19,0.0111764705882353,3.19235340976323,0.136134453781513,13.0708111019745,0.0284046089297408,0.18,18,5,85.2925179364795,0.865565584789706,15.5,4.55340366893344,0,-0.268277020504077,-0.391712188720703,0.227723655917235
+6936,86643,447597.952,86743,447497.952,35,69,21.75,0.018125,4.05207662345797,0.153798287534847,14.2231512142131,0.0361123399899225,0.365,36.5,5,90.0928538117789,0.76407443451591,19.25,5.87688677278283,0,-0.416762418217129,-0.449543058872223,0.0678651008117646
+6937,86643,447497.952,86743,447397.952,36,69,28.5,0.0285,4.79222699258176,0.203148148148148,12.7404514836224,0.0279142893639801,0.195,19.5,5,80.9634577179305,0.729948690251148,8.5,3.75217361939259,0,-0.440590379138788,-0.466453224420547,0.0377432924990262
+6938,86643,447397.952,86743,447297.952,37,69,20.5,0.0683333333333333,8.60902822431297,0.274261603375527,32.4535891093288,0.0265057917838749,0.1575,15.75,2,89.7461782413062,0.902886431076342,15,1.97562874688043,0,-0.570014016495811,-0.689010381698608,0.15992189383897
+6939,86643,447297.952,86743,447197.952,38,69,9.5,0.0095,2.97242175571249,0.22724358974359,16.7061929122679,0.00991568847419103,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,9.41421356201172,5,-0.863061318794886,-1.06376373767853,0.21022266214337
+6940,86643,447197.952,86743,447097.952,39,69,11.25,0.0140625,5.04936579749604,0.212436868686869,19.5454233769794,0.0021669773685062,0,0,0,NA,NA,0,NA,NA,-1.15455710225635,-1.31467521190643,0.230548364038322
+6941,86643,447097.952,86743,446997.952,40,69,9.5,0.011875,3.19450126118448,0.135416666666667,13.3852549156242,0.0154335567896851,0.06,6,2,75.214492285537,0.804031354983203,3.5,22.7273000876109,10,-1.47186872363091,-1.68928897380829,0.232884106050679
+6942,86643,446997.952,86743,446897.952,41,69,6.25,0.015625,6.16211206125006,0.322222222222222,20.6085412256314,0.00294817111685916,0,0,0,NA,NA,0,NA,NA,-1.79168146186405,-1.95762002468109,0.21729887484361
+6943,86643,446897.952,86743,446797.952,42,69,14.5,0.018125,5.36038252413254,0.238908179012346,14.5326297986356,-0.00449600372725399,0.005,0.5,1,30.8308651382582,1,0.5,28.0402908325195,26.9258232116699,-2.05103682478269,-2.181072473526,0.16395777373135
+6944,86643,446797.952,86743,446697.952,43,69,4.25,0.00708333333333333,2.91464831599643,0.145833333333333,19.6875986667354,0.00228146060720064,0.0375,3.75,2,70.8377473170934,0.811097992916175,3.25,6.27085304260254,0,-2.1458236641354,-2.22149610519409,0.121708096484123
+6945,86643,446697.952,86743,446597.952,44,69,17,0.0188888888888889,4.64336364253426,0.246325690770135,13.501715472136,-0.0241513199737437,0.0375,3.75,4,51.8962515582823,0.574970484061393,1.25,7.45501937866211,0,-2.17531029383341,-2.23539543151855,0.1178868405896
+6946,86643,446597.952,86743,446497.952,45,69,23.25,0.02325,9.37325897605552,0.32080747955748,13.1306485868806,0.0329066962682555,0.24,24,5,90.212987841252,0.694002447980416,20,11.7130764722824,0,-2.1929897069931,-2.24627041816711,0.0912055430119656
+6947,86643,446497.952,86743,446397.952,46,69,20.25,0.02025,5.85210987279382,0.256944444444444,10.7360679774998,0.00756963156232814,0.0525,5.25,3,66.7244318786597,0.670184696569921,2.75,11.8683939434233,0,-2.26813530921936,-2.31608271598816,0.0712588197515779
+6948,86643,446397.952,86743,446297.952,47,69,26.5,0.033125,6.13235772650856,0.217357456140351,10.9200849718747,-0.00824534247882639,0.02,2,2,53.5230890372948,0.591836734693878,1.25,9.53489542007446,0,-2.35513844092687,-2.39478898048401,0.052838047860343
+6949,86643,446297.952,86743,446197.952,48,69,31.25,0.078125,11.4908963500603,0.334599673202614,15.4056941504209,-0.0124772283619495,0.0025,0.25,1,0,NA,0.25,0,0,-2.34257851706611,-2.3919939994812,0.0822170263164957
+6950,86643,446197.952,86743,446097.952,49,69,13,0.00928571428571429,3.18578589729543,0.166296666296666,14.7978953588162,-0.00672242083332094,0.03,3,4,50.0489292668278,0.514857489387508,1.25,17.2530585924784,5,-2.13690904776255,-2.28568935394287,0.162181412288314
+6951,86643,446097.952,86743,445997.952,50,69,19.5,0.0278571428571429,3.32663257253447,0.176673567977916,19.0210835917323,-0.0184665858643575,0,0,0,NA,NA,0,NA,NA,-1.90094408724043,-2.00094223022461,0.145951481457707
+6952,86643,445997.952,86743,445897.952,51,69,32.75,0.0363888888888889,7.43631813672108,0.31426084203862,13.5385093760294,-0.0378072452791093,0,0,0,NA,NA,0,NA,NA,-1.69215809305509,-1.84261298179626,0.364016652482516
+6953,86643,445897.952,86743,445797.952,52,69,61.25,0.30625,26.4622380442424,0.793099415204678,10,-0.0503136742141942,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,0,0,-0.854929543203778,-1.63393640518188,1.2806394231283
+6954,86643,445797.952,86743,445697.952,53,69,12.25,0.0408333333333333,9.67715185904781,0.309302325581395,39.0763365266831,0.00801669267676971,0.1325,13.25,2,86.4889408264244,0.873325521740507,10.75,2.05928557773806,0,-1.55816523730755,-2.04556441307068,0.779038518843065
+6955,86643,445697.952,86743,445597.952,54,69,45.5,0.2275,28.9658869400709,0.649937868903386,11.1803398874989,0.0299336025235425,0.2425,24.25,2,93.6094290709772,0.886195516103334,23.75,1.36733615521303,0,-1.80374525652991,-2.1850471496582,0.751398300722969
+6956,86643,445597.952,86743,445497.952,55,69,13.5,0.135,34.1601253386328,0.549382716049383,NA,0.0162602325067564,0.0925,9.25,5,71.9225286876423,0.602583209140586,4,11.5153033797805,0,-1.83862521913317,-2.26064109802246,0.686759412283427
+6957,86643,445497.952,86743,445397.952,56,69,9.75,0.0975,18.8062157762337,0.679487179487179,NA,-0.00424668750683395,0.025,2.5,2,59.7635627407876,0.684418145956607,1.75,2,0,-2.04610940814018,-2.35970830917358,0.479538784484846
+6958,86643,445397.952,86743,445297.952,57,69,35.75,0.119166666666667,22.7984900135027,0.479012345679012,10.3934466291663,0.042251269795197,0.435,43.5,1,97.2831784886431,0.823560223857966,43.5,1.49425287356322,0,-2.20721630255381,-2.41921091079712,0.3258170861532
+6959,86643,445297.952,86743,445197.952,58,69,39,0.0557142857142857,10.1648025787708,0.32569871648819,10.5058599517853,0.0243323495859659,0.415,41.5,3,91.4325655911851,0.754203675772303,16.75,7.25299451437341,0,-2.33483356237411,-2.50806927680969,0.229841604186655
+6960,86643,445197.952,86743,445097.952,59,69,40.75,0.20375,27.1043181119474,0.515705128205128,10,0.0324173524846992,0.4625,46.25,4,93.50468784024,0.858561131510948,39.75,5.47005000758815,0,-2.35425308015611,-2.48394751548767,0.167953793863114
+6961,86643,445097.952,86743,444997.952,60,69,46.5,0.465,30.8816459543474,0.759856630824373,NA,0.04050974413738,0.6025,60.25,1,98.4825618273597,0.955276030747729,60.25,4.17985300404402,0,-2.28466707468033,-2.38374876976013,0.1029972634684
+6962,86643,444997.952,86743,444897.952,61,69,36.25,0.3625,29.849994581438,0.787356321839081,NA,0.0177347263475531,0.3475,34.75,3,94.8965298314729,0.849156786436178,33.25,2.39187224134267,0,-2.23273587226868,-2.29203581809998,0.0664670932152892
+6963,86643,444897.952,86743,444797.952,62,69,26.5,0.0441666666666667,6.30867180584966,0.283751493428913,20.6297168423675,-0.0205923826482785,0.15,15,2,90.5763918507171,0.886877828054299,14.75,5.07360801696777,0,-2.41870641708374,-2.70303463935852,0.257412190583448
+6964,86643,444797.952,86743,444697.952,63,69,7.25,0.00805555555555556,3.54897946057887,0.192813051146384,12.4617249391691,-0.0200962450326551,0.18,18,3,89.5208289969825,0.91357787593624,17,15.4361744456821,0,-2.71404245164659,-2.92822480201721,0.267164140639485
+6965,86643,444697.952,86743,444597.952,64,69,2,0.005,2.5,0.166666666666667,20.9586785872321,0.0214811147381261,0.3725,37.25,1,96.6396639945364,0.953300351706726,37.25,23.6824493920243,5,-2.84982754786809,-2.97531962394714,0.175816963705015
+6966,86643,444597.952,86743,444497.952,65,69,1,0.005,2.5,0.166666666666667,15.8113883008419,0.0581909970853303,0.6,60,1,98.4684502698115,0.938752783964365,60,35.2369996945063,0,-2.85063449541728,-2.87400722503662,0.0868728596590764
+6967,86643,444497.952,86743,444397.952,66,69,4.25,0.0141666666666667,4.53580294052657,0.137037037037037,23.2649482258412,0.00554309160688717,0.335,33.5,3,90.941922603404,0.833600394428695,26.75,31.995178550037,0,-2.7543535762363,-2.80562686920166,0.129085129636244
+6968,86643,444397.952,86743,444297.952,67,69,26,0.0866666666666667,12.0489696713274,0.658845623543955,18.8742588672279,-0.000331803511071485,0.22,22,3,90.7079004856936,0.893842887473461,20.25,3.22001101753928,0,-2.56127750873566,-2.65070843696594,0.103933017590608
+6969,86643,444297.952,86743,444197.952,68,69,45,0.075,8.4782148876347,0.36439701897019,10.3934466291663,0.0742455863417126,0.5775,57.75,1,98.3373505793708,0.917626546218372,57.75,2.13976000500964,0,-2.40468862321642,-2.49731612205505,0.104268798346539
+6970,86643,444197.952,86743,444097.952,69,69,82.25,0.41125,22.6545630438264,0.669382504288165,15,0.0596393041110059,0.47,47,4,94.1329600646398,0.853610930383865,39,0.804325550160509,0,-2.19921104113261,-2.32059764862061,0.164822647423849
+6971,86643,444097.952,86743,443997.952,70,69,86.25,0.2875,14.6080110132839,0.536594803758983,11.380711874577,0.00861515718048395,0.1575,15.75,1,92.0012465610797,0.924467224170488,15.75,1.19047619047619,0,-1.89972971545325,-2.10817742347717,0.275729089584465
+6972,86643,443997.952,86743,443897.952,71,69,95,0.95,37.8675100418957,0.897368421052632,NA,-0.0219178273505531,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-1.62182383735975,-1.81527817249298,0.245353171955777
+6973,86643,443897.952,86743,443797.952,72,69,96.5,0.965,38.3304274182207,0.906303972366148,NA,-0.0535667513426097,0.0475,4.75,1,81.114133276783,0.963797628744683,4.75,0.526315789473684,0,-1.69733448823293,-1.89258670806885,0.268796457549649
+6974,86643,443797.952,86743,443697.952,73,69,74,0.185,11.3168211184454,0.323606271777003,11.5450849718747,-0.0020353446111767,0.1725,17.25,3,83.3356056440176,0.820229207760106,8.25,1.08695652173913,0,-2.14617103338242,-2.40614914894104,0.322755889400326
+6975,86643,443697.952,86743,443597.952,74,69,5.25,0.00875,3.37179707277663,0.196127946127946,12.3105825289545,0.102271736092516,0.785,78.5,1,99.3228142317568,0.976429918290384,78.5,32.9428561629763,5,-2.70978948805067,-2.89845156669617,0.288978750528722
+6976,86643,443597.952,86743,443497.952,75,69,9,0.018,6.2607387368625,0.278513071895425,15.6475590344069,0.040150570221831,0.455,45.5,2,97.014829253441,0.950997740451365,45.25,34.8946013712621,0,-3.10045081377029,-3.29460477828979,0.239913458397866
+6977,86643,443497.952,86743,443397.952,76,69,2,0.01,2.9340338773855,0.214285714285714,57.0087712549569,-0.0354142245891853,0,0,0,NA,NA,0,NA,NA,-3.44782794846429,-3.51246619224548,0.126933730003065
+6978,86643,443397.952,86743,443297.952,77,69,0,NA,NA,NA,NA,-0.0371779663139023,0,0,0,NA,NA,0,NA,NA,-3.56704881456163,-3.59064602851868,0.0393246488418666
+6979,86643,443297.952,86743,443197.952,78,69,0,NA,NA,NA,NA,-0.0428034485042542,0,0,0,NA,NA,0,NA,NA,-3.53950913747152,-3.57235884666443,0.0512062549092679
+6980,86643,443197.952,86743,443097.952,79,69,0.75,0.0025,0,0,19.5162002124521,-0.0476155123156786,0,0,0,NA,NA,0,NA,NA,-3.44486676322089,-3.4957435131073,0.0636519413804834
+6981,86643,443097.952,86743,442997.952,80,69,1.25,0.0025,0,0,18.404743229437,-0.0589852373930626,0,0,0,NA,NA,0,NA,NA,-3.40153662363688,-3.42426729202271,0.0244372329574812
+6982,86643,442997.952,86743,442897.952,81,69,1,0.0025,0,0,35.5449729265673,0.00151329651977903,0,0,0,NA,NA,0,NA,NA,-3.38576149940491,-3.39899611473083,0.0175712853248468
+6983,86643,442897.952,86743,442797.952,82,69,0.5,0.0025,0,0,11.1803398874989,-0.117305376525751,0,0,0,NA,NA,0,NA,NA,-3.35363429784775,-3.38171219825745,0.0464910120306642
+6984,86643,442797.952,86743,442697.952,83,69,0,NA,NA,NA,NA,-0.0468671749427449,0,0,0,NA,NA,0,NA,NA,-3.30536429087321,-3.35074472427368,0.0742773866969608
+6985,86643,442697.952,86743,442597.952,84,69,0,NA,NA,NA,NA,-0.00859231633489344,0.17,17,1,92.4981249980877,0.858256555634302,17,96.1303384444293,58.5234985351562,-3.26477601130803,-3.31930947303772,0.0963723895161322
+6986,86643,442597.952,86743,442497.952,85,69,0,NA,NA,NA,NA,0.109546223969664,0.585,58.5,3,97.5098641894123,0.933831435582145,57.75,71.4281385046804,31.6227760314941,-3.29974746704102,-3.36855292320251,0.128183939163858
+6987,86643,442497.952,86743,442397.952,86,69,1.25,0.003125,0.883883476483184,0.0208333333333333,23.6179263210694,0.140433413327628,0.715,71.5,1,99.0388168843254,0.960868714537272,71.5,30.668500039961,0,-3.27528897921244,-3.36804008483887,0.156294194658032
+6988,86643,442397.952,86743,442297.952,87,69,6,0.015,3.22892142740281,0.216374269005848,10.5901699437495,0.0263770248315268,0.34,34,4,95.1256712509248,0.810606060606061,33.25,37.5280933941112,0,-2.98025189505683,-3.22714066505432,0.639134091203872
+6989,86643,442297.952,86743,442197.952,88,69,31.25,0.15625,16.90225938064,0.395663956639566,10,0.0639258744942345,0.5825,58.25,2,97.559825942534,0.922912795099456,56.75,11.419316091251,0,-1.98608415325483,-2.80592465400696,1.19605787633895
+6990,86643,442197.952,86743,442097.952,89,69,25,0.0277777777777778,7.37300818772094,0.230673133450911,15.2500656114041,-0.00728428937767603,0.06,6,4,71.0360227171017,0.748040313549832,4.75,4.38649996121724,0,-0.818923628992505,-1.65250277519226,1.16631221438516
+6991,86643,442097.952,86743,441997.952,90,69,21.5,0.043,5.81789470325483,0.159259259259259,27.0273178835937,-0.0201146612297453,0.03,3,2,63.3223247384763,0.636143117040631,2,4.53597895304362,0,-1.02396121434867,-2.5482714176178,1.42965167828817
+6992,86643,441997.952,86743,441897.952,91,69,19.25,0.0385,7.03573683554269,0.205555555555556,10.7082039324994,-0.0212244461235468,0.115,11.5,3,80.0767790431256,0.826162538026945,6.75,5.72502239890721,0,-2.29912360012531,-3.01263666152954,1.40268344165174
+6993,86643,441897.952,86743,441797.952,92,69,2.75,0.01375,5.14578433448431,0.296296296296296,60,0.0408152654500918,0.2325,23.25,3,88.4793397771994,0.897963188257918,18.25,36.1806496035668,0,-2.87794084019131,-3.09461951255798,0.47299813294548
+6994,86643,441797.952,86743,441697.952,93,69,0.25,0.0025,0,0,NA,-0.0414166180327447,0.0925,9.25,4,72.333390586694,0.674840807478661,3.5,31.179090448328,5,-3.01219574610392,-3.14200305938721,0.265411453471295
+6995,86643,441697.952,86743,441597.952,94,69,0,NA,NA,NA,NA,0.0371209173946451,0.25,25,1,94.7368421052632,0.955555555555556,25,41.6401853942871,10,-3.1101966963874,-3.17735862731934,0.16839414687458
+6996,86643,441597.952,86743,441497.952,95,69,2.75,0.00458333333333333,1.62025621217214,0.0416666666666667,11.1803398874989,0.011263881633713,0.13,13,3,80.3981835992426,0.70295751000904,5,8.16781044006348,0,-3.13093326489131,-3.18589973449707,0.0988580451924192
+6997,86643,441497.952,86743,441397.952,96,69,2.5,0.005,2.02415112398831,0.05,11.1803398874989,0.00917752730543725,0.2825,28.25,3,91.9103644948574,0.815535970485755,21,19.6629343286025,0,-3.06248603926765,-3.11746954917908,0.0752472821208097
+6998,86643,441397.952,86743,441297.952,97,69,63.5,0.635,32.5630006207333,0.906824146981627,NA,0.0507718449073946,0.4675,46.75,4,93.2759165527071,0.777470216288095,27.5,5.4280848273619,0,-2.90953497091929,-3.00209212303162,0.128105527076857
+6999,86643,441297.952,86743,441197.952,98,69,79.5,0.3975,22.316301729706,0.780804435838761,29.1547594742265,0.0377923587085388,0.3525,35.25,3,91.877461782685,0.832390530064949,28,0.640022237250145,0,-2.69832317034403,-2.81472563743591,0.199541593017324
+7000,86643,441197.952,86743,441097.952,99,69,69.4736842105263,0.33,21.1145240195754,0.748094784472493,11.1803398874989,0.0463121270420743,0.3275,32.75,5,88.4265622451937,0.757353284285514,15.75,4.31442450021059,0,-2.55762507518133,-2.69574332237244,0.17277727332638
+7001,86743,451097.952,86843,450997.952,0,70,19,0.02375,4.81843916215502,0.247685185185185,14.7158737934317,0.0207395322997399,0.14,14,4,84.1824331774954,0.784224406617118,11.5,9.09421781131199,0,-2.40818913777669,-2.48116374015808,0.0945677312599872
+7002,86743,450997.952,86843,450897.952,1,70,13.75,0.0125,3.29742069227518,0.193210384386855,13.9377024842046,0.0124753749331671,0.0575,5.75,3,69.2190063129372,0.587385794282346,3,3.67237439362899,0,-2.62771116197109,-2.90671968460083,0.251356016229004
+7003,86743,450897.952,86843,450797.952,2,70,9,0.00818181818181818,2.80757535998801,0.198484848484848,14.7263705218393,0.00865007213629724,0.0375,3.75,5,50.0195455599699,0.433293978748524,1.75,5.27614237467448,0,-3.13626537720362,-3.3207414150238,0.317589141014105
+7004,86743,450797.952,86843,450697.952,3,70,3.25,0.0108333333333333,3.21359774914588,0.222222222222222,36.5737865166653,-0.0562832637521205,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0,-3.66232396662235,-3.83827590942383,0.236473185182319
+7005,86743,450697.952,86843,450597.952,4,70,0,NA,NA,NA,NA,-0.13492546499474,0.0275,2.75,1,73.5251216233933,1,2.75,78.9187753850763,69.4622192382812,-3.90546458959579,-3.98380541801453,0.0799461291817263
+7006,86743,450597.952,86843,450497.952,5,70,9.5,0.095,13.4396287735755,0.736842105263158,NA,-0.0511446291992525,0.005,0.5,1,30.8308651382582,1,0.5,73.873420715332,71.589111328125,-3.97779425978661,-4.17020559310913,0.158824387632781
+7007,86743,450497.952,86843,450397.952,6,70,30,0.075,7.24613462652083,0.258333333333333,11.1803398874989,-0.0434010001893694,0,0,0,NA,NA,0,NA,NA,-4.02586978673935,-4.17855453491211,0.180742101589454
+7008,86743,450397.952,86843,450297.952,7,70,2.25,0.01125,4.60184964835593,0.305555555555556,10,-0.0478037891728309,0,0,0,NA,NA,0,NA,NA,-4.08246849477291,-4.16656398773193,0.109815495336822
+7009,86743,450297.952,86843,450197.952,8,70,15,0.05,21.0661713298363,0.346590909090909,21.003875445071,-0.037419839258655,0.115,11.5,2,83.3142722045184,0.869621903520209,5.75,13.469004838363,0,-4.15192425251007,-4.21219062805176,0.0646428289748014
+7010,86743,450197.952,86843,450097.952,9,70,1.75,0.00875,3.92549721286425,0.291666666666667,20,0.0334814036243552,0.405,40.5,1,96.992903144017,0.943601601714511,40.5,36.5990683944137,0,-4.17819833755493,-4.23392057418823,0.0628365832221856
+7011,86743,450097.952,86843,449997.952,10,70,18.25,0.0165909090909091,4.6364743602976,0.25,10.7511253829539,-0.00355849439351005,0.025,2.5,3,51.4230928509252,0.526627218934911,1.25,4.3251407623291,0,-4.0744863897562,-4.19538116455078,0.121761755580977
+7012,86743,449997.952,86843,449897.952,11,70,16.5,0.01375,4.1723371978357,0.236882716049383,14.8538627369077,-0.00319398379017002,0.175,17.5,3,84.8530686141576,0.793052475979305,8.5,8.74712172916957,0,-3.73733953634898,-3.97699761390686,0.366371398376451
+7013,86743,449897.952,86843,449797.952,12,70,46,0.0766666666666667,10.6579353474618,0.344366436033103,15.0460093207037,0.0123902260079922,0.0925,9.25,7,64.8507618270782,0.656776407894143,4,2.60035684946421,0,-3.2093314230442,-3.74507164955139,0.564790456271573
+7014,86743,449797.952,86843,449697.952,13,70,51.25,0.128125,15.5256659588409,0.464905969185082,14.4290047085813,0.0110102460013786,0.24,24,4,89.8025822715402,0.770501835985312,19.5,5.25421973069509,0,-2.49132730563482,-3.13678908348083,0.616072347225033
+7015,86743,449697.952,86843,449597.952,14,70,57.75,0.0825,9.77918847289749,0.383801020408163,10.1686199839284,0.0211152560250048,0.3375,33.75,3,93.4973744367183,0.877281791685841,31.25,2.8785684938784,0,-2.4444717913866,-3.16581201553345,0.710257373384707
+7016,86743,449597.952,86843,449497.952,15,70,55.25,0.184166666666667,16.939598567322,0.503150276713495,10,0.0972241574269719,0.9375,93.75,1,99.8273917947966,0.932489451476794,93.75,2.60485474650065,0,-3.05133608977,-4.14046049118042,1.26755378218017
+7017,86743,449497.952,86843,449397.952,16,70,14.5,0.0483333333333333,9.38101969448953,0.27723311546841,10,-0.0235120187095163,0.0875,8.75,2,85.26105520347,0.905526688710439,8.5,2.46323438371931,0,-4.06435802578926,-4.59709501266479,0.770051141875417
+7018,86743,449397.952,86843,449297.952,17,70,35.5,0.355,27.088505957305,0.816901408450704,NA,0.00478766646960594,0.3525,35.25,1,96.3984008308788,0.898237107539433,35.25,0.667674720710051,0,-3.82216562827428,-4.68631982803345,1.18988660024575
+7019,86743,449297.952,86843,449197.952,18,70,90.5,0.905,37.4637167164978,0.877992633517495,NA,0.06819436915408,0.7425,74.25,1,99.1551699664667,0.777689007763516,74.25,0.353535353535354,0,-4.19184872508049,-4.87696647644043,1.12548220532607
+7020,86743,449197.952,86843,449097.952,19,70,46.5,0.465,30.0692427479516,0.847670250896057,NA,0.0695902813426801,0.6,60,1,98.4684502698115,0.933184855233853,60,2.80397513707479,0,-4.85946635405223,-4.97358131408691,0.192950070475755
+7021,86743,449097.952,86843,448997.952,20,70,0,NA,NA,NA,NA,-0.0196793534117387,0,0,0,NA,NA,0,NA,NA,-4.96412662665049,-5.02499341964722,0.0816175797697849
+7022,86743,448997.952,86843,448897.952,21,70,2.5,0.00833333333333333,4.89763648439634,0.12037037037037,11.1803398874989,-0.0548137607936678,0.025,2.5,1,71.9760246298065,0.684418145956607,2.5,3.91421356201172,0,-5.03908079862595,-5.10213947296143,0.0599662803992321
+7023,86743,448897.952,86843,448797.952,22,70,2,0.004,1.63205737233508,0.0388888888888889,11.9442719099992,-0.0370765171234598,0.035,3.5,2,69.0285060247284,0.844559585492228,3,33.6535323006766,5,-5.10394807656606,-5.12495994567871,0.0393580631299744
+7024,86743,448797.952,86843,448697.952,23,70,0,NA,NA,NA,NA,-0.176460437928326,0,0,0,NA,NA,0,NA,NA,-5.04241341352463,-5.1343355178833,0.142168098093603
+7025,86743,448697.952,86843,448597.952,24,70,44.75,0.111875,12.6127761798628,0.392082391181458,11.0355339059327,0.0085484297509538,0.49,49,1,97.7443609022556,0.854557207498384,49,2.51667355517952,0,-4.56728939215342,-4.93138408660889,0.546660591804708
+7026,86743,448597.952,86843,448497.952,25,70,83,0.276666666666667,13.5687250426095,0.480585655314757,10.3934466291663,0.0587490013148636,0.62,62,2,96.7001453313582,0.903584392014519,56.25,0.643002463925269,0,-3.27278839051723,-4.09219217300415,0.865206476626246
+7027,86743,448497.952,86843,448397.952,26,70,95.75,0.9575,37.4449524239075,0.926022628372498,NA,0.0712439450650709,0.925,92.5,1,99.7907868956838,0.980979553019496,92.5,0.0405405405405405,0,-2.2437897225221,-2.75228810310364,0.415966036376184
+7028,86743,448397.952,86843,448297.952,27,70,27,0.27,22.9607744267087,0.845679012345679,NA,0.0178682552428108,0.3075,30.75,5,85.5244240229553,0.766880898803646,11.75,26.5142776520272,0,-1.87762962281704,-1.96602642536163,0.101021852489516
+7029,86743,448297.952,86843,448197.952,28,70,0,NA,NA,NA,NA,-0.0791355972376914,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,58.3975179921026,45,-1.80158800880114,-1.89388191699982,0.112796175890419
+7030,86743,448197.952,86843,448097.952,29,70,5.5,0.0183333333333333,6.07763334622013,0.303030303030303,11.6666666666667,-0.0411701077294128,0.0075,0.75,1,44.4894453484604,1,0.75,58.4782587687174,55.2268028259277,-1.68405048549175,-1.82717049121857,0.158055624379093
+7031,86743,448097.952,86843,447997.952,30,70,39.5,0.09875,9.32671842923897,0.360610687022901,14.3401699437495,-0.0178490851402603,0.1375,13.75,2,87.9038169865041,0.890160183066361,12.5,6.17047046314586,0,-1.47683572769165,-1.65505754947662,0.253177275764785
+7032,86743,447997.952,86843,447897.952,31,70,0.25,0.0025,0,0,NA,-0.0286717254814721,0.01,1,1,52.6315789473684,0.747474747474748,1,9.34838581085205,5,-1.17054796218872,-1.50453770160675,0.373342989466634
+7033,86743,447897.952,86843,447797.952,32,70,23.75,0.059375,6.97949179561234,0.310491967871486,12.2855339059327,0.0018600418895403,0.16,16,3,84.6858947797758,0.840561224489796,10.75,20.5299050211906,0,-0.922037102282047,-1.26370000839233,0.403652456656964
+7034,86743,447797.952,86843,447697.952,33,70,19.75,0.0131666666666667,4.74839004450531,0.288462496109555,11.1573786516665,-0.0267264243675584,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-0.722541270156701,-1.01285910606384,0.390295157019786
+7035,86743,447697.952,86843,447597.952,34,70,31.25,0.0625,11.4305014355178,0.429832852332852,10.8284271247462,0.000397933459616979,0.14,14,2,85.6208660773714,0.832174538479981,8.5,8.97200015613011,0,-0.656516592949629,-0.974426090717316,0.346992018117633
+7036,86743,447597.952,86843,447497.952,35,70,29.25,0.04875,7.10103889767191,0.223087098087098,12.7504692331215,0.0207035098705819,0.2275,22.75,4,85.9401717102424,0.784250269687163,13.5,7.23247098398733,0,-0.636294335126877,-0.903152465820312,0.270871280329714
+7037,86743,447497.952,86843,447397.952,36,70,25.25,0.0315625,6.26943705290661,0.215149176954733,12.27150850948,0.027723512965822,0.1875,18.75,3,91.1908757415167,0.832167832167832,18,2.19329966227214,0,-0.60699974745512,-0.789046049118042,0.196242001486967
+7038,86743,447397.952,86843,447297.952,37,70,3.75,0.009375,3.61428955442954,0.161706349206349,22.5567012714841,0.00860653803022387,0.0125,1.25,1,58.1880425789518,1,1.25,16.0749645233154,11.1803398132324,-0.761251136660576,-0.901162981987,0.182435186624693
+7039,86743,447297.952,86843,447197.952,38,70,1.5,0.003,0.5,0.0333333333333333,20.5452598611638,0.0132034379844845,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,14.0101036495633,5,-1.04986983537674,-1.23718404769897,0.198406557461483
+7040,86743,447197.952,86843,447097.952,39,70,18.75,0.01875,2.66639537929116,0.0691919191919192,18.58094229561,-0.0156944645499061,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-1.37805527448654,-1.50503396987915,0.195629669615093
+7041,86743,447097.952,86843,446997.952,40,70,5.5,0.006875,2.42136183483746,0.0721153846153846,24.9919840228568,0.00173270319588482,0,0,0,NA,NA,0,NA,NA,-1.67944478243589,-1.84330856800079,0.19038097956656
+7042,86743,446997.952,86843,446897.952,41,70,19.25,0.0175,2.61955364998988,0.114598364598365,14.9023448665016,-0.00117353407214978,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.5,0,-1.98901112874349,-2.120845079422,0.193323775600763
+7043,86743,446897.952,86843,446797.952,42,70,13.25,0.0265,7.96562953576814,0.185818713450292,15.6725711478091,-0.0118613588188646,0,0,0,NA,NA,0,NA,NA,-2.23392058908939,-2.34114670753479,0.116623479385099
+7044,86743,446797.952,86843,446697.952,43,70,0.5,0.005,2.5,0.166666666666667,NA,0.0101381708628696,0.005,0.5,1,30.8308651382582,1,0.5,15.4056940078735,15,-2.3204733133316,-2.40343308448792,0.0880096850613063
+7045,86743,446697.952,86843,446597.952,44,70,14.5,0.0103571428571429,3.76373950126505,0.141365626710454,12.7207744613795,-0.00181637855532017,0.01,1,3,15.8692205350002,0.242424242424242,0.5,6.76776695251465,5,-2.35668202241262,-2.43404507637024,0.091017875486562
+7046,86743,446597.952,86843,446497.952,45,70,7.25,0.00725,3.20948325521772,0.212962962962963,14.1675437455463,-0.000617850242670102,0.0475,4.75,5,55.3390987119038,0.529369173680876,2,14.3675257030286,0,-2.3687514513731,-2.43970680236816,0.093807897134444
+7047,86743,446497.952,86843,446397.952,46,70,7.75,0.0110714285714286,4.27838701799237,0.205498866213152,12.1662566091687,0.0153634341975976,0.0725,7.25,4,69.7206743499775,0.72472328955669,4,13.5045039735991,0,-2.38231339057287,-2.44627094268799,0.0774790937151576
+7048,86743,446397.952,86843,446297.952,47,70,25.25,0.0229545454545455,5.282693391715,0.124684343434343,12.0400744580043,-0.0310126641851366,0.0025,0.25,1,0,NA,0.25,15,15,-2.42297907173634,-2.46412563323975,0.0481935294181833
+7049,86743,446297.952,86843,446197.952,48,70,35,0.07,7.32627121031058,0.288571428571429,19.8573007621341,-0.0416312769743399,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.41893059015274,-2.45978307723999,0.0541045976746207
+7050,86743,446197.952,86843,446097.952,49,70,32.5,0.0295454545454545,7.85711748796259,0.286253599225297,10.4292145045451,-0.0249871305044508,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.29776114225388,-2.41331076622009,0.129253421582306
+7051,86743,446097.952,86843,445997.952,50,70,7.5,0.015,4.11156439177997,0.207729468599034,16.0735925819646,-0.0070595371867239,0,0,0,NA,NA,0,NA,NA,-2.13337400555611,-2.27464604377747,0.164890924693455
+7052,86743,445997.952,86843,445897.952,51,70,47.25,0.0675,13.3268452837584,0.379759403259746,10,-0.064584794387556,0,0,0,NA,NA,0,NA,NA,-2.05236405134201,-2.20887637138367,0.204398144082474
+7053,86743,445897.952,86843,445797.952,52,70,32,0.0533333333333333,11.7912933367127,0.315335958352635,10.7868932583326,-0.00588661385656451,0.1325,13.25,3,83.2086894529661,0.733983595655066,8,2.57006044207879,0,-2.03369644284248,-2.2084629535675,0.27265695063492
+7054,86743,445797.952,86843,445697.952,53,70,37.75,0.18875,30.9310480032407,0.671273546273546,11.1803398874989,0.016780988638061,0.23,23,2,93.3205906001953,0.873297434273044,22.5,1.48057829815408,0,-2.21237474679947,-2.33195972442627,0.212508078856566
+7055,86743,445697.952,86843,445597.952,54,70,0,NA,NA,NA,NA,0.00576260658057436,0.12,12,3,83.3575142922608,0.847560975609756,10,49.3466418584188,31.6227760314941,-2.33648822704951,-2.40997719764709,0.174621897174436
+7056,86743,445597.952,86843,445497.952,55,70,0,NA,NA,NA,NA,-0.0130194890766506,0.0025,0.25,1,0,NA,0.25,30,30,-2.44465593496958,-2.53240299224854,0.168136708619427
+7057,86743,445497.952,86843,445397.952,56,70,0,NA,NA,NA,NA,-0.0174284409614484,0,0,0,NA,NA,0,NA,NA,-2.59769067168236,-2.72077584266663,0.170640978666531
+7058,86743,445397.952,86843,445297.952,57,70,21,0.105,17.0037368597763,0.628472222222222,14.142135623731,0.0140140740008792,0.2675,26.75,1,95.0869843258351,0.936338396788626,26.75,1.80639505831995,0,-2.70401839415232,-2.83282136917114,0.173273309062261
+7059,86743,445297.952,86843,445197.952,58,70,9,0.0128571428571429,4.24349474816237,0.257936507936508,11.336058280477,-0.0394171320915484,0.26,26,2,90.2539652653609,0.869923399335164,19.5,24.5686161334698,0,-2.7549541592598,-2.91870403289795,0.191715100992524
+7060,86743,445197.952,86843,445097.952,59,70,0,NA,NA,NA,NA,-0.0270990064297803,0.415,41.5,1,97.093152360986,0.905033238366572,41.5,52.5720474748726,20,-2.68428323666255,-2.86978769302368,0.208681611729254
+7061,86743,445097.952,86843,444997.952,60,70,2,0.005,2.5,0.166666666666667,28.5356213057893,0.0718257503323548,0.76,76,2,98.9790226327113,0.890924956369983,75.75,27.191886161503,0,-2.52577966451645,-2.76695847511292,0.210345244771795
+7062,86743,444997.952,86843,444897.952,61,70,60.75,0.30375,27.0834455093648,0.741964581264482,15,0.072859556057374,0.7125,71.25,1,99.0279065499043,0.753406878650227,71.25,3.38469074985437,0,-2.27564867337545,-2.41721701622009,0.166970654435155
+7063,86743,444897.952,86843,444797.952,62,70,54.75,0.1825,18.8427323381603,0.491518090619503,10.3934466291663,0.0664867036189389,0.595,59.5,2,97.9696367411314,0.922319323068387,59,3.34498827798026,0,-2.16364614665508,-2.30493569374084,0.142894811555131
+7064,86743,444797.952,86843,444697.952,63,70,58.25,0.194166666666667,17.3159896878674,0.535672725813571,15.4373425415939,0.0838323590475193,0.665,66.5,1,98.8090595843688,0.80259025513714,66.5,2.1071344533361,0,-2.31944529215495,-2.50818777084351,0.179098297003522
+7065,86743,444697.952,86843,444597.952,64,70,29.5,0.295,27.7257404462817,0.685028248587571,NA,-0.00503644431195426,0.2125,21.25,1,93.8457653779655,0.932723641332913,21.25,7.24239400975844,0,-2.36729274690151,-2.64798617362976,0.286410544154806
+7066,86743,444597.952,86843,444497.952,65,70,0,NA,NA,NA,NA,-0.0443703776349503,0,0,0,NA,NA,0,NA,NA,-2.44788616895676,-2.72840070724487,0.327067390141446
+7067,86743,444497.952,86843,444397.952,66,70,0,NA,NA,NA,NA,-0.0532159177916765,0,0,0,NA,NA,0,NA,NA,-2.44850218296051,-2.71976399421692,0.30446361266806
+7068,86743,444397.952,86843,444297.952,67,70,11.25,0.05625,12.5689035136958,0.454166666666667,11.1803398874989,-0.0231227313855618,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0,-2.35078483819962,-2.5716667175293,0.228026941996621
+7069,86743,444297.952,86843,444197.952,68,70,30,0.3,30.2982801048868,0.726388888888889,NA,0.00237264456651246,0.21,21,1,93.778005777053,0.804604536572934,21,2.48364559809367,0,-2.28253364562988,-2.39821124076843,0.135071114655871
+7070,86743,444197.952,86843,444097.952,69,70,35.5,0.118333333333333,12.2950054551263,0.488714800561969,16.6666666666667,-0.000733604519341498,0.1725,17.25,2,90.8478139706653,0.940076402586702,16.75,1.10453918014748,0,-2.25740252435207,-2.32510733604431,0.0686869333070888
+7071,86743,444097.952,86843,443997.952,70,70,87.25,0.43625,25.1142568272638,0.832681530214425,10,-0.110847074239664,0.03,3,2,67.1088255022683,0.636143117040631,2.5,0.833333333333333,0,-2.1281649072965,-2.21151638031006,0.146711359239941
+7072,86743,443997.952,86843,443897.952,71,70,100,1,38.2238923285138,0.934166666666667,NA,-0.207936584819981,0,0,0,NA,NA,0,NA,NA,-1.90495066344738,-2.03251147270203,0.1276094454779
+7073,86743,443897.952,86843,443797.952,72,70,100,1,38.2238923285138,0.934166666666667,NA,-0.195670925267041,0,0,0,NA,NA,0,NA,NA,-1.89714330434799,-2.04235291481018,0.148991223441949
+7074,86743,443797.952,86843,443697.952,73,70,85.25,0.284166666666667,15.0829367384393,0.445109780439122,10,-0.00259944588706276,0.0925,9.25,2,86.5650969529086,0.747098405816737,9,0.27027027027027,0,-2.29628525674343,-2.69508242607117,0.339662013043053
+7075,86743,443697.952,86843,443597.952,74,70,39.5,0.395,28.5885253661636,0.74789029535865,NA,0.0150111155637296,0.19,19,2,88.048111784814,0.769670167680118,11.5,16.236887831437,0,-2.87603322664897,-3.15603256225586,0.322734627260194
+7076,86743,443597.952,86843,443497.952,75,70,0.25,0.0025,0,0,NA,0.0202951140518417,0.185,18.5,1,93.0265643427559,0.962246342614441,18.5,59.238689989657,32.0156211853027,-3.27481351792812,-3.43449234962463,0.185687085948583
+7077,86743,443497.952,86843,443397.952,76,70,1,0.00333333333333333,0.833333333333333,0.0555555555555556,33.9934634239519,-0.021751431617522,0,0,0,NA,NA,0,NA,NA,-3.49315690994263,-3.54392838478088,0.0881464557430054
+7078,86743,443397.952,86843,443297.952,77,70,1,0.00333333333333333,0.833333333333333,0.0555555555555556,25.4950975679639,-0.0312043974192511,0,0,0,NA,NA,0,NA,NA,-3.53811673323313,-3.58935856819153,0.0676443170641796
+7079,86743,443297.952,86843,443197.952,78,70,0,NA,NA,NA,NA,-0.0150051960933714,0,0,0,NA,NA,0,NA,NA,-3.46454891562462,-3.56392335891724,0.0764494890395242
+7080,86743,443197.952,86843,443097.952,79,70,0,NA,NA,NA,NA,-0.0412122058948444,0,0,0,NA,NA,0,NA,NA,-3.37966120243073,-3.41683173179626,0.0417968044522857
+7081,86743,443097.952,86843,442997.952,80,70,1.75,0.0025,0,0,28.8038185571395,-0.0193208443921321,0.0325,3.25,1,76.0684107249879,1,3.25,17.3416601327749,7.07106781005859,-3.35454122722149,-3.38735294342041,0.0432643746340347
+7082,86743,442997.952,86843,442897.952,81,70,0.5,0.0025,0,0,15.8113883008419,-0.0325428370828558,0,0,0,NA,NA,0,NA,NA,-3.35303310553233,-3.38891577720642,0.0504589084217234
+7083,86743,442897.952,86843,442797.952,82,70,0,NA,NA,NA,NA,-0.0826313265874342,0,0,0,NA,NA,0,NA,NA,-3.34177139401436,-3.38816094398499,0.0692414427134491
+7084,86743,442797.952,86843,442697.952,83,70,1.75,0.00583333333333333,3.23801506930344,0.148148148148148,23.9527181526854,0.0190955084421512,0.19,19,5,80.3865770958545,0.778883360972913,8,29.0851520990071,0,-3.28933229049047,-3.36920738220215,0.0921713301137981
+7085,86743,442697.952,86843,442597.952,84,70,0,NA,NA,NA,NA,-0.000787486944240641,0.055,5.5,3,68.9604202318046,0.719887955182073,2.75,76.9096646742387,38.0788650512695,-3.28442071378231,-3.33657956123352,0.0715302090686112
+7086,86743,442597.952,86843,442497.952,85,70,1,0.005,3.53553390593274,0.0833333333333333,11.1803398874989,0.135257935157169,0.75,75,1,99.1857866401092,0.978761061946903,75,50.658791624705,0,-3.33672066529592,-3.39411163330078,0.0766198182507944
+7087,86743,442497.952,86843,442397.952,86,70,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,0.0177692002069989,0.19,19,3,87.130951059073,0.852588907315275,12.5,28.6425638198853,0,-3.29716593027115,-3.39777755737305,0.105936416366424
+7088,86743,442397.952,86843,442297.952,87,70,2.75,0.0275,7.20336561662379,0.53030303030303,NA,0.0888592197233811,0.7125,71.25,3,97.6909909587229,0.844256975989617,68.75,37.3249810335929,0,-3.10979801416397,-3.27199387550354,0.220180728405896
+7089,86743,442297.952,86843,442197.952,88,70,59.75,0.29875,23.8376714056862,0.69578488372093,10,0.0668586126169794,0.5975,59.75,2,95.7020974817923,0.855489321494574,35.5,2.95940522868264,0,-2.39694786816835,-2.89426755905151,0.529561236311255
+7090,86743,442197.952,86843,442097.952,89,70,48.75,0.121875,10.562131292256,0.312352245862884,13.8388347648318,0.0199457684956724,0.2425,24.25,2,91.624409861864,0.85584765373089,20.25,10.930587630911,0,-1.79601647456487,-2.28561949729919,0.443542088489496
+7091,86743,442097.952,86843,441997.952,90,70,13.5,0.00964285714285714,3.21177564308945,0.178333333333333,14.8881325439859,-0.0250528759279211,0.02,2,1,68.0470115164975,0.897959183673469,2,4.26776695251465,0,-1.47947420428197,-1.89449751377106,0.642792064720069
+7092,86743,441997.952,86843,441897.952,91,70,12,0.06,8.38842768384132,0.465579710144928,36.4005494464026,-0.0392943898715748,0.0175,1.75,1,65.4774238937655,1,1.75,0,0,-1.07442062743939,-1.75420892238617,0.952685537269773
+7093,86743,441897.952,86843,441797.952,92,70,9.5,0.0158333333333333,4.23018946819252,0.163218390804598,12.5887913084729,-0.0315145029922496,0,0,0,NA,NA,0,NA,NA,-1.25312418490648,-2.46315407752991,1.2167893056802
+7094,86743,441797.952,86843,441697.952,93,70,14.25,0.0203571428571429,5.77292817617525,0.213362864525655,14.33178221589,0.00130479029798153,0.17,17,2,88.5011656797448,0.868381087374709,14.25,16.828221096712,0,-1.64925310900435,-2.67780327796936,1.11241920104205
+7095,86743,441697.952,86843,441597.952,94,70,11,0.0275,7.47940230431181,0.256944444444444,24.4290047085813,-0.00882439036642609,0,0,0,NA,NA,0,NA,NA,-2.39023392399152,-2.90816831588745,0.83656491006258
+7096,86743,441597.952,86843,441497.952,95,70,38,0.076,5.45899285966615,0.149099099099099,12.7147766421189,-0.00666930217594199,0.135,13.5,2,84.6351904770467,0.788675492572565,9.25,11.4098320007324,0,-2.67606341838837,-2.99570298194885,0.433945695043762
+7097,86743,441497.952,86843,441397.952,96,70,26,0.065,8.1575584990536,0.1753300330033,18.3852549156242,0.0214399472700461,0.3825,38.25,2,96.3439917940694,0.896264065584163,38,12.5381546519161,0,-2.83202612400055,-3.01221251487732,0.266874009971737
+7098,86743,441397.952,86843,441297.952,97,70,99,0.99,37.9901566863171,0.930976430976431,NA,0.068056071279716,0.76,76,2,98.242839030327,0.876381617219313,73.25,0.0328947368421053,0,-2.89099489152431,-2.98106122016907,0.122142508635415
+7099,86743,441297.952,86843,441197.952,98,70,96,0.96,37.6171647665901,0.925347222222222,NA,0.0501570604204358,0.4275,42.75,4,94.9017715264264,0.866916198793928,40,0.194452676159597,0,-2.85344485441844,-2.91257953643799,0.0942482854181226
+7100,86743,441197.952,86843,441097.952,99,70,14.4736842105263,0.1375,16.735744595046,0.772727272727273,NA,0.0478980855855116,0.445,44.5,1,97.3733506421488,0.879514773131795,44.5,31.2750289895561,0,-2.85500527918339,-2.97058367729187,0.172870388047221
+7101,86843,451097.952,86943,450997.952,0,71,7.75,0.0129166666666667,2.77062545238128,0.109444444444444,19.9827122087325,-0.00287388938460936,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172,-2.58409913380941,-2.66845750808716,0.121620997401077
+7102,86843,450997.952,86943,450897.952,1,71,8,0.016,7.12294465030152,0.212606837606838,25.3417262571831,0.0165826854578972,0.125,12.5,4,85.4203925199903,0.74453781512605,11.25,5.89859024047852,0,-2.77121210098267,-2.91656804084778,0.17121600765168
+7103,86843,450897.952,86943,450797.952,2,71,9.5,0.00730769230769231,3.43457890994027,0.11974030243261,14.4475357803569,0.00989003474201127,0.0425,4.25,3,65.2508046911757,0.70757180156658,2.75,5.86789546293371,0,-3.09374745686849,-3.23760533332825,0.2584380329256
+7104,86843,450797.952,86943,450697.952,3,71,1.5,0.00375,1.07886512994894,0.0416666666666667,17.3788318759096,0.000776754431976769,0.035,3.5,3,58.1768169794222,0.689119170984456,1.75,14.00751549857,0,-3.58715236186981,-3.7930474281311,0.258663398100623
+7105,86843,450697.952,86943,450597.952,4,71,0.75,0.0075,3.27019417631815,0.277777777777778,NA,-0.0222143811843443,0.085,8.5,1,87.210675248157,0.960967993754879,8.5,20.5307893753052,5,-3.93477574984233,-4.01650810241699,0.13931923392025
+7106,86843,450597.952,86943,450497.952,5,71,72.5,0.725,34.209792065667,0.916666666666667,NA,-0.0972852189419791,0,0,0,NA,NA,0,NA,NA,-4.10760080814362,-4.1946759223938,0.143503377437961
+7107,86843,450497.952,86943,450397.952,6,71,29.25,0.2925,23.8853003132966,0.843304843304843,NA,-0.00746506814284658,0.27,27,2,94.3850957406463,0.950825430277485,26.75,40.1059823919226,14.1421356201172,-4.04018513361613,-4.1943826675415,0.455238355378862
+7108,86843,450397.952,86943,450297.952,7,71,8.5,0.0425,15.7147130619514,0.428030303030303,11.1803398874989,-0.00993754307640074,0.0025,0.25,1,0,NA,0.25,76.1577301025391,76.1577301025391,-4.07724455992381,-4.16769361495972,0.245932416177134
+7109,86843,450297.952,86943,450197.952,8,71,18.25,0.045625,11.3549671198944,0.343402777777778,22.5888347648318,0.0232608688952708,0.2525,25.25,3,92.0381868213492,0.896524326022284,23.75,8.95033910014842,0,-4.19401550292969,-4.2411937713623,0.0946850612944652
+7110,86843,450197.952,86943,450097.952,9,71,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.0167454013158203,0.04,4,1,78.9473684210526,0.956597222222222,4,32.1939613819122,20.6155281066895,-4.29480298360189,-4.34439945220947,0.0666872227378428
+7111,86843,450097.952,86943,449997.952,10,71,2,0.004,1.9142135623731,0.0666666666666667,11.4721359549996,-0.0836589341226499,0,0,0,NA,NA,0,NA,NA,-4.17617972691854,-4.31077575683594,0.17980902515027
+7112,86843,449997.952,86943,449897.952,11,71,7.25,0.0145,4.87332860721152,0.354074074074074,11.4721359549996,-0.080123769307902,0.1175,11.75,1,89.9089482633795,0.90084985835694,11.75,9.38017305414727,0,-3.68999409675598,-4.02176284790039,0.50506605250071
+7113,86843,449897.952,86943,449797.952,12,71,24.5,0.030625,7.8403260108398,0.242660895003163,12.4651699437495,-0.00652643867695588,0.265,26.5,2,93.9511506062603,0.786301955337109,25.5,11.4238293485821,0,-2.74095541238785,-3.1764760017395,0.580729486507214
+7114,86843,449797.952,86943,449697.952,13,71,70.25,0.7025,36.9326226063321,0.767497034400949,NA,0.0244125015361351,0.365,36.5,4,89.6944350252285,0.752278156241706,20.75,1.89774703979492,0,-1.77123419443766,-2.40586495399475,1.14778709797259
+7115,86843,449697.952,86943,449597.952,14,71,56.5,0.113,12.425035697928,0.459210526315789,10.2360679774998,0.0197344248594891,0.34,34,3,92.1511638733668,0.761730205278592,18.25,3.48801474010243,0,-2.80935487151146,-3.94344472885132,1.11623157524971
+7116,86843,449597.952,86943,449497.952,15,71,41.25,0.1375,12.7526771038407,0.496745230078563,10,0.0397503669689468,0.5075,50.75,1,97.8751325648042,0.924598419259718,50.75,1.63756850670124,0,-4.23531662093268,-4.53299474716187,0.645172356009674
+7117,86843,449497.952,86943,449397.952,16,71,0,NA,NA,NA,NA,-0.0465361741252855,0,0,0,NA,NA,0,NA,NA,-4.6731766462326,-4.82444000244141,0.197768420585161
+7118,86843,449397.952,86943,449297.952,17,71,0,NA,NA,NA,NA,-0.00602671195472794,0.0275,2.75,1,73.5251216233933,1,2.75,101.743745283647,93.0053787231445,-4.85962438583374,-4.94321823120117,0.146540705968699
+7119,86843,449297.952,86943,449197.952,18,71,14.25,0.1425,18.4428842885362,0.616959064327485,NA,-0.0187896169992564,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-4.95525379975637,-5.01920557022095,0.109366646874075
+7120,86843,449197.952,86943,449097.952,19,71,13,0.0433333333333333,11.5437275887319,0.371111111111111,12.4535599249993,-0.0353587677977293,0.03,3,1,74.8763016215986,0.878714372346877,3,4.1935396194458,0,-5.0179304016961,-5.06713724136353,0.0746796825942061
+7121,86843,449097.952,86943,448997.952,20,71,2.25,0.0045,1.26538820320221,0.1,32.0996258167941,-0.0229606065127155,0,0,0,NA,NA,0,NA,NA,-5.07847876018948,-5.12414455413818,0.0654689431906662
+7122,86843,448997.952,86943,448897.952,21,71,10.75,0.00895833333333333,3.66600769557552,0.135607448107448,10.7117516385414,-0.0209850182254377,0.03,3,1,74.8763016215986,0.818071558520315,3,4.33925565083822,0,-5.13243651390076,-5.16838884353638,0.0535780752589437
+7123,86843,448897.952,86943,448797.952,22,71,0,NA,NA,NA,NA,-0.118431530389935,0,0,0,NA,NA,0,NA,NA,-5.15291028552585,-5.1776270866394,0.0474306314402443
+7124,86843,448797.952,86943,448697.952,23,71,18,0.18,22.6034276704418,0.743055555555555,NA,-0.116637780883093,0.12,12,4,75.6191035399063,0.73669623059867,4,2.80134606361389,0,-4.94820686181386,-5.09803295135498,0.263233866683023
+7125,86843,448697.952,86943,448597.952,24,71,43.25,0.0617857142857143,8.74500855600836,0.269512223956117,11.9976366252402,0.045303525961499,0.4775,47.75,3,96.2657033280637,0.76211715730003,44,3.176726715727,0,-4.10144284036424,-4.45094394683838,0.551536359365363
+7126,86843,448597.952,86943,448497.952,25,71,82,0.82,35.6541550634533,0.895833333333333,NA,0.0821373357670382,0.9425,94.25,1,99.8418294460568,0.65947096381879,94.25,1.3489257397639,0,-2.91592609882355,-3.82907891273499,1.09506191003916
+7127,86843,448497.952,86943,448397.952,26,71,65.25,0.6525,32.2994121206667,0.909961685823755,NA,0.00504872570600128,0.4575,45.75,1,97.4818813583729,0.972731982657541,45.75,0,0,-1.7487237850825,-2.34447884559631,0.54094345247789
+7128,86843,448397.952,86943,448297.952,27,71,0,NA,NA,NA,NA,-0.0929322731882166,0.04,4,2,68.3051040056613,0.739583333333333,2.25,52.1716923713684,22.3606796264648,-1.89772737026215,-1.94219672679901,0.0419631222778163
+7129,86843,448297.952,86943,448197.952,28,71,0,NA,NA,NA,NA,-0.092079551119823,0,0,0,NA,NA,0,NA,NA,-1.90580076641507,-1.92461895942688,0.0356257900686809
+7130,86843,448197.952,86943,448097.952,29,71,0,NA,NA,NA,NA,-0.0556439535808749,0,0,0,NA,NA,0,NA,NA,-1.81745407978694,-1.87003970146179,0.0678594545817387
+7131,86843,448097.952,86943,447997.952,30,71,16.25,0.0541666666666667,14.8248610008378,0.358465608465608,10.3934466291663,-0.0197405964768288,0.0725,7.25,4,70.8844452019086,0.655904111945862,4.5,8.44895198427398,0,-1.71460803349813,-1.77326381206512,0.100327001987907
+7132,86843,447997.952,86943,447897.952,31,71,0.75,0.0075,3.27019417631815,0.277777777777778,NA,-0.0908522363449447,0,0,0,NA,NA,0,NA,NA,-1.59538890255822,-1.69092357158661,0.161168764400359
+7133,86843,447897.952,86943,447797.952,32,71,36.25,0.3625,26.3054808917448,0.827586206896552,NA,-0.0292756790519343,0.0025,0.25,1,0,NA,0.25,0,0,-1.45169230302175,-1.58531558513641,0.236515814886986
+7134,86843,447797.952,86943,447697.952,33,71,34,0.0485714285714286,7.7330337132535,0.249389973380657,10.7603536444614,0.028702099997372,0.2375,23.75,3,89.292186265462,0.845708775313404,17.75,7.53572528236791,0,-1.38795737425486,-1.54378700256348,0.309199044526563
+7135,86843,447697.952,86943,447597.952,34,71,2,0.02,8.65898990040549,0.229166666666667,NA,0.0376742172798185,0.425,42.5,1,97.1898422226593,0.877760800111126,42.5,32.2393388411578,0,-1.37677657604218,-1.53575360774994,0.317507742711075
+7136,86843,447597.952,86943,447497.952,35,71,41.75,0.0695833333333333,5.58522259158532,0.212703467799009,12.6502832395825,-0.0114083649509666,0.1175,11.75,3,86.5864929725291,0.815864022662889,11,1.45215760900619,0,-1.2695967886183,-1.48241758346558,0.340964158282816
+7137,86843,447497.952,86943,447397.952,36,71,11,0.0157142857142857,3.7487578942024,0.224603174603175,17.1381146931774,0.00984636116676484,0.065,6.5,5,66.5633973073643,0.713055954088953,4.5,5.98888118450458,0,-1.03927865624428,-1.27739298343658,0.255713928297751
+7138,86843,447397.952,86943,447297.952,37,71,5,0.00416666666666667,1.22097389080608,0.0763888888888889,17.8186566418936,0.0102519238343984,0.0275,2.75,4,48.5225755827122,0.588688946015424,1.75,9.09324264526367,0,-0.928405655754937,-0.981662511825562,0.0901296426366373
+7139,86843,447297.952,86943,447197.952,38,71,3.25,0.008125,2.86657635604973,0.243055555555556,37.2348212139054,0.00178767113994127,0.0275,2.75,3,53.4089368972002,0.657240788346187,1.75,35.3602870594371,0,-1.08354517817497,-1.2274683713913,0.146346668828928
+7140,86843,447197.952,86943,447097.952,39,71,10.25,0.00732142857142857,2.08585437435679,0.128306878306878,11.6893439546293,-0.002160978925167,0.0475,4.75,2,73.3861877524951,0.855190514978731,4,15.9583885795192,7.07106781005859,-1.36659087075128,-1.47926032543182,0.168735029275184
+7141,86843,447097.952,86943,446997.952,40,71,5.75,0.0071875,2.47048403465293,0.10042735042735,19.1733225885873,-0.0110124493103467,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-1.66855099797249,-1.83088541030884,0.193301762291334
+7142,86843,446997.952,86943,446897.952,41,71,14.25,0.0095,2.58512968408658,0.169312169312169,15.1244600703655,0.00263830619291184,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,7.94840876261393,5,-2.01967403623793,-2.12390232086182,0.201008241501816
+7143,86843,446897.952,86943,446797.952,42,71,23.5,0.05875,10.5694543605425,0.55204375633232,30.5039052967911,-0.0187029958962708,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.30788308382034,-2.39183449745178,0.114413045025596
+7144,86843,446797.952,86943,446697.952,43,71,11.25,0.01875,5.79914349804717,0.142543859649123,26.2969576550867,0.00381160899680253,0.01,1,2,30.8308651382582,0.494949494949495,0.5,12.8033008575439,0,-2.42866055170695,-2.4498770236969,0.0463207969922445
+7145,86843,446697.952,86943,446597.952,44,71,13,0.0325,5.44756333139993,0.272946859903382,14.5710678118655,-0.012079959455975,0.0025,0.25,1,0,NA,0.25,15,15,-2.45933002895779,-2.46936988830566,0.0306313730288547
+7146,86843,446597.952,86943,446497.952,45,71,25.5,0.0231818181818182,5.72468688584841,0.27511544011544,11.6135559933923,-0.00395346272111055,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,2.43872397286551,0,-2.47440034151077,-2.48449087142944,0.0267204522984682
+7147,86843,446497.952,86943,446397.952,46,71,21.75,0.03625,6.18905161352359,0.212719298245614,17.9960346505144,-0.001412044406934,0.0625,6.25,3,70.315121003546,0.68,3,11.8717422485352,0,-2.48402733272976,-2.49886631965637,0.0266229887145697
+7148,86843,446397.952,86943,446297.952,47,71,27.75,0.04625,9.42795689784816,0.215922772617819,10.1967233145832,-0.0121529504661612,0.005,0.5,1,30.8308651382582,1,0.5,18.2134580612183,15.8113880157471,-2.49055975675583,-2.5,0.0203355560346349
+7149,86843,446297.952,86943,446197.952,48,71,23.5,0.0335714285714286,6.81329121292186,0.356496675246675,18.4270662997943,-0.0359309737512376,0.02,2,1,68.0470115164975,0.693877551020408,2,8.93785190582275,5,-2.47944996092055,-2.49217343330383,0.0254026469560381
+7150,86843,446197.952,86943,446097.952,49,71,26,0.0288888888888889,7.41694011767586,0.202928509905254,14.0806837582378,-0.0263640883764401,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,7.26831550598145,0,-2.43000227212906,-2.46962642669678,0.0621623297833012
+7151,86843,446097.952,86943,445997.952,50,71,21.5,0.0215,3.27086095871258,0.149444444444444,15.4628407399141,-0.00217851966083799,0,0,0,NA,NA,0,NA,NA,-2.36851302782694,-2.42724943161011,0.102174399354749
+7152,86843,445997.952,86943,445897.952,51,71,47.75,0.04775,9.39473240146437,0.260757641950302,10.1180339887499,-0.0378257017117721,0.09,9,2,84.7583018895778,0.871794871794872,8.5,2.22222222222222,0,-2.31202852725983,-2.39707040786743,0.1087135071296
+7153,86843,445897.952,86943,445797.952,52,71,13.25,0.0189285714285714,7.82589527877925,0.215891912320484,15.6731067021326,-0.00747870239736585,0.015,1.5,3,37.593984962406,0.419869470630892,1,8.09016990661621,0,-2.15742829110887,-2.24362778663635,0.161241774185159
+7154,86843,445797.952,86943,445697.952,53,71,2.25,0.0225,7.49547631756877,0.462962962962963,NA,5.60071987274569e-05,0,0,0,NA,NA,0,NA,NA,-1.78778070211411,-2.09738779067993,0.520221738598202
+7155,86843,445697.952,86943,445597.952,54,71,0,NA,NA,NA,NA,-0.00642022260498379,0,0,0,NA,NA,0,NA,NA,-1.69686884350247,-2.12579727172852,0.779552059854862
+7156,86843,445597.952,86943,445497.952,55,71,0,NA,NA,NA,NA,-0.0133437593544841,0,0,0,NA,NA,0,NA,NA,-2.03420028421614,-2.4242799282074,0.690922561984058
+7157,86843,445497.952,86943,445397.952,56,71,0,NA,NA,NA,NA,-0.0113203241518568,0,0,0,NA,NA,0,NA,NA,-2.55683523416519,-2.71441411972046,0.221379114327318
+7158,86843,445397.952,86943,445297.952,57,71,21,0.105,25.8892827305635,0.602402745995423,14.142135623731,0.0143511860173567,0.27,27,1,95.1342058036908,0.929750614682122,27,2.27180869491012,0,-2.82264068391588,-2.8905782699585,0.116447396011525
+7159,86843,445297.952,86943,445197.952,58,71,0.75,0.00375,1.25,0.0833333333333333,90,-0.119373612119816,0,0,0,NA,NA,0,NA,NA,-2.98841315507889,-3.05633664131165,0.0941484766004417
+7160,86843,445197.952,86943,445097.952,59,71,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.149846259639889,0.035,3.5,1,77.1303955881659,0.844559585492228,3.5,49.3678834097726,40.3112869262695,-3.00502332051595,-3.075035572052,0.113093344032235
+7161,86843,445097.952,86943,444997.952,60,71,4.25,0.0425,12.5132324736319,0.509803921568627,NA,0.11246509277029,0.965,96.5,1,99.9054042256917,0.960967993754881,96.5,41.6845764842058,0,-2.80401525894801,-2.96098780632019,0.240609056792294
+7162,86843,444997.952,86943,444897.952,61,71,68.5,0.685,37.5853070561907,0.720802919708029,NA,0.0841234570741653,0.865,86.5,1,99.6041754676792,0.694189602446483,86.5,1.77600426205321,0,-2.29805766211616,-2.46963429450989,0.315993542932437
+7163,86843,444897.952,86943,444797.952,62,71,58,0.116,11.5087263704654,0.287476631450806,10.8284271247462,0.108554035769776,0.98,98,1,99.9465655549884,0.529569892473119,98,2.38428545971306,0,-1.93060746788979,-2.07212066650391,0.317136377093039
+7164,86843,444797.952,86943,444697.952,63,71,70.75,0.35375,29.3869961349004,0.654256041270703,10,0.0933985746838152,0.8975,89.75,1,99.7075809055868,0.540889526542324,89.75,2.49277491024942,0,-2.21687303649055,-2.42282438278198,0.21995710991292
+7165,86843,444697.952,86943,444597.952,64,71,16.75,0.1675,19.796946724798,0.694029850746269,NA,0.0658457770163091,0.75,75,1,99.1857866401092,0.879646017699115,75,23.7926175435384,0,-2.2628116607666,-2.54838514328003,0.375149145144664
+7166,86843,444597.952,86943,444497.952,65,71,32.25,0.16125,15.5754271219972,0.494047619047619,44.7213595499958,-0.00626380436820909,0.1975,19.75,2,88.5373488001787,0.857587894971072,10.5,1.67586763599251,0,-1.86925578117371,-2.17599892616272,0.431949813248011
+7167,86843,444497.952,86943,444397.952,66,71,13,0.13,24.703112390313,0.557692307692308,NA,-0.0414611042715205,0,0,0,NA,NA,0,NA,NA,-1.96588034100003,-2.01326584815979,0.340621976652541
+7168,86843,444397.952,86943,444297.952,67,71,7.25,0.0241666666666667,6.53348104560398,0.30048309178744,23.4164593685348,-0.0361672041982456,0.0675,6.75,2,81.1601132340289,0.850364735956107,6.25,2.48411362259476,0,-1.97416175405184,-2.04212641716003,0.208440571775181
+7169,86843,444297.952,86943,444197.952,68,71,31.5,0.1575,20.1057842009202,0.648080065359477,11.1803398874989,0.05440671339049,0.5075,50.75,1,97.8751325648042,0.779181084974889,50.75,6.3201528276716,0,-2.10446222623189,-2.18556451797485,0.133981721747502
+7170,86843,444197.952,86943,444097.952,69,71,16.75,0.041875,8.36005423488562,0.297371031746032,23.2678394734132,0.0378145381459763,0.29,29,3,90.9521346159807,0.879275653923541,24.25,12.8495367642107,0,-2.22605762879054,-2.35205984115601,0.184284008431234
+7171,86843,444097.952,86943,443997.952,70,71,34.25,0.114166666666667,15.6678753963932,0.448247609264558,22.4780549675086,-0.0229387133114506,0.19,19,3,91.1122756821561,0.861802100608071,18.25,4.35128023749904,0,-2.20515057775709,-2.3825159072876,0.156704460266286
+7172,86843,443997.952,86943,443897.952,71,71,48.5,0.2425,23.955103961465,0.633057199211045,45.2769256906871,-0.0323780093858659,0.0225,2.25,4,43.5901290689642,0.317988064791134,1.25,0.555555555555556,0,-2.14262519280116,-2.39338397979736,0.287076548407528
+7173,86843,443897.952,86943,443797.952,72,71,66.25,0.6625,32.3414676291291,0.910691823899371,NA,-0.0648783121392626,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,0,0,-2.04815811581082,-2.20866274833679,0.270436713606649
+7174,86843,443797.952,86943,443697.952,73,71,53.75,0.26875,19.8349725949456,0.484741784037559,15,0.000298993112573953,0.0875,8.75,5,68.6656259395885,0.641001417099669,3,0.571428571428571,0,-2.46130619446437,-2.70936632156372,0.311172574129374
+7175,86843,443697.952,86943,443597.952,74,71,88.5,0.885,37.6821309232826,0.878060263653484,NA,0.0315130779074389,0.3475,34.75,3,90.7423059322183,0.818988143723414,18.75,0.0359712230215827,0,-2.97191132439507,-3.18702673912048,0.268530691594611
+7176,86843,443597.952,86943,443497.952,75,71,40.25,0.134166666666667,15.6852199523565,0.533987670343932,24.2400062421959,-0.0143339117979849,0.065,6.5,2,76.425667169829,0.791313421155602,4.25,0.192307692307692,0,-3.29106146097183,-3.42107772827148,0.174036847626111
+7177,86843,443497.952,86943,443397.952,76,71,12.5,0.0208333333333333,4.35106809407827,0.156330749354005,17.9442720985651,0.00583846668593651,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,30.5125164455838,25.4950981140137,-3.39293220308092,-3.4607105255127,0.134000583846263
+7178,86843,443397.952,86943,443297.952,77,71,2,0.00666666666666667,2.83333333333333,0.144444444444444,38.9183091085858,0.00962562029064429,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,34.1492449442546,29.1547584533691,-3.39235062069363,-3.44571709632874,0.0939996364837755
+7179,86843,443297.952,86943,443197.952,78,71,0,NA,NA,NA,NA,-0.116057747188461,0,0,0,NA,NA,0,NA,NA,-3.38609268267949,-3.41651320457458,0.047597890214337
+7180,86843,443197.952,86943,443097.952,79,71,0,NA,NA,NA,NA,-0.0441949168905558,0.1025,10.25,1,88.8238145380415,0.951556255298535,10.25,68.9476325802687,54.0832710266113,-3.34419059753418,-3.38092994689941,0.0542693057375001
+7181,86843,443097.952,86943,442997.952,80,71,0.25,0.0025,0,0,NA,0.00136459334258689,0.18,18,2,88.1832447963125,0.855963126560399,14.5,60.2759487893846,40.3112869262695,-3.27083498239517,-3.31499743461609,0.0588543039749321
+7182,86843,442997.952,86943,442897.952,81,71,0.25,0.0025,0,0,NA,-0.0112102215248615,0.165,16.5,1,92.3061588442808,0.916688362405623,16.5,65.8812015995835,50,-3.22392053074307,-3.27151250839233,0.0844893053466186
+7183,86843,442897.952,86943,442797.952,82,71,0.25,0.0025,0,0,NA,0.0036189006427594,0.28,28,2,92.2027067416096,0.876237623762376,23.75,35.6244517053877,5,-3.16350217660268,-3.25378394126892,0.110481114420849
+7184,86843,442797.952,86943,442697.952,83,71,0,NA,NA,NA,NA,0.0525893947822624,0.525,52.5,3,94.122880183165,0.833086552698883,38,56.9116976510911,15,-3.1054089334276,-3.1557822227478,0.075921072211406
+7185,86843,442697.952,86943,442597.952,84,71,0,NA,NA,NA,NA,0.0402485602436354,0.265,26.5,2,91.8380756375907,0.935890586601133,22.5,60.0665258011728,31.6227760314941,-3.15187470118205,-3.20962262153625,0.0605048967351557
+7186,86843,442597.952,86943,442497.952,85,71,3.25,0.00361111111111111,1.57134840263677,0.037037037037037,16.6963034600653,-0.0274212456608257,0,0,0,NA,NA,0,NA,NA,-3.16268051995171,-3.21894001960754,0.0978173909023523
+7187,86843,442497.952,86943,442397.952,86,71,5,0.0166666666666667,5.69960575111722,0.265873015873016,11.380711874577,-0.0452820010957839,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,40.5239186968122,35,-3.08406792084376,-3.16923975944519,0.111536111181074
+7188,86843,442397.952,86943,442297.952,87,71,4.75,0.00791666666666667,3.5006873145935,0.145502645502645,18.7663268611177,0.0807488372846274,0.7875,78.75,1,99.3322508440104,0.873242226183403,78.75,24.7258982401046,0,-3.01951148774889,-3.08875036239624,0.111508794993505
+7189,86843,442297.952,86943,442197.952,88,71,60.5,0.15125,13.1267236063056,0.392229462875197,12.3381019908347,0.0493195102480968,0.51,51,3,94.9161884411065,0.773840934790803,39.5,2.72993124232573,0,-2.69243359565735,-2.9154212474823,0.277456076901663
+7190,86843,442197.952,86943,442097.952,89,71,49,0.245,17.2403015645033,0.568576388888889,14.142135623731,-0.00166598503738214,0.1725,17.25,2,89.8900201319662,0.920101870115603,16,0,0,-2.30572613080343,-2.46669864654541,0.235313540136678
+7191,86843,442097.952,86943,441997.952,90,71,1.75,0.004375,1.44254854407954,0.111111111111111,16.334221919521,-0.147253609643667,0,0,0,NA,NA,0,NA,NA,-2.07502199543847,-2.20947742462158,0.234883728351637
+7192,86843,441997.952,86943,441897.952,91,71,3,0.015,5.43886487113714,0.419047619047619,14.142135623731,-0.199951030217926,0,0,0,NA,NA,0,NA,NA,-2.03783609469732,-2.29663872718811,0.394822607090994
+7193,86843,441897.952,86943,441797.952,92,71,11.75,0.0167857142857143,3.61199847713558,0.20374465575704,12.0136656497577,-0.12367882927254,0,0,0,NA,NA,0,NA,NA,-1.81303546163771,-2.27015733718872,0.7563985970875
+7194,86843,441797.952,86943,441697.952,93,71,15.5,0.0516666666666667,12.6477871931036,0.34537037037037,10,-0.0842646925718509,0.0025,0.25,1,0,NA,0.25,10,10,-1.33853636930386,-2.06195449829102,0.995205305114192
+7195,86843,441697.952,86943,441597.952,94,71,24.75,0.0275,7.48645761437227,0.279849839390069,10.1311488763888,-0.034020502255903,0,0,0,NA,NA,0,NA,NA,-0.874087022410499,-1.63044607639313,1.11677563235248
+7196,86843,441597.952,86943,441497.952,95,71,58.75,0.29375,16.2004971567823,0.387108262108262,10,-0.0422140649548601,0,0,0,NA,NA,0,NA,NA,-1.48999531567097,-2.20557761192322,1.07572814781769
+7197,86843,441497.952,86943,441397.952,96,71,62.5,0.104166666666667,8.06209418322963,0.257210401891253,11.5236892706218,-0.0143686002174309,0.0225,2.25,2,59.0198591406224,0.658994032395567,1.75,1.66666666666667,0,-2.08485451009538,-2.52291226387024,0.789984854597
+7198,86843,441397.952,86943,441297.952,97,71,86.5,0.865,38.4503109363311,0.830443159922929,NA,0.0218099253095716,0.305,30.5,2,91.8493852627859,0.902340570982128,17.25,0.614754098360656,0,-2.51262088616689,-2.73093891143799,0.428810007156273
+7199,86843,441297.952,86943,441197.952,98,71,48,0.08,7.81233814233694,0.258987688806125,10.1967233145832,0.000171668855182361,0.1725,17.25,2,87.4494127722051,0.850191006466755,9.75,11.9732276805933,0,-2.5003174940745,-2.75339651107788,0.354399473775793
+7200,86843,441197.952,86943,441097.952,99,71,28.9473684210526,0.06875,9.06964517857452,0.351416391639164,10,0.00393392516132735,0.0775,7.75,3,77.6671981466396,0.761517615176152,6,6.31587034656155,0,-2.58947892983754,-2.86350226402283,0.469517866680452
+7201,86943,451097.952,87043,450997.952,0,72,6.25,0.0104166666666667,4.97988149941553,0.104242979242979,20.6084303033196,0.0201174575457117,0.1225,12.25,2,88.7881827281932,0.891466558133225,12,5.87332075469348,0,-2.64364238580068,-2.75778222084045,0.149872746191124
+7202,86943,450997.952,87043,450897.952,1,72,16.25,0.01625,4.28219313738225,0.136640211640212,14.7370791298733,0.0258459196348849,0.225,22.5,3,88.5223599389154,0.807653776798237,15.5,4.89812456766764,0,-2.90087729692459,-3.11929869651794,0.185911417435044
+7203,86943,450897.952,87043,450797.952,2,72,18,0.0257142857142857,4.99512066996177,0.192550505050505,18.6917999144044,0.0110219528862308,0.025,2.5,2,60.6037822408496,0.842209072978304,2,8.81816940307617,0,-3.18214513858159,-3.31402349472046,0.179516279172774
+7204,86943,450797.952,87043,450697.952,3,72,8.5,0.00566666666666667,1.8551328153925,0.0916666666666667,12.6998665539826,0.0224171987513546,0.0925,9.25,3,83.0552656274174,0.855484803323849,8.5,10.4643440246582,0,-3.49748286604881,-3.74510169029236,0.21209607154919
+7205,86943,450697.952,87043,450597.952,4,72,19.25,0.01203125,3.28822154914192,0.198745265151515,13.4500745089076,0.00515903422408883,0.09,9,5,69.1892537665287,0.615384615384615,3.75,8.89085398779975,0,-3.79354743162791,-3.95985722541809,0.175154723445215
+7206,86943,450597.952,87043,450497.952,5,72,44.5,0.2225,13.3320925169425,0.440207156308851,36.4005494464026,-0.016853379860986,0.3125,31.25,1,95.8481348315798,0.94873848618342,31.25,27.4335847625732,7.07106781005859,-3.67323753237724,-3.97743034362793,0.492735031849042
+7207,86943,450497.952,87043,450397.952,6,72,0,NA,NA,NA,NA,0.0569891483962419,0.6325,63.25,3,96.230410114171,0.856482677459169,57.75,60.8516179638889,14.1421356201172,-2.72578728199005,-3.39766240119934,0.62051105904131
+7208,86943,450397.952,87043,450297.952,7,72,0,NA,NA,NA,NA,0.0118181438441388,0.175,17.5,1,92.6818041122695,0.911308203991131,17.5,112.506656646729,91.9238891601562,-3.23389768600464,-3.90662693977356,0.690365850941053
+7209,86943,450297.952,87043,450197.952,8,72,12,0.02,7.80947092305886,0.217193486590038,10.7868932583326,-0.0261154783116217,0,0,0,NA,NA,0,NA,NA,-4.02500927448273,-4.25794219970703,0.353223756492614
+7210,86943,450197.952,87043,450097.952,9,72,2.75,0.01375,5.9583932937884,0.341666666666667,20,-0.0643155321009908,0,0,0,NA,NA,0,NA,NA,-4.31659424304962,-4.37253761291504,0.0829222506447436
+7211,86943,450097.952,87043,449997.952,10,72,0,NA,NA,NA,NA,-0.0918320614949334,0.1075,10.75,1,89.2106768070942,0.937752878929349,10.75,26.1530816721362,7.07106781005859,-4.31750601530075,-4.41198873519897,0.182413381518421
+7212,86943,449997.952,87043,449897.952,11,72,32.75,0.0545833333333333,4.3912470991149,0.147222222222222,14.6528867707765,0.0720532007381553,0.825,82.5,1,99.4686117624928,0.770694794771841,82.5,8.80869402451949,0,-3.69737050930659,-4.10217094421387,0.624365864448859
+7213,86943,449897.952,87043,449797.952,12,72,52.75,0.26375,25.0777969012185,0.609458556149733,14.142135623731,0.0619503630898544,0.6075,60.75,1,98.5105231673728,0.876539745784113,60.75,3.50819680327741,0,-2.90986566245556,-3.51863098144531,0.741758260923947
+7214,86943,449797.952,87043,449697.952,13,72,39.75,0.06625,8.45245419039567,0.354607279693487,14.8960501603604,0.0568377195193898,0.5675,56.75,2,97.9579412428768,0.792290137881086,56.25,6.2475015161321,0,-1.09384698358675,-2.19061017036438,1.88213177624437
+7215,86943,449697.952,87043,449597.952,14,72,56.5,0.188333333333333,16.007055227262,0.521116377040548,10,0.0353508190015418,0.3525,35.25,3,94.8881299113355,0.772530005088145,33,2.19501755085397,0,-2.67099771648645,-3.85733866691589,1.20070552163808
+7216,86943,449597.952,87043,449497.952,15,72,5.75,0.02875,6.23053306827449,0.257575757575758,10,-0.0104273253616338,0.01,1,2,34.5233986084855,0.494949494949495,0.75,1.25,0,-4.11673802137375,-4.73652935028076,1.18708376359175
+7217,86943,449497.952,87043,449397.952,16,72,0,NA,NA,NA,NA,-0.0112997489372174,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,148.892661200629,140.089248657227,-4.8066291809082,-4.95613145828247,0.153842687315015
+7218,86943,449397.952,87043,449297.952,17,72,0,NA,NA,NA,NA,0.00361781381802757,0,0,0,NA,NA,0,NA,NA,-4.97250894705455,-5.04540205001831,0.0911966481977804
+7219,86943,449297.952,87043,449197.952,18,72,0,NA,NA,NA,NA,-0.0697457869604114,0,0,0,NA,NA,0,NA,NA,-5.04901427030563,-5.08982706069946,0.0469963994513793
+7220,86943,449197.952,87043,449097.952,19,72,4,0.01,3.87404954560851,0.0798611111111111,19.5710678118655,-0.0563827302466234,0.005,0.5,1,30.8308651382582,1,0.5,26.2104606628418,25.4950981140137,-5.08447515964508,-5.11647319793701,0.0368737192012481
+7221,86943,449097.952,87043,448997.952,20,72,2.25,0.005625,1.68475184565023,0.15,16.1967716615477,-0.0157346077209513,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.20710678100586,0,-5.12928736209869,-5.15139532089233,0.0332935025412533
+7222,86943,448997.952,87043,448897.952,21,72,1.5,0.0075,3.49343771549852,0.1,86.3133825081603,-0.0724216566035375,0,0,0,NA,NA,0,NA,NA,-5.17262655496597,-5.19731950759888,0.0243341107035542
+7223,86943,448897.952,87043,448797.952,22,72,2.75,0.0275,6.92586733649247,0.575757575757576,NA,-0.165150912379322,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,4.06657322970304,0,-5.19408269723256,-5.21687841415405,0.0349071283614365
+7224,86943,448797.952,87043,448697.952,23,72,45.75,0.1525,19.8881034219785,0.55297788631122,11.380711874577,0.0244137227718602,0.3125,31.25,4,91.0027366592383,0.7436924309171,24.75,4.20433279418945,0,-5.05059733986855,-5.19329833984375,0.19439918863985
+7225,86943,448697.952,87043,448597.952,24,72,17.75,0.0136538461538462,4.44888561099769,0.171388611388611,10.9508215211537,0.0296655642937549,0.22,22,4,86.9920497749548,0.812183570145354,11.5,16.8865123445337,0,-4.72220961252848,-5.03377389907837,0.395724177194254
+7226,86943,448597.952,87043,448497.952,25,72,51.25,0.128125,12.5295066215656,0.355103615520282,12.3381019908347,0.0650816840064363,0.515,51.5,2,95.1999600168893,0.854647250410487,38.5,3.37365702286507,0,-3.65349964797497,-4.81804609298706,1.43949710938859
+7227,86943,448497.952,87043,448397.952,26,72,11.25,0.05625,9.36495944799205,0.456349206349206,80.6225774829855,-0.113114134881325,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,37.1879980299208,30.4138145446777,-2.01233164469401,-2.54739212989807,0.569335685353692
+7228,86943,448397.952,87043,448297.952,27,72,0,NA,NA,NA,NA,-0.0998023682134226,0,0,0,NA,NA,0,NA,NA,-1.88214632123709,-1.99420416355133,0.0720567910519336
+7229,86943,448297.952,87043,448197.952,28,72,0,NA,NA,NA,NA,-0.0739448500791332,0,0,0,NA,NA,0,NA,NA,-1.86244298020999,-1.89897406101227,0.0387243837784625
+7230,86943,448197.952,87043,448097.952,29,72,7.75,0.019375,6.05290372171108,0.123412698412698,10.5901699437495,-0.0391239949160081,0,0,0,NA,NA,0,NA,NA,-1.8284325748682,-1.86710822582245,0.0364824658323327
+7231,86943,448097.952,87043,447997.952,30,72,1.75,0.0175,6.61428065039363,0.30952380952381,NA,-0.0161582239937343,0.005,0.5,1,30.8308651382582,1,0.5,74.9909210205078,73.8241119384766,-1.75238714615504,-1.7877014875412,0.0632193574669457
+7232,86943,447997.952,87043,447897.952,31,72,0,NA,NA,NA,NA,-0.0509999626626086,0.07,7,1,85.3702908942512,0.95221027479092,7,94.041412625994,78.2623825073242,-1.66116539637248,-1.7085257768631,0.0698326790141244
+7233,86943,447897.952,87043,447797.952,32,72,0,NA,NA,NA,NA,-0.0316092804027721,0,0,0,NA,NA,0,NA,NA,-1.60342109948397,-1.63079679012299,0.0670465891498156
+7234,86943,447797.952,87043,447697.952,33,72,14.75,0.0210714285714286,6.35858941786065,0.257001459587666,12.5153223309184,-0.0121368378649095,0.1475,14.75,2,87.3881972864858,0.815996779943649,11.5,7.09262162548,0,-1.58048369487127,-1.63385152816772,0.120300707173963
+7235,86943,447697.952,87043,447597.952,34,72,1,0.01,4.34942231976673,0.291666666666667,NA,-0.103024047820945,0.01,1,1,52.6315789473684,0.747474747474748,1,17.5,10,-1.47816897928715,-1.61120653152466,0.228627741743766
+7236,86943,447597.952,87043,447497.952,35,72,31,0.0344444444444444,4.71236444281129,0.220739137405804,10.853683920692,-0.0351651919675169,0.0025,0.25,1,0,NA,0.25,0,0,-1.50007895628611,-1.55756330490112,0.116605004666637
+7237,86943,447497.952,87043,447397.952,36,72,12.75,0.0159375,4.47023133948829,0.194699754901961,22.6205884599517,0.00104914028765052,0.0275,2.75,1,73.5251216233933,1,2.75,13.8532758192583,7.07106781005859,-1.35586445778608,-1.51275992393494,0.185552371549627
+7238,86943,447397.952,87043,447297.952,37,72,3.5,0.005,1.81182223615715,0.121031746031746,17.4179748622389,0.0038553121158111,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,26.311516394982,10,-1.14571064710617,-1.3410929441452,0.189746718071033
+7239,86943,447297.952,87043,447197.952,38,72,13.75,0.0152777777777778,4.62102804641808,0.255284324728769,13.0091154805549,0.0117660310584631,0.07,7,1,85.3702908942512,0.95221027479092,7,4.15047155107771,0,-1.13350776955485,-1.22866332530975,0.12409177535068
+7240,86943,447197.952,87043,447097.952,39,72,19.75,0.0219444444444444,4.89339820932233,0.292603615520282,14.5036386500931,-0.0111752025360533,0,0,0,NA,NA,0,NA,NA,-1.30333184202512,-1.39500987529755,0.136234982220339
+7241,86943,447097.952,87043,446997.952,40,72,13,0.00866666666666667,3.28433229035973,0.174823633156966,11.8384757928638,-0.00719893799918282,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-1.58902631700039,-1.77307772636414,0.192203134222733
+7242,86943,446997.952,87043,446897.952,41,72,25.75,0.0515,5.72989337877524,0.296690307328605,20.3245553203368,-0.00592557833821047,0,0,0,NA,NA,0,NA,NA,-1.95625851551692,-2.12463855743408,0.210624250676661
+7243,86943,446897.952,87043,446797.952,42,72,18.25,0.0140384615384615,5.09179927534783,0.192018230811334,12.8112808046119,-0.0149588658394441,0,0,0,NA,NA,0,NA,NA,-2.20973207056522,-2.37211894989014,0.163655088547229
+7244,86943,446797.952,87043,446697.952,43,72,28.5,0.0285,6.76448555897244,0.266595580979143,14.7089620299853,-0.0199183185626953,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0,-2.30321447054545,-2.42107033729553,0.148016094755433
+7245,86943,446697.952,87043,446597.952,44,72,16.75,0.0209375,4.81878624733153,0.159143518518519,17.1422355726122,0.00351494621301754,0.01,1,2,30.8308651382582,0.494949494949495,0.5,17.5806188583374,11.1803398132324,-2.33187917868296,-2.43747234344482,0.141967091106499
+7246,86943,446597.952,87043,446497.952,45,72,1.5,0.003,0.5,0.0333333333333333,26.5225943475223,0.017412810285532,0.0925,9.25,5,70.9641905888779,0.638712008309624,4.25,22.6551287367537,0,-2.37086562812328,-2.46958303451538,0.128264709060577
+7247,86943,446497.952,87043,446397.952,46,72,25,0.0416666666666667,7.03817659320851,0.278240740740741,21.3155712709726,0.00247678152711842,0,0,0,NA,NA,0,NA,NA,-2.43308208386103,-2.494957447052,0.0911959252908055
+7248,86943,446397.952,87043,446297.952,47,72,31,0.062,11.0423745686743,0.521349363197189,13,-0.023515538481347,0.02,2,2,58.1510768543717,0.795918367346939,1.75,19.5533645153046,10,-2.4594674706459,-2.49995422363281,0.0646502247043109
+7249,86943,446297.952,87043,446197.952,48,72,33.75,0.0375,6.7068706785857,0.259773358603768,13.1516271172671,-0.0318383098232516,0,0,0,NA,NA,0,NA,NA,-2.44278560082118,-2.49297547340393,0.0682760882680205
+7250,86943,446197.952,87043,446097.952,49,72,38.75,0.0553571428571429,9.98855816127744,0.335327874739639,11.3887656499994,-0.064936424360385,0,0,0,NA,NA,0,NA,NA,-2.44006103277206,-2.47034430503845,0.048138355684115
+7251,86943,446097.952,87043,445997.952,50,72,56.5,0.0941666666666667,10.1699463429952,0.436124079261334,10,-0.0479674257941735,0.04,4,1,78.9473684210526,0.956597222222222,4,1.06694173812866,0,-2.45257572333018,-2.46287178993225,0.0304667086708585
+7252,86943,445997.952,87043,445897.952,51,72,27.25,0.0389285714285714,7.36523114863846,0.244250541125541,10.8301983286917,-0.0252700336850012,0.05,5,1,81.7256002368443,0.830220713073005,5,3.60355339050293,0,-2.4300299435854,-2.46647500991821,0.0606108952922664
+7253,86943,445897.952,87043,445797.952,52,72,9,0.01,4.48768616821904,0.156408859840232,13.6784626581302,-0.0150776380611933,0,0,0,NA,NA,0,NA,NA,-2.2650985121727,-2.39115214347839,0.181361873679712
+7254,86943,445797.952,87043,445697.952,53,72,0,NA,NA,NA,NA,-0.00292035721133743,0,0,0,NA,NA,0,NA,NA,-1.70639450848103,-2.16388559341431,0.48976787664006
+7255,86943,445697.952,87043,445597.952,54,72,0,NA,NA,NA,NA,0.0104720765723505,0.0025,0.25,1,0,NA,0.25,25.4950981140137,25.4950981140137,-0.989784494042397,-1.22728896141052,0.328388212959628
+7256,86943,445597.952,87043,445497.952,55,72,0,NA,NA,NA,NA,0.0105080956988604,0.05,5,3,64.9567129720608,0.728353140916808,2.75,50.7883708953857,32.0156211853027,-1.22998972733816,-1.90277743339539,0.642125734860346
+7257,86943,445497.952,87043,445397.952,56,72,0,NA,NA,NA,NA,-0.00769086388539108,0,0,0,NA,NA,0,NA,NA,-2.29204607754946,-2.71840190887451,0.54871737222154
+7258,86943,445397.952,87043,445297.952,57,72,22.25,0.055625,13.65018949985,0.343208874458874,14.7855339059327,-0.00582066276940168,0.2625,26.25,1,94.9905255479102,0.921083310913819,26.25,2.84418676467169,0,-2.805644094944,-2.89406394958496,0.144564691014827
+7259,86943,445297.952,87043,445197.952,58,72,0.5,0.0025,0,0,20.6155281280883,-0.120264186896384,0,0,0,NA,NA,0,NA,NA,-2.96129563450813,-3.03730320930481,0.0783568927862544
+7260,86943,445197.952,87043,445097.952,59,72,0.25,0.0025,0,0,NA,-0.0441518432672456,0.27,27,1,95.1342058036908,0.943800491745697,27,56.4677807490031,35,-2.91859622796377,-3.04501032829285,0.151960220855005
+7261,86943,445097.952,87043,444997.952,60,72,20,0.1,13.4705286196292,0.477633477633478,10,0.113175582867116,1,100,1,100,NA,100,26.5736647081375,0,-2.47539664059877,-2.90192413330078,0.532966389868455
+7262,86943,444997.952,87043,444897.952,61,72,81.75,0.40875,19.1088665089734,0.405163599182004,10,0.0476506949385657,0.56,56,3,95.836429311923,0.842322749021314,47,1.03603155272348,0,-1.5279524649183,-2.15321159362793,0.829647924397233
+7263,86943,444897.952,87043,444797.952,62,72,82,0.41,28.8879440043986,0.823784722222222,11.1803398874989,0.112142360587604,0.835,83.5,2,99.0435152506787,0.721461845075157,82,1.03763036670799,0,-1.01996515900828,-1.90066921710968,1.14294376591146
+7264,86943,444797.952,87043,444697.952,63,72,49.25,0.24625,25.9786106415776,0.663197379543533,10,0.107645609397441,1,100,1,100,NA,100,8.8528987789154,0,-2.31965362032255,-2.64337754249573,0.590356977054331
+7265,86943,444697.952,87043,444597.952,64,72,4.5,0.045,12.2211399369553,0.555555555555556,NA,0.0986004234664142,1,100,1,100,NA,100,38.6210361719131,0,-2.75435085594654,-2.89875292778015,0.196189847663721
+7266,86943,444597.952,87043,444497.952,65,72,80.25,0.8025,37.7665800623446,0.807372793354102,NA,0.0564626643757947,0.5425,54.25,1,98.1174291231355,0.826867932694909,54.25,0.986830118065056,0,-2.51589400569598,-2.86974048614502,0.619776233807135
+7267,86943,444497.952,87043,444397.952,66,72,46.75,0.4675,33.8286115254349,0.835115864527629,NA,0.0669239767987165,0.79,79,1,99.3416426267051,0.848194311281559,79,16.4239217721963,0,-2.16855275630951,-2.81561398506165,0.68762844441634
+7268,86943,444397.952,87043,444297.952,67,72,37,0.37,38.4436771561252,0.753378378378378,NA,0.106552194601099,0.73,73,1,99.1030975159931,0.898805909734871,73,19.6666382698164,0,-2.25387355685234,-2.85227799415588,0.588571481801904
+7269,86943,444297.952,87043,444197.952,68,72,49,0.49,29.5842865212616,0.897108843537415,NA,0.1378257818159,0.725,72.5,1,99.081892426161,0.933277731442869,72.5,18.6313720308501,0,-2.5534438987573,-2.99189019203186,0.481633854948278
+7270,86943,444197.952,87043,444097.952,69,72,0,NA,NA,NA,NA,0.0705653907498345,0.3325,33.25,8,87.5311656028769,0.758566254991178,24,62.4629798544977,25,-2.82849185168743,-3.06363821029663,0.344003137349462
+7271,86943,444097.952,87043,443997.952,70,72,0.25,0.0025,0,0,NA,0.0575502888578922,0.795,79.5,1,99.3602931148206,0.764227642276423,79.5,50.5380505855728,0,-2.74894328912099,-3.02400541305542,0.363016094972694
+7272,86943,443997.952,87043,443897.952,71,72,10.75,0.0358333333333333,9.42238328711483,0.283625730994152,10,0.0594719745125622,0.8675,86.75,1,99.6123355042629,0.689369535204786,86.75,32.0550519245159,0,-2.62400121986866,-2.89873003959656,0.26948537770129
+7273,86943,443897.952,87043,443797.952,72,72,24,0.048,9.59227185962982,0.313753387533875,16.7082039324994,0.00306747927289507,0.1575,15.75,7,77.9071969967041,0.708659293229026,7.75,6.02703179253472,0,-2.54672727982203,-2.71387767791748,0.221750624191689
+7274,86943,443797.952,87043,443697.952,73,72,23.5,0.0391666666666667,5.07652776806978,0.169859514687101,11.7741585037433,-0.0166755812668634,0.045,4.5,3,64.2603802562984,0.728524335854179,2.5,3.72617043389214,0,-2.66017435491085,-2.75345039367676,0.138209106476709
+7275,86943,443697.952,87043,443597.952,74,72,25.25,0.0315625,7.64013492972918,0.255147456709957,10,-0.00773681781911364,0.135,13.5,1,90.9386564749522,0.850829759462987,13.5,0.740740740740741,0,-2.86793790260951,-2.99946570396423,0.182091433632539
+7276,86943,443597.952,87043,443497.952,75,72,46.75,0.116875,15.3166322273387,0.343892720131531,10,0.0292224962407454,0.4325,43.25,3,96.0819538519934,0.90057033957991,42.25,0.936826981561032,0,-3.12222044169903,-3.25582337379456,0.150323346420809
+7277,86943,443497.952,87043,443397.952,76,72,65.75,0.32875,16.3578921623536,0.438295165394402,10,0.046174380966404,0.5825,58.25,1,98.3671391359956,0.922912795099456,58.25,0.88259635565107,0,-3.19314591089884,-3.25142526626587,0.081928119846603
+7278,86943,443397.952,87043,443297.952,77,72,44.25,0.110625,13.6302410295495,0.384308510638298,10,-0.00266588524395047,0.155,15.5,2,89.3164840553575,0.868507560815253,14.25,2.10250546855311,0,-3.22265090545019,-3.31039357185364,0.0936980562203595
+7279,86943,443297.952,87043,443197.952,78,72,7.75,0.0775,18.0180657231727,0.553763440860215,NA,-0.0264070722514498,0.0075,0.75,1,44.4894453484604,1,0.75,68.1192067464193,66.7083206176758,-3.25665999948978,-3.33334803581238,0.109256501505634
+7280,86943,443197.952,87043,443097.952,79,72,0.25,0.0025,0,0,NA,-0.0767650888026401,0.005,0.5,1,30.8308651382582,1,0.5,42.5,40,-3.23055712381999,-3.31949925422668,0.106718377935984
+7281,86943,443097.952,87043,442997.952,80,72,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,25.4950975679639,-0.14938077381812,0,0,0,NA,NA,0,NA,NA,-3.15337018668652,-3.25091433525085,0.100627802655808
+7282,86943,442997.952,87043,442897.952,81,72,1,0.005,2.5,0.166666666666667,20.6155281280883,-0.0987654687618487,0,0,0,NA,NA,0,NA,NA,-3.09203443924586,-3.16637682914734,0.0819539600320108
+7283,86943,442897.952,87043,442797.952,82,72,0,NA,NA,NA,NA,0.0432967444346059,0.42,42,2,96.3910333648369,0.755283648498331,40.75,65.5981604258219,40,-3.06894959509373,-3.10255813598633,0.0373443234864907
+7284,86943,442797.952,87043,442697.952,83,72,1,0.0025,0,0,17.3857989066361,0.0587230934901163,0.64,64,2,96.4365068214756,0.890046296296296,51,35.7751824110746,5,-3.08097438017527,-3.12083888053894,0.0385008569573944
+7285,86943,442697.952,87043,442597.952,84,72,1.25,0.003125,0.883883476483184,0.0208333333333333,14.6040481324094,0.023159097194075,0.245,24.5,1,94.6299732152399,0.954846478025286,24.5,41.1304123936867,21.2132034301758,-3.10639947652817,-3.13687229156494,0.0378912945233146
+7286,86943,442597.952,87043,442497.952,85,72,1.5,0.00375,1.76776695296637,0.0416666666666667,20.6963271678693,-0.0683461893172353,0,0,0,NA,NA,0,NA,NA,-3.05243555704753,-3.11143565177917,0.0625827038471438
+7287,86943,442497.952,87043,442397.952,86,72,0.25,0.0025,0,0,NA,-0.043750380150741,0.2325,23.25,1,94.3478768975745,0.95290608688827,23.25,20.7995441600841,5,-3.02319490909576,-3.05164361000061,0.0307416925903155
+7288,86943,442397.952,87043,442297.952,87,72,39.5,0.0359090909090909,5.24857404699439,0.109536541889483,12.7583600069901,0.0741104287921917,0.6925,69.25,2,98.7641862431507,0.743589743589743,69,4.39587501498336,0,-2.9372157851855,-3.00559234619141,0.121223786942784
+7289,86943,442297.952,87043,442197.952,88,72,49.5,0.055,4.87225622625182,0.14344262295082,12.8640969227373,0.0339721057249699,0.255,25.5,2,93.7829736167953,0.926651263431987,25,0.784313725490196,0,-2.63573355972767,-2.85991168022156,0.231800862395104
+7290,86943,442197.952,87043,442097.952,89,72,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.0867481427026723,0,0,0,NA,NA,0,NA,NA,-2.35022862752279,-2.3765594959259,0.0728531715822045
+7291,86943,442097.952,87043,441997.952,90,72,0,NA,NA,NA,NA,-0.177409797552973,0,0,0,NA,NA,0,NA,NA,-2.38791205485662,-2.52333974838257,0.141750936162201
+7292,86943,441997.952,87043,441897.952,91,72,0.25,0.0025,0,0,NA,-0.18224695449695,0,0,0,NA,NA,0,NA,NA,-2.5001684576273,-2.56217765808105,0.123689331126115
+7293,86943,441897.952,87043,441797.952,92,72,3.75,0.01875,8.1733510996927,0.160714285714286,69.462219947249,-0.150043425629847,0,0,0,NA,NA,0,NA,NA,-2.44836481412252,-2.5405867099762,0.158635763810828
+7294,86943,441797.952,87043,441697.952,93,72,2.75,0.01375,3.71678288208163,0.233333333333333,99.247166206396,-0.0914477519369393,0,0,0,NA,NA,0,NA,NA,-2.1989062577486,-2.33804774284363,0.225990505959584
+7295,86943,441697.952,87043,441597.952,94,72,54.25,0.180833333333333,13.7361598709612,0.341679707876891,11.1803398874989,0.000262341712896159,0.215,21.5,1,93.912339662796,0.900087423504434,21.5,0.63953488372093,0,-1.79820337891579,-2.07121229171753,0.545888690493522
+7296,86943,441597.952,87043,441497.952,95,72,49.75,0.04975,5.85554413034255,0.182896849697217,12.9259205416818,-0.0195659500025795,0.1625,16.25,1,92.2068700432412,0.936600184916127,16.25,1,0,-0.826370779424906,-1.72759461402893,0.803338133890331
+7297,86943,441497.952,87043,441397.952,96,72,14.5,0.03625,6.58986087397163,0.416666666666667,44.3896844077129,-0.0239569380062267,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-0.57946755643934,-1.51232826709747,0.841020265478968
+7298,86943,441397.952,87043,441297.952,97,72,20.25,0.0289285714285714,6.773054017514,0.33843225172566,17.5433023555975,-0.0318231170281251,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,1.66666666666667,0,-1.22098774556071,-2.12055063247681,0.92771867809984
+7299,86943,441297.952,87043,441197.952,98,72,58.25,0.0970833333333333,7.20571552682301,0.29096803040465,10.3934466291663,-0.0133157445082907,0.0725,7.25,1,85.7162801918893,0.885301370648621,7.25,0,0,-1.7199971973896,-2.19963312149048,0.558844591560425
+7300,86943,441197.952,87043,441097.952,99,72,74.7368421052632,0.355,29.5408386148451,0.745486217068457,11.1803398874989,0.0119309819487353,0.1975,19.75,4,87.1584528847952,0.866488651535381,16.25,1.13924050632911,0,-1.71308535337448,-2.07824373245239,0.44117610633027
+7301,87043,451097.952,87143,450997.952,0,73,7.25,0.0120833333333333,5.75037566500935,0.148148148148148,27.8092011271502,0.00822999537053875,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,3.41421356201172,0,-2.86737910906474,-3.01843619346619,0.219222665987168
+7302,87043,450997.952,87143,450897.952,1,73,23.25,0.0465,8.97384923746357,0.328251748251748,13.4471705284278,0.00776140993335332,0.07,7,2,83.0083823829045,0.83273596176822,6.75,2.14285714285714,0,-3.14555591344833,-3.32784748077393,0.218229222651513
+7303,87043,450897.952,87143,450797.952,2,73,26.25,0.0525,8.46843812807013,0.22184265010352,11.9442719099992,-0.0020285392159235,0.02,2,1,68.0470115164975,0.897959183673469,2,1.875,0,-3.3626946873135,-3.44628596305847,0.131607516213632
+7304,87043,450797.952,87143,450697.952,3,73,14,0.028,5.6727831009237,0.170138888888889,11.634413615168,0.00514011145580184,0.05,5,2,73.470578753065,0.694397283531409,3.5,5.03389072418213,0,-3.47029819091161,-3.53541016578674,0.0976705634886428
+7305,87043,450697.952,87143,450597.952,4,73,4.5,0.00409090909090909,1.7232374498117,0.053030303030303,20.0278099157333,0.00380888302430321,0.0225,2.25,2,56.58687201489,0.658994032395567,1.5,17.7118379804823,11.1803398132324,-3.59403663211399,-3.63775420188904,0.0936680653837403
+7306,87043,450597.952,87143,450497.952,5,73,4.5,0.00409090909090909,0.706776480775785,0.0772727272727273,11.4960308475729,0.029424820950062,0.3,30,3,92.0594905502514,0.90170380078637,27,28.1948487122854,0,-3.42327765623728,-3.61244797706604,0.378446659304522
+7307,87043,450497.952,87143,450397.952,6,73,1,0.005,2.15773025989788,0.0833333333333333,14.142135623731,0.0475185323554615,0.6375,63.75,2,97.127508636135,0.896118886163613,59.75,59.3122385735605,11.1803398132324,-2.91870503955417,-3.46309804916382,0.710399786438087
+7308,87043,450397.952,87143,450297.952,7,73,0,NA,NA,NA,NA,-0.000853244524187176,0.005,0.5,1,30.8308651382582,1,0.5,101.789680480957,100.623054504395,-3.34147274494171,-3.86156797409058,0.647298574261458
+7309,87043,450297.952,87143,450197.952,8,73,44.5,0.445,31.6755085447806,0.783707865168539,NA,-0.0245111020976037,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,10.7609127892388,0,-4.06984217961629,-4.2885422706604,0.351522131980783
+7310,87043,450197.952,87143,450097.952,9,73,5.5,0.055,9.72774520912698,0.689393939393939,NA,-0.0300478430779003,0.0975,9.75,2,86.3201550647629,0.931813339015555,9.5,13.966098345243,0,-4.37769905726115,-4.43255567550659,0.124093731583713
+7311,87043,450097.952,87143,449997.952,10,73,19.5,0.0325,4.42754265168244,0.142018779342723,12.3215759691358,0.0382787012826884,0.625,62.5,1,98.6057312417508,0.811965811965812,62.5,8.17188725280762,0,-4.04995119571686,-4.40351104736328,0.651112553010191
+7312,87043,449997.952,87143,449897.952,11,73,92.75,0.46375,18.6670217840406,0.450900900900901,11.1803398874989,0.0804089061077684,0.9925,99.25,1,99.9801514397,0.292661361626876,99.25,0.370456090201659,0,-2.65141108300951,-3.41979598999023,0.733581460464108
+7313,87043,449897.952,87143,449797.952,12,73,94,0.94,37.852044217005,0.898049645390071,NA,0.0623198740367661,0.555,55.5,2,96.2462375682795,0.777452097921077,45.5,0.315315315315315,0,-2.41997973124186,-2.72474837303162,0.501440745787613
+7314,87043,449797.952,87143,449697.952,13,73,33,0.04125,7.90211513207966,0.244649250312201,14.4153094389037,0.0689267353872856,0.6425,64.25,2,95.96640438442,0.779015163630548,36.25,7.60207984419648,0,-2.10111542542775,-2.998530626297,1.24614539251311
+7315,87043,449697.952,87143,449597.952,14,73,23.75,0.2375,23.6693199844927,0.685964912280702,NA,0.0074577957168367,0.1575,15.75,2,86.8283066704493,0.730240086323172,9.5,3.12013559492808,0,-2.90432230383158,-4.71511125564575,2.01631835379964
+7316,87043,449597.952,87143,449497.952,15,73,0,NA,NA,NA,NA,-0.0429646349124232,0,0,0,NA,NA,0,NA,NA,-4.83143658108181,-4.97724676132202,0.269964251700609
+7317,87043,449497.952,87143,449397.952,16,73,0,NA,NA,NA,NA,0.0332697385397114,0.27,27,1,95.1342058036908,0.908675799086758,27,87.3351948349564,41.2310562133789,-5.01424996058146,-5.10783100128174,0.122917997239481
+7318,87043,449397.952,87143,449297.952,17,73,0,NA,NA,NA,NA,-0.0485543280636193,0,0,0,NA,NA,0,NA,NA,-5.09846221076118,-5.14044332504272,0.0767317240450823
+7319,87043,449297.952,87143,449197.952,18,73,0,NA,NA,NA,NA,-0.0559275050554425,0,0,0,NA,NA,0,NA,NA,-5.11858030160268,-5.14089727401733,0.0394256809506002
+7320,87043,449197.952,87143,449097.952,19,73,0,NA,NA,NA,NA,-0.0625209636290674,0,0,0,NA,NA,0,NA,NA,-5.12030167049832,-5.12990283966064,0.0228865851620559
+7321,87043,449097.952,87143,448997.952,20,73,0,NA,NA,NA,NA,-0.040381965241977,0.015,1.5,1,62.2896536353828,1,1.5,33.132080078125,30,-5.14795552359687,-5.16967630386353,0.0302616377492944
+7322,87043,448997.952,87143,448897.952,21,73,2,0.005,2.32311825006568,0.0625,30.8996963465179,-0.159075926830992,0,0,0,NA,NA,0,NA,NA,-5.19200694561005,-5.21581745147705,0.0283180085383684
+7323,87043,448897.952,87143,448797.952,22,73,26.5,0.033125,5.79143122233534,0.226980452674897,11.3306188778075,-0.0551903780274733,0.1125,11.25,4,85.2512394579843,0.733135656041512,10.25,2.31426968044705,0,-5.21508222156101,-5.21940565109253,0.0159654772735336
+7324,87043,448797.952,87143,448697.952,23,73,32.5,0.040625,9.52487758037218,0.380590347970535,13.8306188778075,0.00580501296168222,0.15,15,2,86.0017794407233,0.841628959276018,8.5,4.46248137156169,0,-5.16331799825033,-5.21128177642822,0.0746586018664883
+7325,87043,448697.952,87143,448597.952,24,73,1.5,0.005,2.27182017326525,0.111111111111111,72.0589734361189,0.0746114392601885,0.7625,76.25,3,98.5382547855331,0.772997711670481,75,30.0213629925837,0,-5.00052028232151,-5.08781766891479,0.175392407715877
+7326,87043,448597.952,87143,448497.952,25,73,24.5,0.049,7.9079280549144,0.196481481481481,24.7575192407856,0.0639921666923692,0.555,55.5,2,95.5393638873326,0.815448081202844,36.75,12.2427708050152,0,-4.34274021784465,-4.84274339675903,0.873079052397832
+7327,87043,448497.952,87143,448397.952,26,73,3,0.015,4.00352745590517,0.257575757575758,61.8465843842649,-0.0680842633004067,0,0,0,NA,NA,0,NA,NA,-2.48636054992676,-3.03191757202148,0.709565016445301
+7328,87043,448397.952,87143,448297.952,27,73,0,NA,NA,NA,NA,-0.0823493903037161,0,0,0,NA,NA,0,NA,NA,-1.9081870118777,-2.0713574886322,0.158180068672481
+7329,87043,448297.952,87143,448197.952,28,73,0.75,0.0075,4.31546051979576,0.166666666666667,NA,-0.066750759522547,0,0,0,NA,NA,0,NA,NA,-1.78718468878004,-1.81692576408386,0.0443084368918023
+7330,87043,448197.952,87143,448097.952,29,73,15,0.0375,9.04118615625253,0.161508704061896,12.3020240662047,-0.0160906083538066,0.005,0.5,1,30.8308651382582,1,0.5,8.5355339050293,7.07106781005859,-1.77051216363907,-1.82071375846863,0.068697598511874
+7331,87043,448097.952,87143,447997.952,30,73,11.25,0.1125,30.4798341122858,0.318518518518518,NA,0.00108598241138679,0.2975,29.75,1,95.613700031282,0.894556478186371,29.75,25.8858191866835,5,-1.67459287908342,-1.74571406841278,0.0988952815403661
+7332,87043,447997.952,87143,447897.952,31,73,2.25,0.0225,8.25247458604403,0.351851851851852,NA,-0.0219830616297259,0.05,5,2,71.5859661614246,0.762308998302207,3.25,59.4896709442139,20.6155281066895,-1.57541902860006,-1.63151252269745,0.0794744590953302
+7333,87043,447897.952,87143,447797.952,32,73,11.5,0.0383333333333333,8.1546741363897,0.162878787878788,10,-0.0292482012524852,0,0,0,NA,NA,0,NA,NA,-1.46030194560687,-1.54398787021637,0.123176793842494
+7334,87043,447797.952,87143,447697.952,33,73,4.75,0.0158333333333333,4.66600103466102,0.322751322751323,21.0947570824873,-0.048079514127312,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,9.55236721038818,5,-1.23772039678362,-1.42291748523712,0.301111686263421
+7335,87043,447697.952,87143,447597.952,34,73,0,NA,NA,NA,NA,-0.135389661798254,0,0,0,NA,NA,0,NA,NA,-0.936188747485479,-1.23236989974976,0.369512888421049
+7336,87043,447597.952,87143,447497.952,35,73,4.5,0.009,2.89825656871854,0.127272727272727,14.3245553203368,-0.039483091706943,0,0,0,NA,NA,0,NA,NA,-1.34862071937985,-1.48761379718781,0.277761664542205
+7337,87043,447497.952,87143,447397.952,36,73,37,0.074,7.38856714736453,0.2125,10.7082039324994,0.00364613602003374,0.2,20,2,92.0085962979016,0.938380281690141,19.5,7.39164292812347,0,-1.51584852735202,-1.55363893508911,0.0871628035580902
+7338,87043,447397.952,87143,447297.952,37,73,8.75,0.021875,7.19402481053215,0.328373015873016,33.0125345231592,0.00870372198809491,0.09,9,4,76.3087819925708,0.688644688644689,6,5.28544441858927,0,-1.44474895795186,-1.53445982933044,0.139721938972101
+7339,87043,447297.952,87143,447197.952,38,73,6.5,0.0108333333333333,3.36659069715343,0.155864197530864,29.0237993647402,0.0348458154293985,0.235,23.5,3,89.8259850397385,0.867724867724868,17.75,7.6825388644604,0,-1.33183128635089,-1.41781961917877,0.110271713995596
+7340,87043,447197.952,87143,447097.952,39,73,6,0.00428571428571429,1.2551671939953,0.0944444444444444,13.6143211926816,0.00540986333277033,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859,-1.37337153487735,-1.42367827892303,0.0889294747845862
+7341,87043,447097.952,87143,446997.952,40,73,13.5,0.0122727272727273,3.68086105247134,0.133874458874459,10.8837599590905,0.00319253719146218,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,3.84257874122033,0,-1.55517756938934,-1.69610857963562,0.14741720400641
+7342,87043,446997.952,87143,446897.952,41,73,8,0.01,2.28127271364177,0.148574561403509,16.9417583374107,-0.0030177939890018,0.0475,4.75,5,53.1019165670108,0.601773916191511,1.25,12.189868927002,0,-1.75681641366747,-1.90475344657898,0.21618737289193
+7343,87043,446897.952,87143,446797.952,42,73,18.25,0.0228125,5.59583887822748,0.338114595431669,12.6435344973657,0.000274595480332209,0.075,7.5,1,86.0448225436784,0.889685603971318,7.5,9.45420767466227,0,-1.92588746547699,-2.05175375938416,0.184309274285171
+7344,87043,446797.952,87143,446697.952,43,73,24.5,0.030625,5.54300596388801,0.255365992249795,20.5525180805632,0.00114113104718854,0.095,9.5,3,78.710289236605,0.736911339121284,6.25,3.26016892884907,0,-2.02830323908064,-2.09635162353516,0.113974583807082
+7345,87043,446697.952,87143,446597.952,44,73,50.25,0.08375,8.16553551387886,0.250581166272656,13.7080499244837,0.0356815033041494,0.33,33,2,93.5642935211733,0.882331083173345,29.5,0.7131979971221,0,-2.0574174589581,-2.12526297569275,0.118158345566416
+7346,87043,446597.952,87143,446497.952,45,73,22,0.0244444444444444,4.93625899757424,0.211198088193072,14.2089781849554,0.000199167318023683,0.065,6.5,3,70.4262305954993,0.713055954088953,3,3.66624905512883,0,-2.070869465669,-2.20453000068665,0.180108212553542
+7347,87043,446497.952,87143,446397.952,46,73,40,0.08,6.33266089091585,0.185591397849462,11.634413615168,-0.00198338164208963,0.0475,4.75,3,67.0748808032317,0.710381029957462,3,2.80270566438374,0,-2.18200725979275,-2.31244611740112,0.192531386060953
+7348,87043,446397.952,87143,446297.952,47,73,3,0.00272727272727273,0.227272727272727,0.0151515151515152,16.3209998705851,0.019022854271534,0.095,9.5,4,75.1314761297475,0.771989827238446,6,20.1213565123709,0,-2.27008024851481,-2.34506416320801,0.131912746163455
+7349,87043,446297.952,87143,446197.952,48,73,3.25,0.00361111111111111,0.925925925925926,0.0617283950617284,17.4382973339299,-0.0131289787558126,0,0,0,NA,NA,0,NA,NA,-2.26382067468431,-2.32212853431702,0.0949192556195664
+7350,87043,446197.952,87143,446097.952,49,73,11.75,0.01175,2.6379883210804,0.145206093189964,16.1273309580688,-0.0107759836082914,0.005,0.5,1,30.8308651382582,1,0.5,23.0553131103516,20.6155281066895,-2.29743073383967,-2.37627077102661,0.0953139170809304
+7351,87043,446097.952,87143,445997.952,50,73,53.5,0.066875,6.78969273184609,0.271337441579979,13.0748730630962,-0.032056051212121,0.02,2,1,68.0470115164975,0.897959183673469,2,0,0,-2.37368030018277,-2.43110632896423,0.0867860099887449
+7352,87043,445997.952,87143,445897.952,51,73,35.25,0.0391666666666667,7.52077659371247,0.250287598204265,10.853683920692,-0.0168434381743282,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,1.42857142857143,0,-2.38506229718526,-2.44114756584167,0.105568389128368
+7353,87043,445897.952,87143,445797.952,52,73,11.75,0.00979166666666667,3.26911597740966,0.191358024691358,13.7839933931649,-0.0140920150485181,0,0,0,NA,NA,0,NA,NA,-2.2870651351081,-2.38229537010193,0.151998737940737
+7354,87043,445797.952,87143,445697.952,53,73,20,0.05,15.3725939982254,0.331829573934837,10,-0.0172512184745756,0,0,0,NA,NA,0,NA,NA,-2.06567540764809,-2.2000424861908,0.243330904414865
+7355,87043,445697.952,87143,445597.952,54,73,9.75,0.0195,6.93917504984815,0.227536231884058,13.4721359549996,-0.0201679640098519,0,0,0,NA,NA,0,NA,NA,-1.75987977451748,-2.11780691146851,0.584555169927337
+7356,87043,445597.952,87143,445497.952,55,73,17.5,0.0875,13.0629802397995,0.466911764705882,21.2132034355964,-0.00121155579637161,0.1175,11.75,1,89.9089482633795,0.915014164305949,11.75,63.965141539878,50.9901962280273,-1.90480820337931,-2.30261254310608,0.606544193909675
+7357,87043,445497.952,87143,445397.952,56,73,10.25,0.0341666666666667,11.2358688378594,0.460555555555556,23.3333333333333,0.0113674803742106,0.0325,3.25,3,62.7977145286176,0.655469422911283,2.5,57.9278831481934,0,-2.43237566947937,-2.60959219932556,0.317750119340916
+7358,87043,445397.952,87143,445297.952,57,73,21.25,0.053125,12.88362556511,0.365726521976522,11.0355339059327,-0.0297655714799294,0.1825,18.25,2,88.033564289871,0.847094801223242,13.75,2.26514163082593,0,-2.73922703001234,-2.85184049606323,0.141907432439412
+7359,87043,445297.952,87143,445197.952,58,73,0,NA,NA,NA,NA,-0.129918094165623,0,0,0,NA,NA,0,NA,NA,-2.83483016490936,-2.89656114578247,0.10900995441411
+7360,87043,445197.952,87143,445097.952,59,73,1.25,0.0125,4.2390073826009,0.433333333333333,NA,-0.00356536499413778,0.4375,43.75,1,97.3060110945426,0.972480220158239,43.75,29.8597008623396,0,-2.75119860967,-2.8464241027832,0.179426388310928
+7361,87043,445097.952,87143,444997.952,60,73,55,0.183333333333333,12.8216983204224,0.532150205761317,13.3333333333333,0.129553958255565,0.91,91,1,99.745869280411,0.774229962909209,91,6.15471029805613,0,-2.2522192299366,-2.58574342727661,0.44899832517472
+7362,87043,444997.952,87143,444897.952,61,73,84.75,0.8475,37.3918873725482,0.845624385447394,NA,0.0452752113209863,0.44,44,3,93.2099192704151,0.82967032967033,34.75,0.972802292216908,0,-1.40546298689312,-1.80192172527313,1.02624092541922
+7363,87043,444897.952,87143,444797.952,62,73,61.75,0.30875,28.6738011987578,0.715231481481481,18.0277563773199,0.137625587200746,0.9225,92.25,2,98.9561132533126,0.815404494900549,90.25,2.39990106184631,0,-0.922263749564687,-2.01971960067749,1.38863654848626
+7364,87043,444797.952,87143,444697.952,63,73,55,0.55,35.8921669177014,0.85,NA,0.116190777095035,1,100,1,100,NA,100,8.98795201301575,0,-1.42480353183217,-2.60444641113281,1.63975782372776
+7365,87043,444697.952,87143,444597.952,64,73,3.75,0.01875,5.48873519214092,0.518518518518519,109.658560997307,0.0948219865001738,1,100,1,100,NA,100,33.6228721046448,0,-2.80972452958425,-2.87686347961426,0.162353300510265
+7366,87043,444597.952,87143,444497.952,65,73,77.75,0.7775,36.0925220404223,0.862272240085745,NA,0.103780498743409,0.8025,80.25,2,98.3334417400012,0.757697288716214,77,2.09994140815141,0,-2.67141421635946,-2.85232758522034,0.39550953877088
+7367,87043,444497.952,87143,444397.952,66,73,15.5,0.155,22.4946619790016,0.731182795698925,NA,0.0919816805282608,0.96,96,1,99.8914698623176,0.656593406593408,96,33.1677321543296,0,-2.81005536185371,-2.88506627082825,0.200157506667308
+7368,87043,444397.952,87143,444297.952,67,73,43.75,0.4375,28.6655607392371,0.888571428571429,NA,0.112537843436148,0.6575,65.75,1,98.7723535160189,0.982233014021113,65.75,24.6931042544289,0,-2.93115264177322,-3.00255751609802,0.0986918223799502
+7369,87043,444297.952,87143,444197.952,68,73,22,0.22,25.2779591885213,0.808712121212121,NA,0.145887203826933,0.7375,73.75,1,99.1344998974781,0.97940797940798,73.75,37.1946056495279,0,-3.06888352500068,-3.12271022796631,0.11362834570444
+7370,87043,444197.952,87143,444097.952,69,73,0,NA,NA,NA,NA,0.0444259738503024,0.34,34,7,88.2887018235883,0.670087976539589,21.75,49.5186275173636,10,-3.16514579455058,-3.19425988197327,0.0761199761217143
+7371,87043,444097.952,87143,443997.952,70,73,0.25,0.0025,0,0,NA,0.0622332889866084,0.8825,88.25,1,99.6605653114489,0.898076188049433,88.25,46.4907318850077,0,-3.12848112318251,-3.1850438117981,0.108132644992775
+7372,87043,443997.952,87143,443897.952,71,73,0.25,0.0025,0,0,NA,0.0584288286417723,0.86,86,1,99.5877487787664,0.890109890109891,86,40.2561043029608,0,-2.9794201652209,-3.11378860473633,0.154707579189438
+7373,87043,443897.952,87143,443797.952,72,73,6.5,0.065,10.60227657826,0.717948717948718,NA,0.0134715068034348,0.375,37.5,3,91.2169476967778,0.831272727272727,26.25,33.1800592931112,0,-2.76860719256931,-2.86650848388672,0.153220994489061
+7374,87043,443797.952,87143,443697.952,73,73,37.75,0.0755,8.16711252828145,0.341806571961544,21.1869285744563,-0.0376010951113767,0.0275,2.75,2,61.9404366363445,0.725792630676949,2,0,0,-2.57747153441111,-2.69367432594299,0.200750598088614
+7375,87043,443697.952,87143,443597.952,74,73,17.5,0.04375,6.11175967437357,0.187189054726368,17.8077640640442,-0.0509205642182678,0,0,0,NA,NA,0,NA,NA,-2.5432034333547,-2.79347229003906,0.302372887118847
+7376,87043,443597.952,87143,443497.952,75,73,3.25,0.008125,3.75,0.229166666666667,10.5901699437495,-0.0357781688720024,0,0,0,NA,NA,0,NA,NA,-2.73603528738022,-3.01188611984253,0.346401811423829
+7377,87043,443497.952,87143,443397.952,76,73,8.25,0.0117857142857143,5.80539192285462,0.224969474969475,10,-0.0354657216618216,0,0,0,NA,NA,0,NA,NA,-2.90923696094089,-3.09323477745056,0.294431414845892
+7378,87043,443397.952,87143,443297.952,77,73,9,0.01,4.61234284308665,0.17636684303351,13.4701173617974,-0.0334074629377392,0.005,0.5,2,0,1,0.25,8.09016990661621,5,-2.9561574988895,-3.10229277610779,0.255820053757837
+7379,87043,443297.952,87143,443197.952,78,73,24.75,0.0353571428571429,9.42769191577019,0.281288156288156,14.4615794651681,-0.0298858518682391,0.03,3,4,46.5635624328195,0.393571861734384,1,2.08333333333333,0,-2.95366883277893,-3.11041045188904,0.233446361401287
+7380,87043,443197.952,87143,443097.952,79,73,29,0.0414285714285714,7.08675970947936,0.275550696469064,15.0115283573694,-0.0458284093213297,0,0,0,NA,NA,0,NA,NA,-3.00233040915595,-3.11697101593018,0.15474130357903
+7381,87043,443097.952,87143,442997.952,80,73,25,0.25,27.6781267198443,0.683333333333333,NA,-0.0977053532982245,0,0,0,NA,NA,0,NA,NA,-2.9771314462026,-3.05179405212402,0.0935454284050566
+7382,87043,442997.952,87143,442897.952,81,73,21,0.105,13.7099578491076,0.525641025641026,10,-0.100691466682474,0.0325,3.25,1,76.0684107249879,1,3.25,3.23623598538912,0,-2.95696494314406,-2.99541878700256,0.0734696846389466
+7383,87043,442897.952,87143,442797.952,82,73,0,NA,NA,NA,NA,0.0640130021877121,0.775,77.5,2,98.4428681958033,0.931506849315068,76.25,64.9773730001142,10,-3.05309178431829,-3.10668230056763,0.0762512142318379
+7384,87043,442797.952,87143,442697.952,83,73,0.5,0.005,2.5,0.166666666666667,NA,0.0513921923424641,0.5725,57.25,3,96.0595117989928,0.82469835791665,50,51.6255193068992,0,-3.10749954647488,-3.13782048225403,0.0872543823927691
+7385,87043,442697.952,87143,442597.952,84,73,17.5,0.0145833333333333,3.74857739185375,0.152493502274204,11.0068366104161,-0.00188166394173095,0.2475,24.75,2,92.9725593935659,0.850684982642129,23.25,5.07747854367651,0,-3.02528448899587,-3.10821413993835,0.114418534675781
+7386,87043,442597.952,87143,442497.952,85,73,4,0.00571428571428571,2.73729566002784,0.121428571428571,15.1350110002827,-0.11092743709567,0.0325,3.25,1,76.0684107249879,0.827734711455642,3.25,14.3654035421518,0,-2.97411733203464,-3.00424385070801,0.0587127631849784
+7387,87043,442497.952,87143,442397.952,86,73,26.75,0.02675,4.50167788842532,0.235638888888889,11.9787086646191,0.0463465834787348,0.6025,60.25,1,98.4825618273597,0.765199161425576,60.25,7.83183620975225,0,-3.01921075582504,-3.04826760292053,0.0602603889519656
+7388,87043,442397.952,87143,442297.952,87,73,76.5,0.3825,18.2509102137152,0.395901639344262,10,0.00384579344572558,0.085,8.5,2,79.8551624712248,0.843871975019516,5.25,3.7216376136331,0,-2.84889668888516,-2.97648811340332,0.203367309892377
+7389,87043,442297.952,87143,442197.952,88,73,10,0.0142857142857143,4.75231561033841,0.145502645502645,11.1803398874989,-0.0552125307641654,0,0,0,NA,NA,0,NA,NA,-2.47197429339091,-2.69012880325317,0.171253593713626
+7390,87043,442197.952,87143,442097.952,89,73,0,NA,NA,NA,NA,-0.150826001670212,0,0,0,NA,NA,0,NA,NA,-2.34984223047892,-2.39247488975525,0.0638489408008025
+7391,87043,442097.952,87143,441997.952,90,73,0,NA,NA,NA,NA,-0.176702736839652,0,0,0,NA,NA,0,NA,NA,-2.46790340211656,-2.5298216342926,0.0798626902414586
+7392,87043,441997.952,87143,441897.952,91,73,2.5,0.025,14.9437935437937,0.2,NA,-0.173061559377238,0,0,0,NA,NA,0,NA,NA,-2.49895916382472,-2.55193161964417,0.0604493294581715
+7393,87043,441897.952,87143,441797.952,92,73,6.25,0.0625,28.0663150862061,0.34,NA,-0.0876468778960407,0,0,0,NA,NA,0,NA,NA,-2.43534072240194,-2.48387861251831,0.0729355123145675
+7394,87043,441797.952,87143,441697.952,93,73,6.75,0.0225,5.00630259968647,0.39021164021164,53.1343550297018,-0.112105479712482,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,2,0,-2.30833546320597,-2.38887763023376,0.197617070472925
+7395,87043,441697.952,87143,441597.952,94,73,89.75,0.8975,37.6222670393949,0.888115134633241,NA,0.0410120920080226,0.465,46.5,4,91.9710248127423,0.706585524885895,29.75,0.349462365591398,0,-1.84419830640157,-1.98646903038025,0.330058446779807
+7396,87043,441597.952,87143,441497.952,95,73,55.5,0.185,13.012804580788,0.374108053007136,14.6985531827679,0.0055035349931677,0.145,14.5,4,84.3056130480851,0.754385964912281,10.75,1.41501841051825,0,-1.19025048116843,-1.68671238422394,0.480693469014568
+7397,87043,441497.952,87143,441397.952,96,73,30.75,0.03075,4.42734889774791,0.134757834757835,11.6713087738337,0.0301735857077892,0.3025,30.25,3,94.3825407381831,0.824046920821114,29.25,3.21731844815341,0,-0.572920872105492,-0.783226549625397,0.352337196638061
+7398,87043,441397.952,87143,441297.952,97,73,26.5,0.0441666666666667,8.33322603371843,0.304597701149425,13.9235032770828,-0.0124451053782832,0.08,8,4,72.8321840005809,0.686454849498328,4.75,3.29235434532166,0,-0.176420424884176,-0.65676474571228,0.365501678967263
+7399,87043,441297.952,87143,441197.952,98,73,47,0.0783333333333333,8.53507898373389,0.317915935805157,11.8018980501403,-0.0304921213566558,0.045,4.5,3,70.1539628083604,0.767306573589296,3.75,4.78962241278754,0,-0.697055234263341,-1.10548913478851,0.711588589786322
+7400,87043,441197.952,87143,441097.952,99,73,69.4736842105263,0.22,19.7493293464989,0.578084397679395,12.67591879244,0.00333302855509828,0.135,13.5,4,82.8115410072353,0.751382932438312,10.5,3.54756560149016,0,-0.82810082534949,-1.24820494651794,0.701199288980542
+7401,87143,451097.952,87243,450997.952,0,74,7.25,0.00557692307692308,2.11399976010938,0.105982905982906,18.0132045865267,0.0124432618101855,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,8.7993782043457,0,-3.1574018796285,-3.33126926422119,0.196567885021079
+7402,87143,450997.952,87243,450897.952,1,74,10.75,0.0215,5.41743844051196,0.294444444444444,20.6364697094667,-0.00249320240855425,0.01,1,4,0,1,0.25,12.8567290306091,5,-3.37590542435646,-3.55026149749756,0.169306407076034
+7403,87143,450897.952,87243,450797.952,2,74,2.75,0.00458333333333333,1.36247447855363,0.037037037037037,20.474601072202,0.00598855936030304,0.005,0.5,2,0,1,0.25,13.5355339050293,7.07106781005859,-3.55438623825709,-3.68702149391174,0.140607566206018
+7404,87143,450797.952,87243,450697.952,3,74,14.75,0.01475,3.64206560962901,0.145694444444444,12.1612611101042,0.00246019854513293,0,0,0,NA,NA,0,NA,NA,-3.67634253203869,-3.82003974914551,0.145211124190479
+7405,87143,450697.952,87243,450597.952,4,74,19.75,0.049375,12.1595952882164,0.28697599729547,12.0710678118655,-0.0052788951272214,0,0,0,NA,NA,0,NA,NA,-3.75799868504206,-3.85461211204529,0.119474230247326
+7406,87143,450597.952,87243,450497.952,5,74,10.5,0.00875,3.50646911425392,0.197304894179894,17.1209415235386,0.0112110682846105,0.07,7,3,72.6590391619517,0.7610513739546,4,3.83548368726458,0,-3.7929682135582,-3.90769481658936,0.13909050985329
+7407,87143,450497.952,87243,450397.952,6,74,3,0.005,1.83938255608318,0.0972222222222222,14.6785985730909,0.00580310094879678,0.055,5.5,2,73.5771130839642,0.782135076252723,3,17.8307000940496,0,-3.85025904575984,-4.00115013122559,0.223012046519909
+7408,87143,450397.952,87243,450297.952,7,74,23,0.23,25.4096885382662,0.623188405797101,NA,-0.010162907996787,0,0,0,NA,NA,0,NA,NA,-4.02939009666443,-4.20080614089966,0.246240377383953
+7409,87143,450297.952,87243,450197.952,8,74,41.75,0.20875,16.3435208085014,0.42921686746988,11.1803398874989,0.039048820848293,0.38,38,1,96.7251883615388,0.930627818244884,38,24.4662462535657,0,-4.28241129716237,-4.3762354850769,0.1452838626045
+7410,87143,450197.952,87243,450097.952,9,74,2.25,0.0075,2.34459315588498,0.119047619047619,25.4556004987109,0.0416832821321646,0.45,45,2,95.1865228107505,0.863499863499863,39,22.3717591179742,0,-4.36347540219625,-4.45652151107788,0.200114912517702
+7411,87143,450097.952,87243,449997.952,10,74,61,0.203333333333333,10.9014077094206,0.283287419651056,12.4535599249993,0.108825123137794,0.925,92.5,1,99.7907868956838,0.733713742272944,92.5,3.23802786646663,0,-3.41969300806522,-4.29662179946899,0.94806006319463
+7412,87143,449997.952,87243,449897.952,11,74,67.75,0.6775,35.1369472886458,0.864083640836408,NA,0.0197395783513002,0.5825,58.25,1,98.3671391359956,0.928419024020924,58.25,0.784329966925756,0,-2.9340592622757,-5,1.29722266681413
+7413,87143,449897.952,87243,449797.952,12,74,54.25,0.5425,31.2381902890484,0.884792626728111,NA,-0.0341645210758361,0.2025,20.25,4,89.0723101520556,0.773598049460118,17.5,0.123456790123457,0,-3.94461925327778,-5,1.19117499401815
+7414,87143,449797.952,87243,449697.952,13,74,78.75,0.39375,25.221598215902,0.769584186409282,11.1803398874989,0.0786104982237157,0.82,82,1,99.4509723118502,0.901274457009513,82,1.20012076308088,0,-3.57792619864146,-4.18121099472046,0.677697358634926
+7415,87143,449697.952,87243,449597.952,14,74,12.5,0.125,19.1503637246957,0.69,NA,-0.0115100134454951,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,3.07692307692308,0,-4.31963874399662,-4.73548746109009,0.600475562562525
+7416,87143,449597.952,87243,449497.952,15,74,0,NA,NA,NA,NA,-0.0347229612181582,0,0,0,NA,NA,0,NA,NA,-4.86302693684896,-4.9965500831604,0.202442398262053
+7417,87143,449497.952,87243,449397.952,16,74,1,0.01,4.04508497187474,0.333333333333333,NA,-0.0754575456080056,0.0075,0.75,1,44.4894453484604,1,0.75,40.4672597249349,38.0788650512695,-5.08494308590889,-5.14649724960327,0.0881905008849907
+7418,87143,449397.952,87243,449297.952,17,74,0,NA,NA,NA,NA,-0.0709873787220568,0,0,0,NA,NA,0,NA,NA,-5.18043454488118,-5.21090316772461,0.0401963968129524
+7419,87143,449297.952,87243,449197.952,18,74,0,NA,NA,NA,NA,-0.0476554266130552,0,0,0,NA,NA,0,NA,NA,-5.19844490289688,-5.23703956604004,0.0443703198490682
+7420,87143,449197.952,87243,449097.952,19,74,0,NA,NA,NA,NA,-0.0363744801126813,0,0,0,NA,NA,0,NA,NA,-5.19842294851939,-5.24990653991699,0.0559225543272822
+7421,87143,449097.952,87243,448997.952,20,74,0,NA,NA,NA,NA,-0.100611615027301,0,0,0,NA,NA,0,NA,NA,-5.21779867013295,-5.2569522857666,0.0490984996323224
+7422,87143,448997.952,87243,448897.952,21,74,0.25,0.0025,0,0,NA,-0.163981280891312,0,0,0,NA,NA,0,NA,NA,-5.22696042060852,-5.25008249282837,0.0295165883865106
+7423,87143,448897.952,87243,448797.952,22,74,46,0.092,7.46866111103114,0.181647940074906,16.0153397218646,0.0194430646973342,0.1725,17.25,2,90.9844562274329,0.830216473995656,16.5,3.7106254135353,0,-5.16855931282043,-5.21682834625244,0.0637274745106696
+7424,87143,448797.952,87243,448697.952,23,74,15.75,0.02625,7.17929476006064,0.394510582010582,13.0693654216063,0.0477289927050151,0.4525,45.25,3,95.9648554105087,0.885503986914741,43.75,10.4742800359568,0,-5.03793257474899,-5.15696334838867,0.12157231498275
+7425,87143,448697.952,87243,448597.952,24,74,6.75,0.00964285714285714,4.39337970592533,0.185714285714286,13.2006449766034,0.0913656652951613,0.79,79,2,98.8394296642943,0.696388622563119,77.75,20.3378422773337,0,-4.78681155045827,-4.96396732330322,0.26427787269829
+7426,87143,448597.952,87243,448497.952,25,74,23.25,0.11625,16.4369335639839,0.449074074074074,25,0.020132459424276,0.255,25.5,2,94.1430420151807,0.926651263431987,25.25,4.59643962336522,0,-3.90330241620541,-4.65835762023926,0.871321231060477
+7427,87143,448497.952,87243,448397.952,26,74,0,NA,NA,NA,NA,-0.0717311695101671,0,0,0,NA,NA,0,NA,NA,-2.47819177309672,-2.84362196922302,0.548367271714967
+7428,87143,448397.952,87243,448297.952,27,74,0,NA,NA,NA,NA,-0.0827990726288408,0,0,0,NA,NA,0,NA,NA,-1.95571418106556,-2.10458111763,0.167613662280724
+7429,87143,448297.952,87243,448197.952,28,74,10,0.0166666666666667,5.85217536457597,0.121734892787524,12.4535599249993,-0.0283439271482348,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,7.75046920776367,0,-1.80719745159149,-1.89518821239471,0.0777061309571122
+7430,87143,448197.952,87243,448097.952,29,74,0,NA,NA,NA,NA,-0.0274776958554139,0,0,0,NA,NA,0,NA,NA,-1.68632493913174,-1.7910236120224,0.111691919259885
+7431,87143,448097.952,87243,447997.952,30,74,0,NA,NA,NA,NA,-0.0425369475353727,0,0,0,NA,NA,0,NA,NA,-1.49061518907547,-1.62105059623718,0.144245041673003
+7432,87143,447997.952,87243,447897.952,31,74,11.25,0.05625,12.8324168886004,0.178030303030303,15,-0.0170893804193702,0.01,1,1,52.6315789473684,1,1,4.26776695251465,0,-1.40561703840892,-1.53407192230225,0.17287181362367
+7433,87143,447897.952,87243,447797.952,32,74,18.5,0.185,32.0818951432033,0.40990990990991,NA,-0.0247901427408215,0.005,0.5,1,30.8308651382582,1,0.5,6.0355339050293,5,-1.30992298573256,-1.46169245243073,0.147852812656179
+7434,87143,447797.952,87243,447697.952,33,74,1,0.01,5.72061402817684,0.208333333333333,NA,-0.039138847051654,0,0,0,NA,NA,0,NA,NA,-1.05184557537238,-1.1881011724472,0.214974300822731
+7435,87143,447697.952,87243,447597.952,34,74,0,NA,NA,NA,NA,-0.0341654352314072,0,0,0,NA,NA,0,NA,NA,-0.835577391088009,-1.06927561759949,0.240005326626405
+7436,87143,447597.952,87243,447497.952,35,74,0,NA,NA,NA,NA,-0.0217372151511518,0,0,0,NA,NA,0,NA,NA,-1.01962302128474,-1.18005728721619,0.263649945737884
+7437,87143,447497.952,87243,447397.952,36,74,7.75,0.0110714285714286,3.24105298486317,0.154648526077098,22.878597676693,0.00443210245464797,0.0925,9.25,4,77.3561739494419,0.783227204985774,6.25,6.86133420789564,0,-1.42463368922472,-1.5673850774765,0.217031080908184
+7438,87143,447397.952,87243,447297.952,37,74,10.5,0.0105,3.63819018536732,0.138444444444444,14.7380164340659,0.0231424131282802,0.32,32,4,90.6493946150241,0.804342337793486,22,8.10137470066547,0,-1.5813034872214,-1.64379262924194,0.0799803283254356
+7439,87143,447297.952,87243,447197.952,38,74,9,0.009,3.01017072085694,0.218903318903319,13.8863495173727,0.0222086771030808,0.0925,9.25,7,64.5639366735883,0.54839001038703,3.5,6.61949889724319,0,-1.50513468682766,-1.63604080677032,0.121838197792146
+7440,87143,447197.952,87243,447097.952,39,74,11.75,0.0106818181818182,3.37715219393598,0.196789321789322,13.5289041230167,0.0215558110467828,0.0875,8.75,3,75.0466584391424,0.754369390647142,4.25,13.9970215933663,0,-1.41512831052144,-1.504319190979,0.0783940728044871
+7441,87143,447097.952,87243,446997.952,40,74,7,0.01,3.69405337080645,0.187301587301587,15.1288142053564,-0.0829453309049586,0,0,0,NA,NA,0,NA,NA,-1.30734629929066,-1.45085120201111,0.1646728830372
+7442,87143,446997.952,87243,446897.952,41,74,0.25,0.0025,0,0,NA,-0.1787541358409,0,0,0,NA,NA,0,NA,NA,-1.30920059482257,-1.54972147941589,0.264291701208273
+7443,87143,446897.952,87243,446797.952,42,74,14,0.0233333333333333,4.73848705165189,0.191292356185973,13.8742588672279,-0.0346422088015243,0.075,7.5,2,79.7582915733518,0.823496966354109,6.25,1.90236892700195,0,-1.67296804487705,-1.87497746944427,0.276302540892279
+7444,87143,446797.952,87243,446697.952,43,74,20.75,0.0296428571428571,5.33470187793199,0.265681144252573,11.1674382965485,-0.0141978538442709,0.0275,2.75,2,60.3322599403393,0.794344473007712,1.5,2.27272727272727,0,-1.98282743493716,-2.04338765144348,0.0854225142311629
+7445,87143,446697.952,87243,446597.952,44,74,12.75,0.00708333333333333,2.22292079351306,0.148676400759734,12.2602177863212,0.00883208725419536,0.155,15.5,2,89.9809017328171,0.846592154284462,14.75,20.6975888590659,0,-1.98524220784505,-2.04055118560791,0.0630895402040839
+7446,87143,446597.952,87243,446497.952,45,74,46.75,0.0667857142857143,6.07962078345784,0.210363336085879,11.7658113964283,-0.0030511394723726,0.0475,4.75,4,60.5305192572131,0.565571544936193,2.25,1.6879509373715,0,-1.87317072600126,-1.93434643745422,0.100535792952694
+7447,87143,446497.952,87243,446397.952,46,74,47,0.05875,7.13109764451854,0.265005827505828,13.0177669529664,0.0297994792561803,0.2875,28.75,4,88.6485193899949,0.757085020242915,14.25,2.71672839289126,0,-1.95866646369298,-2.06560039520264,0.154485760986129
+7448,87143,446397.952,87243,446297.952,47,74,16.75,0.0209375,4.99140885199496,0.22975768321513,11.6926274578121,0.00262651546145662,0.095,9.5,9,56.5502573576908,0.491361922301149,1.75,5.03185688821893,0,-2.14125835895538,-2.20184659957886,0.0773554324399001
+7449,87143,446297.952,87243,446197.952,48,74,5.75,0.00479166666666667,1.35310087063512,0.0458333333333333,14.2310914973017,-0.00851523322106004,0.0025,0.25,1,0,NA,0.25,7.07106781005859,7.07106781005859,-2.21114985148112,-2.24123620986938,0.0288741634751498
+7450,87143,446197.952,87243,446097.952,49,74,3.25,0.00541666666666667,1.93392125160858,0.125,24.6663671747467,-0.00827277366046474,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,3.80473785400391,0,-2.23410399258137,-2.25931143760681,0.0294774967197917
+7451,87143,446097.952,87243,445997.952,50,74,51.25,0.05125,7.41878769297706,0.24175799086758,10.7683155286228,-0.0042311325339233,0.0825,8.25,3,81.1446294331687,0.858714300131194,7.5,3.35198570020271,0,-2.22682229677836,-2.29741501808167,0.0973839224190027
+7452,87143,445997.952,87243,445897.952,51,74,12.75,0.0141666666666667,5.57119415673044,0.257741769547325,17.1354098581196,-0.0169734967344993,0.02,2,1,68.0470115164975,1,2,3.38388347625732,0,-2.11247618496418,-2.29141187667847,0.204235276792761
+7453,87143,445897.952,87243,445797.952,52,74,8.25,0.020625,9.94076038722067,0.218640350877193,10,-0.0161094269117075,0,0,0,NA,NA,0,NA,NA,-1.94990628957748,-2.1486644744873,0.208698035913147
+7454,87143,445797.952,87243,445697.952,53,74,0.5,0.005,2.5,0.166666666666667,NA,-0.013324287150017,0,0,0,NA,NA,0,NA,NA,-1.94061271101236,-2.06361222267151,0.145971526137158
+7455,87143,445697.952,87243,445597.952,54,74,16.25,0.01625,5.29604644213035,0.21020091020091,11.317206807584,0.00483219963420197,0.0275,2.75,3,52.3625639110009,0.588688946015424,1.5,7.5610970583829,0,-2.09885788957278,-2.22611474990845,0.17259855918098
+7456,87143,445597.952,87243,445497.952,55,74,17.75,0.0355,7.59518745796598,0.224453551912568,17.1803398874989,-0.0132852930707395,0,0,0,NA,NA,0,NA,NA,-2.3330667813619,-2.43506765365601,0.172476440967697
+7457,87143,445497.952,87243,445397.952,56,74,43.75,0.0875,12.4321898416481,0.418117316473481,13.5366310572456,-0.0073377728552714,0,0,0,NA,NA,0,NA,NA,-2.54432655870914,-2.61391544342041,0.0976477097880549
+7458,87143,445397.952,87243,445297.952,57,74,9.5,0.0475,12.5589374344227,0.373809523809524,22.3606797749979,-0.073980188423011,0.05,5,2,72.2201279721897,0.762308998302207,3.25,2.70710678100586,0,-2.61918860673904,-2.65852379798889,0.048110359899368
+7459,87143,445297.952,87243,445197.952,58,74,0,NA,NA,NA,NA,-0.15375785253942,0,0,0,NA,NA,0,NA,NA,-2.6057733297348,-2.71086454391479,0.10852729579734
+7460,87143,445197.952,87243,445097.952,59,74,0.25,0.0025,0,0,NA,0.0136743139808459,0.4925,49.25,2,95.4139281769884,0.886632026452527,42.25,43.4179869617908,11.1803398132324,-2.50408474604289,-2.68673181533813,0.236195173847346
+7461,87143,445097.952,87243,444997.952,60,74,69.25,0.6925,34.3711236706773,0.851985559566787,NA,0.13297999815084,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,3.51074960178002,0,-1.93854048103094,-2.49783873558044,0.8863178775848
+7462,87143,444997.952,87243,444897.952,61,74,79.5,0.795,36.255739126181,0.832285115303983,NA,0.00256268649543927,0.2575,25.75,4,88.5572374454835,0.781599781599782,16.75,2.0020699362153,0,-1.18733291576306,-1.8699449300766,0.994164767211856
+7463,87143,444897.952,87243,444797.952,62,74,75.75,0.37875,21.6874877478655,0.614018361581921,18.0277563773199,0.116167492419481,1,100,1,100,NA,100,1.41945436477661,0,-1.49027032405138,-1.92494881153107,0.610460764170811
+7464,87143,444797.952,87243,444697.952,63,74,93.5,0.935,37.097028742245,0.926470588235294,NA,0.13196350120008,0.9875,98.75,1,99.9667936270881,0.359999999999997,98.75,0.504973698869536,0,-1.89716373880704,-2.32818698883057,0.612116904415057
+7465,87143,444697.952,87243,444597.952,64,74,9,0.045,10.7339066552189,0.450520833333333,96.1769203083567,0.110425987169147,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,23.9521029192702,0,-2.58725143969059,-2.76744699478149,0.373645046723238
+7466,87143,444597.952,87243,444497.952,65,74,89.75,0.8975,36.354754755196,0.923862581244197,NA,0.0853526488883654,0.6475,64.75,3,97.6723205603632,0.824522921693354,62.75,0.434333462512631,0,-2.28022916118304,-2.6237518787384,0.43508467495967
+7467,87143,444497.952,87243,444397.952,66,74,1,0.0025,0,0,40.6174108429389,0.0929036222212017,0.915,91.5,1,99.7609644895861,0.796282149223326,91.5,28.5219174056757,0,-2.58379904429118,-2.84650945663452,0.345234911352823
+7468,87143,444397.952,87243,444297.952,67,74,15.5,0.155,17.1939922010978,0.809139784946237,NA,0.170991451242589,0.8575,85.75,1,99.5794816088838,0.967511371020143,85.75,32.1630196140389,0,-2.77962808310986,-2.9592547416687,0.173584418375908
+7469,87143,444297.952,87243,444197.952,68,74,2,0.02,7.96192579249098,0.395833333333333,NA,0.149781529270695,0.715,71.5,4,97.5998570087213,0.921737429074545,70,47.6461554107132,0,-2.95298461119334,-3.06895875930786,0.121095614207729
+7470,87143,444197.952,87243,444097.952,69,74,0,NA,NA,NA,NA,0.046987999342382,0.355,35.5,7,91.5373128544884,0.791293977340489,31.5,92.7676499863746,50.9901962280273,-3.07963907718658,-3.1672830581665,0.0892953249629155
+7471,87143,444097.952,87243,443997.952,70,74,0,NA,NA,NA,NA,0.070177514674142,1,100,1,100,NA,100,89.647359752655,43.0116271972656,-3.14968377351761,-3.17838191986084,0.0415805606289999
+7472,87143,443997.952,87243,443897.952,71,74,0,NA,NA,NA,NA,0.0664344957927824,0.9,90,1,99.7153023505818,0.809384164222874,90,63.1219971232944,25,-3.08874219655991,-3.16728734970093,0.114399429855433
+7473,87143,443897.952,87243,443797.952,72,74,7,0.035,9.91498695267565,0.472222222222222,10,0.0454337974732334,0.4875,48.75,2,97.4935935302006,0.784395634011589,48.5,28.893433487721,0,-2.80415628353755,-3.01257252693176,0.259041786673649
+7474,87143,443797.952,87243,443697.952,73,74,10.75,0.0134375,4.68764605380701,0.255217236467236,13.0568341007813,-0.0518901664536679,0.0025,0.25,1,0,NA,0.25,5,5,-2.41890978813171,-2.63088607788086,0.201233259407938
+7475,87143,443697.952,87243,443597.952,74,74,1.25,0.003125,0.625,0.0416666666666667,11.7479320470852,-0.0588630120898597,0,0,0,NA,NA,0,NA,NA,-2.34877667824427,-2.52667737007141,0.167820639879341
+7476,87143,443597.952,87243,443497.952,75,74,0.5,0.0025,0,0,20.6155281280883,-0.0226105902755535,0,0,0,NA,NA,0,NA,NA,-2.54204759001732,-2.80280256271362,0.235986918042123
+7477,87143,443497.952,87243,443397.952,76,74,0.75,0.0025,0,0,29.109592847547,-0.0109975060817669,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,16.4131164550781,10,-2.65404293934504,-2.80171012878418,0.177416990587576
+7478,87143,443397.952,87243,443297.952,77,74,0,NA,NA,NA,NA,0.00968845341078122,0,0,0,NA,NA,0,NA,NA,-2.6427875161171,-2.71003818511963,0.122219597498262
+7479,87143,443297.952,87243,443197.952,78,74,0.5,0.0025,0,0,20.6155281280883,0.00431332647232921,0.095,9.5,2,81.3904056933697,0.771989827238446,6,14.8723942606073,0,-2.71086816489697,-2.78361749649048,0.10042469841737
+7480,87143,443197.952,87243,443097.952,79,74,2.25,0.0075,3.33333333333333,0.222222222222222,11.1803398874989,-0.0109692516032374,0.05,5,1,81.7256002368443,0.864176570458404,5,19.4813824653626,5,-2.78045638402303,-2.89568471908569,0.121940992478669
+7481,87143,443097.952,87243,442997.952,80,74,8.25,0.01375,6.45662078476385,0.231766381766382,10,-0.0379773304496484,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-2.70161472260952,-2.89514780044556,0.230397728151605
+7482,87143,442997.952,87243,442897.952,81,74,21,0.0190909090909091,5.0560936224912,0.221671258034894,10.3219108784088,-0.00938419212850931,0.06,6,2,78.5083834316901,0.916013437849944,5.5,1.45833333333333,0,-2.65021195014318,-2.90036296844482,0.320632084218864
+7483,87143,442897.952,87243,442797.952,82,74,14.25,0.0285,8.84940727645694,0.231256850566313,10.7082039324994,0.00485350361646852,0.0925,9.25,5,71.1198292296279,0.710969606647699,5.75,7.1460099091401,0,-2.62079982459545,-2.97624540328979,0.487512462489612
+7484,87143,442797.952,87243,442697.952,83,74,25,0.05,8.45124508792116,0.356216931216931,11.6568542494924,0.0298930283296795,0.35,35,3,90.4134670364252,0.825721153846154,19,12.3256051063538,0,-2.58229390780131,-2.96739912033081,0.54614040572326
+7485,87143,442697.952,87243,442597.952,84,74,9,0.0128571428571429,3.2150770841307,0.22875044754744,18.9222946001489,-0.10359184525907,0.0025,0.25,1,0,NA,0.25,0,0,-2.6157765686512,-2.88485550880432,0.394350573617988
+7486,87143,442597.952,87243,442497.952,85,74,3.5,0.005,1.64508502942042,0.0873015873015873,13.4108741463175,0.0106673626383417,0.5,50,1,97.819928619089,0.902964959568733,50,20.286516046524,0,-2.85509955883026,-2.96806216239929,0.202287668760071
+7487,87143,442497.952,87243,442397.952,86,74,42,0.105,11.3527126603751,0.359352917423784,17.1103922572028,0.047469634226436,0.58,58,1,98.352293007383,0.92851644121852,58,5.64013444966283,0,-2.87076035141945,-2.99418711662292,0.206533757687965
+7488,87143,442397.952,87243,442297.952,87,74,36,0.12,17.2889396493813,0.467105263157895,10,-0.0230902987718946,0.025,2.5,1,71.9760246298065,1,2.5,0,0,-2.67258326212565,-2.86235332489014,0.230511650135904
+7489,87143,442297.952,87243,442197.952,88,74,0,NA,NA,NA,NA,-0.172369788615033,0,0,0,NA,NA,0,NA,NA,-2.45988866686821,-2.51342129707336,0.0898546265151998
+7490,87143,442197.952,87243,442097.952,89,74,0,NA,NA,NA,NA,-0.136850909045897,0,0,0,NA,NA,0,NA,NA,-2.41790219148,-2.53301501274109,0.11310933873125
+7491,87143,442097.952,87243,441997.952,90,74,1.5,0.0075,4.31546051979576,0.166666666666667,11.1803398874989,-0.195905834008008,0,0,0,NA,NA,0,NA,NA,-2.47647750377655,-2.66290259361267,0.164632838905196
+7492,87143,441997.952,87243,441897.952,91,74,2.75,0.006875,3.87419464606108,0.104166666666667,32.3698861368493,-0.0833727337885648,0.2075,20.75,1,93.7090252642431,0.931328998476362,20.75,26.638560513416,7.07106781005859,-2.60170261561871,-2.82017040252686,0.198499449652238
+7493,87143,441897.952,87243,441797.952,92,74,0,NA,NA,NA,NA,-0.0786908843937272,0.0425,4.25,2,70.4950705989394,0.74934725848564,2.75,46.8075424643124,28.2842712402344,-2.67009850343068,-2.8358142375946,0.184134096396855
+7494,87143,441797.952,87243,441697.952,93,74,28.75,0.14375,14.7621085711554,0.350146198830409,18.0277563773199,-0.0228367873156822,0.2275,22.75,2,89.9821100379787,0.872148307962763,17.75,1.61970926641108,0,-2.22353619337082,-2.72920393943787,0.534697016322124
+7495,87143,441697.952,87243,441597.952,94,74,66.5,0.16625,9.42074892257661,0.256997455470738,11.3306188778075,0.0336989508735678,0.445,44.5,2,96.6317230290731,0.835701963361538,43.25,1.16031280260408,0,-1.43639855583509,-1.858811378479,0.399069115292852
+7496,87143,441597.952,87243,441497.952,95,74,50.25,0.1675,13.8364933423762,0.410525321239607,10,-0.0173812272201758,0.0425,4.25,3,63.0477063358056,0.66579634464752,2.25,0.294117647058824,0,-0.974622126668692,-1.25186431407928,0.279906794619271
+7497,87143,441497.952,87243,441397.952,96,74,68.75,0.171875,12.8760619242294,0.380917639429313,12.00693909433,0.0489212223561844,0.4425,44.25,3,96.0289603053757,0.890292234061519,43,1.11339586333366,0,-0.682925671339035,-0.88929158449173,0.380680992963419
+7498,87143,441397.952,87243,441297.952,97,74,61,0.305,22.5380013696769,0.728409090909091,14.142135623731,0.00645888140203169,0.2075,20.75,3,86.0222819825565,0.83690637138136,10.75,1.21943618590573,0,-0.656313279177994,-1.17427718639374,0.543428047551492
+7499,87143,441297.952,87243,441197.952,98,74,22,0.044,8.763221707759,0.333333333333333,20.2000580163574,-0.00301342382314033,0.04,4,5,52.0972344972521,0.479166666666667,2,2.00444173812866,0,-0.0919510502717458,-0.851877272129059,0.615628746901471
+7500,87143,441197.952,87243,441097.952,99,74,83.1578947368421,0.79,35.5270558232671,0.858122362869198,NA,0.0504958887704015,0.5275,52.75,2,97.0398274971345,0.859626390238635,50.25,0.943801590616669,0,0.34379629016621,-0.0309226736426353,0.565942917867674
+7501,87243,451097.952,87343,450997.952,0,75,21.5,0.0238888888888889,4.60680884951598,0.214912280701754,14.5136732208323,-0.00126937079770869,0.015,1.5,3,30.8308651382582,0.419869470630892,0.5,6.99862130482992,0,-3.35558591948615,-3.47336411476135,0.164675863366976
+7502,87243,450997.952,87343,450897.952,1,75,21.5,0.05375,9.23161822418071,0.183506944444444,10.5901699437495,0.0039784230550238,0.0175,1.75,3,38.7468115328287,0.618320610687023,1,13.1164787837437,0,-3.57155003150304,-3.69078350067139,0.140362497296708
+7503,87243,450897.952,87343,450797.952,2,75,30.75,0.05125,8.91552311762043,0.337089401113791,10.1967233145832,-0.0012282946632331,0.03,3,2,64.9303102239094,0.636143117040631,2.25,1.66666666666667,0,-3.73718894852532,-3.81851696968079,0.116694620161024
+7504,87243,450797.952,87343,450697.952,3,75,18.75,0.046875,11.3282697630137,0.269711538461538,19.1972463996801,-0.00370428886535137,0.0025,0.25,1,0,NA,0.25,0,0,-3.86393636465073,-3.92616963386536,0.0828042816263701
+7505,87243,450697.952,87343,450597.952,4,75,39.25,0.0654166666666667,11.6588082265037,0.400257421885773,12.162701317181,-0.00158771962078845,0.1025,10.25,2,82.0997931642777,0.854668765895604,5.75,1.93029599073457,0,-3.91995228661431,-3.9421968460083,0.0480639794388997
+7506,87243,450597.952,87343,450497.952,5,75,39,0.0975,10.2579380044986,0.339002267573696,17.2886898685566,0.00186963334534084,0.0375,3.75,3,61.4288139205841,0.763872491145218,2,1.33333333333333,0,-3.92887628078461,-3.95232129096985,0.0384809473093536
+7507,87243,450497.952,87343,450397.952,6,75,17,0.02125,4.93056728197035,0.273958333333333,19.0969897999716,0.00639854307719361,0.09,9,3,79.9370559151996,0.743589743589744,7,9.09037356906467,0,-3.98724267217848,-4.02278280258179,0.0615070049340564
+7508,87243,450397.952,87343,450297.952,7,75,27,0.045,7.75648905419793,0.303579209461562,17.67591879244,-0.0171244089251786,0,0,0,NA,NA,0,NA,NA,-4.1376469930013,-4.21646070480347,0.0971884776747539
+7509,87243,450297.952,87343,450197.952,8,75,20,0.2,19.1672401088186,0.797916666666667,NA,0.0125768976482141,0.2125,21.25,3,86.566365938266,0.764532744665195,13.75,22.9325521581313,0,-4.28036244710286,-4.30665874481201,0.0476334043190716
+7510,87243,450197.952,87343,450097.952,9,75,35,0.07,10.0970630570408,0.328398692810458,14.5116656306737,0.124911783058196,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,6.39756932634737,0,-4.17304288016425,-4.28884696960449,0.25691220358117
+7511,87243,450097.952,87343,449997.952,10,75,64,0.64,33.4886011006144,0.832682291666667,NA,0.0762495963846595,0.8325,83.25,1,99.4947723752506,0.867119094511544,83.25,2.32647998340137,0,-3.43927697340647,-4.20864915847778,1.14350724808492
+7512,87243,449997.952,87343,449897.952,11,75,6.5,0.065,10.9971173107153,0.685897435897436,NA,-0.00244479010048963,0.115,11.5,1,89.742951983695,0.927567724177894,11.5,2.94951770616614,0,-4.65938104523553,-5,1.17786125752753
+7513,87243,449897.952,87343,449797.952,12,75,0,NA,NA,NA,NA,-0.0234712600011881,0,0,0,NA,NA,0,NA,NA,-5,-5,0.0659041524081886
+7514,87243,449797.952,87343,449697.952,13,75,62.5,0.625,32.7938868154211,0.849333333333333,NA,0.0533946368969919,0.62,62,1,98.5789406842005,0.937613430127042,62,0.638243029194493,0,-4.47688325246175,-5,0.573485946319364
+7515,87243,449697.952,87343,449597.952,14,75,20.25,0.0405,4.42181485180096,0.129004329004329,17.1267528505445,0.0432388889067079,0.425,42.5,1,97.1898422226593,0.966662036393944,42.5,4.03084987191593,0,-4.33348580201467,-4.50488901138306,0.199956704482784
+7516,87243,449597.952,87343,449497.952,15,75,0,NA,NA,NA,NA,-0.0595516768278321,0,0,0,NA,NA,0,NA,NA,-4.71562078264025,-4.85468912124634,0.232584956846022
+7517,87243,449497.952,87343,449397.952,16,75,0,NA,NA,NA,NA,-0.0720344027597457,0,0,0,NA,NA,0,NA,NA,-5.04206418991089,-5.13363361358643,0.131455181230523
+7518,87243,449397.952,87343,449297.952,17,75,0,NA,NA,NA,NA,-0.088112055817619,0,0,0,NA,NA,0,NA,NA,-5.1914185418023,-5.21495580673218,0.0492047464621666
+7519,87243,449297.952,87343,449197.952,18,75,0,NA,NA,NA,NA,-0.0799505698980465,0,0,0,NA,NA,0,NA,NA,-5.24539581934611,-5.26629638671875,0.0248150890862234
+7520,87243,449197.952,87343,449097.952,19,75,0,NA,NA,NA,NA,-0.0186800047334327,0,0,0,NA,NA,0,NA,NA,-5.26340458128187,-5.27251863479614,0.0184711419775657
+7521,87243,449097.952,87343,448997.952,20,75,0,NA,NA,NA,NA,-0.186364380409941,0,0,0,NA,NA,0,NA,NA,-5.25831132464939,-5.26328897476196,0.0131234978425199
+7522,87243,448997.952,87343,448897.952,21,75,20.75,0.051875,5.57488098268969,0.307222222222222,10,-0.018051080653895,0.26,26,2,93.1050086294405,0.891602832779303,24.5,3.41793174010057,0,-5.21726044019063,-5.25023937225342,0.039689973491389
+7523,87243,448897.952,87343,448797.952,22,75,48.5,0.097,10.9304613078526,0.540281765018607,11,0.051791710224079,0.4725,47.25,4,93.7878508292415,0.794177386594448,35.25,10.1953374973681,0,-5.12853500578139,-5.16522693634033,0.0740081707963253
+7524,87243,448797.952,87343,448697.952,23,75,27.75,0.069375,7.28800680680043,0.385011717673008,23.0506874315899,0.060575725068411,0.635,63.5,4,97.2581459844535,0.798549556809025,60.5,12.8820270553349,0,-4.95100176334381,-5.05597066879272,0.191977679504476
+7525,87243,448697.952,87343,448597.952,24,75,30.75,0.076875,15.0321064245027,0.449853801169591,13.0901699437495,0.0599925955879735,0.5375,53.75,1,98.0842701108371,0.810810810810811,53.75,8.1452800307163,0,-4.52821275922987,-4.7745189666748,0.531463470739246
+7526,87243,448597.952,87343,448497.952,25,75,1,0.005,1.66666666666667,0.111111111111111,102.591422643416,-0.0709882551130431,0,0,0,NA,NA,0,NA,NA,-3.15462052822113,-4.23342084884644,0.880792556184135
+7527,87243,448497.952,87343,448397.952,26,75,0,NA,NA,NA,NA,-0.0756826262455434,0,0,0,NA,NA,0,NA,NA,-2.24831173155043,-2.48109793663025,0.3116011924846
+7528,87243,448397.952,87343,448297.952,27,75,3.25,0.01625,6.14928215844463,0.111111111111111,10,-0.0610892143373349,0.0075,0.75,1,44.4894453484604,1,0.75,7.35702260335286,5,-1.98849187294642,-2.05978274345398,0.0788001408528092
+7529,87243,448297.952,87343,448197.952,28,75,7,0.0175,5.33119539033766,0.114130434782609,14.0450849718747,-0.00312962370011519,0.05,5,2,75.9413455967301,0.864176570458404,4.5,19.1829100608826,7.07106781005859,-1.90592877070109,-1.94333744049072,0.0807752508858205
+7530,87243,448197.952,87343,448097.952,29,75,0,NA,NA,NA,NA,0.00782759918201919,0.2075,20.75,1,93.7090252642431,0.965664499238181,20.75,108.809124406562,85.1469345092773,-1.7210878431797,-1.84886527061462,0.165391374986283
+7531,87243,448097.952,87343,447997.952,30,75,0,NA,NA,NA,NA,-0.0418902909250755,0,0,0,NA,NA,0,NA,NA,-1.41245151890649,-1.53168869018555,0.238851639847816
+7532,87243,447997.952,87343,447897.952,31,75,0,NA,NA,NA,NA,-0.0785719720227644,0,0,0,NA,NA,0,NA,NA,-0.972008638911777,-1.24835169315338,0.454007376531576
+7533,87243,447897.952,87343,447797.952,32,75,0,NA,NA,NA,NA,-0.0582572569054537,0,0,0,NA,NA,0,NA,NA,-0.88616834829251,-1.16478586196899,0.427928679959802
+7534,87243,447797.952,87343,447697.952,33,75,13.5,0.027,7.50123142285164,0.17312661498708,12.3650581819917,-0.00685560025485756,0.0525,5.25,1,82.2928536593692,0.769129287598945,5.25,9.21780395507812,0,-1.20264037450155,-1.31758999824524,0.145088791756274
+7535,87243,447697.952,87343,447597.952,34,75,1.75,0.004375,1.70386512994894,0.0833333333333333,12.1352549156242,-0.010784093906509,0,0,0,NA,NA,0,NA,NA,-1.32385336359342,-1.47876250743866,0.231165390777585
+7536,87243,447597.952,87343,447497.952,35,75,0,NA,NA,NA,NA,0.00216309112096496,0.0875,8.75,3,77.1958853040719,0.716580066131318,4.5,18.068284879412,5,-1.36610811286502,-1.55985248088837,0.316663969358841
+7537,87243,447497.952,87343,447397.952,36,75,21.5,0.0238888888888889,5.75521825179313,0.245054945054945,17.3821687308582,0.0492001810536385,0.415,41.5,5,90.1695634596824,0.675995754427127,21,9.82080729610949,0,-1.58519253134727,-1.72031366825104,0.192766055824621
+7538,87243,447397.952,87343,447297.952,37,75,4.5,0.01125,4.44890564955096,0.156746031746032,12.3381019908347,0.151066892616456,0.835,83.5,1,99.5034141561623,0.923161888296595,83.5,19.9848957689936,0,-1.72284808423784,-1.77235674858093,0.0840020150638398
+7539,87243,447297.952,87343,447197.952,38,75,10.25,0.00788461538461538,3.03985239741682,0.136385836385836,11.4262322817305,0.0511273678618454,0.2875,28.75,3,90.9799415942479,0.9055330634278,25.5,16.5743745223336,0,-1.70575722058614,-1.77353966236115,0.0986691494926022
+7540,87243,447197.952,87343,447097.952,39,75,35.75,0.0715,7.11348204145251,0.314393939393939,13.4049183472877,-0.0304926968079599,0.06,6,4,65.8089852051172,0.692049272116461,3.75,3.59221680959066,0,-1.56008281972673,-1.67313611507416,0.151611393903826
+7541,87243,447097.952,87343,446997.952,40,75,11,0.0366666666666667,8.00894982337458,0.33242556281772,12.4535599249993,-0.219436049807446,0,0,0,NA,NA,0,NA,NA,-1.32168817520142,-1.49790227413177,0.202689471252665
+7542,87243,446997.952,87343,446897.952,41,75,0,NA,NA,NA,NA,-0.320111408159137,0,0,0,NA,NA,0,NA,NA,-1.19825369781918,-1.43225395679474,0.32482301503259
+7543,87243,446897.952,87343,446797.952,42,75,8.25,0.00916666666666667,3.51119343150899,0.172745978301534,13.3841830791908,-0.0734248019118604,0.085,8.5,3,76.9967029651449,0.726775956284153,4.25,6.72854535719928,0,-1.71002452572187,-2.02133774757385,0.38836960221719
+7544,87243,446797.952,87343,446697.952,43,75,3.5,0.005,2.03869892108788,0.104761904761905,16.9344313803567,0.00456208467912802,0.1075,10.75,3,82.117042798268,0.844382197323374,9,41.5738715238349,11.1803398132324,-2.05822432041168,-2.13878750801086,0.129301583917443
+7545,87243,446697.952,87343,446597.952,44,75,7.5,0.0125,4.05962194152216,0.189814814814815,20.4756388096434,0.0142054543378254,0.1225,12.25,2,84.6727927758701,0.755799755799756,7.75,27.0188842306332,10,-2.10008838441637,-2.19652557373047,0.12507122065645
+7546,87243,446597.952,87343,446497.952,45,75,1.75,0.00583333333333333,3.10515350659859,0.166666666666667,33.4877255113548,-0.0605106557118415,0,0,0,NA,NA,0,NA,NA,-2.1352234184742,-2.34139275550842,0.287048314729361
+7547,87243,446497.952,87343,446397.952,46,75,20.25,0.0289285714285714,8.02178025248417,0.301184110007639,11.5905519731531,-0.0248879563166156,0.03,3,3,54.4672250657126,0.636143117040631,1.5,2.08333333333333,0,-2.15968791643778,-2.32498216629028,0.244788367864078
+7548,87243,446397.952,87343,446297.952,47,75,44.5,0.0635714285714286,7.48596685332789,0.237165901330507,12.3114771267856,0.0022985312396122,0.2625,26.25,4,88.0361036451082,0.820643888440499,13.5,2.47372009640648,0,-2.20561283826828,-2.27091336250305,0.105289783458791
+7549,87243,446297.952,87343,446197.952,48,75,39.25,0.0490625,5.41768133770648,0.217762249827467,14.5628519248411,-0.0117996251482577,0.0575,5.75,4,64.052361522782,0.646330680813439,2,5.4115048284116,0,-2.25586019621955,-2.28043651580811,0.0345379294701554
+7550,87243,446197.952,87343,446097.952,49,75,70.5,0.235,11.8550484144439,0.337714058144166,13.4628120507726,0.0232607963430928,0.3225,32.25,3,94.8009333875752,0.930909947397346,31.75,0.0387596899224806,0,-2.23396416505178,-2.28388643264771,0.0580188194125693
+7551,87243,446097.952,87343,445997.952,50,75,56.25,0.1875,25.8903121858289,0.719211822660099,11.6666666666667,0.0128185804356508,0.2075,20.75,3,90.2711608886802,0.85407412176227,18.75,1.67641127253153,0,-2.07743239402771,-2.17516541481018,0.157709830784905
+7552,87243,445997.952,87343,445897.952,51,75,36,0.18,20.4198196314298,0.440898345153664,10,-0.00614387273868488,0.105,10.5,3,80.7344478895533,0.795420568101346,8.25,5.49043986910865,0,-1.85618382692337,-1.95727455615997,0.133889549138494
+7553,87243,445897.952,87343,445797.952,52,75,20.75,0.10375,12.4528132038274,0.380658436213992,46.0977222864644,0.000401772718614666,0.095,9.5,3,78.7909786987583,0.807068315355608,5.75,3.42105263157895,0,-1.73715493414137,-1.75683009624481,0.0522703636400697
+7554,87243,445797.952,87343,445697.952,53,75,10,0.0111111111111111,4.39967685831882,0.109082892416226,10.9080075639822,-0.00354080310811696,0.04,4,2,72.4151777478817,0.782986111111111,3.5,24.9195853471756,11.1803398132324,-1.76887887716293,-1.83008503913879,0.0851203461249539
+7555,87243,445697.952,87343,445597.952,54,75,5.5,0.00392857142857143,1.45364245898061,0.0773809523809524,13.5302144057857,-0.0150077186380622,0,0,0,NA,NA,0,NA,NA,-1.94089354409112,-2.0295729637146,0.146739186625634
+7556,87243,445597.952,87343,445497.952,55,75,9.75,0.00573529411764706,2.09507251462105,0.119771241830065,11.8449188657259,-0.0145180264484952,0,0,0,NA,NA,0,NA,NA,-2.20110334290399,-2.34637904167175,0.197490072224307
+7557,87243,445497.952,87343,445397.952,56,75,27.75,0.04625,10.0827634736093,0.298638472988355,12.349276591384,0.00314680578030675,0.04,4,2,74.5830091831985,0.782986111111111,3.75,3.25444173812866,0,-2.48733123143514,-2.58914470672607,0.129064418309306
+7558,87243,445397.952,87343,445297.952,57,75,9,0.018,6.22576823626876,0.216049382716049,23.8062484748657,-0.037186107304351,0.08,8,2,79.04516811116,0.790969899665552,4.5,2.1875,0,-2.62106336487664,-2.6543436050415,0.0346959799463096
+7559,87243,445297.952,87343,445197.952,58,75,12.5,0.0625,13.7416492531183,0.236394557823129,10,-0.0337412572937319,0.235,23.5,1,94.4060921446443,0.914410208527856,23.5,3.15463488152687,0,-2.57155666748683,-2.64785957336426,0.0734759133204313
+7560,87243,445197.952,87343,445097.952,59,75,16,0.0533333333333333,12.0022372320031,0.349279835390946,23.4164593685348,0.0712680393061601,0.79,79,1,99.3416426267051,0.864173857462448,79,16.3386808769612,0,-2.31368515226576,-2.5045964717865,0.457421372164386
+7561,87243,445097.952,87343,444997.952,60,75,98,0.98,37.7123355942692,0.934098639455782,NA,0.0701433982663184,0.78,78,1,99.3038050834495,0.760358688930117,78,0.128205128205128,0,-1.42982844014963,-1.89634609222412,0.989659510232967
+7562,87243,444997.952,87343,444897.952,61,75,72.25,0.36125,16.793121004644,0.438368055555556,15,0.0209041717213404,0.4275,42.75,2,96.5099712063761,0.883551673944687,42,1.27319309167695,0,-1.08573479122586,-1.61117804050446,0.852581913992676
+7563,87243,444897.952,87343,444797.952,62,75,35.25,0.3525,28.2389830518631,0.683215130023641,NA,0.061116494248854,0.55,55,1,98.166317237229,0.967479674796748,55,2.05000131780451,0,-1.09786859154701,-1.84085714817047,0.760347155220217
+7564,87243,444797.952,87343,444697.952,63,75,61,0.61,34.2387537732695,0.801229508196721,NA,0.0937973975331988,0.91,91,1,99.745869280411,0.983873568779229,91,2.3460680102254,0,-1.28710904386308,-1.66833937168121,0.688386985599708
+7565,87243,444697.952,87343,444597.952,64,75,17,0.085,8.79071237446921,0.409203980099502,50.2493781056044,0.0974533230345696,0.95,95,1,99.8632718311308,0.805825242718447,95,18.3362782578719,0,-2.30571305751801,-2.48329782485962,0.521812850551253
+7566,87243,444597.952,87343,444497.952,65,75,49.75,0.4975,27.7285565916311,0.875209380234506,NA,0.0701308715521009,0.7225,72.25,3,96.0260136413608,0.721780604133546,40.5,11.2899682266077,0,-2.1264255311754,-2.56427669525146,0.424998209590241
+7567,87243,444497.952,87343,444397.952,66,75,0,NA,NA,NA,NA,0.12533436008729,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,41.209060085746,5,-2.54814343982273,-2.71887946128845,0.292355057798908
+7568,87243,444397.952,87343,444297.952,67,75,0,NA,NA,NA,NA,0.233301373571157,1,100,1,100,NA,100,86.8211289978027,25,-2.73888822396596,-2.88192677497864,0.191131405118434
+7569,87243,444297.952,87343,444197.952,68,75,0,NA,NA,NA,NA,0.127606726586819,0.725,72.5,2,98.7457169207798,0.71976647206005,71.75,119.904137762662,70.1783447265625,-2.91732703314887,-3.02399444580078,0.142425613112308
+7570,87243,444197.952,87343,444097.952,69,75,0.5,0.005,2.5,0.166666666666667,NA,0.0506786250555888,0.595,59.5,1,98.4399608047141,0.927867942849216,59.5,49.431176193622,0,-3.10015072425207,-3.26863765716553,0.16824171949693
+7571,87243,444097.952,87343,443997.952,70,75,2.25,0.005625,2.70833333333333,0.180555555555556,13.4958640941704,0.0678205616213381,0.95,95,1,99.8632718311308,0.805825242718447,95,44.1320622444153,0,-3.25621506902907,-3.41089773178101,0.220563649272485
+7572,87243,443997.952,87343,443897.952,71,75,0.5,0.0025,0,0,15.8113883008419,0.0445854886254529,0.665,66.5,1,98.8090595843688,0.928214638231687,66.5,41.2415094160496,5,-3.32315921783447,-3.45041370391846,0.236056117356596
+7573,87243,443897.952,87343,443797.952,72,75,29.5,0.0327777777777778,5.86265138605258,0.201065515019003,11.4635631195378,0.0319429386717093,0.3,30,4,87.2861228212788,0.783748361730013,16,6.63997675577799,0,-3.14485867818197,-3.39646887779236,0.333320972568047
+7574,87243,443797.952,87343,443697.952,73,75,6,0.015,4.20258066083135,0.217156862745098,16.1803398874989,-0.00610086056345608,0.025,2.5,1,71.9760246298065,1,2.5,27.0796264648437,20.6155281066895,-2.84074409802755,-3.11461353302002,0.352545864954464
+7575,87243,443697.952,87343,443597.952,74,75,0,NA,NA,NA,NA,0.00453239680458864,0.16,16,3,83.3085123706684,0.766156462585034,8,88.6428446769714,65.7647323608398,-2.82331244150798,-3.05869793891907,0.334484017197933
+7576,87243,443597.952,87343,443497.952,75,75,0,NA,NA,NA,NA,0.0202322950279233,0,0,0,NA,NA,0,NA,NA,-3.03373694419861,-3.20453381538391,0.268468382376746
+7577,87243,443497.952,87343,443397.952,76,75,0.25,0.0025,0,0,NA,0.0115988893400117,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,71.5470074547662,60.8276290893555,-3.04453206062317,-3.20233154296875,0.242837590438112
+7578,87243,443397.952,87343,443297.952,77,75,1,0.0025,0,0,28.2059690276512,0.0166815040865913,0.025,2.5,3,54.2530620802294,0.605522682445759,1.75,69.4110900878906,60.8276290893555,-2.88230835066901,-3.05106830596924,0.231292137757896
+7579,87243,443297.952,87343,443197.952,78,75,1,0.00333333333333333,0.833333333333333,0.0555555555555556,17.4127682432574,0.0265823909817118,0.14,14,2,86.247593039685,0.868137137377128,10.75,17.8881126812526,0,-2.7617742617925,-2.88603281974792,0.108774702770419
+7580,87243,443197.952,87343,443097.952,79,75,1,0.00333333333333333,1.17851130197758,0.0277777777777778,49.41190968378,0.011339496361677,0.045,4.5,2,69.9899490341484,0.767306573589296,2.5,7.25364504920112,0,-2.59314913219876,-2.69935822486877,0.150543164336208
+7581,87243,443097.952,87343,442997.952,80,75,25.5,0.255,28.0083677200255,0.661764705882353,NA,0.00506088656794418,0.11,11,1,89.3941397590651,0.772244154266626,11,1.84575462341309,0,-2.38617819547653,-2.4894688129425,0.139209346943141
+7582,87243,442997.952,87343,442897.952,81,75,5.5,0.0275,5.38059351928544,0.317460317460317,76.4852927038918,-0.00402267181678326,0.0125,1.25,2,43.859649122807,0.594936708860759,1,15.4826053619385,0,-2.22757787174649,-2.31299471855164,0.221044084185986
+7583,87243,442897.952,87343,442797.952,82,75,18.5,0.0925,16.1483672496711,0.240867579908676,10,-0.0250089874300102,0.01,1,3,15.8692205350002,0.242424242424242,0.5,1.25,0,-1.8899010916551,-2.14545297622681,0.405774071140227
+7584,87243,442797.952,87343,442697.952,83,75,16.25,0.0325,8.59287348758908,0.226213857064921,12.2360679774998,-0.0321170019170859,0,0,0,NA,NA,0,NA,NA,-1.71952214505937,-1.90981268882751,0.420839164030861
+7585,87243,442697.952,87343,442597.952,84,75,23.5,0.0335714285714286,8.82415774502803,0.262544091710758,10.5058599517853,-0.0377809561738104,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,2,0,-1.68963388601939,-2.30267405509949,0.598585749011307
+7586,87243,442597.952,87343,442497.952,85,75,34.5,0.043125,6.87516967390951,0.317708333333333,14.205410563176,0.0271991189483379,0.3575,35.75,1,96.460610420978,0.928713577093296,35.75,6.12196836938391,0,-2.08188984129164,-2.57346749305725,0.789634848778355
+7587,87243,442497.952,87343,442397.952,86,75,22.25,0.0247222222222222,5.65979579774717,0.220831309800714,10.8178533083331,-0.00308312580126312,0.0275,2.75,4,48.5225755827122,0.588688946015424,1.75,3.47740069302646,0,-2.12292687098185,-2.53112196922302,0.636990007929441
+7588,87243,442397.952,87343,442297.952,87,75,6.75,0.016875,3.95224061916591,0.274621212121212,26.4257676154813,-0.0371633529318933,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,39.6554250302522,30.4138145446777,-2.18355164262984,-2.40263509750366,0.369223881967821
+7589,87243,442297.952,87343,442197.952,88,75,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.0560200103047828,0.0325,3.25,1,76.0684107249879,1,3.25,32.4841417165903,25,-2.51511967182159,-2.86252593994141,0.288630058698526
+7590,87243,442197.952,87343,442097.952,89,75,0,NA,NA,NA,NA,-0.0330874052878244,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,119.484931945801,105.475112915039,-2.86910570992364,-3.15417170524597,0.407302837932866
+7591,87243,442097.952,87343,441997.952,90,75,0,NA,NA,NA,NA,-0.165776326103514,0,0,0,NA,NA,0,NA,NA,-2.97806082831489,-3.17660760879517,0.358279320328226
+7592,87243,441997.952,87343,441897.952,91,75,0,NA,NA,NA,NA,-0.0143666576823671,0.2175,21.75,2,93.1681485639896,0.917551272802226,21.5,51.9916171369881,5,-2.96104713280996,-3.11220240592957,0.187547148354051
+7593,87243,441897.952,87343,441797.952,92,75,18.75,0.0625,9.06707696087824,0.353174603174603,20.2591786919701,0.0204014405090857,0.4225,42.25,3,95.7942200962011,0.85014985014985,41,11.9080143426297,0,-2.72502726978726,-2.89610004425049,0.296347159174974
+7594,87243,441797.952,87343,441697.952,93,75,35.25,0.1175,14.3017886962295,0.442961048904201,22.4535599249993,0.0136915324810252,0.2775,27.75,1,95.2720210973421,0.84083044982699,27.75,1.55018980009062,0,-1.85124923785528,-2.75368547439575,0.745689141500141
+7595,87243,441697.952,87343,441597.952,94,75,56.5,0.14125,14.4459778197024,0.472819187902987,10.2950849718747,0.0303511927985164,0.3225,32.25,2,92.1510059583851,0.780168014446102,16.25,1.52103258473004,0,-1.05159686009089,-1.1687479019165,0.254785078962675
+7596,87243,441597.952,87343,441497.952,95,75,71.25,0.35625,20.1336005255079,0.401701877934272,10,0.0691056951107748,0.625,62.5,3,97.1448182457105,0.800569800569801,59.25,1.02142135620117,0,-0.579183564210931,-0.945009350776672,0.555249218080192
+7597,87243,441497.952,87343,441397.952,96,75,62,0.62,37.0751811198386,0.716397849462366,NA,0.0723385169974063,0.69,69,1,98.9270603639069,0.8256320836966,69,2.04672698698182,0,-0.118314537387859,-0.369912475347519,0.503572349306524
+7598,87243,441397.952,87343,441297.952,97,75,76.5,0.765,38.8767044159696,0.817538126361656,NA,0.042578247449419,0.5375,53.75,1,98.0842701108371,0.940540540540541,53.75,1.26310949990916,0,-1.22942135234674,-1.73902177810669,0.608539391424869
+7599,87243,441297.952,87343,441197.952,98,75,56,0.0933333333333333,12.2528069200205,0.512248368008172,11.380711874577,0.0288240541319828,0.2475,24.75,6,85.8045126512758,0.716301467020046,13.5,2.04471118040759,0,-1.41021661625968,-1.9240448474884,0.942500499338773
+7600,87243,441197.952,87343,441097.952,99,75,30.7894736842105,0.073125,10.6428819064812,0.489377289377289,18.9918566334224,0.00814317615655455,0.105,10.5,2,86.2942194407613,0.905578723739083,10,2.16217590513684,0,-0.0523768613735835,-1.28194844722748,1.02435835464452
+7601,87343,451097.952,87443,450997.952,0,76,23.5,0.0335714285714286,9.40330887504869,0.176261070465922,10.3372399678568,-0.0169021846942996,0.005,0.5,1,30.8308651382582,1,0.5,14.9767618179321,14.1421356201172,-3.47250473499298,-3.57278800010681,0.160017580043713
+7602,87343,450997.952,87443,450897.952,1,76,13,0.026,9.76024112328389,0.214659498207885,14.4031242374328,0.00722445920084283,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,5.6903559366862,5,-3.68663875758648,-3.76563167572021,0.103263745156202
+7603,87343,450897.952,87443,450797.952,2,76,4.5,0.009,3.26147899453343,0.146666666666667,32.412903843219,0.00726714726828504,0.0025,0.25,1,0,NA,0.25,22.3606796264648,22.3606796264648,-3.82678230603536,-3.8746440410614,0.0774606250750583
+7604,87343,450797.952,87443,450697.952,3,76,23,0.0383333333333333,9.69789160908536,0.306121399176955,14.1372707321512,0.00151768023912155,0.0125,1.25,2,43.859649122807,0.594936708860759,1,3.82842712402344,0,-3.91919147968292,-3.94000005722046,0.035461474646585
+7605,87343,450697.952,87443,450597.952,4,76,5.25,0.0065625,2.3079182651078,0.126686507936508,13.8229330274394,0.00408145371210367,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3.82842712402344,0,-3.93814663092295,-3.94434905052185,0.00934450733404872
+7606,87343,450597.952,87443,450497.952,5,76,28.5,0.07125,12.3534443713589,0.478855721393035,10.5901699437495,0.0062359119016628,0.0825,8.25,2,79.6618948113615,0.858714300131194,5.25,2.24673138242779,0,-3.9291490316391,-3.95135855674744,0.0195025629591989
+7607,87343,450497.952,87443,450397.952,6,76,19.25,0.0320833333333333,5.63862685066987,0.299537037037037,27.67591879244,-0.00162942853239656,0.0425,4.25,3,64.9836527481961,0.66579634464752,2,1.47058823529412,0,-3.97989279031754,-4.01774835586548,0.0613228553592784
+7608,87343,450397.952,87443,450297.952,7,76,14.25,0.0285,6.25351566547668,0.283077837195484,19.3983456376682,0.0114680891849275,0.1175,11.75,4,78.63948954212,0.745042492917847,6.75,25.8004556209483,0,-4.12535631656647,-4.22256469726562,0.105199756628475
+7609,87343,450297.952,87443,450197.952,8,76,18.25,0.09125,12.0105618706003,0.30787037037037,38.0788655293195,0.0877833596133496,0.7775,77.75,1,99.2942318197501,0.69321624419987,77.75,15.1060453764495,0,-4.25619999567668,-4.29897594451904,0.0790084798664394
+7610,87343,450197.952,87443,450097.952,9,76,64.75,0.32375,27.7515273554517,0.699007644509852,11.1803398874989,0.0842621756298468,0.835,83.5,1,99.5034141561623,0.913557124333669,83.5,2.07012382096159,0,-4.29242436091105,-4.33687305450439,0.115413025455335
+7611,87343,450097.952,87443,449997.952,10,76,22,0.22,21.5884431640367,0.765151515151515,NA,0.00741280644283961,0.195,19.5,3,87.6831951169748,0.747952110901071,14.5,25.033576965332,0,-4.64237320423126,-5,0.478319728685739
+7612,87343,449997.952,87443,449897.952,11,76,0,NA,NA,NA,NA,0.000748766610340681,0.13,13,2,87.4089728951555,0.806276636962418,11.25,126.40373141949,94.3398132324219,-5,-5,0.0287857262772721
+7613,87343,449897.952,87443,449797.952,12,76,0,NA,NA,NA,NA,-0.0238108929918371,0.01,1,1,52.6315789473684,0.747474747474748,1,122.214700698853,120.933868408203,-5,-5,0.0164016017220944
+7614,87343,449797.952,87443,449697.952,13,76,30.25,0.15125,14.5547902214275,0.487394957983193,18.0277563773199,0.00775056510778086,0.3525,35.25,2,95.3036108394033,0.940139475023196,34.5,3.48345196500738,0,-4.64642866452535,-5,0.400868487827201
+7615,87343,449697.952,87443,449597.952,14,76,44.75,0.22375,22.7000577310754,0.734592013888889,18.0277563773199,0.0814284887265239,0.78,78,1,99.3038050834495,0.92269635126778,78,3.30282261432746,0,-4.40167942643166,-4.49415922164917,0.116315862263281
+7616,87343,449597.952,87443,449497.952,15,76,0.25,0.0025,0,0,NA,-0.0242137043428374,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,6.178772517613,0,-4.69701135158539,-4.80007171630859,0.196153875723853
+7617,87343,449497.952,87443,449397.952,16,76,0,NA,NA,NA,NA,-0.068976494804956,0,0,0,NA,NA,0,NA,NA,-4.99448782205582,-5.12042760848999,0.142820193581834
+7618,87343,449397.952,87443,449297.952,17,76,0,NA,NA,NA,NA,-0.0959423118270934,0,0,0,NA,NA,0,NA,NA,-5.17755842208862,-5.21929788589478,0.0791765882054582
+7619,87343,449297.952,87443,449197.952,18,76,0,NA,NA,NA,NA,-0.154002013821155,0,0,0,NA,NA,0,NA,NA,-5.28555601835251,-5.33349800109863,0.0486431884784161
+7620,87343,449197.952,87443,449097.952,19,76,0,NA,NA,NA,NA,-0.0630367407011363,0,0,0,NA,NA,0,NA,NA,-5.31174572308858,-5.33888864517212,0.0361308806816086
+7621,87343,449097.952,87443,448997.952,20,76,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.0933302441403794,0.0225,2.25,1,70.1754385964912,0.744245524296675,2.25,4.90468173556858,0,-5.25660526752472,-5.29302167892456,0.0635341268447779
+7622,87343,448997.952,87443,448897.952,21,76,65.5,0.16375,8.72088828556486,0.199485199485199,10.5901699437495,0.0348505251787083,0.2225,22.25,6,80.1647023998506,0.668345163704018,8.25,2.4731411451704,0,-5.1584547162056,-5.22349405288696,0.0846499358772093
+7623,87343,448897.952,87443,448797.952,22,76,78.5,0.3925,21.8715909786578,0.776125467251747,11.1803398874989,0.061056455434009,0.605,60.5,2,97.652027411758,0.893581270303573,58.5,1.02361991188743,0,-5.03121634324392,-5.13771772384644,0.132222589319169
+7624,87343,448797.952,87443,448697.952,23,76,67.75,0.225833333333333,13.7667370477867,0.444025157232704,20.4044011451988,0.0633792371225536,0.545,54.5,2,97.6106896687641,0.853840740540248,53.75,1.57780773267833,0,-4.59670279920101,-4.96760892868042,0.487266849471423
+7625,87343,448697.952,87443,448597.952,24,76,33.5,0.08375,12.1824950920472,0.435194294146581,15.9597861695405,0.0274506462780846,0.4,40,1,96.9413745785043,0.943310657596372,40,3.79290227890015,0,-3.77188193798065,-4.3516993522644,0.700311023637355
+7626,87343,448597.952,87443,448497.952,25,76,3,0.00333333333333333,0.639659899369998,0.0185185185185185,15.4096675676636,-0.0811846529706963,0,0,0,NA,NA,0,NA,NA,-2.66435627639294,-3.19284915924072,0.503778745462369
+7627,87343,448497.952,87443,448397.952,26,76,0,NA,NA,NA,NA,-0.0623718518534815,0,0,0,NA,NA,0,NA,NA,-2.10995281736056,-2.29257011413574,0.227904273427126
+7628,87343,448397.952,87443,448297.952,27,76,17.25,0.0345,6.04852331002027,0.125925925925926,10.2360679774998,0.00950414177428684,0.1225,12.25,3,86.564515592721,0.864333197666531,11.5,18.7038451603481,0,-1.84910973906517,-1.99937987327576,0.202224968492003
+7629,87343,448297.952,87443,448197.952,28,76,0,NA,NA,NA,NA,-0.0538177673653263,0.0275,2.75,2,60.517542786349,0.725792630676949,1.5,25.6277285489169,15.8113880157471,-1.5598873992761,-1.85680830478668,0.354247978609842
+7630,87343,448197.952,87443,448097.952,29,76,0,NA,NA,NA,NA,-0.0161675752830752,0.135,13.5,4,80.6492916665706,0.825968052706818,7,143.969240400526,100,-1.35446881502867,-1.7426700592041,0.351930957267067
+7631,87343,448097.952,87443,447997.952,30,76,0,NA,NA,NA,NA,-0.011930469081417,0.1175,11.75,1,89.9089482633795,0.971671388101983,11.75,205.825920267308,186.681533813477,-1.1116193930308,-1.35519540309906,0.315054437107737
+7632,87343,447997.952,87443,447897.952,31,76,0,NA,NA,NA,NA,-0.0352050369349308,0.185,18.5,2,89.1892155304645,0.886739027843322,16,212.70500884185,180.277557373047,-0.682818216582139,-1.17802262306213,0.543535106487843
+7633,87343,447897.952,87443,447797.952,32,76,0,NA,NA,NA,NA,-0.00240589834213097,0.135,13.5,1,90.9386564749522,0.950276586487662,13.5,169.239043059172,145.773803710938,-0.892155537381768,-1.37255799770355,0.473689941015761
+7634,87343,447797.952,87443,447697.952,33,76,0,NA,NA,NA,NA,-0.0349968340944542,0,0,0,NA,NA,0,NA,NA,-1.34830889105797,-1.51482391357422,0.217238836518446
+7635,87343,447697.952,87443,447597.952,34,76,0.25,0.0025,0,0,NA,-0.0587610962856706,0.0025,0.25,1,0,NA,0.25,10,10,-1.5596045255661,-1.66485810279846,0.125176350064066
+7636,87343,447597.952,87443,447497.952,35,76,3.5,0.005,1.86228037944827,0.111904761904762,21.8478291752094,0.00735153521342909,0.07,7,3,70.9628805772806,0.7610513739546,2.75,12.7699825423104,0,-1.658322006464,-1.71139204502106,0.0800624929179152
+7637,87343,447497.952,87443,447397.952,36,76,13.75,0.0125,3.29438167092502,0.169823232323232,13.1917996093012,0.0131445367474953,0.17,17,3,83.3910751017072,0.817758428672674,8.25,4.53946242612951,0,-1.72075321525335,-1.75117897987366,0.0450179685851356
+7638,87343,447397.952,87443,447297.952,37,76,10.25,0.0341666666666667,8.70279213430687,0.179487179487179,21.6666666666667,0.00938815683606663,0.195,19.5,1,93.3444522721621,0.936988027725268,19.5,7.81382793035263,0,-1.76406620939573,-1.78842604160309,0.0272128765726639
+7639,87343,447297.952,87443,447197.952,38,76,16,0.032,7.63137687980436,0.293103448275862,10.4721359549996,0.00263142683179467,0.225,22.5,2,90.0842361548084,0.911841314365859,17.75,6.01151536305745,0,-1.74870291352272,-1.78689908981323,0.0515727183066007
+7640,87343,447197.952,87443,447097.952,39,76,0,NA,NA,NA,NA,-0.0293261848430751,0.1675,16.75,1,92.4032163835468,0.958933292266626,16.75,71.3854141235352,36.4005508422852,-1.62939187884331,-1.69699239730835,0.115375635164598
+7641,87343,447097.952,87443,446997.952,40,76,0,NA,NA,NA,NA,-0.0342501495506349,0,0,0,NA,NA,0,NA,NA,-1.42795041203499,-1.55043959617615,0.190760286199699
+7642,87343,446997.952,87443,446897.952,41,76,2,0.02,6.62232550833634,0.333333333333333,NA,-0.0943368163531159,0,0,0,NA,NA,0,NA,NA,-1.59295179446538,-1.80051803588867,0.40934256727598
+7643,87343,446897.952,87443,446797.952,42,76,2,0.004,1.5,0.1,29.0498679966257,-0.0120028899464523,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471,-2.04625328630209,-2.27064490318298,0.311286217213705
+7644,87343,446797.952,87443,446697.952,43,76,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.0321985441650031,0.2575,25.75,2,94.3217054851071,0.876239876239876,25.5,63.121455886989,22.3606796264648,-2.25919874509176,-2.32212400436401,0.111237169827511
+7645,87343,446697.952,87443,446597.952,44,76,0,NA,NA,NA,NA,0.0581523471482797,0.7325,73.25,2,98.7959702712562,0.830384856760012,72.75,56.3772457370172,10,-2.30787241458893,-2.35251092910767,0.076826053913182
+7646,87343,446597.952,87443,446497.952,45,76,7.25,0.00659090909090909,2.86284188315688,0.17478354978355,12.6117475373329,-0.00285889578442948,0.19,19,1,93.1886455857599,0.926294453657638,19,11.4112209269875,0,-2.40033149719238,-2.46487975120544,0.0805941951776305
+7647,87343,446497.952,87443,446397.952,46,76,17.25,0.08625,14.6204080040006,0.694003527336861,30.4138126514911,-0.0472394379970501,0.0025,0.25,1,0,NA,0.25,0,0,-2.42263132333755,-2.47290849685669,0.081361384809217
+7648,87343,446397.952,87443,446297.952,47,76,13,0.0216666666666667,5.14410549252,0.249643874643875,10.7868932583326,-0.0157300210878384,0.085,8.5,3,79.7317459739601,0.882903981264637,7.5,10.1780490875244,0,-2.36003610491753,-2.3886981010437,0.0513826273730859
+7649,87343,446297.952,87443,446197.952,48,76,19,0.019,5.04673942988194,0.304262550315182,12.7966912753363,-0.0577916666983219,0.0025,0.25,1,0,NA,0.25,0,0,-2.34126621484756,-2.39807200431824,0.0584149546202625
+7650,87343,446197.952,87443,446097.952,49,76,44.75,0.0497222222222222,7.37239816311613,0.346163182209694,13.5956310861109,0.00577980269506952,0.11,11,4,75.2577836454657,0.71150926207106,5.25,1.00323035500266,0,-2.33066947758198,-2.42269539833069,0.111519294008695
+7651,87343,446097.952,87443,445997.952,50,76,31.5,0.045,7.01093114380376,0.259349458497076,13.9973257574133,-0.0270064028047636,0.0575,5.75,3,70.7498194166717,0.793692897141173,3,3.00617980957031,0,-2.15301930904388,-2.43569803237915,0.240924466374164
+7652,87343,445997.952,87443,445897.952,51,76,20.75,0.0159615384615385,3.95542947853515,0.219749592659292,13.8910357091935,-0.015006438622313,0.0575,5.75,3,70.7469260159449,0.793692897141173,3.25,3.88976569797682,0,-1.95939064770937,-2.24106740951538,0.220537210260203
+7653,87343,445897.952,87443,445797.952,52,76,44,0.44,33.5500853871123,0.766098484848485,NA,0.0175047862321117,0.19,19,5,80.0509434981206,0.723604201216142,6.75,2.19550203022204,0,-1.88968215386073,-2.02413249015808,0.130476714124187
+7654,87343,445797.952,87443,445697.952,53,76,13.25,0.0147222222222222,4.00571554835729,0.299250440917108,13.3764929058131,-0.031250591994376,0.0325,3.25,4,49.0805680465096,0.598047660063164,1.5,5.54542702894944,0,-1.90943253785372,-1.98704779148102,0.103888520502515
+7655,87343,445697.952,87443,445597.952,54,76,6.5,0.00590909090909091,2.84608427736889,0.151515151515152,13.3626442885581,-0.00743353756632132,0.02,2,2,52.6315789473684,0.795918367346939,1,10.2151999473572,0,-2.0140532652537,-2.10824203491211,0.125752323325582
+7656,87343,445597.952,87443,445497.952,55,76,7,0.0116666666666667,4.7185643734134,0.180555555555556,12.5647393587196,-0.0062033097771473,0,0,0,NA,NA,0,NA,NA,-2.23289136091868,-2.34337425231934,0.161571058016637
+7657,87343,445497.952,87443,445397.952,56,76,27.5,0.1375,26.4355659298397,0.648934983829597,14.142135623731,-0.00322211522387079,0.08,8,4,74.4142119497402,0.770066889632107,4.75,1.47097086906433,0,-2.48321138322353,-2.57829928398132,0.121226157527472
+7658,87343,445397.952,87443,445297.952,57,76,3.75,0.0375,8.67609388322829,0.6,NA,-0.0777239606989315,0,0,0,NA,NA,0,NA,NA,-2.61647564172745,-2.6442277431488,0.0377365498618711
+7659,87343,445297.952,87443,445197.952,58,76,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.0537557978523046,0,0,0,NA,NA,0,NA,NA,-2.61793586611748,-2.65383696556091,0.0772216521039378
+7660,87343,445197.952,87443,445097.952,59,76,30.5,0.101666666666667,9.97160405165276,0.350910232266164,28.3333333333333,-0.0207927010254934,0.28,28,1,95.316724394494,0.931243124312431,28,0.3125,0,-2.02435088157654,-2.57577300071716,1.21868745952087
+7661,87343,445097.952,87443,444997.952,60,76,93,0.93,38.1468558653577,0.881720430107527,NA,0.105034892708063,0.975,97.5,1,99.9329506995597,0.783783783783786,97.5,0.358974358974359,0,-0.27983358129859,-1.56425106525421,1.02212199292185
+7662,87343,444997.952,87443,444897.952,61,76,47.25,0.4725,28.9592599876029,0.867724867724868,NA,0.0360582669839641,0.4175,41.75,1,97.1176501838512,0.966557048102113,41.75,0.359281437125749,0,-1.21765612562497,-1.79284918308258,0.606918918030651
+7663,87343,444897.952,87443,444797.952,62,76,0,NA,NA,NA,NA,-0.014943464952521,0,0,0,NA,NA,0,NA,NA,-2.03630584478378,-2.35829305648804,0.384265465252947
+7664,87343,444797.952,87443,444697.952,63,76,6.75,0.0135,5.51986561696097,0.238888888888889,12.8191319096608,-0.0240837582042889,0.0775,7.75,2,79.0421343534766,0.826558265582656,5.25,7.2589183315154,0,-2.17666726311048,-2.49405717849731,0.556246462838336
+7665,87343,444697.952,87443,444597.952,64,76,11.5,0.115,28.9097451280286,0.376811594202899,NA,0.0529124925243377,0.5625,56.25,1,98.2456140350877,0.956462585034013,56.25,14.5446233876546,0,-2.55142042040825,-2.79328966140747,0.291542746989184
+7666,87343,444597.952,87443,444497.952,65,76,3.5,0.035,10.909569042657,0.285714285714286,NA,0.130945277523715,0.99,99,1,99.9734851828463,1,99,35.4059678906142,0,-2.82204413414001,-2.98098754882812,0.258559173698388
+7667,87343,444497.952,87443,444397.952,66,76,0.25,0.0025,0,0,NA,0.205615317374468,1,100,1,100,NA,100,49.2517781829834,0,-2.95350007216136,-3.08507800102234,0.183509884791767
+7668,87343,444397.952,87443,444297.952,67,76,0,NA,NA,NA,NA,0.255948194637895,1,100,1,100,NA,100,107.35297545433,50,-3.04661650955677,-3.1684901714325,0.159067986805762
+7669,87343,444297.952,87443,444197.952,68,76,0,NA,NA,NA,NA,0.174696949794889,0.9975,99.75,1,99.9934086913499,0.472295514511877,99.75,130.373547661573,85,-3.16321704785029,-3.34758996963501,0.185699817173516
+7670,87343,444197.952,87443,444097.952,69,76,1.5,0.005,2.5,0.166666666666667,15.8113883008419,0.068146391431801,0.9125,91.25,1,99.7534323937872,0.718833988009097,91.25,44.6000331199332,0,-3.46625719964504,-3.9200074672699,0.347485068973318
+7671,87343,444097.952,87443,443997.952,70,76,1,0.005,1.66666666666667,0.111111111111111,11.1803398874989,0.0796823666681303,0.775,77.5,1,99.2846122710835,0.961948249619483,77.5,37.318536943005,0,-3.97506197293599,-4.34764575958252,0.47978119186939
+7672,87343,443997.952,87443,443897.952,71,76,2,0.005,2.34221680981652,0.118055555555556,11.1803398874989,-0.0397575679185684,0.0975,9.75,1,88.4075627573592,0.931813339015555,9.75,6.2683233603453,0,-3.96139685809612,-4.40296459197998,0.435191682656129
+7673,87343,443897.952,87443,443797.952,72,76,10.75,0.01075,2.67804664313079,0.177647243107769,15.3203942947103,-0.0102499459493993,0.17,17,2,89.5339464693708,0.888630150855523,15,12.6177814988529,0,-3.54493812719981,-3.80165123939514,0.339461608352735
+7674,87343,443797.952,87443,443697.952,73,76,13.75,0.0229166666666667,5.54665690863691,0.346164021164021,21.1037961002806,0.0547759621837758,0.555,55.5,1,98.1983573135366,0.924008033436465,55.5,10.1033219002389,0,-3.09341165423393,-3.30899333953857,0.369306628430824
+7675,87343,443697.952,87443,443597.952,74,76,23,0.23,26.0353317394705,0.793478260869565,NA,0.0135474593096738,0.0975,9.75,5,71.9952063366412,0.676113360323887,4.25,12.1153940054087,0,-2.68499601880709,-3.14198040962219,0.625266197066522
+7676,87343,443597.952,87443,443497.952,75,76,3,0.03,8.47528260664565,0.541666666666667,NA,0.00334510025555872,0.01,1,1,52.6315789473684,1,1,77.5806217193604,74.3303451538086,-2.87379548698664,-3.2357280254364,0.563240105713518
+7677,87343,443497.952,87443,443397.952,76,76,0,NA,NA,NA,NA,0.0614672787916788,0.48,48,1,97.6664438264523,0.978392394122731,48,87.4772569934527,45.276927947998,-3.18531189362208,-3.25073933601379,0.085030201185504
+7678,87343,443397.952,87443,443297.952,77,76,0,NA,NA,NA,NA,0.119939304850996,0.945,94.5,1,99.849005264488,0.873209078229999,94.5,97.2229643423091,58.5234985351562,-3.10478520393372,-3.16152119636536,0.106217071469181
+7679,87343,443297.952,87443,443197.952,78,76,0.75,0.0075,3.27019417631815,0.277777777777778,NA,0.0944362072134391,0.7275,72.75,1,99.0925222972574,0.973164718313402,72.75,55.5053520595905,0,-2.88470824062824,-3.04569983482361,0.169996310391647
+7680,87343,443197.952,87443,443097.952,79,76,17.5,0.035,7.09431292703245,0.319341085271318,17.1622776601684,0.0175594779791481,0.205,20.5,3,88.4085589991588,0.713728041639558,14.5,4.77784184711735,0,-2.58160893122355,-2.65528392791748,0.12799254297562
+7681,87343,443097.952,87443,442997.952,80,76,21.25,0.0193181818181818,3.83257659437617,0.192998163452709,17.3946525138303,0.00814088556640854,0.17,17,5,80.3565785591458,0.767135769970639,7,4.50097426246194,0,-2.51686103641987,-2.63691854476929,0.10157503672949
+7682,87343,442997.952,87443,442897.952,81,76,19.75,0.0658333333333333,12.1317035318181,0.425925925925926,35.6940131083312,0.0229616252054257,0.0875,8.75,2,82.5284527513247,0.773264052905054,7,4.11386408124651,0,-2.63151158889135,-2.87576580047607,0.250912055103751
+7683,87343,442897.952,87443,442797.952,82,76,56.25,0.28125,19.8061144496723,0.546590909090909,25,-0.0702056257247204,0.03,3,1,74.8763016215986,1,3,33.6772365570068,25,-2.69081565737724,-2.94555020332336,0.386435472386985
+7684,87343,442797.952,87443,442697.952,83,76,5.75,0.0115,3.85357358745267,0.135531135531136,17.0684033130621,-0.0352604369692199,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,52.4483669825963,46.0977210998535,-2.44514340162277,-2.83565044403076,0.461495858105816
+7685,87343,442697.952,87443,442597.952,84,76,12.75,0.0159375,4.99542405626789,0.236458333333333,24.0230088278765,-0.0311761131696403,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-1.85149888694286,-2.44273090362549,0.527798825048553
+7686,87343,442597.952,87443,442497.952,85,76,39.5,0.131666666666667,11.2003686527958,0.283512544802867,21.5737865166653,-0.00940507741906913,0.12,12,2,83.7764057650598,0.778270509977827,6,0.625,0,-1.38620225588481,-1.74541866779327,0.481746666228767
+7687,87343,442497.952,87443,442397.952,86,76,30.5,0.0338888888888889,4.30411924618197,0.176213322208316,12.8494390024955,0.00775587239877495,0.16,16,3,86.4329459175062,0.883078231292517,12.25,5.71449249982834,0,-1.24208015576005,-1.65551006793976,0.536631077629074
+7688,87343,442397.952,87443,442297.952,87,76,39.25,0.098125,13.6912710245414,0.485851239336874,11.3306188778075,0.0143625819203953,0.13,13,4,78.0657677866157,0.780446855224073,5.75,4.21017734821026,0,-1.71843030055364,-2.06063079833984,0.524143756419039
+7689,87343,442297.952,87443,442197.952,88,76,1.75,0.00875,4.03865694073544,0.233333333333333,80,-0.0216600007858506,0,0,0,NA,NA,0,NA,NA,-2.71179570257664,-3.37564969062805,0.625168907470002
+7690,87343,442197.952,87443,442097.952,89,76,0,NA,NA,NA,NA,-0.0501841831426464,0,0,0,NA,NA,0,NA,NA,-3.61153040329615,-4.09471273422241,0.525572005131352
+7691,87343,442097.952,87443,441997.952,90,76,0,NA,NA,NA,NA,-0.022809346612521,0,0,0,NA,NA,0,NA,NA,-3.71981058518092,-4.16807317733765,0.485763585203404
+7692,87343,441997.952,87443,441897.952,91,76,17.5,0.021875,4.87453305879165,0.25,10.8852549156242,0.00245809341982749,0.3075,30.75,1,95.7718985824481,0.941720224700911,30.75,3.04758385138783,0,-2.9963556677103,-3.8910870552063,0.559015585710907
+7693,87343,441897.952,87443,441797.952,92,76,64.75,0.6475,37.4646842847744,0.765122265122265,NA,0.0346739179920951,0.3125,31.25,2,92.2954495184537,0.859030837004405,24.75,1.69941125488281,0,-1.95332617064317,-2.64310169219971,1.06751888247759
+7694,87343,441797.952,87443,441697.952,93,76,49.25,0.123125,13.2432009199884,0.353945412064571,10,0.0159891603728829,0.15,15,8,70.4145565598467,0.649321266968326,4.75,2.59408251444499,0,-0.663898324943148,-1.9726437330246,0.900179369692951
+7695,87343,441697.952,87443,441597.952,94,76,73.5,0.3675,21.210494798348,0.603877314814815,10,0.0320662071564584,0.4325,43.25,4,94.2447641155587,0.784569069089804,36.25,1.34846399560829,0,-0.388258176855743,-0.797348141670227,0.426395284948977
+7696,87343,441597.952,87443,441497.952,95,76,66.5,0.3325,26.0590696301071,0.797148569023569,10,0.0905696979598724,0.79,79,1,99.3416426267051,0.896132949824225,79,1.54857686199719,0,-0.176830074517056,-0.646496891975403,0.471097123477955
+7697,87343,441497.952,87443,441397.952,96,76,65.25,0.163125,12.3491067429742,0.391963515553399,10.5901699437495,0.0615883567095443,0.635,63.5,2,98.3411878297721,0.810061010705652,63,1.28092653169407,0,-0.433588102304687,-1.94516599178314,1.03910533916925
+7698,87343,441397.952,87443,441297.952,97,76,51.25,0.170833333333333,11.8133916838314,0.297854785478548,29.9774318500456,0.0167427369511097,0.285,28.5,2,94.5188495595873,0.911738746690203,28,0.87719298245614,0,-2.27391838282347,-3.59501218795776,1.27256262643813
+7699,87343,441297.952,87443,441197.952,98,76,62.75,0.6275,34.4860356789353,0.872509960159363,NA,-0.0606698123574461,0.0325,3.25,1,76.0684107249879,1,3.25,0.769230769230769,0,-3.08895220359166,-4.06596279144287,1.09039799367916
+7700,87343,441197.952,87443,441097.952,99,76,12.3684210526316,0.0235,9.12748008786798,0.321140350877193,13.128990204492,-0.162720876950771,0,0,0,NA,NA,0,NA,NA,-2.40462335944176,-4.1093053817749,1.78854726046531
+7701,87443,451097.952,87543,450997.952,0,77,13.5,0.0192857142857143,4.54024566993109,0.261776753712238,20.298412537697,0.0053042173365975,0.0475,4.75,3,70.2359451412428,0.710381029957462,3.75,5.44708121450324,0,-3.43978706995646,-3.5289294719696,0.12784785188286
+7702,87443,450997.952,87543,450897.952,1,77,13.5,0.015,4.92270591563238,0.200980392156863,14.8063644152995,-0.000393019634557277,0.0025,0.25,1,0,NA,0.25,5,5,-3.63810628652573,-3.73923254013062,0.114121970131903
+7703,87443,450897.952,87543,450797.952,2,77,27.5,0.06875,12.0873410378567,0.382135225885226,11.1803398874989,-0.00113805275614141,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,10.2051760355632,5,-3.80512152777778,-3.86006164550781,0.0867236698644999
+7704,87443,450797.952,87543,450697.952,3,77,10.75,0.0153571428571429,5.2363410919299,0.201904761904762,16.6450627498892,0.00927572486529698,0.04,4,2,74.2500702543702,0.826388888888889,3.75,0.625,0,-3.90757670005163,-3.93706750869751,0.042338875413574
+7705,87443,450697.952,87543,450597.952,4,77,8.25,0.00589285714285714,2.66251750865649,0.104166666666667,12.5332239115458,0.012986306763205,0.0675,6.75,1,85.0052537126447,0.825425525282125,6.75,7.19695027669271,0,-3.93084888988071,-3.93796157836914,0.0122784195177376
+7706,87443,450597.952,87543,450497.952,5,77,5.25,0.00875,3.92971274219921,0.201851851851852,11.6739725102043,0.00586886966229486,0,0,0,NA,NA,0,NA,NA,-3.92186107238134,-3.93893790245056,0.0216105004587121
+7707,87443,450497.952,87543,450397.952,6,77,26.75,0.0382142857142857,10.132219746783,0.385249274534989,12.1491192944608,0.00237859656564524,0.1125,11.25,3,84.0807996006102,0.792438843587843,9.75,2.6285393608941,0,-3.92886161804199,-3.96356964111328,0.0515132314931013
+7708,87443,450397.952,87543,450297.952,7,77,12.5,0.0113636363636364,4.08604084374579,0.158730158730159,17.0299940649884,0.0135675522283054,0.13,13,5,79.0521588481821,0.767531964354901,8,13.4664488205543,0,-3.91370910406113,-4.05814123153687,0.248710563214902
+7709,87443,450297.952,87543,450197.952,8,77,52,0.13,16.5184249747946,0.508010204081633,10.2950849718747,0.0341890804447758,0.3675,36.75,4,91.011162174242,0.753148096448565,20.25,2.96641752022464,0,-3.93549452887641,-4.175461769104,0.503210156002253
+7710,87443,450197.952,87543,450097.952,9,77,50.25,0.25125,18.9950073430508,0.469849246231156,11.1803398874989,0.0539807486943027,0.5425,54.25,1,98.1174291231355,0.88097170372775,54.25,2.4919562801238,0,-4.02206707000732,-4.46417903900146,0.794898295679404
+7711,87443,450097.952,87543,449997.952,10,77,0,NA,NA,NA,NA,-0.0146202546077257,0,0,0,NA,NA,0,NA,NA,-4.92271117369334,-5,0.39413708694037
+7712,87443,449997.952,87543,449897.952,11,77,0,NA,NA,NA,NA,-0.0293878031682107,0,0,0,NA,NA,0,NA,NA,-5,-5,3.9756933518294e-16
+7713,87443,449897.952,87543,449797.952,12,77,0,NA,NA,NA,NA,-0.0373050248920481,0.0025,0.25,1,0,NA,0.25,10,10,-5,-5,0.075851785992443
+7714,87443,449797.952,87543,449697.952,13,77,27.25,0.0908333333333333,11.0802335849839,0.259958071278826,15.2704627669473,0.0224729562211724,0.3125,31.25,3,91.5008109862029,0.82058470164197,21.75,1.97165071105957,0,-4.6033329433865,-5,0.430908710190844
+7715,87443,449697.952,87543,449597.952,14,77,47.75,0.119375,16.7003590047256,0.523947945041009,14.6040481324094,0.0855365596781485,0.83,83,1,99.48609157949,0.662257247396567,83,2.87292848724917,0,-4.49464639027913,-4.5530858039856,0.0875243138679547
+7716,87443,449597.952,87543,449497.952,15,77,20.25,0.03375,6.65899585224862,0.170893719806763,11.6739725102043,0.0380457343728631,0.4675,46.75,1,97.5655534302407,0.924014220195935,46.75,3.64782355813419,0,-4.68704430262248,-4.77690458297729,0.140147243244213
+7717,87443,449497.952,87543,449397.952,16,77,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.0516672250517877,0.0025,0.25,1,0,NA,0.25,39.0512504577637,39.0512504577637,-4.91884597142537,-5.05238151550293,0.165296235764853
+7718,87443,449397.952,87543,449297.952,17,77,0,NA,NA,NA,NA,-0.132159737758338,0,0,0,NA,NA,0,NA,NA,-5.16323248545329,-5.22105550765991,0.117122034157044
+7719,87443,449297.952,87543,449197.952,18,77,0,NA,NA,NA,NA,-0.109937109501043,0,0,0,NA,NA,0,NA,NA,-5.30219248930613,-5.33767414093018,0.0541466724269797
+7720,87443,449197.952,87543,449097.952,19,77,0,NA,NA,NA,NA,-0.0434006283894996,0,0,0,NA,NA,0,NA,NA,-5.26458851496379,-5.3338794708252,0.145259514693782
+7721,87443,449097.952,87543,448997.952,20,77,29.5,0.1475,15.1121970872337,0.331908831908832,10,0.0240097842855312,0.2175,21.75,4,88.4611325694417,0.835102545604452,17.25,3.68312686613236,0,-5.04136069615682,-5.25124073028564,0.38340791896135
+7722,87443,448997.952,87543,448897.952,21,77,67.75,0.33875,27.291715459878,0.814526305571734,10,0.0417112975360294,0.28,28,5,87.2620146075245,0.793729372937294,16,5.8885361467089,0,-4.89449377854665,-5.07192707061768,0.338090996338311
+7723,87443,448897.952,87543,448797.952,22,77,55.75,0.139375,12.7739651190127,0.513188883655205,10,0.0172723765944829,0.2375,23.75,6,85.5196493011941,0.737704918032787,17.75,3.88010500857705,0,-4.86029672622681,-4.98537731170654,0.221885136847911
+7724,87443,448797.952,87543,448697.952,23,77,90.25,0.45125,18.4645659956679,0.444907407407407,11.1803398874989,0.0738332921173424,0.7425,74.25,3,97.9417365861828,0.736005696719176,69.75,0.576475432424834,0,-4.42656536897023,-4.82200622558594,0.620705627445373
+7725,87443,448697.952,87543,448597.952,24,77,34.75,0.086875,10.141427787145,0.369598214285714,13.4958640941704,0.0204712185644894,0.4725,47.25,1,97.606389816281,0.967501692620176,47.25,3.09243820836304,0,-3.27050216992696,-3.74965929985046,0.736767971508385
+7726,87443,448597.952,87543,448497.952,25,77,0.25,0.0025,0,0,NA,-0.0465284734749309,0,0,0,NA,NA,0,NA,NA,-2.45250199238459,-2.7930326461792,0.350780325460239
+7727,87443,448497.952,87543,448397.952,26,77,6.5,0.0216666666666667,6.51571378781219,0.185846560846561,26.0874597374975,-0.0245028471211117,0,0,0,NA,NA,0,NA,NA,-2.04384974638621,-2.1436493396759,0.199613740342805
+7728,87443,448397.952,87543,448297.952,27,77,14.25,0.0285,6.14079942813654,0.131851851851852,10.7082039324994,0.0175094684309261,0.1575,15.75,4,81.078106492305,0.805772862152684,10.25,21.8692438337538,5,-1.6498476366202,-1.83887279033661,0.287417704336307
+7729,87443,448297.952,87543,448197.952,28,77,0.25,0.0025,0,0,NA,0.0178241049574081,0.02,2,2,52.9470541148176,0.693877551020408,1.25,38.7373280525208,31.6227760314941,-1.13237493567997,-1.2367856502533,0.205544627009754
+7730,87443,448197.952,87543,448097.952,29,77,0,NA,NA,NA,NA,-0.0191123108936745,0.0025,0.25,1,0,NA,0.25,160.312194824219,160.312194824219,-1.01490551729997,-1.08342289924622,0.102235051969881
+7731,87443,448097.952,87543,447997.952,30,77,0,NA,NA,NA,NA,-0.017576963888132,0.0075,0.75,1,44.4894453484604,1,0.75,185.687723795573,183.371200561523,-1.11270066102346,-1.22910690307617,0.162314154886496
+7732,87443,447997.952,87543,447897.952,31,77,0,NA,NA,NA,NA,0.022307256022363,0.31,31,1,95.8102472617487,0.922705314009662,31,202.801851703275,183.575592041016,-1.34854467709859,-1.44913911819458,0.198581437677058
+7733,87443,447897.952,87543,447797.952,32,77,0,NA,NA,NA,NA,0.0473965824193147,0.41,41,4,95.0401802286867,0.848467841508587,39,150.442625836628,93.4077072143555,-1.43774697184563,-1.52609300613403,0.151301043176798
+7734,87443,447797.952,87543,447697.952,33,77,1.25,0.0125,4,0.4,NA,-0.0419162235240219,0.0075,0.75,1,44.4894453484604,1,0.75,39.3727963765462,36.0555114746094,-1.58013194137149,-1.64431440830231,0.113853322462517
+7735,87443,447697.952,87543,447597.952,34,77,0.5,0.005,2.5,0.166666666666667,NA,-0.0522299250151264,0.0875,8.75,4,74.3858032596207,0.659896079357582,5.25,29.4175587790353,5,-1.69772964715958,-1.75941050052643,0.0741803023572142
+7736,87443,447597.952,87543,447497.952,35,77,8.25,0.01375,4.4656479825179,0.194556677890011,20.4086793692009,0.0145260616234555,0.1625,16.25,5,83.0140523873285,0.735834103817197,11.25,10.8694257882925,0,-1.7531933122211,-1.78544306755066,0.0491999571851225
+7737,87443,447497.952,87543,447397.952,36,77,3.25,0.00464285714285714,1.00858761369043,0.0952380952380952,14.2564063825034,0.00468151087643037,0.06,6,5,59.1248502972104,0.58006718924972,2.25,6.68207295735677,0,-1.76262643933296,-1.80055785179138,0.0549203913687075
+7738,87443,447397.952,87543,447297.952,37,77,3.5,0.0116666666666667,6.06936127796352,0.188888888888889,10.3934466291663,0.000409435747169482,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,4.07650484357561,0,-1.75989821222093,-1.80058360099792,0.0544769068517625
+7739,87443,447297.952,87543,447197.952,38,77,4.5,0.0225,8.58504356656638,0.322222222222222,10,-0.11668591201189,0.05,5,1,81.7256002368443,0.762308998302207,5,2,0,-1.69335944453875,-1.76384174823761,0.0815520154931786
+7740,87443,447197.952,87543,447097.952,39,77,0,NA,NA,NA,NA,-0.0610380328842621,0.0075,0.75,1,44.4894453484604,1,0.75,94.3646697998047,90.1387786865234,-1.5112319389979,-1.60461854934692,0.171751019980243
+7741,87443,447097.952,87543,446997.952,40,77,0,NA,NA,NA,NA,-0.0244749583560042,0,0,0,NA,NA,0,NA,NA,-1.01679196457068,-1.39624452590942,0.422639656606852
+7742,87443,446997.952,87543,446897.952,41,77,0,NA,NA,NA,NA,-0.0153917634798927,0,0,0,NA,NA,0,NA,NA,-0.616830391188463,-1.06447911262512,0.674573749483181
+7743,87443,446897.952,87543,446797.952,42,77,0,NA,NA,NA,NA,-0.0199059800198302,0,0,0,NA,NA,0,NA,NA,-1.04902933522438,-2.0241425037384,1.22472635968676
+7744,87443,446797.952,87543,446697.952,43,77,3,0.03,12.5954764934289,0.347222222222222,NA,-0.00921936050417571,0,0,0,NA,NA,0,NA,NA,-1.94742968347338,-2.28301882743835,0.769188619427932
+7745,87443,446697.952,87543,446597.952,44,77,4.25,0.0053125,2.04953236834732,0.100694444444444,12.1393628591364,0.0175556322166976,0.225,22.5,2,93.3139844679296,0.935884592266079,22.25,26.0815716001723,0,-2.27843843566047,-2.34047555923462,0.178672087854538
+7746,87443,446597.952,87543,446497.952,45,77,16.25,0.0541666666666667,9.84228945991834,0.260752688172043,31.7205928892677,-0.00927410811285881,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,14.2694316440158,0,-2.33414157231649,-2.36275911331177,0.0485143762024564
+7747,87443,446497.952,87543,446397.952,46,77,0.5,0.005,2.5,0.166666666666667,NA,0.00543543148784011,0.0275,2.75,1,73.5251216233933,1,2.75,36.993504264138,29.1547584533691,-2.35791654056973,-2.37774920463562,0.0392995325607667
+7748,87443,446397.952,87543,446297.952,47,77,0,NA,NA,NA,NA,0.0154445847329589,0.2625,26.25,1,94.9905255479102,0.95695453322572,26.25,58.1667081560407,32.0156211853027,-2.38702672719955,-2.41825723648071,0.0342163847874177
+7749,87443,446297.952,87543,446197.952,48,77,5,0.0125,3.80393826561015,0.21482683982684,30.1384628453435,0.0609109477140009,0.465,46.5,2,97.0428498328112,0.891327972179961,46,28.9175115298199,0,-2.40847810109456,-2.42379975318909,0.0247755423176046
+7750,87443,446197.952,87543,446097.952,49,77,46,0.115,15.2994774114583,0.4765625,11.25,0.00595231314362621,0.015,1.5,3,33.091239449605,0.274836838288615,0.75,1.66666666666667,0,-2.44533719619115,-2.47459292411804,0.0393869454425628
+7751,87443,446097.952,87543,445997.952,50,77,3.25,0.0108333333333333,2.59729525640503,0.171717171717172,47.1317562007282,-0.0696545170928584,0.0025,0.25,1,0,NA,0.25,5,5,-2.4711049662696,-2.48510575294495,0.0592884271457342
+7752,87443,445997.952,87543,445897.952,51,77,2.75,0.0034375,0.625,0.03125,21.9133731640129,-0.0843651806483103,0,0,0,NA,NA,0,NA,NA,-2.34498375654221,-2.46857666969299,0.220312800646062
+7753,87443,445897.952,87543,445797.952,52,77,52,0.173333333333333,15.6537968348647,0.623491912965597,12.67591879244,0.0105848673168475,0.1475,14.75,4,80.0419568674648,0.781496176183083,8,12.8994425757457,0,-2.07020767529806,-2.29237771034241,0.200197779607348
+7754,87443,445797.952,87543,445697.952,53,77,59.5,0.595,33.4478239776977,0.797619047619048,NA,-0.000816146424331237,0.1,10,5,69.5523410448476,0.66832504145937,4.25,1.22855339050293,0,-2.17872782548269,-2.35026884078979,0.270982513928328
+7755,87443,445697.952,87543,445597.952,54,77,41.75,0.0521875,6.42797845138304,0.267176870748299,11.1690509954173,0.0117181967421493,0.0875,8.75,3,78.9683566543029,0.811053377420879,6.75,0.428571428571429,0,-2.18921873304579,-2.3374981880188,0.216372206262318
+7756,87443,445597.952,87543,445497.952,55,77,13.25,0.0189285714285714,6.11364221429927,0.256016800659658,22.1889250730328,-0.00475911182538766,0.035,3.5,2,65.3750124249461,0.689119170984456,2,3.00507627214704,0,-2.37678111924065,-2.53687405586243,0.215619327320421
+7757,87443,445497.952,87543,445397.952,56,77,27.25,0.13625,24.731743361053,0.642881944444444,11.1803398874989,-0.0233409984805621,0.09,9,1,87.719298245614,0.835164835164835,9,1.25,0,-2.60769319534302,-2.74366879463196,0.155027175064856
+7758,87443,445397.952,87543,445297.952,57,77,0,NA,NA,NA,NA,-0.0147918558171659,0.1275,12.75,2,89.2787925670875,0.868260712050851,12.5,98.2169339049096,82.006103515625,-2.68943285942078,-2.76023483276367,0.0895616059632936
+7759,87443,445297.952,87543,445197.952,58,77,4,0.02,5.95703415407744,0.472222222222222,25.4950975679639,0.00977980611816747,0.0825,8.25,3,77.921393922917,0.737612271672217,6,26.6903717156613,0,-2.55121686061223,-2.67702555656433,0.197303443942874
+7760,87443,445197.952,87543,445097.952,59,77,9,0.0225,3.51370943924545,0.227864583333333,37.5,-0.0269008384190602,0.035,3.5,2,65.3750124249461,0.792746113989637,2,4.5409916469029,0,-1.90126457479265,-2.17142081260681,0.547314876288208
+7761,87443,445097.952,87543,444997.952,60,77,78.5,0.785,36.77311491287,0.863057324840764,NA,0.0813523213780718,0.8575,85.75,1,99.5794816088838,0.718431882174572,85.75,1.37531814908842,0,-1.17150139311949,-1.58042562007904,0.847786353940373
+7762,87443,444997.952,87543,444897.952,61,77,19,0.19,27.8346206578408,0.640350877192982,NA,0.0210206913343245,0.2625,26.25,1,94.9905255479102,0.870863599677159,26.25,1.89659176781064,0,-1.88286496533288,-2.21720218658447,0.858783391002054
+7763,87443,444897.952,87543,444797.952,62,77,0.25,0.0025,0,0,NA,-0.00206287585802784,0,0,0,NA,NA,0,NA,NA,-2.37546801567078,-2.62178945541382,0.285170234613494
+7764,87443,444797.952,87543,444697.952,63,77,1.25,0.00625,2.17471115988337,0.145833333333333,15,0.00141215590077081,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,27.6929550170898,20,-2.67525415950351,-2.81277465820312,0.203560827633576
+7765,87443,444697.952,87543,444597.952,64,77,0,NA,NA,NA,NA,-0.0648876666623619,0,0,0,NA,NA,0,NA,NA,-2.87270857890447,-3.02768611907959,0.188300690364318
+7766,87443,444597.952,87543,444497.952,65,77,3.25,0.0325,18.1933210774743,0.230769230769231,NA,0.089151009668567,0.805,80.5,1,99.3970714465752,0.949392712550608,80.5,34.8628772474964,0,-3.08783009317186,-3.26984024047852,0.224830973255627
+7767,87443,444497.952,87543,444397.952,66,77,6.25,0.0125,3.48320123505905,0.192592592592593,26.2058728081089,0.175871150172316,0.945,94.5,1,99.849005264488,0.797134525167998,94.5,25.0837663922991,0,-3.3279025554657,-3.63999056816101,0.37949459790709
+7768,87443,444397.952,87543,444297.952,67,77,1.5,0.015,7.5,0.277777777777778,NA,0.257493139524013,1,100,1,100,NA,100,57.6074367809296,0,-3.44375973939896,-3.69197201728821,0.413602514181871
+7769,87443,444297.952,87543,444197.952,68,77,0,NA,NA,NA,NA,0.15709375159815,1,100,1,100,NA,100,112.926909790039,65.192024230957,-3.50678846571181,-3.70217561721802,0.323206725684224
+7770,87443,444197.952,87543,444097.952,69,77,0,NA,NA,NA,NA,0.0985285475384444,0.95,95,1,99.8632718311308,0.750346740638003,95,97.4874233747783,50,-3.89497965574265,-4.41048669815063,0.434878409263412
+7771,87443,444097.952,87543,443997.952,70,77,0,NA,NA,NA,NA,0.072732571673987,0.7275,72.75,1,99.0925222972574,0.926202975361857,72.75,92.4382284367617,53.8516464233398,-4.52229038874308,-4.69879627227783,0.29857006899584
+7772,87443,443997.952,87543,443897.952,71,77,6.25,0.0104166666666667,3.71731954358958,0.293055555555556,13.5520046041303,0.00827046585182529,0.2025,20.25,1,93.5672514619883,0.878091257401602,20.25,10.7513420670121,0,-4.51829846700033,-4.73969507217407,0.330834675680126
+7773,87443,443897.952,87543,443797.952,72,77,26,0.0325,4.63729209077698,0.236159003831418,16.458880110341,0.0405824309442323,0.5975,59.75,1,98.4542502383879,0.938860866786166,59.75,7.78241543789788,0,-4.14561348491245,-4.44875431060791,0.509297892461348
+7774,87443,443797.952,87543,443697.952,73,77,64.25,0.32125,21.1289127323172,0.64336917562724,15,0.0416147442147849,0.5675,56.75,3,97.4464556691254,0.868814823924897,55.75,0.198237885462555,0,-2.98263560732206,-4.32955503463745,1.35147302975531
+7775,87443,443697.952,87543,443597.952,74,77,38.25,0.095625,10.6549016732481,0.510943486590038,30.0581920971667,0.016410454319921,0.365,36.5,3,94.6427010798896,0.899731634669262,34.75,1.14065533468168,0,-1.60222641626994,-1.80043172836304,0.814866721751078
+7776,87443,443597.952,87543,443497.952,75,77,46.5,0.465,34.2925026417132,0.705197132616488,NA,0.0472519232612103,0.5875,58.75,2,97.9836218207782,0.784634499896459,58,3.19427676099412,0,-2.6811415652434,-3.55119180679321,1.00600960513646
+7777,87443,443497.952,87543,443397.952,76,77,21.5,0.215,33.0430857107844,0.614341085271318,NA,0.0515948060360097,0.6925,69.25,1,98.9385077039357,0.937460913070669,69.25,11.8899441935956,0,-3.08115259806315,-3.14919376373291,0.153596516236128
+7778,87443,443397.952,87543,443297.952,77,77,28,0.28,25.9888750429128,0.84375,NA,0.0758029215130955,0.94,94,1,99.8346250196906,0.579242636746143,94,26.0899858373277,0,-3.05997657775879,-3.11957621574402,0.0929637334707944
+7779,87443,443297.952,87543,443197.952,78,77,2.75,0.0275,6.26454774483035,0.621212121212121,NA,0.166503379317001,0.9825,98.25,1,99.9533339757335,0.387207966296436,98.25,44.8625698914661,0,-2.86531213919322,-3.01876473426819,0.156268267337423
+7780,87443,443197.952,87543,443097.952,79,77,14,0.14,19.7336380426592,0.761904761904762,NA,0.189594409102574,0.925,92.5,2,99.5366305846618,0.904897765097479,92.25,36.2987036215292,0,-2.63981813854641,-2.69350218772888,0.12944296494081
+7781,87443,443097.952,87543,442997.952,80,77,23,0.0575,7.40804230207689,0.359053497942387,16.1803398874989,0.0906877591669036,0.66,66,3,96.2652955202374,0.845513963161022,55,20.3293028022304,0,-2.68943605820338,-2.88268208503723,0.223125389504997
+7782,87443,442997.952,87543,442897.952,81,77,34.75,0.17375,20.3752872102523,0.699824143408214,49.2442890089805,-0.00041949083803047,0.175,17.5,4,81.7823012702508,0.773343187977334,10,10.7540166309902,0,-2.89658363660177,-2.97170925140381,0.158748930032566
+7783,87443,442897.952,87543,442797.952,82,77,17.5,0.175,18.3624969279386,0.804761904761905,NA,0.0107738835290365,0.22,22,3,88.6233947163119,0.828515433610975,14,31.1123842326078,14.1421356201172,-2.99947998921076,-3.02793312072754,0.0660262723057743
+7784,87443,442797.952,87543,442697.952,83,77,0.25,0.0025,0,0,NA,-0.0195182250778907,0.0525,5.25,2,76.654033574152,0.901055408970976,4.75,59.6519039699009,49.2442893981934,-2.8904550075531,-2.98972463607788,0.181131957892598
+7785,87443,442697.952,87543,442597.952,84,77,17.25,0.1725,26.1761515152007,0.647342995169082,NA,0.000242097358641331,0.065,6.5,3,73.3352801245385,0.739141776444502,4.75,9.20335476215069,0,-2.54146460692088,-2.8131844997406,0.382474139920176
+7786,87443,442597.952,87543,442497.952,85,77,12.75,0.06375,17.0663597651669,0.525678294573643,47.169905660283,-0.0293300467731751,0.02,2,2,56.0496280993022,0.591836734693878,1.5,40.0956892967224,25,-2.13340916898516,-2.50723195075989,0.524214115158252
+7787,87443,442497.952,87543,442397.952,86,77,3.5,0.0175,5.31395910423876,0.224358974358974,75.6637297521078,0.050763607986994,0.58,58,1,98.352293007383,0.92851644121852,58,38.6990984390522,0,-2.34800879160563,-3.13745212554932,1.10928632359194
+7788,87443,442397.952,87543,442297.952,87,77,11.5,0.0383333333333333,10.7194931993026,0.397822822822823,27.3786397729356,-0.0273325960530815,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,2.43872397286551,0,-2.14463535944621,-3.64977359771729,1.68317980132331
+7789,87443,442297.952,87543,442197.952,88,77,26,0.13,20.5561383947954,0.699652777777778,55.9016994374947,-0.024048734678945,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,0,0,-2.36680366595586,-3.12893271446228,1.04875582901438
+7790,87443,442197.952,87543,442097.952,89,77,19.25,0.0641666666666667,10.8072155926337,0.262762762762763,19.0895720634121,-0.0138344891963061,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,4.34912618001302,0,-3.53105703989665,-4.09759044647217,0.72511967530499
+7791,87443,442097.952,87543,441997.952,90,77,2.25,0.0225,7.15722398989455,0.444444444444444,NA,-0.0110243287133198,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,55.6526445661272,50,-3.96547889709473,-4.22729682922363,0.484249069905347
+7792,87443,441997.952,87543,441897.952,91,77,15.75,0.1575,20.3491106226517,0.664021164021164,NA,0.0372295622719093,0.325,32.5,3,89.2149971273742,0.806219721831536,14.5,29.4931863931509,0,-3.15222982565562,-4.06670331954956,0.976153941651159
+7793,87443,441897.952,87543,441797.952,92,77,83,0.83,36.9487607570716,0.831325301204819,NA,-0.065234857521682,0.03,3,1,74.8763016215986,0.757428744693754,3,2.25592231750488,0,-1.04677827490701,-1.84327971935272,1.07998575642747
+7794,87443,441797.952,87543,441697.952,93,77,67.75,0.6775,39.3208501181677,0.725707257072571,NA,-0.0049371996238915,0.115,11.5,6,68.2044949394597,0.623352165725047,3.75,1.6304347826087,0,-0.0686684565929075,-0.602234303951263,0.416022522843616
+7795,87443,441697.952,87543,441597.952,94,77,55.75,0.139375,13.7962924038729,0.46758589407928,11.25,0.0633868909057492,0.68,68,3,97.3988048314619,0.779843444227006,62.75,2.41261170892154,0,-0.0273316022422579,-0.281584560871124,0.391466355259122
+7796,87443,441597.952,87543,441497.952,95,77,68,0.34,22.2384938195788,0.467661691542289,10,0.0637747357525223,0.6825,68.25,2,98.1022041440963,0.735482283464567,66,1.1993641276936,0,-0.929935355981191,-1.86966800689697,0.948601204526149
+7797,87443,441497.952,87543,441397.952,96,77,72.25,0.180625,9.37936119593875,0.248245614035088,12.5,0.0502286081279453,0.55,55,2,97.6538015107445,0.929539295392954,54.5,1.14739275845614,0,-2.10750741097662,-2.83659291267395,1.40720541682901
+7798,87443,441397.952,87543,441297.952,97,77,39.25,0.098125,9.36753857616939,0.370138888888889,22.3309134899987,-0.0361596775379257,0,0,0,NA,NA,0,NA,NA,-3.45146884520849,-3.84841537475586,0.558647857269009
+7799,87443,441297.952,87543,441197.952,98,77,14.25,0.1425,16.7941871087892,0.780701754385965,NA,-0.200720182480291,0,0,0,NA,NA,0,NA,NA,-4.12147588200039,-4.24526739120483,0.261661249946738
+7800,87443,441197.952,87543,441097.952,99,77,0.263157894736842,0.0025,0,0,NA,-0.10370697067905,0,0,0,NA,NA,0,NA,NA,-3.84446118275324,-4.26746320724487,0.587000896206288
+7801,87543,451097.952,87643,450997.952,0,78,19.5,0.01625,4.03925754730054,0.171427323549965,15.3394658714051,0.00863123331746465,0.03,3,4,48.88668404307,0.454214675560946,1.5,3.94946193695068,0,-3.38833928108215,-3.45930504798889,0.0935494320701557
+7802,87543,450997.952,87643,450897.952,1,78,16.5,0.015,4.30715333395602,0.187962962962963,13.4317378115742,0.00609907929088877,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,3.37009707364169,0,-3.55828036367893,-3.67413592338562,0.113653227654637
+7803,87543,450897.952,87643,450797.952,2,78,31.25,0.0625,8.67335206696542,0.441433239962652,13.2360679774998,-0.00774941695805865,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-3.72399834791819,-3.81005215644836,0.104616329534102
+7804,87543,450797.952,87643,450697.952,3,78,17,0.0242857142857143,10.3119949453043,0.168779761904762,14.4239180762414,0.00640761685392135,0.0325,3.25,5,43.874474129931,0.310938845822567,1.25,8.13160852285532,0,-3.84415125846863,-3.90954518318176,0.0748197840815931
+7805,87543,450697.952,87643,450597.952,4,78,15.25,0.0117307692307692,4.79973406430756,0.1590113103271,10.8171583836531,0.00723502378223202,0.02,2,2,52.6315789473684,0.693877551020408,1,4.52665042877197,0,-3.94814503192902,-4.0021014213562,0.0563633643997463
+7806,87543,450597.952,87643,450497.952,5,78,25.25,0.0420833333333333,9.69303559073901,0.339472400465308,11.7741585037433,0.00429636211155639,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,5.6502815246582,0,-3.98726807534695,-4.03957271575928,0.0562248808235828
+7807,87543,450497.952,87643,450397.952,6,78,50.5,0.101,8.05850832642118,0.232918848167539,15.7858444539843,-0.0117345833329455,0.105,10.5,2,82.4490886656591,0.811157447478165,6.75,0,0,-3.83814305067062,-3.93897652626038,0.170960055642909
+7808,87543,450397.952,87643,450297.952,7,78,24.25,0.0220454545454545,3.27979461664294,0.22000962000962,15.1984974602135,-0.00506523127042783,0.0225,2.25,3,45.5981818708485,0.48849104859335,1,4.57559331258138,0,-3.42023883759975,-3.76427006721497,0.366410282388235
+7809,87543,450297.952,87643,450197.952,8,78,69.5,0.231666666666667,12.9358461015174,0.343133279264666,10,0.0430780935163057,0.4775,47.75,5,91.8660062720933,0.76211715730003,32.5,1.24756162953002,0,-2.90829475720723,-3.31083917617798,0.468507385952597
+7810,87543,450197.952,87643,450097.952,9,78,58.75,0.29375,28.4457639586739,0.721929968765412,14.142135623731,0.0825681159296801,0.775,77.5,1,99.2846122710835,0.840182648401827,77.5,2.20010788209977,0,-2.84999865293503,-3.16720628738403,0.548966697333828
+7811,87543,450097.952,87643,449997.952,10,78,16.75,0.1675,19.4070254824816,0.751243781094527,NA,-0.0259460204487891,0.01,1,2,34.5233986084855,0.494949494949495,0.75,5.59016990661621,0,-4.46806466579437,-5,0.935987115187985
+7812,87543,449997.952,87643,449897.952,11,78,0,NA,NA,NA,NA,-0.0394768915977329,0,0,0,NA,NA,0,NA,NA,-5,-5,0.032826324574786
+7813,87543,449897.952,87643,449797.952,12,78,13.5,0.135,16.7383546263535,0.771604938271605,NA,0.00584838115915772,0.2075,20.75,1,93.7090252642431,0.948496748857272,20.75,2.81358321316271,0,-4.87268686294556,-5,0.353363535647808
+7814,87543,449797.952,87643,449697.952,13,78,56.25,0.140625,12.5975659501929,0.51723190794229,10.2950849718747,0.0642559742656886,0.625,62.5,2,97.3917050897527,0.817663817663818,60,1.35442698669434,0,-4.42939249674479,-5,0.495233396647027
+7815,87543,449697.952,87643,449597.952,14,78,51.25,0.1025,11.4720289218726,0.487335329341317,15.2360679774998,0.118641672743543,0.9275,92.75,2,99.3171753541337,0.607593074017756,91.75,5.17863877185914,0,-4.43066602945328,-4.75038242340088,0.210978835397068
+7816,87543,449597.952,87643,449497.952,15,78,52,0.0866666666666667,11.1624760019398,0.451641431952477,11.380711874577,0.0946972000226378,0.9475,94.75,1,99.8561526638156,0.496655407642889,94.75,3.2207253639805,0,-4.45997325579325,-4.62957668304443,0.225434581715212
+7817,87543,449497.952,87643,449397.952,16,78,17.75,0.08875,12.2640124550766,0.454248366013072,25,0.0167290301129287,0.295,29.5,1,95.572898758965,0.946974216212633,29.5,2.82810431011653,0,-4.57501727342606,-4.95597124099731,0.36328331584471
+7818,87543,449397.952,87643,449297.952,17,78,0,NA,NA,NA,NA,-0.121758491233777,0,0,0,NA,NA,0,NA,NA,-5.02652422587077,-5.19969987869263,0.290154759102472
+7819,87543,449297.952,87643,449197.952,18,78,0,NA,NA,NA,NA,-0.0464522205786307,0,0,0,NA,NA,0,NA,NA,-5.17820116877556,-5.28129911422729,0.156944592560279
+7820,87543,449197.952,87643,449097.952,19,78,11.5,0.115,16.5541762417361,0.623188405797101,NA,0.0121125874797144,0.18,18,1,92.8577757686571,0.903975417706933,18,4.44979945818583,0,-4.86203042666117,-5.20839595794678,0.677618137768462
+7821,87543,449097.952,87643,448997.952,20,78,75.75,0.1515,10.8172594072454,0.318460760955888,10,0.0448368994472548,0.355,35.5,4,90.5905990421591,0.791293977340489,22.75,1.65115923277089,0,-3.83093112707138,-4.8077564239502,1.02188299747514
+7822,87543,448997.952,87643,448897.952,21,78,77.25,0.193125,11.4100021052984,0.348894887412329,10.5901699437495,0.0869111175462604,0.93,93,1,99.8055173961557,0.817629179331307,93,0.997884955457462,0,-3.65837578475475,-4.54424095153809,1.03866308461185
+7823,87543,448897.952,87643,448797.952,22,78,70.5,0.17625,13.7733495157226,0.507892655854612,11.3306188778075,0.0672391676114057,0.7675,76.75,1,99.2554721522595,0.851173866130893,76.75,1.00813509664629,0,-3.87929936250051,-4.5702338218689,0.833129611310868
+7824,87543,448797.952,87643,448697.952,23,78,54.25,0.135625,11.2782855959779,0.46963668887244,16.1803398874989,0.0613900627172552,0.485,48.5,5,91.1080000815063,0.703344120819849,27.5,5.17866658672844,0,-3.60128271579742,-4.43911695480347,0.670687734838729
+7825,87543,448697.952,87643,448597.952,24,78,35.25,0.3525,36.2085833899001,0.763593380614657,NA,0.000884617640185752,0.16,16,2,86.7617302364669,0.798044217687075,8.5,1.75111043453217,0,-2.73739518721898,-3.07894396781921,0.476231773254123
+7826,87543,448597.952,87643,448497.952,25,78,0.75,0.0025,0,0,26.8900662411503,-0.0274218375919372,0,0,0,NA,NA,0,NA,NA,-2.25839458405972,-2.42940425872803,0.199537116368643
+7827,87543,448497.952,87643,448397.952,26,78,17.25,0.0345,8.1659838972535,0.274022988505747,10.2360679774998,-0.00676058661792922,0.01,1,1,52.6315789473684,0.747474747474748,1,2.5,0,-1.95250902573268,-2.10616397857666,0.233227704775571
+7828,87543,448397.952,87643,448297.952,27,78,1.25,0.0125,5.18030280655468,0.333333333333333,NA,-0.0201760577736741,0.005,0.5,1,30.8308651382582,1,0.5,37.5533809661865,36.0555114746094,-1.50069618225098,-1.7930246591568,0.335184242393656
+7829,87543,448297.952,87643,448197.952,28,78,9.75,0.01625,4.0586913562561,0.118518518518519,10.1967233145832,-0.0262065836297734,0,0,0,NA,NA,0,NA,NA,-1.10710408290227,-1.27893340587616,0.173556753643682
+7830,87543,448197.952,87643,448097.952,29,78,9.25,0.0308333333333333,7.8368279834122,0.120634920634921,16.4288346035568,-0.0140382882422455,0.08,8,2,79.565022038198,0.874581939799331,5.5,15.0581938028336,0,-1.1354647949338,-1.20199143886566,0.0921215452083479
+7831,87543,448097.952,87643,447997.952,30,78,2.25,0.01125,3.1429015606756,0.21875,10,-0.0195320120970973,0.02,2,1,68.0470115164975,0.897959183673469,2,7.94673538208008,0,-1.24121357003848,-1.30142021179199,0.0872872216430542
+7832,87543,447997.952,87643,447897.952,31,78,0,NA,NA,NA,NA,-0.0293171850265935,0,0,0,NA,NA,0,NA,NA,-1.29489815235138,-1.31386339664459,0.0378686155069337
+7833,87543,447897.952,87643,447797.952,32,78,0,NA,NA,NA,NA,-0.0214379736013507,0,0,0,NA,NA,0,NA,NA,-1.29028254747391,-1.46564304828644,0.130796727438259
+7834,87543,447797.952,87643,447697.952,33,78,0,NA,NA,NA,NA,0.0140295468122531,0.15,15,7,78.0346437809969,0.660633484162896,8.75,96.1529141108195,36.4005508422852,-1.42634028196335,-1.60350835323334,0.159065852629769
+7835,87543,447697.952,87643,447597.952,34,78,3.75,0.0375,10.420997635659,0.466666666666667,NA,-0.0132862086603564,0.0725,7.25,4,70.5235197449741,0.678843837816138,3.5,20.756994707831,0,-1.57739992439747,-1.74481701850891,0.162253221047373
+7836,87543,447597.952,87643,447497.952,35,78,5.5,0.00611111111111111,2.77765903791725,0.124074074074074,13.7640132249136,0.0011471852366958,0.095,9.5,3,77.1128479786884,0.701832851004122,4.75,7.80523064261989,0,-1.73655992746353,-1.79898846149445,0.0997886929829054
+7837,87543,447497.952,87643,447397.952,36,78,0,NA,NA,NA,NA,-0.00434076616685161,0,0,0,NA,NA,0,NA,NA,-1.85721375793219,-1.92625820636749,0.0753424637378327
+7838,87543,447397.952,87643,447297.952,37,78,5.5,0.011,4.49909076028279,0.222424242424242,11.7726990347453,-0.00373933252937604,0.01,1,2,30.8308651382582,0.494949494949495,0.5,22.0197010040283,14.1421356201172,-1.91613066196442,-1.98107874393463,0.0802134381165241
+7839,87543,447297.952,87643,447197.952,38,78,5.5,0.00785714285714286,3.10831264506853,0.159391534391534,14.6339111977602,-0.0745279089298128,0,0,0,NA,NA,0,NA,NA,-1.86193218827248,-1.98411989212036,0.14050894294511
+7840,87543,447197.952,87643,447097.952,39,78,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.017822453049921,0,0,0,NA,NA,0,NA,NA,-1.69552930196126,-1.91625916957855,0.257875577958549
+7841,87543,447097.952,87643,446997.952,40,78,0,NA,NA,NA,NA,-0.0232386561093153,0,0,0,NA,NA,0,NA,NA,-1.28520246595144,-1.77529299259186,0.532202478548419
+7842,87543,446997.952,87643,446897.952,41,78,0,NA,NA,NA,NA,-0.00822870162135132,0,0,0,NA,NA,0,NA,NA,-0.649906845763326,-1.32940828800201,0.621372264986082
+7843,87543,446897.952,87643,446797.952,42,78,0,NA,NA,NA,NA,-0.0150177739563014,0,0,0,NA,NA,0,NA,NA,-0.214512919075787,-0.522764384746552,0.484188117346229
+7844,87543,446797.952,87643,446697.952,43,78,6.75,0.0675,27.0935159895197,0.388888888888889,NA,-0.0203355264619313,0,0,0,NA,NA,0,NA,NA,-1.04685397197803,-1.64842522144318,0.868010704036933
+7845,87543,446697.952,87643,446597.952,44,78,0,NA,NA,NA,NA,-0.0232994407667866,0.0125,1.25,1,58.1880425789518,0.594936708860759,1.25,25.9683685302734,25,-1.91890245676041,-2.17165732383728,0.395582511201621
+7846,87543,446597.952,87643,446497.952,45,78,16.25,0.08125,13.5291595717402,0.30078125,25,0.0304239128602163,0.2,20,4,86.3500766314091,0.832746478873239,16,28.3422355413437,10,-2.29989586770535,-2.42849683761597,0.132556048387826
+7847,87543,446497.952,87643,446397.952,46,78,0,NA,NA,NA,NA,-2.94375482189935e-05,0.065,6.5,1,84.6193541959806,0.921742532933351,6.5,43.7114862295297,33.5410194396973,-2.45743783315023,-2.55851149559021,0.102808196305485
+7848,87543,446397.952,87643,446297.952,47,78,0,NA,NA,NA,NA,0.031622499270452,0.565,56.5,1,98.2611567869712,0.934474567941682,56.5,77.064149822809,40,-2.51216441392899,-2.59473299980164,0.0884960437448766
+7849,87543,446297.952,87643,446197.952,48,78,7.5,0.025,5.64263782983144,0.259259259259259,33.9488614614216,0.115322748919207,0.6725,67.25,2,98.5232586362268,0.824654221147305,66.75,25.5561713746932,0,-2.45047163963318,-2.54041218757629,0.0880186544991755
+7850,87543,446197.952,87643,446097.952,49,78,38,0.095,12.0553034892539,0.348515070921986,10.2950849718747,-0.0415418296921234,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0,-2.31590716540813,-2.41348004341125,0.132853153064637
+7851,87543,446097.952,87643,445997.952,50,78,2.25,0.00375,1.25,0.0833333333333333,11.9521812897228,-0.122780465511605,0,0,0,NA,NA,0,NA,NA,-2.28667255242666,-2.45651888847351,0.182304732836821
+7852,87543,445997.952,87643,445897.952,51,78,21,0.07,12.0595477840286,0.390060947022972,10.3934466291663,-0.0521550363593496,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,2.22222222222222,0,-2.25683518499136,-2.44293093681335,0.213141439749675
+7853,87543,445897.952,87643,445797.952,52,78,1.25,0.00416666666666667,1.11111111111111,0.0740740740740741,58.7133550748309,-0.0232615629756765,0.1675,16.75,2,88.9637938040554,0.835733169066502,13.75,29.4662461636671,11.1803398132324,-2.51503165562948,-2.6821870803833,0.33584191773433
+7854,87543,445797.952,87643,445697.952,53,78,0,NA,NA,NA,NA,-0.0674399556723802,0,0,0,NA,NA,0,NA,NA,-2.66738717257977,-2.75286865234375,0.173240178137079
+7855,87543,445697.952,87643,445597.952,54,78,10.25,0.00931818181818182,2.7282496542596,0.174314574314574,12.2238366968775,0.0615389243735956,0.375,37.5,2,94.3293087475385,0.941818181818182,33.25,14.3831757481893,0,-2.59282428026199,-2.71788191795349,0.177597975379839
+7856,87543,445597.952,87643,445497.952,55,78,34.5,0.0383333333333333,5.17187580090887,0.214147480814148,14.1706891748341,-0.0016041325077731,0.195,19.5,4,86.017676421513,0.783958952200918,13.75,3.47607517242432,0,-2.60656881332397,-2.70734119415283,0.119951289019644
+7857,87543,445497.952,87643,445397.952,56,78,13,0.065,9.94591894679115,0.290849673202614,26.9258240356725,-0.0300761437185429,0.05,5,2,72.004242986134,0.728353140916808,3,9.49510154724121,0,-2.75160656869411,-2.81041193008423,0.0843620892717254
+7858,87543,445397.952,87643,445297.952,57,78,1.75,0.0175,7.15910776108615,0.357142857142857,NA,0.0454961897816975,0.6625,66.25,1,98.796893507011,0.958268127282212,66.25,41.4272593948076,0,-2.72721191247304,-2.79358291625977,0.0895472410302455
+7859,87543,445297.952,87643,445197.952,58,78,1.5,0.003,0.5,0.0333333333333333,27.7294631515459,0.0248771094528638,0.425,42.5,2,96.2504583648408,0.949993054590915,41.75,29.1032335169175,0,-2.44307307898998,-2.65580368041992,0.252197961438375
+7860,87543,445197.952,87643,445097.952,59,78,9.25,0.0102777777777778,3.88894580248149,0.18294051627385,14.9690399499995,0.049071415567596,0.3275,32.75,1,96.0662730877785,0.844457233516355,32.75,10.6292426422352,0,-1.92767248551051,-2.13103175163269,0.431007602311234
+7861,87543,445097.952,87643,444997.952,60,78,79.25,0.7925,36.3489005996537,0.82807570977918,NA,0.101125759319402,0.885,88.5,1,99.6684841741817,0.714471122647631,88.5,1.04035104870123,0,-1.23360796272755,-1.59572839736938,0.491706069877617
+7862,87543,444997.952,87643,444897.952,61,78,3.25,0.0325,9.64304710566532,0.5,NA,0.0208574396869153,0.055,5.5,3,69.7922037523639,0.751011515717398,3.5,13.7165735418146,0,-2.02626844247182,-2.25642609596252,0.495662806601169
+7863,87543,444897.952,87643,444797.952,62,78,9.25,0.023125,4.73785676326732,0.207070707070707,36.4154643638665,0.0283569132631419,0.22,22,2,89.4828254639597,0.795851706679732,11.75,24.2425658269362,0,-2.49420450627804,-2.65746879577637,0.179802635343683
+7864,87543,444797.952,87643,444697.952,63,78,26.75,0.0891666666666667,8.31747994196654,0.368212873067242,10,-0.0657437956008835,0,0,0,NA,NA,0,NA,NA,-2.69826306899389,-2.82300925254822,0.163033986039912
+7865,87543,444697.952,87643,444597.952,64,78,0,NA,NA,NA,NA,-0.0346147745047347,0.0925,9.25,1,87.9580013362782,0.855484803323849,9.25,60.4742540926547,25,-2.8728155195713,-3.03429532051086,0.210995122427612
+7866,87543,444597.952,87643,444497.952,65,78,0,NA,NA,NA,NA,0.125150915342383,0.9775,97.75,1,99.9397711850087,0.760407307577119,97.75,66.4787467166286,15.8113880157471,-3.31755457321803,-3.53788375854492,0.367363131769984
+7867,87543,444497.952,87643,444397.952,66,78,50.5,0.505,30.4641834604927,0.865511551155115,NA,0.0598987033442586,0.6775,67.75,3,96.2770713850364,0.853794489879837,60.75,3.88455603483418,0,-3.91083345810572,-4.23928260803223,0.413644387464384
+7868,87543,444397.952,87643,444297.952,67,78,26.75,0.2675,26.089291369724,0.827102803738318,NA,0.104026588905253,0.8725,87.25,1,99.6285502360822,0.952465834818776,87.25,19.7552213313586,0,-4.21422284841537,-4.40957927703857,0.307011910276077
+7869,87543,444297.952,87643,444197.952,68,78,5.75,0.0191666666666667,4.8327514242352,0.304563492063492,12.1676051329096,0.137514996463433,0.975,97.5,1,99.9329506995597,0.891891891891893,97.5,41.4860226949056,0,-4.06195763746897,-4.30567932128906,0.267486538331469
+7870,87543,444197.952,87643,444097.952,69,78,4.25,0.0425,9.65862602070582,0.607843137254902,NA,0.145566029250622,1,100,1,100,NA,100,44.3275401115418,0,-4.16396123170853,-4.42771768569946,0.266250828183715
+7871,87543,444097.952,87643,443997.952,70,78,0.75,0.0075,3.33333333333333,0.222222222222222,NA,0.107268326850608,0.9075,90.75,1,99.7382749359844,0.984263739722255,90.75,53.5366117041301,0,-4.60734856128693,-4.77548837661743,0.313521525437015
+7872,87543,443997.952,87643,443897.952,71,78,33.25,0.110833333333333,12.2101163859015,0.454861111111111,13.3333333333333,0.0885852793575032,0.6525,65.25,1,98.7475319937876,0.811684394815436,65.25,7.68472564083406,0,-4.76803523302078,-4.82914924621582,0.144642504267528
+7873,87543,443897.952,87643,443797.952,72,78,39,0.078,9.06450518351244,0.451518518518519,16.6491106406735,0.0530458961633303,0.65,65,1,98.735013968989,0.894397183924905,65,4.32807327417227,0,-4.49358888467153,-4.7046422958374,0.62385633843655
+7874,87543,443797.952,87643,443697.952,73,78,30.25,0.3025,30.0155820655448,0.787878787878788,NA,0.00613061165000545,0.2675,26.75,1,95.0869843258351,0.886823816513113,26.75,1.00367797423746,0,-2.66836181282997,-4.31855726242065,1.3290909454236
+7875,87543,443697.952,87643,443597.952,74,78,36.5,0.073,11.243246784322,0.502704517704518,11.1622776601684,0.0213316384792415,0.3075,30.75,4,89.2559173864783,0.747454307037283,20.25,2.18641643989377,0,-1.95826557278633,-2.70396995544434,1.01636222308218
+7876,87543,443597.952,87643,443497.952,75,78,23,0.0766666666666667,12.649122796028,0.546666666666667,30.3442593595562,0.0276054197413396,0.4025,40.25,2,93.9552581592576,0.864299445889404,32,3.70587106076827,0,-2.62800899147987,-3.37745499610901,0.97732362416044
+7877,87543,443497.952,87643,443397.952,76,78,26.5,0.0441666666666667,7.00732026974418,0.322125858890565,17.0335887574255,0.0453098379234143,0.6275,62.75,1,98.619006283181,0.902898757675282,62.75,6.00108792582356,0,-2.82335940996806,-3.03757643699646,0.38634205811441
+7878,87543,443397.952,87643,443297.952,77,78,43,0.43,41.6018784613922,0.755813953488372,NA,0.0619883216542075,0.8375,83.75,1,99.5120172135984,0.873617693522907,83.75,5.49234083374934,0,-2.94999394814173,-3.03633785247803,0.0741078929025003
+7879,87543,443297.952,87643,443197.952,78,78,5,0.05,9.77414436850262,0.666666666666667,NA,0.207116901362315,0.9875,98.75,1,99.9667936270881,0.786666666666663,98.75,47.9722848433482,0,-2.79526928067207,-2.89048719406128,0.0893231087940384
+7880,87543,443197.952,87643,443097.952,79,78,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,12.7240226919466,0.211717332284315,0.9575,95.75,2,99.2574007654579,0.837951709609463,94.75,40.0612282018437,0,-2.75965493917465,-2.8706111907959,0.110057516972127
+7881,87543,443097.952,87643,442997.952,80,78,0.25,0.0025,0,0,NA,0.0752532955420611,0.655,65.5,2,97.7574105798234,0.822899141060834,61.75,38.3726694747692,10,-2.94477643072605,-3.06256747245789,0.127403017221428
+7882,87543,442997.952,87643,442897.952,81,78,6,0.00857142857142857,3.6316255476082,0.151587301587302,12.1585422431877,0.00298709078995671,0.2125,21.25,2,90.5501864819069,0.882266372332597,18,27.4854546266444,10,-3.04850039879481,-3.09477424621582,0.0722069131816468
+7883,87543,442897.952,87643,442797.952,82,78,1.5,0.0025,0,0,11.8169499062491,-0.0165656345111347,0.0025,0.25,1,0,NA,0.25,49.2442893981934,49.2442893981934,-3.04203699529171,-3.08405208587646,0.0404146093296345
+7884,87543,442797.952,87643,442697.952,83,78,4.75,0.00791666666666667,2.11403824795706,0.108796296296296,15.6121178999633,-0.0447522290270717,0,0,0,NA,NA,0,NA,NA,-2.96591204404831,-3.00856709480286,0.108216888533508
+7885,87543,442697.952,87643,442597.952,84,78,13.5,0.0675,19.4332625290685,0.541666666666667,62.6498204307083,0.0183914476961763,0.1,10,5,73.1991515184565,0.718076285240464,5.75,14.9257367134094,0,-2.76552753150463,-2.89158320426941,0.218716168077686
+7886,87543,442597.952,87643,442497.952,85,78,7.25,0.0725,16.9005987388167,0.626436781609195,NA,0.0118374878013856,0.2225,22.25,3,89.1252425375694,0.822038868328985,16.25,55.6272682447112,0,-2.68890704711278,-3.25678730010986,0.493766835465303
+7887,87543,442497.952,87643,442397.952,86,78,0,NA,NA,NA,NA,0.0136863625024853,0.465,46.5,1,97.5448886830867,0.967398391653988,46.5,69.4980250943092,21.2132034301758,-3.57384459674358,-4.24344158172607,0.675342067556019
+7888,87543,442397.952,87643,442297.952,87,78,0,NA,NA,NA,NA,-0.150996714467183,0,0,0,NA,NA,0,NA,NA,-4.05928879976273,-4.24683332443237,0.312520710882183
+7889,87543,442297.952,87643,442197.952,88,78,12.75,0.0425,7.04392729912962,0.273148148148148,20.7868932583326,-0.124940647800249,0.02,2,1,68.0470115164975,0.795918367346939,2,0,0,-3.7714604139328,-4.18057632446289,0.750205611247996
+7890,87543,442197.952,87643,442097.952,89,78,21,0.21,24.6755813077495,0.781746031746032,NA,-0.0629794610309909,0,0,0,NA,NA,0,NA,NA,-3.25922079881032,-3.98729348182678,0.652095133155195
+7891,87543,442097.952,87643,441997.952,90,78,15.5,0.0258333333333333,6.95940328861673,0.246527777777778,18.6417564351583,-0.0363868317231299,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0,-3.15187191963196,-3.51368093490601,0.499670099378906
+7892,87543,441997.952,87643,441897.952,91,78,1.25,0.00416666666666667,1.09006472543938,0.0925925925925926,11.1803398874989,-0.03166739914137,0.01,1,2,34.5233986084855,0.494949494949495,0.75,42.6709747314453,36.0555114746094,-2.70684431493282,-3.15778231620789,0.485818695551631
+7893,87543,441897.952,87643,441797.952,92,78,30.75,0.076875,11.0203751931013,0.499924653405666,10,-0.00962383096652047,0.08,8,1,86.6550847056172,0.874581939799331,8,3.07035648822784,0,-1.66258226831754,-2.24250197410583,0.852602830972733
+7894,87543,441797.952,87643,441697.952,93,78,92,0.306666666666667,13.479981944578,0.45414364640884,10,-0.00385231389491082,0.2075,20.75,2,89.6805787783476,0.776819245048177,13.75,0.120481927710843,0,-0.61061971259187,-1.2568416595459,0.739461823275261
+7895,87543,441697.952,87643,441597.952,94,78,90,0.9,37.8616861467167,0.873611111111111,NA,0.0269759858521411,0.425,42.5,1,97.1898422226593,0.899986109181831,42.5,0.735294117647059,0,-0.914987039441864,-1.61951088905334,0.949104731715116
+7896,87543,441597.952,87643,441497.952,95,78,85,0.85,38.0438810904931,0.838725490196078,NA,0.0563594534351739,0.615,61.5,2,98.255067367573,0.779785431959345,61,0.536874259390482,0,-2.1721173748374,-2.74373579025269,0.729561406446446
+7897,87543,441497.952,87643,441397.952,96,78,36.25,0.0517857142857143,7.40749452078281,0.395145379023884,10.8430999196421,0.00427213343711628,0.01,1,1,52.6315789473684,1,1,2.5,0,-2.7263564268748,-2.89367032051086,0.276132018946756
+7898,87543,441397.952,87643,441297.952,97,78,20.5,0.025625,5.50598294911112,0.323119918699187,13.6510120331024,-0.0331257414279025,0.075,7.5,2,78.4849549099018,0.867622724765582,5.25,3.88342717488607,0,-3.22204655408859,-3.81876397132874,0.407568935993952
+7899,87543,441297.952,87643,441197.952,98,78,6.75,0.0675,11.0281916396582,0.648148148148148,NA,-0.115870209031546,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0,-3.68259068330129,-4.02473020553589,0.396899745801749
+7900,87543,441197.952,87643,441097.952,99,78,31.8421052631579,0.3025,25.7942192152697,0.822314049586777,NA,0.020452703259798,0.1925,19.25,3,85.8849463945696,0.826989619377163,12.75,3.7379945532068,0,-2.76529800891876,-3.97928833961487,1.21500226213432
+7901,87643,451097.952,87743,450997.952,0,79,6.5,0.00433333333333333,1.67860878966061,0.0596296296296296,15.4627305767069,-0.00222387661860921,0.025,2.5,2,61.4794562732788,0.763313609467456,2,12.5784395217896,0,-3.37451174524095,-3.39533948898315,0.0290874239565583
+7902,87643,450997.952,87743,450897.952,1,79,12.25,0.0102083333333333,3.48760391932415,0.196533289241623,13.517348775525,0.0101285628459664,0.035,3.5,3,61.2116969235008,0.740932642487047,2.5,5.50175653185163,0,-3.44258485237757,-3.53461146354675,0.0884726338925027
+7903,87643,450897.952,87743,450797.952,2,79,20.75,0.0259375,6.19556785559686,0.322087712712713,11.4744835019484,0.00279655200616617,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0,-3.60375465287103,-3.67608141899109,0.128289328200329
+7904,87643,450797.952,87743,450697.952,3,79,14.5,0.0120833333333333,3.98727053452848,0.17866512345679,12.2761836416309,0.0148623182896335,0.0525,5.25,4,65.4471562634078,0.736147757255937,3,9.04684502737863,0,-3.82122395435969,-3.94082546234131,0.125230883389788
+7905,87643,450697.952,87743,450597.952,4,79,17.5,0.025,5.59274219008551,0.264984372127229,19.0424135854225,-0.00181780572542266,0.015,1.5,1,62.2896536353828,1,1.5,0.833333333333333,0,-4.00637006759644,-4.07945871353149,0.105843611192835
+7906,87643,450597.952,87743,450497.952,5,79,48.25,0.120625,18.0638116879189,0.643951949134876,14.01387818866,-0.00906382829751237,0.0625,6.25,3,72.2798906971895,0.786666666666667,4.75,10.1204600524902,0,-4.06814543406169,-4.10651302337646,0.0605847511424741
+7907,87643,450497.952,87743,450397.952,6,79,34,0.0485714285714286,6.77954271265819,0.310071154898741,20.6663873715664,0.00825698447980358,0.11,11,3,81.6624200981018,0.832979046462192,8.75,0.956160632046786,0,-3.91345092985365,-4.00919246673584,0.173070815188823
+7908,87643,450397.952,87743,450297.952,7,79,43.75,0.0875,9.72413154215784,0.443704016913319,14,0.0654971677465801,0.435,43.5,2,95.0039986218054,0.88421139690679,38.25,3.40650444469233,0,-3.49360251426697,-3.81403660774231,0.355919980378536
+7909,87643,450297.952,87743,450197.952,8,79,51,0.0728571428571429,7.99581547558127,0.386641827930752,10.591733660533,0.0787907783854826,0.615,61.5,2,95.7903143163558,0.853190287972897,36.75,1.72604486418933,0,-3.01715588569641,-3.29634022712708,0.299610437707003
+7910,87643,450197.952,87743,450097.952,9,79,51.25,0.170833333333333,21.7029814902467,0.615305652897243,10.3934466291663,0.0764627992147871,0.6875,68.75,1,98.9155506404681,0.789147286821705,68.75,2.46299292824485,0,-2.83861793412103,-3.1020941734314,0.238630184898157
+7911,87643,450097.952,87743,449997.952,10,79,42.75,0.1425,14.5026776609484,0.550112871135598,11.6666666666667,0.0654009746371594,0.5125,51.25,3,96.5293185252115,0.897705094555488,49.75,3.80072188028475,0,-3.14651244878769,-4.71759748458862,1.06403798594967
+7912,87643,449997.952,87743,449897.952,11,79,27.25,0.13625,14.4593624517983,0.347222222222222,11.1803398874989,0.0446290229485749,0.4425,44.25,1,97.3510944420755,0.923204563843063,44.25,3.22937155039297,0,-4.20070518387689,-5,2.18813111848384
+7913,87643,449897.952,87743,449797.952,12,79,31.5,0.07875,6.64024253715412,0.24146174863388,10,0.0412018747874754,0.41,41,3,94.656394653445,0.870917050173981,37.25,2.63563274755711,0,-3.77384252349536,-5,1.6975504795494
+7914,87643,449797.952,87743,449697.952,13,79,46,0.46,27.5749499853076,0.841485507246377,NA,0.0764305439860436,0.7325,73.25,1,99.1136185490844,0.959292365622403,73.25,3.92258752816366,0,-4.39240137736003,-5,0.837148019715725
+7915,87643,449697.952,87743,449597.952,14,79,26.75,0.0297222222222222,6.39419172110527,0.413310308332348,15.7070492956519,0.083491458526114,0.71,71,2,97.5924461812037,0.715872400878213,61.25,5.85403519617,0,-4.21944252649943,-4.93085479736328,0.768012689522515
+7916,87643,449597.952,87743,449497.952,15,79,70.25,0.35125,20.7258107716772,0.536970423661071,18.0277563773199,0.133229690254666,0.91,91,1,99.745869280411,0.709724238026124,91,1.70466418842693,0,-3.86812986267938,-4.13299655914307,0.331962982189378
+7917,87643,449497.952,87743,449397.952,16,79,61.75,0.205833333333333,14.5385195595608,0.374387947269303,10.3934466291663,0.036240494925587,0.3525,35.25,4,89.7245768189417,0.748585795097423,18.75,3.97372923506067,0,-4.00209301710129,-4.18920516967773,0.308596467355027
+7918,87643,449397.952,87743,449297.952,17,79,26.5,0.1325,22.2409835787837,0.625586854460094,11.1803398874989,-0.0291959566990408,0.045,4.5,2,74.2265412165683,0.689742098119062,4,5.7722110748291,0,-4.38900751537747,-4.87618207931519,0.636003738779267
+7919,87643,449297.952,87743,449197.952,18,79,0.75,0.00375,1.25,0.0833333333333333,114.017542509914,-0.02142229695688,0.0375,3.75,1,78.0843273950357,0.858323494687131,3.75,8.17796948750814,0,-4.69152488311132,-4.99116277694702,0.71402827702271
+7920,87643,449197.952,87743,449097.952,19,79,61.75,0.6175,34.0463258817942,0.796221322537112,NA,0.0521403682755772,0.43,43,2,95.0155994520314,0.872710166583652,36.75,3.63946658511495,0,-3.34243173069424,-4.59151029586792,1.4263139746043
+7921,87643,449097.952,87743,448997.952,20,79,85.75,0.8575,37.9394089446021,0.837220602526725,NA,0.0566448874375783,0.5375,53.75,4,94.5494371427394,0.864864864864865,46.25,0.857974935132404,0,-2.20550170209673,-2.90789031982422,1.11992137991923
+7922,87643,448997.952,87743,448897.952,21,79,91.5,0.915,38.2651028190555,0.872950819672131,NA,0.0798965699411929,1,100,1,100,NA,100,0.425,0,-1.64892003933589,-2.28470849990845,0.942033591748697
+7923,87643,448897.952,87743,448797.952,22,79,48,0.16,13.2626075902375,0.473284760170006,18.6851709182133,0.0626534430887841,0.665,66.5,1,98.8090595843688,0.952143092154458,66.5,1.910042698222,0,-2.47091073460049,-3.00960826873779,0.790168390348152
+7924,87643,448797.952,87743,448697.952,23,79,12.75,0.0141666666666667,4.05433711178986,0.313117283950617,21.3645497598212,0.0320001858323849,0.25,25,3,93.2747572949174,0.785185185185185,24,5.86842887878418,0,-3.07946888605754,-3.8889753818512,0.697187896450422
+7925,87643,448697.952,87743,448597.952,24,79,59,0.59,34.8707979352032,0.817796610169491,NA,0.0156074693694063,0.31,31,2,92.3728328759999,0.838969404186795,21.25,0.856558092178837,0,-3.29997486538357,-3.75060606002808,0.677576496352506
+7926,87643,448597.952,87743,448497.952,25,79,8.25,0.04125,13.5176198488707,0.135416666666667,60.4152298679729,-0.00803952277099597,0.0025,0.25,1,0,NA,0.25,10,10,-2.45643303791682,-2.91848921775818,0.417788501437094
+7927,87643,448497.952,87743,448397.952,26,79,5.25,0.0105,4.72170570605673,0.174259259259259,13.8573007621341,-0.00873474504420301,0.02,2,2,52.9470541148176,0.693877551020408,1.25,10.3259069919586,0,-1.86225983831618,-2.05082964897156,0.37142267465002
+7928,87643,448397.952,87743,448297.952,27,79,0,NA,NA,NA,NA,-0.0204796305554919,0,0,0,NA,NA,0,NA,NA,-1.14282928407192,-1.50223314762115,0.412338084537335
+7929,87643,448297.952,87743,448197.952,28,79,0,NA,NA,NA,NA,-0.0255217456741957,0,0,0,NA,NA,0,NA,NA,-0.828400505913628,-0.917539417743683,0.161143566158188
+7930,87643,448197.952,87743,448097.952,29,79,1.75,0.0175,6.92071087294274,0.357142857142857,NA,-0.0330639957898529,0,0,0,NA,NA,0,NA,NA,-1.04164163768291,-1.20199418067932,0.188529493391842
+7931,87643,448097.952,87743,447997.952,30,79,15.5,0.0140909090909091,4.23189478397556,0.130091613812544,10.2146072522725,0.00163434229341874,0.1225,12.25,2,87.0741905273195,0.755799755799756,10.75,4.62155793637645,0,-1.27482746707069,-1.30863189697266,0.061204558042175
+7932,87643,447997.952,87743,447897.952,31,79,7,0.0116666666666667,4.62369779549099,0.227237654320988,10.7868932583326,-0.00798564360333785,0.03,3,2,63.1082577609157,0.818071558520315,2,7.72633488972982,0,-1.3119582997428,-1.32635116577148,0.0419146784821399
+7933,87643,447897.952,87743,447797.952,32,79,0,NA,NA,NA,NA,-0.00337801686171133,0,0,0,NA,NA,0,NA,NA,-1.27668317159017,-1.310063123703,0.0719268078125763
+7934,87643,447797.952,87743,447697.952,33,79,0,NA,NA,NA,NA,-0.00159702905156337,0.04,4,2,73.8471596962463,0.869791666666667,3.75,86.7928023338318,50.9901962280273,-1.2958166996638,-1.3629983663559,0.0810989497071703
+7935,87643,447697.952,87743,447597.952,34,79,3.75,0.003125,0.625,0.0416666666666667,14.805443874003,0.00510918338048214,0.035,3.5,4,50.3102396173331,0.637305699481865,1.5,29.9221158708845,5,-1.41394352912903,-1.51531255245209,0.111216315846757
+7936,87643,447597.952,87743,447497.952,35,79,1.5,0.0025,0,0,22.1777875847736,-0.0322444241075937,0,0,0,NA,NA,0,NA,NA,-1.60282214482625,-1.68916964530945,0.128771989563242
+7937,87643,447497.952,87743,447397.952,36,79,1.25,0.0125,4.2390073826009,0.433333333333333,NA,-0.0269172199265358,0.0225,2.25,1,70.1754385964912,1,2.25,5.91682306925456,0,-1.81152016917864,-1.9154018163681,0.117957534578725
+7938,87643,447397.952,87743,447297.952,37,79,5.25,0.0075,3.69187527846021,0.133928571428571,13.1650749217888,0.0132503948293015,0.165,16.5,2,86.9931628566374,0.906274407706327,9.5,23.749348524845,0,-1.9607697725296,-1.99150705337524,0.0615216949225578
+7939,87643,447297.952,87743,447197.952,38,79,0,NA,NA,NA,NA,0.0100996781188951,0.075,7.5,3,79.6851942941466,0.669056811913955,6.25,35.4563944498698,5,-2.02494657039642,-2.08073925971985,0.0591887384743771
+7940,87643,447197.952,87743,447097.952,39,79,1.25,0.0025,0,0,27.6824070190464,-0.0419921104149398,0,0,0,NA,NA,0,NA,NA,-2.07006618711683,-2.18964433670044,0.172337604663961
+7941,87643,447097.952,87743,446997.952,40,79,8,0.00727272727272727,2.45683634453541,0.128427128427128,13.3045746300029,-0.00810866841031384,0.0025,0.25,1,0,NA,0.25,11.1803398132324,11.1803398132324,-2.09716066718102,-2.35742211341858,0.3995841173084
+7942,87643,446997.952,87743,446897.952,41,79,3,0.01,5.01424388093116,0.148809523809524,10,-0.0151580458947365,0.0025,0.25,1,0,NA,0.25,15.8113880157471,15.8113880157471,-1.9463538063897,-2.39142060279846,0.82891588649402
+7943,87643,446897.952,87743,446797.952,42,79,3.25,0.008125,2.93713812781152,0.12962962962963,14.0533008588991,-0.0175124748317194,0.03,3,2,62.2896536353828,0.636143117040631,1.5,7.83856630325317,0,-1.69594117999077,-2.38878226280212,1.11520917938725
+7944,87643,446797.952,87743,446697.952,43,79,3.5,0.035,13.7786422660561,0.380952380952381,NA,-0.0289864061708795,0.0025,0.25,1,0,NA,0.25,15,15,-1.83668394883474,-2.19776105880737,0.692029140352106
+7945,87643,446697.952,87743,446597.952,44,79,4.5,0.0225,6.41049655736459,0.328125,11.1803398874989,-0.00625654212570225,0.0075,0.75,2,22.7777236956606,1,0.5,21.5737864176432,20,-2.11599797672696,-2.32443857192993,0.370930558268086
+7946,87643,446597.952,87743,446497.952,45,79,27.5,0.275,27.0936231566144,0.68030303030303,NA,-0.00381007969721395,0.0025,0.25,1,0,NA,0.25,35.355339050293,35.355339050293,-2.5731475353241,-3,0.431375575387484
+7947,87643,446497.952,87743,446397.952,46,79,15.5,0.03875,9.84804887349809,0.421442495126706,12.9056941504209,-0.0248563960169122,0.035,3.5,2,72.4166359805877,0.740932642487047,3.25,0.714285714285714,0,-2.8170411851671,-3,0.284711157701852
+7948,87643,446397.952,87743,446297.952,47,79,22.5,0.0375,5.35240798261956,0.175982384823848,10,0.0545845757890493,0.7025,70.25,1,98.9836843550327,0.949070537305831,70.25,28.1974496060843,0,-2.6691889166832,-2.76898097991943,0.222997177499131
+7949,87643,446297.952,87743,446197.952,48,79,51.5,0.12875,13.3772637662488,0.351320684523809,10,0.0236650507010927,0.4,40,2,93.4806983168694,0.892290249433107,23,7.82389323711395,0,-2.52112049526638,-2.6815459728241,0.36832652837488
+7950,87643,446197.952,87743,446097.952,49,79,21,0.21,23.4506154591465,0.777777777777778,NA,-0.0518206912708411,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,0.675675675675676,0,-2.2329768538475,-2.43160223960876,0.228809167156282
+7951,87643,446097.952,87743,445997.952,50,79,3.75,0.00625,2.07332050739825,0.0802469135802469,23.3113883008419,-0.125793114416301,0,0,0,NA,NA,0,NA,NA,-2.12667605612013,-2.23486065864563,0.184915913244385
+7952,87643,445997.952,87743,445897.952,51,79,32,0.08,14.6142945649369,0.408190359477124,10,-0.0195228129796305,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,0.652173913043478,0,-2.32807914415995,-2.47376418113708,0.150243184484725
+7953,87643,445897.952,87743,445797.952,52,79,1.5,0.0025,0,0,23.9040600064089,-0.0270519507284189,0.2325,23.25,1,94.3478768975745,0.913661159295161,23.25,16.3705236988683,0,-2.54950952529907,-2.65583491325378,0.149301794329895
+7954,87643,445797.952,87743,445697.952,53,79,0,NA,NA,NA,NA,-0.0393268427310795,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,27.7053531646729,22.3606796264648,-2.65354790290197,-2.70393657684326,0.110595073896918
+7955,87643,445697.952,87743,445597.952,54,79,1.75,0.0035,1,0.0666666666666667,13.9589689355047,-0.0239664620346048,0.105,10.5,2,82.994051573574,0.858368085608624,8.75,25.8143088476998,10,-2.52104345957438,-2.63200831413269,0.184224528363075
+7956,87643,445597.952,87743,445497.952,55,79,2,0.005,2.06754854407954,0.152777777777778,29.9535239245728,-0.0554513814222082,0,0,0,NA,NA,0,NA,NA,-2.66286977132161,-2.765949010849,0.202902995234478
+7957,87643,445497.952,87743,445397.952,56,79,7.75,0.0155,4.92091860294897,0.205,21.4721359549996,-0.00997396865106566,0.08,8,1,86.6550847056172,0.95819397993311,8,32.1171750426292,11.1803398132324,-2.86894714832306,-2.97337293624878,0.127192823982244
+7958,87643,445397.952,87743,445297.952,57,79,5.25,0.00583333333333333,1.43107769444822,0.117283950617284,18.4049945580511,0.0440265060068123,0.44,44,3,92.8009273470538,0.873626373626374,28.5,21.3048977526751,0,-2.80836704042223,-2.92775988578796,0.233638903622981
+7959,87643,445297.952,87743,445197.952,58,79,7.25,0.00659090909090909,2.47752990910192,0.0932400932400932,16.2385803929694,0.00978490162465278,0.2675,26.75,1,95.0869843258351,0.978779465596209,26.75,15.6868011617215,0,-2.44955591360728,-2.73198246955872,0.369278582069859
+7960,87643,445197.952,87743,445097.952,59,79,20,0.1,13.3989427764077,0.474358974358974,10,0.0675205937772989,0.5675,56.75,3,95.1634665497464,0.885212970934285,48,13.0320565227895,0,-1.88469270865122,-2.15108776092529,0.513769049663864
+7961,87643,445097.952,87743,444997.952,60,79,67.25,0.6725,33.5509879994013,0.857496902106567,NA,0.064386693282313,0.6325,63.25,2,98.0838668222374,0.902408220672235,62.5,0.843393936458784,0,-1.35840009152889,-1.97317743301392,0.560311383567408
+7962,87643,444997.952,87743,444897.952,61,79,0,NA,NA,NA,NA,0.0286807416927513,0.1175,11.75,2,87.7708522958867,0.872521246458923,11.25,43.2377355859635,33.5410194396973,-2.20938362015618,-2.4352924823761,0.404159127500129
+7963,87643,444897.952,87743,444797.952,62,79,33.75,0.3375,27.1677001279091,0.865432098765432,NA,0.0149519535279978,0.1625,16.25,2,90.4828964681441,0.926033549068815,15.75,21.1382167229286,5,-2.45406003793081,-2.51883387565613,0.134666253455074
+7964,87643,444797.952,87743,444697.952,63,79,11,0.11,18.8081374503166,0.704545454545455,NA,-0.0619882749579847,0,0,0,NA,NA,0,NA,NA,-2.27861955430773,-2.4550940990448,0.287559383741886
+7965,87643,444697.952,87743,444597.952,64,79,1.5,0.00375,0.833333333333333,0.0555555555555556,24.1783126036382,-0.00899109366830089,0.2525,25.25,1,94.7890822083159,0.955653282580979,25.25,20.5327866053817,5,-2.51035034656525,-2.91183614730835,0.456111142238592
+7966,87643,444597.952,87743,444497.952,65,79,1.5,0.005,2.5,0.166666666666667,12.7240226919466,0.10832003604457,0.7275,72.75,1,99.0925222972574,0.973164718313402,72.75,31.8750732133479,0,-3.36477920744154,-3.74655222892761,0.566743695898369
+7967,87643,444497.952,87743,444397.952,66,79,75,0.75,34.1608148639795,0.892222222222222,NA,0.0726238101877971,0.84,84,1,99.5205818358949,0.960629921259842,84,0.643491676875523,0,-4.11972957187229,-4.31521129608154,0.361730060761076
+7968,87643,444397.952,87743,444297.952,67,79,7.75,0.03875,11.6886988993461,0.510854341736695,85.4400374531753,0.0521958125854326,0.4975,49.75,2,96.6180239816953,0.94067602367566,48.25,21.5005240991487,0,-4.47223174571991,-4.58023071289062,0.167387654976664
+7969,87643,444297.952,87743,444197.952,68,79,59.5,0.2975,17.4194801350328,0.39521800281294,15,0.0803753620921634,0.9225,92.25,1,99.7833767758384,0.815404494900549,92.25,3.85471573496253,0,-4.28547832700941,-4.51922178268433,0.300648101073179
+7970,87643,444197.952,87743,444097.952,69,79,79.25,0.39625,19.5192200518283,0.498941798941799,10,0.0949097255431116,0.905,90.5,1,99.7306491449722,0.815597387629658,90.5,1.36109397424519,0,-4.26056639353434,-4.42092132568359,0.228473631452877
+7971,87643,444097.952,87743,443997.952,70,79,73.25,0.7325,36.6626119738554,0.798634812286689,NA,0.118592095410859,0.78,78,2,97.8838439811323,0.829931972789115,71.75,1.83776889091883,0,-4.26115700933668,-4.42064952850342,0.266185990568069
+7972,87643,443997.952,87743,443897.952,71,79,29.75,0.0330555555555556,8.52181607187337,0.392500958742752,13.5956310861109,0.0925106086910091,0.725,72.5,2,96.5296423842362,0.80650542118432,37.5,5.55311191164214,0,-4.47270019849141,-4.72754096984863,0.332576489762594
+7973,87643,443897.952,87743,443797.952,72,79,84.75,0.42375,18.5274477933735,0.430226824457594,14.142135623731,0.0779917449504137,0.975,97.5,1,99.9329506995597,0.945945945945946,97.5,0.726369926257011,0,-4.65933264626397,-4.70481824874878,0.276071498334513
+7974,87643,443797.952,87743,443697.952,73,79,60.75,0.30375,22.0943556052542,0.77797619047619,10,0.0551461421688873,0.7575,75.75,1,99.2159474776692,0.833896040587142,75.75,1.45934201231097,0,-3.94178557395935,-4.660240650177,1.33724437257718
+7975,87643,443697.952,87743,443597.952,74,79,79.75,0.7975,37.4198009705631,0.822361546499478,NA,0.076141752791591,0.9025,90.25,1,99.7229916897507,0.685110211426001,90.25,1.07320334310347,0,-4.22171764903598,-4.58630228042603,1.1996510561289
+7976,87643,443597.952,87743,443497.952,75,79,65.75,0.32875,21.4394395731856,0.647486772486773,10,0.0705101816452225,0.815,81.5,1,99.4331707829294,0.96484289167216,81.5,1.23706831668784,0,-3.66973894834518,-4.4238805770874,1.23386186075605
+7977,87643,443497.952,87743,443397.952,76,79,40.25,0.100625,13.1920236697928,0.578290343915344,11.0355339059327,0.0467150789119478,0.61,61,1,98.5243747403739,0.904408457040036,61,2.02311315692839,0,-2.44496174653371,-2.95903182029724,0.863055955614978
+7978,87643,443397.952,87743,443297.952,77,79,21.75,0.0435,6.54902897666963,0.239093137254902,10.2360679774998,0.146942482520826,0.8725,87.25,1,99.6285502360822,0.667260843731431,87.25,23.7726809766709,0,-2.90363754166497,-2.93416738510132,0.108135202636713
+7979,87643,443297.952,87743,443197.952,78,79,0,NA,NA,NA,NA,0.222664502710104,1,100,1,100,NA,100,82.1870262050629,35.355339050293,-2.79543342192968,-2.84072971343994,0.0749151684036897
+7980,87643,443197.952,87743,443097.952,79,79,0.5,0.0025,0,0,11.1803398874989,0.140107223154046,0.9375,93.75,1,99.8273917947966,0.79746835443038,93.75,42.8896466369629,0,-2.91084586249457,-3.01928734779358,0.151176301088531
+7981,87643,443097.952,87743,442997.952,80,79,0.5,0.0025,0,0,18.0277563773199,0.0454675669315293,0.44,44,2,94.4164116242956,0.862637362637363,31.25,45.5197643366727,5,-3.11241378386815,-3.23032855987549,0.143642162509949
+7982,87643,442997.952,87743,442897.952,81,79,0.25,0.0025,0,0,NA,0.055370934104285,0.51,51,3,93.9538194597465,0.838457810564859,35,40.3989820012859,5,-3.18173217773438,-3.23625898361206,0.0906683227836563
+7983,87643,442897.952,87743,442797.952,82,79,1,0.00333333333333333,1.17851130197758,0.0277777777777778,35.4112856642436,0.0137798366896095,0.155,15.5,3,82.0607068293579,0.780845934692089,9,27.7737333236202,5,-3.07647170623144,-3.17148590087891,0.113764390695718
+7984,87643,442797.952,87743,442697.952,83,79,15,0.0115384615384615,3.2142934913169,0.14957264957265,11.0416168971151,-0.0279841890207899,0.005,0.5,2,0,1,0.25,2.5,0,-2.78692282570733,-2.95475292205811,0.258803949412406
+7985,87643,442697.952,87743,442597.952,84,79,23,0.0766666666666667,10.7711570091452,0.413707825472531,22.4451732089984,-0.00739288886354188,0.05,5,2,74.2261567547482,0.728353140916808,3.75,14.663686466217,0,-2.28375141819318,-2.56074857711792,0.541599717750968
+7986,87643,442597.952,87743,442497.952,85,79,1.5,0.00375,1.76776695296637,0.0416666666666667,15.3266214672015,0.0264269284289912,0.3925,39.25,3,95.6072371693553,0.937128486511203,38.5,45.0295004024627,5,-3.10178539488051,-3.55573058128357,0.755179918870501
+7987,87643,442497.952,87743,442397.952,86,79,0,NA,NA,NA,NA,-0.103093157802796,0.005,0.5,1,30.8308651382582,1,0.5,95.0591926574707,93.9414672851562,-4.13583451509476,-4.34518146514893,0.373750640276742
+7988,87643,442397.952,87743,442297.952,87,79,0,NA,NA,NA,NA,-0.169238667534664,0,0,0,NA,NA,0,NA,NA,-4.23936488893297,-4.36507511138916,0.149122480429979
+7989,87643,442297.952,87743,442197.952,88,79,3.5,0.00583333333333333,3.90576810399895,0.0972222222222222,11.1803398874989,-0.13980161045678,0,0,0,NA,NA,0,NA,NA,-4.28455833594004,-4.39036703109741,0.189380206937534
+7990,87643,442197.952,87743,442097.952,89,79,0,NA,NA,NA,NA,-0.0814564909762703,0.12,12,1,90.0697297581677,0.902993348115299,12,87.7685283025106,55.2268028259277,-4.04608247015211,-4.4054069519043,0.516337326913647
+7991,87643,442097.952,87743,441997.952,90,79,4.75,0.0158333333333333,5.39696591091967,0.293650793650794,30.5297017721273,-0.0789843164473132,0.0625,6.25,2,81.9184574206478,0.733333333333333,6,25.4491918182373,11.1803398132324,-3.49885585572985,-3.92515993118286,0.475882583060657
+7992,87643,441997.952,87743,441897.952,91,79,7.75,0.019375,6.80330306586152,0.144078947368421,11.1803398874989,-0.0373252722021789,0,0,0,NA,NA,0,NA,NA,-3.02981585264206,-3.2830662727356,0.429900206403993
+7993,87643,441897.952,87743,441797.952,92,79,9.5,0.019,5.45017344905694,0.215628815628816,22.7648230602334,-0.0283540225247998,0.025,2.5,2,61.4794562732788,0.763313609467456,2,5.73606796264648,0,-2.61591631836361,-3.16018128395081,0.94881978716073
+7994,87643,441797.952,87743,441697.952,93,79,43.25,0.144166666666667,13.2923810357988,0.44668911335578,10,-0.00559802191071412,0.12,12,4,81.4197564019354,0.708980044345898,7.5,3.03219151496887,0,-2.01146769523621,-2.79885101318359,1.13990534989906
+7995,87643,441697.952,87743,441597.952,94,79,87.25,0.290833333333333,16.144262959465,0.536925479696564,10,0.0377202598625445,0.3675,36.75,2,95.3490226405619,0.823677211748975,34.25,0.932456243605841,0,-2.15692700280084,-2.81612873077393,1.03467097885557
+7996,87643,441597.952,87743,441497.952,95,79,58.75,0.146875,17.2935606982813,0.494783766517717,10.5901699437495,0.0384155106935395,0.3175,31.75,4,87.36069195198,0.777999777999778,15,3.22611149465005,0,-2.79718442757924,-2.94518041610718,0.299130574606919
+7997,87643,441497.952,87743,441397.952,96,79,6.5,0.0325,8.68745854052241,0.263333333333333,30,0.0186700163405658,0.0925,9.25,3,75.5494140292896,0.765162805401255,3.75,32.352126095746,0,-2.88951312171088,-2.94461631774902,0.0742219946926034
+7998,87643,441397.952,87743,441297.952,97,79,7.75,0.0155,5.30386561758949,0.307440476190476,16.1553744609271,-0.00188991568351412,0.065,6.5,2,76.1058712989442,0.791313421155602,3.5,8.83919972639817,0,-2.97971053918203,-3.11869645118713,0.134436070727026
+7999,87643,441297.952,87743,441197.952,98,79,5.75,0.0191666666666667,5.4057763229423,0.368055555555556,67.1313676601662,-0.0118246395075039,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,1.92307692307692,0,-3.21930201848348,-3.3438413143158,0.195177255524365
+8000,87643,441197.952,87743,441097.952,99,79,66.5789473684211,0.6325,33.5255838342226,0.831357048748353,NA,0.0569626046111261,0.7425,74.25,1,99.1551699664667,0.868002848359588,74.25,1.52260435470427,0,-2.7308424115181,-3.17834877967834,0.52456722609853
+8001,87743,451097.952,87843,450997.952,0,80,36,0.072,7.02304631977595,0.217037037037037,10,0.014208062331636,0.17,17,3,88.8467287656813,0.827882960413081,14.5,2.05095016255098,0,-3.37563639216953,-3.40282130241394,0.0330859426329024
+8002,87743,450997.952,87843,450897.952,1,80,10.75,0.0119444444444444,2.94952516305702,0.118911952245286,14.7434094484684,-0.00434059239833459,0.005,0.5,2,0,1,0.25,16.0355339050293,7.07106781005859,-3.37909404436747,-3.44152450561523,0.0637182219448103
+8003,87743,450897.952,87843,450797.952,2,80,6.75,0.00675,1.65997001642259,0.103418803418803,13.628990204492,0.00753399106406505,0.0475,4.75,4,60.4713992101098,0.565571544936193,2.25,6.33276186491314,0,-3.5762157175276,-3.67099690437317,0.169983847715609
+8004,87743,450797.952,87843,450697.952,3,80,7,0.007,2.55102713677319,0.134027777777778,13.7380164340659,0.00674958329676883,0.0225,2.25,2,55.5646363158338,0.658994032395567,1.25,13.4108108944363,5,-3.91214978694916,-4.08599805831909,0.18549351527037
+8005,87743,450697.952,87843,450597.952,4,80,41.5,0.051875,7.76864097929656,0.352468806025949,10,-0.00485967335354871,0.04,4,3,64.2053482637619,0.652777777777778,2.75,6.89789438247681,0,-4.12223058276706,-4.17382621765137,0.095516733012005
+8006,87743,450597.952,87843,450497.952,5,80,68.25,0.2275,19.9050994338025,0.724394201078139,11.380711874577,0.0366359693853883,0.425,42.5,2,95.6235888242174,0.905542436449507,39.75,1.52854596306296,0,-4.08421870072683,-4.13316202163696,0.0628357720699429
+8007,87743,450497.952,87843,450397.952,6,80,57,0.57,39.01642602219,0.796052631578947,NA,0.0757693819160977,0.6225,62.25,1,98.5923763102686,0.869255037944462,62.25,1.00199789024261,0,-4.04417567782932,-4.11661767959595,0.134549341816529
+8008,87743,450397.952,87843,450297.952,7,80,99.5,0.995,38.1805529965998,0.931323283082077,NA,0.146412778189406,1,100,1,100,NA,100,0.025,0,-3.93692767620087,-4.13197660446167,0.359238821791856
+8009,87743,450297.952,87843,450197.952,8,80,87.5,0.4375,23.5037472719867,0.715678122690318,10,0.11639182093204,0.9,90,2,99.1905961722782,0.912023460410557,89.25,0.431451320648193,0,-3.52252986696031,-4.00613403320312,0.665985731341096
+8010,87743,450197.952,87843,450097.952,9,80,59.75,0.1195,11.4115392259605,0.394785070785071,10,0.0729748401994584,0.6525,65.25,4,95.3349098161165,0.717526592223154,44.25,2.20838502905835,0,-2.73601611455282,-3.07080388069153,0.3838512330783
+8011,87743,450097.952,87843,449997.952,10,80,79.25,0.7925,36.6502045571512,0.832807570977918,NA,0.0805163350515068,0.735,73.5,2,98.624726129264,0.890818519908561,72.75,0.75655240428691,0,-2.36780335505803,-2.69628000259399,0.559517212430318
+8012,87743,449997.952,87843,449897.952,11,80,60.5,0.121,10.3171229776999,0.323572281959379,13.211102550928,-0.01012318122042,0.2725,27.25,3,88.3147334478266,0.783697036300521,15.25,3.57171949334101,0,-1.26043785942925,-2.27361154556274,1.23407978355367
+8013,87743,449897.952,87843,449797.952,12,80,48,0.096,13.3849413953361,0.523082010582011,14.3733802110964,0.070600384863792,0.7925,79.25,1,99.350989933666,0.846879155417657,79.25,3.81523834493258,0,-3.36680258313815,-4.35334062576294,1.28789061656342
+8014,87743,449797.952,87843,449697.952,13,80,70.75,0.7075,38.3370463685926,0.809776207302709,NA,0.105958841359243,0.92,92,1,99.7759364721822,0.713055954088953,92,1.87997690491054,0,-3.8822987874349,-4.04194927215576,0.237529973396413
+8015,87743,449697.952,87843,449597.952,14,80,51,0.0566666666666667,7.53435021958441,0.394219977553311,10.7768586875934,0.0709814507508418,0.6925,69.25,2,96.8560571859034,0.812382739212007,52.5,3.23130663379435,0,-3.59414607286453,-3.77578544616699,0.221972884912067
+8016,87743,449597.952,87843,449497.952,15,80,63,0.126,8.54887700333284,0.241530054644809,10.2360679774998,0.0694213456357829,0.685,68.5,2,98.5294260051744,0.771477981594713,67.75,2.09487207788621,0,-3.77373501989577,-3.84383630752563,0.158963647148304
+8017,87743,449497.952,87843,449397.952,16,80,69.75,0.1395,10.0278443361462,0.354292929292929,11.4721359549996,0.0808649534219876,0.745,74.5,2,98.9956058644408,0.727377582048862,74.25,1.76259056193717,0,-3.79319608211517,-3.87857151031494,0.0909546463463295
+8018,87743,449397.952,87843,449297.952,17,80,58.5,0.14625,16.5399232746514,0.509715928555857,10.5901699437495,0.046678067518551,0.4925,49.25,2,95.9333733985751,0.821850327282543,43,2.7482072181508,0,-3.64985081884596,-4.01560974121094,0.494020571306872
+8019,87743,449297.952,87843,449197.952,18,80,38.5,0.09625,13.8281109948913,0.501771097068127,13.0785509248927,-0.00531124151017138,0.28,28,1,95.316724394494,0.903740374037404,28,1.13456310544695,0,-3.38717824220657,-4.3416600227356,1.48147188089214
+8020,87743,449197.952,87843,449097.952,19,80,79.25,0.39625,18.4581319761429,0.402426160337553,11.1803398874989,0.0403105120075634,0.2575,25.75,4,85.8472211633261,0.767039767039767,11.75,0.825242718446602,0,-1.56729407442941,-2.4380350112915,1.43599112309752
+8021,87743,449097.952,87843,448997.952,20,80,25,0.0192307692307692,5.09239011778861,0.198717948717949,11.2993270423882,0.0319083380410666,0.0375,3.75,3,63.0749157902665,0.574970484061393,2.25,3.80473785400391,0,-0.591224874059359,-1.80396366119385,1.33152349895127
+8022,87743,448997.952,87843,448897.952,21,80,46.25,0.0578125,7.30023415512733,0.323384462759463,12.0225424859374,0.066860520625487,0.68,68,3,97.6291989251198,0.847113502935421,65.5,3.0724080730887,0,-0.833655332525571,-1.45267128944397,0.866241993231318
+8023,87743,448897.952,87843,448797.952,22,80,19,0.0211111111111111,5.07778912099727,0.328027884206045,11.4993937318966,0.0565104123305355,0.59,59,2,96.7188986333749,0.740058625076047,52.25,6.74601183099262,0,-1.23544643322627,-2.03529167175293,1.09292159653513
+8024,87743,448797.952,87843,448697.952,23,80,44.75,0.22375,17.3481938250176,0.689571150097466,10,0.0920201637462924,0.72,72,1,99.0604668316969,0.940695835529784,72,9.88129448228412,0,-3.1292553494374,-4.11812591552734,1.42746711471366
+8025,87743,448697.952,87843,448597.952,24,80,43,0.215,18.2053678852761,0.480276134122288,30,0.0278646117261087,0.265,26.5,1,95.039096185713,0.935890586601133,26.5,1.38272209887235,0,-3.52727074093289,-3.98349475860596,0.677363152912467
+8026,87743,448597.952,87843,448497.952,25,80,10.25,0.025625,7.61590520735489,0.114583333333333,13.3852549156242,-0.0033613994843472,0.025,2.5,3,52.9103541849425,0.684418145956607,1.75,11.088808631897,5,-2.47033341725667,-2.95423722267151,0.543035506037952
+8027,87743,448497.952,87843,448397.952,26,80,0,NA,NA,NA,NA,-0.020376396401989,0,0,0,NA,NA,0,NA,NA,-1.69724478986528,-1.9805908203125,0.404386698021152
+8028,87743,448397.952,87843,448297.952,27,80,0,NA,NA,NA,NA,-0.00814595077525155,0.035,3.5,1,77.1303955881659,0.844559585492228,3.5,167.488482883998,161.941360473633,-1.08367026845614,-1.33763003349304,0.310969753523459
+8029,87743,448297.952,87843,448197.952,28,80,0,NA,NA,NA,NA,0.0140338887943835,0.3925,39.25,1,96.8622433213934,0.977137631458619,39.25,131.521902728233,82.7647323608398,-1.05172675848007,-1.1953729391098,0.247383829505436
+8030,87743,448197.952,87843,448097.952,29,80,0,NA,NA,NA,NA,-0.0303166540977691,0,0,0,NA,NA,0,NA,NA,-1.19453240434329,-1.30047559738159,0.171685775788937
+8031,87743,448097.952,87843,447997.952,30,80,7.25,0.0145,6.18440170186648,0.174047619047619,10.4721359549996,-0.0526291064778343,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,11.2417486826579,5,-1.2591837114758,-1.28542578220367,0.0745559031667147
+8032,87743,447997.952,87843,447897.952,31,80,0,NA,NA,NA,NA,-0.117864129063819,0,0,0,NA,NA,0,NA,NA,-1.15435461865531,-1.26705503463745,0.203107641904186
+8033,87743,447897.952,87843,447797.952,32,80,0,NA,NA,NA,NA,0.000871348831278738,0.0025,0.25,1,0,NA,0.25,84.8528137207031,84.8528137207031,-1.04643037418524,-1.19615685939789,0.240203277271084
+8034,87743,447797.952,87843,447697.952,33,80,0.25,0.0025,0,0,NA,-0.00137483663678722,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,11.1768444606236,5,-1.13861849572923,-1.24694502353668,0.17046768206065
+8035,87743,447697.952,87843,447597.952,34,80,6,0.00545454545454545,1.84392015789094,0.112373737373737,13.5245948202611,0.00669166166964033,0.14,14,2,86.3909378860604,0.856149604411412,11.25,8.30582863943917,0,-1.38316722710927,-1.50003802776337,0.135758719445777
+8036,87743,447597.952,87843,447497.952,35,80,1,0.0025,0,0,17.4487111693809,-0.0183824867604562,0,0,0,NA,NA,0,NA,NA,-1.58825247817569,-1.65048325061798,0.104757916754628
+8037,87743,447497.952,87843,447397.952,36,80,3.5,0.00875,4.35267198610388,0.212301587301587,10.5901699437495,-0.0363866828839673,0,0,0,NA,NA,0,NA,NA,-1.75529290239016,-1.8395631313324,0.0903705855930501
+8038,87743,447397.952,87843,447297.952,37,80,1.75,0.004375,1.875,0.125,22.3606797749979,-0.0193599236188311,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,10.492709118387,0,-1.88369899325901,-1.95434260368347,0.0915417812959896
+8039,87743,447297.952,87843,447197.952,38,80,0,NA,NA,NA,NA,-0.0238940439740418,0.07,7,1,85.3702908942512,0.92831541218638,7,106.870580945696,98.6154174804688,-2.01319461067518,-2.09534025192261,0.108967337347238
+8040,87743,447197.952,87843,447097.952,39,80,0,NA,NA,NA,NA,-0.108432254283689,0,0,0,NA,NA,0,NA,NA,-2.20587033695645,-2.27790284156799,0.126580711494315
+8041,87743,447097.952,87843,446997.952,40,80,0,NA,NA,NA,NA,-0.116726760840975,0,0,0,NA,NA,0,NA,NA,-2.40894941488902,-2.52292704582214,0.150483289386167
+8042,87743,446997.952,87843,446897.952,41,80,4,0.0133333333333333,6.10358443301591,0.0833333333333333,26.7359909646538,-0.0510799925911488,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,13.1056310653687,5,-2.5885251098209,-2.65849995613098,0.141040899218064
+8043,87743,446897.952,87843,446797.952,42,80,7.25,0.018125,8.0715794895218,0.172348484848485,20.4616460960662,-0.012608057583202,0.235,23.5,3,87.2079187172707,0.758792405851229,10.5,15.1133893195619,0,-2.61837045351664,-2.70537090301514,0.212142719709997
+8044,87743,446797.952,87843,446697.952,43,80,9.5,0.095,27.1135737987095,0.557017543859649,NA,-0.0403336765510721,0.01,1,3,15.8692205350002,0.242424242424242,0.5,22.6678013801575,5,-2.53912258148193,-2.68105792999268,0.276223341848171
+8045,87743,446697.952,87843,446597.952,44,80,23.5,0.0783333333333333,12.9314385080455,0.441798941798942,16.6666666666667,-0.00428926230921206,0.035,3.5,2,66.3658346452296,0.740932642487047,2.25,12.5684424809047,0,-2.54272715250651,-2.67272877693176,0.24377007531262
+8046,87743,446597.952,87843,446497.952,45,80,38.75,0.0430555555555556,6.65578356689289,0.16602679915688,10,-0.0127645640008632,0.1575,15.75,3,82.3874685570685,0.708659293229026,6.5,2.00338418143136,0,-2.85185658931732,-3,0.205457622516838
+8047,87743,446497.952,87843,446397.952,46,80,42.75,0.04275,6.68310707216993,0.278608494679923,10,-0.0219576576520558,0.13,13,5,79.2437134987664,0.793361746093246,9.25,1.57828976557805,0,-2.9765452808804,-3.79138946533203,0.453905127564626
+8048,87743,446397.952,87843,446297.952,47,80,14.5,0.0241666666666667,6.11395821312376,0.182326892109501,20.2648508860636,-0.0418761980086856,0,0,0,NA,NA,0,NA,NA,-3.52564420302709,-4,0.76225104811544
+8049,87743,446297.952,87843,446197.952,48,80,1.25,0.003125,0.625,0.0416666666666667,45.4095409182301,-0.031848697333844,0,0,0,NA,NA,0,NA,NA,-3.37373661994934,-4,0.770507248554737
+8050,87743,446197.952,87843,446097.952,49,80,0.25,0.0025,0,0,NA,-0.07781428957358,0,0,0,NA,NA,0,NA,NA,-2.73673605918884,-3.06671261787415,0.399728327482354
+8051,87743,446097.952,87843,445997.952,50,80,0.75,0.0025,0,0,15.8113883008419,-0.086850983183831,0,0,0,NA,NA,0,NA,NA,-2.54135031170315,-2.74804735183716,0.293968798692072
+8052,87743,445997.952,87843,445897.952,51,80,7.75,0.0129166666666667,2.79687418015566,0.127777777777778,24.1076837749617,-0.0256274858392862,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,18.355418750218,10,-2.3848862250646,-2.5288097858429,0.136354275491749
+8053,87743,445897.952,87843,445797.952,52,80,1.5,0.003,0.5,0.0333333333333333,16.7722162662912,-0.0625539510161616,0.0125,1.25,1,58.1880425789518,1,1.25,17.3245552062988,15,-2.48962754673428,-2.53369569778442,0.0922219777944463
+8054,87743,445797.952,87843,445697.952,53,80,0.5,0.0025,0,0,10,-0.0503537031059386,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,22.8773543039958,5,-2.52461030085882,-2.58397459983826,0.109366099702736
+8055,87743,445697.952,87843,445597.952,54,80,2.75,0.00305555555555556,0.555555555555556,0.037037037037037,16.9342018239039,0.027907436052642,0.3675,36.75,2,93.1084456326365,0.870696621949248,22.25,28.7591315288933,0,-2.29531664318509,-2.40596055984497,0.160180538231617
+8056,87743,445597.952,87843,445497.952,55,80,3.25,0.0065,2.18024201667696,0.1,31.0624981065731,0.00839414660109469,0.2075,20.75,3,90.0243145344873,0.83690637138136,18.75,24.0438772913921,0,-2.40505578782823,-2.71262764930725,0.360870895164485
+8057,87743,445497.952,87843,445397.952,56,80,2,0.01,5.54317648370547,0.2,98.488578017961,0.0654075572909642,0.7375,73.75,1,99.1344998974781,0.86958386958387,73.75,32.4550223399017,0,-3.05082796017329,-3.40060019493103,0.330038102034226
+8058,87743,445397.952,87843,445297.952,57,80,1.75,0.00583333333333333,2.77777777777778,0.185185185185185,24.6830611576255,0.139838229326415,0.815,81.5,1,99.4331707829294,0.83300373544276,81.5,30.1486213777694,0,-3.37055889765422,-3.72366333007812,0.482972647046877
+8059,87743,445297.952,87843,445197.952,58,80,6.25,0.0125,3.32813494186284,0.198039215686275,17.5141904007729,0.0818749380899703,0.515,51.5,3,95.2252713596424,0.913865037280289,48,23.8480174610916,0,-3.23432936271032,-3.71461081504822,0.700465206937655
+8060,87743,445197.952,87843,445097.952,59,80,33,0.0471428571428571,9.34285857174499,0.433440101310358,13.5714285714286,0.0144201603395413,0.26,26,2,90.9525396376271,0.869923399335164,16,5.12220489061796,0,-2.3370922141605,-2.9494001865387,0.843858447582081
+8061,87743,445097.952,87843,444997.952,60,80,33.75,0.1125,12.0250888387453,0.497677338355304,10.3934466291663,0.0282630963345218,0.3425,34.25,3,90.0460288040292,0.811406844106464,18.75,6.85493498475012,0,-2.31341842810313,-2.82626819610596,0.816501802278663
+8062,87743,444997.952,87843,444897.952,61,80,0.25,0.0025,0,0,NA,-0.00359232231332953,0.05,5,3,72.4376371348174,0.66044142614601,4,41.5694669723511,31.6227760314941,-2.71673867437575,-2.97180604934692,0.461550861716735
+8063,87743,444897.952,87843,444797.952,62,80,19.75,0.0658333333333333,6.72666215284434,0.320175438596491,28.6851709182133,0.0211883777922776,0.37,37,1,96.6105796155075,0.953142388566743,37,22.2030858220281,0,-2.71073073148727,-2.95124006271362,0.334165609446793
+8064,87743,444797.952,87843,444697.952,63,80,0,NA,NA,NA,NA,-0.054146861047484,0,0,0,NA,NA,0,NA,NA,-2.40213349130419,-2.72345447540283,0.444148545780086
+8065,87743,444697.952,87843,444597.952,64,80,29.25,0.073125,6.92134804208536,0.392283950617284,15.8979340077936,0.0365531739935977,0.4925,49.25,1,97.7634684223253,0.951413725622511,49.25,5.10520214719821,0,-2.511252562205,-2.87805366516113,0.445424408885741
+8066,87743,444597.952,87843,444497.952,65,80,9.75,0.0139285714285714,3.63025711221779,0.172619047619048,25.4633748727487,0.0663049431669788,0.565,56.5,2,95.1862996684507,0.841646872525732,42.5,11.2031460736705,0,-3.38971082369486,-3.78228139877319,0.618082138889087
+8067,87743,444497.952,87843,444397.952,66,80,71.75,0.7175,33.7525202116653,0.880371660859466,NA,0.0852999094501138,0.9925,99.25,1,99.9801514397,0.823165340406723,99.25,3.63975285642994,0,-4.12469834751553,-4.34134817123413,0.381008674112358
+8068,87743,444397.952,87843,444297.952,67,80,2.25,0.0225,7.49547631756877,0.462962962962963,NA,0.0541712973163521,0.505,50.5,2,95.7733448055708,0.822222222222222,41,32.9114707059199,0,-4.58451318740845,-4.69652462005615,0.147714420654434
+8069,87743,444297.952,87843,444197.952,68,80,0,NA,NA,NA,NA,0.0659313076990657,0.7625,76.25,1,99.2358070072224,0.794965675057208,76.25,44.4162758623967,10,-4.71064710617065,-4.75189208984375,0.130049398962647
+8070,87743,444197.952,87843,444097.952,69,80,20,0.1,14.7111254528453,0.724242424242424,40,0.0796653813379817,0.8675,86.75,1,99.6123355042629,0.666359871145881,86.75,23.5113412268911,0,-4.59620304902395,-4.75639295578003,0.215411969867246
+8071,87743,444097.952,87843,443997.952,70,80,78.25,0.39125,20.8851624727536,0.564695340501792,10,0.121499402173795,0.9075,90.75,1,99.7382749359844,0.65380227388961,90.75,1.26337946742034,0,-4.37036535474989,-4.5713849067688,0.266633680163899
+8072,87743,443997.952,87843,443897.952,71,80,29,0.0241666666666667,5.39243909168421,0.274394586894587,13.7641650868777,0.0521847533014079,0.52,52,2,96.1703976244578,0.876184323858742,46.75,4.39449708278363,0,-4.1608993212382,-4.48440647125244,0.384889133668673
+8073,87743,443897.952,87843,443797.952,72,80,39.5,0.09875,10.1493159119135,0.502194502194502,10,0.014808583278791,0.4175,41.75,1,97.1176501838512,0.894097318990023,41.75,1.09751060622895,0,-4.07866854137844,-4.58426427841187,0.781543887067072
+8074,87743,443797.952,87843,443697.952,73,80,66,0.165,10.3698201312418,0.342396653543307,10.2950849718747,0.0465747441420899,0.64,64,1,98.6842105263158,0.878472222222222,64,0.926058858633041,0,-4.41915055116018,-4.62210559844971,0.470220765843531
+8075,87743,443697.952,87843,443597.952,74,80,37.5,0.1875,15.5846039055679,0.526826484018265,11.1803398874989,0.00967501403996721,0.3325,33.25,3,94.2355187663175,0.913331476150679,32,1.85920290839403,0,-4.21057555410597,-4.55506086349487,0.554805783065934
+8076,87743,443597.952,87843,443497.952,75,80,18.5,0.0616666666666667,8.27145702515523,0.337761674718196,12.4535599249993,-0.0355007048134212,0.0625,6.25,3,74.2670551801863,0.786666666666667,4.75,2.73238067626953,0,-3.57368508974711,-4.31776142120361,0.860928329727513
+8077,87743,443497.952,87843,443397.952,76,80,28.25,0.14125,19.0563159048804,0.538834951456311,29.1547594742265,0.0790555276347277,0.695,69.5,1,98.9498932220624,0.817850637522769,69.5,9.70084043543973,0,-2.56276724073622,-3.09135484695435,0.885538272687993
+8078,87743,443397.952,87843,443297.952,77,80,2,0.00666666666666667,3.03009080922111,0.12962962962963,31.3165950304599,0.195648715263233,0.9775,97.75,2,99.5654811930382,0.760407307577119,97.25,36.7520819417656,0,-2.80806048711141,-2.9115514755249,0.170655552363758
+8079,87743,443297.952,87843,443197.952,78,80,0,NA,NA,NA,NA,0.169751760928193,0.925,92.5,2,99.5306276288476,0.923918212077984,92.25,85.5309842599405,21.2132034301758,-2.79336319367091,-2.9127881526947,0.111080216608484
+8080,87743,443197.952,87843,443097.952,79,80,0,NA,NA,NA,NA,0.0710652536494308,0.645,64.5,1,98.7097599330033,0.953343247893156,64.5,83.0347514041634,49.4974746704102,-3.030655225118,-3.14488577842712,0.171934909470482
+8081,87743,443097.952,87843,442997.952,80,80,0.25,0.0025,0,0,NA,0.0350715093102235,0.3475,34.75,1,96.3348533717898,0.903460343319154,34.75,40.5523227719094,10,-3.2488888502121,-3.31196880340576,0.0913446314939632
+8082,87743,442997.952,87843,442897.952,81,80,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.100709535694587,0.73,73,2,98.8099689819469,0.946029818525265,72.75,52.3428464262453,10,-3.27690919240316,-3.31381320953369,0.0616808787905704
+8083,87743,442897.952,87843,442797.952,82,80,9.5,0.02375,3.81249889320428,0.170238095238095,16.0849460005254,0.096412753974364,0.785,78.5,1,99.3228142317568,0.795725958516656,78.5,24.4888776305375,0,-3.07141290108363,-3.21232461929321,0.259305413609054
+8084,87743,442797.952,87843,442697.952,83,80,28.75,0.0958333333333333,14.276064547481,0.64707062600321,19.4720641765459,0.0118264957375141,0.35,35,2,94.5740702463183,0.921875,32.75,7.5348388671875,0,-2.49858154190911,-2.81172585487366,0.311654905922568
+8085,87743,442697.952,87843,442597.952,84,80,3.5,0.007,2.25807014504444,0.132222222222222,11.3005630797458,-0.0511317575050634,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,31.5384505135672,25,-2.78151482343674,-4.24194002151489,1.29057279147271
+8086,87743,442597.952,87843,442497.952,85,80,36.5,0.121666666666667,11.1837697844918,0.40679012345679,12.7240226919466,0.00687608060095954,0.2325,23.25,2,93.120449973425,0.937208115851026,22.75,0.559903954946867,0,-3.59873612721761,-4.20056486129761,1.01850929690952
+8087,87743,442497.952,87843,442397.952,86,80,32,0.32,26.4118618112808,0.846354166666667,NA,-0.0776385101371488,0.205,20.5,1,93.6387867289635,0.913250921708957,20.5,0.0609756097560976,0,-4.16372023026149,-4.36460542678833,0.281783401720372
+8088,87743,442397.952,87843,442297.952,87,80,1.75,0.00875,4.33244141978125,0.229166666666667,97.082439194738,-0.150840357374727,0.0025,0.25,1,0,NA,0.25,0,0,-4.42456605699327,-4.48520135879517,0.18846240153124
+8089,87743,442297.952,87843,442197.952,88,80,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.0534878121333531,0.19,19,1,93.1886455857599,0.907868067072047,19,86.9156970977783,71.0633544921875,-4.52266744772593,-4.68029260635376,0.20987220395722
+8090,87743,442197.952,87843,442097.952,89,80,0,NA,NA,NA,NA,0.0773258660454303,0.9625,96.25,1,99.898450616446,0.671232876712328,96.25,93.3565957800134,55,-4.66379610697428,-4.7968373298645,0.267620336629684
+8091,87743,442097.952,87843,441997.952,90,80,3,0.0075,2.56863532213341,0.254166666666667,13.4597861695405,0.0278346355070607,0.54,54,1,98.1009071848445,0.967553536664503,54,42.5838823406785,0,-4.27980515691969,-4.75623846054077,0.758319388756172
+8092,87743,441997.952,87843,441897.952,91,80,14,0.07,14.8650064257532,0.282407407407407,22.3606797749979,-0.0424023275486979,0,0,0,NA,NA,0,NA,NA,-3.61196327209473,-4.27518844604492,0.758298921272334
+8093,87743,441897.952,87843,441797.952,92,80,2.5,0.025,14.6526356255149,0.216666666666667,NA,-0.0421729826329101,0.055,5.5,1,82.8209772257252,0.93775287892935,5.5,9.3352555361661,0,-4.08100300365024,-4.45902109146118,0.789949953111898
+8094,87743,441797.952,87843,441697.952,93,80,8,0.016,8.55196185126083,0.223809523809524,12.1065495701675,-0.0348900544943172,0.1975,19.75,3,86.5377151342493,0.804183355585225,10.75,14.5971378857576,0,-3.65506037076314,-4.38364315032959,0.975149500038053
+8095,87743,441697.952,87843,441597.952,94,80,16,0.0266666666666667,5.75440933852856,0.2281284606866,13.7826298561206,-0.00859935776246402,0.21,21,3,88.6089275314176,0.813099991504545,13.5,4.42340358098348,0,-3.02831308046977,-3.49510765075684,0.485890328104741
+8096,87743,441597.952,87843,441497.952,95,80,18.5,0.0616666666666667,11.7364267323418,0.436229674796748,10.3934466291663,-0.024605488536763,0.12,12,3,82.0621913635739,0.861419068736142,10,25.4452607631683,0,-2.9488804936409,-3.01274466514587,0.115107144183692
+8097,87743,441497.952,87843,441397.952,96,80,7.75,0.0155,3.85385699750388,0.108641975308642,11.1803398874989,0.0327050706703062,0.4225,42.25,2,95.9798331308157,0.944499944499944,41.25,48.7628924352883,11.1803398132324,-2.93362805578444,-2.95954728126526,0.0479541204804819
+8098,87743,441397.952,87843,441297.952,97,80,8.5,0.0425,8.77425944562935,0.500992063492063,10,-0.0136646594164995,0.0775,7.75,1,86.3573366287605,0.956639566395664,7.75,59.2192562472436,49.2442893981934,-2.95995710293452,-3.0771267414093,0.0886865218135978
+8099,87743,441297.952,87843,441197.952,98,80,18.25,0.09125,16.1077193245884,0.636752136752137,14.142135623731,-0.0266246151464293,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,3.41421356201172,0,-3.20761932267083,-3.58042740821838,0.34741979079777
+8100,87743,441197.952,87843,441097.952,99,80,43.421052631579,0.20625,15.4036673494912,0.394817073170732,43.0116263352131,0.0324974648195348,0.28,28,1,95.316724394494,0.834983498349835,28,2.56440619059971,0,-3.34351652860641,-3.74315619468689,0.593844567926992
+8101,87843,451097.952,87943,450997.952,0,81,17.25,0.0246428571428571,6.88671016541828,0.247619047619048,11.8419182322622,0.00444688026815015,0.05,5,6,54.8612701736344,0.558573853989813,2.75,9.05495567321777,0,-3.35032137235006,-3.39964890480042,0.057347181977062
+8102,87843,450997.952,87943,450897.952,1,81,4.25,0.00708333333333333,1.91817700295498,0.0972222222222222,13.5760565538836,0.0211310160107314,0.0975,9.75,9,66.9107404418293,0.471553377370552,4.75,19.0027695680276,0,-3.3344894349575,-3.40372276306152,0.0616453333270947
+8103,87843,450897.952,87943,450797.952,2,81,7.75,0.0096875,3.60426020604597,0.0970394736842105,18.0553398874989,0.0129988578791313,0.0825,8.25,6,64.2376844695324,0.63669391462307,3.75,9.66605625730572,0,-3.53642062346141,-3.67594456672668,0.185166218716789
+8104,87843,450797.952,87943,450697.952,3,81,20,0.0285714285714286,4.72515495801653,0.175810904071774,11.8213022753308,-0.0126020941414367,0,0,0,NA,NA,0,NA,NA,-3.92467148602009,-4.11550903320312,0.222694490489427
+8105,87843,450697.952,87943,450597.952,4,81,29.25,0.0365625,8.36824206154264,0.228075145828941,12.5137244627892,-0.0256018797321212,0,0,0,NA,NA,0,NA,NA,-4.21208480993907,-4.27675199508667,0.0996796597420396
+8106,87843,450597.952,87943,450497.952,5,81,11,0.0275,6.52693524645456,0.254166666666667,14.2795858817043,-0.0453456110105981,0.0625,6.25,1,84.2105263157895,0.92,6.25,1.2,0,-4.25364425778389,-4.32342338562012,0.0989949714579484
+8107,87843,450497.952,87943,450397.952,6,81,18.25,0.045625,10.131849728839,0.449373876909254,20.8540481324094,-0.00460097120379032,0.12,12,3,79.8080371389783,0.639689578713969,5,5.13775785764058,0,-4.31389820575714,-4.43441581726074,0.147421017555662
+8108,87843,450397.952,87943,450297.952,7,81,94.25,0.9425,37.1305331141945,0.931918656056587,NA,0.102860000547953,0.955,95.5,1,99.8774262095089,1,95.5,0.0654450261780105,0,-4.42122685909271,-4.57633399963379,0.197933149932697
+8109,87843,450297.952,87943,450197.952,8,81,94.75,0.9475,37.9574338376497,0.909410729991205,NA,0.121227674987167,1,100,1,100,NA,100,0.2625,0,-4.28419681390127,-4.56213235855103,0.421012206844008
+8110,87843,450197.952,87943,450097.952,9,81,70.25,0.0780555555555556,6.44748123738186,0.261356806142581,10.1311488763888,0.0829213512840215,0.7425,74.25,2,96.6216158521061,0.729058478211786,39.25,1.19854352289579,0,-3.66004244486491,-4.29655504226685,0.747757125399687
+8111,87843,450097.952,87943,449997.952,10,81,65,0.216666666666667,13.4899745688505,0.300259403372244,10.3934466291663,0.0695310342614539,0.795,79.5,1,99.3602931148206,0.658536585365854,79.5,1.54962813179448,0,-3.11114907264709,-3.81670069694519,0.780764136795679
+8112,87843,449997.952,87943,449897.952,11,81,41.5,0.10375,15.7610296151496,0.669764185702033,16.8401699437495,0.0858065028744022,0.8775,87.75,1,99.6446261822776,0.815588886156873,87.75,4.90090081630609,0,-3.34310683608055,-4.20785093307495,1.26133298799765
+8113,87843,449897.952,87943,449797.952,12,81,54.5,0.109,17.6220758879276,0.605133144952599,11.605551275464,0.113158924512099,0.9,90,1,99.7153023505818,0.721407624633431,90,2.86931775940789,0,-4.05332258343697,-4.19696569442749,0.266715758249388
+8114,87843,449797.952,87943,449697.952,13,81,73,0.365,28.8625224721044,0.693137254901961,10,0.0970555715961382,0.86,86,1,99.5877487787664,0.824175824175824,86,1.28113569215287,0,-3.76004403829575,-3.98360228538513,0.335618893601048
+8115,87843,449697.952,87943,449597.952,14,81,80.5,0.805,38.1660995556118,0.812629399585921,NA,0.0642793323889782,0.5275,52.75,1,98.0165432545104,0.838030450275348,52.75,1.2967144392113,0,-3.32538305222988,-3.63906288146973,0.284760385197165
+8116,87843,449597.952,87943,449497.952,15,81,56.75,0.1135,12.2980599763589,0.390719338133131,10.7082039324994,0.0440568713436369,0.385,38.5,5,92.7544656311358,0.747191818207935,26.5,3.39887465439834,0,-3.74987147251765,-3.86927270889282,0.249693865100777
+8117,87843,449497.952,87943,449397.952,16,81,82.5,0.4125,26.7874885216162,0.765037593984962,10,0.114121722700074,0.9775,97.75,1,99.9397711850087,0.880203653788557,97.75,0.96528492803159,0,-3.75079144537449,-3.85965633392334,0.316118332304884
+8118,87843,449397.952,87943,449297.952,17,81,80.25,0.8025,37.1247879475558,0.826583592938733,NA,0.0664039215445519,0.93,93,1,99.8055173961557,0.777102330293819,93,1.34239248562885,0,-2.69259921709696,-3.52965974807739,0.936584145652912
+8119,87843,449297.952,87943,449197.952,18,81,48.5,0.0808333333333333,12.9074790147542,0.3706569664903,10.3934466291663,0.0496627099533362,0.5675,56.75,2,96.2851624398121,0.814154333893603,45.75,3.86797837748927,0,-1.97747474908829,-2.79839158058167,0.64712268232381
+8120,87843,449197.952,87943,449097.952,19,81,67.5,0.225,13.6677911019577,0.432444657300979,11.380711874577,0.0548284624904045,0.605,60.5,2,98.0593109776753,0.910384227624062,60,1.05518735144749,0,-0.694617937115254,-1.72658383846283,1.34175462971352
+8121,87843,449097.952,87943,448997.952,20,81,11.25,0.0140625,4.00597936412965,0.165586419753086,13.2825598938185,0.0185198965453674,0.0175,1.75,2,55.7829931777349,0.618320610687023,1.5,24.9324024745396,20,0.612474982937177,0.153805583715439,0.549529477106145
+8122,87843,448997.952,87943,448897.952,21,81,12,0.024,4.94358318795589,0.16046511627907,16.5548984852978,0.0664896957948804,0.6425,64.25,2,98.5340062484979,0.703415088030473,64,13.5475700022182,0,0.814245376735926,0.191870898008347,0.96305818584103
+8123,87843,448897.952,87943,448797.952,22,81,11.25,0.028125,8.36096446769881,0.425189393939394,32.2550492667769,0.029964263536458,0.32,32,3,89.6315650002056,0.722292350416561,16.25,7.35298770666122,0,-1.60238898421327,-3.5646378993988,2.58030513616667
+8124,87843,448797.952,87943,448697.952,23,81,58.75,0.5875,35.1411755486694,0.84113475177305,NA,0.0700137437894591,0.79,79,1,99.3416426267051,0.848194311281559,79,5.15857495537287,0,-3.41193862259388,-3.9200279712677,0.763020910141502
+8125,87843,448697.952,87943,448597.952,24,81,96.75,0.48375,20.2955169916501,0.602647569444444,10,0.0144484858394389,0.0825,8.25,4,71.7778997474348,0.717428600262388,4.25,0,0,-2.51509194572767,-3.32911348342896,0.772236970565178
+8126,87843,448597.952,87943,448497.952,25,81,45.25,0.4525,26.8426701433779,0.848066298342541,NA,-0.0106317241733632,0.075,7.5,4,68.6669942790877,0.580805295091009,3.25,1.30473785400391,0,-1.86201965808868,-2.49076008796692,0.485528506573785
+8127,87843,448497.952,87943,448397.952,26,81,0,NA,NA,NA,NA,-0.0951862380700186,0,0,0,NA,NA,0,NA,NA,-1.24927654862404,-1.70832049846649,0.431665056144355
+8128,87843,448397.952,87943,448297.952,27,81,0,NA,NA,NA,NA,-0.0106630389265047,0.41,41,1,97.0434862163892,0.96071388483556,41,171.044861305051,143.265487670898,-1.11882735788822,-1.25159811973572,0.182549467255459
+8129,87843,448297.952,87943,448197.952,28,81,0,NA,NA,NA,NA,0.00868232324028213,0.4275,42.75,1,97.2134830220855,0.961183891314896,42.75,133.600479795222,92.195442199707,-1.29824044307073,-1.41328144073486,0.116234613024167
+8130,87843,448197.952,87943,448097.952,29,81,6,0.00857142857142857,3.87433410980905,0.220521541950113,14.7703253763919,-0.0220305307096896,0.01,1,2,34.5233986084855,0.494949494949495,0.75,11.5334658622742,5,-1.37610244005919,-1.44832599163055,0.10316235244204
+8131,87843,448097.952,87943,447997.952,30,81,5.75,0.014375,3.83273031304862,0.134868421052632,10.2950849718747,-0.00780512728859321,0.14,14,1,91.1967767414513,0.952049868137137,14,65.5298207827977,40.3112869262695,-1.12234511474768,-1.26681220531464,0.281595877549199
+8132,87843,447997.952,87943,447897.952,31,81,0,NA,NA,NA,NA,-0.027758281306451,0.2125,21.25,2,91.5961889320896,0.932723641332913,20,126.253512842515,102.95630645752,-0.72982774178187,-0.972170352935791,0.275060047724836
+8133,87843,447897.952,87943,447797.952,32,81,0,NA,NA,NA,NA,0.0462517590727657,0.41,41,1,97.0434862163892,0.932652374003816,41,65.9153410399832,14.1421356201172,-0.499395492952317,-0.856907069683075,0.376765699537118
+8134,87843,447797.952,87943,447697.952,33,81,12,0.01,3.00969550526047,0.157448743386243,11.0337095696853,0.0285457826165657,0.1675,16.75,1,92.4032163835468,0.85626652293319,16.75,10.9077464715758,0,-0.84592050810655,-1.12207388877869,0.348731461346662
+8135,87843,447697.952,87943,447597.952,34,81,5.25,0.00875,2.99091263307367,0.190972222222222,11.8633899812498,0.0171784467536509,0.1775,17.75,3,88.3654765816533,0.824924012158055,15.5,8.47505410960023,0,-1.35963966697454,-1.52445387840271,0.23059170674268
+8136,87843,447597.952,87943,447497.952,35,81,0.5,0.005,2.5,0.166666666666667,NA,-0.0295987491312917,0,0,0,NA,NA,0,NA,NA,-1.61035199960073,-1.66202461719513,0.0851632322893518
+8137,87843,447497.952,87943,447397.952,36,81,6,0.00857142857142857,4.22090817550595,0.181632653061224,20.2470886406665,-0.00581284483007039,0.065,6.5,3,73.8413197172035,0.765227598800052,4,16.270510160006,0,-1.69230058044195,-1.76762878894806,0.0769549874489649
+8138,87843,447397.952,87943,447297.952,37,81,16.75,0.08375,11.7665184421448,0.382575757575758,47.4341649025257,-0.0770350645607823,0.01,1,2,34.5233986084855,0.494949494949495,0.75,10.0806188583374,5,-1.72067635258039,-1.82042050361633,0.128413998284727
+8139,87843,447297.952,87943,447197.952,38,81,0.25,0.0025,0,0,NA,-0.0962822707090527,0,0,0,NA,NA,0,NA,NA,-1.83452142775059,-2.02104878425598,0.178058073736601
+8140,87843,447197.952,87943,447097.952,39,81,0,NA,NA,NA,NA,-0.0312552672752645,0,0,0,NA,NA,0,NA,NA,-2.05116338531176,-2.19531464576721,0.156936668535807
+8141,87843,447097.952,87943,446997.952,40,81,0,NA,NA,NA,NA,-0.115981268829782,0,0,0,NA,NA,0,NA,NA,-2.17719505727291,-2.42073249816895,0.219063970093018
+8142,87843,446997.952,87943,446897.952,41,81,0,NA,NA,NA,NA,-0.112817565649166,0.0825,8.25,1,86.9391941099265,0.899081642950853,8.25,101.489175507517,65.7647323608398,-2.48027282953262,-2.64662957191467,0.28729063313259
+8143,87843,446897.952,87943,446797.952,42,81,0,NA,NA,NA,NA,0.228208190710284,0.9375,93.75,1,99.8273917947966,0.977496483825599,93.75,76.5063420003255,30.4138145446777,-2.79998587071896,-2.92520999908447,0.127985568760669
+8144,87843,446797.952,87943,446697.952,43,81,2.5,0.00416666666666667,1.66666666666667,0.111111111111111,11.1803398874989,0.0772577680664835,0.575,57.5,1,98.3223108063601,0.978061154531743,57.5,39.9737794959027,11.1803398132324,-2.85441780090332,-2.94142746925354,0.115190235002218
+8145,87843,446697.952,87943,446597.952,44,81,41.75,0.0695833333333333,9.95262209158311,0.237472961280554,10,-0.0293715802409861,0.1475,14.75,1,91.5590620020185,0.965499396239434,14.75,2.78207009525622,0,-2.85220744212468,-2.96488332748413,0.132988718991606
+8146,87843,446597.952,87943,446497.952,45,81,37.5,0.09375,11.7476161437939,0.341982323232323,17.6612377556149,-0.0151109782656931,0.1325,13.25,4,77.669155531653,0.708648700003167,5.75,5.7126106766035,0,-2.98166485130787,-3.15911459922791,0.172187744592024
+8147,87843,446497.952,87943,446397.952,46,81,23,0.0766666666666667,22.1539743644683,0.403611511944845,16.3849198247422,-0.0684143985535047,0,0,0,NA,NA,0,NA,NA,-3.29445970058441,-4,0.307528522589116
+8148,87843,446397.952,87943,446297.952,47,81,33.5,0.0558333333333333,7.28565044505761,0.159667541557305,10.5901699437495,-0.0730187112925705,0,0,0,NA,NA,0,NA,NA,-3.66125403344631,-4,0.434503799536784
+8149,87843,446297.952,87943,446197.952,48,81,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,15.3482700499755,-0.0283746643383893,0,0,0,NA,NA,0,NA,NA,-3.31768341859182,-3.61309409141541,0.224079171177213
+8150,87843,446197.952,87943,446097.952,49,81,0.5,0.0025,0,0,15.8113883008419,-0.0300763773622202,0,0,0,NA,NA,0,NA,NA,-3.08725322782993,-3.17600345611572,0.145185125274487
+8151,87843,446097.952,87943,445997.952,50,81,0.25,0.0025,0,0,NA,-0.0489463378172513,0,0,0,NA,NA,0,NA,NA,-2.81042389074961,-2.96045804023743,0.191949651438849
+8152,87843,445997.952,87943,445897.952,51,81,2.5,0.003125,0.625,0.0416666666666667,16.4119057792477,0.00593577485466085,0.3175,31.75,1,95.9225630587777,0.955599955599956,31.75,16.77171301654,5,-2.59673038125038,-2.72732210159302,0.134327375795035
+8153,87843,445897.952,87943,445797.952,52,81,0,NA,NA,NA,NA,-0.0956136047840118,0,0,0,NA,NA,0,NA,NA,-2.56438082456589,-2.61480164527893,0.0658384749706891
+8154,87843,445797.952,87943,445697.952,53,81,0.5,0.005,2.5,0.166666666666667,NA,0.015435835600365,0.3725,37.25,1,96.6396639945364,0.970812719816704,37.25,38.1669836236326,0,-2.47850638628006,-2.5788459777832,0.122918024700228
+8155,87843,445697.952,87943,445597.952,54,81,0,NA,NA,NA,NA,0.139185504559427,1,100,1,100,NA,100,56.674498128891,10,-2.22311512629191,-2.29968023300171,0.109831265896868
+8156,87843,445597.952,87943,445497.952,55,81,8.5,0.0141666666666667,4.03391289557642,0.216988727858293,16.9075254255941,0.0894859990713303,0.69,69,2,96.2811274146649,0.838086934861128,49.25,23.5140302492225,0,-2.43208281199137,-2.71599817276001,0.386454441442917
+8157,87843,445497.952,87943,445397.952,56,81,2,0.005,1.05975184565023,0.108333333333333,12.0710678118655,0.128734234524891,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,36.1426164584052,0,-3.34471493959427,-4.08241271972656,0.61320019126562
+8158,87843,445397.952,87943,445297.952,57,81,0.25,0.0025,0,0,NA,0.158196055721492,1,100,1,100,NA,100,40.6370070934296,0,-4.05155976613363,-4.31190919876099,0.357014504435505
+8159,87843,445297.952,87943,445197.952,58,81,0.5,0.0025,0,0,20.6155281280883,0.19186002420116,0.96,96,1,99.8914698623176,0.896978021978022,96,46.4482673704624,0,-4.03672105073929,-4.32463598251343,0.359483777898655
+8160,87843,445197.952,87943,445097.952,59,81,8.25,0.0275,7.74993560604444,0.473148148148148,14.3254026343621,-0.0103713674707706,0.05,5,2,75.5735492577598,0.558573853989813,4,10.9985182762146,5,-3.67244974772135,-4.16694736480713,0.653253177196021
+8161,87843,445097.952,87943,444997.952,60,81,29.25,0.073125,9.02710916054146,0.418808411214953,13.75,-0.0348559380898951,0.0425,4.25,2,71.5607955550092,0.83289817232376,3.5,3.41339739631204,0,-3.52750341594219,-4.09446430206299,0.657103169728888
+8162,87843,444997.952,87943,444897.952,61,81,44.75,0.22375,13.7657976180229,0.435393258426966,11.1803398874989,-0.0159451820907634,0.0225,2.25,2,55.8151493223867,0.573742540494459,1.25,28.4719785054525,22.3606796264648,-3.67136387030284,-4.10303592681885,0.55260621416817
+8163,87843,444897.952,87943,444797.952,62,81,4.75,0.00678571428571429,1.71987655643922,0.157407407407407,23.4187027306961,-0.0317365109513958,0.015,1.5,2,45.0766242787986,0.709934735315446,1,14.3631210327148,5,-3.44730082154274,-3.99677109718323,0.51568054600203
+8164,87843,444797.952,87943,444697.952,63,81,3,0.006,2.6721090983341,0.166666666666667,28.4900803809332,-0.0171273255710184,0.0125,1.25,2,39.9983253817159,0.392405063291139,0.75,7.82842712402344,5,-3.08994170029958,-3.419842004776,0.380675033903485
+8165,87843,444697.952,87943,444597.952,64,81,27.5,0.034375,6.67253738159539,0.215214646464646,14.0700975301252,-0.0415073350165039,0.2225,22.25,4,89.6205145051095,0.80586058363162,19.25,9.18065598305692,0,-3.06412447988987,-3.52876925468445,0.381832558720463
+8166,87843,444597.952,87943,444497.952,65,81,20.75,0.0296428571428571,6.12181461827098,0.388726919339164,16.4017620495974,0.0488704189163582,0.41,41,3,91.9111391110196,0.831630935009541,28.25,6.82855708424638,0,-3.55051191647848,-3.9466667175293,0.497602432647906
+8167,87843,444497.952,87943,444397.952,66,81,40.25,0.20125,17.6801035661446,0.752469135802469,18.0277563773199,0.0967770452843979,0.8525,85.25,1,99.5628383044854,0.758244645907239,85.25,11.3038987134559,0,-4.16176537672679,-4.40455055236816,0.411448108742554
+8168,87843,444397.952,87943,444297.952,67,81,62.25,0.6225,31.7017234630178,0.900937081659973,NA,0.0783730135726364,0.8625,86.25,1,99.5959799783351,0.709983268265477,86.25,7.43769128771796,0,-4.55923667550087,-4.65321779251099,0.117640069172859
+8169,87843,444297.952,87943,444197.952,68,81,73.5,0.735,35.1830341423644,0.863378684807256,NA,0.0785757632258901,0.8175,81.75,3,98.8147046769497,0.795741657600853,80.75,3.66517410511635,0,-4.65154361724854,-4.74739360809326,0.106921601877454
+8170,87843,444197.952,87943,444097.952,69,81,54,0.18,11.3636457453994,0.268172377985462,13.7377344785321,0.101082410953386,0.745,74.5,3,97.2997363983532,0.839222676592919,68.75,3.71391744421632,0,-4.51944342255592,-4.74745988845825,0.297546868124249
+8171,87843,444097.952,87943,443997.952,70,81,71.5,0.238333333333333,14.6208847695798,0.518922558922559,10.3934466291663,0.0540411301109418,0.5175,51.75,3,94.184380062445,0.827737029809569,33.25,0.895436420532816,0,-4.20254588127136,-4.48852682113647,0.456594576184616
+8172,87843,443997.952,87943,443897.952,71,81,7,0.0233333333333333,8.07575362899843,0.315656565656566,20.8906561721635,-0.0976786512965555,0.025,2.5,1,71.9760246298065,0.842209072978304,2.5,5.6502815246582,0,-3.59694717824459,-4.02020502090454,0.412448599222099
+8173,87843,443897.952,87943,443797.952,72,81,4,0.04,9.02920548662806,0.583333333333333,NA,-0.0274739168451924,0.1375,13.75,1,91.0694765797212,0.975591151792525,13.75,45.7063951665705,26.9258232116699,-3.21650658051173,-3.33136343955994,0.244531931462301
+8174,87843,443797.952,87943,443697.952,73,81,6,0.06,10.887575290511,0.659722222222222,NA,-0.00709917873113682,0.265,26.5,3,90.0416778717871,0.886027709513125,17.75,65.6782063898051,0,-3.41043919324875,-3.8762903213501,0.454449395536678
+8175,87843,443697.952,87943,443597.952,74,81,1.5,0.0075,2.58636433102722,0.15,58.5234995535981,-0.058819888830476,0.01,1,1,52.6315789473684,0.747474747474748,1,79.1763954162598,74.3303451538086,-3.32353901863098,-3.6644184589386,0.336870510353488
+8176,87843,443597.952,87943,443497.952,75,81,11.25,0.0375,5.57600422685675,0.294973544973545,20.2051760426961,0.00581543661239266,0.2525,25.25,2,93.8441575286089,0.896524326022284,24.75,28.8612040151464,0,-3.05818124115467,-3.34377145767212,0.216099846288563
+8177,87843,443497.952,87943,443397.952,76,81,4.5,0.045,10.8291390821677,0.583333333333333,NA,0.17844022674486,0.99,99,1,99.9734851828463,0.335106382978722,99,33.3971191175056,0,-2.77216579516729,-2.96275019645691,0.222652296619507
+8178,87843,443397.952,87943,443297.952,77,81,3,0.005,2.3471520745294,0.0972222222222222,15.0561479463473,0.207061468530446,0.9775,97.75,1,99.9397711850087,0.580712788259958,97.75,23.3620341708288,0,-2.70958232879639,-2.82831144332886,0.143049039359193
+8179,87843,443297.952,87943,443197.952,78,81,0.25,0.0025,0,0,NA,0.0978766070522397,0.91,91,1,99.745869280411,0.854862119013062,91,42.9176340731946,0,-2.92053911089897,-3.04633069038391,0.149463881381656
+8180,87843,443197.952,87943,443097.952,79,81,2,0.00333333333333333,1.17851130197758,0.0277777777777778,14.6040481324094,0.0401770123462848,0.385,38.5,2,93.9287786833276,0.804648223160677,29,32.0062665939331,5,-3.12962426741918,-3.1958749294281,0.118936031358559
+8181,87843,443097.952,87943,442997.952,80,81,0,NA,NA,NA,NA,0.0311165328135257,0.2775,27.75,3,90.1767016445382,0.847750865051903,14.5,43.792455793501,25,-3.27360928058624,-3.32155704498291,0.0701189890499573
+8182,87843,442997.952,87943,442897.952,81,81,2,0.0025,0,0,14.6040481324094,0.0804263273649849,0.67,67,3,97.0099474344392,0.885535273209229,63.5,23.7804149015626,0,-3.28674892584483,-3.3331413269043,0.0696232662374423
+8183,87843,442897.952,87943,442797.952,82,81,16.25,0.0232142857142857,3.417745552577,0.148384353741497,19.3865779619491,0.0948152271454455,0.735,73.5,1,99.1240858576863,0.965880787471425,73.5,15.1746482005736,0,-3.03278136253357,-3.25186586380005,0.329706126676035
+8184,87843,442797.952,87943,442697.952,83,81,11,0.055,7.7711399208635,0.368217054263566,82.0060973342836,-0.0726307504955912,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,4.57477049394087,0,-2.56755914290746,-3.78635096549988,0.885207218335546
+8185,87843,442697.952,87943,442597.952,84,81,0,NA,NA,NA,NA,-0.059898117990233,0,0,0,NA,NA,0,NA,NA,-4.40176883339882,-5.00930166244507,0.944719967422379
+8186,87843,442597.952,87943,442497.952,85,81,0,NA,NA,NA,NA,-0.058330569609534,0,0,0,NA,NA,0,NA,NA,-4.84946624437968,-5.09808826446533,0.374486430002371
+8187,87843,442497.952,87943,442397.952,86,81,18.5,0.0925,10.1543770344413,0.396118721461187,60.2079728939615,-0.016408045545395,0.165,16.5,1,92.3061588442808,0.916688362405623,16.5,0.378787878787879,0,-4.74366167187691,-5.09082317352295,0.446877887895709
+8188,87843,442397.952,87943,442297.952,87,81,55.5,0.2775,15.9931305498478,0.446078431372549,15.8113883008419,-0.00859673036062304,0.3725,37.25,1,96.6396639945364,0.941625439633408,37.25,0.282356159799051,0,-4.43981266021729,-4.96606206893921,0.545504064346637
+8189,87843,442297.952,87943,442197.952,88,81,23.5,0.0783333333333333,7.03734039797856,0.338827838827839,20.7868932583326,0.00803867854385317,0.2425,24.25,1,94.5753035249093,0.954478206441334,24.25,1.44696225825044,0,-4.13717432320118,-4.67093706130981,0.555454187651979
+8190,87843,442197.952,87943,442097.952,89,81,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.0122734651406427,0.2525,25.25,1,94.7890822083159,0.933479923871468,25.25,66.4699251533735,32.0156211853027,-4.50223056475321,-4.81397771835327,0.421543866295578
+8191,87843,442097.952,87943,441997.952,90,81,7.75,0.019375,7.65398292120834,0.108495670995671,10.2950849718747,-0.0215011360787321,0.2,20,1,93.4943790657906,0.964788732394366,20,45.4714275360107,15,-4.55749348799388,-4.77455425262451,0.262193180758769
+8192,87843,441997.952,87943,441897.952,91,81,2.25,0.0225,8.91955549286697,0.222222222222222,NA,0.00117124624573123,0.0075,0.75,1,44.4894453484604,1,0.75,33.5063781738281,31.6227760314941,-4.51340046525002,-4.70408582687378,0.290567736565578
+8193,87843,441897.952,87943,441797.952,92,81,0,NA,NA,NA,NA,-0.114095714305877,0,0,0,NA,NA,0,NA,NA,-4.69398299853007,-4.73876237869263,0.148768750319535
+8194,87843,441797.952,87943,441697.952,93,81,0,NA,NA,NA,NA,-0.00403905276127261,0.13,13,3,83.1321322824589,0.870851091308278,8.75,59.6778375185453,11.1803398132324,-4.51937738060951,-4.6846399307251,0.281407801335505
+8195,87843,441697.952,87943,441597.952,94,81,11.25,0.0375,7.84381964847301,0.51522633744856,15.7868932583326,0.000232901750787278,0.125,12.5,3,81.9714737333722,0.717647058823529,6.5,21.3436877441406,0,-4.01841429869334,-4.29926633834839,0.562638873789453
+8196,87843,441597.952,87943,441497.952,95,81,20.25,0.0289285714285714,9.09899099522683,0.18220818815331,12.1585422431877,-0.035683774751933,0.07,7,1,85.3702908942512,0.97610513739546,7,14.0205639430455,0,-3.56345847249031,-4.27550315856934,0.73376753122475
+8197,87843,441497.952,87943,441397.952,96,81,8.75,0.0109375,3.93657830041958,0.141269841269841,12.4495665521421,-0.0696910962767288,0,0,0,NA,NA,0,NA,NA,-3.3028391400973,-4.28302955627441,0.698322333239065
+8198,87843,441397.952,87943,441297.952,97,81,8,0.04,12.7258505200255,0.479166666666667,11.1803398874989,-0.0386540564301686,0,0,0,NA,NA,0,NA,NA,-3.25885312259197,-3.7339186668396,0.441049852423043
+8199,87843,441297.952,87943,441197.952,98,81,4.5,0.015,6.82592342021583,0.189102564102564,11.1803398874989,-0.0520526201346956,0,0,0,NA,NA,0,NA,NA,-3.95206214984258,-4.42042207717896,0.649047433345047
+8200,87843,441197.952,87943,441097.952,99,81,0.263157894736842,0.0025,0,0,NA,-0.00872624800361336,0,0,0,NA,NA,0,NA,NA,-4.30554381012917,-4.46629285812378,0.343544170790263
+8201,87943,451097.952,88043,450997.952,0,82,13.5,0.0192857142857143,5.53795007989085,0.248809523809524,16.277406588631,0.0213124266618661,0.0925,9.25,6,73.6972578139229,0.69290520706318,6.75,7.16601150100296,0,-3.28876943058438,-3.33699345588684,0.0387925773146758
+8202,87943,450997.952,88043,450897.952,1,82,14,0.0155555555555556,6.76397842659738,0.240820239431351,10.7868932583326,0.013469405348078,0.05,5,9,39.517552480737,0.354838709677419,1.25,6.47584791183472,0,-3.33571932713191,-3.45958471298218,0.104262391084682
+8203,87943,450897.952,88043,450797.952,2,82,4.25,0.00708333333333333,2.16127618395551,0.10108024691358,18.3016686442629,0.00668582242144112,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,43.250384648641,38.0788650512695,-3.55966965357463,-3.71086025238037,0.201909151364611
+8204,87943,450797.952,88043,450697.952,3,82,16,0.0228571428571429,4.12100792659179,0.101615646258503,12.8727945939172,0.00149756766371866,0,0,0,NA,NA,0,NA,NA,-3.89806757370631,-4.09708023071289,0.223636764600721
+8205,87943,450697.952,88043,450597.952,4,82,9.5,0.011875,5.35251922115996,0.190371260683761,19.5605442378807,0.0048364762073993,0.0125,1.25,3,28.2051781506445,0.392405063291139,0.75,19.8245388031006,11.1803398132324,-4.23787238862779,-4.30766487121582,0.131767242747027
+8206,87943,450597.952,88043,450497.952,5,82,1.25,0.00625,2.88509708815908,0.222222222222222,47.4341649025257,-0.0703502788520564,0,0,0,NA,NA,0,NA,NA,-4.35754835605621,-4.40720367431641,0.0541035163948522
+8207,87943,450497.952,88043,450397.952,6,82,23.5,0.0391666666666667,8.94695252688785,0.423023889690556,11.9171358997881,-0.0139888326198525,0.1125,11.25,5,77.8025081715681,0.703484062268347,7.5,4.35483169555664,0,-4.43658908208211,-4.51411724090576,0.0998197419887608
+8208,87943,450397.952,88043,450297.952,7,82,65,0.13,10.8970733445023,0.467251695672748,12.4339784002102,0.0905199055327102,0.76,76,3,98.170472147054,0.832751599767307,73.75,1.66094365245418,0,-4.60687557856242,-4.70320796966553,0.101624541631438
+8209,87943,450297.952,88043,450197.952,8,82,89.75,0.44875,27.5950493063493,0.866753981286001,10,0.11177052589599,0.915,91.5,1,99.7609644895861,0.711399711399711,91.5,0.569082708306651,0,-4.6331812010871,-4.71054124832153,0.126163257924366
+8210,87943,450197.952,88043,450097.952,9,82,84,0.21,9.1244683139268,0.216966966966967,10.5901699437495,0.083562025205174,0.7975,79.75,2,98.1158767612176,0.803125384520733,74.75,0.319971999404572,0,-4.36167208353678,-4.55991506576538,0.345758457621406
+8211,87943,450097.952,88043,449997.952,10,82,85.75,0.285833333333333,11.9241953374411,0.30237862495927,10.3934466291663,0.0859768371882092,0.755,75.5,1,99.205943814227,0.813493059789821,75.5,0.507563812053756,0,-3.82286115487417,-4.0491247177124,0.282520610488975
+8212,87943,449997.952,88043,449897.952,11,82,41.75,0.104375,13.403997668379,0.516005443220633,13.9754248593737,0.0893638883607491,0.8725,87.25,1,99.6285502360822,0.893048128342246,87.25,5.52153774797062,0,-3.92892034848531,-4.10423994064331,0.311990256175998
+8213,87943,449897.952,88043,449797.952,12,82,44.75,0.111875,15.0226188065211,0.711328270159792,18.0552502882626,0.113218066543341,1,100,1,100,NA,100,5.86672665119171,0,-4.07884327570597,-4.18455123901367,0.173293436436087
+8214,87943,449797.952,88043,449697.952,13,82,78,0.195,10.3027210426057,0.244588744588745,10.5901699437495,0.0946291724126786,0.8825,88.25,2,98.9489518924555,0.745190470123583,86,1.25676943425079,0,-3.52666947576735,-3.76195096969604,0.334417216957898
+8215,87943,449697.952,88043,449597.952,14,82,66,0.66,38.6984850494327,0.714015151515151,NA,0.0480471746842522,0.38,38,2,94.0008281487741,0.797664469880911,29.25,2.60504885723716,0,-3.35996423165003,-3.6176860332489,0.227228904871537
+8216,87943,449597.952,88043,449497.952,15,82,73.75,0.245833333333333,19.1600477188497,0.562323943661972,10,0.0912762560340343,0.8425,84.25,1,99.5291083083911,0.870424360220278,84.25,1.53020122992179,0,-3.67410185601976,-3.83696460723877,0.209210263957231
+8217,87943,449497.952,88043,449397.952,16,82,87.25,0.8725,37.6949888649104,0.862941738299905,NA,0.108874870585278,0.9925,99.25,1,99.9801514397,0.823165340406723,99.25,0.627562054458733,0,-3.42490549882253,-3.8332371711731,0.684037055815021
+8218,87943,449397.952,88043,449297.952,17,82,93.5,0.935,38.5005492772348,0.882798573975045,NA,0.0655524090956897,0.895,89.5,1,99.6998271307191,0.690967832560753,89.5,0.293296089385475,0,-2.00577812724643,-2.40158343315125,0.592326151148477
+8219,87943,449297.952,88043,449197.952,18,82,87.25,0.1745,9.42146715412471,0.381396307286515,10,0.079775590673089,0.9375,93.75,1,99.8273917947966,0.88748241912799,93.75,0.564955078125,0,-1.44698631763458,-1.7674925327301,0.242977101881605
+8220,87943,449197.952,88043,449097.952,19,82,55.75,0.139375,18.811690563949,0.555957035795746,11.3306188778075,0.0258845629349526,0.3825,38.25,2,93.967833655769,0.798291238635872,27.75,2.62534708758585,0,-1.7155087656445,-2.0323166847229,0.671240206483455
+8221,87943,449097.952,88043,448997.952,20,82,48.5,0.0808333333333333,6.48334557219504,0.250956119162641,17.4754689570643,0.0441294592133636,0.495,49.5,3,94.8467188098196,0.848922221922465,40,3.27372407431554,0,-0.412588886088795,-2.33026242256165,2.09489634109243
+8222,87943,448997.952,88043,448897.952,21,82,12.5,0.015625,3.98767306976129,0.21547619047619,21.5907468185948,0.037228089911805,0.385,38.5,4,92.9410658193486,0.827630785141774,30.75,7.50666437520609,0,-0.590925762585054,-3.10948872566223,2.12496669008095
+8223,87943,448897.952,88043,448797.952,22,82,10,0.025,7.89090160051026,0.326322751322751,25.8228413491947,0.00863990217509127,0.0925,9.25,4,73.5599952313503,0.69290520706318,3.5,15.6945505915461,0,-3.27761085828145,-3.46357250213623,0.922914961551971
+8224,87943,448797.952,88043,448697.952,23,82,69.25,0.34625,18.2293926305191,0.54,25,0.036353187221921,0.4775,47.75,2,97.3496056829019,0.864839293920472,47.5,5.71868021700395,0,-2.77433691422145,-3.45929718017578,0.615648498564827
+8225,87943,448697.952,88043,448597.952,24,82,91.75,0.9175,37.3309826425723,0.908265213442325,NA,0.0229043076358789,0.21,21,3,88.2296844722765,0.872568176025826,17.25,0,0,-1.99969159232246,-2.17810845375061,0.331602595301611
+8226,87943,448597.952,88043,448497.952,25,82,24.5,0.245,22.499958548096,0.828231292517007,NA,-0.0166362176827079,0.0075,0.75,1,44.4894453484604,1,0.75,18.7332744598389,15.8113880157471,-1.54866872231166,-1.78037512302399,0.241574806598322
+8227,87943,448497.952,88043,448397.952,26,82,0,NA,NA,NA,NA,-0.0698325374769047,0,0,0,NA,NA,0,NA,NA,-1.25940226183997,-1.32946813106537,0.161795663069289
+8228,87943,448397.952,88043,448297.952,27,82,0,NA,NA,NA,NA,-0.0022797946530045,0.2575,25.75,1,94.8912707561653,0.978159978159978,25.75,141.175681771584,106.066017150879,-1.2633614440759,-1.32213044166565,0.091768294462276
+8229,87943,448297.952,88043,448197.952,28,82,0,NA,NA,NA,NA,-0.0235775855025713,0.0325,3.25,2,67.0362641309469,0.655469422911283,2.5,106.022277245155,36.4005508422852,-1.431584543652,-1.52072727680206,0.13974965656284
+8230,87943,448197.952,88043,448097.952,29,82,9.25,0.0185,5.19222880508362,0.0875,11.3983456376682,-0.0225877469218722,0.03,3,2,68.9081048780414,0.757428744693754,2.75,4.51184463500977,0,-1.50734504063924,-1.55708587169647,0.0991354941767889
+8231,87943,448097.952,88043,447997.952,30,82,0,NA,NA,NA,NA,-0.0687362151465277,0.2125,21.25,2,92.4056266234173,0.949542730999685,20.75,88.3276323206285,56.5685424804688,-1.18418233262168,-1.44166529178619,0.364152216393396
+8232,87943,447997.952,88043,447897.952,31,82,0,NA,NA,NA,NA,0.0484665095050877,0.74,74,1,99.1448611187463,0.924043640381163,74,116.183068584751,63.6396102905273,-0.881944252385033,-1.1927056312561,0.46873989277761
+8233,87943,447897.952,88043,447797.952,32,82,2,0.02,7.75508343417352,0.333333333333333,NA,0.0388768255369359,0.5575,55.75,1,98.2142154717639,0.961973055193394,55.75,62.6458852109353,30,-0.699824020266533,-1.10609245300293,0.62497153876537
+8234,87943,447797.952,88043,447697.952,33,82,8.75,0.0109375,3.928499213004,0.170386904761905,17.1095708146466,0.00301427493806841,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,25.6452659807707,15.8113880157471,-0.983320130242242,-1.19654631614685,0.384730664751461
+8235,87943,447697.952,88043,447597.952,34,82,0,NA,NA,NA,NA,-0.0652713255466369,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,74.7438774108887,68.0073547363281,-1.33462970455488,-1.4564516544342,0.190195727741375
+8236,87943,447597.952,88043,447497.952,35,82,0.25,0.0025,0,0,NA,-0.0229367569224996,0.0225,2.25,4,36.9299868077551,0.48849104859335,1,55.5832981533474,30,-1.52752350436317,-1.58173179626465,0.0729477155443674
+8237,87943,447497.952,88043,447397.952,36,82,5.25,0.013125,6.0193058285653,0.177083333333333,10.5901699437495,-0.0101685918190742,0.0125,1.25,2,43.859649122807,0.594936708860759,1,22.6801895141602,14.1421356201172,-1.51286212603251,-1.59726560115814,0.197782955886227
+8238,87943,447397.952,88043,447297.952,37,82,0.25,0.0025,0,0,NA,-0.0212925031096813,0.045,4.5,2,76.3655700534096,0.844871049059531,4.25,85.369260152181,76.1577301025391,-1.27719234757953,-1.55670094490051,0.437269067979451
+8239,87943,447297.952,88043,447197.952,38,82,0,NA,NA,NA,NA,-0.064587166207566,0,0,0,NA,NA,0,NA,NA,-1.65026970704397,-1.80985248088837,0.203346545825572
+8240,87943,447197.952,88043,447097.952,39,82,0,NA,NA,NA,NA,-0.0364802252959089,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,99.2188306535993,89.4427185058594,-1.77732468975915,-1.89569473266602,0.184520342304948
+8241,87943,447097.952,88043,446997.952,40,82,0,NA,NA,NA,NA,-0.162075908705592,0,0,0,NA,NA,0,NA,NA,-1.72531054417292,-1.91810858249664,0.33702895396954
+8242,87943,446997.952,88043,446897.952,41,82,0,NA,NA,NA,NA,0.00192523975129006,0.385,38.5,1,96.780810904996,0.959780516533081,38.5,172.09865688968,125,-2.27209722995758,-2.58484840393066,0.541365439459304
+8243,87943,446897.952,88043,446797.952,42,82,0,NA,NA,NA,NA,0.265361813902855,1,100,1,100,NA,100,127.157209777832,74.3303451538086,-2.83133594195048,-2.94019293785095,0.153501701475141
+8244,87943,446797.952,88043,446697.952,43,82,7,0.07,16.9922755710666,0.452380952380952,NA,0.175713810758389,0.7325,73.25,1,99.1136185490844,0.979646182811201,73.25,52.8458573663601,15,-2.92654111650255,-2.94786620140076,0.0391644420952419
+8245,87943,446697.952,88043,446597.952,44,82,60.75,0.0675,8.60660774427824,0.243443274409976,10,0.0374100679757203,0.5775,57.75,1,98.3373505793708,0.956067491316465,57.75,1.53462110246931,0,-2.96951781378852,-3.00263738632202,0.054264683837109
+8246,87943,446597.952,88043,446497.952,45,82,25,0.0833333333333333,15.6517556844909,0.457437275985663,19.120226591666,0.0326088985682873,0.545,54.5,3,97.5124348348474,0.826774211010664,53.75,8.34889888763428,0,-3.07309822241465,-3.15828132629395,0.0862428113329953
+8247,87943,446497.952,88043,446397.952,46,82,22.25,0.0370833333333333,8.22381850069046,0.241296296296296,11.9281293399695,-0.0219469317521362,0.09,9,1,87.719298245614,0.963369963369963,9,6.8249249458313,0,-3.18253509203593,-3.27777147293091,0.149776230842414
+8248,87943,446397.952,88043,446297.952,47,82,14,0.028,5.99095012545875,0.226666666666667,15.3071357893653,-0.0573212390726803,0,0,0,NA,NA,0,NA,NA,-3.32600869735082,-3.86801505088806,0.297968638574614
+8249,87943,446297.952,88043,446197.952,48,82,2.25,0.005625,2.68015350704421,0.135416666666667,15.1167109245423,-0.0155935537960613,0,0,0,NA,NA,0,NA,NA,-3.22138428688049,-3.29504990577698,0.101375118401873
+8250,87943,446197.952,88043,446097.952,49,82,1.25,0.0025,0,0,18.9736659610103,0.00376470975790653,0,0,0,NA,NA,0,NA,NA,-3.09514629840851,-3.17246508598328,0.0821258804152604
+8251,87943,446097.952,88043,445997.952,50,82,0,NA,NA,NA,NA,-0.0473652558904848,0,0,0,NA,NA,0,NA,NA,-2.96732478671604,-3.01717734336853,0.103803531308204
+8252,87943,445997.952,88043,445897.952,51,82,1.75,0.004375,1.45833333333333,0.0972222222222222,36.0344100014488,0.0157613222356304,0.4025,40.25,1,96.9672588816937,0.949112292208527,40.25,24.0371768904028,0,-2.80288916826248,-2.90859842300415,0.127121172737392
+8253,87943,445897.952,88043,445797.952,52,82,0,NA,NA,NA,NA,-0.110288261324167,0,0,0,NA,NA,0,NA,NA,-2.68138000700209,-2.72789072990417,0.0715192115480937
+8254,87943,445797.952,88043,445697.952,53,82,0.5,0.005,2.5,0.166666666666667,NA,0.0352013925609572,0.53,53,1,98.0336545290164,0.967599092774598,53,43.1226328543897,0,-2.47371168931325,-2.62564921379089,0.172416738376547
+8255,87943,445697.952,88043,445597.952,54,82,0,NA,NA,NA,NA,0.0925870863068849,0.905,90.5,2,99.5175890292157,0.784863618901267,90.25,63.7324341621188,22.3606796264648,-2.27495312690735,-2.38233065605164,0.152555694972033
+8256,87943,445597.952,88043,445497.952,55,82,3.75,0.00375,0.916666666666667,0.0611111111111111,15.8979340077936,0.123520395787273,0.755,75.5,2,96.6692500269853,0.770452996664395,45,17.192755623369,0,-2.8413073486752,-3.54035472869873,0.835148189319941
+8257,87943,445497.952,88043,445397.952,56,82,0,NA,NA,NA,NA,0.172139087505639,1,100,1,100,NA,100,50.8329051160812,5,-4.18043595552444,-4.62897443771362,0.689226070834269
+8258,87943,445397.952,88043,445297.952,57,82,0,NA,NA,NA,NA,0.159580528875813,0.9975,99.75,1,99.9934086913499,-0.0554089709762907,99.75,71.2039937566695,25,-4.53489669164022,-4.67830562591553,0.263313901543337
+8259,87943,445297.952,88043,445197.952,58,82,15,0.075,12.1365140269916,0.550925925925926,15.8113883008419,0.153196321568103,0.89,89,1,99.684221684177,0.851632047477745,89,25.3057412994042,0,-4.47816948095957,-4.63145303726196,0.181000506910122
+8260,87943,445197.952,88043,445097.952,59,82,8,0.04,9.08866322270685,0.295698924731183,15,0.0827861496903643,0.58,58,1,98.352293007383,0.961508852963818,58,30.072977090704,0,-4.36873239941067,-4.47411441802979,0.219403600934326
+8261,87943,445097.952,88043,444997.952,60,82,23.75,0.11875,14.4419158190346,0.453405017921147,10,-0.00268719045470789,0.1425,14.25,3,88.1723830002738,0.821502945201404,13.25,21.4934962757847,5,-4.34905823071798,-4.50919055938721,0.260788545555268
+8262,87943,444997.952,88043,444897.952,61,82,0,NA,NA,NA,NA,0.0177549199803616,0.0025,0.25,1,0,NA,0.25,25.4950981140137,25.4950981140137,-4.44152439965142,-4.56333017349243,0.265269799163549
+8263,87943,444897.952,88043,444797.952,62,82,1.75,0.00583333333333333,1.41300246086697,0.144444444444444,12.1676051329096,-0.217216227573663,0,0,0,NA,NA,0,NA,NA,-4.21024121840795,-4.51686573028564,0.456502513668615
+8264,87943,444797.952,88043,444697.952,63,82,58.75,0.195833333333333,12.7478015136474,0.506851851851852,11.1803398874989,0.00213148782735516,0.115,11.5,2,86.9667271323992,0.855135448355787,10.75,0,0,-3.6305587026808,-3.87413048744202,0.337559408427813
+8265,87943,444697.952,88043,444597.952,64,82,31.25,0.0625,8.72212051782447,0.469775132275132,12.2360679774998,0.035581270571638,0.49,49,2,96.6367854380561,0.919198448610213,47.5,19.0995451966111,0,-3.7073318362236,-4.19864320755005,0.563951454816906
+8266,87943,444597.952,88043,444497.952,65,82,19.75,0.0179545454545455,3.84662737567639,0.309217171717172,12.756348590639,0.012658966910069,0.175,17.5,3,86.0355454451867,0.89159891598916,13.5,9.29769586835589,0,-4.21379558245341,-4.6025128364563,0.546922480075865
+8267,87943,444497.952,88043,444397.952,66,82,41,0.041,5.16641814054394,0.228392286171063,13.4721359549996,0.0373800789995221,0.3625,36.25,2,93.8814316373825,0.875693673695893,29,2.0108931968952,0,-4.5842490196228,-4.7040491104126,0.270712639852926
+8268,87943,444397.952,88043,444297.952,67,82,50.5,0.2525,15.9569172991858,0.394278606965174,25,0.0967207239569143,0.755,75.5,1,99.205943814227,0.956959936874574,75.5,3.5141939643203,0,-4.5960921049118,-4.69935178756714,0.102905096244156
+8269,87943,444297.952,88043,444197.952,68,82,74,0.74,35.9039407220635,0.832207207207207,NA,0.109019268889679,0.9575,95.75,1,99.8844617862358,0.64349376114082,95.75,1.96456600916292,0,-4.39794821209378,-4.53092527389526,0.274170366593887
+8270,87943,444197.952,88043,444097.952,69,82,36.5,0.1825,22.7834625580699,0.683734192908505,28.2842712474619,0.0356985541225896,0.4125,41.25,2,94.7686777760725,0.80963045912654,32.5,2.53671290079753,0,-3.71822208166122,-4.39767265319824,0.916461126517243
+8271,87943,444097.952,88043,443997.952,70,82,21.5,0.1075,16.8820669053937,0.655633802816901,35.3553390593274,-0.00337893039322807,0.185,18.5,3,87.0935307683839,0.858423784804153,13.75,2.37384370855383,0,-2.99292900827196,-3.75581741333008,0.948377559780106
+8272,87943,443997.952,88043,443897.952,71,82,0,NA,NA,NA,NA,-0.0907880476675928,0,0,0,NA,NA,0,NA,NA,-3.0666454633077,-3.35994744300842,0.307704673225659
+8273,87943,443897.952,88043,443797.952,72,82,0,NA,NA,NA,NA,-0.063219778494713,0.335,33.5,1,96.169806046512,0.938370516455072,33.5,100.159066157555,47.4341621398926,-3.11365845468309,-3.3355176448822,0.429692912451916
+8274,87943,443797.952,88043,443697.952,73,82,0,NA,NA,NA,NA,-0.113092391879181,0.4125,41.25,1,97.0684321667208,0.871220604703247,41.25,62.6292479775169,30,-3.70658826828003,-4,0.670117244984287
+8275,87943,443697.952,88043,443597.952,74,82,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.0501527148114292,0.43,43,2,94.5415472718087,0.894847528916929,35.25,27.759421781052,0,-3.07750460836622,-3.16012096405029,0.110843678103368
+8276,87943,443597.952,88043,443497.952,75,82,25.75,0.0858333333333333,12.5199819674891,0.464938271604938,24.3835763545577,0.0252008779265816,0.515,51.5,1,97.9291261653514,0.833113509730559,51.5,11.9286154404427,0,-3.08346182107925,-3.12205982208252,0.0534541713324732
+8277,87943,443497.952,88043,443397.952,76,82,42.25,0.140833333333333,23.3386465695226,0.657820094927661,11.380711874577,0.0800544623396127,0.8275,82.75,1,99.4773714744283,0.758840579710145,82.75,6.21856069996998,0,-3.07668458090888,-3.13407039642334,0.111917253770345
+8278,87943,443397.952,88043,443297.952,77,82,3,0.0075,4.02835207542032,0.165277777777778,11.1803398874989,0.100564368385822,0.96,96,1,99.8914698623176,0.553571428571428,96,23.1938123206298,0,-2.93584778573778,-3.03705620765686,0.147586330730903
+8279,87943,443297.952,88043,443197.952,78,82,13.25,0.033125,8.27936505743552,0.173044217687075,11.1803398874989,0.0252188278700487,0.4225,42.25,2,96.351880408284,0.911199911199911,41.25,36.3526201868904,0,-2.80403365691503,-2.99762940406799,0.410498765779878
+8280,87943,443197.952,88043,443097.952,79,82,4.25,0.010625,3.71964681532674,0.180555555555556,22.1352549156242,0.039926563903191,0.3225,32.25,2,94.6299706094671,0.918348119651409,31,27.3327446427456,7.07106781005859,-2.94704622692532,-3.11828446388245,0.357319240859288
+8281,87943,443097.952,88043,442997.952,80,82,0,NA,NA,NA,NA,0.097525286625314,0.75,75,1,99.1857866401092,0.964601769911504,75,54.5670611317952,5,-3.14761612812678,-3.22617626190186,0.123294454587317
+8282,87943,442997.952,88043,442897.952,81,82,6.75,0.00613636363636364,2.71612661140137,0.091991341991342,15.464810711222,0.109056280619698,0.9725,97.25,1,99.9261039309117,0.655087459965509,97.25,16.5803131750739,0,-3.17190167638991,-3.2293906211853,0.0785433107474229
+8283,87943,442897.952,88043,442797.952,82,82,25.5,0.255,28.8516176212841,0.810457516339869,NA,0.00325519555475694,0.265,26.5,2,91.8634185735828,0.886027709513125,22.5,14.5190108317249,0,-2.87277684609095,-3.17280864715576,0.599959087434549
+8284,87943,442797.952,88043,442697.952,83,82,2,0.01,2.65712659918505,0.238095238095238,94.339811320566,-0.0736861129806493,0,0,0,NA,NA,0,NA,NA,-4.12249623404609,-4.87981462478638,1.38198106358248
+8285,87943,442697.952,88043,442597.952,84,82,0,NA,NA,NA,NA,-0.0510033355723135,0,0,0,NA,NA,0,NA,NA,-5.06208515167236,-5.25918340682983,0.349909285058216
+8286,87943,442597.952,88043,442497.952,85,82,0,NA,NA,NA,NA,-0.0409753051138978,0,0,0,NA,NA,0,NA,NA,-5.23091400994195,-5.28304529190063,0.118099115168487
+8287,87943,442497.952,88043,442397.952,86,82,0,NA,NA,NA,NA,-0.0692149817725294,0,0,0,NA,NA,0,NA,NA,-5.22416750590007,-5.28064775466919,0.116898842524787
+8288,87943,442397.952,88043,442297.952,87,82,2,0.00333333333333333,1.17851130197758,0.0277777777777778,13.4628120507726,-0.0513249030426778,0,0,0,NA,NA,0,NA,NA,-5.11462555991279,-5.22998571395874,0.211163973396343
+8289,87943,442297.952,88043,442197.952,88,82,7.5,0.0125,4.74036593989599,0.185185185185185,22.2432990076618,-0.0432405958122399,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,28.5033387078179,20.6155281066895,-4.59429371356964,-5.01985597610474,0.565319395856544
+8290,87943,442197.952,88043,442097.952,89,82,23.25,0.0332142857142857,6.79789023501883,0.345528047284488,11.484062307474,-0.00970755186214319,0.0175,1.75,2,48.8528015934479,0.745547073791349,1,0,0,-4.22440234820048,-4.45655155181885,0.356698346198336
+8291,87943,442097.952,88043,441997.952,90,82,5.75,0.02875,9.82877290210912,0.344771241830065,14.142135623731,-0.0321419889794925,0,0,0,NA,NA,0,NA,NA,-4.00821566581726,-4.24084997177124,0.311877688363911
+8292,87943,441997.952,88043,441897.952,91,82,0,NA,NA,NA,NA,-0.0434080270453671,0,0,0,NA,NA,0,NA,NA,-4.31459148724874,-4.57414197921753,0.329351418025851
+8293,87943,441897.952,88043,441797.952,92,82,0,NA,NA,NA,NA,-0.0625872856536216,0.1225,12.25,2,88.999235331577,0.837199837199837,12,55.870986082116,30,-4.43982405132718,-4.61755418777466,0.302781557395906
+8294,87943,441797.952,88043,441697.952,93,82,1.25,0.0025,0,0,15.2887897813915,0.0274231509752099,0.315,31.5,2,92.4845052333373,0.757753482293692,23.25,34.9704285878984,5,-4.32794690132141,-4.52990627288818,0.204026890713288
+8295,87943,441697.952,88043,441597.952,94,82,0,NA,NA,NA,NA,-0.0927635717972589,0.005,0.5,1,30.8308651382582,1,0.5,13.4958639144897,11.1803398132324,-4.38373841179742,-4.53727865219116,0.183096247101556
+8296,87943,441597.952,88043,441497.952,95,82,0.75,0.0075,4.31546051979576,0.166666666666667,NA,-0.118402391215786,0,0,0,NA,NA,0,NA,NA,-4.58010649681091,-4.80691957473755,0.329363435542254
+8297,87943,441497.952,88043,441397.952,96,82,14,0.07,16.7976666769292,0.302777777777778,10,-0.0789852516388055,0,0,0,NA,NA,0,NA,NA,-4.6579016049703,-4.83933782577515,0.429626768871435
+8298,87943,441397.952,88043,441297.952,97,82,10.5,0.105,21.0795139226629,0.361111111111111,NA,-0.0354226404379006,0.07,7,1,85.3702908942512,0.90442054958184,7,51.4129061017718,42.7200164794922,-4.38238320748011,-4.76742792129517,0.680388305752421
+8299,87943,441297.952,88043,441197.952,98,82,1.75,0.0035,0.863092103959152,0.0333333333333333,11.1803398874989,0.00088248545778697,0.2125,21.25,3,86.5232125419145,0.81499001366551,11,42.7102627922507,5,-4.18753430578444,-4.54634380340576,0.363498527236909
+8300,87943,441197.952,88043,441097.952,99,82,18.6842105263158,0.044375,10.5918646775223,0.37008281573499,10.5901699437495,0.00956840368555277,0.0775,7.75,2,80.1829228243518,0.761517615176152,5.75,13.675139334894,5,-4.20652560393016,-4.34875440597534,0.203880710082215
+8301,88043,451097.952,88143,450997.952,0,83,11.25,0.009375,3.55764377547691,0.159292328042328,13.7925518466862,0.0187733612407283,0.035,3.5,4,52.8784969555764,0.637305699481865,2,6.70688274928502,0,-3.40737575292587,-3.56689190864563,0.175620523280163
+8302,88043,450997.952,88143,450897.952,1,83,16.75,0.0152272727272727,5.43634730040553,0.22043512043512,11.5193716125761,0.0242861789816379,0.1225,12.25,3,82.6647173511776,0.837199837199837,7.5,4.31705467068419,0,-3.57874241471291,-3.86875152587891,0.255805413625055
+8303,88043,450897.952,88143,450797.952,2,83,11.25,0.0125,5.54337170130326,0.209513435003631,13.9336238638088,-0.00912794400087023,0.065,6.5,3,75.9165130299758,0.686970131733403,5,9.06696664370023,0,-3.86759134133657,-4.06375169754028,0.238496838986248
+8304,88043,450797.952,88143,450697.952,3,83,2,0.01,5.47472018109864,0.208333333333333,70.7106781186548,-0.0804385731858929,0.06,6,2,75.7794062578482,0.832026875699888,4.5,10.5347224076589,0,-4.05190059542656,-4.12621212005615,0.105983015585941
+8305,88043,450697.952,88143,450597.952,4,83,36.25,0.18125,14.0202399566939,0.352430555555556,10,-0.00741462512511134,0.22,22,3,87.7119300559011,0.820349501878164,15.25,1.30681818181818,0,-4.13969979683558,-4.29069328308105,0.157605690519026
+8306,88043,450597.952,88143,450497.952,5,83,15.75,0.0175,4.48462752651323,0.230574261129817,13.421035467711,-0.00942050970552373,0.2075,20.75,2,92.7481502272062,0.948496748857272,20.5,3.73665572936276,0,-4.26941272616386,-4.4179425239563,0.182540874861855
+8307,88043,450497.952,88143,450397.952,6,83,37,0.37,29.8341734451097,0.771396396396396,NA,0.00925530634711322,0.36,36,3,92.3760208105081,0.875710227272727,29.25,1.43171338240306,0,-4.46671684583028,-4.55327177047729,0.133854137685528
+8308,88043,450397.952,88143,450297.952,7,83,26.25,0.065625,9.45467028838221,0.521987951807229,25.5901699437495,0.0583413055201345,0.44,44,2,94.5579507924399,0.857142857142857,32.5,3.4764260487123,0,-4.64147078990936,-4.72211503982544,0.0993400880500971
+8309,88043,450297.952,88143,450197.952,8,83,92,0.92,36.7086899669259,0.925271739130435,NA,0.0717530322866514,0.715,71.5,1,99.0388168843254,0.706515359029544,71.5,0.217031705629575,0,-4.61541966597239,-4.71830606460571,0.161423622179719
+8310,88043,450197.952,88143,450097.952,9,83,67.75,0.6775,38.959620516551,0.777367773677737,NA,0.05165330115291,0.6025,60.25,2,98.0923129425848,0.877009084556254,59.75,2.41525841550708,0,-4.25982707738876,-4.52886199951172,0.452758948402045
+8311,88043,450097.952,88143,449997.952,10,83,62.5,0.0625,6.01062235910478,0.194115422206156,10.6502815398729,0.0417040375729266,0.475,47.5,3,96.4713385897682,0.826839826839827,45.75,1.05450178447523,0,-3.53702951967716,-4.0048885345459,0.387659057158168
+8312,88043,449997.952,88143,449897.952,11,83,73,0.243333333333333,19.0721505883614,0.702614874733176,10.3934466291663,0.0736013371124864,0.8175,81.75,1,99.442091962007,0.689172087653471,81.75,2.31065706958829,0,-3.62326751152674,-4.03849697113037,0.417348134785498
+8313,88043,449897.952,88143,449797.952,12,83,79.25,0.7925,37.0161701513553,0.84279705573081,NA,0.0892102065775544,0.9325,93.25,1,99.8128381781211,0.53900151919954,93.25,1.19940556789531,0,-3.60658358037472,-4.09493923187256,0.545196914860062
+8314,88043,449797.952,88143,449697.952,13,83,76.25,0.7625,38.3442766828981,0.760655737704918,NA,0.0770240564551204,0.55,55,2,97.2002862503316,0.777777777777778,52.5,1.30648366754705,0,-3.19604313373566,-3.64182615280151,0.369178949000989
+8315,88043,449697.952,88143,449597.952,14,83,74.5,0.248333333333333,14.3072544482923,0.423563218390805,10,0.0567262637683234,0.52,52,5,92.1452350237538,0.779285099052541,34.5,1.64044809341431,0,-3.41485135257244,-3.85903453826904,0.334283415233786
+8316,88043,449597.952,88143,449497.952,15,83,85.25,0.284166666666667,15.6101322725255,0.496384203280755,10,0.104237157151219,0.8825,88.25,2,99.1763307272622,0.872595235061792,87.5,0.572439285580903,0,-3.87794999281565,-4.00910711288452,0.172628428453263
+8317,88043,449497.952,88143,449397.952,16,83,93,0.93,37.7722653989057,0.882168458781362,NA,0.0924643945135176,0.98,98,1,99.9465655549884,0.932795698924731,98,0.344387755102041,0,-3.31036351621151,-3.79618549346924,0.638792481563334
+8318,88043,449397.952,88143,449297.952,17,83,98.75,0.9875,38.1987269926796,0.922784810126582,NA,0.067027635006234,0.9275,92.75,1,99.7981670352509,0.744935498111541,92.75,0.0673854447439353,0,-2.30056844154994,-3.16256499290466,0.890726593621408
+8319,88043,449297.952,88143,449197.952,18,83,96,0.96,38.1643406580151,0.905381944444445,NA,0.100160733740777,1,100,1,100,NA,100,0.2,0,-1.93184408545494,-2.97830319404602,0.934853312435335
+8320,88043,449197.952,88143,449097.952,19,83,86.25,0.2875,13.7961490925371,0.46521595779756,11.6666666666667,0.0878565286158118,0.895,89.5,1,99.6998271307191,0.817390082876809,89.5,0.782428943911078,0,-2.24798944592476,-3.22020840644836,0.938354646280391
+8321,88043,449097.952,88143,448997.952,20,83,77.5,0.258333333333333,16.8823923267609,0.528693639291465,10.3934466291663,0.0248977022431791,0.22,22,2,89.9296741057117,0.88567695574065,15.5,0.113636363636364,0,-3.06306500236193,-3.72118520736694,1.20804277620079
+8322,88043,448997.952,88143,448897.952,21,83,41,0.1025,11.8134696649375,0.3375,11.5450849718747,-0.00204358589333424,0.125,12.5,3,82.0445873243304,0.852100840336134,7.5,0.9,0,-2.87079557031393,-3.65827059745789,1.30875882450297
+8323,88043,448897.952,88143,448797.952,22,83,45.5,0.151666666666667,13.8923627667359,0.343632958801498,10.3934466291663,0.019357342393123,0.3175,31.75,2,94.709337550412,0.828742685885543,30.25,1.26264046496294,0,-3.1227255264918,-3.36385560035706,0.344320293584873
+8324,88043,448797.952,88143,448697.952,23,83,69.25,0.230833333333333,12.6752741839524,0.275353535353535,12.4535599249993,0.0469617077540897,0.5175,51.75,2,95.6291838438397,0.811587376354216,37.5,0.939442565475685,0,-2.56156052649021,-2.86065125465393,0.307344657248499
+8325,88043,448697.952,88143,448597.952,24,83,68,0.68,33.2482518124122,0.907475490196079,NA,-0.0296673102420755,0.065,6.5,2,81.2557710064635,0.9478283552889,6.25,0.576923076923077,0,-2.22109628717105,-2.44279289245605,0.269230873080538
+8326,88043,448597.952,88143,448497.952,25,83,0,NA,NA,NA,NA,-0.0187065214991162,0,0,0,NA,NA,0,NA,NA,-1.81940551847219,-2.30604195594788,0.451199482869637
+8327,88043,448497.952,88143,448397.952,26,83,0,NA,NA,NA,NA,-0.0348551041299652,0,0,0,NA,NA,0,NA,NA,-1.32246955235799,-1.45219361782074,0.16182103129796
+8328,88043,448397.952,88143,448297.952,27,83,0,NA,NA,NA,NA,-0.0468287527188659,0,0,0,NA,NA,0,NA,NA,-1.20768955349922,-1.32979846000671,0.120839376862666
+8329,88043,448297.952,88143,448197.952,28,83,4.25,0.0085,3.3018006723395,0.105,14.9814095698291,-0.0128125706822902,0.035,3.5,3,62.5889046941678,0.637305699481865,2.25,5.17096737452916,0,-1.39726265271505,-1.57472145557404,0.165402987001199
+8330,88043,448197.952,88143,448097.952,29,83,6.75,0.0135,5.42202542139371,0.197222222222222,12.4787086646191,-0.113572327662478,0,0,0,NA,NA,0,NA,NA,-1.53016072511673,-1.57919502258301,0.0599024859995731
+8331,88043,448097.952,88143,447997.952,30,83,0,NA,NA,NA,NA,-0.30162875013848,0,0,0,NA,NA,0,NA,NA,-1.48707866668701,-1.52416694164276,0.0949448987921979
+8332,88043,447997.952,88143,447897.952,31,83,3.5,0.0116666666666667,3.1384361392794,0.281481481481481,24.8140093527857,-0.0655151457198917,0.01,1,3,15.8692205350002,0.242424242424242,0.5,54.5357227325439,50,-1.47403689225515,-1.55778300762177,0.149916966664393
+8333,88043,447897.952,88143,447797.952,32,83,6.5,0.00722222222222222,2.60362121135486,0.170987654320988,18.1874317801934,-0.00690442164341221,0.0075,0.75,1,44.4894453484604,1,0.75,4.02368927001953,0,-1.43830510228872,-1.53223264217377,0.162404949222631
+8334,88043,447797.952,88143,447697.952,33,83,17.75,0.0221875,5.67428824367855,0.234026474880133,12.2827974015616,0.026321450865089,0.245,24.5,3,92.2140451398495,0.879590608067429,23,6.99725470250967,0,-1.37581438819567,-1.44852864742279,0.114449613194887
+8335,88043,447697.952,88143,447597.952,34,83,0,NA,NA,NA,NA,-0.00739205980429688,0.0825,8.25,1,86.9391941099265,0.878897971541023,8.25,33.7131994998816,7.07106781005859,-1.42501783370972,-1.482346534729,0.0651044664703656
+8336,88043,447597.952,88143,447497.952,35,83,15.75,0.0315,7.13250078513692,0.283414634146341,11.064495102246,-0.0083345374795681,0.18,18,3,89.3473256813623,0.846360668331093,16.25,5.74295356538561,0,-1.50330034891764,-1.53840672969818,0.0425165234482701
+8337,88043,447497.952,88143,447397.952,36,83,0.25,0.0025,0,0,NA,0.022280964453239,0,0,0,NA,NA,0,NA,NA,-1.35460966080427,-1.52326464653015,0.223888312929567
+8338,88043,447397.952,88143,447297.952,37,83,0,NA,NA,NA,NA,0.0109549029510163,0,0,0,NA,NA,0,NA,NA,-1.02737684547901,-1.30830729007721,0.331688625409912
+8339,88043,447297.952,88143,447197.952,38,83,0,NA,NA,NA,NA,-0.068670051975505,0,0,0,NA,NA,0,NA,NA,-1.55327826738358,-1.73072326183319,0.281827443863265
+8340,88043,447197.952,88143,447097.952,39,83,0,NA,NA,NA,NA,-0.129999940290327,0,0,0,NA,NA,0,NA,NA,-1.59930894772212,-1.7073358297348,0.145462807017405
+8341,88043,447097.952,88143,446997.952,40,83,0,NA,NA,NA,NA,-0.198621143363416,0,0,0,NA,NA,0,NA,NA,-1.42745739966631,-1.55354189872742,0.228534716222266
+8342,88043,446997.952,88143,446897.952,41,83,0,NA,NA,NA,NA,0.0299529671604978,0.365,36.5,2,95.0602339013218,0.964611165177386,35.5,180.413607976208,146.030822753906,-2.20193508267403,-2.55832886695862,0.626494221630521
+8343,88043,446897.952,88143,446797.952,42,83,0,NA,NA,NA,NA,0.192820130290347,0.8475,84.75,1,99.546047930594,0.969310247819749,84.75,102.815865992093,45.276927947998,-2.72648811340332,-2.84870028495789,0.140671225058601
+8344,88043,446797.952,88143,446697.952,43,83,21.75,0.02175,6.34479029168495,0.212409420289855,10.1180339887499,0.055632874833409,0.375,37.5,1,96.668457042866,0.965090909090909,37.5,39.8750761667887,20,-2.84587113062541,-2.89009189605713,0.0549297743487781
+8345,88043,446697.952,88143,446597.952,44,83,84,0.42,28.9197535476369,0.814485917418649,10,0.0718351255956804,0.8725,87.25,1,99.6285502360822,0.964349376114082,87.25,0.541954543324118,0,-2.91621547937393,-2.97598624229431,0.062099580044993
+8346,88043,446597.952,88143,446497.952,45,83,56.75,0.0810714285714286,7.33412162459971,0.246963070942663,12.7363942106038,0.0671133565061609,0.7825,78.25,1,99.3133324321661,0.85193843756088,78.25,2.84011155271683,0,-2.91212260723114,-3.00133347511292,0.0997160071195264
+8347,88043,446497.952,88143,446397.952,46,83,10.75,0.0215,7.07103943276808,0.153125,15.2688272303359,-0.00475302540859275,0.1975,19.75,2,89.3712780281532,0.893190921228304,15.5,19.916461534138,0,-2.90269474188487,-3.03365445137024,0.130024148806717
+8348,88043,446397.952,88143,446297.952,47,83,0,NA,NA,NA,NA,-0.0419811731119626,0,0,0,NA,NA,0,NA,NA,-3.04891088604927,-3.15316009521484,0.112853545169917
+8349,88043,446297.952,88143,446197.952,48,83,0.25,0.0025,0,0,NA,-0.0318504863864291,0,0,0,NA,NA,0,NA,NA,-3.09237329165141,-3.14739680290222,0.0567973077377771
+8350,88043,446197.952,88143,446097.952,49,83,0.25,0.0025,0,0,NA,-0.00861987740077893,0,0,0,NA,NA,0,NA,NA,-2.99973012506962,-3.074214220047,0.0800552631477003
+8351,88043,446097.952,88143,445997.952,50,83,0.25,0.0025,0,0,NA,-0.0291890937762219,0.15,15,1,91.6737426448862,0.909502262443439,15,23.514946937561,7.07106781005859,-2.86956822872162,-2.97346973419189,0.121762432483661
+8352,88043,445997.952,88143,445897.952,51,83,2.5,0.00416666666666667,1.38888888888889,0.0925925925925926,14.2965540653782,-0.0349073483061511,0.1975,19.75,1,93.4201273586734,0.91099243435692,19.75,15.9452158770984,5,-2.71391203999519,-2.86244297027588,0.107908408299998
+8353,88043,445897.952,88143,445797.952,52,83,1.25,0.0025,0,0,24.5546802507692,-0.144446402005851,0,0,0,NA,NA,0,NA,NA,-2.65519072612127,-2.72994041442871,0.0668411471913475
+8354,88043,445797.952,88143,445697.952,53,83,8.5,0.0283333333333333,7.19017594971046,0.197916666666667,17.0710678118655,-0.012798428801616,0.33,33,2,95.1758595424915,0.950455192915093,32.5,34.9069119800221,5,-2.55845569074154,-2.6316921710968,0.132634147120245
+8355,88043,445697.952,88143,445597.952,54,83,14.75,0.1475,28.3437891457085,0.627118644067797,NA,0.055538193073553,0.4775,47.75,3,96.4724130393611,0.918903576352283,46.75,31.7878940742053,0,-2.55049848556519,-2.84117388725281,0.34486924570265
+8356,88043,445597.952,88143,445497.952,55,83,12.75,0.00910714285714286,4.00802245790733,0.170634920634921,10.8366491241669,0.0319674764578667,0.3475,34.75,2,93.1487615025995,0.818988143723414,25.75,8.30764523513026,0,-3.36086332798004,-4.04104375839233,0.899496692669069
+8357,88043,445497.952,88143,445397.952,56,83,0.5,0.005,2.5,0.166666666666667,NA,0.212549030855298,1,100,1,100,NA,100,52.8608049964905,0,-4.57055455446243,-4.87980318069458,0.405697943238344
+8358,88043,445397.952,88143,445297.952,57,83,0,NA,NA,NA,NA,0.238626617640257,1,100,1,100,NA,100,85.5737167644501,40,-4.86355229218801,-4.94214248657227,0.125119754591141
+8359,88043,445297.952,88143,445197.952,58,83,24,0.08,14.1099890416296,0.4630877508236,16.0092521257733,0.158748011041898,0.84,84,1,99.5205818358949,0.714566929133858,84,13.6651789063499,0,-4.64630326628685,-4.86532592773438,0.169345008849191
+8360,88043,445197.952,88143,445097.952,59,83,0.5,0.0025,0,0,20.6155281280883,0.0481008437293349,0.4375,43.75,1,97.3060110945426,0.977984176126591,43.75,23.617397341047,0,-4.52120228608449,-4.61861419677734,0.0771486154277257
+8361,88043,445097.952,88143,444997.952,60,83,21.5,0.1075,16.9541166695152,0.508137432188065,10,0.000933688263976364,0.1475,14.75,1,91.5590620020185,0.861997584957737,14.75,23.062845553382,11.1803398132324,-4.58969184756279,-4.73341798782349,0.121019902811807
+8362,88043,444997.952,88143,444897.952,61,83,0,NA,NA,NA,NA,-0.0289879044756526,0,0,0,NA,NA,0,NA,NA,-4.71183057626088,-4.82679843902588,0.127781391159125
+8363,88043,444897.952,88143,444797.952,62,83,0,NA,NA,NA,NA,-0.207269239444577,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,70.7805650499132,14.1421356201172,-4.65630877017975,-4.83568906784058,0.285186330121037
+8364,88043,444797.952,88143,444697.952,63,83,16.5,0.055,7.5772657285955,0.358134920634921,12.7240226919466,0.0444060733146034,0.3975,39.75,5,93.2856003305759,0.863582106519638,36,42.9578543729002,0,-4.40166616439819,-4.8628191947937,0.541194727177631
+8365,88043,444697.952,88143,444597.952,64,83,0,NA,NA,NA,NA,-0.0377658285769576,0.18,18,2,92.042490457768,0.855963126560399,17.75,24.3786419232686,5,-4.67708522081375,-4.93267202377319,0.391443326007963
+8366,88043,444597.952,88143,444497.952,65,83,4.75,0.00678571428571429,1.99481375159935,0.150793650793651,16.1592007472394,-0.0239126570598455,0.1,10,3,76.4579497646793,0.767827529021559,4.75,15.5554906368256,0,-4.80582515398661,-4.95107460021973,0.25024973271082
+8367,88043,444497.952,88143,444397.952,66,83,8.75,0.00729166666666667,1.84424989715762,0.105952380952381,11.3620113459733,-0.0307631647713879,0.005,0.5,1,30.8308651382582,1,0.5,9.12570381164551,7.07106781005859,-4.78294682502747,-4.87762451171875,0.117918396956428
+8368,88043,444397.952,88143,444297.952,67,83,6.25,0.0104166666666667,2.42018187835629,0.0791666666666667,16.3643838643701,0.0243619648689128,0.205,20.5,3,87.7744182329803,0.731077857297766,12.75,10.8204484334806,0,-4.4824024438858,-4.71650648117065,0.292091592500928
+8369,88043,444297.952,88143,444197.952,68,83,54.5,0.181666666666667,12.2286176592631,0.345722483046427,11.380711874577,0.0438002601696644,0.445,44.5,5,89.106615950939,0.687833730386922,20.25,4.84659094221137,0,-3.98082659641902,-4.41653203964233,0.517786591856128
+8370,88043,444197.952,88143,444097.952,69,83,56.25,0.09375,7.27397001227753,0.297979797979798,10.3934466291663,0.0649279003839183,0.7475,74.75,1,99.1756322950922,0.866345426727397,74.75,2.59947730864968,0,-3.1176825016737,-3.76758360862732,0.809629190245806
+8371,88043,444097.952,88143,443997.952,70,83,22.5,0.075,13.8669686260664,0.591774891774892,10.3934466291663,0.00133886122883268,0.205,20.5,2,91.00688332847,0.757102580785079,17,2.32140657378406,0,-2.523834725221,-2.78077363967896,0.333752289826007
+8372,88043,443997.952,88143,443897.952,71,83,0,NA,NA,NA,NA,-0.0694348047906533,0,0,0,NA,NA,0,NA,NA,-2.70595893263817,-2.81934881210327,0.126107714638216
+8373,88043,443897.952,88143,443797.952,72,83,0,NA,NA,NA,NA,-0.068659160877578,0.04,4,1,78.9473684210526,0.782986111111111,4,148.427505493164,137.568176269531,-2.74511102835337,-3.08326292037964,0.277967581947764
+8374,88043,443797.952,88143,443697.952,73,83,0,NA,NA,NA,NA,-0.00610631079704035,0.3275,32.75,2,92.7713929031696,0.856900654835047,27.75,99.944828412005,42.4264068603516,-2.96459129452705,-3.7249128818512,0.391877962749335
+8375,88043,443697.952,88143,443597.952,74,83,8.5,0.0425,7.5536790039646,0.328282828282828,38.0788655293195,-0.0254550777825807,0.285,28.5,3,91.8402519152752,0.911738746690203,24.75,8.05300187228019,0,-3.00590525070826,-3.14317345619202,0.149917757191601
+8376,88043,443597.952,88143,443497.952,75,83,1.5,0.0075,3.42471115988337,0.229166666666667,55.9016994374947,-0.0742544016493775,0.2775,27.75,2,94.142740684564,0.889273356401384,26.75,18.7017738239185,0,-3.15203215181828,-3.21891164779663,0.118841163961081
+8377,88043,443497.952,88143,443397.952,76,83,8.5,0.017,5.47917025630127,0.269565217391304,22.8635783934265,-0.115330534400127,0.1625,16.25,3,87.1533429066943,0.809800554748382,13.75,4.06869861896221,0,-3.11048700412114,-3.16846084594727,0.0845530537596525
+8378,88043,443397.952,88143,443297.952,77,83,19.5,0.0195,5.81006664415659,0.220425925925926,14.3838830479933,0.0635199031472166,0.68,68,2,98.3171601456079,0.834882583170254,66.5,11.1443047523499,0,-2.91912180185318,-3.03710341453552,0.421148072484809
+8379,88043,443297.952,88143,443197.952,78,83,49.75,0.0829166666666667,7.41073883627552,0.222179322179322,13.9924720523313,0.041353831827837,0.4825,48.25,3,94.7438733247619,0.865058159933069,39.5,1.5989986874279,0,-1.92545118927956,-2.58083987236023,0.899382027851539
+8380,88043,443197.952,88143,443097.952,79,83,47.5,0.475,30.1702650347277,0.840350877192983,NA,0.0890019128425047,0.8025,80.25,1,99.3879413454111,0.916447340936625,80.25,12.9222938739622,0,-2.49477644761403,-2.91692161560059,0.705664053744084
+8381,88043,443097.952,88143,442997.952,80,83,1.5,0.0025,0,0,16.073991484493,0.112274102158844,1,100,1,100,NA,100,29.1604848337173,0,-3.0574581772089,-3.1116349697113,0.106861933250493
+8382,88043,442997.952,88143,442897.952,81,83,26,0.052,7.33838943809028,0.219707602339181,11.1803398874989,0.0733931352441687,0.5975,59.75,2,96.2246127701302,0.872163630552892,51.25,14.9547654554934,0,-2.98406895001729,-3.15364718437195,0.328289615802731
+8383,88043,442897.952,88143,442797.952,82,83,0.75,0.0075,3.27019417631815,0.277777777777778,NA,0.0800100875940916,0.8675,86.75,1,99.6123355042629,0.965485503911643,86.75,58.86138930307,20.6155281066895,-3.28497578203678,-4.79893064498901,1.29988991331534
+8384,88043,442797.952,88143,442697.952,83,83,7.5,0.075,21.6488792089502,0.55,NA,0.0363400694183656,0.5575,55.75,1,98.2142154717639,0.902216427640157,55.75,43.3460287769814,5,-5.02151143550873,-5.24100828170776,0.494211644064595
+8385,88043,442697.952,88143,442597.952,84,83,9,0.09,23.9856386434902,0.578703703703704,NA,-0.0511442231506226,0,0,0,NA,NA,0,NA,NA,-5.31376850605011,-5.36736392974854,0.0956019277567253
+8386,88043,442597.952,88143,442497.952,85,83,0,NA,NA,NA,NA,-0.0419582987801425,0,0,0,NA,NA,0,NA,NA,-5.34869122505188,-5.37545108795166,0.0393863262732076
+8387,88043,442497.952,88143,442397.952,86,83,1.25,0.003125,0.883883476483184,0.0208333333333333,12.8921940099542,-0.0737288105054904,0,0,0,NA,NA,0,NA,NA,-5.33060094714165,-5.35554695129395,0.0405218982877055
+8388,88043,442397.952,88143,442297.952,87,83,0.5,0.0025,0,0,18.0277563773199,-0.0622585273089862,0,0,0,NA,NA,0,NA,NA,-5.2338015238444,-5.30182552337646,0.114126317187561
+8389,88043,442297.952,88143,442197.952,88,83,5.5,0.01375,5.04863555404633,0.352777777777778,20.6066017177982,-0.0266919091016462,0.0475,4.75,1,81.114133276783,0.963797628744683,4.75,17.922814017848,7.07106781005859,-4.92641770839691,-5.13375759124756,0.242319503974829
+8390,88043,442197.952,88143,442097.952,89,83,5,0.01,3.19625904879182,0.121428571428571,12.0776872304636,0.00744390245876275,0.145,14.5,3,85.5343154431741,0.812865497076023,11.75,16.4007828811119,0,-4.51090129216512,-4.7110013961792,0.280798576543899
+8391,88043,442097.952,88143,441997.952,90,83,0,NA,NA,NA,NA,-0.119760720075719,0,0,0,NA,NA,0,NA,NA,-4.29272516568502,-4.58494567871094,0.314304917688086
+8392,88043,441997.952,88143,441897.952,91,83,0,NA,NA,NA,NA,-0.0362441884836153,0.0575,5.75,1,83.3142722045184,0.970527556734453,5.75,66.2297308548637,53.8516464233398,-4.09616605937481,-4.34655475616455,0.238621143913157
+8393,88043,441897.952,88143,441797.952,92,83,16.5,0.033,4.9435095313072,0.29853249475891,16.0933687396339,-0.0194614528504462,0.0625,6.25,2,75.5154800573299,0.813333333333333,3.75,16.9087587738037,0,-4.02317468325297,-4.12604808807373,0.226209759355127
+8394,88043,441797.952,88143,441697.952,93,83,5.25,0.0105,2.46659898994383,0.171111111111111,14.6011261594915,-0.0225412108565797,0.055,5.5,2,76.4902019111937,0.844382197323374,4.75,22.8771642338146,5,-4.21188648045063,-4.51598072052002,0.269579526951336
+8395,88043,441697.952,88143,441597.952,94,83,0.5,0.0025,0,0,11.1803398874989,-0.101679744143039,0,0,0,NA,NA,0,NA,NA,-4.59188413619995,-4.78449153900146,0.228422175920923
+8396,88043,441597.952,88143,441497.952,95,83,0.5,0.0025,0,0,43.0116263352131,-0.116160627380013,0,0,0,NA,NA,0,NA,NA,-4.87488150596619,-4.99630498886108,0.151886068212803
+8397,88043,441497.952,88143,441397.952,96,83,4.75,0.0095,2.7411250129671,0.242222222222222,12.4852813742386,-0.0969859682267997,0,0,0,NA,NA,0,NA,NA,-5.02206257979075,-5.13090467453003,0.128209415457451
+8398,88043,441397.952,88143,441297.952,97,83,8.5,0.085,18.9453446535793,0.333333333333333,NA,-0.0326612261447735,0,0,0,NA,NA,0,NA,NA,-5.03059741854668,-5.16193294525146,0.196873758141676
+8399,88043,441297.952,88143,441197.952,98,83,11,0.022,8.67278790528303,0.208703703703704,10.2360679774998,-0.0415115117923415,0.0025,0.25,1,0,NA,0.25,35.355339050293,35.355339050293,-4.83644648392995,-5.10288524627686,0.340239268265172
+8400,88043,441197.952,88143,441097.952,99,83,15.5263157894737,0.0491666666666667,6.48701341903163,0.314484126984127,37.8102322817475,-0.0203045706435114,0.1275,12.75,1,90.5233675365473,0.907782498435596,12.75,26.9131436067469,14.1421356201172,-4.5409123301506,-4.95213937759399,0.397680017797276
+8401,88143,451097.952,88243,450997.952,0,84,17.75,0.0295833333333333,6.24041012341645,0.165027100271003,14.4250151856134,0.0249550008740152,0.15,15,5,78.5795740457009,0.683257918552036,5.75,4.24940528869629,0,-3.86270279354519,-4.03947830200195,0.307222181209375
+8402,88143,450997.952,88243,450897.952,1,84,14,0.02,6.62649159621043,0.237574277574278,19.5384574570663,0.0154410720478336,0.0825,8.25,10,52.2146994173367,0.455040871934605,2.25,8.46624455307469,0,-4.01218084494273,-4.16615676879883,0.242968092269651
+8403,88143,450897.952,88243,450797.952,2,84,6.75,0.0225,9.20176671083567,0.261801016702978,16.2999331251834,-0.0741859471722273,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,12.4653788975307,5,-4.14133580525716,-4.18995904922485,0.102311049283091
+8404,88143,450797.952,88243,450697.952,3,84,51.25,0.5125,31.6600593246317,0.8,NA,0.078570328138303,0.765,76.5,1,99.2456636792102,0.926250967956046,76.5,2.91229668785544,0,-4.09845590591431,-4.161949634552,0.0687803052062687
+8405,88143,450697.952,88243,450597.952,4,84,71.75,0.35875,19.2655798326421,0.421911421911422,10,0.100662419029395,0.8875,88.75,1,99.6763695533234,0.775132275132275,88.75,1.57669737909881,0,-3.94080299801297,-4.01188516616821,0.109153176341221
+8406,88143,450597.952,88243,450497.952,5,84,66.25,0.33125,25.1169327923157,0.558904259991217,10,0.053522978669771,0.6375,63.75,1,98.6713232517353,0.798008945318136,63.75,1.30699714211857,0,-3.98724794387817,-4.1999454498291,0.173794674824295
+8407,88143,450497.952,88243,450397.952,6,84,62.25,0.31125,25.0432359176886,0.780368988391376,11.1803398874989,0.148507232624106,0.9625,96.25,1,99.898450616446,1,96.25,3.37597569552335,0,-4.30009841918945,-4.43915605545044,0.206368127563015
+8408,88143,450397.952,88243,450297.952,7,84,15,0.075,10.4241352397735,0.494152046783626,20,0.0854470730107278,0.9475,94.75,1,99.8561526638156,0.68209815219551,94.75,25.0046216365844,0,-4.45006306966146,-4.5417685508728,0.172750024521505
+8409,88143,450297.952,88243,450197.952,8,84,45,0.1125,15.0308955778537,0.593557692307692,11.7479320470852,0.0751299647078849,0.64,64,3,95.9894723731813,0.78587962962963,42,5.73350163549185,0,-4.33864715364244,-4.50652408599854,0.269841331778467
+8410,88143,450197.952,88243,450097.952,9,84,80.5,0.805,38.4286155069488,0.815217391304348,NA,0.0216972264812648,0.305,30.5,2,93.8072244765732,0.785149256160682,26.75,0.863298978961882,0,-3.76470843950907,-4.10763454437256,0.408749244941352
+8411,88143,450097.952,88243,449997.952,10,84,65.5,0.109166666666667,7.04828396051505,0.204627799736495,11.0300566479165,0.0413597191463123,0.425,42.5,4,94.5275731995709,0.855535491040422,38,2.66387320125804,0,-3.31264704465866,-3.48499369621277,0.267646580652548
+8412,88143,449997.952,88243,449897.952,11,84,67.5,0.0964285714285714,8.60775721839481,0.269831276037428,10.3372399678568,0.0737348904646205,0.765,76.5,2,99.0557461968208,0.778752903868137,76.25,1.84031727111417,0,-3.10568928718567,-3.25388860702515,0.356765528722933
+8413,88143,449897.952,88243,449797.952,12,84,82.25,0.41125,20.406068229955,0.493374108053007,10,0.059965067228477,0.5825,58.25,1,98.3671391359956,0.906394108335054,58.25,0.885035207854832,0,-2.91550993919373,-3.11166286468506,0.288018295557513
+8414,88143,449797.952,88243,449697.952,13,84,70,0.35,20.3002714920941,0.461031175059952,10,0.0614495243018609,0.615,61.5,2,96.7227294519829,0.808018068887634,54.75,2.45082227195181,0,-2.82072387801276,-3.11751174926758,0.359870605384499
+8415,88143,449697.952,88243,449597.952,14,84,66,0.22,13.109700722953,0.24724342663274,10.3934466291663,0.0811649501428474,0.8025,80.25,2,99.1842222843661,0.807828884154238,80,2.02279571580738,0,-3.57778382301331,-4.05928182601929,0.560298828093936
+8416,88143,449597.952,88243,449497.952,15,84,78.5,0.261666666666667,18.6840329292331,0.72292991942324,10,0.0674329925933853,0.75,75,3,96.2475250421688,0.730973451327434,60.5,0.904044011433919,0,-4.21302000681559,-4.41064357757568,0.294885934414525
+8417,88143,449497.952,88243,449397.952,16,84,73,0.243333333333333,19.0968173225755,0.752764161220044,14.142135623731,0.0533312827182817,0.525,52.5,4,91.5811178974076,0.69309462915601,18.75,0.458158111572266,0,-3.92580227057139,-4.35045337677002,0.49764499276247
+8418,88143,449397.952,88243,449297.952,17,84,92.5,0.925,37.6425852519809,0.892792792792793,NA,0.102687967885286,0.9875,98.75,1,99.9667936270881,1,98.75,0.359673589392553,0,-3.68379664421082,-3.82762169837952,0.469836768290017
+8419,88143,449297.952,88243,449197.952,18,84,95.75,0.9575,38.6034529319547,0.908181026979983,NA,0.100677636004984,1,100,1,100,NA,100,0.2125,0,-3.75842865308126,-3.91457557678223,0.496122265624652
+8420,88143,449197.952,88243,449097.952,19,84,93.25,0.9325,38.5268150235221,0.890527256478999,NA,0.029649160761528,0.51,51,1,97.8932627156421,0.94615260352162,51,0.0245098039215686,0,-3.82496163580153,-4.10496473312378,0.515992019719839
+8421,88143,449097.952,88243,448997.952,20,84,90.25,0.9025,37.2824647299095,0.892890120036934,NA,-0.0224395681603346,0.0475,4.75,2,71.3881330867599,0.818988143723414,2.75,0.789473684210526,0,-4.01295449998644,-4.17188835144043,0.391294120100547
+8422,88143,448997.952,88243,448897.952,21,84,41.25,0.06875,9.35871810057715,0.311542061542062,13.7915193212193,0.00710413178635918,0.0775,7.75,2,78.7467706018868,0.761517615176152,5,1.35713121967931,0,-3.81602861483892,-4.12285900115967,0.370313251313516
+8423,88143,448897.952,88243,448797.952,22,84,57.25,0.143125,14.5964662732511,0.502481696813092,12.8921940099542,0.0319517244942836,0.335,33.5,1,96.169806046512,0.852089239492173,33.5,0.575157222463124,0,-3.20394955741035,-3.57964897155762,0.428205964815165
+8424,88143,448797.952,88243,448697.952,23,84,66.25,0.165625,10.3001302458014,0.395961654589372,10.2950849718747,0.0378811842739742,0.4075,40.75,4,94.3924055824813,0.774964838255978,36,1.00732811535794,0,-2.83609344561895,-3.09078121185303,0.248820133770852
+8425,88143,448697.952,88243,448597.952,24,84,12.5,0.0625,8.22104397587508,0.350340136054422,10,-0.0370617969657906,0.0725,7.25,5,67.5949759411269,0.472386304983655,2.75,7.74073975661705,0,-2.63229997952779,-2.76622176170349,0.206296142831077
+8426,88143,448597.952,88243,448497.952,25,84,0.5,0.0025,0,0,11.1803398874989,-0.0442747249356762,0,0,0,NA,NA,0,NA,NA,-2.36429272095362,-2.59364056587219,0.371914690262934
+8427,88143,448497.952,88243,448397.952,26,84,0,NA,NA,NA,NA,-0.0224762908206321,0,0,0,NA,NA,0,NA,NA,-1.47626217206319,-1.88262355327606,0.546614213953526
+8428,88143,448397.952,88243,448297.952,27,84,0,NA,NA,NA,NA,-0.0463257159665227,0,0,0,NA,NA,0,NA,NA,-1.14250324169795,-1.25891292095184,0.118708037859313
+8429,88143,448297.952,88243,448197.952,28,84,16.5,0.04125,8.05527302788731,0.192426652527395,11.1803398874989,-0.00100591785783763,0.05,5,5,56.9446032683074,0.592529711375212,1.75,3.26612377166748,0,-1.34085049894121,-1.45602738857269,0.164937098029564
+8430,88143,448197.952,88243,448097.952,29,84,6.75,0.0135,5.14427916056919,0.216190476190476,11.634413615168,-0.0144014845238416,0.075,7.5,2,83.3355085843915,0.911748483177055,7.25,4.57978477478027,0,-1.52525943517685,-1.61790645122528,0.141213002013932
+8431,88143,448097.952,88243,447997.952,30,84,0,NA,NA,NA,NA,-0.0401655870677496,0,0,0,NA,NA,0,NA,NA,-1.58286605940925,-1.68119275569916,0.140979259422245
+8432,88143,447997.952,88243,447897.952,31,84,24.75,0.0495,7.81871874636983,0.464045864045864,14.4721359549996,0.0176449749017911,0.12,12,3,84.0005338717448,0.750554323725055,9.5,3.06438648700714,0,-1.5371761586931,-1.62091469764709,0.0977743699698343
+8433,88143,447897.952,88243,447797.952,32,84,12.75,0.0115909090909091,2.675474377099,0.179380006966214,16.0193625617261,0.0158121532153564,0.075,7.5,6,60.1127258704941,0.558742415885273,2,10.8142723719279,0,-1.46344277262688,-1.5214456319809,0.0579472371258206
+8434,88143,447797.952,88243,447697.952,33,84,47,0.0671428571428571,8.41189093243001,0.288527225236086,10.1686199839284,0.103715303891986,0.7475,74.75,1,99.1756322950922,0.887448780402019,74.75,2.81426485246639,0,-1.4277436070972,-1.44332039356232,0.0235080658271416
+8435,88143,447697.952,88243,447597.952,34,84,35.75,0.17875,19.966379300957,0.380555555555556,10,0.068736899984433,0.605,60.5,1,98.496585825966,0.943990142265039,60.5,2.59045875170999,0,-1.46721555789312,-1.5010598897934,0.0400865830316788
+8436,88143,447597.952,88243,447497.952,35,84,20.75,0.0296428571428571,7.39812211736468,0.204224787558121,10.1686199839284,0.0393523214593006,0.4025,40.25,4,92.2549849821546,0.819065927852539,26.75,4.08660655288222,0,-1.54382352034251,-1.58142936229706,0.0521250806780219
+8437,88143,447497.952,88243,447397.952,36,84,5,0.025,6.71003889131118,0.442708333333333,20,0.0353403971913212,0.1925,19.25,3,91.6759631331208,0.772354762338372,18.5,11.4621897363043,0,-1.58855950832367,-1.66158282756805,0.16523148466592
+8438,88143,447397.952,88243,447297.952,37,84,0,NA,NA,NA,NA,-0.0203449960571015,0.0125,1.25,1,58.1880425789518,1,1.25,21.2221252441406,15,-1.19958264960183,-1.70188450813293,0.618579238623351
+8439,88143,447297.952,88243,447197.952,38,84,1,0.01,4.34942231976673,0.291666666666667,NA,-0.150786567787873,0.0125,1.25,1,58.1880425789518,1,1.25,1,0,-1.78857785463333,-1.94945073127747,0.349351872341863
+8440,88143,447197.952,88243,447097.952,39,84,24.5,0.1225,17.601769034903,0.738807189542484,10,-0.056917723895458,0.3,30,1,95.6539902192076,0.921363040629096,30,2.12768729527791,0,-1.89689428276486,-2.08407378196716,0.253456827085709
+8441,88143,447097.952,88243,446997.952,40,84,4.75,0.0475,10.8252580477796,0.596491228070175,NA,-0.129076040315231,0.0125,1.25,1,58.1880425789518,1,1.25,1,0,-1.89786566297213,-2.17985486984253,0.441765541515608
+8442,88143,446997.952,88243,446897.952,41,84,0,NA,NA,NA,NA,-0.0107870312903106,0,0,0,NA,NA,0,NA,NA,-2.27754105461968,-2.43670988082886,0.330554869759768
+8443,88143,446897.952,88243,446797.952,42,84,0,NA,NA,NA,NA,-0.011994747192648,0.005,0.5,1,30.8308651382582,1,0.5,46.9828243255615,44.7213592529297,-2.63883372147878,-2.74836444854736,0.129227739656283
+8444,88143,446797.952,88243,446697.952,43,84,40,0.0571428571428571,9.41588805097388,0.274772108155977,10,-0.0194291963500291,0.18,18,2,91.0958688205271,0.875168043019013,17.25,2.90475188361274,0,-2.76494481828478,-2.82028079032898,0.0716699020015433
+8445,88143,446697.952,88243,446597.952,44,84,14.25,0.07125,13.6460367813746,0.619047619047619,35,0.040056178883242,0.3425,34.25,3,92.143243020375,0.823574144486692,19,12.7759202692631,0,-2.82556380165948,-2.87809348106384,0.0778565688496681
+8446,88143,446597.952,88243,446497.952,45,84,24.25,0.02425,5.25026060812328,0.230084175084175,12.7966912753363,0.0360132310810877,0.34,34,3,90.0659531873607,0.853372434017595,17.25,8.48236033495735,0,-2.78432863950729,-2.85081601142883,0.0755249758350011
+8447,88143,446497.952,88243,446397.952,46,84,4,0.004,1.33333333333333,0.0888888888888889,17.5550214820121,0.0536885479114426,0.61,61,1,98.5243747403739,0.966261808367071,61,22.3192688598007,0,-2.78094916873508,-2.83470964431763,0.0880044700022178
+8448,88143,446397.952,88243,446297.952,47,84,0.25,0.0025,0,0,NA,-0.0228165837480992,0,0,0,NA,NA,0,NA,NA,-2.9731454650561,-3.05401873588562,0.100722415332239
+8449,88143,446297.952,88243,446197.952,48,84,0,NA,NA,NA,NA,0.00404915178221927,0,0,0,NA,NA,0,NA,NA,-3.04109417067634,-3.07599472999573,0.0770943463306754
+8450,88143,446197.952,88243,446097.952,49,84,4.5,0.015,3.94461926870913,0.170138888888889,29.1842346090081,-0.025896015136459,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,0,0,-2.90462523698807,-3.0233006477356,0.183237274114419
+8451,88143,446097.952,88243,445997.952,50,84,0.5,0.0025,0,0,46.0977222864644,-0.00910153225355316,0.26,26,1,94.9412560453587,0.971094088741148,26,19.974779349107,5,-2.78069080246819,-2.85680031776428,0.10570262089656
+8452,88143,445997.952,88243,445897.952,51,84,1.75,0.004375,1.45833333333333,0.0972222222222222,41.2526250514266,-0.0624176556916791,0,0,0,NA,NA,0,NA,NA,-2.63335106770198,-2.70420813560486,0.0784571127179971
+8453,88143,445897.952,88243,445797.952,52,84,1,0.0025,0,0,28.0239906224673,-0.0871196985583083,0,0,0,NA,NA,0,NA,NA,-2.56069416469998,-2.58251643180847,0.0420234869151532
+8454,88143,445797.952,88243,445697.952,53,84,2.75,0.00916666666666667,3.27210708802393,0.244444444444444,21.758975230229,-0.114358548247255,0,0,0,NA,NA,0,NA,NA,-2.67755190531413,-2.82602190971375,0.16779239323476
+8455,88143,445697.952,88243,445597.952,54,84,33.75,0.03375,5.58303172073944,0.267816091954023,11.9418135059534,-0.0154046910867328,0.01,1,2,30.8308651382582,0.494949494949495,0.5,3.01776695251465,0,-3.28316532240974,-3.81687259674072,0.624703500237941
+8456,88143,445597.952,88243,445497.952,55,84,16,0.04,4.78067864960635,0.179644808743169,11.5450849718747,-0.0893353888385354,0.0825,8.25,2,84.3607741117493,0.939448985770512,8,9.87468285994096,0,-3.53654101159838,-4.16455602645874,0.912645835891813
+8457,88143,445497.952,88243,445397.952,56,84,0.25,0.0025,0,0,NA,0.0712278523954956,0.5025,50.25,1,97.8384672014884,0.97844450132701,50.25,41.6486594261815,0,-4.68321430683136,-4.87148284912109,0.355327313681751
+8458,88143,445397.952,88243,445297.952,57,84,0,NA,NA,NA,NA,0.142476275410154,0.745,74.5,1,99.1654268803843,0.979029044772989,74.5,93.3656588304763,44.7213592529297,-4.90576913621691,-4.93757343292236,0.0681202926063446
+8459,88143,445297.952,88243,445197.952,58,84,0,NA,NA,NA,NA,0.145163539642672,0.8275,82.75,1,99.4773714744283,0.879420289855072,82.75,55.8958331335707,10,-4.78944591681163,-4.89087009429932,0.147829839637863
+8460,88143,445197.952,88243,445097.952,59,84,2,0.00666666666666667,2.69243796049029,0.155555555555556,13.3333333333333,-0.0261342856699844,0.04,4,1,78.9473684210526,0.956597222222222,4,50.8189194202423,39.0512504577637,-4.60984892315335,-4.64603805541992,0.0662644615993427
+8461,88143,445097.952,88243,444997.952,60,84,19.5,0.195,25.7746107402365,0.668803418803419,NA,0.0110508808635132,0.0725,7.25,3,76.0566814998554,0.747663015426966,4.5,13.2533633791167,0,-4.73661720752716,-4.84417247772217,0.119824277059714
+8462,88143,444997.952,88243,444897.952,61,84,0,NA,NA,NA,NA,-0.124366890891106,0.0325,3.25,2,66.9285122833246,0.885156474303761,2.75,75.5775005634014,70,-4.8801761203342,-4.92289257049561,0.0694021313243387
+8463,88143,444897.952,88243,444797.952,62,84,0,NA,NA,NA,NA,-0.11159135600552,0.135,13.5,3,80.9121593701422,0.776244639194481,6,140.332658979628,91.9238891601562,-4.92490005493164,-5.00813913345337,0.0924724596429211
+8464,88143,444797.952,88243,444697.952,63,84,0,NA,NA,NA,NA,0.0624898972862866,0.8525,85.25,2,99.3431816180221,0.831822362370254,85,102.555515658471,55,-5.00294743643867,-5.08360576629639,0.129678118038155
+8465,88143,444697.952,88243,444597.952,64,84,0,NA,NA,NA,NA,-0.0552406585146673,0.0075,0.75,1,44.4894453484604,1,0.75,61.854559580485,57.0087738037109,-5.03396332263947,-5.08894968032837,0.0851681342078894
+8466,88143,444597.952,88243,444497.952,65,84,2.25,0.0045,0.84780147652018,0.0866666666666667,13.285383285786,-0.0413299131672102,0,0,0,NA,NA,0,NA,NA,-4.96261548995972,-5.01926469802856,0.101021209234052
+8467,88143,444497.952,88243,444397.952,66,84,6.5,0.00541666666666667,2.09856297109167,0.140046296296296,14.220412585205,-0.0156417330269687,0.0475,4.75,2,76.8305660265904,0.891392886234048,4.5,11.2614836441843,5,-4.73268090354072,-4.87436246871948,0.240593359743154
+8468,88143,444397.952,88243,444297.952,67,84,68.25,0.6825,32.9184928095542,0.90964590964591,NA,-0.0305030536944832,0.1025,10.25,2,84.6524559322571,0.725485446691696,8.75,6.31080259927889,0,-4.14464396238327,-4.49821662902832,0.387764078713417
+8469,88143,444297.952,88243,444197.952,68,84,15.5,0.03875,9.43420228219297,0.470486111111111,17.7950849718747,-0.000303674787173804,0.165,16.5,3,88.1999921094835,0.906274407706327,15.25,10.9141723170425,0,-3.4985556072659,-3.77460026741028,0.477778828561048
+8470,88143,444197.952,88243,444097.952,69,84,26.25,0.065625,10.3363658209324,0.427533700476738,12.3020240662047,-0.0174577398191468,0.085,8.5,2,80.8080808080808,0.785323965651835,6.25,3.69543973137351,0,-2.70816971858343,-3.29543685913086,0.565471528366049
+8471,88143,444097.952,88243,443997.952,70,84,14.25,0.0203571428571429,4.57535352601645,0.238095238095238,12.1124409494558,-0.0557397685462274,0.2225,22.25,2,93.0346317162606,0.886752007118445,21.75,8.35910741398843,0,-2.82077119085524,-2.97985935211182,0.240139254360891
+8472,88143,443997.952,88243,443897.952,71,84,0,NA,NA,NA,NA,0.012449480373034,0.3475,34.75,1,96.3348533717898,0.945696443117024,34.75,113.527586628207,70,-2.80629513661067,-2.95743536949158,0.169003532177332
+8473,88143,443897.952,88243,443797.952,72,84,0,NA,NA,NA,NA,-0.0481191226557712,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,136.406126234266,131.52946472168,-2.64007345835368,-2.7129909992218,0.120351978353474
+8474,88143,443797.952,88243,443697.952,73,84,0,NA,NA,NA,NA,-0.123714285019796,0.005,0.5,1,30.8308651382582,1,0.5,152.828918457031,150.416091918945,-2.91352387269338,-3.15191698074341,0.225220303589435
+8475,88143,443697.952,88243,443597.952,74,84,2.75,0.0275,7.00994781994793,0.575757575757576,NA,-0.155365086805541,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10,-3.40342466036479,-3.96812653541565,0.523441333784753
+8476,88143,443597.952,88243,443497.952,75,84,1.5,0.005,1.27564700533701,0.111111111111111,17.4535599249993,-0.135462250010969,0.02,2,1,68.0470115164975,0.795918367346939,2,41.8217058181763,40,-3.61897784471512,-4,0.48398773344586
+8477,88143,443497.952,88243,443397.952,76,84,44.5,0.11125,11.8742128876041,0.490162037037037,12.0710678118655,-0.00332902723872394,0.4675,46.75,1,97.5655534302407,0.940296887296806,46.75,1.10274440336992,0,-3.2094865904914,-3.43008971214294,0.182326219659196
+8478,88143,443397.952,88243,443297.952,77,84,56.75,0.0945833333333333,9.22322626875326,0.229625722769183,10.1967233145832,0.0780125253135338,0.9175,91.75,1,99.7684657792434,0.616306954436451,91.75,2.28463095475283,0,-3.06435529390971,-3.14043641090393,0.152322726514462
+8479,88143,443297.952,88243,443197.952,78,84,68.75,0.0982142857142857,10.4772975767567,0.519376660681009,11.3154423235456,0.0701733343093656,0.7525,75.25,1,99.1958903399554,0.779096075392372,75.25,1.61875866101034,0,-2.97348807255427,-3.03749585151672,0.280569138068588
+8480,88143,443197.952,88243,443097.952,79,84,13,0.0433333333333333,7.96615542780953,0.436177248677249,43.5408591609952,0.127088153096847,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,23.2234331087302,0,-2.98344294230143,-3.09717416763306,0.251802137907755
+8481,88143,443097.952,88243,442997.952,80,84,14.5,0.03625,5.0957420418824,0.231481481481481,29.01387818866,0.0996089443433448,0.865,86.5,1,99.6041754676792,0.898063200815494,86.5,19.6493232539623,0,-3.09731169541677,-3.17474150657654,0.147788757514926
+8482,88143,442997.952,88243,442897.952,81,84,13.5,0.135,17.8958923039952,0.756172839506173,NA,0.0432496685059596,0.535,53.5,2,96.1301137505349,0.924352947533366,50.5,42.2280641270575,0,-2.81694518195258,-3.80088973045349,0.954753181960858
+8483,88143,442897.952,88243,442797.952,82,84,0,NA,NA,NA,NA,0.0907985310815275,0.985,98.5,1,99.9600766120013,0.821746880570409,98.5,98.0336306809169,47.4341621398926,-4.51193036635717,-5.01314640045166,0.941231906449973
+8484,88143,442797.952,88243,442697.952,83,84,0,NA,NA,NA,NA,0.00524347357510123,0.39,39,1,96.835360326048,0.954303992688639,39,111.105114912375,64.0312423706055,-5.18379534615411,-5.29650354385376,0.195163708689226
+8485,88143,442697.952,88243,442597.952,84,84,2.25,0.0225,6.69155401302651,0.5,NA,-0.115936164185405,0,0,0,NA,NA,0,NA,NA,-5.33006636301676,-5.35288619995117,0.0319529299801237
+8486,88143,442597.952,88243,442497.952,85,84,21.5,0.215,33.1330781971353,0.691860465116279,NA,-0.134785684375383,0,0,0,NA,NA,0,NA,NA,-5.33997058868408,-5.357102394104,0.0246100899385738
+8487,88143,442497.952,88243,442397.952,86,84,5.5,0.0275,5.46995723034019,0.281746031746032,82.0060973342836,-0.0362260957916601,0,0,0,NA,NA,0,NA,NA,-5.32614835103353,-5.34180212020874,0.0241616366254776
+8488,88143,442397.952,88243,442297.952,87,84,0,NA,NA,NA,NA,-0.0643580881457456,0,0,0,NA,NA,0,NA,NA,-5.27488496568468,-5.30981111526489,0.0734655727001872
+8489,88143,442297.952,88243,442197.952,88,84,0,NA,NA,NA,NA,-0.0100216305040522,0.005,0.5,1,30.8308651382582,1,0.5,53.4459476470947,50.9901962280273,-5.02585343519847,-5.19930076599121,0.186389718559647
+8490,88143,442197.952,88243,442097.952,89,84,0,NA,NA,NA,NA,-0.0477629234387132,0,0,0,NA,NA,0,NA,NA,-4.83144315083822,-4.91313743591309,0.147885395313205
+8491,88143,442097.952,88243,441997.952,90,84,0,NA,NA,NA,NA,-0.0897185151613667,0.13,13,1,90.6657843098624,0.909595763915795,13,100.742150380061,85.1469345092773,-4.76714955435859,-4.89613103866577,0.234232985443448
+8492,88143,441997.952,88243,441897.952,91,84,1.25,0.00625,2.87846954716499,0.0833333333333333,11.1803398874989,0.0159209254672533,0.0325,3.25,2,66.5948550564831,0.712891185759403,2.5,83.7790333674504,80.1560974121094,-4.5493483543396,-4.74518585205078,0.281293168809188
+8493,88143,441897.952,88243,441797.952,92,84,3.25,0.01625,7.629454896848,0.311507936507937,85,-0.0104664991359459,0,0,0,NA,NA,0,NA,NA,-4.26236693064372,-4.4698052406311,0.23209365253556
+8494,88143,441797.952,88243,441697.952,93,84,2.75,0.00458333333333333,1.85353143367444,0.087962962962963,13.4628120507726,-0.0933560078797745,0,0,0,NA,NA,0,NA,NA,-4.47536333401998,-4.64804601669312,0.217268863423715
+8495,88143,441697.952,88243,441597.952,94,84,0,NA,NA,NA,NA,-0.0864679119270295,0,0,0,NA,NA,0,NA,NA,-4.76231039894952,-4.84248447418213,0.140309849848432
+8496,88143,441597.952,88243,441497.952,95,84,2.25,0.00375,1.59517796864425,0.0555555555555556,22.5526491370014,-0.0759030154839638,0,0,0,NA,NA,0,NA,NA,-4.95700756708781,-5.02992296218872,0.0963118967159806
+8497,88143,441497.952,88243,441397.952,96,84,0.5,0.005,2.5,0.166666666666667,NA,-0.0433188302843038,0,0,0,NA,NA,0,NA,NA,-5.11743344200982,-5.17250633239746,0.0911440368243072
+8498,88143,441397.952,88243,441297.952,97,84,0,NA,NA,NA,NA,-0.0291426007762493,0,0,0,NA,NA,0,NA,NA,-5.21784134705861,-5.2627067565918,0.0641524782730502
+8499,88143,441297.952,88243,441197.952,98,84,3,0.03,18.8000907850866,0.194444444444444,NA,-0.0336702919570962,0,0,0,NA,NA,0,NA,NA,-5.17427184846666,-5.2503604888916,0.122693176760664
+8500,88143,441197.952,88243,441097.952,99,84,2.10526315789474,0.005,1.29507570163867,0.0833333333333333,10.5901699437495,-0.153059432448354,0,0,0,NA,NA,0,NA,NA,-4.98632474740346,-5.1502571105957,0.19211663327884
+8501,88243,451097.952,88343,450997.952,0,85,26.5,0.0378571428571429,5.94947923274984,0.262246852764094,12.5893702857732,0.00315342656449957,0.0725,7.25,6,60.8561263711145,0.564145208464759,2.75,8.92478640326138,0,-4.24630745251973,-4.31062412261963,0.108228164907191
+8502,88243,450997.952,88343,450897.952,1,85,24.25,0.0404166666666667,6.13414676653252,0.193326947637292,10.7868932583326,-0.0493953466448238,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,12.1712926228841,5,-4.25233542919159,-4.30704975128174,0.074676338400845
+8503,88243,450897.952,88343,450797.952,2,85,33.25,0.16625,17.2780855903285,0.688053097345133,11.1803398874989,0.00406708009133581,0.2925,29.25,3,90.7185504541418,0.746649776651777,21.75,5.79689511682233,0,-4.22060624758403,-4.26366329193115,0.0499117440676127
+8504,88243,450797.952,88343,450697.952,3,85,96.5,0.965,37.5878302720567,0.917530224525043,NA,0.144450850363355,0.9525,95.25,1,99.8703629518046,0.970841230500073,95.25,0.170603674540682,0,-4.15452218055725,-4.20672750473022,0.0682746155004135
+8505,88243,450697.952,88343,450597.952,4,85,70.75,0.235833333333333,15.2531414281976,0.470329818869965,12.7240226919466,0.115883794927504,0.9425,94.25,2,99.4515408746758,0.902705989662511,93.75,1.40089412456482,0,-4.10356851418813,-4.19330215454102,0.120997201200469
+8506,88243,450597.952,88343,450497.952,5,85,75,0.25,16.2820290483187,0.516034644194757,11.380711874577,0.0391371792051359,0.6275,62.75,2,98.3230722826974,0.920034271026703,62.5,1.82666304386944,0,-4.03182750940323,-4.18793725967407,0.122606918103798
+8507,88243,450497.952,88343,450397.952,6,85,35.5,0.071,10.0180634059207,0.523922498554077,14.128990204492,0.0531274925621256,0.6625,66.25,1,98.796893507011,0.958268127282212,66.25,10.711774696494,0,-3.96729916334152,-4.14838790893555,0.155141563329234
+8508,88243,450397.952,88343,450297.952,7,85,30.25,0.0378125,4.40380537473073,0.138764880952381,11.7760120331024,0.0773462694907903,0.72,72,1,99.0604668316969,0.934106483921982,72,13.367349492179,0,-4.06226570904255,-4.28398084640503,0.21996776868012
+8509,88243,450297.952,88343,450197.952,8,85,22,0.11,20.5552205112395,0.591374269005848,18.0277563773199,0.073061400611914,0.7725,77.25,2,98.5421728194897,0.81873796306786,75.75,14.7153092356561,0,-4.21762088934581,-4.31885290145874,0.129912399509929
+8510,88243,450197.952,88343,450097.952,9,85,67,0.223333333333333,13.8275033662261,0.473621877691645,23.1717758345462,0.0438300256429648,0.4225,42.25,1,97.165991902834,0.822399822399822,42.25,5.29874528512447,0,-4.08555982510249,-4.37746667861938,0.354235609614944
+8511,88243,450097.952,88343,449997.952,10,85,22.75,0.0175,5.1178162031423,0.281526548125738,12.0736137420955,0.0679549299342034,0.735,73.5,2,98.851121087464,0.924937732437135,73.25,7.69802247261514,0,-3.9803472161293,-4.39057540893555,0.464434083203256
+8512,88243,449997.952,88343,449897.952,11,85,55.25,0.0690625,6.3141528003731,0.231653623801466,11.25,0.0106276882781458,0.2325,23.25,2,92.1775851125847,0.897963188257918,21,1.47734992734848,0,-3.68077117204666,-4.16602468490601,0.512944144805167
+8513,88243,449897.952,88343,449797.952,12,85,69.75,0.6975,38.4070985017107,0.734767025089606,NA,0.0451472860523063,0.4925,49.25,1,97.7634684223253,0.838045752075039,49.25,2.07758660485902,0,-3.5308885872364,-4.00042629241943,0.542182243714129
+8514,88243,449797.952,88343,449697.952,13,85,72.5,0.3625,20.0555457023794,0.527390631049168,10,0.0679043800785439,0.785,78.5,2,98.9699388591328,0.732872407291012,77.75,1.45506693603127,0,-3.13323042790095,-3.92665147781372,0.748157072238879
+8515,88243,449697.952,88343,449597.952,14,85,78.5,0.3925,19.5099983874176,0.500801282051282,20,0.058668318084674,0.665,66.5,2,96.2620961448658,0.778661801214369,42.25,1.41663643112756,0,-4.02948908507824,-4.50537395477295,0.689798082770761
+8516,88243,449597.952,88343,449497.952,15,85,57.75,0.1155,12.0114638280294,0.538492190071137,14.1231056256177,0.0563537296460709,0.7375,73.75,1,99.1344998974781,0.800943800943801,73.75,1.88326607397047,0,-4.53795214494069,-4.62419414520264,0.162241250872211
+8517,88243,449497.952,88343,449397.952,16,85,84.25,0.8425,37.2003804573924,0.863996043521266,NA,0.100252113670576,0.9875,98.75,1,99.9667936270881,0.893333333333336,98.75,0.80578296516515,0,-4.37232920527458,-4.55932712554932,0.26355212993349
+8518,88243,449397.952,88343,449297.952,17,85,86,0.86,37.7749251551033,0.862403100775194,NA,0.0701232830341905,0.64,64,3,97.2487931381778,0.791666666666667,58.25,0.899825543165207,0,-4.06117540597916,-4.19615364074707,0.186633129783362
+8519,88243,449297.952,88343,449197.952,18,85,89.5,0.4475,19.6850423644519,0.531367041198502,10,0.0777287103468552,0.8375,83.75,2,99.1769694455283,0.844452545874347,83.25,0.549678016776469,0,-4.10160306096077,-4.24326658248901,0.164002497073728
+8520,88243,449197.952,88343,449097.952,19,85,92.25,0.9225,37.8201487911945,0.897018970189702,NA,-0.0108754199439409,0.085,8.5,2,84.9670781371897,0.902419984387198,8.25,0,0,-4.25066188971202,-4.36055994033813,0.162526576491709
+8521,88243,449097.952,88343,448997.952,20,85,91.25,0.9125,38.7917813399995,0.878082191780822,NA,-0.0198572848901858,0,0,0,NA,NA,0,NA,NA,-4.33705898125966,-4.41613912582397,0.100700733453472
+8522,88243,448997.952,88343,448897.952,21,85,87,0.87,37.6029615392913,0.866379310344828,NA,0.0115671826772905,0.13,13,1,90.6657843098624,0.961255327392484,13,0.673076923076923,0,-4.23544499278069,-4.40424823760986,0.204711703024723
+8523,88243,448897.952,88343,448797.952,22,85,52,0.104,11.5446156552282,0.323156598580327,11.4721359549996,0.0148313821556803,0.215,21.5,2,92.1828831035574,0.866783231339245,20.5,0.523255813953488,0,-3.74504067500432,-4.19770002365112,0.502398655016031
+8524,88243,448797.952,88343,448697.952,23,85,36.75,0.091875,11.1216561906951,0.273042929292929,13.0785509248927,0.00640890482049144,0.155,15.5,3,82.8508628848434,0.769888231426693,7.75,4.36321184712072,0,-3.09721246361732,-3.43138289451599,0.292008335298933
+8525,88243,448697.952,88343,448597.952,24,85,0.75,0.00375,1.25,0.0833333333333333,40.3112887414927,-0.024553111136147,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,16.4969764709473,5,-2.73854462305705,-2.85263895988464,0.168081717795659
+8526,88243,448597.952,88343,448497.952,25,85,7.75,0.019375,6.63173671887279,0.214646464646465,11.1803398874989,-0.0197480365284173,0.0825,8.25,2,79.3679989771831,0.818346957311535,4.75,15.9329127109412,5,-2.40458242595196,-2.61724162101746,0.283134569779252
+8527,88243,448497.952,88343,448397.952,26,85,8,0.04,14.0469171291013,0.201612903225806,11.1803398874989,-0.0372972344547452,0.0025,0.25,1,0,NA,0.25,5,5,-1.69626650214195,-2.1163182258606,0.540081147520178
+8528,88243,448397.952,88343,448297.952,27,85,10.5,0.105,31.8193528028814,0.444444444444444,NA,-0.0207968706660722,0.0175,1.75,1,65.4774238937655,1,1.75,7.72325651986258,0,-1.41926201432943,-1.82094871997833,0.345657401171741
+8529,88243,448297.952,88343,448197.952,28,85,28.75,0.0319444444444444,6.2510818229287,0.287845385067607,11.2422599874999,0.0323391169347451,0.305,30.5,5,86.7010714259294,0.720042970148768,13.5,4.62261839381984,0,-1.77879846096039,-2.12874412536621,0.366623055692559
+8530,88243,448197.952,88343,448097.952,29,85,11.5,0.023,5.35628844736931,0.274426807760141,11.3005630797458,-0.0163838345685326,0.0575,5.75,1,83.3142722045184,0.941055113468907,5.75,3.74840014913808,0,-1.97196430712938,-2.19045066833496,0.276375469178568
+8531,88243,448097.952,88343,447997.952,30,85,0,NA,NA,NA,NA,-0.0401797739237736,0,0,0,NA,NA,0,NA,NA,-1.96454661091169,-2.16125297546387,0.222794418585857
+8532,88243,447997.952,88343,447897.952,31,85,33.5,0.08375,10.4131425636248,0.514520202020202,11.3306188778075,-0.000602094156329258,0.08,8,4,70.0527038817844,0.728260869565217,4,3.42076909542084,0,-1.77336496114731,-1.97105634212494,0.211013587163054
+8533,88243,447897.952,88343,447797.952,32,85,31,0.03875,5.01459282644137,0.271029411764706,15.4105339059327,-0.00437699696886739,0.0525,5.25,5,56.1950452601977,0.637203166226913,1.75,8.08334069024949,0,-1.48742968589067,-1.67270171642303,0.131520474338416
+8534,88243,447797.952,88343,447697.952,33,85,4.25,0.02125,6.23978148064035,0.361111111111111,87.3212459828649,-0.0149913448451116,0.0475,4.75,3,69.5939253248421,0.637976287446828,3.5,3.83694417853104,0,-1.39920592308044,-1.41408467292786,0.0338021860372534
+8535,88243,447697.952,88343,447597.952,34,85,3.25,0.00541666666666667,1.50120730376095,0.111111111111111,26.4589470202417,-0.0104661961629608,0.105,10.5,5,73.3651017321502,0.716736171217248,4,10.2314429056077,0,-1.46624179929495,-1.51884853839874,0.0547284073323338
+8536,88243,447597.952,88343,447497.952,35,85,14,0.028,7.04441546103023,0.323160173160173,12,-0.0347045244295805,0.0825,8.25,4,70.6841463713377,0.717428600262388,3.5,3.12982640121922,0,-1.56068543593089,-1.59863662719727,0.0501337449247678
+8537,88243,447497.952,88343,447397.952,36,85,20.25,0.0405,11.478873093689,0.248139025725233,10,-0.0163049377686104,0.345,34.5,1,96.3025628341184,0.927299163940385,34.5,3.50720977783203,0,-1.64889871329069,-1.76984083652496,0.0995322207718397
+8538,88243,447397.952,88343,447297.952,37,85,34.5,0.069,12.0802781043929,0.311265718408576,11.064495102246,0.0212742727126169,0.4425,44.25,1,97.3510944420755,0.939660728733835,44.25,2.64264905250679,0,-1.75829260547956,-1.86031222343445,0.123306198738903
+8539,88243,447297.952,88343,447197.952,38,85,42.25,0.21125,18.910361212671,0.455588822355289,10,0.0295882319773409,0.6275,62.75,1,98.619006283181,0.94288162216193,62.75,2.04184504049233,0,-1.99353497475386,-2.10892844200134,0.148407523368549
+8540,88243,447197.952,88343,447097.952,39,85,23.25,0.03875,8.3294355416104,0.518533875538519,18.0473785412436,0.073340877422379,0.8225,82.25,1,99.4598121429477,0.736907758953074,82.25,12.9378313047183,0,-2.17921121915181,-2.2630307674408,0.136463481197701
+8541,88243,447097.952,88343,446997.952,40,85,28.5,0.285,32.8932917343268,0.77046783625731,NA,0.0310897558372403,0.3025,30.25,2,93.4746138005087,0.869664385793418,26.75,7.43964630316112,0,-2.30647496879101,-2.39220309257507,0.106405541619747
+8542,88243,446997.952,88343,446897.952,41,85,0,NA,NA,NA,NA,-0.00482445667054208,0,0,0,NA,NA,0,NA,NA,-2.43768189350764,-2.51095581054688,0.123584512667988
+8543,88243,446897.952,88343,446797.952,42,85,0,NA,NA,NA,NA,-0.0167527830453037,0,0,0,NA,NA,0,NA,NA,-2.63550268113613,-2.71641683578491,0.098254207791859
+8544,88243,446797.952,88343,446697.952,43,85,27.5,0.06875,17.4675871047394,0.389270451770452,10,-0.0311340638796173,0.0625,6.25,1,84.2105263157895,0.866666666666667,6.25,3.2472135925293,0,-2.69547092914581,-2.73479962348938,0.0504405176699966
+8545,88243,446697.952,88343,446597.952,44,85,5.5,0.00611111111111111,2.05308630456743,0.116512345679012,12.8861316183358,0.0518586226265325,0.295,29.5,2,92.9706239611657,0.933717770265792,27.75,12.2020078917681,0,-2.69035808245341,-2.74759101867676,0.0820657139814719
+8546,88243,446597.952,88343,446497.952,45,85,1,0.0025,0,0,33.7463670511721,-0.0330208733590553,0.1725,17.25,2,87.3950966504813,0.860178272702305,11.25,33.241077395453,0,-2.68528288602829,-2.73717093467712,0.0663777349257404
+8547,88243,446497.952,88343,446397.952,46,85,0.75,0.0025,0,0,15.8113883008419,0.035814940423661,0.325,32.5,2,93.8750341632822,0.943741209563994,30.75,23.954981803894,0,-2.78884182373683,-2.89181065559387,0.118329228056458
+8548,88243,446397.952,88343,446297.952,47,85,0.5,0.0025,0,0,31.6227766016838,-0.0158994763179817,0.02,2,2,52.9470541148176,0.693877551020408,1.25,52.0950574874878,43.0116271972656,-2.96617490053177,-3.01011443138123,0.081790433817297
+8549,88243,446297.952,88343,446197.952,48,85,8.25,0.0825,15.3532240649765,0.651515151515151,NA,0.0195639509283501,0.0925,9.25,2,84.5652762170076,0.837420403739331,8.5,1.46330096270587,0,-2.91744993130366,-2.98808217048645,0.14828787031167
+8550,88243,446197.952,88343,446097.952,49,85,68.5,0.3425,21.7181328945152,0.677987421383648,10,0.0711355659598485,0.77,77,1,99.2652328179138,0.767616191904048,77,3.10482395469368,0,-2.57031694054604,-2.77528834342957,0.293229852760494
+8551,88243,446097.952,88343,445997.952,50,85,19,0.095,11.6009838428995,0.35,18.0277563773199,-0.0309398720643003,0.195,19.5,2,88.4258043009812,0.864974345125574,10,31.8545024578388,0,-2.65659928321838,-2.75269412994385,0.149378948167239
+8552,88243,445997.952,88343,445897.952,51,85,0.25,0.0025,0,0,NA,-0.0043094467537594,0.1225,12.25,1,90.2255639097744,0.932166598833265,12.25,47.6206064029616,40,-2.64388908445835,-2.74782156944275,0.105051267878366
+8553,88243,445897.952,88343,445797.952,52,85,0.75,0.0025,0,0,41.2310562561766,-0.108365343669429,0,0,0,NA,NA,0,NA,NA,-2.54680879910787,-2.62898731231689,0.0991886994298187
+8554,88243,445797.952,88343,445697.952,53,85,1.25,0.0025,0,0,20.6155281280883,-0.0836457101052656,0.035,3.5,2,66.4957355443448,0.740932642487047,2.5,25.8860995428903,15.8113880157471,-2.99107059836388,-3.6456184387207,0.502886541050098
+8555,88243,445697.952,88343,445597.952,54,85,1.75,0.00583333333333333,2.28314077325558,0.152777777777778,26.9556885368881,0.00207579486217583,0.3925,39.25,1,96.8622433213934,0.954275262917238,39.25,40.855243524928,10,-3.88647812604904,-4.35158491134644,0.60658989774354
+8556,88243,445597.952,88343,445497.952,55,85,0,NA,NA,NA,NA,-0.138712750696577,0,0,0,NA,NA,0,NA,NA,-4.52826619148254,-4.70310878753662,0.353431661745027
+8557,88243,445497.952,88343,445397.952,56,85,0,NA,NA,NA,NA,-0.0531607245560735,0,0,0,NA,NA,0,NA,NA,-4.74469345808029,-4.8050365447998,0.0831153633326761
+8558,88243,445397.952,88343,445297.952,57,85,0,NA,NA,NA,NA,-0.0854895937535912,0,0,0,NA,NA,0,NA,NA,-4.71632730960846,-4.82591104507446,0.145933149601575
+8559,88243,445297.952,88343,445197.952,58,85,0.5,0.005,2.5,0.166666666666667,NA,-0.0261641230103669,0.0325,3.25,2,71.1422992901498,0.712891185759403,3,37.6992378234863,21.2132034301758,-4.5196858048439,-4.7745213508606,0.229621297650475
+8560,88243,445197.952,88343,445097.952,59,85,8,0.08,20.3567173028928,0.484375,NA,-0.00580567685151891,0.005,0.5,1,30.8308651382582,1,0.5,16.0849456787109,14.1421356201172,-4.49634516239166,-4.5786566734314,0.147207527709562
+8561,88243,445097.952,88343,444997.952,60,85,10,0.1,21.5870822063685,0.641666666666667,NA,-0.0302264176016979,0.0525,5.25,1,82.2928536593692,0.967018469656992,5.25,71.1263256981259,56.5685424804688,-4.73873755335808,-4.85743236541748,0.130130140490854
+8562,88243,444997.952,88343,444897.952,61,85,0,NA,NA,NA,NA,-0.00647097611206846,0.2325,23.25,1,94.3478768975745,0.882265217220674,23.25,136.560779530515,78.2623825073242,-4.88365149497986,-4.91589164733887,0.039637987972394
+8563,88243,444897.952,88343,444797.952,62,85,0,NA,NA,NA,NA,0.0175647705010488,0.22,22,5,81.3295471125326,0.746856116282868,7.25,163.208705642007,114.12712097168,-4.92994800209999,-5.01062726974487,0.0511608419470608
+8564,88243,444797.952,88343,444697.952,63,85,0.25,0.0025,0,0,NA,0.0288408681908186,0.4275,42.75,2,94.5554230755187,0.889096832328273,35.75,84.0955807200649,40,-5.02352849642436,-5.09884834289551,0.0738243342857318
+8565,88243,444697.952,88343,444597.952,64,85,0,NA,NA,NA,NA,-0.0568531242432073,0,0,0,NA,NA,0,NA,NA,-5.04136964678764,-5.10588407516479,0.0753723630038799
+8566,88243,444597.952,88343,444497.952,65,85,5,0.0166666666666667,3.91041153607275,0.375,15,-0.051047061029094,0,0,0,NA,NA,0,NA,NA,-4.85933248202006,-5.00717544555664,0.20957070044453
+8567,88243,444497.952,88343,444397.952,66,85,14.25,0.0158333333333333,4.78555378265124,0.307819763082921,17.7899773002571,-0.0208195706464539,0.03,3,7,25.9396397583478,0.272286234081261,0.5,8.39910984039307,0,-4.51955187320709,-4.76118946075439,0.312104986177442
+8568,88243,444397.952,88343,444297.952,67,85,35.25,0.17625,16.1478285986758,0.812268518518518,14.142135623731,-0.0792859084086376,0,0,0,NA,NA,0,NA,NA,-4.00080971419811,-4.35659456253052,0.332082577436858
+8569,88243,444297.952,88343,444197.952,68,85,0,NA,NA,NA,NA,-0.0323695025878988,0.035,3.5,1,77.1303955881658,1,3.5,42.6782518114362,33.5410194396973,-3.53266859054565,-3.69551229476929,0.238976286500173
+8570,88243,444197.952,88343,444097.952,69,85,1.75,0.0175,7.64993748974524,0.30952380952381,NA,-0.0167353643556999,0.025,2.5,2,60.6037822408496,0.842209072978304,2,53.247131729126,25,-3.22480021417141,-3.34257340431213,0.160518374870677
+8571,88243,444097.952,88343,443997.952,70,85,14.75,0.1475,25.2370706546102,0.711864406779661,NA,-0.18543778891295,0,0,0,NA,NA,0,NA,NA,-3.05358831087748,-3.11974883079529,0.0792889015026491
+8572,88243,443997.952,88343,443897.952,71,85,0,NA,NA,NA,NA,0.0952783260507567,0.76,76,1,99.2259017402484,0.963641652123327,76,80.787299883993,30,-3.00148776173592,-3.10601806640625,0.111103930937596
+8573,88243,443897.952,88343,443797.952,72,85,0,NA,NA,NA,NA,0.00814042192425404,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,105.591475793871,63.2455520629883,-2.86836202939351,-2.97371292114258,0.120635231166723
+8574,88243,443797.952,88343,443697.952,73,85,0.25,0.0025,0,0,NA,-0.207572543565184,0,0,0,NA,NA,0,NA,NA,-2.98513641953468,-3.11993646621704,0.273283025397279
+8575,88243,443697.952,88343,443597.952,74,85,0,NA,NA,NA,NA,-0.171918239369988,0,0,0,NA,NA,0,NA,NA,-3.85028070211411,-4,0.448630949976947
+8576,88243,443597.952,88343,443497.952,75,85,3.75,0.0375,8.30319282938775,0.611111111111111,NA,-0.146785326479294,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,0,0,-3.9237345457077,-4,0.235535628963597
+8577,88243,443497.952,88343,443397.952,76,85,56.75,0.28375,24.8021860346076,0.741762751221074,10,0.0354554204153828,0.595,59.5,2,97.4793896676223,0.783603828547649,56,1.46337929092535,0,-3.38101140658061,-3.76846432685852,0.354557110085086
+8578,88243,443397.952,88343,443297.952,77,85,91.25,0.9125,37.8932883609295,0.874885844748858,NA,0.104992824689252,0.8875,88.75,1,99.6763695533234,0.854497354497354,88.75,0.47887323943662,0,-3.14272920290629,-3.19445538520813,0.0771308398989376
+8579,88243,443297.952,88343,443197.952,78,85,88.5,0.4425,27.4824688335797,0.871617091504532,10,0.0941649409849197,0.9275,92.75,1,99.7981670352509,0.744935498111541,92.75,0.607426789892973,0,-3.10633245110512,-3.14708256721497,0.0466404068636147
+8580,88243,443197.952,88343,443097.952,79,85,48.5,0.097,11.4160455989427,0.366937984496124,18.7677660959866,0.0756880102062132,0.8175,81.75,1,99.442091962007,0.680291290157856,81.75,6.68333990931146,0,-3.17312524716059,-3.27102041244507,0.0962375932816347
+8581,88243,443097.952,88343,442997.952,80,85,30.5,0.1525,17.8200194375073,0.601994301994302,44.7213595499958,-0.0107824942263323,0.18,18,3,90.6187540665071,0.923180334165546,17.5,4.92912011676365,0,-3.46157042682171,-3.89085340499878,0.35254604033327
+8582,88243,442997.952,88343,442897.952,81,85,10.5,0.013125,4.30658734269061,0.224621212121212,16.0964414486206,0.0341410087444092,0.285,28.5,4,86.8706870945527,0.769162875958992,10.25,10.6226849806936,0,-4.08726684252421,-4.38860654830933,0.596167086965736
+8583,88243,442897.952,88343,442797.952,82,85,0,NA,NA,NA,NA,0.0327385360190237,0.2475,24.75,2,92.6807719245569,0.89547948784949,23,78.6236168447167,46.0977210998535,-4.80096882581711,-5.06449699401855,0.349115327559952
+8584,88243,442797.952,88343,442697.952,83,85,0,NA,NA,NA,NA,-0.0338943369274602,0.005,0.5,1,30.8308651382582,1,0.5,119.839550018311,118.848640441895,-5.18606746196747,-5.28554201126099,0.125706529885939
+8585,88243,442697.952,88343,442597.952,84,85,0,NA,NA,NA,NA,-0.173440513842506,0,0,0,NA,NA,0,NA,NA,-5.28890931606293,-5.32827854156494,0.0486480518877673
+8586,88243,442597.952,88343,442497.952,85,85,9.5,0.095,13.7184495452298,0.736842105263158,NA,-0.0659193115759081,0,0,0,NA,NA,0,NA,NA,-5.30353101094564,-5.32195520401001,0.0186954398425643
+8587,88243,442497.952,88343,442397.952,86,85,54,0.54,32.7526624570225,0.851851851851852,NA,-0.0939602238472799,0,0,0,NA,NA,0,NA,NA,-5.28505903482437,-5.30999994277954,0.0407934163870611
+8588,88243,442397.952,88343,442297.952,87,85,21.5,0.215,20.4427219961963,0.724806201550388,NA,0.0175928524426672,0.1925,19.25,1,93.2673077410907,0.945365142961209,19.25,1.78433173043387,0,-5.18244723478953,-5.29434633255005,0.135925095735807
+8589,88243,442297.952,88343,442197.952,88,85,0,NA,NA,NA,NA,0.00292333654304457,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,85.3593475341797,80.777473449707,-5.00445705652237,-5.16871929168701,0.0896089785873873
+8590,88243,442197.952,88343,442097.952,89,85,0.5,0.0025,0,0,18.0277563773199,-0.110119640713601,0.0025,0.25,1,0,NA,0.25,101.242286682129,101.242286682129,-4.97725776831309,-5.00620222091675,0.0475876275491812
+8591,88243,442097.952,88343,441997.952,90,85,0,NA,NA,NA,NA,0.00627686806314159,0.1625,16.25,2,86.87347058499,0.841500462290318,8.5,113.413976698655,98.4885787963867,-4.92293616135915,-4.95912027359009,0.0696917492321058
+8592,88243,441997.952,88343,441897.952,91,85,0.75,0.0025,0,0,21.7367574096221,-8.25991751844413e-05,0,0,0,NA,NA,0,NA,NA,-4.72932064533234,-4.94551563262939,0.22902730460289
+8593,88243,441897.952,88343,441797.952,92,85,2.25,0.00375,1.36004781027923,0.0324074074074074,19.9596478637121,-0.0622523498826195,0,0,0,NA,NA,0,NA,NA,-4.48217296600342,-4.66428995132446,0.202530546997959
+8594,88243,441797.952,88343,441697.952,93,85,0.25,0.0025,0,0,NA,-0.129310782514513,0,0,0,NA,NA,0,NA,NA,-4.66687825322151,-4.79941272735596,0.159917968588728
+8595,88243,441697.952,88343,441597.952,94,85,1.25,0.003125,0.883883476483184,0.0208333333333333,12.8921940099542,-0.111256146440282,0,0,0,NA,NA,0,NA,NA,-4.81441632906596,-4.85230541229248,0.0849302531037488
+8596,88243,441597.952,88343,441497.952,95,85,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,28.1034502520721,-0.0562497730449104,0,0,0,NA,NA,0,NA,NA,-4.94850838184357,-5.03753852844238,0.0853588669282196
+8597,88243,441497.952,88343,441397.952,96,85,0.5,0.005,2.5,0.166666666666667,NA,-0.00865387908226694,0.0925,9.25,2,80.9489275044262,0.819356004154812,5.25,77.0570022995408,45,-5.09676440556844,-5.17935228347778,0.0950475245284232
+8598,88243,441397.952,88343,441297.952,97,85,0,NA,NA,NA,NA,0.1041384538477,0.6375,63.75,1,98.6713232517353,0.976915308036358,63.75,123.048372186399,85,-5.20922863483429,-5.28852272033691,0.0672425626573251
+8599,88243,441297.952,88343,441197.952,98,85,0,NA,NA,NA,NA,-0.0166283854900576,0.03,3,1,74.8763016215986,0.757428744693754,3,103.309199015299,82.7647323608398,-5.21304742495219,-5.27876996994019,0.0657113613941427
+8600,88243,441197.952,88343,441097.952,99,85,0,NA,NA,NA,NA,-0.0799367772943197,0,0,0,NA,NA,0,NA,NA,-5.13473585247993,-5.18424463272095,0.0622866162888554
+8601,88343,451097.952,88443,450997.952,0,86,28.25,0.0403571428571429,8.60500408092395,0.352876878924069,11.8977530353517,0.00790252307543596,0.1275,12.75,2,87.9885018968683,0.762869281691532,11.5,3.40405385634478,0,-4.27214161554972,-4.31428050994873,0.0968515488141216
+8602,88343,450997.952,88443,450897.952,1,86,29.5,0.0421428571428571,6.93165953437189,0.253650793650794,10.3372399678568,-0.0383435435898173,0.09,9,1,87.719298245614,0.945054945054945,9,1.25,0,-4.30522529284159,-4.32718467712402,0.0548612071129829
+8603,88343,450897.952,88443,450797.952,2,86,76.75,0.7675,36.2594138180148,0.824647122692725,NA,0.0786153584396743,0.6725,67.25,1,98.8451498857927,0.91535031365732,67.25,0.427509293680297,0,-4.31700711780124,-4.34951829910278,0.0600650996741111
+8604,88343,450797.952,88443,450697.952,3,86,94.25,0.9425,37.8700090525439,0.892130857648099,NA,0.108842103574425,0.97,97,1,99.9192307098231,0.773550724637683,97,0.270618556701031,0,-4.29314390818278,-4.36925935745239,0.104877219326487
+8605,88343,450697.952,88443,450597.952,4,86,72.5,0.3625,28.1830597066413,0.809747516223049,15.8113883008419,0.108187002711929,0.9825,98.25,1,99.9533339757335,0.770202987361164,98.25,1.62120110509353,0,-4.31459988488091,-4.38464641571045,0.107090010253077
+8606,88343,450597.952,88443,450497.952,5,86,97.75,0.48875,20.4088127900283,0.605598510882016,11.1803398874989,0.0779426483495627,0.9,90,1,99.7153023505818,0.956011730205279,90,0.130752966139052,0,-4.14220345020294,-4.27590847015381,0.149446884235395
+8607,88343,450497.952,88443,450397.952,6,86,68.75,0.171875,9.36604423413531,0.352996254681648,17.2240896804561,-0.0181631879663837,0.185,18.5,2,91.687456700159,0.896177442189712,18,0,0,-3.94347278277079,-4.01145315170288,0.0997862206014876
+8608,88343,450397.952,88443,450297.952,7,86,66.75,0.166875,9.50552097583324,0.328525641025641,17.4487111693809,0.0447317291740364,0.4325,43.25,1,97.260148197161,0.883998729509895,43.25,2.71053657090733,0,-4.0415266752243,-4.21708154678345,0.169194673389971
+8609,88343,450297.952,88443,450197.952,8,86,18.25,0.1825,19.2077539778364,0.80365296803653,NA,0.046177389298573,0.4675,46.75,2,94.3708036985774,0.766615104887514,25.75,20.5745009763993,0,-4.32989046308729,-4.41378450393677,0.145110784793317
+8610,88343,450197.952,88443,450097.952,9,86,13.5,0.015,6.02184642154413,0.141414141414141,13.2760106334024,0.0890850872243755,0.83,83,1,99.48609157949,0.671638990524439,83,10.3570066360106,0,-4.48085837894016,-4.53738784790039,0.0941397822666423
+8611,88343,450097.952,88443,449997.952,10,86,16.75,0.0335,8.25224813067708,0.387941176470588,26.9764306775734,0.073358741607517,0.845,84.5,1,99.5375969134692,0.737493058710687,84.5,11.9932890841241,0,-4.49493670463562,-4.54736948013306,0.11861551854218
+8612,88343,449997.952,88443,449897.952,11,86,23.25,0.058125,10.6577757208251,0.512444295900178,21.25,0.0805173315935099,0.75,75,1,99.1857866401092,0.907964601769911,75,15.3705882708232,0,-4.26585859722561,-4.40773439407349,0.280433409191663
+8613,88343,449897.952,88443,449797.952,12,86,56.5,0.14125,13.0335385391162,0.412101192394457,10.5901699437495,-0.0159935868798311,0.1325,13.25,4,76.6839370539974,0.759318491306964,6,0.699454109623747,0,-3.96249856551488,-4.04811811447144,0.351799480082166
+8614,88343,449797.952,88443,449697.952,13,86,46.25,0.23125,15.9334638355302,0.397644927536232,67.0820393249937,-0.00410549376458221,0.3225,32.25,1,95.995253617625,0.899505378032504,32.25,0.62015503875969,0,-4.11309311125014,-4.2499213218689,0.289048873924488
+8615,88343,449697.952,88443,449597.952,14,86,33.25,0.083125,11.0188693526203,0.419077932098765,16.4112377556149,-0.0925126401941452,0.0025,0.25,1,0,NA,0.25,0,0,-4.47162878513336,-4.60375165939331,0.260336819920855
+8616,88343,449597.952,88443,449497.952,15,86,39.75,0.1325,16.5228314128438,0.685653505786249,20.9937789301041,-0.0115194861695636,0.44,44,2,95.7695691159323,0.93956043956044,42.5,2.1130171472376,0,-4.57956870396932,-4.63495302200317,0.11990968551669
+8617,88343,449497.952,88443,449397.952,16,86,65.5,0.655,40.3362319450191,0.794529262086514,NA,0.0836135366139933,0.7475,74.75,2,98.3818167470674,0.788966463253785,72.25,2.05780964471823,0,-4.3891312678655,-4.52543210983276,0.148004064907199
+8618,88343,449397.952,88443,449297.952,17,86,88.5,0.885,37.8329684070793,0.857815442561205,NA,0.0542894851812162,0.525,52.5,3,97.271752086746,0.741553371920851,51.25,0.738095238095238,0,-4.2286958694458,-4.25459051132202,0.0475180343965073
+8619,88343,449297.952,88443,449197.952,18,86,89,0.89,37.6362869494499,0.89185393258427,NA,-0.0237906217883574,0.315,31.5,2,95.0213250143489,0.929876008032385,31,0.175167204841735,0,-4.27016997337341,-4.37619113922119,0.108615203673603
+8620,88343,449197.952,88443,449097.952,19,86,71,0.236666666666667,13.3896787919021,0.367989417989418,10,-0.0193301126600636,0.1175,11.75,3,79.7085713141597,0.773371104815864,5.75,1.21427803851188,0,-4.3669154908922,-4.41456699371338,0.0732434342903288
+8621,88343,449097.952,88443,448997.952,20,86,52.25,0.1045,12.7091458626307,0.470898012085711,10.2360679774998,-0.0187677936955879,0,0,0,NA,NA,0,NA,NA,-4.41810793346829,-4.432945728302,0.0304898396495996
+8622,88343,448997.952,88443,448897.952,21,86,76,0.76,36.5949475585846,0.851973684210526,NA,-0.0122570551038007,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,0,0,-4.33965408802032,-4.42089939117432,0.130188397520583
+8623,88343,448897.952,88443,448797.952,22,86,80.25,0.40125,26.236592421228,0.780465949820788,10,0.0491855621999275,0.48,48,2,96.2324605031637,0.908167675021608,45.75,0.078125,0,-3.7744988600413,-4.16260004043579,0.588343787097999
+8624,88343,448797.952,88443,448697.952,23,86,25.75,0.0321875,4.75564308170863,0.152777777777778,12.1294454061958,0.0200867450167789,0.2125,21.25,3,85.7409268088759,0.772942289498581,11.25,1.20842374913833,0,-3.00990362962087,-3.34214234352112,0.304483657120495
+8625,88343,448697.952,88443,448597.952,24,86,30,0.06,8.10027286000426,0.301602564102564,11.3005630797458,-0.013611278599592,0.22,22,2,89.4578368635655,0.812183570145354,13.75,2.88450306112116,0,-2.63403916358948,-2.72130274772644,0.156761204749759
+8626,88343,448597.952,88443,448497.952,25,86,36.75,0.18375,24.2731951974224,0.652647975077882,15.8113883008419,-0.00456275137210014,0.1375,13.75,2,87.2659107911661,0.841342486651411,11.75,4.08332578485662,0,-2.39392727613449,-2.49417281150818,0.142306312912882
+8627,88343,448497.952,88443,448397.952,26,86,15.5,0.155,20.9326501665525,0.68010752688172,NA,-0.0218175963511021,0.005,0.5,1,30.8308651382582,1,0.5,5,5,-2.0211261510849,-2.26935267448425,0.40076560257453
+8628,88343,448397.952,88443,448297.952,27,86,1,0.01,4.34942231976673,0.291666666666667,NA,-0.0294064962839184,0,0,0,NA,NA,0,NA,NA,-1.98343271017075,-2.2474889755249,0.37984420347611
+8629,88343,448297.952,88443,448197.952,28,86,24.25,0.0346428571428571,8.40434030599073,0.261006683375104,10.1686199839284,0.0107820656778904,0.0575,5.75,4,65.9905003597059,0.73474801061008,3,1.95652173913043,0,-2.25116411844889,-2.33625841140747,0.190076330796035
+8630,88343,448197.952,88443,448097.952,29,86,1,0.01,5.72061402817684,0.208333333333333,NA,-0.0338456653643516,0,0,0,NA,NA,0,NA,NA,-2.26327788829803,-2.3267982006073,0.0764336350964487
+8631,88343,448097.952,88443,447997.952,30,86,0.75,0.0025,0,0,44.6172160237817,-0.00243727530141769,0.0975,9.75,1,88.4075627573592,0.914766673769444,9.75,14.5476205287836,0,-2.16149610943264,-2.21941757202148,0.113507614670405
+8632,88343,447997.952,88443,447897.952,31,86,7.25,0.00805555555555556,1.60434217873245,0.108187134502924,14.0309146665568,0.00707954983789023,0.0125,1.25,1,58.1880425789518,1,1.25,16.0749645233154,11.1803398132324,-1.93109362655216,-2.04067945480347,0.194855502342056
+8633,88343,447897.952,88443,447797.952,32,86,38.75,0.096875,8.78113203178641,0.325343406593407,24.7886898685566,0.021390494031657,0.3175,31.75,3,94.2316281687474,0.866799866799867,30.5,18.7499341589259,0,-1.58230605721474,-1.73678839206696,0.163582609990708
+8634,88343,447797.952,88443,447697.952,33,86,17.75,0.1775,19.0313992843858,0.816901408450704,NA,0.00931323047853766,0.115,11.5,2,83.5359588303352,0.855135448355787,8.5,8.72326859183933,0,-1.43680755297343,-1.44341325759888,0.0295601425660634
+8635,88343,447697.952,88443,447597.952,34,86,7.25,0.0241666666666667,11.6333258655009,0.259090909090909,10,-0.0331589574330428,0.055,5.5,1,82.8209772257252,0.906629318394024,5.5,18.6927635886452,0,-1.48414809505145,-1.51779294013977,0.0388845729106898
+8636,88343,447597.952,88443,447497.952,35,86,2.25,0.005625,2.01932847036772,0.116666666666667,10.2950849718747,0.00047333976621303,0.2575,25.75,1,94.8912707561653,0.934479934479934,25.75,27.8041473870139,0,-1.5147816075219,-1.53516113758087,0.0390975963314742
+8637,88343,447497.952,88443,447397.952,36,86,0,NA,NA,NA,NA,-0.104300546920276,0.005,0.5,1,30.8308651382582,1,0.5,59.4693641662598,58.5234985351562,-1.495852937301,-1.55604469776154,0.080406609349539
+8638,88343,447397.952,88443,447297.952,37,86,0.5,0.005,2.5,0.166666666666667,NA,-0.0876952442369657,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,23.6037219365438,15.8113880157471,-1.67435088422563,-1.77287030220032,0.178487205437034
+8639,88343,447297.952,88443,447197.952,38,86,11.75,0.05875,19.1856680382733,0.410243055555556,10,-0.0104154405328882,0.115,11.5,1,89.742951983695,0.826162538026945,11.5,2.60869565217391,0,-1.91201097766558,-2.0152907371521,0.147179431872964
+8640,88343,447197.952,88443,447097.952,39,86,36,0.09,8.06377523420847,0.204464285714286,12.3381019908347,0.0129137871871171,0.3125,31.25,1,95.8481348315798,0.814177012414898,31.25,1.24,0,-2.12357666757372,-2.20055556297302,0.119573173783842
+8641,88343,447097.952,88443,446997.952,40,86,25.5,0.051,8.92644753540679,0.34910790047013,14.3983456376682,0.0159444552533023,0.1325,13.25,3,80.2186863914738,0.809988282610761,6.25,5.66165308682424,0,-2.28894035021464,-2.37071180343628,0.0846576158870699
+8642,88343,446997.952,88443,446897.952,41,86,16.5,0.165,25.7811337004722,0.431818181818182,NA,0.00170867313032431,0.005,0.5,1,30.8308651382582,1,0.5,0,0,-2.41654973559909,-2.48115253448486,0.0797260768194239
+8643,88343,446897.952,88443,446797.952,42,86,3.75,0.01875,5.1792934692756,0.19047619047619,70,-0.0151020756020989,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0,-2.51912007729212,-2.61766386032104,0.115858486511599
+8644,88343,446797.952,88443,446697.952,43,86,39.75,0.0567857142857143,13.5033097864208,0.40273943238862,10.3372399678568,-0.00591224824129313,0.1675,16.75,3,84.4394260694987,0.774133107466441,10,7.42320755346497,0,-2.55534609158834,-2.62488985061646,0.102087535499474
+8645,88343,446697.952,88443,446597.952,44,86,4,0.00666666666666667,3.30402358963805,0.194444444444444,11.1803398874989,0.0617332091336721,0.5325,53.25,1,98.0506451597102,0.978393561281262,53.25,15.7158580386023,0,-2.53310108184814,-2.57969856262207,0.0695534339443649
+8646,88343,446597.952,88443,446497.952,45,86,2,0.0025,0,0,22.7836029277844,-0.131545435989974,0.005,0.5,1,30.8308651382582,1,0.5,12.5,10,-2.67003665367762,-2.80778002738953,0.136555976099529
+8647,88343,446497.952,88443,446397.952,46,86,0.25,0.0025,0,0,NA,0.00820973430368667,0.14,14,1,91.1967767414513,0.976024934068569,14,33.1135156495231,5,-2.92805862426758,-3.05781412124634,0.161513647339625
+8648,88343,446397.952,88443,446297.952,47,86,0.25,0.0025,0,0,NA,0.00494472841409618,0.0325,3.25,1,76.0684107249879,1,3.25,77.9960761437049,70.1783447265625,-3.07991274197896,-3.14836716651917,0.0996454934129163
+8649,88343,446297.952,88443,446197.952,48,86,7.75,0.0775,10.8649095108857,0.747311827956989,NA,0.0248425934241823,0.05,5,1,81.7256002368443,0.932088285229202,5,0,0,-3.03070714738634,-3.1291618347168,0.152299387719836
+8650,88343,446197.952,88443,446097.952,49,86,37.25,0.3725,29.5615585579015,0.752796420581655,NA,0.0182298103705762,0.2825,28.25,1,95.3608329643832,0.904351984696318,28.25,1.39000944964654,0,-2.84791467587153,-3.0139627456665,0.223871009947893
+8651,88343,446097.952,88443,445997.952,50,86,2.5,0.025,11.4149192320374,0.366666666666667,NA,0.0344338578829775,0.465,46.5,1,97.5448886830867,0.94566398608998,46.5,68.5893583605366,47.4341621398926,-2.85738799307081,-3.00017619132996,0.215217462771088
+8652,88343,445997.952,88443,445897.952,51,86,0.75,0.0025,0,0,20.6155281280883,0.0151533733874385,0.29,29,2,94.7405496632264,0.966465459423206,28.75,62.0301136806093,33.5410194396973,-2.86575826009115,-3.00380301475525,0.195186750569841
+8653,88343,445897.952,88443,445797.952,52,86,0.25,0.0025,0,0,NA,-0.116962471809238,0,0,0,NA,NA,0,NA,NA,-2.78503266970317,-2.94386768341064,0.234165937455584
+8654,88343,445797.952,88443,445697.952,53,86,0.25,0.0025,0,0,NA,-0.0410997667821357,0.135,13.5,4,80.6332501517998,0.751382932438312,6.75,44.0338261215775,20.6155281066895,-3.34871019919713,-3.80802392959595,0.530502013226101
+8655,88343,445697.952,88443,445597.952,54,86,0,NA,NA,NA,NA,-0.0245807010562021,0.35,35,1,96.3667973186472,0.891826923076923,35,81.5309525353568,45.276927947998,-4.21696827146742,-4.42770195007324,0.390359536675117
+8656,88343,445597.952,88443,445497.952,55,86,0,NA,NA,NA,NA,-0.11056833291892,0,0,0,NA,NA,0,NA,NA,-4.63094075520833,-4.71726179122925,0.169905681870731
+8657,88343,445497.952,88443,445397.952,56,86,0,NA,NA,NA,NA,-0.0389044098473096,0,0,0,NA,NA,0,NA,NA,-4.73205876350403,-4.75508546829224,0.0688641157742147
+8658,88343,445397.952,88443,445297.952,57,86,0.75,0.00375,1.25,0.0833333333333333,15.8113883008419,-0.0418096312508896,0.0075,0.75,1,44.4894453484604,1,0.75,5.6903559366862,5,-4.52835904227363,-4.65954828262329,0.221514061385005
+8659,88343,445297.952,88443,445197.952,58,86,2,0.00666666666666667,3.05555555555556,0.203703703703704,12.7240226919466,0.173928247455406,0.8275,82.75,1,99.4773714744283,0.962898550724638,82.75,44.9236666572778,0,-4.22162719567617,-4.41693735122681,0.182116264227216
+8660,88343,445197.952,88443,445097.952,59,86,3.5,0.0175,5.68245951374788,0.42962962962963,10,0.00855009583719948,0.28,28,2,94.5302856857195,0.876237623762376,27.5,47.7478268487113,5,-4.3015571170383,-4.47585725784302,0.243147383972137
+8661,88343,445097.952,88443,444997.952,60,86,0,NA,NA,NA,NA,-0.0418562920078614,0.0275,2.75,1,73.5251216233933,1,2.75,51.2419541098855,42.7200164794922,-4.71079528331757,-4.87439107894897,0.194672452361989
+8662,88343,444997.952,88443,444897.952,61,86,0,NA,NA,NA,NA,-0.00303071568263022,0.0925,9.25,3,78.6088237798211,0.710969606647699,5,97.2733095529917,61.8465843200684,-4.9391868379381,-5.0294942855835,0.117544588717254
+8663,88343,444897.952,88443,444797.952,62,86,0,NA,NA,NA,NA,0.00881504427649816,0.0775,7.75,2,82.9710415416266,0.718157181571816,7,156.086423320155,90,-4.99607515335083,-5.07094287872314,0.112520422344856
+8664,88343,444797.952,88443,444697.952,63,86,0,NA,NA,NA,NA,0.00211937004169158,0.1625,16.25,2,86.7541541948763,0.820367190595694,9.25,69.4328796386719,46.0977210998535,-5.02318700154622,-5.08847427368164,0.0881079064904952
+8665,88343,444697.952,88443,444597.952,64,86,0,NA,NA,NA,NA,-0.0368758252476255,0,0,0,NA,NA,0,NA,NA,-4.94384634494781,-5.03290700912476,0.13184251126713
+8666,88343,444597.952,88443,444497.952,65,86,6.75,0.0225,7.18066525518502,0.457671957671958,33.6633983786426,-0.0296304885419045,0,0,0,NA,NA,0,NA,NA,-4.5027551651001,-4.77097177505493,0.432142726502406
+8667,88343,444497.952,88443,444397.952,66,86,14.75,0.0134090909090909,4.65509759915925,0.203904120570787,12.8608148339816,-0.0054808424648445,0.0675,6.75,5,67.202967993197,0.625911839890268,4,7.53877371328848,0,-4.08707571029663,-4.47039604187012,0.497135977630295
+8668,88343,444397.952,88443,444297.952,67,86,18,0.06,12.1577341269627,0.662551440329218,20.9937789301041,0.0131438596583575,0.1375,13.75,5,81.606999086216,0.804729214340198,11.25,19.0088418440385,5,-3.5796132683754,-3.90782165527344,0.33601716346624
+8669,88343,444297.952,88443,444197.952,68,86,0.25,0.0025,0,0,NA,0.0167583695391841,0.235,23.5,1,94.4060921446443,0.976657329598506,23.5,41.164284969898,22.3606796264648,-3.3680288526747,-3.52069354057312,0.161769126977589
+8670,88343,444197.952,88443,444097.952,69,86,5.5,0.0275,6.25351630401631,0.277777777777778,15,-0.0137759406365512,0,0,0,NA,NA,0,NA,NA,-3.23066107432048,-3.31597924232483,0.0965651012450507
+8671,88343,444097.952,88443,443997.952,70,86,25,0.125,19.1228382452396,0.715551032715212,10,-0.0922966787674886,0.0025,0.25,1,0,NA,0.25,5,5,-3.08905744552612,-3.12796521186829,0.0752690505602347
+8672,88343,443997.952,88443,443897.952,71,86,56,0.56,29.5622964262869,0.886904761904762,NA,-0.0169881046545015,0.175,17.5,4,83.1779032108294,0.78319783197832,7.75,7.93124395098005,0,-3.06214644511541,-3.11856651306152,0.0680672227998251
+8673,88343,443897.952,88443,443797.952,72,86,2,0.00666666666666667,3.10386545627078,0.1,33.5924907023392,0.0394615472484657,0.38,38,2,95.8517652796562,0.907503757659845,37.25,26.9388629637266,0,-3.15681555536058,-3.9843282699585,0.396664878794705
+8674,88343,443797.952,88443,443697.952,73,86,0.75,0.0025,0,0,13.4628120507726,-0.0456926344511521,0.08,8,1,86.6550847056172,0.853678929765886,8,36.4029961824417,29.1547584533691,-3.01694963375727,-3.11226415634155,0.288217510330453
+8675,88343,443697.952,88443,443597.952,74,86,0,NA,NA,NA,NA,-0.146878471972886,0,0,0,NA,NA,0,NA,NA,-3.44054139984979,-3.96536040306091,0.583851981719021
+8676,88343,443597.952,88443,443497.952,75,86,20.5,0.205,20.9060346755369,0.754065040650406,NA,-0.0973477787576121,0.165,16.5,1,92.3061588442808,0.958344181202812,16.5,1.24350102742513,0,-3.50155868132909,-4,0.509137453664074
+8677,88343,443497.952,88443,443397.952,76,86,78.75,0.7875,36.7730525211027,0.831746031746032,NA,0.0707227573788259,0.65,65,2,97.320783042675,0.876796714579055,61,0.615384615384615,0,-3.18955993652344,-3.30284571647644,0.147514925496398
+8678,88343,443397.952,88443,443297.952,77,86,80,0.4,18.9243222302524,0.522798742138365,10,0.0886416718713008,0.7875,78.75,1,99.3322508440104,0.833630421865716,78.75,1.20761642456055,0,-3.09387090471056,-3.15699744224548,0.0919762821296163
+8679,88343,443297.952,88443,443197.952,78,86,30,0.1,20.1584391228359,0.499026106168963,20.9066729088626,0.0513956989818689,0.68,68,2,98.6105582026475,0.74926614481409,67.5,5.22617251031539,0,-3.08365388711294,-3.13994741439819,0.0883961344761218
+8680,88343,443197.952,88443,443097.952,79,86,23.75,0.0791666666666667,14.5793792198735,0.420634920634921,26.0874597374975,0.0137890634788346,0.5125,51.25,1,97.9112600445307,0.956928460865469,51.25,16.6394445093667,0,-3.08013039165073,-3.22107005119324,0.290855877547812
+8681,88343,443097.952,88443,442997.952,80,86,3.5,0.0175,6.41863988547097,0.357142857142857,47.169905660283,-0.0526034094890929,0.015,1.5,1,62.2896536353828,1,1.5,16.400429725647,11.1803398132324,-3.54847808678945,-4.38457489013672,0.736567340890763
+8682,88343,442997.952,88443,442897.952,81,86,16.25,0.0270833333333333,5.66668080444292,0.407592592592593,14.120226591666,0.0381715029999123,0.3275,32.75,4,93.2814557021105,0.894230918791122,30.75,15.5149409315968,0,-4.53069512049357,-4.84741687774658,0.463687183244038
+8683,88343,442897.952,88443,442797.952,82,86,2.25,0.01125,3.15948448994721,0.239583333333333,15,0.0282279006824319,0.2325,23.25,2,91.7504774894943,0.866567246183431,20,21.0543882103376,0,-4.91138625144958,-5.04460000991821,0.212031716586995
+8684,88343,442797.952,88443,442697.952,83,86,0,NA,NA,NA,NA,-0.0821719457516156,0,0,0,NA,NA,0,NA,NA,-5.12469879786174,-5.17256593704224,0.086738765304865
+8685,88343,442697.952,88443,442597.952,84,86,0,NA,NA,NA,NA,-0.0929495812940877,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,150.239761352539,143.17822265625,-5.24281696478526,-5.29818773269653,0.0600892076895842
+8686,88343,442597.952,88443,442497.952,85,86,0,NA,NA,NA,NA,0.00535008673832635,0.0425,4.25,3,63.6675340956763,0.70757180156658,2.25,140.206814934226,104.043266296387,-5.31069040298462,-5.32854604721069,0.0286488983076045
+8687,88343,442497.952,88443,442397.952,86,86,0,NA,NA,NA,NA,0.0283630213825381,0.05,5,4,63.0827424099282,0.66044142614601,2.5,73.2907283782959,50,-5.22423819700877,-5.30271100997925,0.105994122103987
+8688,88343,442397.952,88443,442297.952,87,86,14.25,0.035625,8.18778147124008,0.38048048048048,14.4940519757716,0.0173208633272952,0.165,16.5,2,89.310498988785,0.937516271804218,15.25,4.48341944723418,0,-5.01956409878201,-5.11114692687988,0.109765544824917
+8689,88343,442297.952,88443,442197.952,88,86,0.5,0.005,2.5,0.166666666666667,NA,-0.0950353260693373,0,0,0,NA,NA,0,NA,NA,-5.05974761644999,-5.1193380355835,0.0687886845966919
+8690,88343,442197.952,88443,442097.952,89,86,0,NA,NA,NA,NA,-0.02308107343335,0.38,38,1,96.7251883615388,0.861255636489768,38,67.6372873908595,30,-5.05616034401788,-5.10571050643921,0.0901590052715457
+8691,88343,442097.952,88443,441997.952,90,86,0,NA,NA,NA,NA,0.0162698825648567,0.2425,24.25,1,94.5753035249093,0.962065172034445,24.25,107.846488244755,75,-4.87120559480455,-4.96254444122314,0.167113966977941
+8692,88343,441997.952,88443,441897.952,91,86,1.5,0.003,0.707106781186548,0.0166666666666667,13.9193064834273,-0.0452792432306524,0,0,0,NA,NA,0,NA,NA,-4.63310273488363,-4.78322505950928,0.178918378792568
+8693,88343,441897.952,88443,441797.952,92,86,0,NA,NA,NA,NA,-0.106326137054712,0,0,0,NA,NA,0,NA,NA,-4.77301730049981,-4.90409374237061,0.190950402640921
+8694,88343,441797.952,88443,441697.952,93,86,0.75,0.0025,0,0,13.4628120507726,-0.130697394274175,0,0,0,NA,NA,0,NA,NA,-4.88002220789592,-4.95787763595581,0.137035029487579
+8695,88343,441697.952,88443,441597.952,94,86,1.5,0.0025,0,0,20.6023090945401,-0.0953652019312722,0,0,0,NA,NA,0,NA,NA,-4.90187342961629,-4.95353698730469,0.0811378293907949
+8696,88343,441597.952,88443,441497.952,95,86,2,0.00666666666666667,3.72710602148286,0.0833333333333333,22.5458684885617,-0.0213621563178094,0,0,0,NA,NA,0,NA,NA,-4.92261091868083,-4.96993541717529,0.0632487425471549
+8697,88343,441497.952,88443,441397.952,96,86,0.25,0.0025,0,0,NA,0.067675506099622,0.5225,52.25,1,97.9819530119361,0.962314432226544,52.25,73.9559665114115,35.355339050293,-5.04840856128269,-5.10252857208252,0.0849201973129834
+8698,88343,441397.952,88443,441297.952,97,86,0,NA,NA,NA,NA,0.125685524097644,0.7475,74.75,2,98.0931142789746,0.90855213407664,73,94.1467280180558,20.6155281066895,-5.14626693725586,-5.162353515625,0.0288581139442665
+8699,88343,441297.952,88443,441197.952,98,86,0.75,0.0025,0,0,13.4628120507726,0.0676944585300953,0.6075,60.75,2,98.2029706611156,0.927046213417885,60.5,33.1357019683461,0,-5.13739903767904,-5.1541166305542,0.0288271289748155
+8700,88343,441197.952,88443,441097.952,99,86,0,NA,NA,NA,NA,-0.0539311541398638,0.0075,0.75,1,44.4894453484604,1,0.75,73.9116363525391,71.589111328125,-5.12969799836477,-5.15654611587524,0.0289261651642308
+8701,88443,451097.952,88543,450997.952,0,87,4,0.00666666666666667,2.3757674403395,0.173280423280423,11.1803398874989,-0.119611903130499,0,0,0,NA,NA,0,NA,NA,-3.70878263314565,-4.12489891052246,0.501443692759639
+8702,88443,450997.952,88543,450897.952,1,87,8.75,0.00972222222222222,5.19671816286336,0.176748971193416,12.5577825515902,-0.0368781975388447,0.005,0.5,2,0,1,0.25,5,5,-3.92635282874107,-4.28241300582886,0.463299595148251
+8703,88443,450897.952,88543,450797.952,2,87,15.75,0.0225,7.08005320298206,0.266557103610675,18.5316227928565,-0.00696744814093563,0.0675,6.75,2,82.1410189389619,0.900243157304071,6.5,1.11111111111111,0,-4.22967507441839,-4.36879825592041,0.218846780985312
+8704,88443,450797.952,88543,450697.952,3,87,50,0.25,15.4185099629355,0.397822445561139,26.9258240356725,0.0607893598993178,0.6075,60.75,1,98.5105231673728,0.865316086309941,60.75,1.58141794714908,0,-4.35737478733063,-4.42462825775146,0.138383333286629
+8705,88443,450697.952,88543,450597.952,4,87,85,0.85,36.5934322348488,0.868137254901961,NA,0.11484448711446,0.9875,98.75,1,99.9667936270881,0.893333333333336,98.75,0.791769322262535,0,-4.28248743216197,-4.41052198410034,0.178246217642319
+8706,88443,450597.952,88543,450497.952,5,87,99,0.99,37.9627395494982,0.934343434343434,NA,0.0926929207332432,1,100,1,100,NA,100,0.0551776695251465,0,-4.06326606869698,-4.25715112686157,0.146021614109255
+8707,88443,450497.952,88543,450397.952,6,87,64.5,0.645,33.1867050125107,0.904392764857881,NA,-0.000409357344833552,0.49,49,1,97.7443609022556,0.967679379444085,49,0.153061224489796,0,-4.06216867764791,-4.08591270446777,0.0706823932311866
+8708,88443,450397.952,88543,450297.952,7,87,25.5,0.02125,3.16046938019747,0.172039404461279,12.9915882019411,-0.0250258430372782,0.27,27,1,95.1342058036908,0.90165086055497,27,3.51987632115682,0,-4.080715239048,-4.24259662628174,0.122960012146581
+8709,88443,450297.952,88543,450197.952,8,87,12.5,0.0416666666666667,6.22140385839326,0.274822695035461,28.5686819112145,0.090252246633172,0.725,72.5,1,99.081892426161,0.733110925771476,72.5,17.2310258799586,0,-4.32576962312063,-4.4179368019104,0.158029983835008
+8710,88443,450197.952,88543,450097.952,9,87,1.25,0.00416666666666667,1.43848683993192,0.0555555555555556,29.120226591666,0.0729155671910848,0.7,70,2,97.3209586436219,0.778200253485425,61.25,33.7183470181056,0,-4.45323936144511,-4.52917528152466,0.0989887028746311
+8711,88443,450097.952,88543,449997.952,10,87,26.5,0.06625,7.50418255717095,0.234427609427609,36.2804335597153,0.0785039226543267,0.74,74,1,99.1448611187463,0.951664134788013,74,11.362276393014,0,-4.41004759073257,-4.53963994979858,0.15823336028046
+8712,88443,449997.952,88543,449897.952,11,87,73.25,0.7325,36.9963056607282,0.769624573378839,NA,0.076697120780409,0.595,59.5,3,95.5702554387195,0.728117630739354,41.75,1.88572859563747,0,-3.18265215555827,-4.37558126449585,2.30512543024121
+8713,88443,449897.952,88543,449797.952,12,87,91.5,0.915,38.0525147986023,0.883879781420765,NA,0.0377120044040203,0.33,33,4,93.296704923554,0.838979376974051,30.5,0.0757575757575758,0,-1.06654998101294,-3.58731698989868,2.42123741947295
+8714,88443,449797.952,88543,449697.952,13,87,67.5,0.0964285714285714,8.14347962870391,0.267445945514356,12.4496809173127,-0.00668703342002118,0.2975,29.75,1,95.613700031282,0.848424937392909,29.75,0,0,-2.9006900737683,-3.95350694656372,1.52846852802859
+8715,88443,449697.952,88543,449597.952,14,87,68.75,0.34375,20.3004950399806,0.696969696969697,11.1803398874989,-0.0754816593497526,0,0,0,NA,NA,0,NA,NA,-3.71872594952583,-4.34370279312134,0.708814928753375
+8716,88443,449597.952,88543,449497.952,15,87,54,0.135,14.2161385887675,0.490030538688257,11.25,0.00972865070027183,0.52,52,2,96.411937577353,0.940783807062877,48.75,1.10335324360774,0,-4.06321390469869,-4.44731330871582,0.486747537562435
+8717,88443,449497.952,88543,449397.952,16,87,91.5,0.915,38.2062214725348,0.885701275045537,NA,0.0672676342306659,0.68,68,3,96.5716505072632,0.816536203522505,60.75,0.54831667507396,0,-4.11872935295105,-4.34740543365479,0.260025832667975
+8718,88443,449397.952,88543,449297.952,17,87,88.75,0.8875,38.2737437925781,0.856338028169014,NA,0.0406817145930836,0.5125,51.25,1,97.9112600445307,0.913856921730937,51.25,0.560975609756098,0,-4.26031986872355,-4.33888721466064,0.130294892441378
+8719,88443,449297.952,88543,449197.952,18,87,90.25,0.9025,37.5760687669594,0.867036011080332,NA,-0.0900795768364333,0.01,1,1,52.6315789473684,1,1,0,0,-4.44371190667152,-4.5203742980957,0.111142747151961
+8720,88443,449197.952,88543,449097.952,19,87,89.75,0.8975,38.1846268103412,0.861652739090065,NA,-0.0141350722549396,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,0,0,-4.46771204471588,-4.51535606384277,0.0565784862725225
+8721,88443,449097.952,88543,448997.952,20,87,33.75,0.05625,8.08493049988811,0.368617724867725,14.849276591384,-0.0202742370112901,0,0,0,NA,NA,0,NA,NA,-4.41479563713074,-4.45488262176514,0.0741284434359955
+8722,88443,448997.952,88543,448897.952,21,87,34.25,0.3425,28.2563048639517,0.83698296836983,NA,0.0146442299914997,0.195,19.5,2,92.5142380341553,0.891979476100459,19.25,0.694129943847656,0,-4.17304600775242,-4.38859891891479,0.277266901241423
+8723,88443,448897.952,88543,448797.952,22,87,33.25,0.0665,12.9897976905574,0.469555555555556,13.3005630797458,-0.00733081360385768,0.085,8.5,3,74.9920618315879,0.765807962529274,4.5,1.73947457706227,0,-3.36974902947744,-3.92233681678772,0.588420802015997
+8724,88443,448797.952,88543,448697.952,23,87,27.25,0.2725,40.7363107503797,0.740061162079511,NA,0.00969425251249049,0.1325,13.25,3,82.1245756643769,0.82265573043671,6.25,3.28106336773566,0,-2.83647537231445,-3.0077953338623,0.171780962397557
+8725,88443,448697.952,88543,448597.952,24,87,1.25,0.00416666666666667,1.09006472543938,0.0925925925925926,38.2894432683505,-0.0651901479286607,0,0,0,NA,NA,0,NA,NA,-2.63634339968363,-2.69923043251038,0.10105517455797
+8726,88443,448597.952,88543,448497.952,25,87,11.5,0.02875,8.01993859218903,0.182010582010582,10,-0.0822592153123696,0.0525,5.25,2,76.3493279390028,0.604221635883905,4.25,7.78701936630976,0,-2.4836832433939,-2.5605161190033,0.0910651141975625
+8727,88443,448497.952,88543,448397.952,26,87,44,0.11,11.5544603875439,0.248759920634921,10.5901699437495,-0.0183633694542993,0.01,1,3,15.8692205350002,0.242424242424242,0.5,5.51776695251465,0,-2.40652265151342,-2.49700784683228,0.142694852738721
+8728,88443,448397.952,88543,448297.952,27,87,23.25,0.0465,9.99467029216718,0.306142167011732,13.4721359549996,-0.00628701277618802,0,0,0,NA,NA,0,NA,NA,-2.38470987975597,-2.47915649414062,0.124240518933514
+8729,88443,448297.952,88543,448197.952,28,87,14.25,0.0158333333333333,5.29383474567618,0.203375842264731,12.8032803733751,0.0319835426051213,0.3475,34.75,2,95.7470222626824,0.855190514978731,34.25,12.9993855318577,0,-2.36540238062541,-2.39929175376892,0.0667341236477
+8730,88443,448197.952,88543,448097.952,29,87,2.25,0.00375,1.13591008663263,0.0555555555555556,11.1803398874989,0.0170355511084108,0.1675,16.75,3,89.0889424442399,0.784399784399784,15,16.7153828179658,0,-2.22902481257915,-2.34330010414124,0.126214356065892
+8731,88443,448097.952,88543,447997.952,30,87,0,NA,NA,NA,NA,-0.000122764095694947,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,36.2679888407389,30.4138145446777,-2.03676484028498,-2.18215703964233,0.15341691705449
+8732,88443,447997.952,88543,447897.952,31,87,5.75,0.00821428571428571,2.8972868129185,0.163492063492063,13.1545770464277,0.000272179006024089,0.0125,1.25,2,42.1052631578947,0.79746835443038,1,17.3203277587891,0,-1.85698926448822,-1.98989450931549,0.131310101223243
+8733,88443,447897.952,88543,447797.952,32,87,0.25,0.0025,0,0,NA,0.0479211732801923,0.5125,51.25,1,97.9112600445307,0.930008748906387,51.25,57.0669236066865,15,-1.63342593610287,-1.78286814689636,0.17379184907144
+8734,88443,447797.952,88543,447697.952,33,87,0,NA,NA,NA,NA,0.0627300588737853,0.805,80.5,1,99.3970714465752,0.974696356275303,80.5,65.8985370019948,35,-1.48967984318733,-1.67187190055847,0.139533554601308
+8735,88443,447697.952,88543,447597.952,34,87,11.75,0.0167857142857143,6.46411599092716,0.205555555555556,14.7182509110457,-0.0147594143840251,0.3075,30.75,1,95.7718985824481,0.954671285878487,30.75,12.8196667616929,0,-1.48338271677494,-1.54847300052643,0.0831324373609343
+8736,88443,447597.952,88543,447497.952,35,87,3.75,0.0075,2.25982413568678,0.22,21.6095466064142,0.047879432275613,0.3625,36.25,3,95.1342957425203,0.940806511283759,35.5,12.3856858483676,0,-1.47059640288353,-1.50150859355927,0.0541660094648282
+8737,88443,447497.952,88543,447397.952,36,87,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.00589296725840541,0.355,35.5,2,95.0572145788465,0.940369707811568,34.5,34.2636816132237,0,-1.46045690774918,-1.55532383918762,0.083487253630821
+8738,88443,447397.952,88543,447297.952,37,87,0.75,0.00375,1.76776695296637,0.0416666666666667,15.8113883008419,-0.0267722700635204,0.3,30,2,94.0649086415783,0.934469200524246,29,21.8856450716654,0,-1.61562830209732,-1.8193690776825,0.238243587801967
+8739,88443,447297.952,88543,447197.952,38,87,0.75,0.0025,0,0,15.8113883008419,-0.0384577948089759,0.005,0.5,1,30.8308651382582,1,0.5,7.5,5,-1.98869164288044,-2.1483850479126,0.180874808868498
+8740,88443,447197.952,88543,447097.952,39,87,1.75,0.0025,0,0,14.4882316113153,-0.0189089247930133,0.09,9,1,87.719298245614,0.89010989010989,9,19.4325024286906,11.1803398132324,-2.19978209336599,-2.25391387939453,0.0868642528167529
+8741,88443,447097.952,88543,446997.952,40,87,0,NA,NA,NA,NA,0.0461296763848259,0.4825,48.25,1,97.686149992119,0.967613958383936,48.25,35.5702972313283,10,-2.28303131461143,-2.34406566619873,0.0754223719981041
+8742,88443,446997.952,88543,446897.952,41,87,4.75,0.0475,13.9632710021056,0.289473684210526,NA,0.0180886674624253,0.0425,4.25,1,79.7330921014386,0.91644908616188,4.25,2.89071386000689,0,-2.21764177083969,-2.37282109260559,0.268432467864552
+8743,88443,446897.952,88543,446797.952,42,87,22,0.22,27.956879953162,0.422348484848485,NA,0.0326628958594165,0.195,19.5,3,86.1704134313501,0.837969214150689,13.25,3.39057193658291,0,-2.18983275443316,-2.43843150138855,0.402222586088363
+8744,88443,446797.952,88543,446697.952,43,87,35.5,0.0394444444444444,9.13363863727711,0.426710801710802,11.2422599874999,-0.0143082917928768,0.1175,11.75,3,79.7626614399529,0.844192634560907,6.5,3.12917165553316,0,-2.38500265280406,-2.47060298919678,0.163628743617299
+8745,88443,446697.952,88543,446597.952,44,87,4.25,0.0053125,2.16343857610534,0.119791666666667,15.9208189766661,-0.0454947847154654,0.11,11,1,89.3941397590651,0.969632553902217,11,4.95542032068426,0,-2.50651200612386,-2.60128831863403,0.10644361172442
+8746,88443,446597.952,88543,446497.952,45,87,1.25,0.0025,0,0,36.699503384057,-0.0692910717311315,0.285,28.5,1,95.4043598780874,0.945685382578586,28.5,33.8161257860953,5,-2.77379956841469,-2.97057008743286,0.186516835058099
+8747,88443,446497.952,88543,446397.952,46,87,0,NA,NA,NA,NA,0.0335936224981378,0.3375,33.75,1,96.2035477281698,0.96932044792146,33.75,51.391567908393,20.6155281066895,-3.04200665156047,-3.11288571357727,0.123697956264899
+8748,88443,446397.952,88543,446297.952,47,87,0,NA,NA,NA,NA,0.0304401479315675,0.0525,5.25,3,67.3971134317628,0.769129287598945,2.75,81.0140558878581,67.2681198120117,-3.167415574193,-3.19987654685974,0.0422075710220662
+8749,88443,446297.952,88543,446197.952,48,87,0,NA,NA,NA,NA,0.0268090439144726,0,0,0,NA,NA,0,NA,NA,-3.17651561896006,-3.20451211929321,0.0514130743654945
+8750,88443,446197.952,88543,446097.952,49,87,0.25,0.0025,0,0,NA,-0.0292900812496555,0,0,0,NA,NA,0,NA,NA,-3.13795335590839,-3.20143437385559,0.0965058387144567
+8751,88443,446097.952,88543,445997.952,50,87,0,NA,NA,NA,NA,0.0958412471134216,0.765,76.5,1,99.2456636792102,0.970500387182418,76.5,44.0228572172277,10,-3.14206153154373,-3.20971274375916,0.0899547077470794
+8752,88443,445997.952,88543,445897.952,51,87,7.5,0.0125,3.87131921504593,0.208994708994709,25.1132863509822,0.0598081402643584,0.7525,75.25,1,99.1958903399554,0.871733205066538,75.25,17.574391856146,0,-3.04503107070923,-3.13195610046387,0.105359933902621
+8753,88443,445897.952,88543,445797.952,52,87,78.25,0.7825,34.3545886728914,0.915335463258786,NA,0.00850920241835411,0.375,37.5,3,90.7658602172089,0.854545454545454,18.5,0.635483169555664,0,-2.95859056711197,-3.03640532493591,0.10510658587865
+8754,88443,445797.952,88543,445697.952,53,87,4.5,0.045,12.4025797267522,0.537037037037037,NA,-0.0101253880759759,0.205,20.5,3,87.5669274567703,0.869876382563435,13.75,36.298336912946,0,-3.33523081243038,-3.77531957626343,0.395564115204708
+8755,88443,445697.952,88543,445597.952,54,87,0.5,0.005,2.5,0.166666666666667,NA,-0.0291145987711207,0.2425,24.25,2,92.9976302739402,0.878608550510223,23.25,48.6172572657005,7.07106781005859,-4.17687904834747,-4.50606489181519,0.479913107227196
+8756,88443,445597.952,88543,445497.952,55,87,0,NA,NA,NA,NA,-0.097055139131844,0,0,0,NA,NA,0,NA,NA,-4.62294741471608,-4.71423768997192,0.133708261252126
+8757,88443,445497.952,88543,445397.952,56,87,0,NA,NA,NA,NA,-0.0547234665000281,0,0,0,NA,NA,0,NA,NA,-4.59709629416466,-4.73570728302002,0.166056143164422
+8758,88443,445397.952,88543,445297.952,57,87,0.25,0.0025,0,0,NA,-0.203866986637004,0.0025,0.25,1,0,NA,0.25,5,5,-4.21219744284948,-4.48607635498047,0.293241785720361
+8759,88443,445297.952,88543,445197.952,58,87,0,NA,NA,NA,NA,-0.0197896985142143,0.35,35,2,92.670238879299,0.855769230769231,17.75,88.022147165026,10,-3.97660352289677,-4.12106943130493,0.144329539958765
+8760,88443,445197.952,88543,445097.952,59,87,0,NA,NA,NA,NA,-0.00404984638371388,0.295,29.5,2,94.9827530904737,0.92046132431895,29.25,84.4824398493363,53.8516464233398,-4.25712740421295,-4.4847526550293,0.341774595644866
+8761,88443,445097.952,88543,444997.952,60,87,17.5,0.025,5.73116934792847,0.181203007518797,11.1803398874989,-0.0721316261480433,0,0,0,NA,NA,0,NA,NA,-4.82171285152435,-5.0151891708374,0.255633118242529
+8762,88443,444997.952,88543,444897.952,61,87,14,0.035,6.91183713286071,0.217320261437909,10.5901699437495,-0.0129189046929241,0.17,17,3,85.5599388369111,0.817758428672674,10.75,36.2269518796135,5,-5.10609579086304,-5.17697191238403,0.115866142410166
+8763,88443,444897.952,88543,444797.952,62,87,0.75,0.00375,1.25,0.0833333333333333,15,-0.00315420433680174,0.0375,3.75,1,78.0843273950357,0.952774498229044,3.75,39.7828862508138,32.0156211853027,-5.17354062199593,-5.20804405212402,0.064096658487683
+8764,88443,444797.952,88543,444697.952,63,87,0.5,0.005,2.5,0.166666666666667,NA,-0.0175971159114852,0.0825,8.25,1,86.9391941099265,0.939448985770512,8.25,36.8153369787968,14.1421356201172,-5.14938402175903,-5.18810081481934,0.0778476958439433
+8765,88443,444697.952,88543,444597.952,64,87,4.75,0.00678571428571429,2.52032450266042,0.145833333333333,14.4365018220914,-0.0155987152145826,0.075,7.5,3,74.3280821157924,0.735245449531164,5,13.2362798690796,0,-4.95730277895927,-5.10210037231445,0.218218555809598
+8766,88443,444597.952,88543,444497.952,65,87,4.25,0.0085,2.00952776415389,0.197777777777778,33.8630340226552,-0.0514061155261606,0,0,0,NA,NA,0,NA,NA,-4.39639131228129,-4.66322946548462,0.456270162460428
+8767,88443,444497.952,88543,444397.952,66,87,4.25,0.0085,3.63448232016365,0.181944444444444,10.2360679774998,0.00309855246268853,0,0,0,NA,NA,0,NA,NA,-3.70964332421621,-3.97878551483154,0.402163280650076
+8768,88443,444397.952,88543,444297.952,67,87,4.5,0.0225,7.93855339608286,0.472222222222222,10,-0.104747280098404,0.055,5.5,1,82.8209772257252,0.968876439464675,5.5,6.45777580954812,0,-3.29148627817631,-3.44259881973267,0.160252104247371
+8769,88443,444297.952,88543,444197.952,68,87,0,NA,NA,NA,NA,-0.110927393646052,0,0,0,NA,NA,0,NA,NA,-3.21779414017995,-3.25581383705139,0.063560063720842
+8770,88443,444197.952,88543,444097.952,69,87,2,0.005,1.875,0.104166666666667,15.4056941504209,-0.00244334033113773,0.0525,5.25,1,82.2928536593692,0.901055408970976,5.25,41.2395484561012,20,-3.18990693986416,-3.24426341056824,0.0865795745899427
+8771,88443,444097.952,88543,443997.952,70,87,32.5,0.325,26.9475823277479,0.725641025641026,NA,0.00963106177740883,0.0525,5.25,1,82.2928536593692,1,5.25,43.795960017613,30.4138145446777,-3.04735749959946,-3.17348957061768,0.141561857552571
+8772,88443,443997.952,88543,443897.952,71,87,36.75,0.18375,12.7599365410031,0.414954337899543,54.0832691319598,0.11629139262117,0.6425,64.25,1,98.697022509981,0.9534768765538,64.25,18.1845603972557,0,-3.08312554657459,-3.25708341598511,0.243299730004046
+8773,88443,443897.952,88543,443797.952,72,87,11.75,0.1175,13.3736421859266,0.797872340425532,NA,0.040805839249515,0.4325,43.25,3,93.8318647296975,0.883998729509895,36,28.5895899293051,0,-3.60100362698237,-4,0.516636542711078
+8774,88443,443797.952,88543,443697.952,73,87,4,0.04,7.69944396026583,0.666666666666667,NA,0.0969692584418226,0.605,60.5,1,98.496585825966,0.932788170718046,60.5,58.5073334875186,30,-3.25464440882206,-3.89081788063049,0.382215945654119
+8775,88443,443697.952,88543,443597.952,74,87,0,NA,NA,NA,NA,0.00644448274691968,0.2075,20.75,1,93.7090252642431,0.957080624047726,20.75,102.765120173075,76.4852905273438,-2.93152505159378,-3.06131386756897,0.117589979933421
+8776,88443,443597.952,88543,443497.952,75,87,0.5,0.0025,0,0,18.0277563773199,-0.0412554880816151,0,0,0,NA,NA,0,NA,NA,-2.98381035029888,-3.1147084236145,0.148960476463216
+8777,88443,443497.952,88543,443397.952,76,87,73.75,0.7375,33.9719594245533,0.896610169491525,NA,0.0628163554153161,0.61,61,1,98.5243747403739,0.966261808367071,61,0.409836065573771,0,-2.99056875705719,-3.10068583488464,0.0982470423534772
+8778,88443,443397.952,88543,443297.952,77,87,81.25,0.40625,19.2448923990905,0.526057791537668,10,0.0574704168703647,0.5375,53.75,1,98.0842701108371,0.891891891891892,53.75,1.74846953458564,0,-2.94039183855057,-2.99981594085693,0.0647874685858234
+8779,88443,443297.952,88543,443197.952,78,87,35.5,0.08875,13.6388983473072,0.553194444444444,15.8852549156242,0.0734050087819924,0.8025,80.25,1,99.3879413454111,0.883026277311276,80.25,10.8116779802744,0,-2.91997717320919,-2.99248337745667,0.142166421474405
+8780,88443,443197.952,88543,443097.952,79,87,16.5,0.165,22.5948293280609,0.76010101010101,NA,-0.0707201873651002,0.0325,3.25,1,76.0684107249879,0.94257823715188,3.25,17.448688360361,11.1803398132324,-2.62996258338292,-3.23216104507446,0.644279641941272
+8781,88443,443097.952,88543,442997.952,80,87,1,0.0025,0,0,29.8188232959966,0.00998734621454787,0.0025,0.25,1,0,NA,0.25,28.2842712402344,28.2842712402344,-4.32185636460781,-5.06186008453369,1.10174706309712
+8782,88443,442997.952,88543,442897.952,81,87,2.75,0.0055,3.27270816242564,0.0833333333333333,11.1803398874989,-0.00664772777133294,0.05,5,1,81.7256002368443,0.932088285229202,5,20.7152752876282,5,-5.04095935821533,-5.20232391357422,0.217512508944863
+8783,88443,442897.952,88543,442797.952,82,87,0,NA,NA,NA,NA,0.0244373120501405,0.315,31.5,2,92.9496053740361,0.910751282950307,25.25,49.8011067556956,7.07106781005859,-5.13034382462502,-5.2214207649231,0.118643273141203
+8784,88443,442797.952,88543,442697.952,83,87,0,NA,NA,NA,NA,0.0520600423701944,0.3525,35.25,2,94.1689195161494,0.916195265032475,32,75.6015044137941,31.6227760314941,-5.18226114908854,-5.24066162109375,0.0712335680720315
+8785,88443,442697.952,88543,442597.952,84,87,0,NA,NA,NA,NA,0.0390426023283953,0.305,30.5,1,95.7330793639454,0.928383085386894,30.5,101.903738428335,67.0820388793945,-5.28196287155151,-5.32928276062012,0.0568017729034483
+8786,88443,442597.952,88543,442497.952,85,87,0,NA,NA,NA,NA,0.0340637584205615,0.1125,11.25,3,80.6849119481721,0.807264640474425,7,175.81964992947,141.509719848633,-5.30657736460368,-5.33382606506348,0.0511304357465143
+8787,88443,442497.952,88543,442397.952,86,87,0,NA,NA,NA,NA,-0.000910095641957014,0.0025,0.25,1,0,NA,0.25,138.924438476562,138.924438476562,-5.13277190923691,-5.25355577468872,0.131607294707823
+8788,88443,442397.952,88543,442297.952,87,87,0,NA,NA,NA,NA,-0.0779316732682673,0,0,0,NA,NA,0,NA,NA,-5.00003238519033,-5.04112577438354,0.0512853536255852
+8789,88443,442297.952,88543,442197.952,88,87,0.75,0.0025,0,0,51.007689958637,-0.170200211666524,0,0,0,NA,NA,0,NA,NA,-5.03031525015831,-5.10522603988647,0.0641389698380705
+8790,88443,442197.952,88543,442097.952,89,87,1.75,0.0035,1.4142135623731,0.0333333333333333,12.5498231854631,-0.0494474654014539,0.0725,7.25,1,85.7162801918893,0.839421918908069,7.25,27.0267276763916,15,-4.92994968096415,-5.08139991760254,0.162933157731995
+8791,88443,442097.952,88543,441997.952,90,87,0,NA,NA,NA,NA,-0.0108395832798851,0,0,0,NA,NA,0,NA,NA,-4.68966404596965,-4.85918045043945,0.169259244526639
+8792,88443,441997.952,88543,441897.952,91,87,0,NA,NA,NA,NA,-0.0955484124668874,0,0,0,NA,NA,0,NA,NA,-4.8164299428463,-5.01732349395752,0.188817655123442
+8793,88443,441897.952,88543,441797.952,92,87,0,NA,NA,NA,NA,-0.135477281939238,0,0,0,NA,NA,0,NA,NA,-5.03503247102102,-5.13949012756348,0.139688659413887
+8794,88443,441797.952,88543,441697.952,93,87,2.25,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.108448881749064,0,0,0,NA,NA,0,NA,NA,-5.10213559865952,-5.16854095458984,0.0911654823454334
+8795,88443,441697.952,88543,441597.952,94,87,1.5,0.003,0.707106781186548,0.0166666666666667,13.9193064834273,-0.0502760773299087,0,0,0,NA,NA,0,NA,NA,-5.07084763050079,-5.15617370605469,0.0923863815823053
+8796,88443,441597.952,88543,441497.952,95,87,3.25,0.00361111111111111,1.57134840263677,0.037037037037037,13.4628120507726,-0.0112980775398319,0.115,11.5,1,89.742951983695,0.927567724177894,11.5,55.4248089168383,44.7213592529297,-5.02767023444176,-5.09391736984253,0.0721189880029406
+8797,88443,441497.952,88543,441397.952,96,87,0,NA,NA,NA,NA,0.110000298933592,0.87,87,1,99.620460342959,0.976619125555296,87,81.8641618969797,43.0116271972656,-5.08660439650218,-5.11994743347168,0.0592742817901309
+8798,88443,441397.952,88543,441297.952,97,87,1.5,0.00375,1.76776695296637,0.0416666666666667,17.3991331042842,0.0792632855474949,0.7525,75.25,2,97.0715714665519,0.793347941496089,57.75,33.1079013165445,0,-5.16033151745796,-5.18732786178589,0.0324215999904646
+8799,88443,441297.952,88543,441197.952,98,87,1,0.00333333333333333,1.17851130197758,0.0277777777777778,11.1803398874989,0.0440927198497229,0.4725,47.25,2,95.844036611946,0.875423155044008,43,31.148425097188,0,-5.19614362716675,-5.25949144363403,0.0549788044532452
+8800,88443,441197.952,88543,441097.952,99,87,0,NA,NA,NA,NA,0.00481997291673906,0.005,0.5,1,30.8308651382582,1,0.5,90.897647857666,90.5538558959961,-5.23847308754921,-5.32165050506592,0.0816330931284996
+8801,88543,451097.952,88643,450997.952,0,88,0,NA,NA,NA,NA,-0.202998533081263,0,0,0,NA,NA,0,NA,NA,-3.26129566298591,-3.42397427558899,0.32627918647053
+8802,88543,450997.952,88643,450897.952,1,88,0,NA,NA,NA,NA,-0.135692008850892,0,0,0,NA,NA,0,NA,NA,-3.30662379662196,-3.604243516922,0.393523338301807
+8803,88543,450897.952,88643,450797.952,2,88,2.5,0.025,12.4840061829577,0.3,NA,-0.0474888752371771,0,0,0,NA,NA,0,NA,NA,-3.872012535731,-4.04972696304321,0.244861253748884
+8804,88543,450797.952,88643,450697.952,3,88,13.5,0.03375,13.6205709897224,0.150729646697389,14.9767619622864,-0.0286270968190365,0.0625,6.25,1,84.2105263157895,0.893333333333333,6.25,4.01289901733398,0,-4.00609302520752,-4.11809492111206,0.192415126054494
+8805,88543,450697.952,88643,450597.952,4,88,42.5,0.0425,6.3946018844585,0.208591194111232,10.5901699437495,0.0431537320309144,0.415,41.5,2,94.7230053962552,0.899446958270488,38,1.70282856814833,0,-4.03917243745592,-4.08135843276978,0.0914354777472928
+8806,88543,450597.952,88643,450497.952,5,88,75.5,0.3775,18.7422479148785,0.509166666666667,15,0.0794900599896209,0.9,90,1,99.7153023505818,0.853372434017595,90,1.60459743075901,0,-3.99449342489243,-4.08817672729492,0.147046834227398
+8807,88543,450497.952,88643,450397.952,6,88,39,0.0975,7.19281040757945,0.260690789473684,22.5,0.0663239394928678,0.8,80,1,99.3787684802637,0.925496688741722,80,12.9096999287605,0,-4.09428225623237,-4.15906763076782,0.116232180489849
+8808,88543,450397.952,88643,450297.952,7,88,21.75,0.054375,12.2529497925127,0.381827975774517,16.3471090380795,-0.0111828208365478,0.4125,41.25,2,94.8600591794944,0.837625979843225,32.75,11.2248477704597,0,-4.00621821482976,-4.05339622497559,0.0847797867213762
+8809,88543,450297.952,88643,450197.952,8,88,57.25,0.28625,21.9344438631281,0.720766303407715,14.142135623731,0.0981304633244872,0.92,92,1,99.7759364721822,0.802725968436155,92,4.18855033750119,0,-4.09833383560181,-4.23491954803467,0.152887129306721
+8810,88543,450197.952,88643,450097.952,9,88,13.25,0.06625,8.66798221173367,0.344551282051282,67.0820393249937,0.0492463194139737,0.4125,41.25,2,93.6446580209381,0.854423292273236,25.5,23.5681581786185,0,-4.24762757619222,-4.31140375137329,0.125971054962307
+8811,88543,450097.952,88643,449997.952,10,88,51.75,0.5175,36.5136303538798,0.79549114331723,NA,0.0171621406044233,0.245,24.5,2,90.2669264053861,0.872065021071644,15,1.80138447819924,0,-4.31988231341044,-4.81448364257812,0.473920944051575
+8812,88543,449997.952,88643,449897.952,11,88,80.5,0.4025,20.3721281669894,0.531522117729014,10,0.0797778814239428,0.67,67,1,98.8331871391418,0.752997168504127,67,1.20175771570917,0,-2.93628997272915,-3.93114471435547,1.5518037004329
+8813,88543,449897.952,88643,449797.952,12,88,99.5,0.995,38.1805529965998,0.931323283082077,NA,0.0860493116267025,0.98,98,1,99.9465655549884,1,98,0.0255102040816327,0,-3.03936012585958,-3.85157775878906,2.15923279180068
+8814,88543,449797.952,88643,449697.952,13,88,99.5,0.995,38.2502511634121,0.928810720268007,NA,0.0962801341991872,0.96,96,1,99.8914698623176,0.931318681318682,96,0.0260416666666667,0,-1.84671994712618,-2.9463517665863,1.61209249294423
+8815,88543,449697.952,88643,449597.952,14,88,82,0.273333333333333,11.9261382705379,0.298398091342877,10,0.0410513350650581,0.46,46,3,94.4816545416816,0.85838779956427,39.5,0.135869565217391,0,-2.65040145317713,-3.20284628868103,0.735437791088457
+8816,88543,449597.952,88643,449497.952,15,88,74.25,0.12375,9.11880504061032,0.266011503535965,10,-0.00467623173462925,0.1275,12.75,5,78.5937823628417,0.789217139281362,9,1.02100132960899,0,-3.19156368573507,-3.45649576187134,0.391800288598431
+8817,88543,449497.952,88643,449397.952,16,88,77.75,0.259166666666667,16.0970370172092,0.517349260523322,10,0.0110768986398716,0.13,13,3,82.0043135333147,0.754617073485729,7.25,1.05769230769231,0,-3.60706468423208,-3.90387058258057,0.391582021102535
+8818,88543,449397.952,88643,449297.952,17,88,93,0.93,38.2587897997409,0.888440860215054,NA,-0.00160806486755519,0.1125,11.25,3,80.4525075468901,0.77761304670126,7.25,0.111111111111111,0,-3.99844892819723,-4.27281808853149,0.400684444500721
+8819,88543,449297.952,88643,449197.952,18,88,93.75,0.9375,38.5527563937747,0.884444444444444,NA,-0.105929331260559,0.1025,10.25,1,88.8238145380415,0.854668765895604,10.25,0.24390243902439,0,-4.26727485656738,-4.46083068847656,0.363417559495364
+8820,88543,449197.952,88643,449097.952,19,88,100,1,38.2238923285138,0.934166666666667,NA,-0.132913506310433,0,0,0,NA,NA,0,NA,NA,-4.31389527850681,-4.48693323135376,0.288016038783894
+8821,88543,449097.952,88643,448997.952,20,88,76.25,0.254166666666667,11.4994110748521,0.305830583058306,19.4720641765459,-0.0148168091057596,0.0775,7.75,1,86.3573366287605,0.934959349593496,7.75,0,0,-4.19883897569444,-4.36558532714844,0.279768687009518
+8822,88543,448997.952,88643,448897.952,21,88,52,0.13,12.3042939741028,0.311761229314421,11.1803398874989,0.0379506578218934,0.375,37.5,3,92.9632857097888,0.819636363636364,27.5,3.76763326009115,0,-3.95505124330521,-4.20871925354004,0.328704017817349
+8823,88543,448897.952,88643,448797.952,22,88,65.75,0.164375,11.0992647169717,0.43839605734767,14.1257038496822,0.0334457365349226,0.3675,36.75,2,95.3133983645683,0.888328900774351,35,1.79524216684354,0,-3.47049122386509,-3.73188209533691,0.453767405948628
+8824,88543,448797.952,88643,448697.952,23,88,31.25,0.3125,25.9023276946748,0.848,NA,-0.0177024524058288,0.07,7,3,70.8710966708752,0.61768219832736,2.75,0,0,-2.80751913785934,-3.02488207817078,0.203939252169523
+8825,88543,448697.952,88643,448597.952,24,88,0.25,0.0025,0,0,NA,-0.0751586504391162,0,0,0,NA,NA,0,NA,NA,-2.61979370647007,-2.66778874397278,0.0841806295214431
+8826,88543,448597.952,88643,448497.952,25,88,0,NA,NA,NA,NA,-0.0891627534944564,0,0,0,NA,NA,0,NA,NA,-2.53264009952545,-2.55622863769531,0.0232731248899349
+8827,88543,448497.952,88643,448397.952,26,88,2.75,0.00916666666666667,3.79185793854291,0.277777777777778,12.7240226919466,-0.0321833220976987,0,0,0,NA,NA,0,NA,NA,-2.51787932713827,-2.51999998092651,0.0140790771208951
+8828,88543,448397.952,88643,448297.952,27,88,25.75,0.0321875,5.78143388726874,0.205316091954023,12.2855339059327,-0.00771318419068848,0.0525,5.25,4,64.869524726878,0.604221635883905,2.5,3.29248264857701,0,-2.48997002840042,-2.51952815055847,0.0422129708078066
+8829,88543,448297.952,88643,448197.952,28,88,19,0.0475,13.5914928134781,0.315723270440252,10,-0.0172978638959057,0.0475,4.75,2,71.4532291379023,0.818988143723414,3,8.99527429279528,0,-2.37132824791802,-2.4399082660675,0.111411283889804
+8830,88543,448197.952,88643,448097.952,29,88,3.75,0.0046875,1.62926129404683,0.078125,12.5778823734363,-0.00382482438149964,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,22.0606754847935,0,-2.12676966190338,-2.25746297836304,0.147515973568054
+8831,88543,448097.952,88643,447997.952,30,88,7.25,0.00725,2.10929135134387,0.161111111111111,11.9650532979004,0.0123834330291766,0.1075,10.75,5,73.9257181089943,0.70432617491441,5.75,5.90578385286553,0,-1.90918094582028,-1.95646786689758,0.0892509934385941
+8832,88543,447997.952,88643,447897.952,31,88,3.25,0.00325,0.75,0.05,16.4371892529,-0.0236742794629117,0.005,0.5,1,30.8308651382582,1,0.5,23.6803398132324,22.3606796264648,-1.84724293814765,-1.86453473567963,0.0407634236762807
+8833,88543,447897.952,88643,447797.952,32,88,0,NA,NA,NA,NA,0.0134448286340159,0.12,12,1,90.0697297581677,0.83370288248337,12,40.4836231867472,20,-1.86780590812365,-1.93760347366333,0.0984811551235001
+8834,88543,447797.952,88643,447697.952,33,88,2.5,0.00833333333333333,3.72810925302061,0.268518518518518,35.7621687845972,0.050410459919085,0.6,60,1,98.4684502698115,0.933184855233853,60,25.5720931132634,0,-1.85826179716322,-1.94554018974304,0.181557358982948
+8835,88543,447697.952,88643,447597.952,34,88,5.75,0.00575,1.78313846843992,0.0297619047619048,14.604866969255,0.0656007071297063,0.6875,68.75,1,98.9155506404681,0.968992248062015,68.75,16.2703514029763,0,-1.79067020614942,-1.92499673366547,0.216064361287989
+8836,88543,447597.952,88643,447497.952,35,88,12.5,0.0416666666666667,6.2546653062362,0.348631239935588,16.8718427093628,0.109131705313921,0.7525,75.25,1,99.1958903399554,0.885985071170256,75.25,15.5952502405921,0,-1.70199075010088,-1.86611640453339,0.246277088951006
+8837,88543,447497.952,88643,447397.952,36,88,3.25,0.0108333333333333,3.80277489943777,0.208333333333333,13.4628120507726,0.00554359952449886,0.345,34.5,3,90.4787497204247,0.836423118865867,16.5,28.7089764829995,0,-1.80261541406314,-1.9791396856308,0.269644964549897
+8838,88543,447397.952,88643,447297.952,37,88,1,0.00333333333333333,0.833333333333333,0.0555555555555556,37.4583825416477,-0.00986075742708636,0.2,20,3,89.1329670805633,0.832746478873239,17,21.3921972513199,0,-1.95232648319668,-2.09671449661255,0.224622652054407
+8839,88543,447297.952,88643,447197.952,38,88,1.5,0.005,2.27182017326525,0.111111111111111,11.1803398874989,-0.000444659854983911,0.215,21.5,2,92.4922047551194,0.875109279380542,20.75,31.9584009037461,10,-2.13254408041636,-2.18869137763977,0.0993146945458658
+8840,88543,447197.952,88643,447097.952,39,88,1.25,0.0025,0,0,18.034275447808,0.00676638987060869,0.205,20.5,1,93.6387867289635,0.982650184341791,20.5,32.4426819871112,14.1421356201172,-2.20126668612162,-2.21913123130798,0.041406446013487
+8841,88543,447097.952,88643,446997.952,40,88,0.75,0.00375,1.25,0.0833333333333333,15.8113883008419,0.0216621426813072,0.145,14.5,2,87.0061804261666,0.883040935672515,12.5,30.8603209462659,15.8113880157471,-2.07137482364972,-2.21520185470581,0.26479974868813
+8842,88543,446997.952,88643,446897.952,41,88,0,NA,NA,NA,NA,0.0190126345343742,0,0,0,NA,NA,0,NA,NA,-1.49513239330716,-2.01413226127625,0.675294636184503
+8843,88543,446897.952,88643,446797.952,42,88,0,NA,NA,NA,NA,0.0281268476392142,0.01,1,3,15.8692205350002,0.242424242424242,0.5,56.9776182174683,55,-1.19292603433132,-1.58774256706238,0.640310166203274
+8844,88543,446797.952,88643,446697.952,43,88,23,0.0766666666666667,22.1941977422751,0.420222634508349,10.3934466291663,-0.00747717400405236,0.185,18.5,2,89.5182944325029,0.924492685228882,17,32.9246925405554,5,-2.25463643338945,-2.47703313827515,0.45001341486511
+8845,88543,446697.952,88643,446597.952,44,88,7.5,0.009375,4.1755887836912,0.201388888888889,12.9205805069255,-0.104969459401909,0,0,0,NA,NA,0,NA,NA,-2.61897693739997,-2.80145812034607,0.218362384137005
+8846,88543,446597.952,88643,446497.952,45,88,3.25,0.00361111111111111,0.95899122662128,0.037037037037037,11.1803398874989,0.0813060809415765,0.615,61.5,1,98.5518240730175,0.977413890457369,61.5,30.3426011403402,0,-2.91599992911021,-3.0155770778656,0.143685014640733
+8847,88543,446497.952,88643,446397.952,46,88,0,NA,NA,NA,NA,-0.0195259577864954,0.115,11.5,1,89.742951983695,0.913081269013472,11.5,61.7270808012589,50,-3.07140196694268,-3.11681079864502,0.0644462032404479
+8848,88543,446397.952,88643,446297.952,47,88,0,NA,NA,NA,NA,-0.142724713890493,0,0,0,NA,NA,0,NA,NA,-3.15551511446635,-3.20461440086365,0.0701945293038629
+8849,88543,446297.952,88643,446197.952,48,88,0.25,0.0025,0,0,NA,-0.000843504318670227,0,0,0,NA,NA,0,NA,NA,-3.20360538694594,-3.21254014968872,0.0296275822889859
+8850,88543,446197.952,88643,446097.952,49,88,0,NA,NA,NA,NA,-0.0399194805387924,0.04,4,1,78.9473684210526,0.826388888888889,4,102.529283046722,90,-3.22541632254918,-3.2491991519928,0.0256354500976324
+8851,88543,446097.952,88643,445997.952,50,88,0,NA,NA,NA,NA,0.13908119957603,0.975,97.5,1,99.9329506995597,0.945945945945946,97.5,60.2943820170867,14.1421356201172,-3.1961051358117,-3.23996591567993,0.0772591554386952
+8852,88543,445997.952,88643,445897.952,51,88,18.25,0.0202777777777778,4.15610187617341,0.221340388007055,13.7623423701618,0.0615158496770891,0.8275,82.75,1,99.4773714744283,0.897971014492754,82.75,12.5014257344595,0,-2.97428599993388,-3.10771059989929,0.131810350947071
+8853,88543,445897.952,88643,445797.952,52,88,75.25,0.188125,11.4366561123417,0.351655251141552,10,0.0433688239855292,0.4225,42.25,3,93.3545838363284,0.766899766899767,31.75,3.48910245951816,0,-2.86252323786418,-2.89636182785034,0.0808842858860575
+8854,88543,445797.952,88643,445697.952,53,88,0,NA,NA,NA,NA,0.014427678695356,0.3775,37.75,2,94.5340167111659,0.924608180012469,35.25,27.4521877465659,5,-3.35519095261892,-3.76248335838318,0.487289608953132
+8855,88543,445697.952,88643,445597.952,54,88,0.5,0.005,2.5,0.166666666666667,NA,-0.0284578571158636,0.165,16.5,1,92.3061588442808,0.958344181202812,16.5,18.964348301743,0,-4.30947759416368,-4.55393648147583,0.425996121845478
+8856,88543,445597.952,88643,445497.952,55,88,0,NA,NA,NA,NA,-0.0859764408413321,0,0,0,NA,NA,0,NA,NA,-4.59697447882758,-4.63358402252197,0.0785011381116011
+8857,88543,445497.952,88643,445397.952,56,88,0,NA,NA,NA,NA,-0.0792487618071027,0,0,0,NA,NA,0,NA,NA,-4.44450092315674,-4.6052680015564,0.1887326354523
+8858,88543,445397.952,88643,445297.952,57,88,0,NA,NA,NA,NA,-0.263111303821206,0,0,0,NA,NA,0,NA,NA,-4.05352075894674,-4.18726921081543,0.20861053054407
+8859,88543,445297.952,88643,445197.952,58,88,0,NA,NA,NA,NA,0.0183574666304048,0.5875,58.75,1,98.3965465994375,0.917167115344792,58.75,87.6649992760192,25,-3.89077975352605,-3.95166158676147,0.117008574220008
+8860,88543,445197.952,88643,445097.952,59,88,0,NA,NA,NA,NA,0.00669363315064402,0.275,27.5,1,95.2267095868885,0.937619130133426,27.5,92.8878302834251,65.192024230957,-4.18479235967,-4.41172742843628,0.256251061490385
+8861,88543,445097.952,88643,444997.952,60,88,0.25,0.0025,0,0,NA,-0.00535702804816538,0.1875,18.75,2,92.3340728623784,0.86013986013986,18.5,56.7560936991374,35,-4.4943710565567,-4.93102121353149,0.357371202339444
+8862,88543,444997.952,88643,444897.952,61,88,7.5,0.01875,4.39010027656917,0.296367521367521,18.0901699437495,-0.0392420926126942,0.0925,9.25,1,87.9580013362782,0.963871200830962,9.25,31.675444989591,11.1803398132324,-4.97351921929253,-5.14566421508789,0.264749542715179
+8863,88543,444897.952,88643,444797.952,62,88,39.75,0.3975,32.6822606892158,0.712788259958071,NA,-0.0469424022294697,0.06,6,3,70.9135691163151,0.692049272116461,4,12.0319495201111,0,-5.11288475990295,-5.18467426300049,0.133511288888214
+8864,88543,444797.952,88643,444697.952,63,88,23.75,0.059375,6.53484885594891,0.159420289855072,20.6532429344029,-0.0372891012350783,0,0,0,NA,NA,0,NA,NA,-5.00605858696832,-5.13932514190674,0.203822893677257
+8865,88543,444697.952,88643,444597.952,64,88,9.25,0.0132142857142857,3.99378841717618,0.272222222222222,16.3346850468959,-0.0229276021284386,0.035,3.5,1,77.1303955881659,0.948186528497409,3.5,18.4885673522949,15,-4.6589374144872,-4.95636940002441,0.330453837827123
+8866,88543,444597.952,88643,444497.952,65,88,6.25,0.00625,2.01776147409487,0.135714285714286,16.6165308456954,-0.0376656316402386,0.1475,14.75,3,84.6162946745498,0.838997182450693,7.5,9.22677777177196,0,-4.15205279986064,-4.42046642303467,0.341897816788388
+8867,88543,444497.952,88643,444397.952,66,88,0.25,0.0025,0,0,NA,0.0722270511178067,0.47,47,1,97.5860530790582,0.859032747777055,47,44.2054140719962,5,-3.70617177751329,-3.89008975028992,0.283584567368049
+8868,88543,444397.952,88643,444297.952,67,88,0.5,0.005,2.5,0.166666666666667,NA,-0.111566768445336,0.0375,3.75,1,78.0843273950357,0.905548996458087,3.75,25.3180314381917,14.1421356201172,-3.41000521183014,-3.52763867378235,0.181679114472521
+8869,88543,444297.952,88643,444197.952,68,88,40.25,0.4025,25.2011318586661,0.893374741200828,NA,-0.0764737530122511,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,2.8451779683431,0,-3.34345685111152,-3.42952656745911,0.144643274835197
+8870,88543,444197.952,88643,444097.952,69,88,0,NA,NA,NA,NA,0.0100315671735552,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,49.6937739054362,41.2310562133789,-3.35490814844767,-3.4081609249115,0.108969709911728
+8871,88543,444097.952,88643,443997.952,70,88,17,0.085,11.8366489415317,0.445707070707071,40,0.0143097718405079,0.0075,0.75,1,44.4894453484604,1,0.75,5.6903559366862,5,-3.28504021962484,-3.35519814491272,0.115293131634977
+8872,88543,443997.952,88643,443897.952,71,88,2.5,0.00625,2.63299317569661,0.0833333333333333,11.1803398874989,0.179904804127291,1,100,1,100,NA,100,18.9536848545074,0,-3.25316902001699,-3.28605103492737,0.0611053106002539
+8873,88543,443897.952,88643,443797.952,72,88,3.5,0.00583333333333333,3.44650022198733,0.0972222222222222,11.1803398874989,0.169958524145186,1,100,1,100,NA,100,21.6307008314133,0,-3.25044393539429,-3.27732825279236,0.0474278727280915
+8874,88543,443797.952,88643,443697.952,73,88,0,NA,NA,NA,NA,0.191851015686989,1,100,1,100,NA,100,88.6338839912415,30,-3.09154397249222,-3.1932213306427,0.118686730041952
+8875,88543,443697.952,88643,443597.952,74,88,0,NA,NA,NA,NA,0.180075175357561,0.9675,96.75,1,99.9123308655226,1,96.75,98.5286791601846,45,-2.90247964859009,-2.96547770500183,0.086750294151848
+8876,88543,443597.952,88643,443497.952,75,88,0,NA,NA,NA,NA,0.0592669548941558,0.4025,40.25,1,96.9672588816937,0.949112292208527,40.25,66.859437409395,11.1803398132324,-2.81818523009618,-2.85661602020264,0.0572787182669997
+8877,88543,443497.952,88643,443397.952,76,88,62,0.62,31.7902321384481,0.894489247311828,NA,0.0457305955904485,0.505,50.5,1,97.8568679502074,0.935353535353535,50.5,0.099009900990099,0,-2.85279038217333,-2.91514444351196,0.0899293566680855
+8878,88543,443397.952,88643,443297.952,77,88,79.5,0.795,37.9008587086761,0.855345911949685,NA,0.0775506487383973,0.8575,85.75,1,99.5794816088838,0.729261425167858,85.75,0.703245491050075,0,-2.90534631411235,-2.93844032287598,0.0681014073066155
+8879,88543,443297.952,88643,443197.952,78,88,64.5,0.645,32.4985776803623,0.901808785529716,NA,-0.00496367869611277,0.1475,14.75,2,88.9066204785636,0.861997584957737,13.5,0.169491525423729,0,-2.73208399613698,-2.90487432479858,0.276267521563051
+8880,88543,443197.952,88643,443097.952,79,88,0.5,0.0025,0,0,11.1803398874989,-0.0142754482074861,0,0,0,NA,NA,0,NA,NA,-3.53547655211555,-4.80370378494263,1.56423502658903
+8881,88543,443097.952,88643,442997.952,80,88,2.25,0.0028125,0.441941738241592,0.0104166666666667,14.6040481324094,-0.0238918018655386,0,0,0,NA,NA,0,NA,NA,-5.09062906106313,-5.27381324768066,0.369495869591206
+8882,88543,442997.952,88643,442897.952,81,88,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.00762033690740282,0.1925,19.25,1,93.2673077410907,0.945365142961209,19.25,79.1140384426365,57.0087738037109,-5.27812936570909,-5.30210638046265,0.0762373166701109
+8883,88543,442897.952,88643,442797.952,82,88,0.75,0.0025,0,0,13.4628120507726,0.0785764224674858,0.7775,77.75,1,99.2942318197501,0.969321624419987,77.75,42.8880602355172,0,-5.27182471752167,-5.29365682601929,0.0404931393925942
+8884,88543,442797.952,88643,442697.952,83,88,3.5,0.0035,1.4142135623731,0.0333333333333333,11.1803398874989,-0.00276641665551324,0.035,3.5,2,65.5940978380291,0.740932642487047,2,36.9904684339251,14.1421356201172,-5.24999205271403,-5.25546503067017,0.0155438339252738
+8885,88543,442697.952,88643,442597.952,84,88,0,NA,NA,NA,NA,0.134200489663563,0.72,72,1,99.0604668316969,0.881391671059568,72,82.8617657687929,42.7200164794922,-5.2534853219986,-5.31049346923828,0.064523750426038
+8886,88543,442597.952,88643,442497.952,85,88,0,NA,NA,NA,NA,0.0397970107181754,0.185,18.5,1,93.0265643427559,0.962246342614441,18.5,68.091867962399,36.0555114746094,-5.21124511294895,-5.29767084121704,0.142376654560275
+8887,88543,442497.952,88643,442397.952,86,88,0,NA,NA,NA,NA,-0.0315629924387031,0,0,0,NA,NA,0,NA,NA,-5.08614273866018,-5.19605541229248,0.0948372152671267
+8888,88543,442397.952,88643,442297.952,87,88,0,NA,NA,NA,NA,-0.16769655122218,0,0,0,NA,NA,0,NA,NA,-5.11205387115479,-5.1544303894043,0.0701681066017402
+8889,88543,442297.952,88643,442197.952,88,88,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,-0.140590893126864,0,0,0,NA,NA,0,NA,NA,-5.03795925776164,-5.13330984115601,0.106714464726418
+8890,88543,442197.952,88643,442097.952,89,88,0.25,0.0025,0,0,NA,0.0242309026728617,0.0375,3.75,1,78.0843273950357,0.811097992916175,3.75,24.4733317057292,7.07106781005859,-4.79675743314955,-4.88263368606567,0.152891990169313
+8891,88543,442097.952,88643,441997.952,90,88,0.75,0.0025,0,0,40.9066729088626,-0.0283422366582272,0.035,3.5,2,68.1118943194047,0.740932642487047,3,9.54473073141915,0,-4.70352199342516,-4.85678291320801,0.159655931722703
+8892,88543,441997.952,88643,441897.952,91,88,0,NA,NA,NA,NA,-0.13024719373323,0,0,0,NA,NA,0,NA,NA,-4.94814475377401,-5.04028511047363,0.130684750086689
+8893,88543,441897.952,88643,441797.952,92,88,0.75,0.0025,0,0,18.0277563773199,-0.10727978813462,0,0,0,NA,NA,0,NA,NA,-5.09760681788127,-5.13431024551392,0.0522720089500069
+8894,88543,441797.952,88643,441697.952,93,88,0,NA,NA,NA,NA,-0.125304055344313,0,0,0,NA,NA,0,NA,NA,-5.14575099945068,-5.16973209381104,0.0271750743246624
+8895,88543,441697.952,88643,441597.952,94,88,0,NA,NA,NA,NA,-0.0978793368214974,0,0,0,NA,NA,0,NA,NA,-5.14540121290419,-5.15976238250732,0.0180605961729742
+8896,88543,441597.952,88643,441497.952,95,88,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.10195450687941,0.7575,75.75,1,99.2159474776692,0.9638904436059,75.75,72.7138499269391,39.0512504577637,-5.1271953980128,-5.14715099334717,0.0338190308381588
+8897,88543,441497.952,88643,441397.952,96,88,0.25,0.0025,0,0,NA,0.0689987828837184,0.585,58.5,3,95.3730481970762,0.845606683025006,37.5,64.8841903474596,0,-5.12125327852037,-5.1380181312561,0.0186692066154523
+8898,88543,441397.952,88643,441297.952,97,88,1.75,0.00291666666666667,0.58925565098879,0.0138888888888889,14.6040481324094,0.0691009076207411,0.76,76,2,98.2752810079352,0.912739965095986,73.5,21.7442887519535,0,-5.13652376333873,-5.17460536956787,0.0353291244145775
+8899,88543,441297.952,88643,441197.952,98,88,1,0.00333333333333333,1.17851130197758,0.0277777777777778,11.1803398874989,-0.00416388777546672,0.0875,8.75,2,83.656947378347,0.848842701936703,8,59.2794932774135,43.0116271972656,-5.23205688264635,-5.2722225189209,0.0650645853971132
+8900,88543,441197.952,88643,441097.952,99,88,0.789473684210526,0.0075,4.31546051979576,0.166666666666667,NA,0.0582684078748571,0.3925,39.25,3,94.8630145096721,0.897119341563786,37.25,39.026164060945,5,-5.31609348456065,-5.34149217605591,0.0446712905353569
+8901,88643,451097.952,88743,450997.952,0,89,13.5,0.0192857142857143,5.41229244964838,0.278713151927438,12.8880653025657,-0.0613587931684015,0.025,2.5,2,58.8854677513915,0.763313609467456,1.5,6.44317474365234,0,-3.58902923266093,-3.66678309440613,0.130780227909362
+8902,88643,450997.952,88743,450897.952,1,89,1.75,0.00583333333333333,2.18169499062491,0.166666666666667,16.0092521257733,-0.0596693484621937,0,0,0,NA,NA,0,NA,NA,-3.71832939982414,-3.84886837005615,0.173115482310516
+8903,88643,450897.952,88743,450797.952,2,89,0,NA,NA,NA,NA,-0.128686644369081,0,0,0,NA,NA,0,NA,NA,-3.818024178346,-3.94128060340881,0.109422861483882
+8904,88643,450797.952,88743,450697.952,3,89,0,NA,NA,NA,NA,-0.124307452501234,0,0,0,NA,NA,0,NA,NA,-3.94186124205589,-4.12537145614624,0.162567499655744
+8905,88643,450697.952,88743,450597.952,4,89,0.5,0.005,2.5,0.166666666666667,NA,-0.0606221177260159,0,0,0,NA,NA,0,NA,NA,-4.16656215985616,-4.36302328109741,0.18482402927122
+8906,88643,450597.952,88743,450497.952,5,89,9.5,0.02375,9.15342606047499,0.173076923076923,12.4883809811432,-0.0236927311184263,0.0325,3.25,1,76.0684107249879,0.885156474303761,3.25,1.53846153846154,0,-4.37475681304932,-4.5835223197937,0.219557506310204
+8907,88643,450497.952,88743,450397.952,6,89,24.5,0.1225,26.8730056420661,0.478885135135135,14.142135623731,0.0561838510936286,0.53,53,2,95.6117965927333,0.848795766281456,38,8.2358401046609,0,-4.40987996260325,-4.59414768218994,0.221265818351621
+8908,88643,450397.952,88743,450297.952,7,89,31.5,0.105,19.1723947338988,0.565857753357753,21.2132034355964,0.0925916206464171,0.955,95.5,1,99.8774262095089,0.508901166359729,95.5,8.879617855811,0,-4.23038291931152,-4.47629737854004,0.217622058812174
+8909,88643,450297.952,88743,450197.952,8,89,25.25,0.063125,11.4453918844298,0.49031007751938,32.5,0.0937105418562715,0.86,86,1,99.5877487787664,0.76923076923077,86,9.80515350851902,0,-4.11018172899882,-4.23135328292847,0.118279136706092
+8910,88643,450197.952,88743,450097.952,9,89,56,0.28,16.8921314692871,0.39424514200299,14.142135623731,0.0232494661116698,0.255,25.5,5,83.8393374646286,0.669930685443943,11,1.64111316905302,0,-4.22778654098511,-4.36061859130859,0.217147586059388
+8911,88643,450097.952,88743,449997.952,10,89,47.5,0.2375,13.8571855384122,0.44047619047619,49.4974746830583,0.0320797796934494,0.3575,35.75,2,96.1070648836625,0.833665013217691,35.5,0.27972027972028,0,-4.69690698385239,-5,0.380243323319572
+8912,88643,449997.952,88743,449897.952,11,89,74.5,0.3725,24.6519981255998,0.804062622489682,11.1803398874989,0.0797249206667766,0.725,72.5,1,99.081892426161,0.706422018348624,72.5,1.09272764797868,0,-4.2167461514473,-4.5914740562439,0.715134599258826
+8913,88643,449897.952,88743,449797.952,12,89,92.75,0.9275,38.0175038486575,0.893980233602875,NA,0.0953174269385636,0.9575,95.75,1,99.8844617862358,0.740722735375142,95.75,0.300261096605744,0,-4.00557765364647,-4.44361543655396,0.605642350056508
+8914,88643,449797.952,88743,449697.952,13,89,86.5,0.4325,21.8066405079274,0.739373989373989,10,0.0842416056781076,0.945,94.5,1,99.849005264488,0.721059972105998,94.5,0.672333692116712,0,-3.2010186513265,-3.44178223609924,0.45066388383925
+8915,88643,449697.952,88743,449597.952,14,89,69.5,0.231666666666667,20.5201201237071,0.67282720508527,10,0.0841450669325423,0.875,87.5,1,99.6366054334226,0.734138972809668,87.5,1.61530096871512,0,-2.53897587954998,-2.87710046768188,0.552333892968225
+8916,88643,449597.952,88743,449497.952,15,89,90,0.9,37.774209493678,0.874537037037037,NA,0.0657545280270278,0.8325,83.25,1,99.4947723752506,0.781695655268965,83.25,0.583009416276628,0,-2.76871639490128,-2.99177598953247,0.248463852718741
+8917,88643,449497.952,88743,449397.952,16,89,91.5,0.4575,21.2885529669257,0.555133517495396,10,0.034680778629845,0.555,55.5,1,98.1983573135366,0.940292026271508,55.5,0.247747747747748,0,-2.94018194079399,-3.38841152191162,0.769888449916707
+8918,88643,449397.952,88743,449297.952,17,89,74.75,0.0830555555555555,7.04671725541172,0.241821188855087,10,-0.0438571312315617,0.0225,2.25,1,70.1754385964912,0.658994032395567,2.25,1.11111111111111,0,-3.20792335271835,-3.7132613658905,0.539501267617298
+8919,88643,449297.952,88743,449197.952,18,89,76.5,0.3825,28.185644497707,0.791214101620029,10,-0.0269849003330455,0.145,14.5,5,79.9532976115054,0.824561403508772,6.75,0,0,-3.41608376801014,-3.81585836410522,0.368026748894042
+8920,88643,449197.952,88743,449097.952,19,89,85.25,0.284166666666667,16.2676540395581,0.549177631578947,10,-0.0428726272175845,0.12,12,3,79.3044810924541,0.805986696230599,5.5,0.3125,0,-3.49900937080383,-3.91907334327698,0.396699912135076
+8921,88643,449097.952,88743,448997.952,20,89,93,0.465,18.6148809376397,0.456424079065589,15.8113883008419,0.000533976563456235,0.425,42.5,1,97.1898422226593,0.872204472843451,42.5,0.38948943194221,0,-3.45020339886347,-3.89542293548584,0.416196210602095
+8922,88643,448997.952,88743,448897.952,21,89,26,0.052,9.41581498915546,0.450557413600892,18.8763987067853,-5.42989824316464e-05,0.055,5.5,5,58.249495064114,0.626517273576097,1.75,2.74193070151589,0,-3.28667286038399,-3.68991804122925,0.343965970185349
+8923,88643,448897.952,88743,448797.952,22,89,46,0.46,30.3983367387469,0.803442028985507,NA,0.031460669189164,0.2775,27.75,4,88.146987642876,0.72318339100346,15.75,1.7725021431038,0,-3.10412869850794,-3.36324787139893,0.256548510377948
+8924,88643,448797.952,88743,448697.952,23,89,1,0.01,4.34942231976673,0.291666666666667,NA,-0.0249149055889939,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-2.79222866892815,-2.99813079833984,0.172006244345666
+8925,88643,448697.952,88743,448597.952,24,89,0.25,0.0025,0,0,NA,-0.119298258009367,0,0,0,NA,NA,0,NA,NA,-2.58540534973145,-2.65878963470459,0.076849083379204
+8926,88643,448597.952,88743,448497.952,25,89,0,NA,NA,NA,NA,-0.0356728107295567,0,0,0,NA,NA,0,NA,NA,-2.52776294946671,-2.53852844238281,0.0115606192928573
+8927,88643,448497.952,88743,448397.952,26,89,0,NA,NA,NA,NA,-0.0366309774067486,0,0,0,NA,NA,0,NA,NA,-2.51589238643646,-2.51999998092651,0.00903487282849985
+8928,88643,448397.952,88743,448297.952,27,89,0,NA,NA,NA,NA,-0.0233367039730729,0.0525,5.25,3,70.9382151029748,0.83509234828496,4,102.75227355957,93.4077072143555,-2.48828607797623,-2.51413154602051,0.0335875702081786
+8929,88643,448297.952,88743,448197.952,28,89,4,0.0133333333333333,4.54529231729438,0.243686868686869,10,-0.00220026180969398,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,97.7505175272624,87.3212432861328,-2.40193581581116,-2.44869780540466,0.0803603680493998
+8930,88643,448197.952,88743,448097.952,29,89,20.25,0.0405,10.8912650167073,0.358335847159377,12.4339784002102,0.0110675157807867,0.2075,20.75,3,87.5175172605623,0.785403120238632,11.25,5.99646000689771,0,-2.20391762256622,-2.32169485092163,0.135411214409596
+8931,88643,448097.952,88743,447997.952,30,89,12.25,0.00942307692307692,2.97875243886128,0.171023421023421,15.5263870598143,0.0190883786492304,0.1925,19.25,3,85.3340170279954,0.836095428883628,9.5,6.06870378766741,0,-2.01045561830203,-2.11379647254944,0.109492263987776
+8932,88643,447997.952,88743,447897.952,31,89,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,30.0831260352015,0.00838676415096415,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,13.0937824249268,5,-1.9492357869943,-2.01799583435059,0.0766782864516669
+8933,88643,447897.952,88743,447797.952,32,89,1.25,0.00625,3.43443361963304,0.152777777777778,60.4152298679729,0.0133391991363169,0.1525,15.25,3,84.2105263157895,0.710580508710414,9,37.6106296914523,15,-1.96970840543509,-2.01001286506653,0.0499683898073886
+8934,88643,447797.952,88743,447697.952,33,89,7.5,0.0107142857142857,3.41614788961188,0.137113617376775,11.8290166413118,0.00324267754138418,0.1675,16.75,3,88.4111662693979,0.897333230666564,15.5,34.9267173026925,0,-1.99206380049388,-2.00191807746887,0.0226505637573956
+8935,88643,447697.952,88743,447597.952,34,89,1.25,0.0025,0,0,13.9589689355047,-0.0348950691718539,0.105,10.5,3,80.1599435544085,0.763946809347706,6.5,24.1847110021682,5,-1.9797123298049,-2,0.0394905495740912
+8936,88643,447597.952,88743,447497.952,35,89,73.25,0.36625,20.0441706853372,0.660714285714286,11.1803398874989,0.203556764693931,0.95,95,1,99.8632718311308,0.833564493758669,95,2.80624633086355,0,-1.97197243571281,-2.01835680007935,0.0682722524531344
+8937,88643,447497.952,88743,447397.952,36,89,51.5,0.12875,9.50339582391813,0.347439236111111,10.5901699437495,0.0649565510694811,0.61,61,1,98.5243747403739,0.971884840305893,61,1.02280096147881,0,-2.05292785167694,-2.11987662315369,0.084471778651131
+8938,88643,447397.952,88743,447297.952,37,89,2.5,0.005,1.06297349820361,0.0833333333333333,27.5672793115878,0.044249049324244,0.2575,25.75,4,90.1790666998468,0.861679861679862,22.75,20.4405429617873,0,-2.13921455542246,-2.16794157028198,0.0542337847257634
+8939,88643,447297.952,88743,447197.952,38,89,6,0.02,3.85173977131101,0.285714285714286,31.6666666666667,0.00963699886866379,0.24,24,1,94.5197818298983,0.977050183598531,24,20.9221895933151,0,-2.17645548284054,-2.19364047050476,0.0216142419390886
+8940,88643,447197.952,88743,447097.952,39,89,5.25,0.0065625,1.92093904308355,0.0954861111111111,12.1181565141142,0.0285513817281571,0.2925,29.25,2,95.0128691280723,0.886659110607374,29,19.8887825501271,0,-2.16122249762217,-2.19074749946594,0.0756132481437432
+8941,88643,447097.952,88743,446997.952,40,89,1.5,0.00375,1.07886512994894,0.0416666666666667,10.5901699437495,0.0156125888219776,0.015,1.5,3,37.593984962406,0.419869470630892,1,9.51509189605713,0,-1.73353311046958,-2.08364605903625,0.485322793180519
+8942,88643,446997.952,88743,446897.952,41,89,0,NA,NA,NA,NA,0.0160768491584895,0,0,0,NA,NA,0,NA,NA,-0.879509568214417,-1.40788948535919,0.408360096096209
+8943,88643,446897.952,88743,446797.952,42,89,0,NA,NA,NA,NA,0.0292514188484347,0.11,11,5,79.7655188221595,0.681141815973277,8.25,79.5384070656516,65,-1.37501526623964,-1.97664105892181,0.670458699705307
+8944,88643,446797.952,88743,446697.952,43,89,17.5,0.0583333333333333,13.7230763384099,0.366423001949318,10,0.0160881856135529,0.3475,34.75,1,96.3348533717898,0.921561528946813,34.75,42.8324143389146,0,-2.41892210642497,-2.60664200782776,0.407485910192291
+8945,88643,446697.952,88743,446597.952,44,89,12.5,0.0416666666666667,8.96857666115725,0.179398148148148,14.6985531827679,-0.141846894783666,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,59.3707695007324,50,-2.79020194212596,-2.90981483459473,0.192365879207564
+8946,88643,446597.952,88743,446497.952,45,89,0,NA,NA,NA,NA,0.12960642724327,0.6575,65.75,1,98.7723535160189,0.970388356701855,65.75,61.7260122117887,20,-2.97723530232906,-3.01714849472046,0.0605386951790527
+8947,88643,446497.952,88743,446397.952,46,89,0,NA,NA,NA,NA,-0.110072388794215,0,0,0,NA,NA,0,NA,NA,-2.98212411006292,-3.0321946144104,0.0717104786749371
+8948,88643,446397.952,88743,446297.952,47,89,0,NA,NA,NA,NA,-0.128879377900303,0,0,0,NA,NA,0,NA,NA,-2.97849816083908,-3.09938311576843,0.110386628070544
+8949,88643,446297.952,88743,446197.952,48,89,0,NA,NA,NA,NA,0.0259661892041481,0.195,19.5,1,93.3444522721621,0.927986317400306,19.5,126.459746531951,105,-3.10728418827057,-3.19356822967529,0.11225985304073
+8950,88643,446197.952,88743,446097.952,49,89,0,NA,NA,NA,NA,-0.00660350483500224,0.34,34,3,93.8516980236157,0.908357771260997,31.5,92.8438169254976,70,-3.21393094956875,-3.25123739242554,0.0553336077740333
+8951,88643,446097.952,88743,445997.952,50,89,1.5,0.003,0.5,0.0333333333333333,12.1065495701675,0.126635496430099,1,100,1,100,NA,100,36.3102118110657,0,-3.14904880523682,-3.22910141944885,0.103086130091643
+8952,88643,445997.952,88743,445897.952,51,89,17.5,0.021875,3.5703745139167,0.133879781420765,18.5739670038968,0.0272741240089454,0.35,35,3,91.5063876144674,0.867788461538462,29.25,15.9631111826215,0,-2.9912866204977,-3.22484397888184,0.190366593051489
+8953,88643,445897.952,88743,445797.952,52,89,26.5,0.0378571428571429,5.15394724988251,0.252600815100815,12.6214616983643,0.0413536802348972,0.505,50.5,2,95.4797431149322,0.795286195286195,38,8.6369312021992,0,-3.1364352107048,-3.47580504417419,0.235989510812555
+8954,88643,445797.952,88743,445697.952,53,89,0.25,0.0025,0,0,NA,-0.00393385963470791,0.2775,27.75,2,92.1176309480506,0.820069204152249,21,64.0874876073889,20,-3.57080475986004,-4.10662651062012,0.468847625462333
+8955,88643,445697.952,88743,445597.952,54,89,0.5,0.005,2.5,0.166666666666667,NA,-0.0029557203173681,0,0,0,NA,NA,0,NA,NA,-4.29758369922638,-4.43422365188599,0.274265582550731
+8956,88643,445597.952,88743,445497.952,55,89,6.5,0.01625,6.24869029581392,0.288888888888889,10.5901699437495,-0.0270435605127204,0.0025,0.25,1,0,NA,0.25,10,10,-4.51988081137339,-4.561194896698,0.0807651846346017
+8957,88643,445497.952,88743,445397.952,56,89,7,0.014,5.15405389112068,0.281111111111111,18.4311048905043,-0.0530537774812763,0,0,0,NA,NA,0,NA,NA,-4.49696019291878,-4.58466768264771,0.128008809399362
+8958,88643,445397.952,88743,445297.952,57,89,8.5,0.02125,7.35084365909305,0.294321895424837,27.9507293426211,-0.0557514025177807,0,0,0,NA,NA,0,NA,NA,-4.3639714717865,-4.57068634033203,0.262247057684593
+8959,88643,445297.952,88743,445197.952,58,89,1,0.005,1.66666666666667,0.111111111111111,75.1664818918645,-0.0271393409211305,0.0025,0.25,1,0,NA,0.25,57.0087738037109,57.0087738037109,-4.29952591657639,-4.60637283325195,0.322826004455901
+8960,88643,445197.952,88743,445097.952,59,89,0.75,0.0025,0,0,23.9780217810588,-0.0964824855748884,0,0,0,NA,NA,0,NA,NA,-4.42241581281026,-4.68954563140869,0.282745179461797
+8961,88643,445097.952,88743,444997.952,60,89,0.25,0.0025,0,0,NA,-0.100152834104374,0,0,0,NA,NA,0,NA,NA,-4.5695064663887,-4.79315662384033,0.236373998257067
+8962,88643,444997.952,88743,444897.952,61,89,0,NA,NA,NA,NA,-0.0625286233949009,0,0,0,NA,NA,0,NA,NA,-4.77791289488475,-4.88714742660522,0.175266223670053
+8963,88643,444897.952,88743,444797.952,62,89,0.5,0.0025,0,0,99.6242942258564,0.0239423388365321,0.205,20.5,1,93.6387867289635,0.982650184341791,20.5,34.117820669965,7.07106781005859,-4.88386434316635,-4.97220516204834,0.102431710532964
+8964,88643,444797.952,88743,444697.952,63,89,4.25,0.0085,2.8332419234671,0.17,30.9835884555835,-0.0465965894305191,0.065,6.5,2,79.4313400765707,0.843485065866701,5.75,26.2787470450768,7.07106781005859,-4.75908319155375,-4.89962768554688,0.147972585522556
+8965,88643,444697.952,88743,444597.952,64,89,11,0.01,3.29262849523835,0.193181818181818,13.8244024361513,-0.0287593985036619,0.0275,2.75,3,57.8638396267183,0.588688946015424,2,6.09736980091442,0,-4.53171437978745,-4.66888093948364,0.157418376649793
+8966,88643,444597.952,88743,444497.952,65,89,7.5,0.00681818181818182,1.66818072943219,0.0868983957219251,14.2933046284338,-0.0293000489857332,0.03,3,2,62.4651075277459,0.757428744693754,1.75,8.31559054056803,0,-4.28776081403096,-4.52026605606079,0.27907866551165
+8967,88643,444497.952,88743,444397.952,66,89,0,NA,NA,NA,NA,0.0286517255780927,0.3025,30.25,2,93.343210250258,0.837080482241773,24.75,65.3942330415584,25.4950981140137,-4.07550777991613,-4.41010713577271,0.397430473826706
+8968,88643,444397.952,88743,444297.952,67,89,0.25,0.0025,0,0,NA,0.0076609166059643,0.2125,21.25,3,90.5052434731209,0.924314096499527,19.5,49.7953720092773,25,-3.93562687933445,-4.35682392120361,0.464407618244653
+8969,88643,444297.952,88743,444197.952,68,89,15,0.0375,5.75366476226633,0.306012250161186,12.7028470752105,-0.0165424189480836,0.09,9,1,87.719298245614,0.816849816849817,9,1.92865965101454,0,-3.82969665527344,-4.29406404495239,0.460384588326624
+8970,88643,444197.952,88743,444097.952,69,89,5.25,0.0075,3.04877052299683,0.102380952380952,10.5058599517853,-0.00446377538810339,0.055,5.5,2,79.4049244770798,0.875505757858699,5.25,31.0499822443182,18.0277557373047,-3.59703075885773,-4.01334428787231,0.327077185953624
+8971,88643,444097.952,88743,443997.952,70,89,21.75,0.03625,6.75877217967078,0.294053370140327,11.1803398874989,0.0206014334234351,0.12,12,1,90.0697297581677,0.916851441241685,12,5.68308019638062,0,-3.40640489260356,-3.55724859237671,0.161331049212651
+8972,88643,443997.952,88743,443897.952,71,89,9.75,0.0325,11.7161311420435,0.283154121863799,30.6102498318818,0.166887321233226,0.945,94.5,1,99.849005264488,0.974641815646001,94.5,21.5842078425897,0,-3.32090596854687,-3.39527177810669,0.0539140934554301
+8973,88643,443897.952,88743,443797.952,72,89,1,0.01,5.75693909432999,0.166666666666667,NA,0.187501799762249,1,100,1,100,NA,100,55.2205980348587,0,-3.24554693698883,-3.30709624290466,0.0694780202088654
+8974,88643,443797.952,88743,443697.952,73,89,0,NA,NA,NA,NA,0.199054402932525,1,100,1,100,NA,100,60.1514952850342,5,-3.10329754650593,-3.17862248420715,0.0889015087617372
+8975,88643,443697.952,88743,443597.952,74,89,0.25,0.0025,0,0,NA,0.211858546528965,1,100,1,100,NA,100,49.4030959892273,0,-2.94034403562546,-2.99138069152832,0.0985450747451922
+8976,88643,443597.952,88743,443497.952,75,89,2.5,0.00357142857142857,1.51522881682832,0.0357142857142857,11.1803398874989,0.127885136105542,0.7725,77.25,1,99.2749460632782,0.916921566406102,77.25,22.6512524009137,0,-2.75795936584473,-2.85036468505859,0.116916989767309
+8977,88643,443497.952,88743,443397.952,76,89,19,0.0633333333333333,10.1463197152654,0.608641975308642,13.3333333333333,0.0127147426556212,0.1975,19.75,2,90.154261523801,0.884290164663996,16.75,1.2549637420268,0,-2.57007731993993,-2.76470565795898,0.313567565667147
+8978,88643,443397.952,88743,443297.952,77,89,78.75,0.7875,36.5988225764031,0.854497354497355,NA,0.0339471967857753,0.3925,39.25,3,92.5182920076395,0.805669867398263,27.25,0.676517219300483,0,-2.62388577063878,-2.84432148933411,0.374314979724642
+8979,88643,443297.952,88743,443197.952,78,89,8.75,0.04375,6.86550296134292,0.345588235294118,10,0.00928199791114821,0.08,8,1,86.6550847056172,0.895484949832776,8,23.0032742619514,10,-2.89643157273531,-4.60767412185669,1.1588806823102
+8980,88643,443197.952,88743,443097.952,79,89,0.5,0.0025,0,0,18.0277563773199,-0.0140713344080541,0,0,0,NA,NA,0,NA,NA,-4.80277466773987,-5.05972290039062,0.730594048329288
+8981,88643,443097.952,88743,442997.952,80,89,1.5,0.00375,1.76776695296637,0.0416666666666667,17.3857989066361,-0.0239119941833633,0.0175,1.75,1,65.4774238937655,0.872773536895674,1.75,63.1335481916155,55.2268028259277,-5.19146972894669,-5.26134300231934,0.0919245856295443
+8982,88643,442997.952,88743,442897.952,81,89,1,0.005,3.53553390593274,0.0833333333333333,11.1803398874989,0.0821431635575573,0.81,81,1,99.4152046783626,0.965600275197799,81,47.454072540189,0,-5.22587398687998,-5.2814154624939,0.0436779767514048
+8983,88643,442897.952,88743,442797.952,82,89,3.5,0.00291666666666667,0.58925565098879,0.0138888888888889,14.6040481324094,0.0201993785122613,0.155,15.5,1,91.8947234736642,0.934253780407627,15.5,31.5073300023233,5,-5.22249859571457,-5.25630617141724,0.0368999260036283
+8984,88643,442797.952,88743,442697.952,83,89,2.5,0.005,2.56560138123909,0.0666666666666667,11.1803398874989,0.0434769605942711,0.3625,36.25,1,96.5215284364484,0.958564557898631,36.25,61.253353171513,40.3112869262695,-5.24597152074178,-5.26689434051514,0.0230214075392857
+8985,88643,442697.952,88743,442597.952,84,89,0,NA,NA,NA,NA,0.113380415978609,0.915,91.5,1,99.7609644895861,0.983023512435277,91.5,65.0338570120556,14.1421356201172,-5.17302823066711,-5.25541162490845,0.100128065561409
+8986,88643,442597.952,88743,442497.952,85,89,15.25,0.0508333333333333,10.509186798979,0.490824915824916,12.1676051329096,0.0208477442219009,0.3025,30.25,3,91.6272380172784,0.817530140110785,24,22.6159254026807,0,-4.8953431447347,-5.10528087615967,0.239854316662113
+8987,88643,442497.952,88743,442397.952,86,89,0,NA,NA,NA,NA,-0.0902222217693998,0.1375,13.75,1,91.0694765797212,0.902364607170099,13.75,24.8721081820401,5,-4.92988553643227,-5.12790012359619,0.215279161393952
+8988,88643,442397.952,88743,442297.952,87,89,0,NA,NA,NA,NA,-0.168956050570123,0,0,0,NA,NA,0,NA,NA,-5.11131417751312,-5.17735910415649,0.115928766981076
+8989,88643,442297.952,88743,442197.952,88,89,0,NA,NA,NA,NA,-0.00867341917997692,0,0,0,NA,NA,0,NA,NA,-5.02421513199806,-5.15055131912231,0.160688109673696
+8990,88643,442197.952,88743,442097.952,89,89,0.75,0.0025,0,0,18.0277563773199,-0.00753160688502248,0.0275,2.75,2,60.3322599403393,0.657240788346187,1.5,9.16151254827326,0,-4.7668848435084,-4.93514776229858,0.175993208772168
+8991,88643,442097.952,88743,441997.952,90,89,0,NA,NA,NA,NA,-0.095691319270336,0,0,0,NA,NA,0,NA,NA,-4.93209099769592,-5.02605772018433,0.136153033976885
+8992,88643,441997.952,88743,441897.952,91,89,0.5,0.0025,0,0,18.0277563773199,-0.121590102324262,0,0,0,NA,NA,0,NA,NA,-5.04522311687469,-5.08548402786255,0.0589672267490593
+8993,88643,441897.952,88743,441797.952,92,89,0,NA,NA,NA,NA,-0.076128250528127,0,0,0,NA,NA,0,NA,NA,-5.09413846333822,-5.10499286651611,0.0218695695272609
+8994,88643,441797.952,88743,441697.952,93,89,0,NA,NA,NA,NA,-0.194634621217847,0,0,0,NA,NA,0,NA,NA,-5.12534394860268,-5.1503210067749,0.0209707893874625
+8995,88643,441697.952,88743,441597.952,94,89,0,NA,NA,NA,NA,-0.106102170044323,0.02,2,1,68.0470115164975,0.795918367346939,2,115.510014533997,103.07763671875,-5.15273817380269,-5.18042802810669,0.0258755405729361
+8996,88643,441597.952,88743,441497.952,95,89,0.25,0.0025,0,0,NA,0.0571010005750577,0.4175,41.75,3,93.4991486214376,0.877375843041079,26.25,62.3418906662992,28.2842712402344,-5.17320641875267,-5.19898891448975,0.0288167630255315
+8997,88643,441497.952,88743,441397.952,96,89,0.25,0.0025,0,0,NA,0.0281982927252466,0.2475,24.75,2,93.2874462113799,0.910410989585278,24,37.8648878347994,5,-5.15452297528585,-5.18675804138184,0.0312170320582448
+8998,88643,441397.952,88743,441297.952,97,89,0.5,0.0025,0,0,18.0277563773199,0.00147933965722586,0.115,11.5,1,89.742951983695,0.942054179342315,11.5,30.2340304747872,11.1803398132324,-5.13852402567863,-5.15692520141602,0.0208484454978143
+8999,88643,441297.952,88743,441197.952,98,89,1.5,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,0.0226405983054428,0.0775,7.75,2,80.8047133383701,0.869918699186992,6.5,32.6003811743952,20.6155281066895,-5.19746530056,-5.24705505371094,0.0554702458116365
+9000,88643,441197.952,88743,441097.952,99,89,3.68421052631579,0.004375,2.30719951794084,0.0625,15.1592506934632,0.0208926305240311,0.3825,38.25,1,96.7531359636374,0.930842710389442,38.25,22.2280092301712,0,-5.25068107247353,-5.27638626098633,0.0331897947334014
+9001,88743,451097.952,88843,450997.952,0,90,1,0.00333333333333333,0.833333333333333,0.0555555555555556,24.2846109526201,-0.0836414910317399,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,64.6825784047445,60,-3.48862001630995,-3.64479732513428,0.303622321640251
+9002,88743,450997.952,88843,450897.952,1,90,1.25,0.003125,0.883883476483184,0.0208333333333333,25.1185058121566,-0.0392864712351002,0.04,4,3,68.9413506964927,0.782986111111111,3.5,11.673614025116,0,-3.69461933771769,-3.86759305000305,0.325581782032633
+9003,88743,450897.952,88843,450797.952,2,90,6,0.00666666666666667,1.5047008316366,0.101851851851852,15.5812875852258,-0.0229045868210596,0.0325,3.25,5,50.8166969147005,0.598047660063164,2.25,16.293536406297,7.07106781005859,-3.98757370313009,-4.09219980239868,0.197586018544311
+9004,88743,450797.952,88843,450697.952,3,90,0.5,0.0025,0,0,55.9016994374947,-0.0310356978401251,0.0075,0.75,1,44.4894453484604,1,0.75,33.5897178649902,30.4138145446777,-4.20822970072428,-4.3451189994812,0.162648308260545
+9005,88743,450697.952,88843,450597.952,4,90,0,NA,NA,NA,NA,-0.0325146885680442,0,0,0,NA,NA,0,NA,NA,-4.39438883463542,-4.50326585769653,0.160542750366957
+9006,88743,450597.952,88843,450497.952,5,90,0,NA,NA,NA,NA,-0.0351141770282993,0,0,0,NA,NA,0,NA,NA,-4.60185408592224,-4.67590427398682,0.105287467009269
+9007,88743,450497.952,88843,450397.952,6,90,0,NA,NA,NA,NA,0.0401210022666419,0.44,44,2,94.8400850075296,0.824175824175824,33.25,79.7823229052804,25.4950981140137,-4.6811245282491,-4.70854711532593,0.0702172688044373
+9008,88743,450397.952,88843,450297.952,7,90,1.5,0.015,8.0610978135486,0.222222222222222,NA,0.0980315012276697,0.715,71.5,1,99.0388168843254,0.934781190895454,71.5,39.3313554216932,0,-4.59535451730092,-4.7029914855957,0.1773033127136
+9009,88743,450297.952,88843,450197.952,8,90,21.5,0.043,10.5460245132739,0.372556332556333,13.9442719099992,0.0831530504580587,0.865,86.5,1,99.6041754676792,0.705515913466984,86.5,17.853040419562,0,-4.43900267283122,-4.62112855911255,0.272342018448486
+9010,88743,450197.952,88843,450097.952,9,90,43,0.086,12.3802562690736,0.40289648622982,12.2360679774998,0.0672105588653903,0.69,69,1,98.9270603639069,0.806949806949807,69,5.29830441958662,0,-4.44175953335232,-4.56611347198486,0.229544121548082
+9011,88743,450097.952,88843,449997.952,10,90,52,0.04,4.37687008377306,0.18671033073207,10.7263630076917,0.0332770660736242,0.3275,32.75,4,88.9578816269889,0.713801309670094,17.75,2.04243607557457,0,-4.54438416163127,-4.59243106842041,0.098084681396673
+9012,88743,449997.952,88843,449897.952,11,90,83.25,0.41625,20.3222579865842,0.506797583081571,10,0.0534890987587278,0.66,66,1,98.7846583695088,0.780154486036839,66,0.659629301591353,0,-4.56995148128933,-4.62872743606567,0.0811304328209082
+9013,88743,449897.952,88843,449797.952,12,90,74.5,0.248333333333333,18.7094144171395,0.542154716292647,11.6666666666667,0.0466774026183157,0.4675,46.75,3,94.0795105514164,0.826318217590708,33.75,1.0305669447955,0,-4.42554887135824,-4.65815591812134,0.504955457823961
+9014,88743,449797.952,88843,449697.952,13,90,49.5,0.165,14.5815342819558,0.599253711146294,20.1037629138309,0.0408390652393246,0.4,40,3,94.7410107560488,0.790249433106576,36.5,2.66688288450241,0,-4.39833638403151,-5.42318201065063,1.29250202159742
+9015,88743,449697.952,88843,449597.952,14,90,64.75,0.6475,35.012495774703,0.84041184041184,NA,0.0600578982920479,0.66,66,1,98.7846583695088,0.910873440285205,66,0.651784347765373,0,-3.64905188481013,-5.5,1.68945353550918
+9016,88743,449597.952,88843,449497.952,15,90,96,0.96,38.4368235059607,0.90625,NA,0.106315706819296,0.9375,93.75,1,99.8273917947966,0.572433192686358,93.75,0.186666666666667,0,-2.34925349553426,-2.64928722381592,0.860467742196613
+9017,88743,449497.952,88843,449397.952,16,90,83.25,0.8325,38.7925807637099,0.814314314314314,NA,0.0883304423559457,0.96,96,1,99.8914698623176,0.931318681318682,96,0.875555217266083,0,0.338436019490473,-2.2754271030426,3.39905616940739
+9018,88743,449397.952,88843,449297.952,17,90,69.75,0.34875,17.8881312515578,0.41037170263789,15.8113883008419,-0.0718216962193219,0.065,6.5,4,69.1182465183787,0.660884309377853,3.75,1.53846153846154,0,-2.69362751642863,-3.13823199272156,1.45363248683421
+9019,88743,449297.952,88843,449197.952,18,90,28,0.035,6.22359812423485,0.32808470341715,19.0805478263619,-0.0145986542684022,0.0225,2.25,3,47.3684210526316,0.573742540494459,1,6.50820922851562,0,-3.23253053426743,-3.30418038368225,0.087315081803204
+9020,88743,449197.952,88843,449097.952,19,90,43.25,0.0865,8.18384724002592,0.225836680053548,11.3005630797458,-0.0213036618665137,0,0,0,NA,NA,0,NA,NA,-3.25511463483175,-3.30224657058716,0.0660458540592195
+9021,88743,449097.952,88843,448997.952,20,90,43.75,0.04375,6.94758784989578,0.272445313116955,11.0901699437495,-0.00634066859500308,0.07,7,6,57.9455790286987,0.59378733572282,2,2.1122191292899,0,-3.10824253824022,-3.18584132194519,0.160166024418533
+9022,88743,448997.952,88843,448897.952,21,90,29.75,0.0595,12.3728831402713,0.372106078203639,12.2267727624144,0.0127381844671254,0.0775,7.75,3,73.1652113010012,0.761517615176152,3.5,4.02432976999591,0,-2.88058551152547,-3.03531956672668,0.240823142994209
+9023,88743,448897.952,88843,448797.952,22,90,18.5,0.0616666666666667,8.22190352002648,0.222993827160494,37.054091296271,0.000491898610198405,0.1125,11.25,3,81.2596439587439,0.733135656041512,8.25,6.58631142510308,0,-2.75844788551331,-2.92781400680542,0.239715310158976
+9024,88743,448797.952,88843,448697.952,23,90,0,NA,NA,NA,NA,-0.0541205536305256,0,0,0,NA,NA,0,NA,NA,-2.63113770882289,-2.77246737480164,0.154216291013055
+9025,88743,448697.952,88843,448597.952,24,90,0.25,0.0025,0,0,NA,-0.0883030506595969,0,0,0,NA,NA,0,NA,NA,-2.52663363350762,-2.57637333869934,0.0776260475377527
+9026,88743,448597.952,88843,448497.952,25,90,0,NA,NA,NA,NA,-0.0177658537339426,0,0,0,NA,NA,0,NA,NA,-2.50495298703512,-2.52999997138977,0.0599198441370916
+9027,88743,448497.952,88843,448397.952,26,90,0,NA,NA,NA,NA,-0.0141398027524201,0.0025,0.25,1,0,NA,0.25,42.7200164794922,42.7200164794922,-2.48587520917257,-2.51860618591309,0.0690741316118222
+9028,88743,448397.952,88843,448297.952,27,90,0.5,0.005,2.5,0.166666666666667,NA,-0.0117849759394812,0.225,22.5,3,87.0998205294464,0.807653776798237,13.75,74.8088603973389,35,-2.4360410173734,-2.49331045150757,0.077948806478919
+9029,88743,448297.952,88843,448197.952,28,90,1.25,0.0025,0,0,11.1803398874989,-0.0245721426066302,0.05,5,1,81.7256002368443,0.898132427843803,5,92.6671829223633,85,-2.35628003544278,-2.40181112289429,0.0796498336793709
+9030,88743,448197.952,88843,448097.952,29,90,3.75,0.00625,2.14571062042054,0.0802469135802469,22.1535577703492,0.00943038029226272,0.1125,11.25,2,86.6098649304307,0.673832468495182,10,7.13094058566623,0,-2.23603171110153,-2.32174849510193,0.0929346726518133
+9031,88743,448097.952,88843,447997.952,30,90,24,0.03,6.06384008104394,0.277726715686274,13.52150850948,0.0212726301271778,0.17,17,4,84.2825333318154,0.787384833451453,12.5,9.90723528581507,0,-2.11182861857944,-2.14601588249207,0.0589762512165815
+9032,88743,447997.952,88843,447897.952,31,90,5,0.00625,1.78402723058844,0.127083333333333,16.5830196829323,0.026275052687788,0.22,22,1,94.042067560231,0.959170341335946,22,12.5226881070571,0,-2.05787139468723,-2.07923722267151,0.0350463219546968
+9033,88743,447897.952,88843,447797.952,32,90,13.5,0.0103846153846154,3.50214639596179,0.208730158730159,14.4077811538069,0.00929892689113331,0.1025,10.25,3,79.906757855376,0.741633361592184,6.5,5.59150481805569,0,-2.03126428524653,-2.05128407478333,0.0236608808918283
+9034,88743,447797.952,88843,447697.952,33,90,10.75,0.0134375,4.9193080529404,0.184027777777778,18.9561551245637,0.00412551910303591,0.0825,8.25,4,69.8283268303601,0.677061257442729,3.25,12.5412650252834,0,-2.00483825471666,-2.01384544372559,0.0112091525218333
+9035,88743,447697.952,88843,447597.952,34,90,10,0.0333333333333333,7.16462584459909,0.357142857142857,55.0584365062922,0.0335223431615304,0.3275,32.75,3,89.2202696546209,0.751131573626169,12.75,14.2363330316908,0,-1.99983757734299,-2.00208806991577,0.00537513215030651
+9036,88743,447597.952,88843,447497.952,35,90,55.75,0.27875,20.9602957715142,0.82597302504817,10,0.0915014726318623,0.5775,57.75,2,97.5494494574402,0.917626546218372,56.75,2.94282665500393,0,-2.01802967654334,-2.04424095153809,0.0331162485775698
+9037,88743,447497.952,88843,447397.952,36,90,16.5,0.055,6.19407088215104,0.328042328042328,22.2420512747135,0.0184948898606308,0.1875,18.75,2,91.5082664338963,0.944055944055944,18.25,6.88320757548014,0,-2.11045537392298,-2.1765308380127,0.0673484789429625
+9038,88743,447397.952,88843,447297.952,37,90,0,NA,NA,NA,NA,0.0435720759399555,0.3675,36.75,2,92.96616012117,0.882451474499317,19.75,52.5495547080527,20,-2.20779599083794,-2.26125955581665,0.0663285520753451
+9039,88743,447297.952,88843,447197.952,38,90,2.5,0.00357142857142857,1.07142857142857,0.0714285714285714,13.1650749217888,-0.0390784626259119,0.115,11.5,2,85.9316683735396,0.811676082862524,9.75,22.4238043246062,10,-2.23661963144938,-2.28954815864563,0.0783533220938642
+9040,88743,447197.952,88843,447097.952,39,90,3.75,0.00416666666666667,1.28278721909719,0.0925925925925926,11.9471640043532,0.014386309705842,0.185,18.5,1,93.0265643427559,0.915054270882492,18.5,22.3644158389117,5,-2.15150825182597,-2.24525570869446,0.175418697131609
+9041,88743,447097.952,88843,446997.952,40,90,0,NA,NA,NA,NA,0.0127652249200582,0,0,0,NA,NA,0,NA,NA,-1.26068427910407,-1.91362738609314,0.890902083378259
+9042,88743,446997.952,88843,446897.952,41,90,0,NA,NA,NA,NA,0.0152408519841447,0,0,0,NA,NA,0,NA,NA,-0.284961180554496,-0.572486579418182,0.416321324760629
+9043,88743,446897.952,88843,446797.952,42,90,0,NA,NA,NA,NA,-0.0486770661831565,0,0,0,NA,NA,0,NA,NA,-1.02516378834844,-1.84292590618134,0.812038211090964
+9044,88743,446797.952,88843,446697.952,43,90,16.25,0.08125,18.7509882100535,0.430921052631579,10,-0.0522207519277163,0,0,0,NA,NA,0,NA,NA,-2.26255578464932,-2.59236741065979,0.589103225149821
+9045,88743,446697.952,88843,446597.952,44,90,13,0.0433333333333333,10.8165906899084,0.282125603864734,29.3357841812257,-0.08089177230926,0.0975,9.75,1,88.4075627573592,0.965906669507778,9.75,24.1517589275654,5,-2.78507844607035,-2.90234994888306,0.201487061385031
+9046,88743,446597.952,88843,446497.952,45,90,1.75,0.0035,0.666666666666667,0.0444444444444444,16.3491902572868,0.0459700808622244,0.2575,25.75,2,90.9381025732488,0.912639912639913,22.5,27.1869911453099,0,-2.92288146416346,-2.97723531723022,0.0898661291209759
+9047,88743,446497.952,88843,446397.952,46,90,0.5,0.0025,0,0,58.5234995535981,-0.0980848052568945,0,0,0,NA,NA,0,NA,NA,-2.8286849392785,-2.91423273086548,0.1237790509101
+9048,88743,446397.952,88843,446297.952,47,90,0,NA,NA,NA,NA,-0.0716241642347995,0,0,0,NA,NA,0,NA,NA,-2.82605701684952,-2.90845918655396,0.112172060486076
+9049,88743,446297.952,88843,446197.952,48,90,0,NA,NA,NA,NA,0.0182264453064636,0.2525,25.25,2,92.4674717741188,0.903915445592121,22.75,69.344591877248,7.07106781005859,-2.9752468003167,-3.0780177116394,0.142793626587393
+9050,88743,446197.952,88843,446097.952,49,90,0,NA,NA,NA,NA,0.0756230996319209,0.65,65,1,98.735013968989,0.982399530654151,65,85.0403144249549,30.4138145446777,-3.08930855989456,-3.15625262260437,0.118247872309064
+9051,88743,446097.952,88843,445997.952,50,90,0.5,0.005,2.5,0.166666666666667,NA,0.0860049774078652,0.815,81.5,2,99.0934119467005,0.85937156668864,81,55.3388182868255,5,-3.04044450653924,-3.12435555458069,0.109068119220899
+9052,88743,445997.952,88843,445897.952,51,90,26,0.0866666666666667,9.6657945738053,0.33003300330033,20,0.00965982315221481,0.2125,21.25,5,84.7092015536352,0.739304110165037,11.75,3.50757908540614,0,-3.12985267241796,-3.5,0.275350973585007
+9053,88743,445897.952,88843,445797.952,52,90,20.5,0.0292857142857143,5.17130397545776,0.223469387755102,10.7603536444614,0.0337378987197735,0.4675,46.75,2,97.2945734461899,0.831745773290998,46.5,7.40591861092471,0,-3.33376195695665,-3.46604704856873,0.202969062684377
+9054,88743,445797.952,88843,445697.952,53,90,1.25,0.00625,2.5,0.125,15,-0.0206978020972565,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,68.6870342601429,62.6498222351074,-3.8999061981837,-4.39596271514893,0.506563933851188
+9055,88743,445697.952,88843,445597.952,54,90,0,NA,NA,NA,NA,-0.0229644024948868,0,0,0,NA,NA,0,NA,NA,-4.53251356548733,-4.69281768798828,0.250026252176529
+9056,88743,445597.952,88843,445497.952,55,90,0.5,0.0025,0,0,36.4005494464026,-0.0138912857214928,0,0,0,NA,NA,0,NA,NA,-4.66192796495226,-4.74532413482666,0.141152420879282
+9057,88743,445497.952,88843,445397.952,56,90,0.5,0.0025,0,0,32.0156211871642,0.013032782483283,0.195,19.5,1,93.3444522721621,0.972994869025115,19.5,15.0408327885163,0,-4.65709435939789,-4.71062517166138,0.0782188599357492
+9058,88743,445397.952,88843,445297.952,57,90,0.75,0.0025,0,0,22.6744420160288,0.01821228843889,0.2775,27.75,1,95.2720210973421,0.944636678200692,27.75,16.0145623146951,0,-4.66648483276367,-4.70227193832397,0.069746603861973
+9059,88743,445297.952,88843,445197.952,58,90,2.25,0.00375,0.972222222222222,0.0648148148148148,28.8643804080971,0.116088229977031,0.745,74.5,1,99.1654268803843,0.979029044772989,74.5,18.064113085702,0,-4.7304261525472,-4.81721544265747,0.120884940974529
+9060,88743,445197.952,88843,445097.952,59,90,0.75,0.0025,0,0,22.6744420160288,0.0157659621871426,0.2925,29.25,1,95.5315755048205,0.919994666311087,29.25,19.8466321505033,0,-4.83612494998508,-4.93076229095459,0.154816865160921
+9061,88743,445097.952,88843,444997.952,60,90,0,NA,NA,NA,NA,-0.0698503436916508,0,0,0,NA,NA,0,NA,NA,-4.93038976192474,-5.00663614273071,0.12910414069345
+9062,88743,444997.952,88843,444897.952,61,90,21.5,0.1075,11.6007546765611,0.489087301587302,18.0277563773199,-0.0460886481989291,0,0,0,NA,NA,0,NA,NA,-4.94203493330214,-5.00002765655518,0.0921176387289326
+9063,88743,444897.952,88843,444797.952,62,90,14.75,0.0210714285714286,5.2121716056709,0.266858141858142,14.6606126849224,-0.0183963142037646,0,0,0,NA,NA,0,NA,NA,-4.82300400733948,-4.91644144058228,0.0973655888268612
+9064,88743,444797.952,88843,444697.952,63,90,6.75,0.0135,4.74315419916257,0.14047619047619,26.9869816593095,0.0127935822439031,0.2825,28.25,2,94.7200442013279,0.931679989068798,28,29.0402554537343,0,-4.65680509143406,-4.71742534637451,0.0897676777609553
+9065,88743,444697.952,88843,444597.952,64,90,15,0.03,3.24231055105811,0.158928571428571,21.0219591404627,-0.162059617078557,0,0,0,NA,NA,0,NA,NA,-4.62581900755564,-4.73998212814331,0.110515599027785
+9066,88743,444597.952,88843,444497.952,65,90,1.5,0.005,2.27182017326525,0.111111111111111,41.9665010578909,-0.0833633459915291,0.0625,6.25,1,84.2105263157895,0.946666666666667,6.25,14.623507232666,0,-4.73040056228638,-4.89075469970703,0.243436628931938
+9067,88743,444497.952,88843,444397.952,66,90,15.75,0.0196875,4.98760082434709,0.306520562770563,12.5427450096113,-0.01128752929435,0.08,8,5,70.9356840851875,0.749163879598662,5.5,18.7364988923073,0,-4.79023965199788,-5.00847816467285,0.360271918083469
+9068,88743,444397.952,88843,444297.952,67,90,9,0.0225,5.39622396523491,0.263888888888889,12.00693909433,-0.0547515296627421,0.035,3.5,2,69.0285060247284,0.844559585492228,3,3.57142857142857,0,-4.84243321418762,-5.05893325805664,0.429522466565481
+9069,88743,444297.952,88843,444197.952,68,90,0,NA,NA,NA,NA,-0.103993245530874,0,0,0,NA,NA,0,NA,NA,-4.74640141593085,-5.01427841186523,0.453263646475309
+9070,88743,444197.952,88843,444097.952,69,90,0,NA,NA,NA,NA,-0.0759406328480691,0,0,0,NA,NA,0,NA,NA,-4.46596380074819,-4.81151247024536,0.542120486404851
+9071,88743,444097.952,88843,443997.952,70,90,0.75,0.00375,1.25,0.0833333333333333,66.7083203206317,-0.0668879989400739,0,0,0,NA,NA,0,NA,NA,-3.91442272398207,-4.37912368774414,0.548762867727333
+9072,88743,443997.952,88843,443897.952,71,90,13,0.13,27.6806925043477,0.663461538461538,NA,0.01371437720416,0.285,28.5,1,95.4043598780874,0.95926403693394,28.5,12.0247431303325,0,-3.40042454004288,-3.72563099861145,0.244235626153135
+9073,88743,443897.952,88843,443797.952,72,90,6.25,0.0625,13.7148881549167,0.64,NA,0.159416910816144,0.875,87.5,1,99.6366054334226,0.97583081570997,87.5,44.3275773838588,0,-3.19371297624376,-3.26648759841919,0.111907578385965
+9074,88743,443797.952,88843,443697.952,73,90,2.25,0.01125,7.47219794743646,0.125,11.1803398874989,0.194641122110188,1,100,1,100,NA,100,38.5327706193924,0,-3.07752386728923,-3.18064904212952,0.106285442667275
+9075,88743,443697.952,88843,443597.952,74,90,0.25,0.0025,0,0,NA,0.192403910644352,1,100,1,100,NA,100,37.6271399831772,0,-2.90008664131165,-2.98357558250427,0.125447399808663
+9076,88743,443597.952,88843,443497.952,75,90,1.25,0.003125,0.625,0.0416666666666667,38.174670937135,0.0161192330491031,0.2125,21.25,1,93.8457653779655,0.924314096499527,21.25,11.6527265436509,0,-2.65608555078506,-2.80216813087463,0.157576707955222
+9077,88743,443497.952,88843,443397.952,76,90,18,0.03,6.89153655857233,0.200892857142857,11.8169499062491,0.0317517545633746,0.3725,37.25,2,96.2151378349199,0.900763247376793,37,10.0574203977649,0,-2.27126510938009,-2.54870247840881,0.341672426661747
+9078,88743,443397.952,88843,443297.952,77,90,10.5,0.0175,5.68350470225599,0.304131054131054,15.031281543834,-0.0460755246880581,0.0425,4.25,2,75.7894736842105,0.7911227154047,4,4.60495713177849,0,-2.05930619769626,-2.49192976951599,0.723725731838693
+9079,88743,443297.952,88843,443197.952,78,90,0,NA,NA,NA,NA,0.00392257471665289,0.215,21.5,4,88.5803191315728,0.825152991132759,17.75,46.527046048364,11.1803398132324,-4.17608580986659,-5.08916330337524,1.44745933167137
+9080,88743,443197.952,88843,443097.952,79,90,3.75,0.00340909090909091,1.28564869306645,0.0303030303030303,13.0478171119956,-0.00848458987382401,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,27.7182601928711,25,-5.14055728912354,-5.24833822250366,0.198797292912827
+9081,88743,443097.952,88843,442997.952,80,90,1.25,0.0025,0,0,23.0245303688986,0.0526169180878787,0.45,45,1,97.417305342106,0.950859950859951,45,38.5814967579312,7.07106781005859,-5.2419072786967,-5.30873155593872,0.0991568071141936
+9082,88743,442997.952,88843,442897.952,81,90,2.5,0.00277777777777778,0.392837100659193,0.00925925925925926,13.4628120507726,0.063853125048845,0.5625,56.25,2,96.2198768693635,0.902040816326531,51.75,24.1266502041287,0,-5.2562993367513,-5.31438684463501,0.094913898359002
+9083,88743,442897.952,88843,442797.952,82,90,4.5,0.005,2.81371707646439,0.0648148148148148,14.6521251079094,0.0181906378245549,0.12,12,3,79.7929657790546,0.73669623059867,6.5,23.6169200738271,0,-5.26075418790181,-5.30965948104858,0.0690459744640016
+9084,88743,442797.952,88843,442697.952,83,90,0,NA,NA,NA,NA,0.115593116931268,0.92,92,1,99.7759364721822,0.964131994261118,92,54.2042611319086,7.07106781005859,-5.27749066882663,-5.2857985496521,0.020518493552955
+9085,88743,442697.952,88843,442597.952,84,90,0.5,0.005,2.5,0.166666666666667,NA,-0.00949371114849782,0.435,43.5,1,97.2831784886431,0.96140379896893,43.5,46.0119689524859,15.8113880157471,-5.21765422821045,-5.27904796600342,0.100164146403584
+9086,88743,442597.952,88843,442497.952,85,90,27.75,0.2775,25.847203539905,0.668168168168168,NA,-0.0763450731821649,0.0475,4.75,4,60.7829736648505,0.637976287446828,2.5,4.55145564832185,0,-4.98821825451321,-5.18055200576782,0.334342852458628
+9087,88743,442497.952,88843,442397.952,86,90,11,0.022,6.94468087314682,0.396111111111111,10.7082039324994,0.0564590545324609,0.5075,50.75,1,97.8751325648042,0.929984246455453,50.75,31.3206428941247,0,-4.5663917462031,-4.94915628433228,0.374646856164945
+9088,88743,442397.952,88843,442297.952,87,90,0,NA,NA,NA,NA,-0.00341691507172072,0.275,27.5,1,95.2267095868885,0.951481545659331,27.5,73.7553548986262,42.7200164794922,-4.82114924324883,-4.95535373687744,0.257522645670548
+9089,88743,442297.952,88843,442197.952,88,90,0,NA,NA,NA,NA,0.0068481935949967,0.055,5.5,2,77.6847378303052,0.875505757858699,5,149.687437577681,140.80126953125,-4.77365958690643,-4.95172309875488,0.226047873776458
+9090,88743,442197.952,88843,442097.952,89,90,1,0.005,3.53553390593274,0.0833333333333333,11.1803398874989,-0.127010717270387,0,0,0,NA,NA,0,NA,NA,-4.88907093471951,-4.95721006393433,0.138854467661976
+9091,88743,442097.952,88843,441997.952,90,90,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.141753452308476,0,0,0,NA,NA,0,NA,NA,-5.01480293273926,-5.06282711029053,0.0736299280168948
+9092,88743,441997.952,88843,441897.952,91,90,0,NA,NA,NA,NA,-0.0925782143697143,0,0,0,NA,NA,0,NA,NA,-5.06460185845693,-5.09056663513184,0.0357846622454395
+9093,88743,441897.952,88843,441797.952,92,90,0,NA,NA,NA,NA,-0.143479484170675,0,0,0,NA,NA,0,NA,NA,-5.09860997729831,-5.1364860534668,0.0467182097996634
+9094,88743,441797.952,88843,441697.952,93,90,0,NA,NA,NA,NA,-0.179272722174501,0,0,0,NA,NA,0,NA,NA,-5.17284862200419,-5.2387056350708,0.0627939874811296
+9095,88743,441697.952,88843,441597.952,94,90,0,NA,NA,NA,NA,0.0224096591013949,0.2775,27.75,3,88.0954142143651,0.806228373702422,12.25,155.227454176894,105.118980407715,-5.22655418184068,-5.26387643814087,0.053575493516087
+9096,88743,441597.952,88843,441497.952,95,90,0,NA,NA,NA,NA,0.0343336944310431,0.21,21,5,83.6767113506145,0.78761362670971,14.75,125.568505332583,70.7106781005859,-5.22148140271505,-5.25114154815674,0.0348354006027782
+9097,88743,441497.952,88843,441397.952,96,90,0,NA,NA,NA,NA,-0.0282025994888318,0,0,0,NA,NA,0,NA,NA,-5.17948775821262,-5.19331073760986,0.0266382181197051
+9098,88743,441397.952,88843,441297.952,97,90,0.25,0.0025,0,0,NA,-0.0336845153234026,0.005,0.5,1,30.8308651382582,1,0.5,24.6432514190674,22.3606796264648,-5.15618896484375,-5.17237949371338,0.0185815911607923
+9099,88743,441297.952,88843,441197.952,98,90,1.75,0.0035,1.4142135623731,0.0333333333333333,13.9193064834273,0.0291880243838932,0.3125,31.25,2,92.0029964427283,0.903884661593913,17.25,17.3856404724121,0,-5.19409534666273,-5.22672939300537,0.0411601980288951
+9100,88743,441197.952,88843,441097.952,99,90,1.05263157894737,0.005,3.53553390593274,0.0833333333333333,11.1803398874989,-0.0230653456384152,0.08,8,2,80.0461138593776,0.832775919732441,6,22.2778656482697,0,-5.22579181194305,-5.23998594284058,0.0256939936181976
+9101,88843,451097.952,88943,450997.952,0,91,0,NA,NA,NA,NA,-0.199893870037049,0,0,0,NA,NA,0,NA,NA,-2.84257483482361,-3.194664478302,0.493906419920502
+9102,88843,450997.952,88943,450897.952,1,91,4.75,0.0475,17.3504094042196,0.43859649122807,NA,-0.185626178719103,0,0,0,NA,NA,0,NA,NA,-2.86147119601568,-3.43578195571899,0.606251056871521
+9103,88843,450897.952,88943,450797.952,2,91,3.75,0.0375,12.9554537929766,0.455555555555556,NA,-0.137437689565413,0,0,0,NA,NA,0,NA,NA,-3.50973523987664,-3.99057412147522,0.697482754285052
+9104,88843,450797.952,88943,450697.952,3,91,9,0.01,3.34942394157551,0.237862754529421,12.1994271863915,-0.00814125688840704,0.0625,6.25,5,60.5383027117548,0.573333333333333,2,9.20516181945801,0,-4.17984122037888,-4.36425685882568,0.281913106796503
+9105,88843,450697.952,88943,450597.952,4,91,3.75,0.0046875,1.26007735972593,0.114583333333333,14.4300980332595,-0.0361184630894422,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,6.66666666666667,0,-4.45602258046468,-4.51946210861206,0.106060919195725
+9106,88843,450597.952,88943,450497.952,5,91,6,0.00666666666666667,2.48949650283407,0.185802469135802,14.3283147015542,-0.0215911934887845,0.0275,2.75,1,73.5251216233933,0.931448157669237,2.75,4.92201232910156,0,-4.56963427861532,-4.64261388778687,0.0868095893156195
+9107,88843,450497.952,88943,450397.952,6,91,0,NA,NA,NA,NA,0.0626850303580432,0.4575,45.75,2,96.9812847684072,0.978185586126033,45.5,78.0048074149043,35,-4.63851028018528,-4.69692468643188,0.0903214467826146
+9108,88843,450397.952,88943,450297.952,7,91,0.25,0.0025,0,0,NA,0.00377865792361263,0.1475,14.75,2,89.8140888371383,0.896498188718303,14.25,77.9191758107331,41.2310562133789,-4.68985684712728,-4.71834373474121,0.0603524147121184
+9109,88843,450297.952,88943,450197.952,8,91,27.25,0.2725,30.1034730474319,0.703363914373089,NA,0.0451798266160768,0.465,46.5,1,97.5448886830867,0.864159965224951,46.5,10.74117765119,0,-4.73595974180433,-4.78855562210083,0.0957975890358018
+9110,88843,450197.952,88943,450097.952,9,91,19,0.095,11.934122418933,0.627156659765355,86.0232526704263,0.0519037380938607,0.535,53.5,1,98.0675165576351,0.956773112876209,53.5,29.3344309174012,7.07106781005859,-4.77618657218085,-4.84732055664062,0.141288062399214
+9111,88843,450097.952,88943,449997.952,10,91,64,0.213333333333333,13.7188900331742,0.38205467372134,12.1676051329096,-0.00415615133759275,0.0075,0.75,1,44.4894453484604,1,0.75,3.33333333333333,0,-4.74418501059214,-4.84091949462891,0.13251860066453
+9112,88843,449997.952,88943,449897.952,11,91,58.5,0.0531818181818182,7.23049534485054,0.25948242933537,10.4292145045451,0.0258266344131789,0.3325,33.25,2,94.8683622792955,0.913331476150679,32.25,1.01503759398496,0,-4.70601775911119,-4.75909852981567,0.0970506168365454
+9113,88843,449897.952,88943,449797.952,12,91,63.75,0.1275,11.0028294889226,0.41346858931366,13.8704815926677,0.0340218569236458,0.2675,26.75,2,92.7267395172455,0.886823816513113,24,1.58117729258314,0,-4.75112958749135,-4.79042959213257,0.0776407311799382
+9114,88843,449797.952,88943,449697.952,13,91,55,0.183333333333333,15.3943029949045,0.452080042127436,10,0.0872236531461385,0.6125,61.25,1,98.5381414210533,0.830962107339062,61.25,3.76040042176539,0,-4.78449106216431,-5.16885852813721,0.237105931356313
+9115,88843,449697.952,88943,449597.952,14,91,54.5,0.0908333333333333,9.98066214054688,0.346820755592685,10.3934466291663,0.0686331490169687,0.7575,75.75,1,99.2159474776692,0.711123548847203,75.75,2.18162756941893,0,-4.35738484064738,-5.5,1.00608609582496
+9116,88843,449597.952,88943,449497.952,15,91,78.25,0.7825,38.3702505622346,0.782215122470713,NA,0.0953453506110236,0.905,90.5,1,99.7306491449722,0.784863618901267,90.5,1.08879042988983,0,-2.24006382624308,-3.9955952167511,2.73933642895635
+9117,88843,449497.952,88943,449397.952,16,91,72.25,0.240833333333333,14.7307975512255,0.412332545311269,10,0.103729572287702,0.7525,75.25,1,99.1958903399554,0.878859138118397,75.25,1.99096983215738,0,0.59156929825743,-3.19884777069092,3.27788560865581
+9118,88843,449397.952,88943,449297.952,17,91,27.5,0.0211538461538462,2.38004869800948,0.109168282697694,13.4136982544117,0.0059240810368965,0.0625,6.25,2,81.0200477655928,0.893333333333333,6,1.4,0,-3.16695128546821,-3.32034349441528,0.94878917033884
+9119,88843,449297.952,88943,449197.952,18,91,16.25,0.01625,3.37193760229987,0.116792929292929,14.4161044081847,0.00143305586567067,0.06,6,2,75.1491145752486,0.692049272116461,3.25,1.25,0,-3.32138854265213,-3.34890198707581,0.0661508669883003
+9120,88843,449197.952,88943,449097.952,19,91,57,0.57,35.1160628358929,0.828216374269006,NA,0.0166906222279067,0.195,19.5,5,83.1149101112425,0.729948690251148,10.75,0.576923076923077,0,-3.16976833343506,-3.29686951637268,0.235509584732089
+9121,88843,449097.952,88943,448997.952,20,91,21.25,0.0193181818181818,3.29898604516489,0.123841354723708,14.7833853775203,0.00655670997410198,0.0525,5.25,2,77.3416134336187,0.83509234828496,4.75,2.00338418143136,0,-2.80753209855821,-3.09100747108459,0.402309612052491
+9122,88843,448997.952,88943,448897.952,21,91,8.75,0.00875,2.21904711204392,0.133333333333333,17.8596494231752,0.0186213491383387,0.0575,5.75,2,77.8943168562567,0.616858237547893,4.75,11.3487306677777,0,-2.46161299943924,-2.7403998374939,0.342264235165078
+9123,88843,448897.952,88943,448797.952,22,91,10,0.00909090909090909,3.51930639650236,0.240151515151515,16.5296284993645,0.00746175285989921,0.04,4,2,73.8471596962463,0.869791666666667,3.75,7.8528094291687,5,-2.38215692838033,-2.52422785758972,0.280426929093891
+9124,88843,448797.952,88943,448697.952,23,91,9.75,0.0139285714285714,4.20810741557624,0.389739229024943,16.2023132185197,-0.0892683732304431,0.0225,2.25,2,63.0901789228714,0.573742540494459,2,3.13904529147678,0,-2.36222505569458,-2.50488328933716,0.241644386718556
+9125,88843,448697.952,88943,448597.952,24,91,0,NA,NA,NA,NA,-0.0334116075293787,0,0,0,NA,NA,0,NA,NA,-2.3231041431427,-2.43174028396606,0.210191143704384
+9126,88843,448597.952,88943,448497.952,25,91,0,NA,NA,NA,NA,-0.0243057044262969,0,0,0,NA,NA,0,NA,NA,-2.30138705174128,-2.41229343414307,0.19816364684303
+9127,88843,448497.952,88943,448397.952,26,91,1,0.01,3.53553390593274,0.416666666666667,NA,-0.0274236750737327,0,0,0,NA,NA,0,NA,NA,-2.25927151574029,-2.38746166229248,0.213347338202985
+9128,88843,448397.952,88943,448297.952,27,91,3,0.0075,3.2433688309158,0.133928571428571,31.3322046039815,-0.00739209498409764,0.1025,10.25,2,83.7546453013708,0.822372936094627,8.25,30.7531266561369,10,-2.21186731259028,-2.35360622406006,0.233211504845534
+9129,88843,448297.952,88943,448197.952,28,91,0.75,0.00375,1.25,0.0833333333333333,11.1803398874989,-0.0183154770493638,0,0,0,NA,NA,0,NA,NA,-2.1757874223921,-2.29689407348633,0.189701160501757
+9130,88843,448197.952,88943,448097.952,29,91,11,0.0275,4.6727606557743,0.152439024390244,10.5901699437495,0.00363854305405766,0.0175,1.75,3,42.8555683365615,0.618320610687023,1.25,18.4466956002372,0,-2.1151659488678,-2.21221160888672,0.106699043186237
+9131,88843,448097.952,88943,447997.952,30,91,20.5,0.0186363636363636,5.3282431228123,0.324555600177549,15.3338824908891,0.0318165114162548,0.19,19,6,81.9519441901176,0.659111848166575,10.25,5.23630465959248,0,-2.08697141541375,-2.11053156852722,0.0240287394707328
+9132,88843,447997.952,88943,447897.952,31,91,6.5,0.013,3.69139863742726,0.310714285714286,15.8517625266993,-0.0140659860922824,0,0,0,NA,NA,0,NA,NA,-2.06902392705282,-2.07973575592041,0.0202262040774143
+9133,88843,447897.952,88943,447797.952,32,91,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,12.7240226919466,-0.0556172983569559,0,0,0,NA,NA,0,NA,NA,-2.0250977575779,-2.05128407478333,0.0268760074485058
+9134,88843,447797.952,88943,447697.952,33,91,8.5,0.017,4.82886603843408,0.265151515151515,13.4721359549996,-0.0282593684597668,0.0225,2.25,2,60.8730533773843,0.829497016197783,2,7.38920169406467,0,-1.9931562476688,-2.00742888450623,0.0184812516790169
+9135,88843,447697.952,88943,447597.952,34,91,4.75,0.00431818181818182,1.1639364417181,0.0909090909090909,15.4385113084461,-0.0713168646016129,0.0425,4.25,4,55.0460646727874,0.62402088772846,1.75,8.77147898954504,0,-1.97819262742996,-2.00028562545776,0.0328235123659346
+9136,88843,447597.952,88943,447497.952,35,91,16.75,0.0152272727272727,3.15737620622923,0.189431749436287,11.8666134409852,0.00311163892958575,0.1475,14.75,3,82.7951570028032,0.815996779943649,8,6.64568277132713,0,-2.00329795148638,-2.04233598709106,0.0577842415797406
+9137,88843,447497.952,88943,447397.952,36,91,3,0.00333333333333333,0.948392656214749,0.0462962962962963,19.7986433516571,-0.00947677583471886,0.04,4,5,48.0800614566592,0.522569444444444,1.5,18.893914937973,5,-2.10777403910955,-2.18045115470886,0.0871616822134571
+9138,88843,447397.952,88943,447297.952,37,91,1,0.0025,0,0,18.2134582144651,0.03595684455011,0.51,51,1,97.8932627156421,0.940767863873782,51,31.1971480519164,0,-2.25886758168538,-2.30766201019287,0.0869852487650797
+9139,88843,447297.952,88943,447197.952,38,91,2.75,0.006875,2.91012344202435,0.101190476190476,22.3606797749979,-0.0508451949991286,0.105,10.5,1,89.0207000039903,0.874104964985443,10.5,20.6889411835443,5,-2.37399174769719,-2.43744397163391,0.0821437645032776
+9140,88843,447197.952,88943,447097.952,39,91,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,12.7240226919466,0.0286774034220798,0.265,26.5,1,95.039096185713,0.928767318445703,26.5,18.4201790971576,0,-2.34662103652954,-2.4417188167572,0.188244606982516
+9141,88843,447097.952,88943,446997.952,40,91,0.25,0.0025,0,0,NA,0.00110568967473228,0,0,0,NA,NA,0,NA,NA,-1.42390830719766,-2.24439144134521,1.14220404935813
+9142,88843,446997.952,88943,446897.952,41,91,0.25,0.0025,0,0,NA,0.00638131664401953,0,0,0,NA,NA,0,NA,NA,-0.155194922246867,-0.915109634399414,0.979102574412497
+9143,88843,446897.952,88943,446797.952,42,91,0,NA,NA,NA,NA,-0.0802949815185275,0,0,0,NA,NA,0,NA,NA,-0.934258087227742,-1.75816214084625,0.970902644691918
+9144,88843,446797.952,88943,446697.952,43,91,12.25,0.1225,23.8115151097692,0.486394557823129,NA,-0.0578162028583392,0,0,0,NA,NA,0,NA,NA,-2.2179278532664,-2.5378634929657,0.615729526391385
+9145,88843,446697.952,88943,446597.952,44,91,15,0.05,14.2039228878377,0.376774996340214,10,-0.0391388656730851,0,0,0,NA,NA,0,NA,NA,-2.69037164582147,-2.81294417381287,0.162974363694724
+9146,88843,446597.952,88943,446497.952,45,91,1.5,0.0025,0,0,24.8428235840349,0.0101952289024484,0.115,11.5,2,83.6614365753277,0.88410835868463,7.5,29.9720876113228,0,-2.77179306745529,-2.8550865650177,0.114184303928421
+9147,88843,446497.952,88943,446397.952,46,91,2.5,0.0025,0,0,14.8851786181733,-0.0343371407938685,0,0,0,NA,NA,0,NA,NA,-2.64982379807366,-2.73961162567139,0.125165333285267
+9148,88843,446397.952,88943,446297.952,47,91,1.75,0.0025,0,0,17.3991648343891,-0.0472182292898651,0.2075,20.75,1,93.7090252642431,0.922745123285908,20.75,19.1032553983022,5,-2.6481956243515,-2.76958537101746,0.145590958312704
+9149,88843,446297.952,88943,446197.952,48,91,0.5,0.005,2.5,0.166666666666667,NA,0.095852749858168,0.705,70.5,2,98.6286833165351,0.878477774224496,70,42.8188284001452,5,-2.77800986501906,-2.90392780303955,0.17228708619238
+9150,88843,446197.952,88943,446097.952,49,91,1,0.00333333333333333,0.833333333333333,0.0555555555555556,18.125433654054,0.0653347487709289,0.5175,51.75,3,92.7277181953852,0.822353811991118,28,36.5449281314721,10,-2.89796986182531,-2.96818876266479,0.109625809184351
+9151,88843,446097.952,88943,445997.952,50,91,8,0.02,4.32879101613196,0.203869047619048,15.2509910701015,0.032833777466154,0.2525,25.25,4,87.4047122856211,0.807830891184242,18.5,47.5042289884964,0,-2.91336623827616,-2.95318388938904,0.0541383491728164
+9152,88843,445997.952,88943,445897.952,51,91,44.5,0.148333333333333,13.6725606504268,0.450665335994677,11.937129433614,-0.0140375330594907,0.1325,13.25,3,82.8990551156669,0.733983595655066,7,3.15228429830299,0,-3.21692532300949,-3.5,0.314805301705024
+9153,88843,445897.952,88943,445797.952,52,91,16.5,0.0275,6.10513244204404,0.180853174603175,19.2651741990625,0.027891278197967,0.375,37.5,4,93.0718193078188,0.831272727272727,31.5,9.39821889241536,0,-3.44195612271627,-3.57571768760681,0.225297461480018
+9154,88843,445797.952,88943,445697.952,53,91,20.25,0.050625,4.23632974225664,0.211004273504274,26.1416507777131,0.0640416395538068,0.4075,40.75,1,97.0183110527583,0.960618846694796,40.75,25.2486136851867,0,-4.1562846104304,-4.56883525848389,0.491532406162704
+9155,88843,445697.952,88943,445597.952,54,91,44.25,0.4425,29.7728596170486,0.88135593220339,NA,0.0717494363721926,0.575,57.5,1,98.3223108063601,0.967091731797614,57.5,12.3295461405878,0,-4.72334406110975,-4.84952020645142,0.190557444860539
+9156,88843,445597.952,88943,445497.952,55,91,43.25,0.4325,28.9759381228102,0.884393063583815,NA,-0.0202177102716087,0.1375,13.75,2,89.1060939861288,0.902364607170099,13.25,4.37631450999867,0,-4.8552893532647,-4.91886138916016,0.115519313612131
+9157,88843,445497.952,88943,445397.952,56,91,19.75,0.1975,23.5726958562293,0.789029535864979,NA,-0.0668024707811128,0.0025,0.25,1,0,NA,0.25,40.3112869262695,40.3112869262695,-4.81740113099416,-4.91419696807861,0.141366817439926
+9158,88843,445397.952,88943,445297.952,57,91,3,0.01,3.67789449476168,0.191358024691358,65.2978825416826,-0.0394589708044077,0.1775,17.75,1,92.7707193874331,0.922188449848024,17.75,15.9860854350345,0,-4.79313431845771,-4.89177370071411,0.147566680907987
+9159,88843,445297.952,88943,445197.952,58,91,40.75,0.4075,28.9186248956983,0.878323108384458,NA,0.013777060979628,0.46,46,1,97.5030549392159,0.972766884531591,46,1.90421533584595,0,-4.89317135016123,-5.0294303894043,0.159381420377869
+9160,88843,445197.952,88943,445097.952,59,91,42.25,0.4225,29.4565567713782,0.879684418145957,NA,0.121028655819246,0.7925,79.25,1,99.350989933666,0.983882016359753,79.25,7.50416718973346,0,-5.01850265926785,-5.10772943496704,0.135825017979084
+9161,88843,445097.952,88943,444997.952,60,91,31.5,0.1575,13.3894363042356,0.428,45.2769256906871,0.0917395112582744,0.5975,59.75,1,98.4542502383879,0.944418969805605,59.75,16.6258387465856,0,-5.06744559605916,-5.11603784561157,0.0784025075440898
+9162,88843,444997.952,88943,444897.952,61,91,6,0.00666666666666667,2.09556427424806,0.125308641975309,21.0031558564487,0.0299051424063509,0.375,37.5,1,96.668457042866,0.970909090909091,37.5,13.5072676849365,0,-5.00829225116306,-5.05382633209229,0.0675610902372936
+9163,88843,444897.952,88943,444797.952,62,91,4,0.00444444444444444,1.83002146022443,0.0632716049382716,17.2596541864538,-0.0321952653209337,0.005,0.5,1,30.8308651382582,1,0.5,41.6614570617676,40.3112869262695,-4.88388653596242,-4.95931339263916,0.109086270636265
+9164,88843,444797.952,88943,444697.952,63,91,0.75,0.00375,1.25,0.0833333333333333,35,-0.0701938073224483,0,0,0,NA,NA,0,NA,NA,-4.80708906385634,-4.92285871505737,0.173935012360928
+9165,88843,444697.952,88943,444597.952,64,91,19.75,0.0395,5.23353696100087,0.288888888888889,21.3350874910926,-0.153796301162802,0,0,0,NA,NA,0,NA,NA,-4.89199082056681,-5.0807843208313,0.229709380007984
+9166,88843,444597.952,88943,444497.952,65,91,43.25,0.0540625,4.94986112764064,0.199061355311355,14.0450849718747,-0.168965494531658,0.0275,2.75,2,60.517542786349,0.725792630676949,1.5,14.4735358845104,5,-5.09345886442396,-5.27881050109863,0.260687794475255
+9167,88843,444497.952,88943,444397.952,66,91,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.0584213967109099,0.7425,74.25,1,99.1551699664667,0.868002848359588,74.25,55.599189783989,11.1803398132324,-5.27145968543159,-5.44104766845703,0.264727684696978
+9168,88843,444397.952,88943,444297.952,67,91,1.5,0.005,3.53553390593274,0.0833333333333333,27.3385403957214,-0.0270752201334835,0.0925,9.25,1,87.9580013362782,0.891613602492887,9.25,62.2100322826489,50,-5.35394672552745,-5.49045038223267,0.257944479733876
+9169,88843,444297.952,88943,444197.952,68,91,0,NA,NA,NA,NA,-0.0577684772573411,0,0,0,NA,NA,0,NA,NA,-5.26297601064046,-5.43613910675049,0.281843348234374
+9170,88843,444197.952,88943,444097.952,69,91,0,NA,NA,NA,NA,-0.0875565151777118,0,0,0,NA,NA,0,NA,NA,-4.99322005112966,-5.25049066543579,0.307893173870507
+9171,88843,444097.952,88943,443997.952,70,91,0,NA,NA,NA,NA,-0.0736651755683124,0,0,0,NA,NA,0,NA,NA,-4.52901755438911,-4.8507227897644,0.516146949088278
+9172,88843,443997.952,88943,443897.952,71,91,6.25,0.0208333333333333,6.39992071333953,0.376262626262626,30.7404171307015,-0.0705223087266495,0.01,1,2,34.5233986084855,0.494949494949495,0.75,2.5,0,-3.62914274136225,-4.16437196731567,0.49639514422084
+9173,88843,443897.952,88943,443797.952,72,91,18.25,0.0260714285714286,7.07193469248836,0.231594860166289,11.484062307474,-0.110073126460484,0.1525,15.25,2,86.2133948873367,0.855290254355207,8,11.025535239548,0,-3.09062835905287,-3.22061967849731,0.15922189896913
+9174,88843,443797.952,88943,443697.952,73,91,9.75,0.0975,20.3789187719491,0.542735042735043,NA,0.13484901158954,0.795,79.5,1,99.3602931148206,0.967479674796748,79.5,36.7766898593063,0,-2.95074808597565,-3.03168296813965,0.0954266004256387
+9175,88843,443697.952,88943,443597.952,74,91,0,NA,NA,NA,NA,0.111815776459734,0.665,66.5,1,98.8090595843688,0.964107319115844,66.5,68.5134854137449,25,-2.83515667915344,-2.90687227249146,0.0932655232083841
+9176,88843,443597.952,88943,443497.952,75,91,17,0.0425,10.6221758378593,0.336415816326531,12.661237755615,0.00236571351648308,0.1625,16.25,1,92.2068700432412,0.968300092458064,16.25,1.26263181246244,0,-2.69450545310974,-2.80027222633362,0.114579915888703
+9177,88843,443497.952,88943,443397.952,76,91,16.5,0.033,8.10340626131774,0.224358974358974,14.6011261594915,0.0146064563011896,0.3575,35.75,2,94.5007608456929,0.887129830397719,33.25,12.6374769410887,0,-2.82422396871779,-3.28578639030457,0.534486900970103
+9178,88843,443397.952,88943,443297.952,77,91,0.5,0.0025,0,0,11.1803398874989,-0.0448198188411334,0.1625,16.25,1,92.2068700432412,0.862633733984943,16.25,77.3458624619704,41.2310562133789,-3.09010031488207,-4.53552865982056,1.58246346613666
+9179,88843,443297.952,88943,443197.952,78,91,0,NA,NA,NA,NA,0.0383105287200306,0.1225,12.25,2,88.135782970365,0.877899877899878,11.75,98.9142684936523,81.3941040039062,-5.00008157889048,-5.25877666473389,0.549488915353929
+9180,88843,443197.952,88943,443097.952,79,91,0,NA,NA,NA,NA,0.0390087328250229,0.19,19,6,82.1561824989739,0.705177814630551,9.25,67.9412735888832,30,-5.31805499394735,-5.38301658630371,0.106808581794275
+9181,88843,443097.952,88943,442997.952,80,91,0,NA,NA,NA,NA,0.0840670504173613,0.635,63.5,2,96.5829642431507,0.896396914930356,55.5,60.6583473776269,15,-5.38996907075246,-5.43818664550781,0.0715401913461396
+9182,88843,442997.952,88943,442897.952,81,91,0.75,0.0025,0,0,37.4998205538659,0.0287085446191486,0.105,10.5,2,82.430834209702,0.779683688724526,6.25,34.2605461393084,0,-5.42576710383097,-5.47786855697632,0.0908810801178633
+9183,88843,442897.952,88943,442797.952,82,91,0,NA,NA,NA,NA,0.0768111289143417,0.645,64.5,1,98.7097599330033,0.959175341906512,64.5,78.2723181081373,42.7200164794922,-5.38595962524414,-5.46506834030151,0.0996527210740543
+9184,88843,442797.952,88943,442697.952,83,91,1,0.01,5,0.25,NA,0.085936091782205,0.8275,82.75,1,99.4773714744283,0.972173913043478,82.75,53.5703396984458,0,-5.32408332824707,-5.37493419647217,0.0713214655909867
+9185,88843,442697.952,88943,442597.952,84,91,1,0.005,2.5,0.166666666666667,15.8113883008419,-0.0731949705602892,0.085,8.5,2,79.405063156188,0.824355971896956,5.25,44.2247713874368,0,-5.31985704104106,-5.40378761291504,0.093890054846237
+9186,88843,442597.952,88943,442497.952,85,91,0,NA,NA,NA,NA,0.0417072495377124,0.5475,54.75,1,98.1501328589528,0.897085906185679,54.75,76.7049456382995,20,-5.35335980521308,-5.44399118423462,0.183305572347903
+9187,88843,442497.952,88943,442397.952,86,91,15,0.05,12.0203761909486,0.350943396226415,12.1676051329096,-0.0364714982436726,0.005,0.5,1,30.8308651382582,1,0.5,35.8779449462891,35.355339050293,-5.00970983505249,-5.38469886779785,0.545678806836523
+9188,88843,442397.952,88943,442297.952,87,91,1.5,0.015,7.33437188798344,0.166666666666667,NA,0.0244801377072508,0.28,28,3,93.1165653630499,0.903740374037404,26.75,71.2101622309004,40,-4.63133849038018,-4.89112329483032,0.304941039448769
+9189,88843,442297.952,88943,442197.952,88,91,0,NA,NA,NA,NA,-0.100729481809249,0.0475,4.75,1,81.114133276783,0.891392886234048,4.75,131.398158826326,113.137084960938,-4.71518218517303,-4.98357963562012,0.294464922405829
+9190,88843,442197.952,88943,442097.952,89,91,0,NA,NA,NA,NA,-0.141891132500023,0,0,0,NA,NA,0,NA,NA,-5.00638257132636,-5.10358333587646,0.13059822475391
+9191,88843,442097.952,88943,441997.952,90,91,0,NA,NA,NA,NA,-0.0935953142238486,0.035,3.5,1,77.1303955881659,0.896373056994819,3.5,151.534841264997,142.126708984375,-5.11829476886325,-5.16580533981323,0.0834031415367115
+9192,88843,441997.952,88943,441897.952,91,91,0,NA,NA,NA,NA,-0.106442118149134,0.01,1,1,52.6315789473684,0.747474747474748,1,172.36629486084,169.705627441406,-5.15310780207316,-5.19507169723511,0.0666696622101091
+9193,88843,441897.952,88943,441797.952,92,91,0,NA,NA,NA,NA,-0.194454925954342,0,0,0,NA,NA,0,NA,NA,-5.17579873402913,-5.2135066986084,0.0628345993206618
+9194,88843,441797.952,88943,441697.952,93,91,0,NA,NA,NA,NA,-0.0352196518244455,0.13,13,2,89.1365220193996,0.935425545654139,12.75,286.538321861854,265.188629150391,-5.22933717568715,-5.25871276855469,0.0393081164754995
+9195,88843,441697.952,88943,441597.952,94,91,0,NA,NA,NA,NA,0.0500010735337855,0.4325,43.25,2,95.1917249914617,0.801140679159819,36.75,234.427224396281,173.349365234375,-5.23356358210246,-5.26817083358765,0.0714669999474631
+9196,88843,441597.952,88943,441497.952,95,91,0,NA,NA,NA,NA,-0.0245201415015617,0.0625,6.25,1,84.2105263157895,0.84,6.25,188.433825683594,165.52946472168,-5.14808487892151,-5.2408390045166,0.120641435271448
+9197,88843,441497.952,88943,441397.952,96,91,0,NA,NA,NA,NA,-0.00624037346129626,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,179.266534244313,162.864974975586,-5.12215593126085,-5.16111993789673,0.0699424795472593
+9198,88843,441397.952,88943,441297.952,97,91,0,NA,NA,NA,NA,-0.0219037383723662,0,0,0,NA,NA,0,NA,NA,-5.12820573647817,-5.1634840965271,0.0617372562354873
+9199,88843,441297.952,88943,441197.952,98,91,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.0315939349816745,0.07,7,2,78.0268594129004,0.80884109916368,5.5,61.2979048320225,5,-5.1533006562127,-5.21602725982666,0.106726632978281
+9200,88843,441197.952,88943,441097.952,99,91,0,NA,NA,NA,NA,-0.0720376532219234,0.1225,12.25,2,84.4574333822708,0.837199837199837,9.75,102.607086181641,68.0073547363281,-5.13858242829641,-5.23032855987549,0.135138234965822
+9201,88943,451097.952,89043,450997.952,0,92,0.75,0.0075,3.27019417631815,0.277777777777778,NA,-0.217953862808645,0,0,0,NA,NA,0,NA,NA,-2.50393489996592,-2.67986512184143,0.240705249087078
+9202,88943,450997.952,89043,450897.952,1,92,7.75,0.0775,28.0968183780568,0.446236559139785,NA,-0.185166976191103,0,0,0,NA,NA,0,NA,NA,-2.51944433152676,-2.6560652256012,0.251257062916211
+9203,88943,450897.952,89043,450797.952,2,92,0,NA,NA,NA,NA,-0.11006053551333,0,0,0,NA,NA,0,NA,NA,-3.26177487770716,-3.83348608016968,0.744424913342924
+9204,88943,450797.952,89043,450697.952,3,92,0,NA,NA,NA,NA,-0.0404555895544036,0,0,0,NA,NA,0,NA,NA,-4.09779179096222,-4.26406240463257,0.245947974531566
+9205,88943,450697.952,89043,450597.952,4,92,0.5,0.005,3.53553390593274,0.0833333333333333,NA,-0.0554134947342754,0,0,0,NA,NA,0,NA,NA,-4.33952951431274,-4.43867826461792,0.10182835451627
+9206,88943,450597.952,89043,450497.952,5,92,3.5,0.00583333333333333,1.98260281330518,0.130555555555556,24.291375877578,-0.209421836697438,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,6.41421356201172,5,-4.41177281737328,-4.50345134735107,0.0975600476167891
+9207,88943,450497.952,89043,450397.952,6,92,8,0.0114285714285714,3.18372852650595,0.142547928262214,16.2962525019049,-0.0029116203013109,0.205,20.5,2,90.5592393688167,0.921925829538061,18.5,23.6067844949118,0,-4.50101586182912,-4.55145740509033,0.0778426733534979
+9208,88943,450397.952,89043,450297.952,7,92,22.25,0.0370833333333333,6.61005946404739,0.258030626780627,12.8524838121819,0.00148400173082337,0.0425,4.25,2,75.5148741418764,0.83289817232376,4,5.50434606215533,0,-4.58783695101738,-4.66145324707031,0.0675664541035352
+9209,88943,450297.952,89043,450197.952,8,92,15.5,0.0516666666666667,6.36005076514696,0.230555555555556,23.2404531833319,0.011582312829596,0.15,15,2,86.1172548723857,0.796380090497738,7.75,16.1307378133138,0,-4.69739937782288,-4.77713108062744,0.0861286484043973
+9210,88943,450197.952,89043,450097.952,9,92,26,0.26,20.8146520394398,0.830128205128205,NA,-0.0374552506281543,0.0775,7.75,1,86.3573366287605,0.978319783197832,7.75,24.0138872208134,7.07106781005859,-4.8019376595815,-4.86586999893188,0.0688229943225893
+9211,88943,450097.952,89043,449997.952,10,92,56.5,0.2825,21.7884210429899,0.506324404761905,11.1803398874989,-0.0511017961823381,0,0,0,NA,NA,0,NA,NA,-4.83050581812859,-4.86295366287231,0.0444478378554825
+9212,88943,449997.952,89043,449897.952,11,92,82.5,0.4125,24.5020425126223,0.799142145558528,10,0.0685662531983689,0.8025,80.25,1,99.3879413454111,0.866315745498601,80.25,0.787277316750024,0,-4.84635217984517,-4.91396999359131,0.0715746157861396
+9213,88943,449897.952,89043,449797.952,12,92,45.25,0.150833333333333,11.7316538557424,0.324906367041198,10.3934466291663,0.0817193215468433,0.9125,91.25,1,99.7534323937872,0.867686582592516,91.25,10.6798428522397,0,-4.91310733556747,-5.04632997512817,0.133243851805286
+9214,88943,449797.952,89043,449697.952,13,92,68.25,0.2275,17.6098115792192,0.560340330617164,11.937129433614,0.0406657697448099,0.4975,49.75,2,96.0800848643523,0.78966953848643,42.5,1.6829456923595,0,-4.87971719106038,-5.04162931442261,0.160043272044981
+9215,88943,449697.952,89043,449597.952,14,92,55.5,0.13875,13.1646532871621,0.386780543785311,11.1803398874989,0.0291740703451069,0.3225,32.25,5,89.1414898008026,0.799010756065007,21.75,1.82445999263793,0,-4.67598885297775,-4.90204572677612,0.255134839054622
+9216,88943,449597.952,89043,449497.952,15,92,76.75,0.127916666666667,7.25421915199864,0.257974128850124,11.4235032770828,0.0949188465975749,0.845,84.5,1,99.5375969134692,0.919228633449443,84.5,1.0636019960663,0,-4.13191151618958,-4.57021188735962,1.15650778385433
+9217,88943,449497.952,89043,449397.952,16,92,60.5,0.3025,22.3631254830883,0.712436256553904,11.1803398874989,-0.00112140515921055,0.23,23,3,89.6562217569907,0.825783972125436,18.5,1.89284930021867,0,-2.97606290131807,-3.96033430099487,1.41394485035339
+9218,88943,449397.952,89043,449297.952,17,92,17.5,0.025,4.68856551039498,0.226031746031746,13.071830771247,0.0126319995958693,0.075,7.5,2,78.0843273950357,0.801434087148373,3.75,10.8476360956828,0,-3.34672369559606,-3.46859955787659,0.11178570154652
+9219,88943,449297.952,89043,449197.952,18,92,38.25,0.095625,11.7441229019721,0.38,10.5901699437495,-0.0117578954461305,0.0375,3.75,4,53.2106498128728,0.622195985832349,1.5,1.80473785400391,0,-3.24688644707203,-3.34239149093628,0.14248833808466
+9220,88943,449197.952,89043,449097.952,19,92,56.75,0.141875,11.9259535208127,0.479439843570278,11.0355339059327,0.0257059123469116,0.265,26.5,5,85.2904963893398,0.821918296114257,19.75,1.38746290386848,0,-2.81703150272369,-3.13913416862488,0.416348414144738
+9221,88943,449097.952,89043,448997.952,20,92,6,0.00666666666666667,2.2823221161077,0.103703703703704,15.2841488430307,0.0165276296276443,0.0475,4.75,3,69.7437099689206,0.746583401212779,3.5,15.6623930680124,7.07106781005859,-2.29428674777349,-2.63088726997375,0.352225192468686
+9222,88943,448997.952,89043,448897.952,21,92,23.5,0.0261111111111111,4.90848346638697,0.289717435795867,12.2026249325452,0.00664923159131831,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,20.2400065830776,10,-1.94648169726133,-2.20770597457886,0.253926221558224
+9223,88943,448897.952,89043,448797.952,22,92,6,0.00666666666666667,1.99987552112514,0.131687242798354,16.63035900294,0.0152321612122432,0.0175,1.75,4,28.9394712793554,0.363867684478371,0.75,12.7373741694859,5,-1.84703529874484,-2.08416271209717,0.250263988011234
+9224,88943,448797.952,89043,448697.952,23,92,39,0.078,14.230203538803,0.394390451832907,10,0.028190812279463,0.2225,22.25,4,90.3613075575242,0.668345163704018,19,4.21598648757077,0,-1.86328268796206,-2.09770536422729,0.250270641920785
+9225,88943,448697.952,89043,448597.952,24,92,26.75,0.0535,11.921222000671,0.303611111111111,13.8481919625833,0.00592804451647908,0.1225,12.25,2,88.0932616121197,0.769366436033103,11.5,7.12683194997359,0,-1.89654649297396,-2.08332133293152,0.228002383300716
+9226,88943,448597.952,89043,448497.952,25,92,22,0.055,7.82356593699728,0.31426656920078,10.2950849718747,0.00554152012689883,0.08,8,4,70.2454167701881,0.728260869565217,3.75,3.35604822635651,0,-1.93599765747786,-2.08883929252625,0.208780380664062
+9227,88943,448497.952,89043,448397.952,26,92,8.75,0.021875,4.99449749912078,0.317791005291005,12.8757038496822,-0.00197359872332527,0.0975,9.75,3,79.3957112606579,0.829533347538888,5.5,3.86269104786408,0,-1.92296928167343,-2.07354617118835,0.167850140957315
+9228,88943,448397.952,89043,448297.952,27,92,16.25,0.0203125,6.07191139499717,0.280975877192982,17.943208587029,-0.0286643442737295,0.0725,7.25,2,82.0198514076373,0.862361644778345,6.75,14.5404357910156,0,-1.86233311891556,-1.96983635425568,0.126432396206933
+9229,88943,448297.952,89043,448197.952,28,92,6,0.02,4.73717716981027,0.23015873015873,16.6666666666667,-0.0301511098854462,0,0,0,NA,NA,0,NA,NA,-1.84888323148092,-1.96460556983948,0.12975183197111
+9230,88943,448197.952,89043,448097.952,29,92,25.75,0.0321875,4.31344666733925,0.119459219858156,11.3306188778075,0.0242028230054439,0.15,15,6,79.8224326152527,0.785067873303167,8.75,7.17622938156128,0,-1.94778425991535,-2.04571199417114,0.10773713104845
+9231,88943,448097.952,89043,447997.952,30,92,21.5,0.0165384615384615,4.42652476339268,0.259099672257567,12.129473483556,0.00757626960159541,0.11,11,7,65.3738209303454,0.62040692377771,3,6.81000302054665,0,-2.05894035100937,-2.07999992370605,0.0388899596961682
+9232,88943,447997.952,89043,447897.952,31,92,0,NA,NA,NA,NA,-0.0280623389795073,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,48.5606617174651,31.6227760314941,-2.06434834003448,-2.07985997200012,0.0230661383852101
+9233,88943,447897.952,89043,447797.952,32,92,0.75,0.0025,0,0,15.8113883008419,-0.039846824494507,0,0,0,NA,NA,0,NA,NA,-2.01636601239443,-2.04152083396912,0.0261598211083285
+9234,88943,447797.952,89043,447697.952,33,92,4.25,0.010625,5.40241810985712,0.15625,11.1803398874989,-0.221748879407533,0,0,0,NA,NA,0,NA,NA,-1.97259120146434,-1.99241840839386,0.0392101452850817
+9235,88943,447697.952,89043,447597.952,34,92,0,NA,NA,NA,NA,-0.220731765129603,0,0,0,NA,NA,0,NA,NA,-1.90638289600611,-1.96074962615967,0.0655470605993503
+9236,88943,447597.952,89043,447497.952,35,92,1.25,0.0025,0,0,21.1965531079764,-0.136429158703831,0,0,0,NA,NA,0,NA,NA,-1.90260982513428,-1.96210110187531,0.0673602773524958
+9237,88943,447497.952,89043,447397.952,36,92,2,0.005,1.9736798763904,0.09375,16.6339197367066,0.0172805795332533,0.27,27,1,95.1342058036908,0.852476290832455,27,51.9264226312991,10,-2.02417685836554,-2.13440084457397,0.109204833739198
+9238,88943,447397.952,89043,447297.952,37,92,27.75,0.02775,5.54352287755325,0.224148512306407,12.9352407963339,0.0173649267060864,0.19,19,5,82.8063752382215,0.68675142804496,11.25,3.96053013048674,0,-2.23236699899038,-2.2997043132782,0.114587027082816
+9239,88943,447297.952,89043,447197.952,38,92,15.5,0.0103333333333333,2.49989144860442,0.155026455026455,13.3023636832191,-0.0157787756407561,0.0875,8.75,5,69.7721835116781,0.73547472838923,5.25,4.14980387006487,0,-2.38685858249664,-2.44262933731079,0.061750032009211
+9240,88943,447197.952,89043,447097.952,39,92,2.25,0.00375,1.13591008663263,0.0555555555555556,20.9516337549002,-0.00161676082389022,0.09,9,5,71.5332599894281,0.578754578754579,4.75,18.0161337852478,0,-2.43380757172902,-2.44703054428101,0.0339043047560831
+9241,88943,447097.952,89043,446997.952,40,92,20,0.025,5.46509257598793,0.322533728054672,12.4733858307738,-0.00672771529232705,0.0475,4.75,1,81.114133276783,0.927595257489366,4.75,3.50014817087274,0,-2.31730661541224,-2.43005657196045,0.211205487969778
+9242,88943,446997.952,89043,446897.952,41,92,60,0.3,16.9489574740171,0.445955369595537,43.0116263352131,-0.0566782567778137,0,0,0,NA,NA,0,NA,NA,-2.11876302957535,-2.3424117565155,0.555785219975369
+9243,88943,446897.952,89043,446797.952,42,92,23.25,0.2325,19.4607871888629,0.849462365591398,NA,-0.0560315580418683,0,0,0,NA,NA,0,NA,NA,-2.20731154829264,-2.50426268577576,0.459689721610717
+9244,88943,446797.952,89043,446697.952,43,92,10.25,0.1025,25.5778177220249,0.601626016260163,NA,-0.0139420270718131,0.0425,4.25,2,69.8040670187532,0.70757180156658,2.5,36.8561216242173,11.1803398132324,-2.53346133232117,-2.6589503288269,0.196524358357583
+9245,88943,446697.952,89043,446597.952,44,92,40.75,0.135833333333333,16.8441637220512,0.472669349429913,10,-0.0310300202600047,0.0025,0.25,1,0,NA,0.25,0,0,-2.68019860982895,-2.70996785163879,0.055004713084822
+9246,88943,446597.952,89043,446497.952,45,92,1.25,0.0025,0,0,21.193114385991,-0.00821456306244727,0.025,2.5,1,71.9760246298065,1,2.5,54.8342800140381,47.1699066162109,-2.67943739891052,-2.70979690551758,0.0496701643417565
+9247,88943,446497.952,89043,446397.952,46,92,0.25,0.0025,0,0,NA,-0.0580342658982045,0,0,0,NA,NA,0,NA,NA,-2.54496961832047,-2.59653902053833,0.0900115460635562
+9248,88943,446397.952,89043,446297.952,47,92,1.75,0.0025,0,0,19.3113740780777,0.0539403912771377,0.53,53,1,98.0336545290164,0.978399395183065,53,32.5473812031296,5,-2.48302559554577,-2.55054879188538,0.0825251414952996
+9249,88943,446297.952,89043,446197.952,48,92,1.25,0.003125,0.625,0.0416666666666667,17.0124232576535,0.0463946598593293,0.37,37,3,94.1915393623945,0.923856381420957,35.25,58.3645896653871,7.07106781005859,-2.65761268138885,-2.79744338989258,0.163665443186091
+9250,88943,446197.952,89043,446097.952,49,92,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,30.1317678281356,0.0252033092644706,0.42,42,2,96.677583359915,0.944382647385984,41.75,19.3797614006769,0,-2.90814827382565,-3.07522296905518,0.145519641615915
+9251,88943,446097.952,89043,445997.952,50,92,1,0.005,2.5,0.166666666666667,36.0555127546399,-0.0370743397107799,0,0,0,NA,NA,0,NA,NA,-3.02945236365,-3.16110515594482,0.132271821550372
+9252,88943,445997.952,89043,445897.952,51,92,19,0.0475,8.84118709595403,0.327472527472527,10,0.00768922375889815,0.35,35,1,96.3667973186472,0.939903846153846,35,37.981263256073,0,-3.14488212764263,-3.36524319648743,0.188525549679459
+9253,88943,445897.952,89043,445797.952,52,92,3.5,0.0116666666666667,2.67298335242324,0.185185185185185,41.6821097757926,0.0172835773808038,0.2275,22.75,2,90.1720174116098,0.896120500219745,15.75,40.1870492369264,11.1803398132324,-3.44420862197876,-3.73584771156311,0.345318280895271
+9254,88943,445797.952,89043,445697.952,53,92,0.25,0.0025,0,0,NA,0.0452094824298547,0.34,34,3,90.381465127659,0.853372434017595,23,40.4043368591982,5,-4.31644582748413,-4.67672538757324,0.493420270704124
+9255,88943,445697.952,89043,445597.952,54,92,0.25,0.0025,0,0,NA,0.122455527458078,0.765,76.5,2,98.9945978929264,0.896751355138464,76.25,43.9550716612074,11.1803398132324,-4.863765001297,-4.99355602264404,0.187542448195697
+9256,88943,445597.952,89043,445497.952,55,92,1.75,0.00583333333333333,1.85910462715696,0.1,41.5427175967917,0.164192664859365,0.8925,89.25,2,99.1773205660635,0.903674143387918,88.5,31.1940478690866,0,-5.00985332330068,-5.09319162368774,0.0892097924618419
+9257,88943,445497.952,89043,445397.952,56,92,24,0.24,25.0632519430182,0.819444444444445,NA,0.122568429429521,0.7675,76.75,1,99.2554721522595,0.970234773226179,76.75,37.6449177148676,0,-5.05216670036316,-5.15875244140625,0.115036379497032
+9258,88943,445397.952,89043,445297.952,57,92,41.5,0.415,29.7143615827326,0.854417670682731,NA,0.042341448456765,0.4,40,2,94.1566135186162,0.937641723356009,31.75,18.1645929455757,0,-5.07336763540904,-5.18420314788818,0.136721930615546
+9259,88943,445297.952,89043,445197.952,58,92,41,0.41,29.3887179436909,0.875,NA,0.0122603433511176,0.2375,23.75,1,94.4633857675247,0.922854387656702,23.75,0.105263157894737,0,-5.13153257966042,-5.20917987823486,0.105605918202184
+9260,88943,445197.952,89043,445097.952,59,92,27.75,0.2775,25.871019583758,0.843843843843844,NA,-0.03850787101881,0,0,0,NA,NA,0,NA,NA,-5.17837691307068,-5.21001863479614,0.0536706948712743
+9261,88943,445097.952,89043,444997.952,60,92,11.5,0.0575,12.8053586732179,0.587024087024087,87.3212459828649,-0.0564177205835585,0,0,0,NA,NA,0,NA,NA,-5.13400548696518,-5.17942523956299,0.0609230228948351
+9262,88943,444997.952,89043,444897.952,61,92,8,0.0133333333333333,3.67292392426662,0.178188131313131,11.8169499062491,-0.0918079867918277,0,0,0,NA,NA,0,NA,NA,-5.0372752348582,-5.07852602005005,0.0563325087043683
+9263,88943,444897.952,89043,444797.952,62,92,3.5,0.00388888888888889,1.06345197909616,0.0740740740740741,13.7999903882935,-0.0418547523872985,0.0075,0.75,1,44.4894453484604,1,0.75,40.3700561523438,38.0788650512695,-4.99726423621178,-5.01774215698242,0.0379484126908963
+9264,88943,444797.952,89043,444697.952,63,92,0.25,0.0025,0,0,NA,-0.0465039599543889,0,0,0,NA,NA,0,NA,NA,-5.01599117120107,-5.05561876296997,0.0691275930994757
+9265,88943,444697.952,89043,444597.952,64,92,4.75,0.00791666666666667,2.39993944494072,0.159722222222222,18.4517796864425,-0.038084030566024,0.0125,1.25,1,58.1880425789518,1,1.25,4.41421356201172,0,-5.14580303430557,-5.29485988616943,0.134924520244917
+9266,88943,444597.952,89043,444497.952,65,92,7,0.0233333333333333,8.0014070808351,0.246212121212121,11.380711874577,-0.00475527365354765,0.0775,7.75,2,84.2355015882798,0.848238482384824,7.5,25.781117839198,7.07106781005859,-5.35435505708059,-5.47269678115845,0.150089005965041
+9267,88943,444497.952,89043,444397.952,66,92,0,NA,NA,NA,NA,0.0465586914363666,0.48,48,3,93.5809199758034,0.810933448573898,36.75,104.729140778383,62.6498222351074,-5.50724196434021,-5.57278490066528,0.10567461924339
+9268,88943,444397.952,89043,444297.952,67,92,0,NA,NA,NA,NA,0.0342746185089345,0.275,27.5,5,83.5481457362427,0.74354531277075,8.5,84.2903916098855,60.2079734802246,-5.58965775370598,-5.62366485595703,0.0675426917215274
+9269,88943,444297.952,89043,444197.952,68,92,0.5,0.0025,0,0,32.0156211871642,-0.0270096099605053,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,92.655632019043,89.0224609375,-5.46484033266703,-5.5444540977478,0.13548406103618
+9270,88943,444197.952,89043,444097.952,69,92,0.75,0.00375,1.76776695296637,0.0416666666666667,32.0156211871642,-0.0415372794161294,0,0,0,NA,NA,0,NA,NA,-5.20330309867859,-5.33002376556396,0.165581633210208
+9271,88943,444097.952,89043,443997.952,70,92,0.25,0.0025,0,0,NA,-0.0659457386464055,0.025,2.5,1,71.9760246298065,1,2.5,25.2691167831421,15,-4.85337058703105,-5.06183671951294,0.33205586972971
+9272,88943,443997.952,89043,443897.952,71,92,0.75,0.00375,1.76776695296637,0.0416666666666667,91.2414379544733,-0.0374522201215314,0,0,0,NA,NA,0,NA,NA,-3.98220363259315,-4.5875768661499,0.6210755700429
+9273,88943,443897.952,89043,443797.952,72,92,10.75,0.00826923076923077,4.94272493412564,0.104700854700855,16.5581616981041,-0.244913031267934,0,0,0,NA,NA,0,NA,NA,-3.14195148150126,-3.35317063331604,0.287167796048397
+9274,88943,443797.952,89043,443697.952,73,92,33.5,0.111666666666667,13.0222035559633,0.384366096866097,15.7868932583326,-0.0801209629629739,0.1225,12.25,4,79.7464150979091,0.728666395333062,8,3.2097847607671,0,-2.82329021394253,-2.92864799499512,0.147351130067655
+9275,88943,443697.952,89043,443597.952,74,92,23.5,0.0783333333333333,10.4650987293373,0.382271241830065,10,0.00578572195746347,0.145,14.5,4,79.5201664825513,0.719298245614035,5.5,10.7452631325557,0,-2.68957291046778,-2.81812429428101,0.104263841620232
+9276,88943,443597.952,89043,443497.952,75,92,32.25,0.080625,11.167076967629,0.306763285024155,13.9754248593737,0.022357474635528,0.3,30,2,92.9816994554978,0.895150720838794,26.5,3.65112036069234,0,-2.6572732925415,-2.80016493797302,0.190417356545615
+9277,88943,443497.952,89043,443397.952,76,92,2.5,0.00625,3.25560233423245,0.1125,11.1803398874989,-0.0168164788185095,0.195,19.5,5,85.1664895423777,0.774957241875956,15.75,30.6003683285835,7.07106781005859,-2.97028545538584,-4.15957164764404,1.07051580394715
+9278,88943,443397.952,89043,443297.952,77,92,1,0.01,3.53553390593274,0.416666666666667,NA,0.0277139673291822,0.27,27,2,90.957279314753,0.80330172110994,18.5,30.9442487116213,0,-4.5459069609642,-4.95916557312012,0.785460529732046
+9279,88943,443297.952,89043,443197.952,78,92,1.5,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,0.0548197598266415,0.63,63,2,97.8322727445804,0.833944113605131,61.5,24.9736432953486,0,-5.16780298948288,-5.30918645858765,0.199401305959122
+9280,88943,443197.952,89043,443097.952,79,92,0,NA,NA,NA,NA,0.0468545631645247,0.36,36,3,92.2034602664374,0.852035984848485,21.25,93.5538913408915,35,-5.36783921718597,-5.41443777084351,0.0649518427663494
+9281,88943,443097.952,89043,442997.952,80,92,0,NA,NA,NA,NA,0.0672199965081018,0.8975,89.75,1,99.7075809055868,0.971305595408895,89.75,121.800519597896,79.0569381713867,-5.44212913513184,-5.50243759155273,0.0532864560657085
+9282,88943,442997.952,89043,442897.952,81,92,0.75,0.0075,3.27019417631815,0.277777777777778,NA,0.0142165593658865,0.35,35,2,93.1286541271183,0.909855769230769,28.5,62.9957768304007,26.9258232116699,-5.52362891038259,-5.57555866241455,0.0608033686647675
+9283,88943,442897.952,89043,442797.952,82,92,6.25,0.03125,7.10465604233365,0.402173913043478,60,0.091714867099945,0.845,84.5,1,99.5375969134692,0.969710737543541,84.5,42.8192214288655,0,-5.54992884397507,-5.60379838943481,0.0797023806439065
+9284,88943,442797.952,89043,442697.952,83,92,4,0.02,7.99727244338064,0.166666666666667,31.6227766016838,-0.0634355994741782,0.2,20,2,91.7739825539046,0.903169014084507,19.25,30.9115484237671,0,-5.50099651018779,-5.59485101699829,0.110334806947478
+9285,88943,442697.952,89043,442597.952,84,92,0,NA,NA,NA,NA,-0.0440361766325395,0.01,1,1,52.6315789473684,0.747474747474748,1,133.362998962402,128.062484741211,-5.50356078147888,-5.5857081413269,0.104549943739277
+9286,88943,442597.952,89043,442497.952,85,92,0,NA,NA,NA,NA,0.0411358324349658,0.33,33,5,87.9291722631722,0.789434569889144,21,146.550826390584,102.591415405273,-5.53620020548503,-5.58116149902344,0.0648362383802404
+9287,88943,442497.952,89043,442397.952,86,92,0,NA,NA,NA,NA,0.0223224816119136,0.2725,27.25,3,90.976148126855,0.832539641006855,23,73.4736880031201,21.2132034301758,-5.50670403242111,-5.57428598403931,0.118012432490626
+9288,88943,442397.952,89043,442297.952,87,92,14.25,0.07125,15.0382089849446,0.227678571428571,11.1803398874989,-0.0238861217818339,0.345,34.5,1,96.3025628341184,0.969707984975161,34.5,30.9730290537295,5,-5.27641618251801,-5.49558782577515,0.341583812627284
+9289,88943,442297.952,89043,442197.952,88,92,1,0.01,4.34942231976673,0.291666666666667,NA,-0.141188528831117,0,0,0,NA,NA,0,NA,NA,-5.16208609938622,-5.35881042480469,0.220429254104472
+9290,88943,442197.952,89043,442097.952,89,92,0,NA,NA,NA,NA,-0.10379449154716,0,0,0,NA,NA,0,NA,NA,-5.18096474806468,-5.25422239303589,0.0969839876964
+9291,88943,442097.952,89043,441997.952,90,92,0,NA,NA,NA,NA,0.0638848004322062,0.635,63.5,1,98.6583599459141,0.959709911361805,63.5,199.746010607622,151.162170410156,-5.21704892317454,-5.28835725784302,0.0721191623690636
+9292,88943,441997.952,89043,441897.952,91,92,0,NA,NA,NA,NA,0.13693438476781,0.79,79,1,99.3416426267051,0.968040907638223,79,243.424852829945,173.277221679688,-5.26212868094444,-5.33202600479126,0.0702033158544041
+9293,88943,441897.952,89043,441797.952,92,92,0,NA,NA,NA,NA,-0.0616860196736525,0.215,21.5,2,89.8555872978922,0.875109279380542,16,310.208898499955,280.446075439453,-5.28648066520691,-5.34119844436646,0.0625051420008934
+9294,88943,441797.952,89043,441697.952,93,92,0,NA,NA,NA,NA,0.059416321174358,0.775,77.5,1,99.2846122710835,0.84779299847793,77.5,340.570185113722,278.028778076172,-5.22516345977783,-5.30364084243774,0.076989584893848
+9295,88943,441697.952,89043,441597.952,94,92,0,NA,NA,NA,NA,0.00394766333702137,0.33,33,1,96.1011760023317,0.925682789372639,33,330.752007917924,277.353576660156,-5.04413294792175,-5.17466163635254,0.168251483344504
+9296,88943,441597.952,89043,441497.952,95,92,0,NA,NA,NA,NA,-0.0205269031914122,0.0125,1.25,2,43.859649122807,0.594936708860759,1,285.975604248047,276.631530761719,-4.91110903024673,-5.03904914855957,0.13478087026599
+9297,88943,441497.952,89043,441397.952,96,92,0,NA,NA,NA,NA,0.00653052350400685,0.1225,12.25,2,88.3610054202382,0.837199837199837,11.75,260.17367958536,227.43132019043,-4.98443086942037,-5.05230951309204,0.0871995353994051
+9298,88943,441397.952,89043,441297.952,97,92,0,NA,NA,NA,NA,-0.00897158699946886,0.02,2,1,68.0470115164975,0.897959183673469,2,163.885942459106,158.113876342773,-4.990901440382,-5.05704641342163,0.0814123572473896
+9299,88943,441297.952,89043,441197.952,98,92,0,NA,NA,NA,NA,0.00721790308663913,0.3725,37.25,1,96.6396639945364,0.894925791340134,37.25,129.350192690856,90.5538558959961,-4.91748019059499,-5.01038455963135,0.0932187926609736
+9300,88943,441197.952,89043,441097.952,99,92,1.31578947368421,0.0125,4.2390073826009,0.433333333333333,NA,-0.0032325054298235,0.2625,26.25,3,89.3081541615959,0.799121155053358,13,48.4115586962019,14.1421356201172,-4.9092825949192,-4.99699306488037,0.0892941933313517
+9301,89043,451097.952,89143,450997.952,0,93,10.75,0.05375,14.4920687800642,0.547646604938272,15,-0.0508131745671562,0.3075,30.75,1,95.7718985824481,0.974097877644849,30.75,20.5008877855006,0,-3.31121333440145,-3.77487134933472,0.725512134681714
+9302,89043,450997.952,89143,450897.952,1,93,0,NA,NA,NA,NA,-0.157038726796584,0.06,6,1,83.7764057650598,0.916013437849944,6,117.758065223694,108.166542053223,-3.08920713265737,-3.4808144569397,0.650043652062497
+9303,89043,450897.952,89143,450797.952,2,93,0,NA,NA,NA,NA,-0.00214676165226592,0.1675,16.75,1,92.4032163835468,0.938399938399938,16.75,137.754643340609,108.166542053223,-3.84358943833245,-4.00645637512207,0.418514761148343
+9304,89043,450797.952,89143,450697.952,3,93,0,NA,NA,NA,NA,-0.054549359701482,0,0,0,NA,NA,0,NA,NA,-4.12181230386098,-4.22378396987915,0.124012010586839
+9305,89043,450697.952,89143,450597.952,4,93,0,NA,NA,NA,NA,-0.251702983492505,0,0,0,NA,NA,0,NA,NA,-4.18866920471191,-4.24918985366821,0.106341292966974
+9306,89043,450597.952,89143,450497.952,5,93,0.25,0.0025,0,0,NA,-0.363916218727827,0,0,0,NA,NA,0,NA,NA,-4.30376760164897,-4.41605758666992,0.131841274008422
+9307,89043,450497.952,89143,450397.952,6,93,9.25,0.0925,27.9322102859114,0.490990990990991,NA,-0.0634589129679443,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.5764911651611,5,-4.53207148445977,-4.59606313705444,0.100510693567239
+9308,89043,450397.952,89143,450297.952,7,93,3.25,0.0065,1.84753221933657,0.147222222222222,33.0098554861579,0.0228428573392011,0.2575,25.75,2,92.683183169782,0.934479934479934,24,39.6774949379338,5,-4.62606386343638,-4.6554160118103,0.0492597858313825
+9309,89043,450297.952,89143,450197.952,8,93,9.5,0.0135714285714286,4.24224882044046,0.195238095238095,11.9976366252402,0.0114799513930575,0.195,19.5,4,85.4775904990336,0.855972634800612,15.5,36.9527999437772,5,-4.66377443737454,-4.68676900863647,0.0304893800618416
+9310,89043,450197.952,89143,450097.952,9,93,12,0.015,3.99580047171184,0.235813492063492,11.4460970049771,-0.00885944303918223,0.0325,3.25,4,49.3251963757179,0.540625897215045,1.25,12.9647184518667,0,-4.69351895650228,-4.73662900924683,0.0468672054756994
+9311,89043,450097.952,89143,449997.952,10,93,6.5,0.013,4.54388404011997,0.167836257309942,12.9442719099992,0.0100911693573835,0.0225,2.25,3,48.3336560347601,0.658994032395567,1.5,16.4659264882406,10,-4.72945928573608,-4.80237579345703,0.0843815900467367
+9312,89043,449997.952,89143,449897.952,11,93,13.75,0.0229166666666667,3.76795038267986,0.257098765432099,18.9235032770828,0.0304438135595637,0.305,30.5,1,95.7330793639454,0.947914971190468,30.5,10.7688847526175,0,-4.88120778401693,-4.97327661514282,0.148633015420238
+9313,89043,449897.952,89143,449797.952,12,93,0,NA,NA,NA,NA,0.0672836692432247,0.8325,83.25,1,99.4947723752506,0.971525520252474,83.25,68.9735271808979,21.2132034301758,-5.1349577109019,-5.25075054168701,0.140303453113012
+9314,89043,449797.952,89143,449697.952,13,93,9,0.09,12.5735978844806,0.736111111111111,NA,0.0829524763301015,1,100,1,100,NA,100,42.2038118362427,0,-5.17332331339518,-5.27403354644775,0.163304023714456
+9315,89043,449697.952,89143,449597.952,14,93,65,0.65,32.9948027526863,0.896153846153846,NA,0.0673990177805535,0.8475,84.75,1,99.546047930594,0.805631569525076,84.75,7.28594485707691,0,-4.90837768713633,-5.13934469223022,0.237702933013739
+9316,89043,449597.952,89143,449497.952,15,93,74.5,0.3725,27.1341160548342,0.750114678899082,14.142135623731,0.0443522791866053,0.4275,42.75,3,92.7595843400674,0.789283981423719,25.75,0.567667063216717,0,-4.5374624994066,-4.71320772171021,0.27933650071812
+9317,89043,449497.952,89143,449397.952,16,93,28.75,0.0319444444444444,6.10224013359624,0.267070592995004,12.5349825581679,0.0169433200950425,0.235,23.5,2,92.6029231333511,0.852163087457205,22,2.42286044993299,0,-4.11414563655853,-4.41204977035522,0.408438294649686
+9318,89043,449397.952,89143,449297.952,17,93,23.75,0.0475,8.80913790766239,0.240805555555556,19.1239581748914,0.0218653068591811,0.1575,15.75,2,89.9400138326474,0.870515241435123,14.75,4.9937624855647,0,-3.66425400310092,-3.94267201423645,0.357269243138076
+9319,89043,449297.952,89143,449197.952,18,93,49.75,0.24875,18.6466124084414,0.599702380952381,11.1803398874989,0.0107643935371743,0.085,8.5,2,79.8703172457821,0.882903981264637,5.5,1.82561964147231,0,-3.3135934472084,-3.58978033065796,0.28182909241506
+9320,89043,449197.952,89143,449097.952,19,93,62.5,0.208333333333333,14.7000323089494,0.407445827570309,10,0.0217809752432026,0.3025,30.25,2,94.0347294997986,0.902248289345064,28.5,0.371900826446281,0,-3.06866908073425,-3.32864689826965,0.430876523794247
+9321,89043,449097.952,89143,448997.952,20,93,43.25,0.144166666666667,13.3190710270435,0.430047425474255,17.3385403957214,0.0122640309868984,0.0825,8.25,5,69.6830169474966,0.677061257442729,5,5.91052350130948,0,-2.56221265263028,-3.04812407493591,0.640903496484824
+9322,89043,448997.952,89143,448897.952,21,93,16.25,0.01625,3.68870107867336,0.205715811965812,14.8460027590863,0.0236303386479994,0.085,8.5,3,76.823022242191,0.765807962529274,4.5,4.66781088885139,0,-2.01889931162198,-2.50414347648621,0.476475898758119
+9323,89043,448897.952,89143,448797.952,22,93,22,0.0157142857142857,2.91158143407559,0.0994425547996977,13.3214450623534,0.0232929711357792,0.1375,13.75,3,85.2963314979547,0.853546910755149,11.75,2.42275286587802,0,-1.70441132121616,-1.85206210613251,0.191362284925077
+9324,89043,448797.952,89143,448697.952,23,93,32.75,0.0409375,6.93695807006137,0.290242763772176,11.4460970049771,0.00830007717217086,0.055,5.5,6,57.5277977857078,0.564270152505447,2.5,2.1395939913663,0,-1.63801069060961,-1.70022833347321,0.0785631610136451
+9325,89043,448697.952,89143,448597.952,24,93,13,0.0118181818181818,3.71853615506718,0.195045695045695,16.8937647846449,0.00226135369662643,0.125,12.5,4,82.47462767693,0.704201680672269,9.75,7.08740009307861,0,-1.61411450968848,-1.65124809741974,0.0765015892660948
+9326,89043,448597.952,89143,448497.952,25,93,33.25,0.0369444444444444,7.95512645052097,0.27874587838356,10.9490021847219,0.0368158056157336,0.3075,30.75,6,86.3733216133642,0.760405368214858,15.25,4.14406725255455,0,-1.59397387504578,-1.67294776439667,0.11821215214829
+9327,89043,448497.952,89143,448397.952,26,93,51.5,0.0735714285714286,10.8885249817989,0.499246345441998,10.7142857142857,0.0318974285294462,0.255,25.5,11,73.7310276314063,0.581912201562328,4.5,2.84104986751781,0,-1.65049640337626,-1.74483132362366,0.134459560199924
+9328,89043,448397.952,89143,448297.952,27,93,28,0.0233333333333333,4.8659186921206,0.243713450292398,11.9617516385414,0.0125877350265,0.1225,12.25,4,75.7016693031649,0.742233075566409,5,1.93877551020408,0,-1.70843891302745,-1.75997602939606,0.0905269519482394
+9329,89043,448297.952,89143,448197.952,28,93,18.25,0.0228125,5.93899620838635,0.334993224932249,12.024978056645,0.00146142261784917,0.0375,3.75,4,55.4770591302967,0.574970484061393,1.75,2.74535598754883,0,-1.72787010669708,-1.76934838294983,0.0680407529185579
+9330,89043,448197.952,89143,448097.952,29,93,35,0.035,6.95169486662836,0.229001406469761,10.5901699437495,0.0353446462536522,0.2325,23.25,7,86.6132296325201,0.717436521329618,17.5,3.50849356702579,0,-1.85314341386159,-1.95711314678192,0.109399602273567
+9331,89043,448097.952,89143,447997.952,30,93,64.75,0.1295,9.13657618727732,0.334266117969822,13.5214512632858,-0.0722563710768009,0.145,14.5,4,80.2773008583118,0.777777777777778,9.5,3.4088968737372,0,-1.99047431680891,-2.04663395881653,0.0844925880865878
+9332,89043,447997.952,89143,447897.952,31,93,2.25,0.0225,6.97183164967465,0.481481481481481,NA,-0.011519985526902,0.13,13,1,90.6657843098624,0.948340436523311,13,46.3783541459304,20,-2.02256792121463,-2.04877758026123,0.0524397953675581
+9333,89043,447897.952,89143,447797.952,32,93,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,12.7240226919466,-0.0900621818876243,0,0,0,NA,NA,0,NA,NA,-1.99461787939072,-2.03351950645447,0.049826936948491
+9334,89043,447797.952,89143,447697.952,33,93,0.75,0.0075,4.31546051979576,0.166666666666667,NA,-0.295531108295545,0,0,0,NA,NA,0,NA,NA,-1.90207942326864,-1.9606739282608,0.0897376691223257
+9335,89043,447697.952,89143,447597.952,34,93,2.5,0.005,2.36309210395915,0.133333333333333,11.1803398874989,-0.1766143321048,0,0,0,NA,NA,0,NA,NA,-1.74660316109657,-1.85597991943359,0.150566518536394
+9336,89043,447597.952,89143,447497.952,35,93,2.25,0.00321428571428571,0.714285714285714,0.0476190476190476,12.3875839626195,-0.060693631831673,0.175,17.5,1,92.6818041122695,0.931017491993102,17.5,59.7964656829834,41.2310562133789,-1.83965037928687,-1.89289057254791,0.113626369824911
+9337,89043,447497.952,89143,447397.952,36,93,0,NA,NA,NA,NA,-0.0339914769885945,0.3275,32.75,1,96.0662730877785,0.962669736043925,32.75,77.5001758837518,54.0832710266113,-2.03863899906476,-2.13827681541443,0.120627499100999
+9338,89043,447397.952,89143,447297.952,37,93,23.25,0.058125,8.32743908999838,0.237215909090909,14.5710678118655,-0.00864183673867956,0.1275,12.75,1,90.5233675365473,0.97365214241017,12.75,14.9597233416987,5,-2.23226025369432,-2.28740811347961,0.0974441347105573
+9339,89043,447297.952,89143,447197.952,38,93,2.75,0.0034375,1.06694173824159,0.0520833333333333,21.5491186749967,-0.01472163998822,0.115,11.5,1,89.742951983695,0.985513544835579,11.5,7.15087376470151,0,-2.35185690720876,-2.39794397354126,0.0563717435814373
+9340,89043,447197.952,89143,447097.952,39,93,5,0.00454545454545455,1.10043181778757,0.0757575757575758,15.0319532297441,-0.0412766706178081,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-2.39968911806742,-2.42825174331665,0.0478737759149372
+9341,89043,447097.952,89143,446997.952,40,93,8,0.00571428571428571,1.74903877400165,0.0882936507936508,13.5064288939625,-0.0272737723478804,0.0125,1.25,1,58.1880425789518,1,1.25,3,0,-2.4122478167216,-2.42900037765503,0.026451417896232
+9342,89043,446997.952,89143,446897.952,41,93,32.25,0.080625,7.63276792649179,0.292174796747967,16.4112377556149,-0.0299762317859859,0.0275,2.75,2,59.9885589551339,0.657240788346187,1.5,11.325719833374,0,-2.41417309972975,-2.456223487854,0.0668908827224567
+9343,89043,446897.952,89143,446797.952,42,93,10,0.1,16.5779618621313,0.708333333333333,NA,-0.0388063504034653,0,0,0,NA,NA,0,NA,NA,-2.49327154954275,-2.57927513122559,0.0978022088024562
+9344,89043,446797.952,89143,446697.952,43,93,17.75,0.08875,19.101320877365,0.528140885984023,18.0277563773199,-0.0172205061998829,0.0425,4.25,1,79.7330921014386,0.83289817232376,4.25,5.95371784883387,0,-2.62151583035787,-2.66095495223999,0.0563881330642096
+9345,89043,446697.952,89143,446597.952,44,93,34.5,0.0575,11.3870053827149,0.422058618769145,10.8333333333333,-0.028424940413588,0.0025,0.25,1,0,NA,0.25,0,0,-2.64586075146993,-2.68702459335327,0.0738948518610303
+9346,89043,446597.952,89143,446497.952,45,93,3.5,0.00318181818181818,0.681818181818182,0.0454545454545454,12.4433530911379,-0.00660116677165206,0.0075,0.75,1,44.4894453484604,1,0.75,31.4395179748535,29.1547584533691,-2.59693352381388,-2.68611216545105,0.109679945413215
+9347,89043,446497.952,89143,446397.952,46,93,2,0.004,1.15403883526363,0.0888888888888889,18.8589490236349,-0.0793651687554666,0,0,0,NA,NA,0,NA,NA,-2.53462693426344,-2.5803234577179,0.0559639178673219
+9348,89043,446397.952,89143,446297.952,47,93,3.75,0.00535714285714286,1.88151981404228,0.142857142857143,17.9859570624992,-0.0342282859518309,0.1575,15.75,2,90.2486115852276,0.913676827623415,15.25,27.7933973584856,5,-2.57444443305333,-2.67319989204407,0.100575950331075
+9349,89043,446297.952,89143,446197.952,48,93,3.75,0.00416666666666667,1.47446601959091,0.104938271604938,16.1648731036822,-0.0324247634304629,0.11,11,2,82.854372417392,0.817795323413301,5.75,16.2651869166981,5,-2.77676129341125,-2.86187291145325,0.150065644387502
+9350,89043,446197.952,89143,446097.952,49,93,1.5,0.003,0.5,0.0333333333333333,18.6938721971897,0.0290906952407613,0.3275,32.75,2,92.3586875127695,0.906674340109813,24.25,20.527423625684,0,-3.01965415477753,-3.10176253318787,0.117081542024581
+9351,89043,446097.952,89143,445997.952,50,93,1.25,0.003125,0.625,0.0416666666666667,24.9813624783961,-0.0277461342557035,0.0125,1.25,2,43.859649122807,0.594936708860759,1,16.1231056213379,10,-3.15525711907281,-3.19023132324219,0.0589901884970963
+9352,89043,445997.952,89143,445897.952,51,93,0,NA,NA,NA,NA,0.0613356621406274,0.7975,79.75,1,99.3695525162542,0.958984455108486,79.75,77.8028785562067,20,-3.27921867370605,-3.37388014793396,0.117720913776627
+9353,89043,445897.952,89143,445797.952,52,93,0.25,0.0025,0,0,NA,0.0239318054173054,0.175,17.5,1,92.6818041122695,0.921162847992116,17.5,83.4248198372977,65.7647323608398,-3.67202650176154,-3.97850441932678,0.43592166507314
+9354,89043,445797.952,89143,445697.952,53,93,0.75,0.0025,0,0,25.8772019008597,0.00537863253040996,0.02,2,1,68.0470115164975,0.897959183673469,2,13.7221434116364,5,-4.5425048271815,-4.81641387939453,0.380537747445171
+9355,89043,445697.952,89143,445597.952,54,93,0.25,0.0025,0,0,NA,0.0389075999903434,0.345,34.5,3,93.9393223941846,0.878831939900642,30.75,24.7644091067107,5,-4.96736001968384,-5.05632400512695,0.161817076856813
+9356,89043,445597.952,89143,445497.952,55,93,0,NA,NA,NA,NA,-0.0437631433450588,0.175,17.5,1,92.6818041122695,0.842325695984232,17.5,54.0030791146415,25.4950981140137,-5.11385928259956,-5.14360904693604,0.0621371965015339
+9357,89043,445497.952,89143,445397.952,56,93,0,NA,NA,NA,NA,-0.038227014913864,0.4075,40.75,1,97.0183110527583,0.893108298171589,40.75,80.5458559375599,43.0116271972656,-5.18194937705994,-5.21236896514893,0.0421441765209237
+9358,89043,445397.952,89143,445297.952,57,93,0.75,0.0025,0,0,17.4127682432574,-0.0813586635357933,0.21,21,1,93.778005777053,0.974513635205165,21,53.4221472967239,25,-5.22351291444567,-5.23999977111816,0.0336086838217333
+9359,89043,445297.952,89143,445197.952,58,93,0,NA,NA,NA,NA,-0.0738631675472425,0,0,0,NA,NA,0,NA,NA,-5.22160752614339,-5.23999977111816,0.0297414228121676
+9360,89043,445197.952,89143,445097.952,59,93,11.25,0.1125,18.5873676787275,0.711111111111111,NA,-0.0212047789985809,0.045,4.5,2,70.1209962713485,0.806088811324413,2.5,25.5758448706733,10,-5.16296418507894,-5.20974922180176,0.081103039789137
+9361,89043,445097.952,89143,444997.952,60,93,20,0.04,6.66238597944535,0.338249502699631,16.7082039324994,-0.0243552830108092,0.135,13.5,2,85.2270651615616,0.863260612841072,9.25,20.5561079802337,0,-5.03260183334351,-5.13787889480591,0.134821252267506
+9362,89043,444997.952,89143,444897.952,61,93,5.25,0.00308823529411765,0.669795784215367,0.0196078431372549,12.8984631971942,-0.102782563832416,0,0,0,NA,NA,0,NA,NA,-4.9362858666314,-5.01172304153442,0.119831952436252
+9363,89043,444897.952,89143,444797.952,62,93,0,NA,NA,NA,NA,-0.0134878741969442,0.14,14,2,89.4667671781306,0.868137137377128,13.5,51.4207280703953,33.5410194396973,-4.94327922662099,-4.98700714111328,0.0809369596310016
+9364,89043,444797.952,89143,444697.952,63,93,2,0.02,5.66186302844063,0.5,NA,-0.0568893524401938,0,0,0,NA,NA,0,NA,NA,-5.02347628275553,-5.07563066482544,0.0829925702815702
+9365,89043,444697.952,89143,444597.952,64,93,13.25,0.00946428571428572,2.5658152422568,0.147435897435897,10.4215499598211,-0.0506163758221737,0.0125,1.25,1,58.1880425789518,0.79746835443038,1.25,28.603182220459,22.3606796264648,-5.23634099960327,-5.3875584602356,0.154370960872463
+9366,89043,444597.952,89143,444497.952,65,93,0,NA,NA,NA,NA,0.0786420882097445,0.8475,84.75,1,99.546047930594,0.969310247819749,84.75,80.4976330197315,22.3606796264648,-5.49286609225803,-5.56574106216431,0.120874319027892
+9367,89043,444497.952,89143,444397.952,66,93,0,NA,NA,NA,NA,0.058267301467713,0.6725,67.25,1,98.8451498857927,0.866979064318645,67.25,77.5154700438772,35,-5.58721849653456,-5.615647315979,0.0511276865025011
+9368,89043,444397.952,89143,444297.952,67,93,1,0.01,7.07106781186548,0.125,NA,0.0345939558221289,0.25,25,4,86.9502933274359,0.792592592592593,17.75,35.9815957641602,11.1803398132324,-5.58833014965057,-5.60701084136963,0.0315908873230161
+9369,89043,444297.952,89143,444197.952,68,93,0,NA,NA,NA,NA,0.0550359812064562,0.6775,67.75,1,98.8688764291496,0.939081037449932,67.75,86.230903878863,55,-5.51889064576891,-5.57145261764526,0.100166342377545
+9370,89043,444197.952,89143,444097.952,69,93,0.75,0.0075,4.71404520791032,0.111111111111111,NA,-0.0315511857122328,0.0675,6.75,1,85.0052537126447,0.975060789326018,6.75,97.6442760891385,88.4590301513672,-5.3288555542628,-5.48874235153198,0.175209215832293
+9371,89043,444097.952,89143,443997.952,70,93,3,0.01,6.01641906717225,0.0833333333333333,25.6419413452242,-0.0135432038986073,0.195,19.5,1,93.3444522721621,0.936988027725268,19.5,26.0396987963945,11.1803398132324,-4.96759139166938,-5.17059659957886,0.301861643194258
+9372,89043,443997.952,89143,443897.952,71,93,1.75,0.00291666666666667,0.58925565098879,0.0138888888888889,22.6526461583402,-0.0255838364241208,0,0,0,NA,NA,0,NA,NA,-4.26520073413849,-4.69889354705811,0.547260082969261
+9373,89043,443897.952,89143,443797.952,72,93,16.5,0.0183333333333333,4.14826552190797,0.0823456790123457,18.8189155645434,-0.0906594914929565,0.015,1.5,1,62.2896536353828,1,1.5,4.51184463500977,0,-3.38619571261936,-3.79914999008179,0.469778411679395
+9374,89043,443797.952,89143,443697.952,73,93,1.75,0.00583333333333333,1.41300246086697,0.144444444444444,31.3610897106533,-0.113650448853296,0,0,0,NA,NA,0,NA,NA,-2.93788443009059,-3.02807140350342,0.205804996065874
+9375,89043,443697.952,89143,443597.952,74,93,34.5,0.08625,11.2478360482749,0.36503442149678,19.6434708026486,-0.0232958929704182,0.11,11,3,83.9956692590734,0.832979046462192,9.25,3.04309905659069,0,-2.69381252924601,-2.87413740158081,0.163773993909405
+9376,89043,443597.952,89143,443497.952,75,93,23,0.02875,6.48127694096275,0.274562930518119,14.7186394909145,6.39909927122062e-05,0.2525,25.25,2,94.2408376963351,0.8595687281731,25,11.7131859241146,0,-2.46361313263575,-2.7023446559906,0.338055407646044
+9377,89043,443497.952,89143,443397.952,76,93,15.75,0.0315,3.72804670818048,0.135593220338983,13.1622776601684,0.0242219017471871,0.32,32,2,93.0781913820862,0.83590002524615,23,10.4186398237944,0,-3.61867096689012,-4.36784267425537,1.27712053050189
+9378,89043,443397.952,89143,443297.952,77,93,26.25,0.0525,5.38721789938344,0.200673400673401,11.1803398874989,0.0326581334049843,0.305,30.5,3,91.1706627498368,0.81770239916664,19,13.3998930102489,0,-4.68918005625407,-4.93522882461548,0.417039223626775
+9379,89043,443297.952,89143,443197.952,78,93,1.5,0.003,0.707106781186548,0.0166666666666667,12.5498231854631,0.0471686245003366,0.4525,45.25,2,96.2294692013276,0.923669324609828,44,21.4343719377043,0,-5.16963175932566,-5.320481300354,0.212541024818666
+9380,89043,443197.952,89143,443097.952,79,93,0,NA,NA,NA,NA,0.0661163879977539,0.8375,83.75,1,99.5120172135984,0.951391420585733,83.75,120.818419157569,82.006103515625,-5.40738519032796,-5.45588207244873,0.0941986510795231
+9381,89043,443097.952,89143,442997.952,80,93,0,NA,NA,NA,NA,0.054675328367739,0.78,78,1,99.3038050834495,0.729437229437229,78,96.2063017625075,46.0977210998535,-5.52141642570496,-5.56849527359009,0.0622251197487878
+9382,89043,442997.952,89143,442897.952,81,93,32.25,0.3225,25.3337988399691,0.837209302325581,NA,-0.0957112240630522,0.0625,6.25,1,84.2105263157895,0.84,6.25,59.6178137207031,46.0977210998535,-5.59731525844998,-5.626305103302,0.0462309006605072
+9383,89043,442897.952,89143,442797.952,82,93,12,0.02,2.9166922451532,0.168925022583559,37.3796755775783,-0.059127707824664,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,15,0,-5.63676997025808,-5.64912176132202,0.0263304935032117
+9384,89043,442797.952,89143,442697.952,83,93,4,0.02,4.4029424644799,0.294444444444444,88.4590300647707,-0.0650034737195165,0.0025,0.25,1,0,NA,0.25,0,0,-5.64244524637858,-5.65196895599365,0.0337426379000813
+9385,89043,442697.952,89143,442597.952,84,93,0,NA,NA,NA,NA,0.0343730489493282,0.425,42.5,1,97.1898422226593,0.955549381858592,42.5,88.4284103393555,40.3112869262695,-5.63416095574697,-5.65140724182129,0.0414505191059366
+9386,89043,442597.952,89143,442497.952,85,93,0,NA,NA,NA,NA,0.0935882249521092,0.985,98.5,1,99.9600766120013,1,98.5,149.432630761626,110,-5.59074136945936,-5.61031484603882,0.0348564361643709
+9387,89043,442497.952,89143,442397.952,86,93,0,NA,NA,NA,NA,0.065072359762853,0.7575,75.75,1,99.2159474776692,0.761676927798942,75.75,94.6927058405609,36.0555114746094,-5.53658254941304,-5.57504367828369,0.048342195311459
+9388,89043,442397.952,89143,442297.952,87,93,22.5,0.225,25.5635245318951,0.801851851851852,NA,0.0151244498811138,0.3475,34.75,1,96.3348533717898,0.921561528946813,34.75,45.0360956809504,11.1803398132324,-5.45367330975003,-5.50172853469849,0.0654989832850583
+9389,89043,442297.952,89143,442197.952,88,93,4.75,0.0475,9.44431417629377,0.657894736842105,NA,-0.125768243288621,0,0,0,NA,NA,0,NA,NA,-5.35020482540131,-5.39428615570068,0.055964531719249
+9390,89043,442197.952,89143,442097.952,89,93,0,NA,NA,NA,NA,-0.0423070448338694,0.2325,23.25,1,94.3478768975745,0.905812173776539,23.25,158.734921691238,122.065551757812,-5.30663998921712,-5.33169269561768,0.0474730918533257
+9391,89043,442097.952,89143,441997.952,90,93,0,NA,NA,NA,NA,0.210563772032037,1,100,1,100,NA,100,206.02360118866,151.162170410156,-5.33776516384549,-5.36320781707764,0.0457915717853598
+9392,89043,441997.952,89143,441897.952,91,93,0,NA,NA,NA,NA,0.234761866144836,1,100,1,100,NA,100,261.77752910614,195.256225585938,-5.35593116283417,-5.36691427230835,0.0284575150889404
+9393,89043,441897.952,89143,441797.952,92,93,0,NA,NA,NA,NA,0.220257559311576,0.97,97,1,99.9192307098231,1,97,319.84323890922,258.118194580078,-5.34375678168403,-5.35892724990845,0.0235389285794692
+9394,89043,441797.952,89143,441697.952,93,93,0,NA,NA,NA,NA,0.130827765263384,0.695,69.5,2,96.7226870798456,0.849255700018843,57.5,357.975032010524,307.327209472656,-5.24216695626577,-5.31786108016968,0.116319067159033
+9395,89043,441697.952,89143,441597.952,94,93,0,NA,NA,NA,NA,-0.0314680241240421,0.0525,5.25,2,77.3416134336187,0.83509234828496,4.75,370.474317278181,357.001403808594,-4.93519390953912,-5.08803653717041,0.209300412330646
+9396,89043,441597.952,89143,441497.952,95,93,0,NA,NA,NA,NA,-0.0485747412632918,0.005,0.5,1,30.8308651382582,1,0.5,315.53157043457,314.006378173828,-4.74596242109935,-4.79549598693848,0.0898736145139874
+9397,89043,441497.952,89143,441397.952,96,93,0,NA,NA,NA,NA,-0.00199706709427119,0.1725,17.25,2,87.7118014337792,0.890140071408954,11.25,254.270318736201,210.297409057617,-4.84292427698771,-4.92671680450439,0.121272241065706
+9398,89043,441397.952,89143,441297.952,97,93,0,NA,NA,NA,NA,0.0157776467694748,0.31,31,1,95.8102472617487,0.832528180354267,31,138.917073711272,103.07763671875,-4.89996532599131,-4.9349193572998,0.0566648119336567
+9399,89043,441297.952,89143,441197.952,98,93,0,NA,NA,NA,NA,0.0119576054751906,0.39,39,1,96.835360326048,0.908607985377278,39,108.677652310102,85.1469345092773,-4.93290827009413,-4.9836950302124,0.0666778542740572
+9400,89043,441197.952,89143,441097.952,99,93,30,0.1425,23.8507728581549,0.681172839506173,15.8113883008419,0.00534795143634256,0.2025,20.25,1,93.5672514619883,0.878091257401602,20.25,3.20104396490403,0,-4.96958414713542,-5.04153251647949,0.0787317565528531
+9401,89143,451097.952,89243,450997.952,0,94,11.25,0.1125,18.6046167787621,0.711111111111111,NA,-0.0320123519767003,0.1475,14.75,1,91.5590620020185,0.94249899373239,14.75,3.71099501141047,0,-4.14100046952565,-4.27447986602783,0.24027534814059
+9402,89143,450997.952,89243,450897.952,1,94,0,NA,NA,NA,NA,-0.0782143074932037,0,0,0,NA,NA,0,NA,NA,-4.07124263048172,-4.27955436706543,0.372206097086524
+9403,89143,450897.952,89243,450797.952,2,94,0,NA,NA,NA,NA,-0.0458591568134307,0,0,0,NA,NA,0,NA,NA,-4.1034216483434,-4.25018072128296,0.161233617809594
+9404,89143,450797.952,89243,450697.952,3,94,0,NA,NA,NA,NA,-0.133294850474795,0.145,14.5,1,91.4414281200292,0.953216374269006,14.5,250.996064284752,240.260284423828,-4.00963227450848,-4.08989381790161,0.0772338424253333
+9405,89143,450697.952,89243,450597.952,4,94,0,NA,NA,NA,NA,-0.444553718351526,0,0,0,NA,NA,0,NA,NA,-4.04810076951981,-4.13803148269653,0.125103972290097
+9406,89143,450597.952,89243,450497.952,5,94,0,NA,NA,NA,NA,-0.0838223090325482,0.21,21,2,92.9244267307762,0.923540905615496,20.75,78.9524501164754,18.0277557373047,-4.32601654529572,-4.51470613479614,0.186724851138398
+9407,89143,450497.952,89243,450397.952,6,94,31,0.31,25.2632674689137,0.770161290322581,NA,0.043683902110206,0.5575,55.75,2,97.8996938030841,0.913081269013472,55.5,4.76069126214682,0,-4.57184946537018,-4.64436388015747,0.102871359210009
+9408,89143,450397.952,89243,450297.952,7,94,0,NA,NA,NA,NA,0.160314422610099,0.93,93,2,99.2894940804275,0.898682877406281,92,51.9802508200369,10,-4.68776598572731,-4.75723361968994,0.0624154817157789
+9409,89143,450297.952,89243,450197.952,8,94,1.5,0.005,2.74985970461435,0.0648148148148148,30.2730272788201,0.0350347374027115,0.31,31,2,94.7347991264792,0.909822866344606,30.25,46.0849499548635,5,-4.74514337380727,-4.82326316833496,0.0789450756714219
+9410,89143,450197.952,89243,450097.952,9,94,20.75,0.0188636363636364,4.89592635934214,0.305509513083146,12.8668799042569,-0.00849760557552145,0.0525,5.25,3,69.5045860375436,0.802110817941952,3.75,2.29768607729957,0,-4.73596592744191,-4.82225036621094,0.0775697346008006
+9411,89143,450097.952,89243,449997.952,10,94,7.5,0.009375,2.29158118344198,0.101851851851852,16.4273431898976,-0.0159094775201811,0,0,0,NA,NA,0,NA,NA,-4.66904667019844,-4.73497581481934,0.0530446686297961
+9412,89143,449997.952,89243,449897.952,11,94,20.75,0.0259375,6.0449378325931,0.326956463675214,10.5901699437495,0.00779027430467977,0.0775,7.75,3,76.2042693529693,0.848238482384824,5.25,4.05200281450825,0,-4.75397066275279,-4.9072470664978,0.159000844246052
+9413,89143,449897.952,89243,449797.952,12,94,0.75,0.00375,1.25,0.0833333333333333,15.8113883008419,0.044625236521133,0.4925,49.25,1,97.7634684223253,0.935218300830015,49.25,64.1027264377187,11.1803398132324,-5.05405178666115,-5.25839042663574,0.213268916864697
+9414,89143,449797.952,89243,449697.952,13,94,0,NA,NA,NA,NA,0.0867879143171012,1,100,1,100,NA,100,96.8451802444458,53.8516464233398,-5.2497421503067,-5.29986429214478,0.114131477817229
+9415,89143,449697.952,89243,449597.952,14,94,0,NA,NA,NA,NA,0.0570094995666295,0.82,82,1,99.4509723118502,0.587147729312511,82,60.9156889741014,5,-5.09974101185799,-5.2311372756958,0.170283873907074
+9416,89143,449597.952,89243,449497.952,15,94,52.75,0.1055,6.87231288170739,0.292528735632184,11.1803398874989,0.0550732430682547,0.64,64,2,97.9309573514637,0.803240740740741,61.5,5.34582187235355,0,-4.80800958474477,-4.94663000106812,0.203611227928565
+9417,89143,449497.952,89243,449397.952,16,94,21,0.021,6.24747468436429,0.292959401709402,12.5659363189314,0.0167234703826398,0.1175,11.75,5,75.780453258034,0.660056657223796,5.75,3.83141911283452,0,-4.55024150013924,-4.7469162940979,0.229713573571616
+9418,89143,449397.952,89243,449297.952,17,94,30.25,0.0432142857142857,9.37950975676783,0.303765950824774,12.7806587335658,0.0209808974412408,0.25,25,3,90.0176418968675,0.859259259259259,16.5,2.49787086486816,0,-4.19523710012436,-4.53106927871704,0.372407784737953
+9419,89143,449297.952,89243,449197.952,18,94,7,0.0116666666666667,3.58127087693146,0.139351851851852,17.236032088273,0.0203956582052592,0.085,8.5,3,78.3323998182249,0.726775956284153,6.25,4.86957679075353,0,-3.77595494687557,-4.1195240020752,0.303574300661423
+9420,89143,449197.952,89243,449097.952,19,94,13.75,0.0152777777777778,4.4029635396199,0.156584362139918,20.5771970910307,0.00314929864527585,0.0025,0.25,1,0,NA,0.25,5,5,-3.59896016120911,-3.76799988746643,0.212156327633595
+9421,89143,449097.952,89243,448997.952,20,94,47.5,0.095,9.12460892352862,0.375816993464052,19.9301065958007,-0.0235076606056828,0.0175,1.75,2,49.299249134574,0.618320610687023,1,2.43872397286551,0,-3.44357395172119,-3.61582159996033,0.322761784219184
+9422,89143,448997.952,89243,448897.952,21,94,51.5,0.171666666666667,11.7166612794903,0.262527233115468,11.1803398874989,0.0086984450798991,0.1525,15.25,4,83.4887296840445,0.8330272165637,10,1.37861736485215,0,-2.88792163133621,-3.36999702453613,0.566041352943672
+9423,89143,448897.952,89243,448797.952,22,94,44.25,0.0632142857142857,8.72591263969139,0.36291354148497,10.1686199839284,0.0495571393300997,0.42,42,2,93.7842484570297,0.849833147942158,21.25,5.05776200975691,0,-2.17772484819094,-2.42530274391174,0.351124244375999
+9424,89143,448797.952,89243,448697.952,23,94,18.75,0.0170454545454545,3.69686308829464,0.230838459785828,12.1400926965906,0.0205242476282001,0.1375,13.75,7,75.6529562203038,0.646071700991609,8,5.04948889992454,0,-1.86460711807013,-2.04912543296814,0.171414726247729
+9425,89143,448697.952,89243,448597.952,24,94,16.5,0.0275,6.3857267303521,0.213477366255144,13.3333333333333,0.0236832433462178,0.1075,10.75,5,69.5986415969485,0.579831932773109,3.25,10.8102375740229,0,-1.73829917112986,-1.83756458759308,0.111246118381287
+9426,89143,448597.952,89243,448497.952,25,94,15,0.0136363636363636,3.84829709165907,0.127279286370195,14.6955839889926,0.0228865952281922,0.1325,13.25,4,86.4510504790741,0.759318491306964,11.75,6.30700341710504,0,-1.64613385498524,-1.78081965446472,0.108904605124992
+9427,89143,448497.952,89243,448397.952,26,94,45.25,0.113125,11.7420303217711,0.372804054054054,14.5710678118655,0.0378169925345355,0.3875,38.75,1,96.8082175905,0.856784819190834,38.75,2.47329657769972,0,-1.58138539393743,-1.63998961448669,0.0574192041216226
+9428,89143,448397.952,89243,448297.952,27,94,23.5,0.0235,3.1223228391807,0.167017543859649,11.5366310572456,0.0192503023853351,0.135,13.5,3,85.8332619391247,0.88812231959724,12,2.22819398950647,0,-1.53788521140814,-1.62548685073853,0.110935086496336
+9429,89143,448297.952,89243,448197.952,28,94,14.5,0.0161111111111111,3.24016526949574,0.182562488596971,13.1442460063496,0.00465329098294205,0.03,3,2,68.3714310934689,0.818071558520315,2.75,5.86020628611247,0,-1.55129914482435,-1.67515182495117,0.142001198119833
+9430,89143,448197.952,89243,448097.952,29,94,23.5,0.0138235294117647,3.68466831912236,0.182464920700215,12.4073171242346,0.0202759229734147,0.125,12.5,7,71.2014407301086,0.610084033613445,5.25,7.55666675567627,0,-1.66642564535141,-1.84798538684845,0.169223622848603
+9431,89143,448097.952,89243,447997.952,30,94,45.5,0.0758333333333333,6.7513878500268,0.19625322997416,10.8870792518717,0.00611273949425595,0.0675,6.75,5,62.2888008186394,0.551094207868321,2.25,2.63752605296947,0,-1.81020535031954,-1.92384111881256,0.141077531436728
+9432,89143,447997.952,89243,447897.952,31,94,1.5,0.00375,0.817548544079538,0.0694444444444444,35.0492955666501,-0.0446966597062419,0,0,0,NA,NA,0,NA,NA,-1.89584546287855,-1.96408259868622,0.0868471210037582
+9433,89143,447897.952,89243,447797.952,32,94,11,0.0275,4.41165642452322,0.13109756097561,12.9056941504209,-0.0272742901047604,0.01,1,1,52.6315789473684,0.747474747474748,1,3.01776695251465,0,-1.91172860562801,-1.96495223045349,0.0483701668652892
+9434,89143,447797.952,89243,447697.952,33,94,0,NA,NA,NA,NA,-0.145934809772298,0,0,0,NA,NA,0,NA,NA,-1.83500086267789,-1.89410650730133,0.0718591942546503
+9435,89143,447697.952,89243,447597.952,34,94,1.25,0.0025,0,0,15.8113883008419,-0.210650586825795,0,0,0,NA,NA,0,NA,NA,-1.68190780282021,-1.7830445766449,0.159006876396883
+9436,89143,447597.952,89243,447497.952,35,94,1.75,0.00291666666666667,0.416666666666667,0.0277777777777778,14.6371001758073,-0.0730486910996842,0.1675,16.75,1,92.4032163835468,1,16.75,24.1035449184589,0,-1.87043989698092,-2.01817584037781,0.196729362358191
+9437,89143,447497.952,89243,447397.952,36,94,0.5,0.005,2.5,0.166666666666667,NA,-0.0832501375254287,0.0225,2.25,1,70.1754385964912,0.829497016197783,2.25,43.9908705817329,33.5410194396973,-2.09847903251648,-2.18073582649231,0.0990869615984563
+9438,89143,447397.952,89243,447297.952,37,94,32.25,0.080625,11.6037406302439,0.338068181818182,11.1803398874989,-0.040882582138147,0,0,0,NA,NA,0,NA,NA,-2.2151669661204,-2.26160597801208,0.0506915365078146
+9439,89143,447297.952,89243,447197.952,38,94,8.5,0.00607142857142857,1.2358160230711,0.0657894736842105,11.336058280477,-0.0576136759846122,0.02,2,1,68.0470115164975,1,2,5.25888347625732,0,-2.27117861807346,-2.3190381526947,0.0492886282711614
+9440,89143,447197.952,89243,447097.952,39,94,2.5,0.025,6.89677310440784,0.533333333333333,NA,-0.0949107747565722,0.01,1,1,52.6315789473684,1,1,6.76776695251465,5,-2.32399169603984,-2.35393071174622,0.0550728428177717
+9441,89143,447097.952,89243,446997.952,40,94,0.25,0.0025,0,0,NA,-0.0702775659276085,0.02,2,2,55.2425944039245,0.693877551020408,1.5,25.3044958114624,15,-2.42778967320919,-2.51438331604004,0.069355234344882
+9442,89143,446997.952,89243,446897.952,41,94,18,0.0257142857142857,5.1961283984455,0.167942176870748,16.4766982397263,-0.0265247874073248,0.04,4,1,78.9473684210526,0.913194444444444,4,1.06694173812866,0,-2.53140811125437,-2.61326265335083,0.084763549928657
+9443,89143,446897.952,89243,446797.952,42,94,0.25,0.0025,0,0,NA,-0.027619419952407,0,0,0,NA,NA,0,NA,NA,-2.61708435416222,-2.68912601470947,0.0777040179148952
+9444,89143,446797.952,89243,446697.952,43,94,47.25,0.23625,26.9605697925442,0.621315192743764,18.0277563773199,-0.000160012857759284,0.075,7.5,2,78.4145351715365,0.823496966354109,5,0.902368927001953,0,-2.6474004983902,-2.69133687019348,0.0504213577215942
+9445,89143,446697.952,89243,446597.952,44,94,21.75,0.0435,13.8616903225399,0.329064788639257,10,-0.0186652282491559,0.1025,10.25,1,88.8238145380415,0.983852085099512,10.25,26.2229522612037,15,-2.59587246179581,-2.6718430519104,0.0964194619411116
+9446,89143,446597.952,89243,446497.952,45,94,2.5,0.003125,0.625,0.0416666666666667,17.6772026599009,-0.000912545814062469,0.0925,9.25,1,87.9580013362782,0.927742401661925,9.25,26.8666338018469,5,-2.53589287400246,-2.66715836524963,0.139044010490655
+9447,89143,446497.952,89243,446397.952,46,94,8.5,0.00653846153846154,2.22258520299256,0.113247863247863,13.5604388661984,-0.0561500179269933,0,0,0,NA,NA,0,NA,NA,-2.56972728172938,-2.69168949127197,0.135788933664337
+9448,89143,446397.952,89243,446297.952,47,94,3.75,0.00535714285714286,2.30927338312568,0.140873015873016,15.4238446790519,-0.0536654270937288,0.0275,2.75,1,73.5251216233933,0.862896315338475,2.75,20.0671898234974,10,-2.66455498337746,-2.75776338577271,0.102538002021099
+9449,89143,446297.952,89243,446197.952,48,94,1.5,0.0025,0,0,15.8113883008419,-0.0349169287840778,0.0625,6.25,2,76.3256376827798,0.84,4.25,17.7069264221191,10,-2.75507591168086,-2.81892704963684,0.0939421446616601
+9450,89143,446197.952,89243,446097.952,49,94,0,NA,NA,NA,NA,0.0187186893070975,0.16,16,2,87.6106629426105,0.840561224489796,11.5,48.0485547184944,25,-2.93771457672119,-3.07321000099182,0.116448639470518
+9451,89143,446097.952,89243,445997.952,50,94,0.75,0.0025,0,0,66.7261538241405,-0.0221355180541286,0.06,6,4,67.9860445473983,0.636058230683091,3.75,18.2637782891591,0,-3.08614168564479,-3.14820909500122,0.0835034550672186
+9452,89143,445997.952,89243,445897.952,51,94,0,NA,NA,NA,NA,0.072955947322771,0.955,95.5,1,99.8774262095089,0.815837937384898,95.5,60.0652659151567,5,-3.26136463880539,-3.42247796058655,0.161092850168868
+9453,89143,445897.952,89243,445797.952,52,94,0,NA,NA,NA,NA,0.0105933652108331,0.0275,2.75,3,56.2941359991397,0.520137103684661,1.75,75.9947027726607,33.5410194396973,-3.76055097579956,-4.05032444000244,0.451471772512185
+9454,89143,445797.952,89243,445697.952,53,94,0.25,0.0025,0,0,NA,0.00907615423933748,0.1375,13.75,3,80.8261824225417,0.804729214340198,6.75,26.022146953236,0,-4.5337952375412,-4.81000137329102,0.346291511011507
+9455,89143,445697.952,89243,445597.952,54,94,0,NA,NA,NA,NA,0.0315401313025268,0.2775,27.75,2,93.3426280685559,0.875432525951557,25,46.5827760782328,5,-4.93988716602325,-5.04873991012573,0.13921503030584
+9456,89143,445597.952,89243,445497.952,55,94,0.25,0.0025,0,0,NA,-0.0804443504447409,0.0625,6.25,1,84.2105263157895,0.973333333333333,6.25,63.1472373962402,50,-5.0752512216568,-5.1328649520874,0.0814518852471351
+9457,89143,445497.952,89243,445397.952,56,94,0,NA,NA,NA,NA,-0.207056302055717,0,0,0,NA,NA,0,NA,NA,-5.15091410279274,-5.18748664855957,0.0434669489225575
+9458,89143,445397.952,89243,445297.952,57,94,0.25,0.0025,0,0,NA,-0.117604795532534,0,0,0,NA,NA,0,NA,NA,-5.17735950152079,-5.21452569961548,0.0513263482787674
+9459,89143,445297.952,89243,445197.952,58,94,0.75,0.0025,0,0,46.8260741541909,-0.00776354250127042,0.2075,20.75,3,88.4202409841189,0.879825747333634,17.75,25.8306140440056,0,-5.12690186500549,-5.2046594619751,0.104407136863791
+9460,89143,445197.952,89243,445097.952,59,94,1.25,0.003125,0.625,0.0416666666666667,25.7483974885399,-0.0060575302093639,0.0925,9.25,2,85.0406940516425,0.891613602492887,8.75,41.1059609490472,25.4950981140137,-4.98919792970022,-5.13276052474976,0.168519997385719
+9461,89143,445097.952,89243,444997.952,60,94,6.75,0.00519230769230769,1.74006534970275,0.103785103785104,15.224060894111,-0.0554344009900524,0.08,8,1,86.6550847056172,0.937290969899666,8,26.2212223410606,15,-4.80087003111839,-4.97962284088135,0.138415074955307
+9462,89143,444997.952,89243,444897.952,61,94,6.5,0.00541666666666667,1.47785300644419,0.0717592592592593,14.5881872690067,-0.0365827350201107,0.0025,0.25,1,0,NA,0.25,14.1421356201172,14.1421356201172,-4.74416319529216,-4.79965305328369,0.0721037736100685
+9463,89143,444897.952,89243,444797.952,62,94,3,0.03,7.42876048604574,0.569444444444444,NA,-0.0286823587712388,0.0175,1.75,1,65.4774238937655,1,1.75,21.1323269435338,14.1421356201172,-4.84922230243683,-4.95854711532593,0.111353943078173
+9464,89143,444797.952,89243,444697.952,63,94,2.5,0.00357142857142857,0.714285714285714,0.0238095238095238,20.6742057786495,-0.0208404081132176,0.0725,7.25,1,85.7162801918893,0.977060274129724,7.25,17.2223719235124,5,-5.06592547893524,-5.17706918716431,0.133098272771789
+9465,89143,444697.952,89243,444597.952,64,94,8.5,0.0141666666666667,4.17298521195557,0.270622895622896,12.2677911264486,-0.0507085070164959,0.04,4,1,78.9473684210526,0.869791666666667,4,35.554297208786,26.9258232116699,-5.29428219795227,-5.46794080734253,0.17077242047075
+9466,89143,444597.952,89243,444497.952,65,94,0,NA,NA,NA,NA,-0.0415007116324159,0.1525,15.25,1,91.785591586011,0.955473924416987,15.25,92.0196787099369,68.0073547363281,-5.55074528853099,-5.60814428329468,0.0997015818361915
+9467,89143,444497.952,89243,444397.952,66,94,0.25,0.0025,0,0,NA,0.0752999454454402,0.8975,89.75,1,99.7075809055868,0.971305595408895,89.75,38.5249670289021,0,-5.64243046442668,-5.6692852973938,0.0369853187927781
+9468,89143,444397.952,89243,444297.952,67,94,0.25,0.0025,0,0,NA,0.0733326115319505,0.7625,76.25,1,99.2358070072224,0.904805491990847,76.25,35.5245517980857,0,-5.65540963411331,-5.67796611785889,0.0347783203606222
+9469,89143,444297.952,89243,444197.952,68,94,1.25,0.00625,3.53553390593274,0.0625,39.0512483795333,0.0717645296175033,0.9525,95.25,1,99.8703629518046,0.737571074500656,95.25,35.6988107676268,0,-5.63194831212362,-5.67292642593384,0.0632501620838529
+9470,89143,444197.952,89243,444097.952,69,94,2.25,0.0225,6.15136168333982,0.518518518518518,NA,0.0574960315642147,0.7075,70.75,1,99.0059126497077,0.942163100057837,70.75,55.3443942390145,0,-5.48270472884178,-5.60426139831543,0.143859544676236
+9471,89143,444097.952,89243,443997.952,70,94,10.75,0.0215,7.4468109209951,0.199007936507937,16.7575192407856,0.0993504759065399,0.75,75,1,99.1857866401092,0.943362831858407,75,15.176579875946,0,-5.15523080031077,-5.35442066192627,0.291658294154606
+9472,89143,443997.952,89243,443897.952,71,94,6.75,0.01125,4.88574442424325,0.114087301587302,17.060113295833,0.0875747117432911,0.5675,56.75,1,98.2765967200003,0.961737656978095,56.75,20.5698164969289,0,-4.61630265414715,-5.23372983932495,0.735037844900372
+9473,89143,443897.952,89243,443797.952,72,94,5.75,0.02875,13.5082108769558,0.136363636363636,25,0.137064496230778,0.7375,73.75,1,99.1344998974781,0.972543972543972,73.75,34.7825797905356,0,-4.26209459702174,-5.19582319259644,0.967299282812967
+9474,89143,443797.952,89243,443697.952,73,94,8,0.02,6.74788813778978,0.193979266347687,22.5888347648318,0.00672041344514582,0.2225,22.25,4,87.2942426799861,0.854395437723715,17.5,20.3003303013491,0,-3.73758183419704,-4.96691656112671,0.90442819700768
+9475,89143,443697.952,89243,443597.952,74,94,26.75,0.066875,10.5337582174714,0.382843570481662,10.5901699437495,-0.0361970251428284,0.12,12,2,87.8651920993633,0.889135254988914,11.5,2.48884606361389,0,-3.21893789370855,-3.84077429771423,0.572972823727585
+9476,89143,443597.952,89243,443497.952,75,94,9,0.0128571428571429,4.67338823419083,0.299886621315193,23.1943828249997,-0.0185214501804876,0.065,6.5,4,75.277005362074,0.660884309377853,5.25,24.2966607900766,0,-3.16333186626434,-3.60918545722961,0.502062008924088
+9477,89143,443497.952,89243,443397.952,76,94,8,0.00727272727272727,3.2122514567052,0.119949494949495,14.4367844256323,-0.0251993922527981,0.095,9.5,2,83.5049531310761,0.719372095062703,7.5,8.67351727736624,0,-3.64268118143082,-3.95157384872437,0.506259407090758
+9478,89143,443397.952,89243,443297.952,77,94,2.75,0.00458333333333333,1.45137709466453,0.0638888888888889,14.2594401416102,0.00208237650605497,0.125,12.5,4,81.1723954320456,0.825210084033613,8.25,21.4624798583984,7.07106781005859,-4.3573983112971,-4.71439981460571,0.45019124569518
+9479,89143,443297.952,89243,443197.952,78,94,0,NA,NA,NA,NA,0.0343535016798705,0.3875,38.75,3,95.1639825975042,0.873970640887934,37,82.6881735278714,25,-4.92933258414268,-5.24694108963013,0.349652768818774
+9480,89143,443197.952,89243,443097.952,79,94,0,NA,NA,NA,NA,0.0568353474559262,0.6725,67.25,2,98.4563688062107,0.782329377975966,66.5,112.806229828902,55.9016990661621,-5.27388528982798,-5.43246030807495,0.204532951243857
+9481,89143,443097.952,89243,442997.952,80,94,3.5,0.035,15.8592709953571,0.30952380952381,NA,-0.0181792933685938,0.35,35,2,95.3295110781074,0.873798076923077,34.25,63.5518620899745,11.1803398132324,-5.45512410998344,-5.5647439956665,0.121032298173232
+9482,89143,442997.952,89243,442897.952,81,94,9.25,0.023125,10.5032812754627,0.18125,14.7158737934317,-0.0793597814562963,0.0125,1.25,1,58.1880425789518,1,1.25,14.2174774169922,11.1803398132324,-5.57607924938202,-5.62430095672607,0.0649802659269055
+9483,89143,442897.952,89243,442797.952,82,94,3.75,0.0375,7.78470910288586,0.644444444444444,NA,-0.0235576986362867,0.0675,6.75,1,85.0052537126447,0.950121578652036,6.75,51.6210081312392,42.7200164794922,-5.61468589305878,-5.63774633407593,0.0275770880049041
+9484,89143,442797.952,89243,442697.952,83,94,0,NA,NA,NA,NA,-0.00709389785999519,0.085,8.5,1,87.210675248157,0.921935987509758,8.5,106.401372124167,80.1560974121094,-5.59885203838348,-5.63732194900513,0.0448458651228033
+9485,89143,442697.952,89243,442597.952,84,94,0,NA,NA,NA,NA,0.0855437386158155,0.8875,88.75,1,99.6763695533234,0.854497354497354,88.75,99.861579766072,42.4264068603516,-5.55476117134094,-5.62765026092529,0.068880103644225
+9486,89143,442597.952,89243,442497.952,85,94,0,NA,NA,NA,NA,0.0660668734771025,0.65,65,3,95.7404659261873,0.818128483426225,53.25,149.606214992817,112.805137634277,-5.49873173236847,-5.57718515396118,0.0660247221093078
+9487,89143,442497.952,89243,442397.952,86,94,0,NA,NA,NA,NA,0.0873774544335902,0.9175,91.75,1,99.7684657792434,0.982559407019839,91.75,78.7154264735916,25,-5.4525229036808,-5.52008104324341,0.0513288378191539
+9488,89143,442397.952,89243,442297.952,87,94,23.25,0.11625,13.7351880153691,0.438644688644689,11.1803398874989,0.0669154090971278,0.54,54,1,98.1009071848445,0.935107073329007,54,25.7781726519267,0,-5.40763346354167,-5.44438314437866,0.0310414071233317
+9489,89143,442297.952,89243,442197.952,88,94,19.5,0.195,22.0312591682584,0.726495726495726,NA,-0.0697527167972294,0.0475,4.75,2,71.3736949643373,0.746583401212779,3,14.5202864596718,5,-5.38275280594826,-5.42158794403076,0.030415133839368
+9490,89143,442197.952,89243,442097.952,89,94,0,NA,NA,NA,NA,0.133629638971179,0.8575,85.75,1,99.5794816088838,0.978340914013428,85.75,76.6983266057495,14.1421356201172,-5.38771688938141,-5.42795324325562,0.0501747225003526
+9491,89143,442097.952,89243,441997.952,90,94,0,NA,NA,NA,NA,0.23868170067668,1,100,1,100,NA,100,124.596754646301,55.9016990661621,-5.37135334809621,-5.41763305664062,0.0411157944178588
+9492,89143,441997.952,89243,441897.952,91,94,0,NA,NA,NA,NA,0.229398052021861,1,100,1,100,NA,100,185.409561500549,120.933868408203,-5.34174564480782,-5.36746692657471,0.0322563655926947
+9493,89143,441897.952,89243,441797.952,92,94,0,NA,NA,NA,NA,0.243448651134968,1,100,1,100,NA,100,237.738554458618,175,-5.35732213656108,-5.40487384796143,0.0415889095691395
+9494,89143,441797.952,89243,441697.952,93,94,0,NA,NA,NA,NA,0.247438550181687,1,100,1,100,NA,100,285.122394371033,217.830200195312,-5.36883100867271,-5.43993043899536,0.0910419031592899
+9495,89143,441697.952,89243,441597.952,94,94,0,NA,NA,NA,NA,0.185594222269749,0.8625,86.25,1,99.5959799783351,0.977691020635806,86.25,315.544283394192,258.069763183594,-5.23358523845673,-5.41786909103394,0.229510332964075
+9496,89143,441597.952,89243,441497.952,95,94,0,NA,NA,NA,NA,0.0152859264007566,0.2425,24.25,1,94.5753035249093,0.939304275255112,24.25,245.226030330068,195.256225585938,-4.92618477344513,-5.24165010452271,0.252995588020569
+9497,89143,441497.952,89243,441397.952,96,94,0,NA,NA,NA,NA,-0.0529052041876093,0,0,0,NA,NA,0,NA,NA,-4.80224617322286,-4.94680738449097,0.150305154392132
+9498,89143,441397.952,89243,441297.952,97,94,0,NA,NA,NA,NA,0.0238253416022417,0.5075,50.75,1,97.8751325648042,0.843811011323702,50.75,121.058320332043,91.7877960205078,-4.92934587597847,-5.02457523345947,0.110132124136498
+9499,89143,441297.952,89243,441197.952,98,94,11.25,0.05625,11.374601490305,0.495426829268293,18.0277563773199,-0.00889476353113423,0.15,15,3,87.0610393805997,0.660633484162896,11.5,9.80808893839518,0,-5.03039689858754,-5.07625961303711,0.0517124059420446
+9500,89143,441197.952,89243,441097.952,99,94,81.0526315789474,0.385,23.4406500717741,0.779714085609525,14.142135623731,0.030421814355368,0.295,29.5,3,91.9991917947567,0.821037979717638,24.5,1.86741812754486,0,-5.08421996235847,-5.13703012466431,0.0562486351392321
+9501,89243,451097.952,89343,450997.952,0,95,2.25,0.0225,6.15136168333982,0.518518518518518,NA,-0.0428594647094724,0,0,0,NA,NA,0,NA,NA,-4.3470025062561,-4.3967752456665,0.0695594749373071
+9502,89243,450997.952,89343,450897.952,1,95,0,NA,NA,NA,NA,-0.37441614927724,0,0,0,NA,NA,0,NA,NA,-4.37461562951406,-4.42022371292114,0.0827760543116098
+9503,89243,450897.952,89343,450797.952,2,95,0,NA,NA,NA,NA,-0.361929805651362,0,0,0,NA,NA,0,NA,NA,-4.19507638613383,-4.30239677429199,0.226948584790436
+9504,89243,450797.952,89343,450697.952,3,95,0,NA,NA,NA,NA,-0.2426080067968,0,0,0,NA,NA,0,NA,NA,-3.96714033683141,-4.11389255523682,0.195299103483828
+9505,89243,450697.952,89343,450597.952,4,95,0,NA,NA,NA,NA,-0.168173880919348,0.28,28,1,95.316724394494,0.951870187018702,28,76.57395195961,44.7213592529297,-4.10246494081285,-4.23620557785034,0.207831579841879
+9506,89243,450597.952,89343,450497.952,5,95,16.75,0.1675,20.1338831593566,0.681592039800995,NA,0.05133616361245,0.575,57.5,2,95.4350183552874,0.813519813519814,38.25,25.873394344164,0,-4.45302259922028,-4.55934524536133,0.158393716679118
+9507,89243,450497.952,89343,450397.952,6,95,70,0.35,26.6660072107536,0.782267802779053,10,0.107762095611542,1,100,1,100,NA,100,2.13009415149689,0,-4.63971492979262,-4.67939853668213,0.076643456113554
+9508,89243,450397.952,89343,450297.952,7,95,21.75,0.2175,20.170743223019,0.706896551724138,NA,0.102651707754121,0.815,81.5,1,99.4331707829294,0.9560536145902,81.5,20.7446517183737,0,-4.75352052847544,-4.82047510147095,0.0708016085650682
+9509,89243,450297.952,89343,450197.952,8,95,0,NA,NA,NA,NA,0.0261598858442449,0.19,19,1,93.1886455857599,0.852588907315275,19,67.9366840061388,47.4341621398926,-4.86414607365926,-4.91727447509766,0.0677243865879152
+9510,89243,450197.952,89343,450097.952,9,95,7,0.0233333333333333,4.35927273984274,0.310185185185185,15.4373425415939,-0.0437031981350447,0.02,2,1,68.0470115164975,1,2,0.625,0,-4.87827560636732,-4.92734813690186,0.0913211718099186
+9511,89243,450097.952,89343,449997.952,10,95,17.5,0.0194444444444444,3.54413072403222,0.169345446075006,14.1633861641457,-0.0214033396635932,0.1575,15.75,1,92.0012465610797,0.967628810358781,15.75,2.96011982266865,0,-4.73396654923757,-4.87315893173218,0.137567801081285
+9512,89243,449997.952,89343,449897.952,11,95,57,0.1425,11.7618199529271,0.351495382302406,10.5901699437495,0.0563606345368316,0.5275,52.75,3,94.7979804359389,0.859626390238635,45.5,1.57133785808256,0,-4.65192577573988,-4.68754959106445,0.0903817059551848
+9513,89243,449897.952,89343,449797.952,12,95,14.25,0.011875,2.35054345583725,0.146442495126706,13.9092085476512,0.0139713361862414,0.0775,7.75,3,78.3348641456409,0.826558265582656,6.25,4.4160894578503,0,-4.78889966011047,-4.97009468078613,0.150886321205422
+9514,89243,449797.952,89343,449697.952,13,95,8,0.04,11.0394120297783,0.469281045751634,11.1803398874989,0.0446784228517572,0.3875,38.75,5,91.5773916504193,0.810955961331901,30.5,57.0576592968356,5,-4.90743817223443,-5.08546113967896,0.282589435848108
+9515,89243,449697.952,89343,449597.952,14,95,4,0.02,4.88658344691634,0.277777777777778,18.0277563773199,0.0633808714636507,0.8425,84.25,1,99.5291083083911,0.860457003314146,84.25,43.1380030182066,0,-4.87034662564596,-5.06689786911011,0.269115216258932
+9516,89243,449597.952,89343,449497.952,15,95,34.5,0.0575,8.14693964270644,0.355070408192953,11.8633899812498,0.0380495129906922,0.4075,40.75,3,93.0493229984628,0.786216596343179,28.5,2.6845908954831,0,-4.75655020607842,-4.88306093215942,0.142171542924866
+9517,89243,449497.952,89343,449397.952,16,95,16,0.0177777777777778,3.66763955488159,0.165432098765432,12.1676051329096,-0.0088977300847182,0.165,16.5,2,88.1563186657169,0.906274407706327,13.5,2.233235503688,0,-4.67191628615061,-4.72273635864258,0.0569202434467068
+9518,89243,449397.952,89343,449297.952,17,95,36,0.36,28.8912966994683,0.827546296296296,NA,-0.000278546851623105,0.1725,17.25,2,91.6432498868695,0.890140071408954,17,2.44777331144913,0,-4.4833992852105,-4.59956979751587,0.21675850971873
+9519,89243,449297.952,89343,449197.952,18,95,26.25,0.0875,19.3231146030005,0.412203092619161,12.1676051329096,0.00863964297243001,0.3375,33.75,2,95.0407557352211,0.889553612517257,32.25,4.3854409677011,0,-4.09965471426646,-4.33197736740112,0.247226278214873
+9520,89243,449197.952,89343,449097.952,19,95,29,0.0207142857142857,3.98386356233185,0.147141053391053,11.3011359383618,0.0382288298224557,0.305,30.5,3,92.2388516363842,0.843744913571405,26.75,3.18154144287109,0,-3.78838888804118,-3.96463346481323,0.23757894980856
+9521,89243,449097.952,89343,448997.952,20,95,41.5,0.10375,14.008817304177,0.441891339869281,10.5901699437495,0.0199813948611882,0.25,25,1,94.7368421052632,0.866666666666667,25,3.82077278137207,0,-3.39894959661696,-3.57638573646545,0.371294744160427
+9522,89243,448997.952,89343,448897.952,21,95,35,0.0583333333333333,9.35247446058501,0.404632559774965,11.1652880313901,0.0329747872965527,0.2275,22.75,1,94.2285806660851,0.976027807743018,22.75,10.2209284855769,0,-2.68930894136429,-3.19289112091064,0.506848234987357
+9523,89243,448897.952,89343,448797.952,22,95,32.25,0.05375,7.13878151267708,0.224778582930757,12.8530572544695,0.0692929181231284,0.45,45,1,97.417305342106,0.907179907179907,45,4.67171285417345,0,-2.10989775922563,-2.33920121192932,0.305897115431835
+9524,89243,448797.952,89343,448697.952,23,95,14.25,0.0101785714285714,3.30671511482671,0.206049043549044,12.155948630703,0.00229211080745699,0.03,3,4,45.3248077626247,0.454214675560946,1,10.9442925453186,5,-1.8229409356912,-2.00191926956177,0.168009172163053
+9525,89243,448697.952,89343,448597.952,24,95,17.75,0.01775,4.49715239142188,0.262297077922078,11.7393543323095,0.00044675208053377,0.1375,13.75,4,79.8943683130906,0.719298245614035,6.25,9.98812162225897,0,-1.78365031878153,-1.82752311229706,0.0661977525665161
+9526,89243,448597.952,89343,448497.952,25,95,25.75,0.0321875,7.44448521727659,0.388604649644946,11.02150850948,0.0292534469843667,0.2075,20.75,3,91.6035675321461,0.776819245048177,19.5,10.1265568560865,0,-1.7434543967247,-1.80005395412445,0.0780394609534068
+9527,89243,448497.952,89343,448397.952,26,95,5.25,0.00477272727272727,1.58768313100289,0.095959595959596,18.1115982573163,0.0205790419475579,0.055,5.5,3,66.4316958798318,0.688764394646748,2.25,3.97243378379128,0,-1.55691130956014,-1.65158128738403,0.142888248170923
+9528,89243,448397.952,89343,448297.952,27,95,3.5,0.007,2.50036786602633,0.177777777777778,28.0958776498258,0.0163524956331366,0.075,7.5,4,69.1482027033141,0.646993932708218,2.75,19.6892059961955,0,-1.34749952952067,-1.44392967224121,0.124152720733404
+9529,89243,448297.952,89343,448197.952,28,95,10,0.0142857142857143,4.2514698350963,0.293764172335601,17.7366496843693,0.0115431859448654,0.0175,1.75,2,50.6624755503814,0.745547073791349,1.25,5.76035363333566,0,-1.29566846953498,-1.38261282444,0.127288648417899
+9530,89243,448197.952,89343,448097.952,29,95,16,0.0228571428571429,6.89225314077634,0.244954648526077,11.0975936123183,0.0143278961880696,0.1275,12.75,2,89.2295211706808,0.881434640845766,12.5,5.37592857959224,0,-1.38998728990555,-1.52704906463623,0.161587557458991
+9531,89243,448097.952,89343,447997.952,30,95,7.25,0.018125,5.34543255311404,0.247222222222222,31.25,0.00869594767535091,0.0075,0.75,3,0,1,0.25,2.35702260335286,0,-1.60526571008894,-1.71470010280609,0.166713262170297
+9532,89243,447997.952,89343,447897.952,31,95,23,0.0383333333333333,5.37349070013414,0.193758573388203,10.1967233145832,0.0119282032361116,0.055,5.5,4,64.1556901778901,0.626517273576097,2.5,2.5,0,-1.78713393211365,-1.84445869922638,0.0992533139505128
+9533,89243,447897.952,89343,447797.952,32,95,20.5,0.0186363636363636,5.59785059060733,0.249773374773375,11.1236981613634,-0.00160642605436806,0.08,8,3,74.5608759641372,0.728260869565217,4,4.78245294094086,0,-1.86233433087667,-1.88129603862762,0.0443289885882128
+9534,89243,447797.952,89343,447697.952,33,95,11.5,0.00884615384615385,2.92169867289912,0.148547008547009,13.1616408112561,-0.0261082926736708,0.0875,8.75,5,67.0291879588796,0.641001417099669,2.75,7.36809300013951,0,-1.84162465731303,-1.86082005500793,0.0598990371624405
+9535,89243,447697.952,89343,447597.952,34,95,1.25,0.0025,0,0,13.9589689355047,-0.139235484677702,0,0,0,NA,NA,0,NA,NA,-1.8534637093544,-1.91218256950378,0.101493441676787
+9536,89243,447597.952,89343,447497.952,35,95,0.25,0.0025,0,0,NA,-0.16810168961063,0,0,0,NA,NA,0,NA,NA,-1.99985227319929,-2.07019710540771,0.13756745360364
+9537,89243,447497.952,89343,447397.952,36,95,9.5,0.011875,5.64822394997979,0.258928571428571,10.2950849718747,-0.0612773531275252,0,0,0,NA,NA,0,NA,NA,-2.14296700557073,-2.18487596511841,0.0789387706747241
+9538,89243,447397.952,89343,447297.952,37,95,15.25,0.0508333333333333,13.3320824305923,0.304444444444444,13.4628120507726,-0.0276005244420594,0.0375,3.75,2,66.8050918565054,0.811097992916175,2,8.56849377950033,0,-2.18068141407437,-2.20920586585999,0.066522777985005
+9539,89243,447297.952,89343,447197.952,38,95,14,0.0155555555555556,5.18540034241884,0.16137133865892,14.5544661262142,0.0133913824374395,0.1525,15.25,1,91.785591586011,0.855290254355207,15.25,8.2997423078193,0,-2.20246084531148,-2.26141953468323,0.0798309368467467
+9540,89243,447197.952,89343,447097.952,39,95,27.75,0.0346875,6.89832336546128,0.265291950113379,10.1475424859374,-0.0209979207854485,0,0,0,NA,NA,0,NA,NA,-2.31390817960103,-2.36715888977051,0.0896095687493993
+9541,89243,447097.952,89343,446997.952,40,95,17.25,0.01725,4.56065565317771,0.207625205254516,10.1180339887499,-0.0334564822527682,0.005,0.5,1,30.8308651382582,1,0.5,2.5,0,-2.44676387310028,-2.51800680160522,0.0848041233223836
+9542,89243,446997.952,89343,446897.952,41,95,22,0.0157142857142857,3.95903624145343,0.198692379049522,12.1323605205199,-0.00469389489160221,0.155,15.5,3,83.4835826734268,0.835634451019066,7,5.38124142923663,0,-2.56811406877306,-2.62524223327637,0.0918878488273319
+9543,89243,446897.952,89343,446797.952,42,95,23.5,0.0213636363636364,5.93899746428627,0.289474577709872,12.1358675988245,-0.0151325728983647,0.0625,6.25,1,84.2105263157895,0.893333333333333,6.25,3.16568542480469,0,-2.66840606927872,-2.70533847808838,0.0595908759336388
+9544,89243,446797.952,89343,446697.952,43,95,47.25,0.1575,16.8564229829856,0.473848238482385,21.1972453437248,0.00455652069082134,0.11,11,6,71.9608000545938,0.650774369875493,5.75,2.74925968863747,0,-2.71998352474637,-2.73611807823181,0.0324546365261828
+9545,89243,446697.952,89343,446597.952,44,95,30,0.0333333333333333,8.28065206073719,0.404352878377269,13.4593244778324,-0.00383509533348843,0.25,25,3,91.583892042299,0.851851851851852,22,13.5349463653564,0,-2.78054473135206,-2.86450982093811,0.107855346673044
+9546,89243,446597.952,89343,446497.952,45,95,3,0.00272727272727273,0.227272727272727,0.0151515151515152,14.9693794984159,0.0416437483840855,0.615,61.5,1,98.5518240730175,0.926595143986448,61.5,14.3908416856595,0,-2.90570074319839,-3.03850650787354,0.185225672002258
+9547,89243,446497.952,89343,446397.952,46,95,8.5,0.0283333333333333,11.7183806382057,0.37037037037037,13.4628120507726,-0.0956247977446765,0,0,0,NA,NA,0,NA,NA,-2.94674883948432,-3.05420994758606,0.199939439291693
+9548,89243,446397.952,89343,446297.952,47,95,13,0.0325,5.70955136739151,0.149659863945578,12.9056941504209,-0.0132913537326385,0.285,28.5,1,95.4043598780874,0.91852807386788,28.5,12.4855717776114,0,-2.90944929917653,-3.01646161079407,0.143788876916808
+9549,89243,446297.952,89343,446197.952,48,95,16,0.08,11.4302802293222,0.472222222222222,10,-0.0177025055485137,0.07,7,3,73.8361898420014,0.80884109916368,4.5,19.3205727168492,0,-2.87461402681139,-2.92820978164673,0.0716961349623944
+9550,89243,446197.952,89343,446097.952,49,95,4.5,0.009,3.14522389281552,0.214444444444444,17.3452307648281,-0.0285270533768926,0,0,0,NA,NA,0,NA,NA,-2.90219020843506,-2.94089698791504,0.0629641906851486
+9551,89243,446097.952,89343,445997.952,50,95,1.25,0.00416666666666667,1.66666666666667,0.111111111111111,17.4127682432574,-0.012941758693778,0.055,5.5,1,82.8209772257252,0.844382197323374,5.5,24.8391876220703,15,-3.02309123675028,-3.07899332046509,0.111056272358277
+9552,89243,445997.952,89343,445897.952,51,95,0,NA,NA,NA,NA,0.0564827909469022,0.6,60,2,98.1368529728389,0.938752783964365,59.75,66.3842789332072,18.0277557373047,-3.28118375937144,-3.50113725662231,0.235734089196957
+9553,89243,445897.952,89343,445797.952,52,95,0,NA,NA,NA,NA,-0.0120585225798607,0,0,0,NA,NA,0,NA,NA,-3.96952025095622,-4.31425523757935,0.517661166994341
+9554,89243,445797.952,89343,445697.952,53,95,1.75,0.0025,0,0,21.4979197943485,0.0167751545640931,0.4025,40.25,1,96.9672588816937,0.966074861472351,40.25,13.225888127866,0,-4.59295876820882,-4.75407457351685,0.230521740934625
+9555,89243,445697.952,89343,445597.952,54,95,0.5,0.0025,0,0,20.6155281280883,0.0303785277125098,0.3125,31.25,2,93.714775158127,0.84621545855026,28.75,21.3940349578857,0,-4.85544872283936,-4.91332674026489,0.0997690252799895
+9556,89243,445597.952,89343,445497.952,55,95,0.25,0.0025,0,0,NA,-0.0101391935010088,0.305,30.5,1,95.7330793639454,0.947914971190468,30.5,38.8913646447854,14.1421356201172,-4.97976997163561,-5.04117631912231,0.0833733666971353
+9557,89243,445497.952,89343,445397.952,56,95,0,NA,NA,NA,NA,-0.191603018129244,0,0,0,NA,NA,0,NA,NA,-5.05987024307251,-5.10947751998901,0.0704105153791777
+9558,89243,445397.952,89343,445297.952,57,95,0.25,0.0025,0,0,NA,-0.0928512850620427,0,0,0,NA,NA,0,NA,NA,-5.03213548660278,-5.10894584655762,0.136271008474725
+9559,89243,445297.952,89343,445197.952,58,95,0.25,0.0025,0,0,NA,0.0865325202448912,0.57,57,1,98.2919349628155,0.967168262653899,57,35.7410314961484,0,-4.90995605786641,-5.03949975967407,0.173732774335642
+9560,89243,445197.952,89343,445097.952,59,95,1.5,0.00375,1.25,0.0833333333333333,15.9749498438876,-0.00728260185234831,0.1725,17.25,3,86.7328058210574,0.870165538937854,14.25,33.1571894659512,5,-4.75111166636149,-4.86322164535522,0.137943888351988
+9561,89243,445097.952,89343,444997.952,60,95,5.75,0.0071875,3.21203298216458,0.135416666666667,22.0458501870166,-0.0234376646868441,0.0175,1.75,1,65.4774238937655,1,1.75,32.9670219421387,30,-4.67426478862762,-4.71901559829712,0.0620600953844958
+9562,89243,444997.952,89343,444897.952,61,95,6,0.00857142857142857,3.20675271609048,0.22312925170068,17.1671401489332,-0.0297925566884328,0,0,0,NA,NA,0,NA,NA,-4.76414775848389,-4.88012075424194,0.136588510038864
+9563,89243,444897.952,89343,444797.952,62,95,8.75,0.0109375,3.81547630022008,0.20625,16.8426055144571,-0.0311067969771466,0.025,2.5,2,58.8854677513915,0.763313609467456,1.5,6.32049312591553,0,-4.95057352383931,-5.095534324646,0.18778346753234
+9564,89243,444797.952,89343,444697.952,63,95,5.75,0.00958333333333333,4.13721994189683,0.093013468013468,10.7868932583326,0.164366050901626,0.635,63.5,1,98.6583599459141,0.971221365258432,63.5,33.7798522588775,5,-5.19093751907349,-5.30311346054077,0.173124079811506
+9565,89243,444697.952,89343,444597.952,64,95,0,NA,NA,NA,NA,0.191652194038616,0.6875,68.75,1,98.9155506404681,0.962790697674418,68.75,92.0848285744407,36.0555114746094,-5.40752756595612,-5.48726797103882,0.104271611527152
+9566,89243,444597.952,89343,444497.952,65,95,0,NA,NA,NA,NA,-0.0347791928019069,0.1225,12.25,2,87.8185593939616,0.82363315696649,11.5,143.837690392319,131.244049072266,-5.54507795969645,-5.60067081451416,0.0757286708388492
+9567,89243,444497.952,89343,444397.952,66,95,0.25,0.0025,0,0,NA,-0.0292178784306816,0.21,21,2,92.5270189858364,0.915045450683884,20.5,29.8859560603187,0,-5.60888730155097,-5.65507173538208,0.0675818452822325
+9568,89243,444397.952,89343,444297.952,67,95,0.25,0.0025,0,0,NA,0.103313545540441,0.9625,96.25,1,99.898450616446,1,96.25,56.9685410685353,0,-5.6221399307251,-5.66356420516968,0.0767039544218677
+9569,89243,444297.952,89343,444197.952,68,95,2.5,0.0125,8.83883476483184,0.114583333333333,42.4264068711929,0.076083035391639,0.84,84,2,99.1243640187989,0.773622047244095,83.25,29.2370603254863,0,-5.58372423383925,-5.64481353759766,0.105328282837945
+9570,89243,444197.952,89343,444097.952,69,95,1.75,0.0175,10.5665685569169,0.19047619047619,NA,0.08318932114169,0.9425,94.25,1,99.8418294460568,0.635147461234418,94.25,28.7403908231214,0,-5.49142201741536,-5.59257888793945,0.099559382765146
+9571,89243,444097.952,89343,443997.952,70,95,2.25,0.005625,2.50901863699315,0.09375,12.3381019908347,0.192271724734455,1,100,1,100,NA,100,40.8794634866714,0,-5.43784660763211,-5.54045343399048,0.142097145985802
+9572,89243,443997.952,89343,443897.952,71,95,0,NA,NA,NA,NA,-0.046780403177836,0.4875,48.75,1,97.7251065890586,0.913758253604636,48.75,74.6847587585449,40,-5.57709924379985,-5.73513126373291,0.258574065987746
+9573,89243,443897.952,89343,443797.952,72,95,0,NA,NA,NA,NA,0.116000346923829,0.7775,77.75,1,99.2942318197501,0.969321624419987,77.75,74.3191763212443,33.5410194396973,-5.56298218833076,-5.71705055236816,0.295157192526422
+9574,89243,443797.952,89343,443697.952,73,95,6.75,0.01125,3.29102465697693,0.183333333333333,20.0528617098486,0.0879166189977695,0.635,63.5,2,98.1284616306478,0.804305283757339,62.25,21.3288427412979,0,-5.10334845383962,-5.48950719833374,0.541712021895108
+9575,89243,443697.952,89343,443597.952,74,95,9.5,0.00730769230769231,2.26994777972946,0.141336441336441,12.2896303547093,0.00464171157542296,0.0975,9.75,5,72.313457897523,0.642020029831664,4.25,8.49716729384202,0,-4.25995386971368,-4.61088466644287,0.586225791391377
+9576,89243,443597.952,89343,443497.952,75,95,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.0948561871325364,0.03,3,3,55.6292926315064,0.575500303214069,1.75,21.0592543284098,0,-3.90216036637624,-4.18270683288574,0.355377832620983
+9577,89243,443497.952,89343,443397.952,76,95,2.75,0.01375,3.25412201730794,0.275,40,-0.0756761828820163,0.0025,0.25,1,0,NA,0.25,10,10,-3.86117744445801,-4.02151823043823,0.297825577314922
+9578,89243,443397.952,89343,443297.952,77,95,17.5,0.0291666666666667,5.5192893805342,0.262996031746032,19.437129433614,-0.0152646187713253,0.2425,24.25,1,94.5753035249093,0.840673722544668,24.25,16.0876362594133,0,-3.81533662478129,-4.09958410263062,0.30938616738451
+9579,89243,443297.952,89343,443197.952,78,95,32.5,0.1625,13.9372378945251,0.46875,25,0.0312775665367371,0.2725,27.25,2,94.1254884644548,0.937202365377571,26.75,3.58427492194219,0,-4.27240876356761,-4.75110340118408,0.669834701303961
+9580,89243,443197.952,89343,443097.952,79,95,9.25,0.04625,7.95517478026811,0.417857142857143,10,0.00331793562451821,0.1975,19.75,2,89.9358074581444,0.795282599020917,15.5,47.1135407459887,0,-4.80231809616089,-5.12716817855835,0.709955955067674
+9581,89243,443097.952,89343,442997.952,80,95,47.25,0.4725,31.2566425043969,0.849206349206349,NA,-0.110074196966016,0,0,0,NA,NA,0,NA,NA,-5.22597944736481,-5.42476749420166,0.300032217590303
+9582,89243,442997.952,89343,442897.952,81,95,1,0.005,2.5,0.166666666666667,71.5891053163818,-0.0514070226054173,0,0,0,NA,NA,0,NA,NA,-5.47616974512736,-5.5568060874939,0.141277309433643
+9583,89243,442897.952,89343,442797.952,82,95,0,NA,NA,NA,NA,-0.018791947830818,0,0,0,NA,NA,0,NA,NA,-5.57092424233754,-5.59365606307983,0.0482943919487288
+9584,89243,442797.952,89343,442697.952,83,95,0,NA,NA,NA,NA,0.0527692763706727,0.605,60.5,1,98.496585825966,0.977596056906015,60.5,166.633633605705,125,-5.55064254336887,-5.57509803771973,0.0359503597784393
+9585,89243,442697.952,89343,442597.952,84,95,0,NA,NA,NA,NA,0.0887103457516059,0.8325,83.25,2,98.3660629237709,0.886102081009895,80.25,171.210356222617,125.399360656738,-5.50533906618754,-5.52319002151489,0.0233983276427256
+9586,89243,442597.952,89343,442497.952,85,95,0,NA,NA,NA,NA,0.0504144609896321,0.58,58,4,96.6550238739184,0.796546794237325,54.5,165.372037821803,135.830780029297,-5.48375532362196,-5.51516914367676,0.0417310566018134
+9587,89243,442497.952,89343,442397.952,86,95,0,NA,NA,NA,NA,0.162176718548872,0.975,97.5,2,99.5492040194748,0.83783783783784,97,138.787408134265,75,-5.4428014755249,-5.49414920806885,0.0526528237128103
+9588,89243,442397.952,89343,442297.952,87,95,0,NA,NA,NA,NA,0.2099980378896,1,100,1,100,NA,100,85.8677168464661,20.6155281066895,-5.41554906633165,-5.45226955413818,0.0434023437104105
+9589,89243,442297.952,89343,442197.952,88,95,12.5,0.125,17.2397184376211,0.616666666666667,NA,0.142729985115293,0.7975,79.75,1,99.3695525162542,0.967187564086789,79.75,42.2837897214023,5,-5.43221950531006,-5.47457885742188,0.0432895853524774
+9590,89243,442197.952,89343,442097.952,89,95,30.25,0.100833333333333,10.3888124557155,0.239495798319328,12.7240226919466,0.0918084469075984,0.59,59,2,95.7737299933626,0.850671976107516,41.5,18.9477599515753,0,-5.4775701628791,-5.50833320617676,0.049536526761175
+9591,89243,442097.952,89343,441997.952,90,95,5,0.05,9.86204671362158,0.65,NA,0.220790863602888,0.955,95.5,1,99.8774262095089,1,95.5,50.1505552711287,0,-5.46524021360609,-5.50680494308472,0.0655026040853775
+9592,89243,441997.952,89343,441897.952,91,95,0,NA,NA,NA,NA,0.240497178435326,1,100,1,100,NA,100,102.461190547943,36.0555114746094,-5.42988427480062,-5.47246694564819,0.0651091110066901
+9593,89243,441897.952,89343,441797.952,92,95,0,NA,NA,NA,NA,0.239707577489316,1,100,1,100,NA,100,149.095908126831,86.3133850097656,-5.44355673260159,-5.47404336929321,0.0528351422147684
+9594,89243,441797.952,89343,441697.952,93,95,0,NA,NA,NA,NA,0.24512675113976,1,100,1,100,NA,100,207.109466629028,143.003494262695,-5.47084776560466,-5.49061250686646,0.0374928302833472
+9595,89243,441697.952,89343,441597.952,94,95,0,NA,NA,NA,NA,0.25217156868428,1,100,1,100,NA,100,251.696966590881,201.121841430664,-5.43084335327148,-5.47003221511841,0.0739087414456613
+9596,89243,441597.952,89343,441497.952,95,95,0,NA,NA,NA,NA,0.241399075293448,0.995,99.5,1,99.9867925566623,1,99.5,187.497720842984,120.830459594727,-5.29192399978638,-5.39685392379761,0.150585791999927
+9597,89243,441497.952,89343,441397.952,96,95,0,NA,NA,NA,NA,0.068794482622543,0.5375,53.75,2,97.6374380490185,0.891891891891892,53.25,109.969523673834,58.3095169067383,-5.15060149298774,-5.25502490997314,0.173260328082571
+9598,89243,441397.952,89343,441297.952,97,95,0.75,0.0075,3.27019417631815,0.277777777777778,NA,-0.0294469998784098,0.205,20.5,2,89.1579249591245,0.843851659076122,12.5,63.1777629619691,0,-5.0735297203064,-5.15231132507324,0.0822811223725227
+9599,89243,441297.952,89343,441197.952,98,95,54.25,0.27125,28.6500441436472,0.74758064516129,18.0277563773199,0.0353335902167601,0.3925,39.25,3,95.9954656725856,0.777091906721536,38.25,5.08251930042437,0,-5.06177865134345,-5.09228134155273,0.0431661626794897
+9600,89243,441197.952,89343,441097.952,99,95,99.7368421052632,0.9475,37.1988860104878,0.932717678100264,NA,-0.0141065113990408,0.0075,0.75,1,44.4894453484604,1,0.75,1.66666666666667,0,-5.14597018559774,-5.17199182510376,0.0436274041915583
+9601,89343,451097.952,89443,450997.952,0,96,17,0.0242857142857143,6.21530883892661,0.330293558864987,15.6678485661412,-0.0155217541818274,0,0,0,NA,NA,0,NA,NA,-4.1983767747879,-4.38130569458008,0.231927663054159
+9602,89343,450997.952,89443,450897.952,1,96,1,0.01,3.82694101601104,0.333333333333333,NA,-0.0631532294373756,0,0,0,NA,NA,0,NA,NA,-4.27608561515808,-4.41247701644897,0.180445675965754
+9603,89343,450897.952,89443,450797.952,2,96,0,NA,NA,NA,NA,-0.188412517330144,0,0,0,NA,NA,0,NA,NA,-3.88866382837296,-4.22285890579224,0.350875817532949
+9604,89343,450797.952,89443,450697.952,3,96,0,NA,NA,NA,NA,-0.217999698035419,0,0,0,NA,NA,0,NA,NA,-3.67462332546711,-3.80536866188049,0.191414168537218
+9605,89343,450697.952,89443,450597.952,4,96,2,0.02,5.80358729473075,0.5,NA,-0.0543544742188169,0.1225,12.25,2,85.0837700090481,0.864333197666531,10,16.2991075710374,0,-4.08708151181539,-4.30271911621094,0.325164908357183
+9606,89343,450597.952,89443,450497.952,5,96,54,0.54,34.0822835772985,0.765432098765432,NA,0.0868070920184255,0.6925,69.25,3,97.7784211059391,0.906191369606004,67.5,2.15509298303928,0,-4.50322517752647,-4.68004560470581,0.18010252240923
+9607,89343,450497.952,89443,450397.952,6,96,75,0.1875,11.9894830396969,0.473678861788618,11.920788821557,0.0660690899087058,0.645,64.5,2,97.2058946825525,0.895022307759601,59.5,0.886072661525519,0,-4.70119778315226,-4.79877805709839,0.1017396773338
+9608,89343,450397.952,89443,450297.952,7,96,48,0.12,8.97122748981056,0.201499118165785,10.5901699437495,0.0478315101878616,0.54,54,1,98.1009071848445,0.886437378325762,54,0.871686440927011,0,-4.816510617733,-4.90889263153076,0.0901141151932341
+9609,89343,450297.952,89443,450197.952,8,96,0.25,0.0025,0,0,NA,0.0031173723161919,0.1075,10.75,3,80.4272702619159,0.859943977591036,8.25,56.9998917690543,0,-4.95037388801575,-5.03622627258301,0.094834765652857
+9610,89343,450197.952,89443,450097.952,9,96,1.25,0.0025,0,0,11.1803398874989,-0.0673001730359556,0,0,0,NA,NA,0,NA,NA,-5.03830556074778,-5.11572647094727,0.0859069006721761
+9611,89343,450097.952,89443,449997.952,10,96,68.5,0.685,34.7037561839804,0.88625304136253,NA,0.0625371683560661,0.765,76.5,1,99.2456636792102,0.955750580773627,76.5,0.77404625587214,0,-4.99384966492653,-5.11572313308716,0.139661001226691
+9612,89343,449997.952,89443,449897.952,11,96,13.5,0.045,7.59511958602189,0.502415458937198,23.0814296696602,0.0168344856679323,0.1725,17.25,1,92.5909628330769,0.940076402586702,17.25,3.63614430634872,0,-4.88712279001872,-5.04083871841431,0.154857637858521
+9613,89343,449897.952,89443,449797.952,12,96,11.5,0.115,26.2407793449476,0.605072463768116,NA,0.00622133379033926,0.185,18.5,1,93.0265643427559,0.933931099575271,18.5,6.99187242662584,0,-4.74065646529198,-4.9140248298645,0.142951530459974
+9614,89343,449797.952,89443,449697.952,13,96,69.75,0.2325,14.4054014792776,0.459222543485245,11.1803398874989,0.0435865570729584,0.29,29,6,83.3796023551343,0.731723675385647,11,1.79065533342033,0,-4.52241384983063,-4.64909315109253,0.146308647406757
+9615,89343,449697.952,89443,449597.952,14,96,32.75,0.0655,9.52674204381664,0.378619528619529,17.4721359549996,0.0414583935206429,0.3675,36.75,5,90.2147234057439,0.78841265409877,25,5.27889657831516,0,-4.4905321598053,-4.59828186035156,0.145058465723628
+9616,89343,449597.952,89443,449497.952,15,96,33.5,0.0558333333333333,6.61691355253396,0.253460837887067,13.8155712709726,0.0302838205614611,0.255,25.5,3,88.5248137740194,0.860637400520776,16,8.62955342087091,0,-4.60940873622894,-4.65660238265991,0.0890624977049506
+9617,89343,449497.952,89443,449397.952,16,96,13.25,0.0441666666666667,9.39831679772077,0.44015444015444,46.8741924943285,-0.00531029302583192,0.1275,12.75,2,84.850047763842,0.855086783255937,10.25,3.99796781352922,0,-4.66943582892418,-4.68411445617676,0.0379221103689039
+9618,89343,449397.952,89443,449297.952,17,96,27,0.27,26.2411497945457,0.756172839506173,NA,-0.045465223074425,0.115,11.5,2,87.5793181344364,0.869621903520209,11,1.50308990478516,0,-4.64072473843892,-4.72231483459473,0.11740849162401
+9619,89343,449297.952,89443,449197.952,18,96,0.5,0.005,2.5,0.166666666666667,NA,-0.0337902162858518,0,0,0,NA,NA,0,NA,NA,-4.56045109033585,-4.7975754737854,0.29535446684264
+9620,89343,449197.952,89443,449097.952,19,96,23,0.115,24.0869076636879,0.581389452332657,15.8113883008419,-0.0171177161541709,0.1825,18.25,1,92.9430371372494,0.952217125382263,18.25,1.3179890880846,0,-4.26050742467244,-4.71439266204834,0.485453162058717
+9621,89343,449097.952,89443,448997.952,20,96,28.25,0.0565,9.50299619452588,0.283236834849738,13.5962560603786,0.0266433916557344,0.2,20,5,81.0326417220215,0.762323943661972,8.75,5.59190104007721,0,-3.58435014883677,-4.12989234924316,0.612528776042554
+9622,89343,448997.952,89443,448897.952,21,96,28.25,0.0470833333333333,8.67842467553982,0.217652717652718,17.9214267094071,0.0177990735475851,0.16,16,2,88.3905880745316,0.787414965986394,12.5,2.11945235729218,0,-2.60161791741848,-3.33900141716003,0.547396162109449
+9623,89343,448897.952,89443,448797.952,22,96,20.75,0.0345833333333333,8.34134876534671,0.386388393741335,16.2267799624996,0.00347169921977184,0.0675,6.75,3,75.6141281517626,0.800486314608143,5.5,5.00069081341779,0,-1.93314808607101,-2.17109346389771,0.282830323266356
+9624,89343,448797.952,89443,448697.952,23,96,26.75,0.0382142857142857,8.37549435235942,0.199194390084801,12.1428571428571,-0.00116689144216252,0.075,7.5,4,69.44664721643,0.713182570325428,4.5,5.71521129608154,0,-1.70093739032745,-1.79792428016663,0.0846633991925487
+9625,89343,448697.952,89443,448597.952,24,96,48.5,0.12125,13.012886380123,0.496135487826239,10.2950849718747,0.0137076826006523,0.1675,16.75,8,72.8098357065888,0.671466338133005,7,3.35822088326981,0,-1.67709035674731,-1.71845495700836,0.054770854309558
+9626,89343,448597.952,89443,448497.952,25,96,40.75,0.0679166666666667,7.01259538035803,0.253812636165577,13.5385093760294,0.0334146845058149,0.2475,24.75,5,83.526590078654,0.738698719623726,9.75,4.37891050781866,0,-1.59567545354366,-1.72142744064331,0.156714110050868
+9627,89343,448497.952,89443,448397.952,26,96,23.25,0.0465,9.63894651012336,0.347534872534873,14.831309558117,0.0251190342147675,0.165,16.5,6,80.6303357997449,0.6459255402239,8.75,4.08209294983835,0,-1.37051939964294,-1.55888557434082,0.217191950594393
+9628,89343,448397.952,89443,448297.952,27,96,4.75,0.0059375,1.98099210099927,0.138888888888889,25.4589669264453,0.0101073883926256,0.0025,0.25,1,0,NA,0.25,5,5,-1.1411551758647,-1.33852887153625,0.181683920783119
+9629,89343,448297.952,89443,448197.952,28,96,3,0.01,2.89821338228122,0.234567901234568,52.0836431306863,0.00603906047173041,0.0925,9.25,3,79.0183519382309,0.873549202908368,6.25,40.7228718319455,25.4950981140137,-1.09955290953318,-1.19963610172272,0.128156775721688
+9630,89343,448197.952,89443,448097.952,29,96,13.75,0.0152777777777778,4.12997347853347,0.252785794452461,11.0231218072021,0.018128436362349,0.1,10,3,81.8768894924878,0.734660033167496,7.75,3.81066017150879,0,-1.22510004043579,-1.36561942100525,0.148437749046424
+9631,89343,448097.952,89443,447997.952,30,96,8.75,0.0125,3.77074169831903,0.171626984126984,22.4967917810014,0.0059493518081581,0.0225,2.25,3,47.6809287864226,0.573742540494459,1.25,9.35129102071126,0,-1.51383522152901,-1.61425340175629,0.17191475590161
+9632,89343,447997.952,89443,447897.952,31,96,14.75,0.0113461538461538,3.43794110126119,0.232031857031857,11.03804181439,0.0315192918272805,0.2225,22.25,6,86.9355628395744,0.797771441282938,17.5,5.14883086386691,0,-1.71520932515462,-1.78578400611877,0.0887170845586465
+9633,89343,447897.952,89443,447797.952,32,96,6,0.015,4.95606873571639,0.384672619047619,33.4637778764351,0.012934524913112,0.0575,5.75,3,74.8820627823514,0.82316534040672,5,7.03285117771315,0,-1.72333453595638,-1.81027960777283,0.118062470179394
+9634,89343,447797.952,89443,447697.952,33,96,15.5,0.019375,3.95878174756008,0.159648345153664,16.5370851255917,0.0336093170420827,0.1775,17.75,5,84.1509118890907,0.77629179331307,11,6.29538761729925,0,-1.53839386502902,-1.76525855064392,0.284925883839336
+9635,89343,447697.952,89443,447597.952,34,96,36.25,0.0517857142857143,5.92056200437553,0.220059305773591,12.7646297090484,0.0198938000616545,0.37,37,4,92.8400709817213,0.777426345692028,26.5,3.48233487154986,0,-1.41578431800008,-1.76373445987701,0.419740404350875
+9636,89343,447597.952,89443,447497.952,35,96,47.25,0.4725,30.1928674790099,0.842151675485009,NA,0.000547425436452613,0.465,46.5,1,97.5448886830867,0.913062377743969,46.5,0.745020876648606,0,-1.55868028601011,-1.94512701034546,0.456684580690704
+9637,89343,447497.952,89443,447397.952,36,96,28.25,0.0403571428571429,8.12374561861609,0.264885744958209,12.9050141945322,-0.00358691891651688,0.1,10,3,83.9191998211229,0.867330016583748,9.25,3.53757038116455,0,-1.75797052681446,-2.08210301399231,0.393065427425846
+9638,89343,447397.952,89443,447297.952,37,96,0.25,0.0025,0,0,NA,-0.0309071296427074,0,0,0,NA,NA,0,NA,NA,-1.92314769824346,-2.08728981018066,0.205504538935218
+9639,89343,447297.952,89443,447197.952,38,96,0,NA,NA,NA,NA,0.0115591846266216,0.2375,23.75,3,90.3226938591786,0.807135969141755,17.75,65.0926603618421,36.0555114746094,-2.05802400410175,-2.17521333694458,0.144047187485273
+9640,89343,447197.952,89443,447097.952,39,96,0.75,0.0075,3.27019417631815,0.277777777777778,NA,-0.0133097826844778,0.0275,2.75,2,60.1742794359602,0.588688946015424,1.5,58.3558044433594,50,-2.26258901755015,-2.3152756690979,0.0956283789743409
+9641,89343,447097.952,89443,446997.952,40,96,4.25,0.0085,3.27454685415268,0.248333333333333,20.5137305337919,-0.0115945999403937,0,0,0,NA,NA,0,NA,NA,-2.33717894554138,-2.41401648521423,0.054475142608876
+9642,89343,446997.952,89443,446897.952,41,96,18.75,0.0125,3.82086186390724,0.208439153439153,10.5508252808328,-0.0156280936317489,0.0125,1.25,1,58.1880425789518,1,1.25,2,0,-2.38945925235748,-2.50932478904724,0.107784669149308
+9643,89343,446897.952,89443,446797.952,42,96,34.5,0.0492857142857143,10.0124729918697,0.448287483491565,14.136404616284,0.0327549813537462,0.29,29,5,87.0393915234519,0.845741113346747,13.75,4.39510279688342,0,-2.55413199961185,-2.66742491722107,0.142520397825406
+9644,89343,446797.952,89443,446697.952,43,96,41,0.082,11.8199710456716,0.376383442265795,11.8416192529638,0.0291255706734228,0.245,24.5,7,80.248199149743,0.714027694160144,8.5,4.02955763680594,0,-2.67046374082565,-2.72613859176636,0.188378710142152
+9645,89343,446697.952,89443,446597.952,44,96,64.5,0.129,12.5645206145237,0.349020537124803,11.1803398874989,-0.020791247534471,0.14,14,2,87.3341860528705,0.856149604411412,12.25,3.27245140075684,0,-2.67071698109309,-2.84296441078186,0.202393081762349
+9646,89343,446597.952,89443,446497.952,45,96,5.75,0.0115,4.14392691359302,0.127272727272727,23.3245553203368,-0.0251061026786283,0.32,32,1,95.959121300177,0.962130775056804,32,21.6718316972256,0,-2.88155573606491,-3.05091881752014,0.189981794224612
+9647,89343,446497.952,89443,446397.952,46,96,2.5,0.025,13.4421046593021,0.25,NA,-0.103477182909846,0,0,0,NA,NA,0,NA,NA,-2.99402894576391,-3.06510472297668,0.0960909265846623
+9648,89343,446397.952,89443,446297.952,47,96,17.75,0.08875,26.1082935903167,0.473202614379085,35.3553390593274,-0.0451506863647956,0.045,4.5,1,80.4523936425773,0.961217762264883,4.5,13.8110687467787,10,-2.92690576612949,-3.03990769386292,0.112996749178536
+9649,89343,446297.952,89443,446197.952,48,96,6.75,0.0675,13.1195468933084,0.623456790123457,NA,-0.0579595530586084,0.02,2,1,68.0470115164975,0.897959183673469,2,1.875,0,-2.77602446079254,-2.90415239334106,0.139313284816464
+9650,89343,446197.952,89443,446097.952,49,96,12.5,0.0125,3.40882434806527,0.246758109040718,14.6991728188341,-0.0560267032538104,0.0025,0.25,1,0,NA,0.25,0,0,-2.6803927719593,-2.85073947906494,0.179919671895366
+9651,89343,446097.952,89443,445997.952,50,96,2.25,0.005625,1.87519035764159,0.125,13.4958640941704,-0.0800934674323798,0.01,1,1,52.6315789473684,0.747474747474748,1,77.6619644165039,70.1783447265625,-2.78627973794937,-3.00542855262756,0.230106229532751
+9652,89343,445997.952,89443,445897.952,51,96,0,NA,NA,NA,NA,0.0362589362499421,0.37,37,1,96.6105796155075,0.9589995899959,37,50.7854481001158,11.1803398132324,-3.24804124236107,-3.61224126815796,0.395666346230583
+9653,89343,445897.952,89443,445797.952,52,96,0,NA,NA,NA,NA,-0.00648208774362843,0,0,0,NA,NA,0,NA,NA,-4.14967197179794,-4.42609596252441,0.501605975755449
+9654,89343,445797.952,89443,445697.952,53,96,1,0.0025,0,0,26.9860766676823,0.00782902446273511,0.115,11.5,2,88.1876383741781,0.898594813849051,11.25,17.4153853292051,5,-4.6631785929203,-4.79688739776611,0.180356865074132
+9655,89343,445697.952,89443,445597.952,54,96,0.25,0.0025,0,0,NA,0.0878241065470502,0.7625,76.25,1,99.2358070072224,0.824256292906179,76.25,45.9487541386339,0,-4.89494331677755,-4.96532535552979,0.0979397178242029
+9656,89343,445597.952,89443,445497.952,55,96,0.25,0.0025,0,0,NA,-0.00340108700103883,0.125,12.5,1,90.3766993434411,0.905882352941176,12.5,61.0287094116211,43.0116271972656,-5.00266528129578,-5.03882455825806,0.0528884201428387
+9657,89343,445497.952,89443,445397.952,56,96,0.5,0.0025,0,0,20.6155281280883,-0.174567695800215,0,0,0,NA,NA,0,NA,NA,-5.00184378027916,-5.04244947433472,0.052873422068307
+9658,89343,445397.952,89443,445297.952,57,96,0.75,0.0025,0,0,32.7466091703778,-0.015743427128109,0.275,27.5,1,95.2267095868885,0.958412753422284,27.5,23.5471152392301,0,-4.85034183661143,-4.94297742843628,0.14946308200215
+9659,89343,445297.952,89443,445197.952,58,96,0,NA,NA,NA,NA,-0.0391936069249641,0,0,0,NA,NA,0,NA,NA,-4.62063357234001,-4.79666376113892,0.153978739847398
+9660,89343,445197.952,89443,445097.952,59,96,5.25,0.00403846153846154,1.18009707601413,0.0854700854700855,15.896804733832,-0.0338668821656029,0,0,0,NA,NA,0,NA,NA,-4.62569590409597,-4.68340158462524,0.0923197338251258
+9661,89343,445097.952,89443,444997.952,60,96,5.5,0.00785714285714286,2.93529528291273,0.194444444444444,13.5316227928565,-0.083397055541318,0.0025,0.25,1,0,NA,0.25,25,25,-4.80060878396034,-5.03618431091309,0.175156756065066
+9662,89343,444997.952,89443,444897.952,61,96,24.75,0.0825,9.69027207230988,0.422379826635146,14.9071198499986,-0.0306723797516679,0.1,10,3,79.8233663734686,0.767827529021559,7,11.2833213329315,0,-5.08036112785339,-5.31514072418213,0.247095448135902
+9663,89343,444897.952,89443,444797.952,62,96,15,0.0166666666666667,4.98531683316109,0.240057319223986,10.9204745830513,-0.0107147036754395,0.1475,14.75,2,89.3105809141188,0.884997987464781,14,21.8389140630172,0,-5.32344844937325,-5.5527172088623,0.237434197090723
+9664,89343,444797.952,89443,444697.952,63,96,0,NA,NA,NA,NA,0.0887637254525544,0.36,36,2,95.9742003711164,0.934895833333333,35.75,80.2884174717797,28.2842712402344,-5.43078462282817,-5.55896329879761,0.158889469987265
+9665,89343,444697.952,89443,444597.952,64,96,0,NA,NA,NA,NA,0.322989350808784,0.9975,99.75,1,99.9934086913499,1,99.75,152.670305734888,87.4642791748047,-5.43514296412468,-5.53012657165527,0.0749747477985597
+9666,89343,444597.952,89443,444497.952,65,96,0,NA,NA,NA,NA,0.138448214178206,0.585,58.5,2,97.0315061278939,0.900747153373218,54.5,204.082169557229,137.93115234375,-5.45617620150248,-5.50278282165527,0.0505195955949749
+9667,89343,444497.952,89443,444397.952,66,96,0,NA,NA,NA,NA,-0.0241542735280382,0.27,27,2,94.1299333501375,0.845451352300667,26.25,140.657211939494,95.5248641967773,-5.48884296417236,-5.54346513748169,0.0540477851272253
+9668,89343,444397.952,89443,444297.952,67,96,0,NA,NA,NA,NA,-0.00773756675424011,0.34,34,1,96.2369165714469,0.926686217008798,34,41.6731964560116,15,-5.45132055878639,-5.54508256912231,0.097164912010426
+9669,89343,444297.952,89443,444197.952,68,96,5,0.00555555555555556,2.48796830417489,0.0290123456790123,12.5225155390987,0.0973002017848194,0.955,95.5,1,99.8774262095089,0.723756906077347,95.5,14.3250410968721,0,-5.37977882226308,-5.48427438735962,0.0989498370395716
+9670,89343,444197.952,89443,444097.952,69,96,4,0.004,1.30224093369298,0.045,16.9396630746467,0.183396101386788,0.9625,96.25,1,99.898450616446,0.963470319634702,96.25,20.0571861217548,0,-5.39802905917168,-5.5064172744751,0.0812093416879144
+9671,89343,444097.952,89443,443997.952,70,96,0,NA,NA,NA,NA,0.240295808794908,0.99,99,1,99.9734851828463,0.867021276595747,99,80.2838584052192,21.2132034301758,-5.55382335186005,-5.66688776016235,0.130225666769781
+9672,89343,443997.952,89443,443897.952,71,96,0,NA,NA,NA,NA,0.0197675329222693,0.535,53.5,2,95.8933502356982,0.913546225752418,49.25,88.8906094738256,50.2493743896484,-5.73892638087273,-5.78681516647339,0.0743236462873797
+9673,89343,443897.952,89443,443797.952,72,96,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.171820718732197,0.9325,93.25,1,99.8128381781211,0.958091047199958,93.25,38.3433168119783,0,-5.69026672840118,-5.76045608520508,0.131070293171205
+9674,89343,443797.952,89443,443697.952,73,96,30.25,0.075625,11.9875637864992,0.35609243697479,12.7950849718747,0.111491950610774,0.715,71.5,1,99.0388168843254,0.967390595447727,71.5,16.4183117459704,0,-5.26297697424889,-5.53792524337769,0.362889102918535
+9675,89343,443697.952,89443,443597.952,74,96,27,0.0385714285714286,6.7749952811741,0.322961283278744,16.2850261301442,-0.0131218388002708,0.025,2.5,1,71.9760246298065,1,2.5,14.2044075012207,7.07106781005859,-4.66358772913615,-4.79426860809326,0.289806541068401
+9676,89343,443597.952,89443,443497.952,75,96,16,0.0266666666666667,6.33895523195518,0.35870811287478,18.8750698370884,-0.0755490424701566,0.025,2.5,1,71.9760246298065,0.921104536489152,2.5,3.20710678100586,0,-4.31234490871429,-4.57618284225464,0.273853764313108
+9677,89343,443497.952,89443,443397.952,76,96,0.5,0.005,2.5,0.166666666666667,NA,-0.047242328045113,0.0225,2.25,1,70.1754385964912,0.914748508098892,2.25,64.847279018826,60.2079734802246,-3.8292117913564,-4.34375095367432,0.671012602386192
+9678,89343,443397.952,89443,443297.952,77,96,8.5,0.0425,7.77848684224659,0.477598566308244,18.0277563773199,-0.0556534663088678,0,0,0,NA,NA,0,NA,NA,-3.69692361354828,-4.09992122650146,0.483344074438332
+9679,89343,443297.952,89443,443197.952,78,96,5.25,0.00525,2.41003921679687,0.122222222222222,20.0570920588034,-0.0131169226268685,0.0625,6.25,3,75.2469480337737,0.706666666666667,4.5,9.53335906982422,0,-3.64687322080135,-4.0349555015564,0.52598170686331
+9680,89343,443197.952,89443,443097.952,79,96,28.25,0.0353125,6.37726317126232,0.301413255360624,14.0450849718747,0.0233513753418447,0.22,22,4,84.2264378634699,0.812183570145354,13.25,1.94964252818714,0,-3.25564551353455,-4.36146259307861,1.14406229400012
+9681,89343,443097.952,89443,442997.952,80,96,58,0.0966666666666667,7.77733876155486,0.231418918918919,12.060113295833,-0.0743404956616723,0.11,11,4,75.4692456589707,0.741876708168843,4.75,2.32712598280473,0,-4.66483390331268,-5.13903903961182,0.585744618417062
+9682,89343,442997.952,89443,442897.952,81,96,35.5,0.355,25.6366071137908,0.832159624413146,NA,-0.091375113837712,0,0,0,NA,NA,0,NA,NA,-5.18837054570516,-5.42083215713501,0.29962313936206
+9683,89343,442897.952,89443,442797.952,82,96,0,NA,NA,NA,NA,-0.00466280351644855,0,0,0,NA,NA,0,NA,NA,-5.43560770153999,-5.5305700302124,0.11918280036408
+9684,89343,442797.952,89443,442697.952,83,96,0,NA,NA,NA,NA,-0.00805053377043805,0.1325,13.25,2,85.2671516850333,0.83532317826266,9.5,189.537124633789,148.660690307617,-5.45340657234192,-5.52575874328613,0.0765043196428511
+9685,89343,442697.952,89443,442597.952,84,96,0,NA,NA,NA,NA,0.029634430879596,0.255,25.5,3,90.4625848637665,0.831297905893571,20.75,157.319761612836,65.192024230957,-5.44956696033478,-5.50549364089966,0.0621491981690311
+9686,89343,442597.952,89443,442497.952,85,96,0,NA,NA,NA,NA,0.101982380147092,0.895,89.5,2,99.1629547321876,0.775249332771457,88.25,88.8596588113454,35,-5.47827927271525,-5.51619577407837,0.0422117181805904
+9687,89343,442497.952,89443,442397.952,86,96,0,NA,NA,NA,NA,0.206414563134313,1,100,1,100,NA,100,130.242036552429,61.0327758789062,-5.50584530830383,-5.52827405929565,0.0261413476830893
+9688,89343,442397.952,89443,442297.952,87,96,0,NA,NA,NA,NA,0.212215912677348,1,100,1,100,NA,100,141.022082920074,95,-5.49788395563761,-5.52946472167969,0.0390415289359969
+9689,89343,442297.952,89443,442197.952,88,96,0.25,0.0025,0,0,NA,0.205107814781368,1,100,1,100,NA,100,55.3026077270508,0,-5.4837561249733,-5.51976108551025,0.0376588762226818
+9690,89343,442197.952,89443,442097.952,89,96,2,0.00333333333333333,0.545032362719692,0.0462962962962963,21.9451256654823,0.20349215660448,0.955,95.5,1,99.8774262095089,1,95.5,26.5585739974576,0,-5.53997671604156,-5.58543729782104,0.051651551480613
+9691,89343,442097.952,89443,441997.952,90,96,27,0.27,29.0228193038411,0.665123456790123,NA,-0.0428780976863595,0.1725,17.25,2,87.337729581616,0.850191006466755,9,19.366187054178,5,-5.56828773021698,-5.62767839431763,0.0659776401152605
+9692,89343,441997.952,89443,441897.952,91,96,12.75,0.06375,12.3100316503646,0.335,14.142135623731,0.131645144688955,0.7075,70.75,1,99.0059126497077,0.897178844547266,70.75,32.2406131690467,0,-5.54810851812363,-5.62296438217163,0.0754405577181837
+9693,89343,441897.952,89443,441797.952,92,96,0,NA,NA,NA,NA,0.250255556181073,1,100,1,100,NA,100,69.1107735204697,10,-5.52907331784566,-5.57399368286133,0.0478936941478832
+9694,89343,441797.952,89443,441697.952,93,96,0,NA,NA,NA,NA,0.249791952706873,1,100,1,100,NA,100,127.270760602951,60.2079734802246,-5.52232474088669,-5.54786682128906,0.0292987933214852
+9695,89343,441697.952,89443,441597.952,94,96,0,NA,NA,NA,NA,0.252101942300797,1,100,1,100,NA,100,181.32089302063,116.619033813477,-5.47115337848663,-5.52079200744629,0.0562294176566422
+9696,89343,441597.952,89443,441497.952,95,96,0,NA,NA,NA,NA,0.23924116006121,1,100,1,100,NA,100,158.341829395294,110,-5.35554394125938,-5.42626619338989,0.0746919387321102
+9697,89343,441497.952,89443,441397.952,96,96,0,NA,NA,NA,NA,0.0464608038772712,0.6025,60.25,1,98.4825618273597,0.977638015373865,60.25,80.5627094442914,41.2310562133789,-5.2227326631546,-5.28026247024536,0.0850217629770826
+9698,89343,441397.952,89443,441297.952,97,96,26.75,0.0891666666666667,14.6713342360177,0.446664055359707,25.9068329627161,0.00893245935370942,0.24,24,4,88.2796065082857,0.80875152998776,12.25,3.97325340906779,0,-5.08992946147919,-5.17172574996948,0.0601677367782937
+9699,89343,441297.952,89443,441197.952,98,96,92.25,0.46125,19.7032278174577,0.538828337874659,18.0277563773199,-0.0128166934847422,0.1625,16.25,2,89.2298352762608,0.883767005679567,15,1.71097236046424,0,-5.07631667455037,-5.11321496963501,0.0466414109073066
+9700,89343,441197.952,89443,441097.952,99,96,99.7368421052632,0.9475,37.1988860104878,0.932717678100264,NA,-0.0630133661488071,0,0,0,NA,NA,0,NA,NA,-5.115896910429,-5.16719245910645,0.0583286759685903
+9701,89443,451097.952,89543,450997.952,0,97,10,0.0142857142857143,4.68255591754935,0.229761904761905,19.2326296284488,-0.0113888886741984,0.075,7.5,4,69.8562727148998,0.713182570325428,4.25,10.6341119766235,0,-3.63051088651021,-3.93436002731323,0.441952020073944
+9702,89443,450997.952,89543,450897.952,1,97,9.75,0.0075,2.78102459543844,0.143696581196581,11.8108476663459,-0.00203889510416047,0.09,9,2,81.7168680581614,0.89010989010989,7,12.4964079856873,0,-3.95657126108805,-4.06911706924438,0.200148672120968
+9703,89443,450897.952,89543,450797.952,2,97,1.5,0.003,0.707106781186548,0.0166666666666667,17.3848230198288,-0.109570869885829,0,0,0,NA,NA,0,NA,NA,-3.9957226117452,-4.07156658172607,0.110275836786848
+9704,89443,450797.952,89543,450697.952,3,97,0,NA,NA,NA,NA,-0.140631166117601,0,0,0,NA,NA,0,NA,NA,-4.02443840106328,-4.28551149368286,0.299790212001169
+9705,89443,450697.952,89543,450597.952,4,97,42.75,0.4275,30.0606190998039,0.754385964912281,NA,0.0610359460220206,0.645,64.5,1,98.7097599330033,0.965007435919867,64.5,2.53730878164602,0,-4.32036304473877,-4.42501306533813,0.227398750496876
+9706,89443,450597.952,89543,450497.952,5,97,85.75,0.214375,8.97802654819448,0.224877450980392,11.0355339059327,0.00433645458724641,0.37,37,2,95.8778064041222,0.847712762841914,36,2.45616310995978,0,-4.63117535909017,-4.7915210723877,0.180714712148997
+9707,89443,450497.952,89543,450397.952,6,97,47.75,0.0795833333333333,7.92396293393326,0.234628970900647,12.162701317181,0.0480423586492543,0.4875,48.75,4,90.8259775502448,0.80595607061043,22.25,4.09835163018642,0,-4.86531564924452,-4.95399856567383,0.121993595195305
+9708,89443,450397.952,89543,450297.952,7,97,67.5,0.16875,8.16937348033724,0.226123595505618,10.5901699437495,0.067164362128824,0.715,71.5,2,97.2472032263979,0.791299810865454,61.5,2.65697664647669,0,-4.9380023876826,-4.97721385955811,0.0700831225399971
+9709,89443,450297.952,89543,450197.952,8,97,71.25,0.7125,32.7803728123676,0.914619883040936,NA,0.077571673286875,0.7475,74.75,3,98.4589440144568,0.922621036526388,74,0.579876571195979,0,-5.00611803266737,-5.04467868804932,0.0569176907259137
+9710,89443,450197.952,89543,450097.952,9,97,57,0.19,11.746998999407,0.289577187807276,18.6338998124982,0.0390091684137587,0.615,61.5,1,98.5518240730175,0.92094861660079,61.5,0.509574548984931,0,-5.07487567265828,-5.12222623825073,0.0643417849446332
+9711,89443,450097.952,89543,449997.952,10,97,82.25,0.8225,36.5728719564709,0.877912867274569,NA,0.116801605871879,0.9025,90.25,1,99.7229916897507,0.910031488978857,90.25,0.565490680388136,0,-5.02969086170197,-5.11786508560181,0.140021830522631
+9712,89443,449997.952,89543,449897.952,11,97,25.5,0.255,23.0438586743029,0.834967320261438,NA,0.00765235777231283,0.2075,20.75,3,89.9824802511867,0.914161248095453,19,0.652314886989364,0,-4.90071943071153,-5.03836965560913,0.278012790663222
+9713,89443,449897.952,89543,449797.952,12,97,36.25,0.3625,27.8656019148623,0.817241379310345,NA,0.0433641887342674,0.51,51,1,97.8932627156421,0.935383124225944,51,3.08731755088357,0,-4.70102719465892,-4.94040441513062,0.280062408072115
+9714,89443,449797.952,89543,449697.952,13,97,78.25,0.39125,25.2858113149241,0.530853840417599,10,0.0573332980490318,0.5925,59.25,2,97.9322730278314,0.933526291736487,58.75,0.506329113924051,0,-4.48934528562758,-4.57127475738525,0.101584216922039
+9715,89443,449697.952,89543,449597.952,14,97,6.5,0.01625,6.1752935006962,0.244633838383838,25.2950849718747,-0.000971231526236807,0.0275,2.75,4,44.197155902927,0.451585261353899,1,5.37655778364702,0,-4.63479272524516,-4.78826522827148,0.176773647313323
+9716,89443,449597.952,89543,449497.952,15,97,3,0.00428571428571429,1.5901315770845,0.0714285714285714,20.1185772515638,0.0051282740564784,0.055,5.5,2,74.4714797160926,0.813258636788049,4,9.56958458640359,0,-4.75986454221937,-4.85354471206665,0.15866471580774
+9717,89443,449497.952,89543,449397.952,16,97,25,0.0416666666666667,5.20149174116266,0.209385521885522,16.6111294179369,0.011014463308411,0.235,23.5,3,88.3605125741021,0.836601307189543,14.25,5.12084139154312,0,-4.77083841959635,-4.83893918991089,0.0899777516411544
+9718,89443,449397.952,89543,449297.952,17,97,6.75,0.0084375,2.2466893934056,0.213194444444444,15.4667252638704,-0.037761188554432,0.075,7.5,3,72.2372175814823,0.7573083287369,3,6.48580576578776,0,-4.76950777901544,-4.79089784622192,0.0511367828683058
+9719,89443,449297.952,89543,449197.952,18,97,0,NA,NA,NA,NA,-0.0167712279554689,0.01,1,1,52.6315789473684,0.747474747474748,1,17.5130867958069,15,-4.82430509726206,-4.86087703704834,0.0888337451540261
+9720,89443,449197.952,89543,449097.952,19,97,0,NA,NA,NA,NA,0.000908519303144431,0.0375,3.75,2,66.7728472562516,0.763872491145218,2.5,53.9312472025553,40.3112869262695,-4.71508190366957,-4.80775547027588,0.230679991602062
+9721,89443,449097.952,89543,448997.952,20,97,6.75,0.0225,8.22455797688427,0.347089947089947,25,0.0245325361593132,0.2325,23.25,5,81.8879576175836,0.77237941995997,9.75,32.7989341981949,0,-4.13932469156053,-4.47063016891479,0.65210448779046
+9722,89443,448997.952,89543,448897.952,21,97,23.75,0.0263888888888889,5.24133137875685,0.109413580246914,14.4119781678984,-0.00454005003214661,0.0675,6.75,3,70.5345665341034,0.725668682586196,2.75,5.57650410687482,0,-2.92447966337204,-3.36301708221436,0.559721289026852
+9723,89443,448897.952,89543,448797.952,22,97,6.5,0.00928571428571429,2.95685225381108,0.183673469387755,18.2581419473588,0.0218786139736949,0.105,10.5,6,70.8928517353694,0.606578015579511,5,16.5352198737008,0,-2.20889788203769,-2.43325543403625,0.349743350616644
+9724,89443,448797.952,89543,448697.952,23,97,2.75,0.006875,2.78007869184548,0.13125,40.6773017402779,0.00121306980050576,0.075,7.5,7,61.5483950264757,0.492553778268064,3.5,22.3165296554565,0,-1.83708456158638,-2.02200937271118,0.176291175567685
+9725,89443,448697.952,89543,448597.952,24,97,36.5,0.0331818181818182,7.48641097396415,0.298178455307981,12.4831094272337,0.0226653691915999,0.1425,14.25,7,75.270762710079,0.654905694056048,7.25,4.06260600842928,0,-1.61375055048201,-1.69096696376801,0.128196836278026
+9726,89443,448597.952,89543,448497.952,25,97,18,0.0225,6.78636937268428,0.380639111705288,12.4733858307738,0.0262702070794694,0.1975,19.75,6,81.8691235977283,0.679572763684913,11.25,8.68330648880971,0,-1.33682879805565,-1.52967715263367,0.229465201888406
+9727,89443,448497.952,89543,448397.952,26,97,15.25,0.0305,7.53171896761954,0.361931818181818,11.2360679774998,0.0233183937360809,0.1325,13.25,3,82.4523510297119,0.746651043481015,7.25,9.9786065659433,0,-1.03903799586826,-1.20714247226715,0.216345767434569
+9728,89443,448397.952,89543,448297.952,27,97,10.25,0.025625,5.51707847234912,0.272849462365591,18.2089950093201,0.0113044132928917,0,0,0,NA,NA,0,NA,NA,-0.903667012850443,-0.987712264060974,0.123437871870864
+9729,89443,448297.952,89543,448197.952,28,97,6,0.012,3.8398257068906,0.245299145299145,26.9544151837347,0.0111920009298599,0.0425,4.25,2,76.0233918128655,0.74934725848564,4,8.6715020572438,0,-1.0150298277537,-1.15263092517853,0.185844776663898
+9730,89443,448197.952,89543,448097.952,29,97,8.75,0.0109375,3.841539461521,0.199559294871795,20.8632554122749,0.0179567692834826,0.0325,3.25,3,56.3359277453448,0.655469422911283,1.5,7.80433376018818,0,-1.3398289680481,-1.60040950775146,0.268372484141326
+9731,89443,448097.952,89543,447997.952,30,97,10.75,0.01075,3.30574676775958,0.12536231884058,15.7245835589174,0.0208979070239729,0.07,7,5,68.4399631525069,0.68936678614098,3.75,5.81128638131278,0,-1.66435605949826,-1.79691970348358,0.20122031035067
+9732,89443,447997.952,89543,447897.952,31,97,13.75,0.0171875,5.26861973733696,0.305555555555556,13.1199635878656,0.0142376694098493,0.07,7,5,62.2594608157142,0.59378733572282,2,9.4157372202192,0,-1.78118777275085,-1.84252870082855,0.101798198346579
+9733,89443,447897.952,89543,447797.952,32,97,17.25,0.01078125,3.59358131881714,0.208585858585859,12.1977372665113,0.0363288251041377,0.275,27.5,4,91.431499920949,0.785132559348466,23,5.93026596416127,0,-1.6430729329586,-1.79265558719635,0.169754511957788
+9734,89443,447797.952,89543,447697.952,33,97,9.5,0.00791666666666667,2.35647030774343,0.175760582010582,15.9964343493446,0.0253663256575965,0.155,15.5,6,80.1829066173813,0.715099715099715,8,6.38260724467616,0,-1.21310928132799,-1.39351713657379,0.307565147260048
+9735,89443,447697.952,89543,447597.952,34,97,34.25,0.03425,4.64410190102527,0.198968253968254,13.8416192529638,0.0513471996587396,0.525,52.5,5,96.102985370317,0.687710324404361,46.75,3.46942901611328,0,-0.810026600956917,-0.963779270648956,0.205084560140559
+9736,89443,447597.952,89543,447497.952,35,97,31.25,0.0347222222222222,5.14133195150369,0.165430759028155,15.5383956718001,0.0402583128851984,0.3575,35.75,5,90.2624844283555,0.697032702646508,26.25,4.46403105942519,0,-0.751832922299703,-0.984215378761292,0.31610743568351
+9737,89443,447497.952,89543,447397.952,36,97,37.5,0.0416666666666667,5.99803223810617,0.207694658354724,13.8008995849799,0.0246291854695846,0.145,14.5,3,84.0492882349644,0.754385964912281,9,1.70934716586409,0,-1.08386548360189,-1.47353482246399,0.396113600377509
+9738,89443,447397.952,89543,447297.952,37,97,43,0.0614285714285714,5.2766536716187,0.138036809815951,11.7131040269058,0.0174819788789137,0.2225,22.25,1,94.1052854736172,0.846306295375033,22.25,1.86480254269718,0,-1.53324468930562,-1.76429855823517,0.351548170977966
+9739,89443,447297.952,89543,447197.952,38,97,22.5,0.1125,14.6795958497149,0.442528735632184,25,0.0218327319629498,0.305,30.5,4,93.4594424275179,0.785149256160682,28.5,5.7307526635342,0,-1.93301354845365,-2.16588973999023,0.278914517760075
+9740,89443,447197.952,89543,447097.952,39,97,6.25,0.015625,4.38452670133867,0.203125,10.5901699437495,0.012715506741406,0.165,16.5,5,81.9290349100022,0.791720906014059,8,9.44446075323856,0,-2.22342027558221,-2.30816531181335,0.156316143229532
+9741,89443,447097.952,89543,446997.952,40,97,8.5,0.00944444444444444,2.51388866571976,0.0885668276972625,21.723151191862,-0.00629105359628738,0.0775,7.75,3,73.7177903451004,0.78319783197832,4.25,11.1601341001449,0,-2.30767540136973,-2.32555890083313,0.0320218693677795
+9742,89443,446997.952,89543,446897.952,41,97,28.25,0.0470833333333333,6.38978084383745,0.237594195927529,15.6072140842347,-0.0104016826306179,0.125,12.5,3,84.4957519830948,0.74453781512605,10,3.23071357727051,0,-2.35978298717075,-2.44550633430481,0.0953596333315031
+9743,89443,446897.952,89543,446797.952,42,97,12.75,0.0255,7.29282080746738,0.391757246376812,13.0990195135928,-0.0219159106968755,0.0575,5.75,4,63.9819506719257,0.675803124078986,2,16.2586334891941,0,-2.66024663050969,-3.41548681259155,0.416424173880583
+9744,89443,446797.952,89543,446697.952,43,97,10.75,0.1075,16.4226990512318,0.589147286821705,NA,-0.0126622956423671,0.12,12,1,90.0697297581677,0.902993348115299,12,2.40255157152812,0,-3.24594431453281,-3.5,0.756472180841604
+9745,89443,446697.952,89543,446597.952,44,97,54.75,0.136875,11.8429681932089,0.36412037037037,11.7479320470852,0.00767848241313914,0.16,16,5,77.6431836798173,0.670493197278912,5.5,2.36074042320251,0,-2.3795407348209,-2.84564614295959,0.436819325062864
+9746,89443,446597.952,89543,446497.952,45,97,37.5,0.09375,8.73282741363157,0.17351598173516,14.1067291072325,-0.0800147819892663,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0,-2.59294658899307,-2.77190279960632,0.203123949681853
+9747,89443,446497.952,89543,446397.952,46,97,4.5,0.045,22.504777715282,0.305555555555556,NA,-0.101730543903323,0,0,0,NA,NA,0,NA,NA,-2.7942504617903,-2.86328625679016,0.125512079111172
+9748,89443,446397.952,89543,446297.952,47,97,9.5,0.0475,13.8766051480981,0.352380952380952,41.2310562561766,-0.0423013723975509,0,0,0,NA,NA,0,NA,NA,-2.77667673428853,-2.85123109817505,0.0896277142632082
+9749,89443,446297.952,89543,446197.952,48,97,0.75,0.00375,1.25,0.0833333333333333,15.8113883008419,-0.0902219954319298,0,0,0,NA,NA,0,NA,NA,-2.64529530207316,-2.69441652297974,0.0859539276718689
+9750,89443,446197.952,89543,446097.952,49,97,5.75,0.0115,4.58349729950329,0.2825,11.1622776601684,-0.0759021601080895,0,0,0,NA,NA,0,NA,NA,-2.51539079348246,-2.57303881645203,0.0621232715894637
+9751,89443,446097.952,89543,445997.952,50,97,0,NA,NA,NA,NA,-0.10036939767655,0,0,0,NA,NA,0,NA,NA,-2.62449367841085,-2.75943422317505,0.224500571886661
+9752,89443,445997.952,89543,445897.952,51,97,0.25,0.0025,0,0,NA,0.0454722254652916,0.395,39.5,3,95.088027832823,0.908805927614705,37.75,45.941424997547,5,-3.21882291634878,-3.5507276058197,0.423283517900737
+9753,89443,445897.952,89543,445797.952,52,97,1,0.00333333333333333,0.833333333333333,0.0555555555555556,20.2591786919701,0.0470053135817579,0.5575,55.75,1,98.2142154717639,0.978270317253368,55.75,32.1072566113664,0,-4.12330396970113,-4.42910051345825,0.508390616357902
+9754,89443,445797.952,89543,445697.952,53,97,1.5,0.003,0.5,0.0333333333333333,18.6938721971897,-0.0449120225440856,0.0175,1.75,1,65.4774238937655,1,1.75,14.968163899013,10,-4.62822763125102,-4.78107404708862,0.166770218216484
+9755,89443,445697.952,89543,445597.952,54,97,1,0.0025,0,0,47.4729359323404,0.0148296398907587,0.265,26.5,2,91.1273968171151,0.907397513979414,21.25,21.4914148258713,0,-4.85669252607557,-4.95402765274048,0.130490682619271
+9756,89443,445597.952,89543,445497.952,55,97,1,0.0025,0,0,30.9232921921325,-0.0365145090425722,0.0525,5.25,1,82.2928536593692,0.934036939313984,5.25,31.7022966657366,18.0277557373047,-4.98109616173638,-5.03978729248047,0.0866105902924473
+9757,89443,445497.952,89543,445397.952,56,97,0,NA,NA,NA,NA,-0.154861743549263,0,0,0,NA,NA,0,NA,NA,-5.02462267875671,-5.04785537719727,0.04859785668101
+9758,89443,445397.952,89543,445297.952,57,97,0.25,0.0025,0,0,NA,-0.0109224136301782,0.265,26.5,1,95.039096185713,0.914520782134844,26.5,31.5856359589775,10,-4.8925240834554,-4.99209880828857,0.13834409285242
+9759,89443,445297.952,89543,445197.952,58,97,1.5,0.00375,0.833333333333333,0.0555555555555556,23.0901699437495,-0.053053788857942,0,0,0,NA,NA,0,NA,NA,-4.70667243003845,-4.81740856170654,0.137030821990003
+9760,89443,445197.952,89543,445097.952,59,97,37.5,0.046875,7.94009482250395,0.279298668503214,10.4426274578121,-0.0110593399776189,0.05,5,3,66.9037141623587,0.728353140916808,2.75,1,0,-4.72772031360202,-4.80374002456665,0.121333326796813
+9761,89443,445097.952,89543,444997.952,60,97,22,0.055,6.82399097409758,0.279810298102981,15.7440519757716,-0.0144328369815048,0.125,12.5,1,90.3766993434411,0.865546218487395,12.5,4.53149291992187,0,-4.94333811601003,-5.11840009689331,0.181168520356612
+9762,89443,444997.952,89543,444897.952,61,97,5,0.01,4.8404279924916,0.0773504273504274,16.1803398874989,-0.0437799939683237,0.09,9,2,81.4986445721775,0.853479853479854,7,31.6340328852336,18.0277557373047,-5.32734632492065,-5.48305940628052,0.232147875939238
+9763,89443,444897.952,89543,444797.952,62,97,0.5,0.005,3.53553390593274,0.0833333333333333,NA,0.0135093114175834,0.4475,44.75,2,94.3525674325724,0.87423275143197,31,64.3366327978379,20.6155281066895,-5.58553858598073,-5.64598894119263,0.107203596632496
+9764,89443,444797.952,89543,444697.952,63,97,0,NA,NA,NA,NA,0.0719443410407621,0.42,42,1,97.1419289493636,0.944382647385984,42,127.341869853792,67.2681198120117,-5.62699482176039,-5.65000009536743,0.0477198264335438
+9765,89443,444697.952,89543,444597.952,64,97,0,NA,NA,NA,NA,0.11618233334498,0.4775,47.75,1,97.646583102185,0.95134214581137,47.75,212.909176491942,154.029220581055,-5.57285598913829,-5.62097215652466,0.0723164975189147
+9766,89443,444597.952,89543,444497.952,65,97,0,NA,NA,NA,NA,0.35660290889442,1,100,1,100,NA,100,192.687822914124,129.034881591797,-5.53102403216892,-5.59008026123047,0.0742605243639288
+9767,89443,444497.952,89543,444397.952,66,97,0,NA,NA,NA,NA,0.149220393373544,0.6175,61.75,2,96.7603077389868,0.869846928670458,55.5,110.920482450169,42.7200164794922,-5.4678062333001,-5.51489305496216,0.0634442971804836
+9768,89443,444397.952,89543,444297.952,67,97,3.25,0.0065,3.14269680527354,0.0296296296296296,17.4295532842377,0.055549701968921,0.765,76.5,1,99.2456636792102,0.882001548729673,76.5,21.7900183372248,0,-5.3511354525884,-5.41575336456299,0.0696439535353503
+9769,89443,444297.952,89543,444197.952,68,97,3.25,0.008125,4.91664985967179,0.0958333333333333,23.3412424372619,0.0365923801915505,0.3075,30.75,3,93.4356726226699,0.876964918813035,28.25,11.9271444460241,0,-5.27093293931749,-5.29396438598633,0.0385818479811259
+9770,89443,444197.952,89543,444097.952,69,97,0,NA,NA,NA,NA,0.0216598765909794,0.15,15,2,86.0341248756211,0.841628959276018,8,79.7189790089925,25.4950981140137,-5.38122566541036,-5.52228403091431,0.129694719008136
+9771,89443,444097.952,89543,443997.952,70,97,0,NA,NA,NA,NA,0.0855412928971418,0.5225,52.25,2,96.5769431949997,0.886943296679632,48.5,73.9139740866337,11.1803398132324,-5.61417171690199,-5.67105436325073,0.125497202038965
+9772,89443,443997.952,89543,443897.952,71,97,2.25,0.0045,1.69705627484771,0.0266666666666667,13.0673775356168,0.203435120357317,0.975,97.5,1,99.9329506995597,1,97.5,32.077733753889,0,-5.72219657897949,-5.75436162948608,0.0551886759239722
+9773,89443,443897.952,89543,443797.952,72,97,0.25,0.0025,0,0,NA,0.204627780988812,0.9925,99.25,1,99.9801514397,1,99.25,44.4857870913873,0,-5.62343369589912,-5.70629930496216,0.135887502189083
+9774,89443,443797.952,89543,443697.952,73,97,43.25,0.4325,29.3669482966169,0.820809248554913,NA,0.0549318584745379,0.43,43,2,95.7800853241812,0.822901101333776,40.25,19.1168276875518,0,-5.20703748861949,-5.51450538635254,0.50402016880989
+9775,89443,443697.952,89543,443597.952,74,97,25.5,0.06375,9.94706488284057,0.400112951807229,14.5710678118655,-0.108436017471686,0.145,14.5,1,91.4414281200292,0.941520467836257,14.5,1.83126212810648,0,-4.67710908253988,-4.84835290908813,0.324865753406358
+9776,89443,443597.952,89543,443497.952,75,97,14.25,0.02375,6.38930972897858,0.328944612032847,19.9686479573566,-0.0486814415659501,0.0375,3.75,2,67.1978517554059,0.716646989374262,2.5,2.47140452067057,0,-4.6992967526118,-4.95695734024048,0.352257909474779
+9777,89443,443497.952,89543,443397.952,76,97,46.75,0.23375,15.3430323074217,0.650956284153005,18.0277563773199,-0.0156513634368821,0.11,11,1,89.3941397590651,0.893713938657759,11,0.113636363636364,0,-4.63185564676921,-4.8674054145813,0.341550287911685
+9778,89443,443397.952,89543,443297.952,77,97,11,0.055,9.98530972288056,0.634672619047619,25,-0.0763527517963666,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,5.3451779683431,0,-4.5037260055542,-4.6457200050354,0.328780948724105
+9779,89443,443297.952,89543,443197.952,78,97,3,0.015,5.09998001195231,0.316666666666667,20,-0.0335869827395072,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0,-4.26926358540853,-4.4793815612793,0.286842841417403
+9780,89443,443197.952,89543,443097.952,79,97,1.5,0.0075,2.25021437510256,0.183333333333333,11.1803398874989,-0.0366616340533801,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,3.67851130167643,0,-3.99021212259928,-4.21988296508789,0.479609540860484
+9781,89443,443097.952,89543,442997.952,80,97,14.75,0.0210714285714286,4.47051279321609,0.353313353313353,16.5934273428726,-0.0045774605661245,0.0375,3.75,3,61.0173954110508,0.716646989374262,2.5,4.41551246643066,0,-4.28290875752767,-4.64946317672729,0.426697840725424
+9782,89443,442997.952,89543,442897.952,81,97,15.75,0.02625,5.49610552256329,0.244614512471655,14.8160597869707,-0.0478947574459744,0.0525,5.25,2,77.0265364828171,0.868073878627968,4.75,10.7188658033098,5,-4.86544275283813,-5.15737533569336,0.471338674394732
+9783,89443,442897.952,89543,442797.952,82,97,0.75,0.0075,3.33333333333333,0.222222222222222,NA,-0.0127433557722452,0.075,7.5,2,78.7238347912349,0.845559845559846,5.5,23.0936663309733,5,-5.17123564084371,-5.3410496711731,0.323196263408079
+9784,89443,442797.952,89543,442697.952,83,97,0,NA,NA,NA,NA,0.0178195912836236,0.05,5,4,63.1968183189929,0.490662139219015,2.75,126.135805511475,82.006103515625,-5.30750513076782,-5.3607234954834,0.135944230646039
+9785,89443,442697.952,89543,442597.952,84,97,0,NA,NA,NA,NA,0.0235081380148404,0.16,16,5,82.8457588691293,0.787414965986394,12.25,87.5971800088882,55.9016990661621,-5.35094626744588,-5.38923215866089,0.065402868803096
+9786,89443,442597.952,89543,442497.952,85,97,0.25,0.0025,0,0,NA,-0.0292625091551417,0.2825,28.25,1,95.3608329643832,0.911183985789438,28.25,34.0042551260079,10,-5.43509064780341,-5.46712493896484,0.0551908646328488
+9787,89443,442497.952,89543,442397.952,86,97,0,NA,NA,NA,NA,0.185357472473406,0.8975,89.75,1,99.7075809055868,0.971305595408895,89.75,105.633652668477,50,-5.51644921302795,-5.54236459732056,0.0328504570862502
+9788,89443,442397.952,89543,442297.952,87,97,0,NA,NA,NA,NA,0.214094148445874,1,100,1,100,NA,100,123.01942782402,58.3095169067383,-5.54323763317532,-5.54913091659546,0.0177830179703039
+9789,89443,442297.952,89543,442197.952,88,97,0.5,0.0025,0,0,18.0277563773199,0.141513719659997,0.84,84,1,99.5205818358949,0.872047244094488,84,46.8241478658858,0,-5.56335612138112,-5.62239408493042,0.0556550564511856
+9790,89443,442197.952,89543,442097.952,89,97,1.5,0.003,0.707106781186548,0.0166666666666667,32.2682536080635,0.0146434137702454,0.4075,40.75,1,97.0183110527583,0.90436005625879,40.75,25.0015046055332,0,-5.6331746313307,-5.68105792999268,0.0680583392882837
+9791,89443,442097.952,89543,441997.952,90,97,5.75,0.0575,30.4121029513319,0.297101449275362,NA,-0.0746600584773114,0.08,8,1,86.6550847056172,0.937290969899666,8,65.6891393661499,55.9016990661621,-5.68639214833577,-5.71498537063599,0.0495985866928342
+9792,89443,441997.952,89543,441897.952,91,97,2.25,0.0225,6.69155401302651,0.5,NA,0.0762745317036752,0.805,80.5,1,99.3970714465752,0.822874493927126,80.5,54.4960181254037,0,-5.67332681020101,-5.71508884429932,0.0588447801732275
+9793,89443,441897.952,89543,441797.952,92,97,13.75,0.1375,28.6363030140647,0.654545454545455,NA,0.103218201722484,0.5075,50.75,3,96.3033100174612,0.843811011323702,47.75,20.0439773709903,0,-5.59469085269504,-5.63818502426147,0.0548155083414761
+9794,89443,441797.952,89543,441697.952,93,97,4.5,0.045,12.5997219092696,0.537037037037037,NA,0.228562860891689,0.9475,94.75,1,99.8561526638156,0.973508179349626,94.75,47.6513466595974,0,-5.53206880887349,-5.55490255355835,0.0370715001886067
+9795,89443,441697.952,89543,441597.952,94,97,0,NA,NA,NA,NA,0.243711044676602,1,100,1,100,NA,100,98.1727580070496,32.0156211853027,-5.47987747192383,-5.52709007263184,0.0733838579539886
+9796,89443,441597.952,89543,441497.952,95,97,0,NA,NA,NA,NA,0.150124102344271,0.9025,90.25,1,99.7229916897507,0.970010496326286,90.25,124.725040974709,86.0232543945312,-5.33797093232473,-5.43579816818237,0.112529416378252
+9797,89443,441497.952,89543,441397.952,96,97,6.25,0.0625,13.1447757206011,0.64,NA,-0.0239232530900335,0.19,19,5,84.5884105774255,0.732817394508937,9,47.5551553274456,0,-5.1571741633945,-5.22115325927734,0.0980825058694415
+9798,89443,441397.952,89543,441297.952,97,97,74.25,0.37125,25.7856980552994,0.770904789126016,18.0277563773199,0.0641675651477999,0.6,60,2,97.3488080448923,0.755011135857461,54.75,1.84909181594849,0,-5.06410932540894,-5.07483863830566,0.0251655774442998
+9799,89443,441297.952,89543,441197.952,98,97,100,1,38.2238923285138,0.934166666666667,NA,0.0491503498448583,0.6,60,2,96.2695475084818,0.832962138084632,43.75,0,0,-5.05332729551527,-5.07011651992798,0.0211581370218234
+9800,89443,441197.952,89543,441097.952,99,97,60.5263157894737,0.575,31.4274618675261,0.902173913043478,NA,-0.0296409442715776,0.0525,5.25,1,82.2928536593692,1,5.25,0,0,-5.03020997842153,-5.04436779022217,0.025620875094815
+9801,89543,451097.952,89643,450997.952,0,98,23.75,0.2375,21.3428596193191,0.829824561403509,NA,-0.102052385761526,0.2125,21.25,1,93.8457653779655,0.907495006832755,21.25,17.9038789861342,5,-3.27028932174047,-3.52545404434204,0.318146970461192
+9802,89543,450997.952,89643,450897.952,1,98,0,NA,NA,NA,NA,-0.303303166079859,0,0,0,NA,NA,0,NA,NA,-3.67138734459877,-3.90849781036377,0.215472589964718
+9803,89543,450897.952,89643,450797.952,2,98,3,0.015,5.93585902168694,0.25,70.7106781186548,-0.06280992688418,0.12,12,1,90.0697297581677,0.792128603104213,12,52.2414565881093,32.0156211853027,-3.89301747083664,-4.08443069458008,0.211905377552043
+9804,89543,450797.952,89643,450697.952,3,98,20.25,0.10125,13.6350825569086,0.277083333333333,15,-0.0202019975494795,0.13,13,4,79.1798864393512,0.690042619139868,5.5,3.24091166716356,0,-4.06014403700829,-4.31646585464478,0.253939235001149
+9805,89543,450697.952,89643,450597.952,4,98,90.75,0.9075,37.5001225764054,0.87603305785124,NA,0.123776075139176,0.9275,92.75,1,99.7981670352509,0.843037229607102,92.75,0.448014025418264,0,-4.04333913326263,-4.41891098022461,0.490257512683403
+9806,89543,450597.952,89643,450497.952,5,98,94,0.94,37.9053303450934,0.895390070921986,NA,-0.00907667332232791,0.255,25.5,3,91.9113652287016,0.875307147834379,23.75,0.706579096177045,0,-4.43786323070526,-4.79491710662842,0.565935648910536
+9807,89543,450497.952,89643,450397.952,6,98,19.5,0.0975,14.0430255340161,0.561510628674808,35,0.0629819541831966,0.7075,70.75,1,99.0059126497077,0.730094466936572,70.75,24.6662562272574,0,-4.93500113487244,-4.98437929153442,0.102069308556841
+9808,89543,450397.952,89643,450297.952,7,98,17.5,0.04375,9.4388075534883,0.251005747126437,15.7440519757716,0.0738834375181978,0.6175,61.75,4,95.9161962709648,0.875505757858699,55.75,15.408194653901,0,-5.00302264094353,-5.02695322036743,0.0310223654563634
+9809,89543,450297.952,89643,450197.952,8,98,25.25,0.0360714285714286,6.92162549746926,0.30026455026455,15.0694754662615,0.0309199991485912,0.2475,24.75,4,85.5680509880547,0.738698719623726,8.75,7.19291713984326,0,-5.03867979844411,-5.07994985580444,0.0405130258087835
+9810,89543,450197.952,89643,450097.952,9,98,38.75,0.129166666666667,13.0003412977379,0.550059616961025,20.4044011451988,0.022978906334356,0.21,21,4,83.6123743131325,0.78761362670971,8,6.60667219616118,0,-5.02624583244324,-5.08599853515625,0.0709148948791041
+9811,89543,450097.952,89643,449997.952,10,98,79.75,0.39875,22.2459016941699,0.740680419833514,20,0.0794172682175281,0.7525,75.25,2,98.2925629758657,0.793347941496089,72.5,0.561934005382449,0,-4.70975270867348,-4.94166803359985,0.3386888349799
+9812,89543,449997.952,89643,449897.952,11,98,94.5,0.945,37.981765815961,0.899911816578483,NA,0.0655687554425094,0.8375,83.75,1,99.5120172135984,0.73751367116296,83.75,0.26865671641791,0,-4.19271947940191,-4.62212467193604,0.4073494746428
+9813,89543,449897.952,89643,449797.952,12,98,87,0.87,38.4610924992027,0.846264367816092,NA,0.0820902480767109,0.7725,77.25,2,97.4738729227352,0.796080208451343,68.5,0.790103998770606,0,-4.26779532432556,-4.5505256652832,0.218884022299389
+9814,89543,449797.952,89643,449697.952,13,98,41.75,0.0695833333333333,8.85375513714083,0.285994413835323,11.7692546880147,0.014546081968997,0.1975,19.75,3,87.4681651449103,0.795282599020917,13.75,2.07463744924038,0,-4.34179298082987,-4.50601577758789,0.211448843036482
+9815,89543,449697.952,89643,449597.952,14,98,0,NA,NA,NA,NA,-0.0124551122944285,0,0,0,NA,NA,0,NA,NA,-4.70579463243484,-4.88641691207886,0.21104189743149
+9816,89543,449597.952,89643,449497.952,15,98,0,NA,NA,NA,NA,-0.00905955858126617,0,0,0,NA,NA,0,NA,NA,-4.91701014836629,-4.95649147033691,0.0876738915265098
+9817,89543,449497.952,89643,449397.952,16,98,3.75,0.0125,2.67345877431269,0.170940170940171,20.4103520853922,-0.0093471848824538,0.05,5,3,67.4508594493681,0.694397283531409,3.25,10.7376184463501,0,-4.85125336050987,-4.94083833694458,0.0861987872565325
+9818,89543,449397.952,89643,449297.952,17,98,9.25,0.00840909090909091,2.43979550813002,0.169221628045157,16.7336215369548,0.0038232914396383,0.055,5.5,2,73.4922152663815,0.813258636788049,3,5.57800084894354,0,-4.67807940642039,-4.77370023727417,0.141274674086577
+9819,89543,449297.952,89643,449197.952,18,98,12,0.008,2.96662926995353,0.167791005291005,15.0318763662435,0.011613122730123,0.12,12,3,80.8995846873846,0.792128603104213,7,6.95214434464773,0,-4.48986849188805,-4.70137977600098,0.279912952111208
+9820,89543,449197.952,89643,449097.952,19,98,6.75,0.00964285714285714,4.11246743662838,0.188633786848073,19.9500761398577,-0.00936608155883732,0.0025,0.25,1,0,NA,0.25,5,5,-4.25387475887934,-4.66175699234009,0.470963518828908
+9821,89543,449097.952,89643,448997.952,20,98,3.75,0.0075,2.13855159301951,0.166666666666667,25.0634340518183,-0.0481546990129209,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,5.1967233022054,0,-3.84019209941228,-4.36497068405151,0.605492396729531
+9822,89543,448997.952,89643,448897.952,21,98,3.5,0.005,1.9521261199375,0.113095238095238,22.357917553981,0.00134240440389476,0.055,5.5,3,70.1195930404981,0.657640834111422,3.5,8.43041905489835,0,-2.9659179598093,-3.5703661441803,0.477986803498304
+9823,89543,448897.952,89643,448797.952,22,98,23.75,0.0197916666666667,5.46726110284204,0.214216155810983,12.8747895569215,0.0228931924066273,0.22,22,4,83.8245905101473,0.689694594153193,13.5,4.32675582712347,0,-2.38229099909465,-2.54315757751465,0.257507932432355
+9824,89543,448797.952,89643,448697.952,23,98,35.75,0.089375,9.92433443766371,0.397486772486772,13.0424730002627,-0.00287756269986858,0.1275,12.75,4,81.3663515427342,0.670651780127128,7.5,2.2206158357508,0,-2.00955127179623,-2.19140863418579,0.206433035255213
+9825,89543,448697.952,89643,448597.952,24,98,42.75,0.0475,7.89752459507725,0.354969894758146,11.9781240543536,0.0152003342467924,0.15,15,7,71.6131544098011,0.615384615384615,4,2.56903559366862,0,-1.71133041381836,-1.92981743812561,0.252684217700985
+9826,89543,448597.952,89643,448497.952,25,98,23.25,0.0122368421052632,3.17452374350596,0.238400204886273,12.0242119784665,0.0287570357021468,0.1925,19.25,9,75.0769530784306,0.62666181023493,4.75,3.9383403480827,0,-1.26940760761499,-1.54629993438721,0.312811732704316
+9827,89543,448497.952,89643,448397.952,26,98,18.25,0.0260714285714286,7.05113696608955,0.4422970123722,17.1662566091687,0.0243402469723242,0.235,23.5,2,91.3525409699426,0.891067538126362,20,11.1042952030263,0,-1.08838088810444,-1.33560597896576,0.274241151735628
+9828,89543,448397.952,89643,448297.952,27,98,29,0.0725,10.7612462578185,0.396371882086168,17.273914887076,0.0141006653051318,0.12,12,3,83.2166778681174,0.83370288248337,8.5,1.50148057937622,0,-1.18341036140919,-1.41192257404327,0.280332124490183
+9829,89543,448297.952,89643,448197.952,28,98,2.5,0.00416666666666667,1.14157038662779,0.0763888888888889,26.2395630640535,0.0110058998099703,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,9.20718924204508,0,-1.41667851805687,-1.72099936008453,0.308003957647009
+9830,89543,448197.952,89643,448097.952,29,98,4,0.0133333333333333,5.49839009919091,0.338888888888889,15.7868932583326,0.0123982339605209,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,27.5484786987305,5,-1.70990528911352,-1.92422831058502,0.247444089048877
+9831,89543,448097.952,89643,447997.952,30,98,4,0.00571428571428571,1.51002981001491,0.12202380952381,21.6238287851618,0.0127782136837686,0.0625,6.25,6,59.8566950972188,0.52,2.5,16.357995223999,0,-1.89588053027789,-1.98696672916412,0.123496955049173
+9832,89543,447997.952,89643,447897.952,31,98,16.25,0.0180555555555556,4.62448243230341,0.255884596282106,15.5245955055551,0.0311719663362783,0.225,22.5,3,89.113795148108,0.839711480665197,13.75,4.03139533996582,0,-1.93956690033277,-1.99985241889954,0.0821682020912629
+9833,89543,447897.952,89643,447797.952,32,98,32.5,0.0325,5.19837353252415,0.199510458388963,10.4721359549996,0.028422296645731,0.2575,25.75,4,87.4262301970938,0.723359723359723,13.5,5.82896038166528,0,-1.78543840348721,-1.96200740337372,0.196414636672573
+9834,89543,447797.952,89643,447697.952,33,98,26,0.026,6.05488654944753,0.309259259259259,12.6825290909959,0.0408206503412657,0.305,30.5,3,93.3661726930098,0.778638627559491,28,4.38348560645932,0,-1.3968059917291,-1.68162667751312,0.33079396020607
+9835,89543,447697.952,89643,447597.952,34,98,62.75,0.1255,11.4621987717065,0.487123258211627,10,0.072361305686245,0.7,70,1,98.9724810035032,0.917617237008872,70,1.47207367760795,0,-1.00575483590364,-1.36932587623596,0.298324852709258
+9836,89543,447597.952,89643,447497.952,35,98,49.75,0.0621875,7.0186574460544,0.2387104283054,10.1475424859374,0.0190318607636436,0.33,33,5,90.6159261085288,0.74608286368985,23.75,2.34712083411939,0,-0.752971281607946,-0.985974788665771,0.216017626773662
+9837,89543,447497.952,89643,447397.952,36,98,37,0.0411111111111111,7.64594876306544,0.37415916334045,13.1338812915486,0.0305756414710777,0.23,23,5,83.9552108803485,0.794108330693696,10,3.51609706878662,0,-0.825903795659542,-0.992536664009094,0.199150331009069
+9838,89543,447397.952,89643,447297.952,37,98,17,0.0283333333333333,5.62018233850533,0.270833333333333,26.5364723721757,0.0230631531451218,0.11,11,6,68.3522843512095,0.635590646826602,3,4.35308361053467,0,-1.14140625298023,-1.36859953403473,0.243597523626071
+9839,89543,447297.952,89643,447197.952,38,98,10.75,0.00716666666666667,1.96401197955962,0.142380952380952,12.6583322627048,0.0112168436293723,0.085,8.5,7,64.33923518201,0.648711943793911,3.5,6.14947880015654,0,-1.51415237784386,-1.89427495002747,0.318247168074316
+9840,89543,447197.952,89643,447097.952,39,98,14,0.028,4.57258423994608,0.0993589743589744,12.5952415806172,0.0217922723052288,0.1175,11.75,4,79.6682467845387,0.71671388101983,7.5,9.87023536195146,0,-1.8894136150678,-2.17206954956055,0.320073330091995
+9841,89543,447097.952,89643,446997.952,40,98,12,0.02,4.6163994586699,0.173188405797101,17.1193364723875,0.00841592593813402,0.0725,7.25,3,76.6748204424461,0.816482193037793,6,4.18814961663608,0,-2.17318921536207,-2.32941794395447,0.201634917971493
+9842,89543,446997.952,89643,446897.952,41,98,18.25,0.0608333333333333,9.55811156229667,0.204761904761905,27.9836916609214,0.00975381950811425,0.115,11.5,3,82.2416501462928,0.681297986382732,8,12.3072604303775,0,-2.33478957414627,-2.45126795768738,0.135556234011789
+9843,89543,446897.952,89643,446797.952,42,98,48.75,0.121875,11.9223335529832,0.344100690590702,10,-0.0623656362784823,0.0575,5.75,2,78.8715439622917,0.82316534040672,5.25,3.74394027046535,0,-2.62467300891876,-3.5,0.437312364140985
+9844,89543,446797.952,89643,446697.952,43,98,5,0.025,5.58360852767367,0.454248366013072,11.1803398874989,-0.0451159489440033,0,0,0,NA,NA,0,NA,NA,-3.37389675776164,-3.5,0.456695080078665
+9845,89543,446697.952,89643,446597.952,44,98,9.5,0.0316666666666667,7.60422868860192,0.389779202279202,20.2051760426961,-0.0218575583242273,0.0025,0.25,1,0,NA,0.25,0,0,-2.73163545131683,-3.5,0.790263447028716
+9846,89543,446597.952,89643,446497.952,45,98,32,0.0457142857142857,6.18664788981262,0.204421768707483,18.1439950272116,-0.0220641295819951,0.045,4.5,1,80.4523936425773,0.922435524529765,4.5,0.833333333333333,0,-2.32820245623589,-2.55571961402893,0.191957958706688
+9847,89543,446497.952,89643,446397.952,46,98,50.5,0.2525,25.694459003556,0.647596153846154,10,-0.0574484864265469,0.0375,3.75,2,71.305744570345,0.763872491145218,3.25,1.66666666666667,0,-2.51393047968547,-2.7001645565033,0.203858559056551
+9848,89543,446397.952,89643,446297.952,47,98,3.25,0.01625,6.25212048411485,0.308333333333333,65,-0.0542653119962051,0,0,0,NA,NA,0,NA,NA,-2.66489614546299,-2.75208735466003,0.10727642145158
+9849,89543,446297.952,89643,446197.952,48,98,2.75,0.00458333333333333,2.08333333333333,0.138888888888889,16.9029368798679,-0.0715498141571879,0,0,0,NA,NA,0,NA,NA,-2.73269720872243,-2.8275043964386,0.101617658455272
+9850,89543,446197.952,89643,446097.952,49,98,5,0.00625,2.45950826661314,0.145833333333333,10.8852549156242,-0.0716237950684444,0,0,0,NA,NA,0,NA,NA,-2.65182183682919,-2.81130862236023,0.134613585695554
+9851,89543,446097.952,89643,445997.952,50,98,0,NA,NA,NA,NA,-0.068494368784668,0.04,4,1,78.9473684210526,0.869791666666667,4,110.432394981384,96.0468673706055,-2.7350942492485,-2.91840147972107,0.245250596351948
+9852,89543,445997.952,89643,445897.952,51,98,0,NA,NA,NA,NA,0.054594265703854,0.5475,54.75,3,96.7583069559913,0.815837937384899,52.5,103.055129761021,77.7817459106445,-3.44900944828987,-4.17328500747681,0.568681708661048
+9853,89543,445897.952,89643,445797.952,52,98,0,NA,NA,NA,NA,0.0554315033231978,0.605,60.5,1,98.496585825966,0.966394085359023,60.5,62.8628168657792,30.4138145446777,-4.33227684100469,-4.60102128982544,0.391748577179897
+9854,89543,445797.952,89643,445697.952,53,98,2,0.00285714285714286,0.357142857142857,0.0238095238095238,24.8702769241335,-0.0721515584216104,0,0,0,NA,NA,0,NA,NA,-4.67413049936295,-4.80186939239502,0.148548246011747
+9855,89543,445697.952,89643,445597.952,54,98,2,0.0025,0,0,19.4144931712767,-0.0308073735814105,0.1225,12.25,1,90.2255639097744,0.905033238366572,12.25,20.0495675923873,10,-4.77252169450124,-4.82950162887573,0.0986383502033906
+9856,89543,445597.952,89643,445497.952,55,98,0.5,0.0025,0,0,20.6155281280883,0.0233934919819649,0.3775,37.75,1,96.6969635918825,0.953605033853827,37.75,27.4228758275114,0,-4.8872674703598,-4.96474504470825,0.0939685143659766
+9857,89543,445497.952,89643,445397.952,56,98,0,NA,NA,NA,NA,-0.0473605375704938,0,0,0,NA,NA,0,NA,NA,-5.0001423060894,-5.04709148406982,0.0566173953011098
+9858,89543,445397.952,89643,445297.952,57,98,0,NA,NA,NA,NA,-0.0951775032362275,0,0,0,NA,NA,0,NA,NA,-4.94823284943898,-5.01652240753174,0.0922730925333702
+9859,89543,445297.952,89643,445197.952,58,98,6.5,0.00433333333333333,1.06677340792958,0.0722222222222222,13.7106242126209,-0.0252200133338283,0.0125,1.25,1,58.1880425789518,1,1.25,14.0683917999268,11.1803398132324,-4.83373308181763,-4.87053442001343,0.0602622613644161
+9860,89543,445197.952,89643,445097.952,59,98,25,0.03125,3.92563839353724,0.204530423280423,13.75,0.00799391202526749,0.275,27.5,3,91.5381279844236,0.854444636977993,22.75,11.7131078373302,0,-4.89255042870839,-5.03907012939453,0.151867956453109
+9861,89543,445097.952,89643,444997.952,60,98,47.5,0.2375,20.0453360015493,0.584687658710005,10,0.0220376477446189,0.38,38,2,94.0223955120493,0.838131575904729,30.5,7.67082018601267,0,-5.15576753020287,-5.39785814285278,0.225692180079847
+9862,89543,444997.952,89643,444897.952,61,98,0.5,0.0025,0,0,11.1803398874989,0.0112467589430526,0.3825,38.25,2,93.1962847935249,0.861685420778884,25,59.0067896375469,18.0277557373047,-5.46239789326986,-5.58211708068848,0.179457295215297
+9863,89543,444897.952,89643,444797.952,62,98,0,NA,NA,NA,NA,0.0359240556330406,0.5225,52.25,2,95.294648902638,0.806188508593655,37.25,131.905904815528,68.0073547363281,-5.61211514472961,-5.64709615707397,0.0442077585243932
+9864,89543,444797.952,89643,444697.952,63,98,0,NA,NA,NA,NA,0.0333754887563919,0.48,48,2,95.6539756702876,0.891961970613656,43.25,206.947962125142,152.397506713867,-5.62464817365011,-5.65000009536743,0.0297397435946528
+9865,89543,444697.952,89643,444597.952,64,98,0,NA,NA,NA,NA,0.0278136368663127,0.235,23.5,2,91.9556603999883,0.898848428260193,21.75,215.832534303056,176.139144897461,-5.58478754758835,-5.62356662750244,0.0460434216773245
+9866,89543,444597.952,89643,444497.952,65,98,0,NA,NA,NA,NA,0.200059861489281,0.7125,71.25,1,99.0279065499043,0.961064243997404,71.25,137.837473069576,78.2623825073242,-5.51626233259837,-5.60170841217041,0.0959951281104953
+9867,89543,444497.952,89643,444397.952,66,98,0.75,0.00375,1.76776695296637,0.0416666666666667,11.1803398874989,0.143066337257624,0.95,95,1,99.8632718311308,0.611650485436894,95,57.7819383269862,0,-5.40252323945363,-5.50273036956787,0.097103156775278
+9868,89543,444397.952,89643,444297.952,67,98,1.5,0.003,0.707106781186548,0.0166666666666667,12.5498231854631,0.103536639837548,0.9575,95.75,1,99.8844617862358,0.449035812672177,95.75,31.674047514913,0,-5.32918435335159,-5.38803482055664,0.0536853411896998
+9869,89543,444297.952,89643,444197.952,68,98,0.75,0.00375,1.76776695296637,0.0416666666666667,96.0468635614927,0.108458668993098,0.6775,67.75,2,97.4022714519481,0.890345867409878,63,38.2832708675483,0,-5.34235572814941,-5.45644378662109,0.104202779397917
+9870,89543,444197.952,89643,444097.952,69,98,0,NA,NA,NA,NA,0.036010309412377,0.235,23.5,4,89.3267472943759,0.836601307189543,18.25,72.2374165717592,21.2132034301758,-5.40075966715813,-5.55163812637329,0.138368784242679
+9871,89543,444097.952,89643,443997.952,70,98,0.25,0.0025,0,0,NA,0.0463854847781749,0.23,23,1,94.2887150496276,0.952486537852391,23,21.7134327681168,0,-5.5666469335556,-5.63899993896484,0.11517266999455
+9872,89543,443997.952,89643,443897.952,71,98,0,NA,NA,NA,NA,0.152489710114896,0.9275,92.75,1,99.7981670352509,0.941138961102664,92.75,61.5438856860055,10,-5.6386895775795,-5.68821382522583,0.067193286565048
+9873,89543,443897.952,89643,443797.952,72,98,0,NA,NA,NA,NA,0.157231081172504,0.815,81.5,2,97.9655578101391,0.87695012085256,76.75,64.4872461155148,10,-5.46907818317413,-5.62138748168945,0.215715959336827
+9874,89543,443797.952,89643,443697.952,73,98,44.75,0.149166666666667,15.7219785811639,0.55706870900115,14.120226591666,0.0341895300307078,0.36,36,2,92.8650491455577,0.781013257575758,18.5,7.19602795441945,0,-4.52442666888237,-5.33863544464111,0.855228144456461
+9875,89543,443697.952,89643,443597.952,74,98,17,0.085,16.0897474818813,0.338308457711443,15,-0.185493883782765,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0,-3.83641980091731,-4.5427360534668,0.67184183339271
+9876,89543,443597.952,89643,443497.952,75,98,5,0.05,19.754800617259,0.416666666666667,NA,-0.211389891838189,0,0,0,NA,NA,0,NA,NA,-4.90305480360985,-5.05065202713013,0.355039766894825
+9877,89543,443497.952,89643,443397.952,76,98,12,0.0171428571428571,4.11067589073895,0.149206349206349,14.6229542535711,-0.0463318923558836,0,0,0,NA,NA,0,NA,NA,-4.98087580998739,-5.04841423034668,0.124633897521574
+9878,89543,443397.952,89643,443297.952,77,98,19.25,0.0213888888888889,3.73447883634928,0.186388365766897,14.3805059314198,-0.0208528097852468,0.08,8,2,78.9824059721321,0.853678929765886,4.5,1.62722086906433,0,-4.79896903038025,-4.94081735610962,0.175979113258432
+9879,89543,443297.952,89643,443197.952,78,98,7,0.0233333333333333,4.9663130808496,0.237777777777778,12.67591879244,-0.0176286312961338,0.05,5,2,74.1882130447361,0.864176570458404,4.25,3.70710678100586,0,-4.52936738729477,-4.73412227630615,0.189955436579897
+9880,89543,443197.952,89643,443097.952,79,98,0,NA,NA,NA,NA,-0.0306097051581673,0,0,0,NA,NA,0,NA,NA,-4.29639772574107,-4.44917678833008,0.165004440700296
+9881,89543,443097.952,89643,442997.952,80,98,0,NA,NA,NA,NA,-0.0380174587874353,0,0,0,NA,NA,0,NA,NA,-4.13589668273926,-4.29046535491943,0.139132023166609
+9882,89543,442997.952,89643,442897.952,81,98,8.5,0.00772727272727273,2.51349797855612,0.170875420875421,17.1004049987857,-0.00261427153087425,0.0425,4.25,3,65.4922092585821,0.70757180156658,3,9.4003864737118,0,-4.1576344370842,-4.47844123840332,0.28402391241907
+9883,89543,442897.952,89643,442797.952,82,98,35,0.07,9.01217402928889,0.349833333333333,11.3005630797458,0.0129240313609989,0.14,14,5,77.66070820603,0.760249340685687,5,1.80020335742405,0,-4.51024776697159,-4.97208499908447,0.388658746372561
+9884,89543,442797.952,89643,442697.952,83,98,6.5,0.0216666666666667,6.63119953963315,0.410493827160494,10,-0.00440906697844184,0.0375,3.75,2,68.3745502901928,0.669421487603306,2.5,6.37019907633464,0,-4.89586357275645,-5.18772125244141,0.332491832314813
+9885,89543,442697.952,89643,442597.952,84,98,0,NA,NA,NA,NA,-0.066597599335355,0,0,0,NA,NA,0,NA,NA,-5.20595771074295,-5.35044574737549,0.180077713217333
+9886,89543,442597.952,89643,442497.952,85,98,0,NA,NA,NA,NA,-0.114724258635069,0,0,0,NA,NA,0,NA,NA,-5.42287349700928,-5.47361993789673,0.0892854419844582
+9887,89543,442497.952,89643,442397.952,86,98,0,NA,NA,NA,NA,-0.00595069922960647,0.0825,8.25,1,86.9391941099265,0.939448985770512,8.25,148.097689773097,126.194297790527,-5.50650426745415,-5.53130769729614,0.0307508168698032
+9888,89543,442397.952,89643,442297.952,87,98,0,NA,NA,NA,NA,0.110205493038029,0.6225,62.25,1,98.5923763102686,0.965892618594207,62.25,93.1815647140564,50,-5.50103016694387,-5.54039239883423,0.0508713556530566
+9889,89543,442297.952,89643,442197.952,88,98,0.25,0.0025,0,0,NA,0.141683039666386,0.7825,78.25,1,99.3133324321661,0.968829144749659,78.25,36.2249373170895,0,-5.52839544415474,-5.61672878265381,0.07850082576434
+9890,89543,442197.952,89643,442097.952,89,98,6.25,0.0625,28.7883511723498,0.34,NA,-0.114267926522298,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,38.2440567016602,33.5410194396973,-5.61572456359863,-5.67550563812256,0.0720782416215906
+9891,89543,442097.952,89643,441997.952,90,98,0,NA,NA,NA,NA,0.0276338929179474,0.53,53,1,98.0336545290164,0.91359758073226,53,88.9998759863512,55.9016990661621,-5.68819379806519,-5.71558332443237,0.0374090256227309
+9892,89543,441997.952,89643,441897.952,91,98,0,NA,NA,NA,NA,0.0652977803023532,0.67,67,2,97.942626632182,0.777095005723236,63.75,111.655708654603,71.0633544921875,-5.69640386104584,-5.71999979019165,0.0258904759168419
+9893,89543,441897.952,89643,441797.952,92,98,0,NA,NA,NA,NA,0.0427795426250668,0.3675,36.75,4,92.5244612330201,0.735515817623463,29.75,89.3164849054246,20.6155281066895,-5.62761290868123,-5.66346025466919,0.0615660582842325
+9894,89543,441797.952,89643,441697.952,93,98,7.75,0.0775,18.8598043137587,0.612903225806452,NA,0.108051527319476,0.89,89,1,99.684221684177,0.824656056110062,89,35.2902327708984,0,-5.50559222698212,-5.57675170898438,0.074332585627375
+9895,89543,441697.952,89643,441597.952,94,98,6,0.06,15.8120725914601,0.576388888888889,NA,0.163180854017846,0.965,96.5,1,99.9054042256917,0.492583918813429,96.5,30.274284456678,0,-5.37235335508982,-5.43752098083496,0.0940426132850419
+9896,89543,441597.952,89643,441497.952,95,98,0,NA,NA,NA,NA,-0.00765257127262885,0.355,35.5,2,94.4074998509452,0.892665474060823,32.25,74.6126216163098,7.07106781005859,-5.21770456433296,-5.32580757141113,0.106248208468495
+9897,89543,441497.952,89643,441397.952,96,98,42.75,0.21375,27.4967566874075,0.717261904761905,18.0277563773199,0.0376629691276321,0.3925,39.25,3,92.9410307407987,0.754229538180155,24.75,5.98454126734642,0,-5.08538893858592,-5.14574003219604,0.0589504874417807
+9898,89543,441397.952,89643,441297.952,97,98,99.25,0.9925,38.0709370206152,0.929890848026868,NA,0.0233968610327611,0.1475,14.75,3,82.4522371786203,0.792996377436605,8.5,0.169491525423729,0,-5.09511461853981,-5.14573287963867,0.0387500352572267
+9899,89543,441297.952,89643,441197.952,98,98,89.5,0.895,36.4219717616473,0.929702048417132,NA,0.0539113542553969,0.6875,68.75,2,98.62684931997,0.931782945736434,68.5,0,0,-5.11046651999156,-5.14872980117798,0.0434609758901494
+9900,89543,441197.952,89643,441097.952,99,98,12.3684210526316,0.0391666666666667,8.5633407612238,0.533838383838384,50.6414441532007,-0.0349221734418097,0.0075,0.75,1,44.4894453484604,1,0.75,0,0,-5.06775450706482,-5.11956882476807,0.0470899631391639
+9901,89643,451097.952,89743,450997.952,0,99,0,NA,NA,NA,NA,0.0362839618337615,0.442105263157895,44.2105263157895,1,97.2749311815369,0.965307364576993,44.2105263157895,107.837800843375,66.7083206176758,-3.39904899067349,-3.52227163314819,0.188305813291934
+9902,89643,450997.952,89743,450897.952,1,99,0,NA,NA,NA,NA,-0.275801083168603,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,152.60262298584,145.344421386719,-3.49223655462265,-3.55416870117188,0.087207739567005
+9903,89643,450897.952,89743,450797.952,2,99,2,0.02,5.80358729473075,0.5,NA,-0.188675706565233,0,0,0,NA,NA,0,NA,NA,-3.57362259758843,-3.64920711517334,0.133455698622463
+9904,89643,450797.952,89743,450697.952,3,99,63.75,0.31875,20.4671790616897,0.67827868852459,25,0.0249300947083516,0.436842105263158,43.6842105263158,4,95.9732230542307,0.849123450003054,42.6315789473684,0.516681648162474,0,-3.64156937599182,-3.91099667549133,0.233150358197159
+9905,89643,450697.952,89743,450597.952,4,99,68,0.136,11.0669225479395,0.379850053328314,14.605551275464,0.0525739965103352,0.576315789473684,57.6315789473684,2,97.2835183310696,0.913226160029229,56.0526315789474,1.99823135654676,0,-3.76711180475023,-4.2535605430603,0.500124851826876
+9906,89643,450597.952,89743,450497.952,5,99,59.25,0.5925,31.7666575621088,0.879043600562588,NA,0.0263539017413055,0.457894736842105,45.7894736842105,1,97.4163741131468,0.965520370202341,45.7894736842105,16.7746693074018,0,-4.40557871262232,-4.8591947555542,0.71203926705821
+9907,89643,450497.952,89743,450397.952,6,99,6,0.03,9.82720411759372,0.457459207459207,14.142135623731,0.113363349163219,0.960526315789474,96.0526315789474,1,99.8900101755836,0.670043415340088,96.0526315789474,25.2816232550634,0,-4.92509068383111,-4.95482301712036,0.0754628310490074
+9908,89643,450397.952,89743,450297.952,7,99,15.25,0.0254166666666667,5.00171072962607,0.209183673469388,14.1760764852869,0.0886109623714889,0.913157894736842,91.3157894736842,2,98.6134887253058,0.824464153732446,88.4210526315789,12.7950835104291,0,-4.99373388290405,-5.03372383117676,0.0416492082496195
+9909,89643,450297.952,89743,450197.952,8,99,5.25,0.0525,12.4697290350783,0.515873015873016,NA,0.0649064309186782,0.623684210526316,62.3684210526316,2,95.8532870075428,0.778054902208401,38.1578947368421,41.525094768669,0,-5.0835468504164,-5.10623073577881,0.0412344631203189
+9910,89643,450197.952,89743,450097.952,9,99,15.25,0.0508333333333333,11.56253530446,0.448979591836735,16.6666666666667,0.0471086848750067,0.468421052631579,46.8421052631579,2,96.7066172783085,0.857052574558368,45.7894736842105,16.3085979397377,0,-5.06291145748562,-5.10430002212524,0.0896197249046779
+9911,89643,450097.952,89743,449997.952,10,99,56.75,0.189166666666667,11.3879133585968,0.378093339976748,26.5737865166653,0.0307321248335556,0.184210526315789,18.4210526315789,5,77.4126805506142,0.65119328612641,4.21052631578947,3.14888711656843,0,-4.77097451686859,-4.95788192749023,0.278284553480553
+9912,89643,449997.952,89743,449897.952,11,99,87.5,0.875,38.2354768012156,0.84047619047619,NA,0.0618421838514654,0.557894736842105,55.7894736842105,4,96.5273980073149,0.77610587382161,52.1052631578947,0.754716981132076,0,-4.40004836188422,-4.58090448379517,0.278460001699879
+9913,89643,449897.952,89743,449797.952,12,99,76.25,0.190625,13.404594945664,0.356797065231321,10.2950849718747,0.0795485837314788,0.697368421052632,69.7368421052632,2,97.3857393749085,0.893622605196396,65,1.03512346519614,0,-4.13769014676412,-4.19981622695923,0.0913495694402426
+9914,89643,449797.952,89743,449697.952,13,99,2.25,0.0045,1.86309210395915,0.1,12.3983456376682,0.00986283162259688,0.068421052631579,6.8421052631579,2,76.1508805850031,0.71200220476781,3.68421052631579,16.6877808204064,0,-4.2028251224094,-4.28377771377563,0.131182072953464
+9915,89643,449697.952,89743,449597.952,14,99,0,NA,NA,NA,NA,0.00930770509793978,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,37.2032947540283,35.355339050293,-4.48133285840352,-4.66232252120972,0.219304329519077
+9916,89643,449597.952,89743,449497.952,15,99,4.75,0.02375,5.49085140570274,0.282407407407407,54.0832691319598,-0.00285341438292036,0.0973684210526316,9.73684210526316,2,83.9500543058482,0.909190842613392,8.68421052631579,26.4713444065403,11.1803398132324,-4.80124351713392,-4.88460636138916,0.134639517819574
+9917,89643,449497.952,89743,449397.952,16,99,0.5,0.0025,0,0,88.4590300647707,-0.00763706329718939,0.134210526315789,13.4210526315789,4,77.0775387253515,0.774307375187786,5.78947368421053,37.1416801377839,7.07106781005859,-4.82035712401072,-4.87808227539062,0.0797704739734815
+9918,89643,449397.952,89743,449297.952,17,99,6.75,0.0135,3.79572626658405,0.230277777777778,12.9442719099992,0.0316976527695883,0.323684210526316,32.3684210526316,4,89.1733962156827,0.820976775837099,20.7894736842105,21.9672959955727,0,-4.61933188968235,-4.71583890914917,0.175945186637273
+9919,89643,449297.952,89743,449197.952,18,99,13,0.0108333333333333,3.24409956760847,0.150132275132275,13.2133753523465,0.00437465573566346,0.0842105263157895,8.42105263157895,1,86.7737288361143,0.979000884173298,8.42105263157895,8.59471940994263,0,-4.23115821679433,-4.43142747879028,0.261149027033152
+9920,89643,449197.952,89743,449097.952,19,99,4.25,0.0085,3.56338304129089,0.266666666666667,21.7858444539843,-0.00177462387607528,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,7.07106781005859,7.07106781005859,-3.70705874760946,-3.91170907020569,0.3436388346444
+9921,89643,449097.952,89743,448997.952,20,99,6.75,0.0084375,3.00161369581334,0.149305555555556,19.8867508875244,0.00688261477314786,0.0315789473684211,3.15789473684211,2,64.5452452330323,0.696291560102302,2.63157894736842,3.50592231750488,0,-3.2392799589369,-3.44872450828552,0.339413542108604
+9922,89643,448997.952,89743,448897.952,21,99,8,0.00888888888888889,3.24813759358269,0.223765432098765,15.5927888179695,0.0050955294519458,0.0210526315789474,2.10526315789474,5,25.6037101023973,0.28494623655914,0.789473684210526,4.63388347625732,0,-2.75617291529973,-2.97195625305176,0.262380655289935
+9923,89643,448897.952,89743,448797.952,22,99,18.25,0.0140384615384615,3.89842479076589,0.209519647019647,13.3243002413127,0.0248463717068944,0.142105263157895,14.2105263157895,3,80.667554338601,0.761857642324692,6.8421052631579,5.01657305823432,0,-2.41179482142131,-2.54263091087341,0.17257462558397
+9924,89643,448797.952,89743,448697.952,23,99,14.75,0.0122916666666667,3.67078414724511,0.166914682539683,14.4427579650975,0.0168439511404262,0.113157894736842,11.3157894736842,3,79.4151667351751,0.780745136828223,6.05263157894737,3.46842175860738,0,-2.26058735450109,-2.37911701202393,0.190923898215288
+9925,89643,448697.952,89743,448597.952,24,99,22,0.0169230769230769,4.82825521823028,0.271794871794872,12.4060178460778,0.0162433277878575,0.126315789473684,12.6315789473684,3,81.0202701069831,0.720834557743168,6.05263157894737,2.837775071462,0,-2.15315904882219,-2.32063484191895,0.35852281690594
+9926,89643,448597.952,89743,448497.952,25,99,19.5,0.0139285714285714,3.61337675096612,0.215844671201814,11.8501213883925,0.0302040651011722,0.189473684210526,18.9473684210526,5,81.9072552898571,0.795991410164638,9.47368421052632,4.30768606397841,0,-1.98499821623166,-2.31409335136414,0.581794217106673
+9927,89643,448497.952,89743,448397.952,26,99,26,0.0216666666666667,5.2212252866407,0.239101156492461,11.890262940519,0.0127116645061745,0.105263157894737,10.5263157894737,5,73.2577725242883,0.766461808604039,7.36842105263158,3.74467716217041,0,-1.85325309965346,-2.1742730140686,0.535299407603273
+9928,89643,448397.952,89743,448297.952,27,99,33,0.165,16.2325126550018,0.328880407124682,33.5410196624968,0.0070056379118078,0.0763157894736842,7.63157894736842,3,74.9256092042896,0.792689579923622,5,1.45072647620892,0,-1.7929972410202,-2.07278919219971,0.446703203263682
+9929,89643,448297.952,89743,448197.952,28,99,1.25,0.00416666666666667,2.01184463531091,0.0833333333333333,44.3028631918515,0.0112766762313473,0,0,0,NA,NA,0,NA,NA,-1.87650985187954,-2.02354407310486,0.280765614558173
+9930,89643,448197.952,89743,448097.952,29,99,2,0.005,1.58173525400276,0.125,17.2240896804561,0.00975316737069653,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,36.8333120346069,31.6227760314941,-1.99039711554845,-2.06612110137939,0.13956338537277
+9931,89643,448097.952,89743,447997.952,30,99,1.75,0.0035,1,0.0666666666666667,17.5356578712647,0.017142345613224,0.0236842105263158,2.36842105263158,4,37.2301851041841,0.40251572327044,0.789473684210526,23.3513605329725,5,-2.03528931405809,-2.0664484500885,0.065467186639045
+9932,89643,447997.952,89743,447897.952,31,99,8,0.00421052631578947,1.41415090732979,0.103801169590643,13.8932040544089,0.00708501286734597,0.0210526315789474,2.10526315789474,2,56.1263686554175,0.591397849462366,1.57894736842105,12.126401424408,5,-2.04908657073975,-2.07031297683716,0.0521455295893922
+9933,89643,447897.952,89743,447797.952,32,99,11.25,0.0140625,4.8375591521717,0.176579301075269,15.625,0.025289001212437,0.186842105263158,18.6842105263158,3,90.3857071346027,0.822912621359223,17.3684210526316,6.52492681691344,0,-1.98199015855789,-2.05466723442078,0.125959082533867
+9934,89643,447797.952,89743,447697.952,33,99,22,0.0275,3.89954586034185,0.084375,14.573615547094,0.027996758059453,0.181578947368421,18.1578947368421,4,88.9161692590774,0.838431080757886,16.8421052631579,2.40489860202955,0,-1.7778547472424,-1.91627895832062,0.244730939325784
+9935,89643,447697.952,89743,447597.952,34,99,21.75,0.0167307692307692,3.97930179361589,0.225402504472272,13.3917706564694,0.0220801449943744,0.15,15,5,76.8139110149152,0.723889555822329,6.8421052631579,3.71010214822334,0,-1.46974924206734,-1.69889783859253,0.308495220945014
+9936,89643,447597.952,89743,447497.952,35,99,47,0.05875,7.59541697635779,0.34496284965035,10.7725424859374,0.0403909334993315,0.321052631578947,32.1052631578947,5,88.320872334175,0.813392262092672,24.7368421052632,2.30766949888136,0,-1.22636342048645,-1.40790390968323,0.287187262751905
+9937,89643,447497.952,89743,447397.952,36,99,38.25,0.0546428571428571,8.98896402223173,0.366927268419806,11.336058280477,0.012589066703329,0.210526315789474,21.0526315789474,5,80.8055372592438,0.750234741784038,7.63157894736842,6.85571439266205,0,-1.07702023287614,-1.23136043548584,0.183866012865222
+9938,89643,447397.952,89743,447297.952,37,99,27.5,0.034375,5.80985874976731,0.209446708937198,16.8633809811432,0.0348240095926724,0.302631578947368,30.2631578947368,6,92.0596284682122,0.793178519593614,27.8947368421053,6.11136766516644,0,-1.02542752027512,-1.06414389610291,0.0689922489036482
+9939,89643,447297.952,89743,447197.952,38,99,9.5,0.00791666666666667,2.63151933372751,0.135582010582011,19.9580208064912,0.0122011971696338,0.0894736842105263,8.94736842105263,6,68.8358745219424,0.666597853014038,5.52631578947368,10.7850921855253,0,-1.1187411993742,-1.33198416233063,0.235257761358731
+9940,89643,447197.952,89743,447097.952,39,99,11.75,0.0195833333333333,3.02517631670452,0.138550135501355,19.9688901769403,0.0146978592791943,0.0342105263157895,3.42105263157895,3,58.4012368919126,0.654859218891916,1.57894736842105,7.96548461914062,0,-1.39624155892266,-1.6278977394104,0.343759856953987
+9941,89643,447097.952,89743,446997.952,40,99,5.25,0.00583333333333333,1.57510822845928,0.116512345679012,19.8454594938276,0.0151773222738867,0.0368421052631579,3.68421052631579,4,54.4938373335044,0.636612021857924,1.84210526315789,11.3193565096174,0,-1.80322741468747,-2.04383039474487,0.297388005171067
+9942,89643,446997.952,89743,446897.952,41,99,32.5,0.065,8.51710908593389,0.336773504273504,14.9907047849146,0.026338156159161,0.197368421052632,19.7368421052632,3,88.66870842689,0.877297565822156,16.5789473684211,2.51905629475911,0,-2.14613344934252,-2.23364591598511,0.154038577229443
+9943,89643,446897.952,89743,446797.952,42,99,21.5,0.0358333333333333,6.89485830876148,0.307788671023965,13.8005194148638,-0.0480368245899507,0,0,0,NA,NA,0,NA,NA,-2.24123164017995,-2.34097671508789,0.141798935939812
+9944,89643,446797.952,89743,446697.952,43,99,24.75,0.04125,6.1080959922118,0.18817139650473,10.5901699437495,-0.0531281659244853,0,0,0,NA,NA,0,NA,NA,-2.3126081360711,-3.19772911071777,0.666068793822425
+9945,89643,446697.952,89743,446597.952,44,99,16,0.02,5.83247066950513,0.253224206349206,13.125,-0.0291678717321606,0,0,0,NA,NA,0,NA,NA,-2.05024101999071,-2.3626127243042,0.532595202937759
+9946,89643,446597.952,89743,446497.952,45,99,22,0.0314285714285714,6.21305812127465,0.23318216175359,13.1943828249997,-0.0287464571122607,0,0,0,NA,NA,0,NA,NA,-2.07212987542152,-2.21078824996948,0.161497614296617
+9947,89643,446497.952,89743,446397.952,46,99,49,0.1225,8.47033816557549,0.185449050086356,10.5901699437495,-0.0105148059900067,0.192105263157895,19.2105263157895,2,91.6732008363717,0.903298045602606,18.6842105263158,1.67220640835697,0,-2.35694236225552,-2.44674730300903,0.160395534020475
+9948,89643,446397.952,89743,446297.952,47,99,44.25,0.22125,19.3415034715276,0.350574712643678,10,-0.035873733612626,0.142105263157895,14.2105263157895,1,91.0631654736186,0.949864766805198,14.2105263157895,1.85185185185185,0,-2.61970661083857,-2.76764917373657,0.162708652617022
+9949,89643,446297.952,89743,446197.952,48,99,11.5,0.0383333333333333,12.4277998897211,0.283869395711501,17.9944854588939,-0.0509360843285226,0,0,0,NA,NA,0,NA,NA,-2.88304323620266,-2.94735765457153,0.10230148696642
+9950,89643,446197.952,89743,446097.952,49,99,8,0.0133333333333333,3.19868118952132,0.115384615384615,16.4235032770828,-0.0257865295677651,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,8.38525308881487,0,-2.94620645046234,-3.0981616973877,0.19412671285744
+9951,89643,446097.952,89743,445997.952,50,99,1.5,0.0075,3.82439692656455,0.194444444444444,20,-0.0244522123068141,0.147368421052632,14.7368421052632,2,90.2579813281781,0.84281532391498,14.4736842105263,78.1357558795384,60,-3.06549681557549,-3.30951023101807,0.321251113852906
+9952,89643,445997.952,89743,445897.952,51,99,0,NA,NA,NA,NA,0.0358305654523352,0.336842105263158,33.6842105263158,4,91.3479009906404,0.818788745827372,26.5789473684211,90.4165564477444,40,-3.86643282572428,-4.48395776748657,0.681237779188642
+9953,89643,445897.952,89743,445797.952,52,99,1,0.0025,0,0,20.6155281280883,0.00326414328257287,0.334210526315789,33.4210526315789,1,96.0538957916212,0.973991752647879,33.4210526315789,27.8716148917131,5,-4.68125269148085,-4.8846287727356,0.320783057740987
+9954,89643,445797.952,89743,445697.952,53,99,0.75,0.0025,0,0,45.5853073762969,-0.0848967630955342,0,0,0,NA,NA,0,NA,NA,-4.94656745592753,-5.06859540939331,0.194475404615725
+9955,89643,445697.952,89743,445597.952,54,99,1,0.0025,0,0,38.8121496915226,-0.0675755314311429,0.0815789473684211,8.1578947368421,1,86.4755730963744,0.912893982808023,8.1578947368421,13.5944674707228,5,-4.97295792897542,-5.07021379470825,0.156581513409431
+9956,89643,445597.952,89743,445497.952,55,99,0.75,0.0025,0,0,31.7714417960455,-0.0104249821101181,0.271052631578947,27.1052631578947,1,95.0211914913291,0.948092496828959,27.1052631578947,26.1652155015075,0,-4.95732906129625,-5.02993249893188,0.0960290683689135
+9957,89643,445497.952,89743,445397.952,56,99,0,NA,NA,NA,NA,-0.0745545140519665,0,0,0,NA,NA,0,NA,NA,-4.95305705070496,-5.00370645523071,0.0397933167355631
+9958,89643,445397.952,89743,445297.952,57,99,10.5,0.0175,4.05035322226588,0.27989417989418,14.3425854591066,-0.0654602778370884,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5,5,-4.8635696305169,-4.91012716293335,0.0685036741477121
+9959,89643,445297.952,89743,445197.952,58,99,4.25,0.00472222222222222,1.50682902391419,0.095679012345679,13.9754804880299,-0.000536929795749816,0.136842105263158,13.6842105263158,4,85.8146384216106,0.856810084954782,12.6315789473684,36.2165585297805,0,-4.84972258408864,-4.89422512054443,0.0438320741594665
+9960,89643,445197.952,89743,445097.952,59,99,6,0.02,8.31067443564476,0.14021164021164,11.937129433614,-0.0186559565724517,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,34.6294631958008,20.6155281066895,-5.01068872875637,-5.08862781524658,0.143695643077452
+9961,89643,445097.952,89743,444997.952,60,99,2,0.00333333333333333,0.785674201318386,0.0185185185185185,14.9327554028561,-0.051868918321653,0,0,0,NA,NA,0,NA,NA,-5.29112756252289,-5.43310546875,0.168537729926185
+9962,89643,444997.952,89743,444897.952,61,99,0,NA,NA,NA,NA,-0.0046186266864568,0.326315789473684,32.6315789473684,1,95.9414262170022,0.920833333333333,32.6315789473684,73.0588050042429,40.3112869262695,-5.52587270736694,-5.5767707824707,0.079920652244036
+9963,89643,444897.952,89743,444797.952,62,99,0,NA,NA,NA,NA,0.0260869960637616,0.384210526315789,38.4210526315789,3,93.5446375640328,0.84794647715996,31.3157894736842,163.891525791116,105.118980407715,-5.56467620531718,-5.58563709259033,0.0342798138484269
+9964,89643,444797.952,89743,444697.952,63,99,0,NA,NA,NA,NA,0.0119748589097933,0.292105263157895,29.2105263157895,4,90.9046969900658,0.759851301115242,20,225.619497213278,200.062484741211,-5.56277836693658,-5.58394384384155,0.0389588031321259
+9965,89643,444697.952,89743,444597.952,64,99,0,NA,NA,NA,NA,0.0411309952518327,0.502631578947368,50.2631578947368,2,97.507590701174,0.829611694018474,50,152.446445964394,100.124923706055,-5.53372863928477,-5.57093811035156,0.0488355525051321
+9966,89643,444597.952,89743,444497.952,65,99,0.25,0.0025,0,0,NA,0.0471638005041122,0.636842105263158,63.6842105263158,1,98.6314427916243,0.896434526099782,63.6842105263158,59.3249893661373,5,-5.40529833899604,-5.45713663101196,0.0882853399864885
+9967,89643,444497.952,89743,444397.952,66,99,4.75,0.00475,2.1313288280434,0.0466666666666667,12.5498231854631,0.0951596643579634,0.989473684210526,98.9473684210526,1,99.9713139666717,0.866760168302943,98.9473684210526,18.8973236033257,0,-5.32719077004327,-5.34848928451538,0.0381168055993662
+9968,89643,444397.952,89743,444297.952,67,99,0,NA,NA,NA,NA,0.179260012723113,1,100,1,100,NA,100,65.9655088073329,15,-5.42513406276703,-5.56095027923584,0.120106918491944
+9969,89643,444297.952,89743,444197.952,68,99,0,NA,NA,NA,NA,0.137842354648992,1,100,1,100,NA,100,87.3787493655556,35,-5.57521952523126,-5.66847705841064,0.147531750571944
+9970,89643,444197.952,89743,444097.952,69,99,0.5,0.0025,0,0,42.7200187265877,0.119039283146297,0.794736842105263,79.4736842105263,1,99.3417720000049,0.922941733135055,79.4736842105263,35.378902428987,0,-5.65287272135417,-5.72489738464355,0.134288526511541
+9971,89643,444097.952,89743,443997.952,70,99,0,NA,NA,NA,NA,0.174621433561888,0.957894736842105,95.7894736842105,1,99.8824367071426,1,95.7894736842105,61.4790822961828,25,-5.67324611875746,-5.72976779937744,0.0719848302971726
+9972,89643,443997.952,89743,443897.952,71,99,0,NA,NA,NA,NA,0.188330335248458,1,100,1,100,NA,100,110.475691755194,43.0116271972656,-5.60353783766429,-5.66728019714355,0.0697494043879714
+9973,89643,443897.952,89743,443797.952,72,99,0,NA,NA,NA,NA,0.0964895038976561,0.663157894736842,66.3157894736842,2,95.8370416481465,0.823887711864407,47.8947368421053,95.0626692393469,26.9258232116699,-5.36408138275146,-5.48140430450439,0.267429899330082
+9974,89643,443797.952,89743,443697.952,73,99,8.5,0.017,7.3202631756792,0.221777777777778,10.2360679774998,0.0105405863830368,0.0868421052631579,8.68421052631579,4,72.4467597236283,0.634966378482229,4.21052631578947,20.1958264437589,10,-4.09221772352854,-4.99417066574097,0.827220803056054
+9975,89643,443697.952,89743,443597.952,74,99,7.25,0.018125,7.78438486060528,0.30530303030303,10,-0.0362117631007813,0,0,0,NA,NA,0,NA,NA,-3.5117228825887,-4.03957986831665,0.538686976747633
+9976,89643,443597.952,89743,443497.952,75,99,24.25,0.0404166666666667,9.4271326077321,0.327912323078227,10.1967233145832,-0.0795345536249347,0,0,0,NA,NA,0,NA,NA,-4.50996760527293,-4.9726390838623,0.629057443529546
+9977,89643,443497.952,89743,443397.952,76,99,17,0.017,5.38236868062135,0.188425925925926,13.6261038389085,-0.0141703642805193,0.0552631578947368,5.52631578947368,2,79.1158279248491,0.834610027855153,5.26315789473684,10.0586993807838,0,-4.95366260740492,-5.03909778594971,0.127484593909226
+9978,89643,443397.952,89743,443297.952,77,99,13.5,0.03375,12.4515777732548,0.312760416666667,37.8721314425464,0.0305340076563114,0.342105263157895,34.2105263157895,3,94.6159222646884,0.794767932489451,32.6315789473684,10.7975269757784,0,-4.90550576315986,-4.97634935379028,0.125206688767182
+9979,89643,443297.952,89743,443197.952,78,99,14,0.0155555555555556,4.86423677656897,0.247567994059222,13.6157057959734,-0.00665407675964831,0.0526315789473684,5.26315789473684,4,61.1644271354449,0.625448028673835,2.63157894736842,5.98538732528687,0,-4.71649444103241,-4.80611991882324,0.133880574063507
+9980,89643,443197.952,89743,443097.952,79,99,1.25,0.0125,5.64322334039596,0.233333333333333,NA,-0.0327450897891571,0,0,0,NA,NA,0,NA,NA,-4.54873249265883,-4.67298936843872,0.184832380034809
+9981,89643,443097.952,89743,442997.952,80,99,1.5,0.003,0.5,0.0333333333333333,20.2579804089839,-0.0489640179594924,0,0,0,NA,NA,0,NA,NA,-4.31537389755249,-4.48154640197754,0.166463574576935
+9982,89643,442997.952,89743,442897.952,81,99,13,0.0108333333333333,2.65427958866751,0.189429012345679,13.8212538587995,0.00355007807298343,0.0368421052631579,3.68421052631579,4,52.9086443073112,0.636612021857924,1.84210526315789,5.88525308881487,0,-4.05196626981099,-4.11763858795166,0.117252631960596
+9983,89643,442897.952,89743,442797.952,82,99,6.25,0.0125,5.59890703168212,0.237094017094017,23.3879384166472,-0.0124238840660837,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,15.6119373321533,10,-4.09854720036189,-4.30387592315674,0.239573764984344
+9984,89643,442797.952,89743,442697.952,83,99,11.75,0.0195833333333333,5.14700310440653,0.231539351851852,18.7743841071464,-0.0327241499968774,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5,5,-4.49006048838298,-4.73678350448608,0.375828787616389
+9985,89643,442697.952,89743,442597.952,84,99,0.5,0.0025,0,0,95,-0.145611600489601,0,0,0,NA,NA,0,NA,NA,-5.12828747431437,-5.34139442443848,0.288034109826768
+9986,89643,442597.952,89743,442497.952,85,99,5.75,0.02875,4.54515558550716,0.359848484848485,22.3606797749979,-0.0489249607494122,0,0,0,NA,NA,0,NA,NA,-5.48552449544271,-5.56511783599854,0.12009710209938
+9987,89643,442497.952,89743,442397.952,86,99,0,NA,NA,NA,NA,-0.00500504898769386,0,0,0,NA,NA,0,NA,NA,-5.54631662368774,-5.5900731086731,0.0625463245759847
+9988,89643,442397.952,89743,442297.952,87,99,0,NA,NA,NA,NA,-0.0215035512249175,0,0,0,NA,NA,0,NA,NA,-5.45015504625109,-5.51884031295776,0.0605484310092763
+9989,89643,442297.952,89743,442197.952,88,99,4.25,0.0425,11.1436593047667,0.411764705882353,NA,-0.0844641779542527,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.795698924731183,2.10526315789474,78.4611234664917,75,-5.43391116460164,-5.47792434692383,0.0527684221986161
+9990,89643,442197.952,89743,442097.952,89,99,3.75,0.01875,9.19374777396765,0.237179487179487,15,-0.0762735527570935,0.0842105263157895,8.42105263157895,2,85.0212617258067,0.769009725906278,8.15789473684211,76.512304186821,20.6155281066895,-5.55915827221341,-5.60441493988037,0.0841587208030488
+9991,89643,442097.952,89743,441997.952,90,99,0,NA,NA,NA,NA,0.103348151883601,0.921052631578947,92.1052631578947,2,99.4918454255232,0.942598187311178,91.8421052631579,108.315361131941,57.0087738037109,-5.65841107898288,-5.68594884872437,0.0444622334562949
+9992,89643,441997.952,89743,441897.952,91,99,0.5,0.0025,0,0,18.0277563773199,0.0364839464830431,0.202631578947368,20.2631578947368,3,88.3170309471367,0.704911667637352,13.4210526315789,58.7774124145508,0,-5.66334394613902,-5.68891477584839,0.0270537647656514
+9993,89643,441897.952,89743,441797.952,92,99,0,NA,NA,NA,NA,0.062052107729802,0.784210526315789,78.4210526315789,1,99.3011995922519,0.801747750097822,78.4210526315789,68.7917353610864,10,-5.62596951590644,-5.65487813949585,0.0407424131181706
+9994,89643,441797.952,89743,441697.952,93,99,0,NA,NA,NA,NA,0.0946089499875119,0.934210526315789,93.4210526315789,2,99.2959754245286,0.841666666666667,92.6315789473684,107.330099164936,50,-5.51586437225342,-5.58889484405518,0.086060836353067
+9995,89643,441697.952,89743,441597.952,94,99,0,NA,NA,NA,NA,0.0603683837898069,0.765789473684211,76.578947368421,1,99.2281951915448,0.968777602037672,76.578947368421,69.3340423164499,25,-5.34782796435886,-5.4052996635437,0.103569589772011
+9996,89643,441597.952,89743,441497.952,95,99,19,0.095,17.6389834575186,0.614323695579927,18.0277563773199,-0.00682668632262472,0.260526315789474,26.0526315789474,3,90.3275787963918,0.764484785477228,20,7.05577817589346,0,-5.17872087160746,-5.24754428863525,0.0813511856211298
+9997,89643,441497.952,89743,441397.952,96,99,88.25,0.44125,21.7669643209687,0.732913815575106,18.0277563773199,0.0337454374166363,0.334210526315789,33.4210526315789,2,93.0486940902505,0.785431959345003,25.7894736842105,1.53823101614404,0,-5.14984602398343,-5.19019889831543,0.0682559127712543
+9998,89643,441397.952,89743,441297.952,97,99,100,1,38.2238923285138,0.934166666666667,NA,0.0486309366190414,0.392105263157895,39.2105263157895,2,95.3463935914336,0.873459873459874,36.5789473684211,0,0,-5.16075174013774,-5.18957328796387,0.0333788630091559
+9999,89643,441297.952,89743,441197.952,98,99,36,0.18,16.7387958807726,0.745442708333333,67.0820393249937,0.018274527188317,0.281578947368421,28.1578947368421,1,95.2171730229585,0.949515079048758,28.1578947368421,0,0,-5.16086027357313,-5.16730976104736,0.0172082372148984
+10000,89643,441197.952,89743,441097.952,99,99,77.3684210526316,0.735,34.445547467597,0.888321995464853,NA,-0.118317563747252,0,0,0,NA,NA,0,NA,NA,-5.14920663833618,-5.17791509628296,0.0501665008720242
diff --git a/data/results/delft_grid_metrics.gpkg b/data/results/delft_grid_metrics.gpkg
new file mode 100644
index 00000000..6692d6b7
Binary files /dev/null and b/data/results/delft_grid_metrics.gpkg differ
diff --git a/data/results/delft_typology.gpkg b/data/results/delft_typology.gpkg
new file mode 100644
index 00000000..4f261428
Binary files /dev/null and b/data/results/delft_typology.gpkg differ
diff --git a/data/results/delft_typology_with_combined_types.gpkg b/data/results/delft_typology_with_combined_types.gpkg
new file mode 100644
index 00000000..c50d18f1
Binary files /dev/null and b/data/results/delft_typology_with_combined_types.gpkg differ
diff --git a/data/results/final_typology_summary.csv b/data/results/final_typology_summary.csv
new file mode 100644
index 00000000..8f40a274
--- /dev/null
+++ b/data/results/final_typology_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,2074,20.74,6.74739887326803,0.034609389388487205,5.830729681730029,0.21416782762772318,21.630965488216013,-0.056860593610404686,8.466984723138609e-4,0.08466984723138608,0.14705882352941177,8.899528593104113,0.5957025211473739,0.07695528599705628,21.466061153976412,19.885288786614076,-2.580590823874358,-2.7339206866209604,0.2044647273760834
+Delft,Type 2,6678,66.78,19.323519096483345,0.056334996406338204,7.882225942130994,0.287151273231048,17.628649590041775,0.017025909732594838,0.23533759713749783,23.533759713749784,2.416292303084756,79.2810869873611,0.8097232477594819,20.699831339354677,24.7210011916372,12.118226888758867,-2.0032932904194607,-2.2036814340880992,0.26399752951469324
+Delft,Type 3,59,0.59,37.904772524531666,0.12905740516545602,15.108604012996082,0.5471569832787246,24.27003608820687,0.013193224050583647,0.18627118644067797,18.627118644067796,4.983050847457627,76.72666059081175,0.6933345481343713,11.5,4.391860404511484,0.0847457627118644,-0.49455157302157027,-1.6268270574510098,1.5762453124448865
+Delft,Type 4,1189,11.89,75.56989509096543,0.5751641084945333,29.23221472093287,0.7470218866136754,13.265250918864465,0.03941841449825091,0.495091629409942,49.5091629409942,2.0176619007569387,92.19464562318792,0.8166757387511516,45.71458766765526,1.6222845462386255,0.04083409068056012,-1.5217333964040956,-1.9927932431694848,0.5870799047356617
+Xi'an,Type 1,1303,13.03,19.354466998169578,0.1224051476367761,14.71703341840823,0.5519784619412468,22.972901621082435,-0.007817507539941504,7.411918868809444e-4,0.07411918868809445,0.24642857142857144,1.2179868079010325,0.4051082562248901,0.07013472093977627,36.62678215943416,36.28890299918083,393.4927221964903,393.1129558384647,0.465785732131698
+Xi'an,Type 2,98,0.98,0.056956300525750465,0.003914130232699877,0.7360398229436281,0.03611111111111111,15.58672566233619,0.026902000678551863,0.20282849196927152,20.282849196927152,1.2448979591836735,75.79594563528389,0.9097411777401393,18.87956262837545,65.4701663621299,45.72499981705023,395.98046824396874,395.820444535236,0.21324011117620534
+Xi'an,Type 3,7183,71.83,20.816615813036552,0.10408571097502005,14.076628565811049,0.536798854336518,23.86569421230364,0.023687200943613547,0.1543216768864076,15.43216768864076,3.4698593902269246,72.26208415778962,0.726717219940912,11.028396101896806,22.602226982518996,8.649475487252523,400.3745149915463,399.94319998937516,0.5450996675595794
+Xi'an,Type 4,1416,14.16,73.06078874986306,0.6610132313531801,33.039874680264674,0.847202391966543,15.895336537700423,0.03636291609597114,0.35292436217893564,35.29243621789356,2.456127628716461,84.65530053184247,0.7805994737007054,31.089669192573563,3.760761050521402,0.3994404078444787,396.476726209152,395.8566869315454,0.763324613881998
diff --git a/data/results/final_typology_used.csv b/data/results/final_typology_used.csv
new file mode 100644
index 00000000..fadb98bf
--- /dev/null
+++ b/data/results/final_typology_used.csv
@@ -0,0 +1,2 @@
+final_typology_used
+green_flood_dem_type
diff --git a/data/results/flood_pattern_type_summary.csv b/data/results/flood_pattern_type_summary.csv
new file mode 100644
index 00000000..c45b74f5
--- /dev/null
+++ b/data/results/flood_pattern_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,4260,42.6,21.402545095132197,0.09482860878812632,9.557869563128477,0.3229015443792293,18.11606120679349,-0.005751367765611024,0.12156035334815914,12.156035334815913,1.9164319248826291,75.44206866694924,0.8335536777218178,10.121648752162095,20.39753637310337,11.739053825145598,-1.9683287746869018,-2.187240453913249,0.28814017833953987
+Delft,Type 2,1526,15.260000000000002,31.86303200662206,0.10555143332545369,10.074326843589212,0.3443522493204818,15.684391687015237,0.015331834144772346,0.17121775194867903,17.121775194867904,4.839449541284404,75.9785927138526,0.6957169615215413,10.277143546940746,8.317104359470978,1.5150551827206993,-1.0237121992934068,-1.271482578673326,0.3189514359136156
+Delft,Type 3,2140,21.4,8.692855386128874,0.06102051850916424,6.819191841682868,0.23571351971195575,21.46768091688687,-0.0544953530778593,5.293285784554845e-4,0.05293285784554845,0.17523364485981308,4.866906951223803,0.415919791062892,0.041250614854894244,16.71694350466482,15.20237254424834,-2.552827952519133,-2.706502502986935,0.2041342535252817
+Delft,Type 4,2074,20.74,36.99373826320865,0.27658429394344247,16.86970408539035,0.4773353901511157,16.94415258357939,0.07769602336880088,0.6715218494645485,67.15218494645485,1.5477338476374156,97.99183517200507,0.8554248146096991,64.86827513576613,33.0157799496137,14.237974010530065,-2.4871457563116848,-2.7974483984051837,0.3987596303603417
+Xi'an,Type 1,4087,40.87,24.529267178480243,0.17717326849886153,16.43835446371318,0.5771781229650301,24.872588551588393,0.01712234659323418,0.11359981667582045,11.359981667582044,2.1888916075360902,71.00676337237839,0.7871707189306594,8.920372772093094,23.347584062621888,11.516224814943032,398.80848431123775,398.3791561402054,0.543607881052884
+Xi'an,Type 2,3403,34.03,26.53425159322514,0.15779178029413835,16.047108287072298,0.5665078390965441,22.385115305076685,0.027008092067438236,0.16652993740960634,16.652993740960635,5.074640023508668,73.99389335491453,0.6686106824178775,9.795497876066621,19.608149851437233,5.02546138802662,400.8461020782886,400.3980973227179,0.5585340944749823
+Xi'an,Type 3,1558,15.58,24.34162254328477,0.19120107644952644,16.957654943929462,0.5861673252125817,23.33974321682698,-0.006929048427437194,0.0017025127260329041,0.17025127260329043,0.4886578449905482,7.438759583707016,0.4183093536315101,0.12041944998635606,31.26725439188278,27.87608202251457,393.8848776686057,393.49684409458615,0.47742121825581607
+Xi'an,Type 4,952,9.520000000000001,52.24039854861612,0.3975810188528317,24.105256460513377,0.7019739610185054,21.221360609776195,0.06491878236497443,0.612279419847348,61.2279419847348,2.004201680672269,97.10076613305937,0.8039826042812807,56.806393644715506,8.555227135866746,0.7147017101279828,400.36353807378106,399.7302939150514,0.7961089430632097
diff --git a/data/results/green_flood_dem_elbow.csv b/data/results/green_flood_dem_elbow.csv
new file mode 100644
index 00000000..403344dc
--- /dev/null
+++ b/data/results/green_flood_dem_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,146413.41137093114
+3,125860.19447406317
+4,108857.89401103891
+5,99718.17888062364
+6,91997.61999447785
+7,84608.74216778335
+8,78701.37937916783
diff --git a/data/results/green_flood_dem_type_characteristics.csv b/data/results/green_flood_dem_type_characteristics.csv
new file mode 100644
index 00000000..451bc248
--- /dev/null
+++ b/data/results/green_flood_dem_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,contig,enn,fwei_change_mean,flood_share,np_flood,flood_clumpy,elevation_mean,slope_mean
+Type 1,11.611778431084646,0.05010977441770518,0.24893467697185773,11.592891289750781,-0.036865732153251465,7.043689122176312e-4,0.15161385845424932,0.009426883939849886,150.24248494323703,0.30529424150002943
+Type 2,19.04487046100462,0.04825966063233677,0.24601344464936745,13.683974763247392,0.017168745758672728,0.23486742412886646,2.3993506493506493,0.7993394159427635,3.7526702028464842,0.263263434621368
+Type 3,20.955831671359974,0.09258993097275126,0.47654710926301136,16.394670231313587,0.02360170734561731,0.1545819670084322,3.4821872410936208,0.7259435160281406,397.108666479076,0.5535003293999872
+Type 4,74.20602001265412,0.6218291211501356,0.8014770096768848,4.294449618951939,0.03724105801718409,0.4128010145156135,2.2211132437619963,0.7344644959135489,214.81831220876575,0.6828812514347835
diff --git a/data/results/green_flood_dem_type_cluster_centres_scaled.csv b/data/results/green_flood_dem_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..9c92c467
--- /dev/null
+++ b/data/results/green_flood_dem_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,contig,enn,fwei_change_mean,flood_share,np_flood,flood_clumpy,elevation_mean,slope_mean
+Type 1,-0.5429678021895602,-0.4017038041378767,-0.5361242535963275,-0.10192145999890334,-1.0504321330413158,-0.8062888947651743,-1.2031196623237026,-1.9148461348578707,-0.24019329805708467,-0.2423558853512942
+Type 2,-0.2558093537300694,-0.4100335918489542,-0.5463339679110699,0.04048920751523174,0.08807080118498728,0.1941029977086208,0.005727989375249196,0.5188442911806463,-0.9706377446943666,-0.32396726251203267
+Type 3,-0.1819842680156663,-0.2104449265295972,0.25938176976452304,0.22509778767360064,0.22361288330595164,-0.14889269950982492,0.5880846409208088,0.29271431894211447,0.9907593909402482,0.23958681709726395
+Type 4,1.8752001987864046,2.1723545193356153,1.3950125889925025,-0.5989728514545739,0.510993114606252,0.9542712533583841,-0.09012926137731912,0.31896713343412536,0.08180215600712305,0.490806244220534
diff --git a/data/results/green_flood_dem_type_summary.csv b/data/results/green_flood_dem_type_summary.csv
new file mode 100644
index 00000000..8f40a274
--- /dev/null
+++ b/data/results/green_flood_dem_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,2074,20.74,6.74739887326803,0.034609389388487205,5.830729681730029,0.21416782762772318,21.630965488216013,-0.056860593610404686,8.466984723138609e-4,0.08466984723138608,0.14705882352941177,8.899528593104113,0.5957025211473739,0.07695528599705628,21.466061153976412,19.885288786614076,-2.580590823874358,-2.7339206866209604,0.2044647273760834
+Delft,Type 2,6678,66.78,19.323519096483345,0.056334996406338204,7.882225942130994,0.287151273231048,17.628649590041775,0.017025909732594838,0.23533759713749783,23.533759713749784,2.416292303084756,79.2810869873611,0.8097232477594819,20.699831339354677,24.7210011916372,12.118226888758867,-2.0032932904194607,-2.2036814340880992,0.26399752951469324
+Delft,Type 3,59,0.59,37.904772524531666,0.12905740516545602,15.108604012996082,0.5471569832787246,24.27003608820687,0.013193224050583647,0.18627118644067797,18.627118644067796,4.983050847457627,76.72666059081175,0.6933345481343713,11.5,4.391860404511484,0.0847457627118644,-0.49455157302157027,-1.6268270574510098,1.5762453124448865
+Delft,Type 4,1189,11.89,75.56989509096543,0.5751641084945333,29.23221472093287,0.7470218866136754,13.265250918864465,0.03941841449825091,0.495091629409942,49.5091629409942,2.0176619007569387,92.19464562318792,0.8166757387511516,45.71458766765526,1.6222845462386255,0.04083409068056012,-1.5217333964040956,-1.9927932431694848,0.5870799047356617
+Xi'an,Type 1,1303,13.03,19.354466998169578,0.1224051476367761,14.71703341840823,0.5519784619412468,22.972901621082435,-0.007817507539941504,7.411918868809444e-4,0.07411918868809445,0.24642857142857144,1.2179868079010325,0.4051082562248901,0.07013472093977627,36.62678215943416,36.28890299918083,393.4927221964903,393.1129558384647,0.465785732131698
+Xi'an,Type 2,98,0.98,0.056956300525750465,0.003914130232699877,0.7360398229436281,0.03611111111111111,15.58672566233619,0.026902000678551863,0.20282849196927152,20.282849196927152,1.2448979591836735,75.79594563528389,0.9097411777401393,18.87956262837545,65.4701663621299,45.72499981705023,395.98046824396874,395.820444535236,0.21324011117620534
+Xi'an,Type 3,7183,71.83,20.816615813036552,0.10408571097502005,14.076628565811049,0.536798854336518,23.86569421230364,0.023687200943613547,0.1543216768864076,15.43216768864076,3.4698593902269246,72.26208415778962,0.726717219940912,11.028396101896806,22.602226982518996,8.649475487252523,400.3745149915463,399.94319998937516,0.5450996675595794
+Xi'an,Type 4,1416,14.16,73.06078874986306,0.6610132313531801,33.039874680264674,0.847202391966543,15.895336537700423,0.03636291609597114,0.35292436217893564,35.29243621789356,2.456127628716461,84.65530053184247,0.7805994737007054,31.089669192573563,3.760761050521402,0.3994404078444787,396.476726209152,395.8566869315454,0.763324613881998
diff --git a/data/results/green_flood_elbow.csv b/data/results/green_flood_elbow.csv
new file mode 100644
index 00000000..1e12ba1b
--- /dev/null
+++ b/data/results/green_flood_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,108491.61391780456
+3,87101.56802624502
+4,75499.13248057564
+5,67036.15324111083
+6,60471.455611256126
+7,55201.517331456766
+8,50848.06157295265
diff --git a/data/results/green_flood_type_characteristics.csv b/data/results/green_flood_type_characteristics.csv
new file mode 100644
index 00000000..140affee
--- /dev/null
+++ b/data/results/green_flood_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,contig,enn,fwei_change_mean,flood_share,np_flood,flood_clumpy
+Type 1,29.175768860485856,0.10865177481921827,0.3590637754938486,12.746567915878863,0.07621548938084634,0.6317915228631936,1.8247334754797442,0.8036042524511764
+Type 2,74.88594565896614,0.6679459915353502,0.8353209452215218,2.790825916148388,0.029688633469358086,0.349047464042523,2.3824546240276576,0.7254749236780861
+Type 3,19.429367280416557,0.06831041682416975,0.3705700423089975,15.57648067388565,0.01143214975729653,0.12510659074541314,3.1334949427401155,0.7542519400371643
+Type 4,11.602444077614809,0.05003444538859153,0.24824589806124236,11.574582214149842,-0.036829858934800584,8.207429265934354e-4,0.14683244523386618,0.009592812424490876
diff --git a/data/results/green_flood_type_cluster_centres_scaled.csv b/data/results/green_flood_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..32997311
--- /dev/null
+++ b/data/results/green_flood_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,contig,enn,fwei_change_mean,flood_share,np_flood,flood_clumpy
+Type 1,0.13557192531041873,-0.13812950974402533,-0.1512227772592153,-0.023351732628030707,1.3321818478379819,1.889842959479748,-0.30330491166238516,0.5319840900300655
+Type 2,1.9014673824667576,2.379987013751054,1.5132972288471302,-0.7013752939779465,0.35186402072960526,0.681903202169891,-0.0033588043354182053,0.2912706037586747
+Type 3,-0.2409553051517016,-0.31975885099487744,-0.11100834579908118,0.16937599440077378,-0.03279890335223957,-0.27481746340504143,0.4005556260747059,0.3799314951430177
+Type 4,-0.5433284109979866,-0.4020429588568172,-0.538531537621169,-0.1031683770689323,-1.0496762866624019,-0.8057917214585057,-1.2056911378481805,-1.9143349155162452
diff --git a/data/results/green_flood_type_summary.csv b/data/results/green_flood_type_summary.csv
new file mode 100644
index 00000000..524a80fc
--- /dev/null
+++ b/data/results/green_flood_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,1664,16.64,26.811171558704455,0.11885498073495905,11.116982871424746,0.3604431365367955,16.86353271810953,0.08226579118349794,0.6625355041751012,66.25355041751013,1.6237980769230769,97.73455983186986,0.860176145900465,63.26078567813765,38.92042710559494,16.551666050003124,-2.6837697515009173,-2.938446142299514,0.33089038627878276
+Delft,Type 2,924,9.24,78.038177830941,0.6576508387445887,32.106300025385295,0.8013233965726085,13.038474295157638,0.02913851794097962,0.43278295169742537,43.278295169742535,2.1006493506493507,90.53846973306173,0.8180202796573964,39.382732399179766,1.3618156179293923,0.07014286937562077,-1.5257364127074389,-1.9552615413987353,0.5343590947066289
+Delft,Type 3,5342,53.42,19.580940018522533,0.05359761664101231,7.755139702821045,0.2863173980788227,17.688721234955835,-4.5096271384509334e-4,0.125139534769158,12.513953476915802,2.65967802321228,74.33050097118428,0.7930338090099095,9.652850302469014,18.839389363493126,9.88357233778005,-1.7476715967072323,-1.9621172842751355,0.2828861654746159
+Delft,Type 4,2070,20.7,6.668166793796084,0.034142662122719214,5.772759392998437,0.2121711203243394,21.578069466211264,-0.05699911844722295,0.0010379481311975592,0.10379481311975591,0.13671497584541062,9.632595876668129,0.674180509362483,0.09908466819221967,24.141546808990817,22.434100392263687,-2.587933590251249,-2.7410065245283723,0.20412778966176365
+Xi'an,Type 1,681,6.81,34.95358076968447,0.1574588447490753,16.85445314751841,0.5823943364665936,21.185733135766725,0.06143178571034373,0.556669665443202,55.6669665443202,2.315712187958884,96.06129359630836,0.8016164015980624,48.91636181741677,12.298199853831449,0.9719392773688449,401.9324538918183,401.40146111531755,0.672206759349206
+Xi'an,Type 2,1390,13.900000000000002,72.79050499212818,0.6747896758365469,33.76626904449243,0.8579207545392167,14.596480975429255,0.03092191507818611,0.30185372644409864,30.18537264440986,2.6439674315321984,82.58443064755468,0.775586365611266,25.863096633502675,3.9578646463291998,0.4760408853308331,396.0311795712661,395.456408625541,0.7101520950567696
+Xi'an,Type 3,6621,66.21000000000001,19.307074338721627,0.09690251364509002,13.640688202986322,0.5294436957833405,24.108022538160615,0.021019762930659852,0.12508001062536403,12.508001062536403,3.5157831143331824,70.36196782724214,0.7229616902180427,8.410620805637524,24.183569576666397,9.940337390162183,400.2124992281558,399.7865473970944,0.5372151600370437
+Xi'an,Type 4,1308,13.08,19.41127739374995,0.12258561571503164,14.729377987467734,0.5521386934073776,23.06760066189687,-0.007583339192449675,7.366198045497963e-4,0.07366198045497964,0.2514757969303424,1.0718568530673531,0.3425722447476163,0.06957144746744337,36.379785100737614,35.752233607258965,393.59479381679233,393.20804733603006,0.47580207595508645
diff --git a/data/results/green_type_summary.csv b/data/results/green_type_summary.csv
new file mode 100644
index 00000000..79f396c5
--- /dev/null
+++ b/data/results/green_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,5904,59.040000000000006,8.223695353729854,0.01743807498290157,4.179162396207725,0.17743193214572003,16.08562292174563,-0.004385335207452068,0.15976100057053202,15.976100057053202,1.665819783197832,74.18635218933099,0.8085027737028535,14.454332923263443,34.55924202132433,18.770920070727467,-2.2966346740011523,-2.4591659126241274,0.21568538741934928
+Delft,Type 2,812,8.12,79.0265750583355,0.7068657635467981,33.90301705818888,0.8267749915635024,11.88811894249317,0.031565841789368825,0.46183448924034226,46.183448924034224,1.9137931034482758,90.81467430152738,0.8175313003486621,42.8965679284418,1.3981704436576836,0.06165463494060856,-1.6170665265631832,-2.041487348595443,0.5288683046908003
+Delft,Type 3,2746,27.46,42.651718288802854,0.14334626007893944,14.621468452816687,0.47296253562957613,14.370255387242134,0.01618069671365548,0.2802350787748687,28.02350787748687,2.5069191551347414,84.06090664995035,0.8055844519101978,23.924502625828957,5.283995522990277,0.7650637157718233,-1.635687315477824,-1.9497812885029828,0.4075907021762277
+Delft,Type 4,538,5.38,9.817207982782234,0.04131181403788281,6.632688417067829,0.2631496061105081,49.30693847813105,-0.0014044396657521485,0.1584208080610448,15.84208080610448,1.600371747211896,73.08355386965617,0.8110040012464301,14.050454901193504,16.247489597015694,4.694698139772576,-2.2391654462734327,-2.4554784200535082,0.28992596270144844
+Xi'an,Type 1,2268,22.68,2.8676457835622196,0.02038675593067457,5.532823034364184,0.30782708851001694,18.615908340970567,0.01872154317991791,0.09864415323560577,9.864415323560577,2.7670083876980427,64.92171302391984,0.7265893581295992,6.978378795103569,49.5574057508147,28.746601943059055,399.9733811246164,399.527303826872,0.555240015038092
+Xi'an,Type 2,1299,12.989999999999998,73.29899677783251,0.7023375810158512,34.82022232625207,0.8697292774683916,13.060209510810632,0.029975503919427153,0.30459546370815965,30.459546370815968,2.5565356856455494,82.47906064448101,0.7723828266529085,26.370584817535615,3.773961314399562,0.4566698456808283,395.6942903993271,395.11264559633463,0.7146960133219343
+Xi'an,Type 3,5382,53.82,30.160436167135554,0.1349127916811347,16.677336047716057,0.6012520382555887,17.784426406994648,0.022880183605551174,0.17038585075270743,17.038585075270742,3.2297429860702374,73.15655486572273,0.7297529222526742,12.697820809686963,13.342158076463049,3.048821877368724,399.09861867170594,398.6742645116244,0.5326604550372408
+Xi'an,Type 4,1051,10.51,13.474401111196038,0.05876567609122203,9.836862469386155,0.45588375243030904,49.151870101429566,0.02196349952291455,0.15415595697381373,15.415595697381374,3.021782178217822,72.6071329915523,0.746978184414103,11.30516880289137,20.07079696103527,5.1799156438617775,399.36537687525663,398.9510142056858,0.5420379265254273
diff --git a/data/results/metric_selection/all_metric_correlations.csv b/data/results/metric_selection/all_metric_correlations.csv
new file mode 100644
index 00000000..a8d050f3
--- /dev/null
+++ b/data/results/metric_selection/all_metric_correlations.csv
@@ -0,0 +1,137 @@
+"metric_1","metric_2","correlation","abs_correlation"
+"flood_share","pland_flood",1,1
+"elevation_mean","elevation_min",0.999997703237385,0.999997703237385
+"flood_share","flood_lpi",0.978664537518624,0.978664537518624
+"pland_flood","flood_lpi",0.978664537518624,0.978664537518624
+"mean_dist_green","min_dist_green",0.923545499569555,0.923545499569555
+"gyrate","contig",0.885123579071385,0.885123579071385
+"area","gyrate",0.873293138359039,0.873293138359039
+"green_percent","area",0.837402503588678,0.837402503588678
+"green_percent","gyrate",0.752335069007736,0.752335069007736
+"area","contig",0.723539684427455,0.723539684427455
+"fwei_change_mean","flood_share",0.702922487179869,0.702922487179869
+"fwei_change_mean","pland_flood",0.702922487179869,0.702922487179869
+"fwei_change_mean","flood_lpi",0.669944304944475,0.669944304944475
+"flood_share","flood_cohesion",0.656326910052367,0.656326910052367
+"pland_flood","flood_cohesion",0.656326910052367,0.656326910052367
+"green_percent","contig",0.642593195401749,0.642593195401749
+"flood_cohesion","flood_lpi",0.61177728937657,0.61177728937657
+"np_flood","flood_clumpy",-0.544476880808452,0.544476880808452
+"green_percent","mean_dist_green",-0.49680083326444,0.49680083326444
+"contig","elevation_mean",0.481260255887971,0.481260255887971
+"contig","elevation_min",0.480980970799201,0.480980970799201
+"fwei_change_mean","flood_cohesion",0.449490556960132,0.449490556960132
+"flood_cohesion","flood_clumpy",0.422763294395529,0.422763294395529
+"area","mean_dist_green",-0.354315693165661,0.354315693165661
+"green_percent","min_dist_green",-0.35302195888939,0.35302195888939
+"gyrate","mean_dist_green",-0.346250922226886,0.346250922226886
+"green_percent","flood_share",0.337831629900695,0.337831629900695
+"green_percent","pland_flood",0.337831629900695,0.337831629900695
+"area","flood_share",0.333746596259093,0.333746596259093
+"area","pland_flood",0.333746596259093,0.333746596259093
+"area","flood_lpi",0.333244724899613,0.333244724899613
+"gyrate","elevation_mean",0.308232451715598,0.308232451715598
+"gyrate","elevation_min",0.307940383788231,0.307940383788231
+"green_percent","flood_lpi",0.307445412623311,0.307445412623311
+"green_percent","enn",-0.305344810876645,0.305344810876645
+"np_flood","elevation_mean",0.302938867994228,0.302938867994228
+"np_flood","elevation_min",0.302889362874726,0.302889362874726
+"gyrate","pland_flood",0.281924065468233,0.281924065468233
+"gyrate","flood_share",0.281924065468233,0.281924065468233
+"flood_clumpy","flood_lpi",0.281176679385153,0.281176679385153
+"contig","mean_dist_green",-0.279961395729336,0.279961395729336
+"enn","mean_dist_green",0.274484533623024,0.274484533623024
+"gyrate","flood_lpi",0.267604344263744,0.267604344263744
+"fwei_change_mean","np_flood",0.266760242889178,0.266760242889178
+"elevation_mean","slope_mean",0.261593469736557,0.261593469736557
+"elevation_min","slope_mean",0.259676305274562,0.259676305274562
+"flood_clumpy","elevation_mean",-0.25133673185029,0.25133673185029
+"flood_clumpy","elevation_min",-0.251322894789602,0.251322894789602
+"flood_share","flood_clumpy",0.24553422692779,0.24553422692779
+"pland_flood","flood_clumpy",0.24553422692779,0.24553422692779
+"contig","slope_mean",0.238572793214688,0.238572793214688
+"green_percent","flood_cohesion",0.236785718948029,0.236785718948029
+"contig","fwei_change_mean",0.230579005503771,0.230579005503771
+"contig","flood_share",0.221676943818352,0.221676943818352
+"contig","pland_flood",0.221676943818352,0.221676943818352
+"green_percent","fwei_change_mean",0.215695099962324,0.215695099962324
+"gyrate","fwei_change_mean",0.210074050803607,0.210074050803607
+"area","flood_cohesion",0.207128837193659,0.207128837193659
+"gyrate","slope_mean",0.20349991601836,0.20349991601836
+"np_flood","min_dist_green",-0.198483726001959,0.198483726001959
+"gyrate","min_dist_green",-0.198201067441372,0.198201067441372
+"enn","elevation_min",0.197710787025827,0.197710787025827
+"enn","elevation_mean",0.19765936463071,0.19765936463071
+"contig","flood_lpi",0.196618766820066,0.196618766820066
+"fwei_change_mean","elevation_mean",0.19361957362641,0.19361957362641
+"fwei_change_mean","elevation_min",0.193465475526638,0.193465475526638
+"area","fwei_change_mean",0.187927337046895,0.187927337046895
+"contig","min_dist_green",-0.181187433651521,0.181187433651521
+"area","min_dist_green",-0.180208216221032,0.180208216221032
+"gyrate","flood_cohesion",0.179211904563705,0.179211904563705
+"green_percent","slope_mean",0.178562223054619,0.178562223054619
+"area","slope_mean",0.173901394034107,0.173901394034107
+"np_flood","mean_dist_green",-0.144740317498082,0.144740317498082
+"area","elevation_mean",0.144524739857265,0.144524739857265
+"area","elevation_min",0.14420665236181,0.14420665236181
+"enn","min_dist_green",0.140448798224217,0.140448798224217
+"area","enn",-0.138900636138669,0.138900636138669
+"contig","flood_cohesion",0.137934508536795,0.137934508536795
+"flood_lpi","elevation_min",-0.137744562064838,0.137744562064838
+"flood_lpi","elevation_mean",-0.137486920548684,0.137486920548684
+"flood_cohesion","elevation_min",-0.133856927987062,0.133856927987062
+"flood_cohesion","elevation_mean",-0.133680647226405,0.133680647226405
+"green_percent","np_flood",0.133385353782765,0.133385353782765
+"fwei_change_mean","slope_mean",0.124707147963561,0.124707147963561
+"flood_clumpy","min_dist_green",0.123787689146892,0.123787689146892
+"flood_cohesion","min_dist_green",-0.122355666195917,0.122355666195917
+"contig","np_flood",0.121163362896104,0.121163362896104
+"flood_clumpy","mean_dist_green",0.110739205423598,0.110739205423598
+"np_flood","slope_mean",0.102868911674391,0.102868911674391
+"flood_share","slope_mean",0.102082716887825,0.102082716887825
+"pland_flood","slope_mean",0.102082716887825,0.102082716887825
+"pland_flood","elevation_min",-0.0999128128322349,0.0999128128322349
+"flood_share","elevation_min",-0.0999128128322348,0.0999128128322348
+"flood_share","elevation_mean",-0.099640416689382,0.099640416689382
+"pland_flood","elevation_mean",-0.099640416689382,0.099640416689382
+"fwei_change_mean","mean_dist_green",0.0979397450286334,0.0979397450286334
+"gyrate","enn",-0.0963419660764869,0.0963419660764869
+"np_flood","flood_lpi",-0.0937515875106419,0.0937515875106419
+"mean_dist_green","slope_mean",-0.0880232184785747,0.0880232184785747
+"flood_lpi","slope_mean",0.0851031703880196,0.0851031703880196
+"flood_lpi","mean_dist_green",0.0827476642500892,0.0827476642500892
+"green_percent","elevation_mean",0.0809800242434778,0.0809800242434778
+"green_percent","elevation_min",0.080644011895134,0.080644011895134
+"enn","flood_share",-0.0759481497679394,0.0759481497679394
+"enn","pland_flood",-0.0759481497679394,0.0759481497679394
+"min_dist_green","slope_mean",-0.0748428838994005,0.0748428838994005
+"enn","flood_lpi",-0.0716242399718419,0.0716242399718419
+"area","flood_clumpy",0.0639042601514647,0.0639042601514647
+"flood_clumpy","slope_mean",-0.0600460692157635,0.0600460692157635
+"enn","flood_cohesion",-0.058505254861404,0.058505254861404
+"flood_share","mean_dist_green",0.0549919978255608,0.0549919978255608
+"pland_flood","mean_dist_green",0.0549919978255608,0.0549919978255608
+"gyrate","np_flood",0.0509599165628256,0.0509599165628256
+"flood_cohesion","slope_mean",0.0491059447522403,0.0491059447522403
+"enn","np_flood",-0.0433637823545434,0.0433637823545434
+"fwei_change_mean","flood_clumpy",0.0428424269109231,0.0428424269109231
+"min_dist_green","elevation_mean",-0.0427023719924817,0.0427023719924817
+"min_dist_green","elevation_min",-0.0425712782673712,0.0425712782673712
+"flood_share","min_dist_green",-0.0390921516001934,0.0390921516001934
+"pland_flood","min_dist_green",-0.0390921516001934,0.0390921516001934
+"contig","flood_clumpy",-0.0365312556782525,0.0365312556782525
+"area","np_flood",-0.0358572402960327,0.0358572402960327
+"enn","slope_mean",0.0323200841682053,0.0323200841682053
+"flood_share","np_flood",0.0248323305852554,0.0248323305852554
+"pland_flood","np_flood",0.0248323305852554,0.0248323305852554
+"fwei_change_mean","min_dist_green",-0.0214661000285335,0.0214661000285335
+"enn","fwei_change_mean",-0.0156333176583808,0.0156333176583808
+"green_percent","flood_clumpy",0.0129572646405102,0.0129572646405102
+"np_flood","flood_cohesion",-0.0127670562098272,0.0127670562098272
+"mean_dist_green","elevation_mean",-0.0103702457695796,0.0103702457695796
+"flood_cohesion","mean_dist_green",-0.0101953468743194,0.0101953468743194
+"mean_dist_green","elevation_min",-0.0101953215469627,0.0101953215469627
+"gyrate","flood_clumpy",0.00846034718582936,0.00846034718582936
+"enn","flood_clumpy",-0.00598796936240974,0.00598796936240974
+"flood_lpi","min_dist_green",-0.00388543041583598,0.00388543041583598
+"contig","enn",-0.00252067655755181,0.00252067655755181
diff --git a/data/results/metric_selection/green_flood_dem_metrics_all_metric_correlations.csv b/data/results/metric_selection/green_flood_dem_metrics_all_metric_correlations.csv
new file mode 100644
index 00000000..30cb6d1a
--- /dev/null
+++ b/data/results/metric_selection/green_flood_dem_metrics_all_metric_correlations.csv
@@ -0,0 +1,106 @@
+metric_1,metric_2,correlation,abs_correlation
+flood_share,pland_flood,1,1
+elevation_mean,elevation_min,0.9999977032373855,0.9999977032373855
+flood_share,flood_lpi,0.9788204670613877,0.9788204670613877
+pland_flood,flood_lpi,0.9788204670613877,0.9788204670613877
+gyrate,contig,0.9052385939175026,0.9052385939175026
+area,gyrate,0.8692382161709894,0.8692382161709894
+green_percent,area,0.8437644955978231,0.8437644955978231
+flood_cohesion,flood_clumpy,0.8417545822716015,0.8417545822716015
+green_percent,gyrate,0.7957202290326736,0.7957202290326736
+area,contig,0.7199467564635208,0.7199467564635208
+green_percent,contig,0.7123043991442304,0.7123043991442304
+fwei_change_mean,flood_share,0.7020045050207153,0.7020045050207153
+fwei_change_mean,pland_flood,0.7020045050207153,0.7020045050207153
+fwei_change_mean,flood_lpi,0.6699978789367931,0.6699978789367931
+flood_share,flood_cohesion,0.6519652121674924,0.6519652121674924
+pland_flood,flood_cohesion,0.6519652121674924,0.6519652121674924
+flood_cohesion,flood_lpi,0.5953124696769305,0.5953124696769305
+fwei_change_mean,flood_cohesion,0.5761969065112725,0.5761969065112725
+np_flood,flood_cohesion,0.4239783288876207,0.4239783288876207
+contig,elevation_mean,0.4006144293229866,0.4006144293229866
+contig,elevation_min,0.40035256051701,0.40035256051701
+fwei_change_mean,flood_clumpy,0.38553700491661896,0.38553700491661896
+flood_share,flood_clumpy,0.37346448725112413,0.37346448725112413
+pland_flood,flood_clumpy,0.37346448725112413,0.37346448725112413
+np_flood,flood_clumpy,0.33894667110306054,0.33894667110306054
+flood_clumpy,flood_lpi,0.3383463670253781,0.3383463670253781
+green_percent,flood_share,0.3308957751960945,0.3308957751960945
+green_percent,pland_flood,0.3308957751960945,0.3308957751960945
+green_percent,flood_lpi,0.30182046974212634,0.30182046974212634
+area,flood_share,0.2952248293550753,0.2952248293550753
+area,pland_flood,0.2952248293550753,0.2952248293550753
+area,flood_lpi,0.2867101771611263,0.2867101771611263
+gyrate,elevation_mean,0.2822092314758584,0.2822092314758584
+gyrate,elevation_min,0.281926989002637,0.281926989002637
+green_percent,flood_cohesion,0.2754989831493898,0.2754989831493898
+fwei_change_mean,np_flood,0.26981919621890416,0.26981919621890416
+np_flood,elevation_mean,0.2622669596109994,0.2622669596109994
+np_flood,elevation_min,0.2621900499561099,0.2621900499561099
+elevation_mean,slope_mean,0.2615934697365572,0.2615934697365572
+elevation_min,slope_mean,0.25967630527456215,0.25967630527456215
+area,enn,-0.24073824368866514,0.24073824368866514
+gyrate,flood_share,0.23614237664329515,0.23614237664329515
+gyrate,pland_flood,0.23614237664329515,0.23614237664329515
+contig,slope_mean,0.23086156925598997,0.23086156925598997
+contig,flood_cohesion,0.21849368657393736,0.21849368657393736
+gyrate,flood_cohesion,0.21603409383020278,0.21603409383020278
+green_percent,fwei_change_mean,0.21309362224991382,0.21309362224991382
+gyrate,flood_lpi,0.21172953450433915,0.21172953450433915
+gyrate,slope_mean,0.20806142444936318,0.20806142444936318
+contig,fwei_change_mean,0.1993515627100124,0.1993515627100124
+area,flood_cohesion,0.19173091055231115,0.19173091055231115
+gyrate,fwei_change_mean,0.18800900214388092,0.18800900214388092
+contig,np_flood,0.18756995714149227,0.18756995714149227
+fwei_change_mean,elevation_mean,0.18467669647399515,0.18467669647399515
+fwei_change_mean,elevation_min,0.18451602834530528,0.18451602834530528
+area,slope_mean,0.1801102332607171,0.1801102332607171
+green_percent,slope_mean,0.17856222305461888,0.17856222305461888
+green_percent,flood_clumpy,0.17830256641542377,0.17830256641542377
+contig,flood_share,0.17717004799321112,0.17717004799321112
+contig,pland_flood,0.17717004799321112,0.17717004799321112
+area,fwei_change_mean,0.1680250473023269,0.1680250473023269
+contig,flood_clumpy,0.1611768216078368,0.1611768216078368
+flood_lpi,elevation_min,-0.15213230367446345,0.15213230367446345
+flood_lpi,elevation_mean,-0.15186860390849874,0.15186860390849874
+gyrate,enn,-0.14589095213752454,0.14589095213752454
+gyrate,flood_clumpy,0.14467765985490982,0.14467765985490982
+area,elevation_mean,0.14466443527903308,0.14466443527903308
+area,elevation_min,0.1443558529881386,0.1443558529881386
+contig,flood_lpi,0.14265347298273182,0.14265347298273182
+green_percent,np_flood,0.12801828073882907,0.12801828073882907
+fwei_change_mean,slope_mean,0.12506000178702642,0.12506000178702642
+gyrate,np_flood,0.1191958636558878,0.1191958636558878
+flood_share,elevation_min,-0.11739271230082574,0.11739271230082574
+pland_flood,elevation_min,-0.11739271230082574,0.11739271230082574
+flood_share,elevation_mean,-0.11711239370966499,0.11711239370966499
+pland_flood,elevation_mean,-0.11711239370966499,0.11711239370966499
+area,flood_clumpy,0.11181907552906786,0.11181907552906786
+flood_cohesion,slope_mean,0.11011895559002964,0.11011895559002964
+np_flood,slope_mean,0.10486858262556677,0.10486858262556677
+flood_share,slope_mean,0.10371295314780209,0.10371295314780209
+pland_flood,slope_mean,0.10371295314780209,0.10371295314780209
+enn,np_flood,0.09678610898399032,0.09678610898399032
+green_percent,enn,-0.09454653458771847,0.09454653458771847
+enn,flood_lpi,-0.09447183685244516,0.09447183685244516
+flood_lpi,slope_mean,0.0867325063553514,0.0867325063553514
+green_percent,elevation_mean,0.08098002424347776,0.08098002424347776
+green_percent,elevation_min,0.08064401189513394,0.08064401189513394
+enn,flood_share,-0.07961411462958161,0.07961411462958161
+enn,pland_flood,-0.07961411462958161,0.07961411462958161
+flood_clumpy,slope_mean,0.07400280425844978,0.07400280425844978
+np_flood,flood_lpi,-0.06812928099196879,0.06812928099196879
+flood_share,np_flood,0.05075586701118721,0.05075586701118721
+pland_flood,np_flood,0.0507558670111872,0.0507558670111872
+enn,elevation_min,0.046881962354888,0.046881962354888
+enn,elevation_mean,0.04681299338520972,0.04681299338520972
+enn,flood_clumpy,0.046612066222624156,0.046612066222624156
+enn,flood_cohesion,0.023831939351836175,0.023831939351836175
+area,np_flood,0.01688946960622294,0.01688946960622294
+contig,enn,-0.009893597525594208,0.009893597525594208
+enn,slope_mean,-0.009460709885843212,0.009460709885843212
+enn,fwei_change_mean,0.002451380907346053,0.002451380907346053
+flood_cohesion,elevation_min,-0.0023381128961961054,0.0023381128961961054
+flood_clumpy,elevation_mean,0.0022914894929755335,0.0022914894929755335
+flood_clumpy,elevation_min,0.002152047935256854,0.002152047935256854
+flood_cohesion,elevation_mean,-0.0021171448752333273,0.0021171448752333273
diff --git a/data/results/metric_selection/green_flood_dem_metrics_correlation_matrix.csv b/data/results/metric_selection/green_flood_dem_metrics_correlation_matrix.csv
new file mode 100644
index 00000000..06a13679
--- /dev/null
+++ b/data/results/metric_selection/green_flood_dem_metrics_correlation_matrix.csv
@@ -0,0 +1,16 @@
+"","green_percent","area","gyrate","contig","enn","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","elevation_mean","elevation_min","slope_mean"
+"green_percent",1,0.843764495597823,0.795720229032674,0.71230439914423,-0.0945465345877185,0.213093622249914,0.330895775196094,0.330895775196094,0.128018280738829,0.27549898314939,0.178302566415424,0.301820469742126,0.0809800242434778,0.0806440118951339,0.178562223054619
+"area",0.843764495597823,1,0.869238216170989,0.719946756463521,-0.240738243688665,0.168025047302327,0.295224829355075,0.295224829355075,0.0168894696062229,0.191730910552311,0.111819075529068,0.286710177161126,0.144664435279033,0.144355852988139,0.180110233260717
+"gyrate",0.795720229032674,0.869238216170989,1,0.905238593917503,-0.145890952137525,0.188009002143881,0.236142376643295,0.236142376643295,0.119195863655888,0.216034093830203,0.14467765985491,0.211729534504339,0.282209231475858,0.281926989002637,0.208061424449363
+"contig",0.71230439914423,0.719946756463521,0.905238593917503,1,-0.00989359752559421,0.199351562710012,0.177170047993211,0.177170047993211,0.187569957141492,0.218493686573937,0.161176821607837,0.142653472982732,0.400614429322987,0.40035256051701,0.23086156925599
+"enn",-0.0945465345877185,-0.240738243688665,-0.145890952137525,-0.00989359752559421,1,0.00245138090734605,-0.0796141146295816,-0.0796141146295816,0.0967861089839903,0.0238319393518362,0.0466120662226242,-0.0944718368524452,0.0468129933852097,0.046881962354888,-0.00946070988584321
+"fwei_change_mean",0.213093622249914,0.168025047302327,0.188009002143881,0.199351562710012,0.00245138090734605,1,0.702004505020715,0.702004505020715,0.269819196218904,0.576196906511273,0.385537004916619,0.669997878936793,0.184676696473995,0.184516028345305,0.125060001787026
+"flood_share",0.330895775196094,0.295224829355075,0.236142376643295,0.177170047993211,-0.0796141146295816,0.702004505020715,1,1,0.0507558670111872,0.651965212167492,0.373464487251124,0.978820467061388,-0.117112393709665,-0.117392712300826,0.103712953147802
+"pland_flood",0.330895775196094,0.295224829355075,0.236142376643295,0.177170047993211,-0.0796141146295816,0.702004505020715,1,1,0.0507558670111872,0.651965212167492,0.373464487251124,0.978820467061388,-0.117112393709665,-0.117392712300826,0.103712953147802
+"np_flood",0.128018280738829,0.0168894696062229,0.119195863655888,0.187569957141492,0.0967861089839903,0.269819196218904,0.0507558670111872,0.0507558670111872,1,0.423978328887621,0.338946671103061,-0.0681292809919688,0.262266959610999,0.26219004995611,0.104868582625567
+"flood_cohesion",0.27549898314939,0.191730910552311,0.216034093830203,0.218493686573937,0.0238319393518362,0.576196906511273,0.651965212167492,0.651965212167492,0.423978328887621,1,0.841754582271601,0.595312469676931,-0.00211714487523333,-0.00233811289619611,0.11011895559003
+"flood_clumpy",0.178302566415424,0.111819075529068,0.14467765985491,0.161176821607837,0.0466120662226242,0.385537004916619,0.373464487251124,0.373464487251124,0.338946671103061,0.841754582271601,1,0.338346367025378,0.00229148949297553,0.00215204793525685,0.0740028042584498
+"flood_lpi",0.301820469742126,0.286710177161126,0.211729534504339,0.142653472982732,-0.0944718368524452,0.669997878936793,0.978820467061388,0.978820467061388,-0.0681292809919688,0.595312469676931,0.338346367025378,1,-0.151868603908499,-0.152132303674463,0.0867325063553514
+"elevation_mean",0.0809800242434778,0.144664435279033,0.282209231475858,0.400614429322987,0.0468129933852097,0.184676696473995,-0.117112393709665,-0.117112393709665,0.262266959610999,-0.00211714487523333,0.00229148949297553,-0.151868603908499,1,0.999997703237385,0.261593469736557
+"elevation_min",0.0806440118951339,0.144355852988139,0.281926989002637,0.40035256051701,0.046881962354888,0.184516028345305,-0.117392712300826,-0.117392712300826,0.26219004995611,-0.00233811289619611,0.00215204793525685,-0.152132303674463,0.999997703237385,1,0.259676305274562
+"slope_mean",0.178562223054619,0.180110233260717,0.208061424449363,0.23086156925599,-0.00946070988584321,0.125060001787026,0.103712953147802,0.103712953147802,0.104868582625567,0.11011895559003,0.0740028042584498,0.0867325063553514,0.261593469736557,0.259676305274562,1
diff --git a/data/results/metric_selection/green_flood_dem_metrics_highly_correlated_metrics.csv b/data/results/metric_selection/green_flood_dem_metrics_highly_correlated_metrics.csv
new file mode 100644
index 00000000..48b3a5bd
--- /dev/null
+++ b/data/results/metric_selection/green_flood_dem_metrics_highly_correlated_metrics.csv
@@ -0,0 +1,9 @@
+metric_1,metric_2,correlation,abs_correlation
+flood_share,pland_flood,1,1
+elevation_mean,elevation_min,0.9999977032373855,0.9999977032373855
+flood_share,flood_lpi,0.9788204670613877,0.9788204670613877
+pland_flood,flood_lpi,0.9788204670613877,0.9788204670613877
+gyrate,contig,0.9052385939175026,0.9052385939175026
+area,gyrate,0.8692382161709894,0.8692382161709894
+green_percent,area,0.8437644955978231,0.8437644955978231
+flood_cohesion,flood_clumpy,0.8417545822716015,0.8417545822716015
diff --git a/data/results/metric_selection/green_flood_dem_metrics_used.csv b/data/results/metric_selection/green_flood_dem_metrics_used.csv
new file mode 100644
index 00000000..81400942
--- /dev/null
+++ b/data/results/metric_selection/green_flood_dem_metrics_used.csv
@@ -0,0 +1,11 @@
+metric
+green_percent
+area
+contig
+enn
+fwei_change_mean
+flood_share
+np_flood
+flood_clumpy
+elevation_mean
+slope_mean
diff --git a/data/results/metric_selection/green_flood_metrics_used.csv b/data/results/metric_selection/green_flood_metrics_used.csv
new file mode 100644
index 00000000..99f34e80
--- /dev/null
+++ b/data/results/metric_selection/green_flood_metrics_used.csv
@@ -0,0 +1,9 @@
+metric
+green_percent
+area
+contig
+enn
+fwei_change_mean
+flood_share
+np_flood
+flood_clumpy
diff --git a/data/results/metric_selection/highly_correlated_metrics.csv b/data/results/metric_selection/highly_correlated_metrics.csv
new file mode 100644
index 00000000..1c079721
--- /dev/null
+++ b/data/results/metric_selection/highly_correlated_metrics.csv
@@ -0,0 +1,9 @@
+"metric_1","metric_2","correlation","abs_correlation"
+"flood_share","pland_flood",1,1
+"elevation_mean","elevation_min",0.999997703237385,0.999997703237385
+"flood_share","flood_lpi",0.978664537518624,0.978664537518624
+"pland_flood","flood_lpi",0.978664537518624,0.978664537518624
+"mean_dist_green","min_dist_green",0.923545499569555,0.923545499569555
+"gyrate","contig",0.885123579071385,0.885123579071385
+"area","gyrate",0.873293138359039,0.873293138359039
+"green_percent","area",0.837402503588678,0.837402503588678
diff --git a/data/results/metric_selection/metric_notes_before_final_selection.csv b/data/results/metric_selection/metric_notes_before_final_selection.csv
new file mode 100644
index 00000000..9ad81a68
--- /dev/null
+++ b/data/results/metric_selection/metric_notes_before_final_selection.csv
@@ -0,0 +1,18 @@
+"metric","included_in_check","current_thought"
+"green_percent",TRUE,"keep: green amount"
+"area",TRUE,"keep: green patch size"
+"gyrate",TRUE,"possibly remove: similar to patch size/spatial extent"
+"contig",TRUE,"keep: green compactness/connectivity"
+"enn",TRUE,"keep: green patch isolation"
+"fwei_change_mean",TRUE,"keep: average FWEI change"
+"flood_share",TRUE,"keep: detected water extent"
+"pland_flood",TRUE,"possibly remove: similar to flood_share"
+"np_flood",TRUE,"keep: number of flood patches"
+"flood_cohesion",TRUE,"possibly remove: similar to other connectedness metrics"
+"flood_clumpy",TRUE,"keep: flood clustering"
+"flood_lpi",TRUE,"possibly remove: similar to flood extent/dominance"
+"mean_dist_green",TRUE,"possibly remove from typology: distance metric, useful for interpretation"
+"min_dist_green",TRUE,"possibly remove from typology: distance metric, useful for interpretation"
+"elevation_mean",TRUE,"keep: average elevation"
+"elevation_min",TRUE,"possibly remove: similar to elevation_mean"
+"slope_mean",TRUE,"keep: average slope"
diff --git a/data/results/metric_selection/metric_redundancy_matrix.csv b/data/results/metric_selection/metric_redundancy_matrix.csv
new file mode 100644
index 00000000..d590c489
--- /dev/null
+++ b/data/results/metric_selection/metric_redundancy_matrix.csv
@@ -0,0 +1,18 @@
+"","green_percent","area","gyrate","contig","enn","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green","elevation_mean","elevation_min","slope_mean"
+"green_percent",1,0.837402503588678,0.752335069007736,0.642593195401749,-0.305344810876645,0.215695099962324,0.337831629900695,0.337831629900695,0.133385353782765,0.236785718948029,0.0129572646405102,0.307445412623311,-0.49680083326444,-0.35302195888939,0.0809800242434778,0.080644011895134,0.178562223054619
+"area",0.837402503588678,1,0.873293138359039,0.723539684427455,-0.138900636138669,0.187927337046895,0.333746596259093,0.333746596259093,-0.0358572402960327,0.207128837193659,0.0639042601514647,0.333244724899613,-0.354315693165661,-0.180208216221032,0.144524739857265,0.14420665236181,0.173901394034107
+"gyrate",0.752335069007736,0.873293138359039,1,0.885123579071385,-0.0963419660764869,0.210074050803607,0.281924065468233,0.281924065468233,0.0509599165628256,0.179211904563705,0.00846034718582936,0.267604344263744,-0.346250922226886,-0.198201067441372,0.308232451715598,0.307940383788231,0.20349991601836
+"contig",0.642593195401749,0.723539684427455,0.885123579071385,1,-0.00252067655755181,0.230579005503771,0.221676943818352,0.221676943818352,0.121163362896104,0.137934508536795,-0.0365312556782525,0.196618766820066,-0.279961395729336,-0.181187433651521,0.481260255887971,0.480980970799201,0.238572793214688
+"enn",-0.305344810876645,-0.138900636138669,-0.0963419660764869,-0.00252067655755181,1,-0.0156333176583808,-0.0759481497679394,-0.0759481497679394,-0.0433637823545434,-0.058505254861404,-0.00598796936240974,-0.0716242399718419,0.274484533623024,0.140448798224217,0.19765936463071,0.197710787025827,0.0323200841682053
+"fwei_change_mean",0.215695099962324,0.187927337046895,0.210074050803607,0.230579005503771,-0.0156333176583808,1,0.702922487179869,0.702922487179869,0.266760242889178,0.449490556960132,0.0428424269109231,0.669944304944475,0.0979397450286334,-0.0214661000285335,0.19361957362641,0.193465475526638,0.124707147963561
+"flood_share",0.337831629900695,0.333746596259093,0.281924065468233,0.221676943818352,-0.0759481497679394,0.702922487179869,1,1,0.0248323305852554,0.656326910052367,0.24553422692779,0.978664537518624,0.0549919978255608,-0.0390921516001934,-0.099640416689382,-0.0999128128322348,0.102082716887825
+"pland_flood",0.337831629900695,0.333746596259093,0.281924065468233,0.221676943818352,-0.0759481497679394,0.702922487179869,1,1,0.0248323305852554,0.656326910052367,0.24553422692779,0.978664537518624,0.0549919978255608,-0.0390921516001934,-0.099640416689382,-0.0999128128322349,0.102082716887825
+"np_flood",0.133385353782765,-0.0358572402960327,0.0509599165628256,0.121163362896104,-0.0433637823545434,0.266760242889178,0.0248323305852554,0.0248323305852554,1,-0.0127670562098272,-0.544476880808452,-0.0937515875106419,-0.144740317498082,-0.198483726001959,0.302938867994228,0.302889362874726,0.102868911674391
+"flood_cohesion",0.236785718948029,0.207128837193659,0.179211904563705,0.137934508536795,-0.058505254861404,0.449490556960132,0.656326910052367,0.656326910052367,-0.0127670562098272,1,0.422763294395529,0.61177728937657,-0.0101953468743194,-0.122355666195917,-0.133680647226405,-0.133856927987062,0.0491059447522403
+"flood_clumpy",0.0129572646405102,0.0639042601514647,0.00846034718582936,-0.0365312556782525,-0.00598796936240974,0.0428424269109231,0.24553422692779,0.24553422692779,-0.544476880808452,0.422763294395529,1,0.281176679385153,0.110739205423598,0.123787689146892,-0.25133673185029,-0.251322894789602,-0.0600460692157635
+"flood_lpi",0.307445412623311,0.333244724899613,0.267604344263744,0.196618766820066,-0.0716242399718419,0.669944304944475,0.978664537518624,0.978664537518624,-0.0937515875106419,0.61177728937657,0.281176679385153,1,0.0827476642500892,-0.00388543041583598,-0.137486920548684,-0.137744562064838,0.0851031703880196
+"mean_dist_green",-0.49680083326444,-0.354315693165661,-0.346250922226886,-0.279961395729336,0.274484533623024,0.0979397450286334,0.0549919978255608,0.0549919978255608,-0.144740317498082,-0.0101953468743194,0.110739205423598,0.0827476642500892,1,0.923545499569555,-0.0103702457695796,-0.0101953215469627,-0.0880232184785747
+"min_dist_green",-0.35302195888939,-0.180208216221032,-0.198201067441372,-0.181187433651521,0.140448798224217,-0.0214661000285335,-0.0390921516001934,-0.0390921516001934,-0.198483726001959,-0.122355666195917,0.123787689146892,-0.00388543041583598,0.923545499569555,1,-0.0427023719924817,-0.0425712782673712,-0.0748428838994005
+"elevation_mean",0.0809800242434778,0.144524739857265,0.308232451715598,0.481260255887971,0.19765936463071,0.19361957362641,-0.099640416689382,-0.099640416689382,0.302938867994228,-0.133680647226405,-0.25133673185029,-0.137486920548684,-0.0103702457695796,-0.0427023719924817,1,0.999997703237385,0.261593469736557
+"elevation_min",0.080644011895134,0.14420665236181,0.307940383788231,0.480980970799201,0.197710787025827,0.193465475526638,-0.0999128128322348,-0.0999128128322349,0.302889362874726,-0.133856927987062,-0.251322894789602,-0.137744562064838,-0.0101953215469627,-0.0425712782673712,0.999997703237385,1,0.259676305274562
+"slope_mean",0.178562223054619,0.173901394034107,0.20349991601836,0.238572793214688,0.0323200841682053,0.124707147963561,0.102082716887825,0.102082716887825,0.102868911674391,0.0491059447522403,-0.0600460692157635,0.0851031703880196,-0.0880232184785747,-0.0748428838994005,0.261593469736557,0.259676305274562,1
diff --git a/data/results/metric_selection/metric_selection_notes.csv b/data/results/metric_selection/metric_selection_notes.csv
new file mode 100644
index 00000000..33f540da
--- /dev/null
+++ b/data/results/metric_selection/metric_selection_notes.csv
@@ -0,0 +1,16 @@
+metric,decision,reason
+green_percent,kept,green amount
+area,kept,green patch size
+gyrate,removed,"similar to patch size/spread, so area is kept instead"
+contig,kept,green compactness/connectivity
+enn,kept,green patch isolation
+fwei_change_mean,kept,average FWEI surface-water change
+flood_share,kept,amount of detected surface-water increase
+pland_flood,removed,"similar to flood_share, so flood_share is kept instead"
+np_flood,kept,number of separate flood patches
+flood_cohesion,removed,"similar to other flood-pattern metrics, so not used in final typology"
+flood_clumpy,kept,clustering of detected water
+flood_lpi,removed,"similar to flood extent/dominance, so flood_share is kept instead"
+elevation_mean,kept,average elevation
+elevation_min,removed,"similar to elevation_mean, so elevation_mean is kept instead"
+slope_mean,kept,average slope
diff --git a/data/results/metric_selection/redundant_metric_decisions.csv b/data/results/metric_selection/redundant_metric_decisions.csv
new file mode 100644
index 00000000..2040338b
--- /dev/null
+++ b/data/results/metric_selection/redundant_metric_decisions.csv
@@ -0,0 +1,9 @@
+correlated_metrics,correlation,decision,reason
+flood_share + pland_flood,1,"keep flood_share, remove pland_flood",both measure detected water extent
+elevation_mean + elevation_min,1,"keep elevation_mean, remove elevation_min",both describe almost the same elevation pattern
+flood_share + flood_lpi,0.979,"keep flood_share, remove flood_lpi",largest flood patch mostly follows flood extent
+pland_flood + flood_lpi,0.979,remove pland_flood and flood_lpi,both overlap strongly with flood extent
+mean_dist_green + min_dist_green,0.924,"remove both from typology, keep only for interpretation",both measure distance to green space
+gyrate + contig,0.885,"keep contig, remove gyrate",patch spread overlaps with compactness
+area + gyrate,0.873,"keep contig, remove gyrate",patch size overlaps with patch spread
+green_percent + area,0.837,"keep green_percent, remove area",green amount overlaps with patch size
diff --git a/data/results/metric_selection/removed_redundant_metrics.csv b/data/results/metric_selection/removed_redundant_metrics.csv
new file mode 100644
index 00000000..9988cd6f
--- /dev/null
+++ b/data/results/metric_selection/removed_redundant_metrics.csv
@@ -0,0 +1,6 @@
+metric,decision,reason
+gyrate,removed,"similar to patch size/spread, so area is kept instead"
+pland_flood,removed,"similar to flood_share, so flood_share is kept instead"
+flood_cohesion,removed,"similar to other flood-pattern metrics, so not used in final typology"
+flood_lpi,removed,"similar to flood extent/dominance, so flood_share is kept instead"
+elevation_min,removed,"similar to elevation_mean, so elevation_mean is kept instead"
diff --git a/data/results/metric_selection/selected_metrics_for_shared_typologies.csv b/data/results/metric_selection/selected_metrics_for_shared_typologies.csv
new file mode 100644
index 00000000..f61a6565
--- /dev/null
+++ b/data/results/metric_selection/selected_metrics_for_shared_typologies.csv
@@ -0,0 +1,17 @@
+typology,metric
+green_flood,green_percent
+green_flood,contig
+green_flood,enn
+green_flood,fwei_change_mean
+green_flood,flood_share
+green_flood,np_flood
+green_flood,flood_clumpy
+green_flood_dem,green_percent
+green_flood_dem,contig
+green_flood_dem,enn
+green_flood_dem,fwei_change_mean
+green_flood_dem,flood_share
+green_flood_dem,np_flood
+green_flood_dem,flood_clumpy
+green_flood_dem,elevation_mean
+green_flood_dem,slope_mean
diff --git a/data/results/metric_selection/selected_typology_metrics.csv b/data/results/metric_selection/selected_typology_metrics.csv
new file mode 100644
index 00000000..f972ecde
--- /dev/null
+++ b/data/results/metric_selection/selected_typology_metrics.csv
@@ -0,0 +1,11 @@
+metric,decision,reason
+green_percent,kept,green amount
+area,kept,green patch size
+contig,kept,green compactness/connectivity
+enn,kept,green patch isolation
+fwei_change_mean,kept,average FWEI surface-water change
+flood_share,kept,amount of detected surface-water increase
+np_flood,kept,number of separate flood patches
+flood_clumpy,kept,clustering of detected water
+elevation_mean,kept,average elevation
+slope_mean,kept,average slope
diff --git a/data/results/problematic_typology_candidates.csv b/data/results/problematic_typology_candidates.csv
new file mode 100644
index 00000000..4f3b4885
--- /dev/null
+++ b/data/results/problematic_typology_candidates.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean,flood_score,fwei_score,low_green_score,patch_score,low_elevation_score,problematic_score,interpretation,possible_solution_direction
+Delft,Type 4,1189,11.89,75.56989509096543,0.5751641084945333,29.23221472093287,0.7470218866136754,13.265250918864465,0.03941841449825091,0.495091629409942,49.5091629409942,2.0176619007569387,92.19464562318792,0.8166757387511516,45.71458766765526,1.6222845462386255,0.04083409068056012,-1.5217333964040956,-1.9927932431694848,0.5870799047356617,1,1,0,0.38680855302736,0.4924077161839625,0.6826416687633021,"green area with detected water, possibly storage or easier detection","floodable parks, retention basins, wetland enhancement"
+Delft,Type 2,6678,66.78,19.323519096483345,0.056334996406338204,7.882225942130994,0.287151273231048,17.628649590041775,0.017025909732594838,0.23533759713749783,23.533759713749784,2.416292303084756,79.2810869873611,0.8097232477594819,20.699831339354677,24.7210011916372,12.118226888758867,-2.0032932904194607,-2.2036814340880992,0.26399752951469324,0.4744426983203108,0.7674206952736257,0.817267304815058,0.46923846613627673,0.7232566294143823,0.6279121805846875,low green and relatively high detected water,"depaving, rain gardens, permeable surfaces"
+Delft,Type 3,59,0.59,37.904772524531666,0.12905740516545602,15.108604012996082,0.5471569832787246,24.27003608820687,0.013193224050583647,0.18627118644067797,18.627118644067796,4.983050847457627,76.72666059081175,0.6933345481343713,11.5,4.391860404511484,0.0847457627118644,-0.49455157302157027,-1.6268270574510098,1.5762453124448865,0.37516720225455175,0.7276125817782538,0.5472792275260185,1,0,0.5726675117388603,many separate detected water patches,"bioswales, green corridors, connected pocket parks"
+Delft,Type 1,2074,20.74,6.74739887326803,0.034609389388487205,5.830729681730029,0.21416782762772318,21.630965488216013,-0.056860593610404686,8.466984723138609e-4,0.08466984723138608,0.14705882352941177,8.899528593104113,0.5957025211473739,0.07695528599705628,21.466061153976412,19.885288786614076,-2.580590823874358,-2.7339206866209604,0.2044647273760834,0,0,1,0,1,0.25,less problematic or unclear,no clear solution from typology alone
+Xi'an,Type 4,1416,14.16,73.06078874986306,0.6610132313531801,33.039874680264674,0.847202391966543,15.895336537700423,0.03636291609597114,0.35292436217893564,35.29243621789356,2.456127628716461,84.65530053184247,0.7805994737007054,31.089669192573563,3.760761050521402,0.3994404078444787,396.476726209152,395.8566869315454,0.763324613881998,1,1,0,0.6855115501165409,0.566391476534218,0.731146306344192,"green area with detected water, possibly storage or easier detection","floodable parks, retention basins, wetland enhancement"
+Xi'an,Type 2,98,0.98,0.056956300525750465,0.003914130232699877,0.7360398229436281,0.03611111111111111,15.58672566233619,0.026902000678551863,0.20282849196927152,20.282849196927152,1.2448979591836735,75.79594563528389,0.9097411777401393,18.87956262837545,65.4701663621299,45.72499981705023,395.98046824396874,395.820444535236,0.21324011117620534,0.5738130527782057,0.7858572951815508,1,0.30975362707716386,0.638503203806764,0.6756870965196725,low green and relatively high detected water,"depaving, rain gardens, permeable surfaces"
+Xi'an,Type 3,7183,71.83,20.816615813036552,0.10408571097502005,14.076628565811049,0.536798854336518,23.86569421230364,0.023687200943613547,0.1543216768864076,15.43216768864076,3.4698593902269246,72.26208415778962,0.726717219940912,11.028396101896806,22.602226982518996,8.649475487252523,400.3745149915463,399.94319998937516,0.5450996675595794,0.43608127234520344,0.7130920414702866,0.7156360314793413,1,0,0.6240286619842611,many separate detected water patches,"bioswales, green corridors, connected pocket parks"
+Xi'an,Type 1,1303,13.03,19.354466998169578,0.1224051476367761,14.71703341840823,0.5519784619412468,22.972901621082435,-0.007817507539941504,7.411918868809444e-4,0.07411918868809445,0.24642857142857144,1.2179868079010325,0.4051082562248901,0.07013472093977627,36.62678215943416,36.28890299918083,393.4927221964903,393.1129558384647,0.465785732131698,0,0,0.7356644158231587,0,1,0.19713288316463173,less problematic or unclear,no clear solution from typology alone
diff --git a/data/results/shared_flood_pattern_type_characteristics.csv b/data/results/shared_flood_pattern_type_characteristics.csv
new file mode 100644
index 00000000..f8c0cb51
--- /dev/null
+++ b/data/results/shared_flood_pattern_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,flood_share,np_flood,flood_cohesion,flood_clumpy,flood_lpi
+Type 1,0.11766258009071955,2.0498382652449982,73.27037910915469,0.8108428651449082,9.533459590721817
+Type 2,0.16798126729125068,5.001825928180158,74.60834886754175,0.6770026852403954,9.944613577781759
+Type 3,7.934076857862492e-4,0.24121146565711196,1.0536782891943026,0.02156219195552218,0.05832344344917209
+Type 4,0.6528837817198113,1.6913417052214144,97.71149884514574,0.8043399893118467,62.33195286891874
diff --git a/data/results/shared_flood_pattern_type_cluster_centres_scaled.csv b/data/results/shared_flood_pattern_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..6c1f16fd
--- /dev/null
+++ b/data/results/shared_flood_pattern_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,flood_share,np_flood,flood_cohesion,flood_clumpy,flood_lpi
+Type 1,-0.3066197812367512,-0.1822420729901583,0.2689122030440651,0.5542859800454913,-0.279294512712658
+Type 2,-0.09164818091848827,1.4053563365016908,0.3074955059016622,0.14192948327367064,-0.26117572303959224
+Type 3,-0.805908503131174,-1.154933479002165,-1.8136153142237539,-1.8774577130538295,-0.6968460977129498
+Type 4,1.979953351721605,-0.375043884341874,0.9737256855920046,0.5342508672760893,2.0474366509640465
diff --git a/data/results/shared_flood_pattern_type_elbow.csv b/data/results/shared_flood_pattern_type_elbow.csv
new file mode 100644
index 00000000..22b582bd
--- /dev/null
+++ b/data/results/shared_flood_pattern_type_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,57734.01189145308
+3,29826.56253795214
+4,21401.47330497212
+5,15579.274963771453
+6,13201.728234931616
+7,11438.90398159702
+8,10103.823100180784
diff --git a/data/results/shared_flood_pattern_type_summary.csv b/data/results/shared_flood_pattern_type_summary.csv
new file mode 100644
index 00000000..c45b74f5
--- /dev/null
+++ b/data/results/shared_flood_pattern_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,4260,42.6,21.402545095132197,0.09482860878812632,9.557869563128477,0.3229015443792293,18.11606120679349,-0.005751367765611024,0.12156035334815914,12.156035334815913,1.9164319248826291,75.44206866694924,0.8335536777218178,10.121648752162095,20.39753637310337,11.739053825145598,-1.9683287746869018,-2.187240453913249,0.28814017833953987
+Delft,Type 2,1526,15.260000000000002,31.86303200662206,0.10555143332545369,10.074326843589212,0.3443522493204818,15.684391687015237,0.015331834144772346,0.17121775194867903,17.121775194867904,4.839449541284404,75.9785927138526,0.6957169615215413,10.277143546940746,8.317104359470978,1.5150551827206993,-1.0237121992934068,-1.271482578673326,0.3189514359136156
+Delft,Type 3,2140,21.4,8.692855386128874,0.06102051850916424,6.819191841682868,0.23571351971195575,21.46768091688687,-0.0544953530778593,5.293285784554845e-4,0.05293285784554845,0.17523364485981308,4.866906951223803,0.415919791062892,0.041250614854894244,16.71694350466482,15.20237254424834,-2.552827952519133,-2.706502502986935,0.2041342535252817
+Delft,Type 4,2074,20.74,36.99373826320865,0.27658429394344247,16.86970408539035,0.4773353901511157,16.94415258357939,0.07769602336880088,0.6715218494645485,67.15218494645485,1.5477338476374156,97.99183517200507,0.8554248146096991,64.86827513576613,33.0157799496137,14.237974010530065,-2.4871457563116848,-2.7974483984051837,0.3987596303603417
+Xi'an,Type 1,4087,40.87,24.529267178480243,0.17717326849886153,16.43835446371318,0.5771781229650301,24.872588551588393,0.01712234659323418,0.11359981667582045,11.359981667582044,2.1888916075360902,71.00676337237839,0.7871707189306594,8.920372772093094,23.347584062621888,11.516224814943032,398.80848431123775,398.3791561402054,0.543607881052884
+Xi'an,Type 2,3403,34.03,26.53425159322514,0.15779178029413835,16.047108287072298,0.5665078390965441,22.385115305076685,0.027008092067438236,0.16652993740960634,16.652993740960635,5.074640023508668,73.99389335491453,0.6686106824178775,9.795497876066621,19.608149851437233,5.02546138802662,400.8461020782886,400.3980973227179,0.5585340944749823
+Xi'an,Type 3,1558,15.58,24.34162254328477,0.19120107644952644,16.957654943929462,0.5861673252125817,23.33974321682698,-0.006929048427437194,0.0017025127260329041,0.17025127260329043,0.4886578449905482,7.438759583707016,0.4183093536315101,0.12041944998635606,31.26725439188278,27.87608202251457,393.8848776686057,393.49684409458615,0.47742121825581607
+Xi'an,Type 4,952,9.520000000000001,52.24039854861612,0.3975810188528317,24.105256460513377,0.7019739610185054,21.221360609776195,0.06491878236497443,0.612279419847348,61.2279419847348,2.004201680672269,97.10076613305937,0.8039826042812807,56.806393644715506,8.555227135866746,0.7147017101279828,400.36353807378106,399.7302939150514,0.7961089430632097
diff --git a/data/results/shared_green_flood_dem_elbow.csv b/data/results/shared_green_flood_dem_elbow.csv
new file mode 100644
index 00000000..06519bca
--- /dev/null
+++ b/data/results/shared_green_flood_dem_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,161484.48071047902
+3,135429.34032037074
+4,116986.91189254672
+5,106069.66018893303
+6,98613.98099825556
+7,91276.30894456785
+8,85612.49519411764
diff --git a/data/results/shared_green_flood_elbow.csv b/data/results/shared_green_flood_elbow.csv
new file mode 100644
index 00000000..2b9dd626
--- /dev/null
+++ b/data/results/shared_green_flood_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,122826.42405071377
+3,96584.43037195056
+4,84227.96766066931
+5,73485.96326962023
+6,65694.80073827923
+7,60730.85958691676
+8,56690.73694392869
diff --git a/data/results/shared_green_type_characteristics.csv b/data/results/shared_green_type_characteristics.csv
new file mode 100644
index 00000000..23ccebfa
--- /dev/null
+++ b/data/results/shared_green_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,gyrate,contig,enn
+Type 1,6.737214636018131,0.011820831508271058,2.917503774208064,0.13339693482207327,8.841795154810887
+Type 2,75.50212020927184,0.7040793546847895,34.46741764711076,0.8532068330558998,1.5371655278426184
+Type 3,34.38054698235435,0.13776199249564897,15.982772512332977,0.5579101369008852,13.300097827456716
+Type 4,12.236156993457444,0.05285618723993411,8.752000518380957,0.3906282642490297,49.20437279914221
diff --git a/data/results/shared_green_type_cluster_centres_scaled.csv b/data/results/shared_green_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..11c4a275
--- /dev/null
+++ b/data/results/shared_green_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,gyrate,contig,enn
+Type 1,-0.7312840736246076,-0.57409253430124,-0.8347111263651762,-0.9399289530166499,-0.2892814778738643
+Type 2,1.9252717060421694,2.5426706533750827,2.0581808364982725,1.5758084518158342,-0.7867542924719885
+Type 3,0.3366451804289577,-0.00706625548054903,0.36327664239495394,0.5437457560076397,0.014345741048148265
+Type 4,-0.5188465376470738,-0.3893385993828591,-0.2997312590170195,-0.04090480966713066,2.4595622185992805
diff --git a/data/results/shared_green_type_elbow.csv b/data/results/shared_green_type_elbow.csv
new file mode 100644
index 00000000..0237f998
--- /dev/null
+++ b/data/results/shared_green_type_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,54013.79929065739
+3,36783.44988549812
+4,27544.68205323296
+5,21735.400204330115
+6,18362.422482937476
+7,15591.53481528955
+8,13760.53669155842
diff --git a/data/results/shared_green_type_summary.csv b/data/results/shared_green_type_summary.csv
new file mode 100644
index 00000000..79f396c5
--- /dev/null
+++ b/data/results/shared_green_type_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,5904,59.040000000000006,8.223695353729854,0.01743807498290157,4.179162396207725,0.17743193214572003,16.08562292174563,-0.004385335207452068,0.15976100057053202,15.976100057053202,1.665819783197832,74.18635218933099,0.8085027737028535,14.454332923263443,34.55924202132433,18.770920070727467,-2.2966346740011523,-2.4591659126241274,0.21568538741934928
+Delft,Type 2,812,8.12,79.0265750583355,0.7068657635467981,33.90301705818888,0.8267749915635024,11.88811894249317,0.031565841789368825,0.46183448924034226,46.183448924034224,1.9137931034482758,90.81467430152738,0.8175313003486621,42.8965679284418,1.3981704436576836,0.06165463494060856,-1.6170665265631832,-2.041487348595443,0.5288683046908003
+Delft,Type 3,2746,27.46,42.651718288802854,0.14334626007893944,14.621468452816687,0.47296253562957613,14.370255387242134,0.01618069671365548,0.2802350787748687,28.02350787748687,2.5069191551347414,84.06090664995035,0.8055844519101978,23.924502625828957,5.283995522990277,0.7650637157718233,-1.635687315477824,-1.9497812885029828,0.4075907021762277
+Delft,Type 4,538,5.38,9.817207982782234,0.04131181403788281,6.632688417067829,0.2631496061105081,49.30693847813105,-0.0014044396657521485,0.1584208080610448,15.84208080610448,1.600371747211896,73.08355386965617,0.8110040012464301,14.050454901193504,16.247489597015694,4.694698139772576,-2.2391654462734327,-2.4554784200535082,0.28992596270144844
+Xi'an,Type 1,2268,22.68,2.8676457835622196,0.02038675593067457,5.532823034364184,0.30782708851001694,18.615908340970567,0.01872154317991791,0.09864415323560577,9.864415323560577,2.7670083876980427,64.92171302391984,0.7265893581295992,6.978378795103569,49.5574057508147,28.746601943059055,399.9733811246164,399.527303826872,0.555240015038092
+Xi'an,Type 2,1299,12.989999999999998,73.29899677783251,0.7023375810158512,34.82022232625207,0.8697292774683916,13.060209510810632,0.029975503919427153,0.30459546370815965,30.459546370815968,2.5565356856455494,82.47906064448101,0.7723828266529085,26.370584817535615,3.773961314399562,0.4566698456808283,395.6942903993271,395.11264559633463,0.7146960133219343
+Xi'an,Type 3,5382,53.82,30.160436167135554,0.1349127916811347,16.677336047716057,0.6012520382555887,17.784426406994648,0.022880183605551174,0.17038585075270743,17.038585075270742,3.2297429860702374,73.15655486572273,0.7297529222526742,12.697820809686963,13.342158076463049,3.048821877368724,399.09861867170594,398.6742645116244,0.5326604550372408
+Xi'an,Type 4,1051,10.51,13.474401111196038,0.05876567609122203,9.836862469386155,0.45588375243030904,49.151870101429566,0.02196349952291455,0.15415595697381373,15.415595697381374,3.021782178217822,72.6071329915523,0.746978184414103,11.30516880289137,20.07079696103527,5.1799156438617775,399.36537687525663,398.9510142056858,0.5420379265254273
diff --git a/data/results/typology_summary.csv b/data/results/typology_summary.csv
new file mode 100644
index 00000000..79f396c5
--- /dev/null
+++ b/data/results/typology_summary.csv
@@ -0,0 +1,9 @@
+city,type,n_cells,percent_cells,mean_green_percent,mean_area,mean_gyrate,mean_contig,mean_enn,mean_fwei_change_mean,mean_flood_share,mean_pland_flood,mean_np_flood,mean_flood_cohesion,mean_flood_clumpy,mean_flood_lpi,mean_mean_dist_green,mean_min_dist_green,mean_elevation_mean,mean_elevation_min,mean_slope_mean
+Delft,Type 1,5904,59.040000000000006,8.223695353729854,0.01743807498290157,4.179162396207725,0.17743193214572003,16.08562292174563,-0.004385335207452068,0.15976100057053202,15.976100057053202,1.665819783197832,74.18635218933099,0.8085027737028535,14.454332923263443,34.55924202132433,18.770920070727467,-2.2966346740011523,-2.4591659126241274,0.21568538741934928
+Delft,Type 2,812,8.12,79.0265750583355,0.7068657635467981,33.90301705818888,0.8267749915635024,11.88811894249317,0.031565841789368825,0.46183448924034226,46.183448924034224,1.9137931034482758,90.81467430152738,0.8175313003486621,42.8965679284418,1.3981704436576836,0.06165463494060856,-1.6170665265631832,-2.041487348595443,0.5288683046908003
+Delft,Type 3,2746,27.46,42.651718288802854,0.14334626007893944,14.621468452816687,0.47296253562957613,14.370255387242134,0.01618069671365548,0.2802350787748687,28.02350787748687,2.5069191551347414,84.06090664995035,0.8055844519101978,23.924502625828957,5.283995522990277,0.7650637157718233,-1.635687315477824,-1.9497812885029828,0.4075907021762277
+Delft,Type 4,538,5.38,9.817207982782234,0.04131181403788281,6.632688417067829,0.2631496061105081,49.30693847813105,-0.0014044396657521485,0.1584208080610448,15.84208080610448,1.600371747211896,73.08355386965617,0.8110040012464301,14.050454901193504,16.247489597015694,4.694698139772576,-2.2391654462734327,-2.4554784200535082,0.28992596270144844
+Xi'an,Type 1,2268,22.68,2.8676457835622196,0.02038675593067457,5.532823034364184,0.30782708851001694,18.615908340970567,0.01872154317991791,0.09864415323560577,9.864415323560577,2.7670083876980427,64.92171302391984,0.7265893581295992,6.978378795103569,49.5574057508147,28.746601943059055,399.9733811246164,399.527303826872,0.555240015038092
+Xi'an,Type 2,1299,12.989999999999998,73.29899677783251,0.7023375810158512,34.82022232625207,0.8697292774683916,13.060209510810632,0.029975503919427153,0.30459546370815965,30.459546370815968,2.5565356856455494,82.47906064448101,0.7723828266529085,26.370584817535615,3.773961314399562,0.4566698456808283,395.6942903993271,395.11264559633463,0.7146960133219343
+Xi'an,Type 3,5382,53.82,30.160436167135554,0.1349127916811347,16.677336047716057,0.6012520382555887,17.784426406994648,0.022880183605551174,0.17038585075270743,17.038585075270742,3.2297429860702374,73.15655486572273,0.7297529222526742,12.697820809686963,13.342158076463049,3.048821877368724,399.09861867170594,398.6742645116244,0.5326604550372408
+Xi'an,Type 4,1051,10.51,13.474401111196038,0.05876567609122203,9.836862469386155,0.45588375243030904,49.151870101429566,0.02196349952291455,0.15415595697381373,15.415595697381374,3.021782178217822,72.6071329915523,0.746978184414103,11.30516880289137,20.07079696103527,5.1799156438617775,399.36537687525663,398.9510142056858,0.5420379265254273
diff --git a/data/results/xian_combined_typology.gpkg b/data/results/xian_combined_typology.gpkg
new file mode 100644
index 00000000..b1cfd6a0
Binary files /dev/null and b/data/results/xian_combined_typology.gpkg differ
diff --git a/data/results/xian_flood_metrics_base.csv b/data/results/xian_flood_metrics_base.csv
new file mode 100644
index 00000000..a6f9cf5a
--- /dev/null
+++ b/data/results/xian_flood_metrics_base.csv
@@ -0,0 +1,10001 @@
+"id","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green"
+1,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6,0.00619989868075783,0.0263157894736842,2.63157894736842,1,54.4135192072642,0.743243243243243,2.63157894736842,109.170440673828,104.041313171387
+7,0.011792434418801,0.0332409972299169,3.32409972299169,2,66.2503006056306,0.756615540198888,2.77008310249307,101.845731735229,92.5045852661133
+8,0.0058636441306507,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,118.477348327637,118.477348327637
+9,0.0214491831687652,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.978898760813654,8.86426592797784,2.24520729482174,0
+10,0.00793712066906784,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,106.604286193848,106.604286193848
+11,0.00734691268169229,0,0,0,NA,NA,0,NA,NA
+12,0.00770644694213107,0.0304709141274238,3.04709141274238,3,54.4858695954154,0.656190476190476,1.93905817174515,129.469594782049,107.109527587891
+13,0.00287189962605566,0,0,0,NA,NA,0,NA,NA
+14,0.0090026550652223,0.068421052631579,6.8421052631579,3,72.9971248228742,0.685820587019429,4.21052631578947,5.05394941109877,0
+15,0.0371232921969651,0.224376731301939,22.4376731301939,6,87.4124517373894,0.749305555555556,18.8365650969529,0,0
+16,0.0321352374562052,0.213296398891967,21.3296398891967,5,83.7899361603726,0.756990472245236,14.6814404432133,1.35385186331613,0
+17,0.0223165435886447,0.243767313019391,24.3767313019391,2,92.3041090577956,0.797858192762651,22.4376731301939,43.7070605321364,15.5867252349854
+18,-0.0488957803300429,0,0,0,NA,NA,0,NA,NA
+19,-0.0280688747221585,0.0637119113573407,6.37119113573407,2,77.9767086306785,0.79232412886259,5.54016620498615,42.6940749624501,25.977876663208
+20,-0.0131883308268217,0.0914127423822715,9.14127423822715,2,79.774877008713,0.816565040650407,5.26315789473684,43.4738540649414,36.369026184082
+21,-0.00815804846536989,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,44.4598064422607,37.8243598937988
+22,-0.0389826916792356,0,0,0,NA,NA,0,NA,NA
+23,-0.014865876202959,0,0,0,NA,NA,0,NA,NA
+24,-0.000795986313180007,0,0,0,NA,NA,0,NA,NA
+25,0.0102489585160873,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.5646018981934,41.5646018981934
+26,0.0152055870842703,0.0342105263157895,3.42105263157895,2,71.239704032982,0.71238268240993,3.15789473684211,24.5731847469623,14.6953058242798
+27,0.0194477113880042,0.116343490304709,11.6343490304709,3,78.4496667254934,0.665283235462934,6.09418282548476,26.3744256382897,0
+28,0.0690448430914708,0.67590027700831,67.590027700831,1,98.7980535590972,0.993233618233618,67.590027700831,13.7097904213139,0
+29,0.0718951739424113,0.598337950138504,59.8337950138504,1,98.3734097048024,0.919488763081146,59.8337950138504,27.6171795262231,0
+30,0.0111715070217925,0.115789473684211,11.5789473684211,3,83.1978406384162,0.831885456885457,10,41.6462894786488,23.2353191375732
+31,0.0152469136250893,0.0443213296398892,4.43213296398892,2,71.5809969180075,0.869202898550725,3.8781163434903,33.2635025978088,5.19557523727417
+32,0.0126876176873137,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.968679507201111,6.09418282548476,0,0
+33,0.00988905756423562,0.0858725761772853,8.58725761772853,1,86.597218119396,0.978121212121212,8.58725761772853,12.7105938849911,0
+34,0.0187157520544325,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.924896238223862,7.10526315789474,9.76278241475423,0
+35,-0.000435813833485194,0,0,0,NA,NA,0,NA,NA
+36,0.00241978779223717,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,62.3469009399414,62.3469009399414
+37,0.00523649054016548,0.0249307479224377,2.49307479224377,2,58.3321631610904,0.743607954545455,1.93905817174515,42.7191751268175,0
+38,0.0107240174174589,0.0210526315789474,2.10526315789474,2,58.2306946168411,0.795698924731183,1.84210526315789,0.649446904659271,0
+39,0.0208252868047954,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+40,0.0109763908886204,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,4.83608111739159,0
+41,-0.00141293833246216,0,0,0,NA,NA,0,NA,NA
+42,0.0109747527054131,0.0221606648199446,2.21606648199446,2,54.34634595652,0.795467422096317,1.66204986149584,3.24723452329636,0
+43,0.00876247977082944,0,0,0,NA,NA,0,NA,NA
+44,0.0247699066044774,0,0,0,NA,NA,0,NA,NA
+45,0.00699158599081406,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,18.7329120635986,18.7329120635986
+46,0.00674986032180114,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,8.00347248713175,5.19557523727417
+47,-0.00713008041562525,0.0973684210526316,9.73684210526316,2,81.3505233499693,0.872867179658749,6.31578947368421,12.5948705157718,0
+48,0.0299704901042792,0.25207756232687,25.207756232687,4,84.9259083017455,0.801920438957476,9.14127423822715,29.0381328404605,5.19557523727417
+49,0.0350872851348946,0.243767313019391,24.3767313019391,2,89.8454589385259,0.898929096381326,16.0664819944598,3.53383167765357,0
+50,0.0476768689990009,0.32409972299169,32.409972299169,3,89.803766898172,0.804593257036808,21.0526315789474,1.27226233686137,0
+51,-0.00359956619366513,0.0447368421052632,4.47368421052632,3,70.1420782906299,0.832506887052342,3.94736842105263,7.1679212065304,0
+52,-0.0375288282845565,0.0831024930747922,8.31024930747922,2,82.8324088785172,0.844195079844627,7.75623268698061,38.2463523228963,22.0429573059082
+53,-0.0131377187582753,0,0,0,NA,NA,0,NA,NA
+54,-0.0459503263709622,0,0,0,NA,NA,0,NA,NA
+55,-0.0019003067571918,0.0736842105263158,7.36842105263158,2,79.6024325441793,0.832070707070707,6.05263157894737,41.0703278950282,31.6034507751465
+56,-0.0217812641927604,0,0,0,NA,NA,0,NA,NA
+57,-0.0573894554537947,0,0,0,NA,NA,0,NA,NA
+58,-0.072331629556502,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,11.1643578211466,5.19557523727417
+59,-0.105720487738462,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,15.5867252349854,15.5867252349854
+60,-0.0287566914412511,0,0,0,NA,NA,0,NA,NA
+61,-0.0166530351578084,0,0,0,NA,NA,0,NA,NA
+62,0.00691973756879621,0,0,0,NA,NA,0,NA,NA
+63,0.0382014569789566,0.231578947368421,23.1578947368421,4,88.1609834726634,0.867376319692872,14.7368421052632,13.8475572629408,0
+64,0.011706151282025,0.0443213296398892,4.43213296398892,2,73.6199431581337,0.651207729468599,3.8781163434903,14.4130092859268,0
+65,0.0152194150239402,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,30.6804415384928,26.4923400878906
+66,0.0118664817214531,0,0,0,NA,NA,0,NA,NA
+67,0.00186721984500764,0.0236842105263158,2.36842105263158,2,55.9348798176734,0.743935309973046,1.57894736842105,17.7618408203125,15.5867252349854
+68,0.003428694448973,0.0332409972299169,3.32409972299169,2,63.7874511601681,0.756615540198888,2.21606648199446,15.6317644913991,10.3911504745483
+69,0.0185506412554507,0.0277008310249307,2.77008310249307,1,72.175958031556,0.920885382423844,2.77008310249307,7.82687177658081,5.19557523727417
+70,0.0147391935714146,0,0,0,NA,NA,0,NA,NA
+71,0.0182215910508316,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,3.46371682484945,0
+72,0.0361687857212648,0.254847645429363,25.4847645429363,4,84.8614471526277,0.770876779399764,9.97229916897507,19.4567053214363,0
+73,0.0585004309379903,0.429362880886427,42.9362880886427,3,92.242825334027,0.827831715210356,20.7756232686981,7.06324754222747,0
+74,0.00696584997678147,0.119113573407202,11.9113573407202,1,89.4584842426695,0.842330538085255,11.9113573407202,19.6871200716773,0
+75,0.00800900873707992,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.19557523727417,0
+76,0.0251969937178683,0.160664819944598,16.0664819944598,2,90.4335975692693,0.916600660066007,15.7894736842105,40.9466605350889,15.5867252349854
+77,0.0400829632237768,0.28808864265928,28.808864265928,3,89.7550768575192,0.879814394806384,14.404432132964,27.6386350347446,0
+78,0.0273003501258655,0.163434903047091,16.3434903047091,4,82.4710312835728,0.789053369692248,7.75623268698061,26.2254168461945,0
+79,0.0582371267182201,0.423684210526316,42.3684210526316,3,93.3823451577093,0.753794890781192,29.7368421052632,9.84745656777613,0
+80,0.0140418170446343,0.0914127423822715,9.14127423822715,3,80.5043956054117,0.755420054200542,7.75623268698061,19.957454291257,5.19557523727417
+81,0.00894625921129995,0.0415512465373961,4.15512465373961,2,73.0085666444357,0.8577246452969,3.8781163434903,21.5669164657593,10.3911504745483
+82,0.0250848706313757,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.943620178041543,6.64819944598338,15.6035781900088,5.19557523727417
+83,0.0201471930008617,0.0973684210526316,9.73684210526316,4,75.6541369821688,0.709410696362854,4.73684210526316,21.6007501885698,0
+84,0.0293395038571964,0.202216066481994,20.2216066481994,4,82.8185987596269,0.716010199652778,8.86426592797784,37.8311283163828,0
+85,0.0298692347547794,0.110803324099723,11.0803324099723,4,79.2959101507987,0.78179197470591,8.86426592797784,26.5830476284027,0
+86,0.0299854338234158,0.146814404432133,14.6814404432133,5,79.3959114169091,0.678000570857714,9.14127423822715,2.67058847535331,0
+87,0.0270320721002032,0.115789473684211,11.5789473684211,4,78.3418885238263,0.694337194337194,7.10526315789474,23.1854079311544,0
+88,0.0329671683410977,0.204986149584488,20.4986149584488,3,90.0737324738763,0.874216027874564,19.1135734072022,4.63367705087404,0
+89,0.0282988302293697,0.157894736842105,15.7894736842105,6,75.4771818672285,0.684948979591837,6.09418282548476,21.3364418180365,0
+90,0.051734399091147,0.398891966759003,39.8891966759003,4,88.4705734055519,0.7164327607876,17.7285318559557,4.96414824989107,0
+91,0.0214172161236332,0.0789473684210526,7.89473684210526,5,67.6094957264676,0.62332361516035,3.42105263157895,11.7129981517792,0
+92,0.00937078831104216,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,21.0029547864741,0
+93,0.00941471098177264,0,0,0,NA,NA,0,NA,NA
+94,0.0265231767958146,0.152354570637119,15.2354570637119,3,82.0398859627863,0.826143790849673,9.14127423822715,13.0683124975725,0
+95,0.0267061128707658,0.136842105263158,13.6842105263158,1,90.7899197045923,0.843792819950671,13.6842105263158,2.03968427731441,0
+96,0.0808421075155939,0.401662049861496,40.1662049861496,2,94.5840976583191,0.918011879804333,36.2880886426593,0,0
+97,0.152856702076667,0.952908587257618,95.2908587257618,1,99.864381414263,1,95.2908587257618,0,0
+98,0.105614051072042,0.833795013850416,83.3795013850416,1,99.4714344797886,0.692269253380364,83.3795013850416,8.55988428996647,0
+99,0.0399241903940779,0.273684210526316,27.3684210526316,6,83.0976682590037,0.661319073083779,9.21052631578947,18.4754400024047,0
+100,0.00401088880589243,0.0730994152046784,7.30994152046784,3,69.2952713609886,0.676340694006309,3.21637426900585,8.14208457946777,0
+101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+106,-0.00869518232630071,0,0,0,NA,NA,0,NA,NA
+107,0.000881409062936942,0.0368421052631579,3.68421052631579,2,72.1693261347176,0.792349726775956,3.42105263157895,1.48445006779262,0
+108,0.00508126120516384,0.0368421052631579,3.68421052631579,4,50.7687705165695,0.532786885245902,1.57894736842105,11.6160306249346,5.19557523727417
+109,0.0123534426141161,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,16.7141089439392,14.6953058242798
+110,0.0114820064268133,0.01,1,1,52.6315789473684,0.747474747474748,1,100.001941680908,92.941276550293
+111,0.00907407141456037,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,24.437123298645,22.0429573059082
+112,0.0167238917922839,0.144736842105263,14.4736842105263,2,85.3822298824625,0.778461538461538,8.15789473684211,76.8398139260032,37.8243598937988
+113,0.000506432693816207,0.0236842105263158,2.36842105263158,3,55.1455442633031,0.487870619946092,1.84210526315789,11.6167899237739,0
+114,0.0307679688598,0.285,28.5,2,92.3811601475103,0.775952203136669,23.25,0,0
+115,0.0296856719321927,0.139473684210526,13.9473684210526,3,84.6803166311991,0.693517491682629,9.73684210526316,0,0
+116,-0.00350126351477229,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,0,0
+117,0.0331706404395702,0.173684210526316,17.3684210526316,3,84.4108150351601,0.789531985599557,10,11.2411705652873,0
+118,0.0116298972448567,0.0425,4.25,4,57.8063683931704,0.5822454308094,2,0.916866190293256,0
+119,0.0378943473492774,0.413157894736842,41.3157894736842,2,94.4819777423544,0.881664175386148,34.2105263157895,8.80597110614655,0
+120,0.0653165165533306,0.778947368421053,77.8947368421053,1,99.2806056729252,0.967513037530991,77.8947368421053,8.84748484154005,0
+121,0.0317765557155852,0.165789473684211,16.5789473684211,4,84.5295764853319,0.771149985661027,12.8947368421053,5.51012930794368,0
+122,-0.0102195744723758,0.02,2,2,58.1510768543717,0.795918367346939,1.75,0,0
+123,-0.0331447033903954,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,0,0
+124,0.00181522531222168,0.0578947368421053,5.78947368421053,1,82.9343718737514,0.968780808412751,5.78947368421053,7.79336276921359,0
+125,-0.01334226415353,0,0,0,NA,NA,0,NA,NA
+126,-0.0376791556835087,0,0,0,NA,NA,0,NA,NA
+127,-0.0204608127177619,0.0210526315789474,2.10526315789474,2,59.9064455234177,0.591397849462366,1.84210526315789,43.2089012861252,10.3911504745483
+128,0.0404534136144273,0.484210526315789,48.4210526315789,1,97.6365516083771,0.903061224489796,48.4210526315789,52.6790917334349,15.5867252349854
+129,0.0115535677445127,0.131578947368421,13.1578947368421,2,84.9006552318258,0.810338680926916,10,72.0183020782471,34.8529777526855
+130,-0.00874754026684968,0,0,0,NA,NA,0,NA,NA
+131,0.00702085623226211,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,44.4680004119873,41.8880653381348
+132,-0.0171709603760208,0,0,0,NA,NA,0,NA,NA
+133,-0.0217401840329618,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707
+134,-0.0372323717231666,0,0,0,NA,NA,0,NA,NA
+135,-0.0262058689352431,0,0,0,NA,NA,0,NA,NA
+136,-0.00631868432542672,0,0,0,NA,NA,0,NA,NA
+137,8.89506732882613e-06,0,0,0,NA,NA,0,NA,NA
+138,0.0169180760431846,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,0,0
+139,0.0224487307854073,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,0,0
+140,0.0556076945108974,0.542105263157895,54.2105263157895,1,98.0632061915115,0.777617718555866,54.2105263157895,5.24650415633489,0
+141,0.0264077928508892,0.126315789473684,12.6315789473684,6,73.9131585677305,0.706876285630326,5.52631578947368,9.18956180413564,0
+142,0.0170641045036782,0.0263157894736842,2.63157894736842,3,48.8831304598528,0.525987525987526,1.05263157894737,11.282075548172,7.34765291213989
+143,0.00294391613637345,0.0075,0.75,1,44.4894453484604,1,0.75,6.92743364969889,5.19557523727417
+144,0.0265821972717516,0.0526315789473684,5.26315789473684,4,63.9481841327528,0.659498207885305,3.42105263157895,76.4474803924561,57.1513290405273
+145,0.0131322975558233,0.0263157894736842,2.63157894736842,3,52.8544892788092,0.525987525987526,1.57894736842105,50.3180869579315,0
+146,-0.00258187959451262,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,1.48445006779262,0
+147,0.0118270896598733,0.01,1,1,52.6315789473684,0.747474747474748,1,2.59778761863708,0
+148,-0.0013315199368088,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,15.5867252349854,15.5867252349854
+149,0.0286778182852829,0.155263157894737,15.5263157894737,4,85.4424913374778,0.849123450003054,13.4210526315789,14.6422550637843,0
+150,0.034899225564502,0.236842105263158,23.6842105263158,1,94.2963765153462,0.84536303276933,23.6842105263158,5.35032689306471,0
+151,-0.00501744766404954,0,0,0,NA,NA,0,NA,NA
+152,-0.0671398806300682,0.0921052631578947,9.21052631578947,2,82.8642375665534,0.84807596201899,8.15789473684211,37.961642074585,18.7329120635986
+153,0.00477429619447656,0.0105263157894737,1.05263157894737,1,52.703639668815,1,1.05263157894737,40.4954147338867,36.7382659912109
+154,0.00985368557812762,0.0315789473684211,3.15789473684211,5,41.0801109615744,0.392583120204604,1.05263157894737,34.0602402687073,11.6176595687866
+155,0.024391340365255,0.04,4,6,44.9544508862929,0.348958333333333,1.25,95.7771496772766,63.206901550293
+156,0.018522286660453,0.0210526315789474,2.10526315789474,3,49.0305203394942,0.591397849462366,1.57894736842105,55.9380149841309,34.8529777526855
+157,-0.0222709514762884,0,0,0,NA,NA,0,NA,NA
+158,-0.0230944253966108,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,24.0104169845581,22.0429573059082
+159,-0.0535059116195771,0.0025,0.25,1,0,NA,0.25,41.8880653381348,41.8880653381348
+160,0.00132983916279811,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,31.0627311706543,25.977876663208
+161,-0.00799251265567651,0,0,0,NA,NA,0,NA,NA
+162,0.00132550921076281,0.0210526315789474,2.10526315789474,3,46.4278190834861,0.489247311827957,1.31578947368421,10.4965411424637,5.19557523727417
+163,0.0360583630517795,0.2525,25.25,3,93.4317795168043,0.903915445592121,24.75,33.3319982915822,7.34765291213989
+164,0.0129065209625735,0.0657894736842105,6.57894736842105,1,84.325823470104,0.652112676056338,6.57894736842105,47.7445063781738,41.5646018981934
+165,-0.00306059313305396,0.0131578947368421,1.31578947368421,2,42.162911735052,0.797333333333333,1.05263157894737,11.4302653312683,5.19557523727417
+166,0.00904817114378722,0.0657894736842105,6.57894736842105,1,84.325823470104,0.785915492957747,6.57894736842105,15.4658287811279,10.3911504745483
+167,0.027420206005593,0.1725,17.25,5,83.9824302333241,0.720356545404609,11.75,11.5731732948967,0
+168,0.0128279828222371,0,0,0,NA,NA,0,NA,NA
+169,0.0131636685883246,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,9.0922566652298,5.19557523727417
+170,0.0201440842760923,0.0368421052631579,3.68421052631579,6,40.4918916288722,0.325136612021858,1.05263157894737,11.5044879232134,0
+171,0.0220086307109113,0.0825,8.25,1,86.9391941099265,0.838530628721364,8.25,11.0428738449559,5.19557523727417
+172,0.0365408143902498,0.218421052631579,21.8421052631579,4,83.9594187648112,0.764996907854051,10.7894736842105,11.2768548310521,0
+173,0.0332742712153049,0.186842105263158,18.6842105263158,6,79.7603502695955,0.704854368932039,8.68421052631579,13.4960184903212,0
+174,0.0175085005427281,0.121052631578947,12.1052631578947,2,87.7832082650979,0.854137878089974,11.5789473684211,20.006697592528,5.19557523727417
+175,0.0227960292643229,0.06,6,5,62.2005930197738,0.524076147816349,2.5,6.58413894971212,0
+176,0.00859909288870097,0,0,0,NA,NA,0,NA,NA
+177,0.0234410319096672,0.121052631578947,12.1052631578947,2,84.0639641544568,0.854137878089974,8.42105263157895,96.2735776486604,62.3469009399414
+178,0.0329465547770143,0.268421052631579,26.8421052631579,3,88.5635936088178,0.850611314227307,13.9473684210526,42.0774422954111,5.19557523727417
+179,0.0705798005416727,0.53,53,2,95.9385050850156,0.816394859056053,42.25,5.57969358732116,0
+180,0.0205465039146331,0.105263157894737,10.5263157894737,6,74.2516340563517,0.716417910447761,7.36842105263158,9.09984059333801,0
+181,0.0239983396561672,0.0473684210526316,4.73684210526316,5,63.2580037149911,0.455698792715367,3.15789473684211,13.702944888009,0
+182,0.0202655719807617,0,0,0,NA,NA,0,NA,NA
+183,0.0230162964188821,0.06,6,3,71.8202358152103,0.776035834266517,3.75,0,0
+184,0.0505417237872423,0.547368421052632,54.7368421052632,4,96.6286133511694,0.80019229613605,52.6315789473684,2.60192408240758,0
+185,0.0349979912071017,0.263157894736842,26.3157894736842,7,83.3264970188868,0.728571428571429,14.2105263157895,2.42409196376801,0
+186,0.030668147496487,0.218421052631579,21.8421052631579,5,82.1269972942224,0.686662543805401,9.47368421052632,3.12719904083803,0
+187,0.0287615059066593,0.1425,14.25,5,76.8119305708624,0.643005890402808,5.75,8.5191792856183,0
+188,0.0158516029324107,0.0342105263157895,3.42105263157895,2,66.1572734427665,0.769906145927944,2.63157894736842,34.3433101360614,25.977876663208
+189,0.0244132365939884,0.139473684210526,13.9473684210526,2,84.9903378015689,0.859528850354538,7.89473684210526,3.82530720728748,0
+190,0.074202219779162,0.878947368421053,87.8947368421053,1,99.6396496245617,0.882174602080893,87.8947368421053,1.55620154506432,0
+191,0.0280006657449121,0.2025,20.25,5,80.3069915087536,0.721351445489377,8.75,5.60104438993666,0
+192,0.0380995643803831,0.305263157894737,30.5263157894737,4,92.9862391062747,0.766955266955267,27.6315789473684,26.8261991985913,0
+193,0.0156044407631031,0.068421052631579,6.84210526315789,5,64.6841355110419,0.659638969271049,3.15789473684211,72.395899772644,20.7823009490967
+194,0.0258826738682968,0.118421052631579,11.8421052631579,5,76.5845439313554,0.805970149253731,8.15789473684211,19.8916192690531,0
+195,0.0211146099590769,0.175,17.5,4,82.383216185046,0.812761763981276,8.5,5.8486736025129,0
+196,0.00592346368173726,0.068421052631579,6.8421052631579,3,71.765981552158,0.738183822516191,3.68421052631579,1.61152658095727,0
+197,0.130757961765228,0.918421052631579,91.8421052631579,1,99.7649570350094,0.851417399804497,91.8421052631579,0.0508275168673015,0
+198,0.0775015801065724,0.660526315789474,66.0526315789474,2,97.2992279560712,0.74303150255649,62.3684210526316,8.50818158335895,0
+199,0.0362511571644086,0.285,28.5,3,88.9313630285881,0.803109511847376,14.75,14.5213005584583,0
+200,0.0682199770764985,0.675,67.5,2,98.5268584458289,0.667909183327686,66.9444444444444,11.2081307462213,0
+201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+206,0.0126533645508169,0.0921052631578947,9.21052631578947,1,79.7417889742105,0.834782608695652,9.21052631578947,0,0
+207,0.00155833468533805,0.177285318559557,17.7285318559557,4,86.9855496346269,0.80465367965368,15.5124653739612,2.29276194423437,0
+208,0.0100260938776056,0.0249307479224377,2.49307479224377,2,59.1838031937908,0.658143939393939,1.93905817174515,56.4135453965929,46.4706382751465
+209,0.0118129758115794,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,108.502647399902,83.7761306762695
+210,0.00800463744635635,0.0289473684210526,2.89473684210526,4,45.9385834752211,0.450767841011743,1.31578947368421,124.462988419966,109.230712890625
+211,0.00238558196794727,0.0526315789473684,5.26315789473684,4,60.9729203973508,0.454022988505747,2.49307479224377,75.3128762496145,39.5683212280273
+212,0.00618080710946264,0.10803324099723,10.803324099723,2,86.3608231463384,0.810272336359293,10.2493074792244,10.2257837148813,0
+213,0.0128499232092695,0.127423822714681,12.7423822714681,4,79.2552484265159,0.764916564916565,7.4792243767313,4.98293802012568,0
+214,0.0428645729212899,0.336842105263158,33.6842105263158,5,90.7936514384594,0.734654949247224,27.1052631578947,0,0
+215,0.0344184373976718,0.246537396121884,24.6537396121884,6,87.4954626865633,0.732889382167962,18.8365650969529,7.40319295947471,0
+216,0.0133778652854386,0.0941828254847645,9.41828254847645,4,76.9495884569259,0.724006116207951,6.92520775623269,8.5710511488073,0
+217,0.0437030136550408,0.326869806094183,32.6869806094183,6,87.0941117596241,0.770912657205492,14.6814404432133,0.663294218354306,0
+218,0.00881277715910217,0.131578947368421,13.1578947368421,2,84.3399309917266,0.891622103386809,6.8421052631579,0,0
+219,0.0154577757951546,0.0775623268698061,7.75623268698061,2,82.9605556490172,0.879546212879546,7.4792243767313,0,0
+220,0.00638319689790874,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,0,0
+221,0.044824010583662,0.412742382271468,41.2742382271468,2,96.113537856994,0.943862741032553,40.7202216066482,0,0
+222,0.0489508738524915,0.378947368421053,37.8947368421053,2,93.7379196785025,0.896314843348742,31.8421052631579,0,0
+223,0.120026935777631,0.817174515235457,81.7174515235457,1,99.4098735083044,0.970434070434071,81.7174515235457,0,0
+224,-0.00311575472109441,0.25207756232687,25.207756232687,1,94.4903267234909,0.983493369913123,25.207756232687,0,0
+225,-0.0147135300150966,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,18.7329120635986,18.7329120635986
+226,-0.00689599175074315,0,0,0,NA,NA,0,NA,NA
+227,-0.118002891816409,0,0,0,NA,NA,0,NA,NA
+228,-0.0741435287602844,0,0,0,NA,NA,0,NA,NA
+229,-0.0451371672245934,0,0,0,NA,NA,0,NA,NA
+230,-0.0341038753056062,0,0,0,NA,NA,0,NA,NA
+231,-0.00124041434701766,0,0,0,NA,NA,0,NA,NA
+232,-0.0331386943656403,0,0,0,NA,NA,0,NA,NA
+233,-0.0497947793595501,0,0,0,NA,NA,0,NA,NA
+234,-0.0819998847614778,0,0,0,NA,NA,0,NA,NA
+235,-0.0648289486053825,0,0,0,NA,NA,0,NA,NA
+236,-0.00139323014346068,0,0,0,NA,NA,0,NA,NA
+237,0.00869376346121211,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,24.2817262922015,20.7823009490967
+238,-0.00962333089965365,0.0552631578947368,5.52631578947368,2,74.8925550458031,0.768454038997215,3.94736842105263,0,0
+239,0.0246398236800749,0.0470914127423823,4.70914127423823,2,76,0.790116279069767,4.43213296398892,0,0
+240,0.0267025665852494,0.188365650969529,18.8365650969529,3,88.9495419045008,0.792927409871799,16.3434903047091,20.8951697349548,0
+241,0.0150308352939422,0.0831024930747922,8.31024930747922,7,64.0786012152935,0.53258523953388,3.601108033241,14.183936436971,0
+242,0.00446063334717598,0,0,0,NA,NA,0,NA,NA
+243,-0.00797833189889819,0.0236842105263158,2.36842105263158,4,35.6939146200956,0.40251572327044,0.789473684210526,1.15457227494982,0
+244,0.0130477787474031,0.0249307479224377,2.49307479224377,2,61.9755545773026,0.743607954545455,2.21606648199446,1.73185841242472,0
+245,0.0192096852010348,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,7.64479287465413,5.19557523727417
+246,0.0253731766077135,0.290858725761773,29.0858725761773,2,93.9940189485009,0.895543981481482,27.9778393351801,3.02860623314267,0
+247,0.0167693169987998,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,4.58687572479248,0
+248,0.0246165988324603,0.168975069252078,16.8975069252078,1,92.0405515626388,0.920534591194968,16.8975069252078,3.89424114539975,0
+249,0.014325053047947,0.0581717451523546,5.81717451523546,8,42.3267856383898,0.4359375,1.66204986149584,31.9204663322085,0
+250,0.0130432328417926,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989
+251,-0.0133413847647573,0,0,0,NA,NA,0,NA,NA
+252,-0.0231797630602013,0,0,0,NA,NA,0,NA,NA
+253,-0.0285673337652209,0.0692520775623269,6.92520775623269,1,84.4444444444445,0.865699404761905,6.92520775623269,21.6564557266235,14.6953058242798
+254,-0.00973946234766636,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.91280193236715,4.43213296398892,47.3269250392914,36.7382659912109
+255,-0.01104750118213,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,95.8415095011393,91.9191131591797
+256,0.0124577062390188,0.102493074792244,10.2493074792244,3,78.855754465208,0.762548067192876,7.75623268698061,67.5351221239245,47.9008369445801
+257,-0.0230338725080318,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.881716906946265,9.41828254847645,47.1466324750115,33.2679138183594
+258,-0.036603163521912,0,0,0,NA,NA,0,NA,NA
+259,-0.00111255881753383,0.321052631578947,32.1052631578947,1,95.8641526644856,0.980006313795644,32.1052631578947,30.5524774066737,10.3911504745483
+260,-0.00275844464943115,0.155124653739612,15.5124653739612,3,89.0829755934431,0.853574446510056,14.9584487534626,16.4929664731026,0
+261,0.0233380092797531,0.310249307479224,31.0249307479224,3,92.5564737162669,0.877987196309992,27.9778393351801,15.5873878002167,0
+262,0.0243557472909551,0.285318559556787,28.5318559556787,4,86.4873675592639,0.788225434737063,12.7423822714681,16.8895398251061,0
+263,0.0459307419112998,0.384210526315789,38.4210526315789,3,91.8602365509771,0.787125068023944,21.5789473684211,40.845733606652,0
+264,0.0129512856692902,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,47.1375436782837,10.3911504745483
+265,0.0129397571444595,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483
+266,0.0152171167889752,0,0,0,NA,NA,0,NA,NA
+267,0.0309512640005395,0.176315789473684,17.6315789473684,2,87.3786796800462,0.885857841129407,11.3157894736842,16.6719932840831,0
+268,0.00909012643125526,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,27.5129818916321,23.2353191375732
+269,0.0326408841696386,0.218836565096953,21.8836565096953,3,89.6629238028319,0.88112968591692,19.6675900277008,21.5444493776635,0
+270,0.0278881085225566,0.135734072022161,13.5734072022161,3,84.5013776898956,0.8622557997558,11.3573407202216,31.5177870186008,10.3911504745483
+271,0.022469920901456,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,39.1679834638323,36.369026184082
+272,0.0440380798971701,0.357340720221607,35.7340720221607,3,90.3794973503623,0.768250183418929,19.6675900277008,27.3966336915659,0
+273,0.0540485049090134,0.426592797783933,42.6592797783933,3,92.3293080749104,0.771990918557211,29.6398891966759,13.6191826176334,0
+274,0.0317631017172759,0.188365650969529,18.8365650969529,5,83.4266604268221,0.782573780365388,14.6814404432133,14.2494231462479,0
+275,0.0465617237397007,0.355263157894737,35.5263157894737,4,93.5975521881749,0.867595818815331,33.4210526315789,20.9043709719623,0
+276,0.0193669556810053,0.146814404432133,14.6814404432133,2,89.9580234556675,0.832560296846011,14.404432132964,81.5675489317696,58.0882949829102
+277,0.0279510210177824,0.193905817174515,19.3905817174515,3,90.6181176650461,0.858799206548767,18.5595567867036,87.0013495309012,62.3469009399414
+278,0.0240197578781907,0.163434903047091,16.3434903047091,6,78.0250166031768,0.707018569017011,10.5263157894737,78.3901590250306,44.0859146118164
+279,0.0366746819867809,0.323684210526316,32.3684210526316,2,93.381513510008,0.761302367782799,25,45.5827664243496,10.3911504745483
+280,0.0292148409770514,0.227146814404432,22.7146814404432,4,87.0915878446392,0.794759609442591,17.1745152354571,36.0088525748834,5.19557523727417
+281,0.0319303592294197,0.102493074792244,10.2493074792244,6,67.7614813480912,0.634689334142886,3.04709141274238,3.60183696489076,0
+282,0.0317483981639963,0.182825484764543,18.2825484764543,5,78.4089139977309,0.648843036109064,6.09418282548476,4.70639171022357,0
+283,0.0319491767602525,0.181578947368421,18.1578947368421,1,92.7177340931195,0.919215540378943,18.1578947368421,3.28506911319235,0
+284,0.110066503918423,0.914127423822715,91.4127423822715,2,99.4923032550517,0.81307927302853,91.1357340720222,0.993407792756052,0
+285,0.0389569802964338,0.346260387811634,34.6260387811634,6,87.1542558463364,0.683286044948854,18.005540166205,6.20372824859619,0
+286,0.0101102184498083,0.038781163434903,3.8781163434903,3,67.3117947810322,0.687896253602305,3.32409972299169,8.49341079166957,0
+287,0.0117618047261682,0.0605263157894737,6.05263157894737,3,73.3346031843701,0.674758792405851,4.47368421052632,23.7290229797363,10.3911504745483
+288,0.012318850274889,0.0443213296398892,4.43213296398892,4,62.7116198662941,0.651207729468599,3.32409972299169,38.7377865314484,16.4298515319824
+289,0.00506931644443705,0.0470914127423823,4.70914127423823,3,64.9260211104871,0.664186046511628,2.49307479224377,7.6996852089377,0
+290,0.0300480730833356,0.229916897506925,22.9916897506925,3,89.2645627268057,0.867493760093966,19.9445983379501,5.22886639905263,0
+291,0.032425080235905,0.178947368421053,17.8947368421053,5,80.9950420311549,0.682719241542771,7.63157894736842,5.69234826985527,0
+292,0.0263782398517397,0.14404432132964,14.404432132964,4,79.5716470247215,0.763717682993346,8.58725761772853,16.1057269481512,0
+293,0.0329245243041658,0.229916897506925,22.9916897506925,4,88.2615258483173,0.770322517496207,18.2825484764543,4.91139090779316,0
+294,0.0258029963705443,0.185595567867036,18.5595567867036,5,77.3728983087036,0.695650909936624,5.26315789473684,24.6929597712275,0
+295,0.0155446898557305,0.131578947368421,13.1578947368421,5,76.3814976096633,0.620677361853832,6.05263157894737,24.0673218536377,0
+296,0.0484311252078535,0.448753462603878,44.8753462603878,2,95.4695335352202,0.817375467943746,39.612188365651,19.7567960009163,0
+297,0.0420645741554448,0.42382271468144,42.382271468144,1,97.0218946746475,0.765295647413085,42.382271468144,12.3905600722319,0
+298,0.0268820590893299,0.296398891966759,29.6398891966759,2,93.0392857357765,0.874811309208111,26.5927977839335,46.2303906289217,14.6953058242798
+299,0.0164657279833735,0.115789473684211,11.5789473684211,6,73.2053086669977,0.694337194337194,6.57894736842105,20.6718352924694,0
+300,0.0607715506348594,0.505847953216374,50.5847953216374,2,94.9815843576902,0.835061490233904,38.0116959064327,13.3831348694818,0
+301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+306,-0.0082631393982554,0.0855263157894737,8.55263157894737,1,78.6438486329537,0.939248601119105,8.55263157894737,2.32938704123864,0
+307,0.0023097855143364,0.0581717451523546,5.81717451523546,3,73.0229005567848,0.834099264705882,4.98614958448754,2.32915499096825,0
+308,0.0110765124632695,0,0,0,NA,NA,0,NA,NA
+309,0.0128992744999309,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,123.268074035645,115.008964538574
+310,0.0064184707933327,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,14.0237555503845,11.6176595687866
+311,-0.000611309252620979,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,59.6055641174316,53.4917221069336
+312,0.0160385095456714,0.141274238227147,14.1274238227147,3,82.1447414308835,0.825991842788283,9.97229916897507,2.72154180676329,0
+313,0.025178743450073,0.224376731301939,22.4376731301939,5,85.9693561231598,0.758258928571429,17.1745152354571,0.256571616655515,0
+314,0.0468899587855527,0.410526315789474,41.0526315789474,3,93.2624063297978,0.668989547038328,29.7368421052632,0,0
+315,0.0205426932488864,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,3.46371682484945,0
+316,0.0147861072954561,0.074792243767313,7.4792243767313,3,74.3475734659516,0.748642250382955,4.98614958448753,2.74069300404301,0
+317,0.0481429247259275,0.493074792243767,49.3074792243767,3,93.4666307967227,0.826116564519076,32.6869806094183,0.63213379463453,0
+318,0.0262398441932467,0.236842105263158,23.6842105263158,1,94.2963765153462,0.943028485757122,23.6842105263158,0,0
+319,0.0318234287839821,0.210526315789474,21.0526315789474,3,85.9244896431983,0.706965174129353,11.3573407202216,0,0
+320,0.0255714480214952,0.157894736842105,15.7894736842105,4,83.9292911286834,0.794005102040817,12.7423822714681,0,0
+321,0.0764300795585605,0.709141274238227,70.9141274238227,1,98.9583333333333,0.928373015873016,70.9141274238227,0,0
+322,0.0406527808178094,0.321052631578947,32.1052631578947,2,95.1593494020271,0.966677189659406,31.8421052631579,0,0
+323,0.0847356206088226,0.581717451523546,58.1717451523546,2,97.6037665180732,0.969428024593079,57.617728531856,0,0
+324,0.000642105483294721,0.171745152354571,17.1745152354571,2,90.0322194015748,0.877028366158801,16.3434903047091,3.65430774227265,0
+325,-0.0187685649274136,0.0775623268698061,7.75623268698061,3,76.5895944769416,0.807273940607274,5.81717451523546,21.4773400681359,7.34765291213989
+326,-0.0392747086290336,0,0,0,NA,NA,0,NA,NA
+327,-0.0449376780337556,0,0,0,NA,NA,0,NA,NA
+328,-0.0525546235432981,0,0,0,NA,NA,0,NA,NA
+329,-0.0177810963686979,0.146814404432133,14.6814404432133,1,91.0563849165273,1,14.6814404432133,7.61112423662869,0
+330,0.00476231387009121,0.263157894736842,26.3157894736842,2,94.1290777182916,0.803968253968254,25.7894736842105,0.103911504745483,0
+331,-0.00572949092108963,0.0581717451523546,5.81717451523546,2,73.2316744981545,0.800919117647059,3.601108033241,0.247408344632103,0
+332,-0.0366103548061237,0,0,0,NA,NA,0,NA,NA
+333,-0.0457810008268795,0,0,0,NA,NA,0,NA,NA
+334,-0.0362567056716408,0.115789473684211,11.5789473684211,1,89.5165340769437,0.938867438867439,11.5789473684211,20.7914743423462,15.5867252349854
+335,-0.019426471313334,0.135734072022161,13.5734072022161,1,90.4761904761905,0.88980463980464,13.5734072022161,17.0061835074911,5.19557523727417
+336,-0.0280310954161164,0,0,0,NA,NA,0,NA,NA
+337,8.11138188031404e-05,0.102493074792244,10.2493074792244,1,88.2023291177678,1,10.2493074792244,25.1943521241884,15.5867252349854
+338,-0.0297203484625482,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+339,0.0146639235132281,0.0166204986149584,1.66204986149584,2,45.2018371240175,0.709456740442656,1.10803324099723,8.91955844561259,5.19557523727417
+340,0.0203449220085063,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,18.9699705441793,0
+341,0.0258064019364007,0.119113573407202,11.9113573407202,6,73.2486342562793,0.653127183787561,6.92520775623269,43.2653090233027,14.6953058242798
+342,0.0120001288828777,0.105263157894737,10.5263157894737,2,85.0983132852866,0.698412698412698,9.14127423822715,16.3386497748526,5.19557523727417
+343,0.0180202254423038,0.176315789473684,17.6315789473684,4,79.7409138760145,0.730209442669507,6.57894736842105,4.60732857860736,0
+344,0.0128623813418062,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,18.184513092041,0
+345,0.0219647861441366,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,23.5819484710693,20.7823009490967
+346,0.0172830737921731,0.21606648199446,21.606648199446,2,92.5650864410763,0.824371383212987,21.0526315789474,3.46517641116411,0
+347,0.000449208620890012,0.0184210526315789,1.84210526315789,2,53.6189928746137,0.872654155495979,1.57894736842105,7.3427745274135,0
+348,0.0123073568203251,0,0,0,NA,NA,0,NA,NA
+349,0.0155541987176578,0.038781163434903,3.8781163434903,4,61.38958682741,0.635878962536023,3.04709141274238,14.8483097553253,0
+350,0.0256290221562234,0.135734072022161,13.5734072022161,2,88.3806045897272,0.87603021978022,13.0193905817175,46.1704321686102,11.6176595687866
+351,0.0198522732405476,0.163157894736842,16.3157894736842,4,84.9654065585335,0.8340321453529,12.8947368421053,34.2753163460762,5.19557523727417
+352,0.00626952649988079,0.146814404432133,14.6814404432133,1,91.0563849165273,0.896960182674468,14.6814404432133,38.0899475025681,25.977876663208
+353,-0.0465369764624131,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,35.1400736172994,22.0429573059082
+354,-0.0682290896697233,0,0,0,NA,NA,0,NA,NA
+355,-0.0429143709980915,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.862691960252936,2.89473684210526,49.0847150629217,41.8880653381348
+356,-0.0784241405581622,0,0,0,NA,NA,0,NA,NA
+357,-0.068276003287951,0,0,0,NA,NA,0,NA,NA
+358,-0.0206029635685852,0.0554016620498615,5.54016620498615,2,78.056958509412,0.590199602686595,4.98614958448753,9.79266858100891,5.19557523727417
+359,-0.0199820990648804,0.0236842105263158,2.36842105263158,3,44.5503582375033,0.40251572327044,0.789473684210526,8.25551684697469,5.19557523727417
+360,-0.0109782093614712,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,27.9790287017822,27.9790287017822
+361,0.0258273148958369,0.210526315789474,21.0526315789474,2,88.5615671539578,0.867661691542289,12.7423822714681,12.4088748756208,0
+362,0.0357143601707263,0.254847645429363,25.4847645429363,3,89.1498457742944,0.869072445371294,13.2963988919668,22.5327030420303,0
+363,0.0320718204130811,0.25,25,3,89.3678081724326,0.874509803921569,14.4736842105263,32.8862580951891,0
+364,0.0183308128197145,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,42.8190046946208,15.5867252349854
+365,0.0183898811858417,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,8.02952536669645,5.19557523727417
+366,0.0106854908856871,0.0304709141274238,3.04709141274238,4,47.804250529389,0.449904761904762,1.38504155124654,9.45374579863115,5.19557523727417
+367,0.0179444968981299,0.0526315789473684,5.26315789473684,5,59.4040618076065,0.557347670250896,2.36842105263158,28.9308326721191,5.19557523727417
+368,0.0607940650014903,0.332409972299169,33.2409972299169,4,93.6781572803956,0.8694468765465,31.8559556786704,1.67106999953588,0
+369,0.0351981012627271,0.163434903047091,16.3434903047091,2,86.4887768209731,0.824211141410206,9.41828254847645,5.05213357634464,0
+370,0.0216664584931451,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,11.3195694684982,7.34765291213989
+371,0.0208757971877946,0.0526315789473684,5.26315789473684,4,58.8058225499651,0.591397849462366,1.84210526315789,4.78362159729004,0
+372,0.0182514849822379,0.0498614958448753,4.98614958448753,3,64.8592548457668,0.649173955296404,2.77008310249307,12.5895080831316,5.19557523727417
+373,0.00945638615229758,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,30.957852045695,26.4923400878906
+374,0.0114624731572715,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,9.42680803934733,5.19557523727417
+375,0.0154862106537196,0.0763157894736842,7.63157894736842,2,77.8610107442377,0.792689579923622,4.47368421052632,13.6875737946609,0
+376,0.00681130323820497,0,0,0,NA,NA,0,NA,NA
+377,0.00475273108193233,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,3.03075222174327,0
+378,0.0105628892937366,0.07202216066482,7.20221606648199,5,65.9165872886942,0.658318165271205,4.15512465373961,37.9634787852948,0
+379,0.0118839196199827,0.0894736842105263,8.94736842105263,3,75.5855429263361,0.666597853014038,4.47368421052632,13.8162898175857,0
+380,0.0151975851662922,0.10803324099723,10.803324099723,5,69.9661241648727,0.499808886765409,3.8781163434903,10.652754404606,0
+381,0.0209748400850905,0.213296398891967,21.3296398891967,3,87.8932728920179,0.728950911350456,14.404432132964,7.6120815029392,0
+382,0.036735447338741,0.229916897506925,22.9916897506925,2,93.1288938114304,0.770322517496207,22.4376731301939,9.24494550888797,0
+383,0.0219520091981011,0.121052631578947,12.1052631578947,3,79.0223652302339,0.781206817134961,6.57894736842105,18.2043607545936,0
+384,0.0621368909908337,0.703601108033241,70.3601108033241,1,98.9324109457639,0.709396842849289,70.3601108033241,3.49551107939773,0
+385,0.0516027618980634,0.554016620498615,55.4016620498615,5,96.1002558867121,0.782424536672749,52.0775623268698,3.88703421592712,0
+386,0.035014072022355,0.357340720221607,35.7340720221607,2,95.1526109412079,0.79473587674248,34.3490304709141,8.44537855118744,0
+387,0.0327846755175606,0.407894736842105,40.7894736842105,2,94.787874444019,0.691851851851852,31.8421052631579,5.32456596743676,0
+388,0.0320169418116879,0.343490304709141,34.3490304709141,2,94.5369744857114,0.76305672761369,30.7479224376731,6.78601047685069,0
+389,0.0335227091234936,0.310249307479224,31.0249307479224,5,89.4759030268612,0.770328840112927,22.9916897506925,13.3640148809978,0
+390,0.0410833229583145,0.357340720221607,35.7340720221607,6,88.1909144946126,0.741764490095378,20.4986149584488,11.7732524760934,0
+391,0.0298860359589238,0.165789473684211,16.5789473684211,5,82.1883377897038,0.705764267278463,8.42105263157895,13.7267248744056,0
+392,0.0333012341350726,0.210526315789474,21.0526315789474,6,80.7915078497373,0.669154228855721,9.69529085872576,7.92453272091715,0
+393,0.031679039730573,0.213296398891967,21.3296398891967,4,83.8248329690714,0.747643951946976,8.58725761772853,8.68543775360306,0
+394,0.0314530949322752,0.240997229916898,24.0997229916898,2,92.9316681357232,0.846997880857076,23.2686980609418,7.15606438428506,0
+395,0.0376923889601082,0.344736842105263,34.4736842105263,3,94.394168521745,0.853136394952194,32.8947368421053,8.3972556245236,0
+396,0.0407854515234901,0.3601108033241,36.01108033241,6,89.8515293373807,0.749429192467167,25.7617728531856,13.3160563505613,0
+397,0.0398790194266744,0.462603878116344,46.2603878116344,1,97.3874214343619,0.915417057169635,46.2603878116344,6.89680572898088,0
+398,0.0354420438498662,0.412742382271468,41.2742382271468,1,96.9081075056324,0.912675374939526,41.2742382271468,12.4102812645419,0
+399,0.027083106567906,0.239473684210526,23.9473684210526,2,93.0686904994706,0.94318424537571,23.4210526315789,10.7950714499086,0
+400,0.0585885443485564,0.552631578947368,55.2631578947368,1,98.0267498837932,0.955294117647059,55.2631578947368,12.1161126535406,0
+401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+406,-0.00120163980203583,0.0328947368421053,3.28947368421053,1,60.1581072775551,1,3.28947368421053,10.8885838508606,7.34765291213989
+407,-0.00620125342318242,0,0,0,NA,NA,0,NA,NA
+408,-0.0028350742310808,0,0,0,NA,NA,0,NA,NA
+409,-0.00400594078136819,0,0,0,NA,NA,0,NA,NA
+410,-0.00354544586072351,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,3.1173451423645,0
+411,0.00145763277419505,0,0,0,NA,NA,0,NA,NA
+412,0.0436728259115132,0.310249307479224,31.0249307479224,5,87.879453793639,0.777506063859398,19.9445983379501,0,0
+413,0.0323096820462232,0.188365650969529,18.8365650969529,6,77.4791800306838,0.741159262339748,8.58725761772853,0,0
+414,0.0257997685041214,0.0289473684210526,2.89473684210526,4,48.5890104469681,0.588075880758808,1.84210526315789,5.06085712259466,0
+415,0.0313713775087958,0.152354570637119,15.2354570637119,4,81.4671720791714,0.813725490196078,11.3573407202216,5.06405148072676,0
+416,0.0132360559244695,0.074792243767313,7.4792243767313,5,63.0466006144717,0.597827600612728,3.32409972299169,8.48053875675908,0
+417,0.0621194976001109,0.562326869806094,56.2326869806094,2,97.7767720257621,0.793942853305577,55.6786703601108,1.44442432854563,0
+418,0.0362827200315415,0.210526315789474,21.0526315789474,4,88.2475652152456,0.750234741784038,16.3157894736842,0.351624423265457,0
+419,0.020489326327479,0.0609418282548476,6.09418282548476,3,68.8643028906557,0.749436057608884,3.8781163434903,0,0
+420,0.0145884752882039,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+421,0.073799252295944,0.595567867036011,59.5567867036011,1,98.3567264167006,0.913458904109589,59.5567867036011,0,0
+422,0.0203382228763076,0.0947368421052632,9.47368421052632,4,72.8847431885324,0.742248062015504,4.21052631578947,0,0
+423,0.0185936243825404,0.0581717451523546,5.81717451523546,2,73.1227084751741,0.734558823529412,3.8781163434903,6.68002528236026,0
+424,0.0820722513292965,0.806094182825485,80.6094182825485,1,99.3677793036386,0.811439018020371,80.6094182825485,23.2123576308444,0
+425,0.004282478505692,0.204986149584488,20.4986149584488,2,88.240212478429,0.854864647547574,15.7894736842105,49.1578339434959,0
+426,-0.0810664859836259,0,0,0,NA,NA,0,NA,NA
+427,-0.0109689675383477,0,0,0,NA,NA,0,NA,NA
+428,-0.0414352991777924,0,0,0,NA,NA,0,NA,NA
+429,-0.0485353988865918,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,0,0
+430,-0.0573047348739285,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.745308310991957,1.84210526315789,0,0
+431,-0.0530874830978948,0,0,0,NA,NA,0,NA,NA
+432,-0.117984696741186,0,0,0,NA,NA,0,NA,NA
+433,-0.00838289846752783,0,0,0,NA,NA,0,NA,NA
+434,-0.00216141228447668,0.394736842105263,39.4736842105263,1,96.8008110192232,0.99399209486166,39.4736842105263,54.4878864542643,27.9790287017822
+435,-0.000793217647125122,0.445983379501385,44.5983379501385,1,97.2366123785873,0.993902027027027,44.5983379501385,48.8954653888015,20.7823009490967
+436,-0.039835325962153,0,0,0,NA,NA,0,NA,NA
+437,0.00622866113287709,0.0304709141274238,3.04709141274238,3,55.716992547311,0.518666666666667,1.93905817174515,0,0
+438,0.0101754544329986,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,10.3911504745483,10.3911504745483
+439,0.00459943482456158,0,0,0,NA,NA,0,NA,NA
+440,0.00834923326764211,0,0,0,NA,NA,0,NA,NA
+441,0.0076674003051007,0,0,0,NA,NA,0,NA,NA
+442,0.022189045996814,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,39.5683212280273,39.5683212280273
+443,0.0278144584714411,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,26.4781646728516,25.977876663208
+444,0.0175244499336047,0.0304709141274238,3.04709141274238,3,54.1555710798866,0.587428571428571,1.66204986149584,32.7215733094649,10.3911504745483
+445,0.0266089195047294,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,35.1327386856079,10.3911504745483
+446,0.0195497870279779,0.119113573407202,11.9113573407202,5,82.7636060507854,0.700428022361985,10.2493074792244,12.8577452371287,5.19557523727417
+447,0.0176984402257762,0.0315789473684211,3.15789473684211,4,47.1072025586818,0.453324808184143,1.05263157894737,7.03248846530914,5.19557523727417
+448,0.0170998407291164,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,15.5867254734039,10.3911504745483
+449,0.00149926397361898,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,9.81386433707343,5.19557523727417
+450,0.0116173739076161,0.0304709141274238,3.04709141274238,3,54.8537073680638,0.518666666666667,1.66204986149584,10.3911504745483,10.3911504745483
+451,0.00914693848771525,0.0289473684210526,2.89473684210526,2,60.5719561857418,0.588075880758808,1.57894736842105,11.3662631294944,10.3911504745483
+452,-0.0783718269628286,0,0,0,NA,NA,0,NA,NA
+453,-0.116787961239225,0,0,0,NA,NA,0,NA,NA
+454,-0.0483262093846236,0,0,0,NA,NA,0,NA,NA
+455,-0.0415472351940192,0.0368421052631579,3.68421052631579,3,58.2564699840793,0.688524590163934,1.84210526315789,19.0452682631356,10.3911504745483
+456,-0.0740648053717962,0.0470914127423823,4.70914127423823,3,64.8357914677872,0.748139534883721,3.32409972299169,10.527755204369,5.19557523727417
+457,-0.018795476099631,0.0554016620498615,5.54016620498615,4,58.7065959810488,0.590199602686595,2.21606648199446,28.364791059494,0
+458,0.00327014929355848,0.0581717451523546,5.81717451523546,3,68.2126568030286,0.800919117647059,4.15512465373961,25.4990159897577,10.3911504745483
+459,0.0170787052050735,0.0236842105263158,2.36842105263158,3,47.4332757019335,0.573225516621743,1.05263157894737,7.30283212661743,0
+460,-0.0240839400383195,0,0,0,NA,NA,0,NA,NA
+461,-0.0479669370577242,0,0,0,NA,NA,0,NA,NA
+462,-0.0420080720610471,0,0,0,NA,NA,0,NA,NA
+463,0.0159942213307276,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,70.8902206420898,67.54248046875
+464,0.0166606646706394,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,27.8176393508911,20.7823009490967
+465,0.0130242916139119,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,15.7443613211314,7.34765291213989
+466,0.0154789339497904,0.0332409972299169,3.32409972299169,2,63.7874511601681,0.756615540198888,2.21606648199446,24.9671456019084,18.7329120635986
+467,0.0219113551346182,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,11.4302654266357,10.3911504745483
+468,0.0237881285540722,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,17.388525554112,11.6176595687866
+469,0.0338440438273535,0.168975069252078,16.8975069252078,2,90.7567276146515,0.93188679245283,16.6204986149584,12.0124835889848,0
+470,0.0169035429882262,0.0498614958448753,4.98614958448753,2,70.6058026354122,0.72713529856387,3.32409972299169,15.1235378053453,10.3911504745483
+471,0.0137802383948981,0.0236842105263158,2.36842105263158,2,59.10066639958,0.658580413297394,1.84210526315789,6.82838699552748,5.19557523727417
+472,0.0116408410120935,0.0692520775623269,6.92520775623269,2,78.4475512410027,0.865699404761905,5.81717451523546,13.8166150093079,7.34765291213989
+473,0.0047314621845738,0.0609418282548476,6.09418282548476,3,69.4587181507612,0.655474579212216,3.04709141274238,12.0494628602808,5.19557523727417
+474,0.057952657429188,0.357340720221607,35.7340720221607,4,93.9248072417829,0.867571533382245,34.0720221606648,4.69677081218986,0
+475,0.0216289931972585,0.0631578947368421,6.31578947368421,5,61.2333683854934,0.550561797752809,2.36842105263158,8.24028939008713,0
+476,0.0152163777688316,0.10803324099723,10.803324099723,2,82.1686128360378,0.689536550406116,6.37119113573407,11.1149940246191,0
+477,0.0235663807146205,0.0831024930747922,8.31024930747922,6,64.6125789728397,0.554843085270362,3.04709141274238,11.8158536752065,0
+478,0.0165328451563618,0.0470914127423823,4.70914127423823,5,55.6457885916418,0.496279069767442,2.49307479224377,22.051157839158,5.19557523727417
+479,0.0158850582591472,0.0842105263157895,8.42105263157895,1,86.7737288361143,0.853006189213086,8.42105263157895,9.12260408699512,5.19557523727417
+480,0.0214408707975268,0.116343490304709,11.6343490304709,2,85.3470604404428,0.697161022561703,9.97229916897507,18.3225580737704,5.19557523727417
+481,0.0277553373453378,0.146814404432133,14.6814404432133,7,79.6366557172805,0.574960753532182,9.97229916897507,25.1585879055959,0
+482,0.0371163721122022,0.246537396121884,24.6537396121884,8,79.5449640792638,0.641070107288198,9.14127423822715,13.4515437276176,0
+483,0.0166956783548238,0.0763157894736842,7.63157894736842,4,68.925624786854,0.677517124325635,3.15789473684211,42.2262014849433,5.19557523727417
+484,0.0226152608763824,0.127423822714681,12.7423822714681,7,70.5330514630153,0.52983312983313,4.43213296398892,28.1919441637786,10.3911504745483
+485,0.0435835575117582,0.321329639889197,32.1329639889197,7,86.5314837537104,0.684256559766764,15.5124653739612,6.41030893654659,0
+486,0.0292123590463884,0.130193905817175,13.0193905817174,6,72.4727393174753,0.698208598726115,6.64819944598338,8.31495735493112,0
+487,0.0356973945999543,0.344736842105263,34.4736842105263,5,88.7226301141848,0.712658164036901,20.2631578947368,5.63690390113656,0
+488,0.028188608090975,0.213296398891967,21.3296398891967,1,93.5263835959271,0.775683512841756,21.3296398891967,4.93541388697438,0
+489,0.0257768054068801,0.168975069252078,16.8975069252078,3,86.752672324023,0.784308176100629,14.404432132964,37.6391073445805,0
+490,0.0231700440781827,0.130193905817175,13.0193905817174,4,79.3648190881829,0.583240445859873,7.75623268698061,35.953617177111,5.19557523727417
+491,0.0436454110168125,0.352631578947368,35.2631578947368,3,95.0752452327159,0.892376382780221,34.4736842105263,26.4349900288368,0
+492,0.0254779616577184,0.132963988919668,13.2963988919668,3,85.8616569715617,0.789020494038806,11.9113573407202,11.8914512693882,0
+493,0.0254676277207313,0.0997229916897507,9.97229916897507,5,72.5180028101834,0.611230769230769,5.81717451523546,47.8102485868666,20.7823009490967
+494,0.0236058919129031,0.0886426592797784,8.86426592797784,6,64.3205848874716,0.556873977086743,3.04709141274238,62.2639714479446,39.5683212280273
+495,0.0147169761768677,0.0552631578947368,5.52631578947368,2,72.794153612383,0.735376044568245,3.15789473684211,58.9470768883115,41.5646018981934
+496,0.0246630676127782,0.116343490304709,11.6343490304709,2,86.2235234801228,0.840611064506159,10.803324099723,51.6406704130627,31.1734504699707
+497,0.0216505675494959,0.124653739612188,12.4653739612188,5,74.5584325462912,0.639240506329114,6.64819944598338,8.03250711229112,0
+498,0.0330187012044806,0.313019390581717,31.3019390581717,1,95.625724167062,0.864425205566097,31.3019390581717,8.25789265928015,0
+499,0.0145039876698799,0.0710526315789474,7.10526315789474,4,69.1696082596491,0.699584952895448,3.68421052631579,53.0108381024113,0
+500,0.0367695527194925,0.248538011695906,24.8538011695906,3,88.2102268375407,0.841368825211946,14.6198830409357,63.2823277136859,7.34765291213989
+501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+506,0.0103891671920792,0.06875,6.875,2,66.2926986359053,0.713646532438479,5.625,4.25092519413341,0
+507,-0.00605467109390271,0,0,0,NA,NA,0,NA,NA
+508,-0.00481578634217409,0,0,0,NA,NA,0,NA,NA
+509,-0.00130866415034497,0.0210526315789474,2.10526315789474,3,44.1505367610631,0.489247311827957,1.05263157894737,7.14391589164734,0
+510,0.0146134702639779,0.14,14,4,80.1080895492342,0.796211939582834,7.5,11.442147229399,0
+511,0.0112146959860375,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,5.19557523727417,0
+512,0.0247315114544778,0.121052631578947,12.1052631578947,1,89.8658238791242,0.868724090280976,12.1052631578947,0,0
+513,0.0391306247000868,0.35,35,2,93.6561432649513,0.796567069294342,29.2105263157895,0,0
+514,0.0184710136627473,0.065,6.5,1,84.6193541959806,0.843485065866701,6.5,0,0
+515,0.0371836505934449,0.236842105263158,23.6842105263158,5,87.8636612730447,0.829085457271364,17.8947368421053,0,0
+516,0.000435696283602738,0,0,0,NA,NA,0,NA,NA
+517,0.0595003458415847,0.534210526315789,53.4210526315789,2,97.3308848743549,0.971526622607862,52.8947368421053,5.86781220600523,0
+518,0.0543759128917009,0.485,48.5,3,94.4128327319474,0.795037756202805,40.75,0,0
+519,0.0324840817008455,0.165789473684211,16.5789473684211,2,88.4792134230696,0.8801261829653,14.4736842105263,0,0
+520,0.0639533175471067,0.413157894736842,41.3157894736842,3,94.3288560742077,0.840246636771301,37.1052631578947,0,0
+521,0.0956969997065914,0.755263157894737,75.5263157894737,1,99.1852843694118,0.984866587017125,75.5263157894737,0,0
+522,-0.0123423895572978,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0
+523,0.0344959578760226,0.155263157894737,15.5263157894737,5,81.4000909987912,0.698246900006108,9.47368421052632,3.17018146029973,0
+524,0.0556410026488409,0.5,50,4,94.0162107106892,0.75,33.9473684210526,5.82732300256428,0
+525,0.0103773629434918,0.221052631578947,22.1052631578947,2,90.4893994079256,0.887992018864502,18.4210526315789,36.7889071873256,0
+526,-0.098064913735434,0,0,0,NA,NA,0,NA,NA
+527,-0.0521219211592229,0.0473684210526316,4.73684210526316,1,80.5625453356091,1,4.73684210526316,0,0
+528,-0.000289782441579614,0.134210526315789,13.4210526315789,2,87.9111907077571,0.800859448695105,12.1052631578947,0,0
+529,0.00651982905775711,0.0815789473684211,8.15789473684211,2,84.4494870925724,0.825787965616046,7.89473684210526,0,0
+530,-0.0171263069048291,0,0,0,NA,NA,0,NA,NA
+531,0.00579505539484863,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,7.79336285591125,5.19557523727417
+532,-0.000482685204202713,0,0,0,NA,NA,0,NA,NA
+533,-0.123196554173123,0,0,0,NA,NA,0,NA,NA
+534,-0.182470144107938,0,0,0,NA,NA,0,NA,NA
+535,-0.147683900996651,0,0,0,NA,NA,0,NA,NA
+536,0.0513908636655144,0.526315789473684,52.6315789473684,1,97.9538591370238,0.98292902066487,52.6315789473684,0,0
+537,0.062399397201941,0.513157894736842,51.3157894736842,1,97.8589072810594,0.943258175302374,51.3157894736842,0.133219877878825,0
+538,0.0189249011197171,0.02,2,1,68.0470115164975,0.897959183673469,2,38.3870575428009,30.2951488494873
+539,0.0200418866280846,0.0842105263157895,8.42105263157895,6,62.5314871311594,0.517020335985853,2.36842105263158,33.5574602484703,14.6953058242798
+540,0.0150522598248484,0.0421052631578947,4.21052631578947,3,63.9844172174811,0.652014652014652,2.63157894736842,20.2849240005016,0
+541,0.0132856304756148,0.0210526315789474,2.10526315789474,3,41.3442342914615,0.489247311827957,0.789473684210526,64.7259240150452,31.6034507751465
+542,0.0209629249896879,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,120.636973063151,110.092269897461
+543,0.0225328138921032,0,0,0,NA,NA,0,NA,NA
+544,0.014315969193175,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,104.429763793945,104.429763793945
+545,0.0256279356114311,0.0342105263157895,3.42105263157895,4,50.1284378525324,0.597335755373903,1.84210526315789,132.893596355732,93.5203552246094
+546,0.0188058834140783,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,59.2841510772705,47.9008369445801
+547,0.0131019821285372,0.0025,0.25,1,0,NA,0.25,14.6953058242798,14.6953058242798
+548,0.0194095745865549,0.0210526315789474,2.10526315789474,3,42.6827771112369,0.489247311827957,1.05263157894737,19.2507899999619,0
+549,-0.00859780774872457,0,0,0,NA,NA,0,NA,NA
+550,-0.00558998521664762,0,0,0,NA,NA,0,NA,NA
+551,-0.00972144881994609,0,0,0,NA,NA,0,NA,NA
+552,-0.0694802080284142,0,0,0,NA,NA,0,NA,NA
+553,-0.0252498463465216,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.709702062643239,1.57894736842105,14.7207961082458,10.3911504745483
+554,-0.0215428274493063,0.0289473684210526,2.89473684210526,2,67.3422405823507,0.725383920505872,2.63157894736842,8.36713227358731,0
+555,-0.0224377676751465,0.1225,12.25,3,83.163166353191,0.837199837199837,10.25,22.8620146829255,5.19557523727417
+556,-0.0401778136507155,0.0763157894736842,7.63157894736842,2,81.5760683569485,0.654482633206037,6.57894736842105,14.5401234462343,10.3911504745483
+557,0.0134776046655852,0.0894736842105263,8.94736842105263,4,74.9785050025887,0.784269199009083,6.84210526315789,23.6235826155719,10.3911504745483
+558,-0.0126762449986257,0.0157894736842105,1.57894736842105,1,62.3749377455957,1,1.57894736842105,23.5724334716797,20.7823009490967
+559,0.0268483534715779,0.0175,1.75,4,28.9394712793554,0.363867684478371,0.75,36.9640456608364,10.3911504745483
+560,-0.00156801932584561,0,0,0,NA,NA,0,NA,NA
+561,-0.0474433097480199,0,0,0,NA,NA,0,NA,NA
+562,-0.00846884877426323,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,55.6544024149577,49.28955078125
+563,0.0132072393531416,0.025,2.5,1,71.9760246298065,1,2.5,74.9500625610352,67.54248046875
+564,0.0198389245119439,0,0,0,NA,NA,0,NA,NA
+565,0.0170277572821712,0.0210526315789474,2.10526315789474,3,44.9082855597301,0.591397849462366,1.31578947368421,38.1570078134537,11.6176595687866
+566,0.0105712215133807,0.0526315789473684,5.26315789473684,2,73.0449150643781,0.761648745519713,3.68421052631579,11.3434009790421,5.19557523727417
+567,0.00703831410859948,0,0,0,NA,NA,0,NA,NA
+568,0.0199594496724833,0,0,0,NA,NA,0,NA,NA
+569,0.0174095890995599,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,24.7932946681976,5.19557523727417
+570,0.0185385730911788,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,31.3030161857605,10.3911504745483
+571,0.0171157635398959,0.02,2,1,68.0470115164975,0.897959183673469,2,10.5444639921188,5.19557523727417
+572,0.00491043177159889,0,0,0,NA,NA,0,NA,NA
+573,0.0170773580306942,0,0,0,NA,NA,0,NA,NA
+574,0.0329900566488504,0.221052631578947,22.1052631578947,1,93.9064022813433,0.853528024668964,22.1052631578947,11.9564303159714,0
+575,0.0176930471967171,0.0225,2.25,3,56.0601961229235,0.403239556692242,1.75,10.7013373904758,5.19557523727417
+576,0.001330009603637,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,26.8193632761637,15.5867252349854
+577,0.0155387570214579,0.0157894736842105,1.57894736842105,4,20.982045994374,0.274255156608098,0.526315789473684,8.74503596623739,0
+578,0.00325355310382484,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,13.1072329793658,5.19557523727417
+579,0.015925770594622,0.02,2,4,36.0211048169316,0.387755102040816,1,18.9872738718987,5.19557523727417
+580,0.0269795507093046,0.118421052631579,11.8421052631579,1,89.6940898761467,0.91044776119403,11.8421052631579,46.1868043687609,18.7329120635986
+581,0.0514804478050409,0.368421052631579,36.8421052631579,2,92.9655288364468,0.8515625,26.0526315789474,44.5970224108015,11.6176595687866
+582,0.0328664827635772,0.160526315789474,16.0526315789474,10,64.3983389582102,0.494292304962442,3.42105263157895,7.76418882901551,0
+583,0.0264192590866151,0.1075,10.75,3,86.0320872160946,0.64207905384376,9.75,4.9695061084836,0
+584,0.0200785286984683,0.107894736842105,10.7894736842105,6,80.380321337207,0.707579838399384,9.21052631578947,3.32432487534314,0
+585,0.0131285373869009,0.0447368421052632,4.47368421052632,4,60.2750289650533,0.665013774104683,2.89473684210526,10.6937702964334,0
+586,0.0329506359861912,0.202631578947368,20.2631578947368,6,80.8499574851973,0.612696563774024,9.73684210526316,15.7905947945335,0
+587,0.0504206067806081,0.4775,47.75,6,92.252216292771,0.610737166490958,32.25,6.00231935840627,0
+588,0.0485267190523844,0.478947368421053,47.8947368421053,5,93.1675043344006,0.703863561430327,31.0526315789474,4.71845201083592,0
+589,0.0416703787649328,0.318421052631579,31.8421052631579,7,82.4839231229064,0.71990171990172,9.73684210526316,6.18562184483552,0
+590,0.0283237570520693,0.184210526315789,18.4210526315789,5,78.4092157982617,0.730920535011802,7.89473684210526,17.9969353539603,0
+591,0.0253030783169925,0.0475,4.75,4,63.5726507559145,0.601773916191511,3,25.1600813614695,10.3911504745483
+592,0.0262014490222148,0.0815789473684211,8.1578947368421,5,74.4185385342823,0.804011461318052,6.84210526315789,42.4680464959914,27.9790287017822
+593,0.028975468070329,0.210526315789474,21.0526315789474,5,86.891910079971,0.750234741784038,15.5263157894737,27.9182741880417,0
+594,0.0528152861727377,0.436842105263158,43.6842105263158,3,91.3429194183073,0.785291063465885,17.8947368421053,13.7686833674649,0
+595,0.0454746018373407,0.4475,44.75,2,94.7774110916096,0.835955762737352,33.5,10.0926793034516,0
+596,0.0429130130272824,0.310526315789474,31.0526315789474,3,92.8781051385437,0.823785403438682,28.421052631579,25.752790341943,0
+597,0.0752999971081552,0.786842105263158,78.6842105263158,1,99.3114189797412,0.633357454553429,78.6842105263158,2.43582794578578,0
+598,0.079167044836121,0.844736842105263,84.4736842105263,1,99.5240187137835,0.649270011746937,84.4736842105263,2.96522161299566,0
+599,0.0495116384064386,0.46,46,5,93.4811787832712,0.738562091503268,37.5,10.4391756627871,0
+600,0.058215292253428,0.494444444444444,49.4444444444444,5,90.2035197320769,0.675339857710678,23.0555555555556,23.0770500536715,0
+601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+606,0.012848440007091,0,0,0,NA,NA,0,NA,NA
+607,-0.00176815773244857,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,2.55726853283969,0
+608,0.00303633037308883,0,0,0,NA,NA,0,NA,NA
+609,0.0167691627000226,0.0526315789473684,5.26315789473684,4,66.7209478097032,0.636015325670498,3.8781163434903,24.2417160084373,5.19557523727417
+610,0.0364372157906856,0.302631578947368,30.2631578947368,1,95.5779998570431,0.85522496371553,30.2631578947368,36.7917079635288,7.34765291213989
+611,0.0211164666323641,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,7.37089217792858,0
+612,0.0217597261123205,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+613,0.0180287608459858,0,0,0,NA,NA,0,NA,NA
+614,0.0203098607525661,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,0,0
+615,0.0456640004977543,0.409972299168975,40.9972299168975,1,96.8789423366617,0.893681894565424,40.9972299168975,0,0
+616,-0.0042671141713868,0,0,0,NA,NA,0,NA,NA
+617,0.0879574533154636,0.64819944598338,64.8199445983379,2,98.2724928995634,0.960972269770627,64.5429362880886,11.2360513760493,0
+618,0.0757562910892854,0.794736842105263,79.4736842105263,2,98.9481610258615,0.751701140101843,78.6842105263158,2.7034101991464,0
+619,0.0912964865023533,0.745152354570637,74.5152354570637,3,98.5595054607799,0.875678002582867,73.9612188365651,1.17528816669847,0
+620,0.1223021498533,0.911357340720222,91.1357340720222,1,99.7360893989003,0.74567230273752,91.1357340720222,0.719323071302976,0
+621,0.124390179570071,0.880886426592798,88.0886426592798,1,99.6362939290284,1,88.0886426592798,0,0
+622,-0.0214120337781136,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.952677459526775,3.94736842105263,0,0
+623,0.042369911706653,0.329639889196676,32.9639889196676,5,89.810430891857,0.848063973063973,22.9916897506925,3.01256038361237,0
+624,0.0917937183861332,0.659279778393352,65.9279778393352,2,97.6552827623115,0.934045857312506,64.2659279778393,7.03285615384078,0
+625,0.00340826134321367,0.171745152354571,17.1745152354571,2,86.9611148966139,0.821132168958256,10.2493074792244,6.52637434005737,0
+626,-0.081321643732793,0.147368421052632,14.7368421052632,2,89.2881160867743,0.915362097492682,14.2105263157895,0.671958650861468,0
+627,-0.00490354711191962,0.207756232686981,20.7756232686981,3,86.8955166736791,0.82787666878576,15.7894736842105,0.0692743364969889,0
+628,0.0509195644782541,0.542936288088643,54.2936288088643,3,95.336239959298,0.747552447552447,44.0443213296399,0.106032147699473,0
+629,0.0532037998413231,0.501385041551247,50.1385041551247,2,94.5200738515995,0.862305140961857,33.7950138504155,0.086114506695152,0
+630,-0.0125921250538053,0.281578947368421,28.1578947368421,1,95.2171730229585,0.935090815919831,28.1578947368421,0,0
+631,0.0024255525514337,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.955484308527036,8.31024930747922,1.9470661799113,0
+632,0.0169408689823822,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,1.03911504745483,0
+633,-0.0376845399888298,0,0,0,NA,NA,0,NA,NA
+634,-0.0601356962199421,0,0,0,NA,NA,0,NA,NA
+635,-0.0428415187465326,0,0,0,NA,NA,0,NA,NA
+636,0.0785759619220774,0.720221606648199,72.0221606648199,1,99.0092778966807,0.948624636590969,72.0221606648199,0.424491299115694,0
+637,0.101499228988493,0.590027700831025,59.0027700831025,2,97.6599686740351,0.975361725361725,58.4487534626039,0,0
+638,0.00711279826224965,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,12.1230087280273,10.3911504745483
+639,0.0255712921686994,0.0443213296398892,4.43213296398892,4,57.5219262245891,0.564009661835749,2.21606648199446,15.4662938714027,0
+640,0.0203699806579027,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,28.6421898007393,5.19557523727417
+641,0.017489679442766,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,62.8849563598633,62.5630111694336
+642,0.0190188487689124,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,128.985271453857,126.840156555176
+643,0.0171282908182823,0,0,0,NA,NA,0,NA,NA
+644,0.0200996879873634,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,99.2714471817017,89.6895294189453
+645,0.0208656353259413,0,0,0,NA,NA,0,NA,NA
+646,0.0212699452282055,0.0637119113573407,6.37119113573407,2,78.1486025274243,0.910996055226825,5.81717451523546,114.350031977114,79.307014465332
+647,0.00836288919904052,0,0,0,NA,NA,0,NA,NA
+648,0.00729186471803675,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.805096641831336,4.98614958448753,39.324323548211,25.977876663208
+649,-0.0047756566117266,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,16.4298515319824,16.4298515319824
+650,-0.00260909327899297,0,0,0,NA,NA,0,NA,NA
+651,0.0160290820871428,0.118421052631579,11.8421052631579,2,86.0520161037405,0.865671641791045,10.7894736842105,0.115457227494982,0
+652,0.0117489460386635,0,0,0,NA,NA,0,NA,NA
+653,0.0514783658986328,0.329639889196676,32.9639889196676,1,95.87929364248,0.95856290174472,32.9639889196676,2.35298093026426,0
+654,-0.0101104886093897,0.110803324099723,11.0803324099723,2,87.3811231454204,0.81536244013577,10.803324099723,0.90922566652298,0
+655,0.00962598589831032,0.239473684210526,23.9473684210526,1,94.3575940766551,0.975650390875304,23.9473684210526,16.7184640025045,0
+656,-0.132029335793392,0,0,0,NA,NA,0,NA,NA
+657,-0.0598192144521651,0.0277008310249307,2.77008310249307,3,50.9115480554855,0.60442691211922,1.38504155124654,15.1262991905212,10.3911504745483
+658,-0.0168742019426711,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,23.716521581014,21.4219055175781
+659,0.0247665204181383,0.0289473684210526,2.89473684210526,4,44.2576686027918,0.450767841011743,1.05263157894737,74.003718289462,58.0882949829102
+660,0.0222383780510376,0.074792243767313,7.4792243767313,4,69.4142502182074,0.648099150536137,3.04709141274238,35.9307797749837,18.7329120635986
+661,0.0131163320842955,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,19.4013822873433,14.6953058242798
+662,0.0128197428399602,0.0609418282548476,6.09418282548476,4,63.4940476031559,0.655474579212216,2.49307479224377,21.8159109245647,7.34765291213989
+663,0.00861088951598839,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,108.271740722656,95.8016738891602
+664,0.0156587324263581,0.038781163434903,3.8781163434903,3,60.1852099123432,0.687896253602305,1.93905817174515,23.4318477766854,14.6953058242798
+665,0.0154365675653353,0,0,0,NA,NA,0,NA,NA
+666,0.0114306947457849,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,7.03248846530914,5.19557523727417
+667,0.0125434174678766,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,11.927698802948,7.34765291213989
+668,0.00998501589676576,0,0,0,NA,NA,0,NA,NA
+669,0.0181643713281056,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,23.3800888061523,20.7823009490967
+670,0.0120043059847109,0,0,0,NA,NA,0,NA,NA
+671,0.0114896410856761,0,0,0,NA,NA,0,NA,NA
+672,0.0184638611055783,0.0443213296398892,4.43213296398892,2,68.56432292423,0.738405797101449,3.04709141274238,4.49041458964348,0
+673,0.0185735927008052,0.0415512465373961,4.15512465373961,2,68.9900385068792,0.810299527062533,3.32409972299169,26.060375213623,15.5867252349854
+674,0.042413458464328,0.260387811634349,26.0387811634349,2,92.609254221734,0.879280363830925,23.5457063711911,4.55773255165587,0
+675,0.0434576627858549,0.297368421052632,29.7368421052632,5,89.3833525908891,0.755819930968642,23.4210526315789,12.6378424990494,0
+676,0.0206720299892143,0.074792243767313,7.4792243767313,4,73.9380243466582,0.773778025344659,6.09418282548476,21.9116369706613,5.19557523727417
+677,0.0171299451128946,0.0415512465373961,4.15512465373961,3,63.1049163845889,0.668024172359432,2.77008310249307,5.91065788269043,0
+678,0.019770426930356,0.202216066481994,20.2216066481994,4,85.9416659982433,0.82373046875,14.1274238227147,35.4476518630981,11.6176595687866
+679,0.0233457964210845,0.128947368421053,12.8947368421053,4,79.5664350719632,0.781326427852108,8.42105263157895,54.184554294664,5.19557523727417
+680,0.0208673512678315,0.0969529085872576,9.69529085872576,2,82.5312446392778,0.809075523587899,8.03324099722992,55.6677940913609,18.7329120635986
+681,0.0207282081226624,0.138504155124654,13.8504155124654,6,72.4542574100573,0.672252695290335,4.43213296398892,70.4179242324829,26.4923400878906
+682,0.0275009706226664,0.202216066481994,20.2216066481994,3,86.0787884088664,0.755181206597222,13.0193905817175,24.4777975670279,0
+683,0.0265577109289696,0.136842105263158,13.6842105263158,3,83.8902711016462,0.778706494930118,11.0526315789474,5.86747479438782,0
+684,0.049552340197849,0.349030470914127,34.9030470914127,6,85.804572190003,0.765214159620924,12.7423822714681,22.0345269876813,0
+685,0.0259992009009605,0.196675900277008,19.6675900277008,7,79.1273491615911,0.69128275862069,11.3573407202216,36.5821254891409,18.7329120635986
+686,0.0311274189130584,0.191135734072022,19.1135734072022,9,73.4227850242738,0.642392165742103,8.31024930747922,46.0564785556517,15.5867252349854
+687,0.0537470346339672,0.534210526315789,53.4210526315789,6,93.4950466784966,0.692487524164906,44.7368421052632,11.2110289846148,0
+688,0.0560915450013431,0.545706371191136,54.5706371191136,5,95.8559536866648,0.722586034079519,50.1385041551247,9.93462568612268,0
+689,0.046368811039207,0.434903047091413,43.4903047091413,2,94.2367863000379,0.698920887799564,30.4709141274238,3.02805389720164,0
+690,0.0676829783036954,0.637119113573407,63.7119113573407,1,98.5954283363778,0.775173935479279,63.7119113573407,7.78149686067001,0
+691,0.0290424337850326,0.115789473684211,11.5789473684211,6,71.1780509820679,0.709620334620335,6.05263157894737,32.8928479498083,0
+692,0.0319169194017049,0.229916897506925,22.9916897506925,5,84.7045703963152,0.734987520187931,12.4653739612188,33.088597648115,0
+693,0.0493884411570487,0.454293628808864,45.4293628808864,4,95.8825539497682,0.836168353111238,44.0443213296399,7.22818428423347,0
+694,0.0552344066758416,0.56786703601108,56.786703601108,4,93.0615278726588,0.744902079547749,33.7950138504155,4.80948341648753,0
+695,0.0709056878388908,0.536842105263158,53.6842105263158,5,91.9742262640767,0.789218037898777,35,19.4056097082063,0
+696,0.038147227544201,0.32409972299169,32.409972299169,4,92.9074544048045,0.83250850603155,30.1939058171745,26.9978547789093,5.19557523727417
+697,0.0625585890271884,0.584487534626039,58.4487534626039,2,97.0791349526846,0.699166666666667,51.8005540166205,3.74653649669123,0
+698,0.0826926331688493,0.905817174515235,90.5817174515235,1,99.7183199952349,0.483744875583945,90.5817174515235,3.75066317841183,0
+699,0.0634670354257411,0.505263157894737,50.5263157894737,3,94.2710932926718,0.789923499880469,41.5789473684211,20.5536093215148,0
+700,0.0592937088075873,0.614035087719298,61.4035087719298,2,95.7011527419206,0.701813531736805,38.5964912280702,11.6532772313981,0
+701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+706,0.0155929341777473,0.0460526315789474,4.60526315789474,3,40.1941872793875,0.475862068965517,1.97368421052632,2.96890013558524,0
+707,0.00779928867323531,0.07202216066482,7.20221606648199,2,76.132073948143,0.816017473607572,3.8781163434903,0.999149084091187,0
+708,0.0020283724319436,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.82907196969697,2.49307479224377,0,0
+709,0.0106845212995669,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,2.22667510168893,0
+710,0.044256623292734,0.381578947368421,38.1578947368421,2,96.2014034129462,0.908470493777599,37.8947368421053,11.5473236840347,0
+711,0.0233177980921219,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,0,0
+712,0.0318452431275342,0.0304709141274238,3.04709141274238,2,67.8826803593044,0.656190476190476,2.77008310249307,0,0
+713,0.0405983455437868,0.260387811634349,26.0387811634349,4,92.414829129531,0.839040485107901,24.9307479224377,0,0
+714,0.0201967856766331,0,0,0,NA,NA,0,NA,NA
+715,0.0369052466844261,0.235457063711911,23.5457063711911,2,93.4207403327058,0.86140704482196,23.2686980609418,0,0
+716,0.00956383976186277,0.191135734072022,19.1135734072022,1,92.8481599520577,0.877391599683007,19.1135734072022,0,0
+717,0.040761341034,0.335180055401662,33.5180055401662,8,90.511760425295,0.753863636363636,29.3628808864266,8.99518505600858,0
+718,0.0463788349908244,0.347368421052632,34.7368421052632,7,89.5470736834114,0.809262481595503,29.7368421052632,2.5055603944894,0
+719,0.0509239822466123,0.490304709141274,49.0304709141274,4,93.5377445420166,0.892002393298763,44.8753462603878,1.48676468154131,0
+720,0.0956649771708366,0.767313019390582,76.7313019390582,2,96.4259072287906,0.743795787545787,47.9224376731302,1.91006735688082,0
+721,0.0829620833497061,0.537396121883656,53.7396121883656,4,93.7617204476264,0.873902195608782,44.0443213296399,0.77665815402552,0
+722,-0.00866617572370926,0,0,0,NA,NA,0,NA,NA
+723,0.0168029146012969,0.119113573407202,11.9113573407202,2,84.6598252569111,0.826563591893781,9.69529085872576,2.17489192652148,0
+724,0.0418091515634451,0.282548476454294,28.2548476454294,2,94.4649096005602,0.900985294427917,27.9778393351801,6.91937983737272,0
+725,0.0187796064442951,0.177285318559557,17.7285318559557,4,81.1781486543503,0.80465367965368,9.41828254847645,15.5854345262051,0
+726,0.073946095849552,0.692105263157895,69.2105263157895,3,94.871376120456,0.723305767930514,33.1578947368421,2.65979457173511,0
+727,0.0325029037345791,0.263157894736842,26.3157894736842,2,91.2074673038105,0.904201680672269,22.4376731301939,0,0
+728,0.0469311903045984,0.42382271468144,42.382271468144,3,93.1021617203289,0.870294963044073,30.7479224376731,0.0679160161735186,0
+729,0.0365013020256856,0.343490304709141,34.3490304709141,2,95.4233577475022,0.952611345522738,34.0720221606648,0,0
+730,0.0465431667912574,0.526315789473684,52.6315789473684,3,93.0656368836199,0.829290206648697,36.578947368421,6.17578941106796,0
+731,0.0202471037154789,0.185595567867036,18.5595567867036,4,82.361228153735,0.821588464445607,13.5734072022161,9.61312938804057,0
+732,-0.00230550771231513,0,0,0,NA,NA,0,NA,NA
+733,-0.0581126652241815,0,0,0,NA,NA,0,NA,NA
+734,-0.066173718197311,0,0,0,NA,NA,0,NA,NA
+735,-0.0521475565150558,0,0,0,NA,NA,0,NA,NA
+736,0.0208857974437484,0.470914127423823,47.0914127423823,1,97.4598140066111,0.99396149407022,47.0914127423823,1.30368762016296,0
+737,0.0534317719010337,0.340720221606648,34.0720221606648,3,90.8419827971301,0.897972641971587,27.4238227146814,0.253442694501179,0
+738,0.00315745114122891,0,0,0,NA,NA,0,NA,NA
+739,0.016226630427338,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,8.20219922065735,0
+740,0.0155723778142125,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,10.5487326383591,5.19557523727417
+741,0.014230182084885,0,0,0,NA,NA,0,NA,NA
+742,0.0163680441131612,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,126.413803100586,126.413803100586
+743,0.0147797504972627,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,7.57597010476249,0
+744,0.0116095034212413,0.0526315789473684,5.26315789473684,5,58.5564100911271,0.454022988505747,2.49307479224377,7.01590086284437,0
+745,0.0124893186020448,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,18.184513092041,0
+746,0.0139656154590379,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,98.2791544596354,92.0658264160156
+747,0.0101871438314489,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,27.9790287017822,27.9790287017822
+748,-0.00116948379787608,0,0,0,NA,NA,0,NA,NA
+749,0.0107440531538635,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,22.5999031066895,10.3911504745483
+750,0.00878275014211616,0,0,0,NA,NA,0,NA,NA
+751,0.00398466905866084,0.0368421052631579,3.68421052631579,2,69.6957255342279,0.792349726775956,3.15789473684211,0,0
+752,0.0306976142870211,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,0,0
+753,0.0124194460560295,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,14.0953762190683,5.19557523727417
+754,-0.00545170457377111,0.0831024930747922,8.31024930747922,2,82.4302837955849,0.88871077131759,7.75623268698061,5.93034046490987,0
+755,-0.0576324284807924,0,0,0,NA,NA,0,NA,NA
+756,-0.0970374314576444,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.8677673339844,15.5867252349854
+757,-0.168755702581515,0,0,0,NA,NA,0,NA,NA
+758,-0.0749673559308636,0,0,0,NA,NA,0,NA,NA
+759,0.0254913260144684,0.176315789473684,17.6315789473684,2,88.7267132410601,0.761339122361487,14.2105263157895,38.8396574988294,10.3911504745483
+760,0.0152339492920682,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,51.0933542251587,41.8880653381348
+761,0.00690983235318738,0,0,0,NA,NA,0,NA,NA
+762,0.0110831323116528,0,0,0,NA,NA,0,NA,NA
+763,0.0127388304022469,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,27.9790287017822,27.9790287017822
+764,0.0155950504986549,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,21.4480323791504,16.4298515319824
+765,0.0147943905900733,0,0,0,NA,NA,0,NA,NA
+766,0.0121701670009378,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,3.82239643732707,0
+767,0.0119141888431554,0.0447368421052632,4.47368421052632,2,70.5678656220003,0.790633608815427,3.15789473684211,15.6640816295848,10.3911504745483
+768,0.00262037324690309,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,12.2347052892049,10.3911504745483
+769,0.0172448301879773,0.0498614958448753,4.98614958448753,4,60.9452942344228,0.610193283662671,2.77008310249307,31.9227035840352,10.3911504745483
+770,0.0243705840754888,0,0,0,NA,NA,0,NA,NA
+771,0.01751941829314,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.709702062643239,1.57894736842105,13.7096716562907,10.3911504745483
+772,0.0172602741321929,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,30.9229553222656,18.7329120635986
+773,0.0476656529021777,0.243767313019391,24.3767313019391,4,85.5966479668649,0.839971069270432,15.7894736842105,16.5221482027661,0
+774,0.0869425706646968,0.653739612188366,65.3739612188366,1,98.6844741426788,0.888671201814059,65.3739612188366,25.7355292793048,0
+775,0.0450585497144953,0.239473684210526,23.9473684210526,4,88.4161838542799,0.870135418001623,20.5263157894737,12.4521199792296,0
+776,0.0261482259451028,0.0498614958448753,4.98614958448753,5,54.2032735496431,0.610193283662671,1.93905817174515,2.2082007461124,0
+777,0.0212683807954904,0.038781163434903,3.8781163434903,1,77.3446466870219,1,3.8781163434903,9.01479353223528,0
+778,0.0375994262603274,0.282548476454294,28.2548476454294,3,90.3289898594623,0.870519231174969,20.7756232686981,41.306370342479,0
+779,0.0427921374214317,0.360526315789474,36.0526315789474,5,88.7081769156643,0.812345679012346,15.7894736842105,7.56510768319569,0
+780,0.0369170890427939,0.28808864265928,28.808864265928,1,95.2049817565958,0.909860796104788,28.808864265928,10.8026379897044,0
+781,0.0399344213328329,0.376731301939058,37.6731301939058,2,92.671243985805,0.805913978494624,24.6537396121884,78.0195539698881,51.955753326416
+782,0.012151871075776,0.0249307479224377,2.49307479224377,4,42.1999460549695,0.401751893939394,1.38504155124654,10.4139702055189,5.19557523727417
+783,0.0219430164032689,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,45.1705448150635,39.5683212280273
+784,0.0209142248801838,0.102493074792244,10.2493074792244,4,72.6967815979716,0.689485934021453,3.8781163434903,24.2906338717486,0
+785,0.0253489560402809,0.0609418282548476,6.09418282548476,8,47.2656332613178,0.43623112961999,1.93905817174515,9.83184458992698,0
+786,0.0311705891606965,0.124653739612188,12.4653739612188,7,67.6465679734454,0.549050632911392,3.8781163434903,14.6095026122199,0
+787,0.0451306293636184,0.339473684210526,33.9473684210526,5,87.5104955834731,0.690768839535475,18.1578947368421,12.1730278517849,0
+788,0.0363725328720736,0.260387811634349,26.0387811634349,4,86.3980101471706,0.798800606384876,15.2354570637119,22.0077570600713,0
+789,0.0486939136539341,0.451523545706371,45.1523545706371,3,91.8382440842206,0.726515151515151,20.7756232686981,11.3755033615908,0
+790,0.04184219928815,0.349030470914127,34.9030470914127,4,92.1978354446487,0.778630493356871,27.1468144044321,8.1970349342104,0
+791,0.0290754236289965,0.202631578947368,20.2631578947368,1,93.3950050212716,0.79712677150068,20.2631578947368,36.9659921101161,10.3911504745483
+792,0.0552705084175659,0.526315789473684,52.6315789473684,2,95.0073159898624,0.730113636363636,37.3961218836565,11.4598442529377,0
+793,0.0872573003165135,0.786703601108033,78.6703601108033,1,99.2919856928658,0.771730142516659,78.6703601108033,8.70583628600752,0
+794,0.0633025526742604,0.662049861495845,66.2049861495845,1,98.7277342668279,0.702112443613159,66.2049861495845,5.53969346130243,0
+795,0.036763066887445,0.286842105263158,28.6842105263158,3,88.2741738635422,0.814936220428194,13.4210526315789,14.6415497753598,0
+796,0.023060958233289,0.110803324099723,11.0803324099723,3,77.938350454427,0.79857720742084,6.92520775623269,39.7930102825165,25.977876663208
+797,0.0417559782914279,0.318559556786704,31.8559556786704,5,89.9644907337984,0.73895794246404,22.1606648199446,18.6032068045243,0
+798,0.054363482144798,0.457063711911357,45.7063711911357,3,92.4165070310063,0.727359693877551,26.5927977839335,20.2447624784527,0
+799,0.0402154138404799,0.342105263157895,34.2105263157895,2,94.824331365189,0.807594936708861,32.1052631578947,48.4792061879085,20.7823009490967
+800,0.0330330697823505,0.251461988304094,25.1461988304094,4,85.5316011743022,0.790441176470588,15.2046783625731,10.7976923099784,0
+801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+806,0.0236625459169054,0.0328947368421053,3.28947368421053,2,43.5308153658114,0.793197278911565,2.63157894736842,2.07823009490967,0
+807,0.0151744776221298,0.0221606648199446,2.21606648199446,4,30.9165064303089,0.386402266288952,0.554016620498615,2.75110125541687,0
+808,0.0195406697219626,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.884324532171238,8.03324099722992,10.538695055863,0
+809,0.0255131098539169,0.0415512465373961,4.15512465373961,5,51.9665047606898,0.573173935890699,2.49307479224377,0.346371682484945,0
+810,0.0424798750336202,0.305263157894737,30.5263157894737,3,92.0766538042987,0.910894660894661,27.1052631578947,0,0
+811,0.0909478384433856,0.853185595567867,85.3185595567867,2,99.0973388779808,0.9295380611581,84.7645429362881,0,0
+812,0.0353735042469888,0.310249307479224,31.0249307479224,3,91.8829596986625,0.899518867549405,27.7008310249307,2.037168102605,0
+813,0.0290932097850197,0.0914127423822715,9.14127423822715,3,75.9057873348393,0.796183378500452,6.09418282548476,18.485890157295,0
+814,0.0306366582608079,0.147368421052632,14.7368421052632,4,81.5723734971918,0.746086292478045,8.94736842105263,22.4121700014387,0
+815,0.0494086739416166,0.393351800554017,39.3351800554017,4,94.3597892328708,0.860519845451352,37.3961218836565,17.0726632232397,0
+816,0.0601477292108342,0.714681440443213,71.4681440443213,1,98.9839537105949,0.920179300086434,71.4681440443213,6.91805347176485,0
+817,0.0212302476103808,0.0526315789473684,5.26315789473684,3,70.1179041938074,0.745210727969349,4.15512465373961,5.42210967917191,0
+818,0.00330055247651983,0,0,0,NA,NA,0,NA,NA
+819,0.0355025978538516,0.307479224376731,30.7479224376731,2,94.4521265631326,0.94946,30.1939058171745,0,0
+820,0.0851814873630073,0.905817174515235,90.5817174515235,2,99.2980650081323,0.896748975116789,90.0277008310249,0,0
+821,0.0514112481708094,0.548476454293629,54.8476454293629,2,97.4803560303554,0.746543855836579,53.4626038781163,0,0
+822,0.0534957372044262,0.55,55,3,96.269846658743,0.90288489003142,52.3684210526316,0,0
+823,0.053291606533643,0.542936288088643,54.2936288088643,3,96.6246803672935,0.837712287712288,52.3545706371191,0,0
+824,0.0500598053830928,0.620498614958449,62.0498614958449,1,98.5028283384221,0.899137358991374,62.0498614958449,0,0
+825,0.0126706601367876,0.0941828254847645,9.41828254847645,5,68.8238879554985,0.664864569681083,3.8781163434903,0.152811036390417,0
+826,-0.00169354487044122,0.118421052631579,11.8421052631579,1,89.6940898761467,0.925373134328358,11.8421052631579,11.4000847286648,0
+827,0.00866107922741717,0.0526315789473684,5.26315789473684,3,64.6738402459532,0.745210727969349,2.77008310249307,18.9848904860647,10.3911504745483
+828,0.0153086590003806,0.074792243767313,7.4792243767313,2,77.2637992829888,0.849185350229773,4.98614958448753,0,0
+829,0.00569438728448819,0.0664819944598338,6.64819944598338,3,74.4445552616069,0.802670623145401,5.54016620498615,0,0
+830,0.0313030347711614,0.352631578947368,35.2631578947368,1,96.3014772930087,0.784752765560442,35.2631578947368,3.42885236953621,0
+831,0.0277154855700203,0.174515235457064,17.4515235457064,3,86.4681878199271,0.746705308114704,10.803324099723,1.10626278983222,0
+832,0.0226997072550299,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0
+833,0.0241708721852845,0.185595567867036,18.5595567867036,2,87.5475396975021,0.895052037909181,14.1274238227147,0,0
+834,0.019423735568355,0.0763157894736842,7.63157894736842,3,76.244319596073,0.838758562162818,6.31578947368421,0,0
+835,0.0200846517013374,0.119113573407202,11.9113573407202,1,89.4584842426695,0.921165269042628,11.9113573407202,0,0
+836,0.0361069563951684,0.221606648199446,22.1606648199446,2,92.5079071629638,0.891434013332665,21.606648199446,0,0
+837,0.0369759619537834,0.229916897506925,22.9916897506925,3,91.1452264314037,0.823325013458621,21.0526315789474,0,0
+838,0.0128302387066601,0.05,5,2,72.9608481119824,0.782214156079855,3.94736842105263,9.62116344351518,0
+839,0.027423048028745,0.074792243767313,7.4792243767313,4,73.7381171662191,0.648099150536137,5.54016620498615,16.1410862251564,0
+840,0.027469311534718,0.130193905817175,13.0193905817174,4,82.2395472764075,0.770063694267516,10.2493074792244,11.5124568431935,0
+841,0.0264441838739195,0.0692520775623269,6.92520775623269,3,75.8304865841759,0.785119047619048,5.81717451523546,37.7140018463135,18.7329120635986
+842,0.0141923275144781,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,93.5203552246094,93.5203552246094
+843,0.0142003609870651,0.05,5,2,75.9748167142965,0.782214156079855,4.47368421052632,0,0
+844,0.0216091947624687,0.0914127423822715,9.14127423822715,6,64.0347450986263,0.633130081300813,3.8781163434903,3.06676049665971,0
+845,0.0192827143092218,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+846,0.0247253728099329,0.0775623268698061,7.75623268698061,7,57.4019704348541,0.566366366366366,3.04709141274238,15.0898682900837,5.19557523727417
+847,0.0180370688968029,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,58.6976432800293,36.7382659912109
+848,0.00545725557314246,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,9.84946880340576,5.19557523727417
+849,0.0291506325110707,0.0498614958448753,4.98614958448753,5,53.5630874993746,0.493251268761473,1.93905817174515,46.4371501074897,31.1734504699707
+850,0.0178756907411792,0.0775623268698061,7.75623268698061,2,77.2720296878259,0.831364698031365,4.43213296398892,0,0
+851,0.000358552872498158,0.0236842105263158,2.36842105263158,2,57.7190885084827,0.487870619946092,1.57894736842105,8.49463648266262,0
+852,-0.00123541124033527,0,0,0,NA,NA,0,NA,NA
+853,0.00198940731127064,0.0277008310249307,2.77008310249307,3,54.4037650304522,0.60442691211922,1.93905817174515,8.00857062339783,0
+854,-0.0355148032454998,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,6.27161407470703,5.19557523727417
+855,-0.0976058366472563,0.0263157894736842,2.63157894736842,2,58.2677109531801,0.683991683991684,1.31578947368421,1.03911504745483,0
+856,-0.0993187693924397,0.07202216066482,7.20221606648199,1,84.8544079576361,0.947433563887878,7.20221606648199,5.64372170888461,0
+857,-0.057498781611289,0,0,0,NA,NA,0,NA,NA
+858,-0.042670209014142,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911504745483,10.3911504745483
+859,0.00733511171060136,0,0,0,NA,NA,0,NA,NA
+860,0.00723420980613099,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,13.8548669815063,10.3911504745483
+861,0.011598832760902,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,23.6777811050415,10.3911504745483
+862,0.0113560054809684,0,0,0,NA,NA,0,NA,NA
+863,0.0184567107777974,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,41.8525483267648,36.7382659912109
+864,0.013537724588638,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,29.7583498273577,20.7823009490967
+865,0.0115177239349275,0,0,0,NA,NA,0,NA,NA
+866,0.00566192639548352,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.2895854314168,14.6953058242798
+867,0.00382957145113898,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,11.0044050216675,10.3911504745483
+868,-0.00152559484863219,0,0,0,NA,NA,0,NA,NA
+869,0.0121205670853906,0.0498614958448753,4.98614958448753,3,66.04736496188,0.688154626930137,3.32409972299169,15.5867255528768,5.19557523727417
+870,0.0188065866968626,0.03601108033241,3.601108033241,3,55.8504653747671,0.654214559386973,1.93905817174515,12.4879052822406,0
+871,0.0115636274169159,0.0421052631578947,4.21052631578947,3,64.2932552543776,0.652014652014652,2.89473684210526,6.84226983785629,5.19557523727417
+872,0.00720902990464426,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,32.8876972198486,27.9790287017822
+873,0.0153228779967714,0.110803324099723,11.0803324099723,2,87.1836077261266,0.86571813828056,10.803324099723,67.4983051300049,51.955753326416
+874,0.0280223331484141,0.401662049861496,40.1662049861496,2,95.0267484967889,0.924318658280922,37.9501385041551,81.2881120615992,51.4335708618164
+875,0.0231272278490283,0.121052631578947,12.1052631578947,4,80.7351763011577,0.795793029325963,9.47368421052632,29.3975833706234,0
+876,0.0124015870614007,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,12.3362104098002,5.19557523727417
+877,0.0118887266805845,0.0498614958448753,4.98614958448753,4,62.3739280058982,0.610193283662671,2.77008310249307,9.75820260577732,0
+878,0.0532394509445568,0.437673130193906,43.7673130193906,3,96.1083986400978,0.834431798878886,42.6592797783934,38.5086648856537,0
+879,0.0170028274812993,0.0526315789473684,5.26315789473684,7,48.7571627504417,0.489247311827957,2.36842105263158,17.0356243371963,0
+880,0.0131235950411742,0.0831024930747922,8.31024930747922,6,63.6504251214128,0.554843085270362,3.8781163434903,31.5150232156118,0
+881,0.0204133039063125,0.07202216066482,7.20221606648199,2,78.6399658730485,0.921150345831817,6.09418282548476,51.356899701632,41.5646018981934
+882,0.015439021206289,0.0498614958448753,4.98614958448753,3,69.4217255724389,0.688154626930137,3.601108033241,6.33785631921556,0
+883,0.031519593503847,0.189473684210526,18.9473684210526,3,90.5396377355842,0.883423662951222,18.1578947368421,33.1575521760517,10.3911504745483
+884,0.0425912243809256,0.326869806094183,32.6869806094183,4,90.9501167945365,0.79173877927772,26.8698060941828,4.65393788531675,0
+885,0.037017862454387,0.21606648199446,21.606648199446,5,88.2421262882202,0.741178880524402,18.005540166205,2.81807572413714,0
+886,0.02285152263188,0.0941828254847645,9.41828254847645,6,63.7898883893554,0.605723023154216,2.49307479224377,13.3897053353927,0
+887,0.045781040542275,0.357894736842105,35.7894736842105,3,90.7276207987114,0.767649391856161,18.1578947368421,6.7275407594793,0
+888,0.0736334505884384,0.61218836565097,61.218836565097,2,95.5084293121765,0.780946601941748,33.7950138504155,7.84407870693984,0
+889,0.0692369711504199,0.526315789473684,52.6315789473684,2,95.9334654117011,0.862058080808081,44.5983379501385,9.14345256152906,0
+890,0.0404503579048144,0.326869806094183,32.6869806094183,3,90.8180830636383,0.770912657205492,22.9916897506925,11.3632664114742,0
+891,0.0427615753133738,0.328947368421053,32.8947368421053,6,87.5987250981266,0.829316748725922,25,8.57410473632813,0
+892,0.0518630048528719,0.512465373961219,51.2465373961219,4,91.3100496737132,0.754103535353535,26.8698060941828,6.64920236999924,0
+893,0.0321141366074096,0.257617728531856,25.7617728531856,3,87.1258313841179,0.748449019960439,15.5124653739612,15.9300824903673,0
+894,0.0306489700834035,0.240997229916898,24.0997229916898,4,85.1274856275273,0.795997174476101,16.3434903047091,11.5566020395564,0
+895,0.074915799265804,0.644736842105263,64.4736842105263,1,98.6730552827086,0.760310528869481,64.4736842105263,18.0693914063123,0
+896,0.0421080029494751,0.315789473684211,31.5789473684211,4,88.2701701951598,0.744585511575803,15.2354570637119,35.7401436462737,0
+897,0.0651750051380339,0.529085872576177,52.9085872576177,2,97.168597930113,0.778049185776005,51.5235457063712,17.9290939051443,0
+898,0.0784610123760544,0.745152354570637,74.5152354570637,2,98.5468423330377,0.797976754197159,73.1301939058172,5.36763406952074,0
+899,0.0547042553797885,0.431578947368421,43.1578947368421,3,94.0725204978345,0.801937699288693,37.3684210526316,13.5328391993918,0
+900,0.0464503365435722,0.400584795321637,40.0584795321637,1,96.6845237015724,0.839843902439025,40.0584795321637,44.608765696087,5.19557523727417
+901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+906,0.0316476567455538,0.2375,23.75,1,90.9696393431328,0.895914650013011,23.75,1.09380531311035,0
+907,-0.0049158364373924,0.0289473684210526,2.89473684210526,2,61.3015378816306,0.794037940379404,2.10526315789474,0,0
+908,0.0094643941032413,0.0815789473684211,8.15789473684211,2,78.6508751064407,0.804011461318052,4.21052631578947,20.9461040958281,5.19557523727417
+909,0.0332576627265601,0.2,20,5,86.489594664336,0.766791044776119,15,17.5307036010843,0
+910,0.0394348507016548,0.2975,29.75,3,93.5596257169906,0.894556478186371,28.25,3.95289292856425,0
+911,0.0739549077507323,0.628947368421053,62.8947368421053,1,98.5890492401195,0.987941675789741,62.8947368421053,0.108694042620799,0
+912,0.00193048758988569,0.131578947368421,13.1578947368421,1,90.5004389364175,0.918716577540107,13.1578947368421,5.44775087356567,0
+913,0.0233976357906948,0.128947368421053,12.8947368421053,3,86.8612857068963,0.767659329592864,11.8421052631579,5.12210932556464,0
+914,0.0266981659898374,0.2125,21.25,6,83.6771750131583,0.730894565331651,12.75,9.09952909806195,0
+915,0.0229309820546118,0.0526315789473684,5.26315789473684,3,68.5376207236775,0.693548387096774,2.63157894736842,4.67601771354675,0
+916,0.0251848515895912,0.142105263157895,14.2105263157895,8,70.6053219610987,0.611451942740286,5.26315789473684,8.9346793934151,0
+917,0.014754960399985,0.068421052631579,6.8421052631579,4,73.8847395621753,0.659638969271049,5.26315789473684,10.5360637628115,0
+918,0.00603879323709407,0.02,2,3,44.0901705406037,0.489795918367347,1,42.030041217804,31.1734504699707
+919,0.0530913187433678,0.486842105263158,48.6842105263158,2,95.5152862656284,0.897435897435897,44.2105263157895,2.34643552367752,0
+920,0.122035022001517,1,100,1,100,NA,100,0,0
+921,0.0660849493143982,0.921052631578947,92.1052631578947,1,99.7730232611531,0.579053373615308,92.1052631578947,0,0
+922,0.0648695986252278,0.895,89.5,1,99.6998271307191,0.690967832560753,89.5,0,0
+923,0.0601487900669637,0.886842105263158,88.6842105263158,1,99.6653789560343,0.653170749516264,88.6842105263158,0,0
+924,0.0454405852005278,0.576315789473684,57.6315789473684,3,97.649143709587,0.895871392035075,57.1052631578947,0.0237240878414346,0
+925,0.0221885848647569,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.76010101010101,7.36842105263158,8.27256834506989,0
+926,-0.01849693632661,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0
+927,0.0231916867838184,0.263157894736842,26.3157894736842,3,90.0244877889814,0.864285714285714,16.3157894736842,7.61298178672791,0
+928,0.00951939137713022,0.113157894736842,11.3157894736842,4,77.809739869776,0.686778766897461,6.05263157894737,20.8645578317864,0
+929,0.0249881958021625,0.363157894736842,36.3157894736842,3,91.9061738825603,0.869146005509642,26.8421052631579,7.39997601854628,0
+930,0.04978609346952,0.49,49,6,93.7401328226345,0.838396897220427,42.25,0,0
+931,0.028776634793796,0.0868421052631579,8.68421052631579,6,65.7343112794996,0.5741274415626,2.89473684210526,0,0
+932,0.0302619921023985,0.0421052631578947,4.21052631578947,3,66.3531383768327,0.782509157509158,3.42105263157895,0,0
+933,0.0445435207466385,0.373684210526316,37.3684210526316,2,96.065847917993,0.797349709114415,36.8421052631579,0,0
+934,0.047181383339921,0.4025,40.25,3,94.2056361466841,0.773832409815674,32.5,0,0
+935,0.0379994461205665,0.305263157894737,30.5263157894737,2,93.1302500900423,0.862914862914863,26.8421052631579,0,0
+936,0.0370960265073288,0.176315789473684,17.6315789473684,3,88.8903812894133,0.823598481745447,15.2631578947368,0,0
+937,0.0471086599490311,0.410526315789474,41.0526315789474,5,88.7022096401576,0.651256844201095,15,0,0
+938,0.025771165044498,0.155,15.5,5,80.3895989180753,0.737015121630506,9.5,2.0513060092926,0
+939,0.0213165061586647,0.0368421052631579,3.68421052631579,6,39.945103860425,0.42896174863388,1.31578947368421,44.128367968968,27.9790287017822
+940,0.0267114732576853,0.152631578947368,15.2631578947368,6,76.1091078750579,0.58695652173913,5.52631578947368,27.5904324219145,7.34765291213989
+941,0.0193804547037488,0.0421052631578947,4.21052631578947,5,51.4097917649052,0.478021978021978,1.57894736842105,20.4475724697113,10.3911504745483
+942,0.00714935927553597,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,13.7620937824249,5.19557523727417
+943,-0.0102161413351314,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,13.9409356594086,5.19557523727417
+944,0.0247236491728759,0.0947368421052632,9.47368421052632,6,67.6004366634638,0.594961240310077,4.21052631578947,13.4420295688841,0
+945,0.0267622790321184,0.144736842105263,14.4736842105263,5,84.1631852456504,0.84,12.8947368421053,35.5188414573669,0
+946,0.0274050218670613,0.168421052631579,16.8421052631579,5,82.6827954998951,0.720840867992767,8.15789473684211,50.4959036186337,7.34765291213989
+947,0.0255223437443601,0.1125,11.25,4,80.533711530199,0.851742031134173,9.5,80.4935493469238,63.4200782775879
+948,0.00920315137817325,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,13.3087403774261,5.19557523727417
+949,0.028056141439715,0.0763157894736842,7.63157894736842,7,56.8194643162802,0.424137722010062,2.36842105263158,23.3063242188815,0
+950,0.0198611511518577,0.0473684210526316,4.73684210526316,1,80.5625453356091,0.883364027010436,4.73684210526316,12.9977110756768,5.19557523727417
+951,-0.000163047000860388,0.005,0.5,1,30.8308651382582,1,0.5,20.7823009490967,20.7823009490967
+952,0.00777681087260326,0.0894736842105263,8.94736842105263,2,82.3026236955927,0.86271676300578,7.89473684210526,1.74421780249652,0
+953,0.0266117776941123,0.244736842105263,24.4736842105263,3,90.5374476247291,0.824524579152848,19.2105263157895,2.38632081657328,0
+954,-0.0464518217924036,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,0,0
+955,-0.118967637487513,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,10.6364521026611,0
+956,-0.0324830870627394,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,1.46953058242798,0
+957,-0.0255400770807539,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,7.64479287465413,5.19557523727417
+958,-0.00266971966218415,0.0710526315789474,7.10526315789474,3,72.9128724799591,0.62448119111931,4.47368421052632,16.0408226119147,7.34765291213989
+959,0.00353008484949896,0.1175,11.75,6,75.4145414295729,0.660056657223796,7.25,40.88781151873,11.6176595687866
+960,0.0060236207367971,0.0605263157894737,6.05263157894737,3,70.209473740524,0.645191409897292,3.15789473684211,19.0885894194893,11.6176595687866
+961,0.00799520271648362,0.0815789473684211,8.15789473684211,3,75.7947859794771,0.651575931232092,5.26315789473684,10.9345259051169,5.19557523727417
+962,0.00890627661247938,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,9.94544053077698,7.34765291213989
+963,0.0218980647754029,0.0675,6.75,2,81.9410279120859,0.925182367978054,6.5,23.4355356604965,7.34765291213989
+964,0.0138647706858568,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,24.2622237205505,18.7329120635986
+965,0.0092919108781069,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,24.2622237205505,18.7329120635986
+966,0.00366144864091032,0,0,0,NA,NA,0,NA,NA
+967,0.0066486823152718,0,0,0,NA,NA,0,NA,NA
+968,0.0159475067928342,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,5.39999341964722,0
+969,0.0195601656385023,0.068421052631579,6.8421052631579,3,74.5242983157724,0.816728675761334,5.26315789473684,40.5119924545288,15.5867252349854
+970,0.014746261523019,0,0,0,NA,NA,0,NA,NA
+971,0.017711971594108,0.06,6,4,69.1187759277482,0.608062709966405,4,17.7501603364944,10.3911504745483
+972,0.0212219072481132,0.0789473684210526,7.89473684210526,5,64.1386474187522,0.556851311953353,2.89473684210526,8.669526720047,0
+973,0.0172636306881414,0.0263157894736842,2.63157894736842,3,48.8157644052256,0.604989604989605,1.31578947368421,8.81035375595093,0
+974,0.0335665431660968,0.223684210526316,22.3684210526316,2,89.2594983123061,0.872039510607251,11.8421052631579,27.5728373134837,0
+975,0.010090238783373,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,0,0
+976,-0.000224929663315714,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,53.0364675521851,36.7382659912109
+977,0.0279987223026661,0.105263157894737,10.5263157894737,3,81.7156489112824,0.883230904302019,8.94736842105263,62.2598268508911,37.8243598937988
+978,0.00688490383436925,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,107.398799351283,72.3659896850586
+979,0.00558044589176461,0.04,4,1,78.9473684210526,0.739583333333333,4,28.0453236699104,5.19557523727417
+980,0.0154870512029639,0.0263157894736842,2.63157894736842,5,35.0897607907672,0.367983367983368,1.05263157894737,101.342670440674,52.9846801757812
+981,-0.00132841280226689,0,0,0,NA,NA,0,NA,NA
+982,0.0075722081876608,0.0342105263157895,3.42105263157895,3,56.7140975198571,0.71238268240993,2.10526315789474,27.4699367009676,5.19557523727417
+983,0.034258522345408,0.205,20.5,3,91.7840836467354,0.921925829538061,20,32.6305103302002,16.4298515319824
+984,0.0475853862881195,0.418421052631579,41.8421052631579,3,93.6204438680786,0.817454906093101,27.8947368421053,6.35992957361089,0
+985,0.053747552666372,0.507894736842105,50.7894736842105,6,94.7718398922782,0.653750784214143,43.1578947368421,5.40000112316151,0
+986,0.0240753469820591,0.0842105263157895,8.42105263157895,4,68.8631205121241,0.727011494252874,3.15789473684211,29.8608079254627,10.3911504745483
+987,0.0528341314998397,0.43,43,5,93.4035901725783,0.695611267917428,34.5,11.7477091412212,0
+988,0.0531786845799376,0.452631578947368,45.2631578947368,4,90.6685446749467,0.763710264498908,24.4736842105263,4.86823165693948,0
+989,0.0635783108585441,0.639473684210526,63.9473684210526,1,98.6453992153938,0.737290588121805,63.9473684210526,3.09822070942004,0
+990,0.0591781249247632,0.555263157894737,55.5263157894737,2,96.5303241944111,0.753351044559836,45,4.40904006008853,0
+991,0.0529908107421943,0.51,51,2,97.5456941875082,0.795379893382155,50.5,16.9118658163968,0
+992,0.0498080470759305,0.463157894736842,46.3157894736842,3,96.1378204398956,0.805128205128205,44.4736842105263,17.5623649060726,0
+993,0.0374392705564548,0.273684210526316,27.3684210526316,4,88.1372268136319,0.823296907695885,21.0526315789474,30.4960153102875,0
+994,0.067805684288377,0.589473684210526,58.9473684210526,2,97.2321260410503,0.737762237762238,54.7368421052632,9.85925419415746,0
+995,0.0886288386918022,0.7825,78.25,1,99.3133324321661,0.742840444184687,78.25,8.57184170305539,0
+996,0.0423855457319357,0.371052631578947,37.1052631578947,5,90.7344434142562,0.815121144302812,27.8947368421053,15.7578907858395,0
+997,0.0825819289641099,0.747368421052632,74.7368421052632,1,99.1525080497293,0.80727215980025,74.7368421052632,6.4726574437719,0
+998,0.0737381385921158,0.639473684210526,63.9473684210526,1,98.6453992153938,0.847261969838259,63.9473684210526,4.55862787231006,0
+999,0.0398101633025317,0.285,28.5,3,90.3377436281682,0.871002783624143,24.5,15.5410739748101,0
+1000,0.052841657797641,0.422222222222222,42.2222222222222,5,88.471760440497,0.727047146401985,15.2777777777778,43.3371440830984,7.34765291213989
+1001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1006,0.00826796183039397,0.0657894736842105,6.57894736842105,3,51.286996448474,0.505958829902492,3.28947368421053,0.519557523727417,0
+1007,-0.0025235501233097,0.141274238227147,14.1274238227147,2,86.0034692477091,0.892918057100482,12.7423822714681,11.3193741779701,0
+1008,0.00535669377619604,0.07202216066482,7.20221606648199,5,67.7104814493901,0.658318165271205,4.43213296398892,42.8315960077139,0
+1009,0.0447909125795077,0.285318559556787,28.5318559556787,4,90.0788611980002,0.742845170752147,17.4515235457064,62.7517262245845,15.5867252349854
+1010,0.0408425912138467,0.268421052631579,26.8421052631579,5,91.5304839967676,0.835672445650037,25,28.316953013925,0
+1011,0.0245375437925834,0.171745152354571,17.1745152354571,5,79.6657624948429,0.709339774557166,7.75623268698061,13.1241217505547,0
+1012,0.0529162002382295,0.398891966759003,39.8891966759003,1,96.7592592592593,0.95588954056696,39.8891966759003,8.10089188151889,0
+1013,0.0398872314745604,0.21606648199446,21.606648199446,9,75.6514489391404,0.685717212065345,9.41828254847645,6.12034073242774,0
+1014,0.0131772489342869,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,0,0
+1015,0.0280603854214789,0.0858725761772853,8.58725761772853,5,70.1664410875928,0.715575757575758,4.98614958448754,0,0
+1016,0.0298979558227029,0.07202216066482,7.20221606648199,5,68.4779569536904,0.658318165271205,4.98614958448753,0.199829816818237,0
+1017,0.01581748559219,0.0858725761772853,8.58725761772853,5,65.6328891211365,0.606181818181818,3.601108033241,6.04855354370609,0
+1018,0.010188782682637,0.1,10,7,63.1170783264029,0.576719576719577,2.63157894736842,13.3209742495888,0
+1019,0.0827501725914651,0.781163434903047,78.1163434903047,1,99.2698136948151,0.965512299976117,78.1163434903047,0,0
+1020,0.125194144422328,1,100,1,100,NA,100,0,0
+1021,0.0614019283544984,0.60387811634349,60.387811634349,2,98.014713704507,0.832116159702367,59.8337950138504,0,0
+1022,0.0617703499419517,0.652631578947368,65.2631578947368,4,96.5977321021455,0.807667189132706,60.5263157894737,0,0
+1023,0.0530350634368998,0.479224376731302,47.9224376731302,6,91.4784202854089,0.753201494030548,34.6260387811634,0,0
+1024,0.029187171042561,0.074792243767313,7.4792243767313,6,66.5281723244372,0.673234925497842,4.98614958448753,0.81514111271611,0
+1025,0.0122076647569775,0.0221606648199446,2.21606648199446,4,30.9165064303089,0.386402266288952,0.554016620498615,15.7254421710968,5.19557523727417
+1026,0.0149743368744758,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,3.71112523760114,0
+1027,0.0310962779929776,0.213296398891967,21.3296398891967,8,80.3876231292267,0.691564830157415,13.0193905817175,0.404850018488896,0
+1028,0.0195686777531143,0.0526315789473684,5.26315789473684,5,56.2462710113334,0.563218390804598,2.77008310249307,1.09380531311035,0
+1029,0.0109305212620981,0.124653739612188,12.4653739612188,2,88.4305112526116,0.849683544303798,12.1883656509695,5.19723389943441,0
+1030,0.0192123632962313,0.2,20,2,90.9483801458869,0.850746268656716,17.8947368421053,0,0
+1031,0.0420462102203571,0.268698060941828,26.8698060941828,6,88.4312831061191,0.803530999651689,22.4376731301939,0,0
+1032,0.0444489095396803,0.304709141274238,30.4709141274238,2,93.9735956987982,0.949408396564496,29.6398891966759,0,0
+1033,0.0389903930254175,0.310249307479224,31.0249307479224,4,88.8262468732625,0.799037735098811,21.8836565096953,8.23387143867356,0
+1034,0.039079812509743,0.307894736842105,30.7894736842105,4,88.2997483725319,0.775091469976325,15.5263157894737,3.14037766823402,0
+1035,0.0387296568766143,0.221606648199446,22.1606648199446,3,91.2289563507089,0.755726529998496,20.2216066481994,0,0
+1036,0.0428195036625247,0.398891966759003,39.8891966759003,4,95.3638362545945,0.88027161011032,39.0581717451524,0,0
+1037,0.0595418121291639,0.664819944598338,66.4819944598338,2,98.1121821081697,0.827237755158387,65.0969529085873,0,0
+1038,0.0210137091520186,0.0868421052631579,8.68421052631579,4,73.2732186427986,0.716084961041733,5,1.79707288742065,0
+1039,0.0292457486074129,0.218836565096953,21.8836565096953,6,83.1865712517268,0.771403242147923,16.3434903047091,14.5072087819063,0
+1040,0.00653240226179616,0.0775623268698061,7.75623268698061,4,73.8938226535883,0.68682015348682,5.81717451523546,17.2723282235009,5.19557523727417
+1041,0.000997793865114704,0.0664819944598338,6.64819944598338,2,75.9746494195538,0.746290801186944,4.43213296398892,29.1159019470215,15.5867252349854
+1042,0.0199174206662624,0.149584487534626,14.9584487534626,5,77.1917916821992,0.658610906798361,7.75623268698061,9.51837794869034,0
+1043,0.00835086192239128,0.121052631578947,12.1052631578947,2,84.5096857373024,0.839551665898971,8.42105263157895,1.40215175048165,0
+1044,0.0121252198038351,0.0304709141274238,3.04709141274238,4,43.7452164795091,0.518666666666667,1.38504155124654,7.11533797870983,0
+1045,0.0221154926274169,0.0470914127423823,4.70914127423823,4,58.2439433088657,0.664186046511628,2.49307479224377,20.1602707750657,0
+1046,0.0116652702530791,0.0609418282548476,6.09418282548476,3,73.0205854240378,0.780756550407774,4.98614958448754,27.0828907489777,7.34765291213989
+1047,0.0210041396911133,0.157894736842105,15.7894736842105,6,83.1576806177233,0.737379807692308,12.6315789473684,23.8598651409149,0
+1048,0.00969058658294074,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989
+1049,0.012309122665682,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,7.94952268600464,5.19557523727417
+1050,0.0143628063827103,0,0,0,NA,NA,0,NA,NA
+1051,0.0117187056023747,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.832070707070707,7.36842105263158,16.1852611473628,10.3911504745483
+1052,0.0150913580702229,0.038781163434903,3.8781163434903,5,43.9401924144595,0.479827089337176,1.38504155124654,12.1737017631531,0
+1053,0.00874816537571883,0.0304709141274238,3.04709141274238,2,60.8393117971009,0.656190476190476,1.66204986149584,14.6420753652399,10.3911504745483
+1054,0.0289627144401319,0.218836565096953,21.8836565096953,3,87.1233152080804,0.826266464032422,14.6814404432133,9.39269918731496,0
+1055,0.0236223208485937,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,23.3800888061523,20.7823009490967
+1056,0.00627479979025502,0,0,0,NA,NA,0,NA,NA
+1057,-0.0018203251863655,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,1.73185841242472,0
+1058,0.0210840991074448,0.132963988919668,13.2963988919668,3,80.2500874226144,0.789020494038806,7.4792243767313,31.2729205886523,5.19557523727417
+1059,0.00734000837094419,0.0921052631578947,9.21052631578947,4,77.5277856697589,0.810094952523738,7.63157894736842,29.8665561948504,14.6953058242798
+1060,0.0129185268989831,0.0609418282548476,6.09418282548476,3,78.0731307365436,0.624154086413326,5.54016620498615,24.3518825444308,0
+1061,0.0108732882701457,0.0914127423822715,9.14127423822715,4,73.5843421978001,0.775801716350497,6.37119113573407,3.90129002657804,0
+1062,0.0261484015586033,0.146814404432133,14.6814404432133,4,85.7849306373345,0.832560296846011,13.2963988919668,11.741398352497,0
+1063,0.0159284886277563,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.9164962768555,15.5867252349854
+1064,0.0161647182789556,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,3.89668142795563,0
+1065,0.00994899248618212,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989
+1066,0.0101772485260397,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,3.13580703735352,0
+1067,0.0257606628269346,0.1,10,1,88.3079606859525,0.82363315696649,10,19.4089502158918,5.19557523727417
+1068,0.018029995724102,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,12.861168384552,5.19557523727417
+1069,0.0188479358044168,0.113573407202216,11.3573407202216,2,87.2428964266246,0.901902173913043,11.0803324099723,15.7416151442179,0
+1070,0.018400854801703,0.0415512465373961,4.15512465373961,2,73.4201733450948,0.810299527062533,3.8781163434903,13.5902627627055,5.19557523727417
+1071,0.018971123069174,0.0315789473684211,3.15789473684211,4,51.716557962325,0.514066496163683,1.84210526315789,10.5212836662928,5.19557523727417
+1072,0.0234521941856757,0.0470914127423823,4.70914127423823,8,37.6002179062698,0.370348837209302,1.38504155124654,7.89373734418084,0
+1073,0.0342645358268128,0.202216066481994,20.2216066481994,6,80.1976510001216,0.706217447916667,10.803324099723,5.24719261143306,0
+1074,0.0467193639203371,0.379501385041551,37.9501385041551,2,95.8125386800853,0.903303571428571,37.3961218836565,21.2711864248679,0
+1075,0.0234404720567047,0.0789473684210526,7.89473684210526,4,73.6374443134807,0.667638483965015,3.94736842105263,10.8507511774699,0
+1076,0.0408763280498745,0.39612188365651,39.612188365651,4,93.6033303420896,0.785103998879473,34.9030470914127,66.8648500909338,18.7329120635986
+1077,0.0181657880841153,0.0664819944598338,6.64819944598338,4,65.167918550766,0.718100890207715,3.04709141274238,130.250189145406,86.4716033935547
+1078,0.0214761671805438,0.149584487534626,14.9584487534626,2,89.8805710190786,0.898847676088403,14.6814404432133,175.171222828053,156.213241577148
+1079,0.0177805757695368,0.165789473684211,16.5789473684211,2,90.7074491704865,0.847433323774018,16.0526315789474,149.96870882549,125.126022338867
+1080,0.0266677632681469,0.240997229916898,24.0997229916898,1,94.2388121322677,0.940499175888863,24.0997229916898,157.812690647169,133.577835083008
+1081,0.0163130046180274,0.0415512465373961,4.15512465373961,3,65.1431305573521,0.762874408828166,3.32409972299169,45.3918509165446,30.2951488494873
+1082,0.0356186224885593,0.293628808864266,29.3628808864266,4,93.6328147554243,0.659049378913869,27.7008310249307,77.7271100530085,33.2679138183594
+1083,0.0399045689337838,0.276315789473684,27.6315789473684,1,95.1205821781401,0.934199134199134,27.6315789473684,24.0010362170991,0
+1084,0.0299740573854077,0.135734072022161,13.5734072022161,7,69.4773396154987,0.572992979242979,3.8781163434903,10.1640787513889,0
+1085,0.0373799271750049,0.177285318559557,17.7285318559557,8,73.3632978642619,0.652717652717653,8.86426592797784,3.1817609667778,0
+1086,0.0346393093048623,0.290858725761773,29.0858725761773,3,92.7655298686035,0.738859953703704,26.0387811634349,7.01780454090663,0
+1087,0.0617268478502075,0.565789473684211,56.5789473684211,2,96.6876390374212,0.700606060606061,50.5263157894737,7.79023127001385,0
+1088,0.0528867487366591,0.562326869806094,56.2326869806094,2,95.6145181554666,0.709095792901991,38.781163434903,3.83756617607154,0
+1089,0.0545726776499704,0.570637119113573,57.0637119113573,3,97.3636944820359,0.69594879137539,55.4016620498615,3.27065916894709,0
+1090,0.0234637733625942,0.299168975069252,29.9168975069252,1,95.3984674864788,0.985365359278403,29.9168975069252,0,0
+1091,0.0429511062185108,0.421052631578947,42.1052631578947,3,93.0062869709023,0.841372912801484,29.4736842105263,21.9393920272589,0
+1092,0.0949957710974579,0.795013850415512,79.5013850415512,1,99.3248081189344,0.810285285285285,79.5013850415512,6.29412063738195,0
+1093,0.0552024084873436,0.46814404432133,46.814404432133,2,96.8593872052187,0.891526442307692,46.2603878116344,11.6626439150974,0
+1094,0.0652485551774357,0.556786703601108,55.6786703601108,2,95.0341375810744,0.770140750670241,31.5789473684211,15.5733922630993,0
+1095,0.0762883870874679,0.671052631578947,67.1052631578947,1,98.8064194597879,0.732887029288703,67.1052631578947,4.45002778371175,0
+1096,0.0438115033885423,0.379501385041551,37.9501385041551,3,90.3192380142954,0.774375,18.5595567867036,17.8065823812554,0
+1097,0.0824321213818782,0.756232686980609,75.6232686980609,1,99.1670427107182,0.863791725852273,75.6232686980609,2.37322988614931,0
+1098,0.0887155277006988,0.833795013850416,83.3795013850416,1,99.4714344797886,0.681657848324515,83.3795013850416,2.43954472209132,0
+1099,0.071079672207002,0.647368421052632,64.7368421052632,2,96.7481713210452,0.790395846852693,55,7.95006392641765,0
+1100,0.0766635077749515,0.748538011695906,74.8538011695907,1,99.109212429135,0.784593023255814,74.8538011695907,8.31421785615385,0
+1101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1106,0.0195758074610479,0.0328947368421053,3.28947368421053,2,40.6326142031695,0.586394557823129,1.97368421052632,0,0
+1107,0.0300918954004409,0.221606648199446,22.1606648199446,5,81.7015328661861,0.674302039997995,6.92520775623269,0.454612827301025,0
+1108,0.00292772566109581,0.0193905817174515,1.93905817174515,2,54.980748285685,0.745056497175141,1.66204986149584,0,0
+1109,0.018021360493239,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,7.29722958803177,0
+1110,0.0153661998285794,0.0552631578947368,5.52631578947368,2,78.8971711789297,0.867688022284123,5.26315789473684,0,0
+1111,0.0106425465783306,0.0526315789473684,5.26315789473684,3,71.3158730935122,0.781609195402299,4.43213296398892,1.91415927284642,0
+1112,0.0132001096711586,0.210526315789474,21.0526315789474,2,92.5124564069047,0.914925373134328,20.7756232686981,6.10381255651775,0
+1113,-0.0125882976209541,0.0831024930747922,8.31024930747922,2,78.4218893703244,0.799679388371663,4.70914127423823,2.74125946362813,0
+1114,0.0347231242445942,0.265789473684211,26.5789473684211,2,92.0055234228793,0.834452167369651,21.8421052631579,0.20576535593165,0
+1115,0.0278961828719067,0.0831024930747922,8.31024930747922,5,66.4968626257275,0.666132313952771,3.32409972299169,7.0630673567454,0
+1116,0.0337283544963448,0.0941828254847645,9.41828254847645,4,75.7916391587842,0.724006116207951,4.70914127423823,0.152811036390417,0
+1117,-0.0573884880036719,0.0581717451523546,5.81717451523546,4,68.7464301372584,0.701378676470588,4.43213296398892,0,0
+1118,-0.0159792763628502,0.281578947368421,28.1578947368421,1,95.2171730229585,0.942302947484295,28.1578947368421,0,0
+1119,0.0949747719056388,1,100,1,100,NA,100,0,0
+1120,0.0795225489709186,0.886426592797784,88.6426592797784,1,99.6548206149311,0.650137296074948,88.6426592797784,0,0
+1121,0.0490850509990664,0.451523545706371,45.1523545706371,6,89.8969156016195,0.671818181818182,22.4376731301939,0,0
+1122,0.210431073272699,0.994736842105263,99.4736842105263,1,99.9857139002346,0.735006973500708,99.4736842105263,1.12472420520883,0
+1123,0.208776814734094,0.994459833795014,99.4459833795014,1,99.9845464081023,0.73455882352941,99.4459833795014,3.67965417718489,0
+1124,0.0975770545966015,0.753462603878116,75.3462603878116,1,99.1553098948745,0.849183139470964,75.3462603878116,5.29917013469864,0
+1125,-0.00113737398631232,0,0,0,NA,NA,0,NA,NA
+1126,0.0186357373631501,0.215789473684211,21.5789473684211,2,92.9828471723581,0.894468872946077,21.3157894736842,0.57024606844274,0
+1127,0.0653619203107674,0.894736842105263,89.4736842105263,1,99.6822873347675,0.641803278688525,89.4736842105263,0,0
+1128,0.0535760910206389,0.659279778393352,65.9279778393352,1,98.7134051402827,0.742778843518772,65.9279778393352,0,0
+1129,0.0319683150825422,0.185595567867036,18.5595567867036,5,81.348040304853,0.685156113727542,9.97229916897507,0,0
+1130,0.0128380866182852,0.113157894736842,11.3157894736842,3,81.2969034274975,0.812067260138477,6.31578947368421,0,0
+1131,0.0524107052761109,0.520775623268698,52.0775623268698,3,94.1449821865435,0.826107899807322,40.1662049861496,0.299254828311027,0
+1132,0.0617221029496454,0.700831024930748,70.0831024930748,1,98.9193346356796,0.936533052039381,70.0831024930748,0,0
+1133,-0.00332544310978363,0.0637119113573407,6.37119113573407,3,68.5777636529169,0.703320184089415,3.8781163434903,1.36993654914524,0
+1134,0.0366617976133344,0.260526315789474,26.0526315789474,2,94.3059012125916,0.817665640369467,25.7894736842105,0,0
+1135,0.0410899892447767,0.274238227146814,27.4238227146814,3,92.9927341189968,0.690367956085428,24.6537396121884,0.0524805579522643,0
+1136,0.0475719647322087,0.445983379501385,44.5983379501385,2,94.0040508541022,0.762179054054054,26.0387811634349,0,0
+1137,0.0565621993643776,0.609418282548476,60.9418282548476,2,98.1520577732038,0.868863518422418,60.6648199445983,0.104247175563465,0
+1138,0.0349313289101701,0.45,45,2,96.5388122203586,0.780663780663781,43.4210526315789,0,0
+1139,0.0602247161663994,0.686980609418283,68.6980609418283,2,98.1782150085419,0.786561641745499,67.0360110803324,0,0
+1140,0.030071205537016,0.373961218836565,37.3961218836565,1,96.4707798051925,0.974026908410677,37.3961218836565,0,0
+1141,0.0264996858388253,0.290858725761773,29.0858725761773,1,95.2543881188766,0.835854828042328,29.0858725761773,10.5289979435149,0
+1142,0.0628925602255232,0.562326869806094,56.2326869806094,3,95.5420297661082,0.715156297216533,43.4903047091413,8.81290673270014,0
+1143,-0.00484695175745353,0.186842105263158,18.6842105263158,3,84.5595071499308,0.832750809061489,11.8421052631579,0.762082113346583,0
+1144,0.0204976475602493,0.0581717451523546,5.81717451523546,4,63.7919054176196,0.668198529411765,3.601108033241,2.69337372552781,0
+1145,0.0182782096159935,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,7.27380523681641,0
+1146,0.0210128484046396,0.141274238227147,14.1274238227147,4,86.3113986602911,0.812606599925843,13.0193905817175,16.8007922827029,0
+1147,0.0173811419328463,0.068421052631579,6.8421052631579,6,64.5081994731253,0.502549262780763,3.15789473684211,16.8964191400088,0
+1148,0.0196307690097949,0.0193905817174515,1.93905817174515,2,53.6944186091776,0.872528248587571,1.66204986149584,15.2623519216265,5.19557523727417
+1149,0.00620718532090628,0,0,0,NA,NA,0,NA,NA
+1150,0.0109028467199287,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+1151,0.018489976920261,0.123684210526316,12.3684210526316,3,86.513628656511,0.671921921921922,11.0526315789474,6.96670396277245,0
+1152,0.015095842733816,0.0914127423822715,9.14127423822715,2,84.4502318275306,0.796183378500452,8.58725761772853,11.5686107259808,5.19557523727417
+1153,0.0200501328170143,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,14.1910425186157,10.3911504745483
+1154,0.023223263047668,0.0969529085872576,9.69529085872576,3,79.1527521925454,0.732705733023059,6.64819944598338,11.2790354864938,5.19557523727417
+1155,0.0184463046014762,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,8.65929206212362,5.19557523727417
+1156,0.0163217310190781,0.0443213296398892,4.43213296398892,5,48.5580013132095,0.476811594202899,1.66204986149584,12.129646807909,5.19557523727417
+1157,0.0153586329095036,0.0581717451523546,5.81717451523546,4,68.1889317964375,0.535477941176471,3.8781163434903,14.4300698779878,10.3911504745483
+1158,0.0270354432956345,0.166204986149584,16.6204986149584,3,82.8185763908546,0.827018911321237,8.58725761772853,13.8120455344518,0
+1159,0.0232114638328934,0.223684210526316,22.3684210526316,3,86.5559989457349,0.837916713435851,11.0526315789474,10.0734469918644,0
+1160,0.0218261850276881,0.03601108033241,3.601108033241,5,43.2303968445198,0.423690932311622,1.10803324099723,14.1340915606572,5.19557523727417
+1161,0.0193210616841631,0.0581717451523546,5.81717451523546,8,49.8943767902182,0.402757352941176,2.49307479224377,5.55912038258144,0
+1162,0.0247383029329532,0.116343490304709,11.6343490304709,7,67.3267503564856,0.537772087067862,3.8781163434903,11.109810545331,0
+1163,0.0198089158292293,0.0605263157894737,6.05263157894737,3,74.0147299627415,0.70432617491441,4.73684210526316,16.0269978564718,10.3911504745483
+1164,0.0171804381960937,0,0,0,NA,NA,0,NA,NA
+1165,0.0114355882729089,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,16.7141089439392,14.6953058242798
+1166,0.00688018683444387,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,5.91293446222941,5.19557523727417
+1167,0.0138659544010711,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.874827063706437,7.10526315789474,18.3642374674479,10.3911504745483
+1168,0.01315130112465,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.795467422096317,2.21606648199446,14.3932223320007,10.3911504745483
+1169,0.0123571795447385,0,0,0,NA,NA,0,NA,NA
+1170,0.0153282847657924,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,20.4965839385986,11.6176595687866
+1171,0.0139453819981243,0.0289473684210526,2.89473684210526,5,39.8243371274577,0.450767841011743,1.31578947368421,12.6793078075756,5.19557523727417
+1172,0.0155487156967623,0.0498614958448753,4.98614958448753,4,57.5094243058959,0.610193283662671,1.93905817174515,8.00270011689928,0
+1173,0.02029722505004,0.0775623268698061,7.75623268698061,8,52.3204809613743,0.494094094094094,2.49307479224377,12.7838863985879,0
+1174,0.0240190780414926,0.116343490304709,11.6343490304709,4,80.6566356425384,0.792794383858007,9.41828254847645,30.0371021316165,10.3911504745483
+1175,0.028070408226095,0.0815789473684211,8.15789473684211,3,79.4549359102614,0.825787965616046,7.10526315789474,12.0447866224474,0
+1176,0.0652900814545377,0.609418282548476,60.9418282548476,1,98.4390014517769,0.781439197370697,60.9418282548476,26.6497188763185,0
+1177,0.0313979981936659,0.21606648199446,21.606648199446,3,85.5194389502255,0.861345828852358,12.1883656509695,80.5552628345979,51.955753326416
+1178,0.0213026378943592,0.221606648199446,22.1606648199446,3,88.8028253310414,0.846198185554609,18.005540166205,81.1612316608429,42.8438110351562
+1179,0.0335441697234943,0.234210526315789,23.4210526315789,1,94.2341300741174,0.926084419373663,23.4210526315789,75.4190715832657,41.8880653381348
+1180,0.0282371459032829,0.235457063711911,23.5457063711911,2,92.7180080775997,0.939365582109607,22.9916897506925,84.926396448472,46.7601776123047
+1181,0.00275401934535255,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,33.2679138183594,33.2679138183594
+1182,0.0277482573002188,0.138504155124654,13.8504155124654,5,81.1796142503572,0.644940419897863,9.14127423822715,22.90600938797,0
+1183,0.0264855427456496,0.0815789473684211,8.1578947368421,5,71.2113386374167,0.586246418338109,3.94736842105263,9.19352616033246,0
+1184,0.0332675736082764,0.177285318559557,17.7285318559557,8,75.775161332624,0.598454785954786,8.86426592797784,6.14237938821316,0
+1185,0.0286580528399228,0.0664819944598338,6.64819944598338,6,58.3954675562978,0.577151335311573,3.04709141274238,3.21009202798208,0
+1186,0.0491584144354349,0.443213296398892,44.3213296398892,4,95.4563126972595,0.706772261143263,40.7202216066482,5.01544165015221,0
+1187,0.070299075086261,0.678947368421053,67.8947368421052,1,98.8449087667805,0.761395648779826,67.8947368421052,10.0679309996524,0
+1188,0.0527298747819211,0.465373961218837,46.5373961218837,3,93.9110841121365,0.740548219956544,30.7479224376731,27.3341962723505,0
+1189,0.0465643187109129,0.429362880886427,42.9362880886427,4,90.1006251769154,0.760194174757282,20.4986149584488,7.4560954893789,0
+1190,0.056215287539301,0.542936288088643,54.2936288088643,2,95.8515249296078,0.777605727605728,43.213296398892,12.2201873769566,0
+1191,0.0473822267744493,0.452631578947368,45.2631578947368,5,92.1373098233842,0.746420771657365,26.8421052631579,17.7708463946054,0
+1192,0.0552282540250157,0.462603878116344,46.2603878116344,1,97.3874214343619,0.818750836792074,46.2603878116344,17.9872612867527,0
+1193,0.0459537755846629,0.415512465373961,41.5512465373961,2,94.5736049447739,0.819577768203361,37.1191135734072,23.1826655356089,0
+1194,0.0444089596243117,0.409972299168975,40.9972299168975,3,95.0055669574224,0.781109782928815,38.2271468144044,27.7908025335621,0
+1195,0.0773264794913733,0.597368421052632,59.7368421052632,3,95.184163582821,0.823853891438372,32.6315789473684,11.9268447544081,0
+1196,0.0348674774920011,0.213296398891967,21.3296398891967,4,84.5890098720818,0.794376553438277,9.97229916897507,26.2084055628095,0
+1197,0.0619565644172482,0.584487534626039,58.4487534626039,2,97.6518529503909,0.815816326530612,57.3407202216066,2.89167546096006,0
+1198,0.0796004573011918,0.806094182825485,80.6094182825485,2,98.8079679782623,0.651162183337686,78.1163434903047,4.02219940296973,0
+1199,0.0622809015802647,0.573684210526316,57.3684210526316,2,97.5043381001895,0.832451499118166,56.0526315789474,6.58859550843545,0
+1200,0.0716574269058237,0.631578947368421,63.1578947368421,3,97.5109175660764,0.939232409381663,62.280701754386,0.64579537179735,0
+1201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1206,0.0219661068938302,0.0131578947368421,1.31578947368421,2,0,1,0.657894736842105,0,0
+1207,0.0283889229009683,0.182825484764543,18.2825484764543,4,86.7607982671217,0.808459837877671,13.8504155124654,1.02337088006915,0
+1208,0.0204847320697239,0.0415512465373961,4.15512465373961,5,49.2274056102515,0.525748817656332,1.93905817174515,1.18258689244588,0
+1209,0.0296265459957412,0.10803324099723,10.803324099723,2,81.6408378730398,0.79302436693741,6.37119113573407,0.532879511515299,0
+1210,0.0149031397136193,0.0315789473684211,3.15789473684211,1,74.9788187875667,0.93925831202046,3.15789473684211,0,0
+1211,0.00931488047914233,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,0,0
+1212,0.0311524004293631,0.265927977839335,26.5927977839335,3,90.6490750174243,0.833677051338306,22.7146814404432,0.0541205753882726,0
+1213,0.0147710916164739,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,0,0
+1214,0.0327744171688162,0.178947368421053,17.8947368421053,2,88.1272769071759,0.907886231415643,14.2105263157895,0,0
+1215,0.0266557684583171,0.168975069252078,16.8975069252078,3,83.4800087288716,0.772955974842767,8.03324099722992,1.82941388302162,0
+1216,0.036478369576637,0.213296398891967,21.3296398891967,6,86.7242022080085,0.775683512841756,17.7285318559557,0,0
+1217,0.0605253055269875,0.476454293628809,47.6454293628809,2,95.832652803792,0.88551733346686,44.8753462603878,2.54926164482915,0
+1218,0.0561420617319719,0.710526315789474,71.0526315789474,1,98.9923966022447,0.945490407028869,71.0526315789474,0.343070127345898,0
+1219,0.0801465426084077,0.905817174515235,90.5817174515235,1,99.7183199952349,0.965582991705596,90.5817174515235,0,0
+1220,0.071669566292842,0.872576177285319,87.2576177285319,1,99.6081737630215,0.98678817157078,87.2576177285319,0,0
+1221,0.0668529420575111,0.842105263157895,84.2105263157895,2,99.1729254026181,0.756835369400815,83.6565096952909,0,0
+1222,0.247499515527957,1,100,1,100,NA,100,25.8105801243531,0
+1223,0.190190263546247,0.922437673130194,92.2437673130194,1,99.7711467429596,0.918010447422212,92.2437673130194,62.6523422435955,15.5867252349854
+1224,0.11620774025638,0.745152354570637,74.5152354570637,2,98.8393870368659,0.891218252260009,74.2382271468144,22.1784036717893,0
+1225,0.0183514299729884,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+1226,0.0299246960206227,0.213157894736842,21.3157894736842,4,88.5385150693161,0.894091415830546,19.4736842105263,0.864563518100315,0
+1227,0.059007619974562,0.71191135734072,71.191135734072,1,98.9711809058421,0.812370062370062,71.191135734072,0,0
+1228,0.0587205182544247,0.803324099722992,80.3324099722992,1,99.3571199051226,0.804083214885644,80.3324099722992,0,0
+1229,0.0605562631269127,0.739612188365651,73.9612188365651,1,99.0956604634,0.892682719667049,73.9612188365651,0,0
+1230,-0.0144277464476641,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.65672990063234,2.89473684210526,0,0
+1231,0.0425935479350533,0.268698060941828,26.8698060941828,4,88.138003618247,0.77209595959596,14.9584487534626,5.36499116838593,0
+1232,0.045840208002023,0.407202216066482,40.7202216066482,2,96.3365115943514,0.937289372198867,40.4432132963989,0,0
+1233,-0.00969224503886863,0.03601108033241,3.601108033241,2,70.0302904667729,0.884738186462324,3.32409972299169,0.799319267272949,0
+1234,-0.0120492541006043,0.118421052631579,11.8421052631579,2,87.5009187807936,0.865671641791045,11.3157894736842,0,0
+1235,0.0402040941556245,0.346260387811634,34.6260387811634,3,94.2507322558718,0.797842156350332,32.409972299169,0.332516815185547,0
+1236,-0.0851288775751694,0,0,0,NA,NA,0,NA,NA
+1237,-0.0908414349853193,0.0581717451523546,5.81717451523546,1,82.5214449195341,1,5.81717451523546,0,0
+1238,-0.102227623937468,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.952677459526775,3.94736842105263,0,0
+1239,-0.0662204100607851,0.196675900277008,19.6675900277008,1,93.028415830176,0.930289655172414,19.6675900277008,0,0
+1240,0.0444874636195387,0.50415512465374,50.415512465374,3,96.6575012266708,0.922202145118777,49.584487534626,0,0
+1241,0.0415811474003654,0.426592797783933,42.6592797783933,2,95.2655623042349,0.808965364196582,36.2880886426593,4.09295286451067,0
+1242,0.066295075140006,0.573407202216066,57.3407202216066,3,96.6822573745513,0.695564176083657,51.8005540166205,7.39255494426414,0
+1243,0.0324400835186488,0.231578947368421,23.1578947368421,6,85.2332126215992,0.743041619404939,16.8421052631579,3.18904208053242,0
+1244,0.0309246931277223,0.204986149584488,20.4986149584488,6,79.4425486380495,0.709729295095149,8.86426592797784,7.03505668124637,0
+1245,0.0204674185048421,0.0332409972299169,3.32409972299169,3,54.6185229131174,0.634923310298331,1.66204986149584,7.48395907878876,0
+1246,0.0199546923589742,0.0277008310249307,2.77008310249307,5,32.4430614223119,0.367083059390752,0.831024930747922,55.386325263977,27.9790287017822
+1247,0.00831153162951427,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,59.6644659042358,47.9008369445801
+1248,0.0251211684633826,0.0664819944598338,6.64819944598338,7,50.7990390898169,0.492581602373887,1.66204986149584,21.7801944414775,0
+1249,0.00842154111166749,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,18.7875315348307,15.5867252349854
+1250,0.0164846924726615,0.0249307479224377,2.49307479224377,3,51.3992027392928,0.487215909090909,1.66204986149584,5.09652858310276,0
+1251,0.0108013134240022,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,0.74222503389631,0
+1252,0.00756451295491189,0,0,0,NA,NA,0,NA,NA
+1253,0.012993098741584,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+1254,0.00939804126545297,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417
+1255,0.0140487809310104,0.0184210526315789,1.84210526315789,3,38.9311331818969,0.490616621983914,0.789473684210526,40.7205690656389,36.7382659912109
+1256,0.0105554244725991,0.0581717451523546,5.81717451523546,3,66.3737276922825,0.635018382352941,2.77008310249307,21.5613290014721,7.34765291213989
+1257,0.00968577673916305,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,39.819229888916,18.7329120635986
+1258,0.0115207283316394,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,29.3906116485596,29.3906116485596
+1259,0.0131751806436928,0.0236842105263158,2.36842105263158,2,56.6643481405042,0.658580413297394,1.57894736842105,18.6887955135769,15.5867252349854
+1260,0.00985414878256276,0.0415512465373961,4.15512465373961,3,58.7146493383558,0.525748817656332,1.66204986149584,13.2216071764628,5.19557523727417
+1261,0.0179698460539696,0.0609418282548476,6.09418282548476,2,74.0184442226122,0.655474579212216,4.15512465373961,15.6297549334439,10.3911504745483
+1262,0.0103796960243332,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,35.0701322555542,31.1734504699707
+1263,0.0130805911554106,0.0473684210526316,4.73684210526316,2,76.4701262567725,0.844485369347248,4.47368421052632,12.9363164107005,5.19557523727417
+1264,0.00410274166855556,0,0,0,NA,NA,0,NA,NA
+1265,0.0139882682167688,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,11.9112103462219,5.19557523727417
+1266,0.0107037983294791,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,13.5269573926926,7.34765291213989
+1267,0.0168157152500307,0.0631578947368421,6.31578947368421,3,69.9636235746934,0.634831460674157,2.89473684210526,9.41225657860438,0
+1268,0.0159253331509737,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,9.52522126833598,5.19557523727417
+1269,0.0148511230720456,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,49.0149574279785,49.0149574279785
+1270,0.0151693838001381,0.0221606648199446,2.21606648199446,2,55.3960460550465,0.693201133144476,1.66204986149584,5.19557523727417,5.19557523727417
+1271,0.0211026610388408,0.0263157894736842,2.63157894736842,5,36.5232178697678,0.446985446985447,1.31578947368421,4.80208349227905,0
+1272,0.0183410249211039,0.0277008310249307,2.77008310249307,2,61.6502325407046,0.762656147271532,2.21606648199446,5.74864168167114,0
+1273,0.0247657163442689,0.0886426592797784,8.86426592797784,7,59.9464960943244,0.535772737900397,2.77008310249307,8.50484816730022,0
+1274,0.03076461195844,0.188365650969529,18.8365650969529,6,77.4804066505135,0.637622967275647,7.20221606648199,7.21364420301774,0
+1275,0.0365260759342116,0.197368421052632,19.7368421052632,5,81.9747683511385,0.811227024341779,8.42105263157895,10.0673315811157,0
+1276,0.0158210457313816,0.0941828254847645,9.41828254847645,2,84.8724455569932,0.783147662734819,8.86426592797784,30.642294771531,15.5867252349854
+1277,0.00407407947073767,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,46.7601776123047,46.7601776123047
+1278,-0.00270242088291648,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,36.750794728597,32.8597030639648
+1279,0.0106774325105777,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,39.5683212280273,39.5683212280273
+1280,0.0158518821218949,0.0277008310249307,2.77008310249307,3,48.6078808399273,0.60442691211922,1.10803324099723,31.271497297287,0
+1281,0.0143700077706674,0.0498614958448753,4.98614958448753,2,76.2556314648576,0.883057985098801,4.70914127423823,33.1742651197645,25.977876663208
+1282,0.0271645864993244,0.102493074792244,10.2493074792244,2,80.7328322999127,0.74428253390002,5.54016620498615,17.730427574467,0
+1283,0.028770333324945,0.168421052631579,16.8421052631579,2,90.7790683658233,0.860420433996383,16.3157894736842,80.7805597782135,31.1734504699707
+1284,0.0362991858323729,0.279778393351801,27.9778393351801,3,90.1882507171022,0.792881427964301,20.2216066481994,34.4813050468369,5.19557523727417
+1285,0.0386359423072541,0.362880886426593,36.2880886426593,3,94.687061503991,0.770147353101692,34.3490304709141,13.7738605309989,0
+1286,0.0168096019244175,0.0941828254847645,9.41828254847645,6,63.0826948650176,0.586009174311927,2.49307479224377,6.52888913715587,0
+1287,0.0458922602012631,0.355263157894737,35.5263157894737,4,90.3514480153498,0.804546208727393,21.5789473684211,19.1383372094896,0
+1288,0.0272138830759031,0.199445983379501,19.9445983379501,5,82.2257206078247,0.744271585428984,11.0803324099723,20.478350520134,0
+1289,0.0368964971480775,0.279778393351801,27.9778393351801,6,85.1347827426402,0.731512962175946,11.9113573407202,19.2402115954031,0
+1290,0.0356072584745007,0.321329639889197,32.1329639889197,4,86.9528995172213,0.789504373177843,15.7894736842105,25.8801220573228,0
+1291,0.0265251762143682,0.178947368421053,17.8947368421053,6,84.1976327953124,0.733893557422969,13.6842105263158,18.0715074959923,0
+1292,0.0483153858929911,0.39612188365651,39.612188365651,4,90.6697114316162,0.747181175152322,27.1468144044321,9.04734673199954,0
+1293,0.0408042470862156,0.373961218836565,37.3961218836565,3,91.9822287427121,0.785721994388085,25.7617728531856,5.87439033013803,0
+1294,0.0381905492888406,0.329639889196676,32.9639889196676,6,85.1008594966844,0.723752678298133,15.7894736842105,8.51346816535757,0
+1295,0.0486197830455096,0.486842105263158,48.6842105263158,2,94.5289431890792,0.749287749287749,27.8947368421053,9.00572368776476,0
+1296,0.0390332034908988,0.301939058171745,30.1939058171745,5,86.2780650157618,0.781846748851825,15.5124653739612,7.72792292078701,0
+1297,0.0523445397977255,0.46814404432133,46.814404432133,3,92.3674095095019,0.734842414529914,24.0997229916897,4.9959665699118,0
+1298,0.0495818693899987,0.470914127423823,47.0914127423823,5,89.6621091400745,0.752421256879046,26.5927977839335,5.65334893114427,0
+1299,0.0349641555739493,0.307894736842105,30.7894736842105,3,90.7397133692249,0.836430159982782,15.5263157894737,15.7548995262537,0
+1300,0.0473402642257912,0.345029239766082,34.5029239766082,2,92.3580732024103,0.907251335113485,27.4853801169591,1.54957966885324,0
+1301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1306,-0.00150704408329148,0,0,0,NA,NA,0,NA,NA
+1307,0.0147038389425832,0.223684210526316,22.3684210526316,2,90.599503143092,0.854978112021551,18.4210526315789,28.5136132745182,10.3911504745483
+1308,0.0497798753216078,0.476315789473684,47.6315789473684,6,90.241238917349,0.652291307282682,27.6315789473684,42.7166299240365,5.19557523727417
+1309,0.0586802194630237,0.818421052631579,81.8421052631579,1,99.430180885378,0.642874808329624,81.8421052631579,40.4115602088511,0
+1310,0.0468185676384019,0.445,44.5,2,94.1755654526542,0.797365754812563,30,5.28367203005244,0
+1311,0.0411093587254359,0.357894736842105,35.7894736842105,5,90.3817843105111,0.78020888418826,21.8421052631579,4.63406061424929,0
+1312,0.00773456898812009,0.0473684210526316,4.73684210526316,4,62.4492274141944,0.688970738694496,2.89473684210526,0,0
+1313,0.000764953178795143,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,55.980396270752,51.170482635498
+1314,0.057374629334081,0.4675,46.75,2,96.4109658711984,0.831745773290998,43.5,25.5553536287604,0
+1315,0.0227526970173226,0.0578947368421053,5.78947368421053,3,72.859711409249,0.687808084127506,4.47368421052632,2.4189277345484,0
+1316,0.0352409601538535,0.173684210526316,17.3684210526316,5,86.0106201371233,0.736914981999446,13.6842105263158,1.29214062835231,0
+1317,0.00964850374155886,0.0394736842105263,3.94736842105263,3,59.8111021773408,0.716064757160648,1.84210526315789,3.89413235982259,0
+1318,0.0647016099256143,0.6675,66.75,2,98.2515366772265,0.915957558567077,66,0.019459083285671,0
+1319,0.0407885493447386,0.252631578947368,25.2631578947368,7,81.2910488922788,0.665492957746479,12.3684210526316,0.0541205753882726,0
+1320,0.0422942163287907,0.334210526315789,33.421052631579,4,90.576502555991,0.772427835668943,18.1578947368421,0,0
+1321,0.046516332976324,0.360526315789474,36.0526315789474,3,91.5921185615275,0.774814814814815,18.9473684210526,0.0379239068414173,0
+1322,0.196643394567072,0.985,98.5,1,99.9600766120013,0.465240641711228,98.5,32.8356263928002,0
+1323,0.0667947177611304,0.626315789473684,62.6315789473684,1,98.5747402420146,0.981959170754866,62.6315789473684,93.076967255408,67.54248046875
+1324,0.0284741418847453,0.171052631578947,17.1052631578947,3,90.0644817797082,0.829189492906307,16.3157894736842,1.19897890824538,0
+1325,0.0168999819066621,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+1326,0.0264559848151521,0.24,24,3,91.251692597751,0.885250917992656,22.25,2.39177683989207,0
+1327,0.0427587819775861,0.260526315789474,26.0526315789474,3,91.1695402598147,0.802471110400256,22.1052631578947,0.314883347713586,0
+1328,0.0420027355859546,0.218421052631579,21.8421052631579,3,87.9117764928433,0.782404544309306,15.2631578947368,0,0
+1329,0.0265318677404522,0.118421052631579,11.8421052631579,4,78.4392285869099,0.761194029850746,7.36842105263158,0,0
+1330,-0.030283924015821,0.0025,0.25,1,0,NA,0.25,0,0
+1331,0.0467439543199649,0.423684210526316,42.3684210526316,4,90.9683965638924,0.830001234110823,29.7368421052632,3.44264293753583,0
+1332,0.0363692268407919,0.318421052631579,31.8421052631579,3,92.8751532900581,0.913302913302913,29.7368421052632,0.0858772766491598,0
+1333,-0.0738757100274884,0,0,0,NA,NA,0,NA,NA
+1334,-0.0847045109805185,0,0,0,NA,NA,0,NA,NA
+1335,-0.0237837747444007,0.118421052631579,11.8421052631579,1,89.6940898761467,0.985074626865672,11.8421052631579,0.115457227494982,0
+1336,-0.141997081801099,0,0,0,NA,NA,0,NA,NA
+1337,-0.148504378097622,0,0,0,NA,NA,0,NA,NA
+1338,-0.160628603585064,0,0,0,NA,NA,0,NA,NA
+1339,-0.161494353021446,0,0,0,NA,NA,0,NA,NA
+1340,-0.0106990903232815,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,0,0
+1341,0.0111317459892521,0.144736842105263,14.4736842105263,3,88.4535214899024,0.815384615384615,13.6842105263158,15.7133009130305,0
+1342,0.0189137629892924,0.0921052631578947,9.21052631578947,2,80.0974139150922,0.810094952523738,6.57894736842105,9.14517216001238,0
+1343,0.0274834203273349,0.2025,20.25,4,88.8771560126921,0.730059212817833,15.75,15.9912919762694,0
+1344,0.0313945448918323,0.210526315789474,21.0526315789474,4,83.235363459741,0.74131455399061,9.21052631578947,19.775087672472,0
+1345,0.032677417635444,0.147368421052632,14.7368421052632,6,75.4636516457664,0.661448389970727,5.78947368421053,22.7698746323586,0
+1346,0.0375078792549749,0.313157894736842,31.3157894736842,5,84.4103470747661,0.696679438058748,8.15789473684211,51.9212269662809,25.977876663208
+1347,0.0388368080994405,0.275,27.5,6,88.5867756882397,0.688095650667129,21.25,26.227685065703,0
+1348,0.0225335593376689,0.0605263157894737,6.05263157894737,4,69.0280599277946,0.615624027388733,3.68421052631579,24.9694200598675,10.3911504745483
+1349,0.0316960390995519,0.223684210526316,22.3684210526316,2,89.3103708736574,0.872039510607251,15.2631578947368,56.8747982025146,25.977876663208
+1350,0.00865839189582402,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,5.91293446222941,5.19557523727417
+1351,0.0129602051717029,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,16.253776550293,10.3911504745483
+1352,0.0127379235596316,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,15.5746519565582,14.6953058242798
+1353,0.00357357696416569,0.0210526315789474,2.10526315789474,3,42.6827771112369,0.489247311827957,1.05263157894737,6.26734548807144,0
+1354,0.0213678780855844,0.0868421052631579,8.68421052631579,7,61.7514463952323,0.553847795922724,3.15789473684211,14.137675372037,0
+1355,0.0231271364657732,0.15,15,3,87.4668306595215,0.773755656108597,12.75,37.9182799577713,0
+1356,0.0122405018372773,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,11.798388004303,7.34765291213989
+1357,0.0189090458456696,0.0894736842105263,8.94736842105263,4,77.0891369286281,0.705821635012386,6.31578947368421,10.7156586647034,0
+1358,0.0159374970076418,0.0631578947368421,6.31578947368421,4,70.6279097594616,0.831460674157303,5.26315789473684,15.1650869250298,5.19557523727417
+1359,0.000913563484809856,0.0025,0.25,1,0,NA,0.25,56.1987419128418,56.1987419128418
+1360,0.00931879972624397,0.0789473684210526,7.89473684210526,5,70.9009848895605,0.53469387755102,3.94736842105263,10.9868001461029,0
+1361,0.00639308827358993,0.0236842105263158,2.36842105263158,4,39.9312986090565,0.40251572327044,1.05263157894737,9.2365779876709,0
+1362,0.00395254598219086,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,8.65929206212362,5.19557523727417
+1363,0.0106509199984487,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,5.19557523727417,0
+1364,0.0130748325178789,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,10.194324016571,7.34765291213989
+1365,0.0159132716017235,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,12.9065885543823,10.3911504745483
+1366,0.0195968181393446,0.0526315789473684,5.26315789473684,2,72.3226977310897,0.761648745519713,3.15789473684211,13.1630016326904,5.19557523727417
+1367,0.0101683693080213,0.0025,0.25,1,0,NA,0.25,5.19557523727417,5.19557523727417
+1368,0.0174098739577044,0.0789473684210526,7.89473684210526,2,83.0273833676639,0.800583090379009,7.36842105263158,31.7363193511963,10.3911504745483
+1369,0.0248264644206325,0.0842105263157895,8.42105263157895,3,76.9038028289694,0.811007957559682,6.57894736842105,29.6967504918575,5.19557523727417
+1370,0.0289110254863628,0.144736842105263,14.4736842105263,6,79.5318163675413,0.766153846153846,11.3157894736842,17.3558650363575,5.19557523727417
+1371,0.0144572819900486,0.0575,5.75,3,71.4487744926719,0.73474801061008,4,8.33391098354174,0
+1372,-0.00232267752721662,0.0815789473684211,8.1578947368421,2,78.885671576978,0.84756446991404,4.73684210526316,17.6230950509348,5.19557523727417
+1373,0.0340307148456831,0.273684210526316,27.3684210526316,6,84.7700864884485,0.793846392311865,14.2105263157895,11.961149096489,0
+1374,0.0286999539690441,0.181578947368421,18.1578947368421,4,82.5200866453047,0.828333023305254,8.15789473684211,20.6010716134223,0
+1375,0.0531306509100978,0.255,25.5,4,88.3659033780281,0.88264202149118,19.75,32.2865719654981,0
+1376,0.00796132794101523,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,6.234690284729,5.19557523727417
+1377,0.0176422441040981,0.0342105263157895,3.42105263157895,3,56.4085533093324,0.654859218891916,1.84210526315789,32.8330986316387,11.6176595687866
+1378,-0.00327596517653499,0.0868421052631579,8.68421052631579,2,82.1945815810208,0.918881417440495,7.89473684210526,19.4739635785421,7.34765291213989
+1379,0.0380698354679771,0.205,20.5,3,87.8380043715431,0.904576013879852,17.5,3.13909075899822,0
+1380,0.0274212124710462,0.184210526315789,18.4210526315789,7,78.1632953454259,0.691056910569106,10.7894736842105,23.5421199662345,0
+1381,0.036586635981956,0.255263157894737,25.5263157894737,6,84.9678393197006,0.753056334023801,16.5789473684211,61.6717533819454,25.977876663208
+1382,0.0262330446244098,0.115789473684211,11.5789473684211,3,86.0195013273545,0.893018018018018,11.0526315789474,62.0159430937334,41.5646018981934
+1383,0.0293225594645082,0.1775,17.75,2,88.7019283204085,0.883282674772036,13.75,116.775374291648,91.9191131591797
+1384,0.0156166485318337,0.105263157894737,10.5263157894737,3,77.8617024890699,0.716417910447761,6.57894736842105,39.4367147564888,0
+1385,0.0419596399015159,0.342105263157895,34.2105263157895,3,92.2844806805892,0.73704641350211,20.5263157894737,9.60233978124765,0
+1386,0.0379091886430136,0.297368421052632,29.7368421052632,6,87.0291465144087,0.797679371374018,17.1052631578947,2.87326004230871,0
+1387,0.0550409796169515,0.4975,49.75,2,95.7019037721288,0.843600426054012,40.5,7.24214351596545,0
+1388,0.0518750689198465,0.439473684210526,43.9473684210526,2,94.1933677917777,0.768306810560332,25.5263157894737,12.6757793569279,0
+1389,0.0526267978166671,0.481578947368421,48.1578947368421,2,94.6688314790729,0.788844501847235,30.5263157894737,4.66256371482474,0
+1390,0.0912219715439469,0.697368421052632,69.7368421052632,1,98.9321616400442,0.76065086169189,69.7368421052632,15.0192203557716,0
+1391,0.0563559391576382,0.5825,58.25,2,98.0247363981564,0.823800674513043,57.75,17.2233411887173,0
+1392,0.0872786060373887,0.786842105263158,78.6842105263158,1,99.3114189797412,0.758349231410214,78.6842105263158,2.69129559507338,0
+1393,0.0713866803483573,0.710526315789474,71.0526315789474,3,98.2390813750477,0.71382463690156,69.4736842105263,5.0022118586081,0
+1394,0.0874951390705782,0.807894736842105,80.7894736842105,1,99.391368149945,0.810873583921885,80.7894736842105,2.68689382814041,0
+1395,0.063235322846449,0.63,63,2,98.1931853641165,0.725148877691251,62,2.10723110796913,0
+1396,0.0623698094933245,0.6,60,6,91.49108457981,0.694117647058824,21.0526315789474,8.50866843733871,0
+1397,0.0762711445932693,0.763157894736842,76.3157894736842,2,98.7678736718604,0.71335372069317,75.2631578947368,2.24384143434722,0
+1398,0.0665908350607137,0.707894736842105,70.7894736842105,2,98.7305754386172,0.674605298367675,70.2631578947368,1.47864041452514,0
+1399,0.0381910402028188,0.3075,30.75,5,86.8530109517257,0.689174531738194,16.25,32.1823411259225,0
+1400,0.0741406270945542,0.605555555555556,60.5555555555556,3,95.6423432451397,0.856379657253868,55.2777777777778,5.22846152148116,0
+1401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1406,0.0144908622885276,0.164473684210526,16.4473684210526,2,83.7631325800645,0.880314960629921,15.7894736842105,1.03911504745483,0
+1407,0.0290668936764919,0.18005540166205,18.005540166205,7,79.6459394379702,0.697799569480985,10.2493074792244,6.15197756107037,0
+1408,0.0408895232349423,0.25207756232687,25.207756232687,7,81.9465340717335,0.645107453132145,10.803324099723,31.2376825416481,0
+1409,0.0398367593433983,0.296398891966759,29.6398891966759,4,91.8758013981508,0.80117090285994,26.5927977839335,42.4842212846346,0
+1410,0.0293667977135077,0.0947368421052632,9.47368421052632,7,62.6882655868767,0.484496124031008,2.63157894736842,28.8433559735616,0
+1411,0.0357581985104375,0.238227146814404,23.8227146814404,2,92.8864907259316,0.828401663695781,22.7146814404432,27.1780501909034,5.19557523727417
+1412,-0.0309778510628069,0.0692520775623269,6.92520775623269,2,76.8644389047778,0.811979166666667,4.98614958448753,9.58803140640259,0
+1413,0.00654590815880369,0.0470914127423823,4.70914127423823,6,52.4295539412683,0.412325581395349,2.21606648199446,33.5665610818302,15.5867252349854
+1414,0.010956389629619,0.0657894736842105,6.57894736842105,4,67.5936057940987,0.652112676056338,3.68421052631579,30.7233736038208,10.3911504745483
+1415,0.024662662591438,0.0969529085872576,9.69529085872576,2,82.861517307731,0.847260418870319,8.03324099722992,7.79235860279628,0
+1416,0.0333936535130923,0.0914127423822715,9.14127423822715,6,64.6636428577588,0.612748419150858,3.32409972299169,1.96466877966216,0
+1417,0.00362200353771398,0.0277008310249307,2.77008310249307,1,72.175958031556,1,2.77008310249307,9.35203528404236,0
+1418,0.0274168209612406,0.144736842105263,14.4736842105263,6,77.1505285796093,0.753846153846154,9.47368421052632,0.0944650043140758,0
+1419,0.0358868417763177,0.210526315789474,21.0526315789474,5,83.6505717686288,0.735323383084577,11.6343490304709,2.73556194807354,0
+1420,0.0232545428271173,0.0858725761772853,8.58725761772853,3,74.5556416665035,0.759333333333333,4.15512465373961,0.502797603607178,0
+1421,0.030619204701879,0.202216066481994,20.2216066481994,4,85.3014402853968,0.716010199652778,11.9113573407202,5.13825732061308,0
+1422,0.0170119350894789,0.0894736842105263,8.94736842105263,2,81.3813266701094,0.803881090008258,7.36842105263158,40.5360855214736,10.3911504745483
+1423,0.0397651938015226,0.401662049861496,40.1662049861496,4,91.6475893500827,0.810796645702306,32.1329639889197,36.7930710726771,0
+1424,0.096525849252707,0.67590027700831,67.590027700831,2,98.4991341335948,0.736111111111111,67.0360110803324,9.98457276821136,0
+1425,0.085142447477738,0.745152354570637,74.5152354570637,1,99.1197197465866,0.883448127421438,74.5152354570637,0,0
+1426,0.0838699648793983,0.894736842105263,89.4736842105263,1,99.6907669965973,0.793157076205288,89.4736842105263,0.104345902274637,0
+1427,0.0666012285829333,0.817174515235457,81.7174515235457,2,97.8320628556849,0.733906633906634,74.5152354570637,0,0
+1428,0.0538179906265077,0.634349030470914,63.4349030470914,2,98.3096459447735,0.859094457455113,63.1578947368421,0,0
+1429,0.0395881939109239,0.451523545706371,45.1523545706371,2,96.5639585155289,0.866296296296296,44.3213296398892,0,0
+1430,-0.0400714831725437,0.0578947368421053,5.78947368421053,1,82.9343718737514,0.843904042063753,5.78947368421053,0,0
+1431,0.0423203436441322,0.326869806094183,32.6869806094183,7,82.8049663049402,0.604303680627668,9.69529085872576,0.608869774866912,0
+1432,0.0294858333034734,0.246537396121884,24.6537396121884,3,91.7029778771981,0.916527931927488,23.5457063711911,0,0
+1433,-0.0823425445963636,0,0,0,NA,NA,0,NA,NA
+1434,-0.0847309974904515,0,0,0,NA,NA,0,NA,NA
+1435,-0.0571721288261237,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.743607954545455,2.49307479224377,2.30914454989963,0
+1436,-0.136123537728331,0,0,0,NA,NA,0,NA,NA
+1437,-0.142267250804194,0,0,0,NA,NA,0,NA,NA
+1438,-0.110570852476495,0,0,0,NA,NA,0,NA,NA
+1439,-0.0908305804012021,0,0,0,NA,NA,0,NA,NA
+1440,0.00338926760569291,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,4.75371287085793,0
+1441,0.000570748227224295,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+1442,0.0269371586502373,0.152354570637119,15.2354570637119,3,86.968200999821,0.801307189542484,13.2963988919668,12.4723668011752,0
+1443,0.0237233369479471,0.0315789473684211,3.15789473684211,2,64.5097418171392,0.696291560102302,2.36842105263158,84.5878314971924,63.206901550293
+1444,0.0188628522156953,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,50.2454137802124,33.2679138183594
+1445,0.0215135666558202,0.0554016620498615,5.54016620498615,5,55.9732833510366,0.556049569577145,2.21606648199446,14.4032318353653,0
+1446,0.0196654123685795,0.0554016620498615,5.54016620498615,5,54.4879942613516,0.453599470248794,1.66204986149584,66.1472797393799,42.8438110351562
+1447,0.0117093798236486,0,0,0,NA,NA,0,NA,NA
+1448,0.0137755829756439,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,21.477500140667,7.34765291213989
+1449,0.0315864787271884,0.207756232686981,20.7756232686981,5,84.66787281345,0.81831426149608,14.1274238227147,61.1897184244792,15.5867252349854
+1450,0.0185156717111593,0.10803324099723,10.803324099723,1,88.6531393205741,0.913760152890588,10.803324099723,62.6366309141501,51.4335708618164
+1451,0.0163115194739117,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,17.710278857838,11.6176595687866
+1452,0.0188842810888386,0.038781163434903,3.8781163434903,4,58.3494540897699,0.635878962536023,2.77008310249307,46.8600944791521,18.7329120635986
+1453,0.0191318809323337,0.152354570637119,15.2354570637119,7,75.9877756494776,0.726797385620915,9.69529085872576,37.2338484504006,10.3911504745483
+1454,0.00933632428422346,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,9.74170362949371,5.19557523727417
+1455,0.0145373246980231,0.0526315789473684,5.26315789473684,3,68.0684078287621,0.727598566308244,3.42105263157895,8.97359063625336,0
+1456,0.0075798209531703,0,0,0,NA,NA,0,NA,NA
+1457,0.0195888438151757,0.0304709141274238,3.04709141274238,7,24.776598840576,0.174857142857143,0.831024930747922,47.6976526433771,31.1734504699707
+1458,0.0198469170661617,0.0332409972299169,3.32409972299169,4,54.2652939860693,0.513231080397775,2.21606648199446,10.2705045541128,0
+1459,0.0202591768368668,0.0368421052631579,3.68421052631579,3,66.4529068619687,0.740437158469945,3.15789473684211,2.2868983745575,0
+1460,0.0190003532907842,0.0997229916897507,9.97229916897507,5,73.613222737953,0.537179487179487,5.54016620498615,12.9118534988827,0
+1461,0.0381125296307876,0.135734072022161,13.5734072022161,3,88.0635968916973,0.683188339438339,12.7423822714681,20.7584380811575,5.19557523727417
+1462,0.0391398928975661,0.102493074792244,10.2493074792244,5,71.5011778267498,0.579892734264319,5.26315789473684,25.8087870108115,11.6176595687866
+1463,0.0204999048033355,0.0789473684210526,7.89473684210526,6,70.9040945571208,0.601166180758018,5.52631578947368,19.3380159219106,5.19557523727417
+1464,0.021403651350099,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.933639705882353,5.81717451523546,0.74222503389631,0
+1465,0.0182764180124076,0.03601108033241,3.601108033241,2,69.363302574963,0.942369093231162,3.32409972299169,14.7267346382141,7.34765291213989
+1466,0.01007531702131,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,7.79336285591125,5.19557523727417
+1467,0.0229218963894374,0.0736842105263158,7.36842105263158,4,69.5148571779702,0.616161616161616,3.42105263157895,11.1105620690754,5.19557523727417
+1468,0.0302940037352432,0.196675900277008,19.6675900277008,3,86.1086184796951,0.880496551724138,11.0803324099723,24.6740845760829,0
+1469,0.0200475565545774,0.174515235457064,17.4515235457064,2,86.733434074433,0.845820622330689,9.41828254847645,38.6161108471098,11.6176595687866
+1470,0.0238814764851217,0.113573407202216,11.3573407202216,2,83.5348533541682,0.901902173913043,10.2493074792244,23.8208694458008,5.19557523727417
+1471,0.0145646918374232,0,0,0,NA,NA,0,NA,NA
+1472,0.00646778853851051,0.116343490304709,11.6343490304709,4,79.1073261217204,0.697161022561703,6.92520775623269,13.4230927058629,0
+1473,0.0176620566393533,0.0664819944598338,6.64819944598338,3,72.7862000886869,0.802670623145401,5.26315789473684,20.4773188432058,0
+1474,0.0274190117583142,0.188365650969529,18.8365650969529,4,84.41739269489,0.772220150858978,12.1883656509695,22.1818033036064,0
+1475,0.018032778401831,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,23.2353191375732,23.2353191375732
+1476,0.0197219533700344,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,10.6363138622708,0
+1477,0.0242270113795659,0.0803324099722992,8.03324099722992,4,70.5645286125411,0.699243783645219,4.70914127423823,23.7721428049022,11.6176595687866
+1478,0.00816371737538321,0.0304709141274238,3.04709141274238,5,40.3517430439582,0.381142857142857,1.38504155124654,30.5618850534612,10.3911504745483
+1479,0.0290314194603621,0.257894736842105,25.7894736842105,3,91.8643458775345,0.854529335912315,23.6842105263158,25.1741334175577,0
+1480,0.030073643231202,0.304709141274238,30.4709141274238,4,87.9520753716948,0.797633586257983,19.1135734072022,58.9591582905162,22.0429573059082
+1481,0.0391923792481582,0.321329639889197,32.1329639889197,4,88.841741898048,0.698289601554908,15.7894736842105,63.6739143009844,21.4219055175781
+1482,0.00913636326254478,0.0443213296398892,4.43213296398892,2,69.2536080762502,0.738405797101449,2.77008310249307,102.208561420441,83.1292037963867
+1483,0.0154367242974905,0,0,0,NA,NA,0,NA,NA
+1484,0.0138148733794349,0.0304709141274238,3.04709141274238,3,56.9154881169365,0.656190476190476,2.21606648199446,29.9368397105824,15.5867252349854
+1485,0.0334720980255922,0.135734072022161,13.5734072022161,9,70.3151460163833,0.641865079365079,7.75623268698061,2.55161010002603,0
+1486,0.0538355513091117,0.409972299168975,40.9972299168975,3,94.6518019254965,0.899935900767459,39.0581717451524,2.79971396278691,0
+1487,0.0722629737429854,0.571052631578947,57.1052631578947,2,97.9454682753194,0.896130717366215,56.8421052631579,5.8386035624737,0
+1488,0.0662785944666093,0.526315789473684,52.6315789473684,2,95.2279439445575,0.778093434343434,38.781163434903,21.3118838385532,0
+1489,0.0706401023545517,0.684210526315789,68.4210526315789,1,98.8392163908112,0.684704184704185,68.4210526315789,5.50914254941438,0
+1490,0.109439528646551,0.767313019390582,76.7313019390582,1,99.2133368920022,0.760325091575091,76.7313019390582,15.219393886814,0
+1491,0.0499950902648331,0.494736842105263,49.4736842105263,4,96.1800403348651,0.789571360153257,46.3157894736842,13.994858670742,0
+1492,0.0686832575666911,0.709141274238227,70.9141274238227,1,98.9583333333333,0.770793650793651,70.9141274238227,2.17983119934797,0
+1493,0.0783450171955116,0.803324099722992,80.3324099722992,1,99.3571199051226,0.598837059051557,80.3324099722992,2.80741437221396,0
+1494,0.0727404094639123,0.714681440443213,71.4681440443213,2,98.7467309287206,0.600896500432169,70.9141274238227,2.79269754239755,0
+1495,0.0970092966074222,0.863157894736842,86.3157894736842,1,99.587135979304,0.634025102522679,86.3157894736842,3.38618045463795,0
+1496,0.104137051458422,0.880886426592798,88.0886426592798,1,99.6362939290284,0.706162790697674,88.0886426592798,3.91667565909572,0
+1497,0.0802942048526083,0.822714681440443,82.2714681440443,1,99.4306009941514,0.677101967799642,82.2714681440443,3.2633188677958,0
+1498,0.0915966411804847,0.880886426592798,88.0886426592798,1,99.6362939290284,0.622209302325581,88.0886426592798,1.60627757528293,0
+1499,0.0483562085955974,0.460526315789474,46.0526315789474,4,91.0735501813109,0.753228120516499,22.1052631578947,26.2458828762599,0
+1500,0.0437538701741065,0.476608187134503,47.6608187134503,1,97.436138449723,0.853519553072626,47.6608187134503,25.1374811160784,0
+1501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1506,0.0540452389916601,0.585526315789474,58.5526315789474,3,90.431707050086,0.620644903663772,34.8684210526316,0.467017998856105,0
+1507,0.0579572869903328,0.650969529085873,65.0969529085873,3,97.1563028156703,0.8694724662834,62.0498614958449,4.67188949584961,0
+1508,0.071045996590293,0.922437673130194,92.2437673130194,1,99.7711467429596,0.897513059277765,92.2437673130194,9.14239299762714,0
+1509,0.0604839846756247,0.64819944598338,64.819944598338,2,97.780412258958,0.876412187606984,62.8808864265928,0,0
+1510,0.0269813740839278,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,0,0
+1511,0.00291221118518315,0,0,0,NA,NA,0,NA,NA
+1512,0.0101726369358958,0.0415512465373961,4.15512465373961,4,55.7903787362693,0.525748817656332,1.93905817174515,4.29993203481038,0
+1513,0.00646360197854713,0.03601108033241,3.601108033241,4,53.295542939621,0.48132183908046,1.93905817174515,7.9931924526508,0
+1514,0.0128238661686881,0.0236842105263158,2.36842105263158,1,70.2715195584201,0.743935309973046,2.36842105263158,0,0
+1515,0.00612071361375907,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,9.28131957487627,0
+1516,0.0230254504603183,0.038781163434903,3.8781163434903,3,62.2507122507123,0.583861671469741,2.49307479224377,7.20485755375453,0
+1517,-0.00781367712901193,0,0,0,NA,NA,0,NA,NA
+1518,0.00171814914620451,0.0342105263157895,3.42105263157895,4,56.7046429576746,0.71238268240993,2.63157894736842,4.67995192454411,0
+1519,0.0165889419639173,0.03601108033241,3.601108033241,2,63.9994282705831,0.711845466155811,1.93905817174515,1.76418297107403,0
+1520,0.00895972191823568,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.814919251473981,8.03324099722992,32.0288949834889,11.6176595687866
+1521,0.00742236680868456,0.074792243767313,7.4792243767313,2,80.394630259477,0.824049575268069,6.64819944598338,0,0
+1522,-0.00911215412994161,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,18.0701729456584,14.6953058242798
+1523,0.112119106527152,0.614958448753463,61.4958448753463,1,98.4711305282964,0.987453515448511,61.4958448753463,28.0462439489794,0
+1524,0.0838372015769637,0.628808864265928,62.8808864265928,3,95.5178757695486,0.713401079707844,45.4293628808864,9.42061096981234,0
+1525,0.0697198050087602,0.645429362880886,64.5429362880887,2,95.4479618893002,0.811979166666667,52.0775623268698,7.33808299297938,0
+1526,0.0970515131987141,0.707894736842105,70.7894736842105,1,98.9804840892258,0.850860761751851,70.7894736842105,12.6175459007348,0
+1527,0.1582985845526,0.983379501385042,98.3379501385042,1,99.9532483576382,0.373263888888889,98.3379501385042,14.633536595358,0
+1528,0.0441315455494901,0.529085872576177,52.9085872576177,1,97.9178236108022,0.886025257560651,52.9085872576177,5.61815532464632,0
+1529,0.0366811067735569,0.326869806094183,32.6869806094183,3,93.7593017658272,0.812564901349948,30.4709141274238,3.68724081475856,0
+1530,0.0381115184615115,0.505263157894737,50.5263157894737,3,93.6189277840482,0.852378675591681,29.2105263157895,0.270602876941363,0
+1531,-0.0188767799205944,0.074792243767313,7.4792243767313,2,76.6211507912225,0.773778025344659,4.15512465373961,0.769714849966544,0
+1532,-0.0359211790054866,0.14404432132964,14.404432132964,1,90.9176337107231,0.973746409221483,14.404432132964,0,0
+1533,-0.0492937558364778,0,0,0,NA,NA,0,NA,NA
+1534,-0.0474231639916788,0,0,0,NA,NA,0,NA,NA
+1535,-0.0528935175621237,0,0,0,NA,NA,0,NA,NA
+1536,-0.0883361967770677,0,0,0,NA,NA,0,NA,NA
+1537,-0.0781402871311949,0,0,0,NA,NA,0,NA,NA
+1538,-0.0989175119192192,0,0,0,NA,NA,0,NA,NA
+1539,-0.105272322828808,0,0,0,NA,NA,0,NA,NA
+1540,0.00946927520832166,0.074792243767313,7.4792243767313,3,74.3287254039782,0.798913800306364,4.98614958448753,6.94100750817193,0
+1541,0.0144536569375942,0.0581717451523546,5.81717451523546,5,65.1402372404988,0.568658088235294,3.8781163434903,7.3473721912929,0
+1542,0.0359441703025811,0.240997229916898,24.0997229916898,5,87.544406547188,0.770496821285613,19.3905817174515,14.1562041030533,0
+1543,0.00429328611148537,0,0,0,NA,NA,0,NA,NA
+1544,0.0140173505791195,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,145.139694213867,143.326324462891
+1545,0.0185924552482136,0.0249307479224377,2.49307479224377,3,44.989045488799,0.572679924242424,1.10803324099723,30.7724064721002,11.6176595687866
+1546,0.013603977715567,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,88.4774551391602,88.4774551391602
+1547,0.0089837973539225,0.0236842105263158,2.36842105263158,3,46.4475313956783,0.573225516621743,1.31578947368421,15.9966371324327,10.3911504745483
+1548,0.0281009452572969,0.160664819944598,16.0664819944598,4,83.5890430909988,0.797458745874587,13.0193905817175,5.02842650742366,0
+1549,0.0351809297791177,0.25207756232687,25.207756232687,2,89.9407719193222,0.843187014174669,15.5124653739612,25.5321335844941,0
+1550,0.041367101136784,0.307479224376731,30.7479224376731,2,91.7106578276201,0.87726,24.0997229916898,25.3010730141992,0
+1551,0.00583552855070569,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,0,0
+1552,0.0141100161671101,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,93.4404602050781,90.73681640625
+1553,0.0155303043353755,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,70.6125651768276,44.0859146118164
+1554,0.0126680381894443,0,0,0,NA,NA,0,NA,NA
+1555,0.0111549767959763,0,0,0,NA,NA,0,NA,NA
+1556,0.033329948922585,0.279778393351801,27.9778393351801,2,93.909937574408,0.854249893752656,26.8698060941828,15.7575241362694,0
+1557,0.0119520501736142,0.0914127423822715,9.14127423822715,4,72.8118570278777,0.755420054200542,6.09418282548476,4.45672283750592,0
+1558,0.0138872674791165,0.0941828254847645,9.41828254847645,3,77.0488778732394,0.74371996505024,4.98614958448753,8.72085951356327,0
+1559,0.0205954895985039,0.0263157894736842,2.63157894736842,2,64.1609526402966,0.841995841995842,2.36842105263158,11.9853565216064,0
+1560,0.0202919599752145,0.07202216066482,7.20221606648199,4,72.4803921126595,0.55318529304696,4.70914127423823,9.13726751620953,0
+1561,0.0107939616780873,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,52.2148818969727,52.2148818969727
+1562,0.0210293297874522,0.0221606648199446,2.21606648199446,4,32.8149929723314,0.386402266288952,0.831024930747922,42.8220047950745,15.5867252349854
+1563,0.0166566558357628,0.0105263157894737,1.05263157894737,1,52.703639668815,1,1.05263157894737,13.5063467025757,10.3911504745483
+1564,0.0248093087995832,0.0277008310249307,2.77008310249307,3,50.9115480554855,0.60442691211922,1.38504155124654,5.10643320083618,0
+1565,0.0252415619280552,0.0692520775623269,6.92520775623269,6,60.9756487656949,0.650818452380952,3.04709141274238,7.06124017715454,0
+1566,0.0159554411991325,0.0470914127423823,4.70914127423823,5,54.8760364284993,0.538255813953488,1.93905817174515,10.9676604270935,5.19557523727417
+1567,0.0213150337543323,0.0342105263157895,3.42105263157895,3,55.0229095936175,0.654859218891916,1.31578947368421,9.31492134240957,5.19557523727417
+1568,0.0323232634578653,0.171745152354571,17.1745152354571,3,84.6239930532242,0.832311408398365,12.7423822714681,11.4306767063756,0
+1569,0.0281273073006481,0.168975069252078,16.8975069252078,2,88.9172025911267,0.795660377358491,14.404432132964,23.4395226650551,0
+1570,0.0220754612193277,0.0609418282548476,6.09418282548476,3,70.2765585918105,0.749436057608884,4.43213296398892,10.2417972304604,0
+1571,0.0149287761243948,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,5.7335946559906,0
+1572,0.019220713399034,0.0443213296398892,4.43213296398892,4,56.8121372019516,0.607608695652174,1.93905817174515,25.0133250355721,10.3911504745483
+1573,0.0271163302518226,0.0692520775623269,6.92520775623269,4,72.6470431456661,0.73139880952381,5.54016620498615,6.64012069702148,0
+1574,0.0280933968185568,0.138504155124654,13.8504155124654,4,81.3636479711735,0.644940419897863,6.92520775623269,10.0189635467529,0
+1575,0.0265605423158329,0.0342105263157895,3.42105263157895,3,57.4370971628886,0.654859218891916,1.84210526315789,5.69220854685857,0
+1576,0.0207450363867745,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,43.2611389160156,21.4219055175781
+1577,0.0257826132599556,0.0831024930747922,8.31024930747922,6,63.2024544719823,0.599358776743326,3.32409972299169,20.0613792896271,0
+1578,0.0185369840174969,0.199445983379501,19.9445983379501,2,89.8176883947644,0.852464376209029,17.7285318559557,36.0035137004323,0
+1579,0.0378834919958823,0.297368421052632,29.7368421052632,3,90.8543470161548,0.81163251817581,22.3684210526316,58.0688624761801,15.5867252349854
+1580,0.043746847134765,0.329639889196676,32.9639889196676,1,95.87929364248,0.882594888276706,32.9639889196676,64.5748737880162,41.8880653381348
+1581,0.057268380746713,0.49584487534626,49.584487534626,2,94.4007477498633,0.778277613625046,27.4238227146814,11.2656612875741,0
+1582,0.0191438658166539,0.07202216066482,7.20221606648199,4,70.0642364217514,0.658318165271205,4.70914127423823,15.4635662482335,0
+1583,0.0171339414331143,0.0210526315789474,2.10526315789474,2,54.2700044452268,0.795698924731183,1.57894736842105,6.11403185129166,0
+1584,0.0185872879511531,0.03601108033241,3.601108033241,5,44.5715980158669,0.48132183908046,1.66204986149584,13.2358880409828,5.19557523727417
+1585,0.0352107096996179,0.221606648199446,22.1606648199446,8,76.2507744689289,0.601924715553105,6.09418282548476,9.34761834740639,0
+1586,0.0597718742108837,0.534626038781163,53.4626038781163,4,96.3701568080503,0.723895982974195,50.415512465374,11.4441974471888,0
+1587,0.07161659053343,0.644736842105263,64.4736842105263,1,98.6730552827086,0.686559922367783,64.4736842105263,6.3156921445107,0
+1588,0.0525135155286707,0.42382271468144,42.382271468144,2,93.4787979731623,0.697354913769504,28.2548476454294,12.8180944156023,0
+1589,0.0626804023178764,0.440443213296399,44.0443213296399,5,90.2502475222329,0.773548758985488,29.6398891966759,26.6550972596654,0
+1590,0.0636212306511214,0.598337950138504,59.8337950138504,2,95.6146777808362,0.752273117172757,37.9501385041551,21.1023117679137,0
+1591,0.0455057635802644,0.381578947368421,38.1578947368421,3,93.0466703889967,0.859654757125652,27.6315789473684,26.8664297103882,0
+1592,0.0450008102478053,0.437673130193906,43.7673130193906,4,93.4808984207422,0.736317309325633,32.9639889196676,4.56871089150634,0
+1593,0.0550774593420834,0.562326869806094,56.2326869806094,2,97.2064218417433,0.763640331732868,53.7396121883656,4.80958756319995,0
+1594,0.0326322699126909,0.227146814404432,22.7146814404432,6,79.7451476017904,0.660907180818193,7.75623268698061,6.56599041892261,0
+1595,0.0587477221833404,0.573684210526316,57.3684210526316,2,97.9373793837563,0.780453688499666,56.8421052631579,2.4317927469901,0
+1596,0.0675995944836467,0.650969529085873,65.0969529085873,2,98.4571316676394,0.76505043931012,64.819944598338,3.8203242261359,0
+1597,0.0570385901066649,0.581717451523546,58.1717451523546,2,96.0819408766983,0.877712098372318,48.7534626038781,3.97608579453968,0
+1598,0.0803564424733593,0.822714681440443,82.2714681440443,2,99.2280131403295,0.727554785330948,81.994459833795,3.09899273304024,0
+1599,0.022215007728511,0.263157894736842,26.3157894736842,2,92.9466725075694,0.886904761904762,25,4.5046325302124,0
+1600,0.0475657384738218,0.400584795321637,40.0584795321637,3,90.0972859837875,0.786458536585366,16.6666666666667,29.5351205568244,0
+1601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1606,0.0228514122785256,0.0460526315789474,4.60526315789474,3,44.3065235255746,0.606896551724138,3.28947368421053,0.74222503389631,0
+1607,0.0132610201115595,0.127423822714681,12.7423822714681,4,74.495503323923,0.720838420838421,3.601108033241,2.71801945437556,0
+1608,0.0732658104772726,0.706371191135734,70.6371191135734,1,98.9454102607679,0.914502249940791,70.6371191135734,1.83927479351268,0
+1609,0.0677285743516114,0.736842105263158,73.6842105263158,2,97.5075160754118,0.748697394789579,65.3739612188366,14.3061878197175,0
+1610,0.0171235114574972,0.110526315789474,11.0526315789474,5,76.3189570920069,0.588299024918743,6.31578947368421,15.7117080461411,0
+1611,0.0165966903690298,0.166204986149584,16.6204986149584,4,81.526361386647,0.815486838742653,9.14127423822715,1.85853006045024,0
+1612,0.0132236064494255,0.130193905817175,13.0193905817175,2,86.5567910875761,0.798805732484076,11.3573407202216,0.110544153984557,0
+1613,-0.00115683811092414,0.132963988919668,13.2963988919668,3,79.2618002061209,0.774955193641393,5.54016620498615,19.5119788547357,0
+1614,0.0374963007656716,0.302631578947368,30.2631578947368,6,87.6970146651773,0.806966618287373,23.4210526315789,9.82900599604068,0
+1615,0.0191370489904876,0.119113573407202,11.9113573407202,4,81.9240305177657,0.810796645702306,10.2493074792244,3.85002679603044,0
+1616,0.0171416972908721,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,19.4058793783188,10.3911504745483
+1617,0.00763637947237741,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,134.221458435059,132.461700439453
+1618,0.00994490902778221,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,98.7159271240234,98.7159271240234
+1619,0.0146477664264975,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,11.733465274175,5.19557523727417
+1620,0.00892713015705252,0.102493074792244,10.2493074792244,2,82.7017219883293,0.817344667071443,8.58725761772853,16.6051624272321,5.19557523727417
+1621,0.0665176731941035,0.454293628808864,45.4293628808864,2,94.3781842505016,0.921118095942448,40.9972299168975,10.9882003883036,0
+1622,0.0111039181320226,0.0710526315789474,7.10526315789474,4,75.5419745729966,0.774688714671586,6.05263157894737,2.77370855543349,0
+1623,0.0236596750079,0.196675900277008,19.6675900277008,3,84.9780920502815,0.780910344827586,13.0193905817175,13.1365403591747,0
+1624,0.0426177521226123,0.390581717451524,39.0581717451524,3,90.1478166226648,0.860077519379845,14.1274238227147,7.07529073742265,0
+1625,0.05355788991139,0.626038781163435,62.6038781163435,2,96.0820227587528,0.898372481745403,52.0775623268698,7.76578940543453,0
+1626,0.0604507919169632,0.615789473684211,61.5789473684211,2,96.07801588702,0.767718880285884,43.9473684210526,9.02809397583334,0
+1627,0.0803046665242112,0.714681440443213,71.4681440443213,5,93.5482450866058,0.724255763934954,40.9972299168975,7.17548194227293,0
+1628,0.0314157634572522,0.407202216066482,40.7202216066482,1,96.8494800677755,0.811868116596602,40.7202216066482,7.04962592546632,0
+1629,0.0377546765617742,0.310249307479224,31.0249307479224,3,91.470660819564,0.813392182591753,26.0387811634349,2.57958913275174,0
+1630,0.0534519443940984,0.497368421052632,49.7368421052632,3,94.8018888148376,0.806731488406881,40.7894736842105,0.506203343628576,0
+1631,-0.0570912150855736,0,0,0,NA,NA,0,NA,NA
+1632,-0.0840965129384755,0,0,0,NA,NA,0,NA,NA
+1633,-0.00707888003655418,0.0664819944598338,6.64819944598338,2,80.9489286721698,0.859050445103858,6.37119113573407,0,0
+1634,0.0204994343950315,0.218421052631579,21.8421052631579,2,92.5517531967339,0.817219817219817,20.7894736842105,0,0
+1635,-0.0294045992508412,0,0,0,NA,NA,0,NA,NA
+1636,-0.0416450905579741,0,0,0,NA,NA,0,NA,NA
+1637,-0.0439143296965808,0,0,0,NA,NA,0,NA,NA
+1638,-0.0624243138040918,0,0,0,NA,NA,0,NA,NA
+1639,-0.0798939605051387,0,0,0,NA,NA,0,NA,NA
+1640,0.0472061092916288,0.390581717451524,39.0581717451524,3,95.0378347604538,0.917318534179,37.9501385041551,4.21648657237384,0
+1641,0.0538945968163366,0.570637119113573,57.0637119113573,1,98.2011515158107,0.847974395687695,57.0637119113573,0.636748950458267,0
+1642,0.0385973446620049,0.260387811634349,26.0387811634349,6,86.7454085991634,0.782704654895666,19.9445983379501,9.58496851616717,0
+1643,0.0271021916001796,0.157894736842105,15.7894736842105,4,81.9644227247732,0.817307692307692,8.1578947368421,73.9815024058024,51.955753326416
+1644,0.0144501012970708,0,0,0,NA,NA,0,NA,NA
+1645,0.0309402635503676,0.116343490304709,11.6343490304709,3,84.0989282999918,0.776855490308623,10.2493074792244,36.3969192731948,10.3911504745483
+1646,0.0298126018844258,0.210526315789474,21.0526315789474,1,93.4475029346092,0.943283582089552,21.0526315789474,34.0911511496494,10.3911504745483
+1647,0.0280180259490647,0.171052631578947,17.1052631578947,3,89.1750410293218,0.925270403146509,16.3157894736842,2.25748868355384,0
+1648,0.0143835477349481,0.0526315789473684,5.26315789473684,3,69.7872417840778,0.636015325670498,3.8781163434903,6.64681853746113,0
+1649,0.0390353535907319,0.313019390581717,31.3019390581717,3,90.2565037726583,0.850154174573055,21.0526315789474,25.2226403076037,0
+1650,0.0614529636295024,0.512465373961219,51.2465373961219,4,92.0065659214233,0.814078282828283,22.4376731301939,17.3884979711997,0
+1651,0.0118012198977292,0.0394736842105263,3.94736842105263,4,57.8109253728276,0.526774595267746,1.84210526315789,7.05160293579102,0
+1652,0.0104698109562806,0,0,0,NA,NA,0,NA,NA
+1653,0.0153023449676156,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,1.73185841242472,0
+1654,0.0155485320899673,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,3.67382645606995,0
+1655,0.0159318003263156,0.0210526315789474,2.10526315789474,3,44.1505367610631,0.489247311827957,1.05263157894737,20.857243001461,5.19557523727417
+1656,0.047906119311149,0.421052631578947,42.1052631578947,2,93.3928770195453,0.845226458129684,22.4376731301939,25.8068299889565,0
+1657,0.00888803827467623,0.0304709141274238,3.04709141274238,5,36.1729843734908,0.381142857142857,0.831024930747922,11.9594242789529,5.19557523727417
+1658,0.0188240122860963,0.03601108033241,3.601108033241,5,43.0287566795466,0.423690932311622,1.38504155124654,17.267964729896,10.3911504745483
+1659,0.016147300101109,0.0657894736842105,6.57894736842105,6,62.4581963718947,0.464788732394366,3.15789473684211,16.141471824646,10.3911504745483
+1660,0.0159401376371725,0.0886426592797784,8.86426592797784,3,74.4701737232676,0.746785129763853,4.15512465373961,19.1693794429302,10.3911504745483
+1661,0.0206615919301471,0.110803324099723,11.0803324099723,4,76.9301636420628,0.69786581113126,6.64819944598338,13.4143775820732,7.34765291213989
+1662,0.0200811435155367,0.119113573407202,11.9113573407202,5,77.1882102938285,0.653127183787561,7.75623268698061,11.6657878853554,5.19557523727417
+1663,0.0189311461024676,0.0473684210526316,4.73684210526316,6,56.7164705409956,0.416820135052179,2.63157894736842,14.0642043219672,5.19557523727417
+1664,0.022396067613818,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,3.46371682484945,0
+1665,0.0292948630360362,0.102493074792244,10.2493074792244,4,79.9950783075989,0.726017000607164,8.03324099722992,4.23074150085449,0
+1666,0.0154584956878536,0.0304709141274238,3.04709141274238,3,52.5080154774204,0.587428571428571,1.66204986149584,34.9018878936768,15.5867252349854
+1667,0.024430204740125,0.139473684210526,13.9473684210526,3,81.4709231860087,0.719057700709077,7.10526315789474,6.75007768846908,0
+1668,0.0182048658538194,0.0609418282548476,6.09418282548476,4,65.2398031028508,0.718115564809995,3.04709141274238,13.8370017355139,7.34765291213989
+1669,0.0113594338430141,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,15.5867252349854,15.5867252349854
+1670,0.0218077640978729,0.074792243767313,7.4792243767313,4,67.9859560607988,0.698370700459546,3.601108033241,10.9680839997751,0
+1671,0.0232040589638736,0.0736842105263158,7.36842105263158,5,63.1542033385726,0.568181818181818,2.10526315789474,11.5572169508253,5.19557523727417
+1672,0.0244876290541729,0.0470914127423823,4.70914127423823,5,53.3458803281257,0.580232558139535,2.49307479224377,42.3380123867708,7.34765291213989
+1673,0.0223922158242848,0.0637119113573407,6.37119113573407,2,74.421559212614,0.703320184089415,3.32409972299169,15.1718954418017,5.19557523727417
+1674,0.0262485052817056,0.0609418282548476,6.09418282548476,3,71.191966701636,0.749436057608884,3.8781163434903,9.019869370894,0
+1675,0.0233691677383735,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,6.3217708269755,0
+1676,0.0218249528326669,0.119113573407202,11.9113573407202,3,83.0084667267254,0.795029699510832,9.14127423822715,46.2274578005769,25.977876663208
+1677,0.0166715283488471,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,45.1817537943522,36.7382659912109
+1678,0.0324749916134782,0.25207756232687,25.207756232687,3,89.2133168415034,0.83493369913123,19.1135734072022,35.2895066187932,11.6176595687866
+1679,0.0241117121477146,0.181578947368421,18.1578947368421,5,83.9358805302779,0.757646621136829,12.8947368421053,13.4808208700539,0
+1680,0.0400636421009266,0.229916897506925,22.9916897506925,3,91.3070076479606,0.902828757402242,21.8836565096953,49.2206934561212,0
+1681,0.0382883289557691,0.268698060941828,26.8698060941828,7,80.3627375137159,0.7092258794845,9.97229916897507,11.2152765411692,0
+1682,0.0214780797048943,0.135734072022161,13.5734072022161,4,77.9284321056586,0.73828601953602,6.09418282548476,12.0491992502796,0
+1683,0.0214339548155151,0.0894736842105263,8.94736842105263,2,84.1117930501835,0.882328654004955,8.42105263157895,21.7461658085094,0
+1684,0.0375475372127872,0.293628808864266,29.3628808864266,3,92.8230875581662,0.703521199055538,26.3157894736842,14.021519624962,0
+1685,0.0402323088770406,0.285318559556787,28.5318559556787,7,82.212471995147,0.742845170752147,13.0193905817175,26.2618014094899,0
+1686,0.0513098002830649,0.443213296398892,44.3213296398892,7,89.1649697598867,0.688445527464717,20.7756232686981,9.5187475413084,0
+1687,0.0515923260650437,0.471052631578947,47.1052631578947,4,92.935717006955,0.680149103425471,26.5789473684211,3.96552723612865,0
+1688,0.0559659328636097,0.6398891966759,63.98891966759,3,97.0438704825573,0.626307335356059,56.786703601108,7.44578970871962,0
+1689,0.0515732577723535,0.426592797783933,42.6592797783933,2,94.5045973197181,0.76582851095065,30.1939058171745,17.4667982250065,0
+1690,0.0406212416308038,0.354570637119114,35.4570637119114,1,96.2256744148997,0.840409659415351,35.4570637119114,18.3800356425345,0
+1691,0.0459174397811646,0.336842105263158,33.6842105263158,1,96.0905040868722,0.87703522038286,33.6842105263158,29.6914859749377,0
+1692,0.0478076998048168,0.476454293628809,47.6454293628809,5,94.2093255523775,0.692704421411046,35.180055401662,4.67109481401222,0
+1693,0.052099129275375,0.409972299168975,40.9972299168975,4,90.27483097174,0.799871801534917,21.0526315789474,7.35360128170735,0
+1694,0.0192799339227783,0.0332409972299169,3.32409972299169,5,42.7847632421225,0.391538850497219,1.38504155124654,3.21009202798208,0
+1695,0.0312149852565582,0.2,20,3,87.9641894089344,0.80410447761194,15,0.99649020872618,0
+1696,0.0350783346796881,0.285318559556787,28.5318559556787,2,93.0321615839713,0.878985962706893,26.0387811634349,2.00824413947689,0
+1697,0.0444702443297839,0.340720221606648,34.0720221606648,4,92.9296716433326,0.897972641971587,31.8559556786704,3.37088744233294,0
+1698,0.0626150116316685,0.617728531855956,61.7728531855956,2,97.4473768479272,0.754755434782609,57.0637119113573,2.45966660281468,0
+1699,0.0560752040582501,0.586842105263158,58.6842105263158,1,98.3486858290049,0.755634492895639,58.6842105263158,1.69066152871991,0
+1700,0.0514838015871689,0.286549707602339,28.6549707602339,5,91.3308162589484,0.864614381520119,26.9005847953216,55.1394883175286,10.3911504745483
+1701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1706,-0.00873914280573445,0.15,15,1,86.4196594377943,0.969040247678019,15,0,0
+1707,0.0692167200424975,0.418421052631579,41.8421052631579,1,97.0479383351358,0.970557242918242,41.8421052631579,0.732419703741493,0
+1708,0.0739646762917753,0.568421052631579,56.8421052631579,1,98.2352224056243,0.804028637301298,56.8421052631579,3.81578511220438,0
+1709,0.0130977513545651,0.231578947368421,23.1578947368421,5,84.3334134974865,0.801064479539307,10,51.1005887118253,20.7823009490967
+1710,0.0172893512136216,0.22,22,5,85.8958123553787,0.7713539114813,17,44.3027039603754,0
+1711,0.0246960556975338,0.139473684210526,13.9473684210526,3,82.376783270031,0.821218536814867,7.63157894736842,5.51286940304738,0
+1712,0.0151170557190198,0.0973684210526316,9.73684210526316,5,73.3368763529741,0.709410696362854,6.05263157894737,2.32301242931469,0
+1713,0.045622365650266,0.386842105263158,38.6842105263158,6,87.3606493125301,0.708984156867751,15,20.0557541101157,0
+1714,0.0430963829954271,0.4725,47.25,2,94.7220960939863,0.815842924847664,27.75,4.26314840114937,0
+1715,0.0167213584313638,0.0473684210526316,4.73684210526316,3,66.7428800073857,0.766728054020872,3.15789473684211,30.0437553723653,10.3911504745483
+1716,0.0143512889977405,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,85.894781930106,73.4765319824219
+1717,0.0144958594922125,0,0,0,NA,NA,0,NA,NA
+1718,0.0108560084778946,0,0,0,NA,NA,0,NA,NA
+1719,0.0182974343029568,0.0526315789473684,5.26315789473684,3,68.3319630590925,0.727598566308244,2.89473684210526,43.7845273733139,5.19557523727417
+1720,0.0212210510670694,0.234210526315789,23.4210526315789,2,93.5475628738772,0.876807365622771,23.1578947368421,6.94898215840372,0
+1721,0.0868270198896521,0.576315789473684,57.6315789473684,1,98.2845154772468,0.994215077335282,57.6315789473684,15.7095528998876,0
+1722,0.000895692703494433,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,10.5028468767802,5.19557523727417
+1723,-0.0105895354887922,0.0342105263157895,3.42105263157895,2,63.9095268615724,0.71238268240993,1.84210526315789,26.7974562278161,10.3911504745483
+1724,0.0285731460192964,0.273684210526316,27.3684210526316,6,85.7077260334592,0.771758505773851,15,4.58607843289009,0
+1725,0.0668928465413812,0.876315789473684,87.6315789473684,1,99.6309960117236,0.691506274735311,87.6315789473684,1.48287141502083,0
+1726,0.0542756499422831,0.635,63.5,1,98.6583599459141,0.781282375964084,63.5,0.533284226740439,0
+1727,0.0588609401191781,0.663157894736842,66.3157894736842,1,98.7672448732661,0.880495233050847,66.3157894736842,0,0
+1728,-0.00995472892598053,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,51.4628200531006,40.5787391662598
+1729,-0.00988477845366058,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,35.0030899047852,33.2679138183594
+1730,0.00960051952904905,0.095,9.5,5,75.9786080993483,0.754450583179865,7.25,3.37032610491702,0
+1731,-0.0337367928506482,0.107894736842105,10.7894736842105,1,88.9454279930292,0.93501774186653,10.7894736842105,0.760328083503537,0
+1732,-0.0480755380492682,0,0,0,NA,NA,0,NA,NA
+1733,0.0279301969814313,0.257894736842105,25.7894736842105,3,88.1005245000187,0.808591231463572,14.2105263157895,0,0
+1734,0.0351542336999046,0.3575,35.75,5,93.7686617791664,0.798021801764339,33,0,0
+1735,0.00428081189073916,0.163157894736842,16.3157894736842,2,88.8572209880086,0.87829023992546,15,0,0
+1736,-0.0313396246744608,0,0,0,NA,NA,0,NA,NA
+1737,-0.0252509787866936,0,0,0,NA,NA,0,NA,NA
+1738,-0.0642552415881073,0,0,0,NA,NA,0,NA,NA
+1739,-0.0651443005015608,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,17.5996259053548,15.5867252349854
+1740,0.0454240408004568,0.544736842105263,54.4736842105263,1,98.0809669748179,0.777494182118459,54.4736842105263,7.40724261832122,0
+1741,0.0430516465321393,0.413157894736842,41.3157894736842,2,96.3234326506694,0.840246636771301,40.5263157894737,5.13643440623192,0
+1742,0.0211554434282382,0.15,15,3,86.2519892363779,0.735894357743097,11.5789473684211,22.5342063318219,5.19557523727417
+1743,0.0163859760138439,0.0325,3.25,3,58.9194150148019,0.655469422911283,2,58.838083413931,37.8243598937988
+1744,0.0140071139544154,0.0263157894736842,2.63157894736842,3,55.1428774701672,0.762993762993763,2.10526315789474,69.5811519622803,51.955753326416
+1745,0.0198808612506821,0.0578947368421053,5.78947368421053,5,63.9659284563403,0.562931317778508,3.15789473684211,22.8843524022536,0
+1746,0.0276342311735214,0.171052631578947,17.1052631578947,3,85.2580851011103,0.87189211967973,10,17.1038011477544,0
+1747,0.0171974311829399,0.0425,4.25,5,50.174912734063,0.540469973890339,1.75,16.7416558546178,5.19557523727417
+1748,0.0213026432645213,0.0789473684210526,7.89473684210526,5,68.3537414634292,0.689795918367347,3.68421052631579,17.3248017470042,0
+1749,0.0104466603815557,0.0263157894736842,2.63157894736842,3,51.3901406140503,0.604989604989605,1.31578947368421,30.6253832817078,10.3911504745483
+1750,0.0134550838208892,0.0763157894736842,7.63157894736842,4,69.3472757318256,0.72358610656483,3.68421052631579,21.7599403611545,0
+1751,0.0190698409682523,0.1325,13.25,3,86.7215369379863,0.873325521740507,12.25,36.8169920039627,11.6176595687866
+1752,0.0113781099031384,0,0,0,NA,NA,0,NA,NA
+1753,0.0126917657706647,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,31.2292188008626,21.4219055175781
+1754,0.02327939198276,0.0394736842105263,3.94736842105263,5,48.3199797353197,0.479452054794521,1.31578947368421,14.3004042307536,5.19557523727417
+1755,0.0186509826178406,0.02,2,3,44.9064287078991,0.387755102040816,1,4.81513804197311,0
+1756,0.0152435169748251,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.709702062643239,1.57894736842105,14.1322484811147,7.34765291213989
+1757,0.0158110882261972,0.0263157894736842,2.63157894736842,4,43.6667933010076,0.446985446985447,1.31578947368421,5.10643315315247,0
+1758,0.00921829738929917,0.068421052631579,6.84210526315789,3,79.8179174958544,0.764365440264572,6.31578947368421,5.87783688765306,0
+1759,0.00781179206857331,0.0125,1.25,2,43.859649122807,0.594936708860759,1,10.273054599762,7.34765291213989
+1760,0.00955639445512229,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,2.30914454989963,0
+1761,0.0121674991911564,0.113157894736842,11.3157894736842,3,84.3707450504998,0.79640619848335,10,3.60408923792285,0
+1762,0.00882771932501782,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,47.8047240121024,31.1734504699707
+1763,0.0166485041796568,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,10.3911504745483,10.3911504745483
+1764,0.0256737723169959,0.0315789473684211,3.15789473684211,4,46.2006860361741,0.453324808184143,1.05263157894737,0,0
+1765,0.028696234972449,0.0947368421052632,9.47368421052632,6,66.6490964740007,0.650193798449612,3.15789473684211,9.24739714463552,0
+1766,0.0239948894726886,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,35.2052307128906,15.5867252349854
+1767,0.0266332563777905,0.1475,14.75,4,82.7624462293902,0.804496578690127,7.25,25.9374917078826,0
+1768,0.0181419946601876,0.0342105263157895,3.42105263157895,4,51.006956221298,0.482288828337875,1.57894736842105,19.4511691240164,0
+1769,0.0204747851566265,0,0,0,NA,NA,0,NA,NA
+1770,0.0334666045256247,0.226315789473684,22.6315789473684,2,93.3212154942304,0.881730469965764,22.3684210526316,9.55508121224337,0
+1771,0.0240774339072959,0.13,13,3,84.2953920476796,0.81919152783159,9.75,29.0479221527393,10.3911504745483
+1772,0.0237487099082883,0.0421052631578947,4.21052631578947,5,52.952572104081,0.565018315018315,2.36842105263158,31.2186444103718,5.19557523727417
+1773,0.024619842051159,0.0947368421052632,9.47368421052632,3,84.6893344255697,0.742248062015504,8.94736842105263,35.6946810351478,5.19557523727417
+1774,0.0163508399465962,0.0210526315789474,2.10526315789474,2,56.1263686554176,0.591397849462366,1.57894736842105,6.91679239273071,5.19557523727417
+1775,0.02336039147056,0,0,0,NA,NA,0,NA,NA
+1776,0.0256736504364534,0.157894736842105,15.7894736842105,3,85.0391616603156,0.828725961538462,11.5789473684211,34.9905046463013,15.5867252349854
+1777,0.0253508897464551,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,91.9901666641235,37.4658241271973
+1778,0.0276244373491959,0.134210526315789,13.4210526315789,5,83.0123751732793,0.800859448695105,11.5789473684211,47.1618872623818,25.977876663208
+1779,0.029677563981204,0.185,18.5,7,76.8648402004562,0.669655497876357,8.75,28.0980366371773,10.3911504745483
+1780,0.0355859915787158,0.168421052631579,16.8421052631579,5,81.4562759272348,0.699367088607595,9.47368421052632,13.1155679300427,0
+1781,0.0349454869746344,0.192105263157895,19.2105263157895,4,87.9312523184078,0.642202768729642,15,10.1394112077478,0
+1782,0.0253972083810176,0.068421052631579,6.84210526315789,5,66.404764751788,0.685820587019429,4.47368421052632,26.153908271056,0
+1783,0.0237177156268422,0.1075,10.75,3,82.3189705408406,0.688764394646748,8,3.14151059749515,0
+1784,0.0373441967111399,0.326315789473684,32.6315789473684,4,91.8372473297941,0.722916666666667,23.9473684210526,30.1183941518107,0
+1785,0.0522320765458158,0.323684210526316,32.3684210526316,3,93.1615785833851,0.913803632810455,29.4736842105263,15.6590270298283,0
+1786,0.0528388489180399,0.521052631578947,52.1052631578947,2,95.0307778258153,0.806569452346019,37.1052631578947,20.0063512397535,0
+1787,0.0351148437049005,0.24,24,4,92.4755497028155,0.770501835985312,22.75,34.1878287891547,0
+1788,0.0500742799614703,0.473684210526316,47.3684210526316,2,97.1092534642266,0.834534534534534,46.8421052631579,29.1855775064892,0
+1789,0.0198707121477032,0.136842105263158,13.6842105263158,4,78.8688593157767,0.752671964921896,5.26315789473684,41.4715369297908,22.0429573059082
+1790,0.0583419238531573,0.392105263157895,39.2105263157895,2,96.3468711476028,0.897562754705612,38.9473684210526,13.2562171404794,0
+1791,0.0274599093737106,0.1875,18.75,3,87.5370250710602,0.701631701631702,13.75,31.3515292930603,5.19557523727417
+1792,0.0226547377184416,0.163157894736842,16.3157894736842,6,77.6140573519498,0.6680642907058,9.21052631578947,6.80378676229908,0
+1793,0.0504671486543406,0.494736842105263,49.4736842105263,1,97.7196633854303,0.943127394636015,49.4736842105263,12.9273076108161,0
+1794,-0.00330469403729933,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,27.8430283069611,21.4219055175781
+1795,0.0437995387689625,0.3725,37.25,5,92.6436869692897,0.77817667060695,31.75,8.72362549993016,0
+1796,0.0419186193046603,0.35,35,2,93.4763066112908,0.809281627463446,25.2631578947368,6.20330517274096,0
+1797,0.0259642563627973,0.205263157894737,20.5263157894737,3,91.9105205308256,0.854112678759958,20,12.4690417326414,0
+1798,0.0475198322501097,0.484210526315789,48.4210526315789,3,93.7424069949285,0.789015606242497,23.9473684210526,2.23739868920782,0
+1799,0.0678247722960077,0.8,80,1,99.3787684802637,0.660596026490066,80,2.10827252715826,0
+1800,0.0363505127425823,0.261111111111111,26.1111111111111,5,84.8699519411681,0.726100966702471,13.6111111111111,31.0478593998767,0
+1801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1806,-0.0261888723723706,0.0921052631578947,9.21052631578947,2,74.5107366110501,0.779710144927536,8.55263157894737,16.8499086924962,0
+1807,0.0188271504963253,0.368421052631579,36.8421052631579,1,96.4027280994676,0.973829201101928,36.8421052631579,32.409499835251,5.19557523727417
+1808,0.0513988850687287,0.548476454293629,54.8476454293629,1,98.0540488689693,0.885341268116548,54.8476454293629,22.074708627932,0
+1809,0.00598805170271473,0.116343490304709,11.6343490304709,3,77.6775299890555,0.776855490308623,4.70914127423823,16.584874187197,5.19557523727417
+1810,0.072148997992994,0.557894736842105,55.7894736842105,1,98.1678776705731,0.913886874546773,55.7894736842105,8.6279375193254,0
+1811,0.0364780159084677,0.299168975069252,29.9168975069252,4,88.7811845825967,0.831701631701632,24.3767313019391,9.12753617322003,0
+1812,0.00409525081940301,0.0470914127423823,4.70914127423823,3,65.6859714875883,0.748139534883721,3.32409972299169,4.65848737604478,0
+1813,0.00883020800359082,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,15.2914860248566,7.34765291213989
+1814,0.0176231906088919,0.152631578947368,15.2631578947368,4,80.1791275381343,0.775776397515528,8.42105263157895,13.9067946631333,0
+1815,0.0106178603482124,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,60.8459129333496,46.7601776123047
+1816,0.0139473803560564,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,79.5455551147461,77.9336318969727
+1817,0.0148112280813694,0.0609418282548476,6.09418282548476,4,65.9968158201178,0.624154086413326,2.77008310249307,116.130758805708,63.206901550293
+1818,0.0163307075973774,0.0473684210526316,4.73684210526316,3,63.9041712651465,0.688970738694496,2.36842105263158,85.2961167229547,47.0479354858398
+1819,0.00119176724011164,0,0,0,NA,NA,0,NA,NA
+1820,0.0206538337655241,0.121883656509695,12.1883656509695,4,76.8354908492102,0.707605081422116,6.64819944598338,20.6170734275471,0
+1821,0.0268867103785803,0.254847645429363,25.4847645429363,2,93.9432197635411,0.852706501042706,25.207756232687,1.78500193098317,0
+1822,0.00573329266495468,0.0631578947368421,6.31578947368421,3,74.7056916685708,0.719101123595506,5,2.95504436890284,0
+1823,0.0220727715776097,0.166204986149584,16.6204986149584,4,86.366550106913,0.677101967799642,13.5734072022161,0.692743364969889,0
+1824,0.03844405369356,0.293628808864266,29.3628808864266,6,87.9423993126168,0.740581049173596,14.9584487534626,1.02931207530903,0
+1825,0.05948222418775,0.595567867036011,59.5567867036011,2,95.4476246114231,0.802191780821918,34.6260387811634,1.39782159494799,0
+1826,0.0443942413540514,0.426315789473684,42.6315789473684,3,93.3504287870861,0.742626685548919,23.9473684210526,0.732140805986192,0
+1827,0.0470499395622763,0.49584487534626,49.584487534626,4,91.7764673403279,0.730337638192623,24.0997229916898,1.20413352124518,0
+1828,0.0572396802068256,0.49584487534626,49.584487534626,3,94.3592861715995,0.832210085986521,41.8282548476454,0.691633440262779,0
+1829,0.0301022662515455,0.243767313019391,24.3767313019391,6,84.0427327412582,0.722055015048646,13.2963988919668,6.49902454289523,0
+1830,0.0218702421744398,0.165789473684211,16.5789473684211,7,76.9640566404858,0.585890450243763,9.47368421052632,8.39745199869549,0
+1831,-0.0258451950609932,0.191135734072022,19.1135734072022,1,92.8481599520577,0.918261066455338,19.1135734072022,12.2973535026329,0
+1832,-0.0573437789592433,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0
+1833,0.0293311181941284,0.390581717451524,39.0581717451524,3,94.90186426741,0.860077519379845,37.3961218836565,0.184240256640928,0
+1834,0.0838624198265423,0.760526315789474,76.0526315789474,1,99.2068511412989,0.946266968325792,76.0526315789474,0,0
+1835,0.00898072851810574,0.157894736842105,15.7894736842105,1,91.5743806754245,0.89094387755102,15.7894736842105,0,0
+1836,-0.0354661404047486,0,0,0,NA,NA,0,NA,NA
+1837,-0.0258877756029085,0,0,0,NA,NA,0,NA,NA
+1838,-0.0511622400906115,0,0,0,NA,NA,0,NA,NA
+1839,-0.0535639120990454,0.0221606648199446,2.21606648199446,2,56.8482855749007,0.488668555240793,1.66204986149584,2.8667973279953,0
+1840,0.0467021483030261,0.476454293628809,47.6454293628809,3,95.4430983292795,0.734882245923255,42.1052631578947,4.72433205815249,0
+1841,0.0250443994355866,0.14404432132964,14.404432132964,2,89.8758827025257,0.803098069161121,14.1274238227147,30.8164381339,0
+1842,0.0346746302614386,0.279778393351801,27.9778393351801,3,90.3424762293798,0.846578835529112,20.4986149584488,43.5385560328417,5.19557523727417
+1843,0.00139356146461834,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,2.80220580101013,0
+1844,0.00645604642272386,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,8.32116072518485,0
+1845,0.0142703558899144,0.038781163434903,3.8781163434903,5,46.2940617495256,0.427809798270893,1.66204986149584,30.3158794811794,11.6176595687866
+1846,0.0152752727179509,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,10.5944701830546,0
+1847,0.00962590971953193,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,87.011609395345,83.7761306762695
+1848,0.0117713018164038,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,86.6267433166504,79.307014465332
+1849,0.00943948901327037,0,0,0,NA,NA,0,NA,NA
+1850,0.0102406978867772,0.038781163434903,3.8781163434903,2,69.7937663778274,0.79193083573487,3.32409972299169,69.4608691079276,56.1987419128418
+1851,0.0175789977626808,0.0394736842105263,3.94736842105263,4,54.8985011029376,0.479452054794521,1.84210526315789,45.9618714650472,25.977876663208
+1852,0.0151617753062385,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,4.02681461970011,0
+1853,0.0198888845507628,0.07202216066482,7.20221606648199,1,84.8544079576361,0.921150345831817,7.20221606648199,24.6175136566162,15.5867252349854
+1854,0.0346733358662008,0.274238227146814,27.4238227146814,2,92.6785282821765,0.845183978042714,25.207756232687,28.3877500283598,0
+1855,0.0300225840933021,0.163157894736842,16.3157894736842,6,84.0375969067868,0.84509666899604,14.4736842105263,9.63865014814561,0
+1856,0.0204022016325748,0.130193905817175,13.0193905817175,4,77.2503387396074,0.669466560509554,6.64819944598338,34.1255221671247,5.19557523727417
+1857,0.0240909345605428,0.074792243767313,7.4792243767313,5,64.0910360675042,0.597827600612728,2.49307479224377,34.6242000968368,5.19557523727417
+1858,0.0267034852026315,0.10803324099723,10.803324099723,7,70.0665738068961,0.620544672718586,6.64819944598338,24.2426783732879,0
+1859,0.0302137717375827,0.157894736842105,15.7894736842105,5,88.8079728505091,0.577524038461539,14.4736842105263,23.1043690125147,0
+1860,0.023447508746305,0.0886426592797784,8.86426592797784,6,69.8964994061281,0.704582651391162,6.37119113573407,12.9610811322927,0
+1861,0.0201425836587022,0.105263157894737,10.5263157894737,3,79.5754593328593,0.787114845938375,5.81717451523546,8.33063701579445,0
+1862,0.00100953894867326,0,0,0,NA,NA,0,NA,NA
+1863,0.0161588060288953,0.0421052631578947,4.21052631578947,3,66.698381328035,0.652014652014652,3.15789473684211,4.62278515100479,0
+1864,0.0166864037112588,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,2.96890006746565,0
+1865,0.0184566316362441,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,20.1434162139893,15.5867252349854
+1866,0.0237745403634143,0.0803324099722992,8.03324099722992,3,77.4271992660421,0.745513970776724,6.37119113573407,17.7057105261704,5.19557523727417
+1867,0.0174566536206265,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,1.73185841242472,0
+1868,0.0231185306847062,0.0692520775623269,6.92520775623269,7,55.5228643657008,0.489657738095238,2.49307479224377,13.8457409858704,5.19557523727417
+1869,0.0215462791010121,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,5.19557523727417,0
+1870,0.0316002642088621,0.119113573407202,11.9113573407202,4,76.7236656518271,0.668894129979036,5.26315789473684,3.68266102325085,0
+1871,0.0340625881717929,0.255263157894737,25.5263157894737,6,82.8186351644766,0.722188375776776,10.7894736842105,5.69526358240658,0
+1872,0.0367902124030038,0.301939058171745,30.1939058171745,6,84.8671764954242,0.694585448392555,16.0664819944598,8.49591226752745,0
+1873,0.0203152255155166,0.0969529085872576,9.69529085872576,6,72.2635935571148,0.637243494817009,6.37119113573407,12.3912252834865,5.19557523727417
+1874,0.0232330866698183,0.0775623268698061,7.75623268698061,3,75.7592408248262,0.68682015348682,4.70914127423823,7.4991101707731,0
+1875,0.0265312362079337,0.0526315789473684,5.26315789473684,5,53.9245231818348,0.557347670250896,1.57894736842105,6.4666524887085,0
+1876,0.0229521832211138,0.191135734072022,19.1135734072022,2,90.9378798792687,0.795652666138345,17.7285318559557,13.8961125042128,0
+1877,0.038888558047376,0.25207756232687,25.207756232687,4,85.8629863043211,0.801920438957476,11.6343490304709,8.87695941296253,0
+1878,0.0429004709584864,0.307479224376731,30.7479224376731,4,89.2021724728475,0.7834,20.7756232686981,29.6477352477409,0
+1879,0.0421818532486979,0.305263157894737,30.5263157894737,6,86.1656517404002,0.732683982683983,16.3157894736842,13.3331310009134,0
+1880,0.0423786252285331,0.368421052631579,36.8421052631579,3,94.9557105686598,0.784090909090909,35.180055401662,19.2656859491104,0
+1881,0.0233556692551133,0.0997229916897507,9.97229916897507,7,67.7930382722238,0.537179487179487,4.43213296398892,20.6271666553285,5.19557523727417
+1882,0.00738557777031448,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,27.2666268348694,5.19557523727417
+1883,0.0220794795372153,0.0921052631578947,9.21052631578947,5,71.4408825926718,0.658170914542729,5.52631578947368,6.24190868650164,0
+1884,0.038259904307013,0.385041551246537,38.5041551246537,3,92.5144686507438,0.839948215932468,23.8227146814404,1.78788803635741,0
+1885,0.0309938276082989,0.362880886426593,36.2880886426593,3,92.4041049579576,0.862088411861015,31.8559556786704,0.891525355914167,0
+1886,0.0264290829839806,0.279778393351801,27.9778393351801,2,93.0877609264738,0.846578835529112,25.4847645429363,0.102882677965825,0
+1887,0.0184344866473494,0.197368421052632,19.7368421052632,2,87.9428294678318,0.792349726775956,13.1578947368421,1.65069847742716,0
+1888,0.0154724470666428,0.0332409972299169,3.32409972299169,4,47.8607650886615,0.452384965447497,1.38504155124654,5.62853984038035,0
+1889,0.0242756460217286,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,4.45335006713867,0
+1890,0.0348936318726996,0.329639889196676,32.9639889196676,3,93.0699046065383,0.75137741046832,26.8698060941828,1.11989888824335,0
+1891,0.0292344645826808,0.178947368421053,17.8947368421053,4,85.4014574862205,0.826007326007326,14.2105263157895,0.534838620354148,0
+1892,0.0376218799659673,0.285318559556787,28.5318559556787,3,91.2409205937605,0.742845170752147,20.7756232686981,3.34436464772641,0
+1893,0.0412948860949224,0.290858725761773,29.0858725761773,8,78.6680812520918,0.626942791005291,11.0803324099723,1.5544277145749,0
+1894,0.0499687851589257,0.590027700831025,59.0027700831025,4,96.3888289625653,0.833691646191646,56.2326869806094,0.439062696107676,0
+1895,0.0592420532928755,0.673684210526316,67.3684210526316,3,97.1184034180887,0.827620967741935,63.9473684210526,2.52078965120018,0
+1896,0.0869620220653114,0.872576177285319,87.2576177285319,1,99.6081737630215,0.643280632411067,87.2576177285319,1.30337869856093,0
+1897,0.0624402782678945,0.565096952908587,56.5096952908587,1,98.1651884454077,0.817992370132598,56.5096952908587,6.16978369273391,0
+1898,0.0161661172324857,0.0609418282548476,6.09418282548476,3,76.0834007280729,0.530192608016658,4.98614958448754,5.90406276962974,5.19557523727417
+1899,0.00161921097368529,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483
+1900,0.00585306030619617,0,0,0,NA,NA,0,NA,NA
+1901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+1906,0.00983954628655307,0.0263157894736842,2.63157894736842,2,31.8747015751665,0.486486486486487,1.31578947368421,11.6900444030762,0
+1907,0.0114621897403008,0.03601108033241,3.601108033241,2,65.6056090786984,0.827107279693487,2.77008310249307,19.0533505953275,10.3911504745483
+1908,0.0268326630165502,0.0803324099722992,8.03324099722992,6,61.1654021629513,0.629838502947962,3.04709141274238,4.22911777167485,0
+1909,0.0167671408159557,0.113573407202216,11.3573407202216,6,69.6302454568601,0.591259057971014,5.26315789473684,0.400728086145913,0
+1910,0.0825085767607417,0.723684210526316,72.3684210526316,1,99.0509812333555,0.964931709117756,72.3684210526316,8.64437235918912,0
+1911,0.111163698229681,0.972299168975069,97.2299168975069,1,99.9214168105618,1,97.2299168975069,26.9736040324567,0
+1912,0.0346898139055799,0.299168975069252,29.9168975069252,2,94.8554380102356,0.868288233505625,29.6398891966759,1.01645609626064,0
+1913,0.0100864211711815,0.0526315789473684,5.26315789473684,2,72.161538872763,0.854406130268199,3.601108033241,0.546902656555176,0
+1914,0.0383393555736347,0.447368421052632,44.7368421052632,1,97.3229100554683,0.884375475429789,44.7368421052632,23.6741183224846,0
+1915,-0.00296338154005846,0,0,0,NA,NA,0,NA,NA
+1916,0.00792736276717302,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,37.6325136820475,34.8529777526855
+1917,0.0112475628782281,0.0554016620498615,5.54016620498615,4,63.9894151694966,0.624349635796046,3.04709141274238,41.9885697841644,11.6176595687866
+1918,0.00340817505769481,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,57.1513290405273,57.1513290405273
+1919,0.00996789449753809,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,5.19557523727417,5.19557523727417
+1920,0.0125971279047315,0.110803324099723,11.0803324099723,1,88.8657567935558,0.98321476728507,11.0803324099723,35.3299115657806,20.7823009490967
+1921,0.0164900218590741,0.155124653739612,15.5124653739612,6,72.9570435947058,0.646138245732635,4.98614958448754,2.53350497143609,0
+1922,0.0118416677296122,0.113157894736842,11.3157894736842,2,86.2058524566642,0.874711506758984,10.5263157894737,0.604136655496996,0
+1923,0.0381855122771682,0.310249307479224,31.0249307479224,4,86.9384608555399,0.79186051135234,17.7285318559557,2.82494645885059,0
+1924,0.0402567552153016,0.282548476454294,28.2548476454294,5,88.698364703036,0.801970588855834,19.6675900277008,4.13896223143035,0
+1925,0.0307083973042246,0.268698060941828,26.8698060941828,3,88.5850140096718,0.756378439568095,15.7894736842105,2.90798314576296,0
+1926,0.0227148711298612,0.184210526315789,18.4210526315789,5,81.6701144571713,0.70102281667978,7.10526315789474,3.85217300142561,0
+1927,0.09077344294866,0.653739612188366,65.3739612188366,3,97.1843993791597,0.829732426303855,60.6648199445983,2.0447625911842,0
+1928,0.0955409000815057,0.833795013850416,83.3795013850416,1,99.4714344797886,0.734714873603762,83.3795013850416,2.89537112974249,0
+1929,0.0360957280280977,0.254847645429363,25.4847645429363,2,93.3941762563934,0.918170278357059,24.9307479224377,55.6505452860957,31.1734504699707
+1930,0.00521616668893809,0.0815789473684211,8.1578947368421,2,81.0066776031089,0.608022922636103,6.57894736842105,5.63976024812268,0
+1931,0.0361965736623375,0.335180055401662,33.5180055401662,3,91.0508281320312,0.82907196969697,26.5927977839335,8.35390485416759,0
+1932,0.0182103319942111,0.254847645429363,25.4847645429363,3,88.8587321645181,0.746327862906882,15.2354570637119,3.48161599947059,0
+1933,0.0487618581643405,0.457063711911357,45.7063711911357,5,92.5694040136635,0.763711734693878,34.3490304709141,0,0
+1934,0.0824392038688529,0.778947368421053,77.8947368421052,1,99.2806056729252,0.959391296913738,77.8947368421052,0,0
+1935,0.0258357016690125,0.290858725761773,29.0858725761773,2,91.2116282273702,0.843315972222222,18.005540166205,0,0
+1936,0.0253972884469441,0.368421052631579,36.8421052631579,1,96.4027280994676,0.934573002754821,36.8421052631579,0.234386852809361,0
+1937,-0.0189600715601857,0,0,0,NA,NA,0,NA,NA
+1938,-0.0690492607849209,0,0,0,NA,NA,0,NA,NA
+1939,-0.0246086958394298,0.296398891966759,29.6398891966759,1,95.3511148378513,0.948451715556281,29.6398891966759,0.788690295174857,0
+1940,0.0580445137442479,0.756232686980609,75.6232686980609,2,98.9484261157853,0.791681463068182,75.3462603878116,0.892563568366753,0
+1941,0.0253815508395668,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.722378877210971,8.03324099722992,74.9669063831198,27.9790287017822
+1942,0.0302634121237179,0.25207756232687,25.207756232687,1,94.4903267234909,0.958733424782808,25.207756232687,69.0826234712706,25.977876663208
+1943,0.0160882919109243,0.0789473684210526,7.89473684210526,5,73.0379904996317,0.579008746355685,5.26315789473684,8.90526065826416,0
+1944,0.016443080682119,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,18.2910513877869,5.19557523727417
+1945,0.0257071502763669,0.07202216066482,7.20221606648199,5,65.3001337680246,0.658318165271205,4.15512465373961,6.40953423426701,0
+1946,0.0157506853063353,0.0304709141274238,3.04709141274238,6,29.7001725491467,0.312380952380952,0.831024930747922,22.2328434857455,0
+1947,0.00879795696566457,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210527,30.5128365357717,5.19557523727417
+1948,0.00949823721383738,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0
+1949,0.00655956537893544,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,51.955753326416,51.955753326416
+1950,0.0195787006777413,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,14.2459764480591,0
+1951,0.0172969075791738,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,17.2007837295532,0
+1952,0.0165247767319992,0.0498614958448753,4.98614958448753,2,76.5776966368913,0.844077313465069,4.70914127423823,23.984823624293,5.19557523727417
+1953,0.0103750197412211,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,1.29889380931854,0
+1954,0.0270070246739865,0.238227146814404,23.8227146814404,3,91.7322814562012,0.836981580510992,22.4376731301939,29.3111535449361,11.6176595687866
+1955,0.0323920635612969,0.15,15,5,82.4349386313142,0.747899159663866,10.7894736842105,20.7426525835405,0
+1956,0.0206766986709007,0.124653739612188,12.4653739612188,5,74.8889142612952,0.684335443037975,7.20221606648199,20.2944092644586,5.19557523727417
+1957,0.0143054826019635,0.0526315789473684,5.26315789473684,2,71.509663588221,0.672413793103448,3.32409972299169,8.71936459290354,0
+1958,0.0326455614072918,0.21606648199446,21.606648199446,4,90.1280592172393,0.852102217442515,20.2216066481994,19.1424850378281,5.19557523727417
+1959,0.0253619637832583,0.107894736842105,10.7894736842105,5,77.6191749370739,0.675088709332649,7.89473684210526,20.8663973459383,10.3911504745483
+1960,0.0232713028287997,0.0775623268698061,7.75623268698061,4,68.4488833418153,0.638638638638639,3.8781163434903,12.6750727040427,0
+1961,0.0254673826547385,0.07202216066482,7.20221606648199,3,74.3859358055179,0.76345103749545,5.26315789473684,17.4726944519923,5.19557523727417
+1962,-0.00873945362811426,0,0,0,NA,NA,0,NA,NA
+1963,0.00353129078181442,0.0315789473684211,3.15789473684211,2,68.4650420918366,0.817774936061381,2.89473684210526,7.1067734559377,5.19557523727417
+1964,0.00781043855896009,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,10.0883189042409,5.19557523727417
+1965,0.0313100743703602,0.146814404432133,14.6814404432133,5,78.5198110327775,0.793920365348937,10.2493074792244,52.9469387126419,15.5867252349854
+1966,0.0268919131668602,0.152354570637119,15.2354570637119,6,72.1277668446584,0.627450980392157,6.09418282548476,45.0600309545344,22.0429573059082
+1967,0.0290436080907248,0.15,15,2,85.862702502561,0.879951980792317,10.5263157894737,19.8536581072891,0
+1968,0.0212144548014115,0.038781163434903,3.8781163434903,6,38.8666891304194,0.375792507204611,1.10803324099723,14.3181238515036,0
+1969,0.0414801144755092,0.274238227146814,27.4238227146814,6,86.308493883221,0.698108757183292,18.5595567867036,6.31120590248493,0
+1970,0.0363391429290311,0.188365650969529,18.8365650969529,8,76.1454907583812,0.647976596782058,7.75623268698061,5.62403436268077,0
+1971,0.0421204916373091,0.347368421052632,34.7368421052632,6,86.9771829905491,0.713893722393254,19.7368421052632,8.08494121378118,0
+1972,0.0182428767811846,0.121883656509695,12.1883656509695,3,80.5359892034012,0.799940318867764,8.03324099722992,14.6417681087147,0
+1973,0.000378263210898133,0.0554016620498615,5.54016620498615,2,77.7710689425904,0.897549900671649,5.26315789473684,25.6218439340591,7.34765291213989
+1974,0.022496184159939,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,3.13580703735352,0
+1975,0.0290134450604551,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,17.7069203513009,0
+1976,0.0177309756314405,0.0415512465373961,4.15512465373961,3,66.989886121689,0.810299527062533,3.601108033241,62.4523208618164,47.9008369445801
+1977,0.0294478452090307,0.149584487534626,14.9584487534626,2,89.1143362847831,0.810339392665756,14.1274238227147,30.7337629176952,15.5867252349854
+1978,0.0339363128962021,0.196675900277008,19.6675900277008,3,85.6209886706926,0.830703448275862,11.3573407202216,56.0192128302346,25.977876663208
+1979,0.0330752628454464,0.234210526315789,23.4210526315789,6,82.0186944929337,0.770040415829173,10.2631578947368,18.6081902418244,0
+1980,0.0316161689204572,0.229916897506925,22.9916897506925,3,89.7665509583694,0.752655018842069,19.1135734072022,10.1847015805991,0
+1981,0.0278637979498755,0.149584487534626,14.9584487534626,5,80.4060050512661,0.633322825820462,8.86426592797784,12.5583978670615,0
+1982,0.0117440771159271,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.834099264705882,5.81717451523546,24.1264644804455,5.19557523727417
+1983,0.0166503841230511,0.0263157894736842,2.63157894736842,2,58.2677109531801,0.683991683991684,1.31578947368421,1.55867257118225,0
+1984,0.0329260641295067,0.224376731301939,22.4376731301939,4,88.6076653361537,0.838839285714286,19.3905817174515,5.82814376148177,0
+1985,0.0284621908203338,0.326869806094183,32.6869806094183,4,90.4874370709122,0.861159186185147,27.4238227146814,8.91108395285526,0
+1986,0.0289744699499185,0.301939058171745,30.1939058171745,3,90.6995051056035,0.861836274272823,25.207756232687,7.28843441359494,0
+1987,0.0308433533789675,0.218421052631579,21.8421052631579,4,84.7188682975127,0.791108362536934,10.5263157894737,8.32277428385723,0
+1988,0.020907714688831,0.135734072022161,13.5734072022161,2,85.0114552810163,0.84848137973138,9.97229916897507,6.83230081869631,0
+1989,0.0237792874993532,0.204986149584488,20.4986149584488,2,91.1397488145662,0.816161886893594,19.1135734072022,8.12662745810844,0
+1990,0.0382788935997488,0.418282548476454,41.8282548476454,3,94.5747262365358,0.869675090252708,38.5041551246537,6.46450245459348,0
+1991,0.028798348114115,0.178947368421053,17.8947368421053,6,80.3963889802277,0.774833010127128,12.1052631578947,7.17111250933479,0
+1992,0.0476831493377131,0.50415512465374,50.415512465374,3,94.053846862206,0.814482038360161,42.382271468144,2.80682318289201,0
+1993,0.0454323034018192,0.545706371191136,54.5706371191136,3,95.8622407905085,0.752739726027397,49.0304709141274,2.00156034188827,0
+1994,0.0499902688100814,0.56786703601108,56.786703601108,2,96.3002475925924,0.763123359580052,48.4764542936288,2.51251841754448,0
+1995,0.0572423096898427,0.597368421052632,59.7368421052632,2,95.829222543002,0.864954650102752,52.3684210526316,3.26218447916308,0
+1996,0.0897431988346486,0.728531855955679,72.8531855955679,3,95.5151089228591,0.813201142525976,60.1108033240997,4.84591771622574,0
+1997,0.0655717445987953,0.554016620498615,55.4016620498615,3,94.1663895633886,0.794512062413152,36.8421052631579,6.77114110469818,0
+1998,0.0303968888387559,0.243767313019391,24.3767313019391,5,82.7086107850567,0.696787289143977,9.14127423822715,7.07603926550258,0
+1999,0.0286078692958223,0.286842105263158,28.6842105263158,4,87.5717973378733,0.743757843669807,12.8947368421053,7.4197056665333,0
+2000,0.0246755905232686,0.119883040935673,11.9883040935673,2,83.3005599897648,0.884732052578362,9.94152046783626,39.4874464709584,0
+2001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2006,0.0108304265896119,0.0526315789473684,5.26315789473684,1,70.3508699948475,0.894444444444444,5.26315789473684,1.94834071397781,0
+2007,0.00854516183926661,0.177285318559557,17.7285318559557,3,87.3335334174038,0.739538239538239,14.404432132964,28.2481062710285,0
+2008,0.06285641522942,0.465373961218837,46.5373961218837,2,96.9036389367724,0.957763663713856,46.2603878116344,34.6632461036955,0
+2009,0.0140640090547679,0.185595567867036,18.5595567867036,4,80.7704456654198,0.758619687191116,8.31024930747922,0,0
+2010,0.0298052934282551,0.25,25,7,80.2614671904178,0.701960784313726,11.3157894736842,0.164070796966553,0
+2011,-0.0193686721295988,0.0581717451523546,5.81717451523546,3,65.9818809511864,0.668198529411765,2.49307479224377,1.97926675705683,0
+2012,-0.00280833026653683,0.0443213296398892,4.43213296398892,3,59.8880548051563,0.607608695652174,1.66204986149584,0,0
+2013,-0.0562636807244568,0.0581717451523546,5.81717451523546,2,77.8271812367532,0.800919117647059,5.26315789473684,16.1340703737168,5.19557523727417
+2014,-0.0382335075332345,0.157894736842105,15.7894736842105,4,80.7375621889417,0.794471153846154,8.68421052631579,18.2789939959844,0
+2015,0.00544199211332835,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.418913480885312,0.831024930747922,14.2135469118754,5.19557523727417
+2016,0.0054309728140168,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,51.4335708618164,51.4335708618164
+2017,-0.00846642044770233,0,0,0,NA,NA,0,NA,NA
+2018,-0.0138342067521032,0,0,0,NA,NA,0,NA,NA
+2019,0.00173023726369984,0.0886426592797784,8.86426592797784,2,81.9340815894836,0.915595043254618,7.75623268698061,9.08383363485336,0
+2020,0.0431845096164955,0.354570637119114,35.4570637119114,2,95.2830525628863,0.946803219805117,34.9030470914127,5.18917836993933,0
+2021,0.0360532749916357,0.315789473684211,31.5789473684211,3,88.9631692488557,0.794249439880508,13.5734072022161,15.6503055764918,0
+2022,0.0254215502280491,0.257894736842105,25.7894736842105,3,89.2859811640011,0.877498388136686,20.7894736842105,25.9231440291113,0
+2023,0.00733184270191844,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,1.48445006779262,0
+2024,0.0180934030801113,0.182825484764543,18.2825484764543,2,87.6364001242079,0.904229918938836,12.4653739612188,5.89103220448349,0
+2025,0.0154559974336301,0.487534626038781,48.7534626038781,2,97.1682373296326,0.933954261954262,48.4764542936288,25.7871350618926,0
+2026,0.028212949338788,0.228947368421053,22.8947368421053,2,92.8361643967273,0.748981614004184,21.8421052631579,9.58714416657371,0
+2027,0.120354512639565,0.731301939058172,73.1301939058172,3,95.8295788674991,0.849630323857128,66.2049861495845,4.59890589569554,0
+2028,0.11097936535356,0.78393351800554,78.393351800554,2,96.8030596800314,0.791208791208791,55.4016620498615,7.68195455571367,0
+2029,-0.0218328691622859,0.193905817174515,19.3905817174515,1,92.939253568137,0.889056519431174,19.3905817174515,47.3598621368408,31.1734504699707
+2030,0.0107681496784006,0.126315789473684,12.6315789473684,5,82.7568971110731,0.706876285630326,10.5263157894737,5.08733403682709,0
+2031,0.0495393073439103,0.443213296398892,44.3213296398892,4,91.2274448697316,0.566267302941077,20.2216066481994,4.73810709416866,0
+2032,0.0453973269809832,0.326869806094183,32.6869806094183,4,92.7223752562511,0.833391023422176,30.1939058171745,0,0
+2033,0.0499673558301047,0.443213296398892,44.3213296398892,3,94.6461316085233,0.902257420381088,40.1662049861496,0,0
+2034,0.0729994067334031,0.907894736842105,90.7894736842105,1,99.7323421835731,0.733567046450482,90.7894736842105,0,0
+2035,0.0677332517089854,0.775623268698061,77.5623268698061,2,99.0165554429347,0.813594329437168,77.2853185595568,0,0
+2036,0.0716026125455125,0.897506925207756,89.7506925207756,1,99.6913580246914,0.904345521992581,89.7506925207756,0,0
+2037,-0.00381922569320125,0.0969529085872576,9.69529085872576,1,87.7134101779535,0.88544531415274,9.69529085872576,0,0
+2038,-0.0758120816176463,0,0,0,NA,NA,0,NA,NA
+2039,-0.0312497497266487,0.282548476454294,28.2548476454294,1,95.1039981574685,0.939067873494103,28.2548476454294,0,0
+2040,0.0702068177038943,0.89196675900277,89.196675900277,1,99.6731744228157,0.512820512820512,89.196675900277,0.850570150043653,0
+2041,0.0253239251423944,0.038781163434903,3.8781163434903,2,67.1322948478631,0.687896253602305,2.77008310249307,13.4128161157881,10.3911504745483
+2042,0.0211208211118581,0.171745152354571,17.1745152354571,2,86.6454834499149,0.88820760559891,9.41828254847645,18.354844362505,0
+2043,0.0172516448126675,0.0736842105263158,7.36842105263158,3,77.7800460328999,0.736111111111111,6.05263157894737,6.02662764276777,0
+2044,0.0110911495768577,0,0,0,NA,NA,0,NA,NA
+2045,0.0207866662097424,0.0581717451523546,5.81717451523546,2,79.0081556784912,0.867279411764706,5.54016620498615,48.0263248625256,36.369026184082
+2046,0.0141258069611631,0.0443213296398892,4.43213296398892,4,55.2400648437248,0.607608695652174,1.66204986149584,27.541956871748,0
+2047,0.0143582533689991,0.05,5,4,61.8597690768356,0.673321234119782,3.15789473684211,7.67427339051899,0
+2048,0.00242656220692768,0,0,0,NA,NA,0,NA,NA
+2049,0.0143769963148501,0.03601108033241,3.601108033241,2,67.5979989290526,0.596583652618135,2.77008310249307,7.54811154879056,5.19557523727417
+2050,0.020024591077065,0.0609418282548476,6.09418282548476,6,56.6476723001142,0.467551622418879,2.49307479224377,10.1281479922208,5.19557523727417
+2051,0.0198046020882765,0.0421052631578947,4.21052631578947,5,52.7574762017826,0.478021978021978,2.10526315789474,14.0615395307541,5.19557523727417
+2052,0.0124101965412287,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,14.9985638618469,5.19557523727417
+2053,0.0100364004059597,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,21.4480323791504,16.4298515319824
+2054,0.0228650267806321,0.135734072022161,13.5734072022161,3,86.6365162684236,0.87603021978022,12.7423822714681,24.498131878522,0
+2055,0.0283509918301876,0.139473684210526,13.9473684210526,4,82.6125846639984,0.79567832778842,11.0526315789474,12.0527558326721,0
+2056,0.0316726818936409,0.218836565096953,21.8836565096953,3,86.9913242882863,0.817122593718338,13.5734072022161,30.1430947810789,5.19557523727417
+2057,0.0173778390016501,0,0,0,NA,NA,0,NA,NA
+2058,0.0210354405280265,0.0277008310249307,2.77008310249307,3,49.7452423750949,0.525312294543064,1.38504155124654,15.8272038459778,10.3911504745483
+2059,0.00535602570836138,0,0,0,NA,NA,0,NA,NA
+2060,0.0209359178877101,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,20.0262117385864,10.3911504745483
+2061,0.0250237326665299,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,31.1734504699707,31.1734504699707
+2062,-0.0171579690189765,0,0,0,NA,NA,0,NA,NA
+2063,0.00130400527864128,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,0,0
+2064,0.00970160665197012,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+2065,0.0207668369505496,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,20.7460476370419,5.19557523727417
+2066,0.0159497389518604,0.0581717451523546,5.81717451523546,3,70.3976104557161,0.800919117647059,4.15512465373961,54.9867858886719,11.6176595687866
+2067,0.0192202890212732,0.121052631578947,12.1052631578947,3,80.9209222355022,0.839551665898971,6.05263157894737,11.302591935448,0
+2068,0.0194928371378425,0.102493074792244,10.2493074792244,6,69.9258022518429,0.634689334142886,5.26315789473684,11.8631502873189,5.19557523727417
+2069,0.0311788838799176,0.0692520775623269,6.92520775623269,2,77.1989234742067,0.785119047619048,5.26315789473684,18.1424777793884,0
+2070,0.0292899048585029,0.0941828254847645,9.41828254847645,5,70.1004756236508,0.74371996505024,5.81717451523546,6.79683756828308,0
+2071,0.0223045855191913,0.0342105263157895,3.42105263157895,3,58.0809391704607,0.597335755373903,1.84210526315789,13.4544007594769,0
+2072,0.0231487363295686,0.196675900277008,19.6675900277008,1,93.028415830176,0.910372413793104,19.6675900277008,20.9857243484175,5.19557523727417
+2073,-0.0081730576460049,0,0,0,NA,NA,0,NA,NA
+2074,0.0135551144476494,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+2075,0.014249203757754,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483
+2076,0.0182731130076224,0,0,0,NA,NA,0,NA,NA
+2077,0.0229663504144097,0.038781163434903,3.8781163434903,2,69.7937663778274,0.79193083573487,3.32409972299169,29.5919233049665,21.4219055175781
+2078,0.0171244894812431,0,0,0,NA,NA,0,NA,NA
+2079,0.0267571035321453,0.105263157894737,10.5263157894737,3,80.76660339204,0.783143107989464,7.36842105263158,14.2307188034058,5.19557523727417
+2080,0.0361227873871136,0.277008310249307,27.7008310249307,3,92.4883798098156,0.723371647509579,24.9307479224377,13.7208535718918,0
+2081,0.0484227196751328,0.326869806094183,32.6869806094183,3,90.4687544472848,0.763970616514749,24.9307479224377,16.902958372892,0
+2082,0.0278323273347959,0.0886426592797784,8.86426592797784,7,57.9623258551074,0.556873977086743,2.21606648199446,10.4806264936924,0
+2083,0.0226761494670523,0.0552631578947368,5.52631578947368,4,61.0643056095146,0.636142061281337,2.10526315789474,4.6318180447533,0
+2084,0.0338136333746036,0.229916897506925,22.9916897506925,6,82.7205098136688,0.673151274898449,10.2493074792244,5.71510187976332,0
+2085,0.0167191448680143,0.0415512465373961,4.15512465373961,4,54.7056310017917,0.620599054125066,2.21606648199446,8.01122725804647,0
+2086,0.0223732439884055,0.07202216066482,7.20221606648199,4,68.6435158408864,0.658318165271205,3.601108033241,5.07000835125263,0
+2087,0.0200085810165451,0.0631578947368421,6.31578947368421,4,65.0865745570215,0.719101123595506,3.68421052631579,26.3606836795807,10.3911504745483
+2088,0.0235637924659114,0.0609418282548476,6.09418282548476,2,80.1883084538809,0.780756550407774,5.81717451523546,13.379238280383,0
+2089,0.0196240326314331,0.138504155124654,13.8504155124654,5,78.0110757337718,0.740533383771515,6.37119113573407,48.0720546722412,0
+2090,0.063522769147579,0.584487534626039,58.4487534626039,1,98.2888114302174,0.785119047619048,58.4487534626039,6.71138483879125,0
+2091,0.0361088986769334,0.247368421052632,24.7368421052632,3,88.7060573992414,0.691558441558442,12.1052631578947,13.4308614730835,0
+2092,0.039762303641729,0.257617728531856,25.7617728531856,9,79.6514616800667,0.659188994785111,8.58725761772853,4.36875575075867,0
+2093,0.0364164093930475,0.199445983379501,19.9445983379501,4,82.3954009617785,0.685257335912596,8.31024930747922,1.69424162970649,0
+2094,0.0337952553811596,0.243767313019391,24.3767313019391,5,87.1479620291884,0.722055015048646,17.1745152354571,4.72132028774782,0
+2095,0.0659044786115421,0.626315789473684,62.6315789473684,3,97.330062879218,0.735401171071372,59.7368421052632,4.36874220150859,0
+2096,0.0728391489861034,0.6398891966759,63.98891966759,3,95.2885472566842,0.735837943958594,46.2603878116344,7.9694882058478,0
+2097,0.105595787961315,0.875346260387812,87.5346260387812,1,99.6175916340015,0.650037285607756,87.5346260387812,10.0774158390262,0
+2098,0.113683107817272,0.922437673130194,92.2437673130194,1,99.7711467429596,0.692539177833295,92.2437673130194,5.02438999153114,0
+2099,0.0909747607417797,0.884210526315789,88.4210526315789,2,99.3871838750395,0.605583392984968,87.8947368421053,8.31992785277821,0
+2100,0.041328945463865,0.35672514619883,35.672514619883,3,91.5580336696502,0.810078157136981,24.5614035087719,21.3712752608002,0
+2101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2106,-0.0206061805794889,0,0,0,NA,NA,0,NA,NA
+2107,0.0110537219469987,0.105263157894737,10.5263157894737,4,80.7740812090251,0.616330114135206,7.63157894736842,19.184505045414,0
+2108,0.0990983863670599,0.628947368421053,62.8947368421053,2,96.8209309307251,0.915591730528186,56.578947368421,17.5673325071774,0
+2109,0.0257705368563907,0.318421052631579,31.8421052631579,3,90.9214608261534,0.846612846612847,23.6842105263158,26.9271314794367,14.6953058242798
+2110,0.041028346072053,0.365,36.5,4,90.1998505668542,0.834852104161137,18,15.8639596684338,0
+2111,0.00396260576157937,0.0842105263157895,8.42105263157895,4,70.3811691584748,0.748010610079576,4.73684210526316,0,0
+2112,-0.00336261549358297,0.0289473684210526,2.89473684210526,2,66.7940384779939,0.794037940379404,2.63157894736842,0,0
+2113,-0.109360208541559,0,0,0,NA,NA,0,NA,NA
+2114,-0.13707701612806,0.005,0.5,1,30.8308651382582,1,0.5,30.4193658828735,27.9790287017822
+2115,0.0109529708277741,0.0263157894736842,2.63157894736842,3,52.9827965925392,0.683991683991684,1.84210526315789,24.1623445510864,15.5867252349854
+2116,0.0121354622592806,0.0473684210526316,4.73684210526316,1,80.5625453356091,0.922242684673624,4.73684210526316,0.577286137474908,0
+2117,-0.0166076366110677,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,27.6842441558838,25.977876663208
+2118,-0.0278734608085051,0,0,0,NA,NA,0,NA,NA
+2119,-0.0249443255469439,0.0210526315789474,2.10526315789474,2,56.1263686554176,0.591397849462366,1.57894736842105,0.649446904659271,0
+2120,0.00868368682744116,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.792349726775956,3.68421052631579,29.3821905681065,23.2353191375732
+2121,0.0144653567369938,0.0526315789473684,5.26315789473684,3,72.0787897592289,0.693548387096774,4.21052631578947,0,0
+2122,0.0181597325993243,0.105,10.5,3,83.8099265080457,0.795420568101346,9.25,0.247408344632103,0
+2123,0.0293151474747375,0.186842105263158,18.6842105263158,2,88.3630896605903,0.7442071197411,12.6315789473684,4.58432902752514,0
+2124,-0.0067981219265101,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.745308310991957,1.84210526315789,0,0
+2125,0.0872408652996742,0.852631578947368,85.2631578947368,1,99.5513193744284,0.833683473389356,85.2631578947368,45.9133117007621,5.19557523727417
+2126,0.092901188719552,0.88,88,1,99.6526127274839,0.924924924924925,88,57.0653251951391,20.7823009490967
+2127,0.0591344533766938,0.571052631578947,57.1052631578947,3,95.9398678545331,0.7749498876268,49.2105263157895,1.27131039535944,0
+2128,0.0160015510618809,0.444736842105263,44.4736842105263,1,97.2990270808893,0.959594118361891,44.4736842105263,0,0
+2129,-0.151295882239815,0,0,0,NA,NA,0,NA,NA
+2130,-0.0321232668531036,0.165,16.5,3,86.0334809510059,0.718823223118979,11.25,5.30722264087561,0
+2131,0.0438442909740705,0.484210526315789,48.4210526315789,4,92.0480332341889,0.783313325330132,36.0526315789474,1.21115980459296,0
+2132,0.0695721786456967,0.828947368421053,82.8947368421053,1,99.4682519635264,0.803159803159803,82.8947368421053,0.0329877792842804,0
+2133,0.0950240854468,0.992105263157895,99.2105263157895,1,99.978528257005,1,99.2105263157895,0,0
+2134,0.0746151907835156,0.9625,96.25,1,99.898450616446,0.744292237442922,96.25,0,0
+2135,0.093786211654936,1,100,1,100,NA,100,0,0
+2136,0.0933786119285383,1,100,1,100,NA,100,0,0
+2137,0.0706954846832607,0.894736842105263,89.4736842105263,1,99.6907669965973,0.852255054432348,89.4736842105263,0,0
+2138,0.0388240046922874,0.565,56.5,1,98.2611567869712,0.950855925956262,56.5,0,0
+2139,0.0594881877836183,0.778947368421053,77.8947368421053,1,99.2806056729252,0.951269556296486,77.8947368421053,0,0
+2140,0.0705575349532362,0.623684210526316,62.3684210526316,3,96.7947908870871,0.886028193025936,59.2105263157895,0,0
+2141,0.0237543139504564,0.0526315789473684,5.26315789473684,4,66.2695342051196,0.727598566308244,3.94736842105263,8.80295386314392,0
+2142,0.0479131049785218,0.321052631578947,32.1052631578947,2,95.112527342493,0.88670244484198,31.5789473684211,56.1571320236706,20.7823009490967
+2143,0.00289916063888086,0,0,0,NA,NA,0,NA,NA
+2144,0.00756348228422475,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,111.70486831665,109.107078552246
+2145,0.0247535205924099,0,0,0,NA,NA,0,NA,NA
+2146,0.0296571628745082,0.128947368421053,12.8947368421053,4,86.5914964808481,0.712990936555891,11.8421052631579,8.80723200038988,0
+2147,0.0296191203409398,0.1775,17.75,6,77.1584852847179,0.659574468085106,6.5,33.1459425268039,5.19557523727417
+2148,0.00885268814886091,0.0447368421052632,4.47368421052632,2,74.2330325779122,0.748760330578512,3.94736842105263,9.92740114997415,0
+2149,0.012072358146064,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.419404125286478,0.789473684210526,9.87016042073568,0
+2150,0.0124447069890793,0.0552631578947368,5.52631578947368,4,62.236663616228,0.669220055710306,2.63157894736842,16.9534418469384,10.3911504745483
+2151,0.0219497648016841,0.0275,2.75,4,47.6718287827702,0.451585261353899,1.25,13.7179368625988,10.3911504745483
+2152,0.0152845207783302,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,38.7484750747681,11.6176595687866
+2153,0.0175788816095998,0.0342105263157895,3.42105263157895,3,59.6212152413065,0.71238268240993,2.36842105263158,21.4032374895536,0
+2154,0.0193665369706363,0.0315789473684211,3.15789473684211,4,49.424209926269,0.574808184143223,1.84210526315789,6.50865260759989,0
+2155,0.0127200488619201,0.0425,4.25,3,62.6726813047014,0.74934725848564,2.75,13.6629819028518,0
+2156,0.0171070970245637,0.0736842105263158,7.36842105263158,6,58.1000832198943,0.544191919191919,2.10526315789474,14.4124490533556,0
+2157,0.0223605484370302,0.0631578947368421,6.31578947368421,4,63.1612543179411,0.691011235955056,2.89473684210526,16.87717405955,5.19557523727417
+2158,0.0149661382954755,0.0947368421052632,9.47368421052632,4,81.4981585051074,0.687015503875969,8.15789473684211,8.64440082179176,0
+2159,0.0206497234273957,0.115,11.5,6,69.5099489219904,0.65232507605389,4.25,16.3063835372096,5.19557523727417
+2160,0.0145845219700325,0.05,5,3,65.929818495282,0.673321234119782,2.63157894736842,14.039150489004,10.3911504745483
+2161,0.0161377851337947,0.0526315789473684,5.26315789473684,4,59.5316517554572,0.591397849462366,1.84210526315789,15.7525451183319,10.3911504745483
+2162,0.0172507743653305,0.0421052631578947,4.21052631578947,7,39.4731166296107,0.391025641025641,1.05263157894737,21.0134319067001,10.3911504745483
+2163,0.0209099575821438,0.065,6.5,9,47.9499317309547,0.478283552889005,2,6.32598330424382,0
+2164,0.0289374908496699,0.126315789473684,12.6315789473684,3,82.5694057851921,0.665001469291801,8.15789473684211,5.37657542030017,0
+2165,0.0207740585215537,0.0394736842105263,3.94736842105263,5,51.3833169186911,0.432129514321295,1.84210526315789,9.45841849644979,0
+2166,0.016548895066992,0.0368421052631579,3.68421052631579,3,57.206714896318,0.636612021857924,1.84210526315789,19.2709950038365,5.19557523727417
+2167,0.0341340135251812,0.2075,20.75,4,85.0533895991029,0.725315993905449,11.75,33.226166351732,5.19557523727417
+2168,0.0288001813272115,0.2,20,6,79.2628988110906,0.738805970149254,8.42105263157895,34.4467416750757,0
+2169,0.0246129272570616,0.1,10,4,73.7929699403807,0.753086419753086,6.57894736842105,21.5498681695838,5.19557523727417
+2170,0.0354722595645351,0.207894736842105,20.7894736842105,5,82.2541332252218,0.774560987185572,11.5789473684211,7.1150147039679,0
+2171,0.041154851319443,0.38,38,6,93.2180522897926,0.734073303272055,32.75,7.27665221063714,0
+2172,0.0305564929043038,0.273684210526316,27.3684210526316,2,92.5559988954582,0.896923196155933,24.7368421052632,9.21029502611894,0
+2173,0.0133937270544505,0.0526315789473684,5.26315789473684,2,75.5074053121974,0.761648745519713,4.47368421052632,15.9449444770813,5.19557523727417
+2174,0.0182342454059452,0.0578947368421053,5.78947368421053,3,72.5666742571943,0.812684850476503,4.73684210526316,23.5959356481379,5.19557523727417
+2175,0.0129479701411583,0,0,0,NA,NA,0,NA,NA
+2176,0.0473527915582772,0.426315789473684,42.6315789473684,1,97.1257013369564,0.918108490856474,42.6315789473684,24.1917867748826,0
+2177,0.0146857146958562,0.0894736842105263,8.94736842105263,4,70.776167492485,0.705821635012386,4.21052631578947,16.6154174383949,0
+2178,0.018320933395482,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,15.6003240346909,5.19557523727417
+2179,0.0239145118816668,0.0775,7.75,3,73.3117858429469,0.78319783197832,4,22.8131307325056,5.19557523727417
+2180,0.0343073868674094,0.2,20,4,89.6453254144101,0.822761194029851,18.4210526315789,27.9383890315106,0
+2181,0.019222616675669,0.0789473684210526,7.89473684210526,8,53.6165616118297,0.512536443148688,1.84210526315789,13.3822952429454,0
+2182,0.0386930902706808,0.281578947368421,28.1578947368421,5,86.6061273197363,0.646605553341305,14.2105263157895,4.92886226422319,0
+2183,0.0424440049735131,0.3375,33.75,6,85.2147994213114,0.67479674796748,16.25,2.42048080938834,0
+2184,0.0324504136011168,0.157894736842105,15.7894736842105,7,73.1013041841728,0.634615384615385,5,6.31801737149557,0
+2185,0.0352501115705021,0.292105263157895,29.2105263157895,5,87.060695538097,0.773977695167286,16.5789473684211,5.21712867633716,0
+2186,0.0263715257428167,0.228947368421053,22.8947368421053,7,84.84714002499,0.765716173070571,16.3157894736842,9.28042316984856,0
+2187,0.0128931551539972,0.0375,3.75,3,64.9626786721516,0.763872491145218,3,54.8874900817871,5.19557523727417
+2188,0.0191430006927955,0.0447368421052632,4.47368421052632,4,55.431296985303,0.539393939393939,1.57894736842105,10.5889577024123,5.19557523727417
+2189,0.0237808388160039,0.0657894736842105,6.57894736842105,4,66.788392346861,0.652112676056338,3.42105263157895,26.5246759986877,0
+2190,0.0598054368857686,0.526315789473684,52.6315789473684,5,94.3916459949211,0.772386942198263,44.7368421052632,6.0461687040329,0
+2191,0.0648239725131134,0.6625,66.25,2,96.7168138829227,0.6959534987704,54.5,3.45674953640632,0
+2192,0.0564015542769707,0.507894736842105,50.7894736842105,3,93.0778571696111,0.687808084127506,30.2631578947368,4.0651422930505,0
+2193,0.0445099052467604,0.360526315789474,36.0526315789474,6,87.6357138977697,0.680987654320988,21.0526315789474,16.5284850197117,0
+2194,0.0300255004522593,0.328947368421053,32.8947368421053,3,94.4628195470724,0.776798825256975,31.0526315789474,5.3691381111145,0
+2195,0.0629657805179886,0.6325,63.25,2,98.4879195356406,0.678521197508539,63,4.35935789417372,0
+2196,0.0714171287187032,0.734210526315789,73.421052631579,2,98.8398374904061,0.691255385080493,72.8947368421053,3.54986951171711,0
+2197,0.0467960696667433,0.4,40,4,89.8240147607979,0.7610513739546,15.7894736842105,14.1313314406495,0
+2198,0.0586781600294145,0.565789473684211,56.578947368421,1,98.2185625529054,0.861818181818182,56.578947368421,6.45102439259374,0
+2199,0.0965108208544552,0.8525,85.25,1,99.5628383044854,0.62160031533307,85.25,14.6660504452993,0
+2200,0.0569020145637397,0.477777777777778,47.7777777777778,3,91.8562794742725,0.722129001946439,27.5,7.26457894402881,0
+2201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2206,0.0679401701536814,0.822368421052632,82.2368421052632,1,99.0932521871338,0.801598955783978,82.2368421052632,15.7841768417358,0
+2207,0.0467876545482488,0.354570637119114,35.4570637119114,7,86.5473660130941,0.687468916355063,13.8504155124654,2.0955810174346,0
+2208,0.0186731764595889,0.265927977839335,26.5927977839335,3,87.7250097811406,0.825756910925845,16.0664819944598,8.76933410267035,0
+2209,0.0255110446344278,0.171745152354571,17.1745152354571,4,83.7957038611596,0.686981295676948,12.4653739612188,10.3017618886886,0
+2210,0.0538250143829684,0.563157894736842,56.3157894736842,3,95.25625202286,0.792940606647696,41.3157894736842,18.4339269722734,0
+2211,0.00455135644451503,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.903636970303637,7.75623268698061,12.8033817495619,5.19557523727417
+2212,0.0054422710979913,0.0941828254847645,9.41828254847645,2,82.4259784611648,0.783147662734819,8.03324099722992,21.0165618728189,0
+2213,-0.0786303850161107,0,0,0,NA,NA,0,NA,NA
+2214,-0.0323586021951135,0,0,0,NA,NA,0,NA,NA
+2215,-0.00345752075983678,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,36.0025405883789,31.6034507751465
+2216,-0.00123648586852842,0,0,0,NA,NA,0,NA,NA
+2217,-0.00666021857568543,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+2218,-0.0175165541921735,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,0,0
+2219,-0.00610475971039715,0.119113573407202,11.9113573407202,1,89.4584842426695,0.952699161425577,11.9113573407202,61.2554423310036,44.0859146118164
+2220,-0.00131894253291923,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,21.1021032333374,20.7823009490967
+2221,0.00842166280042099,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,0,0
+2222,-0.00482860525130251,0.0236842105263158,2.36842105263158,2,59.7740001564927,0.573225516621743,1.84210526315789,0.577286137474908,0
+2223,0.0128363978461428,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,2.59778761863708,0
+2224,0.0435457961639284,0.43213296398892,43.213296398892,1,97.1043474380648,0.846604912042152,43.213296398892,0.480064942286565,0
+2225,0.0764646481913985,0.742382271468144,74.2382271468144,2,97.2579256065691,0.76076872100729,60.387811634349,18.6740998901538,0
+2226,0.0619605238943941,0.581578947368421,58.1578947368421,3,95.3121543601681,0.860780362703792,41.0526315789474,22.809600441704,0
+2227,0.0212605341477174,0.207756232686981,20.7756232686981,5,81.2014104789371,0.684440559440559,7.20221606648199,3.72826171875,0
+2228,0.0263567259185303,0.285318559556787,28.5318559556787,1,95.1548576193769,0.984873245338362,28.5318559556787,0,0
+2229,-0.056255550243089,0,0,0,NA,NA,0,NA,NA
+2230,0.00483334565689898,0.0921052631578947,9.21052631578947,7,72.2055709713419,0.658170914542729,6.57894736842105,2.69609944479806,0
+2231,0.0563624830944902,0.609418282548476,60.9418282548476,3,97.8189375183459,0.800172980453209,60.1108033240997,8.59983396096663,0
+2232,0.0606519878631357,0.681440443213296,68.1440443213296,3,97.3478115182521,0.754328922495274,64.2659279778393,8.26708084587159,0
+2233,0.0590033190662358,0.678670360110803,67.8670360110803,1,98.8118584805562,0.877691612708929,67.8670360110803,2.96766057111779,0
+2234,0.0516309552687361,0.576315789473684,57.6315789473684,1,98.2845154772468,0.84959201071733,57.6315789473684,3.02467998304324,0
+2235,0.0540492467632936,0.592797783933518,59.2797783933518,1,98.3399263258508,0.895104775578573,59.2797783933518,4.38045991024124,0
+2236,0.058492600587274,0.664819944598338,66.4819944598338,1,98.7419737427832,0.940197684477903,66.4819944598338,2.28375944097837,0
+2237,0.054254176879178,0.614958448753463,61.4958448753463,2,96.5389625644656,0.818075974003406,57.617728531856,2.54179941211735,0
+2238,0.0521671953585036,0.555263157894737,55.5263157894737,3,97.5761467101074,0.862335466731071,55,4.97478401491427,0
+2239,0.0647137402534263,0.703601108033241,70.3601108033241,1,98.9324109457639,0.766099897903087,70.3601108033241,7.84677773573267,0
+2240,0.0627519084202575,0.584487534626039,58.4487534626039,2,97.3319483796484,0.834234693877551,55.9556786703601,8.02993377125094,0
+2241,0.0310075648154009,0.152354570637119,15.2354570637119,5,79.0459120816159,0.689542483660131,8.58725761772853,9.68776199167425,0
+2242,0.0135597373438558,0.113573407202216,11.3573407202216,3,80.5428285379975,0.738405797101449,6.64819944598338,32.1469097835262,10.3911504745483
+2243,0.0127021645255139,0.0447368421052632,4.47368421052632,2,75.8932411230936,0.790633608815427,4.21052631578947,16.735416356255,10.3911504745483
+2244,0.0143028158334376,0.0470914127423823,4.70914127423823,2,70.7265317165013,0.664186046511628,3.32409972299169,14.4751997555003,0
+2245,0.0228059416284273,0.132963988919668,13.2963988919668,5,72.4306968254835,0.676498090859503,4.15512465373961,13.4782563149929,0
+2246,0.0213789003238248,0.0664819944598338,6.64819944598338,6,56.2746275544672,0.464391691394659,2.21606648199446,4.26790022850037,0
+2247,0.0234431070489097,0.142105263157895,14.2105263157895,4,84.2959471977274,0.674120984233789,11.3157894736842,10.0568275893176,0
+2248,0.0212113437098254,0.038781163434903,3.8781163434903,4,58.2439433088657,0.531844380403458,2.49307479224377,24.9029581887381,0
+2249,0.0219108592971281,0.0554016620498615,5.54016620498615,4,66.8446776261368,0.521899536467695,3.32409972299169,26.5029056310654,5.19557523727417
+2250,0.0176403156075439,0.074792243767313,7.4792243767313,6,61.3399397085753,0.472148725804206,3.04709141274238,8.88895282038936,0
+2251,0.0210576723906343,0.128947368421053,12.8947368421053,3,82.1800224835407,0.808660624370594,10.2631578947368,31.482859893721,7.34765291213989
+2252,0.00633437680361897,0,0,0,NA,NA,0,NA,NA
+2253,0.00487368215375546,0,0,0,NA,NA,0,NA,NA
+2254,0.0108125671329798,0,0,0,NA,NA,0,NA,NA
+2255,0.0125253932397563,0.0368421052631579,3.68421052631579,2,69.1230166596743,0.844262295081967,3.15789473684211,3.12261996950422,0
+2256,0.00227838580830913,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967
+2257,0.011856768304101,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.862003058103975,9.41828254847645,11.4073867517359,5.19557523727417
+2258,0.0154399554324028,0.0997229916897507,9.97229916897507,2,84.1969420215301,0.851897435897436,9.14127423822715,14.843208750089,0
+2259,0.0129306085015095,0,0,0,NA,NA,0,NA,NA
+2260,0.0347767112149776,0.243767313019391,24.3767313019391,4,87.4594854484598,0.856816219873545,16.6204986149584,20.3149305094372,0
+2261,0.0295374691606684,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.693201133144476,2.21606648199446,79.4101715087891,72.9233703613281
+2262,0.0280517761958584,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,78.913321358817,72.9233703613281
+2263,0.0222515391231833,0.0315789473684211,3.15789473684211,2,69.4384903010343,0.696291560102302,2.89473684210526,33.4344466527303,20.7823009490967
+2264,0.011860593170767,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,8.94033400217692,0
+2265,0.0198438911870439,0.0914127423822715,9.14127423822715,2,84.8948035646419,0.898091689250226,8.86426592797784,11.3665042068019,0
+2266,0.00515396431202686,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+2267,0.0136598124507768,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,10.3911504745483,10.3911504745483
+2268,0.0157705609298245,0.038781163434903,3.8781163434903,4,56.9101755477017,0.687896253602305,2.77008310249307,16.1652734960829,0
+2269,0.0347538324671319,0.188365650969529,18.8365650969529,1,92.7550642341935,0.906817334442309,18.8365650969529,28.5744554856244,11.6176595687866
+2270,0.0288278719820979,0.155124653739612,15.5124653739612,2,85.4471605756097,0.792563799222579,9.69529085872576,18.7857345342636,0
+2271,0.0802356588310718,0.515789473684211,51.5789473684211,3,96.7655303047007,0.903547539417105,50.5263157894737,4.98023788539731,0
+2272,0.0185701221192092,0.0886426592797784,8.86426592797784,2,81.4406775834936,0.873392564881927,7.75623268698061,3.89668138325214,0
+2273,0.0176708950846388,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417
+2274,0.0181966626934955,0.038781163434903,3.8781163434903,4,50.0691806185109,0.479827089337176,1.10803324099723,6.98746497290475,0
+2275,0.016871208567337,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,16.8375148773193,10.3911504745483
+2276,0.0317549427267915,0.135734072022161,13.5734072022161,4,77.9067678879753,0.76583485958486,6.09418282548476,32.678031901924,11.6176595687866
+2277,0.0247877012604031,0.177285318559557,17.7285318559557,2,87.1646717634873,0.8372113997114,10.2493074792244,17.6341225802898,0
+2278,0.0469057648020841,0.379501385041551,37.9501385041551,3,95.6158676448462,0.806607142857143,37.1191135734072,25.4182454025658,0
+2279,0.0380760884382318,0.328947368421053,32.8947368421053,4,90.2802886066845,0.829316748725922,19.7368421052632,39.9197208786011,5.19557523727417
+2280,0.0447237330733623,0.3601108033241,36.01108033241,2,93.2764146844661,0.815368878660018,25.7617728531856,13.6132917807652,0
+2281,0.0352742638040032,0.21606648199446,21.606648199446,6,82.3221247678788,0.685717212065345,11.9113573407202,5.40106062400035,0
+2282,0.0409765166085061,0.335180055401662,33.5180055401662,6,87.221981621964,0.644469696969697,14.6814404432133,6.75020862216792,0
+2283,0.0345736882089879,0.168421052631579,16.8421052631579,11,65.8653526868559,0.506103074141049,2.89473684210526,7.08838032186031,0
+2284,0.0164769523220144,0,0,0,NA,NA,0,NA,NA
+2285,0.0106153562501529,0,0,0,NA,NA,0,NA,NA
+2286,0.00623725955125423,0,0,0,NA,NA,0,NA,NA
+2287,0.0223850941813955,0.0605263157894737,6.05263157894737,2,74.7657317226782,0.852163087457205,4.73684210526316,12.684243844903,0
+2288,0.0206178181518646,0.105263157894737,10.5263157894737,4,73.2374883718658,0.680672268907563,4.15512465373961,12.9853721417879,0
+2289,0.0153284038843038,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,39.676944732666,37.4658241271973
+2290,0.0326696691355862,0.235457063711911,23.5457063711911,3,89.2275648261621,0.75746232843843,17.4515235457064,13.1399086503422,0
+2291,0.0712587081364626,0.671052631578947,67.1052631578947,1,98.8064194597879,0.758326359832636,67.1052631578947,3.79341748929491,0
+2292,0.0673947004980918,0.617728531855956,61.7728531855956,1,98.4870327369633,0.754755434782609,61.7728531855956,6.93695622602386,0
+2293,0.0796678245798498,0.6398891966759,63.98891966759,2,95.726673318873,0.819596644654649,35.7340720221607,20.0965005866377,0
+2294,0.0338992305483957,0.321329639889197,32.1329639889197,3,94.0511719691559,0.831603498542274,30.7479224376731,5.8858905784015,0
+2295,0.0795351287742194,0.828947368421053,82.8947368421053,1,99.4682519635264,0.734265734265734,82.8947368421053,3.70245961083306,0
+2296,0.0658061144489104,0.703601108033241,70.3601108033241,1,98.9324109457639,0.709396842849289,70.3601108033241,6.2249505050539,0
+2297,0.0436632972091489,0.365650969529086,36.5650969529086,4,87.7246800573196,0.744894815995941,16.8975069252078,31.9948046424172,5.19557523727417
+2298,0.0495594423612544,0.50415512465374,50.415512465374,2,97.1620390777979,0.814482038360161,49.584487534626,22.8578076441209,0
+2299,0.039712395062088,0.286842105263158,28.6842105263158,1,95.311093057307,0.89323243486242,28.6842105263158,55.1921928825728,25.977876663208
+2300,0.0266176180062034,0.210526315789474,21.0526315789474,2,88.1618113502462,0.860367454068241,13.4502923976608,46.7368578381009,20.7823009490967
+2301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2306,0.0290404846987497,0.25,25,3,80.3138800717231,0.724867724867725,12.5,0.820353984832764,0
+2307,0.0225356791434376,0.210526315789474,21.0526315789474,3,87.1449782521657,0.735323383084577,14.404432132964,3.86590285677659,0
+2308,0.0217731715514689,0.301939058171745,30.1939058171745,3,89.7401841565673,0.82547739908146,17.7285318559557,5.14745818146872,0
+2309,0.0202702912980345,0.124653739612188,12.4653739612188,5,76.6307847580316,0.684335443037975,7.4792243767313,12.3400966750251,0
+2310,0.0391419062025594,0.405263157894737,40.5263157894737,5,90.0885185223861,0.792051033490728,24.2105263157895,12.5692393284339,0
+2311,0.00143727630453022,0.0221606648199446,2.21606648199446,2,55.3960460550465,0.693201133144476,1.66204986149584,26.7453811168671,20.7823009490967
+2312,-0.0123517295992075,0.0637119113573407,6.37119113573407,2,74.421559212614,0.821992110453649,3.32409972299169,28.4091909242713,10.3911504745483
+2313,-0.100801680550989,0,0,0,NA,NA,0,NA,NA
+2314,-0.0192334723346951,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,36.369026184082,36.369026184082
+2315,-0.0136943357895593,0,0,0,NA,NA,0,NA,NA
+2316,0.00227143055640617,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,37.0126857757568,33.2679138183594
+2317,0.00238347106146509,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,38.9436973571777,36.7382659912109
+2318,-0.0491119086547099,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,0,0
+2319,-0.00426549712118335,0.0997229916897507,9.97229916897507,2,80.5884173588518,0.740820512820513,5.81717451523546,49.8741707272,32.8597030639648
+2320,0.0211595940683634,0.240997229916898,24.0997229916898,1,94.2388121322677,0.914998822698375,24.0997229916898,24.773593316133,5.19557523727417
+2321,0.0162766796182197,0.074792243767313,7.4792243767313,3,73.4212899305291,0.748642250382955,4.15512465373961,0.96214356245818,0
+2322,0.0080926673541207,0.102631578947368,10.2631578947368,3,77.9686892830865,0.811414392059553,5.78947368421053,1.33219877878825,0
+2323,-0.00180112692522475,0.0332409972299169,3.32409972299169,1,75.0842913483253,1,3.32409972299169,0,0
+2324,0.0574150672810723,0.545706371191136,54.5706371191136,2,95.9656245653937,0.873354493818911,47.9224376731302,1.59973223197279,0
+2325,0.0704303414243534,0.742382271468144,74.2382271468144,1,99.1077237700839,0.737617306911221,74.2382271468144,0.990087966420757,0
+2326,0.0424636391660897,0.65,65,1,98.7003747627035,0.962894248608534,65,0,0
+2327,0.0140261126792934,0.105263157894737,10.5263157894737,3,76.5886916429342,0.822595704948646,5.54016620498615,0.410176992416382,0
+2328,0.0085385598108732,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+2329,-0.00738216710608331,0,0,0,NA,NA,0,NA,NA
+2330,0.0264483467815712,0.228947368421053,22.8947368421053,2,91.20928117866,0.916327204668061,20.5263157894737,3.34427829172419,0
+2331,0.0530503410588011,0.631578947368421,63.1578947368421,1,98.56496811549,0.623193277310924,63.1578947368421,28.931156317393,0
+2332,0.049171865890009,0.443213296398892,44.3213296398892,3,91.1685722249353,0.841168308119268,22.1606648199446,12.8341159820557,0
+2333,0.0910367288788293,0.642659279778393,64.2659279778393,1,98.6254938212924,0.974148271478955,64.2659279778393,0,0
+2334,0.103786312857808,0.655263157894737,65.5263157894737,1,98.7273644278237,0.912852602955148,65.5263157894737,1.35673188014203,0
+2335,0.136401917792229,0.825484764542936,82.5484764542936,1,99.4408863994965,0.969357439945675,82.5484764542936,1.90927107542153,0
+2336,0.0696935776435355,0.673130193905817,67.3130193905817,2,98.253288100869,0.764149182408721,66.2049861495845,18.5511275377784,0
+2337,0.105442918950583,0.781163434903047,78.1163434903047,3,96.9759605872823,0.793073799856699,71.4681440443213,15.6554627147972,0
+2338,0.0369695615459166,0.292105263157895,29.2105263157895,5,86.8121200620623,0.809293680297398,13.1578947368421,5.05563413774645,0
+2339,0.0270414794464673,0.155124653739612,15.5124653739612,2,88.5084802408706,0.804765928680074,14.1274238227147,5.85820920978274,0
+2340,0.0310780904753636,0.193905817174515,19.3905817174515,4,87.2160788957045,0.737769955019138,14.9584487534626,6.77316911561149,0
+2341,0.0332574321705188,0.263157894736842,26.3157894736842,3,90.3044768737933,0.792436974789916,19.9445983379501,24.21836521751,0
+2342,0.0353338493940231,0.257617728531856,25.7617728531856,4,91.5619361194103,0.837709045135767,23.8227146814404,22.48425333987,0
+2343,0.0255658901616698,0.186842105263158,18.6842105263158,3,88.7872115230638,0.803236245954693,16.8421052631579,10.9722949216064,0
+2344,0.00709102715636794,0.171745152354571,17.1745152354571,2,87.0218008698327,0.854669887278583,10.803324099723,5.31592199110216,0
+2345,0.0427662998794544,0.415512465373961,41.5512465373961,3,91.3252427697072,0.769806118052564,18.005540166205,2.7168052927653,0
+2346,0.0393339627234709,0.271468144044321,27.1468144044321,7,85.658704538314,0.750432077428275,19.1135734072022,3.29841612309826,0
+2347,0.025481218536726,0.121052631578947,12.1052631578947,5,75.6366033381416,0.766620604943958,7.36842105263158,82.0948395625405,0
+2348,0.0246250524546453,0.07202216066482,7.20221606648199,6,58.0863211090736,0.55318529304696,1.93905817174515,119.710482377272,89.6895294189453
+2349,0.0177286050623522,0.0775623268698061,7.75623268698061,6,61.128326776266,0.566366366366366,2.49307479224377,93.5900214059012,46.7601776123047
+2350,0.0187851626903575,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,6.92743364969889,5.19557523727417
+2351,0.0188356070961977,0.0763157894736842,7.63157894736842,4,74.5561724532934,0.63144814208644,5.52631578947368,14.0555145493869,5.19557523727417
+2352,0.0222097137304238,0.202216066481994,20.2216066481994,1,93.2012122404084,0.931450737847222,20.2216066481994,9.01590955420716,0
+2353,0.00125311485740325,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,16.6179789134434,11.6176595687866
+2354,0.00751730733582688,0,0,0,NA,NA,0,NA,NA
+2355,0.0139465647354403,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,12.5432281494141,10.3911504745483
+2356,0.0108538650226498,0,0,0,NA,NA,0,NA,NA
+2357,0.0167910994741685,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,18.4447795550028,7.34765291213989
+2358,0.0138965444835635,0,0,0,NA,NA,0,NA,NA
+2359,0.0196976307863416,0.0578947368421053,5.78947368421053,3,70.3862552664237,0.750246467302005,3.15789473684211,19.7154436328194,5.19557523727417
+2360,0.0265801881822808,0.138504155124654,13.8504155124654,4,80.6647539021791,0.713221108379043,6.92520775623269,13.8380642223358,0
+2361,0.0232856369242745,0.124653739612188,12.4653739612188,5,75.1428841356301,0.744462025316456,7.20221606648199,10.0083603435093,0
+2362,0.0259667087951046,0.141274238227147,14.1274238227147,3,83.5411748254279,0.839377085650723,10.803324099723,13.6531652749753,0
+2363,0.0235096725344862,0.1,10,1,88.3079606859525,0.876543209876543,10,14.6080130903344,5.19557523727417
+2364,0.0160322608608011,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+2365,0.0164580462434259,0.0304709141274238,3.04709141274238,2,67.4369707831767,0.724952380952381,2.77008310249307,37.9649713689631,0
+2366,0.0142461656845994,0.074792243767313,7.4792243767313,2,82.3655876327824,0.673234925497842,6.92520775623269,10.8980871836344,0
+2367,0.023960569469177,0.0868421052631579,8.68421052631579,3,78.0592989720641,0.878322126160743,7.36842105263158,24.0711489879724,5.19557523727417
+2368,0.0270277343443315,0.0831024930747922,8.31024930747922,3,80.0452775493904,0.732905851162217,7.20221606648199,13.4749758243561,0
+2369,0.0357967623058357,0.254847645429363,25.4847645429363,3,86.6716939613993,0.811791640221235,12.1883656509695,28.3596190162327,10.3911504745483
+2370,0.018081185237002,0,0,0,NA,NA,0,NA,NA
+2371,0.0403394830587786,0.157894736842105,15.7894736842105,3,86.6302039562816,0.897235576923077,14.2105263157895,20.0175217787425,0
+2372,0.0150606123346749,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,16.4386280377706,7.34765291213989
+2373,0.0163448292476566,0.03601108033241,3.601108033241,2,65.6056090786984,0.827107279693487,2.77008310249307,3.36282150561993,0
+2374,0.0215190468983882,0.0803324099722992,8.03324099722992,5,62.5806622241384,0.629838502947962,2.21606648199446,19.935539706,5.19557523727417
+2375,0.00529211590665478,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,11.6176595687866,11.6176595687866
+2376,0.0188044727477081,0.155124653739612,15.5124653739612,2,88.8135246714552,0.902382964340037,14.404432132964,37.4448171002524,15.5867252349854
+2377,0.0324212965727149,0.227146814404432,22.7146814404432,3,86.1966616857832,0.848300580892349,11.0803324099723,13.9700665125033,0
+2378,0.0426983551920064,0.263157894736842,26.3157894736842,2,90.1739414206495,0.880252100840336,18.5595567867036,30.5646829052975,5.19557523727417
+2379,0.0236670334868522,0.131578947368421,13.1578947368421,4,76.3217180920266,0.756149732620321,5,7.71201535224915,0
+2380,0.0318393348273407,0.171745152354571,17.1745152354571,7,77.4288005504559,0.698160535117057,10.5263157894737,10.1331733734377,0
+2381,0.0528533105649215,0.379501385041551,37.9501385041551,4,93.3815527292254,0.851732142857143,34.9030470914127,6.37970062589993,0
+2382,0.0400975665272345,0.240997229916898,24.0997229916898,4,85.5078198723771,0.727996232634801,11.9113573407202,24.760378130551,0
+2383,0.0270050634525097,0.0947368421052632,9.47368421052632,4,73.9013275499804,0.631782945736434,4.73684210526316,26.8013066053391,0
+2384,0.0183572642727438,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.915430267062315,6.64819944598338,1.82152831554413,0
+2385,0.00434728357508386,0,0,0,NA,NA,0,NA,NA
+2386,0.0106115686452228,0.113573407202216,11.3573407202216,2,86.0165602468936,0.820153985507246,10.2493074792244,2.1624358107404,0
+2387,0.0104235654818934,0.0289473684210526,2.89473684210526,2,62.0252426148085,0.725383920505872,2.10526315789474,13.4972356449474,0
+2388,0.009114103214713,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,45.2272042036057,30.2951488494873
+2389,0.0229439570188298,0.0831024930747922,8.31024930747922,3,79.4680930343721,0.777421542635181,7.20221606648199,42.0006261189779,21.4219055175781
+2390,0.0210549349901769,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.961019328366267,4.98614958448753,2.83690736028883,0
+2391,0.0496346282371393,0.439473684210526,43.9473684210526,2,94.4729392657182,0.803060788976282,28.6842105263158,25.1146646117022,0
+2392,0.0548678949741173,0.437673130193906,43.7673130193906,3,93.005989835099,0.803771020893494,28.5318559556787,30.2296152959896,0
+2393,0.0735160935850887,0.6398891966759,63.98891966759,2,98.0797748984599,0.755166874888453,62.8808864265928,9.68632925950087,0
+2394,0.0214506897553448,0.171745152354571,17.1745152354571,6,81.2922115895243,0.742877492877493,13.0193905817175,7.09807655888219,0
+2395,0.0311701164157344,0.189473684210526,18.9473684210526,6,83.388512954516,0.757132631148379,13.6842105263158,15.8775777750545,0
+2396,0.0272026453242983,0.152354570637119,15.2354570637119,4,81.9582562810304,0.788888888888889,9.69529085872576,16.9066621086814,0
+2397,0.0567343410723997,0.562326869806094,56.2326869806094,4,96.7934538812224,0.787882348991035,54.016620498615,4.61526568182583,0
+2398,0.0611126014493261,0.689750692520776,68.9750692520776,3,96.7317171275326,0.778663396689148,62.3268698060942,17.0106726975805,0
+2399,0.0271768555305818,0.163157894736842,16.3157894736842,3,88.3737040950112,0.84509666899604,15,46.9930911602512,5.19557523727417
+2400,0.0653203608579995,0.482456140350877,48.2456140350877,2,94.0162176472013,0.841101694915254,38.0116959064327,22.7898366725806,0
+2401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2406,0.0438553006081891,0.467105263157895,46.7105263157895,1,95.9116451039364,0.879901234567901,46.7105263157895,0,0
+2407,0.00775173817612257,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,0.649446904659271,0
+2408,0.0192275234904348,0.177285318559557,17.7285318559557,2,89.8596429078757,0.858916546416546,16.0664819944598,62.4519737958908,16.4298515319824
+2409,0.030122588251084,0.257617728531856,25.7617728531856,4,87.9972467265556,0.789021758676497,19.6675900277008,64.7914496185959,25.977876663208
+2410,0.0575645379577365,0.668421052631579,66.8421052631579,2,95.8314547951369,0.80358810190743,50.5263157894737,19.1903011911497,0
+2411,0.0484037059668833,0.340720221606648,34.0720221606648,4,87.6578105968879,0.6871161020462,15.2354570637119,53.2479351632963,31.1734504699707
+2412,0.0287123980766092,0.335180055401662,33.5180055401662,3,90.0991994110631,0.760700757575758,19.1135734072022,22.6337815986192,10.3911504745483
+2413,0.0380169111548264,0.346260387811634,34.6260387811634,2,95.7027191033596,0.831535130291944,34.3490304709141,49.7830340652466,11.6176595687866
+2414,0.00338948416369691,0,0,0,NA,NA,0,NA,NA
+2415,0.00391661840455383,0,0,0,NA,NA,0,NA,NA
+2416,0.0133565902277273,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,5.75867303212484,0
+2417,2.40663782349259e-06,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,9.03469059202406,5.19557523727417
+2418,-0.0865018737128642,0,0,0,NA,NA,0,NA,NA
+2419,-0.036545834978033,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483
+2420,0.013599185884272,0.0415512465373961,4.15512465373961,3,62.0511327514169,0.668024172359432,1.93905817174515,14.0126293818156,0
+2421,0.0153015991380626,0.0526315789473684,5.26315789473684,4,62.7423213041705,0.708812260536398,3.04709141274238,13.990723635021,0
+2422,0.00500129807805934,0.0184210526315789,1.84210526315789,2,51.6860660322344,0.617962466487936,1.31578947368421,0.74222503389631,0
+2423,-0.0117012588674284,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+2424,0.0107945863047585,0.119113573407202,11.9113573407202,2,84.7981706382009,0.873864430468204,9.97229916897507,3.41248289374418,0
+2425,0.047550726289691,0.520775623268698,52.0775623268698,1,97.8571254487222,0.856089296392266,52.0775623268698,2.26319593825239,0
+2426,0.0342720466987598,0.602631578947368,60.2631578947368,1,98.4417702566629,0.952851404376754,60.2631578947368,0.772647830596657,0
+2427,0.0069091211241415,0.146814404432133,14.6814404432133,3,84.5959650930734,0.742400456686171,11.3573407202216,9.54407243008884,0
+2428,-0.00561563854740791,0,0,0,NA,NA,0,NA,NA
+2429,-0.000158732172801315,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,6.234690284729,0
+2430,0.0214609833078971,0.136842105263158,13.6842105263158,5,80.7829299452207,0.804741024938339,9.73684210526316,0.141301017541152,0
+2431,0.0543325470239337,0.775623268698061,77.5623268698061,1,99.2474045618463,0.745810449232502,77.5623268698061,31.2312074235507,0
+2432,0.095748381468292,0.570637119113573,57.0637119113573,4,94.1012524405697,0.841893371515203,49.3074792243767,3.21041830766548,0
+2433,0.178858188184757,1,100,1,100,NA,100,0.0863530510350278,0
+2434,0.126220052793169,0.839473684210526,83.9473684210526,2,97.9328822740574,0.83443167583465,77.8947368421052,0.580745670115312,0
+2435,0.0794797162257697,0.700831024930748,70.0831024930748,2,96.1257789132503,0.788443506797937,41.8282548476454,0.826417657226442,0
+2436,0.0565700719762742,0.529085872576177,52.9085872576177,4,92.2528548112388,0.7660518444666,31.0249307479224,2.27973563508838,0
+2437,0.0338772841246068,0.293628808864266,29.3628808864266,4,86.9773389314944,0.599753618724977,12.1883656509695,12.7700452669612,0
+2438,0.0188898678877817,0.1,10,3,79.8592252825486,0.717813051146384,5.78947368421053,9.86280458851864,5.19557523727417
+2439,0.0123149721108761,0.03601108033241,3.601108033241,1,76.2797118658907,0.884738186462324,3.601108033241,10.7737914965703,5.19557523727417
+2440,0.00954991276167345,0.0831024930747922,8.31024930747922,2,81.560995145132,0.732905851162217,6.92520775623269,7.71425218582153,0
+2441,0.0249863216165957,0.243767313019391,24.3767313019391,4,84.6916382028934,0.789435617461095,10.2493074792244,39.8311779065566,7.34765291213989
+2442,0.027797536457248,0.265927977839335,26.5927977839335,2,90.4905290427092,0.897038174637999,16.8975069252078,34.3707449138165,0
+2443,0.043661245177095,0.381578947368421,38.1578947368421,3,90.2732900628008,0.835246888799679,14.7368421052632,43.1497560040704,10.3911504745483
+2444,0.014472999375075,0.0554016620498615,5.54016620498615,5,55.6254838596827,0.590199602686595,2.21606648199446,19.3496941566467,0
+2445,0.0157569396014324,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,3.46371682484945,0
+2446,0.0209685512223823,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,21.5795174326215,7.34765291213989
+2447,0.0128330325945794,0,0,0,NA,NA,0,NA,NA
+2448,0.0283419003761538,0.193905817174515,19.3905817174515,2,89.6461018930189,0.838627664627162,16.6204986149584,76.128540802002,15.5867252349854
+2449,0.024291349719838,0.0997229916897507,9.97229916897507,3,80.8269444432558,0.833384615384615,8.03324099722992,71.4462862014771,51.4335708618164
+2450,0.00814358188114142,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+2451,0.0249735078100218,0.131578947368421,13.1578947368421,5,79.2714444870343,0.756149732620321,7.63157894736842,20.8496690940857,0
+2452,0.031292894557432,0.268698060941828,26.8698060941828,4,87.4578022532092,0.795672239637757,18.8365650969529,7.13543009512203,0
+2453,0.0345239228909752,0.321329639889197,32.1329639889197,2,91.5741146950101,0.845636540330418,18.2825484764543,12.8951270703612,0
+2454,0.00825696555736192,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,13.4088587327437,10.3911504745483
+2455,0.00525996858473503,0,0,0,NA,NA,0,NA,NA
+2456,0.0165090352462342,0.0692520775623269,6.92520775623269,5,63.5804943348559,0.597098214285714,3.32409972299169,13.7759074211121,0
+2457,-0.00854221124479719,0,0,0,NA,NA,0,NA,NA
+2458,-0.00847355842073074,0,0,0,NA,NA,0,NA,NA
+2459,0.0170440012201174,0,0,0,NA,NA,0,NA,NA
+2460,0.0192693546435337,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,10.3911504745483,0
+2461,0.0219146120816479,0.0498614958448753,4.98614958448753,4,59.0929059462443,0.688154626930137,2.77008310249307,9.23657819959852,5.19557523727417
+2462,0.021916235832706,0,0,0,NA,NA,0,NA,NA
+2463,0.0210128160791723,0,0,0,NA,NA,0,NA,NA
+2464,0.0263663265227038,0.0941828254847645,9.41828254847645,4,73.220753785432,0.664864569681083,4.15512465373961,2.66108402083902,0
+2465,0.025363938037525,0.0914127423822715,9.14127423822715,3,77.1646673087393,0.836946702800361,5.81717451523546,30.9020630952084,0
+2466,0.02139181156199,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,11.1390421655443,0
+2467,0.0252592577961638,0.0921052631578947,9.21052631578947,2,84.5791901660549,0.867066466766617,8.68421052631579,15.555765070234,0
+2468,0.0342622928619172,0.277008310249307,27.7008310249307,4,88.8280678137307,0.715687526607067,14.9584487534626,9.87210659980774,0
+2469,0.0298893575721364,0.218836565096953,21.8836565096953,6,78.7854774474311,0.661676798378926,7.4792243767313,25.3215483110162,0
+2470,0.0233022308552627,0.119113573407202,11.9113573407202,6,71.250094354615,0.668894129979036,5.81717451523546,6.46405521658964,0
+2471,0.0188497198069327,0.0447368421052632,4.47368421052632,3,63.6931816846236,0.665013774104683,2.63157894736842,10.6967723790337,5.19557523727417
+2472,0.0223366409524193,0.168975069252078,16.8975069252078,2,90.9499265113519,0.886477987421384,16.6204986149584,17.0346728152916,10.3911504745483
+2473,0.0128867971527289,0.0831024930747922,8.31024930747922,3,75.5609493656735,0.732905851162217,5.54016620498615,11.5670374234517,5.19557523727417
+2474,0.0310585706630513,0.199445983379501,19.9445983379501,4,90.6651984987648,0.813121543198104,19.1135734072022,12.1649132503404,0
+2475,0.00571884992051836,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,7.09552135467529,5.19557523727417
+2476,-0.00292690691544282,0.0554016620498615,5.54016620498615,1,81.9526157930578,0.931699933781099,5.54016620498615,28.7412919044495,15.5867252349854
+2477,0.0134000332388226,0.0609418282548476,6.09418282548476,2,75.9723833614773,0.780756550407774,4.70914127423823,23.009586204182,11.6176595687866
+2478,0.0216200296476663,0.146814404432133,14.6814404432133,4,83.5921867689523,0.703760525189097,10.2493074792244,16.8127486840734,5.19557523727417
+2479,0.0178504021686278,0.0657894736842105,6.57894736842105,4,70.7443264800494,0.67887323943662,4.47368421052632,10.8067963790894,0
+2480,0.0225337568013539,0.116343490304709,11.6343490304709,4,79.8370824031573,0.697161022561703,8.86426592797784,9.56125229880923,0
+2481,0.0333135894137251,0.124653739612188,12.4653739612188,4,78.5417490473465,0.819620253164557,8.58725761772853,15.0903196228875,0
+2482,0.0243591379145486,0.138504155124654,13.8504155124654,4,80.0430767226328,0.754189521467751,8.03324099722992,14.8408298015594,5.19557523727417
+2483,0.0208266740725919,0.0894736842105263,8.94736842105263,3,79.1061085267409,0.823492981007432,6.8421052631579,12.3123672990238,0
+2484,0.0272395035767419,0.188365650969529,18.8365650969529,4,87.9431120715232,0.782573780365388,16.0664819944598,7.91306488654193,0
+2485,0.028110746158899,0.271468144044321,27.1468144044321,4,91.5868826656196,0.773829070169374,24.3767313019391,7.37647444374707,0
+2486,0.0251860895333062,0.130193905817175,13.0193905817174,9,62.38022160823,0.554498407643312,3.8781163434903,6.42111274029346,0
+2487,0.0266803764365537,0.136842105263158,13.6842105263158,8,68.7268910746383,0.557412989860236,3.68421052631579,7.4829194178948,0
+2488,0.0196243323125877,0.102493074792244,10.2493074792244,6,70.4049058179075,0.61642380085003,5.26315789473684,6.64291304510993,0
+2489,0.0197170168630943,0.0831024930747922,8.31024930747922,5,65.4310579134526,0.643874468216289,3.04709141274238,8.38617464701335,0
+2490,0.0174277044420416,0.074792243767313,7.4792243767313,3,77.0714958632794,0.723506475421251,6.09418282548476,3.2506832546658,0
+2491,0.0329551727844917,0.271052631578947,27.1052631578947,3,87.6576057500105,0.762708556932384,12.6315789473684,36.7213272168798,0
+2492,0.0652918826071831,0.534626038781163,53.4626038781163,3,94.4518962562896,0.825934424048949,38.781163434903,14.101523080638,0
+2493,0.0549587045129972,0.382271468144044,38.2271468144044,5,88.8570489395035,0.794433767527938,24.0997229916898,6.4132390782453,0
+2494,0.0203970105931526,0.0997229916897507,9.97229916897507,4,77.438891562938,0.574205128205128,4.98614958448753,8.89984652731154,0
+2495,0.0129237119857862,0,0,0,NA,NA,0,NA,NA
+2496,0.0297227454983011,0.155124653739612,15.5124653739612,4,82.9160442589548,0.719351022477607,11.6343490304709,9.05922555071967,0
+2497,0.0729050732603415,0.742382271468144,74.2382271468144,4,98.1113550042892,0.861091515423587,73.1301939058172,1.7308223905848,0
+2498,0.0603077918714508,0.637119113573407,63.7119113573407,2,97.5722244771422,0.762326731792381,59.2797783933518,12.1947713748268,0
+2499,0.0386755161128301,0.260526315789474,26.0526315789474,6,83.5068543486196,0.7264984605542,13.4210526315789,34.3848510077505,5.19557523727417
+2500,0.0917648925319262,0.730994152046784,73.0994152046784,2,96.5480335408094,0.825250836120401,57.8947368421053,15.1064582328796,0
+2501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2506,0.0375253756508755,0.3,30,3,84.7422680877535,0.808362369337979,21.25,6.73009051879247,0
+2507,0.010771118138607,0.0289473684210526,2.89473684210526,3,50.4376283471023,0.588075880758808,1.05263157894737,16.3825773325833,5.19557523727417
+2508,0.0295978010419563,0.218421052631579,21.8421052631579,2,90.1452282341769,0.852035090130328,17.6315789473684,61.2557336278709,25.977876663208
+2509,0.0166229089494951,0.192105263157895,19.2105263157895,3,88.4486634883001,0.874287459283388,16.5789473684211,53.4801601775705,25.977876663208
+2510,0.06835189002275,0.55,55,3,94.1003577963222,0.842818428184282,32.5,16.763039096919,0
+2511,0.115973627292796,0.884210526315789,88.421052631579,2,98.380964151668,0.782390837508948,84.4736842105263,45.0355378559657,11.6176595687866
+2512,0.0422702542104257,0.357894736842105,35.7894736842105,3,94.8761455464849,0.849286092014807,34.4736842105263,12.454543846495,0
+2513,0.0719387673437412,0.694736842105263,69.4736842105263,1,98.9199097507581,0.913967258794845,69.4736842105263,1.26811644163999,0
+2514,-0.00675064156199369,0.0025,0.25,1,0,NA,0.25,0,0
+2515,-0.0213407585459687,0,0,0,NA,NA,0,NA,NA
+2516,0.0104905182308668,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,0.472325021570379,0
+2517,0.00193641044195254,0,0,0,NA,NA,0,NA,NA
+2518,-0.0418983616001242,0.0125,1.25,1,58.1880425789518,1,1.25,1.03911504745483,0
+2519,-0.0185696210845076,0,0,0,NA,NA,0,NA,NA
+2520,0.00536168579657035,0,0,0,NA,NA,0,NA,NA
+2521,0.00718561331337849,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,119.498229980469,119.498229980469
+2522,-0.0179718160214179,0.0025,0.25,1,0,NA,0.25,5.19557523727417,5.19557523727417
+2523,0.0366593984636845,0.323684210526316,32.3684210526316,2,92.6879001134006,0.867390204323777,24.4736842105263,16.0367831292191,0
+2524,-0.00510596541211462,0.0342105263157895,3.42105263157895,3,58.1077276069264,0.71238268240993,2.10526315789474,45.4704455228952,5.19557523727417
+2525,0.0119778994152045,0.0631578947368421,6.31578947368421,3,71.1051775048383,0.719101123595506,3.68421052631579,75.4831212361654,59.2386741638184
+2526,0.00817917983972961,0.0875,8.75,1,87.4704367425575,0.962210675484176,8.75,3.63374207360404,0
+2527,0.00262024829262373,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,61.8549591064453,58.7812232971191
+2528,0.000903009769574151,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210526,12.7032214800517,10.3911504745483
+2529,0.011420802326948,0.0210526315789474,2.10526315789474,3,50.576266658982,0.489247311827957,1.57894736842105,76.5936276912689,30.2951488494873
+2530,0.0340521983067538,0.2975,29.75,4,93.0487346271703,0.874785817846316,28.25,2.85252294219842,0
+2531,0.0446586328341111,0.431578947368421,43.1578947368421,4,90.2732976160374,0.702906548933039,19.4736842105263,18.9409445844046,0
+2532,0.0538951998370497,0.434210526315789,43.421052631579,3,92.5769602775136,0.843023255813954,27.8947368421053,0.67632876887466,0
+2533,0.137975903828383,0.839473684210526,83.9473684210526,2,97.1205443382991,0.772343554272643,70.2631578947368,0.571204925405568,0
+2534,0.165015264386311,0.9625,96.25,1,99.898450616446,1,96.25,0.0674750030814827,0
+2535,0.0733070568996577,0.647368421052632,64.7368421052632,2,98.4982546532881,0.741077222582738,64.4736842105263,2.25267988491834,0
+2536,0.0383583739508666,0.328947368421053,32.8947368421053,4,87.7148524660725,0.665198237885463,12.1052631578947,15.6690684013367,0
+2537,0.0351245825694365,0.373684210526316,37.3684210526316,2,96.1044139176996,0.901745313510019,37.1052631578947,35.6090704152282,0
+2538,0.0171892797905411,0.0925,9.25,6,67.919697206938,0.620647608725105,3.25,49.4667306075225,0
+2539,0.0403906302116842,0.342105263157895,34.2105263157895,3,89.582192162635,0.794767932489451,12.8947368421053,44.7132501162016,11.6176595687866
+2540,0.0374074743506705,0.286842105263158,28.6842105263158,4,90.7834018677466,0.886114597186581,25.2631578947368,6.2609551499743,0
+2541,0.0130439766526826,0.0605263157894737,6.05263157894737,3,67.2569242314528,0.733893557422969,2.36842105263158,7.39040030603823,0
+2542,0.0216167036290579,0.189473684210526,18.9473684210526,5,80.275188619191,0.786276715410574,11.8421052631579,15.9340800046921,0
+2543,0.0234737640851301,0.1675,16.75,2,90.0295330102283,0.938399938399938,16,83.8812729565065,34.8529777526855
+2544,0.0310770958858867,0.194736842105263,19.4736842105263,5,84.3297288269368,0.742081447963801,14.4736842105263,10.0741016671464,0
+2545,0.0182965401707598,0.0921052631578947,9.21052631578947,3,82.265119281949,0.84807596201899,8.42105263157895,10.019328716823,0
+2546,0.0250935045511333,0.107894736842105,10.7894736842105,5,72.7152075423414,0.642597580265914,5.26315789473684,10.9915448165521,0
+2547,0.0177061122571604,0.0725,7.25,6,58.9514484711116,0.518265756724207,2.25,11.8176920331758,5.19557523727417
+2548,0.0333949292065403,0.260526315789474,26.0526315789474,5,83.0656099629691,0.756887520492623,10,12.406785993865,0
+2549,0.0230873876589182,0.1,10,2,85.4283732185665,0.894179894179894,9.47368421052632,28.8924945530139,10.3911504745483
+2550,0.00984066249971204,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,15.0328108787537,0
+2551,0.0257699436629082,0.1275,12.75,5,80.4878912851277,0.723347495306788,9.5,19.9228649419897,5.19557523727417
+2552,0.018935016342546,0.142105263157895,14.2105263157895,2,87.2439474855527,0.837060492116894,13.1578947368421,7.63887981132225,0
+2553,0.0195824418378331,0.0921052631578947,9.21052631578947,3,75.3394518557686,0.734132933533233,4.21052631578947,17.4040762901306,0
+2554,0.0126143480732169,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,13.07271027565,10.3911504745483
+2555,0.00255170925368475,0.005,0.5,1,30.8308651382582,1,0.5,2.59778761863708,0
+2556,0.0343569748913165,0.278947368421053,27.8947368421053,3,91.8551522371302,0.818473650017197,24.2105263157895,13.6364390895052,0
+2557,0.0268352487651818,0.226315789473684,22.6315789473684,3,92.4126180923582,0.898626117113512,22.1052631578947,4.98678842810697,0
+2558,-0.00131914081706495,0,0,0,NA,NA,0,NA,NA
+2559,0.00308110952680181,0,0,0,NA,NA,0,NA,NA
+2560,0.0138075732038966,0,0,0,NA,NA,0,NA,NA
+2561,-0.000687098975207559,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,9.48265624046326,7.34765291213989
+2562,-0.0179711214140154,0,0,0,NA,NA,0,NA,NA
+2563,0.00981177911015038,0.03,3,1,74.8763016215986,0.878714372346877,3,25.2476824124654,20.7823009490967
+2564,0.0207321871247443,0.0368421052631579,3.68421052631579,4,54.2539589990242,0.584699453551913,2.10526315789474,3.21022776194981,0
+2565,0.0282603202515594,0.15,15,7,76.2836794828329,0.603841536614646,7.36842105263158,7.78708764962983,0
+2566,0.0291754367251614,0.15,15,6,79.3951584466301,0.567827130852341,6.31578947368421,15.3199458707843,5.19557523727417
+2567,0.0452863570539557,0.2825,28.25,5,91.4513126222368,0.856527977044476,24.75,12.8791954074286,0
+2568,0.0322856685305707,0.194736842105263,19.4736842105263,4,87.2127295204852,0.856711915535445,16.8421052631579,18.3712366980475,0
+2569,0.0220234126111456,0.115789473684211,11.5789473684211,2,85.8364618568419,0.786036036036036,10.2631578947368,33.2284770011902,15.5867252349854
+2570,0.00986151384338308,0.0315789473684211,3.15789473684211,3,53.30217292845,0.514066496163683,1.31578947368421,49.0743659337362,41.5646018981934
+2571,0.0286332149491136,0.1825,18.25,2,91.5478577475243,0.904434250764526,17.75,11.6441511193367,0
+2572,0.0426821822028662,0.378947368421053,37.8947368421053,1,96.6233393928275,0.896314843348742,37.8947368421053,7.86362263560295,0
+2573,0.0205906872010114,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,8.31292028427124,0
+2574,0.0265929734190362,0.0447368421052632,4.47368421052632,5,49.4302920195556,0.539393939393939,1.57894736842105,12.5570388681748,0
+2575,0.0216758756585659,0.05,5,2,77.8661828264503,0.864176570458404,4.75,5.13823471069336,0
+2576,0.0212213709731833,0.0763157894736842,7.63157894736842,3,73.0471103483924,0.677517124325635,3.68421052631579,44.6530972184806,23.2353191375732
+2577,0.019883662306529,0.126315789473684,12.6315789473684,2,84.5771534532282,0.818542462533059,9.21052631578947,19.010425945123,0
+2578,0.0117839253921901,0.0605263157894737,6.05263157894737,2,78.4049805538197,0.881730469965764,5.52631578947368,32.4861924959266,14.6953058242798
+2579,0.0242377964463049,0.1175,11.75,3,86.3532569138442,0.915014164305949,11.25,33.3943739951925,5.19557523727417
+2580,0.0340180240040162,0.207894736842105,20.7894736842105,6,80.4820414873681,0.756525866160418,11.0526315789474,6.64090888107879,0
+2581,0.0472473680292942,0.5,50,1,97.7602315628138,0.818181818181818,50,2.26086185605902,0
+2582,0.012888515379937,0,0,0,NA,NA,0,NA,NA
+2583,0.0242044055207407,0.13,13,6,73.1384531552792,0.651297946532352,4.75,4.02832979422349,0
+2584,0.0282264832666011,0.0947368421052632,9.47368421052632,7,62.5324523869712,0.539728682170543,3.68421052631579,4.38944905334049,0
+2585,0.0418572096632775,0.328947368421053,32.8947368421053,3,91.519611517827,0.835881489159541,16.5789473684211,6.72180492019653,0
+2586,0.0249087750917074,0.152631578947368,15.2631578947368,7,79.8486902386949,0.669565217391304,10.5263157894737,17.1683100996346,0
+2587,0.0417531485397012,0.49,49,3,96.5135778954303,0.854557207498384,46.75,1.52548369582818,0
+2588,0.0519247786324214,0.6,60,1,98.4265117299858,0.747058823529412,60,1.86216021420663,0
+2589,0.0493278002246945,0.592105263157895,59.2105263157895,1,98.3801273817881,0.859907834101382,59.2105263157895,1.50034199396769,0
+2590,0.031344803146203,0.178947368421053,17.8947368421053,4,81.7306038965461,0.682719241542771,8.68421052631579,36.5819964338751,0
+2591,0.0143208251775286,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,53.1654628753662,42.8438110351562
+2592,0.02615609189739,0.0736842105263158,7.36842105263158,4,71.7462130467915,0.640151515151515,3.68421052631579,28.3521966082709,0
+2593,0.040135031780856,0.302631578947368,30.2631578947368,7,83.4525901039864,0.682873730043541,14.2105263157895,8.53041940772015,0
+2594,0.0524354072633861,0.507894736842105,50.7894736842105,3,94.0303975248834,0.693484300779733,26.5789473684211,6.39486984391287,0
+2595,0.0482842256471486,0.4725,47.25,2,96.4355260217648,0.718348002708192,43.75,13.4194537647187,0
+2596,0.0867157768115009,0.860526315789474,86.0526315789474,1,99.578243470897,0.697868566710498,86.0526315789474,4.39587902366568,0
+2597,0.0486317351584531,0.4,40,3,93.7080365687091,0.778972520908005,31.8421052631579,7.23310821307333,0
+2598,0.0296007719659859,0.326315789473684,32.6315789473684,2,92.0710233307581,0.788888888888889,18.4210526315789,11.2433095939698,0
+2599,0.0308694312247462,0.23,23,6,82.9076571210451,0.754513778904023,11.75,27.6616878872332,0
+2600,0.0709994755545848,0.677777777777778,67.7777777777778,2,96.8869352122434,0.836660617059891,57.7777777777778,11.1642551304864,0
+2601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2606,0.0155437872939441,0.0394736842105263,3.94736842105263,1,64.398586025552,0.851272015655577,3.94736842105263,24.1669057210286,18.7329120635986
+2607,0.0232316671219723,0.127423822714681,12.7423822714681,6,74.8544216972327,0.706145706145706,5.54016620498615,4.95931907322096,0
+2608,0.0157395871372254,0.03601108033241,3.601108033241,3,62.9721526245304,0.654214559386973,2.77008310249307,15.4124193925124,0
+2609,0.0151013139906974,0.0415512465373961,4.15512465373961,2,73.4201733450948,0.810299527062533,3.8781163434903,5.99470173517863,0
+2610,0.00546101982794138,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.19557523727417,0
+2611,0.0428737518821818,0.268698060941828,26.8698060941828,6,85.0451082315434,0.732802159526297,18.8365650969529,10.1275241104598,0
+2612,0.0309777809400498,0.18005540166205,18.005540166205,3,90.9093350339046,0.773349677110739,17.4515235457064,7.47272790762094,0
+2613,0.0309161843426127,0.163434903047091,16.3434903047091,9,73.312890787173,0.542948967666537,6.09418282548476,4.74016343941123,0
+2614,0.0199518384585405,0.173684210526316,17.3684210526316,6,80.5041445607134,0.642204375519247,9.73684210526316,5.01112081787803,0
+2615,-0.00360671684091993,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+2616,0.00644928484150298,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,7.64479287465413,5.19557523727417
+2617,0.00134490071902299,0,0,0,NA,NA,0,NA,NA
+2618,0.00800584536227389,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,3.46371682484945,0
+2619,0.00944534965847726,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,112.805416107178,111.190162658691
+2620,0.00666566552618732,0,0,0,NA,NA,0,NA,NA
+2621,0.00253293550641171,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,77.4572601318359,72.3659896850586
+2622,0.0131872375413016,0.205263157894737,20.5263157894737,2,92.4087439571563,0.835876763604952,20,8.47645351214287,0
+2623,0.0237854480423105,0.0969529085872576,9.69529085872576,3,79.0919026077057,0.789983075946689,7.75623268698061,6.57143034253802,0
+2624,-0.00316580887734351,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,10.1676730428423,5.19557523727417
+2625,0.00363645429833696,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,3.1173451423645,0
+2626,0.00928559004565422,0.184210526315789,18.4210526315789,1,92.8086997479863,0.880409126671912,18.4210526315789,1.39749299458095,0
+2627,0.0266538698630644,0.301939058171745,30.1939058171745,2,94.2261267813204,0.898195149464185,29.3628808864266,1.82286712663983,0
+2628,0.0403227729623211,0.415512465373961,41.5512465373961,3,95.1071718006742,0.713813011632917,36.8421052631579,1.9320360215505,0
+2629,0.0405370847972167,0.390581717451524,39.0581717451524,4,92.1285564278385,0.732875264270613,27.4238227146814,4.39841302574104,0
+2630,0.0348282005310849,0.223684210526316,22.3684210526316,7,82.6935441672164,0.692894825457403,13.4210526315789,1.04386363309972,0
+2631,0.0536806476231499,0.717451523545706,71.7451523545706,1,98.9966524699873,0.832160905599353,71.7451523545706,24.4709283928153,0
+2632,0.0746970403095253,0.548476454293629,54.8476454293629,3,94.3919541565116,0.824994567125257,33.5180055401662,9.01532513204247,0
+2633,0.212775763206782,1,100,1,100,NA,100,0.0779223098649213,0
+2634,0.169216584232881,0.992105263157895,99.2105263157895,1,99.978528257005,0.822843822843827,99.2105263157895,0,0
+2635,0.0664156722830392,0.526315789473684,52.6315789473684,5,94.5773730946073,0.856060606060606,49.0304709141274,1.83953786900169,0
+2636,0.023239889048956,0.207756232686981,20.7756232686981,3,90.8592868957155,0.78962703962704,19.1135734072022,16.8941707293193,0
+2637,0.0199485916290493,0.160664819944598,16.0664819944598,4,79.5554651706781,0.725973597359736,8.31024930747922,9.51511093665814,0
+2638,0.0153285037687678,0.0657894736842105,6.57894736842105,5,64.2429470890298,0.625352112676056,3.42105263157895,9.60749826431274,0
+2639,0.0431364341606331,0.393351800554017,39.3351800554017,4,95.0239029341037,0.797119775201967,37.3961218836565,8.8398609161377,0
+2640,0.0756788983748054,0.662049861495845,66.2049861495845,2,97.4856221312265,0.814647742692632,61.7728531855956,5.38745945367853,0
+2641,0.0340709274537491,0.188365650969529,18.8365650969529,6,84.0889794595689,0.823988298391029,16.0664819944598,4.20173212359933,0
+2642,0.00920464280210369,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,6.12054443359375,0
+2643,0.00557446857327657,0,0,0,NA,NA,0,NA,NA
+2644,0.0403237185036084,0.349030470914127,34.9030470914127,3,91.6175713748949,0.892669330112422,21.0526315789474,11.0289514556764,0
+2645,0.00742813557429288,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,29.3186189333598,11.6176595687866
+2646,0.0165441619025213,0.0443213296398892,4.43213296398892,5,47.5733173250203,0.520410628019324,1.66204986149584,10.2600452303886,0
+2647,0.0330971110305271,0.25,25,2,92.0001881551555,0.843137254901961,22.6315789473684,16.7978434010556,0
+2648,0.0488606721331977,0.42382271468144,42.382271468144,4,91.5163308592254,0.752942786750616,26.0387811634349,24.1265951854731,0
+2649,0.0247782000881562,0.157894736842105,15.7894736842105,2,88.1458164355375,0.878826530612245,14.404432132964,73.1716197499058,49.0149574279785
+2650,0.0119695544549296,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,34.723760286967,18.7329120635986
+2651,0.0318478653872597,0.189473684210526,18.9473684210526,1,92.9849123366196,0.970855915737805,18.9473684210526,14.5642073882951,0
+2652,0.0268411731522014,0.149584487534626,14.9584487534626,6,73.0896290248948,0.67125494728731,5.54016620498615,69.2669813368056,15.5867252349854
+2653,0.0387689429487668,0.301939058171745,30.1939058171745,4,87.276673636514,0.789118523890098,12.4653739612188,102.054075888537,74.3893203735352
+2654,0.018316942442025,0.038781163434903,3.8781163434903,3,57.692266668405,0.531844380403458,1.66204986149584,86.1434064592634,63.206901550293
+2655,0.0104011993976344,0.0605263157894737,6.05263157894737,2,76.3032599060127,0.822595704948646,5,14.9684007064156,5.19557523727417
+2656,0.0297791000184922,0.171745152354571,17.1745152354571,5,82.8333563802306,0.754056732317602,11.0803324099723,15.6986219729147,0
+2657,0.015938161736926,0.168975069252078,16.8975069252078,4,81.0252157787004,0.772955974842767,6.37119113573407,40.8452459241523,20.7823009490967
+2658,0.00800510866118358,0.07202216066482,7.20221606648199,2,76.1914687294161,0.842300691663633,3.8781163434903,17.9146982339712,0
+2659,-0.000153042493873631,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,23.6517378489176,15.5867252349854
+2660,0.00342060875321035,0,0,0,NA,NA,0,NA,NA
+2661,0.0030669596333136,0.03601108033241,3.601108033241,2,63.9994282705831,0.711845466155811,1.93905817174515,21.5689783829909,10.3911504745483
+2662,0.00376452258061864,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,21.4219055175781,21.4219055175781
+2663,0.0127821618936459,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,2.59778761863708,0
+2664,0.0358681263860187,0.193905817174515,19.3905817174515,4,85.2389204871416,0.74785572597994,9.97229916897507,0,0
+2665,0.0339591758911965,0.207756232686981,20.7756232686981,6,78.8468878010379,0.550566857385039,7.75623268698061,8.84302061716716,0
+2666,0.0133931790079836,0.0609418282548476,6.09418282548476,4,62.703839185064,0.624154086413326,3.04709141274238,52.1790243495594,27.9790287017822
+2667,0.0366702819963968,0.228947368421053,22.8947368421053,5,87.873703258287,0.815919850269734,18.4210526315789,12.0719820384322,0
+2668,0.0294669527745737,0.196675900277008,19.6675900277008,4,82.9153374004333,0.751034482758621,9.97229916897507,26.2349710262997,0
+2669,0.019926619211791,0.0997229916897507,9.97229916897507,2,82.1690975551257,0.814871794871795,8.03324099722992,32.6662407981025,18.7329120635986
+2670,0.0191571580701312,0.113573407202216,11.3573407202216,3,81.9313401204668,0.852853260869565,9.14127423822715,24.1307077058932,5.19557523727417
+2671,0.0260927049551691,0.107894736842105,10.7894736842105,4,73.9436980242485,0.723825402932752,5.26315789473684,9.01507952155136,0
+2672,0.0366468227588071,0.357340720221607,35.7340720221607,3,91.4656110552666,0.728521643433602,21.3296398891967,10.1563065957653,0
+2673,0.0379134620063138,0.282548476454294,28.2548476454294,3,90.0611774951574,0.862902715361732,23.2686980609418,2.1024455463185,0
+2674,0.0340967917465927,0.210526315789474,21.0526315789474,4,88.7853650889816,0.820398009950249,18.8365650969529,4.6437993175105,0
+2675,0.0216683800085632,0.0368421052631579,3.68421052631579,3,60.5090447125999,0.636612021857924,2.10526315789474,34.5258231844221,0
+2676,0.0307443480137471,0.141274238227147,14.1274238227147,4,81.96214556244,0.812606599925843,9.69529085872576,10.1257782730402,0
+2677,0.0363552242904367,0.224376731301939,22.4376731301939,2,90.9182578906635,0.811979166666667,19.6675900277008,6.42683048601504,0
+2678,0.0325281408635082,0.188365650969529,18.8365650969529,4,87.048749853557,0.772220150858978,15.5124653739612,19.0495747818666,0
+2679,0.0132283355608754,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,7.79336285591125,5.19557523727417
+2680,0.0398009777406648,0.296398891966759,29.6398891966759,6,88.0102882870901,0.72753049651177,21.3296398891967,7.45806963198653,0
+2681,0.0398645436184363,0.265927977839335,26.5927977839335,4,90.3619281659509,0.817836770513383,20.7756232686981,9.8987456659476,0
+2682,0.010022911169454,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,13.4177672386169,7.34765291213989
+2683,0.0254269801625062,0.113157894736842,11.3157894736842,6,68.704022254472,0.63979558193208,4.21052631578947,49.0261113366415,26.4923400878906
+2684,0.0320209913169243,0.116343490304709,11.6343490304709,5,74.4987101017794,0.681222129012318,6.37119113573407,18.8109072390057,0
+2685,0.023941621049759,0.157894736842105,15.7894736842105,4,82.242254640645,0.745535714285714,11.3573407202216,13.3720429487396,0
+2686,0.0568843988886805,0.626038781163435,62.6038781163435,2,97.3845054451955,0.822151843054456,59.0027700831025,1.54375029454189,0
+2687,0.0708220453430457,0.865789473684211,86.578947368421,1,99.595987913489,0.724037763253449,86.578947368421,0.411714875589388,0
+2688,0.026451068186981,0.285318559556787,28.5318559556787,2,91.2763151040945,0.916802849360989,21.8836565096953,4.87418791391317,0
+2689,0.0376625510630887,0.39612188365651,39.612188365651,1,96.7285565610363,0.835667763849009,39.612188365651,2.39797471119807,0
+2690,0.0254051620132307,0.0886426592797784,8.86426592797784,5,70.6284469065691,0.725683890577508,5.54016620498615,10.1083951294422,0
+2691,0.0315582725525019,0.176315789473684,17.6315789473684,1,92.5297305898419,0.979246880205347,17.6315789473684,17.2591684327197,0
+2692,0.0195166200119929,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.956400966183575,4.43213296398892,34.6273822784424,21.4219055175781
+2693,0.0295507872457503,0.127423822714681,12.7423822714681,6,73.3663468395246,0.647374847374847,5.54016620498615,1.60866763280786,0
+2694,0.0400392279416514,0.329639889196676,32.9639889196676,7,89.0893417430617,0.709940312213039,26.3157894736842,3.63747811918499,0
+2695,0.0519512153242862,0.507894736842105,50.7894736842105,3,93.9438569936177,0.704836734084187,26.8421052631579,12.8781659788418,0
+2696,0.0944837425987641,0.936288088642659,93.6288088642659,1,99.8140902382289,0.459617609035856,93.6288088642659,2.4306608685375,0
+2697,0.0517981029844221,0.426592797783933,42.6592797783933,3,94.055732227269,0.858264625049077,38.2271468144044,4.29364945671775,0
+2698,0.0496742734438843,0.404432132963989,40.4432132963989,1,96.8197156203083,0.842783729640275,40.4432132963989,13.1405018323088,0
+2699,0.050739876092963,0.489473684210526,48.9473684210526,1,97.6784426290734,0.789319108127547,48.9473684210526,17.1672373740904,0
+2700,0.0434927543588132,0.342105263157895,34.2105263157895,4,87.1512280865537,0.706037735849056,18.7134502923977,10.7495944683368,0
+2701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2706,0.00962018002304065,0,0,0,NA,NA,0,NA,NA
+2707,-0.00285535899113955,0.03601108033241,3.601108033241,2,63.8710229715496,0.769476372924649,2.21606648199446,9.73166344715999,0
+2708,0.000236706604019041,0.0304709141274238,3.04709141274238,4,50.4125152854324,0.656190476190476,2.21606648199446,8.69310340014371,0
+2709,0.0270934402046163,0.0304709141274238,3.04709141274238,3,52.1271892473943,0.518666666666667,1.38504155124654,8.89727817882191,0
+2710,0.0111840420369701,0.110526315789474,11.0526315789474,1,89.1425830254437,0.841653471122593,11.0526315789474,5.18748490015666,0
+2711,0.0655768323806437,0.714681440443213,71.4681440443213,1,98.9839537105949,0.840358600172868,71.4681440443213,20.5951113589974,0
+2712,-0.0259060282172707,0.0526315789473684,5.26315789473684,1,81.3394503136629,1,5.26315789473684,0,0
+2713,0.0122360125017942,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+2714,0.0260874547583578,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,1.03911504745483,0
+2715,0.000752614695604854,0,0,0,NA,NA,0,NA,NA
+2716,0.00557044575653182,0,0,0,NA,NA,0,NA,NA
+2717,0.00438457957229566,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417
+2718,-0.00431632693890654,0,0,0,NA,NA,0,NA,NA
+2719,-0.00156216174661918,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,37.0486970381303,27.9790287017822
+2720,0.000591927659347537,0,0,0,NA,NA,0,NA,NA
+2721,0.00460796929646198,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,62.0051879882812,60.5902976989746
+2722,0.017063187014068,0.107894736842105,10.7894736842105,1,88.9454279930292,0.886281048266427,10.7894736842105,27.1437275816755,10.3911504745483
+2723,0.0187645408563017,0.0914127423822715,9.14127423822715,5,65.8134228809357,0.673893405600723,3.601108033241,16.78744801608,0
+2724,0.029313735823669,0.238227146814404,23.8227146814404,6,84.0691836393276,0.673963161021985,14.6814404432133,12.787194340728,0
+2725,0.0357357437159738,0.412742382271468,41.2742382271468,1,96.9081075056324,0.781688437348815,41.2742382271468,4.75715900267531,0
+2726,0.0289576252531429,0.223684210526316,22.3684210526316,4,88.8957410383452,0.701425524750253,17.6315789473684,8.40677044251386,0
+2727,0.0189718147653045,0.119113573407202,11.9113573407202,4,80.6537297273255,0.637360237596087,8.03324099722992,0.241654662198799,0
+2728,0.011736834170038,0.124653739612188,12.4653739612188,1,89.820262380557,0.924841772151899,12.4653739612188,7.91756901211209,0
+2729,0.0144035625726914,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,2.44921763737996,0
+2730,0.0460899755701815,0.4,40,3,95.398856058472,0.731182795698925,37.3684210526316,2.50145999067708,0
+2731,0.0604999339997438,0.78393351800554,78.393351800554,1,99.2809290737347,0.76510989010989,78.393351800554,12.289443022792,0
+2732,0.0503873954110436,0.56786703601108,56.786703601108,1,98.1832357668767,0.79956591964466,56.786703601108,13.2111605341842,0
+2733,0.0527041260170953,0.357340720221607,35.7340720221607,2,95.0778649854002,0.933785766691122,34.9030470914127,1.14482618302338,0
+2734,-0.0554817633181014,0.226315789473684,22.6315789473684,2,90.4948586870715,0.847939175670268,18.4210526315789,1.25832162901413,0
+2735,0.0367271983400453,0.238227146814404,23.8227146814404,3,91.8825033673922,0.871301247771836,22.7146814404432,0.689574480056763,0
+2736,0.028904314962644,0.132963988919668,13.2963988919668,3,84.4645936723829,0.746824592846567,10.803324099723,22.9892084797223,0
+2737,0.031455657674737,0.204986149584488,20.4986149584488,3,86.2565372751311,0.777459126239614,13.2963988919668,23.1544074625582,0
+2738,0.0239936449094354,0.118421052631579,11.8421052631579,6,70.7518615794655,0.641791044776119,3.94736842105263,22.1348435825772,0
+2739,0.0507806123632111,0.537396121883656,53.7396121883656,1,97.9771083257017,0.789836992681304,53.7396121883656,17.7645845953951,0
+2740,0.0439177602868936,0.371191135734072,37.1191135734072,4,91.6788102861349,0.693670109048891,25.207756232687,13.4397081830608,0
+2741,0.0331156497963184,0.235457063711911,23.5457063711911,4,84.8092931530046,0.748800268739802,10.5263157894737,20.5971808994518,0
+2742,0.0116774439564908,0.03601108033241,3.601108033241,3,57.3324734266151,0.538952745849298,1.93905817174515,19.8968569682195,0
+2743,0.0224249517123481,0.123684210526316,12.3684210526316,3,82.1225490897793,0.728978978978979,8.68421052631579,0.377421348652941,0
+2744,0.029734610460429,0.141274238227147,14.1274238227147,5,78.2652170876174,0.759065628476085,7.75623268698061,5.49747502570059,0
+2745,0.0183076929972175,0.0443213296398892,4.43213296398892,3,68.1228734051765,0.694806763285024,3.601108033241,5.00535663962364,0
+2746,0.0238868348334761,0.166204986149584,16.6204986149584,4,80.4274987931231,0.769358548428316,8.86426592797784,13.1213099718094,5.19557523727417
+2747,0.0398055812353146,0.4,40,5,91.4175125563968,0.72520908004779,28.4210526315789,16.8811286593738,0
+2748,0.0343827513675712,0.274238227146814,27.4238227146814,6,83.3508037701463,0.721331160476885,11.3573407202216,26.7433735770409,5.19557523727417
+2749,0.0370570693233369,0.418282548476454,41.8282548476454,3,91.6887888610565,0.764173972838233,23.2686980609418,47.8935563990612,14.6953058242798
+2750,0.0125483101566156,0.0886426592797784,8.86426592797784,4,69.4918144526104,0.62017769464578,3.601108033241,10.5189993232489,0
+2751,0.0182266940006995,0.0973684210526316,9.73684210526316,4,75.4736798934213,0.763896190794819,6.57894736842105,7.24827235453838,0
+2752,0.0202719734988428,0.0941828254847645,9.41828254847645,2,80.0507389835085,0.822575360419397,4.98614958448753,66.7049700793098,18.7329120635986
+2753,0.0147566730194231,0.0609418282548476,6.09418282548476,3,77.0312685670851,0.749436057608884,5.54016620498615,132.587723818692,117.562446594238
+2754,0.0126539682153375,0,0,0,NA,NA,0,NA,NA
+2755,0.0430328096345827,0.234210526315789,23.4210526315789,1,94.2341300741174,0.909658734790032,23.4210526315789,11.7628738371174,0
+2756,0.0425864545701148,0.310249307479224,31.0249307479224,6,85.8237416448729,0.734442721380572,12.7423822714681,8.62790613940784,0
+2757,0.0318282815294632,0.116343490304709,11.6343490304709,8,63.8600004108131,0.601527661265398,4.70914127423823,21.6457321757362,0
+2758,0.0456924827310187,0.354570637119114,35.4570637119114,3,92.875209349241,0.840409659415351,30.1939058171745,12.5914201177657,0
+2759,0.0211577969306602,0.0868421052631579,8.68421052631579,5,71.775774975441,0.716084961041733,5,2.56638794234305,0
+2760,0.0161538426661972,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,15.620464691749,5.19557523727417
+2761,0.014143526330377,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,20.7823007106781,5.19557523727417
+2762,0.0132030437105444,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.82907196969697,2.49307479224377,13.9880295859443,10.3911504745483
+2763,0.0226513724549525,0.0842105263157895,8.42105263157895,3,75.7439156678173,0.79000884173298,4.21052631578947,17.5257491767406,5.19557523727417
+2764,0.0403374656879277,0.282548476454294,28.2548476454294,3,93.3632740683132,0.710572399096989,25.7617728531856,1.28698993196674,0
+2765,0.0343592311938838,0.235457063711911,23.5457063711911,5,83.7224000803846,0.705489970246665,10.5263157894737,8.69733399222879,0
+2766,0.0157274070758964,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,62.8872509002686,59.2386741638184
+2767,0.0287864610839997,0.184210526315789,18.4210526315789,5,82.8777935343781,0.720954628901128,12.1052631578947,7.01244622639247,0
+2768,0.0317784599644062,0.243767313019391,24.3767313019391,7,83.1565365969527,0.696787289143977,16.3434903047091,8.16077236695723,0
+2769,0.012119205097411,0.038781163434903,3.8781163434903,5,46.9199429047739,0.531844380403458,1.38504155124654,7.14118477276393,0
+2770,0.0172274831643424,0.0692520775623269,6.92520775623269,2,80.7882551669466,0.758258928571429,6.37119113573407,25.2090756225586,0
+2771,0.0311080735147315,0.223684210526316,22.3684210526316,4,88.4404686810472,0.846447412728701,18.9473684210526,3.88444286234239,0
+2772,0.0550327639384427,0.631578947368421,63.1578947368421,4,96.2196789094162,0.738151260504202,57.0637119113573,1.33420951115458,0
+2773,0.0438748470089467,0.351800554016621,35.1800554016621,3,94.6066860175146,0.792966292966293,33.2409972299169,10.6289155013918,0
+2774,0.0381839378318334,0.285318559556787,28.5318559556787,3,89.9568481956035,0.795788812067882,21.8836565096953,13.3256269473474,0
+2775,0.0239142606139802,0.0236842105263158,2.36842105263158,1,70.2715195584201,0.914645103324349,2.36842105263158,3.70283656650119,0
+2776,0.0163616436817654,0.0277008310249307,2.77008310249307,4,40.6969603094515,0.446197676966908,0.831024930747922,16.0171412467957,5.19557523727417
+2777,0.0119405677281537,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,21.9210008893694,5.19557523727417
+2778,0.0338030681401037,0.227146814404432,22.7146814404432,3,88.3334491394169,0.750142133234458,15.2354570637119,9.07620654455045,0
+2779,0.0148174671758744,0.0263157894736842,2.63157894736842,3,54.327342861319,0.604989604989605,1.84210526315789,20.7930957794189,11.6176595687866
+2780,0.0234519029044629,0.0803324099722992,8.03324099722992,3,74.2204045459728,0.745513970776724,3.8781163434903,8.31616492106997,0
+2781,0.0260025235670948,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.960572302315422,9.41828254847645,6.99034249081331,0
+2782,0.0171283013730783,0.0332409972299169,3.32409972299169,4,47.4171983018734,0.574077195348053,1.66204986149584,3.46371682484945,0
+2783,0.0194373949151333,0.0342105263157895,3.42105263157895,4,56.7046429576746,0.71238268240993,2.63157894736842,6.63656850961539,0
+2784,0.0378124274526609,0.246537396121884,24.6537396121884,5,87.7973743702823,0.808014243433222,20.4986149584488,13.0323441055384,0
+2785,0.0257909351926312,0.105263157894737,10.5263157894737,3,84.6436058700209,0.858076563958917,9.97229916897507,5.1430483993731,0
+2786,0.0582578715871174,0.64819944598338,64.819944598338,1,98.6551730229158,0.869907565902088,64.819944598338,1.95300592112745,0
+2787,0.0760608178367348,0.939473684210526,93.9473684210526,1,99.828534527005,0.731155132492925,93.9473684210526,0.230357938120011,0
+2788,0.0286506144601948,0.240997229916898,24.0997229916898,4,89.3677107384214,0.821497527666588,20.4986149584488,3.50385975015574,0
+2789,0.0469627805404321,0.529085872576177,52.9085872576177,1,97.9178236108022,0.940013293452974,52.9085872576177,1.2328603754493,0
+2790,0.0705011531396529,0.714681440443213,71.4681440443213,1,98.9839537105949,0.695230054875475,71.4681440443213,3.91886712229529,0
+2791,0.0476986637608781,0.363157894736842,36.3157894736842,5,87.4544191753282,0.788141151777515,17.3684210526316,17.4466369981351,0
+2792,0.0207807178448196,0.0193905817174515,1.93905817174515,2,54.980748285685,0.745056497175141,1.66204986149584,39.3288912091936,33.2679138183594
+2793,0.0155799320843,0.0277008310249307,2.77008310249307,3,56.7673037307377,0.683541529695376,2.21606648199446,3.95152130126953,0
+2794,0.0355114800610997,0.174515235457064,17.4515235457064,10,68.7972973639314,0.581513117754728,6.09418282548476,5.57243593912276,0
+2795,0.0532888369741972,0.555263157894737,55.5263157894737,2,97.7592135993281,0.839391377852916,55,3.84279790534792,0
+2796,0.0657610538361757,0.695290858725762,69.5290858725762,1,98.892947967301,0.706731141199226,69.5290858725762,10.4880460609953,0
+2797,0.0539485822858062,0.429362880886427,42.9362880886427,4,96.1582129072207,0.772491909385113,42.1052631578947,11.8206965631054,0
+2798,0.0401470251258855,0.282548476454294,28.2548476454294,5,85.5438139410505,0.809587104669072,11.9113573407202,4.42684180128808,0
+2799,0.0335137289239547,0.307894736842105,30.7894736842105,3,92.3272395921326,0.843245569983499,26.0526315789474,28.102099341205,0
+2800,0.0729940565396917,0.777777777777778,77.7777777777778,2,98.3814430692297,0.864729458917835,75.7309941520468,17.6223204494419,0
+2801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2806,-0.0221474445130106,0,0,0,NA,NA,0,NA,NA
+2807,0.0227172629898214,0.141274238227147,14.1274238227147,3,82.9534785069219,0.799221357063404,9.97229916897507,5.30443289700676,0
+2808,0.0285832457084527,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,11.6176595687866,11.6176595687866
+2809,0.0158300962313378,0,0,0,NA,NA,0,NA,NA
+2810,0.0313230339916022,0.186842105263158,18.6842105263158,3,88.180453825785,0.793398058252427,13.9473684210526,2.11430070769619,0
+2811,0.0278087567384321,0.207756232686981,20.7756232686981,8,76.2433357830924,0.703565374019919,10.5263157894737,19.8948064549764,0
+2812,0.0246601362725885,0.243767313019391,24.3767313019391,5,83.422365038405,0.781013042159539,15.5124653739612,4.73701698671688,0
+2813,0.0187815408449081,0.038781163434903,3.8781163434903,4,60.1315905366243,0.687896253602305,3.04709141274238,3.3400126525334,0
+2814,0.0100970297324621,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.745308310991957,1.84210526315789,7.47012022563389,0
+2815,-0.00652493216177889,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,14.2637033462524,11.6176595687866
+2816,0.00393439070348224,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,42.025465965271,34.8529777526855
+2817,0.00311612816623484,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,12.9889380137126,0
+2818,0.00363217892055744,0.0605263157894737,6.05263157894737,3,73.5731581549036,0.733893557422969,4.73684210526316,1.90072519882866,0
+2819,-0.00340159965899626,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,3.71112516948155,0
+2820,0.0133078897251281,0.0803324099722992,8.03324099722992,4,72.2578777252131,0.676108690079467,4.15512465373961,4.76697591255451,0
+2821,0.0327775937305854,0.365650969529086,36.5650969529086,1,96.3681237134493,0.941129572922141,36.5650969529086,10.8509589325298,0
+2822,0.0484267437021596,0.415789473684211,41.5789473684211,3,91.9023871581963,0.85834109972041,25,12.2207495019406,0
+2823,0.0174919009124371,0.191135734072022,19.1135734072022,4,82.1752064775278,0.744565832672931,8.03324099722992,1.49304469426473,0
+2824,0.0155916926897662,0.0554016620498615,5.54016620498615,2,77.7710689425904,0.897549900671649,5.26315789473684,0.580882978439331,0
+2825,0.00640629428843192,0,0,0,NA,NA,0,NA,NA
+2826,-1.76306273906927e-05,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,2.59778761863708,0
+2827,0.0708764893250296,0.473684210526316,47.3684210526316,2,94.1502640814954,0.897460317460317,26.5927977839335,0,0
+2828,0.0162623620169327,0.14404432132964,14.404432132964,3,82.9376936380227,0.72433729682557,8.86426592797784,5.04462152261,0
+2829,0.00433013596814406,0,0,0,NA,NA,0,NA,NA
+2830,0.0506805467168114,0.592105263157895,59.2105263157895,1,98.3801273817881,0.731490015360983,59.2105263157895,11.3508155526055,0
+2831,0.0591708291218799,0.753462603878116,75.3462603878116,2,98.9717377710016,0.690428549440401,75.0692520775623,15.951567236115,0
+2832,0.0252384481934019,0.174515235457064,17.4515235457064,3,84.532834484977,0.779743746186699,10.803324099723,11.3032012666975,0
+2833,0.0191716980745766,0.293628808864266,29.3628808864266,2,92.0801036954504,0.785052869315266,23.8227146814404,4.37668583078204,0
+2834,0.0135928832461727,0.442105263157895,44.2105263157895,2,96.9097509168511,0.884357881923311,43.9473684210526,1.3501337539582,0
+2835,0.0426978387339737,0.382271468144044,38.2271468144044,6,89.2495667755516,0.775161933233682,28.5318559556787,2.09357958600141,0
+2836,0.0239111912690071,0.102493074792244,10.2493074792244,4,73.9729560905842,0.726017000607164,5.54016620498615,28.3756666312347,0
+2837,0.016237247322699,0.0554016620498615,5.54016620498615,4,62.7921224622655,0.658499668905496,2.77008310249307,38.2986935138702,11.6176595687866
+2838,0.0168599321122249,0.0578947368421053,5.78947368421053,6,53.6685996655072,0.500492934604009,2.10526315789474,57.5069163062356,20.7823009490967
+2839,0.046950008782247,0.382271468144044,38.2271468144044,4,88.3016370025026,0.794433767527938,13.5734072022161,30.62393066503,0
+2840,0.0407993135708329,0.337950138504155,33.7950138504155,5,86.6194594977849,0.78812548514739,12.7423822714681,6.59696785348361,0
+2841,0.0441139005035484,0.351800554016621,35.180055401662,4,87.4176901960485,0.772930772930773,14.6814404432133,7.36593453715167,0
+2842,0.0226442972859213,0.146814404432133,14.6814404432133,3,81.0995513671668,0.845440274011703,7.4792243767313,20.9337915114637,0
+2843,0.029127205534635,0.157894736842105,15.7894736842105,3,82.5795177411224,0.783052884615385,10,25.2543895641963,0
+2844,0.0340498985386203,0.21606648199446,21.606648199446,5,81.9531817359409,0.685717212065345,10.5263157894737,5.27804133219597,0
+2845,0.0359783227393972,0.182825484764543,18.2825484764543,3,88.3399416308406,0.904229918938836,16.6204986149584,22.0755532438105,0
+2846,0.0341334219212861,0.296398891966759,29.6398891966759,1,95.3511148378513,0.92635959365183,29.6398891966759,24.7046974618858,5.19557523727417
+2847,0.0408158575061431,0.276315789473684,27.6315789473684,3,88.7484615621003,0.853775853775854,19.2105263157895,19.8953619184948,0
+2848,0.0429649164234585,0.282548476454294,28.2548476454294,2,91.2122916971117,0.89336877861468,22.4376731301939,16.3178203900655,0
+2849,0.033136815147821,0.210526315789474,21.0526315789474,5,84.1046319739615,0.829850746268657,17.1745152354571,15.0270459463722,0
+2850,0.00690515844932666,0.0304709141274238,3.04709141274238,2,67.8826803593044,0.656190476190476,2.77008310249307,26.2447509332137,5.19557523727417
+2851,0.0168860836832832,0.0526315789473684,5.26315789473684,5,53.8777536471947,0.523297491039426,1.57894736842105,13.2809161186218,0
+2852,0.0222961942220377,0.168975069252078,16.8975069252078,2,90.0930836264073,0.93188679245283,16.3434903047091,29.4204655240794,7.34765291213989
+2853,0.0107514335347567,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,98.0557454427083,93.6645584106445
+2854,0.0105187400965564,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,0,0
+2855,0.0204170358130221,0.15,15,4,80.2677653824206,0.711884753901561,5.78947368421053,1.77549291911878,0
+2856,0.0640630908772769,0.451523545706371,45.1523545706371,3,92.7697791322348,0.82983164983165,33.5180055401662,21.7407976630275,0
+2857,0.0178993750803814,0.0498614958448753,4.98614958448753,2,74.9233646818843,0.805096641831336,4.43213296398892,26.0503945880466,0
+2858,0.053794143629232,0.43213296398892,43.213296398892,3,92.2578057888859,0.815925894450582,24.0997229916898,11.9274588211989,0
+2859,0.0262935612760741,0.173684210526316,17.3684210526316,3,85.6308332092534,0.831625588479646,11.0526315789474,2.19575418125499,0
+2860,0.0199842156394386,0.10803324099723,10.803324099723,4,75.7685541091933,0.637792642140468,4.98614958448754,6.66303741014921,0
+2861,0.0206232376136576,0.127423822714681,12.7423822714681,3,80.7444015290268,0.764916564916565,8.31024930747922,26.406291173852,0
+2862,0.0103757937827594,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,12.3570981892672,5.19557523727417
+2863,0.0239923155303634,0.0868421052631579,8.68421052631579,4,69.8186583453725,0.675525669761981,3.94736842105263,6.08370153831713,0
+2864,0.0366050942473299,0.152354570637119,15.2354570637119,7,74.9873703933148,0.639869281045752,7.4792243767313,1.07824373245239,0
+2865,0.0356787225551429,0.163434903047091,16.3434903047091,7,73.4354974077279,0.671860797299052,6.92520775623269,11.4184320336681,0
+2866,0.0128974005921737,0,0,0,NA,NA,0,NA,NA
+2867,0.0307016189907843,0.194736842105263,19.4736842105263,3,88.1589605988557,0.770739064856712,14.2105263157895,4.54818351848705,0
+2868,0.0325852342651656,0.207756232686981,20.7756232686981,4,82.3020157104205,0.722690188599279,9.41828254847645,11.5706020037333,0
+2869,0.0307503847090171,0.168975069252078,16.8975069252078,4,85.82113015165,0.738899371069182,13.5734072022161,6.84037445412307,0
+2870,0.0187002424778493,0.121883656509695,12.1883656509695,2,85.8832216045666,0.676826668940234,9.97229916897507,2.93177184191617,0
+2871,0.0381404237054276,0.323684210526316,32.3684210526316,5,85.2205582773538,0.714888939296121,10.5263157894737,2.65690291024805,0
+2872,0.0334340419119303,0.174515235457064,17.4515235457064,6,80.4322549735066,0.691641244661379,8.31024930747922,1.95574454655723,0
+2873,0.0509824675147956,0.512465373961219,51.2465373961219,4,94.1315879117437,0.76010101010101,39.8891966759003,0.634858603090853,0
+2874,0.0498812387805954,0.434903047091413,43.4903047091413,4,91.882515152362,0.827954793028323,31.0249307479224,3.48641131637962,0
+2875,0.028590636151325,0.068421052631579,6.8421052631579,6,59.4777967551431,0.607275733774287,2.63157894736842,3.69259693072392,0
+2876,0.016474616242497,0.0221606648199446,2.21606648199446,3,41.5253742324109,0.590934844192635,1.10803324099723,18.0263137221336,5.19557523727417
+2877,0.019179880312834,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,57.1513290405273,57.1513290405273
+2878,0.0265177515020494,0.238227146814404,23.8227146814404,1,94.1732072729704,0.828401663695781,23.8227146814404,6.92604292270749,0
+2879,0.010433247126366,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,13.5892214775085,5.19557523727417
+2880,0.0186578858997992,0.0526315789473684,5.26315789473684,3,64.043222049202,0.708812260536398,2.21606648199446,10.1688106185512,5.19557523727417
+2881,0.0236542038995208,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+2882,0.022082284852505,0.0664819944598338,6.64819944598338,4,64.5753131217366,0.63353115727003,2.49307479224377,6.80917863051097,0
+2883,0.0228298064934997,0.0526315789473684,5.26315789473684,6,56.0897098255207,0.591397849462366,3.15789473684211,9.48424792289734,0
+2884,0.0400308938665942,0.310249307479224,31.0249307479224,2,91.7716712622505,0.770328840112927,20.7756232686981,26.1890511385032,0
+2885,0.0317307786794007,0.146814404432133,14.6814404432133,6,72.1379000645634,0.678000570857714,5.26315789473684,1.90949238471265,0
+2886,0.067096936463577,0.800554016620499,80.0554016620499,1,99.3464052287582,0.926266339869281,80.0554016620499,0.329003296096432,0
+2887,0.0728841004358592,0.852631578947368,85.2631578947368,1,99.5513193744284,0.667366946778711,85.2631578947368,0.285891772788248,0
+2888,0.0343462200939347,0.335180055401662,33.5180055401662,3,92.1496791485803,0.781212121212121,22.1606648199446,2.28405582806296,0
+2889,0.0265732915178781,0.274238227146814,27.4238227146814,5,85.0069402752938,0.752294364868342,16.0664819944598,1.70754055543379,0
+2890,0.0597633706338683,0.759002770083102,75.9002770083102,4,95.2628879351148,0.669014714432667,59.8337950138504,0.307992195560984,0
+2891,0.0480786792869989,0.484210526315789,48.421052631579,5,91.9937719473717,0.777611044417767,27.3684210526316,1.61709437681281,0
+2892,0.0318103491079057,0.243767313019391,24.3767313019391,2,92.285475923948,0.856816219873545,22.7146814404432,1.13951736146753,0
+2893,0.014698242181278,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.897733711048159,2.21606648199446,55.4806537628174,49.0149574279785
+2894,0.0265874022834723,0.0941828254847645,9.41828254847645,5,73.2584048118911,0.74371996505024,5.81717451523546,4.60504659484415,0
+2895,0.0447833139983949,0.381578947368421,38.1578947368421,2,96.1202537310159,0.835246888799679,37.6315789473684,17.5102337278169,0
+2896,0.0286647180564967,0.25207756232687,25.207756232687,2,89.9101977140426,0.777160493827161,13.2963988919668,22.5988176471584,0
+2897,0.0386795802088648,0.293628808864266,29.3628808864266,3,88.5536363086396,0.8072887793861,13.2963988919668,51.5147523924989,0
+2898,0.0336183952041863,0.193905817174515,19.3905817174515,5,83.2009955015244,0.697426871175928,13.0193905817175,53.674957881655,0
+2899,0.0379980781690775,0.378947368421053,37.8947368421053,3,95.1452397700407,0.859720082177709,36.578947368421,2.17614173558023,0
+2900,0.0867740100097151,0.777777777777778,77.7777777777778,2,98.4311824867041,0.756513026052104,75.1461988304094,3.88908053520031,0
+2901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+2906,-0.0207898600659973,0,0,0,NA,NA,0,NA,NA
+2907,0.0106120044525979,0.0815789473684211,8.15789473684211,1,86.4755730963744,0.956446991404011,8.15789473684211,29.5843912555325,20.7823009490967
+2908,0.0165097638799221,0.0131578947368421,1.31578947368421,2,42.162911735052,0.797333333333333,1.05263157894737,31.5180618286133,27.9790287017822
+2909,0.0190968496216412,0,0,0,NA,NA,0,NA,NA
+2910,0.029084682154953,0.15,15,2,86.0833586132085,0.886877828054299,8,3.85712607701619,0
+2911,0.0472819281743604,0.521052631578947,52.1052631578947,2,96.5561801801875,0.857771656136779,47.8947368421053,2.34021801177901,0
+2912,0.0246300493588359,0.210526315789474,21.0526315789474,2,91.9194056904423,0.821596244131455,19.7368421052632,4.5479782640934,0
+2913,0.0184767735114412,0.147368421052632,14.7368421052632,3,84.8977744690386,0.818633066055746,11.8421052631579,3.45074198927198,0
+2914,0.0514436876773107,0.505,50.5,5,92.6530883939057,0.843771043771044,39,2.69101957283398,0
+2915,0.0386059925968048,0.321052631578947,32.1052631578947,5,92.112571121609,0.746746641411484,27.6315789473684,9.15712986226942,0
+2916,0.00933825847990336,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,51.3533981868199,30.2951488494873
+2917,0.0176250817035524,0.126315789473684,12.6315789473684,2,86.1152763776012,0.804584190420217,10.7894736842105,15.8494006991386,0
+2918,0.0254590216194993,0.2,20,3,84.7440847871757,0.727112676056338,9.25,17.659627789259,0
+2919,0.0277897893525063,0.257894736842105,25.7894736842105,3,88.6310878559313,0.785622179239201,15.7894736842105,35.4923054539427,5.19557523727417
+2920,0.0443616629922824,0.313157894736842,31.3157894736842,4,91.5667136521534,0.804526748971193,24.4736842105263,34.8638693504975,5.19557523727417
+2921,0.0622358245082739,0.721052631578947,72.1052631578947,1,99.0393927130613,0.825636884222891,72.1052631578947,35.2393769051907,5.19557523727417
+2922,0.0468524660880212,0.39,39,5,89.5093668194006,0.811503969840635,17.5,25.0561752991799,0
+2923,0.0578477039403209,0.707894736842105,70.7894736842105,1,98.9804840892258,0.823744536615824,70.7894736842105,1.87268310497241,0
+2924,0.0550765877758079,0.652631578947368,65.2631578947368,1,98.7139104063183,0.826280041797283,65.2631578947368,0,0
+2925,0.0141347577139401,0.0578947368421053,5.78947368421053,3,70.4286904628467,0.750246467302005,4.21052631578947,3.75486464933916,0
+2926,0.0332430249888785,0.3075,30.75,3,91.4656205236869,0.818685143513947,22.25,12.1160451920052,0
+2927,0.0555548305233778,0.5,50,5,92.5751430708654,0.744318181818182,32.1052631578947,1.07485884867216,0
+2928,0.0274335759003407,0.244736842105263,24.4736842105263,6,85.5108976473869,0.808572268166744,18.6842105263158,2.86958086875177,0
+2929,0.0308457118960704,0.252631578947368,25.2631578947368,3,89.021674468407,0.836636095643629,20.5263157894737,5.58596043288708,0
+2930,0.0569327526399866,0.7125,71.25,1,99.0279065499043,0.740428293316029,71.25,0.091150442759196,0
+2931,0.0450119265529793,0.421052631578947,42.1052631578947,3,93.1439351706507,0.682745825602968,29.2105263157895,11.4602818876505,0
+2932,0.0193098734631253,0.113157894736842,11.3157894736842,3,78.6504863674055,0.780745136828223,5.52631578947368,5.99317169189453,0
+2933,0.0674160501331483,0.778947368421053,77.8947368421053,1,99.2806056729252,0.699495597161666,77.8947368421053,16.5415539612641,0
+2934,0.121573559483513,0.985,98.5,1,99.9600766120013,0.821746880570409,98.5,3.42050836897138,0
+2935,0.0415650824982501,0.376315789473684,37.6315789473684,4,91.0799740377,0.761329597062518,29.4736842105263,1.17088547286454,0
+2936,0.025901708015724,0.173684210526316,17.3684210526316,6,84.0758253423987,0.663251176959291,13.4210526315789,37.24929932392,0
+2937,0.0103011871897856,0.0289473684210526,2.89473684210526,2,63.093401258934,0.588075880758808,2.10526315789474,76.6873709938743,72.7380523681641
+2938,0.0103098315373609,0.025,2.5,3,55.3365473562369,0.526627218934911,1.75,34.3215042114258,21.4219055175781
+2939,0.0406628863375916,0.305263157894737,30.5263157894737,4,86.4514158317477,0.801226551226551,10.7894736842105,15.2642517459804,0
+2940,0.03552346166306,0.281578947368421,28.1578947368421,4,87.2046044881013,0.754787526808252,12.3684210526316,6.4585374849979,0
+2941,0.0530077641813382,0.426315789473684,42.6315789473684,3,93.4067487712392,0.812819407671941,26.3157894736842,6.44912474832417,0
+2942,0.0505094551615337,0.357894736842105,35.7894736842105,5,92.251759068685,0.817887361184558,28.6842105263158,12.1679902672768,0
+2943,0.0262604843632027,0.15,15,4,83.1881007752816,0.796380090497738,9.75,16.4142620325089,0
+2944,0.0278116307134233,0.157894736842105,15.7894736842105,6,75.5400227018113,0.646033653846154,6.31578947368421,4.78471415042877,0
+2945,0.0357685703183769,0.25,25,4,86.8734409627173,0.835294117647059,17.6315789473684,13.779045913094,0
+2946,0.0310031924332131,0.192105263157895,19.2105263157895,3,85.6079911486447,0.825936482084691,11.5789473684211,31.5663093148846,5.19557523727417
+2947,0.0298912829982237,0.18,18,5,83.9805911004197,0.779143460725946,13.75,7.53379102547963,0
+2948,0.0399851056497075,0.252631578947368,25.2631578947368,5,86.6055609744586,0.789960694398952,17.3684210526316,8.65725265443325,0
+2949,0.0770448321704048,0.531578947368421,53.1578947368421,4,92.9551959773439,0.795056179775281,30,5.92951985160903,0
+2950,0.0218256617149612,0.0763157894736842,7.63157894736842,5,71.2529104207806,0.608413650966843,5,14.574448503297,0
+2951,0.0366626243240444,0.2325,23.25,5,88.0884939573699,0.882265217220674,20.5,35.2311746740854,11.6176595687866
+2952,0.0141635645467001,0,0,0,NA,NA,0,NA,NA
+2953,0.0115253219634197,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,41.5646018981934,41.5646018981934
+2954,0.0268801723204218,0.144736842105263,14.4736842105263,5,77.1006272946264,0.729230769230769,6.84210526315789,7.67740111784502,0
+2955,0.0285609316479122,0.155,15.5,5,78.508118169927,0.758930528161297,8.75,2.92433949439756,0
+2956,0.0157415532180542,0.0789473684210526,7.89473684210526,3,73.1055617197273,0.734110787172012,4.73684210526316,40.0927181243896,0
+2957,0.0145615417533439,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,52.7369995117188,41.5646018981934
+2958,0.0280624284521094,0.0868421052631579,8.68421052631579,5,67.4079141224535,0.5741274415626,3.42105263157895,20.8902889454004,0
+2959,0.0309615213936195,0.1775,17.75,6,78.5019542218935,0.708206686930091,6.75,4.75414354028836,0
+2960,0.0263567545680991,0.2,20,7,75.4689334740606,0.692164179104477,7.10526315789474,5.66887271404266,0
+2961,0.0170905639792995,0.0447368421052632,4.47368421052632,5,56.7805576367437,0.623140495867769,2.89473684210526,34.3343072779038,20.7823009490967
+2962,0.0013574338002256,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,29.4415924549103,5.19557523727417
+2963,0.0275960873730946,0.11,11,5,78.3675668233323,0.741876708168843,7.75,4.75694862279025,0
+2964,0.0201714782502102,0.142105263157895,14.2105263157895,6,76.04621808972,0.736790025727291,8.42105263157895,1.25078662236532,0
+2965,0.0129895333244349,0.0394736842105263,3.94736842105263,4,58.2761618046508,0.621419676214197,2.63157894736842,0.836215209960937,0
+2966,0.0182307208570532,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,88.1587702433268,78.6233215332031
+2967,0.0227534763362928,0.0475,4.75,3,71.9746812949251,0.855190514978731,4.25,11.0054690712377,0
+2968,0.0180285518966469,0.0605263157894737,6.05263157894737,2,74.7911888949056,0.793028322440087,3.94736842105263,20.0431466724562,10.3911504745483
+2969,0.0299222763921774,0.147368421052632,14.7368421052632,6,75.2225393859317,0.697721776759577,4.73684210526316,12.2353691288403,0
+2970,0.0329444582322857,0.131578947368421,13.1578947368421,10,64.819912732216,0.471657754010695,3.68421052631579,8.23679849624634,0
+2971,0.0458741740964615,0.415,41.5,6,93.3852258650447,0.659236914138875,33.5,4.51775341723339,0
+2972,0.0332085584381275,0.221052631578947,22.1052631578947,10,74.174952175439,0.620896063849084,6.05263157894737,4.14088101046426,0
+2973,0.0452819513714578,0.460526315789474,46.0526315789474,3,94.6222317182157,0.672883787661406,33.6842105263158,2.47859462465559,0
+2974,0.0347653053903119,0.234210526315789,23.421052631579,4,86.8729977687238,0.712550519786466,14.7368421052632,5.26432127898998,0
+2975,0.0238407702995096,0.045,4.5,3,66.6055457381153,0.767306573589296,3.25,12.5070805019803,0
+2976,0.0222519749710045,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.808080808080808,7.36842105263158,15.9011898551668,7.34765291213989
+2977,0.0246488926413517,0.105263157894737,10.5263157894737,3,79.0021935065481,0.666374012291484,5.26315789473684,12.7366349101067,5.19557523727417
+2978,0.0278383619055023,0.205263157894737,20.5263157894737,4,89.0578440703894,0.844994721182455,18.4210526315789,12.6331543433361,0
+2979,0.016020877938804,0.0575,5.75,4,66.5378371397197,0.675803124078986,3.5,9.9240578983141,5.19557523727417
+2980,0.0177791253705723,0.0447368421052632,4.47368421052632,4,55.7723101552989,0.623140495867769,1.84210526315789,11.0321176753325,0
+2981,0.027088162546031,0.118421052631579,11.8421052631579,7,68.9242226699005,0.582089552238806,4.73684210526316,5.91141674253676,0
+2982,0.0212131564328717,0.0947368421052632,9.47368421052632,4,76.9037657274362,0.742248062015504,6.84210526315789,5.00969689422184,0
+2983,0.0349535019988707,0.2875,28.75,3,88.4815824711708,0.770580296896086,12.75,8.68765930507494,0
+2984,0.0529552594979912,0.394736842105263,39.4736842105263,1,96.8008110192232,0.927905138339921,39.4736842105263,7.5489594523112,0
+2985,0.0243269391998566,0.068421052631579,6.84210526315789,1,84.7352110985031,0.947636764503238,6.84210526315789,7.81020043446467,0
+2986,0.0599150130217726,0.689473684210526,68.9473684210526,1,98.895195872361,0.901618972004556,68.9473684210526,1.48792830314345,0
+2987,0.0801425986690447,0.9775,97.75,1,99.9397711850087,0.580712788259958,97.75,0.039863748623587,0
+2988,0.0609839748934303,0.742105263157895,74.2105263157895,1,99.1303671971735,0.678090103966115,74.2105263157895,2.89555868358477,0
+2989,0.0380741529181538,0.363157894736842,36.3157894736842,5,87.0815368510134,0.775678866587957,13.6842105263158,9.90603476330854,0
+2990,0.0534966219228839,0.555263157894737,55.5263157894737,3,94.4936276223713,0.759087066779375,36.5789473684211,3.754134566863,0
+2991,0.0429543530519004,0.3225,32.25,3,91.3136984144127,0.748763445081259,16,5.24072183934293,0
+2992,0.0364430493485423,0.244736842105263,24.4736842105263,7,78.9501980653273,0.688929935770958,6.84210526315789,5.44109228093137,0
+2993,0.0227607680594941,0.0315789473684211,3.15789473684211,2,62.5006532464426,0.635549872122762,1.84210526315789,7.56766215960185,0
+2994,0.0492781917126482,0.381578947368421,38.1578947368421,3,94.9445623434491,0.871858691288639,36.5789473684211,15.2679821277487,0
+2995,0.0601957623547241,0.515,51.5,2,94.9581461912273,0.849263815240505,38.75,6.64932175515925,0
+2996,0.0388156349854973,0.247368421052632,24.7368421052632,6,84.0596541221601,0.691558441558442,11.3157894736842,19.8846881186708,0
+2997,0.0470198601630584,0.336842105263158,33.6842105263158,7,86.5210362515645,0.792901423802711,16.5789473684211,60.0208240151405,0
+2998,0.0560187841319547,0.528947368421053,52.8947368421053,1,97.9724231015921,0.869097009001453,52.8947368421053,77.4554412614054,25.977876663208
+2999,0.0253185277364901,0.1975,19.75,4,85.2840802527748,0.688473520249221,10.25,31.3205647710003,0
+3000,0.0364084214593782,0.2,20,6,80.6674490797284,0.69488188976378,9.16666666666667,16.2699642711216,0
+3001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3006,0.000843091628631124,0.0263157894736842,2.63157894736842,2,35.6922526523744,0.486486486486487,1.97368421052632,35.6418628692627,27.9790287017822
+3007,-0.000942273364321371,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824
+3008,0.00536006004704353,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.795467422096317,2.21606648199446,14.2878315448761,10.3911504745483
+3009,0.0237038383301224,0.105263157894737,10.5263157894737,3,82.099073773588,0.716153127917834,8.58725761772853,0.546902656555176,0
+3010,0.020382360938215,0.0815789473684211,8.1578947368421,7,61.3637414522629,0.54269340974212,3.68421052631579,6.42024530902986,0
+3011,0.0154318066100905,0.0914127423822715,9.14127423822715,1,87.180691871343,0.714656729900632,9.14127423822715,9.13817878202959,5.19557523727417
+3012,0.0168194568453491,0.07202216066482,7.20221606648199,2,76.2797118658907,0.816017473607572,3.601108033241,5.87783683263339,0
+3013,0.0296440214636043,0.0498614958448753,4.98614958448753,3,68.0316417002971,0.688154626930137,3.32409972299169,2.30914454989963,0
+3014,0.00559589273170786,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,18.1511862754822,0
+3015,0.0145881864618509,0.0415512465373961,4.15512465373961,4,55.6311620723253,0.573173935890699,1.93905817174515,29.9870155016581,5.19557523727417
+3016,0.0178586529949412,0.0221606648199446,2.21606648199446,3,41.4023931466401,0.488668555240793,0.831024930747922,48.4859311580658,15.5867252349854
+3017,0.0130776136791829,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,104.233184814453,88.3247756958008
+3018,-0.00169882474885143,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,13.5517172813416,0
+3019,-0.0177808870964309,0,0,0,NA,NA,0,NA,NA
+3020,0.00658882723451986,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,18.3326591082982,7.34765291213989
+3021,0.0228969123930702,0.188365650969529,18.8365650969529,4,86.1248986256184,0.730805632833338,14.1274238227147,4.30639342700734,0
+3022,0.0117680619271356,0.165789473684211,16.5789473684211,2,86.7177319112959,0.901921422426154,11.3157894736842,22.6162268245031,0
+3023,0.0340547143232395,0.25207756232687,25.207756232687,7,82.9412213825143,0.653360768175583,13.0193905817175,6.1965252488524,0
+3024,0.0597801011499441,0.609418282548476,60.9418282548476,2,96.5393717864661,0.637813527071441,52.6315789473684,0.127863426641984,0
+3025,0.0253144478872784,0.260387811634349,26.0387811634349,1,94.6683312894905,0.903424291064741,26.0387811634349,0.0552720769922784,0
+3026,0.0219003654480012,0.115789473684211,11.5789473684211,3,81.8168024267331,0.679054054054054,8.42105263157895,8.77572968873111,0
+3027,0.0329811094197391,0.304709141274238,30.4709141274238,4,94.0993354302303,0.725359867064406,29.3628808864266,4.87153471599926,0
+3028,0.0201820308251314,0.166204986149584,16.6204986149584,4,80.5356374529654,0.734762330692563,7.20221606648199,8.10102073351542,0
+3029,-0.000896301267167471,0.0637119113573407,6.37119113573407,3,72.5534697776549,0.732988165680473,4.70914127423823,2.99144069008205,0
+3030,0.0503163303493669,0.594736842105263,59.4736842105263,2,97.7622147229199,0.841749699231885,58.4210526315789,8.53992380927094,0
+3031,0.0505793438895433,0.498614958448753,49.8614958448753,3,94.6959262919671,0.706518673369502,35.4570637119114,11.0099802335103,0
+3032,0.0104384645238394,0.0332409972299169,3.32409972299169,4,46.9932820870421,0.513231080397775,1.38504155124654,5.98721937338511,0
+3033,0.0246371489661504,0.28808864265928,28.808864265928,2,94.6996850714072,0.834744792858778,28.5318559556787,35.4631724541004,10.3911504745483
+3034,0.114113036212573,0.886842105263158,88.6842105263158,1,99.6653789560343,0.875141469825855,88.6842105263158,4.45927849155505,0
+3035,0.0433566735292236,0.412742382271468,41.2742382271468,6,86.7900659139398,0.781688437348815,20.4986149584488,2.01047331214751,0
+3036,0.0184644124342929,0.163434903047091,16.3434903047091,5,81.523632679331,0.683580054538372,11.6343490304709,25.228126493551,0
+3037,0.032968923589251,0.321329639889197,32.1329639889197,3,89.4097882404792,0.733372206025267,16.3434903047091,48.3911364818441,11.6176595687866
+3038,0.0310996433927796,0.181578947368421,18.1578947368421,4,83.5662558561311,0.838431080757886,14.2105263157895,32.8845683180768,5.19557523727417
+3039,0.0291699813511272,0.182825484764543,18.2825484764543,1,92.5625648410704,0.882947678703021,18.2825484764543,63.7705883835301,33.2679138183594
+3040,0.0296951415310462,0.199445983379501,19.9445983379501,4,82.2887838349209,0.724600168923521,9.97229916897507,4.70484809743034,0
+3041,0.0434860569456208,0.368421052631579,36.8421052631579,4,87.3457439900843,0.803719008264463,11.3573407202216,10.7870103004283,0
+3042,0.0491108367349325,0.398891966759003,39.8891966759003,4,91.2771788725876,0.75424172601592,28.808864265928,9.77594216664632,0
+3043,0.0366968076637166,0.25,25,5,88.3123144538366,0.866666666666667,21.3157894736842,24.602155881179,0
+3044,0.0311910780437756,0.21606648199446,21.606648199446,4,86.850196575544,0.759666103344088,15.2354570637119,5.92585076429905,0
+3045,0.0122571216019413,0.149584487534626,14.9584487534626,4,81.4273030598708,0.785051311687857,9.41828254847645,0.384857424983272,0
+3046,0.0284512510542629,0.221606648199446,22.1606648199446,6,79.1266189203428,0.692396371109218,7.20221606648199,35.7274385869503,5.19557523727417
+3047,0.0379150145843404,0.294736842105263,29.4736842105263,5,88.9628526524513,0.761341805822373,21.5789473684211,15.0337059242385,0
+3048,0.0303351235630352,0.213296398891967,21.3296398891967,6,80.4404259157487,0.700911350455675,13.8504155124654,4.51821486361615,0
+3049,0.0873965714625662,0.67590027700831,67.590027700831,2,96.109157572698,0.749643874643875,39.0581717451524,5.13006597855052,0
+3050,0.0345003836530414,0.224376731301939,22.4376731301939,3,86.9951553556236,0.767212301587302,14.1274238227147,12.2788324061735,0
+3051,0.0420314689133145,0.273684210526316,27.3684210526316,3,92.0293089829821,0.860110051925909,25,35.4969979111965,5.19557523727417
+3052,0.0127405506550896,0,0,0,NA,NA,0,NA,NA
+3053,0.0188720830258835,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,96.8526903788249,88.7820281982422
+3054,0.0188130078865654,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.710910910910911,7.75623268698061,4.1272611788341,0
+3055,0.0199720402852108,0.068421052631579,6.8421052631579,2,81.3670226465916,0.947636764503238,6.57894736842105,3.77405577439528,0
+3056,0.0108695440045529,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,4.32964603106181,0
+3057,0.0165549634912218,0.0554016620498615,5.54016620498615,2,79.2017872380079,0.658499668905496,5.26315789473684,13.969637799263,0
+3058,0.0247315150065076,0.105263157894737,10.5263157894737,7,67.0544248501807,0.574229691876751,3.32409972299169,14.8064969589836,5.19557523727417
+3059,0.017530957360776,0.0710526315789474,7.10526315789474,5,67.3168279199043,0.649515778378022,4.21052631578947,21.893872084441,5.19557523727417
+3060,0.0254368755352584,0.210526315789474,21.0526315789474,4,89.6605662927963,0.829850746268657,19.3905817174515,15.5649265992014,0
+3061,0.0224689436910211,0.18005540166205,18.005540166205,3,87.3577543658313,0.74097105955513,13.8504155124654,7.84879443828876,0
+3062,-0.0587747026560328,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483
+3063,-0.0223759568142812,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,10.3911503791809,5.19557523727417
+3064,-0.0348356279680558,0,0,0,NA,NA,0,NA,NA
+3065,-0.0505648570872299,0,0,0,NA,NA,0,NA,NA
+3066,-0.00555984951121026,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,25.5448131561279,18.7329120635986
+3067,0.0221723216182191,0.0263157894736842,2.63157894736842,4,51.0856515317875,0.446985446985447,1.84210526315789,7.70422081947327,0
+3068,0.0277999602532213,0.0941828254847645,9.41828254847645,7,66.1713028233838,0.605723023154216,5.54016620498615,9.79861304339241,0
+3069,0.031947621942926,0.224376731301939,22.4376731301939,6,80.0312143953441,0.73139880952381,8.86426592797784,15.9744007087048,0
+3070,0.0407755852191918,0.299168975069252,29.9168975069252,3,90.6162704826732,0.765845748454444,18.2825484764543,13.0699023273256,0
+3071,0.0279297088645092,0.0894736842105263,8.94736842105263,6,65.441520141417,0.588150289017341,3.68421052631579,10.3778080239015,0
+3072,0.0293811633980775,0.213296398891967,21.3296398891967,5,80.9977007954418,0.635485708367854,10.2493074792244,8.19014269345767,0
+3073,0.0252728423877159,0.224376731301939,22.4376731301939,4,87.1504463396241,0.713492063492064,14.1274238227147,11.1012107825574,0
+3074,0.0206671205219952,0.10803324099723,10.803324099723,3,76.3659258655536,0.689536550406116,4.43213296398892,12.5058828378335,5.19557523727417
+3075,0.0140322381587459,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,11.808125409213,10.3911504745483
+3076,0.0215760430761404,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,8.05362923940023,5.19557523727417
+3077,0.0254345479201789,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.940858453473132,9.41828254847645,41.5425389794742,23.2353191375732
+3078,0.0260944169557588,0.074792243767313,7.4792243767313,3,74.421742658567,0.673234925497842,5.26315789473684,23.0173764935246,0
+3079,0.0232329575508055,0.0605263157894737,6.05263157894737,6,55.689519139135,0.438219732337379,1.84210526315789,8.77113093500552,0
+3080,0.0184409218867954,0.0637119113573407,6.37119113573407,6,53.0927992107868,0.436308349769888,1.38504155124654,19.896290447401,10.3911504745483
+3081,0.0206466123454548,0.0581717451523546,5.81717451523546,5,55.6842946798304,0.502297794117647,1.66204986149584,16.5196300688244,5.19557523727417
+3082,0.0241194462433364,0.119113573407202,11.9113573407202,7,66.8838390547668,0.526991614255765,3.04709141274238,25.3869530433832,5.19557523727417
+3083,0.0212747801864153,0.15,15,6,77.1435687468973,0.699879951980792,7.63157894736842,10.5569169061226,0
+3084,0.0156187496866052,0.0415512465373961,4.15512465373961,3,58.473768789882,0.573173935890699,1.66204986149584,11.9299916585286,10.3911504745483
+3085,0.0280580724277336,0.135734072022161,13.5734072022161,4,80.7585368649013,0.76583485958486,10.2493074792244,6.51513398423487,0
+3086,0.0459474771053306,0.409972299168975,40.9972299168975,4,90.562427018773,0.774855776726781,20.4986149584488,6.63335181249155,0
+3087,0.0448419800486112,0.442105263157895,44.2105263157895,2,96.9109314544643,0.734023128423615,43.6842105263158,7.83124709980828,0
+3088,0.0446863669886648,0.42382271468144,42.382271468144,5,88.8124031922967,0.746766356419381,22.4376731301939,6.65019476024154,0
+3089,0.0486715347920694,0.523545706371191,52.3545706371191,2,96.52446669006,0.700166112956811,46.814404432133,5.43451338470298,0
+3090,0.039150757205406,0.409972299168975,40.9972299168975,7,86.2996087383987,0.668537671292206,15.5124653739612,5.09676678116257,0
+3091,0.0308621910463683,0.178947368421053,17.8947368421053,6,80.7545101442591,0.682719241542771,11.0526315789474,4.88669961340287,0
+3092,0.00976497244580495,0.0554016620498615,5.54016620498615,1,81.9526157930578,0.96584996689055,5.54016620498615,12.062561249733,5.19557523727417
+3093,0.0133185878777387,0.07202216066482,7.20221606648199,3,73.4563483852295,0.76345103749545,3.601108033241,63.1780228248009,52.2148818969727
+3094,0.0270436181963507,0.0914127423822715,9.14127423822715,3,77.4756303819698,0.816565040650407,5.81717451523546,4.53105672200521,0
+3095,0.0471581995941386,0.355263157894737,35.5263157894737,4,90.1107005116423,0.741496598639456,21.3157894736842,11.8762985653347,0
+3096,0.0826525755918009,0.670360110803324,67.0360110803324,4,96.0012674563927,0.77851937235071,59.8337950138504,58.9128085798468,14.6953058242798
+3097,0.0489489941198606,0.385041551246537,38.5041551246537,5,88.1316684870267,0.705504717315741,14.1274238227147,117.372394259885,60.5902976989746
+3098,0.0249606735233303,0.127423822714681,12.7423822714681,4,75.276116646521,0.720838420838421,4.15512465373961,111.487795954165,77.2377777099609
+3099,0.0083221582694669,0.0421052631578947,4.21052631578947,2,74.3517300133401,0.826007326007326,3.94736842105263,74.2152905464172,21.4219055175781
+3100,0.0335897581511989,0.204678362573099,20.4678362573099,6,83.5436913738518,0.693328550932568,14.0350877192982,26.196436555045,0
+3101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3106,0.016177398270776,0.0789473684210526,7.89473684210526,3,59.8573695167526,0.552941176470588,5.26315789473684,22.3233760197957,16.4298515319824
+3107,0.0120898709263559,0.0637119113573407,6.37119113573407,2,74.6659082073633,0.821992110453649,3.8781163434903,13.0450104215871,5.19557523727417
+3108,0.00817624580762781,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,11.4655916293462,5.19557523727417
+3109,0.0142203417128656,0.0803324099722992,8.03324099722992,2,84.0196092250209,0.745513970776724,7.75623268698061,8.83375629885443,5.19557523727417
+3110,0.00883530061963891,0.0447368421052632,4.47368421052632,3,64.8640491211159,0.706887052341598,2.10526315789474,46.8699952293845,10.3911504745483
+3111,0.00756684488099563,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,30.7575000762939,26.4923400878906
+3112,0.0162963487813527,0.116343490304709,11.6343490304709,4,78.9205131794088,0.760916596759239,8.58725761772853,4.87572244235447,0
+3113,0.0225515325778726,0.0831024930747922,8.31024930747922,4,69.7593580989402,0.710648005425735,4.98614958448754,4.72920926411947,0
+3114,-0.0054682516019583,0.0421052631578947,4.21052631578947,1,79.0554595032226,0.913003663003663,4.21052631578947,0,0
+3115,0.00459170755403998,0.121883656509695,12.1883656509695,2,85.6002784218713,0.815329525108705,10.2493074792244,21.480857686563,0
+3116,0.0130108324340848,0.03601108033241,3.601108033241,4,52.5609917571831,0.596583652618135,1.66204986149584,47.7410562221821,11.6176595687866
+3117,0.0114307142025773,0,0,0,NA,NA,0,NA,NA
+3118,0.00806793946195333,0,0,0,NA,NA,0,NA,NA
+3119,0.0055794117318119,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,29.1989607129778,20.7823009490967
+3120,0.00627575672796439,0,0,0,NA,NA,0,NA,NA
+3121,0.0142791742467848,0.0858725761772853,8.58725761772853,3,74.0518223621108,0.803090909090909,4.15512465373961,11.4206255020634,0
+3122,-0.00613532389882159,0,0,0,NA,NA,0,NA,NA
+3123,0.0303314406029078,0.235457063711911,23.5457063711911,8,76.5700432704005,0.662179671753527,6.37119113573407,19.2707873961505,0
+3124,0.0393908386975862,0.229916897506925,22.9916897506925,9,76.5635494666173,0.646650026917242,6.92520775623269,7.27848035168935,0
+3125,0.0169085168723803,0.0969529085872576,9.69529085872576,5,72.0953008664683,0.599058599534589,4.15512465373961,4.20205293382917,0
+3126,0.0228954767724932,0.102631578947368,10.2631578947368,7,64.7709707280185,0.519963907060681,2.63157894736842,6.9045980160053,0
+3127,0.0283188019510568,0.182825484764543,18.2825484764543,5,81.9858358840734,0.733971997052321,9.69529085872576,8.50303951899211,0
+3128,0.0249594646810191,0.074792243767313,7.4792243767313,5,62.8489893295861,0.547556050689319,3.32409972299169,16.6229200892978,0
+3129,0.00645436391538053,0.0831024930747922,8.31024930747922,3,78.0909937082952,0.710648005425735,6.64819944598338,36.8484668572744,5.19557523727417
+3130,0.0199466068514372,0.0921052631578947,9.21052631578947,6,65.6895922875893,0.544227886056971,2.63157894736842,11.3929219245911,0
+3131,0.0468311964603879,0.437673130193906,43.7673130193906,2,93.9750049946257,0.705656531340241,28.5318559556787,9.01114240477357,0
+3132,-0.0138906065412988,0.0775623268698061,7.75623268698061,2,80.2681519206203,0.783183183183183,6.64819944598338,7.37054491043091,0
+3133,0.0281311808580074,0.354570637119114,35.4570637119114,3,89.6593164990141,0.760614489123027,15.2354570637119,13.7026927471161,0
+3134,0.148473985659841,0.984210526315789,98.421052631579,1,99.9567986794946,0.642689233662437,98.421052631579,9.80789919333025,0
+3135,0.0408519309885101,0.332409972299169,33.2409972299169,3,94.2998804068794,0.876318093570368,32.1329639889197,2.43789966901143,0
+3136,0.0164384733491658,0.0581717451523546,5.81717451523546,4,60.7843829578809,0.635018382352941,1.93905817174515,7.74172076724824,0
+3137,0.0387486724366656,0.346260387811634,34.6260387811634,2,92.7534599851098,0.885443888598522,25.4847645429363,33.8475366821289,10.3911504745483
+3138,0.0462277692491051,0.310526315789474,31.0526315789474,1,95.703752747636,0.932225155168724,31.0526315789474,29.8233071262554,5.19557523727417
+3139,0.0448957915427363,0.299168975069252,29.9168975069252,3,93.9511905180538,0.926826796392014,29.3628808864266,76.2523545159234,36.369026184082
+3140,0.000279781741004339,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,32.7219829559326,25.977876663208
+3141,0.0525268614025292,0.470914127423823,47.0914127423823,3,96.063612813653,0.800729304317281,44.8753462603878,27.071727029015,0
+3142,0.058730283780462,0.421052631578947,42.1052631578947,3,91.790771949765,0.851417399804496,20.4986149584488,6.80921349713677,0
+3143,0.0342119567492007,0.228947368421053,22.8947368421053,2,91.0303613860151,0.866123527468898,20.2631578947368,20.9112723778034,5.19557523727417
+3144,0.026834907733057,0.18005540166205,18.005540166205,5,78.8995001951792,0.676213824443913,7.4792243767313,9.81586176798894,0
+3145,0.00765065165254167,0.0470914127423823,4.70914127423823,4,60.4087524907143,0.580232558139535,2.49307479224377,1.85344356649062,0
+3146,0.0147499321395739,0.105263157894737,10.5263157894737,2,82.1079904030804,0.751633986928105,8.03324099722992,64.2896843960411,36.7382659912109
+3147,0.0331096123267344,0.176315789473684,17.6315789473684,3,86.5497057180355,0.854728161437427,13.1578947368421,13.6531019495494,0
+3148,0.0268372172923337,0.124653739612188,12.4653739612188,3,81.002892750276,0.834651898734177,9.14127423822715,17.4288562880622,0
+3149,0.0282932959458358,0.160664819944598,16.0664819944598,3,84.8053401149271,0.857029702970297,10.2493074792244,8.89399285152041,0
+3150,0.0197126203085413,0.0609418282548476,6.09418282548476,3,66.8069831988221,0.686795072011105,2.77008310249307,4.55806944587014,0
+3151,0.0159248582615156,0.0342105263157895,3.42105263157895,2,66.6860336491831,0.71238268240993,2.63157894736842,1.5986385345459,0
+3152,0.0146060317506617,0.0581717451523546,5.81717451523546,1,82.5214449195341,1,5.81717451523546,21.9459200359526,10.3911504745483
+3153,0.0143503562587909,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,56.0576010311351,47.0479354858398
+3154,0.0114458781811316,0,0,0,NA,NA,0,NA,NA
+3155,0.0103578953658909,0,0,0,NA,NA,0,NA,NA
+3156,0.00408080125681381,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,4.45335020337786,0
+3157,0.00560334147948199,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,100.879829406738,100.879829406738
+3158,0.0148291915996517,0.0277008310249307,2.77008310249307,1,72.175958031556,1,2.77008310249307,87.1709922790527,77.9336318969727
+3159,0.0182872262695271,0.102631578947368,10.2631578947368,3,81.8441687533805,0.708549515001128,7.89473684210526,8.69161663299952,0
+3160,-0.0122008306142639,0.127423822714681,12.7423822714681,4,77.3933345138153,0.720838420838421,6.64819944598338,18.5010354829871,0
+3161,0.00636458554867925,0.0443213296398892,4.43213296398892,3,63.5616037655817,0.694806763285024,3.04709141274238,14.4458105266094,7.34765291213989
+3162,-0.0760853873153663,0,0,0,NA,NA,0,NA,NA
+3163,-0.0477411126580065,0,0,0,NA,NA,0,NA,NA
+3164,-0.0780166965225483,0,0,0,NA,NA,0,NA,NA
+3165,-0.0366994917414579,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,13.1564826965332,11.6176595687866
+3166,0.0173974109075867,0.0969529085872576,9.69529085872576,4,72.3128889359231,0.713613285381849,4.98614958448753,85.8934116908482,37.8243598937988
+3167,0.0340016327454769,0.244736842105263,24.4736842105263,4,86.6919431568205,0.832500734645901,15.7894736842105,23.5390246504097,0
+3168,0.0455605028340834,0.365650969529086,36.5650969529086,3,91.0239590310097,0.823388718766421,23.8227146814404,8.85052808125814,0
+3169,0.0504636652072714,0.407202216066482,40.7202216066482,4,90.294018237978,0.742886426015356,19.3905817174515,18.1857198695747,0
+3170,0.0257460939082549,0.121883656509695,12.1883656509695,7,75.9846700009686,0.63065905021741,8.58725761772853,22.2414990013296,0
+3171,0.0227261635472563,0.05,5,2,73.9613297988082,0.818511796733212,4.21052631578947,25.931751552381,11.6176595687866
+3172,0.0223238898107585,0.0526315789473684,5.26315789473684,5,54.4115697671805,0.563218390804598,2.49307479224377,8.34628150337621,0
+3173,0.0171315609816064,0.0609418282548476,6.09418282548476,3,76.6770728051208,0.780756550407774,5.54016620498615,27.9986209869385,0
+3174,0.0164169466902258,0.07202216066482,7.20221606648199,1,84.8544079576361,0.894867127775755,7.20221606648199,19.3603821167579,5.19557523727417
+3175,0.0193023244150003,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,9.37665128707886,7.34765291213989
+3176,0.028332531838107,0.0498614958448753,4.98614958448753,4,59.1854125664721,0.649173955296404,2.21606648199446,14.5574180814955,0
+3177,0.0305700182175932,0.0775623268698061,7.75623268698061,2,77.589067087699,0.807273940607274,4.43213296398892,19.9822340692793,0
+3178,0.0249515301538673,0.0581717451523546,5.81717451523546,5,64.3295596531706,0.601838235294118,3.8781163434903,12.4072203863235,0
+3179,0.0262997924280315,0.0842105263157895,8.42105263157895,6,61.5946458091562,0.559018567639257,2.36842105263158,11.7065499424934,0
+3180,0.0278251282936072,0.202216066481994,20.2216066481994,4,87.3452441425393,0.813937717013889,16.3434903047091,7.32861038756697,0
+3181,0.0281051154018407,0.149584487534626,14.9584487534626,5,81.1325962538859,0.759763230709958,11.3573407202216,13.1940386736834,0
+3182,0.0265237134351846,0.193905817174515,19.3905817174515,6,77.8927969293042,0.717598413097533,7.20221606648199,26.050366960253,0
+3183,0.0179615624705452,0.0736842105263158,7.36842105263158,5,70.3137703779001,0.640151515151515,4.73684210526316,6.92257251058306,0
+3184,0.0173110508724291,0.119113573407202,11.9113573407202,2,87.0058693740548,0.889631376659679,11.3573407202216,7.1784680832264,0
+3185,0.0555732712453396,0.448753462603878,44.8753462603878,3,92.998019925043,0.817375467943746,22.4376731301939,3.40518303859381,0
+3186,0.051770229507353,0.487534626038781,48.7534626038781,4,92.4135535493775,0.723808731808732,22.1606648199446,5.06756248799237,0
+3187,0.0550401881876353,0.536842105263158,53.6842105263158,3,97.2154854232301,0.698069081314464,52.1052631578947,1.73444976526148,0
+3188,0.0539600084618977,0.54016620498615,54.016620498615,2,95.1041127424102,0.783731611528989,36.2880886426593,3.28743281975771,0
+3189,0.0619165629639943,0.570637119113573,57.0637119113573,3,97.3493855290891,0.768921081445296,55.6786703601108,3.23576472337963,0
+3190,0.0738144320361007,0.825484764542936,82.5484764542936,2,98.3808235264667,0.714002772826302,76.1772853185596,5.23946099633338,0
+3191,0.0475949214091279,0.455263157894737,45.5263157894737,3,92.7615453554182,0.729529174806536,23.6842105263158,7.20129748162507,0
+3192,0.0216122434090454,0.138504155124654,13.8504155124654,6,72.353666888909,0.713221108379043,6.37119113573407,41.3904093456268,0
+3193,0.0257763833562971,0.191135734072022,19.1135734072022,5,81.4877913684128,0.744565832672931,11.3573407202216,38.9098801612854,0
+3194,0.0230935023547894,0.0470914127423823,4.70914127423823,3,70.2407470177968,0.832093023255814,4.15512465373961,16.2601872892941,0
+3195,0.0382743847253503,0.271052631578947,27.1052631578947,4,86.7062383300243,0.762708556932384,11.8421052631579,33.784960982869,0
+3196,0.0354869980127574,0.204986149584488,20.4986149584488,7,77.2258782043434,0.612972393460198,8.31024930747922,44.4239156310623,5.19557523727417
+3197,0.0402426201301315,0.332409972299169,33.2409972299169,4,88.6309065051252,0.677052799878183,15.2354570637119,102.638303375244,62.5630111694336
+3198,0.0195323912117813,0.174515235457064,17.4515235457064,2,88.8985670939252,0.823794996949359,14.1274238227147,76.8320769658164,51.170482635498
+3199,0.0441791515495688,0.363157894736842,36.3157894736842,4,92.0034283989289,0.850452577725305,30.7894736842105,5.65420329743537,0
+3200,0.0574741848139909,0.476608187134503,47.6608187134503,4,95.4555709269562,0.777094972067039,44.4444444444444,5.9364367174956,0
+3201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3206,0.00910800132140522,0,0,0,NA,NA,0,NA,NA
+3207,0.00766288359677434,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,111.765279769897,109.107078552246
+3208,0.00155985200524765,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,102.340965270996,102.340965270996
+3209,0.00747084135880596,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,73.3818187713623,72.7380523681641
+3210,0.0117376534478497,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,124.693801879883,124.693801879883
+3211,0.0125383537834521,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,43.6774730682373,26.4923400878906
+3212,0.00688471504672685,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.852291325695581,8.86426592797784,16.7486398667097,0
+3213,-0.00615309321542768,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,0,0
+3214,0.0261944847610146,0.284210526315789,28.4210526315789,5,85.683314649393,0.770739064856712,18.6842105263158,0,0
+3215,0.040190069801137,0.390581717451524,39.0581717451524,4,88.8265709997694,0.783756166314306,24.3767313019391,6.47074918544039,0
+3216,0.0242272773350849,0.135734072022161,13.5734072022161,3,82.7101874194009,0.84848137973138,7.75623268698061,11.1587495706519,0
+3217,0.00348234616903736,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,83.811580657959,77.9336318969727
+3218,0.00576898009242804,0,0,0,NA,NA,0,NA,NA
+3219,0.0022821493840031,0,0,0,NA,NA,0,NA,NA
+3220,0.00775894710850203,0,0,0,NA,NA,0,NA,NA
+3221,0.0158447917634687,0.102493074792244,10.2493074792244,3,83.5731225861209,0.726017000607164,8.86426592797784,19.6595245309778,0
+3222,-0.00372153018464527,0.0473684210526316,4.73684210526316,2,71.3169014368256,0.727849396357684,3.42105263157895,4.34826209810045,0
+3223,0.0284378830690312,0.268698060941828,26.8698060941828,3,92.6666966815476,0.787813479623825,24.9307479224377,50.2064928762692,10.3911504745483
+3224,0.0393625080351359,0.3601108033241,36.01108033241,3,91.5545395318008,0.841744753137158,23.2686980609418,33.9046684301817,0
+3225,0.00829919786960786,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,3.14411572047642,0
+3226,0.0193642878633048,0.0921052631578947,9.21052631578947,7,62.212055612199,0.620189905047476,3.15789473684211,5.86999116625105,0
+3227,0.0278048873395698,0.265927977839335,26.5927977839335,6,87.9068054376618,0.762395787626152,21.3296398891967,7.49054103593032,0
+3228,0.0308705511208366,0.191135734072022,19.1135734072022,6,80.3416569419252,0.734348465979848,11.9113573407202,23.9782583540764,0
+3229,0.00290539265642012,0,0,0,NA,NA,0,NA,NA
+3230,0.0108137686835107,0.0868421052631579,8.68421052631579,2,85.6095918565683,0.675525669761981,8.42105263157895,4.44978526144317,0
+3231,0.0477527214729851,0.53185595567867,53.185595567867,4,92.7188592761425,0.735988298650356,27.9778393351801,11.6381187513471,0
+3232,0.0112218834027497,0.102493074792244,10.2493074792244,1,88.2023291177678,0.926937866828577,10.2493074792244,16.9431141904882,5.19557523727417
+3233,0.0663938872999714,0.761772853185596,76.1772853185596,3,98.5849323171123,0.910514692626645,75.6232686980609,16.3567402891679,0
+3234,0.157110486679563,1,100,1,100,NA,100,12.6613861360048,0
+3235,0.0425145003613771,0.332409972299169,33.2409972299169,3,93.2932114688606,0.855704442498763,30.4709141274238,2.96024960279465,0
+3236,0.0175637664932692,0.119113573407202,11.9113573407202,3,81.3275352535243,0.873864430468204,9.69529085872576,21.3038307899653,0
+3237,0.0318655866367383,0.277008310249307,27.7008310249307,2,94.0973767991322,0.761792252022137,26.8698060941828,25.4390466547012,5.19557523727417
+3238,0.0176340406477577,0.1,10,1,88.3079606859525,0.964726631393298,10,25.4441183491757,10.3911504745483
+3239,0.00998912356624417,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,22.8977345686692,16.4298515319824
+3240,0.00578789775273659,0.0332409972299169,3.32409972299169,4,49.493734867695,0.574077195348053,1.93905817174515,5.80787964661916,0
+3241,0.0202435373760629,0.0969529085872576,9.69529085872576,6,67.6658747317277,0.618151047175799,4.70914127423823,16.9203999383109,0
+3242,0.0292393330733261,0.177285318559557,17.7285318559557,3,83.1436465800466,0.761243386243386,8.58725761772853,16.7024140059948,5.19557523727417
+3243,0.0219029054091343,0.105263157894737,10.5263157894737,4,77.1774681441252,0.766461808604039,7.63157894736842,25.1547585010529,5.19557523727417
+3244,0.0141823252292487,0.0554016620498615,5.54016620498615,4,63.9086011378352,0.726799735124397,3.601108033241,9.99515810012817,0
+3245,0.0118980754008907,0.038781163434903,3.8781163434903,2,68.6981417242708,0.687896253602305,3.04709141274238,2.75150745255607,0
+3246,0.0130841255280218,0.038781163434903,3.8781163434903,3,60.7427754519644,0.739913544668588,2.77008310249307,36.4284233706338,7.34765291213989
+3247,0.0296896601561648,0.181578947368421,18.1578947368421,1,92.7177340931195,0.909117482926311,18.1578947368421,49.027695365574,20.7823009490967
+3248,0.00700635239890972,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,2.59778761863708,0
+3249,0.00522302632892299,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,36.369026184082,36.369026184082
+3250,0.0184469311854446,0.07202216066482,7.20221606648199,1,84.8544079576361,0.947433563887878,7.20221606648199,2.99744725227356,0
+3251,0.0196849141623093,0.173684210526316,17.3684210526316,2,89.6137187484558,0.810578787039601,15.5263157894737,11.3184432333166,0
+3252,0.0207760293646429,0.191135734072022,19.1135734072022,1,92.8481599520577,0.938695799841503,19.1135734072022,17.5934865716575,5.19557523727417
+3253,0.0317357539836916,0.221606648199446,22.1606648199446,1,93.7540856743067,0.945717006666332,22.1606648199446,16.6429135799408,0
+3254,0.015551890230043,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,35.3767598470052,16.4298515319824
+3255,0.00851580187739178,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,26.4923400878906,26.4923400878906
+3256,0.0225509226804201,0.105263157894737,10.5263157894737,2,84.0960296911692,0.858076563958917,9.41828254847645,8.97880249274404,0
+3257,0.0432419837563928,0.254847645429363,25.4847645429363,3,89.119930578976,0.869072445371294,20.7756232686981,44.4502792773039,20.7823009490967
+3258,0.016842898395631,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,5.7335946559906,5.19557523727417
+3259,0.0090958253781106,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210527,0.865929206212362,0
+3260,0.00287868068434744,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,1.73185841242472,0
+3261,0.00784505632297404,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,4.43470084667206,0
+3262,-0.0618634570271051,0,0,0,NA,NA,0,NA,NA
+3263,-0.105587576736549,0,0,0,NA,NA,0,NA,NA
+3264,-0.0908338270353932,0,0,0,NA,NA,0,NA,NA
+3265,-0.0238874639603574,0.102493074792244,10.2493074792244,1,88.2023291177678,0.890406800242866,10.2493074792244,37.6872076601596,20.7823009490967
+3266,0.0340703621307076,0.249307479224377,24.9307479224377,3,86.5161666806935,0.817973459237698,10.803324099723,84.0468420664469,52.2148818969727
+3267,0.0176102580631969,0.05,5,4,58.1372946453525,0.491833030852995,2.10526315789474,36.5170895425897,10.3911504745483
+3268,0.023325494546756,0.182825484764543,18.2825484764543,3,86.7830086486239,0.904229918938836,14.6814404432133,9.91531187115294,0
+3269,0.0544641879964439,0.371191135734072,37.1191135734072,6,87.731275284491,0.791434967863075,16.3434903047091,10.5569738594454,0
+3270,0.0235579577659984,0.110803324099723,11.0803324099723,7,68.7934185690889,0.63072488027154,5.26315789473684,14.8827959656715,0
+3271,0.0306430851178256,0.102631578947368,10.2631578947368,8,60.356719573427,0.571396345589894,3.42105263157895,21.2260110439398,0
+3272,0.0469795874477341,0.448753462603878,44.8753462603878,3,93.946737891916,0.671275842298742,33.5180055401662,4.71727558418556,0
+3273,0.0350494714095219,0.149584487534626,14.9584487534626,7,70.5686532500813,0.582746663864663,5.54016620498615,3.88813373777601,0
+3274,0.0371736627106924,0.277008310249307,27.7008310249307,3,89.9340109514288,0.754108131119625,16.8975069252078,3.23721411705017,0
+3275,0.0280548946698745,0.121052631578947,12.1052631578947,3,80.3768029986895,0.708275756179948,7.10526315789474,8.04782620720241,0
+3276,0.0330681288778528,0.124653739612188,12.4653739612188,3,80.3847821627597,0.774525316455696,6.09418282548476,11.5370823542277,0
+3277,0.0246118633986749,0.102493074792244,10.2493074792244,3,84.3583142617175,0.853875733657154,9.69529085872576,14.1118766552693,0
+3278,0.0324216732118244,0.21606648199446,21.606648199446,2,91.9828301059369,0.870589440262201,20.4986149584488,19.1705537514809,0
+3279,0.0213954987831561,0.0473684210526316,4.73684210526316,2,76.9702545305935,0.766728054020872,4.47368421052632,4.46592481931051,0
+3280,0.0248546702259975,0.185595567867036,18.5595567867036,2,87.3034867199323,0.77960927960928,9.41828254847645,10.7246160151354,0
+3281,0.0341733995034331,0.204986149584488,20.4986149584488,7,75.8664253416332,0.661350844277673,4.43213296398892,7.32775935611209,0
+3282,0.0373949832223302,0.277008310249307,27.7008310249307,5,90.7329155816574,0.769476372924649,23.8227146814404,13.1592095708847,0
+3283,0.0239769168850671,0.105263157894737,10.5263157894737,3,80.0300425841931,0.749780509218613,6.31578947368421,24.5151980638504,10.3911504745483
+3284,0.021372499166006,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.975909242575909,7.75623268698061,25.7908719267164,11.6176595687866
+3285,0.0588514912600043,0.46814404432133,46.814404432133,2,94.1007838522925,0.783052884615384,24.3767313019391,3.76648420977169,0
+3286,0.0644909388474718,0.506925207756233,50.6925207756233,4,93.4202298517928,0.789990692108237,35.4570637119114,6.60968061092773,0
+3287,0.068712388621153,0.715789473684211,71.5789473684211,1,99.0160242432472,0.662607813292745,71.5789473684211,3.9418646745822,0
+3288,0.0454585144599299,0.379501385041551,37.9501385041551,3,89.8552224245156,0.748589285714286,17.1745152354571,6.07916923509027,0
+3289,0.0309266401295179,0.376731301939058,37.6731301939058,1,96.5042413397009,0.780035842293907,37.6731301939058,4.43014435908374,0
+3290,0.0700336001731824,0.714681440443213,71.4681440443213,2,98.143755382659,0.658947918551127,66.7590027700831,5.56079632736916,0
+3291,0.0664151073312544,0.660526315789474,66.0526315789474,2,98.5330118162227,0.811974270163285,65.7894736842105,7.50316234603821,0
+3292,0.0318386707067097,0.204986149584488,20.4986149584488,4,81.8914838528609,0.806486196730099,8.86426592797784,36.4573259353638,10.3911504745483
+3293,0.0622907733297647,0.470914127423823,47.0914127423823,3,95.4090981136799,0.855075857685295,42.6592797783934,24.9855437250698,5.19557523727417
+3294,0.0265654874711595,0.038781163434903,3.8781163434903,4,53.0253816693419,0.635878962536023,2.21606648199446,13.4430756228311,0
+3295,0.0266790890936758,0.0342105263157895,3.42105263157895,2,65.1044960614774,0.71238268240993,2.36842105263158,33.7988755886371,0
+3296,0.0225494289993838,0.10803324099723,10.803324099723,4,73.18194275937,0.741280458671763,4.70914127423823,26.5106376623496,0
+3297,0.0204580323520015,0.102493074792244,10.2493074792244,5,68.1867150571827,0.707751467314309,4.43213296398892,30.1144994400643,0
+3298,0.0344897180955217,0.310249307479224,31.0249307479224,3,90.1895605472199,0.755974392619985,15.2354570637119,5.92580115369388,0
+3299,0.0269285699825272,0.197368421052632,19.7368421052632,6,83.613310511022,0.716840536512668,13.9473684210526,8.80779052734375,0
+3300,0.0362865079554233,0.245614035087719,24.5614035087719,3,88.3119431750773,0.822069611362572,17.2514619883041,25.953657297861,0
+3301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3306,0.0164989508877625,0.03125,3.125,1,60.0239503843949,0.793548387096774,3.125,73.5453231811523,67.54248046875
+3307,0.0121887092617199,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210526,41.1696551640828,20.7823009490967
+3308,0.00742569296696609,0,0,0,NA,NA,0,NA,NA
+3309,0.00331368614521412,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,7.34765291213989,7.34765291213989
+3310,0.00601471659152139,0.0025,0.25,1,0,NA,0.25,0,0
+3311,0.0113468705429975,0.0552631578947368,5.52631578947368,2,78.3342796596557,0.933844011142061,5.26315789473684,8.80284484227498,0
+3312,0.000384180963776185,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,3.1173451423645,0
+3313,-0.0348924696224793,0,0,0,NA,NA,0,NA,NA
+3314,-0.026824106235872,0.0175,1.75,1,65.4774238937655,1,1.75,0,0
+3315,-0.000750725578339035,0.0947368421052632,9.47368421052632,2,84.7182076024243,0.88953488372093,8.94736842105263,0,0
+3316,0.0121300098936301,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,41.5764838218689,0
+3317,0.00780295662593505,0,0,0,NA,NA,0,NA,NA
+3318,0.0171400846151482,0.1125,11.25,2,85.7013629510603,0.822090437361008,10,8.75209440655179,0
+3319,0.0507289166787048,0.436842105263158,43.6842105263158,1,97.2260878105125,0.936167613462831,43.6842105263158,9.42194603437401,0
+3320,0.0221794647856912,0.131578947368421,13.1578947368421,1,90.5004389364175,0.959358288770053,13.1578947368421,14.5918350601196,0
+3321,0.0160449142579015,0.05,5,5,53.8705538714131,0.491833030852995,1.57894736842105,1.09380531311035,0
+3322,0.0171003073004795,0.0925,9.25,2,85.1954287744713,0.729034006232218,8.5,12.5428525563833,0
+3323,0.00132431157020811,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,44.1793518066406,41.8880653381348
+3324,0.0627391041856945,0.715789473684211,71.5789473684211,1,99.0160242432472,0.903602232369356,71.5789473684211,32.1544496680007,0
+3325,0.0222572333949684,0.0894736842105263,8.94736842105263,5,73.5827889847634,0.646985962014864,5.78947368421053,5.545706244076,0
+3326,0.0323134795625265,0.275,27.5,2,94.3109567173654,0.81978859816323,26.75,10.7554612333124,0
+3327,0.00846815873749285,0.0710526315789474,7.10526315789474,2,77.294550605953,0.824757889189011,4.47368421052632,21.6884323579294,0
+3328,0.0358796607752741,0.428947368421053,42.8947368421053,1,97.1511440330302,0.819047619047619,42.8947368421053,2.88295760476516,0
+3329,0.0152997599212708,0.131578947368421,13.1578947368421,4,84.7507182859894,0.688413547237077,11.0526315789474,2.66604232788086,0
+3330,0.0119267783284886,0.1525,15.25,4,82.0718188882522,0.654922914231647,6.75,4.4877525861146,0
+3331,0.0487936532345453,0.486842105263158,48.6842105263158,4,93.209185847161,0.635327635327635,28.421052631579,12.5365566227887,0
+3332,0.0265380683356903,0.155263157894737,15.5263157894737,5,84.7393608805724,0.733064565390019,12.8947368421053,23.1716051990703,0
+3333,0.0679189531294948,0.718421052631579,71.8421052631579,1,99.0277405777455,0.895955023364486,71.8421052631579,21.9635026376326,0
+3334,0.151852014265023,0.9175,91.75,1,99.7684657792434,0.947678221059516,91.75,5.98995850586436,0
+3335,0.0476780660634272,0.336842105263158,33.6842105263158,2,95.489010491373,0.941753525444512,33.421052631579,0.503898285329342,0
+3336,0.0237682002511543,0.134210526315789,13.421052631579,3,83.9504367086869,0.787583411941446,10,31.489908657822,0
+3337,0.0159289070104263,0.0578947368421053,5.78947368421053,5,57.3083709682081,0.46927374301676,1.84210526315789,38.1729081760753,21.4219055175781
+3338,0.0148908280707838,0.035,3.5,6,42.8537377539076,0.481865284974093,1.75,13.9846481936319,5.19557523727417
+3339,0.0274832243947075,0.189473684210526,18.9473684210526,8,75.9816115966355,0.669700378361796,10,24.5025417142444,0
+3340,0.0276728474676355,0.134210526315789,13.4210526315789,12,57.5958539512125,0.482234566607274,2.63157894736842,7.79409571254955,0
+3341,0.0274489446266671,0.152631578947368,15.2631578947368,4,79.97300674282,0.728571428571429,10,63.4688026493993,15.5867252349854
+3342,0.0152215088006127,0.0421052631578947,4.21052631578947,3,63.4385404381349,0.695512820512821,2.10526315789474,31.5911906957626,18.7329120635986
+3343,0.0142980012825683,0.03,3,3,57.8971534133413,0.575500303214069,2,17.4996110995611,7.34765291213989
+3344,0.057453300960869,0.484210526315789,48.4210526315789,4,93.1337311102254,0.771908763505402,34.2105263157895,7.36059182364008,0
+3345,0.0136866085487877,0.0184210526315789,1.84210526315789,2,51.6860660322344,0.617962466487936,1.31578947368421,12.3631340435573,0
+3346,0.0256926796936712,0.068421052631579,6.8421052631579,6,61.244839019595,0.581094116025906,3.68421052631579,18.8265837706052,0
+3347,0.0451255288402899,0.4225,42.25,4,95.8465148665971,0.872349872349872,41.25,10.8935781710247,0
+3348,0.0140928601641558,0.05,5,2,72.0211767049231,0.745916515426497,3.15789473684211,0.546902656555176,0
+3349,0.00871960435657385,0.0368421052631579,3.68421052631579,4,54.3552786715396,0.636612021857924,2.10526315789474,35.2556885310582,31.1734504699707
+3350,0.0184742208100751,0,0,0,NA,NA,0,NA,NA
+3351,0.0273871313118434,0.1775,17.75,3,86.1485588000341,0.834650455927052,12.5,21.4951508280257,0
+3352,0.0170969824370619,0.0473684210526316,4.73684210526316,4,60.6477211939732,0.650092081031307,2.89473684210526,12.6712850994534,0
+3353,0.0170023570164248,0.0342105263157895,3.42105263157895,2,68.3053913709012,0.769906145927944,2.89473684210526,61.9831088139461,36.7382659912109
+3354,0.0145320266431027,0.0526315789473684,5.26315789473684,5,55.5127011732598,0.591397849462366,1.84210526315789,22.1492177009583,0
+3355,0.0196393924464428,0.125,12.5,5,73.8879459366836,0.704201680672269,4.75,4.51221877098083,0
+3356,0.0205054881565095,0.0605263157894737,6.05263157894737,2,75.0598199214411,0.763460939931528,4.21052631578947,2.57840892542963,0
+3357,0.00616206391604895,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,71.7405052185059,59.2386741638184
+3358,0.0111296864235555,0.0605263157894737,6.05263157894737,3,69.3750835605256,0.645191409897292,3.42105263157895,3.94834547457488,0
+3359,0.0169533658896034,0.045,4.5,6,51.7033711574271,0.573395384913709,2.5,28.5832107067108,5.19557523727417
+3360,0.0295003605982761,0.178947368421053,17.8947368421053,5,82.8034138225058,0.774833010127128,10.2631578947368,14.1951370309381,0
+3361,0.017272700870078,0.05,5,2,77.743422205647,0.782214156079855,4.73684210526316,13.1256636067441,5.19557523727417
+3362,-0.0633991967794971,0.05,5,2,75.2734937978729,0.85480943738657,4.47368421052632,11.4849556370785,0
+3363,-0.129081452384125,0,0,0,NA,NA,0,NA,NA
+3364,-0.0742670101091502,0,0,0,NA,NA,0,NA,NA
+3365,0.0127025175683421,0.234210526315789,23.4210526315789,3,87.0465240137506,0.778253258120988,10.7894736842105,42.5091788902711,10.3911504745483
+3366,0.0427649187909035,0.363157894736842,36.3157894736842,2,93.1989168429088,0.794372294372294,25.2631578947368,85.3458265498065,51.955753326416
+3367,0.0258093576786996,0.19,19,2,88.2521661142403,0.861802100608071,10.75,42.4101571409326,11.6176595687866
+3368,-0.0111900284563534,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,20.2921662330627,14.6953058242798
+3369,0.0279713992180309,0.136842105263158,13.6842105263158,4,82.7744802047249,0.726637434913675,8.15789473684211,4.95670165465428,0
+3370,0.0332716475195699,0.252631578947368,25.2631578947368,2,93.1608220651748,0.782181460858172,23.6842105263158,1.72026818990707,0
+3371,0.0338691693356395,0.295,29.5,8,84.7126914190361,0.67521707430238,16,1.82915966793642,0
+3372,0.0412113417993839,0.252631578947368,25.2631578947368,6,86.3657390087334,0.665492957746479,12.6315789473684,4.99187770485878,0
+3373,0.0404694985160236,0.276315789473684,27.6315789473684,5,86.9651844913,0.692929292929293,15,5.29725355874924,0
+3374,0.0218051844745643,0.0578947368421053,5.78947368421053,4,63.2020716614706,0.687808084127506,2.10526315789474,9.22337401996959,0
+3375,0.0203862281083457,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0
+3376,0.0258688038832205,0.0842105263157895,8.42105263157895,2,82.3591833545246,0.874005305039788,7.63157894736842,8.7707681953907,0
+3377,0.0232664845210916,0.107894736842105,10.7894736842105,2,85.198237675204,0.821298790132957,9.47368421052632,12.9497189638091,0
+3378,0.0109936161840922,0.0526315789473684,5.26315789473684,3,66.6022147472779,0.727598566308244,2.63157894736842,16.9123481750488,0
+3379,0.00770470816827583,0,0,0,NA,NA,0,NA,NA
+3380,0.0178146782212768,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707
+3381,0.0286122882122168,0.134210526315789,13.4210526315789,5,77.8740907183182,0.668099081158509,8.15789473684211,8.20471028720631,0
+3382,0.040587054972409,0.339473684210526,33.9473684210526,5,87.465567040554,0.787403577180639,15.7894736842105,17.5886364796365,0
+3383,0.0363703837701541,0.285,28.5,7,84.2686142056764,0.728426912892932,12,10.3051880451671,0
+3384,0.0205398964411822,0.121052631578947,12.1052631578947,3,81.116753002923,0.810379241516966,8.94736842105263,31.5093488382257,5.19557523727417
+3385,0.0410594553128057,0.326315789473684,32.6315789473684,4,89.6591939790499,0.7625,19.2105263157895,4.1555065378066,0
+3386,0.0475994157641732,0.376315789473684,37.6315789473684,7,86.9558812508464,0.700132057847779,18.1578947368421,9.52209579027616,0
+3387,0.030659780672338,0.175,17.5,6,79.1115933127074,0.743779255974378,10.75,5.09386153902326,0
+3388,0.0550316960122138,0.442105263157895,44.2105263157895,4,93.6475393637614,0.803408399269629,38.4210526315789,16.6256235752787,0
+3389,0.0488643300384482,0.413157894736842,41.3157894736842,6,88.5583671656262,0.757411559541604,19.4736842105263,8.95346117930807,0
+3390,0.061730839483636,0.597368421052632,59.7368421052632,3,95.7130094790956,0.68293700458907,40.7894736842105,3.73415134236676,0
+3391,0.0569783205576095,0.55,55,1,98.166317237229,0.821138211382114,55,6.76260445984927,0
+3392,0.0270986737738942,0.152631578947368,15.2631578947368,4,79.9449990458579,0.799378881987578,7.63157894736842,28.4980428301055,0
+3393,0.0362037039047879,0.226315789473684,22.6315789473684,5,81.0839040578442,0.712773998488284,8.68421052631579,21.6632209267727,0
+3394,0.0297145803643281,0.152631578947368,15.2631578947368,7,75.6224051937751,0.645962732919255,7.10526315789474,10.3692532407826,0
+3395,0.029849275746019,0.09,9,7,61.1409240518998,0.56043956043956,2.5,1.12981061140696,0
+3396,0.036910667266133,0.205263157894737,20.5263157894737,5,83.0170204734819,0.662635569632402,10.5263157894737,2.8771154208061,0
+3397,0.0386073811159134,0.263157894736842,26.3157894736842,3,90.6545677880687,0.849206349206349,22.8947368421053,11.7197219800949,0
+3398,0.0283217395721677,0.05,5,2,77.2519177652181,0.85480943738657,4.73684210526316,12.8448348547283,5.19557523727417
+3399,0.035072125576844,0.1475,14.75,3,87.1984829895385,0.884997987464781,13.25,49.6207477036169,5.19557523727417
+3400,0.032779635111769,0.15,15,3,81.2608408163912,0.772296015180266,8.05555555555556,60.1210791093332,11.6176595687866
+3401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3406,0.00331979994950272,0,0,0,NA,NA,0,NA,NA
+3407,0.00421451852014752,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.922038656732534,4.98614958448753,5.85961683591207,0
+3408,0.00780650932176583,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,50.8817110061646,32.8597030639648
+3409,0.00152991997301822,0.0277008310249307,2.77008310249307,2,59.2647635931022,0.762656147271532,1.93905817174515,6.87206931114197,0
+3410,-0.00327818747689315,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,4.45335020337786,0
+3411,0.00920802001503407,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,0,0
+3412,-0.00216598714674783,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+3413,-0.0237716926694148,0,0,0,NA,NA,0,NA,NA
+3414,-0.0552164029121884,0,0,0,NA,NA,0,NA,NA
+3415,-0.0190585715205401,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648
+3416,0.0133818918178013,0.130193905817175,13.0193905817174,2,88.8019530820823,0.856289808917197,12.7423822714681,7.15184849881111,0
+3417,-0.00509152234996673,0,0,0,NA,NA,0,NA,NA
+3418,-0.00360461513209884,0,0,0,NA,NA,0,NA,NA
+3419,-0.0105531520131783,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,17.4171357154846,14.6953058242798
+3420,0.0113682463955246,0.124653739612188,12.4653739612188,3,83.2896559264346,0.849683544303798,10.803324099723,13.159765179952,0
+3421,0.0287153084720635,0.279778393351801,27.9778393351801,4,88.9802684873925,0.769868253293668,19.6675900277008,31.6003300789559,0
+3422,0.0130224475785661,0.236842105263158,23.6842105263158,4,87.0657357613001,0.715142428785607,16.3157894736842,24.0300881703695,5.19557523727417
+3423,0.0156905889907799,0.177285318559557,17.7285318559557,8,73.6224940927759,0.663570226070226,8.86426592797784,85.9313841462135,41.8880653381348
+3424,0.0154907470042163,0.102493074792244,10.2493074792244,5,71.8134306833938,0.634689334142886,4.15512465373961,49.185768642941,10.3911504745483
+3425,0.0249734678018839,0.193905817174515,19.3905817174515,4,87.4657158274861,0.74785572597994,15.2354570637119,8.31589429037911,0
+3426,0.0156900182981573,0.128947368421053,12.8947368421053,2,86.5414390577066,0.904330312185297,11.8421052631579,29.9963061663569,15.5867252349854
+3427,0.0112556162348483,0.0277008310249307,2.77008310249307,3,50.9115480554855,0.60442691211922,1.38504155124654,17.3811436653137,10.3911504745483
+3428,0.0127499798893892,0.127423822714681,12.7423822714681,1,89.9922379614275,0.926536426536427,12.7423822714681,0,0
+3429,0.023771520522122,0.202216066481994,20.2216066481994,3,88.920870324781,0.833523220486111,17.1745152354571,2.77268757232248,0
+3430,0.119610432643247,0.994736842105263,99.4736842105263,1,99.9857139002346,0.735006973500708,99.4736842105263,1.4039342592633,0
+3431,0.0460943421686123,0.476454293628809,47.6454293628809,4,92.4471919150224,0.777060070435465,32.9639889196676,10.3882855953172,0
+3432,0.025256358725775,0.105263157894737,10.5263157894737,2,85.0244865728998,0.751633986928105,9.69529085872576,25.7612152099609,0
+3433,0.0162902043297451,0.10803324099723,10.803324099723,5,75.3801264346332,0.706784519827998,7.20221606648199,51.0068814448821,0
+3434,0.0996504329439057,0.842105263157895,84.2105263157895,1,99.5148332895738,0.811258278145695,84.2105263157895,1.35244070887566,0
+3435,0.0446151360491945,0.398891966759003,39.8891966759003,6,92.9928660533979,0.8109551738584,35.7340720221607,0.360803835921817,0
+3436,0.0332495197599553,0.254847645429363,25.4847645429363,4,90.41301977914,0.828157584549823,22.4376731301939,11.9849886738736,0
+3437,0.0285101039222264,0.168975069252078,16.8975069252078,2,86.4466415037585,0.897830188679245,9.69529085872576,20.915922305623,0
+3438,0.0253112960626152,0.142105263157895,14.2105263157895,6,78.0924478465435,0.761857642324692,10.5263157894737,29.7905311937685,0
+3439,0.0283912874583318,0.229916897506925,22.9916897506925,3,88.4106318873574,0.814491264131552,16.3434903047091,29.6919918290104,0
+3440,0.0237208881767212,0.110803324099723,11.0803324099723,8,60.7548933829882,0.546798716696889,3.04709141274238,18.343768465519,0
+3441,0.0272876478387707,0.119113573407202,11.9113573407202,6,69.2164580265525,0.700428022361985,6.37119113573407,81.9133584665698,62.3469009399414
+3442,0.0227577615655227,0.149584487534626,14.9584487534626,4,80.1580093303362,0.747119190221008,6.92520775623269,41.0025198194716,20.7823009490967
+3443,0.0193943350261083,0.0763157894736842,7.63157894736842,8,57.4125949938728,0.470206704249257,2.89473684210526,17.2678396948453,5.19557523727417
+3444,0.0561310265950441,0.457063711911357,45.7063711911357,3,94.3183555678607,0.763711734693878,31.8559556786704,3.96663482839411,0
+3445,0.0362241964204533,0.177285318559557,17.7285318559557,3,88.8900912313057,0.8372113997114,16.3434903047091,5.9485295638442,0
+3446,0.0307218706780845,0.221606648199446,22.1606648199446,3,90.5643938166394,0.746679364442885,19.3905817174515,15.9656719386578,0
+3447,0.0446185353332686,0.45,45,2,95.9587223043502,0.867243867243867,42.1052631578947,2.37982783680074,0
+3448,0.0187745672197793,0.0526315789473684,5.26315789473684,2,77.0439842655532,0.89080459770115,4.98614958448754,5.55121592471474,0
+3449,0.00821169551406791,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.952574881765633,4.15512465373961,35.3831937154134,31.1734504699707
+3450,0.0131245011867789,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,85.9501088460286,67.54248046875
+3451,0.0222294739604159,0.0815789473684211,8.1578947368421,1,86.4755730963744,0.891117478510029,8.1578947368421,55.7989044189453,36.7382659912109
+3452,0.0149451429799903,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,9.17602896690369,5.19557523727417
+3453,0.0185684161113996,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,8.65929206212362,0
+3454,0.0201122158804729,0.07202216066482,7.20221606648199,3,75.7026526309308,0.684601383327266,5.54016620498615,4.87868778522198,0
+3455,0.019157166470062,0.0631578947368421,6.31578947368421,5,71.3892942924435,0.634831460674157,5,8.73107167085012,0
+3456,0.0257508318359806,0.10803324099723,10.803324099723,2,83.5682500389006,0.79302436693741,8.58725761772853,6.83301640779544,0
+3457,0.058610216920557,0.470914127423823,47.0914127423823,2,96.9040714544976,0.788652292457722,46.2603878116344,31.5787445937886,0
+3458,0.0435081743986337,0.335180055401662,33.5180055401662,3,92.102182813571,0.82907196969697,24.9307479224377,26.7123076659589,0
+3459,0.015176778847174,0.0447368421052632,4.47368421052632,4,57.7344355262382,0.623140495867769,2.10526315789474,17.315842852873,10.3911504745483
+3460,0.0172881723381256,0.0581717451523546,5.81717451523546,6,54.4448502862375,0.535477941176471,1.93905817174515,8.93631390162877,0
+3461,0.0363732250323493,0.174515235457064,17.4515235457064,6,80.7280072426609,0.647589993898719,11.3573407202216,4.35673118016076,0
+3462,0.0242650570344519,0.0443213296398892,4.43213296398892,4,61.5195839728942,0.694806763285024,3.32409972299169,7.46863940358162,0
+3463,0.0109647942346591,0,0,0,NA,NA,0,NA,NA
+3464,-0.0211340043527764,0,0,0,NA,NA,0,NA,NA
+3465,-0.0717943255831339,0.132963988919668,13.2963988919668,1,90.3199234519404,0.887477596820697,13.2963988919668,26.1324600378672,10.3911504745483
+3466,-0.010663397541469,0.102493074792244,10.2493074792244,2,81.4102371761933,0.835610200364299,6.92520775623269,36.5592259071969,20.7823009490967
+3467,-0.0486267818729271,0.0868421052631579,8.68421052631579,1,87.058227229868,0.979720354360124,8.68421052631579,29.3397430073131,18.7329120635986
+3468,-0.0971242944405858,0,0,0,NA,NA,0,NA,NA
+3469,-0.0139249278864274,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,11.6321672526273,5.19557523727417
+3470,0.0372084655854882,0.254847645429363,25.4847645429363,5,83.8785946014915,0.713595974249705,9.97229916897507,10.2343109327814,0
+3471,0.045816743401979,0.381578947368421,38.1578947368421,7,89.572346426227,0.780329185066238,20.7894736842105,10.8862299623161,0
+3472,0.0273260696610483,0.182825484764543,18.2825484764543,5,84.8446881873592,0.712689756816507,14.404432132964,7.63952133872292,0
+3473,0.0345803254913688,0.193905817174515,19.3905817174515,5,84.3069981067178,0.74785572597994,13.0193905817175,12.9585868835449,0
+3474,0.0341498060368803,0.235457063711911,23.5457063711911,6,85.13109200857,0.6535176120549,12.7423822714681,5.76434629103717,0
+3475,0.025528330250994,0.0973684210526316,9.73684210526316,6,65.409859459405,0.673087033408211,4.21052631578947,0.842525714152568,0
+3476,0.026960439075554,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,7.72382146120071,0
+3477,0.0167500046770538,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,40.4342543284098,11.6176595687866
+3478,0.0189918405363879,0.127423822714681,12.7423822714681,2,87.6273256018697,0.897150997150997,12.1883656509695,33.6030867825384,14.6953058242798
+3479,0.0126508550848006,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,27.9790287017822,27.9790287017822
+3480,0.00799355857425905,0,0,0,NA,NA,0,NA,NA
+3481,0.0106253716518126,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989
+3482,0.0293755193023347,0.138504155124654,13.8504155124654,5,77.3179662219962,0.576659731416682,6.37119113573407,4.66529602050781,0
+3483,0.0301410628679533,0.110526315789474,11.0526315789474,8,64.4753853987774,0.524960413367781,2.89473684210526,6.20116523333958,0
+3484,0.0301699135829408,0.227146814404432,22.7146814404432,5,81.0986652260629,0.714448152267952,8.58725761772853,5.29841206131912,0
+3485,0.0476811857801914,0.337950138504155,33.7950138504155,5,85.7347891177315,0.719778867453,15.5124653739612,5.13722834039907,0
+3486,0.0324411831138592,0.21606648199446,21.606648199446,3,85.2597482163472,0.805884160393302,10.803324099723,9.70698300386086,0
+3487,0.0409785370419788,0.257894736842105,25.7894736842105,5,87.7639226050223,0.823903932946486,18.4210526315789,5.18622878133034,0
+3488,0.0399731620783009,0.351800554016621,35.180055401662,4,90.6365197518644,0.746216746216746,26.0387811634349,10.9167348155825,0
+3489,0.0608848102267901,0.54016620498615,54.016620498615,6,91.9191951132067,0.711642148705319,40.1662049861496,10.509216548235,0
+3490,0.049011849033823,0.515235457063712,51.5235457063712,3,93.90807024683,0.748139534883721,37.9501385041551,9.32578105567604,0
+3491,0.0319156766655061,0.176315789473684,17.6315789473684,7,74.515394515717,0.667950083285547,6.57894736842105,15.3470304617241,0
+3492,0.0289868325387267,0.210526315789474,21.0526315789474,7,78.2141393764153,0.688059701492537,9.41828254847645,6.99581692093297,0
+3493,0.0444622236389281,0.362880886426593,36.2880886426593,9,85.9996426275209,0.665071857376751,22.4376731301939,7.694665821454,0
+3494,0.0490446850100217,0.512465373961219,51.2465373961219,2,97.3201658849604,0.736111111111111,50.1385041551247,6.12061255171492,0
+3495,0.0453418562577434,0.394736842105263,39.4736842105263,4,93.8019928490969,0.579446640316206,30.5263157894737,3.21272658983866,0
+3496,0.032679555675794,0.0941828254847645,9.41828254847645,4,70.6478497792122,0.724006116207951,4.15512465373961,1.72785513541278,0
+3497,0.0286947122659308,0.18005540166205,18.005540166205,6,76.5186477321475,0.65462807940684,7.4792243767313,3.40676990655752,0
+3498,0.0205013050956816,0.0498614958448753,4.98614958448753,4,63.7613481588286,0.688154626930137,3.601108033241,8.53461096021864,0
+3499,0.0455780476031254,0.410526315789474,41.0526315789474,3,92.8105710062355,0.751742160278746,28.1578947368421,23.9500620976473,0
+3500,0.0396372070575163,0.301169590643275,30.1169590643275,6,83.9152044922733,0.713807531380753,18.4210526315789,107.764706769036,52.2148818969727
+3501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3506,0.0101780668153544,0.0263157894736842,2.63157894736842,2,31.8747015751665,0.486486486486487,1.31578947368421,43.2494516372681,36.7382659912109
+3507,0.00701193452752347,0.0332409972299169,3.32409972299169,4,50.4201712114784,0.574077195348053,1.93905817174515,51.3530842463175,37.8243598937988
+3508,0.00589985012673605,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,26.1064925193787,25.977876663208
+3509,0.0236211128591457,0.168975069252078,16.8975069252078,1,92.0405515626388,0.954591194968553,16.8975069252078,6.85464230521781,0
+3510,0.00209276434376845,0.0342105263157895,3.42105263157895,3,55.9124968957802,0.539812291855889,1.57894736842105,5.10278569735013,0
+3511,0.0190542283390311,0.207756232686981,20.7756232686981,5,83.310522398907,0.79918944691672,14.404432132964,0,0
+3512,0.0226870080576423,0.105263157894737,10.5263157894737,3,83.0874459287934,0.822595704948646,9.41828254847645,0.136725664138794,0
+3513,0.0397436091162966,0.32409972299169,32.409972299169,4,92.2270167172113,0.804593257036808,28.2548476454294,0.658480415996323,0
+3514,0.0147101065074247,0.144736842105263,14.4736842105263,1,91.1941646912191,0.926153846153846,14.4736842105263,0.283395012942227,0
+3515,0.0296150503410517,0.124653739612188,12.4653739612188,3,85.6078032627076,0.879746835443038,11.6343490304709,6.70289233525594,0
+3516,0.0719601722051057,0.481994459833795,48.1994459833795,2,97.1515309615385,0.915804554617089,47.9224376731302,21.8849418519557,0
+3517,0.0122605518711949,0.119113573407202,11.9113573407202,3,78.2709880661063,0.779262753319357,6.92520775623269,11.750141387762,0
+3518,-0.010429520669734,0.0289473684210526,2.89473684210526,1,73.6257888162573,1,2.89473684210526,0.472325021570379,0
+3519,0.00974550321146798,0.160664819944598,16.0664819944598,5,85.9135119620056,0.845115511551155,14.6814404432133,8.08139458195916,0
+3520,0.00051998522150694,0.074792243767313,7.4792243767313,5,64.6185220517858,0.673234925497842,3.32409972299169,10.1868865931476,0
+3521,0.0215186626546635,0.25207756232687,25.207756232687,4,86.79495612616,0.793667123914037,14.1274238227147,30.6234916225894,0
+3522,0.0280447216246102,0.236842105263158,23.6842105263158,5,84.3242170439689,0.731420004283572,10.7894736842105,61.4982331381904,18.7329120635986
+3523,0.01819039368744,0.0803324099722992,8.03324099722992,7,56.6194146568583,0.467892847987695,1.93905817174515,116.506362915039,77.9336318969727
+3524,0.0261078254051353,0.160664819944598,16.0664819944598,4,83.8991264954003,0.845115511551155,13.0193905817175,128.219432830811,88.3247756958008
+3525,0.010523123878312,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,128.997501373291,127.794258117676
+3526,0.0170000165418299,0.0921052631578947,9.21052631578947,4,75.1205492938526,0.60119940029985,4.47368421052632,68.5194875444685,32.8597030639648
+3527,0.0137362107868872,0.0498614958448753,4.98614958448753,4,59.6257027879975,0.610193283662671,2.49307479224377,26.5582029554579,15.5867252349854
+3528,0.0127744411172727,0.0831024930747922,8.31024930747922,2,84.0044760222821,0.844195079844627,8.03324099722992,7.7960194905599,0
+3529,0.0237930581550855,0.182825484764543,18.2825484764543,2,90.2158970547083,0.797818717759764,16.8975069252078,7.47394459175341,0
+3530,0.0681905881459993,0.594736842105263,59.4736842105263,3,96.097328160482,0.806582965727859,52.6315789473684,1.80170665378064,0
+3531,0.0585083072473633,0.750692520775623,75.0692520775623,1,99.1435121970083,0.653263479589609,75.0692520775623,8.02636756756209,0
+3532,0.0279058676067991,0.130193905817175,13.0193905817175,3,78.886792167699,0.712579617834395,4.98614958448754,12.5289179010594,0
+3533,0.0550400094316829,0.556786703601108,55.6786703601108,1,98.1102407214926,0.739896112600536,55.6786703601108,6.97019369922467,0
+3534,0.0957038959194171,0.928947368421053,92.8947368421053,1,99.7970159439352,0.59968950986915,92.8947368421053,1.01994940917147,0
+3535,0.0429295907999096,0.371191135734072,37.1191135734072,6,89.088214367166,0.791434967863075,27.9778393351801,1.54365034245733,0
+3536,0.0306528752161967,0.25207756232687,25.207756232687,4,89.8337587771074,0.810173754000915,21.3296398891967,11.2184348315983,0
+3537,0.0417556162788778,0.332409972299169,33.2409972299169,6,85.6123300349194,0.759507404164605,15.2354570637119,11.3779474496841,0
+3538,0.0274251039338292,0.236842105263158,23.6842105263158,3,88.6950859993771,0.837224245020347,17.3684210526316,9.38292136722141,0
+3539,0.0290167534516201,0.18005540166205,18.005540166205,5,80.4048844673448,0.74097105955513,9.97229916897507,19.0275642908536,5.19557523727417
+3540,0.0225110855530767,0.124653739612188,12.4653739612188,2,87.1202240724581,0.819620253164557,11.3573407202216,46.5457354227702,27.9790287017822
+3541,0.0278198160899453,0.185595567867036,18.5595567867036,7,72.9549939837945,0.622187336473051,5.26315789473684,82.5476139694897,39.5683212280273
+3542,0.0317666319490267,0.240997229916898,24.0997229916898,9,77.4218239368294,0.702495879444314,13.5734072022161,44.4840031327872,0
+3543,0.0201572841488661,0.178947368421053,17.8947368421053,6,78.5505137650257,0.692954104718811,7.36842105263158,12.8635345907772,0
+3544,0.0314388646119749,0.277008310249307,27.7008310249307,5,85.335708126699,0.73105576841209,11.6343490304709,28.3660425662994,0
+3545,0.0331268941992973,0.218836565096953,21.8836565096953,1,93.6796277124475,0.871985815602837,21.8836565096953,6.80868961237654,0
+3546,0.0296985557274701,0.152354570637119,15.2354570637119,3,80.7137478285409,0.788888888888889,6.37119113573407,25.7503638787703,5.19557523727417
+3547,0.0526241955813403,0.371052631578947,37.1052631578947,5,89.9160721090627,0.759657487593656,25.5263157894737,4.33381946712521,0
+3548,0.0638300171138482,0.440443213296399,44.0443213296399,1,97.1844554840863,0.963278177132782,44.0443213296399,5.85447397172076,0
+3549,0.00768914977852496,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,84.8849347432454,76.7117462158203
+3550,0.0120338455115547,0,0,0,NA,NA,0,NA,NA
+3551,0.0180941750879452,0.0342105263157895,3.42105263157895,4,52.4663658047208,0.654859218891916,1.84210526315789,4.06145216868474,0
+3552,0.0290464883037908,0.135734072022161,13.5734072022161,4,84.3608266202251,0.71073717948718,11.0803324099723,11.0064269961143,0
+3553,0.014212674714321,0.07202216066482,7.20221606648199,3,75.7851736410038,0.76345103749545,5.26315789473684,9.07904557081369,0
+3554,0.0159590786107525,0.0332409972299169,3.32409972299169,4,54.2652939860693,0.513231080397775,2.21606648199446,28.1086470683416,0
+3555,0.0172267742206091,0.0473684210526316,4.73684210526316,4,58.5373111945037,0.572334765704931,2.10526315789474,7.96877087487115,0
+3556,0.018029354735888,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.756615540198888,3.32409972299169,3.03075222174327,0
+3557,0.0299162034257241,0.182825484764543,18.2825484764543,5,84.4183422300208,0.77653647752395,14.9584487534626,14.1231785326293,0
+3558,0.0224019206215721,0.132963988919668,13.2963988919668,3,82.5953824684114,0.718693992051742,9.14127423822715,13.7632929086685,0
+3559,0.0268908330048457,0.118421052631579,11.8421052631579,6,74.8670749237717,0.671641791044776,7.36842105263158,23.1536186218262,0
+3560,0.0166362458301269,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.8256038647343,4.43213296398892,5.67574661970139,0
+3561,0.0398220892270943,0.307479224376731,30.7479224376731,4,89.8759751547098,0.70398,19.3905817174515,6.01242568041827,0
+3562,0.0391794624987914,0.290858725761773,29.0858725761773,4,90.3376120450056,0.701554232804233,21.606648199446,3.99999329703195,0
+3563,0.0288536108473636,0.15,15,2,90.3924697721745,0.85594237695078,14.7368421052632,8.58539281811631,0
+3564,-0.0340524670041569,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,11.0044050216675,10.3911504745483
+3565,-0.153022027552228,0,0,0,NA,NA,0,NA,NA
+3566,-0.0473174762416503,0,0,0,NA,NA,0,NA,NA
+3567,-0.0299184337658804,0,0,0,NA,NA,0,NA,NA
+3568,-0.0823711716236838,0,0,0,NA,NA,0,NA,NA
+3569,-0.0201524259340396,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,36.1594009399414,34.8529777526855
+3570,0.0331179605240816,0.157894736842105,15.7894736842105,6,78.559665623918,0.64859693877551,8.31024930747922,18.9188544541075,0
+3571,0.0370951383679456,0.260526315789474,26.0526315789474,4,91.0282432263878,0.718901195569595,21.3157894736842,23.3022443742463,5.19557523727417
+3572,0.0126025724135701,0.0470914127423823,4.70914127423823,2,70.2737097001904,0.832093023255814,3.32409972299169,0,0
+3573,0.0306597819753053,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,10.860778836643,0
+3574,0.0442139324712776,0.365650969529086,36.5650969529086,5,88.8139217444668,0.725271340303321,17.1745152354571,5.45205653075016,0
+3575,0.0305486228638696,0.0947368421052632,9.47368421052632,8,59.6944222413797,0.558139534883721,2.89473684210526,4.51829385757446,0
+3576,0.0278016162267023,0.0969529085872576,9.69529085872576,3,78.2611431583827,0.828167971229109,6.92520775623269,12.6243148122515,0
+3577,0.0198538606383204,0.038781163434903,3.8781163434903,3,63.9070208989939,0.583861671469741,2.77008310249307,8.05862539155143,0
+3578,0.0233415712473767,0.0470914127423823,4.70914127423823,2,69.4674072116699,0.706162790697674,2.49307479224377,15.1499204074635,5.19557523727417
+3579,0.0119825781821227,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,6.24523993900844,5.19557523727417
+3580,0.017378756446434,0.0332409972299169,3.32409972299169,3,56.3269833848908,0.634923310298331,1.93905817174515,13.3172130584717,5.19557523727417
+3581,0.0104204775946167,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483
+3582,0.0249645540504371,0.0470914127423823,4.70914127423823,5,53.7977735232606,0.496279069767442,2.49307479224377,3.79405767777387,0
+3583,0.0166467073027314,0.0342105263157895,3.42105263157895,4,50.1284378525324,0.597335755373903,1.84210526315789,4.35346130224375,0
+3584,0.0391420914190583,0.299168975069252,29.9168975069252,7,82.6791222953931,0.656085943042465,10.5263157894737,3.10841027012578,0
+3585,0.0324700110409908,0.207756232686981,20.7756232686981,7,82.8947901469733,0.588816486543759,13.8504155124654,2.64995882034302,0
+3586,0.0215358311180451,0.0969529085872576,9.69529085872576,6,69.0598968390587,0.560873704252168,4.70914127423823,20.5221923419407,0
+3587,0.0446998936729965,0.323684210526316,32.3684210526316,3,93.3177987911447,0.893912163459022,30.5263157894737,3.23933843287026,0
+3588,0.044527261725216,0.465373961218837,46.5373961218837,2,95.7073577254204,0.800885843222464,40.7202216066482,5.54390868118831,0
+3589,0.0322883918503631,0.113573407202216,11.3573407202216,5,79.3863904022561,0.574909420289855,8.31024930747922,72.8289809808498,20.7823009490967
+3590,0.0354503873840311,0.138504155124654,13.8504155124654,3,88.2811574511878,0.808814072252695,13.2963988919668,97.4398341369629,65.1003723144531
+3591,0.0325388369682371,0.25,25,4,91.4390538434802,0.858823529411765,23.4210526315789,65.4904812059904,36.7382659912109
+3592,0.0342406047042298,0.254847645429363,25.4847645429363,2,94.0096006800801,0.811791640221235,25.207756232687,9.73958476730015,0
+3593,0.0445434085697766,0.365650969529086,36.5650969529086,3,94.7882648359794,0.849553353023248,34.9030470914127,1.01382673509193,0
+3594,0.0548712293824782,0.54016620498615,54.016620498615,2,96.8740684243374,0.807761432470212,50.1385041551247,1.62735239909245,0
+3595,0.0463233808723376,0.452631578947368,45.2631578947368,4,93.4650590722198,0.729131278815822,31.3157894736842,4.54887110410735,0
+3596,0.0384863194133351,0.235457063711911,23.5457063711911,4,88.2701244535269,0.79211056723294,17.4515235457064,11.5785274393418,0
+3597,0.0316995057081313,0.171745152354571,17.1745152354571,4,82.2116304422494,0.742877492877493,10.5263157894737,13.1039104000215,0
+3598,0.0367617642858783,0.28808864265928,28.808864265928,4,88.9704155357829,0.819721592209576,21.606648199446,31.8812852776968,0
+3599,0.0179619122983863,0.15,15,3,84.1762025074523,0.711884753901561,9.21052631578947,10.5042986869812,0
+3600,0.0399817473017714,0.35672514619883,35.672514619883,2,93.9384365479056,0.86635129576306,31.8713450292398,63.8327834019895,31.6034507751465
+3601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3606,0.0121782505515225,0,0,0,NA,NA,0,NA,NA
+3607,0.00953194525360418,0,0,0,NA,NA,0,NA,NA
+3608,0.0131496875640392,0.0775623268698061,7.75623268698061,2,78.8533834903465,0.807273940607274,5.54016620498615,0,0
+3609,-0.00859870684201412,0,0,0,NA,NA,0,NA,NA
+3610,-0.0111540023310226,0.0342105263157895,3.42105263157895,3,58.9334263668246,0.71238268240993,2.36842105263158,0,0
+3611,0.0249753819344906,0.221606648199446,22.1606648199446,4,87.1666759764835,0.755726529998496,15.2354570637119,0.0649446904659271,0
+3612,0.0269853497308086,0.277008310249307,27.7008310249307,1,95,0.807896977437207,27.7008310249307,0.786038069725037,0
+3613,-0.00669957565803499,0.127423822714681,12.7423822714681,5,78.7897155973945,0.77960927960928,9.69529085872576,0.338841863300489,0
+3614,0.0170503981495131,0.173684210526316,17.3684210526316,6,84.5694351804873,0.842148989199668,15.2631578947368,0.629766688202367,0
+3615,0.00905114623395161,0.0581717451523546,5.81717451523546,3,70.4441772992613,0.734558823529412,3.8781163434903,6.91689831869943,0
+3616,0.0359571897779687,0.243767313019391,24.3767313019391,5,89.909352068309,0.82312591866732,22.1606648199446,27.5816174474629,0
+3617,0.0364242449588719,0.279778393351801,27.9778393351801,3,92.622882880799,0.9309604759881,26.8698060941828,5.4870827740962,0
+3618,0.01121503858776,0.126315789473684,12.6315789473684,1,90.1930490625984,0.860417278871584,12.6315789473684,7.0682080189387,0
+3619,0.0125808516157051,0.0277008310249307,2.77008310249307,2,61.6502325407046,0.762656147271532,2.21606648199446,0,0
+3620,0.0292607655404397,0.141274238227147,14.1274238227147,6,72.5593692116865,0.705524657026325,4.15512465373961,2.24483957477644,0
+3621,0.0291919565821757,0.279778393351801,27.9778393351801,4,89.8269376598854,0.80822354441139,21.0526315789474,6.8771445066622,0
+3622,0.0336467926316178,0.25,25,5,90.9495644686861,0.796078431372549,22.8947368421053,28.7740293302034,0
+3623,0.0178035348950072,0.152354570637119,15.2354570637119,4,85.1672112051726,0.726797385620915,12.7423822714681,45.7863977258856,20.7823009490967
+3624,0.0149811583869954,0.0637119113573407,6.37119113573407,3,71.3050890336985,0.762656147271532,4.70914127423823,52.8183955316958,31.6034507751465
+3625,0.00983680917770698,0,0,0,NA,NA,0,NA,NA
+3626,0.0132257464533747,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,99.2613220214844,99.2613220214844
+3627,0.0102078037021768,0,0,0,NA,NA,0,NA,NA
+3628,0.016486987377376,0.038781163434903,3.8781163434903,4,54.330277939219,0.583861671469741,2.21606648199446,3.80117215429034,0
+3629,0.032108857087682,0.257617728531856,25.7617728531856,3,92.4785082511204,0.878281783851825,24.6537396121884,12.385882131515,0
+3630,0.0256674332390671,0.126315789473684,12.6315789473684,5,76.6394996740939,0.748751101968851,6.05263157894737,7.68459335962931,0
+3631,0.0476303643074888,0.443213296398892,44.3213296398892,3,95.5551850349515,0.712881172369445,40.4432132963989,8.56821731626987,0
+3632,0.0271131129292096,0.235457063711911,23.5457063711911,1,94.1064480595709,0.844082925424705,23.5457063711911,19.7359065168044,0
+3633,0.00678986409331422,0.229916897506925,22.9916897506925,1,93.9693281121994,0.929330005383448,22.9916897506925,3.47709805132395,0
+3634,0.109581824745003,0.976315789473684,97.6315789473684,1,99.9348060656475,0.939939939939942,97.6315789473684,0.678999803136944,0
+3635,0.0602770272679943,0.407202216066482,40.7202216066482,4,90.6474287924288,0.755428551575583,29.0858725761773,4.43083538003519,0
+3636,0.034043149556884,0.263157894736842,26.3157894736842,3,89.1500841132972,0.82436974789916,20.4986149584488,19.1435958209791,0
+3637,0.0238184104491162,0.0914127423822715,9.14127423822715,8,56.7140698741783,0.510840108401084,2.49307479224377,6.51636135216915,0
+3638,0.0231096505637029,0.107894736842105,10.7894736842105,5,75.9782994974131,0.593860886665812,5.26315789473684,4.64520591642798,0
+3639,0.0300319490180852,0.25207756232687,25.207756232687,2,93.7700741350455,0.900960219478738,24.9307479224377,17.0454618799817,0
+3640,0.0263395434106156,0.14404432132964,14.404432132964,3,82.5841065435409,0.855605250718156,11.0803324099723,24.6462101752941,0
+3641,0.0134957097009009,0.0526315789473684,5.26315789473684,4,64.2159875452471,0.490421455938697,3.04709141274238,10.8856620537607,0
+3642,0.0343369005528186,0.28808864265928,28.808864265928,4,88.5935841321144,0.789675190911172,19.3905817174515,14.3566287939365,0
+3643,0.0302650259078148,0.255263157894737,25.5263157894737,2,90.3219672251772,0.683603427967995,15,26.8722765765239,5.19557523727417
+3644,0.0258335995294703,0.155124653739612,15.5124653739612,4,84.4715517804892,0.792563799222579,12.4653739612188,42.3153944696699,18.7329120635986
+3645,0.0145688358602166,0.171745152354571,17.1745152354571,2,89.0912358828263,0.865849126718692,15.7894736842105,10.1366936468309,0
+3646,0.0574448933830379,0.470914127423823,47.0914127423823,3,92.2889895338879,0.722228727230149,25.207756232687,11.4826124387629,0
+3647,0.0360258073060944,0.255263157894737,25.5263157894737,5,85.5945622493061,0.71447138621502,12.6315789473684,9.15718866131969,0
+3648,0.0669601829764043,0.498614958448753,49.8614958448753,1,97.6879089680563,0.982031755512419,49.8614958448753,6.01421909597185,0
+3649,-0.000908649828700333,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.96360153256705,5.26315789473684,0,0
+3650,0.0123559929288251,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,1.83691322803497,0
+3651,0.0405678095784663,0.35,35,3,94.5508543944427,0.713922441195168,32.6315789473684,3.43061456465183,0
+3652,0.0223819712526246,0.03601108033241,3.601108033241,2,64.6953405017921,0.769476372924649,2.49307479224377,5.12700447669396,0
+3653,0.013072162717919,0,0,0,NA,NA,0,NA,NA
+3654,0.0113232509441286,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,26.8138199533735,7.34765291213989
+3655,0.0172662906870181,0.0473684210526316,4.73684210526316,5,51.2208851541742,0.494577450378555,1.57894736842105,14.856338845359,0
+3656,0.0157579674338406,0,0,0,NA,NA,0,NA,NA
+3657,-0.00324674079107918,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417
+3658,0.0198530495625345,0.113573407202216,11.3573407202216,3,83.6998408514433,0.852853260869565,10.2493074792244,11.2295400921891,0
+3659,0.0429193382799368,0.363157894736842,36.3157894736842,2,96.0734035175182,0.825528007346189,36.0526315789474,31.7179124528083,0
+3660,0.00408828623105385,0,0,0,NA,NA,0,NA,NA
+3661,0.0169607489154806,0.038781163434903,3.8781163434903,3,60.5372063498304,0.635878962536023,2.49307479224377,18.0274073055812,10.3911504745483
+3662,0.027653116489202,0.07202216066482,7.20221606648199,4,71.6091396772965,0.658318165271205,4.43213296398892,10.2339343841259,0
+3663,0.0288060563458466,0.1,10,4,75.8002331454413,0.664902998236332,6.05263157894737,8.22628200681586,0
+3664,-0.00887709302173222,0,0,0,NA,NA,0,NA,NA
+3665,-0.0540064728286419,0,0,0,NA,NA,0,NA,NA
+3666,-0.0314966286019031,0,0,0,NA,NA,0,NA,NA
+3667,-0.00966949591537214,0,0,0,NA,NA,0,NA,NA
+3668,-0.0284444912194634,0,0,0,NA,NA,0,NA,NA
+3669,0.0175801566474245,0,0,0,NA,NA,0,NA,NA
+3670,0.0160171668783863,0.0277008310249307,2.77008310249307,4,41.7780866361615,0.446197676966908,1.10803324099723,17.0465975284576,0
+3671,0.0375007084881777,0.313157894736842,31.3157894736842,4,91.0201705593973,0.72364126578686,23.6842105263158,33.2973959906762,0
+3672,0.0124136620219892,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.887240356083086,6.64819944598338,2.90393982330958,0
+3673,0.0292560860419187,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,3.61017883525175,0
+3674,0.0365788402109035,0.221606648199446,22.1606648199446,2,92.8002828336368,0.800962357776553,21.606648199446,4.36222587823868,0
+3675,0.0348960108675161,0.176315789473684,17.6315789473684,8,73.678841102538,0.605690723901587,5,1.50549264452351,0
+3676,0.0234687194693037,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,11.0203877449036,5.19557523727417
+3677,0.0198562784042985,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,22.3067683577538,7.34765291213989
+3678,0.0190363532829374,0.0249307479224377,2.49307479224377,2,62.6945622308157,0.658143939393939,2.21606648199446,19.698795636495,10.3911504745483
+3679,0.019232541280072,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,16.4298515319824,16.4298515319824
+3680,0.0110226938874735,0.0498614958448753,4.98614958448754,1,80.6758725138067,0.766115970197603,4.98614958448754,13.9614097542233,7.34765291213989
+3681,0.0129763661718541,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,10.1476848125458,5.19557523727417
+3682,0.0182348549309725,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,6.77886366844177,5.19557523727417
+3683,0.0179983687040201,0.0473684210526316,4.73684210526316,2,73.9757596745474,0.883364027010436,4.21052631578947,3.29005347357856,0
+3684,0.0374216260956059,0.268698060941828,26.8698060941828,4,88.125079232603,0.685649599442703,15.5124653739612,6.2901160250005,0
+3685,0.0384263033406884,0.285318559556787,28.5318559556787,5,85.8606125427895,0.697464906767232,16.8975069252078,3.97288392353984,0
+3686,0.022789618073188,0.0415512465373961,4.15512465373961,3,63.8138832313923,0.620599054125066,2.77008310249307,20.6825645446777,5.19557523727417
+3687,0.0275603465962233,0.115789473684211,11.5789473684211,5,73.5221999277356,0.740186615186615,6.05263157894737,6.12939274311066,0
+3688,0.0316413991545699,0.166204986149584,16.6204986149584,5,79.3364923698968,0.64250575006389,7.20221606648199,4.23898727099101,0
+3689,0.0314957830157061,0.193905817174515,19.3905817174515,4,86.9931592144538,0.707512642136731,14.6814404432133,73.886190196446,31.1734504699707
+3690,0.0285287900186735,0.0969529085872576,9.69529085872576,2,83.5557847992878,0.656335942458219,8.03324099722992,104.37034236363,62.7783737182617
+3691,0.0371800078736238,0.221052631578947,22.1052631578947,8,80.5433648412308,0.655360058044622,12.3684210526316,16.3614021993819,0
+3692,0.0283710600043249,0.210526315789474,21.0526315789474,3,87.4455987488466,0.792039800995025,14.6814404432133,26.8501405527717,0
+3693,0.0401567813933574,0.349030470914127,34.9030470914127,4,90.2740153099098,0.839003995168633,26.5927977839335,7.0675510414063,0
+3694,0.027928044592584,0.229916897506925,22.9916897506925,2,93.2346336391803,0.876327509421035,22.7146814404432,1.99237334584615,0
+3695,0.0323706889435925,0.210526315789474,21.0526315789474,2,89.2087729118995,0.83943661971831,13.4210526315789,22.2321828305721,0
+3696,0.0245493004239257,0.0443213296398892,4.43213296398892,2,73.0060093777287,0.738405797101449,3.8781163434903,54.667382478714,36.7382659912109
+3697,0.0258987604763793,0.0249307479224377,2.49307479224377,4,37.0325701044433,0.487215909090909,1.10803324099723,3.94195630815294,0
+3698,0.0204482955011279,0.0470914127423823,4.70914127423823,2,76,0.790116279069767,4.43213296398892,14.6997928338892,0
+3699,0.0137954641251877,0.260526315789474,26.0526315789474,1,94.8134491638391,0.962013675076972,26.0526315789474,2.06624515610512,0
+3700,0.0321453080656571,0.195906432748538,19.5906432748538,5,80.6628408377204,0.681118881118881,8.47953216374269,12.5171117711423,0
+3701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3706,0.0234716168802379,0.13125,13.125,1,84.8892993493996,1,13.125,116.635675339472,109.107078552246
+3707,0.01412375311857,0.0315789473684211,3.15789473684211,1,74.9788187875667,0.93925831202046,3.15789473684211,109.189479192098,103.911506652832
+3708,-0.00407681645870549,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483
+3709,0.00281680453052008,0.0447368421052632,4.47368421052632,3,66.9877958743225,0.665013774104683,3.15789473684211,3.66746487337,0
+3710,0.00536508119551854,0.0025,0.25,1,0,NA,0.25,0,0
+3711,0.0285683394731773,0.194736842105263,19.4736842105263,6,80.5622968216797,0.722976370035193,7.89473684210526,0.425791089599197,0
+3712,0.0122383088650933,0.1,10,4,74.8467164527699,0.735449735449735,5,0,0
+3713,0.000905476978790064,0.0842105263157895,8.42105263157895,2,83.4476898169513,0.874005305039788,7.89473684210526,0.391975879669189,0
+3714,0.0175036489885315,0.075,7.5,3,76.4359477082507,0.823496966354109,5.25,11.6703282356262,0
+3715,0.0250825628899436,0.173684210526316,17.3684210526316,3,85.9428120251948,0.842148989199668,14.4736842105263,2.81149711030902,0
+3716,0.0197573742484996,0.0526315789473684,5.26315789473684,5,57.6904534345068,0.625448028673835,2.36842105263158,7.16027383804321,0
+3717,0.0012518884579262,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,22.6336080551147,14.6953058242798
+3718,0.00761837434933113,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,16.6258407592773,0
+3719,0.0116038499082175,0.0447368421052632,4.47368421052632,1,79.8422589600986,0.958126721763085,4.47368421052632,0.305622072780834,0
+3720,0.00276864731552594,0.0394736842105263,3.94736842105263,3,58.7317912006252,0.668742216687422,1.84210526315789,10.5146297454834,0
+3721,0.0363294416283392,0.318421052631579,31.8421052631579,4,89.954456523526,0.793260793260793,19.7368421052632,1.16488189933714,0
+3722,0.0225024739321816,0.2025,20.25,4,84.9051749072142,0.695228143504006,12,10.7856661184334,0
+3723,0.00343023897996892,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,33.3361930847168,25.977876663208
+3724,0.0104483553193476,0.0210526315789474,2.10526315789474,3,46.4278190834861,0.489247311827957,1.31578947368421,36.3690268993378,15.5867252349854
+3725,0.0110117671460964,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,83.1292037963867,83.1292037963867
+3726,0.0129964596937498,0,0,0,NA,NA,0,NA,NA
+3727,0.0176798098736311,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,41.8880653381348,41.8880653381348
+3728,0.00362468326861027,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+3729,0.0116476102545819,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,18.2720297574997,5.19557523727417
+3730,0.0274293423815288,0.135,13.5,3,88.7718699377941,0.813537199328734,13,0.096214356245818,0
+3731,0.0479739405263803,0.465789473684211,46.5789473684211,2,94.2576686730133,0.748120697187448,25.5263157894737,6.13445662913349,0
+3732,0.0302347115963992,0.189473684210526,18.9473684210526,3,86.8852087776612,0.815420799672768,10,25.4159282710817,11.6176595687866
+3733,0.00873848685169881,0.0368421052631579,3.68421052631579,3,60.6610118593761,0.688524590163934,2.10526315789474,5.65429551260812,0
+3734,0.0468527719517806,0.38,38,3,94.9891731524967,0.919065787952364,36.25,0.717809736728668,0
+3735,0.0343121974186751,0.197368421052632,19.7368421052632,4,86.8907947506728,0.82066567312469,14.7368421052632,7.24987091064453,0
+3736,0.0317614521615867,0.286842105263158,28.6842105263158,3,87.8882385888658,0.822054058104033,10.7894736842105,25.9473538573729,0
+3737,0.0296257927624634,0.263157894736842,26.3157894736842,3,88.5016789197741,0.834126984126984,13.9473684210526,19.5440676641464,0
+3738,0.0144561701316707,0.03,3,4,47.6895790835903,0.514857489387508,1.5,8.33138231436411,0
+3739,0.0361618030018259,0.263157894736842,26.3157894736842,6,89.9828230965652,0.758730158730159,23.1578947368421,17.6840020227432,0
+3740,0.0252569066216605,0.0447368421052632,4.47368421052632,6,46.6672233375066,0.413774104683196,1.31578947368421,19.4716747788822,5.19557523727417
+3741,0.0131999225973854,0.0263157894736842,2.63157894736842,5,33.3700988973066,0.446985446985447,1.05263157894737,27.7568053722382,0
+3742,0.028066067012232,0.168421052631579,16.8421052631579,5,78.3482158389507,0.645682640144666,6.05263157894737,22.5850581973791,0
+3743,0.0258671395322745,0.135,13.5,4,80.5496607311769,0.788675492572565,9.25,16.7057297936192,5.19557523727417
+3744,0.0190186413931339,0.0578947368421053,5.78947368421053,5,60.5789468333259,0.656588892540256,3.15789473684211,20.0844350077889,5.19557523727417
+3745,0.00538259554448718,0.0342105263157895,3.42105263157895,4,52.1899311009789,0.539812291855889,1.84210526315789,24.801352427556,5.19557523727417
+3746,0.0355082128772473,0.181578947368421,18.1578947368421,10,73.7043116406289,0.656666046610507,10.5263157894737,9.83457066356272,0
+3747,0.0159146995355695,0.085,8.5,5,69.3604633998646,0.648711943793911,4.5,10.7411429601557,0
+3748,0.0696326810274944,0.518421052631579,51.8421052631579,1,97.8973216375724,0.988621902837039,51.8421052631579,4.50775241609757,0
+3749,0.0236311838104819,0.292105263157895,29.2105263157895,1,95.4024631382472,0.894052044609665,29.2105263157895,1.28087584607236,0
+3750,0.036119837296543,0.310526315789474,31.0526315789474,4,92.2215081547149,0.810230434472426,27.3684210526316,5.6599671679028,0
+3751,0.0281987656946148,0.2225,22.25,5,80.9797378637474,0.724969160144796,7.25,3.96662449033073,0
+3752,0.0171896629668098,0.0263157894736842,2.63157894736842,2,58.4589470677482,0.683991683991684,1.57894736842105,6.05299143791199,0
+3753,0.0126833997588524,0,0,0,NA,NA,0,NA,NA
+3754,0.0114863605184119,0.0552631578947368,5.52631578947368,4,62.7038464088765,0.702298050139276,2.36842105263158,16.3997015271868,0
+3755,0.0240218588199014,0.1,10,5,74.18522610608,0.701492537313433,6,16.5083269119263,0
+3756,0.0137025006235394,0,0,0,NA,NA,0,NA,NA
+3757,-0.00314147656787865,0.0973684210526316,9.73684210526316,1,88.0784293599108,0.909190842613392,9.73684210526316,5.05823125065984,0
+3758,0.0312302006539539,0.2,20,3,87.2910784340057,0.850746268656716,14.7368421052632,4.61174211376592,0
+3759,0.025696206675384,0.175,17.5,6,80.1863106045536,0.753633899975364,8.5,19.2793490477971,0
+3760,0.0224182429016046,0.105263157894737,10.5263157894737,6,72.7154503850523,0.633011413520632,5.52631578947368,3.82897121906281,0
+3761,0.0251094491417079,0.068421052631579,6.8421052631579,5,72.3465250451214,0.554912498277525,5,9.60471927202665,0
+3762,0.0151402630802534,0.0263157894736842,2.63157894736842,2,59.8453882442866,0.683991683991684,1.84210526315789,5.93034052848816,0
+3763,0.0126913837334996,0.025,2.5,1,71.9760246298065,1,2.5,8.99205260276795,0
+3764,-0.00341196893208881,0,0,0,NA,NA,0,NA,NA
+3765,-0.0061022675511068,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,33.3412374768938,18.7329120635986
+3766,-0.0513983853875911,0,0,0,NA,NA,0,NA,NA
+3767,-0.0414014076039166,0.02,2,2,54.1958020619036,0.795918367346939,1.5,44.0261454582214,41.5646018981934
+3768,0.00702169683657925,0.176315789473684,17.6315789473684,3,85.8874914453875,0.81322192184812,12.1052631578947,25.7260455373508,10.3911504745483
+3769,0.0136636035900473,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,36.369026184082,36.369026184082
+3770,0.0255507872954061,0.0473684210526316,4.73684210526316,3,69.5016785164246,0.80560671168406,3.94736842105263,57.536376953125,42.8438110351562
+3771,0.0377882833356125,0.245,24.5,3,91.5656707947202,0.811860325105358,22,74.1936198254021,32.8597030639648
+3772,0.0285652210066761,0.171052631578947,17.1052631578947,2,89.2369362391946,0.893243433066442,15.5263157894737,8.9451781639686,0
+3773,0.0249968921997798,0.128947368421053,12.8947368421053,6,71.2678102278607,0.603654150481945,4.21052631578947,10.1370290444822,0
+3774,0.0358831331606397,0.210526315789474,21.0526315789474,7,85.4850006342568,0.598591549295775,14.2105263157895,25.7334976971149,0
+3775,0.0203761762610884,0.1575,15.75,4,83.3116183283391,0.773401672511465,10.75,7.11932764356099,0
+3776,0.0358902515764624,0.181578947368421,18.1578947368421,5,84.8146095474891,0.868725253115782,15,14.618193032085,0
+3777,0.0144548869340724,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,42.0355383555094,15.5867252349854
+3778,0.0154079944934653,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,36.4356622695923,10.3911504745483
+3779,0.0200153918029355,0.04,4,1,78.9473684210526,0.913194444444444,4,15.2266380190849,5.19557523727417
+3780,0.0149461905920026,0.0210526315789474,2.10526315789474,2,55.3182300068637,0.693548387096774,1.57894736842105,15.0091056227684,0
+3781,0.0216452135183174,0.15,15,3,88.2077026133477,0.891956782713085,14.2105263157895,21.5995335578918,0
+3782,0.0301451256094304,0.181578947368421,18.1578947368421,4,84.5154718001652,0.798038850947357,13.1578947368421,17.116176771081,0
+3783,0.0242668625671649,0.05,5,5,57.4844465829221,0.558573853989813,2.5,20.6383237361908,0
+3784,0.020267765011139,0.115789473684211,11.5789473684211,3,78.0491790591086,0.724903474903475,4.47368421052632,18.9922166629271,0
+3785,0.0246898164744236,0.126315789473684,12.6315789473684,4,79.3559876941572,0.678959741404643,7.36842105263158,2.45169254144033,0
+3786,0.0380880226822276,0.226315789473684,22.6315789473684,6,86.7006425471612,0.678982704192788,16.5789473684211,14.4296954398931,0
+3787,0.0269436045389375,0.1675,16.75,2,90.7064594670458,0.928133261466595,16.25,10.7227679722345,0
+3788,0.0332648041615214,0.215789473684211,21.5789473684211,5,83.6883135454925,0.762554964128674,13.1578947368421,7.5412360109934,0
+3789,0.0111325963045601,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,67.54248046875,67.54248046875
+3790,0.00171519106962047,0,0,0,NA,NA,0,NA,NA
+3791,0.0266717519003396,0.105,10.5,6,74.7621874501112,0.700999291840428,7.25,8.11594605445862,0
+3792,0.0521790523155543,0.481578947368421,48.1578947368421,3,95.1108038310473,0.800258312558196,42.8947368421053,17.2910783199665,0
+3793,0.0427357963725961,0.421052631578947,42.1052631578947,3,94.9211149500859,0.806122448979592,38.9473684210526,39.0787623226643,0
+3794,0.0337653399952902,0.221052631578947,22.1052631578947,4,87.3272385730064,0.836296027571195,16.8421052631579,13.1510927052725,0
+3795,0.0337385396983291,0.25,25,5,89.0000274491189,0.777777777777778,20.25,5.74756384372711,0
+3796,0.0199326290225527,0.0289473684210526,2.89473684210526,3,50.6759411541477,0.588075880758808,1.31578947368421,35.7277141917836,0
+3797,0.0209483941026424,0.068421052631579,6.8421052631579,5,65.7870832337152,0.633457351522668,3.94736842105263,0.682261668718778,0
+3798,0.0242484166589412,0.0868421052631579,8.68421052631579,2,79.8934043631236,0.83776283488099,6.57894736842105,1.89945430466623,0
+3799,0.0249519941284143,0.0525,5.25,4,62.1686459642026,0.604221635883905,1.75,10.9474940072922,0
+3800,0.0266449396530839,0.075,7.5,4,70.6403506256386,0.547454431175361,4.44444444444444,28.1223963101705,7.34765291213989
+3801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3806,-0.0034366701622371,0.0131578947368421,1.31578947368421,1,31.8747015751665,1,1.31578947368421,62.3469009399414,62.3469009399414
+3807,0.012415404838124,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,71.5303064982096,65.7194061279297
+3808,0.0109126765094691,0.0277008310249307,2.77008310249307,3,50.7231889218751,0.683541529695376,1.66204986149584,29.1727270126343,21.4219055175781
+3809,0.0118088720094186,0.0498614958448753,4.98614958448753,5,57.2295229187056,0.649173955296404,2.77008310249307,25.6177302466498,10.3911504745483
+3810,0.0102567057092241,0.0157894736842105,1.57894736842105,3,30.8730773315672,0.419404125286478,0.526315789473684,37.4999471505483,7.34765291213989
+3811,0.00933851568687641,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,9.17375144958496,0
+3812,-0.000372447599298725,0.0415512465373961,4.15512465373961,2,68.9900385068792,0.810299527062533,3.32409972299169,1.03911504745483,0
+3813,-0.00200140264135665,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,9.64892523629325,0
+3814,0.0249453776708929,0.178947368421053,17.8947368421053,4,86.7463663311437,0.877181641887524,16.0526315789474,44.7571851646199,14.6953058242798
+3815,0.0135096127456448,0.0498614958448753,4.98614958448754,2,76.8481697650219,0.805096641831336,4.70914127423823,12.3257360723284,0
+3816,0.0167747533711598,0.0692520775623269,6.92520775623269,4,71.7017550332716,0.70453869047619,5.26315789473684,15.3806623268127,5.19557523727417
+3817,0.00806047354529449,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.8880653381348,41.8880653381348
+3818,0.00453677193063892,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.91293446222941,0
+3819,0.0138561400002034,0.0775623268698061,7.75623268698061,4,69.0789078973961,0.662729396062729,4.43213296398892,10.0577850512096,5.19557523727417
+3820,0.00963227626498514,0.0526315789473684,5.26315789473684,4,60.4634124417839,0.672413793103448,2.77008310249307,0.546902656555176,0
+3821,0.0354858118370936,0.293628808864266,29.3628808864266,2,93.0623241569091,0.866584539574992,27.1468144044321,0.721242729222999,0
+3822,0.0368908376164511,0.302631578947368,30.2631578947368,4,87.6803511322839,0.834542815674891,22.1052631578947,37.1016071734221,0
+3823,0.0287440623439058,0.218836565096953,21.8836565096953,1,93.6796277124475,0.871985815602837,21.8836565096953,25.5102126930333,5.19557523727417
+3824,0.014718551929676,0.03601108033241,3.601108033241,2,63.8710229715496,0.769476372924649,2.21606648199446,53.0116691589355,21.4219055175781
+3825,0.013297666842906,0,0,0,NA,NA,0,NA,NA
+3826,0.020010082797384,0.0736842105263158,7.36842105263158,3,76.2641718574913,0.808080808080808,6.05263157894737,104.480484008789,88.3247756958008
+3827,0.0222596589225061,0.03601108033241,3.601108033241,7,31.0677154728732,0.308429118773946,0.831024930747922,89.2270953838642,51.4335708618164
+3828,0.0111886993396395,0,0,0,NA,NA,0,NA,NA
+3829,0.0136359401449201,0.0498614958448753,4.98614958448753,3,62.8550193196974,0.649173955296404,2.21606648199446,9.98476788732741,0
+3830,0.0176984609417152,0.0921052631578947,9.21052631578947,5,74.3375879882571,0.639180409795102,6.57894736842105,4.73178634643555,0
+3831,0.0404605638682722,0.368421052631579,36.8421052631579,5,86.6788464269705,0.646694214876033,12.1883656509695,7.49536696771034,0
+3832,0.0223359267060952,0.149584487534626,14.9584487534626,5,80.4263096636251,0.772407271198907,7.20221606648199,21.8410140231804,5.19557523727417
+3833,-0.0465548482443183,0.0443213296398892,4.43213296398892,2,68.7609337904383,0.607608695652174,2.77008310249307,4.22140488028526,0
+3834,-0.0130556171854933,0.165789473684211,16.5789473684211,3,83.7478105009623,0.662173788356754,9.47368421052632,1.47030054576813,0
+3835,0.0250120052845171,0.0443213296398892,4.43213296398892,5,55.531979054292,0.433212560386473,1.93905817174515,4.054263651371,0
+3836,0.0077823398134665,0.0332409972299169,3.32409972299169,5,39.1616597892031,0.391538850497219,0.831024930747922,23.0095738172531,0
+3837,0.0103487659584656,0.0637119113573407,6.37119113573407,4,62.9081605081503,0.554980276134122,2.77008310249307,7.21900716035262,0
+3838,0.0171955154640536,0.213157894736842,21.3157894736842,2,92.2648258866098,0.849962839093274,20.5263157894737,2.19326945293097,0
+3839,0.0292334348856442,0.121883656509695,12.1883656509695,8,71.075641840516,0.553713019012704,6.64819944598338,7.61372684348713,0
+3840,0.0213067700006678,0.0526315789473684,5.26315789473684,6,49.4712319545075,0.490421455938697,1.93905817174515,10.3080752021388,0
+3841,0.0213147730255287,0.0858725761772853,8.58725761772853,6,69.8652222108804,0.540545454545454,5.26315789473684,12.3431853325136,0
+3842,0.0340747386351148,0.207756232686981,20.7756232686981,4,88.2057740870462,0.78006463233736,17.1745152354571,14.5521499443054,0
+3843,0.0343252266658773,0.273684210526316,27.3684210526316,4,89.9433355819683,0.823296907695885,22.3684210526316,9.75455015897751,0
+3844,0.0486191767960006,0.346260387811634,34.6260387811634,4,92.0466864830104,0.770887777197043,28.5318559556787,5.16626996231079,0
+3845,0.043136660856153,0.265927977839335,26.5927977839335,3,93.243540639243,0.912878455462922,26.0387811634349,8.28991282979647,0
+3846,0.0586624294467828,0.479224376731302,47.9224376731302,4,92.6454208321747,0.789318348562663,30.1939058171745,12.805417477051,0
+3847,0.0142123762553398,0.131578947368421,13.1578947368421,1,90.5004389364175,0.864527629233512,13.1578947368421,19.0038798427582,0
+3848,0.0904280592098418,0.518005540166205,51.8005540166205,2,95.6006770938763,0.928044648196133,45.1523545706371,1.88632505590265,0
+3849,0.0264638594899703,0.271468144044321,27.1468144044321,4,90.0084626295254,0.719236087106809,21.0526315789474,5.72388252433465,0
+3850,0.0313426475203266,0.271468144044321,27.1468144044321,5,87.1274206891143,0.727035084687176,15.7894736842105,2.09335459008509,0
+3851,0.0356813832863784,0.178947368421053,17.8947368421053,6,79.1948701442846,0.682719241542771,7.89473684210526,4.81180422446307,0
+3852,0.0208454018162894,0.0775623268698061,7.75623268698061,2,82.3376448204197,0.783183183183183,7.20221606648199,7.5687917641231,0
+3853,0.0185433966847355,0.03601108033241,3.601108033241,5,42.7991920286801,0.48132183908046,1.38504155124654,21.6506451826829,5.19557523727417
+3854,0.0230860554830766,0.0969529085872576,9.69529085872576,9,55.5899223301871,0.484503913687328,2.49307479224377,8.23988466262817,0
+3855,0.0159278274820712,0.0421052631578947,4.21052631578947,3,64.0683340424584,0.695512820512821,2.36842105263158,4.81513804197311,0
+3856,0.00345574009944985,0,0,0,NA,NA,0,NA,NA
+3857,0.0102919806682178,0.116343490304709,11.6343490304709,3,79.1378819682451,0.729038809660471,6.37119113573407,14.7115124974932,0
+3858,0.0318647116929189,0.182825484764543,18.2825484764543,6,79.9882411745313,0.659484156226971,6.92520775623269,5.24295051892598,0
+3859,0.0219183619042796,0.178947368421053,17.8947368421053,4,82.3396946365527,0.652014652014652,7.63157894736842,10.762228958747,0
+3860,0.0211424929702907,0.07202216066482,7.20221606648199,2,81.1111300570207,0.816017473607572,6.64819944598338,14.486746439567,0
+3861,0.0320156743203211,0.0526315789473684,5.26315789473684,6,51.7253070055792,0.417624521072797,1.93905817174515,19.9619465627168,5.19557523727417
+3862,0.0240083402755152,0.0498614958448753,4.98614958448753,4,61.654245469812,0.688154626930137,2.49307479224377,8.22018183602227,5.19557523727417
+3863,0.0124082858863978,0.0789473684210526,7.89473684210526,4,70.3462568269606,0.711953352769679,3.68421052631579,8.9827041943868,0
+3864,0.00401646289543436,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,3.46371682484945,0
+3865,-0.00875219723742315,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,5.19557523727417,5.19557523727417
+3866,-0.0471411379684194,0,0,0,NA,NA,0,NA,NA
+3867,-0.0223707470885098,0.0657894736842105,6.57894736842105,2,81.6683768591005,0.812676056338028,6.31578947368421,27.8654830169678,0
+3868,0.0200608317183621,0.074792243767313,7.4792243767313,3,73.9171212486069,0.798913800306364,4.15512465373961,22.4430480709782,5.19557523727417
+3869,0.0125731119150967,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,16.4706853628159,11.6176595687866
+3870,0.029169519566202,0.135734072022161,13.5734072022161,5,74.2065360439416,0.69696275946276,4.98614958448754,18.7719828255323,5.19557523727417
+3871,0.0302065319870101,0.189473684210526,18.9473684210526,8,74.5913409141661,0.630841599345536,8.94736842105263,6.96224311987559,0
+3872,0.0408093631836322,0.373961218836565,37.3961218836565,4,93.0392368660862,0.727282538312109,29.0858725761773,6.68959691436202,0
+3873,0.0435826681795412,0.354570637119114,35.4570637119114,5,91.2341936953112,0.780563281696108,29.3628808864266,17.291267413646,0
+3874,0.0424120552686525,0.357340720221607,35.7340720221607,3,93.6664910893293,0.847707263389582,31.0249307479224,16.5754185573075,0
+3875,0.0172138495731659,0.0736842105263158,7.36842105263158,3,79.7407082719225,0.76010101010101,6.57894736842105,17.6755633865084,5.19557523727417
+3876,0.0265662158934375,0.0803324099722992,8.03324099722992,7,58.3960302066663,0.537298128684953,2.49307479224377,12.3689019762237,0
+3877,0.0215966385116583,0.166204986149584,16.6204986149584,4,81.8259359268711,0.619441604906721,7.4792243767313,7.98945713043213,0
+3878,0.0209192943144152,0.138504155124654,13.8504155124654,4,79.2485161991965,0.658596557594099,6.09418282548476,5.30381747245789,0
+3879,0.0234196700967962,0.115789473684211,11.5789473684211,5,70.9387268150024,0.694337194337194,4.73684210526316,8.28817429325797,0
+3880,0.0226763488091676,0.127423822714681,12.7423822714681,5,76.7930604714646,0.676760276760277,6.92520775623269,10.0135692306187,5.19557523727417
+3881,0.0281624124708542,0.235457063711911,23.5457063711911,6,83.3357106816276,0.679503791150782,13.2963988919668,13.2295326064615,0
+3882,0.0250306640767794,0.191135734072022,19.1135734072022,4,82.5827262263623,0.744565832672931,11.0803324099723,12.5693118261254,0
+3883,0.00663717358522837,0,0,0,NA,NA,0,NA,NA
+3884,0.0169565052690063,0.10803324099723,10.803324099723,2,81.9713614026812,0.810272336359293,6.92520775623269,40.6320627774948,5.19557523727417
+3885,0.0146264371731961,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.194324016571,7.34765291213989
+3886,0.0464329252776063,0.412742382271468,41.2742382271468,2,96.5736229939575,0.819113276660447,40.9972299168975,9.23696526264984,0
+3887,0.0446295980101958,0.415789473684211,41.5789473684211,4,91.6098427897178,0.746194470332401,25,8.48892427094375,0
+3888,0.0457215233997137,0.429362880886427,42.9362880886427,5,88.9881828571594,0.711003236245955,17.7285318559557,8.45949994056456,0
+3889,0.0289865539488953,0.238227146814404,23.8227146814404,3,88.4269064712149,0.811241830065359,13.2963988919668,13.1475922839586,0
+3890,0.0362292161935178,0.265927977839335,26.5927977839335,3,91.5640109192819,0.841597191750768,24.3767313019391,28.9493724554777,5.19557523727417
+3891,0.0374101516872638,0.313157894736842,31.3157894736842,7,87.3842077513346,0.710160351922804,18.9473684210526,7.73616160865591,0
+3892,0.0330661201533227,0.229916897506925,22.9916897506925,4,83.5079861087095,0.743821269515,8.86426592797784,12.9780388165669,0
+3893,0.0319483010333698,0.224376731301939,22.4376731301939,2,89.4192246887967,0.847792658730159,14.6814404432133,16.5211815304226,0
+3894,0.0258825492977108,0.116343490304709,11.6343490304709,6,74.0341680588485,0.744977703209855,8.31024930747922,22.6526510147821,0
+3895,0.022425820433694,0.0605263157894737,6.05263157894737,4,65.3503629760438,0.674758792405851,2.89473684210526,4.28989719307941,0
+3896,0.0283993431661243,0.193905817174515,19.3905817174515,2,88.1873603233755,0.828541893666359,14.1274238227147,3.1173451423645,0
+3897,0.0266605124300055,0.116343490304709,11.6343490304709,1,89.2679797262236,0.872488851604927,11.6343490304709,3.21630848021734,0
+3898,0.0194364420546721,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417
+3899,0.0269890555739613,0.0710526315789474,7.10526315789474,4,76.1219450574871,0.824757889189011,6.31578947368421,14.637185856148,5.19557523727417
+3900,0.0364386139829692,0.239766081871345,23.9766081871345,3,86.2227710753823,0.773209549071618,14.327485380117,15.8420936130896,0
+3901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+3906,0.00434228104147319,0,0,0,NA,NA,0,NA,NA
+3907,0.0197384293664213,0.124653739612188,12.4653739612188,4,82.3204381775447,0.789556962025316,10.5263157894737,29.1561904907227,0
+3908,0.00800250563258973,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,47.3474354743958,41.5646018981934
+3909,0.0151549896376173,0.03601108033241,3.601108033241,2,68.8738396875161,0.711845466155811,3.04709141274238,8.2788600554833,5.19557523727417
+3910,0.0135311599283944,0.0263157894736842,2.63157894736842,6,26.6477266281867,0.288981288981289,0.789473684210526,77.16213722229,44.6940307617188
+3911,0.00601829261378091,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,46.2642501831055,31.1734504699707
+3912,0.00263332397497181,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967
+3913,0.00902346926130001,0.0304709141274238,3.04709141274238,5,40.3517430439582,0.381142857142857,1.38504155124654,32.0322279063138,0
+3914,0.0188529244806169,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,116.078202819824,77.2377777099609
+3915,0.0111794119077274,0,0,0,NA,NA,0,NA,NA
+3916,0.0111770644543581,0,0,0,NA,NA,0,NA,NA
+3917,0.00342056163324698,0,0,0,NA,NA,0,NA,NA
+3918,-0.00535666107438087,0.0236842105263158,2.36842105263158,2,61.8884961483246,0.743935309973046,2.10526315789474,4.04100290934245,0
+3919,-0.00924615130630864,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+3920,-0.00655420618990562,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,13.3600504738944,0
+3921,0.0051670443283777,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,37.0469481150309,15.5867252349854
+3922,0.0117767580943971,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,7.27380523681641,0
+3923,0.0110967823014755,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,54.7634401321411,40.5787391662598
+3924,0.00612105978423421,0,0,0,NA,NA,0,NA,NA
+3925,0.0039481433447043,0,0,0,NA,NA,0,NA,NA
+3926,0.0131123455793242,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,20.1157512664795,15.5867252349854
+3927,0.0109414445620722,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,81.0460484822591,67.7420120239258
+3928,0.0110996591566212,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+3929,0.00794524426982058,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,8.69124739510672,0
+3930,0.00840896784520139,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,28.7161076863607,21.4219055175781
+3931,0.0373171764257276,0.315789473684211,31.5789473684211,3,92.9383676431626,0.723300970873786,26.5927977839335,7.10973447665834,0
+3932,0.0283137413854619,0.135734072022161,13.5734072022161,3,86.6176706142954,0.80715811965812,12.4653739612188,22.2060548042764,0
+3933,-0.0754752160637534,0,0,0,NA,NA,0,NA,NA
+3934,-0.0250500554629405,0.0947368421052632,9.47368421052632,2,82.7339819977757,0.797480620155039,7.36842105263158,0.288643068737454,0
+3935,0.0332204938489632,0.191135734072022,19.1135734072022,4,86.0156353145002,0.734348465979848,13.2963988919668,12.6209377344104,0
+3936,0.0194010297638463,0.0941828254847645,9.41828254847645,5,71.9016298336531,0.625436871996505,5.81717451523546,19.7306304679197,0
+3937,0.0217831877328679,0.174515235457064,17.4515235457064,4,83.4350617633114,0.702654057352044,11.9113573407202,24.9732810958983,0
+3938,0.028627100404705,0.252631578947368,25.2631578947368,2,93.1882372732946,0.844415329184409,23.9473684210526,4.18973674376806,0
+3939,0.0195867297521177,0.0581717451523546,5.81717451523546,3,69.0072601690351,0.767738970588235,3.8781163434903,14.265708673568,5.19557523727417
+3940,0.0278110406358497,0.18005540166205,18.005540166205,4,82.208626622124,0.784142549629275,11.9113573407202,11.0835950044485,0
+3941,0.0471393688257146,0.379501385041551,37.9501385041551,5,88.9764065703759,0.780821428571428,24.0997229916898,21.7116078042636,0
+3942,0.0521837191155098,0.448753462603878,44.8753462603878,1,97.2623278749726,0.713888233111868,44.8753462603878,16.8456757215806,0
+3943,0.037523249626898,0.326315789473684,32.6315789473684,4,90.7874467459882,0.769097222222222,17.8947368421053,17.5711055647942,0
+3944,0.0530871156757798,0.437673130193906,43.7673130193906,4,92.5833976828157,0.834431798878886,35.180055401662,4.01640003542357,0
+3945,0.0466989737759129,0.282548476454294,28.2548476454294,2,94.3569138188708,0.939067873494103,27.9778393351801,9.09738179749134,0
+3946,0.0490897087806931,0.407202216066482,40.7202216066482,2,94.5361061851664,0.805597053816489,35.7340720221607,21.0025616340897,0
+3947,0.0171675164897016,0.105263157894737,10.5263157894737,1,88.7409251042043,0.933274802458297,10.5263157894737,31.8847815513611,15.5867252349854
+3948,0.055382044235721,0.443213296398892,44.3213296398892,2,96.3368688349395,0.914475242833452,43.4903047091413,22.9518711030483,0
+3949,0.0132274109203024,0.03601108033241,3.601108033241,4,51.0431039550417,0.596583652618135,1.93905817174515,47.6100782614488,7.34765291213989
+3950,0.0262831478217459,0.105263157894737,10.5263157894737,5,75.7392535130297,0.716153127917834,5.26315789473684,6.74065220983405,0
+3951,0.0285643216108024,0.134210526315789,13.4210526315789,2,86.2636673798519,0.867239632463404,11.0526315789474,10.8678159339755,0
+3952,0.0192957809190085,0.0304709141274238,3.04709141274238,4,46.8721754683778,0.518666666666667,1.66204986149584,10.0430953285911,0
+3953,0.0325002160767991,0.191135734072022,19.1135734072022,8,76.2229633487012,0.621957432355938,8.31024930747922,17.3379842924035,0
+3954,0.0340190534334347,0.246537396121884,24.6537396121884,5,85.0934854582008,0.574292452830189,10.5263157894737,3.79866998115282,0
+3955,0.0205159265126081,0.0605263157894737,6.05263157894737,3,71.1902848174467,0.763460939931528,3.42105263157895,24.2080733257791,10.3911504745483
+3956,0.000203233827182016,0,0,0,NA,NA,0,NA,NA
+3957,0.00360460746270692,0.0526315789473684,5.26315789473684,5,53.2058428545886,0.526819923371648,1.93905817174515,4.6663088547556,0
+3958,0.0302890915711657,0.182825484764543,18.2825484764543,4,84.8349527538666,0.765895357406043,11.9113573407202,2.45050016316501,0
+3959,0.0292782946693095,0.110526315789474,11.0526315789474,8,68.485567299758,0.50912576048004,4.73684210526316,4.88368097941081,0
+3960,0.0193905754311854,0.0498614958448753,4.98614958448753,4,61.0070729474072,0.571212612028939,2.49307479224377,6.89652638965183,0
+3961,0.0228658517608436,0.0831024930747922,8.31024930747922,3,75.0415940033875,0.732905851162217,4.15512465373961,8.72365325291952,0
+3962,0.0217796177277398,0.0664819944598338,6.64819944598338,5,61.8752429413504,0.63353115727003,3.32409972299169,6.94139569997787,0
+3963,0.0142454248986293,0.068421052631579,6.8421052631579,4,67.9361975387352,0.633457351522668,3.94736842105263,5.13857911183284,0
+3964,0.0114888225518341,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+3965,0.0295077704244567,0.204986149584488,20.4986149584488,2,88.0882935443772,0.86454033771107,11.6343490304709,12.7464581180263,0
+3966,0.00601470600243971,0,0,0,NA,NA,0,NA,NA
+3967,0.00615900829819494,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,7.64479287465413,5.19557523727417
+3968,0.0289011414047044,0.199445983379501,19.9445983379501,4,85.8938569664301,0.773778710187178,13.0193905817175,12.0314483576351,0
+3969,0.0206474895565916,0.074792243767313,7.4792243767313,4,73.9574384154472,0.648099150536137,4.98614958448753,20.4193059073554,0
+3970,0.00841026678194429,0.157894736842105,15.7894736842105,3,82.3399137215092,0.818239795918367,7.75623268698061,28.5810247555114,10.3911504745483
+3971,0.0184912139827199,0.147368421052632,14.7368421052632,4,83.2589926780507,0.770268550337279,10.7894736842105,32.7138643179621,0
+3972,0.0316146792990424,0.227146814404432,22.7146814404432,3,85.7484140623393,0.732295142751205,9.69529085872576,31.1576890073171,0
+3973,0.0177022848673514,0.0831024930747922,8.31024930747922,3,79.8077240812108,0.844195079844627,7.4792243767313,51.1409926096598,27.9790287017822
+3974,0.0180470565854929,0.0664819944598338,6.64819944598338,3,70.6721006767911,0.63353115727003,3.8781163434903,70.8769352436066,30.2951488494873
+3975,0.0169815387127528,0.0210526315789474,2.10526315789474,3,49.0305203394943,0.591397849462366,1.57894736842105,75.5910043716431,68.3371200561523
+3976,0.0382058646808375,0.263157894736842,26.3157894736842,4,90.0910728531977,0.840336134453782,22.9916897506925,24.1742321666918,0
+3977,0.0144952192723266,0.03601108033241,3.601108033241,3,58.3285012096996,0.654214559386973,1.93905817174515,15.159132370582,5.19557523727417
+3978,0.0324634845891627,0.166204986149584,16.6204986149584,7,76.1210959628158,0.734762330692563,6.64819944598338,8.25779004096985,0
+3979,0.0280713712296251,0.171052631578947,17.1052631578947,3,86.3031490919246,0.850540806293019,13.1578947368421,11.7640604972839,0
+3980,0.0401145221105676,0.282548476454294,28.2548476454294,4,88.1955912951604,0.801970588855834,13.5734072022161,11.3866316804699,0
+3981,0.0265941903989719,0.174515235457064,17.4515235457064,4,81.5671913917231,0.812782184258694,8.58725761772853,33.241849172683,15.5867252349854
+3982,0.0122216763625865,0.0775623268698061,7.75623268698061,3,79.6476764640163,0.879546212879546,7.20221606648199,4.63100498063224,0
+3983,0.00913068017303215,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,124.726299285889,119.498229980469
+3984,0.04394027074203,0.385041551246537,38.5041551246537,2,93.3994912387109,0.859154430020572,27.1468144044321,71.4476506349852,46.7601776123047
+3985,0.040519588049843,0.307479224376731,30.7479224376731,3,92.1431065813057,0.7473,26.8698060941828,8.17568881232459,0
+3986,0.0319793895790318,0.191135734072022,19.1135734072022,6,80.4813937709204,0.673044265821352,11.0803324099723,7.45214183088662,0
+3987,0.0393902383919148,0.305263157894737,30.5263157894737,6,85.5596972595839,0.725829725829726,16.0526315789474,8.26383546303058,0
+3988,0.0236364042790641,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,15.9454054832458,5.19557523727417
+3989,0.0215001239183472,0.038781163434903,3.8781163434903,5,45.0569722783578,0.531844380403458,1.66204986149584,23.2723707812173,5.19557523727417
+3990,0.0386928651004435,0.307479224376731,30.7479224376731,3,93.2779503726666,0.82672,28.2548476454294,13.8433543411461,0
+3991,0.0329922926352179,0.228947368421053,22.8947368421053,8,80.6246144566953,0.665308818672245,12.6315789473684,10.2549779661771,0
+3992,0.0473899085657919,0.49584487534626,49.584487534626,3,95.2343204283818,0.80824009827031,44.5983379501385,5.61411585887717,0
+3993,0.0268058509918094,0.138504155124654,13.8504155124654,6,76.3232535786869,0.699564970682807,9.14127423822715,10.6751547527313,0
+3994,0.0437027676915859,0.39612188365651,39.612188365651,3,92.8290713315634,0.74086070453113,23.2686980609418,2.40456600789424,0
+3995,0.0270312161708333,0.234210526315789,23.4210526315789,4,85.2550484477212,0.761827573537358,12.6315789473684,4.63940123225866,0
+3996,0.0208232818968956,0.0997229916897507,9.97229916897507,2,81.1589536576896,0.759333333333333,6.92520775623269,2.40394275718265,0
+3997,0.018307034318237,0.0886426592797784,8.86426592797784,5,67.4228860661889,0.683481412204817,3.8781163434903,6.33213326334953,0
+3998,0.0268376830043814,0.119113573407202,11.9113573407202,6,68.7136971923307,0.637360237596087,4.70914127423823,3.41534183191699,0
+3999,0.0269808673995277,0.110526315789474,11.0526315789474,4,78.1867079056182,0.778314859571631,8.42105263157895,11.3897190888723,0
+4000,0.0310550825287842,0.175438596491228,17.5438596491228,5,78.3687208732527,0.766775777414075,8.7719298245614,28.8375824928284,0
+4001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4006,0.00886114053884357,0,0,0,NA,NA,0,NA,NA
+4007,0.00741516138081934,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,1.29889380931854,0
+4008,0.0101901857594291,0.0193905817174515,1.93905817174515,2,53.6944186091776,0.872528248587571,1.66204986149584,1.48445006779262,0
+4009,0.00822024420979025,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,70.140266418457,67.54248046875
+4010,0.011680476464762,0,0,0,NA,NA,0,NA,NA
+4011,0.0197266754281105,0.0554016620498615,5.54016620498615,4,59.2457807369119,0.556049569577145,1.93905817174515,1.14671893119812,0
+4012,0.015099119599921,0.0470914127423823,4.70914127423823,3,63.6964073642372,0.622209302325581,2.21606648199446,3.36184280058917,0
+4013,0.0125520651518777,0.0304709141274238,3.04709141274238,3,54.3022270004708,0.518666666666667,1.38504155124654,1.70299200578169,0
+4014,0.0157255321118244,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,90.4910202026367,88.4774551391602
+4015,0.0162595831922502,0,0,0,NA,NA,0,NA,NA
+4016,0.0153666568227369,0,0,0,NA,NA,0,NA,NA
+4017,-0.0098389154444202,0,0,0,NA,NA,0,NA,NA
+4018,-0.0107431778107543,0,0,0,NA,NA,0,NA,NA
+4019,0.00853014335748878,0.113573407202216,11.3573407202216,3,77.7890393493056,0.803804347826087,5.81717451523546,0,0
+4020,-0.00635070226691768,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+4021,-0.00583757146138606,0,0,0,NA,NA,0,NA,NA
+4022,0.0372675785442545,0.434210526315789,43.4210526315789,3,93.4841191182213,0.802325581395349,27.6315789473684,3.31774458451705,0
+4023,-0.00883811820142675,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.976864906434248,8.03324099722992,0,0
+4024,-0.0527523638747653,0,0,0,NA,NA,0,NA,NA
+4025,-0.0372381882215276,0,0,0,NA,NA,0,NA,NA
+4026,-0.00979775953015441,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,14.6953058242798,14.6953058242798
+4027,0.00318846819877423,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,16.3542416095734,7.34765291213989
+4028,0.0212919373221475,0.0637119113573407,6.37119113573407,2,81.2280998045818,0.673652202498356,6.09418282548476,1.80715660426928,0
+4029,0.0217951553581631,0.07202216066482,7.20221606648199,5,64.289025335187,0.658318165271205,3.601108033241,9.8872567323538,0
+4030,0.00428672925405695,0.0236842105263158,2.36842105263158,3,44.9258483839375,0.573225516621743,1.05263157894737,18.9794676568773,7.34765291213989
+4031,0.0468196477770832,0.42382271468144,42.382271468144,5,89.461911074192,0.678825622775801,16.0664819944598,4.63454506755654,0
+4032,0.0282698339462432,0.14404432132964,14.404432132964,2,87.4993729403145,0.737464092214828,11.9113573407202,18.0966472167235,0
+4033,-0.0707499766154756,0,0,0,NA,NA,0,NA,NA
+4034,-0.00989488853946042,0.0578947368421053,5.78947368421053,2,80.2174158200035,0.750246467302005,5.52631578947368,0.23616251078519,0
+4035,0.0242239102656557,0.127423822714681,12.7423822714681,3,83.5496692346218,0.853072853072853,10.5263157894737,8.74037054310674,0
+4036,-0.00936648236755676,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,13.2192130770002,5.19557523727417
+4037,0.00824304406613065,0.0858725761772853,8.58725761772853,4,72.2077151563721,0.606181818181818,4.15512465373961,12.504954015055,0
+4038,0.0146035332008691,0.0605263157894737,6.05263157894737,4,65.2341298059732,0.645191409897292,2.89473684210526,14.6643401850825,5.19557523727417
+4039,0.0218902298741207,0.074792243767313,7.4792243767313,5,68.7379653157579,0.597827600612728,4.43213296398892,10.2093437336109,5.19557523727417
+4040,0.0178805581192157,0.0664819944598338,6.64819944598338,5,68.0829528455465,0.689910979228487,4.98614958448753,14.6063842177391,5.19557523727417
+4041,0.0204052588745366,0.074792243767313,7.4792243767313,5,67.2043929493747,0.572691825651024,3.601108033241,7.99284043135466,0
+4042,0.0255709256858014,0.163434903047091,16.3434903047091,6,75.8088629951199,0.707018569017011,9.14127423822715,19.9740234714443,0
+4043,0.0176054940539633,0.105263157894737,10.5263157894737,6,72.5959880344424,0.699736611062335,6.05263157894737,17.028445994854,0
+4044,0.0363014063162928,0.227146814404432,22.7146814404432,6,78.7701458154987,0.741218637992832,9.97229916897507,8.85681012200146,0
+4045,0.0245524855720626,0.110803324099723,11.0803324099723,8,64.5377005478988,0.513228251267029,3.601108033241,11.387686920166,0
+4046,0.0123019460510694,0.0443213296398892,4.43213296398892,3,61.8687874600599,0.651207729468599,2.49307479224377,15.9567350149155,5.19557523727417
+4047,0.00221352730127843,0,0,0,NA,NA,0,NA,NA
+4048,0.00863500926871765,0.0581717451523546,5.81717451523546,2,72.8965530088247,0.800919117647059,3.32409972299169,33.7390556335449,15.5867252349854
+4049,0.017470191250919,0.07202216066482,7.20221606648199,5,66.0780953396471,0.632034947215144,4.15512465373961,33.3798920924847,10.3911504745483
+4050,0.0131100882877716,0.0581717451523546,5.81717451523546,5,57.0851872681333,0.601838235294118,2.21606648199446,16.1541908127921,5.19557523727417
+4051,0.0187831429819265,0.0526315789473684,5.26315789473684,3,70.0844007384058,0.727598566308244,3.94736842105263,6.22362821102142,0
+4052,0.0117483738175758,0,0,0,NA,NA,0,NA,NA
+4053,0.0166190451884096,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,15.1410155296326,14.6953058242798
+4054,0.0140917255765724,0,0,0,NA,NA,0,NA,NA
+4055,0.0141683875095432,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,26.5047743320465,11.6176595687866
+4056,0.0115345069877607,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,10.906587600708,0
+4057,0.0136502297889951,0.0554016620498615,5.54016620498615,3,65.1654190906652,0.726799735124397,2.49307479224377,7.30902166366577,0
+4058,0.0210657741657911,0.14404432132964,14.404432132964,2,88.363230977277,0.868732046107414,13.2963988919668,0.341130834359389,0
+4059,0.0194124957756254,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,3.70283656650119,0
+4060,0.0221139923829025,0.0858725761772853,8.58725761772853,6,63.435705155782,0.474909090909091,2.49307479224377,5.27424855386057,0
+4061,0.0207400985314846,0.0581717451523546,5.81717451523546,6,58.3563463851051,0.4359375,3.04709141274238,12.7081437792097,0
+4062,0.0222641812873504,0.0692520775623269,6.92520775623269,5,62.4346631789832,0.543377976190476,2.21606648199446,13.3269137573242,5.19557523727417
+4063,0.0219150041619478,0.107894736842105,10.7894736842105,5,73.1184691344439,0.707579838399384,5,8.32746495270148,0
+4064,0.0174003308699798,0.03601108033241,3.601108033241,2,65.5172413793104,0.827107279693487,2.49307479224377,6.75141910406259,0
+4065,0.0170060832149986,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0
+4066,0.0137212020065407,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,38.4273315429688,33.2679138183594
+4067,0.0164069892232012,0.0236842105263158,2.36842105263158,3,50.0346252479596,0.573225516621743,1.57894736842105,20.3509407043457,11.6176595687866
+4068,0.0213795110485836,0.0609418282548476,6.09418282548476,7,54.1581611551085,0.467551622418879,2.21606648199446,17.1010671745647,0
+4069,0.0301056159473182,0.14404432132964,14.404432132964,5,76.7400369078818,0.671830115268536,6.37119113573407,26.7660935658675,5.19557523727417
+4070,0.0182588710376675,0.227146814404432,22.7146814404432,2,89.1977785220546,0.830453590409096,12.7423822714681,48.5536224551317,22.0429573059082
+4071,0.0267685256333176,0.173684210526316,17.3684210526316,4,86.614554464383,0.842148989199668,15,40.4050063147689,0
+4072,0.0177719182518009,0.132963988919668,13.2963988919668,3,81.3261043159496,0.831216395231045,9.14127423822715,16.3383308748404,0
+4073,0.0374024984604322,0.373961218836565,37.3961218836565,2,94.2470875251416,0.798708540182747,31.3019390581717,104.452493794759,60.5902976989746
+4074,0.0326994687452309,0.138504155124654,13.8504155124654,3,83.5876320110167,0.877094760733876,11.6343490304709,123.57128112793,83.1292037963867
+4075,0.0212330633184377,0.0342105263157895,3.42105263157895,2,70.4588795565893,0.827429609445958,3.15789473684211,80.1717722966121,64.2657165527344
+4076,0.0539666565193248,0.45983379501385,45.983379501385,3,96.2929498815901,0.903200938495056,45.1523545706371,24.3740401583982,0
+4077,0.0100696353797414,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,30.246426991054,25.977876663208
+4078,0.0321281786202331,0.166204986149584,16.6204986149584,3,86.7164177446866,0.803954766164069,13.5734072022161,15.4370726585388,0
+4079,0.0297259133333251,0.210526315789474,21.0526315789474,4,83.5527891078541,0.74131455399061,8.42105263157895,18.8149081230164,0
+4080,0.0512103173402725,0.407202216066482,40.7202216066482,5,89.6984129626833,0.805597053816489,21.3296398891967,9.30546226306837,0
+4081,0.0358213114876615,0.166204986149584,16.6204986149584,4,82.8450351609494,0.792422693585484,10.5263157894737,36.778799756368,0
+4082,0.0271530757807371,0.149584487534626,14.9584487534626,2,90.2018895771101,0.797695352176806,14.6814404432133,13.9360490198489,0
+4083,0.00815730027839699,0,0,0,NA,NA,0,NA,NA
+4084,0.0205493455673239,0.0941828254847645,9.41828254847645,4,74.7607360381312,0.783147662734819,6.09418282548476,93.5704828150132,46.7601776123047
+4085,0.0482487040844364,0.493074792243767,49.3074792243767,3,93.6961018901025,0.808128622917601,35.4570637119114,11.2471408522531,0
+4086,0.0418710924423067,0.321329639889197,32.1329639889197,5,89.8718867304472,0.761438289601555,23.5457063711911,15.8663886621081,0
+4087,0.0498254564479411,0.394736842105263,39.4736842105263,4,91.8609840741695,0.783715415019763,25,11.9987967141469,0
+4088,0.0209727441100581,0.0415512465373961,4.15512465373961,3,67.472708805711,0.620599054125066,3.32409972299169,54.9785530090332,11.6176595687866
+4089,0.0244612308454728,0.0415512465373961,4.15512465373961,4,53.9950768485821,0.573173935890699,1.93905817174515,60.6642748514811,51.955753326416
+4090,0.0296868174632726,0.177285318559557,17.7285318559557,6,78.9449923408193,0.717833092833093,8.58725761772853,25.4397658929229,0
+4091,0.0420600280796766,0.363157894736842,36.3157894736842,5,90.6113471215741,0.694674012855831,24.4736842105263,3.15664202234019,0
+4092,0.0596693070025578,0.601108033240997,60.1108033240997,2,98.0894038082256,0.882099147414741,59.8337950138504,5.34577169506231,0
+4093,0.0542573184102265,0.418282548476454,41.8282548476454,1,96.9655662685266,0.857263194086299,41.8282548476454,1.98215320094532,0
+4094,0.0705594542063273,0.614958448753463,61.4958448753463,1,98.4711305282964,0.786709762624683,61.4958448753463,2.65224519506231,0
+4095,0.0707217287940071,0.752631578947368,75.2631578947368,2,98.7869157553622,0.752036700150281,74.4736842105263,2.62634093277938,0
+4096,0.0547533915670678,0.598337950138504,59.8337950138504,2,98.1042488981099,0.845170698232973,59.5567867036011,2.76077999009026,0
+4097,0.0420502451260954,0.28808864265928,28.808864265928,6,86.6397451513043,0.69953598701596,12.7423822714681,3.11303423459713,0
+4098,0.0468570868362698,0.385041551246537,38.5041551246537,5,89.7464642549933,0.763123359580053,19.3905817174515,5.73919871213625,0
+4099,0.0291402814068102,0.0763157894736842,7.63157894736842,7,57.7833305527928,0.53931017760805,2.10526315789474,6.10479455158628,0
+4100,0.0236898623665162,0.0906432748538012,9.06432748538012,4,71.0714940110322,0.692090032154341,5.55555555555556,12.8341870615559,0
+4101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4106,0.0356353054587089,0.2875,28.75,1,92.574457886421,0.946018893387314,28.75,1.90072519882866,0
+4107,-0.00285610730583549,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+4108,0.00217374366198591,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.899861650965149,7.10526315789474,0,0
+4109,0.0127734183763287,0,0,0,NA,NA,0,NA,NA
+4110,0.0105478486878019,0.035,3.5,6,41.6154719201132,0.430051813471503,1.25,13.9784387860979,0
+4111,-0.00628343420678807,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,13.9665635426839,11.6176595687866
+4112,0.00808794299582587,0.05,5,2,71.1008875303975,0.673321234119782,2.89473684210526,4.10176992416382,0
+4113,0.0012635355192132,0.0473684210526316,4.73684210526316,3,68.0816878993353,0.650092081031307,3.42105263157895,11.2215921348996,5.19557523727417
+4114,0.0119233388291832,0.02,2,1,68.0470115164975,1,2,2.8667973279953,0
+4115,0.00951231325022227,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,36.369026184082,36.369026184082
+4116,0.00767390193233089,0.0289473684210526,2.89473684210526,2,66.1021861153273,0.862691960252936,2.63157894736842,2.3616251078519,0
+4117,0.012404977235402,0.0263157894736842,2.63157894736842,4,40.6397923913444,0.446985446985447,0.789473684210526,19.0556130409241,14.6953058242798
+4118,0.0138814144553601,0.125,12.5,4,83.3890601139854,0.771428571428571,10,14.4486483860016,0
+4119,0.0479972666513181,0.431578947368421,43.1578947368421,3,95.3234869383425,0.784461613931813,38.1578947368421,1.7053027007638,0
+4120,-0.0279606568571915,0,0,0,NA,NA,0,NA,NA
+4121,-0.00121404979981889,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,0,0
+4122,0.0575562356133014,0.7425,74.25,1,99.1551699664667,0.659586293137885,74.25,0.0174935193174214,0
+4123,0.00170410018262804,0.0605263157894737,6.05263157894737,3,69.4438515715367,0.763460939931528,2.89473684210526,0,0
+4124,-0.0561313417014102,0,0,0,NA,NA,0,NA,NA
+4125,-0.00813823748352374,0.0447368421052632,4.47368421052632,2,72.8666935568241,0.706887052341598,3.68421052631579,0,0
+4126,0.0315075173057267,0.175,17.5,4,89.0477711054342,0.78319783197832,16,0.148445006779262,0
+4127,0.025168390969032,0.168421052631579,16.8421052631579,2,91.4868625608452,0.76378842676311,16.5789473684211,0.487085171043873,0
+4128,0.00115356097756224,0.0236842105263158,2.36842105263158,3,47.9123996989228,0.487870619946092,1.05263157894737,20.4039900567796,7.34765291213989
+4129,-0.000858634275745747,0.0236842105263158,2.36842105263158,3,55.1455442633031,0.487870619946092,1.84210526315789,29.7315094206068,14.6953058242798
+4130,-0.00141871553343663,0.0275,2.75,2,65.3006717904942,0.588688946015424,2.25,11.5884198275479,0
+4131,0.0403272567465472,0.344736842105263,34.4736842105263,4,88.5475636782894,0.680731293374334,15.2631578947368,6.64032449431092,0
+4132,0.027418791553799,0.213157894736842,21.3157894736842,5,87.8855703742556,0.726402824228911,17.3684210526316,9.23997522872171,0
+4133,-0.0569691324790352,0,0,0,NA,NA,0,NA,NA
+4134,-0.00850100111452775,0.235,23.5,2,93.7403505515181,0.891067538126362,23.25,2.14612781240585,0
+4135,0.0384813112598893,0.339473684210526,33.9473684210526,1,96.1266858750166,0.748749682122574,33.9473684210526,3.67198358949765,0
+4136,0.047597320781277,0.378947368421053,37.8947368421053,2,93.8383605580175,0.865819209039548,32.1052631578947,19.8112270600266,0
+4137,0.0387058474311695,0.328947368421053,32.8947368421053,5,85.9491124193357,0.743975123088883,13.6842105263158,31.0022104988098,5.19557523727417
+4138,0.00460504733102425,0.07,7,3,72.2019259027628,0.6415770609319,3.5,64.4277102606637,36.369026184082
+4139,0.0514641012694866,0.457894736842105,45.7894736842105,3,95.3490077632324,0.810362036112875,38.9473684210526,21.2674990440237,0
+4140,0.0138903683342697,0.0342105263157895,3.42105263157895,3,55.4527305313092,0.539812291855889,1.31578947368421,17.3620452147264,5.19557523727417
+4141,0.0374487787665873,0.263157894736842,26.3157894736842,4,85.9231445111974,0.796428571428571,16.3157894736842,26.3413301420212,0
+4142,0.0659242544019626,0.557894736842105,55.7894736842105,3,93.7001921133657,0.781846748851825,32.1052631578947,10.6622197560544,0
+4143,0.0319904825667618,0.17,17,5,81.8268515860197,0.777260301711046,8.75,14.4066097736359,0
+4144,0.029245059713637,0.176315789473684,17.6315789473684,6,76.4240882851578,0.740586002566833,6.31578947368421,15.5029898330347,0
+4145,0.0246332737313711,0.1,10,6,67.6801292346228,0.682539682539683,4.21052631578947,9.33494774918807,0
+4146,0.0113384784440744,0.0210526315789474,2.10526315789474,2,52.703639668815,0.591397849462366,1.05263157894737,6.80536490678787,5.19557523727417
+4147,-0.00699356733503009,0,0,0,NA,NA,0,NA,NA
+4148,0.0287705967838089,0.242105263157895,24.2105263157895,6,82.0959274643494,0.734502032520325,11.5789473684211,23.0260421141334,0
+4149,0.0586445273762557,0.576315789473684,57.6315789473684,2,97.4034568770321,0.774388016075996,55.5263157894737,7.42467473304435,0
+4150,0.0655759716672994,0.647368421052632,64.7368421052632,2,95.8266049081707,0.753406878650227,35.5263157894737,4.55814447635558,0
+4151,0.0350771753262598,0.28,28,3,93.1118987503202,0.869361936193619,26.5,4.44729995727539,0
+4152,0.0111238217701516,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,16.7722086906433,11.6176595687866
+4153,0.0145439046465885,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,23.4988468488057,10.3911504745483
+4154,0.0162072658404022,0.0315789473684211,3.15789473684211,2,64.5097418171392,0.696291560102302,2.36842105263158,25.1402668555578,7.34765291213989
+4155,0.0230741265141842,0.12,12,6,75.3923113064842,0.681263858093126,6.75,12.8915173808734,0
+4156,0.0165980358001099,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,12.7515151977539,5.19557523727417
+4157,0.0327018921800405,0.202631578947368,20.2631578947368,4,88.7988272043381,0.723354688410017,17.1052631578947,6.93574886817437,0
+4158,0.0331750893403966,0.302631578947368,30.2631578947368,2,95.1389573441151,0.827648766328012,30,1.14043511929719,0
+4159,0.0136264891406609,0.005,0.5,1,30.8308651382582,1,0.5,0,0
+4160,0.0180932261052811,0.0657894736842105,6.57894736842105,4,73.0577560424384,0.785915492957747,5.52631578947368,10.9366416931152,0
+4161,0.0159825144778695,0.0789473684210526,7.89473684210526,5,70.5949558778534,0.579008746355685,4.47368421052632,5.7281155427297,0
+4162,0.0160951016157852,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,15.5867252349854,15.5867252349854
+4163,0.0211849882302522,0.055,5.5,4,71.9954190123877,0.595393713040772,4.25,8.14257840676741,5.19557523727417
+4164,0.0108695756679337,0.0289473684210526,2.89473684210526,3,55.638725658509,0.519421860885276,1.84210526315789,6.282188762318,0
+4165,0.0227523925953918,0.147368421052632,14.7368421052632,4,85.2641700560135,0.818633066055746,12.3684210526316,23.3615463376045,5.19557523727417
+4166,0.0223563531901355,0.0973684210526316,9.73684210526316,7,63.9344805068453,0.582277876021603,4.21052631578947,21.4444514351922,10.3911504745483
+4167,0.0187614905180499,0.05,5,4,66.3651946592893,0.66044142614601,3.5,24.4873568058014,10.3911504745483
+4168,0.0213232214959518,0.136842105263158,13.6842105263158,2,88.7637196663733,0.895861879967114,13.1578947368421,23.1375000843635,5.19557523727417
+4169,0.0210784824732974,0.0526315789473684,5.26315789473684,3,68.1224489547185,0.659498207885305,3.42105263157895,8.30134189128876,0
+4170,0.00918721245493783,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,99.2841663360596,58.0882949829102
+4171,0.0115282566177291,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,10.681995305148,0
+4172,0.026524760769864,0.05,5,6,49.8533680313365,0.491833030852995,1.84210526315789,27.6793048256322,10.3911504745483
+4173,0.0261719254351766,0.0526315789473684,5.26315789473684,4,64.7972302655916,0.625448028673835,3.42105263157895,84.4922967910767,58.7812232971191
+4174,0.0243067603176697,0.134210526315789,13.4210526315789,3,88.0617776744757,0.853963595709744,12.8947368421053,14.7118249313504,0
+4175,0.0216111796547193,0.025,2.5,3,51.4230928509252,0.526627218934911,1.25,66.1281044006348,22.0429573059082
+4176,0.0434597682156125,0.310526315789474,31.0526315789474,4,90.3732125902415,0.783120496539916,20.5263157894737,16.7883896989337,0
+4177,0.0341811799227894,0.268421052631579,26.8421052631579,3,92.176158196132,0.858080748515941,24.7368421052632,18.292634748945,0
+4178,0.0195764504971713,0.115789473684211,11.5789473684211,4,80.345258415328,0.831885456885457,9.47368421052632,71.054160378196,46.7601776123047
+4179,0.0536356529926161,0.4825,48.25,4,92.0174162506683,0.778695382290233,30,12.8522163129223,0
+4180,0.0649639173334244,0.618421052631579,61.8421052631579,2,97.8710217947327,0.779121828607336,59.7368421052632,7.27052227994229,0
+4181,0.0456224869152433,0.331578947368421,33.1578947368421,5,92.9925370984923,0.810542241171819,30.7894736842105,45.986041931879,20.7823009490967
+4182,0.0481076069544901,0.428947368421053,42.8947368421053,3,94.1358559256258,0.854070660522273,36.8421052631579,8.76665321303292,0
+4183,0.00368352126127775,0.0225,2.25,2,60.8730533773843,0.829497016197783,2,52.5928911632962,10.3911504745483
+4184,0.0308931716008069,0.273684210526316,27.3684210526316,2,91.459289345353,0.852747423079904,20.5263157894737,53.5648056773039,7.34765291213989
+4185,0.0425200478884539,0.386842105263158,38.6842105263158,3,92.7393806205764,0.884806228760151,31.5789473684211,14.6825262121603,0
+4186,0.0421529970096584,0.286842105263158,28.6842105263158,5,85.7411667483478,0.72952216831813,12.1052631578947,32.7965233129099,0
+4187,0.0358026084407902,0.2275,22.75,4,84.1924935349652,0.79224100043949,10.75,37.892234645047,0
+4188,0.0227483726725232,0.05,5,7,51.5008897340223,0.528130671506352,2.89473684210526,66.9889958030299,39.5683212280273
+4189,0.0255929024791648,0.0736842105263158,7.36842105263158,3,79.5357936154966,0.880050505050505,6.84210526315789,19.0029708147049,5.19557523727417
+4190,0.0300389993252266,0.192105263157895,19.2105263157895,2,90.8887974405616,0.874287459283388,17.6315789473684,3.26630315388719,0
+4191,0.0423326928617098,0.36,36,6,88.4430140914376,0.721827651515152,23.5,5.84520302216212,0
+4192,0.0537955569658631,0.602631578947368,60.2631578947368,3,97.9846952642869,0.799618468601207,59.7368421052632,3.9373001656678,0
+4193,0.0686203488847241,0.757894736842105,75.7894736842105,2,98.7276391104261,0.611342852558961,74.2105263157895,2.89857240517934,0
+4194,0.0145951851605021,0.552631578947368,55.2631578947368,1,98.1334860201423,0.851361516473597,55.2631578947368,0,0
+4195,0.0644361044176912,0.66,66,1,98.7846583695088,0.845513963161022,66,4.78706605326046,0
+4196,0.0869548498199468,0.889473684210526,88.9473684210526,1,99.6738791833175,0.872568745808183,88.9473684210526,5.97080727159624,0
+4197,0.0238553356559829,0.0631578947368421,6.31578947368421,8,47.4223989758551,0.410112359550562,1.57894736842105,4.91734713315964,0
+4198,0.0365971856819287,0.244736842105263,24.4736842105263,9,75.8184046157502,0.62512069182654,6.57894736842105,2.71230124914518,0
+4199,0.0264976150574148,0.145,14.5,4,83.6526026130577,0.719298245614035,10.75,7.16999672199118,0
+4200,0.0450313067538243,0.363888888888889,36.3888888888889,3,93.5703053647054,0.776360746195027,28.8888888888889,1.90485196805182,0
+4201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4206,0.00695269501044861,0.0460526315789474,4.60526315789474,1,67.6942841910263,1,4.60526315789474,8.16447537285941,5.19557523727417
+4207,0.00889073470550764,0.0498614958448753,4.98614958448753,4,61.6833410175775,0.571212612028939,2.77008310249307,30.1216079923842,7.34765291213989
+4208,0.00716051500505243,0.0526315789473684,5.26315789473684,3,67.2084604434244,0.636015325670498,3.32409972299169,4.70158140282882,0
+4209,0.0328201329839607,0.362880886426593,36.2880886426593,3,92.6994496374806,0.783281790067309,27.1468144044321,0,0
+4210,0.0381723375961883,0.326315789473684,32.6315789473684,4,89.694567153857,0.775694444444444,17.1052631578947,0,0
+4211,0.00687645176089229,0.0637119113573407,6.37119113573407,1,83.5457007384199,0.821992110453649,6.37119113573407,0,0
+4212,0.00218812511756825,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+4213,-0.0103152242795999,0.0249307479224377,2.49307479224377,2,58.3321631610904,0.743607954545455,1.93905817174515,0,0
+4214,-0.0143166526158223,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,3.46371682484945,0
+4215,-0.00276846106486255,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,6.92743364969889,0
+4216,0.0486972668173411,0.371191135734072,37.1191135734072,2,93.3689238873952,0.856611540405864,29.0858725761773,3.32797232670571,0
+4217,0.0546313818441601,0.578947368421053,57.8947368421053,1,98.2541251036359,0.981683804627249,57.8947368421053,41.7894039792878,11.6176595687866
+4218,0.0232040235523815,0.281578947368421,28.1578947368421,2,92.966299976341,0.942302947484295,26.8421052631579,29.2147017773067,10.3911504745483
+4219,0.000313242310210455,0.03601108033241,3.601108033241,3,58.9000212524148,0.596583652618135,1.93905817174515,2.39795780181885,0
+4220,-0.00592423418094057,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0
+4221,0.00927651489178376,0.152354570637119,15.2354570637119,4,81.4913095943704,0.726797385620915,9.41828254847645,2.25095246921886,0
+4222,0.0508722604399449,0.557894736842105,55.7894736842105,1,98.1678776705731,0.844996374184191,55.7894736842105,6.09657242388096,0
+4223,0.00984864496341613,0.0664819944598338,6.64819944598338,4,67.4868960156726,0.63353115727003,4.15512465373961,5.00701703627904,0
+4224,-0.00916993127456234,0.0470914127423823,4.70914127423823,3,63.434931197565,0.622209302325581,2.49307479224377,0,0
+4225,0.00255042588121549,0.0831024930747922,8.31024930747922,3,73.8602510230138,0.688390159689253,4.98614958448753,2.78214308420817,0
+4226,0.0316371476183887,0.213157894736842,21.3157894736842,5,86.7793394448034,0.717577108881457,16.5789473684211,0.0641429041638786,0
+4227,0.0380956726517158,0.218836565096953,21.8836565096953,3,85.9578274778496,0.698252279635258,12.7423822714681,0,0
+4228,0.0122228413216826,0.0332409972299169,3.32409972299169,2,62.9077064702007,0.69576942524861,1.93905817174515,0,0
+4229,0.0364292426065,0.321329639889197,32.1329639889197,6,86.5905218739645,0.740388726919339,17.1745152354571,7.87205897939616,0
+4230,0.0653354899982285,0.744736842105263,74.4736842105263,2,98.3485532217493,0.749631811487481,71.3157894736842,8.57171216027897,0
+4231,0.0470468401341309,0.346260387811634,34.6260387811634,7,85.8988427010895,0.615900097065631,15.5124653739612,6.54285905456543,0
+4232,0.0188312357384454,0.0997229916897507,9.97229916897507,5,68.5751333297657,0.666769230769231,3.8781163434903,20.2883936299218,5.19557523727417
+4233,-0.0692642140937479,0,0,0,NA,NA,0,NA,NA
+4234,0.00626307036697031,0.281578947368421,28.1578947368421,3,92.7238810815115,0.805272447759494,25,2.24386221894594,0
+4235,0.0597030148271497,0.554016620498615,55.4016620498615,1,98.0916506430309,0.909343556946979,55.4016620498615,14.6134166955948,0
+4236,0.0455210495384157,0.349030470914127,34.9030470914127,5,86.9498621065833,0.771922326488897,18.2825484764543,40.102310403945,5.19557523727417
+4237,0.0372222989130945,0.296398891966759,29.6398891966759,6,85.3826845283659,0.771714740320672,19.9445983379501,20.0613850522264,0
+4238,0.0338076592459784,0.257894736842105,25.7894736842105,2,92.8998020570233,0.816247582205029,23.6842105263158,84.6725617233588,64.2657165527344
+4239,0.0393382638116705,0.337950138504155,33.7950138504155,3,89.2397589316078,0.829133455764024,13.5734072022161,9.55804659890347,0
+4240,0.0228826433938649,0.132963988919668,13.2963988919668,2,86.3365408804641,0.732759292449154,11.3573407202216,12.2952212194602,0
+4241,0.0488517122854958,0.42382271468144,42.382271468144,3,91.7576367128047,0.765295647413085,20.4986149584488,28.0081810514911,0
+4242,0.0565892705916796,0.476454293628809,47.6454293628809,1,97.5070198991125,0.819237894947674,47.6454293628809,6.2989211221074,0
+4243,0.0329044625725242,0.218421052631579,21.8421052631579,5,87.5520372400117,0.825923635447445,18.9473684210526,27.8458968530218,7.34765291213989
+4244,0.0621951444003888,0.45983379501385,45.983379501385,3,93.4636328404867,0.824551701022289,31.5789473684211,32.7212304092315,0
+4245,0.0384513637286961,0.213296398891967,21.3296398891967,4,85.8913983306512,0.785030033140017,17.1745152354571,26.2183572719624,0
+4246,0.0217100977381071,0.0332409972299169,3.32409972299169,3,55.1133669371738,0.513231080397775,1.66204986149584,5.40283914407094,0
+4247,0.0047470307259573,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.693548387096774,2.10526315789474,29.0363824367523,16.4298515319824
+4248,0.0421745698538951,0.390581717451524,39.0581717451524,2,92.931892047666,0.777396053558844,25.4847645429363,27.6592566307555,0
+4249,0.0573259976045844,0.515235457063712,51.5235457063712,5,95.4817356659533,0.736146179401993,47.3684210526316,5.91117536124363,0
+4250,0.0532210145330758,0.515235457063712,51.5235457063712,4,95.0681142174814,0.712159468438538,44.3213296398892,3.74941800999385,0
+4251,0.0357054370574923,0.331578947368421,33.1578947368421,4,90.9515318788256,0.745211979506928,17.3684210526316,3.87417414074852,0
+4252,0.0200047755986065,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.943620178041543,6.64819944598338,11.1955880125364,0
+4253,0.0178306855626706,0.0470914127423823,4.70914127423823,3,63.2694592797943,0.706162790697674,2.49307479224377,12.5190280746011,5.19557523727417
+4254,0.0285351061989544,0.196675900277008,19.6675900277008,3,85.5412579395956,0.810786206896552,12.7423822714681,5.79115877017169,0
+4255,0.0352452862951587,0.297368421052632,29.7368421052632,6,86.8089675365192,0.748843357567746,17.8947368421053,5.20640495604118,0
+4256,0.0169562647874413,0.0443213296398892,4.43213296398892,4,56.6968137674853,0.607608695652174,2.21606648199446,10.4570195674896,0
+4257,0.027211798697044,0.293628808864266,29.3628808864266,4,89.2916859517651,0.770228929268042,17.7285318559557,5.41917442375759,0
+4258,0.0280446943074708,0.155124653739612,15.5124653739612,3,89.5661427578565,0.768159540307588,14.9584487534626,3.14513170719147,0
+4259,0.0187647917055169,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+4260,0.0299124876981149,0.213296398891967,21.3296398891967,4,83.493170717176,0.785030033140017,10.2493074792244,6.63224716310377,0
+4261,0.0155967517809719,0.0664819944598338,6.64819944598338,4,68.5256868530435,0.718100890207715,3.32409972299169,3.76785677671432,0
+4262,0.0143099003541977,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,77.9336318969727,77.9336318969727
+4263,0.0242866783368718,0.152631578947368,15.2631578947368,2,88.3807218095484,0.858385093167702,13.6842105263158,54.5182738797418,30.2951488494873
+4264,0.0149695520392623,0.0498614958448753,4.98614958448753,2,72.7155299402978,0.844077313465069,4.15512465373961,36.1624127493964,25.977876663208
+4265,0.0261828165281949,0.149584487534626,14.9584487534626,3,83.7367125993873,0.822983433154706,10.2493074792244,15.4641151428223,0
+4266,0.0186495081279872,0.0332409972299169,3.32409972299169,4,53.9019501790898,0.391538850497219,1.93905817174515,56.4873736699422,39.5683212280273
+4267,0.0177885687080178,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,27.1318135261536,14.6953058242798
+4268,0.0165137000764146,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,23.3157533009847,18.7329120635986
+4269,0.0187948868170424,0.0332409972299169,3.32409972299169,5,40.3682847064815,0.452384965447497,1.38504155124654,10.3911503950755,0
+4270,0.0230359272438635,0.038781163434903,3.8781163434903,3,64.6111086803567,0.687896253602305,3.04709141274238,5.13190238816397,0
+4271,0.0185755218880858,0.0315789473684211,3.15789473684211,2,65.0192097988806,0.635549872122762,2.36842105263158,111.058764775594,83.1292037963867
+4272,0.0252679166468047,0.03601108033241,3.601108033241,4,49.769493251061,0.654214559386973,1.66204986149584,121.865477928749,115.360496520996
+4273,0.0291174886313814,0.0581717451523546,5.81717451523546,4,64.1085928467169,0.668198529411765,3.601108033241,80.7540548415411,72.3659896850586
+4274,0.0368719367739948,0.210526315789474,21.0526315789474,5,85.0330371520613,0.640796019900498,13.2963988919668,19.8605780036826,0
+4275,0.0240965324930393,0.123684210526316,12.3684210526316,3,82.6690326478453,0.828828828828829,8.42105263157895,47.6335214249631,25.977876663208
+4276,0.023870490523477,0.0609418282548476,6.09418282548476,4,64.9174914343889,0.655474579212216,3.04709141274238,2.69560933113098,0
+4277,0.0719041223628085,0.565096952908587,56.5096952908587,2,97.5226103234461,0.884728501083979,55.6786703601108,15.8716737873414,0
+4278,0.0347959807292488,0.25207756232687,25.207756232687,5,85.2702573121474,0.818427069044353,12.1883656509695,78.0220318469372,44.3910140991211
+4279,0.0679591344546919,0.694736842105263,69.4736842105263,1,98.9199097507581,0.741901776384535,69.4736842105263,31.6410758621765,0
+4280,0.0646934025299186,0.590027700831025,59.0027700831025,3,94.6110318135439,0.765936390936391,38.2271468144044,13.276353471156,0
+4281,0.0386099996477516,0.282548476454294,28.2548476454294,6,86.7831760538972,0.748654978163175,16.6204986149584,14.9189091336493,0
+4282,0.035031845658291,0.254847645429363,25.4847645429363,7,81.0240158929006,0.721778946414,12.7423822714681,27.1163927368496,5.19557523727417
+4283,0.0141624672308497,0.068421052631579,6.8421052631579,4,65.6070985289893,0.659638969271049,2.36842105263158,48.5563012086428,5.19557523727417
+4284,-0.00620986002991042,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,5.91293446222941,5.19557523727417
+4285,0.0386031198111298,0.401662049861496,40.1662049861496,2,95.5407699171231,0.924318658280922,39.0581717451524,9.50826263427734,0
+4286,0.025891056047608,0.202216066481994,20.2216066481994,4,83.5471152461743,0.6474609375,8.58725761772853,38.7089389513617,5.19557523727417
+4287,0.0384896473421433,0.313157894736842,31.3157894736842,3,91.6458835570322,0.743862636582943,25.2631578947368,69.2357304196398,11.6176595687866
+4288,0.0299834362180505,0.196675900277008,19.6675900277008,7,75.4130006059282,0.631531034482759,6.64819944598338,43.435042952148,0
+4289,0.0364299270869723,0.277008310249307,27.7008310249307,4,85.2295023312366,0.692635163899532,11.3573407202216,12.7997514533997,0
+4290,0.0462954086249944,0.470914127423823,47.0914127423823,3,91.4877782573676,0.728267233159928,20.4986149584488,3.46629118077895,0
+4291,0.0507116706029736,0.439473684210526,43.9473684210526,4,95.9628290951476,0.814645448448265,42.6315789473684,10.5580342429841,0
+4292,0.05950230102563,0.623268698060942,62.3268698060942,3,97.8118673308287,0.778799019607843,61.218836565097,3.666013607449,0
+4293,0.0627748911424445,0.686980609418283,68.6980609418283,1,98.8527710749899,0.710825450106805,68.6980609418283,3.4173589791021,0
+4294,0.0658314427273178,0.673130193905817,67.3130193905817,1,98.7841635095044,0.696763234525498,67.3130193905817,4.06177697162079,0
+4295,0.0612345496751674,0.618421052631579,61.8421052631579,2,98.2138648621546,0.779121828607336,61.3157894736842,3.75413159715368,0
+4296,0.0726449756006423,0.808864265927978,80.8864265927978,1,99.378383897982,0.95235078271429,80.8864265927978,2.26186695490798,0
+4297,0.0239318723891647,0.119113573407202,11.9113573407202,4,77.8532290581505,0.779262753319357,8.03324099722992,3.44100636105205,0
+4298,0.0330626432178606,0.221606648199446,22.1606648199446,8,78.6183189483217,0.620019046664328,8.03324099722992,4.68926347494125,0
+4299,0.021322028068435,0.0947368421052632,9.47368421052632,6,66.1869071664718,0.631782945736434,2.89473684210526,7.95946288108826,0
+4300,0.0485427499862288,0.482456140350877,48.2456140350877,3,93.7798296693233,0.777542372881356,33.0409356725146,2.18684190403331,0
+4301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4306,0.0126277769324684,0.0657894736842105,6.57894736842105,1,74.4129071744735,0.917659804983749,6.57894736842105,84.9767967224121,78.1066207885742
+4307,0.0144235326302589,0,0,0,NA,NA,0,NA,NA
+4308,0.00407952242169503,0,0,0,NA,NA,0,NA,NA
+4309,0.0236691644375272,0.290858725761773,29.0858725761773,4,91.7017968006661,0.798549107142857,26.3157894736842,0,0
+4310,0.0546884225289288,0.673684210526316,67.3684210526316,2,96.6656531927472,0.699932795698925,47.6315789473684,0,0
+4311,0.0537809467619063,0.614958448753463,61.4958448753463,4,94.4831850043163,0.792983004900427,50.1385041551247,0,0
+4312,0.0292218175042392,0.166204986149584,16.6204986149584,4,88.2155170764735,0.700166112956811,14.9584487534626,0,0
+4313,0.0180753907793373,0.0554016620498615,5.54016620498615,4,62.3916280661463,0.590199602686595,2.21606648199446,2.29343786239624,0
+4314,0.00581062384057747,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,5.62599077224731,0
+4315,0.00914241416706965,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,0,0
+4316,0.0377958382747827,0.371191135734072,37.1191135734072,2,95.7035624367827,0.902235141185816,36.5650969529086,0.969323734738934,0
+4317,-0.030189375034011,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,25.977876663208,25.977876663208
+4318,-0.0322488910778223,0,0,0,NA,NA,0,NA,NA
+4319,-0.000792999129297845,0,0,0,NA,NA,0,NA,NA
+4320,0.0127770961918936,0,0,0,NA,NA,0,NA,NA
+4321,-0.00172229440382313,0.0526315789473684,5.26315789473684,3,64.3617106556214,0.708812260536398,3.04709141274238,7.29475686424657,0
+4322,0.0253109778449518,0.0552631578947368,5.52631578947368,1,82.4055252250565,0.933844011142061,5.52631578947368,14.2057986713591,5.19557523727417
+4323,0.0043679034199783,0,0,0,NA,NA,0,NA,NA
+4324,0.0158745115802661,0.127423822714681,12.7423822714681,3,84.4964614577187,0.75022385022385,11.0803324099723,0.11294728776683,0
+4325,0.0108158076291853,0.10803324099723,10.803324099723,3,82.8315838324825,0.79302436693741,9.41828254847645,0,0
+4326,0.0236434438231682,0.1,10,2,83.0539672022018,0.805996472663139,8.1578947368421,0,0
+4327,0.0353450149508657,0.373961218836565,37.3961218836565,4,92.406081706663,0.844161450464062,32.409972299169,0.153942969993309,0
+4328,0.0225808295124862,0.160664819944598,16.0664819944598,3,81.7193490698154,0.737887788778878,5.81717451523546,8.8911793478604,0
+4329,0.0304045972475641,0.299168975069252,29.9168975069252,3,91.2629190848227,0.758528428093646,24.9307479224377,29.7276761708436,0
+4330,0.0215541490113346,0.181578947368421,18.1578947368421,7,73.6881023921914,0.676862161515772,5.26315789473684,40.7354376834372,14.6953058242798
+4331,0.0501745746282659,0.440443213296399,44.0443213296399,7,89.473199238499,0.687864505628645,28.2548476454294,3.50918283702442,0
+4332,0.0313761032396383,0.177285318559557,17.7285318559557,6,80.6501425505433,0.728685666185666,10.803324099723,16.4684173241258,0
+4333,-0.0541840499041891,0,0,0,NA,NA,0,NA,NA
+4334,0.00794012923939399,0.234210526315789,23.4210526315789,1,94.2341300741174,0.84395599645551,23.4210526315789,2.56649682762917,0
+4335,0.0530225798706788,0.529085872576177,52.9085872576177,2,97.6253473436426,0.844034562977733,52.6315789473684,11.4517544202155,0
+4336,0.0399447760406131,0.337950138504155,33.7950138504155,5,86.477781031789,0.753952176300195,12.1883656509695,39.2366901421156,0
+4337,0.0556208946713659,0.45983379501385,45.983379501385,3,95.5181179922949,0.812451818334171,42.9362880886427,17.7560800155961,0
+4338,0.0446444178222201,0.339473684210526,33.9473684210526,1,96.1266858750166,0.948461473255912,33.9473684210526,77.3709067411201,57.1513290405273
+4339,0.03860491653554,0.343490304709141,34.3490304709141,2,95.0861073085137,0.952611345522738,33.7950138504155,1.80222006767027,0
+4340,0.0241208433701275,0.124653739612188,12.4653739612188,2,87.3121437818942,0.909810126582278,11.9113573407202,8.31614819632636,0
+4341,0.0315586902155061,0.171745152354571,17.1745152354571,2,89.593624477116,0.865849126718692,16.0664819944598,40.3444734388782,26.4923400878906
+4342,0.0137684705993789,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,5.80882978439331,0
+4343,0.0396793339985092,0.310526315789474,31.0526315789474,5,89.3949209257023,0.789897981023043,24.4736842105263,13.2276133723178,0
+4344,0.0531779667506881,0.476454293628809,47.6454293628809,2,95.5375249384889,0.740907649425,39.3351800554017,12.0240239348522,0
+4345,0.038835865724461,0.299168975069252,29.9168975069252,3,90.5362888889819,0.831701631701632,19.1135734072022,7.78542259004381,0
+4346,0.0230348989605123,0.0554016620498615,5.54016620498615,3,72.1801828547087,0.692649702014947,4.43213296398892,4.77085208892822,0
+4347,0.00531503076205665,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,4.15646018981934,0
+4348,0.045207384513545,0.385041551246537,38.5041551246537,4,87.8769977100313,0.718308860041143,17.1745152354571,20.9277017133699,0
+4349,0.0535981615173625,0.490304709141274,49.0304709141274,4,91.6286557083029,0.778004919558569,21.606648199446,9.92250923113634,0
+4350,0.0453684703323818,0.50415512465374,50.415512465374,3,94.1307636241663,0.73069973310346,26.0387811634349,6.55906712615883,0
+4351,0.0507087751833943,0.486842105263158,48.6842105263158,4,92.6390084782049,0.675213675213675,24.4736842105263,9.22593592308663,0
+4352,0.0347674817237935,0.196675900277008,19.6675900277008,4,83.9060638578838,0.741075862068966,13.5734072022161,18.1584590320856,0
+4353,0.0181461182146651,0.0914127423822715,9.14127423822715,6,62.5088535443564,0.551603432700994,2.21606648199446,13.6710434393449,0
+4354,0.0384037373623063,0.337950138504155,33.7950138504155,4,92.1951868391813,0.699274882144683,27.4238227146814,8.63957805711715,0
+4355,0.0339612926338496,0.194736842105263,19.4736842105263,3,88.0240518403961,0.732528908999497,15.5263157894737,4.99553873732283,0
+4356,0.0178487853621911,0.0498614958448753,4.98614958448753,4,59.0690921108588,0.571212612028939,1.93905817174515,3.29463362693787,0
+4357,0.0249521928827333,0.191135734072022,19.1135734072022,1,92.8481599520577,0.785435299445262,19.1135734072022,3.33674211778503,0
+4358,0.00602391792435155,0,0,0,NA,NA,0,NA,NA
+4359,0.0143941784541336,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,1.29889380931854,0
+4360,0.0213420345133781,0.038781163434903,3.8781163434903,5,43.5440870817858,0.427809798270893,1.10803324099723,8.28335302216666,0
+4361,0.0309153506810098,0.202216066481994,20.2216066481994,2,92.1286714839537,0.941243489583333,19.9445983379501,26.247139904597,10.3911504745483
+4362,-0.0044696236478593,0,0,0,NA,NA,0,NA,NA
+4363,0.0214272555821241,0.139473684210526,13.9473684210526,4,82.7121518074216,0.79567832778842,11.5789473684211,45.0822746708708,23.2353191375732
+4364,0.0155990063264913,0.0221606648199446,2.21606648199446,2,52.7777777777778,0.693201133144476,1.10803324099723,12.7903770804405,0
+4365,0.044523064352245,0.304709141274238,30.4709141274238,4,89.8286961818816,0.84099781777413,24.0997229916898,6.59472999139266,0
+4366,0.019593628706759,0.0249307479224377,2.49307479224377,3,55.2231173947812,0.487215909090909,1.93905817174515,6.49022059970432,0
+4367,0.0202200116639975,0.0526315789473684,5.26315789473684,6,51.6736186455258,0.455197132616487,1.57894736842105,29.6498387813568,5.19557523727417
+4368,0.015652371232146,0.0166204986149584,1.66204986149584,2,45.2018371240175,0.709456740442656,1.10803324099723,41.265697479248,25.977876663208
+4369,0.0292365360309156,0.074792243767313,7.4792243767313,6,64.4735277614544,0.597827600612728,3.8781163434903,8.1958911507218,0
+4370,0.0334526887627891,0.163434903047091,16.3434903047091,5,81.1390824741028,0.74217634073497,11.3573407202216,10.4274444499258,0
+4371,0.0220032177104976,0.0236842105263158,2.36842105263158,3,47.9123996989228,0.487870619946092,1.05263157894737,48.0394944085015,31.6034507751465
+4372,0.0356398439113827,0.240997229916898,24.0997229916898,2,92.2773754599126,0.846997880857076,22.7146814404432,29.383464446013,5.19557523727417
+4373,0.0451541856075431,0.351800554016621,35.180055401662,4,94.2192421967288,0.893143893143893,34.0720221606648,42.0884537471561,5.19557523727417
+4374,0.0500309722426469,0.484764542936288,48.4764542936288,2,94.9626662081623,0.813725490196079,36.8421052631579,39.2670027133397,0
+4375,0.0389253547611205,0.323684210526316,32.3684210526316,4,86.7481613931598,0.688366980160876,11.5789473684211,31.4859804835746,0
+4376,0.0311051650478123,0.146814404432133,14.6814404432133,5,83.6723297795583,0.690880548023405,11.3573407202216,4.17139022755173,0
+4377,0.0487232405063583,0.398891966759003,39.8891966759003,4,90.754956080357,0.79835218544896,25.4847645429363,12.3122462497817,0
+4378,0.0461540922153789,0.42382271468144,42.382271468144,6,89.80707110424,0.580002737476047,18.2825484764543,60.0303537175546,5.19557523727417
+4379,0.0605709434909697,0.436842105263158,43.6842105263158,3,94.084093620615,0.831714617311099,37.6315789473684,74.4697448345552,7.34765291213989
+4380,0.0333061505115038,0.171745152354571,17.1745152354571,2,91.4079253162264,0.742877492877493,16.8975069252078,6.68761459473641,0
+4381,0.0832096124624181,0.781163434903047,78.1163434903047,1,99.2698136948151,0.862049199904466,78.1163434903047,15.7286322438125,0
+4382,0.0174802574581217,0.0249307479224377,2.49307479224377,4,37.2825567342518,0.401751893939394,0.831024930747922,69.4975429111057,51.955753326416
+4383,0.0283383220586984,0.147368421052632,14.7368421052632,6,75.6971703114895,0.721904034618811,8.68421052631579,23.1146101355553,0
+4384,0.027770471706541,0.0914127423822715,9.14127423822715,4,74.1444859964026,0.755420054200542,5.81717451523546,12.9079852248683,0
+4385,0.0529844565258636,0.445983379501385,44.5983379501385,2,96.4067544392351,0.902432432432432,43.7673130193906,13.5238283672688,0
+4386,0.0244713672234216,0.193905817174515,19.3905817174515,6,80.6232035785268,0.626826474450311,8.03324099722992,29.2673634733473,0
+4387,0.0358679371722055,0.326315789473684,32.6315789473684,3,92.4465113204771,0.670138888888889,26.3157894736842,22.512211853458,0
+4388,0.0451704701667635,0.354570637119114,35.4570637119114,3,91.6955635627574,0.840409659415351,28.5318559556787,51.9869474582374,0
+4389,0.0362567481722465,0.285318559556787,28.5318559556787,3,90.4107001764591,0.803352189398701,23.2686980609418,22.0735342942395,0
+4390,0.0374143518008604,0.271468144044321,27.1468144044321,4,89.2567740166522,0.812824058071207,22.1606648199446,9.2505340527515,0
+4391,0.0500094030555996,0.465789473684211,46.5789473684211,2,96.8131059670627,0.788192404453081,45.2631578947368,8.84371603949595,0
+4392,0.0414497699965678,0.382271468144044,38.2271468144044,3,91.6430017748925,0.794433767527938,27.1468144044321,3.15998090868411,0
+4393,0.0219466186858087,0.296398891966759,29.6398891966759,2,92.6024127643995,0.837991106034026,23.2686980609418,4.15780147213802,0
+4394,0.0718386353342149,0.6398891966759,63.98891966759,2,97.0740639273771,0.697180082098875,54.2936288088643,5.4848359859351,0
+4395,0.0485235384973318,0.494736842105263,49.4736842105263,3,92.5369201823747,0.755447796934866,26.3157894736842,2.85795915126801,0
+4396,0.048678362930949,0.57617728531856,57.617728531856,1,98.2365946331393,0.865869517488305,57.617728531856,1.13761125161098,0
+4397,0.0446535271720302,0.404432132963989,40.4432132963989,4,94.8227238916609,0.754742618238829,37.9501385041551,6.21498168331303,0
+4398,0.0591086149265683,0.559556786703601,55.9556786703601,4,94.5660199594646,0.703329140461216,44.5983379501385,4.68901323091866,0
+4399,0.0382368508862112,0.352631578947368,35.2631578947368,4,93.1496098947694,0.82906837265094,31.0526315789474,6.20167023744156,0
+4400,0.0343513789798449,0.315789473684211,31.5789473684211,4,88.299237374982,0.700197238658777,20.1754385964912,5.49638003773159,0
+4401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4406,0.0148503931023266,0,0,0,NA,NA,0,NA,NA
+4407,0.0224389775771934,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,92.3466186523438,88.4774551391602
+4408,0.0236020251559869,0.0803324099722992,8.03324099722992,4,69.484333807256,0.652973596513714,3.601108033241,6.18625338324185,0
+4409,0.0582284979029479,0.714681440443213,71.4681440443213,1,98.9839537105949,0.79682003658365,71.4681440443213,0,0
+4410,0.0445082038640976,0.331578947368421,33.1578947368421,3,90.7201248832044,0.790943162672351,25.5263157894737,0,0
+4411,0.0460344039192655,0.332409972299169,33.2409972299169,3,89.7040253997865,0.711408884997526,19.1135734072022,0,0
+4412,0.0540128665153257,0.559556786703601,55.9556786703601,3,95.8087370176651,0.87285534591195,51.5235457063712,0,0
+4413,0.0414533715387497,0.315789473684211,31.5789473684211,3,89.4420026901436,0.858103061986557,26.8698060941828,0,0
+4414,0.0399305469463702,0.376315789473684,37.6315789473684,7,88.4287568840615,0.712371565690727,26.3157894736842,0,0
+4415,0.0442980837828765,0.293628808864266,29.3628808864266,6,84.1424214971488,0.629401498819423,14.404432132964,0,0
+4416,0.0342246187112998,0.271468144044321,27.1468144044321,3,88.1480380239785,0.828422053231939,13.2963988919668,0.234024271673086,0
+4417,-0.000714371922077486,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+4418,0.0186557037467106,0.0842105263157895,8.42105263157895,4,71.64515553456,0.706012378426171,3.68421052631579,0.162361726164818,0
+4419,0.0145295432344217,0.074792243767313,7.4792243767313,1,85.2413794174021,0.949728450076591,7.4792243767313,0,0
+4420,-0.00211276105183262,0,0,0,NA,NA,0,NA,NA
+4421,0.0159141582572019,0.102493074792244,10.2493074792244,1,88.2023291177678,0.981734466707144,10.2493074792244,0,0
+4422,0.0111187888004727,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+4423,0.0109747075051464,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,0,0
+4424,0.00976599685514718,0.0470914127423823,4.70914127423823,2,70.1711717468407,0.832093023255814,3.04709141274238,1.65470316830803,0
+4425,0.022943000869287,0.160664819944598,16.0664819944598,1,91.6954320870293,0.821287128712871,16.0664819944598,1.33586183909712,0
+4426,0.0516698832564496,0.397368421052632,39.7368421052632,3,92.0510821284338,0.826273390821812,23.6842105263158,11.583790270698,0
+4427,0.0598957832185394,0.50415512465374,50.415512465374,3,92.4224597860197,0.736684183478938,27.7008310249307,9.03747348733001,0
+4428,0.0316947387463467,0.277008310249307,27.7008310249307,4,87.862620072948,0.792528735632184,17.1745152354571,4.74571249961853,0
+4429,0.0118407625061857,0.0775623268698061,7.75623268698061,6,65.8788501919627,0.68682015348682,4.98614958448754,7.02921118055071,0
+4430,0.043163699391095,0.336842105263158,33.6842105263158,4,91.3786663229938,0.851147898358199,27.8947368421053,24.1608018800616,5.19557523727417
+4431,0.0385984317726173,0.271468144044321,27.1468144044321,5,87.512748472676,0.69583909436571,17.1745152354571,4.24244758547569,0
+4432,0.0224573206163506,0.0914127423822715,9.14127423822715,8,59.1149248184568,0.571985094850949,3.8781163434903,15.3654300371806,0
+4433,-0.0672795148893683,0,0,0,NA,NA,0,NA,NA
+4434,-0.00703453995336435,0.142105263157895,14.2105263157895,2,85.152871392478,0.736790025727291,7.89473684210526,0.96214356245818,0
+4435,0.0468618015628008,0.373961218836565,37.3961218836565,3,94.4712545884354,0.850654723361393,35.4570637119114,13.8361402229027,0
+4436,0.0219506658622411,0.196675900277008,19.6675900277008,4,85.2583432633655,0.830703448275862,16.0664819944598,59.8119607844823,25.977876663208
+4437,0.0260037684451984,0.243767313019391,24.3767313019391,3,87.4318169412906,0.789435617461095,14.9584487534626,19.6550015048547,0
+4438,0.0290951153858163,0.202631578947368,20.2631578947368,2,89.8892809952991,0.815569792273345,15.7894736842105,40.0633414379962,15.5867252349854
+4439,0.0381547109120278,0.290858725761773,29.0858725761773,3,87.9136261235793,0.82093253968254,13.8504155124654,9.33000253041585,0
+4440,0.0371368277556433,0.310249307479224,31.0249307479224,3,91.2532650798342,0.734442721380572,23.2686980609418,6.10834314141955,0
+4441,0.0510578424424072,0.451523545706371,45.1523545706371,1,97.2878063612382,0.854141414141414,45.1523545706371,6.77635149282912,0
+4442,0.062943805336444,0.520775623268698,52.0775623268698,1,97.8571254487222,0.886070692977211,52.0775623268698,10.6058764305521,0
+4443,0.0355003037309775,0.281578947368421,28.1578947368421,4,89.595994886705,0.70430260585701,18.6842105263158,14.2441991779292,0
+4444,0.038026176200068,0.326869806094183,32.6869806094183,2,91.8990620153876,0.854217145494404,21.0526315789474,14.3601231777062,0
+4445,0.0224310479553673,0.149584487534626,14.9584487534626,4,80.0419158873341,0.797695352176806,9.14127423822715,27.5594950605322,0
+4446,0.0291907816454027,0.193905817174515,19.3905817174515,4,81.9541160635318,0.78819880982315,9.69529085872576,8.80796055793762,0
+4447,0.0341494119246674,0.278947368421053,27.8947368421053,2,92.6806300491007,0.854778920013758,23.6842105263158,13.7956299781799,0
+4448,0.0451208995859148,0.277008310249307,27.7008310249307,2,91.0731937712913,0.90779054916986,20.2216066481994,21.2035924768448,0
+4449,0.0408606158978682,0.332409972299169,33.2409972299169,6,85.6232421701101,0.725151319045262,15.7894736842105,3.61499675512314,0
+4450,0.0391644797498461,0.285318559556787,28.5318559556787,10,75.8671650734865,0.591577624135764,6.09418282548476,6.36422377188229,0
+4451,0.0383119804780443,0.263157894736842,26.3157894736842,5,86.848124423234,0.728571428571429,17.1052631578947,6.97378197193146,0
+4452,0.0423622398738091,0.28808864265928,28.808864265928,6,85.0027586246215,0.714559187665161,16.8975069252078,4.83743226528168,0
+4453,0.0400831126279025,0.310249307479224,31.0249307479224,6,84.5998545831522,0.633961588929977,13.0193905817175,3.91123406801905,0
+4454,0.0421387237120017,0.349030470914127,34.9030470914127,3,89.6304470634241,0.765214159620924,14.1274238227147,4.88634040999034,0
+4455,0.0401218051939826,0.305263157894737,30.5263157894737,2,94.5574911683071,0.794372294372294,28.9473684210526,10.5176465388002,0
+4456,0.0293579393632741,0.168975069252078,16.8975069252078,7,70.3326859123895,0.670786163522013,3.601108033241,1.65357388824713,0
+4457,0.00931997823217168,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911504745483,10.3911504745483
+4458,0.013769097327895,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0
+4459,-0.00732839995434915,0,0,0,NA,NA,0,NA,NA
+4460,0.0281856798648627,0.232686980609418,23.2686980609418,1,94.0385002375449,0.938773532333487,23.2686980609418,11.7385551702409,0
+4461,0.0131227149934217,0.155124653739612,15.5124653739612,4,81.0823532989222,0.755957410850093,8.03324099722992,16.780891094889,5.19557523727417
+4462,0.0263336718083557,0.191135734072022,19.1135734072022,5,81.501178389266,0.765000566059096,9.14127423822715,17.3031243655993,0
+4463,0.0344690083778819,0.231578947368421,23.1578947368421,4,88.1605985439338,0.767908559462525,17.8947368421053,14.8266581567851,0
+4464,0.0158022810826984,0,0,0,NA,NA,0,NA,NA
+4465,0.0447509520504921,0.357340720221607,35.7340720221607,2,94.8933348170685,0.860950110051357,33.7950138504155,12.1794850992602,0
+4466,0.0140695386109953,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,33.8526518344879,25.977876663208
+4467,0.0272390186807714,0.142105263157895,14.2105263157895,3,84.6290171066187,0.799459067220793,11.5789473684211,28.6149314332891,0
+4468,0.0250195527273579,0.174515235457064,17.4515235457064,4,80.6946052909599,0.768730933496034,8.31024930747922,9.75275309880575,0
+4469,0.0240060303643523,0.0470914127423823,4.70914127423823,5,51.307854974803,0.496279069767442,1.93905817174515,25.7939696872936,0
+4470,0.0267334353092315,0.130193905817175,13.0193905817174,10,59.7774023646303,0.568869426751592,3.04709141274238,16.2060887762841,0
+4471,0.0217752653751679,0.0394736842105263,3.94736842105263,7,36.4471991238195,0.38480697384807,1.05263157894737,50.7115442911784,16.4298515319824
+4472,0.0370741276721644,0.243767313019391,24.3767313019391,4,86.1567052566324,0.814703343365764,11.3573407202216,3.60183515873822,0
+4473,0.0487488789296141,0.315789473684211,31.5789473684211,2,91.5070867839631,0.865197908887229,24.0997229916898,10.9020144437489,0
+4474,0.0300022267443521,0.185595567867036,18.5595567867036,3,84.7247814689534,0.769114483400198,12.1883656509695,12.1398924429025,0
+4475,0.0338057092336768,0.186842105263158,18.6842105263158,6,79.8180221913471,0.704854368932039,8.68421052631579,37.5460441213259,0
+4476,0.035195780845565,0.210526315789474,21.0526315789474,3,87.588438477426,0.773134328358209,12.7423822714681,8.13483699999358,0
+4477,0.0869247693506552,0.842105263157895,84.2105263157895,1,99.5015292450824,0.823152995927865,84.2105263157895,8.93833013584739,0
+4478,0.0328388088600455,0.171745152354571,17.1745152354571,6,85.5918279278352,0.787594450637929,15.2354570637119,72.209179078379,29.3906116485596
+4479,0.0405382516480275,0.228947368421053,22.8947368421053,4,84.4343354453671,0.765716173070571,9.47368421052632,47.1388603243335,0
+4480,0.0285513917174323,0.152354570637119,15.2354570637119,5,76.6881591008474,0.71437908496732,6.92520775623269,4.53891373547641,0
+4481,0.0622000493680983,0.590027700831025,59.0027700831025,3,97.636239819954,0.753617253617254,57.617728531856,45.6752844841827,0
+4482,0.028220703756626,0.146814404432133,14.6814404432133,5,76.1594839324504,0.678000570857714,7.20221606648199,87.436736916596,62.3469009399414
+4483,0.0266408361359457,0.105263157894737,10.5263157894737,4,73.2263524299886,0.683055311676909,4.47368421052632,20.4265783190727,0
+4484,0.0374818145701938,0.307479224376731,30.7479224376731,3,89.8290746321708,0.76174,17.1745152354571,12.3860638249028,0
+4485,0.0503970078881388,0.409972299168975,40.9972299168975,5,91.9271071647384,0.737331739514578,31.5789473684211,15.8025205425314,0
+4486,0.0332615233721269,0.229916897506925,22.9916897506925,7,84.0743915196953,0.708486272206724,15.5124653739612,22.4570153535131,0
+4487,0.0324883498756351,0.257894736842105,25.7894736842105,4,90.8489005315082,0.777965828497743,22.8947368421053,16.5219256342674,0
+4488,0.0391961803753094,0.299168975069252,29.9168975069252,6,87.956505376286,0.817066990980034,24.0997229916897,46.47107301818,5.19557523727417
+4489,0.0385695083926362,0.285318559556787,28.5318559556787,5,88.8614599956725,0.818478944060339,23.2686980609418,3.25031786983453,0
+4490,0.035258462722381,0.296398891966759,29.6398891966759,3,92.4062506431811,0.77907878095549,25.7617728531856,2.81974394076338,0
+4491,0.0360700222661475,0.25,25,4,91.2443669245586,0.780392156862745,22.6315789473684,6.8188940600345,0
+4492,0.0588754720508941,0.667590027700831,66.7590027700831,1,98.7561244991023,0.826185185185185,66.7590027700831,1.91427006266424,0
+4493,0.0411236324845878,0.493074792243767,49.3074792243767,1,97.6438321717104,0.898068330924975,49.3074792243767,2.5604655421182,0
+4494,0.0698880741229281,0.700831024930748,70.0831024930748,1,98.9193346356796,0.837806688545085,70.0831024930748,0.349109798552019,0
+4495,0.060925130935778,0.678947368421053,67.8947368421053,2,97.3197230968371,0.793639480025795,60.2631578947368,2.06168084920839,0
+4496,0.0627352910379459,0.684210526315789,68.4210526315789,1,98.8392163908112,0.746392496392496,68.4210526315789,1.6040650784728,0
+4497,0.044082282070255,0.354570637119114,35.4570637119114,4,90.9238515134576,0.63427213616018,25.7617728531856,11.2012748271227,0
+4498,0.0512469067419505,0.418282548476454,41.8282548476454,5,93.3370889608649,0.652466907340554,34.0720221606648,10.5327023101958,0
+4499,0.0421405383362358,0.363157894736842,36.3157894736842,3,94.3192616666739,0.806834579561852,32.1052631578947,8.55428951373999,0
+4500,0.0286997272827042,0.225146198830409,22.5146198830409,3,87.6038621200055,0.734295227524972,14.9122807017544,8.61137668807785,0
+4501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4506,0.0106343475999893,0,0,0,NA,NA,0,NA,NA
+4507,0.00636796796714311,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,76.4432487487793,75.6487197875977
+4508,0.0181964772710145,0.0815789473684211,8.15789473684211,3,78.6513104527764,0.69512893982808,6.31578947368421,0.167599201202393,0
+4509,0.0595237402000317,0.686842105263158,68.6842105263158,2,98.5829741124887,0.771442319258992,68.1578947368421,0.127684019534524,0
+4510,0.0498414577962831,0.5,50,3,94.4497535613616,0.811320754716981,35.75,0.233800885677338,0
+4511,0.0522719472793764,0.439473684210526,43.9473684210526,4,91.5861409402037,0.72776050240839,21.3157894736842,0,0
+4512,0.0524420380886448,0.523684210526316,52.3684210526316,6,92.2185736964478,0.766728054020872,33.421052631579,0,0
+4513,0.0538888993525976,0.621052631578947,62.1052631578947,5,95.1868831772499,0.694822373393802,48.9473684210526,0,0
+4514,0.0938391019916162,0.8575,85.75,1,99.5794816088838,0.924193199047,85.75,0,0
+4515,0.0417705300288569,0.215789473684211,21.5789473684211,2,89.0597328416603,0.788937745892155,11.5789473684211,0,0
+4516,0.0408176416540683,0.323684210526316,32.3684210526316,1,95.9030250324652,0.966847551080944,32.3684210526316,0,0
+4517,0.0244459478796527,0.155263157894737,15.5263157894737,2,89.0556367299595,0.791094007696536,14.2105263157895,0,0
+4518,0.0236967664534586,0.0275,2.75,4,44.197155902927,0.451585261353899,1,0,0
+4519,0.0155500614540774,0.0394736842105263,3.94736842105263,2,72.1272551186058,0.668742216687422,3.42105263157895,1.03911504745483,0
+4520,0.0106392688985579,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,0,0
+4521,0.0275031630977633,0.0789473684210526,7.89473684210526,2,79.2726597555226,0.867055393586006,5.78947368421053,1.49810628890991,0
+4522,0.0236999667977943,0.02,2,2,58.1510768543717,0.795918367346939,1.75,8.44280976057053,5.19557523727417
+4523,0.0189174446896734,0.0605263157894737,6.05263157894737,3,69.5899296316903,0.70432617491441,3.42105263157895,10.9301342342211,0
+4524,0.00730406257530137,0.0394736842105263,3.94736842105263,3,65.0516225645038,0.763387297633873,3.15789473684211,3.26081698735555,0
+4525,0.0133055090367634,0.0263157894736842,2.63157894736842,2,58.9660910078803,0.762993762993763,1.57894736842105,13.5069089412689,0
+4526,0.0241454364308447,0.105,10.5,5,74.2144831131116,0.63805177433315,4.75,7.73158758027213,0
+4527,0.0361131940799839,0.315789473684211,31.5789473684211,3,92.0052076607162,0.906139731827805,29.2105263157895,9.59753522078196,0
+4528,0.0257091004039562,0.186842105263158,18.6842105263158,3,89.3565135748672,0.783559870550162,16.5789473684211,0,0
+4529,-0.0167520420294175,0.0473684210526316,4.73684210526316,5,50.4310542775341,0.572334765704931,1.57894736842105,12.0978065861596,0
+4530,0.0181091802187075,0.18,18,2,91.8231194400454,0.923180334165546,17.75,34.5018086367183,0
+4531,0.0482583960392635,0.478947368421053,47.8947368421053,3,93.469715452067,0.755117945028924,33.421052631579,2.81312429773939,0
+4532,0.0184413159295266,0.128947368421053,12.8947368421053,1,90.3490965751115,0.835994820889081,12.8947368421053,21.3812187155899,10.3911504745483
+4533,-0.072498580200083,0,0,0,NA,NA,0,NA,NA
+4534,-0.00555948119785171,0.0625,6.25,2,75.6907063307731,0.706666666666667,3.5,0.6234690284729,0
+4535,0.0473271311799947,0.521052631578947,52.1052631578947,2,97.6348237820795,0.85208252238225,51.8421052631579,14.0790836546156,0
+4536,0.0379887314583213,0.336842105263158,33.6842105263158,3,89.6125154457907,0.825260576333538,15.7894736842105,27.0661513544619,0
+4537,0.061688737158348,0.478947368421053,47.8947368421053,4,92.4821964199554,0.806372328627521,26.3157894736842,9.85953919966142,0
+4538,0.0449473871615919,0.35,35,4,90.4993572440651,0.837740384615385,24.75,13.2840881756374,0
+4539,0.0267758831788294,0.157894736842105,15.7894736842105,5,86.5968669928469,0.691706730769231,13.6842105263158,6.69903059005737,0
+4540,0.0281549614941468,0.110526315789474,11.0526315789474,8,64.6467173326579,0.540795066255521,3.94736842105263,4.98616086869013,0
+4541,0.0352071275723191,0.152631578947368,15.2631578947368,8,68.4164833485141,0.539751552795031,3.94736842105263,3.99013045738483,0
+4542,0.062466504028692,0.544736842105263,54.4736842105263,3,95.0561897542972,0.760378349973726,41.5789473684211,5.41797968961191,0
+4543,0.0292527304300165,0.135,13.5,4,76.8937443084976,0.68922866554789,4.75,8.31372812942222,0
+4544,0.0506557473384371,0.378947368421053,37.8947368421053,6,91.1821966659992,0.731638418079096,30,8.72074468599426,0
+4545,0.0392682743666611,0.313157894736842,31.3157894736842,2,94.7703307975236,0.865190861359444,30.5263157894737,45.1308963839747,10.3911504745483
+4546,0.0451922816930164,0.434210526315789,43.421052631579,2,96.7669834098472,0.802325581395349,42.8947368421053,12.443861730171,0
+4547,0.0309673050671699,0.15,15,3,89.8680608535361,0.796380090497738,14.5,4.44714283148448,0
+4548,0.0441960618204719,0.321052631578947,32.1052631578947,2,92.175427351904,0.893367006910099,19.7368421052632,9.39453420091848,0
+4549,0.0372412195300153,0.310526315789474,31.0526315789474,3,94.5616268274877,0.756010558607405,30,2.83930619288299,0
+4550,0.0403894946189738,0.386842105263158,38.6842105263158,6,90.9879035653897,0.648355856215199,27.1052631578947,2.99084328307586,0
+4551,0.0367444668188546,0.2575,25.75,6,82.6188295470181,0.723359723359723,10.25,4.12548065648496,0
+4552,0.0291041521048005,0.165789473684211,16.5789473684211,5,81.7569839807552,0.749354746200172,10.7894736842105,2.09589616836063,0
+4553,0.0461209414514566,0.463157894736842,46.3157894736842,5,92.7662265695257,0.598793363499246,30,4.73832216858864,0
+4554,0.0513274981695423,0.531578947368421,53.1578947368421,4,95.5230752802748,0.766591760299626,46.3157894736842,4.9297146702757,0
+4555,0.0436607641281444,0.3525,35.25,5,90.3706885963617,0.724641585106702,23.75,5.83762228404377,0
+4556,0.0305773654730537,0.213157894736842,21.3157894736842,3,88.2865805885207,0.74405425492382,14.4736842105263,1.59256741441326,0
+4557,0.00605790377647186,0,0,0,NA,NA,0,NA,NA
+4558,0.0170891959339267,0.0368421052631579,3.68421052631579,3,57.4990966424163,0.688524590163934,1.84210526315789,2.22667510168893,0
+4559,0.00121280510369616,0,0,0,NA,NA,0,NA,NA
+4560,-0.000908421201089177,0.0763157894736842,7.63157894736842,4,67.9253040949144,0.677517124325635,3.94736842105263,21.7137535851577,5.19557523727417
+4561,0.0314990770086297,0.234210526315789,23.4210526315789,3,89.2935951969992,0.720763362078281,17.3684210526316,11.6795148903065,0
+4562,0.0330618695487302,0.278947368421053,27.8947368421053,1,95.1692193166118,0.72407994802614,27.8947368421053,17.0120433366524,0
+4563,0.036188734882744,0.225,22.5,5,85.491262962282,0.743538369064316,11.5,29.3939938810137,5.19557523727417
+4564,0.0230664477925242,0.0710526315789474,7.10526315789474,4,74.9551902126487,0.72461954015416,5.78947368421053,9.69243310998987,0
+4565,0.0341786755942897,0.223684210526316,22.3684210526316,4,86.4748082280437,0.795263216971602,14.4736842105263,18.5116608563591,0
+4566,0.0252858998623867,0.157894736842105,15.7894736842105,4,80.2221984197514,0.703125,6.57894736842105,31.7920301914215,5.19557523727417
+4567,0.0266585372772533,0.1225,12.25,6,76.2759030183516,0.769366436033103,9.25,27.9289348174115,0
+4568,0.0172008317075348,0.0842105263157895,8.42105263157895,4,72.985076227825,0.769009725906278,5.78947368421053,24.065478682518,0
+4569,0.0199945431437012,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,53.1748045285543,10.3911504745483
+4570,0.0405647934889298,0.297368421052632,29.7368421052632,5,88.7329370398362,0.755819930968642,17.1052631578947,21.3954749782528,0
+4571,0.0358222657971783,0.1925,19.25,4,84.8988552869581,0.726825714806046,13,21.6587494751076,0
+4572,0.0200315202719187,0.0263157894736842,2.63157894736842,2,59.1815130720322,0.762993762993763,1.84210526315789,17.4294302940369,10.3911504745483
+4573,0.0140920488572814,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,23.2353191375732,23.2353191375732
+4574,0.0284949586412327,0.105263157894737,10.5263157894737,5,77.6264628345482,0.766461808604039,8.15789473684211,25.6300821185112,0
+4575,0.0395888770342572,0.28,28,5,89.5320241748016,0.807480748074807,22,18.7365747903075,0
+4576,0.0365202122406213,0.210526315789474,21.0526315789474,6,80.9510828092478,0.696713615023474,10,15.4017567932606,0
+4577,0.0487452401762742,0.447368421052632,44.7368421052632,3,94.4017978745863,0.809219534459151,38.6842105263158,19.5553010155173,0
+4578,0.0303273827139947,0.223684210526316,22.3684210526316,4,83.1823915764999,0.769671119093052,10.2631578947368,106.058505697811,78.1066207885742
+4579,0.0297932707408472,0.1275,12.75,4,79.9709456137446,0.802391068076277,9,137.4119422763,103.12922668457
+4580,0.0371241340106951,0.331578947368421,33.1578947368421,3,93.430810941278,0.849740398170753,29.4736842105263,66.0157945799449,5.19557523727417
+4581,0.0136838736409309,0.0868421052631579,8.68421052631579,5,67.3270798945559,0.655246024122105,3.68421052631579,44.6225347518921,11.6176595687866
+4582,0.0338303488233674,0.202631578947368,20.2631578947368,5,79.6902944681005,0.714133178023685,8.42105263157895,24.5964109185454,0
+4583,0.0498331959705683,0.445,44.5,2,96.5161168353317,0.81379555847641,42.5,20.9424805480443,0
+4584,0.0528732562718352,0.492105263157895,49.2105263157895,3,94.3369581810027,0.766689628320705,35.5263157894737,25.4968381693019,0
+4585,0.0574704399669396,0.6,60,1,98.4265117299858,0.747058823529412,60,7.35237089374609,0
+4586,0.0560666819862825,0.560526315789474,56.0526315789474,4,91.9721386864742,0.712695820480252,31.8421052631579,15.0336299412687,0
+4587,0.0435978366137715,0.35,35,6,88.2584816008213,0.633413461538462,15.25,35.0400195802961,0
+4588,0.0585337821433266,0.547368421052632,54.7368421052632,4,96.3744080830373,0.760230755363259,51.578947368421,9.33872881073218,0
+4589,0.0262495481367391,0.110526315789474,11.0526315789474,5,74.9307214146977,0.667472289357446,7.10526315789474,5.59663808913458,0
+4590,0.0232248030921925,0.163157894736842,16.3157894736842,6,74.1350178867311,0.6127416724901,4.73684210526316,7.07383311179376,0
+4591,0.0194084676709099,0.115,11.5,7,72.1714344823793,0.507460524409677,4.25,7.03057755594668,0
+4592,0.0333225378662878,0.328947368421053,32.8947368421053,2,94.2000070055648,0.783363565690593,28.6842105263158,2.37926757049561,0
+4593,0.0367283537838184,0.331578947368421,33.1578947368421,3,90.9364714608115,0.712546848674483,20.7894736842105,5.35716302432711,0
+4594,0.0269914040710941,0.205263157894737,20.5263157894737,3,88.2999084136358,0.799404933294942,16.8421052631579,9.37624165339348,0
+4595,0.033865085841353,0.4225,42.25,2,96.1755488175805,0.805749805749806,40.75,6.57864691943107,0
+4596,0.0709388750981337,0.713157894736842,71.3157894736842,1,99.0042431178675,0.849317784466754,71.3157894736842,3.0047856872812,0
+4597,0.038150118622549,0.273684210526316,27.3684210526316,5,90.0367407150595,0.786483763465861,23.4210526315789,41.5900790691376,20.7823009490967
+4598,0.06322309675291,0.502631578947368,50.2631578947368,2,94.5977943265505,0.863689355214779,28.421052631579,48.9295937727883,0
+4599,0.0453037008069805,0.31,31,3,91.6858023139287,0.838969404186795,27,51.4124677681154,0
+4600,0.0424757141813744,0.338888888888889,33.8888888888889,5,89.2098057048531,0.760447165291456,25.2777777777778,11.4043951034546,0
+4601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4606,0.0428225517971441,0.236842105263158,23.6842105263158,2,87.8987186353959,0.803448275862069,22.3684210526316,0,0
+4607,0.0450451605091609,0.412742382271468,41.2742382271468,2,95.676352321947,0.925150321376737,40.1662049861496,0,0
+4608,0.0257870701123647,0.14404432132964,14.404432132964,2,88.0089635760358,0.763717682993346,13.0193905817175,0.799319267272949,0
+4609,0.0901703047730581,0.842105263157895,84.2105263157895,1,99.5015292450824,0.657358929610238,84.2105263157895,0,0
+4610,0.0740678863501863,0.981578947368421,98.1578947368421,1,99.9494972955673,0.308951303293593,98.1578947368421,0,0
+4611,0.0843939524340002,0.980609418282548,98.0609418282548,1,99.9453410746656,0.307249466950962,98.0609418282548,0,0
+4612,0.0735270336806939,0.975069252077562,97.5069252077562,1,99.9294255406158,0.457957957957959,97.5069252077562,0,0
+4613,0.0734232447504832,0.975069252077562,97.5069252077562,1,99.9294255406158,0.337504170837503,97.5069252077562,0,0
+4614,0.0766561669965373,0.9,90,1,99.7075064537375,0.953632148377125,90,0,0
+4615,0.0844825818432351,0.814404432132964,81.4404432132964,1,99.3994305406243,0.912310059107716,81.4404432132964,0,0
+4616,0.0313950525283126,0.279778393351801,27.9778393351801,3,93.3189709944624,0.785210369740756,26.5927977839335,0.360089372880388,0
+4617,0.00410018138696473,0.0138504155124654,1.38504155124654,2,40.1094318411096,0.391573033707865,0.831024930747922,0,0
+4618,0.0372766287222284,0.171052631578947,17.1052631578947,3,90.4470283165845,0.754459896052816,16.3157894736842,0,0
+4619,0.0280576462317593,0.07202216066482,7.20221606648199,1,84.8544079576361,0.921150345831817,7.20221606648199,2.08107038644644,0
+4620,0.0149436086828455,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0
+4621,0.0120547365782901,0.0498614958448753,4.98614958448753,3,73.8888888888889,0.649173955296404,4.43213296398892,9.92113296190898,0
+4622,0.0113777738363512,0.0342105263157895,3.42105263157895,3,65.7018478247087,0.654859218891916,2.89473684210526,0,0
+4623,0.0116580388612067,0.0664819944598338,6.64819944598338,5,66.3057406732975,0.63353115727003,3.601108033241,1.60504597425461,0
+4624,0.0121717540777583,0.0415512465373961,4.15512465373961,4,54.9757267192753,0.478323699421965,1.93905817174515,5.54194691975911,0
+4625,0.00915042511602284,0,0,0,NA,NA,0,NA,NA
+4626,0.0338219957519055,0.223684210526316,22.3684210526316,7,79.9497168487049,0.718486923335952,11.8421052631579,0.554868311040542,0
+4627,0.0326731919015394,0.171745152354571,17.1745152354571,3,84.2587985320084,0.832311408398365,11.9113573407202,7.37112293704863,0
+4628,0.0248069864272242,0.218836565096953,21.8836565096953,3,87.9781752461022,0.817122593718338,13.0193905817175,25.6146876117851,5.19557523727417
+4629,0.0135818984642036,0.07202216066482,7.20221606648199,3,78.2260580047492,0.789734255551511,6.37119113573407,37.2742486733657,0
+4630,0.00258155747440852,0.121052631578947,12.1052631578947,6,77.9043027388706,0.72286196837095,9.21052631578947,15.3087347590405,0
+4631,0.0638650454881658,0.678670360110803,67.8670360110803,2,97.4375059717636,0.73499849420268,60.1108033240997,2.79695706854061,0
+4632,0.0207901756064056,0.157894736842105,15.7894736842105,4,80.5458544527464,0.672831632653061,7.20221606648199,21.918595196908,5.19557523727417
+4633,-0.0658028217836656,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+4634,0.0198629190811756,0.271052631578947,27.1052631578947,1,95.0211914913291,0.918431066445507,27.1052631578947,2.15497071534685,0
+4635,0.0401680904974367,0.401662049861496,40.1662049861496,2,93.3035574626114,0.754035639412998,27.1468144044321,17.0488661535855,0
+4636,0.019096311111745,0.174515235457064,17.4515235457064,6,77.0770682691987,0.669615619280049,8.86426592797784,16.1071732006376,0
+4637,0.0218853902635369,0.166204986149584,16.6204986149584,5,78.3746044167812,0.723230258113979,7.4792243767313,6.99384376207987,0
+4638,0.0206706310221642,0.2,20,7,81.1202583237098,0.748134328358209,9.47368421052632,6.53445314733606,0
+4639,0.0196253580985976,0.0526315789473684,5.26315789473684,4,59.5127043011512,0.490421455938697,2.21606648199446,4.9841352261995,0
+4640,0.0257945009393565,0.174515235457064,17.4515235457064,6,78.5079174425017,0.570500305064063,8.86426592797784,3.86669137742784,0
+4641,0.00474942019651063,0.0692520775623269,6.92520775623269,6,56.6048738119855,0.462797619047619,1.93905817174515,8.40082550048828,0
+4642,0.0245572328043878,0.157894736842105,15.7894736842105,8,72.4167260528163,0.64859693877551,5.54016620498615,5.79737782896611,0
+4643,0.0191163936561392,0.1,10,7,69.3356953655725,0.682539682539683,6.57894736842105,4.06277257517764,0
+4644,0.0362121271791542,0.321329639889197,32.1329639889197,5,90.6185959679809,0.775471331389699,27.1468144044321,10.8767895657441,0
+4645,0.0282723029145156,0.21606648199446,21.606648199446,4,85.4855141282678,0.750422491934245,15.2354570637119,15.0198252629011,0
+4646,0.0271356935192666,0.135734072022161,13.5734072022161,6,73.9529454239948,0.69696275946276,7.20221606648199,7.09156837268752,0
+4647,0.0278960518232596,0.0447368421052632,4.47368421052632,3,65.1317858373031,0.706887052341598,2.36842105263158,6.54465630475213,0
+4648,0.0155510497388504,0.0914127423822715,9.14127423822715,6,65.3092299938783,0.612748419150858,4.43213296398892,17.0524968956456,0
+4649,0.0288833616141749,0.14404432132964,14.404432132964,7,69.8645929552331,0.553688956765208,5.26315789473684,5.95635448052333,0
+4650,0.0369346630166577,0.293628808864266,29.3628808864266,9,80.9715161182599,0.533045888512473,11.0803324099723,5.28375246839703,0
+4651,0.0303498573470279,0.163157894736842,16.3157894736842,5,84.2592089792185,0.7233869089215,10,4.4144596053708,0
+4652,0.0305873291571543,0.243767313019391,24.3767313019391,3,91.4725002823384,0.839971069270432,22.1606648199446,6.35218632221222,0
+4653,0.0474499916977403,0.465373961218837,46.5373961218837,7,87.3798206020247,0.680210596690623,16.8975069252078,38.5222736880893,0
+4654,0.0357357683374516,0.277008310249307,27.7008310249307,2,92.2344134998131,0.746424010217114,24.0997229916898,21.6453518104553,0
+4655,0.0298286893289562,0.128947368421053,12.8947368421053,5,74.7826807459872,0.726658034815134,5.26315789473684,17.7173694591133,0
+4656,0.0226182091089999,0.0969529085872576,9.69529085872576,3,76.8643104080327,0.751798180664269,6.09418282548476,0.803712967463902,0
+4657,0.00629761368439799,0,0,0,NA,NA,0,NA,NA
+4658,0.00652805150870603,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,31.1734504699707,31.1734504699707
+4659,0.0270800986063286,0.176315789473684,17.6315789473684,5,78.6279922292258,0.740586002566833,6.05263157894737,2.00788993266091,0
+4660,0.0418813854508633,0.434903047091413,43.4903047091413,1,97.1313051083973,0.901688453159041,43.4903047091413,7.43429117749451,0
+4661,0.0244742469613834,0.14404432132964,14.404432132964,7,75.1713745509779,0.684956910657794,9.69529085872576,45.4674451901362,15.5867252349854
+4662,0.0195825514265909,0.0526315789473684,5.26315789473684,4,62.2754164151702,0.599616858237548,3.04709141274238,32.167704532021,15.5867252349854
+4663,0.0314823499967468,0.15,15,5,76.6574669158181,0.663865546218487,6.57894736842105,68.7385093956663,44.3910140991211
+4664,0.0190913962639502,0.0609418282548476,6.09418282548476,2,79.2550861890239,0.686795072011105,5.54016620498615,41.5510437922044,5.19557523727417
+4665,0.0384067654051447,0.28808864265928,28.808864265928,3,90.2455052914774,0.872302794481783,22.1606648199446,22.6410799439137,5.19557523727417
+4666,0.0408085722038233,0.310249307479224,31.0249307479224,5,84.6849106677986,0.770328840112927,13.8504155124654,22.5400289254529,0
+4667,0.035640727543413,0.302631578947368,30.2631578947368,4,87.8318024647282,0.827648766328012,12.1052631578947,39.3437426981719,7.34765291213989
+4668,0.0144233459952344,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,77.0147079467773,70.6674652099609
+4669,0.015581197855976,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,37.4964170455933,25.977876663208
+4670,0.015851953891185,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,29.8745579719543,15.5867252349854
+4671,0.0251954650697754,0.0763157894736842,7.63157894736842,5,72.8084332824427,0.677517124325635,5.78947368421053,10.6706213128978,0
+4672,0.0191382840344695,0.0304709141274238,3.04709141274238,3,59.1111111111111,0.724952380952381,2.49307479224377,107.263637195934,58.0882949829102
+4673,0.0246310669945639,0.0470914127423823,4.70914127423823,4,57.7666935345723,0.664186046511628,2.77008310249307,141.695777444278,119.498229980469
+4674,0.0325412973585404,0.18005540166205,18.005540166205,4,83.050485866216,0.697799569480985,10.5263157894737,98.2156795208271,52.2148818969727
+4675,0.0390518285319367,0.286842105263158,28.6842105263158,4,91.5507104332738,0.857643246483226,25.7894736842105,60.8860005894932,25.977876663208
+4676,0.0309511212293617,0.171745152354571,17.1745152354571,5,80.2488650643384,0.809952929518147,11.9113573407202,4.73599400827962,0
+4677,0.0315827560825458,0.213296398891967,21.3296398891967,4,83.0398625552894,0.775683512841756,11.6343490304709,23.4212706925033,0
+4678,0.00876345678799853,0.0664819944598338,6.64819944598338,4,70.2204145607076,0.661721068249258,4.70914127423823,117.133577664693,99.9388809204102
+4679,0.0390790397838971,0.336842105263158,33.6842105263158,5,93.4003861664453,0.708767627222563,30.2631578947368,128.023396015167,78.1066207885742
+4680,0.0292008500836852,0.157894736842105,15.7894736842105,4,79.036652469757,0.75765306122449,7.20221606648199,53.1399816546524,36.369026184082
+4681,0.0428204253951856,0.307479224376731,30.7479224376731,6,82.1298330737726,0.66066,9.41828254847645,11.5993750116847,0
+4682,0.0526414504439191,0.457063711911357,45.7063711911357,4,94.4470382685627,0.739477040816327,38.5041551246537,16.0092958565914,0
+4683,0.0635853853752212,0.610526315789474,61.0526315789474,2,97.3565749424488,0.679795268709818,55,26.3391402487097,0
+4684,0.0721033587768014,0.606648199445983,60.6648199445983,2,97.8270139329881,0.794376553438277,59.5567867036011,19.5199219385783,0
+4685,0.0522385120997786,0.440443213296399,44.0443213296399,2,96.6773043592028,0.951037569510376,43.7673130193906,5.19996117645839,0
+4686,0.0479851170060698,0.376731301939058,37.6731301939058,5,90.3163879186047,0.747688172043011,22.1606648199446,29.5694779508254,7.34765291213989
+4687,0.057761566178095,0.55,55,2,97.9046433608126,0.754355898314767,54.7368421052632,12.1984926524915,0
+4688,0.0348667880204839,0.218836565096953,21.8836565096953,7,78.1358185877048,0.570238095238095,6.09418282548476,12.9838810148118,0
+4689,0.0605850630043812,0.518005540166205,51.8005540166205,4,91.8992145398513,0.796126503222377,32.409972299169,11.9418159755156,0
+4690,0.0260714345445232,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.656190476190476,3.04709141274238,16.0590502999046,15.5867252349854
+4691,0.0332565272132725,0.157894736842105,15.7894736842105,4,81.6249870933437,0.714543269230769,7.63157894736842,3.52561138470968,0
+4692,0.0319941197252714,0.188365650969529,18.8365650969529,2,88.8686859434721,0.792927409871799,14.1274238227147,1.02491993763868,0
+4693,0.03407239454372,0.213296398891967,21.3296398891967,9,77.6906982549807,0.598099627174814,10.2493074792244,4.31445623992325,0
+4694,0.0289950587173538,0.28808864265928,28.808864265928,3,91.7849494354624,0.804698391560374,25.7617728531856,5.54297656737841,0
+4695,0.0434274346288643,0.492105263157895,49.2105263157895,2,94.473197403207,0.817904100152745,28.4210526315789,13.3106912750611,0
+4696,0.06705073168083,0.634349030470914,63.4349030470914,1,98.5802481063074,0.910332836562345,63.4349030470914,2.21992405429157,0
+4697,0.021285309855882,0.191135734072022,19.1135734072022,3,89.3990929705215,0.867174232989924,17.7285318559557,64.6716163745825,11.6176595687866
+4698,0.0373452830593066,0.257617728531856,25.7617728531856,5,85.6067939850547,0.748449019960439,18.005540166205,25.05391768999,0
+4699,0.0132904852777038,0.0394736842105263,3.94736842105263,2,71.4033730948885,0.763387297633873,3.42105263157895,62.7799039204915,40.5787391662598
+4700,0.02815610039787,0.125730994152047,12.5730994152047,8,64.3924522954327,0.58695652173913,5.84795321637427,10.6384034267692,0
+4701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4706,0.075122874211765,0.651315789473684,65.1315789473684,3,96.1502306697044,0.871104515581938,63.8157894736842,3.08996286295881,0
+4707,0.0739014642184131,0.797783933518006,79.7783933518006,1,99.3356347951183,0.817520093009149,79.7783933518006,2.64990335537328,0
+4708,0.0319130934692573,0.152354570637119,15.2354570637119,5,80.8203781934318,0.639869281045752,9.69529085872576,9.73655304475264,0
+4709,0.0534758126457322,0.570637119113573,57.0637119113573,4,95.0235346587223,0.708110839720374,43.213296398892,4.87815038903246,0
+4710,0.0633615544752071,0.839473684210526,83.9473684210526,1,99.505604707493,0.637819290888296,83.9473684210526,6.45479094944778,0
+4711,0.0675967073073182,0.842105263157895,84.2105263157895,1,99.5015292450824,0.657358929610238,84.2105263157895,8.18571931123734,0
+4712,0.0729976383726683,0.955678670360111,95.5678670360111,1,99.8726354782749,0.480924079754602,95.5678670360111,7.9242086769878,0
+4713,0.0738962828400971,0.894736842105263,89.4736842105263,1,99.6822873347675,0.377049180327869,89.4736842105263,7.64779947121446,0
+4714,0.0768137077604862,0.855263157894737,85.5263157894737,1,99.5603354844149,0.582974936971675,85.5263157894737,8.04550703635583,0
+4715,0.0701207528948536,0.736842105263158,73.6842105263158,2,96.4129131131712,0.771543086172345,39.8891966759003,8.57997360444607,0
+4716,0.054980837134729,0.61218836565097,61.218836565097,2,97.8273786880352,0.812239944521498,59.8337950138504,7.4976482110865,0
+4717,0.0490055615257933,0.578947368421053,57.8947368421053,5,95.4813937853513,0.731362467866324,52.0775623268698,8.03427545647872,0
+4718,0.0629170105657785,0.818421052631579,81.8421052631579,1,99.430180885378,0.586486620171143,81.8421052631579,10.7065993137298,0
+4719,0.0518132442052157,0.573407202216066,57.3407202216067,3,95.0971922319266,0.738185191431945,37.1191135734072,13.5969363088193,0
+4720,0.0559785729416045,0.609418282548476,60.9418282548476,4,94.7953893378511,0.787683791731534,52.3545706371191,20.0231239600615,0
+4721,0.0501476737375209,0.50415512465374,50.415512465374,3,94.7800840179772,0.724715282727981,42.1052631578947,17.6489492484501,0
+4722,0.0518752940289184,0.6,60,2,95.6752071045084,0.747058823529412,36.3157894736842,10.3099479173359,0
+4723,0.0485349919261937,0.487534626038781,48.7534626038781,4,94.4384102243339,0.72981288981289,41.5512465373961,12.1410252885385,0
+4724,0.0446315414487988,0.429362880886427,42.9362880886427,3,93.4601922988327,0.784789644012945,31.5789473684211,10.5734070070328,0
+4725,0.0464587754908597,0.45983379501385,45.983379501385,2,95.4748914013744,0.764052287581699,38.5041551246537,10.4764021017465,0
+4726,0.0479220931212982,0.58421052631579,58.4210526315789,2,95.6096186607411,0.726961413807864,37.3684210526316,7.86122594008575,0
+4727,0.0411468900995228,0.393351800554017,39.3351800554017,4,90.9198775183154,0.752739726027397,22.7146814404432,7.83772996109976,0
+4728,0.0398511721335295,0.46814404432133,46.814404432133,2,94.4231675585407,0.764973958333333,37.3961218836565,8.46815221549491,0
+4729,0.0472996777105416,0.542936288088643,54.2936288088643,2,97.6690314154442,0.753563103563103,53.7396121883656,8.91437288206451,0
+4730,0.0376579782275353,0.360526315789474,36.0526315789474,4,92.6465444548778,0.72477366255144,29.4736842105263,10.6738838940641,0
+4731,0.0317168422732927,0.321329639889197,32.1329639889197,4,92.311321168931,0.733372206025267,26.8698060941828,16.8286792779791,0
+4732,0.0272774473277702,0.191135734072022,19.1135734072022,6,79.510311773258,0.7036963659006,10.2493074792244,13.0007323389468,0
+4733,0.016800771714483,0.0443213296398892,4.43213296398892,3,60.2491415270706,0.564009661835749,1.93905817174515,8.51946651935577,0
+4734,0.0302712199416419,0.25,25,1,94.5927206623699,0.92156862745098,25,3.23109186574032,0
+4735,0.0232900776626444,0.265927977839335,26.5927977839335,1,94.7823367794258,0.897038174637999,26.5927977839335,20.1953626324733,0
+4736,0.03816032641119,0.285318559556787,28.5318559556787,5,91.3889379034665,0.833605698721978,26.3157894736842,59.9702175797768,5.19557523727417
+4737,0.0176692034814515,0.0858725761772853,8.58725761772853,4,74.082843354983,0.628060606060606,4.98614958448754,12.8852395088442,0
+4738,0.0218025297509341,0.110526315789474,11.0526315789474,6,73.3042121964086,0.588299024918743,5.26315789473684,17.9797786417462,0
+4739,0.0183236495464482,0.0415512465373961,4.15512465373961,2,73.4201733450948,0.810299527062533,3.8781163434903,2.42460177739461,0
+4740,0.00822327824406736,0,0,0,NA,NA,0,NA,NA
+4741,-0.0169429593843977,0,0,0,NA,NA,0,NA,NA
+4742,0.00651332392724655,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,7.14063517252604,0
+4743,0.0479845344963618,0.321052631578947,32.1052631578947,3,92.93292450308,0.920025255182574,30.2631578947368,21.2958982381664,0
+4744,0.0234874620369546,0.130193905817175,13.0193905817175,5,76.3123030101305,0.770063694267516,7.4792243767313,13.3169626580908,0
+4745,0.0214931705520844,0.074792243767313,7.4792243767313,6,57.7976278126923,0.547556050689319,1.93905817174515,23.016106835118,5.19557523727417
+4746,0.0509823798642164,0.362880886426593,36.2880886426593,4,90.3770227018614,0.789849008550118,22.7146814404432,10.011240373131,0
+4747,0.037492886472089,0.25,25,2,90.4701305512817,0.882352941176471,15.5263157894737,73.1103873804996,37.8243598937988
+4748,0.00554962194940866,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,4.76078987121582,0
+4749,0.0351919985437247,0.246537396121884,24.6537396121884,7,79.0786191918011,0.691153348131706,11.6343490304709,6.33491888474882,0
+4750,0.0351348476844951,0.21606648199446,21.606648199446,6,79.8292763498273,0.759666103344088,11.6343490304709,8.44273314109215,0
+4751,0.0296043078027555,0.157894736842105,15.7894736842105,6,79.5900950145991,0.623197115384615,8.68421052631579,4.44785041014353,0
+4752,0.0309744213912197,0.163434903047091,16.3434903047091,5,77.8368804474252,0.73045708349565,7.20221606648199,6.97300704859071,0
+4753,0.0283134304590628,0.168975069252078,16.8975069252078,5,80.1411812932213,0.727547169811321,7.4792243767313,33.1618275017035,0
+4754,0.0172384754591589,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,83.6815147399902,82.1492538452148
+4755,0.0173919079086844,0,0,0,NA,NA,0,NA,NA
+4756,0.0138296827988804,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,5.19557523727417,0
+4757,0.00995646245471694,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.790116279069767,4.70914127423823,8.90246234220617,0
+4758,0.00468425026935174,0,0,0,NA,NA,0,NA,NA
+4759,0.0539708580417745,0.571052631578947,57.1052631578947,2,96.1143176341347,0.786490919030553,47.8947368421053,2.52937736818867,0
+4760,0.0296543235892583,0.207756232686981,20.7756232686981,5,81.6390791060467,0.741815003178639,10.5263157894737,6.23444213231405,0
+4761,-0.0104212366965142,0,0,0,NA,NA,0,NA,NA
+4762,0.0270420639890819,0.119113573407202,11.9113573407202,4,80.6988764432868,0.826563591893781,9.69529085872576,21.6501931700596,5.19557523727417
+4763,0.0214880845096655,0.0473684210526316,4.73684210526316,3,71.8804498699624,0.650092081031307,3.94736842105263,24.1571884685093,5.19557523727417
+4764,0.0171494241440288,0.0332409972299169,3.32409972299169,2,65.5399298791045,0.817461655149166,2.77008310249307,12.0504109462102,0
+4765,0.044702296879084,0.313019390581717,31.3019390581717,3,92.2571782449792,0.82161211258697,27.1468144044321,16.9938719842286,0
+4766,0.0316395970204159,0.202216066481994,20.2216066481994,6,79.8522549068778,0.745388454861111,11.3573407202216,14.2630898135982,0
+4767,0.031936622190532,0.202631578947368,20.2631578947368,5,83.694933526024,0.760240729955349,9.47368421052632,34.0870138762833,0
+4768,0.0310241252588949,0.221606648199446,22.1606648199446,4,83.6088483275422,0.791915192220941,9.41828254847645,21.5481523752213,0
+4769,0.0184715383744897,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.624154086413326,6.09418282548476,18.5043639269742,5.19557523727417
+4770,0.021108995816155,0.0443213296398892,4.43213296398892,3,64.3772896090086,0.476811594202899,2.21606648199446,89.2237505912781,44.6940307617188
+4771,0.0398362927944522,0.292105263157895,29.2105263157895,5,89.0671390405508,0.745724907063197,20.2631578947368,45.9835729169416,5.19557523727417
+4772,0.0280896286548495,0.132963988919668,13.2963988919668,6,74.9854939087799,0.732759292449154,9.14127423822715,101.254386266073,36.7382659912109
+4773,0.0318011526711552,0.185595567867036,18.5595567867036,5,80.5057675546592,0.758619687191116,8.58725761772853,137.620158409005,120.510467529297
+4774,0.0235926307109152,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,139.378095626831,129.889373779297
+4775,0.0324536832873587,0.155263157894737,15.5263157894737,7,74.2277818554715,0.698246900006108,6.05263157894737,73.0605880607993,37.8243598937988
+4776,0.0409960218182335,0.277008310249307,27.7008310249307,2,90.6229629698675,0.869369944657301,14.1274238227147,17.7122515201569,0
+4777,0.0307029783382297,0.163434903047091,16.3434903047091,3,88.1030498599438,0.882807427606804,15.2354570637119,28.344365718001,5.19557523727417
+4778,0.0173348582347445,0.0526315789473684,5.26315789473684,3,66.058718457642,0.672413793103448,3.32409972299169,107.103869789525,83.1292037963867
+4779,0.0298264102854055,0.113157894736842,11.3157894736842,7,65.2986924249004,0.5928123969667,3.94736842105263,56.9829811273619,0
+4780,0.0377533918554918,0.221606648199446,22.1606648199446,6,82.5037836660719,0.719537867776051,13.2963988919668,37.6143134951592,0
+4781,0.0616185598977044,0.628808864265928,62.8808864265928,1,98.5495872664447,0.777089728661656,62.8808864265928,7.26329205844896,0
+4782,0.0432045890749245,0.385041551246537,38.5041551246537,3,92.8953595972769,0.69910264595304,29.9168975069252,29.8233499904331,0
+4783,0.0681257616314963,0.492105263157895,49.2105263157895,3,93.2473746407874,0.869118571984785,33.9473684210526,38.1012731235933,0
+4784,0.0504177795991183,0.437673130193906,43.7673130193906,2,94.0293313303335,0.797638865296416,38.2271468144044,49.0199807535244,7.34765291213989
+4785,0.032898631022214,0.3601108033241,36.01108033241,3,93.9223565936625,0.821962847279303,32.9639889196676,8.72305272175715,0
+4786,0.0353310404036034,0.310249307479224,31.0249307479224,4,90.1276345009885,0.777506063859398,21.0526315789474,21.2323087113244,0
+4787,0.0699163032685312,0.5,50,1,97.7602315628138,0.920454545454545,50,17.4723381971058,0
+4788,0.0372510241766053,0.299168975069252,29.9168975069252,2,91.1656397032491,0.860970913144826,25.7617728531856,46.8430751473815,0
+4789,0.0659348925355038,0.529085872576177,52.9085872576177,2,94.7358511100303,0.826038551013626,27.1468144044321,6.21637261475568,0
+4790,0.0287081874932654,0.18005540166205,18.005540166205,1,92.4630002378058,0.870485529777565,18.005540166205,6.44754087741558,0
+4791,0.0172306077189875,0.263157894736842,26.3157894736842,2,90.9654919450016,0.826587301587302,19.4736842105263,15.5643176174164,5.19557523727417
+4792,0.0324969501107413,0.279778393351801,27.9778393351801,5,90.5702634635331,0.723841903952401,22.7146814404432,3.66043578988255,0
+4793,0.0352071614617061,0.321329639889197,32.1329639889197,6,88.7751876062983,0.712322643343052,22.9916897506925,10.7439648652899,0
+4794,0.0311550241216099,0.25207756232687,25.207756232687,6,82.4032188778228,0.628600823045268,9.14127423822715,4.92760959562364,0
+4795,0.0296871155979225,0.360526315789474,36.0526315789474,2,93.5746303882468,0.849876543209877,27.6315789473684,7.26155786096615,0
+4796,0.0624119816675274,0.573407202216066,57.3407202216066,3,96.4105251582739,0.80516107269354,50.6925207756233,3.74246178963334,0
+4797,0.0655802280862669,0.623268698060942,62.3268698060942,2,96.7082868667868,0.772478991596639,56.2326869806094,6.26950892554389,0
+4798,0.0586015703275707,0.6398891966759,63.98891966759,2,98.1612957523866,0.890469391397466,63.4349030470914,6.93328267258483,0
+4799,0.0320382052103116,0.189473684210526,18.9473684210526,5,83.6081356283251,0.640556294099601,11.5789473684211,21.6546812123722,0
+4800,0.0234107805955685,0.134502923976608,13.4502923976608,5,74.0195285197888,0.688929313929314,4.67836257309942,10.3523930155713,0
+4801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4806,0.0139252448561341,0.0526315789473684,5.26315789473684,2,54.4135192072642,0.577777777777778,2.63157894736842,30.2747507095337,20.7823009490967
+4807,0.00501916281980243,0.0249307479224377,2.49307479224377,2,56.0135633059638,0.743607954545455,1.66204986149584,32.0808809068468,23.2353191375732
+4808,0.00553464879307779,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.5646018981934,41.5646018981934
+4809,0.0223072451614153,0.149584487534626,14.9584487534626,5,82.8808060838939,0.848271514132605,13.0193905817175,25.0888162983788,0
+4810,0.0322839964026475,0.35,35,1,96.2673090602228,0.853782581055308,35,28.4480232367838,10.3911504745483
+4811,0.0309736191232224,0.282548476454294,28.2548476454294,1,95.1039981574685,0.885752262801443,28.2548476454294,30.6534926190096,10.3911504745483
+4812,0.0234250192476196,0.207756232686981,20.7756232686981,1,93.3670498726635,0.89481351981352,20.7756232686981,28.2010008366903,10.3911504745483
+4813,0.0249441896375882,0.202216066481994,20.2216066481994,3,86.587010391367,0.735595703125,13.5734072022161,20.7525017098205,0
+4814,0.0219229658641301,0.139473684210526,13.9473684210526,4,82.2905744053332,0.693517491682629,9.73684210526316,25.3181032684614,0
+4815,0.0315483596670468,0.329639889196676,32.9639889196676,2,92.0778151395556,0.83425160697888,19.3905817174515,14.7564003808158,0
+4816,0.0262059416353197,0.260387811634349,26.0387811634349,3,91.2441224567419,0.822944533618691,22.4376731301939,24.3654210110928,0
+4817,0.0165620051762527,0.146814404432133,14.6814404432133,4,78.9656320644293,0.678000570857714,6.64819944598338,23.8558946915393,0
+4818,0.0207909817843565,0.0973684210526316,9.73684210526316,5,71.9062492512838,0.600439707498925,3.94736842105263,38.9104439116813,5.19557523727417
+4819,0.0309057307844079,0.357340720221607,35.7340720221607,2,93.0931073361075,0.847707263389582,26.3157894736842,22.4897982870886,0
+4820,0.0341640642652144,0.379501385041551,37.9501385041551,3,92.9692447757772,0.690571428571429,29.9168975069252,25.5253777747607,0
+4821,0.00499009785032444,0.113573407202216,11.3573407202216,4,76.4630797971566,0.656657608695652,5.81717451523546,24.3286992515006,10.3911504745483
+4822,0.00611777302467185,0.0236842105263158,2.36842105263158,2,56.6643481405042,0.658580413297394,1.57894736842105,6.72554604212443,0
+4823,0.0142973300713201,0.0831024930747922,8.31024930747922,2,78.552212928781,0.777421542635181,4.98614958448754,10.6513673941294,0
+4824,0.0180194694064722,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.818007662835249,5.26315789473684,0.273451328277588,0
+4825,0.0246183100728324,0.07202216066482,7.20221606648199,4,66.8352061663435,0.658318165271205,2.49307479224377,3.38742168133075,0
+4826,0.0108887692809958,0.0473684210526316,4.73684210526316,6,47.8356082755429,0.455698792715367,1.57894736842105,1.73185841242472,0
+4827,0.00745455181733073,0.038781163434903,3.8781163434903,4,55.2675078003646,0.635878962536023,2.49307479224377,2.22667510168893,0
+4828,0.0035250015958945,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0
+4829,0.0132427062488411,0.0554016620498615,5.54016620498615,2,72.2305028273429,0.795099801343298,3.32409972299169,4.06561076641083,0
+4830,0.0181338651963942,0.131578947368421,13.1578947368421,2,88.3911322314506,0.783244206773619,12.3684210526316,8.22446613311768,0
+4831,0.0209324627711721,0.121883656509695,12.1883656509695,4,76.9937978602495,0.75377270014494,7.4792243767313,8.16407410664992,0
+4832,0.0165946827512112,0.166204986149584,16.6204986149584,3,84.6426977941745,0.827018911321237,10.803324099723,2.7406903107961,0
+4833,0.0344877335454313,0.285318559556787,28.5318559556787,3,93.4651111355743,0.841169076052797,27.4238227146814,3.73787576249502,0
+4834,0.0211476075813775,0.0605263157894737,6.05263157894737,5,67.7454820969376,0.586056644880174,4.21052631578947,2.04762027574622,0
+4835,0.0360986535774941,0.32409972299169,32.409972299169,1,95.7969409923339,0.895317816269719,32.409972299169,24.2705467705034,0
+4836,0.0547304707187501,0.415512465373961,41.5512465373961,2,96.1944775232403,0.850685049547609,40.7202216066482,77.0097597249349,32.8597030639648
+4837,0.0565271279840765,0.53185595567867,53.185595567867,2,94.912191410988,0.837992819626355,32.6869806094183,48.7481000224749,15.5867252349854
+4838,0.0509884074877176,0.336842105263158,33.6842105263158,3,92.2720507336935,0.799373254308877,28.6842105263158,24.1118313036859,0
+4839,0.0143559564993996,0.138504155124654,13.8504155124654,1,90.6277457305062,0.918063173822584,13.8504155124654,3.16038669586182,0
+4840,-0.00842584605195756,0,0,0,NA,NA,0,NA,NA
+4841,-0.00509409593697629,0,0,0,NA,NA,0,NA,NA
+4842,0.0152851099605226,0.03601108033241,3.601108033241,2,64.1225578072574,0.769476372924649,1.93905817174515,0,0
+4843,0.0108634239239683,0.0815789473684211,8.1578947368421,4,68.692097724928,0.673352435530086,3.15789473684211,3.1562824403086,0
+4844,0.0157200606584428,0.0609418282548476,6.09418282548476,2,78.4815279838818,0.812077043206663,5.54016620498615,84.9599285992709,18.7329120635986
+4845,0.000894715115663381,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,9.74466521399362,5.19557523727417
+4846,0.0292515169319289,0.0554016620498615,5.54016620498615,6,52.4637536905992,0.521899536467695,2.49307479224377,20.7377298355103,0
+4847,0.0474318706114948,0.318421052631579,31.8421052631579,1,95.8247993978455,0.933309933309933,31.8421052631579,82.6487072085546,46.7601776123047
+4848,0.00441006428981813,0,0,0,NA,NA,0,NA,NA
+4849,0.0205010291531349,0.135734072022161,13.5734072022161,4,78.0364976156744,0.80715811965812,7.4792243767313,4.85308889466889,0
+4850,0.0137282891847258,0.105263157894737,10.5263157894737,2,84.0960296911692,0.858076563958917,9.41828254847645,8.65850084706357,0
+4851,0.021603016458271,0.0447368421052632,4.47368421052632,3,62.1632673016793,0.706887052341598,2.36842105263158,15.8511247634888,0
+4852,0.0263240667603558,0.163434903047091,16.3434903047091,5,81.561562332268,0.73045708349565,11.9113573407202,10.3814662998006,0
+4853,0.0261377549292958,0.0914127423822715,9.14127423822715,5,66.943692797054,0.592366757000903,3.8781163434903,59.6425766222405,41.5646018981934
+4854,0.0152663299122348,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,58.9032945632935,46.4706382751465
+4855,0.0128871643949137,0,0,0,NA,NA,0,NA,NA
+4856,0.0273799641650245,0.210526315789474,21.0526315789474,3,90.0457745695349,0.848756218905473,19.1135734072022,7.93218818463777,0
+4857,0.0205072768777818,0.127423822714681,12.7423822714681,6,72.3246692068682,0.720838420838421,7.4792243767313,9.60547496961511,0
+4858,0.0196438708178832,0.160664819944598,16.0664819944598,2,86.1447460553739,0.785544554455445,9.14127423822715,3.91073224462312,0
+4859,0.0232827696675246,0.134210526315789,13.4210526315789,5,74.640791539383,0.64154700765119,6.05263157894737,8.89332850774129,0
+4860,0.0235632002441786,0.182825484764543,18.2825484764543,5,79.083692835749,0.765895357406043,8.31024930747922,14.7875908649329,0
+4861,0.000694175031461167,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.72713529856387,4.98614958448753,14.0251213709513,5.19557523727417
+4862,0.0109676447972437,0.0637119113573407,6.37119113573407,4,66.8270919166365,0.732988165680473,4.15512465373961,21.1884453607642,7.34765291213989
+4863,0.0225863711472477,0.0631578947368421,6.31578947368421,5,65.4755530986231,0.634831460674157,3.15789473684211,45.8001869916916,10.3911504745483
+4864,0.00407608654135795,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.937359014402221,6.09418282548476,29.8308927362615,15.5867252349854
+4865,0.0359469931610567,0.318559556786704,31.8559556786704,4,91.1848400187844,0.781289086929331,24.3767313019391,30.8641549068948,0
+4866,0.0230797699259307,0.0692520775623269,6.92520775623269,4,68.8403070719093,0.570238095238095,3.601108033241,75.6637455749512,52.9846801757812
+4867,0.0225294170062529,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,25.6751599311829,15.5867252349854
+4868,0.0251898728670627,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,16.4759631838117,10.3911504745483
+4869,0.0236339986164602,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,100.971559797015,80.8241806030273
+4870,0.0219916762057576,0.038781163434903,3.8781163434903,6,38.8666891304194,0.375792507204611,1.10803324099723,95.4199115208217,52.9846801757812
+4871,0.027953743678173,0.118421052631579,11.8421052631579,6,74.8331345496869,0.656716417910448,5.26315789473684,51.7387538592021,5.19557523727417
+4872,0.0201525353479604,0.132963988919668,13.2963988919668,2,84.1603496020935,0.845281695628458,8.03324099722992,63.0478377342224,31.1734504699707
+4873,0.0229579958708543,0.0914127423822715,9.14127423822715,4,72.3351721830413,0.714656729900632,4.15512465373961,100.179286147609,59.2386741638184
+4874,0.020195744229709,0.0526315789473684,5.26315789473684,2,74.9231842567891,0.89080459770115,4.70914127423823,124.478572644685,102.472763061523
+4875,0.0373999583091637,0.234210526315789,23.4210526315789,3,86.7274827890679,0.802891784996434,10.5263157894737,111.77857015374,62.5630111694336
+4876,0.0308081618534131,0.163434903047091,16.3434903047091,1,91.8133927298019,0.906245942085443,16.3434903047091,88.0629894450559,56.1987419128418
+4877,0.0228679217249927,0.102493074792244,10.2493074792244,2,86.5209471766849,0.835610200364299,9.97229916897507,139.63394288759,113.947868347168
+4878,0.0303878991440883,0.0914127423822715,9.14127423822715,5,70.4947400827579,0.653511743450768,5.54016620498615,102.398529515122,77.2377777099609
+4879,0.0317548571802418,0.207894736842105,20.7894736842105,2,90.9546220600092,0.846701471286189,18.4210526315789,55.7064591359489,0
+4880,0.0567484429116436,0.437673130193906,43.7673130193906,6,90.6849473224227,0.834431798878886,34.9030470914127,8.28797265849536,0
+4881,0.0463259213478991,0.434903047091413,43.4903047091413,1,97.1313051083973,0.797232434640523,43.4903047091413,15.5887266389883,0
+4882,0.0467389120917927,0.440443213296399,44.0443213296399,3,91.7473108412294,0.767428455174285,27.9778393351801,50.8426654023944,16.4298515319824
+4883,0.0397268549278746,0.213157894736842,21.3157894736842,9,73.1203752132992,0.594017094017094,5.78947368421053,68.0094784395194,34.8529777526855
+4884,0.0169304582830344,0.10803324099723,10.803324099723,3,83.9015132556722,0.689536550406116,9.41828254847645,25.3360408391708,11.6176595687866
+4885,0.0193554435073336,0.0609418282548476,6.09418282548476,5,61.9833051347794,0.624154086413326,3.04709141274238,30.1960126053203,5.19557523727417
+4886,0.0419963236573567,0.332409972299169,33.2409972299169,3,91.1109788860871,0.773249838212341,21.8836565096953,37.2833404858907,0
+4887,0.0237254328442328,0.163157894736842,16.3157894736842,4,81.1349954616041,0.82296762170976,9.73684210526316,48.7002142014042,15.5867252349854
+4888,0.0653972117684348,0.689750692520776,68.9750692520776,1,98.8662440222416,0.88241492949111,68.9750692520776,4.22718386477735,0
+4889,0.0341223776552918,0.263157894736842,26.3157894736842,8,81.3495792871358,0.664705882352941,11.3573407202216,4.1544907921239,0
+4890,0.043649701520264,0.354570637119114,35.4570637119114,4,89.8022360454083,0.667520123781982,21.606648199446,2.340316593647,0
+4891,0.0257725515700593,0.134210526315789,13.4210526315789,6,73.5745559528935,0.61499493414387,5.26315789473684,36.3191458571191,5.19557523727417
+4892,0.00597883185753573,0.0332409972299169,3.32409972299169,3,52.9815828816284,0.574077195348053,1.38504155124654,81.3572826385498,52.9846801757812
+4893,0.0239643766620467,0.0831024930747922,8.31024930747922,5,69.7079120396233,0.666132313952771,3.8781163434903,22.7096607844035,0
+4894,0.0359990269445458,0.21606648199446,21.606648199446,5,85.2026176376561,0.76890971475393,15.5124653739612,4.5227811947847,0
+4895,0.0540288533398875,0.521052631578947,52.1052631578947,2,96.9450359134307,0.778123783573375,49.2105263157895,11.5130445210621,0
+4896,0.0542738469655515,0.562326869806094,56.2326869806094,1,98.1470079330398,0.890910922338247,56.2326869806094,1.51625416431521,0
+4897,0.0423808157433681,0.343490304709141,34.3490304709141,3,91.0627498990104,0.823984997655884,19.9445983379501,38.3127317890044,5.19557523727417
+4898,0.0436303442913207,0.382271468144044,38.2271468144044,1,96.5700699531021,0.820129546586946,38.2271468144044,6.53858656468599,0
+4899,0.0195820930936239,0.263157894736842,26.3157894736842,9,80.4327441689393,0.660714285714286,11.0526315789474,18.5601783800125,0
+4900,0.033430442868593,0.192982456140351,19.2982456140351,4,86.8287069223704,0.709073724007562,15.7894736842105,6.65661173878294,0
+4901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+4906,0.0105029787148169,0,0,0,NA,NA,0,NA,NA
+4907,0.0121365876871718,0.0315789473684211,3.15789473684211,5,46.3096159973508,0.574808184143223,2.10526315789474,28.8433180252711,7.34765291213989
+4908,0.00220159783847952,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,3.36264696121216,0
+4909,0.0113027673835045,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.928030303030303,7.36842105263158,11.6900440795081,5.19557523727417
+4910,0.00236193602077947,0.02,2,3,48.963481806847,0.591836734693878,1.5,7.29119282960892,0
+4911,0.0356686780740826,0.268421052631579,26.8421052631579,4,91.3878666031835,0.828203011361403,23.6842105263158,9.14576148051842,0
+4912,0.050212047463528,0.571052631578947,57.1052631578947,2,97.7518513225814,0.826884528943692,56.3157894736842,10.1270468092184,0
+4913,0.0283583135161543,0.2,20,1,93.3162351653592,0.925373134328358,20,9.86551085898751,0
+4914,0.0516106036847214,0.44,44,2,96.6752875427636,0.868131868131868,43.25,33.7524753565138,0
+4915,0.00450028505736937,0.0921052631578947,9.21052631578947,4,73.6436590429872,0.639180409795102,4.73684210526316,14.3757022721427,0
+4916,-0.0245829341828204,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.693548387096774,2.10526315789474,1.29889380931854,0
+4917,0.00685929180137081,0.0368421052631579,3.68421052631579,2,65.5921238233101,0.740437158469945,2.36842105263158,51.5461322239467,44.0859146118164
+4918,-0.0190493751114991,0.0575,5.75,2,74.8253295014936,0.705275567344533,4,3.17709315341452,0
+4919,0.000845062831726146,0.105263157894737,10.5263157894737,3,80.9155885533577,0.783143107989464,8.42105263157895,0,0
+4920,0.0264914310999493,0.25,25,4,87.1080132689396,0.796078431372549,17.8947368421053,0.273451328277588,0
+4921,0.0206352034991488,0.128947368421053,12.8947368421053,4,84.1115476372633,0.808660624370594,11.3157894736842,3.81095967000845,0
+4922,0.0327445781639108,0.19,19,6,84.4687444398322,0.677538234752165,14,4.40458671670211,0
+4923,0.0399222080399723,0.334210526315789,33.4210526315789,5,89.8410847366818,0.746419588316822,18.1578947368421,7.94227966924352,0
+4924,0.0352866628492177,0.307894736842105,30.7894736842105,3,90.9635860274179,0.795537699978478,20,6.65869014691084,0
+4925,0.0248223735748692,0.197368421052632,19.7368421052632,4,85.8244654378869,0.801788375558868,13.1578947368421,4.79673800150553,0
+4926,0.0178546786028892,0.2125,21.25,5,88.6854635627108,0.772942289498581,18.5,6.3001586745767,0
+4927,0.0199242531453245,0.171052631578947,17.1052631578947,4,87.5624520019307,0.743784239359461,14.7368421052632,6.08050701434796,0
+4928,0.0248573824064734,0.165789473684211,16.5789473684211,1,92.1272104089021,0.825638084313163,16.5789473684211,6.43847787947882,0
+4929,0.0261169529762379,0.202631578947368,20.2631578947368,2,89.8301904832583,0.824791302659678,15.7894736842105,5.88669744714514,0
+4930,0.029868746809243,0.2075,20.75,4,83.2103386730595,0.69098049314363,7.75,7.12850894698177,0
+4931,0.040682480462764,0.368421052631579,36.8421052631579,4,87.9944285788659,0.771158854166667,14.2105263157895,6.95387685639518,0
+4932,0.0419392531124973,0.434210526315789,43.421052631579,3,93.6145750368367,0.773255813953488,29.7368421052632,6.43046288056807,0
+4933,0.019275935214261,0.186842105263158,18.6842105263158,2,91.8756448926425,0.773721682847896,18.1578947368421,0.731771160179461,0
+4934,0.010868160742848,0.05,5,1,81.7256002368443,0.898132427843803,5,0,0
+4935,0.0656107532773412,0.507894736842105,50.7894736842105,3,95.0033063888705,0.846742150389866,38.1578947368421,31.2447504997253,0
+4936,0.0265333920163884,0.194736842105263,19.4736842105263,5,79.4262344852979,0.71342383107089,7.63157894736842,48.8908631866043,5.19557523727417
+4937,0.0302569250890979,0.292105263157895,29.2105263157895,3,93.269089126385,0.802230483271375,26.8421052631579,42.6046405740686,10.3911504745483
+4938,0.0272573242240469,0.145,14.5,5,77.4913605603955,0.730994152046784,6.75,13.9609510487524,0
+4939,0.0111197816984618,0.152631578947368,15.2631578947368,2,86.1736483937329,0.822981366459627,8.68421052631579,5.82459031302353,0
+4940,0.00691789767385528,0.139473684210526,13.9473684210526,5,79.7912089984492,0.782908223275196,9.21052631578947,8.0025617761432,0
+4941,0.0303580340896588,0.226315789473684,22.6315789473684,5,86.4080548255092,0.771908763505402,16.5789473684211,4.31086318437443,0
+4942,0.0348956781309234,0.221052631578947,22.1052631578947,3,88.8051758579426,0.793216034826773,17.6315789473684,6.76087431680588,0
+4943,0.0331048794005983,0.3225,32.25,3,94.3776216235217,0.861819894794693,31,5.26701932729677,0
+4944,0.0242321890141044,0.218421052631579,21.8421052631579,3,91.0505487745551,0.869442726585584,20.5263157894737,78.8566180769219,16.4298515319824
+4945,-0.00935265838092355,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,68.6831378936768,41.5646018981934
+4946,0.0123879321061969,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,12.9760274205889,7.34765291213989
+4947,0.0194634826823312,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,58.2557818094889,47.9008369445801
+4948,0.0252975800631248,0.165789473684211,16.5789473684211,3,89.6701348592395,0.83653570404359,15.7894736842105,58.3475307888455,36.7382659912109
+4949,0.00714880454834201,0.110526315789474,11.0526315789474,2,82.9266003588486,0.841653471122593,7.63157894736842,11.569273971376,0
+4950,0.0261079506791822,0.157894736842105,15.7894736842105,1,91.7992580895076,0.942908653846154,15.7894736842105,27.7044236818949,14.6953058242798
+4951,0.0213276696444518,0.0325,3.25,4,49.3286888608125,0.540625897215045,1.5,55.4520298884465,41.5646018981934
+4952,0.0247219652274094,0.144736842105263,14.4736842105263,3,87.4964626134485,0.852307692307692,13.4210526315789,22.0462015151978,0
+4953,0.0211571233175499,0.0342105263157895,3.42105263157895,4,49.4096621895141,0.482288828337875,1.05263157894737,54.2942886352539,31.6034507751465
+4954,0.0137346028809445,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,115.360496520996,115.360496520996
+4955,0.018559970529941,0.02,2,4,32.7240927147903,0.387755102040816,0.75,69.9137394428253,25.977876663208
+4956,0.020761128433208,0.0657894736842105,6.57894736842105,3,73.2687709550277,0.652112676056338,3.94736842105263,3.92638395309448,0
+4957,0.0313218256746615,0.213157894736842,21.3157894736842,4,88.1686762383312,0.682274247491639,15.7894736842105,12.5969567181152,0
+4958,0.0106527042526929,0.0236842105263158,2.36842105263158,2,61.8884961483246,0.743935309973046,2.10526315789474,10.3255417082045,5.19557523727417
+4959,0.0203457509226064,0.19,19,3,85.6567735341795,0.834162520729685,10,14.979434929396,0
+4960,0.0405230864647341,0.328947368421053,32.8947368421053,5,86.7102722391262,0.724280901788028,20.5263157894737,34.827092590332,15.5867252349854
+4961,0.0353918838718911,0.234210526315789,23.4210526315789,3,91.360339512213,0.786466100412803,21.0526315789474,6.33916640549563,0
+4962,0.0164852213320142,0.0263157894736842,2.63157894736842,3,50.8400314805912,0.604989604989605,1.31578947368421,37.9049476623535,15.5867252349854
+4963,0.0315548474209299,0.2175,21.75,2,92.4279988766051,0.818612800164897,20.25,49.6168871473992,27.9790287017822
+4964,0.00969534691846907,0.0368421052631579,3.68421052631579,2,72.5157854862241,0.740437158469945,3.42105263157895,46.2580688340323,11.6176595687866
+4965,0.0253840015688088,0.126315789473684,12.6315789473684,3,85.6802238542374,0.91625036732295,11.8421052631579,9.40063664317131,0
+4966,0.0257058953288115,0.0815789473684211,8.15789473684211,3,81.7160778059924,0.738681948424069,7.36842105263158,47.6784444009104,31.1734504699707
+4967,0.0244421345132105,0.08,8,3,76.6225483438365,0.790969899665552,4,34.1600416898727,16.4298515319824
+4968,0.0224759151607654,0.0210526315789474,2.10526315789474,4,32.7688970276549,0.387096774193548,0.789473684210526,36.1308223009109,10.3911504745483
+4969,0.0210511879335495,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,88.9969650268555,46.7601776123047
+4970,0.0280768265995185,0.102631578947368,10.2631578947368,7,69.1402403076727,0.691405368824724,6.57894736842105,76.3423685416197,15.5867252349854
+4971,0.0238298970636538,0.04,4,4,57.5609837879662,0.652777777777778,2.5,25.4418185651302,5.19557523727417
+4972,0.0401647605102641,0.255263157894737,25.5263157894737,4,87.0844035849908,0.799358271394338,15.5263157894737,54.216596460834,7.34765291213989
+4973,0.0328446686682199,0.242105263157895,24.2105263157895,4,88.2569664353235,0.790819783197832,17.3684210526316,37.4155325060305,10.3911504745483
+4974,0.0234137442357008,0.126315789473684,12.6315789473684,5,76.2317423919144,0.706876285630326,6.05263157894737,89.7397247950236,67.7420120239258
+4975,0.0222118165382835,0.18,18,1,92.8577757686571,0.91357787593624,18,104.126552263896,88.3247756958008
+4976,0.0220530163669058,0.0763157894736842,7.63157894736842,2,83.0719269378516,0.90786203552161,7.36842105263158,93.7684357741783,75.6487197875977
+4977,0.0196308136647866,0.0342105263157895,3.42105263157895,4,50.9714025806726,0.597335755373903,1.84210526315789,106.247182992788,72.7380523681641
+4978,0.0263517725083818,0.0894736842105263,8.94736842105263,6,65.4269893044679,0.62737407101569,4.21052631578947,105.5235117744,77.2377777099609
+4979,0.038009594364994,0.3525,35.25,6,88.7432533833336,0.712669480111341,23.75,50.1251794192808,0
+4980,0.0659247431789194,0.660526315789474,66.0526315789474,2,98.299063429866,0.818241794491176,65.2631578947368,4.04746934237233,0
+4981,0.0575559968606716,0.58421052631579,58.4210526315789,2,97.4506948371625,0.657249434354553,53.4210526315789,7.48074692434019,0
+4982,0.0618762827064768,0.628947368421053,62.8947368421053,1,98.5890492401195,0.698541894743523,62.8947368421053,10.6848910503308,0
+4983,0.0318757785852358,0.185,18.5,4,82.0288421670421,0.764039641340255,7,26.6505196287825,0
+4984,0.0473162537314764,0.442105263157895,44.2105263157895,4,95.5891962063818,0.676202069385271,41.3157894736842,9.19755491472426,0
+4985,0.0217281488815484,0.15,15,4,82.5741139504415,0.687875150060024,7.89473684210526,11.2408875582511,0
+4986,0.0317182480752595,0.197368421052632,19.7368421052632,1,93.2358951176047,0.858420268256334,19.7368421052632,5.59401233037313,0
+4987,0.0389816261829401,0.28,28,6,86.5897650050633,0.745599559955995,19.5,40.0444241804736,0
+4988,0.0745930889694902,0.805263157894737,80.5263157894737,1,99.3815462475885,0.724108857557731,80.5263157894737,4.392890439314,0
+4989,0.0517411807616315,0.563157894736842,56.3157894736842,2,97.9236578670595,0.695162559786886,55.7894736842105,3.88955888792733,0
+4990,0.0312887345980638,0.271052631578947,27.1052631578947,4,87.3213590094119,0.695970338569617,12.8947368421053,5.00734659306054,0
+4991,0.0178725796847357,0.0475,4.75,5,53.3380294026058,0.529369173680876,1.5,41.6143797071357,5.19557523727417
+4992,0.0194650013881121,0.121052631578947,12.1052631578947,2,88.5462897426971,0.839551665898971,11.8421052631579,73.2630422011666,51.955753326416
+4993,0.0216549816762381,0.0473684210526316,4.73684210526316,4,61.9566405039358,0.611213423368119,2.89473684210526,63.2839929262797,14.6953058242798
+4994,0.0426857530075052,0.339473684210526,33.9473684210526,8,86.9779433571955,0.697211155378486,23.1578947368421,6.01774349508359,0
+4995,0.0463023809728475,0.3975,39.75,6,92.9727349318025,0.664639345194111,32.75,16.5810830458155,0
+4996,0.0336022777663617,0.234210526315789,23.4210526315789,5,90.5878605496841,0.761827573537358,21.3157894736842,5.67657084947222,0
+4997,0.0493970739361095,0.45,45,4,90.0049149375902,0.728715728715729,16.5789473684211,9.64890684718974,0
+4998,0.0301855886443886,0.160526315789474,16.0526315789474,5,78.0875002730986,0.730289229313302,7.36842105263158,14.4968233812051,0
+4999,0.0622855386140691,0.43,43,5,91.755395597314,0.856107144833693,36.75,4.24791508497194,0
+5000,0.0454404048354061,0.316666666666667,31.6666666666667,3,91.2606596656796,0.744257636751125,24.1666666666667,35.0061318079631,5.19557523727417
+5001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5006,0.00986398243280985,0.0460526315789474,4.60526315789474,3,40.1941872793875,0.475862068965517,1.97368421052632,7.42225020272391,0
+5007,0.00668978359461515,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,12.1230087280273,10.3911504745483
+5008,0.0180756118959562,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,8.79227089881897,0
+5009,0.0112849565609049,0.0166204986149584,1.66204986149584,4,23.9080491887284,0.27364185110664,0.831024930747922,2.09053802490234,0
+5010,0.014416223488431,0.0394736842105263,3.94736842105263,4,53.9682478787188,0.668742216687422,1.57894736842105,2.91444530487061,0
+5011,0.0191040626960933,0.0637119113573407,6.37119113573407,2,78.5152726897717,0.881328073635766,5.81717451523546,7.78855321718299,0
+5012,0.0286843142457051,0.0997229916897507,9.97229916897507,4,78.0328488712265,0.814871794871795,8.31024930747922,12.7116994990243,0
+5013,0.00431028660316258,0,0,0,NA,NA,0,NA,NA
+5014,0.0371728962198464,0.334210526315789,33.4210526315789,3,93.5777830913176,0.869958763239396,31.3157894736842,32.7870884692575,0
+5015,-0.00300735989249333,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,42.5056686401367,37.8243598937988
+5016,0.0172995021965616,0.0332409972299169,3.32409972299169,3,54.4849566669172,0.513231080397775,1.66204986149584,29.0467877785365,0
+5017,0.000666399311190727,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,59.2386741638184,59.2386741638184
+5018,-0.0186544377238821,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,3.46371682484945,0
+5019,0.0551198423529557,0.534626038781163,53.4626038781163,2,97.4736462819393,0.873952513966481,52.9085872576177,0.894894510970832,0
+5020,0.0560262346184887,0.609418282548476,60.9418282548476,5,94.6396766899414,0.800172980453209,52.6315789473684,0.0944650043140758,0
+5021,0.0336666064162112,0.282548476454294,28.2548476454294,4,91.2433826992092,0.809587104669072,25.207756232687,3.6129711562512,0
+5022,0.0171593556133494,0.0868421052631579,8.68421052631579,7,60.3646275131421,0.493008859003095,2.63157894736842,8.16340424797752,0
+5023,0.0142937758917222,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,8.17568641238742,0
+5024,0.0088460881435867,0,0,0,NA,NA,0,NA,NA
+5025,0.0125807821912284,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,33.2679138183594,33.2679138183594
+5026,0.0216396551790024,0.0184210526315789,1.84210526315789,3,38.9311331818969,0.490616621983914,0.789473684210526,65.6475546700614,31.1734504699707
+5027,0.0352441784690348,0.0803324099722992,8.03324099722992,5,69.0779935124938,0.583568315816457,4.70914127423823,22.1233821079649,0
+5028,0.0325999448686618,0.0332409972299169,3.32409972299169,5,48.4233840907582,0.391538850497219,1.93905817174515,25.3473840157191,7.34765291213989
+5029,0.0401898221644235,0.119113573407202,11.9113573407202,7,64.4582069466101,0.558525506638714,2.77008310249307,39.5442167326461,10.3911504745483
+5030,0.0104492350891202,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,7.27380533218384,0
+5031,0.0287596689358755,0.0692520775623269,6.92520775623269,6,58.0647537033583,0.489657738095238,1.93905817174515,37.2509400939941,20.7823009490967
+5032,0.01794639059378,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,39.242328008016,20.7823009490967
+5033,-0.0146646552313032,0,0,0,NA,NA,0,NA,NA
+5034,0.00839534849644559,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,5.7335946559906,0
+5035,0.0250033572400176,0.155124653739612,15.5124653739612,3,82.9837380819158,0.853574446510056,9.69529085872576,23.633677312306,0
+5036,0.0154061844859674,0.174515235457064,17.4515235457064,6,76.4655287840733,0.669615619280049,6.64819944598338,20.6731021593487,0
+5037,0.0126835622893981,0.0415512465373961,4.15512465373961,2,71.5038160830404,0.762874408828166,3.601108033241,10.9932103792826,5.19557523727417
+5038,0.0167838352904494,0.0947368421052632,9.47368421052632,9,57.6876559345949,0.466085271317829,2.36842105263158,19.4071418311861,5.19557523727417
+5039,0.0230690961195913,0.0914127423822715,9.14127423822715,5,68.5738504542665,0.653511743450768,4.15512465373961,6.55749000202526,0
+5040,0.0193887772815151,0.110803324099723,11.0803324099723,4,78.7738268746736,0.71465104384619,7.75623268698061,8.13010354042053,0
+5041,0.0186566033964452,0.0415512465373961,4.15512465373961,4,57.5757575757576,0.668024172359432,2.49307479224377,8.82417637507121,0
+5042,0.035216992598923,0.279778393351801,27.9778393351801,1,95.0523852144501,0.938631534211645,27.9778393351801,18.6050505118795,0
+5043,0.0195035712181164,0.068421052631579,6.8421052631579,1,84.7352110985031,0.973818382251619,6.8421052631579,12.0430359656994,0
+5044,0.00687572447452535,0.0526315789473684,5.26315789473684,3,64.9970536749767,0.636015325670498,2.49307479224377,17.3968545763116,5.19557523727417
+5045,0.00630280354739638,0,0,0,NA,NA,0,NA,NA
+5046,0.0129831875365501,0,0,0,NA,NA,0,NA,NA
+5047,0.00781024447223899,0,0,0,NA,NA,0,NA,NA
+5048,0.0130718780723091,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,46.7601776123047,46.7601776123047
+5049,0.0210643018580674,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,9.39888393878937,5.19557523727417
+5050,0.0255234151486711,0.0997229916897507,9.97229916897507,2,86.2554273495948,0.814871794871795,9.69529085872576,6.56355698903402,0
+5051,0.0194423802276441,0.0605263157894737,6.05263157894737,2,80.0885491969721,0.881730469965764,5.78947368421053,6.4186166887698,0
+5052,0.0185432244303642,0.0221606648199446,2.21606648199446,4,34.6192969379535,0.386402266288952,0.831024930747922,9.55646616220474,7.34765291213989
+5053,0.00457194446590265,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,10.3911504745483,10.3911504745483
+5054,0.0132906627017055,0.0277008310249307,2.77008310249307,5,35.1391214900534,0.367083059390752,1.10803324099723,44.5914138793945,10.3911504745483
+5055,0.012381845597625,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,52.2742144266764,41.8880653381348
+5056,0.0122584254162691,0.038781163434903,3.8781163434903,3,63.6884169223432,0.739913544668588,3.04709141274238,5.98567015784127,0
+5057,0.029963565309674,0.21606648199446,21.606648199446,4,83.6307498576248,0.796640548983459,13.5734072022161,4.37725723706759,0
+5058,0.0397999391572936,0.409972299168975,40.9972299168975,4,90.8808787747182,0.749839751918646,19.1135734072022,2.24923008841437,0
+5059,0.0189532316979676,0.0631578947368421,6.31578947368421,7,50.5973703823002,0.410112359550562,1.31578947368421,5.47854695717494,0
+5060,0.0160336131073191,0.0526315789473684,5.26315789473684,2,72.6112499709987,0.818007662835249,4.15512465373961,8.83009004592896,0
+5061,0.0158899048914252,0.0526315789473684,5.26315789473684,4,60.3698139375397,0.490421455938697,1.93905817174515,13.7522137792487,10.3911504745483
+5062,0.00887541203366326,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824
+5063,0.0045616336318502,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.9164962768555,15.5867252349854
+5064,0.0206399834907512,0.0914127423822715,9.14127423822715,1,87.180691871343,0.95923667570009,9.14127423822715,0,0
+5065,0.0330157735800355,0.227146814404432,22.7146814404432,2,92.0591649671157,0.785836114200964,20.7756232686981,1.28258734796105,0
+5066,0.0152933194021545,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,8.74333591461182,5.19557523727417
+5067,0.00683078857296814,0.0184210526315789,1.84210526315789,3,38.9311331818969,0.490616621983914,0.789473684210526,6.98746497290475,0
+5068,0.00711181683634254,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,5.7335946559906,5.19557523727417
+5069,0.00575816786450229,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,13.9107152620951,10.3911504745483
+5070,0.00738096846266936,0.0304709141274238,3.04709141274238,3,51.8993947741048,0.449904761904762,1.38504155124654,6.8081937269731,5.19557523727417
+5071,0.020743414543808,0.107894736842105,10.7894736842105,3,81.3424520827848,0.821298790132957,8.94736842105263,5.74671048652835,0
+5072,0.0106027207428677,0.0526315789473684,5.26315789473684,5,52.2097953971984,0.526819923371648,1.38504155124654,3.50795043142218,0
+5073,0.0175290723471189,0.03601108033241,3.601108033241,2,65.218991644703,0.654214559386973,2.21606648199446,5.12700447669396,0
+5074,0.0148762845858975,0.0332409972299169,3.32409972299169,4,51.331396108696,0.452384965447497,1.66204986149584,3.89668142795563,0
+5075,0.0162956895137098,0.121052631578947,12.1052631578947,2,86.4134100332458,0.693689543988945,10.5263157894737,3.12302430816319,0
+5076,0.0133329223157932,0,0,0,NA,NA,0,NA,NA
+5077,0.0264198921946228,0.127423822714681,12.7423822714681,4,74.8874117851735,0.647374847374847,4.15512465373961,27.2549864312877,0
+5078,0.025845248433226,0.152354570637119,15.2354570637119,5,77.5711635544747,0.664705882352941,7.4792243767313,64.3366798054088,29.3906116485596
+5079,0.038577891528104,0.234210526315789,23.4210526315789,3,91.1634970927149,0.786466100412803,20.5263157894737,56.1690088657851,0
+5080,0.0454318318921535,0.462603878116344,46.2603878116343,3,91.5509663685472,0.740209532735306,19.3905817174515,4.58491752533142,0
+5081,0.0421315607836077,0.404432132963989,40.4432132963989,4,90.6079260053749,0.754742618238829,20.2216066481994,4.16235143517795,0
+5082,0.0521946012649048,0.490304709141274,49.0304709141274,2,95.8190299785397,0.820003988831272,43.7673130193906,7.24054158474766,0
+5083,0.0482635177331854,0.418421052631579,41.8421052631579,4,93.4897653272625,0.770346494762289,32.8947368421053,2.70601836090568,0
+5084,0.0554946142344263,0.479224376731302,47.9224376731302,4,96.718020650317,0.765240445541253,47.0914127423823,14.044769777728,0
+5085,0.0171928581271793,0.0997229916897507,9.97229916897507,3,81.8067671975225,0.833384615384615,8.86426592797784,4.07602123419444,0
+5086,0.0347229244946189,0.229916897506925,22.9916897506925,2,89.623924695161,0.91166250672931,17.1745152354571,2.69049913911934,0
+5087,0.0531813198044945,0.457894736842105,45.7894736842105,4,90.6509822988756,0.781629011281493,32.1052631578947,9.80056341489156,0
+5088,0.0728426002187866,0.778393351800554,77.8393351800554,2,99.0679971308761,0.709422348484848,77.5623268698061,4.24609126060459,0
+5089,0.0596906428168582,0.6398891966759,63.98891966759,4,94.7574371585801,0.677851151169017,40.7202216066482,3.39557972408476,0
+5090,0.0403304699582816,0.373961218836565,37.3961218836565,2,93.4812538678984,0.870134542053385,30.7479224376731,5.05396646570276,0
+5091,0.0238093567651528,0.25,25,1,94.5927206623699,0.843137254901961,25,17.3441065587496,0
+5092,0.0335073018113362,0.271468144044321,27.1468144044321,3,88.1665718388306,0.836221050812306,14.1274238227147,19.1353284631457,0
+5093,0.0315768829843858,0.315789473684211,31.5789473684211,2,93.6390034386297,0.858103061986557,28.808864265928,16.7612709371667,0
+5094,0.0482936865305507,0.454293628808864,45.4293628808864,3,93.539379052361,0.702675900090765,26.0387811634349,11.0241342027013,0
+5095,0.0371116108930054,0.421052631578947,42.1052631578947,3,94.4754035237286,0.747371675943104,35,8.08009510934353,0
+5096,0.021868220561086,0.119113573407202,11.9113573407202,2,86.2333825788048,0.779262753319357,10.5263157894737,8.78238115754238,0
+5097,0.0338087475322828,0.265927977839335,26.5927977839335,6,81.0733365538172,0.627753400614304,9.97229916897507,10.6194021602472,0
+5098,0.0340093500108247,0.277008310249307,27.7008310249307,4,88.1798465727108,0.792528735632184,14.9584487534626,15.4022289180756,0
+5099,0.0464309480423445,0.421052631578947,42.1052631578947,4,92.1416548505966,0.735621521335807,29.4736842105263,8.89582522809505,0
+5100,0.0431133233730621,0.385964912280702,38.5964912280702,4,89.4161020448027,0.716182572614108,15.7894736842105,8.98159534642191,0
+5101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5106,0.0240255660779487,0.243421052631579,24.3421052631579,2,88.5801475467092,0.934996436208125,23.6842105263158,0.280841904717523,0
+5107,-0.000290310510722508,0.0581717451523546,5.81717451523546,2,75.9416669556662,0.701378676470588,4.70914127423823,0.989633378528413,0
+5108,-0.0202924566752331,0,0,0,NA,NA,0,NA,NA
+5109,0.0100751230288816,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,27.0194827715556,16.4298515319824
+5110,0.0229375410488788,0.0842105263157895,8.42105263157895,5,67.2109548687679,0.580017683465959,3.15789473684211,19.4634409993887,5.19557523727417
+5111,0.0171106003258388,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,16.3732721805573,10.3911504745483
+5112,0.0247832225627828,0.0498614958448753,4.98614958448753,8,38.6623463065214,0.337328582226541,1.10803324099723,13.7165345615811,0
+5113,0.0271283522015034,0.0609418282548476,6.09418282548476,6,58.3391291061252,0.43623112961999,2.49307479224377,6.29379738460888,0
+5114,0.0271444655790171,0.121052631578947,12.1052631578947,10,64.6364074391191,0.547827422078919,4.73684210526316,6.30011744084566,0
+5115,0.00889485525495777,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,2.59778761863708,0
+5116,0.0101157376975254,0.0304709141274238,3.04709141274238,3,53.9619458784717,0.587428571428571,1.38504155124654,5.19557523727417,0
+5117,0.0109278021806501,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,7.7933627764384,5.19557523727417
+5118,0.0168334833195906,0.05,5,5,65.2648902769614,0.56442831215971,3.68421052631579,5.74247781853927,0
+5119,0.0145979816324372,0.0443213296398892,4.43213296398892,6,51.0774262662925,0.389613526570048,2.21606648199446,6.30425050854683,0
+5120,0.0308011846461852,0.18005540166205,18.005540166205,3,89.1361428817406,0.773349677110739,16.3434903047091,4.56175817342905,0
+5121,0.0258720008548513,0.155124653739612,15.5124653739612,3,89.0829755934431,0.853574446510056,14.9584487534626,4.13177272251674,0
+5122,0.0286000905239091,0.171052631578947,17.1052631578947,4,83.0091391796381,0.807838179519595,10.7894736842105,8.80440216798049,0
+5123,0.0283884985320505,0.135734072022161,13.5734072022161,2,88.7813936325183,0.7933836996337,13.0193905817175,9.33830843166429,0
+5124,0.036889867137323,0.121883656509695,12.1883656509695,3,81.022923866077,0.830718731349646,7.20221606648199,30.0241718834097,0
+5125,0.0389333680288871,0.202216066481994,20.2216066481994,5,79.1301778648146,0.696424696180556,8.03324099722992,38.5942976638062,0
+5126,0.0254895709435866,0.0578947368421053,5.78947368421053,5,57.7932130122862,0.531712126191259,2.36842105263158,22.0719003894112,5.19557523727417
+5127,0.033575371009526,0.171745152354571,17.1745152354571,6,74.487080188988,0.575188901275858,4.98614958448753,8.08486293208215,0
+5128,-0.00149323985650959,0.0914127423822715,9.14127423822715,1,87.180691871343,0.877710027100271,9.14127423822715,62.3299511996183,39.5683212280273
+5129,-0.00184257100952191,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,12.9750751389398,0
+5130,0.0159665083924617,0.068421052631579,6.8421052631579,6,66.0253803780321,0.581094116025906,3.42105263157895,45.0545799732208,0
+5131,0.0199702587468945,0.0526315789473684,5.26315789473684,6,50.1536203215364,0.417624521072797,1.66204986149584,11.7936795134293,5.19557523727417
+5132,0.0264917400285679,0.182825484764543,18.2825484764543,6,79.335850545054,0.595637435519528,8.58725761772853,7.19124114874637,0
+5133,0.0242677305685904,0.110803324099723,11.0803324099723,7,68.9651095861528,0.580369182126749,6.37119113573407,7.656043446064,0
+5134,0.0179626173455051,0.0657894736842105,6.57894736842105,3,72.5994365696236,0.785915492957747,5,72.0094129180908,10.3911504745483
+5135,0.00831062109083931,0.0498614958448753,4.98614958448753,3,65.5382039415795,0.610193283662671,2.49307479224377,57.6031841701931,34.8529777526855
+5136,0.0404085102227856,0.329639889196676,32.9639889196676,2,93.9968653938865,0.83425160697888,29.3628808864266,38.3737903723196,11.6176595687866
+5137,0.0153984778763088,0.10803324099723,10.803324099723,5,78.1176022887457,0.775776397515528,8.86426592797784,11.5603599181542,0
+5138,0.0109504239009192,0.0842105263157895,8.42105263157895,4,72.9278133007804,0.769009725906278,3.94736842105263,20.3837560117245,10.3911504745483
+5139,0.0301761414780621,0.196675900277008,19.6675900277008,5,87.8129234693637,0.780910344827586,17.1745152354571,26.2440820613378,7.34765291213989
+5140,0.0305453524719234,0.149584487534626,14.9584487534626,2,86.6243669280515,0.810339392665756,11.6343490304709,88.9373120908384,67.54248046875
+5141,0.0282818313512772,0.0221606648199446,2.21606648199446,6,15.913301703153,0.181869688385269,0.554016620498615,56.9337611198425,32.8597030639648
+5142,0.0257557144920971,0.0554016620498615,5.54016620498615,3,69.4489674050004,0.829249834452748,4.43213296398892,2.92059926986694,0
+5143,0.0189933886727981,0.0868421052631579,8.68421052631579,3,81.8283047750199,0.817483189241114,7.89473684210526,5.81863763115623,0
+5144,0.0370303125862827,0.263157894736842,26.3157894736842,3,86.8847789108439,0.816386554621849,9.97229916897507,17.9552916326021,0
+5145,0.0274167055675439,0.135734072022161,13.5734072022161,6,74.2372029639494,0.724511599511599,8.86426592797784,10.2398890670465,0
+5146,0.00312267743702301,0,0,0,NA,NA,0,NA,NA
+5147,-0.00733770702359164,0,0,0,NA,NA,0,NA,NA
+5148,0.0246044335886594,0.0914127423822715,9.14127423822715,1,87.180691871343,0.898091689250226,9.14127423822715,4.04857748205012,0
+5149,0.0115376813780819,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,3.13580703735352,0
+5150,0.0195631663841205,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,8.15204246838888,5.19557523727417
+5151,0.0174958993657607,0.0210526315789474,2.10526315789474,5,25.6037101023973,0.28494623655914,0.789473684210527,14.7101550102234,5.19557523727417
+5152,0.0181155822578239,0.0304709141274238,3.04709141274238,2,60.6808426873174,0.724952380952381,1.93905817174515,65.1606549349698,57.1513290405273
+5153,-0.0214751267038515,0,0,0,NA,NA,0,NA,NA
+5154,-0.0211037455754653,0,0,0,NA,NA,0,NA,NA
+5155,0.00271557784027257,0,0,0,NA,NA,0,NA,NA
+5156,0.00974276859510345,0,0,0,NA,NA,0,NA,NA
+5157,0.0217351436302507,0.0332409972299169,3.32409972299169,3,64.0714850042463,0.574077195348053,2.77008310249307,5.40283914407094,0
+5158,0.0322184733328901,0.127423822714681,12.7423822714681,6,73.5266199468893,0.676760276760277,6.92520775623269,2.69135620283044,0
+5159,0.032869875447604,0.171052631578947,17.1052631578947,5,79.906645360357,0.786486866132884,10,1.73570392315204,0
+5160,0.0382264870721357,0.263157894736842,26.3157894736842,4,87.8151260504202,0.680672268907563,13.5734072022161,0,0
+5161,0.0317868574135782,0.152354570637119,15.2354570637119,5,79.6920552582353,0.788888888888889,11.6343490304709,0.472325021570379,0
+5162,0.0288437096331668,0.102493074792244,10.2493074792244,2,86.1678004535147,0.908672333535722,9.97229916897507,0.140420952358761,0
+5163,0.0249762717835294,0.0605263157894737,6.05263157894737,2,76.883313776865,0.645191409897292,4.73684210526316,0.903578302134638,0
+5164,0.0242126118579597,0.0664819944598338,6.64819944598338,3,76.6872499839571,0.774480712166172,5.81717451523546,0,0
+5165,0.0151599431184293,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.8880653381348,41.8880653381348
+5166,0.02513300347652,0.0941828254847645,9.41828254847645,4,69.7807252477589,0.625436871996505,3.04709141274238,7.44481637898613,0
+5167,0.016737200361891,0.05,5,5,57.6522994791116,0.528130671506352,2.63157894736842,5.17169934824893,0
+5168,0.0147703554497956,0.0941828254847645,9.41828254847645,4,76.723618291378,0.664864569681083,6.92520775623269,4.45123118512771,0
+5169,0.0089665308163064,0.0554016620498615,5.54016620498615,3,65.8639399280566,0.521899536467695,2.49307479224377,9.67072479724884,0
+5170,0.0192507727778096,0.0581717451523546,5.81717451523546,3,77.7710689425904,0.535477941176471,5.26315789473684,5.45894014267694,0
+5171,0.0178018012492765,0.0447368421052632,4.47368421052632,4,65.8523727001939,0.497520661157025,3.15789473684211,1.3490810955272,0
+5172,0.0246691374792498,0.0969529085872576,9.69529085872576,6,74.4475731297265,0.522688808969748,6.37119113573407,0.148445006779262,0
+5173,0.038307249541404,0.271468144044321,27.1468144044321,3,87.8524565628549,0.766030072589008,16.0664819944598,1.84646646343932,0
+5174,0.0277733105500472,0.124653739612188,12.4653739612188,4,80.500675968163,0.684335443037975,9.14127423822715,0.692743364969889,0
+5175,0.0564757388463477,0.489473684210526,48.9473684210526,3,95.3020807030014,0.800707264444977,43.4210526315789,4.23106014087636,0
+5176,0.0156983026735414,0.0498614958448753,4.98614958448753,3,66.6877595910009,0.649173955296404,3.32409972299169,23.9185908635457,0
+5177,0.0326055887220053,0.277008310249307,27.7008310249307,3,88.2763264298699,0.792528735632184,16.3434903047091,4.53341254234314,0
+5178,0.0445217588428105,0.465373961218837,46.5373961218837,2,96.8166492949438,0.806919605549056,45.7063711911357,1.26927794445129,0
+5179,0.0585178332875856,0.694736842105263,69.4736842105263,1,98.9199097507581,0.854406130268199,69.4736842105263,0.536140868158052,0
+5180,0.0465041629141622,0.46814404432133,46.814404432133,5,91.4949888017003,0.752921340811966,31.5789473684211,0.983777559720553,0
+5181,0.0425832151065285,0.443213296398892,44.3213296398892,2,93.7673880249136,0.859495041797814,22.4376731301939,1.93719796538353,0
+5182,0.0480654012243982,0.529085872576177,52.9085872576177,1,97.9178236108022,0.814041209704221,52.9085872576177,1.89947040168403,0
+5183,0.0633418496234012,0.728947368421053,72.8947368421053,1,99.0739697285716,0.787154592979836,72.8947368421053,2.09793087721732,0
+5184,0.0829044105614074,0.897506925207756,89.7506925207756,1,99.6913580246914,0.936230347995054,89.7506925207756,1.7521989227813,0
+5185,0.0229868116412917,0.21606648199446,21.606648199446,3,85.1835334250824,0.796640548983459,11.6343490304709,2.84566646967179,0
+5186,0.0262607742242281,0.188365650969529,18.8365650969529,4,84.1893384705788,0.761866521352568,9.69529085872576,7.50754160039565,0
+5187,0.0810171463649328,0.842105263157895,84.2105263157895,2,97.1453278855655,0.748344370860927,68.9473684210526,4.30470019727945,0
+5188,0.0629288594824084,0.642659279778393,64.2659279778393,1,98.6254938212924,0.780260307571119,64.2659279778393,2.58046652325268,0
+5189,0.0668574336837523,0.736842105263158,73.6842105263158,1,99.0835291943254,0.832464929859719,73.6842105263158,2.82045830102791,0
+5190,0.0432954202577426,0.385041551246537,38.5041551246537,4,92.8033449402584,0.820742001844364,33.7950138504155,3.66570405822864,0
+5191,0.0436331533805443,0.355263157894737,35.5263157894737,4,89.2811934552875,0.7982412477186,19.4736842105263,24.1941546899301,0
+5192,0.0389391302523817,0.340720221606648,34.0720221606648,4,88.5747122396016,0.76873798846893,16.6204986149584,55.260334263003,15.5867252349854
+5193,0.0258222077967544,0.10803324099723,10.803324099723,3,78.0522000000215,0.79302436693741,5.26315789473684,63.3777305407402,16.4298515319824
+5194,0.0259028344774371,0.18005540166205,18.005540166205,5,82.6798400860378,0.762556804592203,13.2963988919668,43.046882042518,10.3911504745483
+5195,0.0507218506191221,0.465789473684211,46.5789473684211,3,93.9691462258787,0.828264111718715,36.3157894736842,21.6377328156078,0
+5196,0.0205310059421226,0.0831024930747922,8.31024930747922,2,82.9975712063962,0.821937234108145,7.75623268698061,3.65822281837463,0
+5197,0.0158018328099824,0.0470914127423823,4.70914127423823,2,72.9691949950667,0.706162790697674,3.8781163434903,19.1127851149615,0
+5198,-0.000251836311567118,0.0609418282548476,6.09418282548476,4,64.0017734051614,0.655474579212216,3.32409972299169,38.5036040436138,5.19557523727417
+5199,0.0301897938215629,0.242105263157895,24.2105263157895,4,90.1243736710573,0.814955962059621,20.7894736842105,6.46700765775598,0
+5200,0.0317512883586609,0.181286549707602,18.1286549707602,5,80.973214929243,0.705952380952381,11.1111111111111,14.6591827484869,0
+5201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5206,0.0231709097470708,0.177631578947368,17.7631578947368,3,75.8218297161515,0.717209302325581,10.5263157894737,6.15667994817098,0
+5207,0.0257181143323656,0.265927977839335,26.5927977839335,3,90.7790560551582,0.762395787626152,19.6675900277008,7.03651136159897,0
+5208,-0.0218753208846616,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,24.0940634012222,10.3911504745483
+5209,0.018688490643157,0.149584487534626,14.9584487534626,2,85.3108391435897,0.848271514132605,8.03324099722992,67.1718486503319,31.1734504699707
+5210,0.0115160861655424,0.0552631578947368,5.52631578947368,3,67.032352024655,0.636142061281337,2.63157894736842,61.7418823242188,16.4298515319824
+5211,0.0230544812313327,0.0332409972299169,3.32409972299169,6,34.6192969379535,0.330692735546941,0.831024930747922,5.98034922281901,0
+5212,0.021994908428718,0.10803324099723,10.803324099723,4,79.6838347115673,0.724032489249881,8.58725761772853,25.6629112439278,10.3911504745483
+5213,0.024124904255007,0.141274238227147,14.1274238227147,5,82.9328148945388,0.678754171301446,11.0803324099723,8.15282378477209,0
+5214,0.0191881984225658,0.0789473684210526,7.89473684210526,7,59.8874732040336,0.579008746355685,2.63157894736842,5.25993644396464,0
+5215,-0.0163901857857207,0,0,0,NA,NA,0,NA,NA
+5216,-0.00423516764906071,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+5217,0.00184928465269043,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.952574881765633,4.15512465373961,9.05718819300334,0
+5218,0.0167890039960615,0.152631578947368,15.2631578947368,2,87.5311910289092,0.846583850931677,12.8947368421053,6.63462906870349,0
+5219,0.0207418182203822,0.152354570637119,15.2354570637119,2,89.6864079295276,0.838562091503268,14.6814404432133,0,0
+5220,0.0178307697688548,0.0637119113573407,6.37119113573407,1,83.5457007384199,0.910996055226825,6.37119113573407,1.80715660426928,0
+5221,0.0140746391645931,0.03601108033241,3.601108033241,2,64.6953405017921,0.769476372924649,2.49307479224377,88.0795616736779,78.1066207885742
+5222,0.0147149203565804,0.0736842105263158,7.36842105263158,2,82.8440191260091,0.880050505050505,7.10526315789474,65.872472354344,51.955753326416
+5223,0.0157818632955669,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,67.4292678833008,57.1513290405273
+5224,0.0148400421067359,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,63.3599422999791,44.6940307617188
+5225,0.0301601496914342,0.265927977839335,26.5927977839335,3,87.7740884635221,0.833677051338306,14.6814404432133,52.8871089617411,31.1734504699707
+5226,0.028640235298582,0.184210526315789,18.4210526315789,5,81.2469335555348,0.730920535011802,8.1578947368421,48.9187935692923,20.7823009490967
+5227,0.0324480729313842,0.227146814404432,22.7146814404432,4,86.4972961777182,0.794759609442591,11.6343490304709,57.2885915709705,25.977876663208
+5228,0.00808199550695379,0.074792243767313,7.4792243767313,3,72.9595961718928,0.723506475421251,4.43213296398892,21.1584763173704,0
+5229,0.0277690162086419,0.227146814404432,22.7146814404432,1,93.8988944698773,0.892918057100482,22.7146814404432,23.9952954897066,0
+5230,0.0187684272318955,0.178947368421053,17.8947368421053,2,90.4055176771184,0.754363283775049,15.7894736842105,83.2072144676657,59.2386741638184
+5231,0.0208040127013758,0.124653739612188,12.4653739612188,4,76.9317195601029,0.759493670886076,6.37119113573407,57.0994103325738,36.369026184082
+5232,0.002215054592588,0.0332409972299169,3.32409972299169,5,44.9312753019314,0.513231080397775,1.93905817174515,18.6970467567444,0
+5233,0.0326460319742676,0.318559556786704,31.8559556786704,1,95.7124492463522,0.880061757348343,31.8559556786704,40.6122896774955,15.5867252349854
+5234,0.0299530147630896,0.218421052631579,21.8421052631579,3,88.0924696349559,0.860738908357956,17.6315789473684,66.2661692090781,5.19557523727417
+5235,0.00636688511900713,0,0,0,NA,NA,0,NA,NA
+5236,0.0127221045152905,0.0664819944598338,6.64819944598338,2,76.9923981871606,0.830860534124629,5.26315789473684,46.7354026635488,18.7329120635986
+5237,0.0199100125868719,0.138504155124654,13.8504155124654,9,67.8337263621892,0.563003593720446,6.37119113573407,23.2936450958252,0
+5238,0.0388599748492676,0.313157894736842,31.3157894736842,5,89.6099514787429,0.797786292039166,17.8947368421053,16.1430085927498,0
+5239,0.0380126814204113,0.321329639889197,32.1329639889197,4,89.1863453986246,0.782487852283771,20.4986149584488,26.5062837600708,0
+5240,0.0545856792813843,0.43213296398892,43.213296398892,3,94.2339951615677,0.79751848389564,37.9501385041551,95.8233307080391,67.7420120239258
+5241,0.0278355728872275,0.102493074792244,10.2493074792244,2,81.6465984564647,0.853875733657154,6.92520775623269,24.2616104821901,0
+5242,0.0393806279905707,0.321329639889197,32.1329639889197,5,85.7549762762342,0.698289601554908,10.803324099723,6.62211049014124,0
+5243,0.0404151996966328,0.318421052631579,31.8421052631579,4,88.3007868321831,0.73990873990874,21.0526315789474,3.16826366393034,0
+5244,0.0316874890911833,0.188365650969529,18.8365650969529,3,84.3356242840779,0.772220150858978,9.97229916897507,15.5386192377876,0
+5245,0.0420215146243355,0.318559556786704,31.8559556786704,5,87.8930477156014,0.767178705440901,19.3905817174515,8.51773817642875,0
+5246,0.0171940032718606,0.07202216066482,7.20221606648199,1,84.8544079576361,0.947433563887878,7.20221606648199,26.1853580108056,14.6953058242798
+5247,0.0268137432846503,0.207894736842105,20.7894736842105,6,84.1037775430224,0.819648789748457,16.3157894736842,22.4879681369926,0
+5248,0.0191859301610148,0.0858725761772853,8.58725761772853,3,74.9008824729678,0.737454545454545,4.43213296398892,49.5965151632986,31.6034507751465
+5249,0.0176641508759155,0.0498614958448753,4.98614958448753,4,56.6574422123376,0.493251268761473,1.66204986149584,10.7516298029158,0
+5250,0.024780172533759,0.0581717451523546,5.81717451523546,5,57.806215913227,0.635018382352941,2.49307479224377,10.6834669340224,5.19557523727417
+5251,0.0156980134051082,0.068421052631579,6.8421052631579,4,65.7206435985732,0.71200220476781,2.89473684210526,14.5852557145632,0
+5252,0.016310566183058,0.0304709141274238,3.04709141274238,3,53.557295055248,0.656190476190476,1.93905817174515,18.6464509530501,0
+5253,0.0157959233619196,0.110803324099723,11.0803324099723,3,81.9130484552657,0.81536244013577,9.41828254847645,22.1736036658287,5.19557523727417
+5254,0.0100189995541655,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,62.3469009399414,62.3469009399414
+5255,0.0324637779867484,0.223684210526316,22.3684210526316,2,93.0938128638563,0.9317544056572,22.1052631578947,27.8814485998715,0
+5256,0.016531377667483,0.0304709141274238,3.04709141274238,4,45.2211802077849,0.449904761904762,1.10803324099723,12.6903148997914,5.19557523727417
+5257,0.0210867640994479,0.0443213296398892,4.43213296398892,3,65.9442060956153,0.607608695652174,3.32409972299169,7.63263949751854,0
+5258,0.0156514580309787,0.038781163434903,3.8781163434903,5,50.1005562779941,0.375792507204611,1.93905817174515,6.68002527100699,0
+5259,0.0327505343104253,0.260526315789474,26.0526315789474,4,90.3644149244663,0.810068375384861,21.5789473684211,6.23394731560139,0
+5260,0.0516667844303735,0.501385041551247,50.1385041551247,5,92.7849333009728,0.814411276948591,39.612188365651,5.62324756811996,0
+5261,0.0538556624262451,0.451523545706371,45.1523545706371,3,92.8546272338663,0.799444444444445,35.180055401662,8.20886212623924,0
+5262,0.0536546258004879,0.445983379501385,44.5983379501385,5,94.1221893182907,0.884138513513513,42.1052631578947,7.63646069224577,0
+5263,0.0617524666771428,0.502631578947368,50.2631578947368,3,94.5616513809463,0.795534032822169,42.8947368421053,7.09164110902716,0
+5264,0.0546127879781548,0.42382271468144,42.382271468144,4,92.9424547325121,0.888824254037777,37.6731301939058,8.5566937097537,0
+5265,0.0459246417736127,0.271468144044321,27.1468144044321,3,90.6339295060678,0.91421102661597,24.6537396121884,8.02118041077439,0
+5266,0.0699291375742701,0.493074792243767,49.3074792243767,4,92.2223335193896,0.826116564519076,39.3351800554017,10.026553263825,0
+5267,0.0525649132186357,0.397368421052632,39.7368421052632,3,92.297474960184,0.856226254473224,31.3157894736842,9.0706842087752,0
+5268,0.038922655832076,0.354570637119114,35.4570637119114,2,92.1816974283922,0.853708854464072,29.9168975069252,12.3673321530223,0
+5269,0.0299655140282329,0.307479224376731,30.7479224376731,2,91.3719227743811,0.8556,23.8227146814404,15.0023430746955,5.19557523727417
+5270,0.028027346285377,0.274238227146814,27.4238227146814,5,87.1610068144265,0.814220773651257,21.0526315789474,12.1591827122852,5.19557523727417
+5271,0.028345629560078,0.218421052631579,21.8421052631579,4,87.1869126702363,0.791108362536934,17.1052631578947,9.76709795572672,5.19557523727417
+5272,0.0451242753143785,0.415512465373961,41.5512465373961,2,93.657393233408,0.757363205514864,25.207756232687,7.77764429410299,0
+5273,0.0569622938657122,0.529085872576177,52.9085872576177,2,95.0307458560766,0.784047856430708,34.3490304709141,7.69802849704682,0
+5274,0.0595751481783419,0.506925207756233,50.6925207756233,3,92.7210448666022,0.759989362409414,27.9778393351801,5.15862508158866,0
+5275,0.0435999615524787,0.413157894736842,41.3157894736842,4,91.8236916943033,0.798829098156452,33.9473684210526,6.34844675489292,0
+5276,0.0153614845609036,0.0332409972299169,3.32409972299169,2,69.8975569145289,0.634923310298331,3.04709141274238,35.3824995358785,26.4923400878906
+5277,0.0282499198849583,0.166204986149584,16.6204986149584,6,76.6245092296019,0.700166112956811,9.14127423822715,10.6709147612254,0
+5278,0.0443036711371596,0.43213296398892,43.213296398892,4,90.5652122172427,0.742296252230815,26.5927977839335,10.7880042638534,0
+5279,0.0557004265995745,0.576315789473684,57.6315789473684,3,92.9766001056235,0.728108634758251,36.0526315789474,6.25122246023727,0
+5280,0.0415764977323737,0.434903047091413,43.4903047091413,5,88.0272348295635,0.662054057734205,13.8504155124654,5.77522800530598,0
+5281,0.0467540375600574,0.476454293628809,47.6454293628809,4,92.041584337904,0.765009263431976,34.0720221606648,5.54102434391199,0
+5282,0.0493970433914943,0.457063711911357,45.7063711911357,3,93.6265450199936,0.824298469387755,34.0720221606648,3.73678976694743,0
+5283,0.0520478719584629,0.502631578947368,50.2631578947368,2,94.6515842908731,0.863689355214779,35,5.75511583358205,0
+5284,0.0380048507577158,0.332409972299169,33.2409972299169,3,93.7602182216531,0.903802961665842,31.8559556786704,5.67531046867371,0
+5285,0.0301742940840255,0.254847645429363,25.4847645429363,2,90.787513946347,0.844523528878411,19.9445983379501,0.960051946018053,0
+5286,0.0214049024199939,0.110803324099723,11.0803324099723,3,77.9249332475472,0.76500674199098,6.92520775623269,23.3403133392334,0
+5287,0.057854406589008,0.573684210526316,57.3684210526316,3,96.1621577471619,0.722678343367999,43.6842105263158,5.53558038134094,0
+5288,0.0727316281110709,0.795013850415512,79.5013850415512,2,98.2059827656733,0.765115115115115,73.9612188365651,2.64742137829186,0
+5289,0.0681453076851686,0.739612188365651,73.9612188365651,4,98.2855076305203,0.777699919310316,72.8531855955679,2.24377115121048,0
+5290,0.0722812858392121,0.714681440443213,71.4681440443213,3,98.3158165069635,0.854871454702607,70.6371191135734,4.05026134409646,0
+5291,0.0581120554296113,0.547368421052632,54.7368421052632,3,94.4141088115353,0.80019229613605,39.7368421052632,26.0669486706073,0
+5292,0.0265152591895044,0.0775623268698061,7.75623268698061,6,60.0025615205812,0.494094094094094,2.21606648199446,54.5458910976137,5.19557523727417
+5293,0.0291124042115494,0.0886426592797784,8.86426592797784,7,61.9338086892518,0.599076455459434,3.04709141274238,60.0485129356384,18.7329120635986
+5294,0.0275546876108822,0.138504155124654,13.8504155124654,5,78.0482597400558,0.740533383771515,7.75623268698061,10.8731214237213,0
+5295,0.0272822010333154,0.205263157894737,20.5263157894737,4,85.3653900741796,0.835876763604952,12.6315789473684,20.7943373643435,0
+5296,0.051018966375626,0.445983379501385,44.5983379501385,5,92.7689966857122,0.83535472972973,38.781163434903,10.5472395967993,0
+5297,0.0184848655055621,0.0443213296398892,4.43213296398892,4,65.3969942096935,0.651207729468599,3.601108033241,15.003681987524,0
+5298,0.0425795311051153,0.382271468144044,38.2271468144044,3,94.7177104599725,0.710922485586163,35.4570637119114,5.70521715758503,0
+5299,0.0374055228804201,0.352631578947368,35.2631578947368,3,93.5389270424978,0.816406770625083,30,8.61262662731,0
+5300,0.0310257822136025,0.210526315789474,21.0526315789474,3,91.5185090815661,0.760629921259843,20.1754385964912,8.34608856174681,0
+5301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5306,0.0157546019399888,0.0625,6.25,2,62.5159097489091,0.835897435897436,5,4.37166795730591,0
+5307,0.028928682221067,0.223684210526316,22.3684210526316,5,85.4546974457317,0.761140419800202,13.9473684210526,6.10830051197725,0
+5308,0.0223740003882995,0.171052631578947,17.1052631578947,3,86.2352861891085,0.850540806293019,13.1578947368421,36.6834009023813,5.19557523727417
+5309,0.0200185346014989,0.136842105263158,13.6842105263158,6,78.19630159666,0.739654699917786,10,36.6102427152487,0
+5310,0.0212250997834417,0.18,18,3,89.2522509348098,0.846360668331093,16.5,59.6835644774967,16.4298515319824
+5311,0.0178958680005867,0.0421052631578947,4.21052631578947,5,48.4869017498834,0.478021978021978,1.31578947368421,10.715873837471,0
+5312,0.0292313411834153,0.178947368421053,17.8947368421053,4,86.3434548902384,0.866946778711485,15.2631578947368,30.3878000133178,5.19557523727417
+5313,0.0318506166388033,0.223684210526316,22.3684210526316,6,84.2732971747454,0.803793916264452,11.8421052631579,11.5790902642643,0
+5314,0.0176076362265587,0.1125,11.25,5,71.2595752288814,0.673832468495182,4.75,17.1781249788072,0
+5315,-0.0021137483332974,0.147368421052632,14.7368421052632,3,84.091888174566,0.879088710703831,8.94736842105263,26.9201272640909,0
+5316,0.0124164286717802,0.05,5,3,67.9771658891886,0.70961887477314,3.15789473684211,1.36725664138794,0
+5317,0.0137670889639821,0.0631578947368421,6.31578947368421,4,65.5778413579822,0.662921348314607,3.15789473684211,12.0755565961202,5.19557523727417
+5318,0.00815684247082572,0.0825,8.25,5,70.4157429621064,0.737612271672217,4.75,17.9102003213131,0
+5319,0.0403446535534673,0.328947368421053,32.8947368421053,6,89.7437316666759,0.71771616135441,21.5789473684211,3.49388866424561,0
+5320,0.0245687210233116,0.128947368421053,12.8947368421053,3,79.9797105854339,0.740325133074378,6.84210526315789,12.7019227767477,0
+5321,0.00439095477567877,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,32.0369064331055,15.5867252349854
+5322,0.0239199849549186,0.0925,9.25,2,85.6001008169973,0.801291604570293,8.75,9.63030735222069,0
+5323,0.024442239439936,0.171052631578947,17.1052631578947,6,86.1495356701183,0.765135552746172,15,50.2376393831693,5.19557523727417
+5324,0.0260671424601553,0.2,20,3,87.8242217175971,0.794776119402985,13.6842105263158,56.5220046043396,18.7329120635986
+5325,0.0252946052926793,0.234210526315789,23.4210526315789,5,82.8192647927624,0.737189046661912,10.2631578947368,29.9200313385953,0
+5326,0.00583290817565285,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,19.4531259536743,11.6176595687866
+5327,0.0449409055422094,0.334210526315789,33.421052631579,4,88.3100519546628,0.798436083021063,18.4210526315789,22.4846955434544,0
+5328,0.0224690934564071,0.123684210526316,12.3684210526316,3,81.6905564149138,0.771771771771772,7.63157894736842,19.4320839415205,0
+5329,0.0372043998442103,0.286842105263158,28.6842105263158,2,91.924070358304,0.843407571131549,22.8947368421053,22.4901645642902,0
+5330,0.0118758455978241,0.0375,3.75,3,63.7055076747118,0.716646989374262,2.75,109.671356709798,90.73681640625
+5331,0.0141271305571488,0.0921052631578947,9.21052631578947,6,65.290981613,0.620189905047476,2.63157894736842,43.9134703772409,7.34765291213989
+5332,0.018247923762369,0.107894736842105,10.7894736842105,1,88.9454279930292,0.675088709332649,10.7894736842105,8.48292325182659,0
+5333,0.0151465905149388,0.110526315789474,11.0526315789474,5,75.331465739753,0.76248020668389,7.89473684210526,24.5539751506987,5.19557523727417
+5334,0.0394976025913365,0.255,25.5,1,94.8405521791929,0.933986137088789,25.5,52.4205030179491,36.369026184082
+5335,0.023803065229286,0.163157894736842,16.3157894736842,3,83.2680910271331,0.78977405078034,8.15789473684211,1.92739081382751,0
+5336,0.0260015032203491,0.0947368421052632,9.47368421052632,5,68.2988542491817,0.668604651162791,3.15789473684211,25.2110690275828,0
+5337,0.0256429258417101,0.197368421052632,19.7368421052632,5,83.2325139427449,0.716840536512668,10,4.60568715413411,0
+5338,0.0468584657650445,0.4175,41.75,3,94.5828630220994,0.749177860765844,37.25,4.3972393167233,0
+5339,0.0248902764867221,0.194736842105263,19.4736842105263,6,84.7094836896453,0.665661136249371,14.2105263157895,38.9460334971144,0
+5340,0.0269216614414434,0.163157894736842,16.3157894736842,5,78.5285157345106,0.71232238527836,5.78947368421053,79.3048837723271,51.955753326416
+5341,0.0507640767421866,0.389473684210526,38.9473684210526,4,92.3410149460962,0.788459091487467,24.2105263157895,23.5361393561234,0
+5342,0.0713274195845962,0.5,50,4,92.3362696747579,0.778409090909091,30,5.44492802368967,0
+5343,0.0624403242209064,0.4725,47.25,7,87.6607511400432,0.70209884901828,22.25,9.61466465551386,0
+5344,0.0270148801665575,0.157894736842105,15.7894736842105,4,80.7921852338748,0.794471153846154,10.5263157894737,8.89613813559214,0
+5345,0.03925433875564,0.357894736842105,35.7894736842105,2,92.6654652292916,0.836726599682708,20.7894736842105,15.1286356869866,0
+5346,0.0117598093655895,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,8.93564388487074,0
+5347,0.0175346397390967,0.01,1,1,52.6315789473684,0.747474747474748,1,7.33911573886871,5.19557523727417
+5348,0.0157916875303176,0,0,0,NA,NA,0,NA,NA
+5349,0.0191035171833631,0.0868421052631579,8.68421052631579,4,73.2979084103375,0.695805315401857,5.78947368421053,16.9888725136266,5.19557523727417
+5350,0.0163984352112349,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,15.2851598262787,10.3911504745483
+5351,0.00301225593168056,0,0,0,NA,NA,0,NA,NA
+5352,-0.00314907160367703,0,0,0,NA,NA,0,NA,NA
+5353,0.0299666949095378,0.271052631578947,27.1052631578947,1,95.0211914913291,0.933261781637233,27.1052631578947,22.3635082522642,0
+5354,0.0290503994586815,0.157894736842105,15.7894736842105,4,83.6590257026355,0.840144230769231,10.7894736842105,35.5357194423676,10.3911504745483
+5355,0.0310336200260281,0.225,22.5,4,89.0303558885782,0.823682628731717,19.5,24.1685550424788,0
+5356,0.0173783198169411,0.0236842105263158,2.36842105263158,3,44.9258483839375,0.573225516621743,1.05263157894737,18.6805024676853,10.3911504745483
+5357,0.0222933280271437,0.0289473684210526,2.89473684210526,4,44.806450952841,0.519421860885276,1.31578947368421,13.8349985209378,5.19557523727417
+5358,0.0234774263129351,0.0736842105263158,7.36842105263158,5,68.7697133644278,0.640151515151515,4.21052631578947,11.6233656065805,0
+5359,0.0193806923197917,0.06,6,5,58.9911742446384,0.468085106382979,1.75,19.5230722228686,5.19557523727417
+5360,0.0208447801241786,0.0868421052631579,8.68421052631579,5,71.2316617416642,0.594407087202476,3.68421052631579,9.24641454581058,0
+5361,0.0262679831830993,0.160526315789474,16.0526315789474,5,77.9752942736666,0.662861536641628,9.21052631578947,19.187961257872,0
+5362,0.0197981543192614,0.118421052631579,11.8421052631579,5,77.810064954748,0.597014925373134,7.63157894736842,16.1035345077515,5.19557523727417
+5363,0.0145310244535222,0.08,8,4,71.1758452966439,0.561036789297659,3.25,14.7139556258917,0
+5364,0.0198737628597814,0.0815789473684211,8.15789473684211,4,68.1189639405526,0.651575931232092,2.36842105263158,27.9822079135526,10.3911504745483
+5365,0.0185912776268244,0.0263157894736842,2.63157894736842,3,49.1742985061262,0.446985446985447,1.05263157894737,12.3802383899689,5.19557523727417
+5366,0.0150241226576327,0.0421052631578947,4.21052631578947,2,71.8078657209086,0.652014652014652,3.42105263157895,26.9403375685215,5.19557523727417
+5367,0.0137566880429949,0.055,5.5,4,63.6296938662642,0.595393713040772,2.5,11.6139094829559,5.19557523727417
+5368,0.00777325230247746,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,18.3131289482117,15.5867252349854
+5369,0.0112101899558375,0,0,0,NA,NA,0,NA,NA
+5370,0.0173848150306424,0.0263157894736842,2.63157894736842,4,41.7194000360487,0.446985446985447,1.05263157894737,36.3384489536285,7.34765291213989
+5371,0.0197326727754717,0.0375,3.75,4,54.7821620301482,0.574970484061393,1.75,31.5334022521973,10.3911504745483
+5372,0.034882506721375,0.271052631578947,27.1052631578947,3,88.6996244137465,0.844277490486877,13.1578947368421,10.4370752445702,0
+5373,0.0232113141604044,0.110526315789474,11.0526315789474,2,86.1024033942064,0.841653471122593,10.2631578947368,3.96651181720552,0
+5374,0.0255547905184741,0.186842105263158,18.6842105263158,3,89.916194762082,0.832750809061489,17.3684210526316,7.43111018731561,0
+5375,0.023386719839732,0.1025,10.25,5,74.3819975618984,0.612450042388277,5,4.25063997361718,0
+5376,0.0339765941827385,0.268421052631579,26.8421052631579,4,86.0999632040002,0.768447537052325,16.0526315789474,5.5073574851541,0
+5377,0.0370502145483873,0.276315789473684,27.6315789473684,4,89.3225848758157,0.802597402597403,21.0526315789474,51.0922893160865,5.19557523727417
+5378,0.0339551995525414,0.247368421052632,24.7368421052632,1,94.5353485957133,0.928821178821179,24.7368421052632,51.2020004353625,36.369026184082
+5379,0.0357850926865285,0.2275,22.75,2,92.3292298087621,0.9121019617244,21.5,26.2493683060447,0
+5380,0.0315191619579357,0.228947368421053,22.8947368421053,3,91.3830877198026,0.790818011670153,21.0526315789474,9.78188594182332,0
+5381,0.0362310326886425,0.297368421052632,29.7368421052632,6,82.791989724382,0.623265036351619,9.73684210526316,18.6259489186042,0
+5382,0.0538094884863025,0.605263157894737,60.5263157894737,5,94.5142913832499,0.722455322455323,48.9473684210526,15.6415844585585,0
+5383,0.0563787999036867,0.425,42.5,3,95.5118696201112,0.938880400055563,41.25,1.94202055931091,0
+5384,0.0594075947215683,0.421052631578947,42.1052631578947,3,92.5635104472664,0.853123067408782,35.2631578947368,1.26085008978844,0
+5385,0.0650031293656579,0.671052631578947,67.1052631578947,1,98.8064194597879,0.758326359832636,67.1052631578947,1.62648862389957,0
+5386,0.0276734092208483,0.178947368421053,17.8947368421053,3,86.454128192692,0.754363283775049,11.8421052631579,23.8583346114439,0
+5387,0.0886947481473908,0.83,83,1,99.48609157949,0.756074678675298,83,5.22725106147398,0
+5388,0.0716337599675171,0.776315789473684,77.6315789473684,2,98.6285395402199,0.710015898251192,75.5263157894737,1.98666791915894,0
+5389,0.0548591224421551,0.547368421052632,54.7368421052632,4,96.8341177099375,0.86298900306472,53.4210526315789,0.260133798305805,0
+5390,0.0440125609182264,0.368421052631579,36.8421052631579,5,92.5170290648355,0.826822916666667,32.3684210526316,4.70713305473328,0
+5391,0.0364604265158596,0.3225,32.25,8,83.7485748332655,0.635706995367826,14,11.6591146528259,0
+5392,0.033265396423935,0.234210526315789,23.4210526315789,4,88.6498431373726,0.753614731245542,17.8947368421053,7.79791183150216,0
+5393,0.0296633074846365,0.176315789473684,17.6315789473684,4,87.2525805633207,0.761339122361487,14.2105263157895,16.8662866834384,5.19557523727417
+5394,0.0398046044030228,0.273684210526316,27.3684210526316,5,87.2838243010883,0.779121134619856,12.6315789473684,22.6240514058333,0
+5395,0.0279611493957054,0.2375,23.75,3,90.1020598361595,0.799421407907425,19,12.7648433434336,0
+5396,0.0345593355063772,0.257894736842105,25.7894736842105,6,82.2521469774695,0.678433268858801,8.94736842105263,3.15407936913627,0
+5397,0.021121733819717,0.0421052631578947,4.21052631578947,6,43.4253450179364,0.391025641025641,1.05263157894737,5.65480348467827,0
+5398,0.0321164012026106,0.157894736842105,15.7894736842105,7,72.0128445618966,0.623197115384615,5.26315789473684,8.2499393304189,0
+5399,0.0406470826576697,0.3,30,5,88.4232506777735,0.724770642201835,18,5.73307178815206,0
+5400,0.044819717534478,0.333333333333333,33.3333333333333,4,89.340759277232,0.759174311926605,21.9444444444444,5.53999228080114,0
+5401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5406,0.0207626709287931,0.151315789473684,15.1315789473684,4,64.7777221971966,0.574504737295435,6.57894736842105,16.7240334593731,7.34765291213989
+5407,0.021662452031485,0.110803324099723,11.0803324099723,6,72.6026253802905,0.647510112986469,6.64819944598338,13.6571338295937,0
+5408,0.0205040830888088,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,2.22667510168893,0
+5409,0.0121716497573354,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,13.5084953308105,10.3911504745483
+5410,0.00713502349109675,0.0184210526315789,1.84210526315789,2,48.9196885878706,0.745308310991957,1.05263157894737,11.7552725246974,0
+5411,0.0427763467132813,0.368421052631579,36.8421052631579,4,93.1529157844505,0.803719008264463,33.2409972299169,0.406825789831635,0
+5412,0.0144890802403702,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,9.8839008808136,7.34765291213989
+5413,0.0221341113803213,0.224376731301939,22.4376731301939,4,87.7884245633213,0.829885912698413,18.005540166205,9.28266678916084,0
+5414,0.0231703357265934,0.144736842105263,14.4736842105263,4,80.5856726108874,0.753846153846154,9.21052631578947,9.81692838668823,0
+5415,0.0333553150873672,0.238227146814404,23.8227146814404,4,84.3389794029378,0.811241830065359,13.0193905817175,11.3133190232654,0
+5416,0.018038843254645,0.0941828254847645,9.41828254847645,5,75.5398640035456,0.74371996505024,7.4792243767313,0.611244145561667,0
+5417,0.00694297107548561,0.0277008310249307,2.77008310249307,4,40.6969603094515,0.446197676966908,0.831024930747922,11.430265378952,0
+5418,0.0472246411776053,0.442105263157895,44.2105263157895,5,94.1760603888154,0.855447352404139,41.0526315789474,12.5381081104279,0
+5419,0.025518412779987,0.160664819944598,16.0664819944598,5,79.4420154038775,0.74980198019802,10.5263157894737,8.86310819099689,0
+5420,0.0553423499525976,0.426592797783933,42.6592797783933,6,89.7405419589551,0.808965364196582,31.5789473684211,28.0081868233619,0
+5421,0.0209637240581605,0.03601108033241,3.601108033241,6,38.5389536007533,0.423690932311622,1.38504155124654,18.3162414477422,5.19557523727417
+5422,0.0316700469410391,0.181578947368421,18.1578947368421,5,86.2001084440396,0.868725253115782,16.0526315789474,10.6774695368781,0
+5423,0.0311377866612796,0.282548476454294,28.2548476454294,5,85.7989557734866,0.801970588855834,13.2963988919668,26.7957154442282,0
+5424,0.0314926301170924,0.263157894736842,26.3157894736842,2,93.1259281984656,0.872268907563025,25.207756232687,84.0764264156944,49.28955078125
+5425,0.0345796252112704,0.315789473684211,31.5789473684211,1,95.6693719888599,0.865197908887229,31.5789473684211,65.2837988870186,27.9790287017822
+5426,-0.0148429840711048,0,0,0,NA,NA,0,NA,NA
+5427,0.0268085986006509,0.193905817174515,19.3905817174515,5,84.718292422038,0.808370351744755,15.2354570637119,5.96641073226929,0
+5428,0.0159169529640199,0.0637119113573407,6.37119113573407,4,68.3168169433876,0.584648257725181,3.601108033241,7.26817873249883,0
+5429,0.0437144167482072,0.299168975069252,29.9168975069252,2,94.8272692303,0.882922874227222,29.6398891966759,21.6587675898163,5.19557523727417
+5430,0.0202814984450637,0.0394736842105263,3.94736842105263,3,68.5658607851767,0.716064757160648,3.42105263157895,53.2743303934733,36.369026184082
+5431,0.0360269587925515,0.193905817174515,19.3905817174515,4,84.8485006282677,0.768027267901545,11.9113573407202,96.4553511483329,72.7380523681641
+5432,0.0298179173274507,0.240997229916898,24.0997229916898,2,89.8261596463943,0.804497292206263,17.1745152354571,60.0337395942074,33.2679138183594
+5433,-0.0124076233951314,0.0249307479224377,2.49307479224377,2,58.3321631610904,0.743607954545455,1.93905817174515,4.07823509640164,0
+5434,0.0156367867131178,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.952677459526775,3.94736842105263,58.6024777730306,44.3910140991211
+5435,0.0189145704587801,0.038781163434903,3.8781163434903,4,55.4289740244878,0.531844380403458,2.21606648199446,38.7761916433062,11.6176595687866
+5436,0.0218737448282565,0.0664819944598338,6.64819944598338,6,57.7711045757067,0.520771513353116,2.77008310249307,42.5065327088038,14.6953058242798
+5437,0.0467971934129592,0.445983379501385,44.5983379501385,3,96.149620416346,0.847550675675676,43.4903047091413,8.21572895227752,0
+5438,0.0435834999649447,0.407894736842105,40.7894736842105,3,90.7838154754688,0.780740740740741,21.5789473684211,49.8887621356595,10.3911504745483
+5439,0.0270084032012986,0.204986149584488,20.4986149584488,3,86.3733299571154,0.816161886893594,10.803324099723,37.1438485480644,16.4298515319824
+5440,0.0495246988894525,0.429362880886427,42.9362880886427,3,94.4561008112146,0.735598705501618,38.2271468144044,18.7203681330527,0
+5441,0.0441400124719442,0.357340720221607,35.7340720221607,8,92.439872076922,0.721900220102714,31.3019390581717,45.8853995670644,14.6953058242798
+5442,0.0310582976158116,0.249307479224377,24.9307479224377,4,85.225857262658,0.751781989869588,11.3573407202216,12.2383455912272,0
+5443,0.0432873147650849,0.313157894736842,31.3157894736842,5,85.4138116326817,0.716900808854832,15.5263157894737,11.1969583455254,0
+5444,0.0214184098874997,0.163434903047091,16.3434903047091,3,86.8589306118393,0.871088170367485,14.404432132964,11.8487276707665,0
+5445,0.0291174969078336,0.210526315789474,21.0526315789474,4,88.6902201756598,0.839303482587065,18.8365650969529,57.8602669991945,11.6176595687866
+5446,0.00747772116563363,0,0,0,NA,NA,0,NA,NA
+5447,0.00729012245566609,0,0,0,NA,NA,0,NA,NA
+5448,0.0132341640668644,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.897733711048159,2.21606648199446,21.1061366796494,11.6176595687866
+5449,0.0146644953625416,0.10803324099723,10.803324099723,4,80.7789944594394,0.655040611562351,8.58725761772853,7.41511840086717,0
+5450,0.0255165503095414,0.141274238227147,14.1274238227147,3,84.2601706538837,0.825991842788283,10.803324099723,12.1947091420492,5.19557523727417
+5451,0.00481196250456495,0.0789473684210526,7.89473684210526,1,86.162631131474,0.911370262390671,7.89473684210526,23.4302027861277,7.34765291213989
+5452,-0.010340003398556,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,17.6860549109323,14.6953058242798
+5453,0.00151199205631649,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,3.8966813882192,0
+5454,0.0135338406050381,0.0554016620498615,5.54016620498615,5,54.7399208910722,0.521899536467695,1.93905817174515,8.22720539569855,0
+5455,0.0226782172323223,0.110526315789474,11.0526315789474,4,81.9075853184489,0.730810900908409,9.21052631578947,9.83389208430336,0
+5456,0.0146106993973079,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+5457,0.0183672042811424,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+5458,0.0255414556930473,0.0858725761772853,8.58725761772853,4,73.7725878670287,0.737454545454545,5.54016620498615,10.3119322869085,0
+5459,0.0240397111311291,0.0368421052631579,3.68421052631579,6,42.7749211030137,0.377049180327869,1.31578947368421,24.1972571781703,5.19557523727417
+5460,0.0190966458613626,0.0221606648199446,2.21606648199446,5,25.6397267923517,0.28413597733711,0.831024930747922,5.19557523727417,0
+5461,0.0221073123191577,0.0526315789473684,5.26315789473684,4,67.0511815204841,0.636015325670498,3.8781163434903,24.705403076975,15.5867252349854
+5462,0.0160450295579344,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,75.3358421325684,72.7380523681641
+5463,0.017412738850678,0,0,0,NA,NA,0,NA,NA
+5464,0.0217198929397523,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,35.6549873352051,0
+5465,0.0259424093133613,0.110803324099723,11.0803324099723,3,79.8871929238729,0.74822150927605,6.64819944598338,4.13417468070984,0
+5466,0.0216120296324619,0.07202216066482,7.20221606648199,4,66.5550246289123,0.632034947215144,3.601108033241,16.8478581905365,0
+5467,0.0247927213783106,0.0710526315789474,7.10526315789474,6,59.8182427830431,0.524342842084459,2.63157894736842,23.2756138730932,0
+5468,0.0179714032155089,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,37.4126996994019,15.5867252349854
+5469,0.0194670337477571,0.0249307479224377,2.49307479224377,3,46.5128690491175,0.572679924242424,1.38504155124654,7.63563251495361,0
+5470,0.024720016468609,0.0831024930747922,8.31024930747922,8,62.3917376429085,0.599358776743326,5.26315789473684,40.4876409848531,10.3911504745483
+5471,0.0255261902906089,0.0789473684210526,7.89473684210526,5,67.0080938733285,0.579008746355685,4.21052631578947,66.5710238774618,15.5867252349854
+5472,0.0167414683624818,0.0969529085872576,9.69529085872576,4,72.5565944009493,0.713613285381849,4.70914127423823,11.7367293357849,0
+5473,0.0155313685494261,0.038781163434903,3.8781163434903,2,69.2202518747971,0.843948126801153,3.32409972299169,25.0040604046413,10.3911504745483
+5474,0.0168834235908616,0.124653739612188,12.4653739612188,1,89.820262380557,0.909810126582278,12.4653739612188,68.3787672254774,47.9008369445801
+5475,0.029380128381155,0.1,10,5,72.6385330196894,0.647266313932981,4.21052631578947,27.7086368485501,5.19557523727417
+5476,0.0307258870378069,0.0803324099722992,8.03324099722992,5,65.58637235217,0.676108690079467,3.04709141274238,12.7069499410432,0
+5477,0.0190443724608576,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,80.7876377105713,78.1066207885742
+5478,0.0152537117663294,0.0415512465373961,4.15512465373961,3,58.4815029285393,0.620599054125066,1.66204986149584,133.86100209554,114.774002075195
+5479,0.0118683371808545,0,0,0,NA,NA,0,NA,NA
+5480,0.0246001214589624,0.0886426592797784,8.86426592797784,6,66.4674965875326,0.62017769464578,4.98614958448753,2.01559314131737,0
+5481,0.0245092748433142,0.193905817174515,19.3905817174515,5,82.3575956707265,0.697426871175928,9.14127423822715,18.2923613480159,0
+5482,0.0282844631046097,0.229916897506925,22.9916897506925,5,87.8257671082555,0.734987520187931,18.005540166205,57.1595468291317,14.6953058242798
+5483,0.0616527154632135,0.542105263157895,54.2105263157895,3,97.3655379991374,0.840340926142673,53.4210526315789,25.8629906339553,0
+5484,0.0705057610460967,0.554016620498615,55.4016620498615,4,96.2211135181153,0.836818402504562,52.9085872576177,8.64345290899277,0
+5485,0.0685696863644135,0.670360110803324,67.0360110803324,3,94.6306613192503,0.818788577377854,46.814404432133,1.40578329267581,0
+5486,0.0477664757286485,0.393351800554017,39.3351800554017,2,95.8850778649051,0.860519845451352,38.5041551246537,5.36387069460372,0
+5487,0.0674407370181717,0.631578947368421,63.1578947368421,4,93.6073259419343,0.76423798918231,46.3157894736842,4.40758957068125,0
+5488,0.0661322121402646,0.778393351800554,77.8393351800554,2,97.9726819033146,0.735061553030303,69.2520775623269,1.58178042517014,0
+5489,0.059192023917883,0.722991689750693,72.2991689750693,1,99.0218306937704,0.726850715746421,72.2991689750693,1.37269521033627,0
+5490,0.0421108592098767,0.39612188365651,39.612188365651,7,88.4490046288482,0.639733174592058,17.7285318559557,4.08810043668413,0
+5491,0.0381105632757872,0.315789473684211,31.5789473684211,4,93.8565534868632,0.738532110091743,29.4736842105263,13.1965961416562,0
+5492,0.0411078060250452,0.326869806094183,32.6869806094183,6,84.9880999821735,0.777854697896235,16.3434903047091,8.9979504649922,0
+5493,0.0376908447979782,0.285318559556787,28.5318559556787,6,89.1298775829592,0.833605698721978,24.6537396121884,15.5967798464507,0
+5494,0.0262255924467039,0.14404432132964,14.404432132964,5,82.3145390796851,0.658703319879277,11.0803324099723,21.0133086901445,0
+5495,0.0279229371225435,0.213157894736842,21.3157894736842,7,83.1558467040009,0.717577108881457,13.9473684210526,13.2217447257336,0
+5496,0.0472022211246858,0.49584487534626,49.584487534626,3,93.2319686835157,0.80824009827031,39.8891966759003,1.68411849730508,0
+5497,0.0389577184381012,0.343490304709141,34.3490304709141,2,95.559249005511,0.89845288326301,34.0720221606648,4.42904525418435,0
+5498,0.00956085800461554,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,7.8352490067482,0
+5499,0.0318167787738754,0.271052631578947,27.1052631578947,6,83.2136900576682,0.688554980973754,8.94736842105263,7.55018689331499,0
+5500,0.0270564669890572,0.111111111111111,11.1111111111111,5,74.0506457945007,0.678571428571429,5.84795321637427,34.7418571773328,15.5867252349854
+5501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5506,0.0216534785616348,0.0855263157894737,8.55263157894737,2,71.4161278742789,0.635491606714628,7.23684210526316,15.2001584859995,10.3911504745483
+5507,0.0176317049317782,0.0692520775623269,6.92520775623269,4,69.7836861114081,0.597098214285714,3.8781163434903,7.73851165771484,0
+5508,0.0203150260074992,0.0470914127423823,4.70914127423823,6,47.7548785431902,0.454302325581395,1.93905817174515,4.27870901893167,0
+5509,0.011584145641975,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,31.8732290267944,10.3911504745483
+5510,0.0112346443366206,0.0421052631578947,4.21052631578947,3,66.1150507132842,0.521520146520146,2.89473684210526,6.38090726733208,5.19557523727417
+5511,0.0300190243316967,0.188365650969529,18.8365650969529,4,87.7372781923085,0.834341927897439,16.8975069252078,1.82062332069173,0
+5512,0.0185007320561703,0.0914127423822715,9.14127423822715,4,72.436112587518,0.653511743450768,4.43213296398892,10.1099498199694,0
+5513,0.0346254311379075,0.243767313019391,24.3767313019391,7,84.3926071833425,0.781013042159539,18.005540166205,9.96144116466696,0
+5514,0.0641918819982828,0.431578947368421,43.1578947368421,5,92.0913974197833,0.848540593573706,23.9473684210526,11.2027119194589,0
+5515,0.046983829875289,0.332409972299169,33.2409972299169,4,88.5984773249931,0.828219574403289,21.606648199446,11.3971357146899,0
+5516,0.0348437845482332,0.240997229916898,24.0997229916898,5,83.8109186694228,0.778996939015776,9.97229916897507,10.990663983356,0
+5517,0.0147985120205895,0.116343490304709,11.6343490304709,4,73.9938535826315,0.697161022561703,4.43213296398892,9.33437353088742,0
+5518,0.0266487013331483,0.257894736842105,25.7894736842105,4,89.5571177821524,0.885154738878143,22.3684210526316,4.81247435783853,0
+5519,0.0148648367699491,0.0609418282548476,6.09418282548476,5,67.906998768027,0.592833593614437,4.43213296398892,10.6610095284202,0
+5520,0.0586369417426309,0.401662049861496,40.1662049861496,4,89.2585636640084,0.823410202655486,20.4986149584488,22.8605796813965,0
+5521,0.0276846378078706,0.146814404432133,14.6814404432133,4,82.7788981397362,0.793920365348937,11.9113573407202,32.6833099239277,7.34765291213989
+5522,0.0382271883246798,0.321052631578947,32.1052631578947,3,92.065084085678,0.860044196569504,25.7894736842105,32.0142302903973,0
+5523,0.0285414675362671,0.240997229916898,24.0997229916898,2,89.3510681767519,0.829997645396751,15.2354570637119,21.2432506057038,0
+5524,0.0311757008054286,0.263157894736842,26.3157894736842,2,90.5774889837989,0.832352941176471,17.4515235457064,31.7853264256528,11.6176595687866
+5525,0.0236981565934423,0.160664819944598,16.0664819944598,2,89.4197917686956,0.880858085808581,15.2354570637119,55.2636297817888,26.4923400878906
+5526,0.00157075117410721,0.0394736842105263,3.94736842105263,2,70.3639605317453,0.858032378580324,3.42105263157895,12.274676322937,0
+5527,0.0321103613817404,0.299168975069252,29.9168975069252,5,89.2944327227392,0.802432350258437,24.6537396121884,24.5422064286691,0
+5528,0.0254480583690034,0.163434903047091,16.3434903047091,4,81.0589119906576,0.613264511102454,8.03324099722992,14.6477875305434,0
+5529,0.0407023001486407,0.271468144044321,27.1468144044321,4,90.1392167158672,0.836221050812306,23.5457063711911,17.0742425091413,0
+5530,0.0311047598578482,0.257894736842105,25.7894736842105,3,91.0356155255152,0.793278529980658,21.5789473684211,15.4481537974611,0
+5531,0.0102408543513657,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,60.4299793243408,46.4706382751465
+5532,0.0361989625817033,0.293628808864266,29.3628808864266,2,91.0180123366751,0.814700749409712,15.2354570637119,64.2945399194394,25.977876663208
+5533,0.0222535231646097,0.146814404432133,14.6814404432133,2,89.048056976964,0.896960182674468,14.1274238227147,3.37361576872052,0
+5534,0.0282302681640814,0.255263157894737,25.5263157894737,1,94.704791652367,0.891962146135413,25.5263157894737,34.8533634500405,0
+5535,0.0104982020276109,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,19.1273211479187,0
+5536,0.0152531156443935,0.0193905817174515,1.93905817174515,3,41.9073627842675,0.362641242937853,1.10803324099723,41.4314299992153,20.7823009490967
+5537,0.0331022713755696,0.268698060941828,26.8698060941828,5,85.521396341374,0.74066091954023,17.4515235457064,6.59720173078714,0
+5538,0.0118335631279287,0.139473684210526,13.9473684210526,2,85.8092275180068,0.859528850354538,10.2631578947368,70.8390800907927,44.3910140991211
+5539,0.0227090194000646,0.182825484764543,18.2825484764543,1,92.5625648410704,0.882947678703021,18.2825484764543,84.0396991498543,44.0859146118164
+5540,0.0383457121222571,0.301939058171745,30.1939058171745,5,88.3508712643358,0.723672548545645,18.005540166205,48.7289136877847,5.19557523727417
+5541,0.0131107492601475,0.0969529085872576,9.69529085872576,5,67.6890523130881,0.579966151893379,2.77008310249307,61.8063334873744,39.5683212280273
+5542,0.0287251589131989,0.191135734072022,19.1135734072022,6,76.9775518673474,0.7036963659006,6.37119113573407,26.8766287306081,0
+5543,0.0214732367651442,0.128947368421053,12.8947368421053,7,74.35907013867,0.617321248741188,6.31578947368421,2.74073927743094,0
+5544,0.0409372085133552,0.346260387811634,34.6260387811634,3,95.1263307645158,0.797842156350332,33.7950138504155,17.232276309967,0
+5545,0.0419268140408815,0.340720221606648,34.0720221606648,4,90.3126597017671,0.789143460074613,26.3157894736842,38.2916331678871,7.34765291213989
+5546,0.00850129205852891,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,6.92743364969889,5.19557523727417
+5547,0.00875865293324559,0.0368421052631579,3.68421052631579,5,49.9027354994108,0.532786885245902,2.10526315789474,10.5414206300463,5.19557523727417
+5548,0.0134739105925692,0,0,0,NA,NA,0,NA,NA
+5549,0.0148288220256104,0.0277008310249307,2.77008310249307,4,45.7365757207837,0.525312294543064,1.66204986149584,5.83778357505798,0
+5550,0.0248392312009893,0.105263157894737,10.5263157894737,6,66.9601733512536,0.627450980392157,3.601108033241,6.76590792756332,0
+5551,0.0128969337541141,0.05,5,3,65.929818495282,0.673321234119782,2.63157894736842,13.9001663609555,0
+5552,0.00129387959497052,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989
+5553,0.00421100941808502,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,8.86940169334412,7.34765291213989
+5554,0.00562777181811501,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+5555,0.02569042805894,0.186842105263158,18.6842105263158,3,85.8049055201604,0.842588996763754,10,22.8269011873594,0
+5556,0.0277296154263769,0.110803324099723,11.0803324099723,6,65.0730978472172,0.59715441484168,2.49307479224377,6.19576255083084,0
+5557,0.0252932874988355,0.0969529085872576,9.69529085872576,6,67.2722824499249,0.599058599534589,4.15512465373961,7.65963441303798,0
+5558,0.0262191357445586,0.155124653739612,15.5124653739612,5,75.732849189224,0.65834037519013,6.09418282548476,5.66658950703485,0
+5559,0.0240346476209341,0.115789473684211,11.5789473684211,6,72.4890378860278,0.633204633204633,6.57894736842105,1.89924958619204,0
+5560,0.0249193518868695,0.0609418282548476,6.09418282548476,7,52.0055082396463,0.467551622418879,2.21606648199446,4.32190693508495,0
+5561,0.0133580032391011,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483
+5562,0.0236520997623151,0.10803324099723,10.803324099723,3,76.9005739390177,0.758528428093646,4.98614958448754,27.589969476064,5.19557523727417
+5563,0.0231282496266909,0.0578947368421053,5.78947368421053,3,76.923061044468,0.750246467302005,5.26315789473684,100.488933910023,83.2914047241211
+5564,0.0128732022141746,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,49.6314086914062,47.0479354858398
+5565,0.028499576136395,0.141274238227147,14.1274238227147,5,75.56812675342,0.651983685576567,6.37119113573407,7.34150006724339,0
+5566,0.0180183369748665,0.0138504155124654,1.38504155124654,2,40.1094318411096,0.391573033707865,0.831024930747922,12.5973014831543,5.19557523727417
+5567,0.0211471267809621,0.0315789473684211,3.15789473684211,4,56.217215646736,0.574808184143223,2.36842105263158,37.7876536846161,11.6176595687866
+5568,0.0202441793320396,0.0914127423822715,9.14127423822715,3,78.9385133449054,0.714656729900632,6.92520775623269,32.9066749630552,10.3911504745483
+5569,0.0275063929880048,0.102493074792244,10.2493074792244,4,71.8363722207127,0.726017000607164,3.32409972299169,9.06378774385194,0
+5570,0.0319806985354159,0.243767313019391,24.3767313019391,7,84.5823172552752,0.696787289143977,17.4515235457064,18.3638515960086,0
+5571,0.0205350927381101,0.0394736842105263,3.94736842105263,4,63.7201608278239,0.479452054794521,2.89473684210526,58.182208887736,25.977876663208
+5572,0.0253132777764114,0.0831024930747922,8.31024930747922,7,62.4943603162606,0.599358776743326,4.70914127423823,58.3474429130554,11.6176595687866
+5573,0.0177879294819239,0.0221606648199446,2.21606648199446,3,44.9714579590004,0.590934844192635,1.38504155124654,15.3916298151016,5.19557523727417
+5574,0.0196055352880598,0.0886426592797784,8.86426592797784,7,59.1130550588436,0.535772737900397,3.32409972299169,19.1816117018461,5.19557523727417
+5575,0.024129735111733,0.110526315789474,11.0526315789474,3,82.7639000178606,0.857488124010334,9.73684210526316,59.6781790597098,36.369026184082
+5576,0.0288632860566216,0.127423822714681,12.7423822714681,5,77.8507177972496,0.706145706145706,8.03324099722992,11.5099489481553,0
+5577,0.0211524510539831,0.0831024930747922,8.31024930747922,5,68.6151026108276,0.666132313952771,4.70914127423823,27.5082573095957,0
+5578,0.0213443214804437,0.0249307479224377,2.49307479224377,2,61.9755545773026,0.743607954545455,2.21606648199446,67.7502068413629,59.2386741638184
+5579,0.0240625364403394,0.113157894736842,11.3157894736842,6,68.4221443178154,0.624134520276953,3.68421052631579,43.3929626109988,11.6176595687866
+5580,0.0509764367856093,0.473684210526316,47.3684210526316,3,96.477342654102,0.722539682539682,45.7063711911357,7.02765513581839,0
+5581,0.0234781971267087,0.0775623268698061,7.75623268698061,3,74.2039114045012,0.783183183183183,5.81717451523546,10.7668028218406,0
+5582,0.0352162899194063,0.188365650969529,18.8365650969529,7,78.4135978756968,0.616915708262827,7.75623268698061,37.2433177162619,0
+5583,0.0273345854348008,0.134210526315789,13.4210526315789,7,71.950123252811,0.64154700765119,5.26315789473684,36.8942330865299,0
+5584,0.0273797033610044,0.0526315789473684,5.26315789473684,3,71.126285977523,0.563218390804598,3.8781163434903,24.5987772690622,15.5867252349854
+5585,0.0576828948732909,0.581717451523546,58.1717451523546,3,93.5139306980299,0.798224962314324,29.3628808864266,1.51678969746544,0
+5586,0.0547627454463227,0.520775623268698,52.0775623268698,2,96.2198356980124,0.898063251611189,49.0304709141274,0.383763691212269,0
+5587,0.063598404107018,0.678947368421053,67.8947368421052,2,98.4624437716444,0.748498116281438,67.1052631578947,3.47657643732174,0
+5588,0.0615467935159784,0.6398891966759,63.98891966759,2,97.4498862520097,0.697180082098875,59.5567867036011,5.79893745281996,0
+5589,0.0623525695003301,0.673130193905817,67.3130193905817,2,97.9570827754257,0.743933398043754,64.819944598338,2.99242505909484,0
+5590,0.0353534536583251,0.235457063711911,23.5457063711911,5,86.6707240873115,0.68816585084941,16.0664819944598,3.30205775429221,0
+5591,0.0236796867685227,0.15,15,3,86.1310359595198,0.699879951980792,11.8421052631579,33.9348739155552,5.19557523727417
+5592,0.0487743187789059,0.407202216066482,40.7202216066482,3,92.7302676291367,0.836952367717055,23.8227146814404,29.7996700410129,0
+5593,0.0419620837427907,0.310249307479224,31.0249307479224,5,90.8427971494941,0.806214958845282,27.1468144044321,7.59587266189711,0
+5594,0.0531630019952464,0.409972299168975,40.9972299168975,3,92.9008793841339,0.849903851151188,22.1606648199446,17.3061439765466,0
+5595,0.0237030525771747,0.1,10,7,65.7211592239888,0.506172839506173,3.68421052631579,19.580267253675,5.19557523727417
+5596,0.0516328908702348,0.529085872576177,52.9085872576177,3,95.1750136798666,0.796045197740113,45.7063711911357,3.74221257514354,0
+5597,0.0659387867479815,0.501385041551247,50.1385041551247,2,97.1536591585926,0.898225538971808,49.584487534626,9.58625804785207,0
+5598,0.0379458316619146,0.310249307479224,31.0249307479224,3,90.4996179241187,0.813392182591753,22.1606648199446,4.56136807373592,0
+5599,0.0400987403198853,0.3,30,2,94.5144580134059,0.868238557558946,29.2105263157895,19.920630513576,0
+5600,0.0248773805077589,0.149122807017544,14.9122807017544,2,85.3171090482519,0.851404194809812,10.8187134502924,32.449668267194,0
+5601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5606,0.0197130105241405,0,0,0,NA,NA,0,NA,NA
+5607,0.0176303600444983,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,9.34917036692301,0
+5608,0.0164858625118901,0.0470914127423823,4.70914127423823,3,67.6377563353149,0.706162790697674,3.601108033241,3.36184280058917,0
+5609,0.0175832003516508,0.0692520775623269,6.92520775623269,5,63.71050619433,0.650818452380952,3.04709141274238,13.2398520851135,0
+5610,0.00825375706259173,0.0578947368421053,5.78947368421053,3,74.3135629914678,0.594150509365758,4.47368421052632,14.7139775536277,10.3911504745483
+5611,0.034414859237072,0.296398891966759,29.6398891966759,2,94.1040200335417,0.896903431112562,28.5318559556787,1.2805214195608,0
+5612,0.0135813817196272,0.0332409972299169,3.32409972299169,4,47.8180922982314,0.513231080397775,1.38504155124654,16.3764875729879,0
+5613,0.0180646107812279,0.163434903047091,16.3434903047091,6,74.2412958213249,0.660141540059732,5.81717451523546,6.82042230185816,0
+5614,0.0123649409124674,0.0657894736842105,6.57894736842105,8,48.7468213537443,0.411267605633803,1.84210526315789,9.27202476501465,0
+5615,0.00405298612549511,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0
+5616,0.0539250577331332,0.421052631578947,42.1052631578947,3,92.4871535825809,0.777126099706745,29.3628808864266,15.7195405709116,0
+5617,0.063278387276202,0.487534626038781,48.7534626038781,3,91.8000582993047,0.807866943866944,21.8836565096953,13.8285690302199,0
+5618,0.0105768121868191,0.0263157894736842,2.63157894736842,4,41.7194000360487,0.446985446985447,1.05263157894737,13.5084956169128,0
+5619,0.0112531864024806,0.0221606648199446,2.21606648199446,2,53.6717642846206,0.590934844192635,1.38504155124654,13.9073945879936,0
+5620,0.0707908415950195,0.481994459833795,48.1994459833795,6,90.8674823326286,0.753427624235761,36.01108033241,26.732036818033,0
+5621,0.0193787135891988,0.0692520775623269,6.92520775623269,6,56.9697010225111,0.543377976190476,2.49307479224377,69.8223022460938,39.5683212280273
+5622,0.0273510484481736,0.231578947368421,23.1578947368421,2,93.3649679604528,0.917110199808045,22.8947368421053,87.1150037592108,59.2386741638184
+5623,0.0675476772308065,0.529085872576177,52.9085872576177,1,97.9178236108022,0.820039880358923,52.9085872576177,59.0578038879714,18.7329120635986
+5624,0.0325218362912013,0.257617728531856,25.7617728531856,4,84.192910770224,0.764678115446862,10.2493074792244,24.4154571461421,0
+5625,0.0415547184500691,0.349030470914127,34.9030470914127,3,89.9941216241851,0.792046827092818,20.7756232686981,17.5098209646013,0
+5626,0.0307091139348478,0.281578947368421,28.1578947368421,5,84.0129173706106,0.761999658372715,11.8421052631579,23.8709921836853,0
+5627,0.019227612284851,0.0914127423822715,9.14127423822715,7,61.801882281902,0.592366757000903,3.8781163434903,10.5605348529238,0
+5628,0.0222542915132314,0.174515235457064,17.4515235457064,3,89.2778880102382,0.680628431970714,15.5124653739612,2.11916654828995,0
+5629,0.0358956249968028,0.277008310249307,27.7008310249307,4,90.1780870869675,0.792528735632184,22.1606648199446,21.0860037136078,0
+5630,0.00225481246640668,0.107894736842105,10.7894736842105,2,86.9087282389792,0.93501774186653,10.5263157894737,8.89884430024682,0
+5631,0.0059630118360315,0.135734072022161,13.5734072022161,2,84.4780024422277,0.83470695970696,8.86426592797784,29.8345092656661,0
+5632,0.0496082892121023,0.418282548476454,41.8282548476454,3,93.1603957728448,0.807615609420663,27.4238227146814,61.4548338327976,32.8597030639648
+5633,0.0139382875499691,0.0470914127423823,4.70914127423823,3,66.4400025562473,0.706162790697674,3.32409972299169,21.917959802291,7.34765291213989
+5634,0.0273289353505166,0.121052631578947,12.1052631578947,4,78.664295325746,0.810379241516966,7.89473684210526,24.7280817239181,5.19557523727417
+5635,-0.0175532388500345,0.0609418282548476,6.09418282548476,3,70.4696595813849,0.749436057608884,4.15512465373961,3.64025937427174,0
+5636,-0.0359145738556148,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.5867255528768,10.3911504745483
+5637,-0.0132513590311178,0.124653739612188,12.4653739612188,2,83.3011165967055,0.879746835443038,6.37119113573407,6.45324178271823,0
+5638,0.0122056410256655,0.152631578947368,15.2631578947368,3,82.0924380705716,0.822981366459627,9.73684210526316,34.2132893595202,0
+5639,0.0235838972101524,0.163434903047091,16.3434903047091,3,83.836546394139,0.800772626931567,7.75623268698061,93.0929497541007,55.2297248840332
+5640,0.0361810863481339,0.290858725761773,29.0858725761773,3,90.3646227012873,0.813471395502645,21.606648199446,65.9759811038063,33.2679138183594
+5641,0.0212797448104156,0.163434903047091,16.3434903047091,6,75.2508245952447,0.683580054538372,7.20221606648199,33.6994769856081,0
+5642,0.0477780777734635,0.38781163434903,38.781163434903,6,87.2521753190279,0.668198529411765,14.1274238227147,30.4107568877084,0
+5643,0.0194727581449163,0.0526315789473684,5.26315789473684,4,59.8985466888844,0.591397849462366,1.84210526315789,8.0785849571228,0
+5644,0.0322027140074646,0.204986149584488,20.4986149584488,11,69.1114471739543,0.583945322969713,4.43213296398892,7.40991094305709,0
+5645,0.0205071137026804,0.152354570637119,15.2354570637119,4,80.2129706601995,0.71437908496732,8.31024930747922,26.1447316083041,0
+5646,0.0265537706557923,0.177285318559557,17.7285318559557,3,87.8960295188112,0.90232683982684,16.3434903047091,44.0535583421588,0
+5647,0.0202637007869749,0.0263157894736842,2.63157894736842,3,51.8673950562613,0.604989604989605,1.57894736842105,33.4262692451477,10.3911504745483
+5648,0.011665340454219,0.0110803324099723,1.10803324099723,2,36.243052657801,0.241596638655462,0.831024930747922,27.7108707427979,18.7329120635986
+5649,0.0261740467958236,0.0914127423822715,9.14127423822715,2,83.2726026827489,0.938855013550135,8.58725761772853,0.380097822709517,0
+5650,0.0191094114485836,0.10803324099723,10.803324099723,4,72.9252202073772,0.706784519827998,4.43213296398892,5.85984673866859,0
+5651,0.0118533371960343,0.0394736842105263,3.94736842105263,5,51.8935062648345,0.574097135740971,2.36842105263158,13.3017546335856,0
+5652,0.021791531859076,0.191135734072022,19.1135734072022,3,85.2274144266463,0.81608739952451,13.2963988919668,6.39475021500518,0
+5653,0.0226700972832438,0.10803324099723,10.803324099723,2,85.0450341935141,0.879264214046823,9.97229916897507,8.92795310876308,0
+5654,0.031698032302473,0.293628808864266,29.3628808864266,3,90.38057352254,0.822112719433323,14.9584487534626,9.33033416406164,0
+5655,0.0285310413598046,0.197368421052632,19.7368421052632,6,83.1869259334548,0.660208643815201,12.3684210526316,4.7561580212911,0
+5656,0.0241471756440897,0.135734072022161,13.5734072022161,5,82.5457919928818,0.655639499389499,10.803324099723,2.78324443466809,0
+5657,0.026447634045187,0.116343490304709,11.6343490304709,5,78.5707599015755,0.633405448364166,7.75623268698061,9.98647160757156,0
+5658,0.0376874581840369,0.335180055401662,33.5180055401662,6,83.7970393519535,0.651306818181818,11.9113573407202,5.50646785074029,0
+5659,0.0379715659293747,0.318421052631579,31.8421052631579,5,89.9740415135674,0.713232713232713,23.1578947368421,7.64529697560082,0
+5660,0.0214580605909827,0.0664819944598338,6.64819944598338,5,63.0279992163905,0.605341246290801,3.32409972299169,10.206905523936,0
+5661,0.0183511054058618,0.0803324099722992,8.03324099722992,3,75.3346914103167,0.699243783645219,5.26315789473684,13.5601381762274,0
+5662,0.0367574654214814,0.285318559556787,28.5318559556787,3,89.3651320947177,0.712591661428871,15.2354570637119,11.3072423888642,0
+5663,0.0137104043922399,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,69.7059555053711,69.7059555053711
+5664,0.0183529013535975,0.0277008310249307,2.77008310249307,3,51.9403568215295,0.60442691211922,1.66204986149584,63.6149433135986,47.9008369445801
+5665,0.0194561476425993,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,5.91293446222941,0
+5666,0.0183828919234908,0.0415512465373961,4.15512465373961,4,56.3086230118446,0.668024172359432,2.21606648199446,5.76718600591024,0
+5667,0.0207210814415846,0.0236842105263158,2.36842105263158,4,35.6939146200956,0.40251572327044,0.789473684210526,13.8651801215278,5.19557523727417
+5668,0.0203422510438389,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,28.6847602980477,5.19557523727417
+5669,0.0254646656892652,0.0858725761772853,8.58725761772853,5,68.1905165957348,0.649939393939394,4.15512465373961,10.7672655966974,0
+5670,0.0191571557260837,0.0609418282548476,6.09418282548476,3,72.9622030257179,0.686795072011105,4.70914127423823,10.0327986587178,0
+5671,0.0177253269274508,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,13.8907908201218,5.19557523727417
+5672,0.0196635554181193,0.0581717451523546,5.81717451523546,6,52.115196963003,0.568658088235294,1.66204986149584,39.877334912618,14.6953058242798
+5673,0.0203437925969804,0.105263157894737,10.5263157894737,4,76.3829729207296,0.733893557422969,5.54016620498615,2.82342346091019,0
+5674,0.0249781927959702,0.0664819944598338,6.64819944598338,5,68.0829528455465,0.689910979228487,4.98614958448753,10.0289886196454,0
+5675,0.0150376716495406,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,32.4723448753357,25.977876663208
+5676,0.0176664458334941,0,0,0,NA,NA,0,NA,NA
+5677,0.0218346523060494,0.0581717451523546,5.81717451523546,4,64.3437477533576,0.601838235294118,3.04709141274238,19.2057060514178,10.3911504745483
+5678,0.0268856613553991,0.14404432132964,14.404432132964,4,76.6849751917791,0.698083706047053,5.26315789473684,28.7094062475058,10.3911504745483
+5679,0.0292617094341518,0.0631578947368421,6.31578947368421,6,61.4200309205746,0.662921348314607,3.42105263157895,56.5563050905863,16.4298515319824
+5680,0.0286625860080122,0.146814404432133,14.6814404432133,1,91.0563849165273,0.845440274011703,14.6814404432133,6.84146886501672,0
+5681,0.0338916207257067,0.243767313019391,24.3767313019391,3,91.5988409877696,0.831548493968876,22.7146814404432,16.7085117264227,0
+5682,0.0201316194871548,0.07202216066482,7.20221606648199,3,73.3782152082906,0.76345103749545,4.98614958448753,33.8166196529682,10.3911504745483
+5683,0.0227123469536548,0.105263157894737,10.5263157894737,3,78.180912441832,0.733099209833187,5.26315789473684,55.3534028053284,41.8880653381348
+5684,0.0228983141361994,0.0803324099722992,8.03324099722992,2,77.799355361589,0.838054345039733,5.81717451523546,53.7098680693528,20.7823009490967
+5685,0.0284419565395387,0.293628808864266,29.3628808864266,3,89.5857002350499,0.799876809362489,22.1606648199446,1.31499161810245,0
+5686,0.0297561775482375,0.232686980609418,23.2686980609418,2,93.2114550465882,0.912533617619267,22.9916897506925,3.55600387709481,0
+5687,0.035782216545608,0.334210526315789,33.4210526315789,3,90.8584707244359,0.824444330373184,23.9473684210526,5.93527657215989,0
+5688,0.0380569554025219,0.437673130193906,43.7673130193906,1,97.1580064448117,0.871224732461356,43.7673130193906,5.70718205729617,0
+5689,0.0352563095558024,0.282548476454294,28.2548476454294,4,88.0574215375655,0.702955883283752,16.6204986149584,7.19682502279095,0
+5690,0.0241080088974406,0.0609418282548476,6.09418282548476,2,76.0957836113912,0.780756550407774,4.98614958448754,5.58778236129067,0
+5691,0.0358119024652344,0.215789473684211,21.5789473684211,1,93.7669926209779,0.832909048831289,21.5789473684211,9.94470261945957,0
+5692,0.0343226562490146,0.274238227146814,27.4238227146814,3,91.577327142739,0.860665580238442,24.6537396121884,16.9732301500108,0
+5693,0.0407964345589754,0.340720221606648,34.0720221606648,3,90.9723660671606,0.836756227154539,23.8227146814404,21.8212881204559,0
+5694,0.0280345672415182,0.202216066481994,20.2216066481994,3,90.206521340006,0.843315972222222,18.8365650969529,9.07415069945871,0
+5695,0.0091281169371972,0.142105263157895,14.2105263157895,1,91.0631654736186,0.862128108714295,14.2105263157895,5.18527279076753,0
+5696,0.0340243271565167,0.415512465373961,41.5512465373961,3,95.7467011337388,0.744920292977165,39.8891966759003,2.14602948824565,0
+5697,0.0288152139521389,0.124653739612188,12.4653739612188,9,62.0199580822252,0.473892405063291,2.77008310249307,11.2095478163825,0
+5698,0.0328030577535108,0.263157894736842,26.3157894736842,5,87.2958994753945,0.752521008403361,19.6675900277008,16.0452441817836,0
+5699,0.0222707022004071,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,32.7700204849243,10.3911504745483
+5700,0.0238864180170359,0.116959064327485,11.6959064327485,3,78.8783022468998,0.678857368785213,6.4327485380117,12.0680176615715,0
+5701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5706,0.013607202170715,0.025,2.5,1,54.2921731574445,1,2.5,27.4053859710693,25.977876663208
+5707,0.00247524216414795,0,0,0,NA,NA,0,NA,NA
+5708,0.00718163492448711,0.0368421052631579,3.68421052631579,3,57.206714896318,0.636612021857924,1.84210526315789,9.67286028180804,0
+5709,0.00432905473866604,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,13.586265484492,0
+5710,0.000953291253008501,0.045,4.5,3,65.8644082722349,0.689742098119062,3,7.43864117728339,0
+5711,0.0142228245656282,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,1.29889380931854,0
+5712,0.013636741379148,0.0605263157894737,6.05263157894737,3,67.7714113170726,0.615624027388733,2.36842105263158,1.44893604776134,0
+5713,0.0202339766504768,0.110526315789474,11.0526315789474,4,72.791081934307,0.667472289357446,3.68421052631579,6.32008377710978,0
+5714,0.012481673835432,0.03,3,3,53.6515440961723,0.575500303214069,1.5,3.75382312138875,0
+5715,0.0188595293509503,0.068421052631579,6.8421052631579,4,71.8313098195607,0.581094116025906,4.21052631578947,1.19897890090942,0
+5716,0.0298272972385492,0.273684210526316,27.3684210526316,4,85.4221287237181,0.793846392311865,12.1052631578947,11.8832925833189,0
+5717,0.029583060037265,0.313157894736842,31.3157894736842,4,89.5360552054459,0.78430537817511,15.5263157894737,16.0753004090125,0
+5718,0.0119686100829858,0.11,11,2,82.8449168720239,0.817795323413301,7,8.44948792457581,0
+5719,0.0112690253660395,0.0736842105263158,7.36842105263158,2,80.1553974765362,0.784090909090909,6.31578947368421,22.3960965360914,10.3911504745483
+5720,0.0355339038786233,0.155263157894737,15.5263157894737,4,85.1023388531962,0.825911673080447,13.4210526315789,13.6826861106743,0
+5721,0.012393537982452,0.1,10,4,73.3747557156805,0.62962962962963,4.73684210526316,11.3030176413687,0
+5722,0.000732038884380017,0.0875,8.75,6,66.4333137043215,0.622106754841757,4.25,20.2578692299979,5.19557523727417
+5723,0.0236290133129315,0.144736842105263,14.4736842105263,7,70.9230335948561,0.593846153846154,4.73684210526316,32.0996671069752,7.34765291213989
+5724,0.026967756059419,0.2,20,4,81.4822575149047,0.710820895522388,8.15789473684211,34.9083243859442,0
+5725,0.0178994266449177,0.1,10,3,79.3340543957438,0.805996472663139,7.89473684210526,35.8900822087338,10.3911504745483
+5726,0.0281276713634955,0.2,20,4,86.2645220198315,0.762323943661972,11.25,28.9723423242569,0
+5727,0.0289858702545691,0.207894736842105,20.7894736842105,5,79.7839712655709,0.702420503084955,7.36842105263158,44.0881441333626,15.5867252349854
+5728,0.0186760841612723,0.134210526315789,13.421052631579,3,84.5039952978654,0.800859448695105,10.2631578947368,8.09721281014237,0
+5729,0.0304819071009038,0.205263157894737,20.5263157894737,4,85.2626040912054,0.772051060562434,11.0526315789474,10.0832638190343,0
+5730,0.00214706236227357,0.095,9.5,2,83.0657416222512,0.859686047531351,8.25,33.8899572773984,10.3911504745483
+5731,0.0183474418607818,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,19.5692540804545,11.6176595687866
+5732,0.0381901138338172,0.307894736842105,30.7894736842105,4,90.7681040513265,0.843245569983499,26.0526315789474,47.6544833713108,0
+5733,0.00103593886307689,0,0,0,NA,NA,0,NA,NA
+5734,-0.0274355513821502,0.08,8,1,86.6550847056172,0.895484949832776,8,44.3428198099136,33.2679138183594
+5735,-0.2307916744171,0,0,0,NA,NA,0,NA,NA
+5736,-0.135684892272816,0.0763157894736842,7.63157894736842,1,85.8336389547059,0.930896526641207,7.63157894736842,11.0155656091098,0
+5737,-0.0300782446895985,0.0605263157894737,6.05263157894737,1,83.4283422491937,0.852163087457205,6.05263157894737,8.02989717151808,0
+5738,0.049057733327063,0.4475,44.75,1,97.3954200762954,0.890637175158234,44.75,8.13289370616721,0
+5739,0.0419189287537225,0.310526315789474,31.0526315789474,3,93.6118953352765,0.85767282585432,29.4736842105263,45.0634720689159,18.7329120635986
+5740,0.022907405822403,0.115789473684211,11.5789473684211,3,82.4598619361767,0.740186615186615,9.21052631578947,12.9246235652403,0
+5741,0.0260106278786368,0.144736842105263,14.4736842105263,7,72.681611015884,0.606153846153846,5.78947368421053,4.10112387050282,0
+5742,0.0281377355628042,0.168421052631579,16.8421052631579,3,86.5742246167388,0.881894213381555,13.4210526315789,7.30141285806894,0
+5743,0.0304537670315585,0.215,21.5,4,87.9665437131299,0.79184879896757,14.25,11.505511073179,0
+5744,0.0332004541620623,0.134210526315789,13.4210526315789,7,70.1369183654332,0.668099081158509,4.47368421052632,3.33278595232496,0
+5745,0.0280063636869224,0.0947368421052632,9.47368421052632,4,73.3135500521919,0.687015503875969,5,0,0
+5746,0.0329453972106613,0.186842105263158,18.6842105263158,4,86.9298453574441,0.862265372168285,16.5789473684211,26.056971617148,0
+5747,0.0132766115184086,0.03,3,5,42.6662458924213,0.393571861734384,1.25,50.3385403951009,41.5646018981934
+5748,0.0040634371489049,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,50.2238947550456,46.7601776123047
+5749,0.0296900457506964,0.126315789473684,12.6315789473684,3,82.5461129681383,0.846459006758742,10,2.29761030276616,0
+5750,0.0341277362784336,0.165789473684211,16.5789473684211,5,79.3182315501966,0.749354746200172,9.21052631578947,2.4599339167277,0
+5751,0.0182107554361573,0.04,4,5,48.8590914048244,0.479166666666667,1.25,14.2980591952801,5.19557523727417
+5752,0.0248669409076492,0.0605263157894737,6.05263157894737,8,46.7396223944786,0.438219732337379,1.57894736842105,28.3284416406051,5.19557523727417
+5753,0.029710953553015,0.126315789473684,12.6315789473684,7,68.0356118761043,0.581251836614752,3.42105263157895,17.241420785586,0
+5754,0.0197830077923802,0.05,5,5,58.5340786455186,0.491833030852995,2.63157894736842,7.60972033048931,0
+5755,0.0219554156408685,0.0725,7.25,11,43.7607302334503,0.403567127372828,1.5,4.52241512824749,0
+5756,0.0230412267285589,0.0973684210526316,9.73684210526316,5,70.2029309756643,0.673087033408211,4.47368421052632,2.62794676342526,0
+5757,0.0208758403426863,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,14.4342788696289,0
+5758,0.0295241369349625,0.110526315789474,11.0526315789474,8,64.3587399230091,0.635802983581965,3.68421052631579,3.08733665375482,0
+5759,0.0247891911292754,0.08,8,6,68.3157295351421,0.707357859531773,5.25,9.57210102677345,0
+5760,0.0277286886338085,0.123684210526316,12.3684210526316,2,87.1444161154673,0.786036036036036,11.3157894736842,22.3815876778136,10.3911504745483
+5761,0.0262404643335015,0.1,10,6,67.1616349944523,0.62962962962963,3.15789473684211,26.5005198654376,0
+5762,0.0341725274790262,0.252631578947368,25.2631578947368,6,82.5326589609682,0.64993449066492,9.73684210526316,10.504311606288,0
+5763,0.0173662843371858,0.0675,6.75,5,64.8516317057343,0.600972629216285,3.5,20.5120248971162,7.34765291213989
+5764,0.0137826945559745,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,54.2948280334473,49.28955078125
+5765,0.020017580927417,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,14.5155146598816,7.34765291213989
+5766,0.0147110910206289,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,21.3660284996033,7.34765291213989
+5767,0.016765272578923,0.0375,3.75,3,61.9676316777521,0.669421487603306,2.5,12.2307416598002,5.19557523727417
+5768,0.0140412163250738,0.0263157894736842,2.63157894736842,3,55.4123115952091,0.525987525987526,1.84210526315789,5.1064332485199,0
+5769,0.0182630399756542,0.0289473684210526,2.89473684210526,2,62.6104325016174,0.65672990063234,2.10526315789474,9.79344255273992,0
+5770,0.0212170466767642,0.107894736842105,10.7894736842105,3,83.242971163432,0.707579838399384,8.94736842105263,14.0195037678974,5.19557523727417
+5771,0.0135580310657929,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.8606809616089,5.19557523727417
+5772,0.00903970427660313,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483
+5773,0.0156364526168928,0.0447368421052632,4.47368421052632,3,67.915568560165,0.706887052341598,3.42105263157895,14.935122349683,5.19557523727417
+5774,0.0190783051997546,0.0473684210526316,4.73684210526316,5,52.390664143755,0.494577450378555,1.57894736842105,20.1230858167013,5.19557523727417
+5775,0.0227110886915398,0.11,11,3,84.274758125202,0.696325539022168,9,22.7966604883021,10.3911504745483
+5776,0.0177809152148065,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,97.9313583374023,95.5194931030273
+5777,0.0192057877500223,0.068421052631579,6.84210526315789,3,73.6429427569107,0.790547058012953,5.26315789473684,79.3519429426927,44.3910140991211
+5778,0.0307830224966701,0.171052631578947,17.1052631578947,5,85.1465642098568,0.754459896052816,13.9473684210526,11.733511029757,0
+5779,0.0223620847049096,0.1225,12.25,2,87.4064067164286,0.769366436033103,10.75,18.5579354519747,5.19557523727417
+5780,0.0198726936269515,0.0815789473684211,8.15789473684211,5,64.5468241544221,0.564469914040115,2.36842105263158,10.5958517751386,0
+5781,0.0238158974828174,0.115789473684211,11.5789473684211,3,83.552760105708,0.679054054054054,9.21052631578947,19.0772181315856,5.19557523727417
+5782,0.0337438351567279,0.268421052631579,26.8421052631579,4,91.8511826865544,0.746039234186421,23.9473684210526,28.7137441588383,0
+5783,0.031546202611944,0.205,20.5,5,85.8909390176405,0.757102580785079,14.75,23.8151170625919,0
+5784,0.0130907998306563,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,11.0044050216675,10.3911504745483
+5785,0.0374562777357488,0.268421052631579,26.8421052631579,5,85.2473045269731,0.753508668475056,12.1052631578947,4.05927025570589,0
+5786,0.0132059456737663,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,5.62599077224731,0
+5787,0.011290029863485,0.015,1.5,2,46.1375166841518,0.564902102973169,1,39.8671337763468,29.3906116485596
+5788,0.00920133931569198,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,5.9243578116099,0
+5789,0.00707029659908202,0.0157894736842105,1.57894736842105,1,62.3749377455957,1,1.57894736842105,22.3818928400675,16.4298515319824
+5790,0.0142282046683249,0.0657894736842105,6.57894736842105,2,76.0314801779626,0.812676056338028,4.21052631578947,28.069907207489,0
+5791,0.0150867408962949,0.0325,3.25,5,43.1106450527068,0.425782371518806,1,22.5537570073054,10.3911504745483
+5792,0.00914885618937517,0.0421052631578947,4.21052631578947,5,49.7360608351484,0.478021978021978,1.57894736842105,26.8354817926884,5.19557523727417
+5793,0.017099024996117,0.105263157894737,10.5263157894737,6,68.6964955056531,0.699736611062335,3.94736842105263,15.106183218956,0
+5794,0.0302296546980199,0.218421052631579,21.8421052631579,5,86.0180918230996,0.677958725577773,10.7894736842105,3.32721204068287,0
+5795,0.0327099119576997,0.19,19,7,79.3674795856227,0.631472268288189,6.5,4.58957719175439,0
+5796,0.0345863657461259,0.239473684210526,23.9473684210526,9,77.5849393445598,0.569823572130377,9.21052631578947,2.27116702677129,0
+5797,0.0263549511110461,0.176315789473684,17.6315789473684,4,84.8473314323081,0.740586002566833,12.3684210526316,15.7940880149158,0
+5798,0.0369821135164353,0.286842105263158,28.6842105263158,3,89.7913692188701,0.829171895779871,19.4736842105263,13.3471428407442,0
+5799,0.0220889053177643,0.075,7.5,5,66.1192604030357,0.624931053502482,3.5,56.7952833175659,26.4923400878906
+5800,0.0398995997098155,0.333333333333333,33.3333333333333,3,90.6388934403333,0.738532110091743,22.2222222222222,6.60729268391927,0
+5801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5806,0.0157903055627891,0.0855263157894737,8.55263157894737,2,71.4161278742789,0.635491606714628,7.23684210526316,9.75737560712374,5.19557523727417
+5807,0.0219943001967317,0.155124653739612,15.5124653739612,4,84.2885224732091,0.792563799222579,12.7423822714681,5.71707097121647,0
+5808,0.0201480203208035,0.182825484764543,18.2825484764543,3,86.2944231581821,0.808459837877671,13.0193905817175,6.46018571564646,0
+5809,0.0240677272242838,0.193905817174515,19.3905817174515,4,86.4831444887157,0.768027267901545,11.9113573407202,4.33564916338239,0
+5810,0.020684801585448,0.144736842105263,14.4736842105263,2,90.2444511864912,0.790769230769231,14.2105263157895,6.33524782007391,0
+5811,0.0183703094124897,0.0609418282548476,6.09418282548476,4,66.401433406757,0.592833593614437,3.601108033241,33.0490267276764,5.19557523727417
+5812,0.0137147169166849,0.0692520775623269,6.92520775623269,7,62.7714821508643,0.4359375,3.8781163434903,8.27726356506348,5.19557523727417
+5813,0.0158919583412768,0.0969529085872576,9.69529085872576,2,80.108117033544,0.618151047175799,6.09418282548476,7.86758533205305,5.19557523727417
+5814,0.040237184543711,0.313157894736842,31.3157894736842,4,90.658607937374,0.831488576699305,25.7894736842105,15.5924291570647,0
+5815,0.0265788931226734,0.28808864265928,28.808864265928,3,93.6236696842842,0.759628789612768,27.4238227146814,26.075100009258,0
+5816,0.0444627133469933,0.299168975069252,29.9168975069252,6,87.327036250808,0.780480389176041,24.3767313019391,11.8728283952784,0
+5817,0.0271351819228433,0.199445983379501,19.9445983379501,5,86.7107602801323,0.763943001934447,16.8975069252078,27.3245433701409,10.3911504745483
+5818,0.00791445147009366,0.0578947368421053,5.78947368421053,3,74.1547953951066,0.719027275714755,4.73684210526316,10.9612970785661,0
+5819,0.0151502734805242,0.0997229916897507,9.97229916897507,3,79.8338303966126,0.796358974358974,7.20221606648199,7.92279312345717,0
+5820,0.0161050481098687,0.0304709141274238,3.04709141274238,5,38.4585247833076,0.381142857142857,1.10803324099723,0.944650043140758,0
+5821,0.0118977016150752,0.130193905817175,13.0193905817174,7,69.0309183204914,0.611982484076433,5.26315789473684,9.26843824792416,0
+5822,0.0375050057855429,0.347368421052632,34.7368421052632,5,89.6721562998198,0.739325391513854,16.3157894736842,7.49750579848434,0
+5823,0.0318881815313581,0.232686980609418,23.2686980609418,6,84.9033966733648,0.755094129333947,18.2825484764543,10.5802015009381,0
+5824,0.0440308459884033,0.368421052631579,36.8421052631579,3,92.7134802135949,0.810261707988981,25.4847645429363,12.2289080512255,0
+5825,-0.00307630554699469,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+5826,-0.00309147346048887,0,0,0,NA,NA,0,NA,NA
+5827,0.00576113842051923,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,61.9343616261202,53.4917221069336
+5828,0.00911686061040465,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0
+5829,0.0462115847973548,0.313019390581717,31.3019390581717,3,93.5493052606362,0.835883143580013,29.0858725761773,40.535573908713,0
+5830,0.0280364470458536,0.194736842105263,19.4736842105263,3,86.4227934797406,0.81850175967823,13.1578947368421,65.6852484007139,31.6034507751465
+5831,0.037224249995454,0.28808864265928,28.808864265928,1,95.2049817565958,0.954930398052394,28.808864265928,44.6011067995658,14.6953058242798
+5832,0.0093789663769813,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,13.6694237391154,11.6176595687866
+5833,0.013872444967709,0.260387811634349,26.0387811634349,1,94.6683312894905,0.903424291064741,26.0387811634349,11.7618740923861,0
+5834,-0.0437943227139936,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,46.7601776123047,46.7601776123047
+5835,-0.0801623094821454,0,0,0,NA,NA,0,NA,NA
+5836,-0.0763786953409642,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,23.9571228027344,21.4219055175781
+5837,-0.00875023628453307,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824
+5838,0.0209541530052918,0.0473684210526316,4.73684210526316,7,43.0880784305841,0.416820135052179,1.31578947368421,9.06749494870504,5.19557523727417
+5839,0.0337590209446691,0.260387811634349,26.0387811634349,1,94.6683312894905,0.927568218298555,26.0387811634349,38.399124774527,21.4219055175781
+5840,0.0226135429997928,0.130193905817175,13.0193905817174,3,82.0578533292264,0.841918789808917,6.37119113573407,5.43702468466251,0
+5841,0.0232746231680787,0.0803324099722992,8.03324099722992,3,78.7345964293791,0.699243783645219,6.64819944598338,6.42931824717028,0
+5842,0.0175065792753286,0.0415512465373961,4.15512465373961,5,49.7429586904867,0.478323699421965,1.93905817174515,16.9673456509908,5.19557523727417
+5843,0.0258078011832128,0.142105263157895,14.2105263157895,5,77.216407468712,0.674120984233789,5.78947368421053,11.9033495143608,0
+5844,0.035659982151714,0.199445983379501,19.9445983379501,9,79.8801675619593,0.655750211154402,13.5734072022161,15.2839449577861,0
+5845,0.0344068611163576,0.229916897506925,22.9916897506925,4,85.7386163426705,0.83215876278569,17.1745152354571,20.7809125888779,0
+5846,0.0194081877838108,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.810299527062533,4.15512465373961,26.7149297078451,15.5867252349854
+5847,0.0368036442231019,0.276315789473684,27.6315789473684,4,88.5836726524439,0.751418951418952,15.7894736842105,9.23742393766131,0
+5848,0.0216875041623201,0.132963988919668,13.2963988919668,1,90.3199234519404,0.817151094833632,13.2963988919668,8.69598467151324,0
+5849,0.0252693730864566,0.0609418282548476,6.09418282548476,2,74.6783449375262,0.812077043206663,4.43213296398892,36.247933474454,30.2951488494873
+5850,0.0240188951084845,0.0581717451523546,5.81717451523546,6,50.6127366757121,0.535477941176471,1.38504155124654,23.429462932405,5.19557523727417
+5851,0.0262919850832029,0.107894736842105,10.7894736842105,5,71.2285492711128,0.658843144799282,4.73684210526316,26.4166339548623,5.19557523727417
+5852,0.0172463819624661,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,50.4618960486518,21.4219055175781
+5853,0.02821668028529,0.10803324099723,10.803324099723,5,72.5135418008591,0.689536550406116,4.15512465373961,17.6883259675442,5.19557523727417
+5854,0.018508174417183,0.135734072022161,13.5734072022161,1,90.4761904761905,0.88980463980464,13.5734072022161,29.1048026182214,5.19557523727417
+5855,0.0176411229846149,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,21.1300455729167,18.7329120635986
+5856,0.0276020926834855,0.0637119113573407,6.37119113573407,6,62.1253523525181,0.614316239316239,4.15512465373961,3.77726216938185,0
+5857,0.0290951517044078,0.130193905817175,13.0193905817175,6,73.6304486485968,0.640724522292994,5.26315789473684,11.7209817805189,0
+5858,0.0296342732011016,0.163434903047091,16.3434903047091,8,74.4812026459462,0.601545253863135,7.20221606648199,6.28363105806254,0
+5859,0.0200477349641771,0.05,5,5,57.0590154937283,0.56442831215971,2.63157894736842,22.7808165550232,0
+5860,0.023234031011671,0.0858725761772853,8.58725761772853,6,61.3124355019251,0.606181818181818,2.49307479224377,18.4981716371352,0
+5861,0.0152102543284663,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,22.8590982755025,11.6176595687866
+5862,0.0157004357135616,0.03601108033241,3.601108033241,2,64.1225578072574,0.654214559386973,1.93905817174515,14.8780381129338,10.3911504745483
+5863,0.0221951919977935,0.0973684210526316,9.73684210526316,3,82.3583518216148,0.691248864885533,7.89473684210526,27.9161367931881,5.19557523727417
+5864,0.0168293284830453,0.0221606648199446,2.21606648199446,4,36.1211634414231,0.386402266288952,1.10803324099723,10.3596735596657,5.19557523727417
+5865,0.0245426270499754,0.0914127423822715,9.14127423822715,3,76.5165739996421,0.796183378500452,5.54016620498615,23.4676594878688,5.19557523727417
+5866,0.0121631630821479,0.0332409972299169,3.32409972299169,2,63.2835584769182,0.513231080397775,2.21606648199446,10.8799631992976,5.19557523727417
+5867,0.0154142616006108,0.0210526315789474,2.10526315789474,1,68.1401783345986,1,2.10526315789474,30.5240042209625,25.977876663208
+5868,0.0252731250690188,0.0886426592797784,8.86426592797784,4,73.6711945225362,0.767886368950199,6.37119113573407,1.66301281750202,0
+5869,0.0185373616024305,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,22.0811942815781,5.19557523727417
+5870,0.0147079700621656,0,0,0,NA,NA,0,NA,NA
+5871,0.0174181405550036,0,0,0,NA,NA,0,NA,NA
+5872,0.0149279923445793,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,97.3470458984375,72.7380523681641
+5873,0.0154171715023759,0.0277008310249307,2.77008310249307,1,72.175958031556,0.762656147271532,2.77008310249307,15.5921648025513,10.3911504745483
+5874,0.0167729323775423,0.0831024930747922,8.31024930747922,5,63.8246321490846,0.554843085270362,2.77008310249307,11.3183484713236,0
+5875,0.0198642294568249,0.0421052631578947,4.21052631578947,2,70.7997102898379,0.739010989010989,3.15789473684211,38.4289288520813,16.4298515319824
+5876,0.0157372402523718,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,72.4883190155029,20.7823009490967
+5877,0.0151273996477743,0.0249307479224377,2.49307479224377,2,63.2654294198794,0.572679924242424,2.21606648199446,59.9430160522461,54.2434005737305
+5878,0.0255161050108226,0.146814404432133,14.6814404432133,3,85.8599205395769,0.793920365348937,12.7423822714681,15.0310981318636,0
+5879,0.0186051806732154,0.105263157894737,10.5263157894737,5,76.4260918859865,0.699736611062335,7.63157894736842,16.6710149049759,0
+5880,0.0214953478014579,0.074792243767313,7.4792243767313,3,76.7064809697868,0.748642250382955,6.09418282548476,20.4786715330901,10.3911504745483
+5881,0.0142614252255343,0.038781163434903,3.8781163434903,3,61.3817294149549,0.739913544668588,2.77008310249307,29.705835546766,10.3911504745483
+5882,0.0225423654350143,0.0858725761772853,8.58725761772853,4,72.8800880040664,0.715575757575758,4.15512465373961,58.9190276053644,10.3911504745483
+5883,0.0246474480184391,0.136842105263158,13.6842105263158,3,81.1621281785084,0.778706494930118,6.8421052631579,29.8745574400975,10.3911504745483
+5884,0.0223823695543056,0.038781163434903,3.8781163434903,3,61.3379482254554,0.635878962536023,2.21606648199446,5.89806236539568,0
+5885,0.0233749905604369,0.0609418282548476,6.09418282548476,5,60.6498831973592,0.624154086413326,3.04709141274238,0.23616251078519,0
+5886,0.0239148579419841,0.0941828254847645,9.41828254847645,4,73.2218831174223,0.724006116207951,5.54016620498615,2.08591367216671,0
+5887,0.0359676199527856,0.336842105263158,33.6842105263158,3,90.7185571366636,0.805845084815042,23.1578947368421,11.8807551376522,0
+5888,0.0267027575017012,0.196675900277008,19.6675900277008,5,84.4271051466226,0.671365517241379,11.6343490304709,3.46796560287476,0
+5889,0.0216079368743078,0.191135734072022,19.1135734072022,3,90.0094229999106,0.856956866296841,18.005540166205,2.4095420975616,0
+5890,0.0227897122294811,0.199445983379501,19.9445983379501,2,90.6251994251541,0.852464376209029,18.5595567867036,4.51316556665632,0
+5891,0.0239468071460004,0.202631578947368,20.2631578947368,3,86.9529795351073,0.824791302659678,11.0526315789474,8.07458508479131,0
+5892,0.0324291709739832,0.349030470914127,34.9030470914127,4,89.7610752983288,0.745089659017003,21.606648199446,9.67999454907009,0
+5893,0.0276080012823574,0.25207756232687,25.207756232687,5,86.5994139920527,0.694627343392776,15.5124653739612,8.27495845857557,0
+5894,0.0351137747073712,0.335180055401662,33.5180055401662,4,87.4800687605785,0.699166666666667,13.8504155124654,14.4827760861925,0
+5895,0.0371040171763046,0.321052631578947,32.1052631578947,5,93.3255970720529,0.813392262092672,30.2631578947368,8.2402280315024,0
+5896,0.036715472118054,0.25207756232687,25.207756232687,8,76.3817008978029,0.645107453132145,6.64819944598338,11.477550134554,0
+5897,0.0348070487267361,0.313019390581717,31.3019390581717,1,95.625724167062,0.843018659076534,31.3019390581717,28.4713650593715,10.3911504745483
+5898,0.0368393782540444,0.354570637119114,35.4570637119114,3,90.7423202774081,0.773913684171748,21.0526315789474,11.5857201851904,0
+5899,0.0320796725415819,0.302631578947368,30.2631578947368,2,94.8368113262724,0.862119013062409,29.7368421052632,3.82026324479476,0
+5900,0.038282844125658,0.394736842105263,39.4736842105263,2,94.0311453117545,0.852244609402616,31.8713450292398,3.33692482842339,0
+5901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+5906,0.0149396529561278,0,0,0,NA,NA,0,NA,NA
+5907,0.0121819373821066,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,44.2672761281331,30.2951488494873
+5908,0.0182615782633394,0.0470914127423823,4.70914127423823,2,69.8426179170505,0.748139534883721,2.77008310249307,17.5076775831335,5.19557523727417
+5909,0.0184525458045498,0.0304709141274238,3.04709141274238,5,39.8476007570407,0.518666666666667,1.66204986149584,44.5797681808472,10.3911504745483
+5910,0.0114734133561605,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,98.4263916015625,92.941276550293
+5911,0.0224453087596323,0.160664819944598,16.0664819944598,1,91.6954320870293,0.797458745874587,16.0664819944598,34.6081446285906,15.5867252349854
+5912,0.00365215871082232,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,19.4276967729841,11.6176595687866
+5913,0.0129342955622033,0.174515235457064,17.4515235457064,2,91.0487294324127,0.922910311165345,17.1745152354571,8.50625454433381,0
+5914,0.0494666683192439,0.347368421052632,34.7368421052632,4,92.0771605077831,0.860125819836702,29.4736842105263,14.1198931246093,0
+5915,0.0308385052632523,0.246537396121884,24.6537396121884,1,94.3666890443773,0.966611172770995,24.6537396121884,15.2445930416664,0
+5916,0.0164579244190166,0.102493074792244,10.2493074792244,3,76.2839924147918,0.707751467314309,4.70914127423823,13.9080864932086,0
+5917,0.0551542731974876,0.404432132963989,40.4432132963989,2,93.0931520299244,0.861649682083442,23.5457063711911,19.9915505370049,0
+5918,0.00623675538848291,0.0342105263157895,3.42105263157895,4,53.1983561925185,0.597335755373903,2.10526315789474,11.2848164485051,5.19557523727417
+5919,0.00636910367537896,0,0,0,NA,NA,0,NA,NA
+5920,0.0162246881540885,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,4.18107604980469,0
+5921,0.0175573532858915,0.0886426592797784,8.86426592797784,7,63.1721969516896,0.577975216273089,4.70914127423823,6.60004985332489,0
+5922,0.0352215462868452,0.242105263157895,24.2105263157895,9,78.856459999921,0.710365853658537,13.9473684210526,7.37341419510219,0
+5923,0.0426804224576432,0.310249307479224,31.0249307479224,5,86.232726388733,0.784683287605869,15.7894736842105,9.78323501774243,0
+5924,0.0563368321258711,0.43213296398892,43.213296398892,2,93.9478224243041,0.82819750148721,31.5789473684211,9.98176542612222,0
+5925,-0.00651462517507601,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+5926,0.0186651332752789,0.0342105263157895,3.42105263157895,2,67.7320235179672,0.827429609445958,2.89473684210526,2.79761739877554,0
+5927,0.00898843081350981,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+5928,0.00614076996421532,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,15.5867252349854,15.5867252349854
+5929,0.0205474020838116,0.0304709141274238,3.04709141274238,4,44.9943043093668,0.449904761904762,1.38504155124654,16.673339323564,5.19557523727417
+5930,0.0178664758386156,0.05,5,6,47.5945554599921,0.455535390199637,1.31578947368421,10.2309661915428,0
+5931,0.0186399980733581,0.038781163434903,3.8781163434903,7,32.6846510639925,0.375792507204611,1.10803324099723,14.9335543768747,5.19557523727417
+5932,0.0186461807444324,0.0526315789473684,5.26315789473684,5,55.010094792363,0.526819923371648,1.93905817174515,11.433699858816,5.19557523727417
+5933,-0.00644240507059405,0.074792243767313,7.4792243767313,3,75.5712978829542,0.773778025344659,5.81717451523546,14.2465455443771,0
+5934,-0.0778419010365676,0,0,0,NA,NA,0,NA,NA
+5935,-0.120924878070889,0,0,0,NA,NA,0,NA,NA
+5936,-0.124539680481009,0,0,0,NA,NA,0,NA,NA
+5937,-0.0758658598161495,0,0,0,NA,NA,0,NA,NA
+5938,0.0229714423362709,0.144736842105263,14.4736842105263,6,82.6400594506887,0.655384615384615,11.3157894736842,33.5481360955672,5.19557523727417
+5939,0.0152664815439776,0.0332409972299169,3.32409972299169,2,62.82350128823,0.574077195348053,1.93905817174515,39.9513691266378,30.2951488494873
+5940,0.0195988509910832,0.0609418282548476,6.09418282548476,4,61.2872437397141,0.592833593614437,1.93905817174515,22.7381142269481,10.3911504745483
+5941,0.0187828732329392,0.0443213296398892,4.43213296398892,3,62.5809304661148,0.738405797101449,3.04709141274238,12.6161201894283,5.19557523727417
+5942,0.0156049101795038,0.074792243767313,7.4792243767313,4,66.2275531605453,0.622963375574433,2.77008310249307,12.6416213953937,5.19557523727417
+5943,0.0247865056280142,0.144736842105263,14.4736842105263,3,86.9727677072238,0.790769230769231,12.6315789473684,40.4007616736672,10.3911504745483
+5944,0.0243651238334197,0.14404432132964,14.404432132964,6,79.0027107388503,0.684956910657794,9.97229916897507,50.8058309738453,5.19557523727417
+5945,0.0202773542074898,0.03601108033241,3.601108033241,6,35.3927894783896,0.366060025542784,0.831024930747922,36.6682024735671,5.19557523727417
+5946,0.0239873596489168,0.0914127423822715,9.14127423822715,1,87.180691871343,1,9.14127423822715,30.5054399316961,15.5867252349854
+5947,0.0184524950128674,0.105263157894737,10.5263157894737,6,69.4989527146946,0.59964881474978,4.47368421052632,10.634658741951,0
+5948,0.0131847366660534,0.0664819944598338,6.64819944598338,2,78.2798268496208,0.830860534124629,5.81717451523546,8.52326118946075,0
+5949,0.0246813881009513,0.113573407202216,11.3573407202216,7,68.8552117058431,0.623958333333333,4.70914127423823,5.50345151017352,0
+5950,0.0440563374490656,0.412742382271468,41.2742382271468,2,96.0524608554313,0.887725482065105,40.1662049861496,9.30880577292218,0
+5951,0.023049483512159,0.0447368421052632,4.47368421052632,5,52.4925783018536,0.623140495867769,2.36842105263158,14.5392871183508,5.19557523727417
+5952,0.0169308042050764,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,91.9191131591797,91.9191131591797
+5953,0.0268280978990658,0.0554016620498615,5.54016620498615,5,58.5680402735416,0.590199602686595,2.49307479224377,3.11734511852264,0
+5954,0.017390151576614,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,96.2585601806641,93.6645584106445
+5955,0.0188346544894892,0,0,0,NA,NA,0,NA,NA
+5956,0.0127086058647438,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,23.5876214504242,5.19557523727417
+5957,0.0287646880810158,0.0969529085872576,9.69529085872576,7,69.9055557173305,0.560873704252168,6.09418282548476,7.76237760271345,0
+5958,0.0280924507548014,0.135734072022161,13.5734072022161,5,78.6712468108341,0.683188339438339,8.03324099722992,4.04359563516111,0
+5959,0.0157137269275106,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,26.121755361557,5.19557523727417
+5960,0.0203675934546653,0.0692520775623269,6.92520775623269,7,55.3549220624944,0.516517857142857,2.21606648199446,41.230252532959,11.6176595687866
+5961,0.0208835475256978,0.0914127423822715,9.14127423822715,5,66.9645743352637,0.612748419150858,3.32409972299169,17.7405270663175,10.3911504745483
+5962,0.012987201850126,0.0941828254847645,9.41828254847645,6,71.8786804119044,0.74371996505024,7.20221606648199,38.277270821964,16.4298515319824
+5963,0.00931370648653874,0.0210526315789474,2.10526315789474,3,49.0305203394943,0.591397849462366,1.57894736842105,21.0117098093033,10.3911504745483
+5964,0.0189340810810743,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,17.4760257114064,5.19557523727417
+5965,0.0164122029165805,0.0470914127423823,4.70914127423823,3,68.5348087309151,0.790116279069767,3.8781163434903,30.9944218186771,7.34765291213989
+5966,0.0100854187537437,0,0,0,NA,NA,0,NA,NA
+5967,0.00336616990670767,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,12.1230087280273,10.3911504745483
+5968,0.0203466187761722,0.0526315789473684,5.26315789473684,4,62.1807510208655,0.636015325670498,2.77008310249307,22.4441388029801,5.19557523727417
+5969,0.0173067610740366,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,35.3420314788818,32.8597030639648
+5970,0.0134066658087995,0,0,0,NA,NA,0,NA,NA
+5971,0.0127191823707682,0,0,0,NA,NA,0,NA,NA
+5972,0.00406814126027533,0,0,0,NA,NA,0,NA,NA
+5973,0.0129635164801211,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,113.172676086426,112.397483825684
+5974,0.0132237329977175,0,0,0,NA,NA,0,NA,NA
+5975,0.0208679764621162,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,62.746997833252,44.0859146118164
+5976,0.0176708026765104,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,23.3785049438477,11.6176595687866
+5977,0.0247621510216251,0.240997229916898,24.0997229916898,2,89.5638093354225,0.753496585825288,12.7423822714681,9.9298205101627,0
+5978,0.0257967588456426,0.196675900277008,19.6675900277008,4,83.1118700646733,0.671365517241379,10.803324099723,13.3602147505317,0
+5979,0.0362218531157276,0.334210526315789,33.421052631579,3,93.3978037662249,0.791934021183033,28.6842105263158,14.607325125867,0
+5980,0.0243519144915755,0.138504155124654,13.8504155124654,8,69.4631683137124,0.590315869112919,4.15512465373961,14.0677327919006,0
+5981,0.0319789690340429,0.207756232686981,20.7756232686981,6,80.7888790189146,0.636628522992159,8.31024930747922,15.2971591758728,0
+5982,0.0270085781973303,0.213296398891967,21.3296398891967,4,82.9729360169118,0.691564830157415,9.14127423822715,16.4895338888292,0
+5983,0.0246072419381993,0.105263157894737,10.5263157894737,7,63.7703155677383,0.516242317822651,2.63157894736842,23.2301807999611,0
+5984,0.0184914952761294,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,8.55822219848633,5.19557523727417
+5985,0.016413472053261,0.03601108033241,3.601108033241,2,67.8273020257022,0.827107279693487,3.04709141274238,7.38256711226243,0
+5986,0.0249392602665587,0.166204986149584,16.6204986149584,2,90.2581112978323,0.884679274214158,16.0664819944598,8.13502438863119,0
+5987,0.0370108313719883,0.334210526315789,33.4210526315789,2,92.5471386364063,0.817942268535154,20.7894736842105,14.1464565081859,0
+5988,0.0320693160291011,0.260387811634349,26.0387811634349,8,85.0787547563312,0.702224897449616,17.7285318559557,6.76887341255837,0
+5989,0.0306338568754095,0.254847645429363,25.4847645429363,5,86.2544699719376,0.754510835071176,15.2354570637119,10.314066124999,0
+5990,0.0427158009161932,0.279778393351801,27.9778393351801,3,89.0986024717568,0.777539311517212,17.7285318559557,9.12180930789154,0
+5991,0.0205728446318397,0.0973684210526316,9.73684210526316,3,79.7975541103406,0.836543516704105,7.10526315789474,21.3367013158025,10.3911504745483
+5992,0.0292676346567366,0.157894736842105,15.7894736842105,6,75.7537260332312,0.600127551020408,5.81717451523546,50.04080759015,15.5867252349854
+5993,0.034459754997649,0.207756232686981,20.7756232686981,6,79.2771921270095,0.646190930281839,9.69529085872576,19.2832828013102,0
+5994,0.0258256495218621,0.163434903047091,16.3434903047091,5,77.0820873842674,0.695299311777691,5.26315789473684,20.7996619838779,0
+5995,0.0243484164534637,0.197368421052632,19.7368421052632,5,82.971094149249,0.660208643815201,8.1578947368421,43.8932910410563,20.7823009490967
+5996,0.0149515441371074,0.038781163434903,3.8781163434903,6,41.7348886538472,0.427809798270893,1.66204986149584,15.8432388646262,0
+5997,0.0217693846263445,0.141274238227147,14.1274238227147,3,80.8429968082455,0.825991842788283,8.58725761772853,22.6260912839104,0
+5998,0.0146643255306157,0.074792243767313,7.4792243767313,3,72.0712100988333,0.748642250382955,3.601108033241,21.6429314436736,5.19557523727417
+5999,0.0265680125841754,0.192105263157895,19.2105263157895,4,82.2198777092426,0.748574918566775,8.68421052631579,2.54999025553873,0
+6000,0.0292426691695143,0.286549707602339,28.6549707602339,2,90.951721315953,0.753120342771982,16.9590643274854,4.36215687284664,0
+6001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6006,0.0159272114184013,0.0394736842105263,3.94736842105263,1,64.398586025552,1,3.94736842105263,13.5691506067912,10.3911504745483
+6007,0.00630264083716671,0.0304709141274238,3.04709141274238,3,54.1555710798866,0.587428571428571,1.66204986149584,25.0377285697243,15.5867252349854
+6008,0.0184630042327838,0.155124653739612,15.5124653739612,3,88.6514871470416,0.902382964340037,14.9584487534626,9.72501601491656,0
+6009,0.013424867258908,0.0526315789473684,5.26315789473684,5,63.4743845944387,0.636015325670498,3.8781163434903,9.87636661529541,0
+6010,0.0122701332409059,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,47.4214537484305,32.8597030639648
+6011,0.0167783636246583,0.105263157894737,10.5263157894737,3,81.6281577340688,0.751633986928105,8.31024930747922,14.8874825050956,5.19557523727417
+6012,0.00022546157620467,0,0,0,NA,NA,0,NA,NA
+6013,0.00278747915326374,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,10.8056782881419,7.34765291213989
+6014,0.0550671826071553,0.347368421052632,34.7368421052632,4,91.7242904019606,0.872841654397002,30,30.5612856583162,0
+6015,0.048341292584432,0.335180055401662,33.5180055401662,1,95.959595959596,0.924791666666667,33.5180055401662,13.1998703223615,0
+6016,0.0213242685709888,0.07202216066482,7.20221606648199,3,78.8409858683949,0.737167819439388,6.37119113573407,45.2224582708799,7.34765291213989
+6017,0.0251285093558347,0.199445983379501,19.9445983379501,3,86.8486929644081,0.793450126692641,11.6343490304709,28.9045474992858,0
+6018,0.0326709010510776,0.213157894736842,21.3157894736842,1,93.6953594112267,0.947045707915273,21.3157894736842,51.1316315450786,15.5867252349854
+6019,0.0259197838385164,0.202216066481994,20.2216066481994,3,90.2933403514941,0.833523220486111,18.8365650969529,62.6811285672122,37.8243598937988
+6020,0.0219298767601245,0.0664819944598338,6.64819944598338,4,67.5686207136546,0.605341246290801,3.601108033241,3.26119657357534,0
+6021,0.0319889696571973,0.254847645429363,25.4847645429363,6,81.2988197125206,0.738144890742588,9.14127423822715,8.66682235054348,0
+6022,0.0127171509716151,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.931345980126468,2.89473684210526,11.3358003442938,5.19557523727417
+6023,0.0258378955405631,0.124653739612188,12.4653739612188,4,74.5651804159355,0.729430379746835,5.81717451523546,4.08283723195394,0
+6024,0.0382971227397353,0.285318559556787,28.5318559556787,3,89.7355320356839,0.735281793421328,18.2825484764543,10.6833530166774,0
+6025,-0.00339897445567827,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,5.55801097551982,0
+6026,0.010375339948874,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,0,0
+6027,0.000471100147332741,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.894493804068272,8.86426592797784,3.98230059444904,0
+6028,0.0195647434234652,0.0886426592797784,8.86426592797784,4,72.3168678256661,0.746785129763853,5.26315789473684,2.47482144832611,0
+6029,0.017656519686984,0.0581717451523546,5.81717451523546,3,68.0084633833326,0.734558823529412,3.8781163434903,4.75916374297369,0
+6030,0.0214056784068816,0.0842105263157895,8.42105263157895,6,64.0102316470155,0.601016799292661,3.42105263157895,8.93864381313324,0
+6031,0.0129535570773149,0.0470914127423823,4.70914127423823,2,70.2737097001904,0.832093023255814,3.32409972299169,32.5980833838968,5.19557523727417
+6032,0.00794131109968906,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.82907196969697,2.49307479224377,33.4522370232476,27.9790287017822
+6033,-0.0264483362462667,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,42.6363849639893,40.5787391662598
+6034,-0.0976798701225657,0,0,0,NA,NA,0,NA,NA
+6035,-0.122433638726451,0,0,0,NA,NA,0,NA,NA
+6036,-0.0528173992631846,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,39.9442460677203,30.2951488494873
+6037,-0.00961630524378913,0.0664819944598338,6.64819944598338,2,75.9106160041372,0.830860534124629,4.43213296398892,15.630957643191,5.19557523727417
+6038,0.0280884682824092,0.294736842105263,29.4736842105263,2,93.0222275238709,0.908748337520319,26.5789473684211,54.0589171307428,11.6176595687866
+6039,0.0201637662621957,0.0554016620498615,5.54016620498615,6,51.2146926592718,0.487749503358244,1.93905817174515,35.1701101303101,10.3911504745483
+6040,0.0166505560050017,0.0692520775623269,6.92520775623269,2,77.5817010222248,0.838839285714286,5.54016620498615,14.2785798072815,0
+6041,0.0119982268062254,0.0221606648199446,2.21606648199446,2,53.6717642846206,0.590934844192635,1.38504155124654,6.91679239273071,0
+6042,0.0234153062884512,0.127423822714681,12.7423822714681,4,81.6075461458208,0.706145706145706,9.41828254847645,6.0940900263579,0
+6043,0.0201257517071913,0.157894736842105,15.7894736842105,3,85.4904030292537,0.794471153846154,9.73684210526316,49.1444777727127,5.19557523727417
+6044,0.02584521672295,0.191135734072022,19.1135734072022,3,86.9377541971934,0.867174232989924,15.2354570637119,12.4250943073328,0
+6045,0.0186553069073036,0.0415512465373961,4.15512465373961,5,46.536582486703,0.383473462953232,1.38504155124654,61.4624791463216,31.1734504699707
+6046,0.019837951478732,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,30.8413131713867,18.7329120635986
+6047,0.0108936948987321,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,60.568537902832,42.8438110351562
+6048,0.01738106383548,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,44.4625571114676,36.369026184082
+6049,0.0260360602084029,0.166204986149584,16.6204986149584,7,77.8840992251972,0.723230258113979,11.3573407202216,7.81543771425883,0
+6050,0.041986471213153,0.407202216066482,40.7202216066482,5,89.6272518319038,0.655091547093771,18.5595567867036,14.8186608690794,0
+6051,0.0281438770406423,0.176315789473684,17.6315789473684,3,86.1523736331931,0.771715682258813,10,8.87089818271238,0
+6052,0.0121184129784977,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483
+6053,0.0185084779859255,0.038781163434903,3.8781163434903,4,59.5407212395488,0.583861671469741,2.77008310249307,4.01856480325971,0
+6054,0.0295206690677945,0.166204986149584,16.6204986149584,4,82.3076820955564,0.723230258113979,8.86426592797784,17.139387456576,5.19557523727417
+6055,0.0194799831956659,0.0236842105263158,2.36842105263158,4,42.140666859623,0.40251572327044,1.31578947368421,11.5457226435343,5.19557523727417
+6056,0.0265464276031667,0.138504155124654,13.8504155124654,6,73.5139885852932,0.726877246075279,6.64819944598338,28.6639627742767,5.19557523727417
+6057,0.0240544890328646,0.0914127423822715,9.14127423822715,5,68.4408485009499,0.694275067750677,4.98614958448753,10.8868125135248,0
+6058,0.0202736106125145,0.102493074792244,10.2493074792244,4,76.1288772478629,0.671220400728597,5.54016620498615,10.8028538807018,0
+6059,0.0175260619626849,0.0578947368421053,5.78947368421053,6,61.2868582065495,0.562931317778508,3.15789473684211,11.0706028504805,5.19557523727417
+6060,0.0178552783028496,0.0554016620498615,5.54016620498615,2,72.8230226524091,0.795099801343298,3.8781163434903,17.5000113725662,0
+6061,0.0232868306976492,0.0775623268698061,7.75623268698061,7,67.0828553482954,0.518184851518185,4.98614958448754,13.5026459012713,5.19557523727417
+6062,0.0176700264670529,0.0831024930747922,8.31024930747922,3,79.8991895741846,0.755163696898699,7.20221606648199,11.7861396789551,0
+6063,0.0116646280418817,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,48.8205604553223,46.4706382751465
+6064,0.01560834181827,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483
+6065,0.00810043801380086,0,0,0,NA,NA,0,NA,NA
+6066,0.0105703253767561,0,0,0,NA,NA,0,NA,NA
+6067,0.00497607150324544,0.0157894736842105,1.57894736842105,4,20.982045994374,0.274255156608098,0.526315789473684,15.7993314266205,7.34765291213989
+6068,0.00896448370301773,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,20.7823009490967,20.7823009490967
+6069,-0.000330137011897678,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,29.0518050193787,25.977876663208
+6070,-0.00464427015224392,0,0,0,NA,NA,0,NA,NA
+6071,0.015071648102601,0.0210526315789474,2.10526315789474,2,58.2306946168411,0.795698924731183,1.84210526315789,42.0861710309982,10.3911504745483
+6072,0.0108082700327508,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,34.0986480712891,25.977876663208
+6073,0.0137213387677654,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,114.302658081055,114.302658081055
+6074,0.0129679197115935,0,0,0,NA,NA,0,NA,NA
+6075,0.0172393454545511,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,83.1292037963867,83.1292037963867
+6076,0.0209934495646559,0.0249307479224377,2.49307479224377,3,50.1050088594493,0.572679924242424,1.66204986149584,9.94209416707357,0
+6077,0.0157768378255979,0.0526315789473684,5.26315789473684,2,73.5900382740298,0.854406130268199,4.43213296398892,30.0088708777177,18.7329120635986
+6078,0.0275842923632269,0.119113573407202,11.9113573407202,3,80.7157540711648,0.810796645702306,7.20221606648199,18.0737958287084,0
+6079,0.0133187287717623,0.0368421052631579,3.68421052631579,2,66.5867784271973,0.740437158469945,2.63157894736842,41.9606235708509,0
+6080,0.0236697588909836,0.113573407202216,11.3573407202216,4,77.0433265342167,0.803804347826087,7.75623268698061,17.1611039812972,0
+6081,0.0187087224445234,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.927203065134099,5.26315789473684,63.7543865003084,52.9846801757812
+6082,0.0208677981897389,0.0415512465373961,4.15512465373961,4,56.130703978239,0.620599054125066,2.49307479224377,7.7636487642924,0
+6083,0.00820745909477649,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,20.7118567625682,7.34765291213989
+6084,0.0150509389658965,0,0,0,NA,NA,0,NA,NA
+6085,0.0322733148071435,0.102493074792244,10.2493074792244,5,67.381692703644,0.671220400728597,3.601108033241,2.3630637607059,0
+6086,0.0170773628676381,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,20.7823009490967,20.7823009490967
+6087,0.0204245745768084,0.0578947368421053,5.78947368421053,3,72.8303872827983,0.719027275714755,4.47368421052632,45.3097104592757,14.6953058242798
+6088,0.0203885368686708,0.0969529085872576,9.69529085872576,5,71.522234720781,0.732705733023059,6.09418282548476,11.178961794717,0
+6089,0.0239243970085368,0.0664819944598338,6.64819944598338,5,60.0719755695684,0.605341246290801,2.21606648199446,14.8981699943542,0
+6090,0.0507100212647821,0.404432132963989,40.4432132963989,3,91.8287748620003,0.81134047556833,25.7617728531856,7.20634430728547,0
+6091,0.0267740728253772,0.147368421052632,14.7368421052632,5,84.2831021534274,0.697721776759577,11.8421052631579,14.9818060398102,0
+6092,0.0361218022529572,0.310249307479224,31.0249307479224,4,91.6876238659413,0.734442721380572,25.207756232687,20.0599039793015,0
+6093,0.0318378127181088,0.199445983379501,19.9445983379501,7,80.859655284963,0.675421627659864,11.0803324099723,10.7101023064719,0
+6094,0.0212971465327146,0.0775623268698061,7.75623268698061,4,70.5120865603046,0.783183183183183,4.43213296398892,14.1853101934705,5.19557523727417
+6095,0.0201846224217087,0.105263157894737,10.5263157894737,5,80.2863635794535,0.79982440737489,9.21052631578947,6.70405657291412,0
+6096,0.0242391086473851,0.155124653739612,15.5124653739612,4,82.9101036646644,0.694946763562616,10.5263157894737,5.86333483457565,0
+6097,0.0400027170721048,0.329639889196676,32.9639889196676,4,86.2071575156593,0.758283593510866,12.4653739612188,16.4398166311889,0
+6098,0.0272998136104011,0.155124653739612,15.5124653739612,4,81.6795506006262,0.719351022477607,8.86426592797784,5.82821084771837,0
+6099,0.0391609982445707,0.336842105263158,33.6842105263158,5,86.8779509403069,0.728183118741059,12.8947368421053,5.75712237507105,0
+6100,0.0493346639664276,0.476608187134503,47.6608187134503,4,91.6076330672219,0.745251396648045,33.6257309941521,4.00304818007112,0
+6101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6106,-0.0221351436684927,0,0,0,NA,NA,0,NA,NA
+6107,-0.00612065262359561,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210526,3.82239643732707,0
+6108,0.0274380317639282,0.239473684210526,23.9473684210526,3,88.9847007813789,0.732154299628348,14.4736842105263,9.21645476267888,0
+6109,0.0179374257195975,0.118421052631579,11.8421052631579,3,80.6914923406494,0.835820895522388,6.31578947368421,35.9139161003961,10.3911504745483
+6110,0.0295049213097082,0.24,24,2,90.2841623403262,0.869951040391677,14.5,54.7801791230837,11.6176595687866
+6111,0.0140187711329226,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.80882978439331,0
+6112,0.00230203558551837,0,0,0,NA,NA,0,NA,NA
+6113,0.0107240220316816,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,0,0
+6114,0.0105844644955141,0.01,1,1,52.6315789473684,0.747474747474748,1,32.5666356086731,27.9790287017822
+6115,0.0490552070607679,0.326315789473684,32.6315789473684,2,94.8037848736434,0.920833333333333,31.8421052631579,32.8060551535699,5.19557523727417
+6116,0.0238867150462571,0.136842105263158,13.6842105263158,2,89.6431043117188,0.843792819950671,13.4210526315789,24.5228504400987,10.3911504745483
+6117,0.0377079446294566,0.297368421052632,29.7368421052632,1,95.4913966023853,0.874421678783873,29.7368421052632,25.2906349612548,0
+6118,0.0428618842348078,0.2975,29.75,2,94.2597554893528,0.894556478186371,28.5,52.48927409709,20.7823009490967
+6119,0.0427497506899894,0.294736842105263,29.4736842105263,2,94.9020352185755,0.88769026156347,29.2105263157895,20.3259095847607,0
+6120,0.0137355543550496,0.0421052631578947,4.21052631578947,4,60.3869276275906,0.652014652014652,2.89473684210526,6.19068866968155,0
+6121,0.019449748952703,0.131578947368421,13.1578947368421,6,74.8293648936993,0.756149732620321,6.05263157894737,9.52430587768555,0
+6122,0.00872794425396933,0.005,0.5,1,30.8308651382582,1,0.5,13.1564826965332,11.6176595687866
+6123,0.00863635413695468,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,18.7329120635986,18.7329120635986
+6124,0.024165735395371,0.131578947368421,13.1578947368421,4,81.0735223848471,0.674866310160428,8.15789473684211,11.9132783222198,0
+6125,-0.0164124672184387,0.0421052631578947,4.21052631578947,1,79.0554595032226,0.956501831501832,4.21052631578947,9.61361667513847,0
+6126,-0.0060349692174168,0,0,0,NA,NA,0,NA,NA
+6127,-0.0120139502393278,0,0,0,NA,NA,0,NA,NA
+6128,0.00571908326585943,0.0315789473684211,3.15789473684211,2,68.4650420918366,0.817774936061381,2.89473684210526,6.67380885283152,0
+6129,0.0202337425636343,0.05,5,3,71.161901527999,0.673321234119782,3.94736842105263,10.7955051974246,0
+6130,0.018386702791322,0.0525,5.25,4,63.482066847244,0.736147757255937,2.5,0,0
+6131,0.00427224979058864,0.0342105263157895,3.42105263157895,3,60.5915358120313,0.654859218891916,2.36842105263158,6.09186818049504,0
+6132,-0.00849325087067547,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707
+6133,-0.0382952199343938,0,0,0,NA,NA,0,NA,NA
+6134,-0.0648247416151571,0,0,0,NA,NA,0,NA,NA
+6135,-0.0305437776551116,0.0578947368421053,5.78947368421053,3,66.8448287352654,0.719027275714755,2.63157894736842,34.8518334302035,18.7329120635986
+6136,-0.0152284066623045,0,0,0,NA,NA,0,NA,NA
+6137,-0.0155931452418085,0.1,10,3,82.921720474979,0.894179894179894,9.21052631578947,31.8193027094791,5.19557523727417
+6138,-0.0889208188971679,0.0375,3.75,3,64.9626786721516,0.763872491145218,3,31.2389762560527,7.34765291213989
+6139,-0.0468646466679945,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,17.7619332207574,11.6176595687866
+6140,-0.00994085128144625,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,30.6707703272502,14.6953058242798
+6141,0.0188332561516865,0.102631578947368,10.2631578947368,8,61.8886768590472,0.537108053237086,2.63157894736842,10.2416578561832,0
+6142,0.0347685561987179,0.223684210526316,22.3684210526316,2,92.8748728006473,0.880570209900101,21.8421052631579,5.30867614185109,0
+6143,0.0338244684972233,0.27,27,3,88.1994392369062,0.796276782578152,15.25,47.9215943018595,11.6176595687866
+6144,0.00268784707238267,0.0526315789473684,5.26315789473684,3,72.1023275039235,0.795698924731183,4.47368421052632,0.886940169334412,0
+6145,-0.0179072067348323,0.0868421052631579,8.68421052631579,2,81.4406525971806,0.817483189241114,6.84210526315789,0,0
+6146,0.0148667614402113,0.05,5,2,77.9382286686901,0.745916515426497,4.73684210526316,1.36725666648463,0
+6147,0.0293499497536232,0.2175,21.75,5,84.6299115907783,0.802123054725343,13,12.421024651363,0
+6148,0.0268610779411718,0.176315789473684,17.6315789473684,3,85.653795345408,0.854728161437427,13.4210526315789,15.043103645097,0
+6149,0.0304344695229343,0.144736842105263,14.4736842105263,7,73.2590264704724,0.618461538461538,7.36842105263158,16.2229031476108,0
+6150,0.0208655292064481,0.0289473684210526,2.89473684210526,6,31.0506569467344,0.313459801264679,0.789473684210526,42.1322805231268,18.7329120635986
+6151,0.026462137596809,0.1525,15.25,2,90.5602871403706,0.922079367729727,15,42.1504813804001,10.3911504745483
+6152,0.0139481909248341,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,54.5535411834717,51.955753326416
+6153,0.0322011326653362,0.239473684210526,23.9473684210526,2,92.5703266465818,0.780853517877739,22.3684210526316,7.55435020321018,0
+6154,0.0289774526271254,0.178947368421053,17.8947368421053,3,85.1227508828263,0.815772462831286,12.1052631578947,11.6582155508154,0
+6155,0.0186056121984802,0.075,7.5,6,69.5163024803131,0.558742415885273,4.75,31.3242026964823,5.19557523727417
+6156,0.0206862583117886,0.0263157894736842,2.63157894736842,3,52.8544892788092,0.525987525987526,1.57894736842105,85.2311828613281,62.3469009399414
+6157,0.024930240386541,0.0342105263157895,3.42105263157895,3,60.5915358120313,0.654859218891916,2.36842105263158,16.5311494240394,10.3911504745483
+6158,0.023862097165779,0.1,10,4,76.8000672676346,0.753086419753086,6.57894736842105,11.6011294063769,0
+6159,0.0176759281623345,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,89.1907068888346,83.1292037963867
+6160,0.0233438786232574,0.0815789473684211,8.15789473684211,4,73.156013210359,0.760458452722063,5.52631578947368,41.8674824468551,5.19557523727417
+6161,0.0133231167654374,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,11.0044050216675,10.3911504745483
+6162,0.0224343856745691,0.0894736842105263,8.94736842105263,4,75.1650062148097,0.725433526011561,5,44.8555518599117,5.19557523727417
+6163,-0.00291069021347766,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.941406917572,5.19557523727417
+6164,-0.00634962446691038,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.795698924731183,2.10526315789474,13.3275929689407,10.3911504745483
+6165,0.00459101724108654,0,0,0,NA,NA,0,NA,NA
+6166,0.0105916845192712,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.19557523727417,5.19557523727417
+6167,0.0119479114306796,0.0075,0.75,1,44.4894453484604,1,0.75,26.1493644714355,25.977876663208
+6168,0.0118372831696362,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,11.4671890735626,7.34765291213989
+6169,0.0018273022162918,0,0,0,NA,NA,0,NA,NA
+6170,0.00153074177806526,0,0,0,NA,NA,0,NA,NA
+6171,0.020584556856702,0.0125,1.25,4,12.7705624799624,0.189873417721519,0.5,23.4933544158936,15.5867252349854
+6172,0.0144121285406934,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,44.0859146118164,44.0859146118164
+6173,0.0181972442328084,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,87.09845606486,68.3371200561523
+6174,0.0154146929658102,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,161.397689819336,161.397689819336
+6175,0.0187309726166131,0.07,7,1,85.3702908942512,0.85663082437276,7,56.6297348567418,36.369026184082
+6176,0.0261661937107228,0.0868421052631579,8.68421052631579,5,69.4687388215933,0.73636460668161,5.26315789473684,17.3379659363718,0
+6177,0.0215159167991882,0.0736842105263158,7.36842105263158,5,66.579106510126,0.664141414141414,4.21052631578947,10.753946185112,0
+6178,0.0368381356619609,0.234210526315789,23.4210526315789,4,86.636167816565,0.786466100412803,15,15.6003398520223,0
+6179,0.0217023282952732,0.0575,5.75,6,60.3702684635674,0.646330680813439,3.75,41.3401425403097,15.5867252349854
+6180,0.0244759202142967,0.107894736842105,10.7894736842105,4,78.4029987367548,0.772562096532854,6.31578947368421,15.5578186221239,5.19557523727417
+6181,0.0118067191780842,0,0,0,NA,NA,0,NA,NA
+6182,0.0159145245399007,0.0421052631578947,4.21052631578947,4,58.793110575086,0.652014652014652,2.36842105263158,59.5848860740662,36.369026184082
+6183,0.00596540564649586,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,38.9385734558105,31.1734504699707
+6184,0.0105549646903551,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.872654155495979,1.84210526315789,2.22667510168893,0
+6185,0.030842478847377,0.0736842105263158,7.36842105263158,5,62.4613674333427,0.640151515151515,2.10526315789474,2.59778760160719,0
+6186,0.0170238614914285,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,15.5867252349854,15.5867252349854
+6187,0.0154921031299091,0.0775,7.75,6,64.7847661091997,0.653116531165312,4.5,8.033852623355,0
+6188,0.0176576630563767,0.0736842105263158,7.36842105263158,4,68.2762300588377,0.688131313131313,2.89473684210526,9.962191258158,0
+6189,0.0326546798871469,0.181578947368421,18.1578947368421,5,84.0523272808297,0.757646621136829,13.4210526315789,11.6474916140238,0
+6190,0.0335812565920366,0.221052631578947,22.1052631578947,5,85.7899871704776,0.707056049337929,15.5263157894737,12.2290735585349,0
+6191,0.0477427560225169,0.36,36,6,89.0490344072176,0.763257575757576,23.75,32.8790997531679,5.19557523727417
+6192,0.0477422043214718,0.434210526315789,43.4210526315789,2,93.6907492550035,0.813953488372093,27.6315789473684,27.7241389997078,0
+6193,0.0316104599836858,0.242105263157895,24.2105263157895,5,85.6133624065892,0.766683604336043,13.1578947368421,14.0264475760253,0
+6194,0.0238027050125789,0.144736842105263,14.4736842105263,4,84.2376780314129,0.716923076923077,10.5263157894737,14.2172744750977,0
+6195,0.0200919022638573,0.165,16.5,2,91.1361209907473,0.802134860713356,16,7.3712564164942,0
+6196,0.0322926370879271,0.218421052631579,21.8421052631579,5,82.1386835158994,0.686662543805401,10,4.13207660238427,0
+6197,0.0319491945381359,0.215789473684211,21.5789473684211,5,88.5546397509193,0.797732006479982,18.6842105263158,13.8699126010988,0
+6198,0.0227289535206326,0.121052631578947,12.1052631578947,4,80.6374510340957,0.781206817134961,9.47368421052632,1.97417273728744,0
+6199,0.0188645292552883,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,39.2176890903049,31.1734504699707
+6200,0.0110743258115639,0.0333333333333333,3.33333333333333,2,63.0533837152019,0.695740365111562,2.22222222222222,6.49446904659271,0
+6201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6206,-0.0175193275385697,0,0,0,NA,NA,0,NA,NA
+6207,-0.0105755847009247,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,6.27161407470703,5.19557523727417
+6208,0.025645449396761,0.210526315789474,21.0526315789474,2,92.2762239241964,0.858208955223881,20.4986149584488,26.9562981128693,10.3911504745483
+6209,0.0215082492071402,0.116343490304709,11.6343490304709,2,83.7019023480108,0.872488851604927,9.41828254847645,57.2025146484375,46.7601776123047
+6210,0.0249335370108479,0.186842105263158,18.6842105263158,4,84.2328311632678,0.763883495145631,13.4210526315789,51.4253741385232,10.3911504745483
+6211,0.00954765472989465,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648
+6212,0.0495087809077402,0.390581717451524,39.0581717451524,3,90.1052445018735,0.834637068357999,19.6675900277008,34.0026952797639,0
+6213,0.0869217736109926,0.836565096952909,83.6565096952909,1,99.4815158803776,0.924726698638706,83.6565096952909,73.222961615253,11.6176595687866
+6214,0.0321633321946521,0.260526315789474,26.0526315789474,2,91.5795877115843,0.855651965292495,20.2631578947368,26.2345312002933,0
+6215,0.022186649461783,0.163434903047091,16.3434903047091,3,82.0125107568792,0.812491884170887,8.58725761772853,8.39256255909548,0
+6216,0.0144842438616015,0.0526315789473684,5.26315789473684,3,72.125435026108,0.599616858237548,4.15512465373961,9.12371941616661,0
+6217,0.0137203022781769,0.038781163434903,3.8781163434903,3,61.1623092147322,0.583861671469741,2.21606648199446,5.19557523727417,0
+6218,0.0440103410056748,0.3,30,3,93.9397710483749,0.86130374479889,28.9473684210526,25.4299225179773,0
+6219,0.0306425649894492,0.207756232686981,20.7756232686981,2,91.938655003059,0.91393833439288,20.2216066481994,6.90170773824056,0
+6220,0.0262360493393732,0.0526315789473684,5.26315789473684,4,63.7492414524587,0.599616858237548,3.32409972299169,2.02742654398868,0
+6221,0.0190275928547058,0.0941828254847645,9.41828254847645,6,62.4371556939187,0.546581476627348,2.77008310249307,7.64898692860323,0
+6222,0.0365664768586277,0.305263157894737,30.5263157894737,4,88.1988119681593,0.766955266955267,17.3684210526316,3.60345247696186,0
+6223,0.0174417337371461,0.0914127423822715,9.14127423822715,7,65.0564640143225,0.592366757000903,4.70914127423823,5.08752434181445,0
+6224,0.0375409256163024,0.326869806094183,32.6869806094183,6,84.917297518983,0.777854697896235,14.1274238227147,7.37116853665497,0
+6225,0.0142509950027969,0.188365650969529,18.8365650969529,4,85.4570769232123,0.844695557403849,11.6343490304709,12.0739808152704,0
+6226,-0.00378077327679995,0,0,0,NA,NA,0,NA,NA
+6227,-0.00119469988075507,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,3.89668142795563,0
+6228,0.00616139935717661,0.0692520775623269,6.92520775623269,1,84.4444444444445,0.785119047619048,6.92520775623269,11.1786672592163,0
+6229,0.0112269895965563,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,12.988938331604,0
+6230,0.00244429125347156,0,0,0,NA,NA,0,NA,NA
+6231,0.0221293888153026,0.102493074792244,10.2493074792244,2,82.0994963477636,0.762548067192876,8.03324099722992,44.0601194742564,25.977876663208
+6232,0.00930609016731953,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.933639705882353,5.81717451523546,38.3603810809907,25.977876663208
+6233,-0.0268447023065109,0.0858725761772853,8.58725761772853,2,83.9264807260096,0.934363636363636,8.31024930747922,7.86643905024375,0
+6234,-0.00625884565630067,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+6235,0.0313678017847751,0.268698060941828,26.8698060941828,4,87.3598475429499,0.77209595959596,16.3434903047091,15.191130495563,0
+6236,0.00525785225933389,0.0997229916897507,9.97229916897507,3,76.3854035609071,0.740820512820513,4.70914127423823,28.6772139999602,0
+6237,-0.0807250994523675,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,29.7838908831278,21.4219055175781
+6238,-0.140472149167602,0,0,0,NA,NA,0,NA,NA
+6239,-0.0805742501464129,0,0,0,NA,NA,0,NA,NA
+6240,-0.00147198612511378,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,54.9151178995768,44.6940307617188
+6241,0.0129393350250181,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,38.3635206222534,23.2353191375732
+6242,0.0190108794454708,0,0,0,NA,NA,0,NA,NA
+6243,-0.0210038704464176,0,0,0,NA,NA,0,NA,NA
+6244,-0.0132627392103789,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0
+6245,-0.0118885352174684,0,0,0,NA,NA,0,NA,NA
+6246,0.00735006915355952,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.955484308527036,8.31024930747922,19.0504425684611,10.3911504745483
+6247,0.0147355553079478,0.0868421052631579,8.68421052631579,3,74.7138100674934,0.695805315401857,5,26.6409135731784,0
+6248,0.0302064929688399,0.204986149584488,20.4986149584488,5,86.5322343827332,0.796810506566604,17.1745152354571,27.9392166588758,5.19557523727417
+6249,0.0390397755977687,0.346260387811634,34.6260387811634,3,91.2557037418411,0.831535130291944,24.0997229916897,33.8981500434875,0
+6250,0.0111072825993411,0.0498614958448753,4.98614958448753,4,60.2522874067609,0.649173955296404,2.49307479224377,21.6380063692729,5.19557523727417
+6251,0.010987041037046,0.0368421052631579,3.68421052631579,4,53.860263532831,0.532786885245902,1.84210526315789,18.3959885665349,5.19557523727417
+6252,0.0203740313363823,0.0692520775623269,6.92520775623269,3,75.2406631989619,0.811979166666667,5.54016620498615,12.1756087112427,5.19557523727417
+6253,0.0381287392185307,0.285318559556787,28.5318559556787,3,90.3379422242031,0.818478944060339,23.2686980609418,9.6057384407636,0
+6254,0.0178979114506625,0.0554016620498615,5.54016620498615,2,75.3968253968254,0.760949768233847,4.43213296398892,23.4938391685486,5.19557523727417
+6255,0.0136147927049598,0.0157894736842105,1.57894736842105,4,20.982045994374,0.274255156608098,0.526315789473684,90.0994876225789,29.3906116485596
+6256,0.0208295082423186,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,98.8067944844564,98.5791015625
+6257,0.0259877568082617,0.07202216066482,7.20221606648199,6,60.0245885089053,0.474335638878777,2.21606648199446,8.4834842131688,0
+6258,0.029924784199118,0.171745152354571,17.1745152354571,7,77.1804929122347,0.66462281679673,8.86426592797784,7.63636219116949,0
+6259,0.0112057711019492,0.0263157894736842,2.63157894736842,4,44.7900895640262,0.446985446985447,1.31578947368421,90.7470764160156,84.5778350830078
+6260,0.0138013393312133,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,40.156907081604,21.4219055175781
+6261,0.0165293399269378,0.0277008310249307,2.77008310249308,2,64.2512077294686,0.841770764847688,2.49307479224377,71.5871162414551,21.4219055175781
+6262,0.0247214735111375,0.110803324099723,11.0803324099723,3,79.0427298650409,0.78179197470591,7.4792243767313,16.5466623544693,0
+6263,0.0182112918519363,0.0578947368421053,5.78947368421053,3,70.3748154268552,0.687808084127506,3.15789473684211,12.6456489562988,0
+6264,0.0185309304909215,0.0664819944598338,6.64819944598338,3,76.6872499839571,0.774480712166172,5.81717451523546,34.2068265676498,14.6953058242798
+6265,0.0117417256382814,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,10.4749227762222,5.19557523727417
+6266,0.0105309229675639,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,10.3911503156026,5.19557523727417
+6267,0.0127301194797455,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,11.8310933113098,7.34765291213989
+6268,0.0185717853653242,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,8.87125682830811,0
+6269,0.0228345959421203,0.0997229916897507,9.97229916897507,3,80.3407499400926,0.814871794871795,8.31024930747922,33.9453048838509,7.34765291213989
+6270,0.0179287399344873,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,31.9824091593424,25.977876663208
+6271,0.0133153846906937,0.0263157894736842,2.63157894736842,3,51.8673950562613,0.604989604989605,1.57894736842105,41.1265483856201,33.2679138183594
+6272,0.0151196182646181,0.0304709141274238,3.04709141274238,2,66.19517193391,0.862476190476191,2.77008310249307,55.6593548167836,44.0859146118164
+6273,0.0171675334876608,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,38.9947786331177,30.2951488494873
+6274,0.0126383248369927,0,0,0,NA,NA,0,NA,NA
+6275,0.0127955012089698,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,79.9688014984131,69.7059555053711
+6276,0.0240025222877312,0.0581717451523546,5.81717451523546,4,65.5896745542702,0.601838235294118,3.32409972299169,8.53032019024804,0
+6277,0.0286468345074256,0.191135734072022,19.1135734072022,5,81.8775202607602,0.744565832672931,11.9113573407202,52.2173810488936,25.977876663208
+6278,0.0364893343053897,0.274238227146814,27.4238227146814,6,82.8541092489017,0.705849558281156,11.9113573407202,19.3122730784946,0
+6279,0.0268391324020788,0.163157894736842,16.3157894736842,7,79.5620526577213,0.70125786163522,9.21052631578947,15.2859830394868,5.19557523727417
+6280,0.0238379523505909,0.110803324099723,11.0803324099723,4,74.1789902227718,0.74822150927605,6.09418282548476,17.4072650551796,0
+6281,0.020231521960454,0.124653739612188,12.4653739612188,4,75.4002058545143,0.714398734177215,6.37119113573407,13.5813895331489,0
+6282,0.019765371499229,0.135734072022161,13.5734072022161,3,87.0300442638466,0.76583485958486,12.4653739612188,12.8208608238065,0
+6283,0.0228136281932979,0.128947368421053,12.8947368421053,5,83.1176623065194,0.712990936555891,10.7894736842105,13.8177131827997,5.19557523727417
+6284,0.0282706852605236,0.174515235457064,17.4515235457064,4,85.4366623455561,0.724679682733374,12.7423822714681,8.58173297700428,0
+6285,0.0229968826119692,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,2.59778761863708,0
+6286,0.0259090385249322,0.227146814404432,22.7146814404432,1,93.8988944698773,0.892918057100482,22.7146814404432,13.680162325138,0
+6287,0.0326370986210685,0.294736842105263,29.4736842105263,4,92.8649436656119,0.824516033692922,27.6315789473684,6.79367683189256,0
+6288,0.0272904427926388,0.274238227146814,27.4238227146814,2,93.7255105519596,0.790998370357664,26.3157894736842,10.7042204827973,0
+6289,0.0408283798463438,0.365650969529086,36.5650969529086,1,96.3681237134493,0.9018826215369,36.5650969529086,13.8988903363546,0
+6290,0.0408853662975514,0.349030470914127,34.9030470914127,3,95.4747108975922,0.745089659017003,34.3490304709141,5.05040238017128,0
+6291,0.0218898317484816,0.128947368421053,12.8947368421053,5,81.6173774263514,0.671989641778162,10,6.87020857480108,0
+6292,0.0284686396480538,0.246537396121884,24.6537396121884,5,87.8849732077049,0.774625416204218,19.3905817174515,8.05830368834935,0
+6293,0.0421694736825804,0.476454293628809,47.6454293628809,2,94.1746808795095,0.807187087944186,24.3767313019391,6.80646088511445,0
+6294,0.0436872016277985,0.382271468144044,38.2271468144044,4,94.1461770713791,0.80085771229269,35.4570637119114,6.66843414306641,0
+6295,0.0435196030958507,0.376315789473684,37.6315789473684,3,95.293572079337,0.822527136277257,36.3157894736842,17.5108697697833,0
+6296,0.0439767299474806,0.426592797783933,42.6592797783933,2,93.6632761512269,0.784315733770335,25.4847645429363,11.4812766669633,0
+6297,0.0213096905257232,0.0609418282548476,6.09418282548476,2,73.7293580723472,0.812077043206663,3.04709141274238,3.18316568027843,0
+6298,0.0230675861724967,0.0526315789473684,5.26315789473684,5,56.4829675683094,0.490421455938697,1.66204986149584,44.4672910288761,14.6953058242798
+6299,0.0184296908567328,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,100.587163925171,95.3780822753906
+6300,0.0200272833111346,0.0116959064327485,1.16959064327485,2,34.6720800441695,0.494082840236686,0.877192982456141,12.609925866127,5.19557523727417
+6301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6306,-0.0234240586570721,0,0,0,NA,NA,0,NA,NA
+6307,-0.0224914228979854,0,0,0,NA,NA,0,NA,NA
+6308,0.0176414095681882,0.119113573407202,11.9113573407202,1,89.4584842426695,0.984233053808526,11.9113573407202,12.4872422551,0
+6309,0.0153627956327773,0.0775623268698061,7.75623268698061,3,77.7670067078553,0.807273940607274,6.64819944598338,26.4006512505668,10.3911504745483
+6310,0.0111155794973265,0.0184210526315789,1.84210526315789,2,49.719331540751,0.490616621983914,1.05263157894737,29.3091867991856,10.3911504745483
+6311,0.0182168099415833,0.0277008310249307,2.77008310249307,4,41.7780866361615,0.446197676966908,1.10803324099723,7.82687172889709,5.19557523727417
+6312,0.0493672438530371,0.443213296398892,44.3213296398892,2,94.0164447163442,0.871712864250178,26.5927977839335,30.2106913864613,0
+6313,0.0265407307081475,0.357340720221607,35.7340720221607,1,96.2619070998962,0.947028613352898,35.7340720221607,113.6163678428,88.3247756958008
+6314,0.0431839627161696,0.423684210526316,42.3684210526316,1,97.1000219636963,0.900345551030483,42.3684210526316,51.4867843248829,18.7329120635986
+6315,0.0294626682953699,0.202216066481994,20.2216066481994,4,82.429298653709,0.774766710069444,10.5263157894737,13.5351444074552,0
+6316,0.00402497229628443,0.0443213296398892,4.43213296398892,2,70.0874262467545,0.8256038647343,3.32409972299169,7.79336279630661,0
+6317,-0.00377376277465701,0,0,0,NA,NA,0,NA,NA
+6318,0.0327313386799753,0.265789473684211,26.5789473684211,1,94.9188630316506,0.90217628071843,26.5789473684211,27.722908742357,0
+6319,0.0177583611043789,0.149584487534626,14.9584487534626,1,91.1912638540493,0.898847676088403,14.9584487534626,7.8778610141189,0
+6320,0.0194380700542595,0.038781163434903,3.8781163434903,5,43.7225426949378,0.375792507204611,1.10803324099723,4.9145097051348,0
+6321,0.0160531093711861,0.0886426592797784,8.86426592797784,6,61.9657023789709,0.577975216273089,2.77008310249307,8.95083793997765,0
+6322,0.023983784653683,0.194736842105263,19.4736842105263,2,89.7682913227306,0.837606837606838,16.3157894736842,5.56394834131808,0
+6323,0.0146704393021907,0.0886426592797784,8.86426592797784,6,67.8213847023032,0.556873977086743,4.43213296398892,7.63670073449612,0
+6324,0.0239202497787245,0.121883656509695,12.1883656509695,5,73.9315621910544,0.707605081422116,6.64819944598338,9.06930268894542,0
+6325,0.0250875794137398,0.196675900277008,19.6675900277008,7,79.4539306857671,0.721158620689655,11.3573407202216,6.6059411814515,0
+6326,-0.00045287220418686,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,16.4298515319824,16.4298515319824
+6327,-0.026933662772966,0,0,0,NA,NA,0,NA,NA
+6328,-0.0197196221699409,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,12.8710619319569,5.19557523727417
+6329,0.0236785527802597,0.0277008310249307,2.77008310249307,4,40.5351910106461,0.446197676966908,1.10803324099723,3.02820310592651,0
+6330,0.0134726068590872,0,0,0,NA,NA,0,NA,NA
+6331,0.0257410354193312,0.0554016620498615,5.54016620498615,3,67.2425414664435,0.658499668905496,3.04709141274238,66.1802854537964,49.0149574279785
+6332,0.0268956510679073,0.0775623268698061,7.75623268698061,4,68.1549019794219,0.638638638638639,3.32409972299169,53.0774211202349,11.6176595687866
+6333,0.0179898027939963,0.119113573407202,11.9113573407202,3,83.320924579714,0.779262753319357,9.69529085872576,27.0983786693839,5.19557523727417
+6334,0.0122838102897731,0.0236842105263158,2.36842105263158,3,53.9211901422254,0.573225516621743,1.84210526315789,12.7747591336568,5.19557523727417
+6335,0.0129728143478626,0.0969529085872576,9.69529085872576,4,76.773977310221,0.751798180664269,6.64819944598338,23.1360984529768,0
+6336,-0.000625298571991918,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,52.3423051834106,40.5787391662598
+6337,-0.0930887523458411,0,0,0,NA,NA,0,NA,NA
+6338,-0.0978690277746768,0,0,0,NA,NA,0,NA,NA
+6339,-0.0674416118919323,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.89080459770115,5.26315789473684,37.5580442328202,22.0429573059082
+6340,0.00998107407909815,0.110803324099723,11.0803324099723,2,86.0601544838661,0.89928860371042,10.5263157894737,52.1957818031311,37.8243598937988
+6341,0.0160007930469702,0.0609418282548476,6.09418282548476,6,57.1553353487274,0.498872115217769,2.77008310249307,69.9464354081587,47.9008369445801
+6342,0.0141467019873699,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,15.1564764022827,11.6176595687866
+6343,0.017540248697256,0.0605263157894737,6.05263157894737,3,76.2084059871792,0.615624027388733,5,20.7482993499092,5.19557523727417
+6344,0.0302889478595094,0.213296398891967,21.3296398891967,3,85.7855591577002,0.756990472245236,10.5263157894737,12.1150991204497,0
+6345,0.038974757592567,0.318559556786704,31.8559556786704,4,88.2386526693245,0.767178705440901,19.6675900277008,33.7813618369724,5.19557523727417
+6346,0.0188297897064865,0.124653739612188,12.4653739612188,1,89.820262380557,0.924841772151899,12.4653739612188,32.9496479246351,14.6953058242798
+6347,0.0223534910746247,0.189473684210526,18.9473684210526,4,83.0258207797985,0.73770324164025,10,39.7502578629388,10.3911504745483
+6348,0.0196570273081387,0.113573407202216,11.3573407202216,3,81.0750902129264,0.754755434782609,7.75623268698061,48.3855349726793,7.34765291213989
+6349,0.0251354474024176,0.18005540166205,18.005540166205,3,85.2804554612189,0.881278402296101,14.6814404432133,9.71654872160691,0
+6350,0.00945337853351559,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,18.7040705680847,0
+6351,0.0216605765632314,0.110526315789474,11.0526315789474,3,81.1036529514746,0.841653471122593,9.21052631578947,16.1423947470529,0
+6352,0.0136807182823109,0.0443213296398892,4.43213296398892,4,58.3657990695432,0.607608695652174,2.77008310249307,4.16569113731384,0
+6353,0.0284127365344915,0.152354570637119,15.2354570637119,5,76.5811734841043,0.652287581699346,6.09418282548476,5.5581207708879,0
+6354,0.0198147399619465,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.936696282440963,8.86426592797784,36.6502412557602,25.977876663208
+6355,0.00818387779828826,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,143.84056854248,142.949157714844
+6356,0.0122840875489079,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,99.3509216308594,98.8525619506836
+6357,0.0220571289620513,0.038781163434903,3.8781163434903,3,60.5372063498304,0.635878962536023,2.49307479224377,27.9214319161006,7.34765291213989
+6358,0.029222877059097,0.141274238227147,14.1274238227147,1,90.7748213352599,0.852762328513163,14.1274238227147,9.96529713798972,0
+6359,0.0214141197459723,0.0763157894736842,7.63157894736842,4,68.0612578890732,0.700551615445232,3.15789473684211,65.9232467125202,26.4923400878906
+6360,0.0277578141333902,0.0831024930747922,8.31024930747922,8,55.6292882592692,0.510327393797398,2.49307479224377,46.6786362806956,0
+6361,0.0208886836625931,0.0914127423822715,9.14127423822715,5,71.5524676173491,0.633130081300813,4.70914127423823,27.3655397675254,0
+6362,0.0176358459230992,0.074792243767313,7.4792243767313,3,76.1851832165728,0.798913800306364,6.09418282548476,60.1101565890842,44.0859146118164
+6363,0.0199436902877335,0.0815789473684211,8.1578947368421,5,64.8209731014546,0.564469914040115,2.89473684210526,17.0431068174301,0
+6364,0.0226756229963143,0.138504155124654,13.8504155124654,3,80.1377213603411,0.767845659163987,7.20221606648199,45.6484934234619,11.6176595687866
+6365,0.0248158001281166,0.119113573407202,11.9113573407202,6,67.2454229886824,0.621593291404612,4.15512465373961,16.9380162150361,0
+6366,0.0223177758693196,0.038781163434903,3.8781163434903,5,46.3847375199922,0.479827089337176,1.66204986149584,36.391368831907,5.19557523727417
+6367,0.0192951209541781,0.05,5,6,58.0251177741065,0.491833030852995,2.89473684210526,46.1155126471268,18.7329120635986
+6368,0.0212802639600084,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,72.1537551879883,69.7059555053711
+6369,0.0186192906750115,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,16.2063039779663,14.6953058242798
+6370,0.018329053372959,0.0249307479224377,2.49307479224377,2,56.7440577704869,0.658143939393939,1.66204986149584,6.25110085805257,0
+6371,0.0105903808910625,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,47.0985527038574,40.5787391662598
+6372,0.0148640634916343,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,12.0293060302734,0
+6373,0.0106435667788437,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,84.3933486938477,82.1492538452148
+6374,0.0128424796279019,0,0,0,NA,NA,0,NA,NA
+6375,0.02057227007769,0.0342105263157895,3.42105263157895,2,64.2589088290837,0.654859218891916,1.84210526315789,75.0736488929162,62.3469009399414
+6376,0.025494188083398,0.102493074792244,10.2493074792244,4,76.0447286901824,0.817344667071443,6.64819944598338,11.9967204944508,0
+6377,0.0253444227617219,0.0498614958448753,4.98614958448753,6,50.6362639676318,0.493251268761473,2.21606648199446,36.4884237713284,23.2353191375732
+6378,0.0268649924585178,0.0886426592797784,8.86426592797784,8,58.912866046342,0.535772737900397,3.04709141274238,54.5992245078087,25.977876663208
+6379,0.0227652606614425,0.0605263157894737,6.05263157894737,5,57.9819738000299,0.615624027388733,2.10526315789474,55.4265640922215,41.5646018981934
+6380,0.0242378182064841,0.0609418282548476,6.09418282548476,6,53.2423189653641,0.498872115217769,1.93905817174515,16.1066891713576,0
+6381,0.0118374489958868,0.0304709141274238,3.04709141274238,3,54.4858695954154,0.656190476190476,1.93905817174515,10.6128661415794,5.19557523727417
+6382,0.0149390097693039,0.0249307479224377,2.49307479224377,4,38.5697916232197,0.401751893939394,1.10803324099723,32.8934883541531,7.34765291213989
+6383,0.0249626340964153,0.126315789473684,12.6315789473684,6,71.7029179587712,0.497502203937702,3.42105263157895,7.09984719753265,0
+6384,0.0300585572176337,0.168975069252078,16.8975069252078,2,87.2024008770567,0.818364779874214,11.6343490304709,1.7089605565931,0
+6385,0.0403086185559161,0.332409972299169,33.2409972299169,4,92.3792922152662,0.814477140355552,28.5318559556787,2.52912866274516,0
+6386,0.0432631456540327,0.371191135734072,37.1191135734072,3,94.1783266889789,0.850093883151585,34.3490304709141,13.2917106329505,0
+6387,0.037616096523791,0.265789473684211,26.5789473684211,3,88.7690927831579,0.864551773302442,19.4736842105263,13.7251697341994,0
+6388,0.0568260077674586,0.481994459833795,48.1994459833795,4,93.8445798930467,0.80153930731171,38.5041551246537,15.0913883570967,0
+6389,0.0268216137663839,0.14404432132964,14.404432132964,4,84.4839005119075,0.842478455328897,12.7423822714681,8.37459534865159,0
+6390,0.0326551376132345,0.315789473684211,31.5789473684211,2,94.5417288728542,0.893577296489918,30.7479224376731,4.39821475012261,0
+6391,0.0367073949404968,0.205263157894737,20.5263157894737,7,76.8235382461931,0.6535176120549,5.52631578947368,22.5929430876023,0
+6392,0.0364471824990954,0.274238227146814,27.4238227146814,7,80.3569037674331,0.667145552791835,8.31024930747922,11.4116967422794,0
+6393,0.0430786641336554,0.332409972299169,33.2409972299169,6,91.5643753520929,0.738893753092999,27.9778393351801,13.8155892252922,0
+6394,0.0530524232052009,0.443213296398892,44.3213296398892,5,89.1987874548279,0.767861373405083,16.8975069252078,22.6163271933794,0
+6395,0.0276021714383157,0.165789473684211,16.5789473684211,7,77.8098825079318,0.651276168626326,10,28.077985657586,0
+6396,0.0367651174117308,0.290858725761773,29.0858725761773,5,89.8624456717758,0.776165674603175,24.0997229916898,4.29770021892729,0
+6397,0.0350845695414482,0.218836565096953,21.8836565096953,4,90.8207887828181,0.844554204660588,20.7756232686981,8.39677660978293,0
+6398,0.0177011351660241,0.0221606648199446,2.21606648199446,3,44.9714579590004,0.590934844192635,1.38504155124654,26.2337083816528,11.6176595687866
+6399,0.024383830336635,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210527,109.410128275553,102.076858520508
+6400,0.0216159740177307,0.0263157894736842,2.63157894736842,1,70.4776621718293,0.828828828828829,2.63157894736842,95.1470209757487,90.73681640625
+6401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6406,-0.0199150630537349,0,0,0,NA,NA,0,NA,NA
+6407,-0.0229413813187088,0,0,0,NA,NA,0,NA,NA
+6408,0.0267692306636861,0.199445983379501,19.9445983379501,4,82.6370148969296,0.754107293681715,6.92520775623269,4.27255422539181,0
+6409,0.0144777441817602,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.914535984848485,2.49307479224377,10.138858212365,0
+6410,0.00883755849056701,0.0315789473684211,3.15789473684211,2,62.3749377455957,0.635549872122762,1.57894736842105,41.1151844660441,25.977876663208
+6411,0.019265513456018,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,5.19557523727417,5.19557523727417
+6412,0.0127553816537203,0.0664819944598338,6.64819944598338,2,75.5128726878084,0.802670623145401,4.15512465373961,5.35257818301519,0
+6413,-0.0130458325651302,0,0,0,NA,NA,0,NA,NA
+6414,-0.000827216213369148,0.134210526315789,13.4210526315789,4,79.2355432827699,0.761031338434126,6.57894736842105,79.612096973494,49.0149574279785
+6415,0.0197316734945597,0.0581717451523546,5.81717451523546,5,58.0122343960789,0.601838235294118,2.21606648199446,49.6959787096296,25.977876663208
+6416,-0.0082766366802671,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,38.4445486068726,32.8597030639648
+6417,-0.0156415646193646,0,0,0,NA,NA,0,NA,NA
+6418,0.0115494881284432,0.0815789473684211,8.1578947368421,2,80.0068938964355,0.869340974212034,6.57894736842105,3.9566314758793,0
+6419,0.0295972058019769,0.191135734072022,19.1135734072022,6,81.4519660049114,0.754783199366014,10.2493074792244,14.9381466395613,0
+6420,0.0156938271698448,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,6.5526796068464,5.19557523727417
+6421,0.0160672508244315,0.0914127423822715,9.14127423822715,3,78.0745609377388,0.755420054200542,6.37119113573407,14.9880579601635,5.19557523727417
+6422,0.0493497855678709,0.465789473684211,46.5789473684211,3,92.6174796216171,0.771018815624953,25.5263157894737,26.7039891771004,0
+6423,0.011391187792046,0.110803324099723,11.0803324099723,7,67.2225618352176,0.647510112986469,5.81717451523546,4.05602618455887,0
+6424,0.0207508378041798,0.127423822714681,12.7423822714681,3,80.5267374481922,0.735531135531136,7.75623268698061,7.90952740544858,0
+6425,0.0228507642395144,0.188365650969529,18.8365650969529,6,78.1202734062736,0.730805632833338,11.0803324099723,9.41848147616667,0
+6426,0.00969204933554513,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.905354919053549,3.94736842105263,7.72656011581421,0
+6427,0.0260562875423464,0.25207756232687,25.207756232687,2,93.6974248416494,0.925720164609053,24.9307479224377,6.47184747130006,0
+6428,0.0222381067693312,0.224376731301939,22.4376731301939,3,87.9955887470798,0.767212301587302,16.3434903047091,10.7233430073585,0
+6429,0.0139151869467176,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0
+6430,0.00425919287400144,0,0,0,NA,NA,0,NA,NA
+6431,0.0107972758610319,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,36.6140524546305,30.2951488494873
+6432,0.0230833352289461,0.0193905817174515,1.93905817174515,3,42.9746115819409,0.617584745762712,1.38504155124654,81.1654984610421,55.9580574035645
+6433,0.0011901917206762,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,121.291931152344,121.291931152344
+6434,0.0102652852455465,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,83.1292037963867,83.1292037963867
+6435,0.0182522924231287,0.152354570637119,15.2354570637119,3,88.4972210857421,0.900653594771242,14.6814404432133,55.531722016768,29.3906116485596
+6436,-0.0269956261881892,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,58.4395414499136,49.0149574279785
+6437,-0.116402720808699,0,0,0,NA,NA,0,NA,NA
+6438,-0.128420283270565,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,42.5078287124634,37.4658241271973
+6439,-0.022727992374339,0.157894736842105,15.7894736842105,2,86.1325696349969,0.854591836734694,9.69529085872576,93.201637602689,51.4335708618164
+6440,0.00265968149644645,0.0304709141274238,3.04709141274238,4,42.2911813465303,0.449904761904762,0.831024930747922,97.2655584161932,82.1492538452148
+6441,0.0131498113423076,0.0470914127423823,4.70914127423823,5,57.5082739546951,0.454302325581395,1.93905817174515,88.7780001023236,49.28955078125
+6442,0.0194066959949039,0.0443213296398892,4.43213296398892,6,43.3229037140825,0.389613526570048,1.38504155124654,56.0314568281174,21.4219055175781
+6443,0.0216249414728449,0.1,10,4,75.949893234015,0.753086419753086,6.8421052631579,78.1169772901033,41.8880653381348
+6444,0.0224919314662498,0.0470914127423823,4.70914127423823,7,51.0580187344217,0.370348837209302,2.49307479224377,26.0108684651992,5.19557523727417
+6445,0.034181003215003,0.274238227146814,27.4238227146814,3,87.981194355755,0.783257569259799,14.9584487534626,33.8368840795575,0
+6446,0.0152446578424153,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,6.72934034135607,0
+6447,0.0329955927899152,0.284210526315789,28.4210526315789,3,90.3031275611494,0.842383107088989,15.2631578947368,46.8380773685597,25.977876663208
+6448,0.0301113128710481,0.171745152354571,17.1745152354571,1,92.1499865944243,0.910566084479128,17.1745152354571,34.2188009446667,18.7329120635986
+6449,0.0511053044633362,0.318559556786704,31.8559556786704,3,90.2173073365879,0.887116948092558,25.4847645429363,17.7994691724363,0
+6450,0.0260096916509179,0.0831024930747922,8.31024930747922,3,74.2784877729464,0.621616622479808,4.43213296398892,9.56396630605062,0
+6451,0.0159631638232991,0.0368421052631579,3.68421052631579,3,63.5989523978357,0.740437158469945,2.89473684210526,22.9858533314296,10.3911504745483
+6452,0.0224497004565615,0.102493074792244,10.2493074792244,5,69.3533231319691,0.634689334142886,4.43213296398892,8.51336614505665,0
+6453,0.0293845115249642,0.121883656509695,12.1883656509695,5,73.3290350420615,0.738383493903998,6.64819944598338,12.9223440452056,0
+6454,0.0272730653945513,0.193905817174515,19.3905817174515,3,84.6338369791171,0.838627664627162,11.3573407202216,50.5370101656233,25.977876663208
+6455,0.0101137436777782,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,111.638540649414,102.340965270996
+6456,0.00714478796381675,0,0,0,NA,NA,0,NA,NA
+6457,0.024123970609593,0.0775623268698061,7.75623268698061,3,77.2797568461312,0.662729396062729,5.81717451523546,13.1314133575984,0
+6458,0.0280521152672815,0.110803324099723,11.0803324099723,3,82.6528775906283,0.73143627656112,8.86426592797784,6.28210743665695,0
+6459,-0.0139345850833898,0,0,0,NA,NA,0,NA,NA
+6460,0.00550211925925255,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,33.7942396799723,16.4298515319824
+6461,0.021132226068758,0.102493074792244,10.2493074792244,3,82.5330588194886,0.74428253390002,8.31024930747922,18.7192985560443,0
+6462,0.0140133933896209,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,57.6168568929036,49.28955078125
+6463,0.0166736271482621,0.0815789473684211,8.1578947368421,7,57.9804105120836,0.477363896848138,2.10526315789474,26.6401569458746,0
+6464,0.0166210822633961,0.0692520775623269,6.92520775623269,3,74.349780496857,0.650818452380952,4.43213296398892,33.6419139480591,14.6953058242798
+6465,0.0142794108559683,0.0664819944598338,6.64819944598338,4,65.2984323217086,0.63353115727003,2.77008310249307,16.2795263727506,0
+6466,0.0116947240340801,0.0277008310249307,2.77008310249307,2,60.7721260804076,0.841770764847688,2.21606648199446,65.4009654998779,51.955753326416
+6467,0.0194165764824184,0.0368421052631579,3.68421052631579,3,59.9157247722398,0.740437158469945,1.84210526315789,85.1255711146763,70.6674652099609
+6468,0.0176315151977148,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,112.815063476562,112.157051086426
+6469,0.0112854443761227,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,105.643363952637,103.911506652832
+6470,0.0146188172798965,0,0,0,NA,NA,0,NA,NA
+6471,0.0155115926734078,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,106.907032775879,98.8525619506836
+6472,0.01861061517522,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,74.3893203735352,74.3893203735352
+6473,0.0189218549454693,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,102.248905181885,99.9388809204102
+6474,0.0154114379331475,0,0,0,NA,NA,0,NA,NA
+6475,0.018240539792245,0.0894736842105263,8.94736842105263,4,75.1314034100946,0.705821635012386,6.31578947368421,21.2389693119947,5.19557523727417
+6476,0.0140615107982467,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+6477,0.0290258665620078,0.0858725761772853,8.58725761772853,3,76.2073633883307,0.824969696969697,4.43213296398892,34.9458015195785,20.7823009490967
+6478,0.0281897506622115,0.18005540166205,18.005540166205,2,86.978451386611,0.859692657259029,9.69529085872576,22.5165432856633,0
+6479,0.0160736962902439,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,74.9316482543945,74.9316482543945
+6480,0.0204786650781324,0.0415512465373961,4.15512465373961,5,48.4779170749272,0.525748817656332,1.93905817174515,23.1739683151245,10.3911504745483
+6481,0.035151309073349,0.274238227146814,27.4238227146814,3,90.6933199335391,0.767775967064071,19.9445983379501,17.3308240861604,0
+6482,0.0330544402826883,0.232686980609418,23.2686980609418,6,85.1834567491941,0.728854214619727,13.8504155124654,18.5815455743245,0
+6483,0.042220733185231,0.313157894736842,31.3157894736842,7,81.7467252462947,0.642755782602526,8.42105263157895,8.54108082346556,0
+6484,0.0337785953740127,0.210526315789474,21.0526315789474,4,81.9010250462887,0.744776119402985,7.4792243767313,4.61453361260264,0
+6485,0.0380919585602649,0.274238227146814,27.4238227146814,6,83.1066945021331,0.744553563770478,11.6343490304709,1.99764594164762,0
+6486,0.0250546799434434,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,16.4967099598476,10.3911504745483
+6487,0.0173614921820684,0.0473684210526316,4.73684210526316,2,76.4701262567725,0.844485369347248,4.47368421052632,68.3152609931098,51.955753326416
+6488,0.0354910226028362,0.193905817174515,19.3905817174515,4,81.9997281778355,0.798284580783952,12.4653739612188,10.1503284522465,0
+6489,0.0201878348180443,0.07202216066482,7.20221606648199,2,78.7018832777631,0.816017473607572,5.81717451523546,17.2708043501927,0
+6490,0.0193167245587703,0.110803324099723,11.0803324099723,2,87.3811231454204,0.81536244013577,10.803324099723,14.0530569195747,0
+6491,0.0295006863679048,0.165789473684211,16.5789473684211,3,83.4920196229535,0.694866647548036,7.63157894736842,37.2050586427961,10.3911504745483
+6492,0.0334290145454013,0.249307479224377,24.9307479224377,2,89.8631173708673,0.834521326579725,13.8504155124654,33.9300246662564,10.3911504745483
+6493,0.0503291590458525,0.481994459833795,48.1994459833795,2,97.2403917428557,0.843637030003165,47.9224376731302,16.8909059009333,0
+6494,0.0355533347921004,0.318559556786704,31.8559556786704,2,95.212068029844,0.865951375859913,31.5789473684211,52.158132951156,25.977876663208
+6495,0.0101869078477887,0.0236842105263158,2.36842105263158,3,51.3270011451042,0.487870619946092,1.57894736842105,50.9313853581746,5.19557523727417
+6496,0.035625131391866,0.301939058171745,30.1939058171745,6,89.0910784624898,0.760031423737008,24.9307479224377,3.02933843420186,0
+6497,0.0257288515466601,0.146814404432133,14.6814404432133,2,85.3740937642562,0.858320251177394,8.58725761772853,2.89611203715486,0
+6498,0.0262135344073159,0.121883656509695,12.1883656509695,6,68.1415064165012,0.615269843976468,3.8781163434903,12.0874018777501,0
+6499,0.00588442015076261,0.0763157894736842,7.63157894736842,5,66.0310779700029,0.608413650966843,3.94736842105263,42.3647999599062,0
+6500,0.013794646885182,0.0614035087719298,6.14035087719298,3,69.0349612392326,0.70035046728972,3.50877192982456,13.2508621897016,0
+6501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6506,-0.00646563550635619,0,0,0,NA,NA,0,NA,NA
+6507,-0.00903104083952616,0.0210526315789474,2.10526315789474,2,53.5963703730863,0.591397849462366,1.31578947368421,12.8381550908089,5.19557523727417
+6508,0.00616198295839527,0.0342105263157895,3.42105263157895,2,69.5073604029095,0.597335755373903,2.89473684210526,10.7025939134451,5.19557523727417
+6509,0.0107178046687247,0.0236842105263158,2.36842105263158,2,59.10066639958,0.658580413297394,1.84210526315789,13.0499636332194,5.19557523727417
+6510,0.00366420162636913,0.025,2.5,4,44.7288488947304,0.447731755424063,1.25,9.04768567085266,5.19557523727417
+6511,0.00866625287660434,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,12.0804438591003,10.3911504745483
+6512,0.0146430782972617,0.134210526315789,13.4210526315789,3,82.0511155288673,0.853963595709744,9.73684210526316,25.1534387364107,0
+6513,-0.0312154517849099,0.0657894736842105,6.57894736842105,2,77.1235383069601,0.785915492957747,5.26315789473684,27.6255658340454,14.6953058242798
+6514,-0.0207980004654019,0.085,8.5,1,87.210675248157,0.921935987509758,8.5,24.4372091573827,14.6953058242798
+6515,0.0161019840549814,0.131578947368421,13.1578947368421,4,83.2437222788847,0.76969696969697,9.73684210526316,15.5864083385468,5.19557523727417
+6516,0.0232089371209057,0.142105263157895,14.2105263157895,2,87.5254358939592,0.862128108714295,12.6315789473684,24.9383493706032,5.19557523727417
+6517,0.0113489768326824,0.0552631578947368,5.52631578947368,3,66.9514689346842,0.735376044568245,3.15789473684211,14.9303080240885,5.19557523727417
+6518,0.0166026384431615,0.0675,6.75,4,67.379215607908,0.65085105056425,2.5,8.00346249121207,0
+6519,0.013518474886874,0.0921052631578947,9.21052631578947,3,76.0643200131131,0.620189905047476,4.47368421052632,5.17968002046858,0
+6520,0.00631345798266059,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,9.56457124437605,5.19557523727417
+6521,0.017328744881333,0.202631578947368,20.2631578947368,2,88.3239321327481,0.79712677150068,11.0526315789474,8.25001159890906,0
+6522,0.0220952135952848,0.125,12.5,5,78.6363980989315,0.784873949579832,7.75,10.7707469272614,0
+6523,0.000443857645400146,0.0236842105263158,2.36842105263158,3,47.6543207308807,0.487870619946092,1.31578947368421,9.85109647115072,5.19557523727417
+6524,0.00197825128062074,0.0263157894736842,2.63157894736842,2,64.8660180539262,0.762993762993763,2.36842105263158,4.06731820106506,0
+6525,0.0148454726803098,0.0842105263157895,8.42105263157895,5,65.1129051195105,0.601016799292661,2.63157894736842,12.2336295247078,0
+6526,0.0123689062741505,0.1025,10.25,5,71.5154868429849,0.596302127487788,4,11.4182055054641,0
+6527,0.000392462870858205,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,21.6254267692566,10.3911504745483
+6528,0.0111115032127839,0.0184210526315789,1.84210526315789,3,37.0208748079497,0.490616621983914,0.789473684210526,12.0903114591326,0
+6529,0.00366217899921283,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,0,0
+6530,-0.00291864832449392,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,17.8009791374207,14.6953058242798
+6531,0.00611994880511917,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+6532,0.0219735368980956,0.0710526315789474,7.10526315789474,6,57.2585196633559,0.574412016601884,1.84210526315789,54.0136137538486,7.34765291213989
+6533,0.0094445015440502,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,77.2377777099609,77.2377777099609
+6534,-0.00244480814217241,0.09,9,3,83.8279969262324,0.835164835164835,8.5,34.3869133260515,11.6176595687866
+6535,-0.0100739022128293,0.115789473684211,11.5789473684211,1,89.5165340769437,0.938867438867439,11.5789473684211,19.7431855960326,0
+6536,-0.0243065328761555,0.0315789473684211,3.15789473684211,2,63.786442286923,0.574808184143223,2.10526315789474,37.0671512285868,30.2951488494873
+6537,-0.122700125309884,0,0,0,NA,NA,0,NA,NA
+6538,-0.0967480577144488,0,0,0,NA,NA,0,NA,NA
+6539,-0.0224704552305435,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,57.2341995239258,55.2297248840332
+6540,0.0109239471107829,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,88.3247756958008,88.3247756958008
+6541,0.00620398583900839,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,21.9135796001979,5.19557523727417
+6542,0.00613365255444478,0.0578947368421053,5.78947368421053,4,71.644056848932,0.500492934604009,4.21052631578947,24.2865953445435,5.19557523727417
+6543,0.030807177179031,0.2325,23.25,5,86.6766732944112,0.72528550684824,12.75,47.5055067769943,7.34765291213989
+6544,0.0202960264916424,0.0868421052631579,8.68421052631579,6,64.8034261879263,0.614686732842352,3.42105263157895,14.4265352162448,0
+6545,0.0206997987987339,0.118421052631579,11.8421052631579,6,68.3907102315662,0.626865671641791,2.89473684210526,8.88453115887112,5.19557523727417
+6546,0.0262301886574469,0.0789473684210526,7.89473684210526,4,68.9533761208156,0.62332361516035,2.63157894736842,6.18529364267985,0
+6547,0.0338245989001007,0.18,18,4,86.5063093934703,0.875168043019013,15.5,38.6470980710453,5.19557523727417
+6548,0.0264180722663025,0.107894736842105,10.7894736842105,6,78.8005710395682,0.593860886665812,8.15789473684211,22.8764162528806,5.19557523727417
+6549,0.0188801274374878,0.0710526315789474,7.10526315789474,2,82.9281501755489,0.774688714671586,6.84210526315789,17.4534553598475,5.19557523727417
+6550,0.023164176181308,0.0342105263157895,3.42105263157895,2,68.3053913709012,0.769906145927944,2.89473684210526,21.088817009559,15.5867252349854
+6551,0.0195917499977077,0.03,3,5,48.4644261558569,0.514857489387508,2,33.3121937115987,15.5867252349854
+6552,0.0122220186300135,0,0,0,NA,NA,0,NA,NA
+6553,0.0289527003219088,0.110526315789474,11.0526315789474,7,71.675284717213,0.651637636469706,7.36842105263158,13.4472907157171,0
+6554,0.00774435407725641,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,26.9295495351156,25.977876663208
+6555,0.00318816840928776,0,0,0,NA,NA,0,NA,NA
+6556,0.0103838923147524,0,0,0,NA,NA,0,NA,NA
+6557,0.0302659062056256,0.128947368421053,12.8947368421053,4,79.8546116282189,0.726658034815134,6.84210526315789,11.5826032988879,0
+6558,0.0222670895595672,0.0947368421052632,9.47368421052632,2,80.6380182018747,0.779069767441861,5.78947368421053,5.04510810640123,0
+6559,0.0218517110482207,0.2425,24.25,3,89.8603996566444,0.848260688137779,19.75,31.1098361949331,0
+6560,0.0256088152737711,0.205263157894737,20.5263157894737,4,89.4908357194169,0.890584509069968,18.9473684210526,59.0628995406322,0
+6561,0.0213874686298177,0.0894736842105263,8.94736842105263,5,67.4605299361261,0.588150289017341,2.89473684210526,42.8615191263311,0
+6562,0.0287878066289283,0.142105263157895,14.2105263157895,4,84.6638817178836,0.774391450623392,11.8421052631579,87.8785612318251,55.9580574035645
+6563,0.0261827726310003,0.08,8,5,70.4404633261693,0.623745819397993,4.5,31.9102627187967,0
+6564,0.0156219551347404,0.0289473684210526,2.89473684210526,2,66.7940384779939,0.794037940379404,2.63157894736842,36.3690263574774,20.7823009490967
+6565,0.0135825965597561,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5.19557523727417,5.19557523727417
+6566,0.0129042715971848,0.0263157894736842,2.63157894736842,1,72.0745708707785,0.841995841995842,2.63157894736842,6.48340697288513,0
+6567,0.0169836787492955,0.0025,0.25,1,0,NA,0.25,15.5867252349854,15.5867252349854
+6568,0.00953340440459406,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,59.2386741638184,59.2386741638184
+6569,0.014791361683226,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,121.341455078125,89.3880615234375
+6570,0.0104730409487322,0,0,0,NA,NA,0,NA,NA
+6571,0.00887135399428189,0.005,0.5,1,30.8308651382582,1,0.5,34.1708583831787,31.6034507751465
+6572,0.0116268598450455,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,77.9336318969727,77.9336318969727
+6573,0.00874673386906579,0,0,0,NA,NA,0,NA,NA
+6574,0.0165239020368302,0,0,0,NA,NA,0,NA,NA
+6575,0.0175438439420395,0.0375,3.75,3,64.2094167349546,0.669421487603306,2.5,72.8872673034668,57.3870010375977
+6576,0.0169277220717241,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.4898055394491,11.6176595687866
+6577,0.028053646187733,0.142105263157895,14.2105263157895,6,75.4405536927627,0.686654792532489,7.63157894736842,23.262293294624,5.19557523727417
+6578,0.021423409357598,0.0736842105263158,7.36842105263158,3,72.7835642503986,0.592171717171717,3.68421052631579,10.5947527715138,5.19557523727417
+6579,0.0211117184205796,0.095,9.5,4,73.6589293559496,0.596597386652635,4.25,11.0880242899845,0
+6580,0.0299393780954185,0.0921052631578947,9.21052631578947,5,70.3917416889505,0.658170914542729,5.52631578947368,44.7241701398577,15.5867252349854
+6581,0.0280162836771955,0.128947368421053,12.8947368421053,4,79.4717129589837,0.699323838296648,7.63157894736842,38.0925885317277,7.34765291213989
+6582,0.0285688601905636,0.139473684210526,13.9473684210526,5,77.9533003309894,0.744597909735524,8.15789473684211,20.6967384050477,5.19557523727417
+6583,0.0292591282655849,0.18,18,4,86.1403296190007,0.788745918955252,14,14.0854598548677,5.19557523727417
+6584,0.0219356037724203,0.0552631578947368,5.52631578947368,3,66.2704511721221,0.702298050139276,2.63157894736842,7.91706689198812,0
+6585,0.0249805777747641,0.0921052631578947,9.21052631578947,3,83.4275108472414,0.84807596201899,8.68421052631579,2.86507220949445,0
+6586,0.0228191842217807,0.0605263157894737,6.05263157894737,3,71.429039747666,0.70432617491441,3.68421052631579,7.32219497017238,0
+6587,0.0210480807724252,0.0725,7.25,7,56.5012378703089,0.380627401502552,1.5,8.40123117381129,0
+6588,0.019882416093146,0.0947368421052632,9.47368421052632,5,68.1808280433477,0.594961240310077,3.42105263157895,16.0625405708949,5.19557523727417
+6589,0.0163736683317678,0.0763157894736842,7.63157894736842,4,70.9779273772032,0.700551615445232,4.47368421052632,9.41627127548744,0
+6590,0.027137476410127,0.0605263157894737,6.05263157894737,10,43.928465989749,0.319950202303143,1.84210526315789,8.54523640093596,0
+6591,0.0321449324434434,0.1775,17.75,6,77.8017891573715,0.610942249240122,8,7.01716747418256,0
+6592,0.0489433231861576,0.392105263157895,39.2105263157895,4,93.4307213246425,0.716791145362574,33.6842105263158,22.0906737154762,0
+6593,0.0460990381165175,0.402631578947368,40.2631578947368,3,92.6327411170428,0.7855362377914,27.1052631578947,28.7545700727725,5.19557523727417
+6594,0.0300285536329427,0.160526315789474,16.0526315789474,6,73.9364291033904,0.662861536641628,4.47368421052632,13.1603191954191,5.19557523727417
+6595,0.0363242326961154,0.3025,30.25,5,86.6705390209907,0.622026718800912,14.25,9.20866847629389,0
+6596,0.0460970047843722,0.421052631578947,42.1052631578947,6,91.0049309280157,0.788497217068646,25.2631578947368,4.82492435872555,0
+6597,0.0414711817973607,0.368421052631579,36.8421052631579,5,86.7534248820007,0.696940104166667,14.7368421052632,2.64627745832716,0
+6598,0.0276729187897505,0.0973684210526316,9.73684210526316,4,74.2998763098311,0.618601538976246,4.73684210526316,5.59274565206992,0
+6599,0.0406463781095226,0.375,37.5,5,91.0743470103273,0.796363636363636,25.75,1.08215660095215,0
+6600,0.0301952307613748,0.3,30,4,90.7974854883884,0.772893772893773,25.2777777777778,3.27029371261597,0
+6601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6606,-0.00768966967198319,0,0,0,NA,NA,0,NA,NA
+6607,0.0239593014763799,0.135734072022161,13.5734072022161,2,83.6496154419497,0.7933836996337,10.2493074792244,56.4062635071424,20.7823009490967
+6608,0.0193515281717633,0.0581717451523546,5.81717451523546,3,69.6804635237244,0.568658088235294,3.32409972299169,21.8993372917175,5.19557523727417
+6609,-4.02206602665403e-05,0.0470914127423823,4.70914127423823,2,73.6229696528195,0.832093023255814,4.15512465373961,14.8489375394933,10.3911504745483
+6610,0.0107570916636608,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,32.7890954017639,25.977876663208
+6611,0.00396494163056594,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,11.6820014847649,5.19557523727417
+6612,0.0263933108683703,0.265927977839335,26.5927977839335,3,87.738796354593,0.825756910925845,14.1274238227147,34.008145103852,0
+6613,-0.0175025189670738,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,36.3438060283661,30.2951488494873
+6614,7.21197873836469e-05,0.0710526315789474,7.10526315789474,2,82.8242497161443,0.799723301930298,6.8421052631579,21.0072644551595,5.19557523727417
+6615,0.0208379156925463,0.14404432132964,14.404432132964,5,79.2092184656782,0.763717682993346,6.92520775623269,10.605758034266,0
+6616,0.019680711789464,0.105263157894737,10.5263157894737,3,79.7517976629788,0.804855275443511,6.92520775623269,23.0142836821707,15.5867252349854
+6617,0.0148172179106646,0.168975069252078,16.8975069252078,2,86.5424430641822,0.852421383647799,9.97229916897507,7.1699906099038,0
+6618,0.0246697301923153,0.231578947368421,23.1578947368421,2,89.8947763938593,0.859087339673676,16.5789473684211,25.7765083475546,0
+6619,0.0115156426369528,0.03601108033241,3.601108033241,2,67.8273020257022,0.827107279693487,3.04709141274238,5.69220854685857,0
+6620,0.0188850686327365,0.0498614958448753,4.98614958448753,3,68.7773738500291,0.649173955296404,3.601108033241,9.33519615067376,0
+6621,0.0431998992801979,0.368421052631579,36.8421052631579,1,96.4027280994676,0.895316804407713,36.8421052631579,17.0552662655823,0
+6622,0.0133171360024502,0.0473684210526316,4.73684210526316,4,59.4798718349333,0.572334765704931,2.36842105263158,26.2841140958998,5.19557523727417
+6623,0.00814844384743251,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,4.18107604980469,0
+6624,-0.0191496689931278,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,10.6817495121675,5.19557523727417
+6625,0.00488043068538512,0.0277008310249307,2.77008310249307,7,18.9841935476991,0.20885382423844,0.554016620498615,19.8806716918945,5.19557523727417
+6626,0.0260253604785631,0.131578947368421,13.1578947368421,3,85.444550337516,0.823885918003565,11.3157894736842,26.7924568843842,5.19557523727417
+6627,0.0237194285553092,0.130193905817175,13.0193905817174,6,71.1641406541276,0.655095541401274,4.15512465373961,20.9413976364947,5.19557523727417
+6628,0.0247476668727689,0.188365650969529,18.8365650969529,4,83.8089760630017,0.710098373820518,9.69529085872576,20.5344450473785,0
+6629,0.0168760380434137,0.0470914127423823,4.70914127423823,6,47.1815985782313,0.496279069767442,1.93905817174515,13.0707924506244,5.19557523727417
+6630,0.00632223465684212,0.0552631578947368,5.52631578947368,6,53.8176045195021,0.437674094707521,1.84210526315789,14.903010277521,5.19557523727417
+6631,0.0179472655250831,0.10803324099723,10.803324099723,4,82.0987654320988,0.879264214046823,9.97229916897507,15.7822316854428,0
+6632,0.013232812639582,0.0304709141274238,3.04709141274238,4,46.8677942155493,0.518666666666667,1.38504155124654,9.75364455309781,5.19557523727417
+6633,0.014169559216843,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,8.77935470853533,5.19557523727417
+6634,-0.00835548444317618,0.0552631578947368,5.52631578947368,1,82.4055252250565,0.966922005571031,5.52631578947368,31.4095065707252,18.7329120635986
+6635,-0.0287486432989731,0,0,0,NA,NA,0,NA,NA
+6636,-0.0408977682259212,0.0332409972299169,3.32409972299169,3,62.3219867152144,0.69576942524861,2.77008310249307,24.4749385515849,10.3911504745483
+6637,-0.0254247287651743,0.116343490304709,11.6343490304709,4,81.1781895601352,0.824672170956775,9.69529085872576,24.0530408450535,14.6953058242798
+6638,-0.00622859545588941,0.0421052631578947,4.21052631578947,5,50.3274975566502,0.521520146520146,1.31578947368421,20.0833598673344,5.19557523727417
+6639,0.00636551625745831,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,39.5683212280273,39.5683212280273
+6640,0.00305610050393995,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,12.9889380137126,0
+6641,0.0191845196920271,0.138504155124654,13.8504155124654,6,76.4042171995729,0.672252695290335,6.09418282548476,9.28647918701172,0
+6642,0.0250304692623995,0.113573407202216,11.3573407202216,3,86.2306267209855,0.640307971014493,10.5263157894737,20.9904079437256,0
+6643,0.0203259200526334,0.136842105263158,13.6842105263158,5,78.048873647919,0.661551109893121,8.42105263157895,6.09055476922255,0
+6644,0.0426931817229788,0.343490304709141,34.3490304709141,5,88.6769032509497,0.837524613220816,25.4847645429363,12.6900640841453,0
+6645,0.0587830811950515,0.529085872576177,52.9085872576177,2,97.6615801700779,0.796045197740113,52.6315789473684,20.2356948128545,0
+6646,0.0237986460545615,0.121883656509695,12.1883656509695,4,75.8921647616813,0.661437462699292,5.26315789473684,31.8556994524869,0
+6647,0.027567487055785,0.207894736842105,20.7894736842105,4,82.4810122242392,0.729473184622686,7.36842105263158,32.1741342725633,0
+6648,0.016254904377246,0.0443213296398892,4.43213296398892,3,61.924431123681,0.694806763285024,2.21606648199446,7.51052555441856,0
+6649,0.0230127533511016,0.0886426592797784,8.86426592797784,4,76.6392964121386,0.662380173018471,6.64819944598338,11.8070576190948,0
+6650,0.0369517242742155,0.321329639889197,32.1329639889197,5,86.6697227264684,0.747405247813411,19.1135734072022,12.005116125633,0
+6651,0.0199116511413625,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.792349726775956,3.68421052631579,22.1958100455148,15.5867252349854
+6652,0.000840662954511859,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417
+6653,0.0267253901405225,0.130193905817175,13.0193905817175,6,72.0337077203661,0.640724522292994,4.43213296398892,4.77551386204172,0
+6654,0.0279950953257636,0.238227146814404,23.8227146814404,5,86.6321791700394,0.776922162804516,18.005540166205,16.4113171377847,0
+6655,0.0239181136974456,0.131578947368421,13.1578947368421,5,80.0224765142064,0.742602495543672,9.73684210526316,42.0229957866669,5.19557523727417
+6656,0.00927320563726493,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967
+6657,0.0362944444731765,0.141274238227147,14.1274238227147,5,81.3260494941865,0.665368928439006,10.2493074792244,9.80902892468022,0
+6658,0.0304216815366039,0.182825484764543,18.2825484764543,9,81.18338129806,0.659484156226971,13.0193905817175,6.69620492241599,0
+6659,0.0409754539121135,0.25,25,8,86.1984967913393,0.694117647058824,19.4736842105263,63.8072846663626,31.1734504699707
+6660,0.0530567143887663,0.38781163434903,38.781163434903,1,96.6344828667546,0.82771846719457,38.781163434903,89.3248960767474,49.28955078125
+6661,0.0241527036304083,0.03601108033241,3.601108033241,6,39.9872080026714,0.366060025542784,1.38504155124654,86.6961910541241,52.9846801757812
+6662,0.0126913299638263,0.0692520775623269,6.92520775623269,3,78.8482718244517,0.785119047619048,6.37119113573407,3.28951133728027,0
+6663,0.0232099831533656,0.05,5,7,44.0777593640128,0.382940108892922,1.31578947368421,12.3672305910211,0
+6664,0.0113243435626926,0.038781163434903,3.8781163434903,3,60.0437432297486,0.739913544668588,2.21606648199446,26.6505393981934,5.19557523727417
+6665,0.0297541153543678,0.0581717451523546,5.81717451523546,6,53.2259980723662,0.469117647058824,1.93905817174515,2.4900400752113,0
+6666,0.0284956878518476,0.0858725761772853,8.58725761772853,6,66.8468805426761,0.649939393939394,3.32409972299169,6.75801467895508,0
+6667,0.0210967527819632,0,0,0,NA,NA,0,NA,NA
+6668,0.012331041028157,0,0,0,NA,NA,0,NA,NA
+6669,0.0153142423328202,0,0,0,NA,NA,0,NA,NA
+6670,0.0140661456821476,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,72.3659896850586,72.3659896850586
+6671,0.00766736891194964,0,0,0,NA,NA,0,NA,NA
+6672,0.0124344690680685,0,0,0,NA,NA,0,NA,NA
+6673,0.0106050105574755,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,23.8616326649984,15.5867252349854
+6674,-0.00114084617928099,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,7.84921105702718,5.19557523727417
+6675,0.0171899673793201,0.0473684210526316,4.73684210526316,2,70.2715195584201,0.766728054020872,2.36842105263158,42.1150402492947,23.2353191375732
+6676,0.0095863380593577,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,57.3870010375977,57.3870010375977
+6677,0.0251964932955625,0.0941828254847645,9.41828254847645,3,77.4631065363266,0.802861511577108,6.09418282548476,4.54175019264221,0
+6678,0.0363169441438321,0.285318559556787,28.5318559556787,4,85.9096547855752,0.735281793421328,13.2963988919668,4.67122448300852,0
+6679,0.0227824682815959,0.139473684210526,13.9473684210526,2,89.8316574352354,0.833988641328091,13.6842105263158,48.0432692473789,25.977876663208
+6680,0.023109576032804,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,37.6498493618435,0
+6681,0.0181787320248064,0.038781163434903,3.8781163434903,2,71.3336155481397,0.895965417867435,3.601108033241,62.2974343981062,51.170482635498
+6682,0.0159219143583346,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,83.6442153930664,72.9233703613281
+6683,0.0244184355805996,0.105263157894737,10.5263157894737,5,71.0777431561908,0.699736611062335,3.94736842105263,76.9623189926147,41.5646018981934
+6684,0.024232925810148,0.124653739612188,12.4653739612188,4,77.0379889979854,0.699367088607595,4.70914127423823,3.24024878607856,0
+6685,0.0394536376301292,0.343490304709141,34.3490304709141,3,91.7475538008651,0.702128457571496,17.4515235457064,3.30559766677118,0
+6686,0.0244561207631569,0.03601108033241,3.601108033241,4,53.6372337749962,0.48132183908046,1.66204986149584,15.2310890051035,0
+6687,0.0273761633781281,0.068421052631579,6.8421052631579,8,48.6432121531954,0.502549262780763,1.57894736842105,10.1912759267367,0
+6688,0.0202425223469819,0.213296398891967,21.3296398891967,2,89.7581163429678,0.887841756420878,18.2825484764543,10.3317689214434,0
+6689,0.045975165924385,0.365650969529086,36.5650969529086,6,86.6764076378921,0.659859754661255,16.0664819944598,5.60974654645631,0
+6690,0.0456562416431371,0.3601108033241,36.01108033241,3,94.9321318641599,0.795586972802163,34.3490304709141,3.40056024698111,0
+6691,0.0389122019285663,0.257894736842105,25.7894736842105,7,82.342686483558,0.594213410702772,12.3684210526316,5.77082612076584,0
+6692,0.0495066716119007,0.45983379501385,45.983379501385,5,92.2825399219895,0.697502932797051,33.5180055401662,7.56822956039245,0
+6693,0.0503400449839052,0.368421052631579,36.8421052631579,4,90.3373666303749,0.757920110192837,22.9916897506925,20.5382346354033,0
+6694,0.0329609436918225,0.263157894736842,26.3157894736842,3,90.2284333018395,0.760504201680672,19.9445983379501,6.49191342404014,0
+6695,0.0534205932572245,0.431578947368421,43.1578947368421,4,91.6513182983847,0.784461613931813,33.1578947368421,7.2457497817714,0
+6696,0.0509359205800007,0.534626038781163,53.4626038781163,2,94.7646869442,0.783918595371109,33.5180055401662,6.24714545511829,0
+6697,0.0340889186009915,0.373961218836565,37.3961218836565,4,89.0161240110802,0.74026908410677,14.404432132964,10.8902014732361,0
+6698,0.028784998724417,0.152354570637119,15.2354570637119,8,71.3052168603504,0.627450980392157,6.64819944598338,9.67720483433117,0
+6699,0.0463626108669958,0.460526315789474,46.0526315789474,5,94.4660859842327,0.724533715925395,40.5263157894737,5.70480918066842,0
+6700,0.0679260853659947,0.730994152046784,73.0994152046784,2,98.4258101034935,0.888795986622074,72.2222222222222,1.423600522995,0
+6701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6706,0.00421925068440032,0,0,0,NA,NA,0,NA,NA
+6707,0.0158870846905083,0.0914127423822715,9.14127423822715,1,87.180691871343,0.95923667570009,9.14127423822715,44.0867840160023,23.2353191375732
+6708,0.00813977670636342,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,48.8205604553223,46.4706382751465
+6709,0.00100312569037395,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,5.39999341964722,0
+6710,0.0211954029689782,0.0342105263157895,3.42105263157895,4,53.2206775145111,0.482288828337875,1.84210526315789,34.5056905012864,16.4298515319824
+6711,0.0136269765659016,0.0277008310249307,2.77008310249307,3,48.9518942658299,0.525312294543064,1.10803324099723,11.2772461414337,5.19557523727417
+6712,0.0291158770546985,0.232686980609418,23.2686980609418,4,86.7761793763607,0.833813873476607,15.5124653739612,25.672783210164,0
+6713,-0.0299785721391368,0.0831024930747922,8.31024930747922,2,79.1957938534232,0.821937234108145,6.09418282548476,11.8891427516937,0
+6714,-0.0182329409189008,0.102631578947368,10.2631578947368,3,78.8704504321863,0.759981953530341,7.36842105263158,7.78273960260245,0
+6715,0.025280326249208,0.257617728531856,25.7617728531856,2,92.4798451829964,0.764678115446862,22.1606648199446,13.0773063577631,0
+6716,0.0261085762617024,0.135734072022161,13.5734072022161,3,82.717332638629,0.7933836996337,9.69529085872576,12.0658901467615,0
+6717,0.0150579865777391,0.213296398891967,21.3296398891967,2,88.6334672643234,0.897188276719138,13.0193905817175,9.10268039207954,0
+6718,0.0288536363061731,0.273684210526316,27.3684210526316,5,85.9054224424555,0.808571650003875,15.2631578947368,15.0971508163672,0
+6719,0.0250384621078682,0.0969529085872576,9.69529085872576,3,82.6448188823763,0.828167971229109,8.86426592797784,52.9489455086844,11.6176595687866
+6720,0.0168922801609959,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,7.84921105702718,5.19557523727417
+6721,0.0218492025331951,0.0886426592797784,8.86426592797784,5,70.0365882668336,0.725683890577508,4.70914127423823,27.8095067739487,0
+6722,0.0110596204215606,0.0526315789473684,5.26315789473684,3,67.9764536589794,0.727598566308244,3.42105263157895,22.0692125320435,5.19557523727417
+6723,0.0153242154329844,0.03601108033241,3.601108033241,1,76.2797118658907,1,3.601108033241,46.5569763183594,39.5683212280273
+6724,-0.0357351319643211,0,0,0,NA,NA,0,NA,NA
+6725,-0.000958381094205531,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911504745483,10.3911504745483
+6726,0.00656167208645983,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,7.79336285591125,5.19557523727417
+6727,0.0110835498796542,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,6.92743364969889,5.19557523727417
+6728,0.0145675190552309,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,53.3316478729248,51.4335708618164
+6729,0.00938472489707386,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,49.961877822876,44.6940307617188
+6730,0.00948222753036374,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,65.7321217854818,62.7783737182617
+6731,0.0153112140560703,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,32.1328582763672,0
+6732,0.0139150893081431,0.152354570637119,15.2354570637119,2,90.1247916190668,0.875816993464052,14.9584487534626,24.8123458168723,10.3911504745483
+6733,0.0039022106966236,0.0415512465373961,4.15512465373961,3,65.1431305573521,0.762874408828166,3.32409972299169,20.7540101369222,10.3911504745483
+6734,0.0264340739812101,0.260526315789474,26.0526315789474,2,92.6748823131664,0.8632492302771,23.4210526315789,31.3714057989795,0
+6735,-0.00739674874150241,0.0166204986149584,1.66204986149584,2,47.0675289901851,0.418913480885312,1.10803324099723,1.73185841242472,0
+6736,0.00290370088794921,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483
+6737,0.00619926529894792,0.07202216066482,7.20221606648199,2,79.9602022337701,0.789734255551511,6.09418282548476,29.5460475408114,14.6953058242798
+6738,0.00825891247044829,0.142105263157895,14.2105263157895,2,86.7886162296393,0.874661917012996,11.5789473684211,32.2863559899507,10.3911504745483
+6739,0.0113951268103041,0.124653739612188,12.4653739612188,2,85.8344470225158,0.819620253164557,10.5263157894737,41.7932884746128,5.19557523727417
+6740,0.00944906782248919,0.0831024930747922,8.31024930747922,2,78.1764189903279,0.688390159689253,4.43213296398892,18.493479569753,11.6176595687866
+6741,0.0160710844381389,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417
+6742,0.0255186703126881,0.0470914127423823,4.70914127423823,4,61.2843563180408,0.664186046511628,3.04709141274238,6.84743749394136,0
+6743,0.0324896545075095,0.2,20,5,87.2312806864191,0.776119402985075,16.3157894736842,18.8297490822641,0
+6744,0.0394941504965469,0.293628808864266,29.3628808864266,5,85.3455174497567,0.777640899291654,12.7423822714681,6.73718320198779,0
+6745,0.0313467134570737,0.21606648199446,21.606648199446,7,78.7939068395226,0.722691657704716,12.1883656509695,8.87672366851415,0
+6746,0.0158260494932227,0.038781163434903,3.8781163434903,1,77.3446466870219,0.895965417867435,3.8781163434903,17.2190068108695,10.3911504745483
+6747,0.019237048664792,0.0263157894736842,2.63157894736842,2,58.4589470677482,0.683991683991684,1.57894736842105,35.7775596618652,18.7329120635986
+6748,0.0381350284215159,0.310249307479224,31.0249307479224,4,89.6440400061415,0.684202155155275,17.7285318559557,21.8601217014449,0
+6749,0.0173097898355421,0.0997229916897507,9.97229916897507,2,81.3552456103236,0.870410256410256,8.31024930747922,29.5052491691377,5.19557523727417
+6750,0.0173672905512677,0.138504155124654,13.8504155124654,5,77.9978098966545,0.808814072252695,9.69529085872576,24.8566422176361,7.34765291213989
+6751,0.0183762252002213,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,29.4415925343831,20.7823009490967
+6752,0.0156197730072041,0.0554016620498615,5.54016620498615,3,65.1879200306345,0.658499668905496,2.21606648199446,8.1034049987793,0
+6753,0.0346051068141653,0.249307479224377,24.9307479224377,5,86.0912241048911,0.726960188856547,16.6204986149584,9.00115991168552,0
+6754,0.0288883901416525,0.207756232686981,20.7756232686981,6,79.4730445848666,0.665315744861199,6.64819944598338,14.6571382013957,0
+6755,0.0242755513014632,0.215789473684211,21.5789473684211,4,84.5017763923427,0.797732006479982,9.73684210526316,22.5566074790024,0
+6756,0.00745248412929672,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+6757,0.0257498389418744,0.0581717451523546,5.81717451523546,3,66.9789021581326,0.701378676470588,3.04709141274238,14.448237827846,10.3911504745483
+6758,0.0345452998826407,0.238227146814404,23.8227146814404,3,88.9895090477944,0.751182412358883,14.404432132964,8.13754126083019,0
+6759,0.032579292317211,0.123684210526316,12.3684210526316,7,74.3541114547569,0.700450450450451,8.1578947368421,43.4381988606554,20.7823009490967
+6760,-0.0151251101716572,0.0470914127423823,4.70914127423823,3,61.8893113381952,0.706162790697674,1.93905817174515,47.9929858936983,23.2353191375732
+6761,0.0157610726008018,0.0664819944598338,6.64819944598338,4,65.5993347107925,0.689910979228487,3.04709141274238,31.3338834246,7.34765291213989
+6762,0.0210878454202624,0.110803324099723,11.0803324099723,4,79.9866021199979,0.74822150927605,8.58725761772853,8.24576227664948,0
+6763,0.0155212660074061,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5.19557523727417,5.19557523727417
+6764,0.0164908348840911,0.0249307479224377,2.49307479224377,4,36.4623439173319,0.316287878787879,0.831024930747922,43.2642894321018,36.369026184082
+6765,0.031918163542347,0.138504155124654,13.8504155124654,10,66.8017198221203,0.54934745602421,4.15512465373961,1.49780261993408,0
+6766,0.0220790495313195,0.038781163434903,3.8781163434903,4,57.176590798614,0.427809798270893,2.21606648199446,13.2414859363011,0
+6767,0.0148788948212888,0.0368421052631579,3.68421052631579,4,51.4344520898955,0.377049180327869,1.31578947368421,4.23595752034869,0
+6768,0.0188506594771641,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,19.4592787424723,10.3911504745483
+6769,0.0170337043142616,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,68.8273696899414,68.3371200561523
+6770,0.0116288401172962,0,0,0,NA,NA,0,NA,NA
+6771,0.00937029766001184,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,36.369026184082,36.369026184082
+6772,0.0159842450306506,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,98.5791015625,98.5791015625
+6773,0.0144310963010247,0,0,0,NA,NA,0,NA,NA
+6774,0.0189393603872899,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.490112994350283,1.10803324099723,13.8427057266235,5.19557523727417
+6775,0.0194115239846137,0.0289473684210526,2.89473684210526,3,55.4848242640297,0.588075880758808,1.84210526315789,37.0121805017645,26.4923400878906
+6776,0.0138725909826744,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,34.9054826100667,30.2951488494873
+6777,0.0230956615215994,0.0831024930747922,8.31024930747922,3,77.6006852088946,0.732905851162217,6.09418282548476,9.51348856290181,0
+6778,0.0407166326253409,0.371191135734072,37.1191135734072,6,92.4083404513131,0.654564165523218,30.7479224376731,5.3628426523351,0
+6779,0.036275930116809,0.231578947368421,23.1578947368421,5,87.5952262095412,0.743041619404939,16.3157894736842,11.2861986864697,0
+6780,0.0304111507538766,0.202216066481994,20.2216066481994,4,85.1595941942098,0.745388454861111,10.5263157894737,33.9344119633714,0
+6781,0.0142390709896017,0.0304709141274238,3.04709141274238,3,58.9357317171849,0.518666666666667,2.21606648199446,36.9709972034801,15.5867252349854
+6782,0.0119816896659658,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,93.5203552246094,93.5203552246094
+6783,0.0206369015630978,0.147368421052632,14.7368421052632,3,87.5897900530511,0.80654193712613,13.4210526315789,53.4591489349093,11.6176595687866
+6784,0.0265466318116846,0.196675900277008,19.6675900277008,3,84.6864658667396,0.760993103448276,9.14127423822715,7.63047689787099,0
+6785,0.0360283016628996,0.263157894736842,26.3157894736842,5,86.7077322306345,0.768487394957983,12.7423822714681,5.52371676093654,0
+6786,0.029379128425097,0.166204986149584,16.6204986149584,5,79.1811775487896,0.746294403271147,9.69529085872576,22.6806246995926,0
+6787,0.0204248450705803,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,59.9750061035156,57.3870010375977
+6788,0.0403466919522347,0.296398891966759,29.6398891966759,4,87.8866507815064,0.77907878095549,13.5734072022161,32.5222877119189,0
+6789,0.0503685723966338,0.437673130193906,43.7673130193906,4,94.9236968004351,0.822167487684729,41.2742382271468,21.787610965439,0
+6790,0.0339977443934137,0.204986149584488,20.4986149584488,4,88.3492884525042,0.758107745912624,16.8975069252078,9.29727734101785,0
+6791,0.0249505950660454,0.0552631578947368,5.52631578947368,1,82.4055252250565,0.900766016713092,5.52631578947368,3.21630848021734,0
+6792,0.029381882215517,0.0997229916897507,9.97229916897507,4,73.3729309202041,0.759333333333333,6.64819944598338,24.3663209941652,0
+6793,0.0281554957602007,0.0415512465373961,4.15512465373961,5,51.223012502127,0.525748817656332,2.21606648199446,22.4339655240377,7.34765291213989
+6794,0.0669529497337001,0.545706371191136,54.5706371191136,2,97.7124183006536,0.885415970598062,54.2936288088643,8.04880864729131,0
+6795,0.0423050654659164,0.323684210526316,32.3684210526316,4,88.763297283094,0.655214531241821,20.5263157894737,5.98263868859144,0
+6796,0.0411294933282409,0.412742382271468,41.2742382271468,3,95.6932380932453,0.800400857004631,39.3351800554017,3.2495964101497,0
+6797,0.0650876263444185,0.71191135734072,71.191135734072,3,98.4925679872092,0.704122021429714,70.3601108033241,2.28319242121181,0
+6798,0.0375522294123992,0.335180055401662,33.5180055401662,6,89.2345777044581,0.685492424242424,23.2686980609418,1.89235163523146,0
+6799,0.0637725202456702,0.742105263157895,74.2105263157895,1,99.1303671971735,0.721986907970736,74.2105263157895,4.76089609937465,0
+6800,0.0821943978305187,0.950292397660819,95.0292397660819,1,99.8523973023126,0.442088091353997,95.0292397660819,1.42392441236056,0
+6801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6806,0.0100953593824478,0,0,0,NA,NA,0,NA,NA
+6807,-0.000369304389990593,0,0,0,NA,NA,0,NA,NA
+6808,0.0391361785523234,0.299168975069252,29.9168975069252,2,94.7405207154062,0.919509476031215,29.6398891966759,0.424710715258563,0
+6809,0.0149483944767086,0.0526315789473684,5.26315789473684,4,59.1165186150451,0.599616858237548,1.93905817174515,6.78936634565655,0
+6810,0.014103514550171,0.0552631578947368,5.52631578947368,3,72.9217774811568,0.735376044568245,4.47368421052632,13.6012598673503,5.19557523727417
+6811,0.0145903523754841,0.0415512465373961,4.15512465373961,2,73.0085666444357,0.8577246452969,3.8781163434903,46.4359401067098,14.6953058242798
+6812,0.0123238978954367,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,15.5867252349854,15.5867252349854
+6813,-0.00642277933117847,0,0,0,NA,NA,0,NA,NA
+6814,-0.0103753604040417,0,0,0,NA,NA,0,NA,NA
+6815,0.0160563185953257,0.0277008310249307,2.77008310249307,4,41.7780866361615,0.446197676966908,1.10803324099723,28.8192432403564,0
+6816,0.0184574500216868,0.0470914127423823,4.70914127423823,4,61.3415988112554,0.706162790697674,3.32409972299169,12.3002301945406,0
+6817,0.00619696322607229,0.166204986149584,16.6204986149584,3,83.3115549429036,0.792422693585484,10.803324099723,14.4772481282552,0
+6818,0.0217185044999688,0.144736842105263,14.4736842105263,3,84.8109060799831,0.84,11.5789473684211,13.7627731930126,0
+6819,0.0278431795723865,0.0526315789473684,5.26315789473684,5,51.6489576184935,0.490421455938697,1.38504155124654,66.7027807737652,18.7329120635986
+6820,0.0212885742731182,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,8.02535213742937,5.19557523727417
+6821,0.0350186223786749,0.290858725761773,29.0858725761773,4,89.4345820767755,0.850777116402116,19.6675900277008,27.1015500749861,0
+6822,0.0173897571819907,0.126315789473684,12.6315789473684,2,85.9699852831468,0.874375550984425,10.7894736842105,38.6582801540693,10.3911504745483
+6823,0.0177395798877558,0.14404432132964,14.404432132964,3,84.6634736707279,0.763717682993346,9.97229916897507,18.9889912421887,0
+6824,0.0340168277037093,0.279778393351801,27.9778393351801,2,90.6019064726163,0.838907777305567,15.5124653739612,23.7448343947382,5.19557523727417
+6825,0.0205917718867719,0.14404432132964,14.404432132964,3,88.2505064336535,0.868732046107414,13.8504155124654,17.5574118449138,0
+6826,0.0251517464672648,0.255263157894737,25.5263157894737,3,89.4198411272756,0.791641281832582,15.2631578947368,14.6767292219339,0
+6827,0.0257291383750271,0.182825484764543,18.2825484764543,6,80.5415348081418,0.744613117170228,11.0803324099723,13.8740160320744,0
+6828,0.0154336410382372,0.0470914127423823,4.70914127423823,4,58.7450075588632,0.538255813953488,2.49307479224377,17.9245679238263,5.19557523727417
+6829,0.00752807257644503,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,10.0883190631866,5.19557523727417
+6830,0.0139210579650688,0.0815789473684211,8.1578947368421,2,84.240122166573,0.869340974212034,7.89473684210526,64.2829397878339,47.9008369445801
+6831,0.0269870870663472,0.202216066481994,20.2216066481994,2,88.3051003744016,0.872694227430556,13.0193905817175,26.1671842810226,10.3911504745483
+6832,0.0276570685604978,0.243767313019391,24.3767313019391,3,88.6903433764774,0.865238795175101,14.6814404432133,19.7565727884119,0
+6833,0.0168725235613348,0.0914127423822715,9.14127423822715,1,87.180691871343,0.857328364950316,9.14127423822715,10.2541500149351,0
+6834,0.0330210264651932,0.276315789473684,27.6315789473684,3,89.4097660293798,0.868398268398269,13.9473684210526,23.3877396946862,0
+6835,-0.0110342513126598,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,22.0429573059082,22.0429573059082
+6836,0.0111234098103851,0.0554016620498615,5.54016620498615,2,74.8703292141186,0.829249834452748,4.70914127423823,23.2003773212433,11.6176595687866
+6837,0.00485782863071912,0.0554016620498615,5.54016620498615,2,72.175958031556,0.760949768233847,2.77008310249307,15.0286995410919,5.19557523727417
+6838,0.0108517683453484,0.163157894736842,16.3157894736842,5,80.6476206766926,0.81190309806662,9.21052631578947,22.9475940273654,5.19557523727417
+6839,0.00472307679700461,0.0997229916897507,9.97229916897507,5,69.8667435816164,0.685282051282051,3.8781163434903,17.0100733439128,0
+6840,0.0221299145419819,0.14404432132964,14.404432132964,3,80.1037952256494,0.72433729682557,5.26315789473684,14.8406865596771,0
+6841,0.0145235346890457,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,46.9413310459682,33.2679138183594
+6842,0.0214834930837977,0.0997229916897507,9.97229916897507,3,81.2405522930619,0.759333333333333,8.31024930747922,23.932046201494,15.5867252349854
+6843,0.0361899659266974,0.226315789473684,22.6315789473684,3,86.2628593088653,0.805700057800898,13.9473684210526,16.2440178671549,0
+6844,0.0225921756260766,0.149584487534626,14.9584487534626,4,81.1300785130784,0.721831109243109,7.20221606648199,15.2458578833827,0
+6845,0.017004266471921,0.0498614958448753,4.98614958448753,5,57.2764525105111,0.610193283662671,2.77008310249307,7.40377593040466,0
+6846,0.0104116046542379,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,17.8341438120062,10.3911504745483
+6847,0.0140992628843462,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,32.4381380081177,15.5867252349854
+6848,0.0245692842364,0.146814404432133,14.6814404432133,5,81.1560510442672,0.742400456686171,11.0803324099723,37.9174937752058,0
+6849,0.00744491049553796,0.10803324099723,10.803324099723,2,82.0214872731651,0.844768275203058,6.92520775623269,25.9968586701613,0
+6850,0.00240098715748446,0.102493074792244,10.2493074792244,3,78.2802233791135,0.799079133778587,6.64819944598338,10.5089234661412,0
+6851,0.0182706068903683,0.0710526315789474,7.10526315789474,3,72.5370347406089,0.749654127412873,3.68421052631579,32.9575783764874,20.7823009490967
+6852,0.0216069159363141,0.0415512465373961,4.15512465373961,3,63.2501238896839,0.573173935890699,2.49307479224377,30.2264507293701,18.7329120635986
+6853,0.0313687775855406,0.240997229916898,24.0997229916898,4,86.7281112848187,0.753496585825288,14.6814404432133,11.4079415661165,0
+6854,0.042397492871989,0.32409972299169,32.409972299169,4,91.9460863316716,0.804593257036808,26.8698060941828,9.96379675009312,0
+6855,0.0328250020518393,0.25,25,3,92.4573288912888,0.835294117647059,23.6842105263158,12.2419204159787,0
+6856,0.00849272547182263,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,3.46371682484945,0
+6857,0.0229007753644704,0.0415512465373961,4.15512465373961,3,62.1900205974772,0.620599054125066,2.21606648199446,20.8385093053182,10.3911504745483
+6858,0.0326848397161764,0.224376731301939,22.4376731301939,5,85.6240436198923,0.722445436507936,15.7894736842105,4.38040022791168,0
+6859,0.0172205462406916,0.0868421052631579,8.68421052631579,7,60.588075936851,0.533568150282848,2.89473684210526,65.8859784675367,20.7823009490967
+6860,0.00561963228509314,0.0637119113573407,6.37119113573407,6,55.8476138768869,0.554980276134122,2.21606648199446,75.6328615934952,36.7382659912109
+6861,0.027073033950456,0.18005540166205,18.005540166205,3,87.3205458806001,0.773349677110739,15.2354570637119,41.5049841220562,14.6953058242798
+6862,0.0109268444975594,0.03601108033241,3.601108033241,4,50.4434778529335,0.48132183908046,1.66204986149584,31.8784835521991,10.3911504745483
+6863,0.0216925924791691,0.0973684210526316,9.73684210526316,4,75.5913354176306,0.673087033408211,4.47368421052632,17.5774789372006,0
+6864,0.0283220175991816,0.124653739612188,12.4653739612188,4,77.5652853230668,0.729430379746835,6.09418282548476,34.7155693478054,15.5867252349854
+6865,0.0333293388704731,0.18005540166205,18.005540166205,5,80.7020339378455,0.687006696962449,10.2493074792244,4.05941038131714,0
+6866,0.0331738562875561,0.157894736842105,15.7894736842105,8,73.8582975951588,0.636479591836735,6.64819944598338,9.41744443826508,0
+6867,0.0282808698420061,0.126315789473684,12.6315789473684,6,75.1509552534965,0.65104319717896,6.8421052631579,16.7060648699601,0
+6868,0.0139027630906932,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,18.7329120635986,18.7329120635986
+6869,0.0112466996514012,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,28.3940048217773,15.5867252349854
+6870,0.0141427940680587,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,80.6990127563477,78.1066207885742
+6871,0.0126923653087081,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,14.6064561208089,10.3911504745483
+6872,0.0161250828546207,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989
+6873,0.0108952803039703,0,0,0,NA,NA,0,NA,NA
+6874,0.0169047571144799,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,35.0815300941467,11.6176595687866
+6875,0.0237644914166451,0.0578947368421053,5.78947368421053,3,70.4327594477921,0.750246467302005,3.42105263157895,32.0992025678808,5.19557523727417
+6876,0.0202595706505689,0.0554016620498615,5.54016620498615,2,78.3438965597409,0.829249834452748,5.26315789473684,4.21949307918549,0
+6877,0.0391185274337661,0.340720221606648,34.0720221606648,1,96.037931634066,0.809548931680296,34.0720221606648,24.1168081004445,0
+6878,0.0287666410547804,0.182825484764543,18.2825484764543,6,82.4151321360627,0.691407516580693,9.14127423822715,10.9077927632765,0
+6879,0.0245068175620729,0.126315789473684,12.6315789473684,5,77.2230444681253,0.623126652953277,5.78947368421053,29.9568039973577,0
+6880,0.022330149348435,0.0554016620498615,5.54016620498615,5,55.7177698168722,0.590199602686595,2.77008310249307,51.4811866760254,26.4923400878906
+6881,0.0223598811088402,0.0886426592797784,8.86426592797784,4,79.7573870197493,0.746785129763853,7.75623268698061,18.731810092926,5.19557523727417
+6882,0.0199229300516507,0.102493074792244,10.2493074792244,4,74.7581089475679,0.74428253390002,5.54016620498615,13.5990551226848,5.19557523727417
+6883,0.0236615049244153,0.152631578947368,15.2631578947368,4,86.7229729572713,0.763975155279503,13.4210526315789,18.7462780475616,5.19557523727417
+6884,0.0213565314574064,0.0831024930747922,8.31024930747922,3,80.4009593313478,0.710648005425735,7.20221606648199,8.2236869653066,0
+6885,0.0299828817766672,0.0858725761772853,8.58725761772853,4,70.4419151321845,0.715575757575758,4.15512465373961,10.1253737634228,0
+6886,0.0373063191866115,0.166204986149584,16.6204986149584,5,81.3849710027561,0.688634040378227,9.97229916897507,17.3906037251155,0
+6887,0.0359114404158103,0.205263157894737,20.5263157894737,8,77.0135420572138,0.598809866589884,8.1578947368421,15.4777036079994,0
+6888,0.0383838026291288,0.254847645429363,25.4847645429363,7,81.1842391513875,0.574485447456705,9.41828254847645,19.833377506422,0
+6889,0.0425368175284622,0.354570637119114,35.4570637119114,5,89.8107673171797,0.753964891598666,25.4847645429363,10.5873262882233,0
+6890,0.0234065421490441,0.0941828254847645,9.41828254847645,5,69.0892288652611,0.684578418523373,4.15512465373961,14.82649009368,0
+6891,0.0272013847506299,0.115789473684211,11.5789473684211,4,80.668829665336,0.709620334620335,7.89473684210526,10.4114287874915,0
+6892,0.0322667683573509,0.193905817174515,19.3905817174515,5,85.0009045845511,0.677255329254324,14.404432132964,8.75664886065892,0
+6893,0.0385153124234144,0.301939058171745,30.1939058171745,4,88.0555667294143,0.789118523890098,14.6814404432133,11.1977244429632,0
+6894,0.026631329580563,0.10803324099723,10.803324099723,5,72.6452613107311,0.689536550406116,5.54016620498615,10.3445610021934,0
+6895,0.0185718021922137,0.0447368421052632,4.47368421052632,7,44.5695663021802,0.45564738292011,1.84210526315789,4.86777928296257,0
+6896,0.025516486929763,0.135734072022161,13.5734072022161,6,72.3508509081911,0.669413919413919,5.26315789473684,3.73821094084759,0
+6897,0.0508303286487087,0.57617728531856,57.617728531856,2,96.2604405137829,0.640286433264089,45.983379501385,1.44180583036863,0
+6898,0.0701515829329923,0.939058171745152,93.9058171745152,1,99.8225647304012,0.6160119132038,93.9058171745152,0.411177320114631,0
+6899,0.0689289773079125,0.918421052631579,91.8421052631579,1,99.7649570350094,0.517106549364614,91.8421052631579,0.0744351753191142,0
+6900,0.0792135607876014,0.950292397660819,95.0292397660819,1,99.8523973023126,0.638998176758469,95.0292397660819,1.61233746161828,0
+6901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+6906,0.00786103490080629,0,0,0,NA,NA,0,NA,NA
+6907,0.00860509579560026,0.0692520775623269,6.92520775623269,2,75.9275584268635,0.758258928571429,3.8781163434903,11.5022694015503,5.19557523727417
+6908,0.0164246127343804,0.113573407202216,11.3573407202216,4,80.2471791338748,0.738405797101449,8.58725761772853,10.5131182321688,0
+6909,0.00494767250776951,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,6.27161407470703,5.19557523727417
+6910,0.0217999564894638,0.147368421052632,14.7368421052632,3,87.7527408974341,0.782359679266896,13.1578947368421,42.0411655732564,11.6176595687866
+6911,0.00634737952846219,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.5706275304159,14.6953058242798
+6912,-0.0150876289183057,0,0,0,NA,NA,0,NA,NA
+6913,-0.00719359871797384,0,0,0,NA,NA,0,NA,NA
+6914,0.0188059057370226,0.178947368421053,17.8947368421053,3,83.9104656113945,0.744128420599009,8.94736842105263,15.6452193330316,0
+6915,0.00448336041505812,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,30.2951488494873,30.2951488494873
+6916,-0.0714636683334091,0,0,0,NA,NA,0,NA,NA
+6917,-0.175936091649978,0,0,0,NA,NA,0,NA,NA
+6918,-0.0185431779564456,0.176315789473684,17.6315789473684,2,89.9918155961949,0.896234401026733,16.5789473684211,20.808456541887,5.19557523727417
+6919,0.01664820156424,0.105263157894737,10.5263157894737,2,84.7739328659604,0.875816993464052,9.69529085872576,35.1729285842494,14.6953058242798
+6920,0.0136963708052092,0.0304709141274238,3.04709141274238,2,62.6985064770805,0.656190476190476,2.21606648199446,4.72325021570379,0
+6921,0.0402211173174069,0.321329639889197,32.1329639889197,4,87.3467088219803,0.782487852283771,16.3434903047091,22.6434588514525,0
+6922,0.0281352268766281,0.221052631578947,22.1052631578947,4,86.5277390139107,0.810448031924542,15,47.2262866383507,18.7329120635986
+6923,0.0323364907134598,0.279778393351801,27.9778393351801,3,90.804655245214,0.861920951976201,21.606648199446,42.2478465136915,7.34765291213989
+6924,0.0449618969152824,0.340720221606648,34.0720221606648,4,87.6909349528476,0.795945283943174,16.3434903047091,27.0835979585725,0
+6925,0.0010893646199028,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,14.7457371817695,10.3911504745483
+6926,-0.0154602869493063,0,0,0,NA,NA,0,NA,NA
+6927,-0.0540307006720322,0,0,0,NA,NA,0,NA,NA
+6928,0.0107832336308141,0,0,0,NA,NA,0,NA,NA
+6929,0.00655512628913422,0,0,0,NA,NA,0,NA,NA
+6930,0.010841271480594,0.0263157894736842,2.63157894736842,4,43.4269568853775,0.525987525987526,1.31578947368421,18.7779181957245,5.19557523727417
+6931,0.0121542152899419,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.952574881765633,4.15512465373961,9.05169204076131,0
+6932,0.00111544446851825,0,0,0,NA,NA,0,NA,NA
+6933,0.00526157046256747,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,17.7388033866882,14.6953058242798
+6934,0.0239254180524624,0.0631578947368421,6.31578947368421,1,83.8911085416129,0.887640449438202,6.31578947368421,43.9270589351654,29.3906116485596
+6935,0.0113456302981294,0.07202216066482,7.20221606648199,2,78.0783870961327,0.789734255551511,5.81717451523546,34.264234487827,7.34765291213989
+6936,0.0119306807225617,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,9.8839008808136,7.34765291213989
+6937,0.0136955501087531,0.0803324099722992,8.03324099722992,3,71.6894239910379,0.699243783645219,3.32409972299169,22.9887340973163,0
+6938,0.00996123735201668,0.0315789473684211,3.15789473684211,2,69.7993702740724,0.635549872122762,2.89473684210526,34.4624622662862,29.3906116485596
+6939,0.0221959916856264,0.135734072022161,13.5734072022161,4,81.3619370012461,0.80715811965812,10.803324099723,23.7876495147238,0
+6940,0.0128695586367499,0.149584487534626,14.9584487534626,3,84.7962862523831,0.835627473643655,12.4653739612188,13.1388200653924,0
+6941,0.0236981846797673,0.0997229916897507,9.97229916897507,4,82.3993940801301,0.777846153846154,9.14127423822715,28.0823038021723,7.34765291213989
+6942,0.0203822588100139,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,51.0914938790458,36.369026184082
+6943,0.0212066197112252,0.0631578947368421,6.31578947368421,8,48.4579032003337,0.438202247191011,1.57894736842105,11.8188682198524,0
+6944,0.0233061237041735,0.0914127423822715,9.14127423822715,6,63.9813154380406,0.592366757000903,3.04709141274238,6.80045463099624,0
+6945,0.0168373799294142,0.038781163434903,3.8781163434903,3,60.5372063498304,0.635878962536023,2.49307479224377,5.21951018060957,0
+6946,0.0155935339509567,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,11.4972834587097,5.19557523727417
+6947,0.0113884969601235,0.0789473684210526,7.89473684210526,1,86.162631131474,0.822740524781341,7.89473684210526,20.4946610927582,7.34765291213989
+6948,0.0154324235870094,0.0609418282548476,6.09418282548476,5,62.6170398310695,0.592833593614437,3.601108033241,7.96216630935669,0
+6949,0.0317844351349847,0.218836565096953,21.8836565096953,5,80.7498216632912,0.743971631205674,11.6343490304709,18.1651712912547,5.19557523727417
+6950,0.0276726507841972,0.263157894736842,26.3157894736842,5,87.8647353995559,0.74453781512605,17.7285318559557,28.2516303213019,0
+6951,0.0184194887198636,0.118421052631579,11.8421052631579,3,82.3198311617321,0.805970149253731,9.21052631578947,40.3446784125434,5.19557523727417
+6952,0.0207019067259597,0.160664819944598,16.0664819944598,3,83.5955262813936,0.797458745874587,11.3573407202216,22.4621180008198,5.19557523727417
+6953,0.0301740018455053,0.229916897506925,22.9916897506925,5,81.452143568054,0.717320021533793,8.03324099722992,10.346276685416,0
+6954,0.0431225226508064,0.379501385041551,37.9501385041551,3,91.1716681450421,0.767928571428571,19.1135734072022,38.0185143547337,5.19557523727417
+6955,0.0306042762478778,0.281578947368421,28.1578947368421,4,85.8495200965082,0.798060316195031,10,47.29249413214,0
+6956,0.00925303005161491,0.0470914127423823,4.70914127423823,2,72.6287363746868,0.748139534883721,3.8781163434903,1.52811036390417,0
+6957,0.0286041894703336,0.10803324099723,10.803324099723,7,65.4523807640746,0.534304825609173,3.8781163434903,11.3853492247753,0
+6958,0.0280771497607406,0.177285318559557,17.7285318559557,3,83.1900346159255,0.77209595959596,7.75623268698061,8.99001627415419,0
+6959,0.0208340249262906,0.160526315789474,16.0526315789474,4,79.8691290639106,0.651623587863015,7.10526315789474,52.4117389116131,20.7823009490967
+6960,0.0189531397223124,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,47.5024013519287,20.7823009490967
+6961,0.0152933607715364,0.0415512465373961,4.15512465373961,2,72.5144666979006,0.620599054125066,3.601108033241,14.9793755849202,10.3911504745483
+6962,0.00779740014702869,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,14.6186777114868,11.6176595687866
+6963,0.0279239873041852,0.147368421052632,14.7368421052632,4,80.5428287143966,0.758177421407662,7.63157894736842,14.2381713645799,0
+6964,0.0240716542713241,0.0138504155124654,1.38504155124654,3,30.5175668106036,0.18876404494382,0.831024930747922,15.959233379364,7.34765291213989
+6965,0.0261437263597097,0.135734072022161,13.5734072022161,3,84.8013125911394,0.71073717948718,10.5263157894737,32.2422746736176,0
+6966,0.0167925725329843,0.0470914127423823,4.70914127423823,4,63.451503058861,0.622209302325581,3.32409972299169,13.1476281390471,5.19557523727417
+6967,0.0162541399303193,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.9164962768555,15.5867252349854
+6968,0.0173054802034939,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,7.79336261749268,0
+6969,0.0111317593358589,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483
+6970,0.0084622442284191,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,25.977876663208,25.977876663208
+6971,0.0108477161834918,0,0,0,NA,NA,0,NA,NA
+6972,0.0161589714295796,0.0304709141274238,3.04709141274238,3,55.5628746600349,0.587428571428571,1.93905817174515,12.648520079526,7.34765291213989
+6973,0.0196846855219154,0.0443213296398892,4.43213296398892,4,53.6979759799493,0.607608695652174,1.38504155124654,37.1131483912468,10.3911504745483
+6974,0.0156801139353452,0.0332409972299169,3.32409972299169,4,55.4379049128186,0.452384965447497,2.21606648199446,18.2322923342387,10.3911504745483
+6975,0.020203515573054,0.0263157894736842,2.63157894736842,3,51.94636493986,0.525987525987526,1.57894736842105,22.7668689727783,10.3911504745483
+6976,0.0146778380343036,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,6.63029368718465,5.19557523727417
+6977,0.0192901355859297,0.0470914127423823,4.70914127423823,2,69.8033515309564,0.87406976744186,3.32409972299169,33.6647057252772,16.4298515319824
+6978,0.0173106396171551,0.0664819944598338,6.64819944598338,4,65.9348988280081,0.661721068249258,2.77008310249307,9.89728353420893,0
+6979,0.0224881681764792,0.0947368421052632,9.47368421052632,8,62.7244157203855,0.576550387596899,3.42105263157895,13.569189813402,5.19557523727417
+6980,0.0196694842066448,0.18005540166205,18.005540166205,3,85.3076218687408,0.816521167184884,11.6343490304709,12.1675237875718,0
+6981,0.0179981239810752,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0
+6982,0.0173844021959556,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824
+6983,0.0249895636003394,0.0342105263157895,3.42105263157895,5,42.7390710592922,0.482288828337875,1.31578947368421,50.9066731379582,20.7823009490967
+6984,0.0215897778984969,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,33.5185639063517,25.977876663208
+6985,0.0255049230647596,0.038781163434903,3.8781163434903,1,77.3446466870219,0.947982708933717,3.8781163434903,5.56668775422232,0
+6986,0.0255695448457616,0.0664819944598338,6.64819944598338,3,77.5404739639103,0.830860534124629,6.09418282548476,8.72461275259654,0
+6987,0.0255607283040789,0.0973684210526316,9.73684210526316,4,74.420180126884,0.654925201930889,4.73684210526316,22.4969609234784,0
+6988,0.0291172558175067,0.18005540166205,18.005540166205,5,77.8569866289642,0.751763932073667,6.09418282548476,38.8420277742239,0
+6989,0.0409294096612722,0.293628808864266,29.3628808864266,5,86.2380683092071,0.792464839338877,15.2354570637119,17.5980233921195,0
+6990,0.0237741188864176,0.0941828254847645,9.41828254847645,2,82.022533374866,0.822575360419397,8.03324099722992,22.8338553484748,10.3911504745483
+6991,0.0351883490408741,0.184210526315789,18.4210526315789,2,90.8952715197915,0.890375032782586,17.6315789473684,93.0517909458705,46.7601776123047
+6992,0.0286138867311195,0.0554016620498615,5.54016620498615,3,74.2021520204864,0.658499668905496,4.70914127423823,100.705074501038,39.5683212280273
+6993,0.0294391084962853,0.238227146814404,23.8227146814404,3,89.4589420053503,0.828401663695781,18.5595567867036,81.2876020475876,32.8597030639648
+6994,0.0314422494695887,0.196675900277008,19.6675900277008,3,83.7561804416342,0.770951724137931,7.4792243767313,41.5457447078866,10.3911504745483
+6995,0.0268289194165654,0.147368421052632,14.7368421052632,6,78.518360882996,0.721904034618811,9.47368421052632,9.71116687570299,0
+6996,0.0467531441440329,0.421052631578947,42.1052631578947,4,89.7576557797302,0.795698924731183,25.207756232687,9.9586844193308,0
+6997,0.0679716824586074,0.6398891966759,63.98891966759,2,96.5515460754235,0.832482598607889,53.4626038781163,8.31517006721331,0
+6998,0.0250566087070133,0.232686980609418,23.2686980609418,2,93.1513529661698,0.930026894095413,22.9916897506925,2.89643590790885,0
+6999,0.0212440795081707,0.231578947368421,23.1578947368421,1,94.1708256056907,0.933688159846436,23.1578947368421,2.52861721949144,0
+7000,0.0313482673235213,0.307017543859649,30.7017543859649,5,87.3964293888761,0.786216596343179,20.1754385964912,3.26641446522304,0
+7001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7006,0.00443225227963921,0.00625,0.625,1,0,NA,0.625,10.3911504745483,10.3911504745483
+7007,0.0177596344179619,0.0605263157894737,6.05263157894737,1,83.4283422491937,0.940865234982882,6.05263157894737,6.91857787837153,0
+7008,0.0134563433713323,0.0210526315789474,2.10526315789474,4,32.7688970276549,0.387096774193548,0.789473684210526,11.5005381703377,5.19557523727417
+7009,0.0054602620086275,0.0236842105263158,2.36842105263158,5,29.393006743637,0.317160826594789,0.789473684210526,9.95393737157186,5.19557523727417
+7010,0.00627726219929173,0.075,7.5,4,74.9658916897613,0.713182570325428,5.75,8.72365322113037,0
+7011,0.00375525694553648,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.949930825482575,7.10526315789474,18.0996627631011,7.34765291213989
+7012,-0.0461553942956303,0,0,0,NA,NA,0,NA,NA
+7013,-0.023264656703582,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,18.7329120635986,18.7329120635986
+7014,0.00266320080845617,0.1075,10.75,6,72.5334491625144,0.673202614379085,6.25,13.919438805691,0
+7015,-0.0222863202877067,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,12.5237962404887,10.3911504745483
+7016,-0.0386704097059249,0.102631578947368,10.2631578947368,2,84.7451991517733,0.897135122941575,9.47368421052632,17.5777966915033,5.19557523727417
+7017,-0.134251075592137,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,8.05362923940023,5.19557523727417
+7018,-0.00444425345051059,0.1025,10.25,1,88.8238145380415,0.919260425497558,10.25,13.4974474325413,0
+7019,0.0349613140038855,0.294736842105263,29.4736842105263,3,93.3073388841267,0.852593468302054,27.8947368421053,30.27401848776,5.19557523727417
+7020,-0.00626212463942609,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.91293446222941,5.19557523727417
+7021,0.0272055270052701,0.252631578947368,25.2631578947368,3,87.1061915816419,0.859973796265968,11.5789473684211,34.9473577042421,10.3911504745483
+7022,0.0202481014598197,0.125,12.5,3,83.9592450555582,0.757983193277311,9.75,126.024153289795,67.54248046875
+7023,0.0133904448719956,0.0421052631578947,4.21052631578947,3,63.9844172174811,0.652014652014652,2.63157894736842,62.2453174591064,32.8597030639648
+7024,0.0262712518121924,0.239473684210526,23.9473684210526,3,89.0850281803493,0.748387372378145,15.5263157894737,38.0043598636166,5.19557523727417
+7025,0.0104856484874529,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,2.59778761863708,0
+7026,0.0168401602798622,0.1625,16.25,3,87.9615659929069,0.904900277374191,14.75,13.3713179808397,0
+7027,0.0298449519757744,0.305263157894737,30.5263157894737,2,91.642928303333,0.86976911976912,17.1052631578947,17.8998156868178,0
+7028,0.0169710084982829,0.0342105263157895,3.42105263157895,3,64.9254510228301,0.71238268240993,2.89473684210526,17.3073195677537,5.19557523727417
+7029,0.0142315605914183,0.0631578947368421,6.31578947368421,3,77.4315511492369,0.831460674157303,5.78947368421053,42.0550764203072,5.19557523727417
+7030,0.0241718962765202,0.2075,20.75,7,82.624075799897,0.751067619476813,10.5,27.5228808242154,5.19557523727417
+7031,0.0197302211818456,0.0947368421052632,9.47368421052632,7,63.9931537210103,0.539728682170543,3.68421052631579,18.3434628380669,5.19557523727417
+7032,0.0242535870135486,0.171052631578947,17.1052631578947,5,84.3163388768669,0.79716252282624,13.9473684210526,27.2966994579022,5.19557523727417
+7033,0.0173561652674356,0.0947368421052632,9.47368421052632,2,80.9560102563196,0.760658914728682,5.78947368421053,66.1098193062676,51.170482635498
+7034,0.0339431028725085,0.2025,20.25,3,91.353973782265,0.895506792058516,19.5,42.3236301327929,20.7823009490967
+7035,0.0153799561454626,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,7.77755989347185,0
+7036,0.0204435376052539,0.128947368421053,12.8947368421053,2,87.6637885329781,0.863329017407567,12.1052631578947,43.701571921913,5.19557523727417
+7037,0.000424548752849468,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,11.6176595687866,11.6176595687866
+7038,-0.00899141214114934,0.0125,1.25,1,58.1880425789518,1,1.25,35.0789611816406,31.6034507751465
+7039,0.00692013669176958,0.136842105263158,13.6842105263158,3,88.3280099009505,0.843792819950671,13.1578947368421,19.6110015282264,10.3911504745483
+7040,0.0181713552173613,0.128947368421053,12.8947368421053,4,84.1778748340892,0.712990936555891,11.0526315789474,30.4470158401801,0
+7041,0.018555837843121,0.0315789473684211,3.15789473684211,3,52.9227486915556,0.635549872122762,1.31578947368421,44.2844606637955,0
+7042,0.0350482191212665,0.247368421052632,24.7368421052632,4,87.93267467857,0.8497335997336,17.6315789473684,49.9475914265247,10.3911504745483
+7043,0.0207664848476634,0.0775,7.75,3,78.697234898559,0.631436314363144,6,18.3676487092049,10.3911504745483
+7044,0.0202010761568305,0.0473684210526316,4.73684210526316,5,54.6386551751226,0.455698792715367,1.84210526315789,25.3450383080377,0
+7045,0.00926210436373008,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,17.8134006772723,10.3911504745483
+7046,-0.0045436089319226,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+7047,0.0218583181320355,0.085,8.5,4,73.7947088484468,0.687743950039032,4,20.5619656198165,0
+7048,0.0192744256189096,0.0736842105263158,7.36842105263158,6,61.9796978298647,0.568181818181818,2.63157894736842,13.6062651702336,5.19557523727417
+7049,0.041120640594454,0.378947368421053,37.8947368421053,4,93.9588687307069,0.768233179250128,32.6315789473684,29.3178194993072,0
+7050,0.0212397541494044,0.210526315789474,21.0526315789474,5,83.6871264954905,0.768075117370892,14.7368421052632,76.3718117237091,44.6940307617188
+7051,0.0186315252275968,0.1025,10.25,5,73.0169000572063,0.741633361592184,5.25,94.1468721250208,29.3906116485596
+7052,0.0278054220726326,0.142105263157895,14.2105263157895,7,77.413145577651,0.749323834025991,10.5263157894737,30.9095595677694,11.6176595687866
+7053,0.0424627201030776,0.268421052631579,26.8421052631579,2,93.9113769228218,0.925305657113653,26.3157894736842,11.749662586287,0
+7054,0.0175684071680543,0.136842105263158,13.6842105263158,2,86.1147766356895,0.895861879967114,12.1052631578947,70.9853134888869,15.5867252349854
+7055,0.0210200886518214,0.185,18.5,3,89.1911843523649,0.754601226993865,14.5,69.5308546633334,49.28955078125
+7056,0.0084751119971076,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,4.01856483731951,0
+7057,0.0272353014868905,0.107894736842105,10.7894736842105,6,69.243585778465,0.577615322132444,3.15789473684211,10.7740916391698,0
+7058,0.0166140599499302,0.0368421052631579,3.68421052631579,4,54.2539589990242,0.584699453551913,2.10526315789474,7.09900770868574,0
+7059,0.0111848453568109,0.0075,0.75,1,44.4894453484604,1,0.75,107.74446105957,103.911506652832
+7060,0.0139720023290226,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,81.9118067423503,72.7380523681641
+7061,0.0190831131950912,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,30.8101840019226,11.6176595687866
+7062,0.0147212201571787,0.0289473684210526,2.89473684210526,3,54.4093320921881,0.65672990063234,1.84210526315789,7.42558652704412,0
+7063,0.0195844794814184,0.045,4.5,5,54.3999473404205,0.495830909443475,1.5,21.0375044610765,0
+7064,0.0366510887488977,0.260526315789474,26.0526315789474,2,92.925103662493,0.832860170338678,24.4736842105263,47.7246603484106,5.19557523727417
+7065,0.0253637175165319,0.121052631578947,12.1052631578947,3,82.8252368177017,0.795793029325963,9.47368421052632,18.7281974605892,0
+7066,0.0159177458634842,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,68.6929912567139,51.955753326416
+7067,0.0133169964975968,0,0,0,NA,NA,0,NA,NA
+7068,0.0158391573679278,0.0342105263157895,3.42105263157895,3,54.6987496753745,0.597335755373903,1.31578947368421,48.3146281609168,30.2951488494873
+7069,0.0196461866511335,0.0447368421052632,4.47368421052632,3,65.9177566143905,0.706887052341598,2.63157894736842,29.2708146151374,0
+7070,0.0121482127833588,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,25.6851088205973,20.7823009490967
+7071,0.0182923661057953,0.0325,3.25,4,53.1479098566857,0.483204134366925,1.75,35.441229233375,10.3911504745483
+7072,0.0219337714428548,0.0421052631578947,4.21052631578947,5,50.993148025082,0.521520146520146,1.57894736842105,53.1768924593925,10.3911504745483
+7073,0.0134002288068969,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,45.4686508178711,20.7823009490967
+7074,0.0218347557672946,0.0447368421052632,4.47368421052632,3,66.3466728186873,0.706887052341598,3.15789473684211,86.4877198163201,62.3469009399414
+7075,0.022552381444948,0.08,8,3,82.2888668275941,0.832775919732441,7.5,56.3552458286285,41.5646018981934
+7076,0.014467623480902,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5.19557523727417,5.19557523727417
+7077,0.0273879964098389,0.136842105263158,13.6842105263158,8,68.8373467803732,0.596464784872568,3.94736842105263,34.3729210175001,0
+7078,0.0279285671589605,0.144736842105263,14.4736842105263,7,74.6470061563057,0.655384615384615,6.31578947368421,22.7462525107644,0
+7079,0.0327487435388321,0.1675,16.75,6,81.5803886832804,0.640666307332974,9.5,13.8653455421106,0
+7080,0.0173344602960194,0.05,5,2,74.7032626354689,0.745916515426497,4.21052631578947,81.6518100939299,41.5646018981934
+7081,0.0255428032071857,0.0710526315789474,7.10526315789474,6,60.1643388458127,0.574412016601884,3.42105263157895,64.0320865489818,31.6034507751465
+7082,0.0219552043079411,0.0394736842105263,3.94736842105263,6,42.4701240254298,0.38480697384807,1.05263157894737,76.7320785522461,15.5867252349854
+7083,0.0254236477281665,0.04,4,3,66.2624149457428,0.782986111111111,3.25,63.1285984516144,51.4335708618164
+7084,0.0241894055038229,0.0631578947368421,6.31578947368421,4,64.9264969472085,0.662921348314607,3.15789473684211,30.2024795214335,0
+7085,0.0233851763053328,0.0815789473684211,8.1578947368421,3,79.5547831376621,0.738681948424069,6.84210526315789,15.0268296118705,5.19557523727417
+7086,0.0274895672539347,0.165789473684211,16.578947368421,5,77.9614448673498,0.705764267278463,6.31578947368421,5.55659970783052,0
+7087,0.018292494153502,0.0625,6.25,3,72.5187083680548,0.733333333333333,4.25,5.38114501953125,0
+7088,0.0187172346918439,0.0947368421052632,9.47368421052632,3,78.0488280499176,0.797480620155039,6.31578947368421,19.8453094032076,0
+7089,0.0310956480827276,0.194736842105263,19.4736842105263,2,92.4339039611643,0.828054298642534,19.2105263157895,80.0594220548063,49.0149574279785
+7090,0.0322635209589192,0.2,20,3,87.1806746449564,0.766791044776119,14.4736842105263,122.322371533042,98.5791015625
+7091,0.0268753262919927,0.1,10,5,76.5192840548936,0.767827529021559,7.75,134.133606529236,109.600776672363
+7092,0.0213679732091183,0.102631578947368,10.2631578947368,5,68.3996221338665,0.639972930295511,3.15789473684211,105.875239641238,74.9316482543945
+7093,0.0292390940654514,0.215789473684211,21.5789473684211,2,88.9454279930292,0.850497570006943,10.7894736842105,79.7554221269561,63.4200782775879
+7094,0.0206696776245257,0.0578947368421053,5.78947368421053,2,78.1035948821918,0.843904042063753,5.26315789473684,59.5338107022372,47.9008369445801
+7095,0.0391794189492149,0.29,29,6,86.0299305687915,0.778672032193159,13.5,12.7655681618329,0
+7096,0.0370961903339776,0.35,35,3,91.5355376307968,0.821996185632549,20.7894736842105,5.76270715455364,0
+7097,0.0283177547735632,0.186842105263158,18.6842105263158,2,90.4834250774762,0.773721682847896,16.8421052631579,14.8160284337863,0
+7098,0.0210864232733768,0.0736842105263158,7.36842105263158,6,61.5687399374071,0.640151515151515,3.15789473684211,5.42615498815264,0
+7099,0.0401684339511848,0.36,36,1,96.4912280701754,0.90530303030303,36,0,0
+7100,0.0446144716036037,0.291666666666667,29.1666666666667,2,93.8601869812557,0.92530345471522,28.3333333333333,1.97219099771409,0
+7101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7106,0.023474260672485,0.105263157894737,10.5263157894737,1,81.6202788108963,0.767156862745098,10.5263157894737,53.9041628837585,47.9008369445801
+7107,0.0218392437370849,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.936696282440963,8.86426592797784,56.1139500141144,32.8597030639648
+7108,0.0168400409216157,0.0886426592797784,8.86426592797784,5,64.1380807982763,0.641278933832125,2.21606648199446,15.455656632781,0
+7109,0.0147337402227107,0.0443213296398892,4.43213296398892,5,49.6624681620537,0.433212560386473,1.38504155124654,11.549395263195,5.19557523727417
+7110,0.0131697377711182,0.0184210526315789,1.84210526315789,2,53.6189928746137,0.872654155495979,1.57894736842105,7.42225027084351,0
+7111,0.0144330963771823,0.105263157894737,10.5263157894737,3,81.9280788692432,0.822595704948646,8.86426592797784,46.7465185868113,20.7823009490967
+7112,0.0174619444486959,0.155124653739612,15.5124653739612,2,86.8029765889774,0.914585093797533,13.0193905817175,15.8572553651673,0
+7113,-0.00355756262386225,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.933639705882353,5.81717451523546,14.6918484369914,5.19557523727417
+7114,0.00533170216985079,0.0868421052631579,8.68421052631579,3,77.1889714895156,0.73636460668161,5.26315789473684,18.5093183806448,10.3911504745483
+7115,-0.00995066429747222,0.0775623268698061,7.75623268698061,4,67.3976308635336,0.638638638638639,3.04709141274238,14.019386785371,0
+7116,0.00511801556379817,0.132963988919668,13.2963988919668,4,80.0357922690006,0.746824592846567,8.86426592797784,39.9225144386292,22.0429573059082
+7117,-0.0643090634679175,0,0,0,NA,NA,0,NA,NA
+7118,-0.00674465329912461,0.0421052631578947,4.21052631578947,1,79.0554595032226,0.869505494505495,4.21052631578947,30.5362324714661,16.4298515319824
+7119,0.0125089162904859,0.168975069252078,16.8975069252078,1,92.0405515626388,0.965943396226415,16.8975069252078,57.8560642179896,41.8880653381348
+7120,-0.019230054618241,0,0,0,NA,NA,0,NA,NA
+7121,0.00908262467652053,0.132963988919668,13.2963988919668,1,90.3199234519404,0.957804098807761,13.2963988919668,20.3119337161382,10.3911504745483
+7122,0.0090584764108395,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,81.5090764363607,78.1066207885742
+7123,0.0335985786011288,0.307479224376731,30.7479224376731,3,91.6003275716865,0.8556,21.8836565096953,49.1690367449511,15.5867252349854
+7124,0.0142178382361572,0.191135734072022,19.1135734072022,5,81.2586906358738,0.754783199366014,9.14127423822715,8.23399308107901,0
+7125,0.0150899068139652,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.933226462790554,8.31024930747922,14.7891531467438,0
+7126,0.0181044413330471,0.105263157894737,10.5263157894737,3,80.9292750302371,0.79982440737489,7.10526315789474,31.3339508056641,0
+7127,0.0146296826077688,0.0304709141274238,3.04709141274238,3,56.4505085991373,0.518666666666667,1.93905817174515,21.0406931963834,5.19557523727417
+7128,0.0142231604873723,0.105263157894737,10.5263157894737,5,74.0788686829979,0.645191409897292,6.37119113573407,12.6492218720286,5.19557523727417
+7129,0.0094211210493781,0.0332409972299169,3.32409972299169,5,42.7847632421225,0.391538850497219,1.38504155124654,25.6264854272207,10.3911504745483
+7130,0.0281260844235811,0.244736842105263,24.4736842105263,3,90.8757459205083,0.872381512111162,20.2631578947368,27.1924270301737,0
+7131,0.0226645154117122,0.141274238227147,14.1274238227147,2,84.7382455466874,0.759065628476085,8.31024930747922,22.4738108317057,0
+7132,0.0182332593256211,0.0664819944598338,6.64819944598338,1,84.0091180032961,1,6.64819944598338,31.2051423390706,20.7823009490967
+7133,0.0202804877071408,0.116343490304709,11.6343490304709,2,87.4635460601635,0.904366638703695,11.3573407202216,82.7323553902762,55.2297248840332
+7134,0.0146583094413999,0.0552631578947368,5.52631578947368,3,67.9167941270865,0.669220055710306,2.89473684210526,54.1234534127372,31.1734504699707
+7135,0.00414351774405006,0,0,0,NA,NA,0,NA,NA
+7136,0.0118745781582928,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,15.5867252349854,15.5867252349854
+7137,0.00729709067189237,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,10.4868902478899,5.19557523727417
+7138,0.0137014404072512,0.197368421052632,19.7368421052632,4,88.7286202646048,0.877297565822156,18.1578947368421,21.0740639940898,5.19557523727417
+7139,0.000233504169627749,0.0332409972299169,3.32409972299169,2,68.5613517353952,0.817461655149166,3.04709141274238,23.5377136866252,0
+7140,0.0128658350830874,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,21.4878170755174,5.19557523727417
+7141,0.023076787843427,0.160664819944598,16.0664819944598,2,86.7074306858802,0.833201320132013,10.5263157894737,33.1633539364256,5.19557523727417
+7142,0.0186670767647244,0.110803324099723,11.0803324099723,4,77.1059516373371,0.68108057841633,6.37119113573407,50.3618205308914,11.6176595687866
+7143,0.0121659454170425,0.0394736842105263,3.94736842105263,5,47.105407740132,0.479452054794521,1.31578947368421,7.70194425582886,0
+7144,0.0142359460785535,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,7.54269688470023,0
+7145,0.0136826348850901,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,28.0246836344401,23.2353191375732
+7146,0.0105758142581555,0.038781163434903,3.8781163434903,3,57.912053576166,0.583861671469741,1.93905817174515,69.5114228384835,32.8597030639648
+7147,0.0400408864329285,0.294736842105263,29.4736842105263,4,93.4507837859391,0.824516033692922,28.1578947368421,67.4466522378581,5.19557523727417
+7148,0.0328253792575706,0.238227146814404,23.8227146814404,4,92.120248961189,0.768342245989305,22.7146814404432,52.6116285656774,10.3911504745483
+7149,0.0203445096771565,0.124653739612188,12.4653739612188,4,77.533142505953,0.789556962025316,6.64819944598338,70.6266218397352,52.9846801757812
+7150,0.0147319689458426,0.0803324099722992,8.03324099722992,3,72.4581637211013,0.745513970776724,3.601108033241,75.4265797056001,62.3469009399414
+7151,0.0172775440663611,0.0394736842105263,3.94736842105263,5,50.0385073341025,0.432129514321295,1.57894736842105,70.6182684580485,25.977876663208
+7152,0.00972905305881639,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,36.369026184082,36.369026184082
+7153,0.014073222408654,0.0914127423822715,9.14127423822715,1,87.180691871343,0.898091689250226,9.14127423822715,5.01112083955245,0
+7154,0.0266980472184625,0.221606648199446,22.1606648199446,3,88.3856800356439,0.837151019998997,14.9584487534626,53.4853633642197,10.3911504745483
+7155,0.0112771878299794,0.068421052631579,6.8421052631579,2,79.5400937903271,0.842910293509715,6.05263157894737,67.903435927171,46.7601776123047
+7156,0.0113100811663332,0.0166204986149584,1.66204986149584,2,44.8792546293462,0.418913480885312,1.10803324099723,26.3147665659587,11.6176595687866
+7157,0.0335717211910227,0.204986149584488,20.4986149584488,5,86.5259803317421,0.738756365585634,14.404432132964,11.3101094993385,0
+7158,0.0276226889664207,0.185595567867036,18.5595567867036,4,82.6392365548847,0.758619687191116,11.0803324099723,7.67556141383612,0
+7159,0.00734842827285703,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,18.7329120635986,18.7329120635986
+7160,0.0169706712190305,0.03601108033241,3.601108033241,2,64.1225578072574,0.769476372924649,1.93905817174515,11.4208699006301,0
+7161,0.0110564558207068,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+7162,0.00994411252461122,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,12.2937201499939,0
+7163,0.0149959250682035,0.0210526315789474,2.10526315789474,3,41.4670426229876,0.591397849462366,1.05263157894737,19.2562838196754,5.19557523727417
+7164,0.0185269132859687,0.0470914127423823,4.70914127423823,4,59.5908005704818,0.538255813953488,1.93905817174515,17.5725647701937,0
+7165,0.0206170880370045,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,35.5384728567941,16.4298515319824
+7166,0.00976878440497757,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,7.79336285591125,5.19557523727417
+7167,0.0201461505595178,0.0421052631578947,4.21052631578947,4,59.8326978376422,0.565018315018315,2.63157894736842,43.3952359855175,0
+7168,0.016163202060832,0.0470914127423823,4.70914127423823,3,63.2228388534051,0.664186046511628,2.49307479224377,63.2592580458697,46.7601776123047
+7169,0.0273479098881243,0.07202216066482,7.20221606648199,5,65.5776064446866,0.684601383327266,4.43213296398892,71.2463125082163,57.1513290405273
+7170,0.00893291657182374,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,58.6194140116374,44.6940307617188
+7171,0.0222252895075048,0.0815789473684211,8.1578947368421,5,65.282684771522,0.564469914040115,3.42105263157895,34.6645762382015,5.19557523727417
+7172,0.0253696715510986,0.0609418282548476,6.09418282548476,4,66.1103498505527,0.592833593614437,3.04709141274238,58.9015124927868,42.8438110351562
+7173,0.0275551598738615,0.14404432132964,14.404432132964,3,87.0429428296901,0.698083706047053,12.4653739612188,22.5667476562353,5.19557523727417
+7174,0.0201761680107368,0.0664819944598338,6.64819944598338,3,75.8582757199305,0.605341246290801,4.98614958448753,55.2570490042369,16.4298515319824
+7175,0.0205062751628391,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,85.7144134521484,74.9316482543945
+7176,0.0120615278437509,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,31.7898101806641,25.977876663208
+7177,0.0187042433411324,0.0554016620498615,5.54016620498615,3,66.0552817340733,0.692649702014947,2.77008310249307,55.5210092544556,31.6034507751465
+7178,0.0223759348930766,0.0637119113573407,6.37119113573407,4,64.7497453137715,0.614316239316239,3.601108033241,55.1260898424231,29.3906116485596
+7179,0.0295866537168254,0.115789473684211,11.5789473684211,3,84.3104741969255,0.877734877734878,10.2631578947368,39.3474067341198,20.7823009490967
+7180,0.0238249560724275,0.113573407202216,11.3573407202216,3,80.444220027718,0.70570652173913,7.4792243767313,94.2093147649998,56.1987419128418
+7181,0.0260964366137958,0.0775623268698061,7.75623268698061,7,55.5268518464332,0.445912579245913,2.21606648199446,89.8696008409773,57.1513290405273
+7182,0.0284994691793268,0.0997229916897507,9.97229916897507,5,75.4046446846917,0.685282051282051,6.64819944598338,101.117945883009,46.7601776123047
+7183,0.0231288264907466,0.0342105263157895,3.42105263157895,4,50.0785425651038,0.424765364819861,1.57894736842105,70.6463426443247,58.0882949829102
+7184,0.0231820647203276,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.927727727727728,7.75623268698061,61.4890044076102,47.0479354858398
+7185,0.0192697314455258,0.0692520775623269,6.92520775623269,2,79.9322147778781,0.865699404761905,6.37119113573407,4.12080339431763,0
+7186,0.0407061203316861,0.279778393351801,27.9778393351801,6,85.0337794213303,0.708499787505312,19.6675900277008,6.57823097115696,0
+7187,0.0129057751094622,0.0657894736842105,6.57894736842105,3,71.6640394117516,0.705633802816901,3.94736842105263,1.2469380569458,0
+7188,0.011473265158892,0.0498614958448753,4.98614958448753,2,74.9233646818843,0.805096641831336,4.43213296398892,3.58327669567532,0
+7189,0.020494840297154,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,24.0104169845581,22.0429573059082
+7190,0.0185672617348513,0.0831024930747922,8.31024930747922,2,83.733116765293,0.88871077131759,8.03324099722992,99.4963897705078,52.2148818969727
+7191,0.0220650489460049,0.0842105263157895,8.42105263157895,2,80.5259623210477,0.727011494252874,6.31578947368421,75.4854689836502,51.955753326416
+7192,0.0361684318509849,0.202216066481994,20.2216066481994,4,85.4564884151803,0.725802951388889,11.3573407202216,68.1957218744983,31.1734504699707
+7193,0.0222962124993843,0.135734072022161,13.5734072022161,5,80.9340174345354,0.73828601953602,10.5263157894737,26.7739744478342,7.34765291213989
+7194,0.0244163530754064,0.155124653739612,15.5124653739612,1,91.4501011212887,0.938989352712523,15.5124653739612,41.5821448734828,23.2353191375732
+7195,0.0311876315859033,0.218421052631579,21.8421052631579,2,89.3994020688152,0.886850363040839,13.4210526315789,55.175317051899,36.7382659912109
+7196,0.006287565690493,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.634923310298331,3.32409972299169,39.2561113039652,18.7329120635986
+7197,0.0248794853075884,0.0886426592797784,8.86426592797784,5,68.0329838233384,0.641278933832125,3.601108033241,35.6470289826393,21.4219055175781
+7198,0.0361090101689614,0.249307479224377,24.9307479224377,4,91.2033690449811,0.801425591895671,22.7146814404432,4.44732302559747,0
+7199,0.0464687285502709,0.421052631578947,42.1052631578947,5,89.4257229547785,0.735621521335807,25.2631578947368,1.39283377826214,0
+7200,0.0622907216415466,0.546783625730994,54.6783625730994,3,93.9999249969932,0.846951333209025,47.6608187134503,1.10658603811009,0
+7201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7206,0.0240281347256601,0.0789473684210526,7.89473684210526,4,52.7155053044001,0.616806722689076,5.26315789473684,24.5232462088267,10.3911504745483
+7207,0.00917146404958595,0.113573407202216,11.3573407202216,2,87.0309825805101,0.934601449275362,11.0803324099723,30.5428781276796,14.6953058242798
+7208,0.0168815421774351,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,12.4090905984243,5.19557523727417
+7209,0.0173281784350932,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,16.8027545809746,7.34765291213989
+7210,0.0148871045550263,0.0263157894736842,2.63157894736842,3,50.8444565675899,0.604989604989605,1.57894736842105,24.5821858882904,0
+7211,0.0214913231631066,0.157894736842105,15.7894736842105,1,91.5743806754245,0.878826530612245,15.7894736842105,90.5685858475535,77.9336318969727
+7212,0.0228518400988006,0.171745152354571,17.1745152354571,1,92.1499865944243,0.932924563359346,17.1745152354571,75.3161964416504,51.955753326416
+7213,0.00437631131913864,0.146814404432133,14.6814404432133,2,84.701173617974,0.806800342514628,9.97229916897507,17.3312948334892,0
+7214,-0.0181591400629163,0,0,0,NA,NA,0,NA,NA
+7215,-0.000510334243671904,0.0692520775623269,6.92520775623269,2,75.7601990072061,0.785119047619048,3.601108033241,16.585028629303,7.34765291213989
+7216,-0.0301109709916572,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,40.2932885487874,33.2679138183594
+7217,-0.0260535023257654,0.0277008310249307,2.77008310249307,1,72.175958031556,0.841770764847688,2.77008310249307,67.1845993041992,60.5902976989746
+7218,-0.0135558559684509,0.0526315789473684,5.26315789473684,2,77.9727935993549,0.863799283154122,5,15.4469598293304,0
+7219,-0.0158133568630216,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989
+7220,-0.00696915987464812,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+7221,-0.000357352861207204,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0
+7222,0.0106071754260675,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,1.29889380931854,0
+7223,0.0243767428446769,0.113573407202216,11.3573407202216,3,83.0761316872428,0.836503623188406,9.97229916897507,50.7365049036538,33.2679138183594
+7224,0.00569235481667556,0.074792243767313,7.4792243767313,4,68.2436048455281,0.597827600612728,2.77008310249307,26.0981992968807,0
+7225,0.0306775763595918,0.213296398891967,21.3296398891967,4,88.9301410584286,0.785030033140017,18.8365650969529,18.1498393331255,0
+7226,0.0235603230292566,0.160526315789474,16.0526315789474,3,89.5590368262211,0.808954870763589,15.2631578947368,40.0095091647789,25.977876663208
+7227,0.0114801886065683,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,54.8733406066895,21.4219055175781
+7228,0.0290289743276146,0.274238227146814,27.4238227146814,1,94.9468230611528,0.907110386825628,27.4238227146814,62.0673761560459,14.6953058242798
+7229,0.00213935508446686,0.0221606648199446,2.21606648199446,3,43.2007065974729,0.590934844192635,1.10803324099723,9.63027608394623,5.19557523727417
+7230,0.0267914916436942,0.160526315789474,16.0526315789474,4,83.1909310343031,0.775241024427752,8.1578947368421,60.8091132367244,5.19557523727417
+7231,0.0248346668653177,0.218836565096953,21.8836565096953,3,85.3070980976926,0.753115501519757,9.69529085872576,61.9273437789724,25.977876663208
+7232,0.0483225792115283,0.32409972299169,32.409972299169,2,94.551969748914,0.92323306526446,31.5789473684211,64.1888496692364,25.977876663208
+7233,0.0260674556233365,0.182825484764543,18.2825484764543,2,87.4292162415396,0.861665438467207,14.404432132964,102.732943332557,51.955753326416
+7234,0.0207849050975423,0.0868421052631579,8.68421052631579,5,68.5487745406052,0.695805315401857,4.47368421052632,74.3834307121508,44.6940307617188
+7235,0.015048056597283,0.193905817174515,19.3905817174515,3,83.7622107177771,0.828541893666359,7.20221606648199,24.8906741550991,0
+7236,0.0286089738774409,0.121883656509695,12.1883656509695,4,76.316415319226,0.738383493903998,7.20221606648199,48.0638380484148,18.7329120635986
+7237,0.0460373113445236,0.421052631578947,42.1052631578947,4,88.719653219116,0.758553274682307,15.2354570637119,50.0978519916534,15.5867252349854
+7238,0.012371368986389,0.0210526315789474,2.10526315789474,2,58.2306946168411,0.795698924731183,1.84210526315789,24.311380982399,14.6953058242798
+7239,0.00254356118833802,0.0249307479224377,2.49307479224377,2,55.7189825278222,0.658143939393939,1.38504155124654,12.1230086750454,5.19557523727417
+7240,0.0130236683123517,0.10803324099723,10.803324099723,2,85.4837655361495,0.93100812231247,10.2493074792244,13.2532416979472,0
+7241,0.0290068528495459,0.265927977839335,26.5927977839335,4,91.1420050539791,0.730715225976305,22.4376731301939,27.9164533068736,0
+7242,0.0280764734747312,0.193905817174515,19.3905817174515,2,87.6269913157078,0.838627664627162,10.5263157894737,44.5780043465751,23.2353191375732
+7243,0.0106611119963131,0.0526315789473684,5.26315789473684,4,63.9767824800979,0.659498207885305,2.89473684210526,12.5896582841873,5.19557523727417
+7244,0.0193429434195695,0.135734072022161,13.5734072022161,6,80.2074215172078,0.75206043956044,11.0803324099723,18.8015342926493,0
+7245,0.00429054138198568,0.0803324099722992,8.03324099722992,2,80.4302269304841,0.90745962573699,7.20221606648199,37.456241607666,25.977876663208
+7246,0.0169340341025093,0.0249307479224377,2.49307479224377,4,35.7441251814162,0.401751893939394,0.831024930747922,47.0564745797051,10.3911504745483
+7247,0.0361857355069955,0.307894736842105,30.7894736842105,3,92.0489053898267,0.836430159982782,27.3684210526316,65.4184346321302,31.1734504699707
+7248,0.0177224127914279,0.07202216066482,7.20221606648199,6,57.1022296912924,0.605751729159083,2.21606648199446,74.5915321936974,41.5646018981934
+7249,0.019646872369176,0.0526315789473684,5.26315789473684,3,68.0727892382275,0.708812260536398,3.32409972299169,44.6118713178133,25.977876663208
+7250,0.00896530591599708,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417
+7251,0.0179938028723164,0.0263157894736842,2.63157894736842,2,64.1609526402966,0.841995841995842,2.36842105263158,33.0198362350464,21.4219055175781
+7252,0.0177942523816223,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,36.369026184082,36.369026184082
+7253,0.0275355858781983,0.0886426592797784,8.86426592797784,3,78.7966767071334,0.767886368950199,7.20221606648199,8.09036636352539,0
+7254,0.0281002837951731,0.0969529085872576,9.69529085872576,6,72.1796041354798,0.599058599534589,5.81717451523546,26.2705602100917,5.19557523727417
+7255,0.0268829025652897,0.0736842105263158,7.36842105263158,4,71.0494756198846,0.616161616161616,3.94736842105263,69.656896182469,20.7823009490967
+7256,0.0144641197871162,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,27.7817707061768,10.3911504745483
+7257,0.0254972170373032,0.130193905817175,13.0193905817174,4,81.5241810405402,0.655095541401274,8.31024930747922,6.59568558347986,0
+7258,0.0139824058499967,0.0526315789473684,5.26315789473684,4,58.4643784826265,0.563218390804598,2.21606648199446,13.4734556298507,5.19557523727417
+7259,0.0137366256963249,0.0342105263157895,3.42105263157895,2,66.6860336491831,0.71238268240993,2.63157894736842,9.83207709972675,5.19557523727417
+7260,0.0228578273640967,0.0692520775623269,6.92520775623269,4,72.1972906072137,0.758258928571429,5.54016620498615,13.4226209449768,0
+7261,-0.00331401007397567,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,11.6176595687866,11.6176595687866
+7262,0.0173576158121958,0.0526315789473684,5.26315789473684,2,78.0478642256595,0.745210727969349,4.98614958448754,16.9382722503261,0
+7263,0.0181757392967867,0.0789473684210526,7.89473684210526,2,81.5937015158413,0.844897959183673,7.10526315789474,11.6971815109253,0
+7264,0.0116160631365961,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.658143939393939,2.49307479224377,7.78107166290283,5.19557523727417
+7265,0.0240956262552013,0.0249307479224377,2.49307479224377,4,37.2825567342518,0.401751893939394,0.831024930747922,31.737597571479,18.7329120635986
+7266,0.0120402440646851,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,21.1040735244751,11.6176595687866
+7267,0.0140950646907042,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,33.0207603772481,10.3911504745483
+7268,0.0194891738649951,0.141274238227147,14.1274238227147,2,88.0348552113225,0.799221357063404,12.7423822714681,55.500384424247,23.2353191375732
+7269,0.00791825036168395,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,68.8413715362549,62.3469009399414
+7270,0.0132780126587627,0.0332409972299169,3.32409972299169,5,37.9203602297358,0.452384965447497,1.10803324099723,30.9142472743988,10.3911504745483
+7271,0.0149600345887288,0.0368421052631579,3.68421052631579,3,61.2955051452851,0.740437158469945,2.63157894736842,9.61759219850813,0
+7272,0.014104581433974,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,13.6370355061122,5.19557523727417
+7273,0.0257819923830025,0.105263157894737,10.5263157894737,6,66.0133353077724,0.627450980392157,3.32409972299169,11.9804500780608,0
+7274,0.0190440978186716,0.0526315789473684,5.26315789473684,5,52.2097953971984,0.526819923371648,1.38504155124654,9.19483322846262,0
+7275,0.0194028094167343,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,19.455020904541,0
+7276,0.0064296996702006,0.0637119113573407,6.37119113573407,2,80.2012096057094,0.881328073635766,6.09418282548476,14.3850444503452,7.34765291213989
+7277,0.00476652561335672,0,0,0,NA,NA,0,NA,NA
+7278,0.0201625419097146,0.0443213296398892,4.43213296398892,4,57.1646508768228,0.564009661835749,1.93905817174515,18.6296202540398,0
+7279,0.0231510043632451,0.0947368421052632,9.47368421052632,5,68.6850179236264,0.594961240310077,3.15789473684211,10.6092333263821,0
+7280,0.0222907798179776,0.105263157894737,10.5263157894737,6,69.3208775993266,0.680672268907563,5.81717451523546,16.3579933392374,0
+7281,0.0263244593170132,0.132963988919668,13.2963988919668,5,76.0856948564809,0.5639756876802,5.54016620498615,10.6640996336937,0
+7282,0.0189338412027889,0.0969529085872576,9.69529085872576,6,68.0082871371474,0.560873704252168,4.15512465373961,8.94271915980748,0
+7283,0.0280674020841089,0.136842105263158,13.6842105263158,5,82.0574745302139,0.726637434913675,9.73684210526316,7.78910814798795,0
+7284,0.0195118347318312,0.0831024930747922,8.31024930747922,3,75.0952694055084,0.710648005425735,4.15512465373961,1.87533025741577,0
+7285,0.0175499272135264,0.0443213296398892,4.43213296398892,3,66.0759723624276,0.694806763285024,3.32409972299169,7.29936388134956,0
+7286,0.0279646565992717,0.127423822714681,12.7423822714681,5,74.274968754557,0.676760276760277,4.98614958448754,5.2958186087401,0
+7287,0.0054521018307002,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.674550365636735,7.10526315789474,1.97097815407647,0
+7288,0.0137006495371221,0.0637119113573407,6.37119113573407,3,72.5854488077184,0.79232412886259,4.98614958448753,2.48484033087026,0
+7289,0.0184123434832891,0.0443213296398892,4.43213296398892,2,68.6260743293786,0.694806763285024,2.49307479224377,17.6695713400841,5.19557523727417
+7290,0.0282442100703477,0.168975069252078,16.8975069252078,6,76.9600063134869,0.670786163522013,7.20221606648199,3.60344108988027,0
+7291,0.0384041880948261,0.339473684210526,33.9473684210526,4,91.7335606124264,0.742307366279563,25.5263157894737,5.21838300911955,0
+7292,0.0463231670253164,0.437673130193906,43.7673130193906,3,95.7392660361607,0.871224732461356,42.1052631578947,20.3479461156869,0
+7293,0.0411339989267796,0.454293628808864,45.4293628808864,1,97.3130514558791,0.77548996537466,45.4293628808864,4.3704290477241,0
+7294,0.0329734249579591,0.296398891966759,29.6398891966759,3,91.8988542702845,0.749622618416221,23.2686980609418,3.37366221329876,0
+7295,0.0432071485225032,0.431578947368421,43.1578947368421,1,97.1763536653296,0.720382634289919,43.1578947368421,6.59758357013144,0
+7296,0.0436743687000835,0.390581717451524,39.0581717451524,2,93.0914110332803,0.771035940803383,23.8227146814404,6.43316254717238,0
+7297,0.036687127945657,0.240997229916898,24.0997229916898,3,87.211865966746,0.855497998587238,13.2963988919668,17.1185185059734,0
+7298,0.0347819248694618,0.279778393351801,27.9778393351801,5,84.9554711812236,0.685486612834679,16.0664819944598,26.5422364933656,0
+7299,0.0585116514116587,0.515789473684211,51.5789473684211,4,95.1177993883352,0.773053033922599,42.8947368421053,18.8201869677524,0
+7300,0.0608362523710889,0.526315789473684,52.6315789473684,5,90.1701214260118,0.771771771771772,29.8245614035088,35.1078792969386,0
+7301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7306,0.00505493265271932,0.0328947368421053,3.28947368421053,2,45.3445993393869,0.586394557823129,2.63157894736842,20.3617105484009,10.3911504745483
+7307,0.0181771257185899,0.174515235457064,17.4515235457064,3,89.1713611257969,0.845820622330689,16.3434903047091,40.5577388036819,18.7329120635986
+7308,0.0340549281363439,0.263157894736842,26.3157894736842,2,92.2753399711541,0.800420168067227,22.4376731301939,25.8208026986373,0
+7309,0.0227058262029021,0.141274238227147,14.1274238227147,1,90.7748213352599,0.959844271412681,14.1274238227147,57.9208440593645,34.8529777526855
+7310,0.0247500769216506,0.186842105263158,18.6842105263158,2,88.7325803287343,0.862265372168285,15,23.3708797575722,0
+7311,0.0090866182603522,0.0304709141274238,3.04709141274238,3,59.1111111111111,0.724952380952381,2.49307479224377,38.977690263228,22.0429573059082
+7312,0.0150274596146567,0.0858725761772853,8.58725761772853,2,80.087971389894,0.868727272727273,7.20221606648199,49.6238533758348,36.369026184082
+7313,0.0245078462494373,0.221606648199446,22.1606648199446,3,87.633494258414,0.85524535111022,13.5734072022161,47.4949739694595,18.7329120635986
+7314,0.0147534116587945,0.189473684210526,18.9473684210526,2,91.6669181212161,0.873708968197157,18.4210526315789,19.3416660229365,5.19557523727417
+7315,0.0105594159330472,0.157894736842105,15.7894736842105,2,86.3601870774348,0.903061224489796,11.0803324099723,38.2886159461841,16.4298515319824
+7316,0.0177223020309561,0.168975069252078,16.8975069252078,4,84.3784638958183,0.818364779874214,12.7423822714681,51.6170591760854,31.1734504699707
+7317,0.0115330573047625,0.260387811634349,26.0387811634349,1,94.6683312894905,0.927568218298555,26.0387811634349,58.3235183675238,15.5867252349854
+7318,-0.00280316817841499,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.974965412741287,7.10526315789474,59.8066953023275,46.4706382751465
+7319,-0.0331209777797788,0,0,0,NA,NA,0,NA,NA
+7320,-0.0173672673958702,0,0,0,NA,NA,0,NA,NA
+7321,0.00117932339705181,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,6.80109632015228,0
+7322,0.00959823535396074,0.0421052631578947,4.21052631578947,4,60.3869276275906,0.652014652014652,2.89473684210526,14.3908582627773,5.19557523727417
+7323,0.0206356327339478,0.127423822714681,12.7423822714681,3,82.4426164980073,0.823687423687424,10.2493074792244,24.5805994220402,5.19557523727417
+7324,0.00848421621587194,0.0581717451523546,5.81717451523546,6,58.3372680727059,0.535477941176471,3.04709141274238,11.8390059244065,5.19557523727417
+7325,0.0246370675935058,0.193905817174515,19.3905817174515,3,86.8778402775051,0.78819880982315,14.6814404432133,36.958722441537,5.19557523727417
+7326,0.0166279017041425,0.107894736842105,10.7894736842105,5,74.4986740866545,0.675088709332649,6.31578947368421,38.9747206292501,10.3911504745483
+7327,0.016835657662802,0.160664819944598,16.0664819944598,4,80.2132828755498,0.761716171617162,9.69529085872576,28.7358273226639,7.34765291213989
+7328,0.008711688210106,0.0969529085872576,9.69529085872576,2,82.9727725770168,0.656335942458219,7.75623268698061,17.3521705354963,0
+7329,0.0223997976955261,0.238227146814404,23.8227146814404,3,88.4809833399446,0.819821746880571,16.3434903047091,22.0853658276935,0
+7330,0.0158112446013312,0.0894736842105263,8.94736842105263,3,79.7402919799336,0.764657308009909,7.10526315789474,35.494510047576,0
+7331,0.00983068884759184,0.074792243767313,7.4792243767313,6,58.5945078365352,0.597827600612728,1.93905817174515,22.8434899118212,0
+7332,0.0119087305452252,0.0637119113573407,6.37119113573407,4,65.4177648825388,0.673652202498356,2.77008310249307,28.7821801849034,0
+7333,0.0116808468276575,0.0249307479224377,2.49307479224377,5,29.4343538299179,0.316287878787879,0.831024930747922,23.936956776513,5.19557523727417
+7334,0.00685240697800366,0.0473684210526316,4.73684210526316,2,74.1220485492802,0.688970738694496,3.94736842105263,34.1612473328908,0
+7335,0.0113411870355917,0.0941828254847645,9.41828254847645,4,72.0395041923024,0.664864569681083,3.32409972299169,28.0673922650954,0
+7336,0.018447367635314,0.0609418282548476,6.09418282548476,5,65.4293407158553,0.749436057608884,4.70914127423823,32.9432540590113,5.19557523727417
+7337,0.00955029566485839,0.0415512465373961,4.15512465373961,4,60.4335506156357,0.525748817656332,2.77008310249307,17.4416272481283,5.19557523727417
+7338,0.00156294792801705,0.0289473684210526,2.89473684210526,2,60.5956029686986,0.725383920505872,1.84210526315789,16.215294491161,11.6176595687866
+7339,0.00908445979086708,0.0304709141274238,3.04709141274238,5,37.2566954775346,0.381142857142857,1.10803324099723,10.141827063127,5.19557523727417
+7340,0.0185826768357096,0.119113573407202,11.9113573407202,5,75.679416586226,0.668894129979036,7.4792243767313,24.2426605668179,5.19557523727417
+7341,0.0279122413744706,0.171745152354571,17.1745152354571,7,75.1279954814375,0.720519013997275,8.31024930747922,24.1305943381402,0
+7342,0.01562404839784,0.127423822714681,12.7423822714681,5,81.2335200304973,0.75022385022385,10.5263157894737,23.3973718415136,7.34765291213989
+7343,0.0236233392083417,0.163157894736842,16.3157894736842,6,80.9524189332298,0.65699976706266,11.0526315789474,21.977181765341,5.19557523727417
+7344,0.0200262482976541,0.130193905817175,13.0193905817175,6,75.769865601093,0.683837579617834,7.4792243767313,32.744075765001,7.34765291213989
+7345,0.00912823116623309,0.0415512465373961,4.15512465373961,3,62.866481365852,0.762874408828166,3.04709141274238,18.4327671686808,10.3911504745483
+7346,0.022639287869079,0.0692520775623269,6.92520775623269,5,66.2701049946562,0.623958333333333,4.43213296398892,6.64454563140869,0
+7347,0.0150025904629537,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,17.6649555206299,15.5867252349854
+7348,0.0138749807508381,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417
+7349,0.0198115883224363,0.0997229916897507,9.97229916897507,3,80.0152431790588,0.814871794871795,8.31024930747922,19.0673202541139,7.34765291213989
+7350,0.0122400520653919,0.0498614958448753,4.98614958448753,2,76.2556314648576,0.883057985098801,4.70914127423823,26.8650927013821,18.7329120635986
+7351,0.015041165437747,0.05,5,6,60.9471799505904,0.600725952813067,3.68421052631579,28.7710253564935,10.3911504745483
+7352,0.0205636756049457,0.0775623268698061,7.75623268698061,3,76.8340204941384,0.735001668335002,5.81717451523546,22.2837243420737,5.19557523727417
+7353,0.01489656464599,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,51.9867950439453,37.4658241271973
+7354,0.0142428403861052,0.105263157894737,10.5263157894737,2,81.6567000400753,0.804855275443511,6.64819944598338,38.8247382515355,18.7329120635986
+7355,0.0107029289488932,0.0868421052631579,8.68421052631579,2,80.6132297742317,0.817483189241114,6.05263157894737,4.73505274454753,0
+7356,0.0136308868664689,0,0,0,NA,NA,0,NA,NA
+7357,0.0214050448499781,0.07202216066482,7.20221606648199,3,73.3521657250471,0.816017473607572,4.43213296398892,12.0652153308575,0
+7358,0.0100150615903167,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,8.86940169334412,7.34765291213989
+7359,0.0133981382300697,0.0473684210526316,4.73684210526316,4,61.4613402365432,0.688970738694496,2.89473684210526,6.37066072887844,0
+7360,0.0232284537256454,0.0831024930747922,8.31024930747922,3,74.1802338719938,0.710648005425735,4.70914127423823,8.80276379585266,0
+7361,0.0168189064246881,0.0554016620498615,5.54016620498615,3,69.7290287990643,0.658499668905496,3.32409972299169,11.9449076652527,5.19557523727417
+7362,0.0308032648752694,0.0914127423822715,9.14127423822715,5,66.7551471170121,0.551603432700994,3.32409972299169,20.6317177396832,5.19557523727417
+7363,0.0260026120666513,0.0631578947368421,6.31578947368421,4,71.1521963799189,0.578651685393258,4.21052631578947,10.4808201988538,0
+7364,0.0256812330444216,0.0941828254847645,9.41828254847645,2,81.7644389160493,0.76343381389253,7.20221606648199,20.5393830748165,5.19557523727417
+7365,0.0243144299164772,0.0470914127423823,4.70914127423823,5,50.3142874916576,0.538255813953488,1.93905817174515,37.521946514354,5.19557523727417
+7366,0.0211102745474856,0.0637119113573407,6.37119113573407,8,47.2004188138741,0.347304404996713,1.93905817174515,37.1928918672645,5.19557523727417
+7367,0.0159488946473606,0.0315789473684211,3.15789473684211,3,54.4084204461007,0.514066496163683,1.57894736842105,6.52239314715068,5.19557523727417
+7368,0.0200177856866584,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,9.47569778230455,5.19557523727417
+7369,0.0257206095397567,0.113573407202216,11.3573407202216,2,86.3024182934442,0.787454710144928,10.5263157894737,15.1471587274133,5.19557523727417
+7370,0.0212074532887061,0.0941828254847645,9.41828254847645,3,81.7633850208794,0.783147662734819,8.31024930747922,26.4157273068148,10.3911504745483
+7371,0.0162554137045318,0.0815789473684211,8.15789473684211,2,81.4353578141461,0.825787965616046,7.10526315789474,6.40119763343565,0
+7372,0.0250598585587548,0.21606648199446,21.606648199446,2,92.7970590207708,0.879833051672044,21.3296398891967,12.8868956932655,0
+7373,0.0219914205716984,0.0498614958448753,4.98614958448753,3,69.728600354953,0.688154626930137,3.8781163434903,50.4777952829997,31.1734504699707
+7374,0.0196741351027718,0.0914127423822715,9.14127423822715,3,77.8901532994467,0.796183378500452,6.92520775623269,52.2649540467696,5.19557523727417
+7375,0.0150298893289172,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.392,1.31578947368421,47.1325378417969,41.8880653381348
+7376,0.0108423306698778,0.0249307479224377,2.49307479224377,2,56.7440577704869,0.658143939393939,1.66204986149584,22.6800666915046,7.34765291213989
+7377,0.0221194232386385,0.0193905817174515,1.93905817174515,2,53.6944186091776,0.872528248587571,1.66204986149584,15.3004283905029,10.3911504745483
+7378,0.0191671136631875,0.0249307479224377,2.49307479224377,2,55.9701914038378,0.572679924242424,1.38504155124654,60.2626628875732,10.3911504745483
+7379,0.0215383286127498,0.0473684210526316,4.73684210526316,5,54.9255989126034,0.494577450378555,1.84210526315789,20.2276832792494,11.6176595687866
+7380,0.019069175286879,0.0304709141274238,3.04709141274238,3,53.369110064677,0.518666666666667,1.66204986149584,41.2134777415882,34.8529777526855
+7381,0.0130928255807489,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,46.9040565490723,46.7601776123047
+7382,0.0127386045133283,0,0,0,NA,NA,0,NA,NA
+7383,0.0211273314760643,0.0868421052631579,8.68421052631579,1,87.058227229868,0.83776283488099,8.68421052631579,7.66827248082016,0
+7384,0.0221131266712455,0.0941828254847645,9.41828254847645,3,78.4009372612548,0.74371996505024,6.37119113573407,5.80031226663028,0
+7385,0.0201320290204152,0.113573407202216,11.3573407202216,3,80.8673376377665,0.771105072463768,7.75623268698061,3.08023299240484,0
+7386,0.0284570328262905,0.196675900277008,19.6675900277008,4,88.252491120126,0.830703448275862,17.7285318559557,7.67680673867884,0
+7387,0.0204764117844637,0.0894736842105263,8.94736842105263,5,69.0983622501493,0.62737407101569,3.94736842105263,6.9397929836722,0
+7388,0.0192586268400554,0.0609418282548476,6.09418282548476,5,66.2350014959758,0.498872115217769,3.8781163434903,6.48944083127108,0
+7389,0.0301660342665049,0.199445983379501,19.9445983379501,2,91.4694152377186,0.744271585428984,18.5595567867036,14.9895788166258,0
+7390,0.0363462097715319,0.301939058171745,30.1939058171745,5,88.4101192685771,0.781846748851825,18.5595567867036,13.5580246032925,0
+7391,0.0289175725550817,0.228947368421053,22.8947368421053,3,92.7901946899659,0.841021688869316,22.3684210526316,15.4824231630084,0
+7392,0.0187693742499961,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,41.4566694895426,26.4923400878906
+7393,0.0267661540935763,0.0277008310249307,2.77008310249307,3,50.7353252250488,0.683541529695376,1.38504155124654,20.6040999889374,5.19557523727417
+7394,0.018312940612652,0.038781163434903,3.8781163434903,2,67.1322948478631,0.687896253602305,2.77008310249307,10.5126692908151,0
+7395,0.0279069099590599,0.181578947368421,18.1578947368421,4,88.2787664403727,0.767744678589461,16.0526315789474,48.2523663216743,0
+7396,0.0256375572827333,0.18005540166205,18.005540166205,2,90.7501501828133,0.82731403970342,17.1745152354571,3.39042521256667,0
+7397,0.0518231900152734,0.426592797783933,42.6592797783933,5,92.4353695142673,0.882914255475325,38.2271468144044,6.3999016718431,0
+7398,0.0410353420062427,0.337950138504155,33.7950138504155,3,89.4925403121144,0.794960146916829,18.5595567867036,41.3929579726985,0
+7399,0.0357362198138282,0.276315789473684,27.6315789473684,5,87.4156586320079,0.802597402597403,17.6315789473684,30.7579045295715,0
+7400,0.0491116018523326,0.464912280701754,46.4912280701754,3,91.2808551619838,0.795194251066697,17.8362573099415,55.1940418909181,0
+7401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7406,0.0235720804223092,0.28125,28.125,3,85.0361739215747,0.871853546910755,23.75,26.7528384102715,0
+7407,0.0535838582258868,0.202631578947368,20.2631578947368,4,84.3291394328581,0.843234323432343,16.5789473684211,2.43084158216204,0
+7408,0.0541277943110273,0.221052631578947,22.1052631578947,2,92.3273606299465,0.965536005804462,21.5789473684211,0.804077120054336,0
+7409,-0.0196244133297832,0,0,0,NA,NA,0,NA,NA
+7410,0.0343389368722274,0.2925,29.25,3,93.3203446785227,0.879991999466631,27.75,28.6794159432762,5.19557523727417
+7411,0.0125703060316339,0.0631578947368421,6.31578947368421,3,72.683955707427,0.803370786516854,5,25.2865944902102,7.34765291213989
+7412,0.0294826832230013,0.278947368421053,27.8947368421053,2,93.8199699420986,0.920128406007567,27.1052631578947,50.309483177257,10.3911504745483
+7413,0.00995152710835866,0.25,25,2,92.743251094879,0.913725490196078,23.9473684210526,27.7044862947966,7.34765291213989
+7414,-0.0285798497149517,0.07,7,2,77.5660681016795,0.78494623655914,4.25,28.6008019447327,15.5867252349854
+7415,-0.0300052605519939,0.131578947368421,13.1578947368421,1,90.5004389364175,0.972905525846702,13.1578947368421,14.8445937919617,5.19557523727417
+7416,0.00870880631907647,0.207894736842105,20.7894736842105,3,88.1210984525118,0.837683910773612,13.4210526315789,20.7496277169336,0
+7417,-0.00382402189172449,0.0473684210526316,4.73684210526316,2,74.8181181783648,0.80560671168406,4.21052631578947,33.8406153784858,11.6176595687866
+7418,-0.00929105790219182,0,0,0,NA,NA,0,NA,NA
+7419,-0.0143778649726492,0,0,0,NA,NA,0,NA,NA
+7420,-0.00988966283642329,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,11.6176595687866,11.6176595687866
+7421,0.0051144496685849,0.0815789473684211,8.15789473684211,3,81.0575527633225,0.804011461318052,7.36842105263158,18.1192495592179,0
+7422,0.0276599548251124,0.2525,25.25,1,94.7890822083159,0.815222010754079,25.25,21.3207092379579,0
+7423,0.0188702948784339,0.144736842105263,14.4736842105263,4,86.8758491754968,0.778461538461538,13.1578947368421,22.9207252415744,5.19557523727417
+7424,0.0282214233663437,0.218421052631579,21.8421052631579,3,89.5811171336182,0.782404544309306,18.6842105263158,25.7241274190236,5.19557523727417
+7425,0.0307314057381039,0.234210526315789,23.4210526315789,5,85.9502650661409,0.794678942704619,18.1578947368421,21.7686568913835,0
+7426,0.0181389698558178,0.0425,4.25,8,37.4960621779976,0.373368146214099,1.25,37.5231397292193,5.19557523727417
+7427,0.02815413798474,0.202631578947368,20.2631578947368,2,91.9352757378824,0.926227916909338,19.7368421052632,29.7337234360831,7.34765291213989
+7428,0.0107120582037169,0.0657894736842105,6.57894736842105,3,70.214083732082,0.652112676056338,3.68421052631579,36.7622765731812,5.19557523727417
+7429,0.059581024942834,0.502631578947368,50.2631578947368,1,97.7802762834627,0.897767016411084,50.2631578947368,47.9421139512387,5.19557523727417
+7430,0.0179031981598746,0.0575,5.75,5,62.873531266578,0.528440907751253,3.25,13.0561504778655,5.19557523727417
+7431,0.0135781286051497,0.0631578947368421,6.31578947368421,6,58.4842725557335,0.606741573033708,2.89473684210526,15.7737037142118,5.19557523727417
+7432,0.016854356009265,0.0894736842105263,8.94736842105263,7,69.723635432846,0.588150289017341,5.26315789473684,12.0086044563967,0
+7433,0.0160029058040293,0.0868421052631579,8.68421052631579,3,81.2557289033997,0.858042480520867,7.89473684210526,15.8658296267192,0
+7434,0.0373219148049066,0.3375,33.75,2,92.476995134978,0.779107225034514,19.75,22.7975728635435,0
+7435,0.0372512109062978,0.321052631578947,32.1052631578947,5,87.3508813711559,0.793398575888316,15.5263157894737,45.6020585513506,10.3911504745483
+7436,0.0284052121067744,0.268421052631579,26.8421052631579,4,88.3394260600337,0.820733577072768,17.8947368421053,21.8334880108927,5.19557523727417
+7437,0.0276900474728456,0.231578947368421,23.1578947368421,3,86.4461522398345,0.75961957944333,11.5789473684211,20.1519912372936,0
+7438,0.0319189803216068,0.3,30,6,85.0288958777215,0.744429882044561,14.25,25.9436383843422,7.34765291213989
+7439,0.0121220393542181,0.05,5,4,64.7230109332466,0.637023593466425,3.42105263157895,31.0524830065275,0
+7440,0.026373441462209,0.15,15,9,67.3427707544597,0.591836734693877,5,30.5996139258669,11.6176595687866
+7441,0.0406782770716691,0.415789473684211,41.5789473684211,2,93.4267974127401,0.817023920472196,27.3684210526316,21.1607531746732,0
+7442,0.0195943150436793,0.157894736842105,15.7894736842105,8,75.4972801760414,0.714543269230769,9.47368421052632,12.7156794468562,0
+7443,0.00540731465990575,0.0475,4.75,6,50.0146906253549,0.420762059914924,1.5,18.243185369592,5.19557523727417
+7444,0.0241357446596866,0.1,10,4,76.385105529276,0.770723104056437,6.84210526315789,41.7546751122726,15.5867252349854
+7445,0.0137492567063179,0.0763157894736842,7.63157894736842,3,75.7568148445869,0.746620597684427,4.73684210526316,39.8719075959304,23.2353191375732
+7446,0.0138924883900789,0.0736842105263158,7.36842105263158,3,77.3883143767088,0.832070707070707,6.31578947368421,41.1985503605434,25.977876663208
+7447,0.0287370082056077,0.1575,15.75,2,86.1757201894515,0.82735365524683,10.75,55.4881074693468,31.1734504699707
+7448,0.0157798557004227,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,37.315310886928,31.1734504699707
+7449,0.0154468565277823,0.0263157894736842,2.63157894736842,3,55.4123115952091,0.525987525987526,1.84210526315789,26.0522878646851,18.7329120635986
+7450,0.0248153218850827,0.0973684210526316,9.73684210526316,8,64.7712410444906,0.527792381589638,3.68421052631579,97.4117646088471,67.54248046875
+7451,0.0167651968940481,0.04,4,4,55.1062605022479,0.565972222222222,1.75,97.3077855110168,56.1987419128418
+7452,0.0246705232900766,0.123684210526316,12.3684210526316,3,83.0806231843268,0.843093093093093,10.2631578947368,11.1618842672794,0
+7453,0.0130924363360177,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,39.1821743011475,18.7329120635986
+7454,0.0104154756618611,0.0157894736842105,1.57894736842105,1,62.3749377455957,1,1.57894736842105,71.5303064982096,65.7194061279297
+7455,0.0331821784548083,0.2425,24.25,5,83.0364310176508,0.734456204241114,10.5,34.4384864974268,0
+7456,0.0109101679429171,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+7457,0.0107130197312038,0.0315789473684211,3.15789473684211,3,58.9768555553417,0.696291560102302,2.36842105263158,15.7939894596736,7.34765291213989
+7458,0.0144679061763255,0.0578947368421053,5.78947368421053,4,63.8465160972541,0.562931317778508,2.10526315789474,21.8796650279652,11.6176595687866
+7459,0.0131972656952087,0.0425,4.25,3,61.0836173517948,0.70757180156658,1.75,14.0688486379736,0
+7460,0.0193161576330902,0.0605263157894737,6.05263157894737,2,74.5107234171691,0.822595704948646,3.42105263157895,29.5022801523623,10.3911504745483
+7461,0.0190257680556993,0.0210526315789474,2.10526315789474,2,53.0195467702593,0.693548387096774,1.31578947368421,17.154628932476,5.19557523727417
+7462,0.0101854646222005,0.0315789473684211,3.15789473684211,3,61.0438505852672,0.757033248081841,2.63157894736842,14.1031455198924,0
+7463,0.0165017799192719,0.0375,3.75,3,61.1625407224796,0.716646989374262,2.25,8.67841170628865,0
+7464,0.0209594808407641,0.0973684210526316,9.73684210526316,3,78.3067416246748,0.782058022272141,5.26315789473684,14.8846216717282,0
+7465,0.0136275183239425,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,29.425571169172,10.3911504745483
+7466,0.0202778156451179,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,60.1968173980713,25.977876663208
+7467,0.0153865214282632,0.01,1,2,34.5233986084855,0.494949494949495,0.75,52.4711313247681,49.0149574279785
+7468,0.0179315491611257,0.0315789473684211,3.15789473684211,4,46.3209929315118,0.574808184143223,1.57894736842105,78.3496589660645,69.7059555053711
+7469,0.0265336681462366,0.0710526315789474,7.10526315789474,5,65.1909149162841,0.649515778378022,3.68421052631579,71.9100227355957,20.7823009490967
+7470,0.0182384047882375,0.0236842105263158,2.36842105263158,2,63.1765590752496,0.573225516621743,2.10526315789474,25.4005900488959,20.7823009490967
+7471,0.0182742657174504,0.085,8.5,5,69.9024486006979,0.687743950039032,3.5,13.5584827451145,5.19557523727417
+7472,0.0246067236421559,0.147368421052632,14.7368421052632,3,87.0916009244983,0.84281532391498,13.4210526315789,11.005332997867,0
+7473,0.0215177528465574,0.0421052631578947,4.21052631578947,4,55.4575000845286,0.608516483516483,1.84210526315789,46.2115039825439,21.4219055175781
+7474,0.0225180909323076,0.0394736842105263,3.94736842105263,3,63.0162715161614,0.668742216687422,2.63157894736842,15.0547294616699,0
+7475,0.012282316489775,0.005,0.5,1,30.8308651382582,1,0.5,126.892444610596,126.413803100586
+7476,0.0315011916704526,0.242105263157895,24.2105263157895,2,93.2629833963049,0.919546070460705,23.6842105263158,92.5180957628333,44.3910140991211
+7477,0.0217920653703882,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,122.636442184448,118.591209411621
+7478,0.0244420474051032,0.0736842105263158,7.36842105263158,5,64.1522567101422,0.664141414141414,2.89473684210526,145.975090571812,124.693801879883
+7479,0.0114839340594335,0.005,0.5,1,30.8308651382582,1,0.5,76.4432487487793,75.6487197875977
+7480,0.030049711729972,0.165789473684211,16.5789473684211,5,79.9374712796548,0.760252365930599,7.89473684210526,25.7212819750347,0
+7481,0.0180047282519426,0.0157894736842105,1.57894736842105,2,47.0014121936884,0.419404125286478,1.05263157894737,38.7807772954305,25.977876663208
+7482,0.0270054851216724,0.115789473684211,11.5789473684211,1,89.5165340769437,0.908301158301158,11.5789473684211,32.7920389825648,10.3911504745483
+7483,0.0302832289877824,0.17,17,3,87.1573962148866,0.807633896932267,12,19.5641659217722,0
+7484,0.0222553188927888,0,0,0,NA,NA,0,NA,NA
+7485,0.0341789787202479,0.171052631578947,17.1052631578947,3,85.3040756971878,0.818513836212951,9.21052631578947,7.15343165030846,0
+7486,0.0183958137113031,0.0368421052631579,3.68421052631579,6,39.945103860425,0.42896174863388,1.31578947368421,4.54339718818665,0
+7487,0.021813856998383,0.0525,5.25,3,70.9200754336061,0.736147757255937,4,52.3564224243164,0
+7488,0.0170485136468989,0.0263157894736842,2.63157894736842,3,49.6753641355239,0.525987525987526,1.31578947368421,60.1698654174805,52.9846801757812
+7489,0.0152895587093697,0.0605263157894737,6.05263157894737,2,74.393191136216,0.852163087457205,3.42105263157895,24.6913421465003,0
+7490,0.0172574075958916,0.0947368421052632,9.47368421052632,5,69.0993677302865,0.668604651162791,3.68421052631579,4.7230920791626,0
+7491,0.0551826597691979,0.6325,63.25,2,98.059627743554,0.764631591033038,61.5,5.05076488110388,0
+7492,0.0184072254892128,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,86.5004735674177,36.7382659912109
+7493,0.0242872980987637,0.134210526315789,13.4210526315789,5,75.5490169674358,0.734479264926807,6.57894736842105,45.3615438423905,31.1734504699707
+7494,0.0369439943479129,0.228947368421053,22.8947368421053,6,89.0722936046377,0.765716173070571,20.2631578947368,6.03391526211267,0
+7495,0.035178824861141,0.245,24.5,4,89.4349197300318,0.796809151113787,20,8.85853312940014,0
+7496,0.0274043388158086,0.178947368421053,17.8947368421053,3,89.3680807521813,0.785067873303167,16.0526315789474,13.8078607531155,0
+7497,0.0734130742817223,0.586842105263158,58.6842105263158,3,94.3126550778775,0.842907888290054,42.6315789473684,18.5387203896527,0
+7498,0.0297175489159456,0.192105263157895,19.2105263157895,6,81.6437084302066,0.700223941368078,9.47368421052632,41.8723739859176,5.19557523727417
+7499,0.0441855956182553,0.3975,39.75,3,94.1642728884459,0.784005001989428,34.75,6.41358528497084,0
+7500,0.0669960097242034,0.638888888888889,63.8888888888889,2,96.7363082121386,0.696611081226466,52.5,6.61682084539662,0
+7501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7506,0.00420042683869102,0.0526315789473684,5.26315789473684,1,70.3508699948475,0.894444444444444,5.26315789473684,35.7637829780579,25.977876663208
+7507,0.135573867921443,0.470914127423823,47.0914127423823,1,97.4598140066111,0.987922988140441,47.0914127423823,0,0
+7508,0.192888035268363,0.681440443213296,68.1440443213296,2,97.6917163703314,0.918109640831758,65.6509695290859,1.83279770176585,0
+7509,0.00254746032960813,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,12.1230085690816,5.19557523727417
+7510,0.022718852312736,0.107894736842105,10.7894736842105,5,76.3962986390315,0.788807661066222,8.42105263157895,15.0746406113229,0
+7511,0.0180062164722799,0.0637119113573407,6.37119113573407,2,80.2012096057094,0.881328073635766,6.09418282548476,71.4330411164657,65.1003723144531
+7512,0.0260038552376228,0.146814404432133,14.6814404432133,1,91.0563849165273,0.832560296846011,14.6814404432133,80.0846967157328,59.2386741638184
+7513,0.0133496265513721,0.102493074792244,10.2493074792244,4,79.956209332825,0.780813600485732,8.58725761772853,36.0060823285902,18.7329120635986
+7514,-0.00532480378348952,0,0,0,NA,NA,0,NA,NA
+7515,-0.0670664982620783,0,0,0,NA,NA,0,NA,NA
+7516,0.000114955675059902,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,12.6723661422729,10.3911504745483
+7517,-0.0108916375865195,0.0886426592797784,8.86426592797784,2,82.2314978343536,0.894493804068272,8.03324099722992,6.63359878957272,0
+7518,0.00636011892691051,0.115789473684211,11.5789473684211,2,86.9818866728369,0.908301158301158,11.0526315789474,38.1648993925615,25.977876663208
+7519,-0.0140029559280514,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,25.977876663208,25.977876663208
+7520,-0.00169762695216294,0,0,0,NA,NA,0,NA,NA
+7521,0.00686117542560607,0.0775623268698061,7.75623268698061,3,75.0987084504857,0.735001668335002,5.54016620498615,33.1224242619106,15.5867252349854
+7522,0.00238797814963618,0.118421052631579,11.8421052631579,3,83.1300617514095,0.850746268656716,10,28.8484136793349,10.3911504745483
+7523,0.00911692034055213,0.152354570637119,15.2354570637119,4,82.6417940061446,0.801307189542484,10.803324099723,95.3084019054066,46.7601776123047
+7524,0.0331656381621998,0.246537396121884,24.6537396121884,3,91.7473590065562,0.824708657047725,22.9916897506925,81.6877167948176,37.4658241271973
+7525,0.0211410744461471,0.0637119113573407,6.37119113573407,5,60.8809484061849,0.614316239316239,2.77008310249307,48.232342015142,25.977876663208
+7526,0.0324840535864687,0.271052631578947,27.1052631578947,4,87.7185487649955,0.807200702507562,21.5789473684211,61.9025752336076,11.6176595687866
+7527,0.0467276180309976,0.43213296398892,43.213296398892,3,91.2190526235951,0.803654287413954,19.6675900277008,23.7877728113761,0
+7528,0.0222959457661441,0.193905817174515,19.3905817174515,3,85.1648530851645,0.818456122705557,13.2963988919668,16.0856132916042,0
+7529,0.0431593305570875,0.315789473684211,31.5789473684211,2,92.7430674021707,0.929051530993279,26.8698060941828,53.2571681842469,31.1734504699707
+7530,0.00249123916720763,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,25.9289346694946,11.6176595687866
+7531,0.00698564537526982,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483
+7532,0.0268525939411871,0.182825484764543,18.2825484764543,3,89.5610991240746,0.914871039056743,17.4515235457064,18.829641530008,0
+7533,0.0102762261837428,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,37.5607068198068,18.7329120635986
+7534,0.00867421329176547,0.0394736842105263,3.94736842105263,3,59.8518457745872,0.716064757160648,2.10526315789474,10.6701384226481,0
+7535,0.0313502553523256,0.279778393351801,27.9778393351801,6,84.6147219569119,0.708499787505312,11.6343490304709,28.1456780433655,0
+7536,0.0115948379505506,0.0775623268698061,7.75623268698061,3,73.3899141296493,0.783183183183183,4.15512465373961,19.1375044924872,0
+7537,0.0027654229177093,0,0,0,NA,NA,0,NA,NA
+7538,0.00590856133884651,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,18.1845133304596,10.3911504745483
+7539,0.0219874584247835,0.119113573407202,11.9113573407202,3,80.9894344907423,0.716194968553459,7.75623268698061,14.7466728299163,0
+7540,0.044439357481855,0.321329639889197,32.1329639889197,3,90.2682251720658,0.831603498542274,17.4515235457064,16.5268942158798,0
+7541,0.0154671534737015,0.182825484764543,18.2825484764543,3,86.2412830199275,0.8510243183493,14.9584487534626,6.79779827955997,0
+7542,0.0176285830254989,0.0415512465373961,4.15512465373961,7,36.5570537345659,0.336048344718865,1.10803324099723,14.4100970586141,0
+7543,0.000304413219490877,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,18.580514272054,15.5867252349854
+7544,0.0162525167035957,0.157894736842105,15.7894736842105,3,85.0865652355777,0.769770408163265,10.2493074792244,7.58925410320884,0
+7545,0.00631101850522705,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.937359014402221,6.09418282548476,12.9468420852314,0
+7546,0.0162449990689575,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,26.5027815500895,23.2353191375732
+7547,0.0123790879088789,0.0421052631578947,4.21052631578947,3,64.9913730356058,0.608516483516483,2.89473684210526,61.7007720470428,53.4917221069336
+7548,0.0155657876441026,0.0470914127423823,4.70914127423823,4,54.8080300759612,0.580232558139535,1.66204986149584,59.0953987345976,15.5867252349854
+7549,0.0084363889427676,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,30.2951488494873,30.2951488494873
+7550,0.0101655750921941,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,101.181280136108,87.0937042236328
+7551,0.0154019440509776,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,129.993255615234,129.993255615234
+7552,0.0257923428185561,0.130193905817175,13.0193905817175,1,90.1586953418889,0.942515923566879,13.0193905817175,15.225487871373,0
+7553,0.02094423881876,0.0775623268698061,7.75623268698061,2,82.1881227424075,0.807273940607274,7.20221606648199,22.314685191427,7.34765291213989
+7554,0.00968540576197932,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.960572302315422,9.41828254847645,37.2048058790319,15.5867252349854
+7555,0.0125104412308582,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,29.3906116485596,29.3906116485596
+7556,0.0145503391167974,0.0221606648199446,2.21606648199446,2,53.0941292651365,0.693201133144476,1.38504155124654,7.4129256606102,5.19557523727417
+7557,0.0232597500212162,0.124653739612188,12.4653739612188,3,85.0289406319776,0.789556962025316,11.0803324099723,15.1371034516229,5.19557523727417
+7558,0.0206366187453253,0.14404432132964,14.404432132964,3,80.3917029549689,0.750590887604087,8.03324099722992,18.4487149807123,0
+7559,0.0178178016658708,0.0631578947368421,6.31578947368421,3,69.2336991501119,0.747191011235955,3.42105263157895,11.985379020373,0
+7560,0.0228861916406852,0.0692520775623269,6.92520775623269,5,61.9646189987588,0.597098214285714,2.21606648199446,8.52529727935791,0
+7561,0.00988955202029146,0,0,0,NA,NA,0,NA,NA
+7562,-0.00307918814543953,0,0,0,NA,NA,0,NA,NA
+7563,0.0177769694820822,0.0605263157894737,6.05263157894737,2,77.2310298042063,0.70432617491441,4.73684210526316,29.7039090239483,5.19557523727417
+7564,0.0171131038141161,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,44.1196721394857,20.7823009490967
+7565,0.0193956839840083,0.155124653739612,15.5124653739612,3,81.2953331320314,0.768159540307588,5.81717451523546,20.2381093672344,10.3911504745483
+7566,0.0149146398695125,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,7.03248846530914,5.19557523727417
+7567,0.0188169955337224,0.0631578947368421,6.31578947368421,1,83.8911085416129,0.915730337078652,6.31578947368421,17.426861902078,0
+7568,0.0207717809423237,0.0470914127423823,4.70914127423823,4,65.0472204439423,0.664186046511628,3.601108033241,24.9415166518267,10.3911504745483
+7569,0.0177062554622829,0.0886426592797784,8.86426592797784,3,76.1469887021096,0.704582651391162,4.15512465373961,14.0262214541435,10.3911504745483
+7570,0.0186930816603698,0.0969529085872576,9.69529085872576,4,81.7257112681098,0.713613285381849,8.58725761772853,13.0742885317121,0
+7571,0.0182893226086315,0.1,10,2,85.7954021674978,0.841269841269841,9.47368421052632,10.481419801712,0
+7572,0.0206622551142618,0.185595567867036,18.5595567867036,1,92.6598919846122,0.905546834118263,18.5595567867036,10.3698443298909,0
+7573,0.0268871303487686,0.210526315789474,21.0526315789474,4,89.1638435457092,0.829850746268657,18.8365650969529,10.1469449745981,0
+7574,0.0166725819623413,0.0692520775623269,6.92520775623269,3,68.915597662196,0.677678571428571,3.32409972299169,41.1814963912964,0
+7575,0.0159668173743656,0.0368421052631579,3.68421052631579,4,54.1591117561476,0.480874316939891,1.84210526315789,105.713897705078,79.1366424560547
+7576,0.0303898892023003,0.185595567867036,18.5595567867036,5,81.7614085764285,0.748124890982034,10.803324099723,166.966463686815,141.143798828125
+7577,0.0234259434195554,0.10803324099723,10.803324099723,3,78.80590271769,0.844768275203058,8.58725761772853,165.221281785231,150.76123046875
+7578,0.023250063991405,0.07202216066482,7.20221606648199,6,61.1125342915075,0.55318529304696,2.77008310249307,121.006963876578,79.1366424560547
+7579,0.0224514258692436,0.102631578947368,10.2631578947368,4,83.9615442307253,0.55425219941349,8.94736842105263,36.495099067688,5.19557523727417
+7580,0.0102380314606698,0.0526315789473684,5.26315789473684,3,71.2620048385603,0.672413793103448,4.15512465373961,6.51591504247565,0
+7581,0.0262919478215164,0.0498614958448753,4.98614958448753,4,59.6197144051518,0.688154626930137,2.77008310249307,21.5358563264211,0
+7582,0.0288941893683093,0.135734072022161,13.5734072022161,5,79.5287103397809,0.69696275946276,9.14127423822715,58.6398891137571,11.6176595687866
+7583,0.0222572257972627,0.118421052631579,11.8421052631579,4,75.6881457142982,0.716417910447761,5.26315789473684,44.130802822113,5.19557523727417
+7584,0.0333023128260012,0.155124653739612,15.5124653739612,3,84.6993988821849,0.792563799222579,12.1883656509695,47.8134707382747,27.9790287017822
+7585,0.0354968669673926,0.254847645429363,25.4847645429363,4,88.9477057732415,0.836340556714117,21.3296398891967,6.37940327499224,0
+7586,0.0230394527482171,0.0831024930747922,8.31024930747922,4,76.2858050380508,0.621616622479808,5.81717451523546,13.8897677262624,0
+7587,0.0219154607869744,0.128947368421053,12.8947368421053,3,86.5715501354106,0.726658034815134,11.5789473684211,91.5906505973972,65.1003723144531
+7588,0.0336916046128452,0.221606648199446,22.1606648199446,4,85.9848210183555,0.764773695554108,15.2354570637119,94.4534272193909,63.206901550293
+7589,0.0484367492366866,0.340720221606648,34.0720221606648,2,93.3596628032863,0.897972641971587,28.5318559556787,37.3679323855454,0
+7590,0.0372470214781887,0.346260387811634,34.6260387811634,3,92.2349066661707,0.770887777197043,26.8698060941828,14.7571030197144,0
+7591,0.0406004998917189,0.331578947368421,33.1578947368421,2,95.4393896943487,0.810542241171819,32.6315789473684,6.26577447709583,0
+7592,0.0377728061914512,0.329639889196676,32.9639889196676,1,95.87929364248,0.87568870523416,32.9639889196676,8.07057642335651,0
+7593,0.0412473508294374,0.412742382271468,41.2742382271468,2,95.8849730540492,0.819113276660447,39.8891966759003,2.30837169109575,0
+7594,0.0431120594214633,0.335180055401662,33.5180055401662,4,91.7158948349987,0.747026515151515,27.4238227146814,3.21329030911785,0
+7595,0.0319473912060187,0.192105263157895,19.2105263157895,6,82.8131808125162,0.690553745928339,11.0526315789474,6.11313000117263,0
+7596,0.0428568194291382,0.313019390581717,31.3019390581717,5,88.9854227637076,0.75739247311828,22.4376731301939,11.9643185328593,0
+7597,0.0719974346851048,0.700831024930748,70.0831024930748,2,98.6841620715272,0.816651039224879,69.8060941828255,7.1523175654204,0
+7598,0.0499751007207282,0.445983379501385,44.5983379501385,2,96.4479214050301,0.817060810810811,43.4903047091413,10.7061337121525,0
+7599,0.0309942312855511,0.192105263157895,19.2105263157895,6,81.6140639534404,0.796925895765472,11.3157894736842,21.9037072103317,0
+7600,0.05464351360825,0.564327485380117,56.4327485380117,3,94.1157054834204,0.640958344269056,33.3333333333333,17.4211668498776,0
+7601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7606,0.00136879543529894,0,0,0,NA,NA,0,NA,NA
+7607,0.0682709769435202,0.277008310249307,27.7008310249307,1,95,0.984631758194977,27.7008310249307,0.489122548103332,0
+7608,0.168454647900642,0.772853185595568,77.2853185595568,1,99.2361097435024,0.915983988084156,77.2853185595568,0.403296829551779,0
+7609,0.00178327215670786,0.038781163434903,3.8781163434903,5,47.8741871414553,0.479827089337176,1.66204986149584,13.0518363884517,0
+7610,0.00735857471229936,0,0,0,NA,NA,0,NA,NA
+7611,0.00179645937902613,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,31.7424518585205,21.4219055175781
+7612,0.0174678363057706,0.0775623268698061,7.75623268698061,3,78.4665925276464,0.855455455455455,6.92520775623269,25.0797948496682,5.19557523727417
+7613,0.0122104256428469,0.102493074792244,10.2493074792244,5,71.1975308658394,0.707751467314309,4.70914127423823,12.0585815713212,5.19557523727417
+7614,-0.0195707213121319,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,9.78548765182495,7.34765291213989
+7615,-0.019667917278523,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,9.35203542709351,5.19557523727417
+7616,-0.0083065082691364,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,6.27161407470703,5.19557523727417
+7617,-0.0439636428186469,0.0470914127423823,4.70914127423823,1,79.9545729128315,1,4.70914127423823,7.77183280271642,0
+7618,-0.0134717842572029,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,0,0
+7619,-0.00144191536216525,0.102493074792244,10.2493074792244,3,80.6568580061399,0.835610200364299,8.03324099722992,12.0712861757021,0
+7620,-0.00421601257038576,0,0,0,NA,NA,0,NA,NA
+7621,0.0236771448240925,0.218836565096953,21.8836565096953,3,86.3292298786114,0.826266464032422,14.404432132964,20.5724754333496,5.19557523727417
+7622,0.00940935427627808,0.068421052631579,6.8421052631579,4,70.4225018008085,0.738183822516191,3.42105263157895,19.2167205810547,0
+7623,0.00892667948859138,0.074792243767313,7.4792243767313,2,82.3691884360146,0.899456900153182,7.20221606648199,40.2697081036038,10.3911504745483
+7624,0.0153753948832879,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,90.056635538737,88.3247756958008
+7625,0.0113157339193369,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,92.0658264160156,92.0658264160156
+7626,0.0233081454873256,0.0842105263157895,8.42105263157895,4,73.8688504669976,0.706012378426171,4.47368421052632,66.386943936348,5.19557523727417
+7627,0.0306380767917763,0.193905817174515,19.3905817174515,6,81.1544186881051,0.768027267901545,11.3573407202216,11.1848551000868,0
+7628,0.0239237335088425,0.113573407202216,11.3573407202216,5,73.1990003374146,0.689356884057971,5.81717451523546,28.7364918313375,15.5867252349854
+7629,0.0198729921129424,0.166204986149584,16.6204986149584,4,81.3117105499476,0.757826475849732,8.86426592797784,23.1177964289983,7.34765291213989
+7630,0.0130659126798396,0.0368421052631579,3.68421052631579,3,57.8307032367037,0.584699453551913,1.84210526315789,31.5973957606724,10.3911504745483
+7631,0.0141003514596665,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,22.397104535784,5.19557523727417
+7632,0.00434288636505474,0.0193905817174515,1.93905817174515,5,18.1104701656799,0.235169491525424,0.554016620498615,13.4951669148036,5.19557523727417
+7633,-0.00126555175431193,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,40.7071495056152,31.1734504699707
+7634,0.00928744704716863,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,15.5867255528768,10.3911504745483
+7635,-0.00100559033462131,0.0166204986149584,1.66204986149584,2,45.2018371240175,0.709456740442656,1.10803324099723,11.8760255972544,7.34765291213989
+7636,-0.0037600634425259,0,0,0,NA,NA,0,NA,NA
+7637,0.0110070578126256,0.0277008310249307,2.77008310249307,4,45.7365757207837,0.525312294543064,1.66204986149584,25.3874234199524,14.6953058242798
+7638,0.0174219960364721,0.0473684210526316,4.73684210526316,6,50.0595754757177,0.494577450378555,2.10526315789474,30.1135675112406,11.6176595687866
+7639,0.0262075713212867,0.160664819944598,16.0664819944598,4,78.6413102598829,0.714059405940594,6.92520775623269,17.2258732483305,0
+7640,0.0277802211033775,0.191135734072022,19.1135734072022,4,84.6204117954441,0.775217932752179,14.1274238227147,22.551353516786,0
+7641,0.0118414214837413,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,13.9631522723607,7.34765291213989
+7642,0.00901762757518789,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,76.7911758422852,75.6487197875977
+7643,0.00534982749942221,0,0,0,NA,NA,0,NA,NA
+7644,0.010514380799275,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,18.5907390594482,15.5867252349854
+7645,-0.00235205816796809,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,31.5271635055542,22.0429573059082
+7646,0.00581455925649478,0.0332409972299169,3.32409972299169,6,32.1929867922886,0.330692735546941,0.831024930747922,42.8689487775167,21.4219055175781
+7647,0.00450499933365216,0.113157894736842,11.3157894736842,2,84.8985425906059,0.859050445103858,10,43.992222985556,21.4219055175781
+7648,0.0129279184174797,0,0,0,NA,NA,0,NA,NA
+7649,0.0113935216672304,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,55.6655855178833,47.9008369445801
+7650,0.0175252341061443,0.0193905817174515,1.93905817174515,4,29.0198586995759,0.362641242937853,0.831024930747922,60.4922436305455,49.28955078125
+7651,0.0135182126172846,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210527,100.658758799235,76.7117462158203
+7652,0.0115540539225856,0,0,0,NA,NA,0,NA,NA
+7653,0.0125111356936943,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,33.4331932067871,27.9790287017822
+7654,0.0100706746737303,0.0304709141274238,3.04709141274238,2,61.5261080673111,0.587428571428571,1.93905817174515,2.86441278457642,0
+7655,0.0131414405739921,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,53.5519970485142,46.7601776123047
+7656,0.0133412222680603,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,40.899175008138,39.5683212280273
+7657,0.0275953669366078,0.110803324099723,11.0803324099723,5,79.6424951707522,0.73143627656112,9.14127423822715,10.6803844571114,0
+7658,0.0260405841833853,0.202216066481994,20.2216066481994,4,85.7548324595022,0.725802951388889,13.8504155124654,10.2289851463004,0
+7659,0.0110828226282185,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,7.79336285591125,5.19557523727417
+7660,0.0143087507009501,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,16.4298515319824,16.4298515319824
+7661,0.00581602939431091,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,10.4253800710042,5.19557523727417
+7662,0.0101531769929689,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,12.3581144332886,10.3911504745483
+7663,0.0112711235162064,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210527,42.6543394724528,39.5683212280273
+7664,0.0277550584619537,0.121883656509695,12.1883656509695,5,72.4064811894702,0.646048256458351,4.70914127423823,51.4624007398432,11.6176595687866
+7665,-0.00309931869205659,0.0609418282548476,6.09418282548476,4,62.6467289389002,0.624154086413326,2.49307479224377,16.9487689191645,10.3911504745483
+7666,0.00904921309293588,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,9.37665112813314,5.19557523727417
+7667,0.0153905616238358,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,42.6363849639893,40.5787391662598
+7668,0.022039894792419,0.074792243767313,7.4792243767313,1,85.2413794174021,0.949728450076591,7.4792243767313,7.31612511034365,0
+7669,0.016785153576803,0.038781163434903,3.8781163434903,3,57.2871874725771,0.635878962536023,1.93905817174515,31.5855122974941,10.3911504745483
+7670,0.0200572987411163,0.132963988919668,13.2963988919668,5,77.7340992371151,0.66243279046209,7.75623268698061,14.0667357941469,0
+7671,0.0194495891521587,0.0473684210526316,4.73684210526316,4,57.9162139148469,0.611213423368119,2.36842105263158,12.3281262715658,5.19557523727417
+7672,0.0202616993839326,0.038781163434903,3.8781163434903,3,61.3100342214242,0.583861671469741,2.49307479224377,80.7645560673305,54.2434005737305
+7673,0.0242409842956935,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,114.46157989502,68.3371200561523
+7674,0.02198324501146,0.0554016620498615,5.54016620498615,5,56.7525094015518,0.487749503358244,1.93905817174515,35.1978584051132,5.19557523727417
+7675,0.0271863746045136,0.105263157894737,10.5263157894737,8,63.0803280204701,0.566286215978929,2.89473684210526,102.319173240662,58.0882949829102
+7676,0.0298053385814957,0.171745152354571,17.1745152354571,5,79.51684894419,0.709339774557166,9.14127423822715,94.7966373197494,54.2434005737305
+7677,0.0233435300790732,0.07202216066482,7.20221606648199,4,68.251288187997,0.684601383327266,3.8781163434903,111.927599393404,47.0479354858398
+7678,0.0183372217505977,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,159.332160949707,158.273284912109
+7679,0.0189904754273046,0.0236842105263158,2.36842105263158,1,70.2715195584201,0.914645103324349,2.36842105263158,44.2218721177843,36.7382659912109
+7680,0.00780255702033894,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,9.93405763308207,5.19557523727417
+7681,0.0208667593153495,0.10803324099723,10.803324099723,3,81.8020526085377,0.79302436693741,8.86426592797784,58.8079916636149,27.9790287017822
+7682,0.0245883549520621,0.0997229916897507,9.97229916897507,5,67.1479349888144,0.611230769230769,3.04709141274238,80.9763283199734,46.7601776123047
+7683,0.026369798876457,0.165789473684211,16.5789473684211,5,85.4399751170944,0.705764267278463,13.4210526315789,66.5633518279545,15.5867252349854
+7684,0.0317295833756513,0.21606648199446,21.606648199446,5,81.515190155964,0.694960823475188,8.86426592797784,14.566697707543,0
+7685,0.0481222045280628,0.490304709141274,49.0304709141274,3,94.5453562026865,0.838003589948145,42.9362880886427,3.56934265363014,0
+7686,0.0271057840154124,0.132963988919668,13.2963988919668,4,78.8854425318029,0.746824592846567,7.20221606648199,14.5757149755955,5.19557523727417
+7687,0.0250992542831706,0.0921052631578947,9.21052631578947,6,64.0668697108362,0.60119940029985,2.36842105263158,126.44542628697,83.7761306762695
+7688,0.0322507778819927,0.213296398891967,21.3296398891967,3,85.3557716698383,0.719604391052196,12.1883656509695,157.468546879756,124.693801879883
+7689,0.0325059426046774,0.182825484764543,18.2825484764543,6,78.0254922500863,0.744613117170228,9.41828254847645,85.4789567427202,27.9790287017822
+7690,0.0320614161756866,0.202216066481994,20.2216066481994,3,85.0816228208493,0.735595703125,12.1883656509695,22.2266175387657,0
+7691,0.0204003740990749,0.0368421052631579,3.68421052631579,2,66.0467624359898,0.792349726775956,2.63157894736842,52.8223675319127,46.7601776123047
+7692,0.0331627520490077,0.155124653739612,15.5124653739612,5,74.3715325003687,0.694946763562616,4.43213296398892,39.8932528070041,0
+7693,0.0526474496993685,0.518005540166205,51.8005540166205,6,94.7911265667854,0.736163710052488,46.2603878116344,1.44203662107335,0
+7694,0.0428191926220685,0.335180055401662,33.5180055401662,3,94.7269824843657,0.726515151515152,32.1329639889197,3.85556412531325,0
+7695,0.0365664766625023,0.255263157894737,25.5263157894737,5,89.2471976731662,0.861094187888388,22.1052631578947,6.08741790732158,0
+7696,0.0481790432414953,0.454293628808864,45.4293628808864,3,94.2744251737451,0.666268867448818,32.6869806094183,3.77796194611526,0
+7697,0.0666976341877102,0.578947368421053,57.8947368421053,4,94.3205077532384,0.859575835475578,50.6925207756233,8.21825704848367,0
+7698,0.0334288697383657,0.185595567867036,18.5595567867036,6,80.6134171866933,0.72713529856387,11.9113573407202,4.84543636663636,0
+7699,0.0376492289561659,0.236842105263158,23.6842105263158,4,85.841651220847,0.72328121653459,12.3684210526316,27.0501067903307,0
+7700,0.0457365269535623,0.394736842105263,39.4736842105263,2,94.9183818702828,0.83881230116649,35.3801169590643,9.57764299533985,0
+7701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7706,0.019830998103747,0.00657894736842105,0.657894736842105,1,0,NA,0.657894736842105,7.34765291213989,7.34765291213989
+7707,0.0133844783371906,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,11.3564609800066,10.3911504745483
+7708,0.0115832099615251,0.0554016620498615,5.54016620498615,2,76.8482289689222,0.795099801343298,4.98614958448754,2.50693819522858,0
+7709,0.00153999720645102,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,0,0
+7710,-0.000500207598203193,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,10.3911504745483,10.3911504745483
+7711,0.00567619060923001,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,7.79336273670197,5.19557523727417
+7712,0.00580665786852841,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,26.9053452809652,10.3911504745483
+7713,0.0218628717169008,0.204986149584488,20.4986149584488,4,84.1395121811927,0.787134816403109,12.1883656509695,14.9686081280579,0
+7714,-0.00560563197906097,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,20.9841156005859,18.7329120635986
+7715,-0.00622002221228732,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,10.636452293396,10.3911504745483
+7716,-0.000973934493412749,0.074792243767313,7.4792243767313,1,85.2413794174021,0.849185350229773,7.4792243767313,14.2481754797476,0
+7717,-0.00166286009985733,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.906038521603332,6.09418282548476,9.23321663249623,0
+7718,0.0167331618297594,0.184210526315789,18.4210526315789,4,84.4215768580217,0.790715971675846,12.1052631578947,14.9299883910588,0
+7719,0.0160590472303164,0.152354570637119,15.2354570637119,3,81.519124505959,0.801307189542484,9.97229916897507,10.5479315844449,0
+7720,0.00103263298327184,0,0,0,NA,NA,0,NA,NA
+7721,0.0335728627263724,0.263157894736842,26.3157894736842,2,91.9965930424066,0.856302521008403,23.5457063711911,18.9632672410262,5.19557523727417
+7722,0.0140311816524589,0.15,15,3,84.478339216189,0.747899159663866,8.42105263157895,25.3508490010312,0
+7723,0.0288765671183458,0.229916897506925,22.9916897506925,4,85.2421675242164,0.840992512112759,12.1883656509695,9.49588603283986,0
+7724,0.0132136041357523,0.038781163434903,3.8781163434903,5,43.5440870817858,0.427809798270893,1.10803324099723,7.34033533505031,0
+7725,0.015130954328088,0.105263157894737,10.5263157894737,5,71.5897315632733,0.733893557422969,5.81717451523546,8.25705362621107,0
+7726,0.00640510990558955,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,16.3783338069916,11.6176595687866
+7727,0.00873063577218647,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,65.7194061279297,65.7194061279297
+7728,0.00907795027214737,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,25.3562301635742,15.5867252349854
+7729,0.0425389415957856,0.340720221606648,34.0720221606648,2,95.4230580676135,0.938783585182952,33.7950138504155,16.1016127849982,0
+7730,0.00966142958650859,0.05,5,2,77.9382286686901,0.745916515426497,4.73684210526316,13.4877746732611,5.19557523727417
+7731,-0.000322177692449415,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,30.2951488494873,30.2951488494873
+7732,0.0052953587605607,0.0249307479224377,2.49307479224377,4,38.5697916232197,0.401751893939394,1.10803324099723,9.88832844628228,0
+7733,0.00402065718049205,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,21.5999736785889,20.7823009490967
+7734,0.0149051088712823,0.0894736842105263,8.94736842105263,2,85.3110798409547,0.86271676300578,8.68421052631579,29.8516505465788,14.6953058242798
+7735,0.00164636847749481,0.0609418282548476,6.09418282548476,2,80.0266940151696,0.812077043206663,5.81717451523546,35.2132228504528,21.4219055175781
+7736,0.00521909902738539,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,21.4219055175781,21.4219055175781
+7737,0.0119752982244088,0.0526315789473684,5.26315789473684,4,63.9078909980416,0.672413793103448,3.601108033241,48.0023360001413,23.2353191375732
+7738,0.0198727005196576,0.102631578947368,10.2631578947368,4,75.2157622143025,0.742837807353936,4.47368421052632,16.5862006285252,5.19557523727417
+7739,0.0220105955177485,0.174515235457064,17.4515235457064,4,82.1490732020587,0.768730933496034,8.86426592797784,30.393239278642,0
+7740,0.0127810136967473,0.0858725761772853,8.58725761772853,4,71.3344217167039,0.671818181818182,3.601108033241,9.4858471808895,0
+7741,0.0101686323207226,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,27.3810103734334,10.3911504745483
+7742,0.0178774333526084,0.0637119113573407,6.37119113573407,6,59.5436143831233,0.673652202498356,3.8781163434903,42.9421091494353,25.977876663208
+7743,0.00866154241617838,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,23.3800885677338,5.19557523727417
+7744,-0.0125567620690009,0,0,0,NA,NA,0,NA,NA
+7745,-0.00747941296426399,0,0,0,NA,NA,0,NA,NA
+7746,0.00758401301184543,0.138504155124654,13.8504155124654,2,87.9680065881412,0.877094760733876,13.0193905817175,19.064910326004,0
+7747,0.00907877151862761,0.0842105263157895,8.42105263157895,4,69.4318298271688,0.685013262599469,3.94736842105263,36.4962766170502,5.19557523727417
+7748,0.00522186433805483,0.0997229916897507,9.97229916897507,4,76.6750416390755,0.777846153846154,7.75623268698061,34.1859173907174,5.19557523727417
+7749,0.00554401505571775,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,37.2813129425049,36.7382659912109
+7750,0.00515717600708972,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,24.1304599761963,20.7823009490967
+7751,0.0103208251207865,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,66.2308464050293,52.9846801757812
+7752,0.0158299682496217,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,87.1198247273763,82.1492538452148
+7753,0.0137134932963596,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,89.3117256164551,88.9339218139648
+7754,-0.00179550938954892,0,0,0,NA,NA,0,NA,NA
+7755,0.0127496070119952,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,35.6764312744141,22.0429573059082
+7756,0.0133661523831408,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,44.162389755249,41.5646018981934
+7757,0.0253278548547732,0.116343490304709,11.6343490304709,3,80.34386755014,0.729038809660471,6.92520775623269,10.5308111168089,0
+7758,0.0373166466019019,0.313019390581717,31.3019390581717,2,93.9441114844051,0.785934535104364,28.808864265928,9.52956858778422,0
+7759,0.0240463107899957,0.168421052631579,16.8421052631579,2,87.2654935157436,0.774525316455696,11.3157894736842,15.4215473532677,0
+7760,0.0350255276599881,0.204986149584488,20.4986149584488,5,83.7582517102584,0.767783436076119,13.5734072022161,14.1471354703645,0
+7761,0.0163616648959586,0,0,0,NA,NA,0,NA,NA
+7762,0.0217565321017145,0.0332409972299169,3.32409972299169,2,62.5885727956377,0.634923310298331,1.93905817174515,51.7159029642741,25.977876663208
+7763,0.000873626045626894,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,25.977876663208,25.977876663208
+7764,0.0204246932047671,0.0332409972299169,3.32409972299169,3,56.4817076347424,0.574077195348053,1.66204986149584,40.2518042723338,10.3911504745483
+7765,-0.00723843313489171,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911503156026,5.19557523727417
+7766,0.00133386432830561,0,0,0,NA,NA,0,NA,NA
+7767,0.00933841761392327,0.0263157894736842,2.63157894736842,1,72.0745708707785,0.920997920997921,2.63157894736842,46.6349914550781,39.5683212280273
+7768,0.0109819042448777,0.0941828254847645,9.41828254847645,2,79.9525300271901,0.783147662734819,5.54016620498615,6.22166721961077,0
+7769,0.0152336325712154,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.859050445103858,6.64819944598338,15.7366140683492,5.19557523727417
+7770,0.0170192568623551,0.0637119113573407,6.37119113573407,3,68.2888647299257,0.762656147271532,4.15512465373961,15.3573258234107,5.19557523727417
+7771,0.0183476911612639,0.0842105263157895,8.42105263157895,3,82.6136612623388,0.811007957559682,7.89473684210526,11.7758800238371,5.19557523727417
+7772,0.0205135612240284,0.038781163434903,3.8781163434903,3,61.3379482254554,0.635878962536023,2.21606648199446,86.9301319122314,47.9008369445801
+7773,0.0177671580259054,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,89.3613101414272,46.7601776123047
+7774,0.0260809135262582,0.0581717451523546,5.81717451523546,5,57.8375450446376,0.535477941176471,1.93905817174515,14.8985162462507,0
+7775,0.0310785788855834,0.115789473684211,11.5789473684211,7,66.5519683815026,0.602638352638353,5,72.369082884355,31.1734504699707
+7776,0.0202177424610069,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,62.2370974222819,59.2386741638184
+7777,0.0241191146169991,0.0581717451523546,5.81717451523546,2,76.8669614451913,0.900459558823529,5.26315789473684,76.9819874082293,10.3911504745483
+7778,0.023972969001399,0.0304709141274238,3.04709141274238,3,58.0245725145703,0.587428571428571,2.21606648199446,141.326804421165,99.2613220214844
+7779,0.024523112745431,0.0394736842105263,3.94736842105263,5,52.3901993757424,0.574097135740971,2.10526315789474,76.7222231547038,49.28955078125
+7780,0.0289353500816093,0.130193905817175,13.0193905817174,2,85.0339692539611,0.755692675159236,10.5263157894737,34.0065593516573,14.6953058242798
+7781,0.0225207819704159,0.0997229916897507,9.97229916897507,3,78.550272193619,0.796358974358974,4.98614958448754,37.9734141031901,23.2353191375732
+7782,0.0485461621489305,0.346260387811634,34.6260387811634,4,91.9944454304817,0.824796535503621,29.6398891966759,19.6689959602356,0
+7783,0.0227210568100178,0.165789473684211,16.5789473684211,4,82.7280591748984,0.683969027817608,11.0526315789474,4.78914429649474,0
+7784,0.0291598325068579,0.213296398891967,21.3296398891967,4,91.3355215605114,0.738297431648716,20.2216066481994,4.0541468285895,0
+7785,0.0507012632116933,0.523545706371191,52.3545706371191,2,95.3422590466644,0.886063122923588,43.7673130193906,3.3101645348564,0
+7786,0.0377650749495568,0.282548476454294,28.2548476454294,5,85.2513497399861,0.687722851657278,12.1883656509695,24.2035554764318,0
+7787,0.0246812963172009,0.0894736842105263,8.94736842105263,5,72.0992548293916,0.646985962014864,5.78947368421053,103.821806963752,67.54248046875
+7788,0.0408961508969533,0.301939058171745,30.1939058171745,4,86.9228397677647,0.76730319877528,14.1274238227147,124.786606184933,77.9336318969727
+7789,0.0348490075398671,0.207756232686981,20.7756232686981,6,84.3266672385475,0.77050222504768,15.7894736842105,75.5611896514893,15.5867252349854
+7790,0.0346675620277988,0.18005540166205,18.005540166205,5,78.3927228529686,0.762556804592203,6.09418282548476,21.0710347835834,0
+7791,0.0236432088174859,0.0631578947368421,6.31578947368421,3,71.1051775048383,0.719101123595506,3.68421052631579,54.741468389829,5.19557523727417
+7792,0.0309772538588772,0.074792243767313,7.4792243767313,5,63.4229354010372,0.673234925497842,2.77008310249307,58.5441014325177,37.4658241271973
+7793,0.0452623419912527,0.274238227146814,27.4238227146814,5,84.9428443438211,0.767775967064071,18.2825484764543,36.1516775795908,0
+7794,0.0542113905143086,0.498614958448753,49.8614958448753,4,95.1095601901801,0.748444577173859,44.8753462603878,4.69301472769843,0
+7795,0.0353391387435534,0.184210526315789,18.4210526315789,6,79.2673314304322,0.631261473905062,7.89473684210526,32.2823179449354,5.19557523727417
+7796,0.0289779945355363,0.135734072022161,13.5734072022161,6,72.4801771881795,0.683188339438339,7.75623268698061,17.6428754670279,0
+7797,0.0513475753513353,0.515235457063712,51.5235457063712,3,95.1527937807511,0.820099667774086,45.1523545706371,6.09629667446178,0
+7798,0.0291843376425204,0.135734072022161,13.5734072022161,8,68.8570902249007,0.600541819291819,5.26315789473684,7.74346195921606,0
+7799,0.0389468945936594,0.292105263157895,29.2105263157895,4,89.6424848921849,0.703345724907063,18.4210526315789,11.6564333975852,0
+7800,-0.00684509352406528,0.0526315789473684,5.26315789473684,3,66.8923949060423,0.765432098765432,3.80116959064328,9.12446790271335,0
+7801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7806,0.0169282347793342,0.0625,6.25,1,74.246961055333,0.917948717948718,6.25,9.87159285545349,5.19557523727417
+7807,0.0112440510554686,0.0289473684210526,2.89473684210526,2,66.1021861153273,0.862691960252936,2.63157894736842,7.11533797870983,0
+7808,0.0052240260766427,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,6.27161407470703,5.19557523727417
+7809,0.0048838409256668,0.0263157894736842,2.63157894736842,2,65.8795495860188,0.604989604989605,2.36842105263158,5.84119853973389,0
+7810,0.0201769678891469,0.1875,18.75,4,82.5346109023299,0.748251748251748,9,13.1095743624369,0
+7811,-0.0289483689608843,0,0,0,NA,NA,0,NA,NA
+7812,0.00661104336935224,0,0,0,NA,NA,0,NA,NA
+7813,0.00523797575866458,0.0763157894736842,7.63157894736842,2,83.5143352134343,0.838758562162818,7.36842105263158,30.4476308493779,20.7823009490967
+7814,0.013106152826158,0.0325,3.25,6,38.4321974965961,0.425782371518806,1.25,33.1782063704271,11.6176595687866
+7815,0.00308403136546794,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,51.955753326416,51.955753326416
+7816,0.00628046298158408,0.0736842105263158,7.36842105263158,2,82.6738557468001,0.904040404040404,7.10526315789474,19.4263045106615,10.3911504745483
+7817,-0.00437790186908004,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,14.170138835907,7.34765291213989
+7818,-0.00800052220263751,0.015,1.5,2,50.6391968181878,0.564902102973169,1.25,9.73533089955648,5.19557523727417
+7819,0.0304530245466211,0.260526315789474,26.0526315789474,3,90.1817078228208,0.825262905354073,18.4210526315789,12.7201885743575,0
+7820,0.0129844462672114,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,11.849158000946,0
+7821,0.0241356346688056,0.152631578947368,15.2631578947368,4,81.6207319337577,0.858385093167702,11.5789473684211,16.546220532779,0
+7822,0.0327022434032278,0.26,26,5,85.3987259304684,0.761526232114467,13.5,41.7514922206218,0
+7823,0.0330890294104405,0.226315789473684,22.6315789473684,6,81.8604205953233,0.738117469209906,10.5263157894737,30.2414959253267,5.19557523727417
+7824,0.0232894632351477,0.0631578947368421,6.31578947368421,5,60.8076062955411,0.52247191011236,2.36842105263158,16.8745810389519,0
+7825,0.0222677788121234,0.0921052631578947,9.21052631578947,9,57.6440803403153,0.430284857571214,2.89473684210526,5.11819214139666,0
+7826,0.0139338636187404,0.065,6.5,2,81.2557710064635,0.9478283552889,6.25,18.2587923636803,11.6176595687866
+7827,-0.000319879352422217,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,37.2813129425049,36.7382659912109
+7828,0.00120566349024964,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,11.0044050216675,10.3911504745483
+7829,0.0102220760137961,0.105263157894737,10.5263157894737,5,76.3857895565679,0.733099209833187,7.89473684210526,16.2947422623634,0
+7830,0.0259151485071015,0.2175,21.75,4,84.8198609308265,0.777388436566011,8.5,44.4269932933237,10.3911504745483
+7831,0.0153924675181722,0.128947368421053,12.8947368421053,2,88.7694090019571,0.91799741044454,12.6315789473684,29.0092116569986,10.3911504745483
+7832,0.00316556387494386,0,0,0,NA,NA,0,NA,NA
+7833,0.00210839336009246,0,0,0,NA,NA,0,NA,NA
+7834,0.0242853636294421,0.235,23.5,4,86.7647242807718,0.774354186118892,11.5,39.6631469523653,11.6176595687866
+7835,0.0163751657716315,0.0710526315789474,7.10526315789474,2,81.8177947894774,0.949930825482575,6.84210526315789,10.6098275537844,0
+7836,0.0107978828929941,0.0342105263157895,3.42105263157895,4,50.2082013325933,0.539812291855889,1.57894736842105,9.14937690588144,5.19557523727417
+7837,0.0302436580173028,0.186842105263158,18.6842105263158,3,88.1955112159907,0.862265372168285,16.5789473684211,23.8451665690247,5.19557523727417
+7838,0.0299206835711078,0.2075,20.75,3,86.4475377455921,0.768235369857722,10.75,53.7025893797357,22.0429573059082
+7839,0.0196014036411629,0.160526315789474,16.0526315789474,2,90.4194162422145,0.853906665878039,15.5263157894737,54.2275281812324,27.9790287017822
+7840,0.0082191569317298,0.0210526315789474,2.10526315789474,2,59.17660038592,0.693548387096774,1.84210526315789,13.989875972271,7.34765291213989
+7841,0.00971923983582344,0.0289473684210526,2.89473684210526,4,45.9385834752211,0.450767841011743,1.31578947368421,8.25563144683838,5.19557523727417
+7842,0.0146060539431155,0.0368421052631579,3.68421052631579,8,28.9790938637503,0.273224043715847,0.789473684210526,16.923722914287,0
+7843,0.00713947121184901,0.05,5,7,46.581592423054,0.456706281833616,1.75,17.0607090950012,0
+7844,-0.00760010025306225,0,0,0,NA,NA,0,NA,NA
+7845,-0.0145802024962138,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,30.3104887008667,18.7329120635986
+7846,-0.00802062207636769,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,11.558186340332,0
+7847,0.0254333320660135,0.2075,20.75,4,85.2023241715679,0.802570870619541,12,10.7352867069015,0
+7848,0.02327006941276,0.157894736842105,15.7894736842105,2,87.224566606427,0.897235576923077,13.9473684210526,9.85577143828074,0
+7849,0.00308287747994703,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,10.3911503156026,5.19557523727417
+7850,0.00362425197792235,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,19.1309609413147,15.5867252349854
+7851,0.00503157269468829,0.01,1,2,34.5233986084855,0.494949494949495,0.75,76.4664268493652,67.7420120239258
+7852,0.00723797980768531,0.0289473684210526,2.89473684210526,6,33.5238895807861,0.313459801264679,1.05263157894737,118.591604752974,104.041313171387
+7853,0.0145139548145284,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,89.3117256164551,88.9339218139648
+7854,0.00103163825467498,0,0,0,NA,NA,0,NA,NA
+7855,0.0174255376607562,0.005,0.5,1,30.8308651382582,1,0.5,21.1021032333374,20.7823009490967
+7856,0.0170691698625122,0.0526315789473684,5.26315789473684,1,81.8374951454051,0.829749103942652,5.26315789473684,49.7085180282593,41.8880653381348
+7857,0.0262154469408989,0.126315789473684,12.6315789473684,3,83.3427152490421,0.804584190420217,10,8.00062674283981,0
+7858,0.0307211761819704,0.25,25,3,88.1670198220246,0.780392156862745,17.1052631578947,12.4446927472165,0
+7859,0.0180478387112271,0.0775,7.75,3,73.292353236243,0.761517615176152,4.25,12.1447409814404,0
+7860,0.0192748639728004,0.0289473684210526,2.89473684210526,4,46.8019579908976,0.519421860885276,1.31578947368421,20.1311058998108,7.34765291213989
+7861,0.0175692472497324,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,22.1240884780884,14.6953058242798
+7862,0.0124693663403664,0.0263157894736842,2.63157894736842,3,49.6753641355239,0.525987525987526,1.31578947368421,22.3595694541931,10.3911504745483
+7863,0.0056057874396322,0.015,1.5,1,62.2896536353828,0.564902102973169,1.5,18.9899196624756,16.4298515319824
+7864,0.00405282987789848,0,0,0,NA,NA,0,NA,NA
+7865,5.04511898073265e-05,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,20.7823009490967,20.7823009490967
+7866,-0.00458861999699557,0,0,0,NA,NA,0,NA,NA
+7867,0.00063813428010576,0,0,0,NA,NA,0,NA,NA
+7868,0.00529071649141674,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+7869,0.010795971435245,0.0526315789473684,5.26315789473684,3,72.1023275039235,0.795698924731183,4.47368421052632,15.0236093759537,5.19557523727417
+7870,0.0145523541867365,0.068421052631579,6.8421052631579,4,72.6839662285169,0.71200220476781,5.26315789473684,22.2304712992448,0
+7871,0.0162627719746843,0.025,2.5,4,40.6261005355245,0.526627218934911,1,10.022923374176,0
+7872,0.0141849504867232,0.0263157894736842,2.63157894736842,2,60.6867581339923,0.841995841995842,2.10526315789474,48.4104579925537,36.7382659912109
+7873,0.0286709799012897,0.15,15,2,87.3376061830593,0.771908763505402,11.3157894736842,71.373634739926,31.1734504699707
+7874,0.0185649473905199,0.0289473684210526,2.89473684210526,3,52.4342563095132,0.588075880758808,1.57894736842105,8.69423684206876,0
+7875,0.028590653307474,0.07,7,7,57.7855343058487,0.59378733572282,2.25,53.9449009214129,21.4219055175781
+7876,0.014156574541114,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+7877,0.0233501884241138,0.0368421052631579,3.68421052631579,4,55.5088511382064,0.584699453551913,2.10526315789474,16.7601638862065,0
+7878,0.0107836309875366,0.0105263157894737,1.05263157894737,1,52.703639668815,1,1.05263157894737,87.285888671875,83.9370880126953
+7879,0.0124617218070489,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,35.1190376281738,25.977876663208
+7880,0.0112476235218118,0.0631578947368421,6.31578947368421,4,69.3694178502483,0.691011235955056,4.21052631578947,33.4144521554311,16.4298515319824
+7881,0.0223249501012584,0.163157894736842,16.3157894736842,2,86.5872512586564,0.84509666899604,8.68421052631579,28.8092315735355,10.3911504745483
+7882,0.0280038210194585,0.152631578947368,15.2631578947368,4,80.6866189652036,0.740372670807453,9.47368421052632,12.5549942953833,0
+7883,0.0315503875075956,0.325,32.5,4,91.1710201609238,0.868729488982653,25,8.90744521067693,0
+7884,0.0302999518436321,0.176315789473684,17.6315789473684,3,85.9061282554763,0.8443516015401,10,7.92134260063741,0
+7885,0.0504275945153112,0.492105263157895,49.2105263157895,4,93.2353168066836,0.806523106412292,38.6842105263158,4.27286717980941,0
+7886,0.023988234633802,0.118421052631579,11.8421052631579,3,81.3471507623941,0.761194029850746,8.15789473684211,6.9695822291904,0
+7887,0.0364427055697524,0.31,31,3,89.7008354260719,0.78743961352657,14.75,30.902090349505,0
+7888,0.0213112445213961,0.139473684210526,13.9473684210526,3,81.9886367233428,0.79567832778842,7.10526315789474,52.3809015885839,5.19557523727417
+7889,0.0242571877409845,0.184210526315789,18.4210526315789,2,87.5378580292768,0.860477314450564,11.3157894736842,30.5049188409533,0
+7890,0.0367509484638791,0.260526315789474,26.0526315789474,7,84.5244188220018,0.696109400615778,14.7368421052632,8.97891666913273,0
+7891,0.0339751631273839,0.2275,22.75,7,80.5987585879563,0.70434296216389,12.5,7.70705248759343,0
+7892,0.0433824008205097,0.339473684210526,33.9473684210526,5,91.7103152938992,0.703653471221497,27.3684210526316,10.9285413424174,0
+7893,0.0503000013545189,0.428947368421053,42.8947368421053,3,94.4198630226981,0.889093701996928,39.7368421052632,6.49692394104472,0
+7894,0.0464867295690821,0.394736842105263,39.4736842105263,4,90.1397810269743,0.765691699604743,17.8947368421053,7.68247741063436,0
+7895,0.0532214447800834,0.4775,47.75,4,95.0683713551369,0.756710729056849,42,10.052245589451,0
+7896,0.0177845804535441,0.155263157894737,15.5263157894737,4,84.6265215696326,0.825911673080447,12.1052631578947,5.74189918324099,0
+7897,0.0337998733090947,0.281578947368421,28.1578947368421,2,91.1201140953987,0.769211789937179,17.8947368421053,7.53653182270371,0
+7898,0.0308337743226407,0.218421052631579,21.8421052631579,5,84.2293948691681,0.721477816715912,11.8421052631579,7.81878208252321,0
+7899,0.0327997895446606,0.2975,29.75,5,85.3812457757358,0.762752075919336,13.75,5.11715932653732,0
+7900,0.0304996445323923,0.291666666666667,29.1666666666667,1,95.2617334638769,0.92530345471522,29.1666666666667,12.7522225970314,0
+7901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+7906,0.0119247202022435,0.0394736842105263,3.94736842105263,2,52.3536812654311,0.553816046966732,3.28947368421053,10.3911503950755,5.19557523727417
+7907,0.0117883155495025,0.0803324099722992,8.03324099722992,2,83.3570030393652,0.884324532171238,7.75623268698061,11.6303100585938,0
+7908,0.0212468801834936,0.0554016620498615,5.54016620498615,6,50.9598995230634,0.521899536467695,1.93905817174515,6.70967681407928,0
+7909,0.0306137622392271,0.213296398891967,21.3296398891967,6,85.3842923616358,0.728950911350456,17.1745152354571,23.2521380758905,5.19557523727417
+7910,0.0192965919001826,0.0710526315789474,7.10526315789474,5,71.3154202637004,0.774688714671586,5.78947368421053,47.0137572111907,15.5867252349854
+7911,-0.0527100417614009,0,0,0,NA,NA,0,NA,NA
+7912,0.0141000223856057,0.0221606648199446,2.21606648199446,2,53.6717642846206,0.590934844192635,1.38504155124654,0,0
+7913,0.00792659436995254,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,6.68002530506679,5.19557523727417
+7914,0.00400874585487767,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483
+7915,0.00905539697919581,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,9.22238985697428,5.19557523727417
+7916,0.0101628236751068,0.03601108033241,3.601108033241,4,50.8438638110147,0.596583652618135,1.66204986149584,12.253864471729,5.19557523727417
+7917,0.00473263464702636,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,18.2358577251434,14.6953058242798
+7918,-0.00268483736075914,0,0,0,NA,NA,0,NA,NA
+7919,0.014536875396934,0.14404432132964,14.404432132964,3,84.7034247094431,0.750590887604087,11.3573407202216,16.2246557107339,0
+7920,0.00642845026817456,0.0304709141274238,3.04709141274238,2,67.4369707831767,0.724952380952381,2.77008310249307,17.691444310275,10.3911504745483
+7921,0.0503263582848432,0.337950138504155,33.7950138504155,4,90.1361358438035,0.815464132225146,22.7146814404432,13.9314298043486,0
+7922,0.0305202879105357,0.247368421052632,24.7368421052632,3,87.2052696395632,0.754828504828505,13.6842105263158,27.3562575299689,0
+7923,0.0251295819849232,0.119113573407202,11.9113573407202,1,89.4584842426695,0.952699161425577,11.9113573407202,74.937280876692,62.3469009399414
+7924,0.0205751205193592,0.0415512465373961,4.15512465373961,2,71.8960321213508,0.715449290593799,3.601108033241,35.8256969451904,21.4219055175781
+7925,0.0215790761590659,0.149584487534626,14.9584487534626,1,91.1912638540493,0.911491716577353,14.9584487534626,25.2503437289485,10.3911504745483
+7926,0.00520410980449541,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,14.1022754396711,0
+7927,0.00140929300082626,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,7.79336285591125,5.19557523727417
+7928,0.00931322692449713,0.07202216066482,7.20221606648199,3,71.7419001336085,0.579468511103021,3.601108033241,12.9100440648886,0
+7929,0.0153134963363219,0.149584487534626,14.9584487534626,4,84.9473202868129,0.886203635599454,13.5734072022161,23.5484189987183,0
+7930,0.0264296248189614,0.260526315789474,26.0526315789474,2,90.487327189996,0.870846495261706,13.9473684210526,51.7507076841412,26.4923400878906
+7931,0.00458055201594923,0.0526315789473684,5.26315789473684,3,68.0669290098109,0.708812260536398,3.601108033241,12.1842589378357,5.19557523727417
+7932,-0.00269711763164405,0,0,0,NA,NA,0,NA,NA
+7933,0.00714567620199982,0,0,0,NA,NA,0,NA,NA
+7934,0.0190356688608134,0.128947368421053,12.8947368421053,3,82.5170849183998,0.808660624370594,6.57894736842105,48.6323493159547,5.19557523727417
+7935,0.0166628963341891,0.0831024930747922,8.31024930747922,4,72.1196512904488,0.732905851162217,5.54016620498615,3.70863858858744,0
+7936,0.0207492170296787,0.074792243767313,7.4792243767313,4,65.1562766893011,0.673234925497842,2.77008310249307,7.03069688655712,0
+7937,0.0209559791323967,0.0831024930747922,8.31024930747922,5,66.1291152801275,0.554843085270362,2.77008310249307,15.7592791398366,0
+7938,0.0200239048994263,0.144736842105263,14.4736842105263,4,84.7932208551162,0.790769230769231,12.3684210526316,18.216533314098,0
+7939,0.0158845872319525,0.102493074792244,10.2493074792244,4,74.3958230412781,0.762548067192876,6.64819944598338,20.9647343223159,5.19557523727417
+7940,-0.00487439191259748,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,16.4298515319824,16.4298515319824
+7941,0.0381720171074416,0.315789473684211,31.5789473684211,2,92.2881193512176,0.836818521284541,24.6537396121884,32.8171114001358,11.6176595687866
+7942,-0.000529273483613838,0.0443213296398892,4.43213296398892,3,59.9532355436098,0.520410628019324,1.66204986149584,18.8033952116966,0
+7943,-0.0237145243439476,0.0342105263157895,3.42105263157895,2,69.9319173725669,0.884953072963972,3.15789473684211,11.8809899550218,0
+7944,-0.0236733343090715,0,0,0,NA,NA,0,NA,NA
+7945,-0.025059286622931,0,0,0,NA,NA,0,NA,NA
+7946,0.0733824665623912,0.559556786703601,55.9556786703601,1,98.1286925834025,0.915236897274633,55.9556786703601,1.44092109415791,0
+7947,0.00349970719660058,0.0210526315789474,2.10526315789474,2,53.0195467702593,0.693548387096774,1.31578947368421,4.16569113731384,0
+7948,-0.02450046495717,0,0,0,NA,NA,0,NA,NA
+7949,-0.00672711181517889,0,0,0,NA,NA,0,NA,NA
+7950,0.00890383541497671,0.0304709141274238,3.04709141274238,2,62.6985064770805,0.656190476190476,2.21606648199446,43.8719249205156,10.3911504745483
+7951,0.00125050565913721,0,0,0,NA,NA,0,NA,NA
+7952,0.00452554450181358,0,0,0,NA,NA,0,NA,NA
+7953,0.00608040725236608,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,113.947868347168,113.947868347168
+7954,0.00108251139160663,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,80.2301292419434,79.1366424560547
+7955,0.0218641432582349,0.0710526315789474,7.10526315789474,5,71.1059988853862,0.599446603860597,4.21052631578947,45.3874171574911,10.3911504745483
+7956,0.021501245744972,0.0997229916897507,9.97229916897507,5,69.0932353194363,0.666769230769231,3.8781163434903,63.5952515072293,34.8529777526855
+7957,0.0303590991222293,0.210526315789474,21.0526315789474,4,87.709168397882,0.744776119402985,15.7894736842105,9.57484740959971,0
+7958,0.0280397010965845,0.10803324099723,10.803324099723,5,72.7008137331253,0.620544672718586,4.43213296398892,10.0571780938369,0
+7959,0.0184259884703926,0.0236842105263158,2.36842105263158,5,32.5066171396475,0.317160826594789,1.05263157894737,39.717477162679,16.4298515319824
+7960,0.0234924277836177,0.155124653739612,15.5124653739612,5,76.9286839393868,0.719351022477607,6.92520775623269,13.1504910417965,0
+7961,0.0193385837783933,0.0277008310249307,2.77008310249307,5,32.4430614223119,0.367083059390752,0.831024930747922,17.1731454372406,5.19557523727417
+7962,0.0138352448273488,0.0637119113573407,6.37119113573407,3,77.3292522201472,0.79232412886259,5.81717451523546,24.6379268065743,10.3911504745483
+7963,0.0105860201404539,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,23.2018045425415,15.5867252349854
+7964,0.00665982182968377,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,31.0369635495273,20.7823009490967
+7965,0.00191144316284363,0,0,0,NA,NA,0,NA,NA
+7966,-0.0112703547509736,0,0,0,NA,NA,0,NA,NA
+7967,0.00226670280925119,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,9.48265624046326,7.34765291213989
+7968,-0.00254741746348902,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,9.94711230782902,5.19557523727417
+7969,0.0192741631214437,0.196675900277008,19.6675900277008,3,89.5622770831781,0.661406896551724,16.8975069252078,12.8854975163097,0
+7970,0.019736636520642,0.135734072022161,13.5734072022161,2,88.6064526575167,0.83470695970696,13.0193905817175,24.5623239011181,5.19557523727417
+7971,0.0110253665607879,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.91293446222941,5.19557523727417
+7972,0.0147209964993396,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.939153885049722,3.32409972299169,11.2570795615514,0
+7973,0.0217498301900375,0.163434903047091,16.3434903047091,1,91.8133927298019,0.765614855213609,16.3434903047091,11.8393508943461,0
+7974,0.0192544934176324,0.102493074792244,10.2493074792244,3,78.011758378977,0.780813600485732,6.37119113573407,17.7268964019982,5.19557523727417
+7975,0.0196521008747847,0.0973684210526316,9.73684210526316,6,71.7043236486691,0.654925201930889,6.05263157894737,33.8728590269346,10.3911504745483
+7976,0.0145625167486519,0.03601108033241,3.601108033241,2,66.2503367525872,0.769476372924649,2.77008310249307,51.91877247737,37.4658241271973
+7977,0.0230083385627909,0.124653739612188,12.4653739612188,2,87.7087513106978,0.849683544303798,11.9113573407202,72.4409665425619,47.9008369445801
+7978,0.0147977623766408,0.0470914127423823,4.70914127423823,2,69.3972270953445,0.664186046511628,2.49307479224377,19.115002043107,0
+7979,0.0286266813881842,0.160526315789474,16.0526315789474,5,81.6947389562367,0.764003075649139,7.89473684210526,15.4376790640784,0
+7980,0.0235611893884177,0.0969529085872576,9.69529085872576,3,81.5772483314349,0.828167971229109,8.58725761772853,10.0015605926514,0
+7981,0.0202874287700818,0.038781163434903,3.8781163434903,5,48.409572551163,0.479827089337176,1.93905817174515,13.7908139228821,0
+7982,0.0283503433000738,0.124653739612188,12.4653739612188,8,65.4657084067458,0.534018987341772,3.04709141274238,15.6143458366394,0
+7983,0.0240085793110331,0.0894736842105263,8.94736842105263,4,72.2388167631214,0.705821635012386,5,23.9421104403103,0
+7984,0.0183368796496617,0.0581717451523546,5.81717451523546,6,52.8140012757938,0.469117647058824,1.93905817174515,33.4095276877994,10.3911504745483
+7985,0.0330840303103289,0.28808864265928,28.808864265928,2,94.5338776366185,0.917372396429389,28.5318559556787,3.83602527471689,0
+7986,0.0308250137068725,0.188365650969529,18.8365650969529,5,80.7371337677046,0.668683855794878,9.41828254847645,14.0157064620186,0
+7987,0.0435900847749987,0.397368421052632,39.7368421052632,3,94.4142795836721,0.814292245361247,34.7368421052632,26.6187283187513,0
+7988,0.0347731911446559,0.235457063711911,23.5457063711911,5,82.7074439154455,0.714152029945292,10.5263157894737,14.7274290084839,0
+7989,0.0390052219242189,0.307479224376731,30.7479224376731,3,93.3218660634582,0.77618,27.7008310249307,24.6063318553272,5.19557523727417
+7990,0.0388165539716837,0.351800554016621,35.1800554016621,4,89.3609058142306,0.726181226181226,17.7285318559557,9.00986366572343,0
+7991,0.050212081940926,0.442105263157895,44.2105263157895,7,88.8985844666084,0.734023128423615,25.2631578947368,4.34482445035662,0
+7992,0.0495096571384568,0.457063711911357,45.7063711911357,4,89.4683155377856,0.691007653061225,17.7285318559557,9.25703467455777,0
+7993,0.0455013405672891,0.440443213296399,44.0443213296399,4,91.5839858001962,0.669503594195036,27.1468144044321,7.63151878680823,0
+7994,0.0506967245975195,0.470914127423823,47.0914127423823,6,89.9119105275576,0.589381596775003,25.7617728531856,4.7509757939507,0
+7995,0.0517008993598306,0.413157894736842,41.3157894736842,4,90.5207792107579,0.757411559541604,16.8421052631579,17.8971841866803,0
+7996,0.0240367802378442,0.0637119113573407,6.37119113573407,4,65.0116480483246,0.554980276134122,2.77008310249307,19.7538689530414,5.19557523727417
+7997,0.0218881348848748,0.0609418282548476,6.09418282548476,3,70.3609634648865,0.749436057608884,3.04709141274238,3.64025937427174,0
+7998,0.0166851054685207,0.113573407202216,11.3573407202216,2,85.7902338523781,0.852853260869565,10.2493074792244,5.7549503256635,0
+7999,0.0214933379584181,0.278947368421053,27.8947368421053,1,95.1692193166118,0.905606298008943,27.8947368421053,6.64312132799401,0
+8000,0.0257809060467108,0.309941520467836,30.9941520467836,2,92.7938375156092,0.779971603514065,24.5614035087719,12.2119844634578,0
+8001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8006,0.0116972267547489,0.0526315789473684,5.26315789473684,2,57.9472927876865,0.577777777777778,3.94736842105263,6.95867854356766,0
+8007,0.0157020442364284,0.0997229916897507,9.97229916897507,5,72.7960470727632,0.62974358974359,6.37119113573407,12.7985541952981,0
+8008,0.00065859658440844,0.0415512465373961,4.15512465373961,2,73.7604105198396,0.762874408828166,3.8781163434903,13.8548671722412,5.19557523727417
+8009,0.00184095652482414,0.0554016620498615,5.54016620498615,3,68.7760571374694,0.692649702014947,3.8781163434903,13.4481822490692,10.3911504745483
+8010,0.0035944980809099,0.121052631578947,12.1052631578947,3,80.9995839434101,0.766620604943958,7.63157894736842,11.6525820649188,5.19557523727417
+8011,-0.00556851695034419,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989
+8012,-0.00736666159117253,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417
+8013,0.00798091005899525,0.0692520775623269,6.92520775623269,1,84.4444444444445,0.919419642857143,6.92520775623269,12.172453956604,5.19557523727417
+8014,0.0158709137915378,0.115789473684211,11.5789473684211,3,81.5945523935503,0.786036036036036,7.10526315789474,24.0453508333726,10.3911504745483
+8015,0.0306899289160688,0.268698060941828,26.8698060941828,3,89.8016039082109,0.732802159526297,13.5734072022161,29.3410218032365,10.3911504745483
+8016,0.00725667881773528,0.0277008310249307,2.77008310249307,3,48.8844334475027,0.60442691211922,1.38504155124654,26.1065161705017,10.3911504745483
+8017,0.0150476611600518,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,27.843740940094,18.7329120635986
+8018,0.0155604081697914,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,16.6258406639099,5.19557523727417
+8019,0.0300122056196868,0.268698060941828,26.8698060941828,5,88.4524650774832,0.756378439568095,20.2216066481994,29.484619784601,0
+8020,0.00874207769386348,0.0304709141274238,3.04709141274238,2,61.142681928233,0.656190476190476,1.93905817174515,18.2747201052579,11.6176595687866
+8021,0.0230952066328561,0.141274238227147,14.1274238227147,2,85.0561202815532,0.866147571375603,9.97229916897507,15.725170322493,0
+8022,0.0170776299018096,0.152631578947368,15.2631578947368,6,78.3674559367176,0.740372670807453,10.7894736842105,13.8774497015723,0
+8023,0.0175155401143595,0.157894736842105,15.7894736842105,4,81.1773614619925,0.794005102040817,9.41828254847645,17.3634370084394,0
+8024,0.0176624882606473,0.163434903047091,16.3434903047091,3,81.8255474273652,0.824211141410206,8.58725761772853,20.7835286593033,0
+8025,-0.000276129258815277,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+8026,0.00885430940893696,0,0,0,NA,NA,0,NA,NA
+8027,0.0130039560989697,0.0193905817174515,1.93905817174515,4,32.9861111111111,0.362641242937853,1.10803324099723,3.71112516948155,0
+8028,0.0179358244510249,0.0581717451523546,5.81717451523546,3,67.1425327494963,0.701378676470588,3.04709141274238,9.64979609988985,0
+8029,0.0015360582249658,0.0304709141274238,3.04709141274238,4,44.3199257804352,0.449904761904762,1.10803324099723,17.7846104015004,0
+8030,-0.0227796544891087,0,0,0,NA,NA,0,NA,NA
+8031,-0.0891791062854899,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,2.50864562988281,0
+8032,-0.0809486530753597,0,0,0,NA,NA,0,NA,NA
+8033,-0.00610411612159273,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,30.3779602050781,27.9790287017822
+8034,0.012924066848475,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,8.74333581924438,5.19557523727417
+8035,0.0199045779698387,0.0858725761772853,8.58725761772853,5,66.2693000614395,0.58430303030303,3.32409972299169,4.76219949414653,0
+8036,0.0153217593769393,0.03601108033241,3.601108033241,4,51.0431039550417,0.596583652618135,1.93905817174515,4.96146004016583,0
+8037,0.0281820055272489,0.160664819944598,16.0664819944598,4,80.6838621112957,0.737887788778878,8.03324099722992,11.5750255502503,0
+8038,0.0133924370262608,0.0394736842105263,3.94736842105263,3,61.9897847861118,0.668742216687422,2.36842105263158,16.302978960673,10.3911504745483
+8039,0.0110117745603637,0.0831024930747922,8.31024930747922,3,77.688268094568,0.821937234108145,6.64819944598338,27.773574813207,5.19557523727417
+8040,-0.00899212814731168,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,55.2297248840332,55.2297248840332
+8041,0.0393490465243419,0.285318559556787,28.5318559556787,2,94.6354827040792,0.841169076052797,28.2548476454294,33.6219186181004,5.19557523727417
+8042,-0.0124930347135539,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,61.6748600006104,51.170482635498
+8043,-0.0385120147993133,0,0,0,NA,NA,0,NA,NA
+8044,-0.0320802009986956,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,1.73185841242472,0
+8045,-0.023387260901092,0.0470914127423823,4.70914127423823,3,66.8765781520719,0.748139534883721,3.601108033241,12.7313675319447,0
+8046,0.0119676508994288,0.199445983379501,19.9445983379501,2,87.8784122014425,0.852464376209029,11.9113573407202,30.4638292458322,5.19557523727417
+8047,-0.00275814472778094,0,0,0,NA,NA,0,NA,NA
+8048,-0.0223797731440681,0,0,0,NA,NA,0,NA,NA
+8049,-0.00712700167732843,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,7.64479287465413,5.19557523727417
+8050,0.00291055015942444,0,0,0,NA,NA,0,NA,NA
+8051,0.000490908903176253,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,20.3123728434245,18.7329120635986
+8052,0.00810400577823321,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,14.6953058242798,14.6953058242798
+8053,0.012982523656546,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,77.8903312683105,74.3893203735352
+8054,-0.0046985752455348,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0
+8055,-0.00145937106677402,0,0,0,NA,NA,0,NA,NA
+8056,0.0109942342476396,0.0304709141274238,3.04709141274238,1,73.7293580723472,1,3.04709141274238,37.8580811240456,27.9790287017822
+8057,0.0377887920774387,0.301939058171745,30.1939058171745,3,88.8402303038698,0.745487873660463,15.5124653739612,8.32623581055107,0
+8058,0.0249247601819268,0.127423822714681,12.7423822714681,3,82.8133305766182,0.662067562067562,8.58725761772853,12.8701549301977,0
+8059,0.0167091067770774,0,0,0,NA,NA,0,NA,NA
+8060,0.0238401669454998,0.0193905817174515,1.93905817174515,3,42.9746115819409,0.617584745762712,1.38504155124654,20.0400755746024,5.19557523727417
+8061,0.015711030688702,0.0277008310249307,2.77008310249307,2,60.7721260804076,0.841770764847688,2.21606648199446,45.0635911941528,30.2951488494873
+8062,0.0152484207989556,0.0332409972299169,3.32409972299169,3,56.4817076347424,0.574077195348053,1.66204986149584,25.8680132230123,10.3911504745483
+8063,0.0132071406435946,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,11.8887522220612,7.34765291213989
+8064,0.0196724984126273,0.0221606648199446,2.21606648199446,2,55.3960460550465,0.693201133144476,1.66204986149584,41.5646023750305,20.7823009490967
+8065,0.00492217257859545,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,19.0504423777262,15.5867252349854
+8066,0.00930490072244934,0,0,0,NA,NA,0,NA,NA
+8067,0.00395420559601151,0,0,0,NA,NA,0,NA,NA
+8068,0.00309637189665235,0,0,0,NA,NA,0,NA,NA
+8069,0.0108830369501845,0.0277008310249307,2.77008310249307,4,47.3502789312663,0.446197676966908,1.66204986149584,5.83778367042541,0
+8070,0.0144766642788303,0.0692520775623269,6.92520775623269,4,69.2567592890233,0.73139880952381,4.70914127423823,9.65460298538208,0
+8071,0.0224313936515835,0.0526315789473684,5.26315789473684,4,69.7983839702111,0.659498207885305,4.21052631578947,4.47927184104919,0
+8072,0.0274546095727165,0.0803324099722992,8.03324099722992,6,65.8246769514686,0.537298128684953,4.70914127423823,14.2676865807895,0
+8073,0.0209572130504997,0.0581717451523546,5.81717451523546,3,71.4950951488085,0.734558823529412,4.15512465373961,64.7353034246536,36.7382659912109
+8074,0.0239736994970225,0.07202216066482,7.20221606648199,3,73.9076603955402,0.632034947215144,3.8781163434903,75.3399247389573,51.955753326416
+8075,0.0121090534185992,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,62.5630111694336,62.5630111694336
+8076,0.00979095577956319,0,0,0,NA,NA,0,NA,NA
+8077,0.0291764330899458,0.113573407202216,11.3573407202216,3,81.1460991557774,0.72205615942029,8.31024930747922,39.7799330920708,22.0429573059082
+8078,0.0118146108631973,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,11.1643576622009,5.19557523727417
+8079,0.0167156185760417,0.0815789473684211,8.15789473684211,3,79.5956760805612,0.825787965616046,7.10526315789474,10.8332638586721,0
+8080,0.0151535934766497,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.724952380952381,3.04709141274238,3.77860017256303,0
+8081,0.0206444957580577,0.03601108033241,3.601108033241,1,76.2797118658907,1,3.601108033241,45.7651634216309,40.5787391662598
+8082,0.0214587580164216,0.0415512465373961,4.15512465373961,3,66.0634298753637,0.715449290593799,3.32409972299169,8.35532229741414,0
+8083,0.0248194576100727,0.115789473684211,11.5789473684211,5,77.0211554668889,0.724903474903475,6.31578947368421,17.6000908179717,0
+8084,0.0196589786766376,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,20.9841156005859,18.7329120635986
+8085,0.0490418527072323,0.46814404432133,46.814404432133,2,96.5415707339089,0.927684294871795,45.983379501385,1.74378720402012,0
+8086,0.0384337779876539,0.307479224376731,30.7479224376731,2,93.7978925953164,0.84838,29.0858725761773,4.96620008966944,0
+8087,0.0244994073360981,0.147368421052632,14.7368421052632,2,87.9174073729302,0.915362097492682,13.6842105263158,1.94834071397781,0
+8088,0.0423937088105611,0.304709141274238,30.4709141274238,6,86.888664455772,0.739814610903121,20.4986149584488,12.9870998642661,0
+8089,0.0447511314743371,0.357340720221607,35.7340720221607,7,89.1732628082876,0.768250183418929,27.9778393351801,37.0689300529717,5.19557523727417
+8090,0.0420562675638109,0.304709141274238,30.4709141274238,7,83.9918480029268,0.732587238983763,13.2963988919668,18.5456619436091,0
+8091,0.0531277390140244,0.486842105263158,48.6842105263158,2,97.2152229412004,0.846153846153846,48.1578947368421,11.8401948000934,0
+8092,0.0409316941266983,0.310249307479224,31.0249307479224,6,83.146350664606,0.626784365183506,11.9113573407202,10.2736076755183,0
+8093,0.029542221523753,0.238227146814404,23.8227146814404,4,87.6030031596836,0.742602495543672,17.7285318559557,18.810987838479,0
+8094,0.050712498516319,0.487534626038781,48.7534626038781,7,91.5993216130027,0.63975051975052,29.9168975069252,4.4134992713278,0
+8095,0.0594321168296071,0.526315789473684,52.6315789473684,6,93.2066772152003,0.755315962863133,33.6842105263158,8.40900930166245,0
+8096,0.0256471988580005,0.135734072022161,13.5734072022161,1,90.4761904761905,0.8622557997558,13.5734072022161,12.9148442404611,0
+8097,0.0248162529305597,0.0470914127423823,4.70914127423823,5,52.7943041311676,0.496279069767442,1.38504155124654,15.145324791179,0
+8098,0.0409587539725684,0.382271468144044,38.2271468144044,3,94.5977081834188,0.775161933233682,34.9030470914127,2.86380368039228,0
+8099,0.0448883574634429,0.397368421052632,39.7368421052632,5,90.5543916480288,0.772358236249271,26.0526315789474,5.44558259193471,0
+8100,0.0347053754096591,0.309941520467836,30.9941520467836,5,88.2637837442153,0.757210045256899,18.1286549707602,7.18176014018509,0
+8101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8106,0.0116797435478618,0,0,0,NA,NA,0,NA,NA
+8107,0.0054422320166059,0.0415512465373961,4.15512465373961,3,62.866481365852,0.762874408828166,3.04709141274238,13.2284531911214,10.3911504745483
+8108,-0.00375462319385617,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+8109,0.0098031578576476,0.03601108033241,3.601108033241,4,49.9806743733363,0.596583652618135,1.66204986149584,10.4560061601492,0
+8110,0.00214527931805749,0.0578947368421053,5.78947368421053,3,67.1449872437819,0.687808084127506,2.63157894736842,11.8152190121737,5.19557523727417
+8111,-0.00813303156197168,0,0,0,NA,NA,0,NA,NA
+8112,-0.0141187490732548,0,0,0,NA,NA,0,NA,NA
+8113,-0.0256114301173058,0,0,0,NA,NA,0,NA,NA
+8114,0.00375125633106922,0.102631578947368,10.2631578947368,2,83.9864943325958,0.87999097676517,8.68421052631579,1.99829816818237,0
+8115,0.00854450210569674,0.138504155124654,13.8504155124654,3,86.8291212644284,0.890750898430112,13.0193905817175,18.0900760746002,0
+8116,0.00767240472069965,0.0914127423822715,9.14127423822715,1,87.180691871343,0.918473351400181,9.14127423822715,37.3913515842322,25.977876663208
+8117,0.0173815207431856,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,40.5463838577271,31.6034507751465
+8118,0.0153717776715654,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,9.69679539544242,0
+8119,0.0188860969328337,0.171745152354571,17.1745152354571,4,80.341170377029,0.742877492877493,8.03324099722992,20.7014527936136,0
+8120,0.01438441355516,0.10803324099723,10.803324099723,2,81.4732833757986,0.810272336359293,6.09418282548476,10.1747383826818,0
+8121,0.0208184645372389,0.168975069252078,16.8975069252078,2,86.9523044688293,0.909182389937107,13.5734072022161,9.02315174947019,0
+8122,0.0250816656754499,0.194736842105263,19.4736842105263,5,82.0750992469144,0.732528908999497,10.2631578947368,8.80278917905447,0
+8123,0.0261059650532581,0.224376731301939,22.4376731301939,3,90.8984917596727,0.82093253968254,20.7756232686981,16.195138271944,0
+8124,0.0350373778282096,0.32409972299169,32.409972299169,6,84.6002565328439,0.741783946798639,11.9113573407202,34.7999660255563,0
+8125,0.000885471180312747,0.0609418282548476,6.09418282548476,2,77.9005287687227,0.874718028804442,5.54016620498615,20.5054385228591,0
+8126,0.00742987313705702,0.0368421052631579,3.68421052631579,3,60.6890396186355,0.688524590163934,2.36842105263158,9.85051509312221,5.19557523727417
+8127,0.0183343097143074,0.0831024930747922,8.31024930747922,4,75.1741302777884,0.710648005425735,6.37119113573407,5.77835567792257,0
+8128,0.0159848660726933,0.0526315789473684,5.26315789473684,5,58.1042885535614,0.599616858237548,2.49307479224377,12.9437349219071,5.19557523727417
+8129,0.019780724641557,0.0470914127423823,4.70914127423823,3,62.2367368656153,0.664186046511628,2.21606648199446,3.1828135322122,0
+8130,0.0190577783762771,0.0947368421052632,9.47368421052632,4,78.3601567675691,0.797480620155039,7.63157894736842,2.02050145467122,0
+8131,-0.000401090583202095,0.03601108033241,3.601108033241,3,58.9388410023078,0.654214559386973,1.93905817174515,8.39285230636597,5.19557523727417
+8132,0.0145910765001904,0.152354570637119,15.2354570637119,4,85.9814351794022,0.801307189542484,13.5734072022161,0.377860017256303,0
+8133,0.0223569409086582,0.326869806094183,32.6869806094183,4,89.2242254600693,0.805622860659205,25.4847645429363,1.50742429393833,0
+8134,0.0312048467063026,0.276315789473684,27.6315789473684,4,91.6213434270061,0.839153439153439,25,0.914357339768183,0
+8135,0.0312692024565668,0.260387811634349,26.0387811634349,3,89.0688718658634,0.782704654895666,20.7756232686981,1.85793060444771,0
+8136,0.0333920054225502,0.263157894736842,26.3157894736842,5,88.3030962452816,0.82436974789916,21.8836565096953,0.865660883250989,0
+8137,0.0234556814997722,0.193905817174515,19.3905817174515,6,86.0603413894485,0.768027267901545,16.6204986149584,2.85734190259661,0
+8138,0.0165329760810461,0.144736842105263,14.4736842105263,4,84.0280516372188,0.741538461538461,11.5789473684211,1.4561037497087,0
+8139,0.0121927242056941,0.038781163434903,3.8781163434903,6,38.8666891304194,0.375792507204611,1.10803324099723,10.1076455797468,0
+8140,0.013107249104826,0.0775623268698061,7.75623268698061,3,78.1888690965622,0.783183183183183,6.37119113573407,16.1651579141617,0
+8141,0.015191667606484,0.07202216066482,7.20221606648199,2,76.258001882847,0.816017473607572,3.8781163434903,21.1799531349769,15.5867252349854
+8142,0.01833821085699,0.0581717451523546,5.81717451523546,5,63.1925378284233,0.701378676470588,4.15512465373961,10.9942521821885,0
+8143,0.00154813234815887,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,10.9291697740555,7.34765291213989
+8144,-0.0097647045873308,0.0304709141274238,3.04709141274238,1,73.7293580723472,1,3.04709141274238,1.41697506471114,0
+8145,0.0157161220380346,0.130193905817175,13.0193905817175,4,77.7313972452049,0.770063694267516,5.54016620498615,8.67435380245777,0
+8146,0.00244046516614375,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.91280193236715,4.43213296398892,21.3768538534641,5.19557523727417
+8147,0.00504996963044457,0,0,0,NA,NA,0,NA,NA
+8148,-0.00443742442667295,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483
+8149,0.0016162476492614,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,20.7729297478994,14.6953058242798
+8150,0.0050489505427642,0.0332409972299169,3.32409972299169,4,47.8180922982314,0.513231080397775,1.38504155124654,41.8804653485616,22.0429573059082
+8151,0.00859611666257574,0.0447368421052632,4.47368421052632,1,79.8422589600986,0.874380165289256,4.47368421052632,51.9297985750086,41.5646018981934
+8152,0.00980545523297837,0.038781163434903,3.8781163434903,2,68.2444265778173,0.739913544668588,3.04709141274238,20.1359050273895,5.19557523727417
+8153,0.0225438049498918,0.177285318559557,17.7285318559557,3,83.9787521846811,0.77209595959596,7.75623268698061,18.8919895142317,0
+8154,0.0198570930985834,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,9.06812842686971,5.19557523727417
+8155,0.0139380337414734,0.0578947368421053,5.78947368421053,2,77.2296704048748,0.781465658889254,5,117.39284064553,74.9316482543945
+8156,0.0209044491940074,0.14404432132964,14.404432132964,1,90.9176337107231,0.894985636885931,14.404432132964,58.8232321372399,46.7601776123047
+8157,0.032168069823985,0.152354570637119,15.2354570637119,5,84.6872427469495,0.701960784313725,12.7423822714681,35.7355715231462,5.19557523727417
+8158,0.0234140935829832,0.127423822714681,12.7423822714681,3,85.9479413401655,0.720838420838421,11.3573407202216,15.6512814190077,10.3911504745483
+8159,0.0139575591020108,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.6034507751465,31.6034507751465
+8160,0.0205146206681597,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,30.9669109344482,15.5867252349854
+8161,0.01279189133783,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,13.1564826965332,11.6176595687866
+8162,-0.00492756759077487,0,0,0,NA,NA,0,NA,NA
+8163,0.0027389624932862,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707
+8164,0.0145160946846377,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,11.6176595687866,11.6176595687866
+8165,0.00597566470951329,0,0,0,NA,NA,0,NA,NA
+8166,0.0147031578292165,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,17.8134005410331,15.5867252349854
+8167,0.0135216633489204,0,0,0,NA,NA,0,NA,NA
+8168,0.0124288349443279,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,5.7335946559906,5.19557523727417
+8169,0.0195390310784956,0.0415512465373961,4.15512465373961,5,47.2392082911289,0.430898581187599,1.38504155124654,12.5695788701375,5.19557523727417
+8170,0.018403536066224,0.0554016620498615,5.54016620498615,4,61.8617877498402,0.556049569577145,2.21606648199446,9.06444010734558,5.19557523727417
+8171,0.0198408136965123,0.0526315789473684,5.26315789473684,3,66.9314238700582,0.625448028673835,2.89473684210526,9.04996318817139,5.19557523727417
+8172,0.0225172884574956,0.0914127423822715,9.14127423822715,4,74.0315638541575,0.714656729900632,5.54016620498615,48.1820541439634,14.6953058242798
+8173,0.0282968085738405,0.0443213296398892,4.43213296398892,4,57.1646508768228,0.564009661835749,1.93905817174515,70.222437620163,51.955753326416
+8174,0.0283484052587107,0.0886426592797784,8.86426592797784,3,81.6299417248626,0.683481412204817,7.4792243767313,61.3758742511272,5.19557523727417
+8175,0.0329564118163513,0.171052631578947,17.1052631578947,5,80.5821414712813,0.722432925972749,6.8421052631579,91.9043448814979,67.54248046875
+8176,0.0159303058135769,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,38.0784583091736,10.3911504745483
+8177,0.0165581457186513,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,31.168744246165,11.6176595687866
+8178,0.0161636510095269,0.0637119113573407,6.37119113573407,2,78.4572042150928,0.732988165680473,5.54016620498615,15.1193617945132,7.34765291213989
+8179,0.018246985553651,0.1,10,4,78.1163933984583,0.717813051146384,7.10526315789474,11.8523056883561,0
+8180,0.0078659751893094,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,52.0853176116943,51.955753326416
+8181,0.0163351761049218,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648
+8182,0.0238668278256117,0.0803324099722992,8.03324099722992,5,64.3053099743382,0.60670340938221,2.77008310249307,39.9097249261264,15.5867252349854
+8183,0.0181795870011755,0.0447368421052632,4.47368421052632,2,70.9013343646576,0.623140495867769,3.15789473684211,72.0340147579417,58.7812232971191
+8184,0.0191391159576677,0,0,0,NA,NA,0,NA,NA
+8185,0.0407017531125597,0.398891966759003,39.8891966759003,1,96.7592592592593,0.92438206954336,39.8891966759003,1.74680339627796,0
+8186,0.0414309816747503,0.349030470914127,34.9030470914127,3,94.6011782955143,0.879252996376475,33.7950138504155,4.39052110248142,0
+8187,0.0181608367454349,0.0868421052631579,8.68421052631579,4,70.4374327926953,0.73636460668161,3.42105263157895,38.8780313260628,0
+8188,0.0495248122203326,0.473684210526316,47.3684210526316,3,95.8407824305071,0.734603174603175,43.4903047091413,9.60916382527491,0
+8189,0.0255626741902505,0.157894736842105,15.7894736842105,5,75.2341030765362,0.697066326530612,4.98614958448753,22.7735579055652,0
+8190,0.0314734209420253,0.202216066481994,20.2216066481994,5,84.9021457151713,0.764973958333333,16.0664819944598,8.33404977354285,0
+8191,0.0480897015934093,0.394736842105263,39.4736842105263,4,92.1567065592384,0.819762845849802,27.8947368421053,7.63359735488892,0
+8192,0.0347721715916425,0.296398891966759,29.6398891966759,2,94.6804580285438,0.793806862225124,29.0858725761773,27.153698301761,0
+8193,0.0220601938951034,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,26.3117632336087,10.3911504745483
+8194,0.0498800209099091,0.481994459833795,48.1994459833795,3,96.2152043379137,0.741399703466773,45.4293628808864,8.18627472033446,0
+8195,0.0363801970001077,0.236842105263158,23.6842105263158,5,87.0536910068687,0.690726065538659,17.1052631578947,22.1440614700317,0
+8196,0.0181829165040273,0.038781163434903,3.8781163434903,3,58.3384192488095,0.687896253602305,1.93905817174515,62.9741156441825,36.369026184082
+8197,0.0302712609277541,0.138504155124654,13.8504155124654,4,79.6180881871815,0.781501796860223,7.4792243767313,42.8121333026886,7.34765291213989
+8198,0.0186449302083697,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,36.8686952590942,33.2679138183594
+8199,0.0217387848117644,0.0842105263157895,8.42105263157895,4,77.6187969894941,0.685013262599469,6.57894736842105,29.0722723603249,5.19557523727417
+8200,0.0270512216788418,0.187134502923977,18.7134502923977,3,86.4939927692422,0.769334532374101,11.6959064327485,16.5346887037158,0
+8201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8206,-0.00425340285401035,0.0125,1.25,2,0,1,0.625,11.0044050216675,10.3911504745483
+8207,0.0327391932785088,0.273684210526316,27.3684210526316,2,93.0716545094452,0.911648453847942,25.7894736842105,17.8941188821426,5.19557523727417
+8208,0.00903650056782824,0.0263157894736842,2.63157894736842,6,29.5837072570568,0.288981288981289,1.05263157894737,10.5808192253113,5.19557523727417
+8209,0.00592115923944603,0.0157894736842105,1.57894736842105,3,30.8730773315672,0.419404125286478,0.526315789473684,9.72963937123617,5.19557523727417
+8210,0.0148339724033531,0.1525,15.25,3,85.0136899242795,0.855290254355207,9.5,17.1937836662668,0
+8211,0.000204858066679567,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,12.291096496582,10.3911504745483
+8212,0.00894082681531329,0.0868421052631579,8.68421052631579,2,81.6304356083827,0.878322126160743,7.10526315789474,9.09686519160415,0
+8213,-0.0270337283731734,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,6.27161407470703,5.19557523727417
+8214,-0.00267284333777582,0.02,2,2,54.1958020619036,0.795918367346939,1.5,10.5487326383591,5.19557523727417
+8215,0.0123936858440605,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,73.4765319824219,73.4765319824219
+8216,0.0127381855970163,0.0315789473684211,3.15789473684211,3,54.7407307068637,0.635549872122762,1.84210526315789,33.0625456174215,25.977876663208
+8217,0.0202205923067691,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,47.7575210571289,41.5646018981934
+8218,-0.00627395779385552,0,0,0,NA,NA,0,NA,NA
+8219,0.0111197163736506,0.165789473684211,16.5789473684211,3,90.3685262824463,0.803842844852309,16.0526315789474,26.6881948804098,0
+8220,0.0152577761784701,0.0894736842105263,8.94736842105263,3,77.6930228931192,0.784269199009083,4.47368421052632,11.8030857338625,0
+8221,0.0187494198351296,0.131578947368421,13.1578947368421,4,80.6303924913341,0.715508021390374,7.10526315789474,11.076942949295,0
+8222,0.030912377848972,0.2375,23.75,7,80.8427230178312,0.753134040501447,12.25,14.2111752309297,0
+8223,0.0311429684629131,0.257894736842105,25.7894736842105,4,86.4916870435398,0.701402321083172,11.0526315789474,13.1528366098599,0
+8224,0.0320718884661466,0.228947368421053,22.8947368421053,7,78.8984749705974,0.690410657271826,11.5789473684211,14.4009500262381,0
+8225,0.0502104526372645,0.407894736842105,40.7894736842105,2,95.4726807358748,0.928888888888889,38.4210526315789,3.71072769472676,0
+8226,0.0155485474898887,0.05,5,3,68.6087770760993,0.728353140916808,2.75,5.13823473453522,0
+8227,0.0203357569660033,0.0394736842105263,3.94736842105263,4,58.1757341906346,0.526774595267746,2.36842105263158,1.38548672993978,0
+8228,0.0644844268467032,0.465789473684211,46.5789473684211,2,97.162970606158,0.862611289374972,46.3157894736842,36.2110088396881,0
+8229,0.0673426790390007,0.513157894736842,51.3157894736842,4,96.4305016598052,0.807077796028072,49.2105263157895,35.2033782958984,5.19557523727417
+8230,0.0824993263717624,0.725,72.5,2,98.8070175438596,0.926605504587156,72.25,8.92260460031444,0
+8231,0.035442624572591,0.221052631578947,22.1052631578947,5,82.6496648546485,0.801832033375658,14.2105263157895,1.16457749548413,0
+8232,0.0444319602944521,0.415789473684211,41.578947368421,4,94.5022704991078,0.76390183286735,36.8421052631579,2.22329830217965,0
+8233,0.0487521700401741,0.468421052631579,46.8421052631579,3,93.5449321956749,0.857052574558368,38.6842105263158,1.75839982943588,0
+8234,0.0676459285956662,0.64,64,2,96.2646548070386,0.855324074074074,47,0.492009622976184,0
+8235,0.0465704951312785,0.410526315789474,41.0526315789474,5,92.7097472351913,0.781296665007466,31.8421052631579,0.133219877878825,0
+8236,0.0532952296765105,0.547368421052632,54.7368421052632,1,98.0985995211112,0.81731867075296,54.7368421052632,0.374680906534195,0
+8237,0.0393955418823201,0.444736842105263,44.4736842105263,2,95.3803521891754,0.757564710171345,35.5263157894737,0.399659633636475,0
+8238,0.0260340796102537,0.385,38.5,3,94.0492953794859,0.770174380189032,33,0.371112516948155,0
+8239,0.0163770373580184,0.157894736842105,15.7894736842105,4,83.4496077049351,0.840144230769231,7.63157894736842,1.28403681119283,0
+8240,0.0351423833438227,0.265789473684211,26.5789473684211,3,93.4224404899692,0.924750985168023,26.0526315789474,0.844369123477747,0
+8241,0.0093926135119737,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,10.3911504745483,10.3911504745483
+8242,0.00193232426072906,0.0210526315789474,2.10526315789474,4,32.7688970276549,0.387096774193548,0.789473684210526,10.9667873382568,5.19557523727417
+8243,0.00582746228821634,0.055,5.5,2,75.4723138330214,0.813258636788049,4.25,0,0
+8244,0.0198387551896686,0.263157894736842,26.3157894736842,2,90.9336801906851,0.766269841269841,16.5789473684211,1.23802385807037,0
+8245,-0.00212574385136816,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,0.865929206212362,0
+8246,0.0071838756271494,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,10.0883189837138,5.19557523727417
+8247,0.00140359153649115,0.035,3.5,3,61.1402003316142,0.585492227979275,2.25,12.4184789998191,5.19557523727417
+8248,0.00871517653655533,0.0868421052631579,8.68421052631579,2,85.1021644588231,0.83776283488099,8.42105263157895,11.4668428392121,5.19557523727417
+8249,0.00646679047676308,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+8250,0.0125592298887425,0.0210526315789474,2.10526315789474,2,52.703639668815,0.591397849462366,1.05263157894737,2.8667973279953,0
+8251,0.0115334760704536,0.1075,10.75,4,76.9535047823736,0.735449735449735,6.25,3.24160722244618,0
+8252,0.0214190188795663,0.197368421052632,19.7368421052632,4,87.0841856166514,0.811227024341779,16.5789473684211,1.97284364700317,0
+8253,0.0133582620243894,0.0894736842105263,8.94736842105263,4,74.2326899348889,0.764657308009909,4.47368421052632,66.265580738292,22.0429573059082
+8254,0.0492391955766116,0.505263157894737,50.5263157894737,1,97.8001642001142,0.960255797274683,50.5263157894737,32.7417240291834,0
+8255,0.0166536458940209,0.095,9.5,1,88.1872188283408,0.807068315355608,9.5,61.1325013010125,51.955753326416
+8256,0.0190258654828779,0.0394736842105263,3.94736842105263,5,47.442941411416,0.526774595267746,1.57894736842105,110.140044148763,77.2377777099609
+8257,0.0244339509171703,0.0421052631578947,4.21052631578947,3,66.1150507132842,0.521520146520146,2.89473684210526,78.6832756996155,0
+8258,0.0300124313611856,0.157894736842105,15.7894736842105,4,78.8071306777521,0.600360576923077,5.78947368421053,9.18181095123291,0
+8259,0.0239369481560425,0.0825,8.25,3,76.6199248139065,0.717428600262388,4.75,27.803030909914,5.19557523727417
+8260,0.0322014159463211,0.134210526315789,13.4210526315789,3,86.7093196379864,0.907067742724383,12.6315789473684,13.7650905122944,0
+8261,0.0114083994540411,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,18.4962019920349,15.5867252349854
+8262,-0.00839767780554738,0,0,0,NA,NA,0,NA,NA
+8263,0.00274729351070164,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,9.78928195105659,0
+8264,0.00439365227520236,0,0,0,NA,NA,0,NA,NA
+8265,0.0015646918011929,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+8266,-0.00769394720409764,0,0,0,NA,NA,0,NA,NA
+8267,-0.000224418431262166,0.0025,0.25,1,0,NA,0.25,10.3911504745483,10.3911504745483
+8268,0.0144503627289515,0.0736842105263158,7.36842105263158,4,75.1980308680119,0.76010101010101,6.05263157894737,21.9070350783212,10.3911504745483
+8269,0.0126891086225783,0.0342105263157895,3.42105263157895,2,65.8795495860188,0.769906145927944,2.36842105263158,20.9531814868634,11.6176595687866
+8270,0.0258966648693068,0.171052631578947,17.1052631578947,4,80.16435228943,0.690405955892682,7.36842105263158,22.9404246697059,5.19557523727417
+8271,0.0197618911525205,0.0425,4.25,6,50.1789569044469,0.456919060052219,2,5.46646322923548,0
+8272,0.025864790199835,0.0736842105263158,7.36842105263158,5,66.680694537207,0.640151515151515,4.47368421052632,23.5770545346396,11.6176595687866
+8273,0.0248341618055508,0.0605263157894737,6.05263157894737,5,60.3968302371823,0.586056644880174,3.15789473684211,37.9722074011098,14.6953058242798
+8274,0.024500787261633,0.0947368421052632,9.47368421052632,5,72.700797138076,0.668604651162791,6.31578947368421,35.7672662205166,10.3911504745483
+8275,0.0251994363228732,0.075,7.5,3,77.9481162997755,0.735245449531164,5.75,88.9125241597494,77.9336318969727
+8276,0.0195784819471316,0.0394736842105263,3.94736842105263,1,78.1912368413851,1,3.94736842105263,51.955753326416,46.7601776123047
+8277,0.0256836303545481,0.0789473684210526,7.89473684210526,4,72.2278532417219,0.711953352769679,3.68421052631579,35.577922185262,20.7823009490967
+8278,0.0215399665500292,0.102631578947368,10.2631578947368,6,67.9233848785058,0.657117076471915,4.21052631578947,18.7342281341553,5.19557523727417
+8279,0.0200670515502679,0.085,8.5,5,71.8018153446168,0.590163934426229,4,26.5239503383636,7.34765291213989
+8280,0.0178583291045614,0.0447368421052632,4.47368421052632,4,59.3047841340169,0.623140495867769,2.63157894736842,22.9037988326129,5.19557523727417
+8281,0.0268862553746179,0.0842105263157895,8.42105263157895,6,66.4273672873301,0.601016799292661,4.47368421052632,41.67182970047,18.7329120635986
+8282,0.0213817651010638,0.0578947368421053,5.78947368421053,4,64.5971123937894,0.687808084127506,3.15789473684211,25.1786066835577,5.19557523727417
+8283,0.0203680303201145,0.07,7,3,70.6944089600498,0.73715651135006,3.25,48.8915661743709,5.19557523727417
+8284,0.0161968532706546,0.0210526315789474,2.10526315789474,1,68.1401783345986,1,2.10526315789474,106.662143707275,103.911506652832
+8285,0.0328004964201491,0.236842105263158,23.6842105263158,2,93.2886843435276,0.869779396016278,23.1578947368421,1.15457227494982,0
+8286,0.039763350317126,0.307894736842105,30.7894736842105,2,93.5025028521781,0.809168519979913,26.8421052631579,13.0939899509789,0
+8287,0.0243119705738718,0.08,8,3,74.8529546757117,0.749163879598662,3.75,82.8536612987518,31.6034507751465
+8288,0.0485600018227782,0.439473684210526,43.9473684210526,4,93.9754800447434,0.76251448082434,37.1052631578947,11.313285647752,0
+8289,0.0335526414845127,0.242105263157895,24.2105263157895,4,87.2916037794373,0.855182926829268,16.8421052631579,4.82912286986475,0
+8290,0.0374518794729451,0.292105263157895,29.2105263157895,4,90.9720248948318,0.773977695167286,22.3684210526316,7.96948416168625,0
+8291,0.0286915560883472,0.2125,21.25,4,89.2897371281731,0.798170923998739,18.25,1.86202330308802,0
+8292,0.0258145977136576,0.131578947368421,13.1578947368421,7,76.6408152472122,0.661319073083779,8.68421052631579,20.8643436336517,0
+8293,0.0115490358913743,0.068421052631579,6.84210526315789,6,61.4854451358693,0.633457351522668,3.15789473684211,6.04206794958848,0
+8294,0.0593219942271581,0.542105263157895,54.2105263157895,2,97.3359584819239,0.857447255484529,52.6315789473684,5.51513599192055,0
+8295,0.029602773956085,0.1675,16.75,3,84.9248034822412,0.835733169066502,11.5,37.9857810006213,21.4219055175781
+8296,0.024665052958804,0.0973684210526316,9.73684210526316,4,77.7121450218695,0.745734359317497,7.36842105263158,37.14437783731,5.19557523727417
+8297,0.0402734636049564,0.360526315789474,36.0526315789474,6,90.5833042023986,0.774814814814815,29.4736842105263,7.04950544259844,0
+8298,0.0156757312434102,0.0605263157894737,6.05263157894737,7,55.9985081890579,0.438219732337379,2.36842105263158,23.9173589167388,0
+8299,0.0264353439156912,0.115,11.5,5,74.8553753913033,0.681297986382732,4.75,35.0183495127636,5.19557523727417
+8300,0.0178311406336939,0.0472222222222222,4.72222222222222,4,58.1395731676383,0.580174927113703,2.22222222222222,13.1882757018594,5.19557523727417
+8301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8306,-0.00461015191907982,0.0328947368421053,3.28947368421053,1,60.1581072775551,0.586394557823129,3.28947368421053,10.2730545043945,5.19557523727417
+8307,-0.0053835698993597,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,8.39558993445502,5.19557523727417
+8308,0.0106823140142392,0.0221606648199446,2.21606648199446,3,42.742818892036,0.488668555240793,1.10803324099723,12.3813771605492,5.19557523727417
+8309,0.00328502317098957,0,0,0,NA,NA,0,NA,NA
+8310,0.00653040566924717,0.0342105263157895,3.42105263157895,5,45.7021892786035,0.539812291855889,1.57894736842105,6.32598337760338,0
+8311,-0.00693032635225541,0,0,0,NA,NA,0,NA,NA
+8312,0.00450885682472199,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,0.74222503389631,0
+8313,0.00189091657176149,0.0609418282548476,6.09418282548476,4,68.6291964806148,0.686795072011105,4.43213296398892,13.0426923578436,0
+8314,0.0146395794732981,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,16.328950881958,10.3911504745483
+8315,0.00964054815710856,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,7.64479287465413,5.19557523727417
+8316,0.014056452482675,0.0415512465373961,4.15512465373961,5,51.223012502127,0.525748817656332,2.21606648199446,21.2530798912048,0
+8317,0.0192937811261195,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,50.6568584442139,36.369026184082
+8318,0.000574749677080514,0,0,0,NA,NA,0,NA,NA
+8319,-0.0153799513037607,0.102493074792244,10.2493074792244,3,83.2062752780775,0.780813600485732,9.14127423822715,78.9712593491013,37.4658241271973
+8320,0.0233317906720792,0.0941828254847645,9.41828254847645,5,70.6222264577846,0.724006116207951,4.98614958448753,25.7024132644429,0
+8321,0.0217590846507058,0.0249307479224377,2.49307479224377,5,32.552344135708,0.316287878787879,1.10803324099723,8.98293214374118,0
+8322,0.0186181471844305,0.0552631578947368,5.52631578947368,7,52.4183366127016,0.404596100278552,2.10526315789474,67.9802918207078,41.5646018981934
+8323,0.0458452778084267,0.349030470914127,34.9030470914127,2,95.3097045556137,0.919501997584317,34.3490304709141,36.6255548076024,7.34765291213989
+8324,0.0204801027916461,0.0581717451523546,5.81717451523546,4,67.7041561020636,0.668198529411765,4.15512465373961,5.83302059627715,0
+8325,0.027826819097205,0.10803324099723,10.803324099723,5,76.1563693514358,0.672288580984233,6.64819944598338,12.9223281175662,0
+8326,0.0156910793372893,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+8327,0.0223384593373893,0.0526315789473684,5.26315789473684,5,56.7273607461559,0.563218390804598,2.77008310249307,6.45215021936517,0
+8328,0.0887315510049813,0.764542936288089,76.4542936288089,3,97.3099834619358,0.713036565977743,69.2520775623269,13.8084101746048,0
+8329,0.0736694667905384,0.720221606648199,72.0221606648199,2,96.4845086300406,0.706426494805538,51.8005540166205,16.5321552826808,0
+8330,0.0735707291892092,0.673684210526316,67.3684210526316,2,96.6219962431057,0.827620967741935,57.1052631578947,1.22054330632091,0
+8331,0.038185080208695,0.210526315789474,21.0526315789474,5,83.216465726656,0.754228855721393,12.1883656509695,1.02544248104095,0
+8332,0.0392072794707334,0.310249307479224,31.0249307479224,6,85.2257869495033,0.770328840112927,19.9445983379501,1.34062053476061,0
+8333,0.0398405344878327,0.271468144044321,27.1468144044321,3,92.935998217181,0.867417041133771,26.0387811634349,0,0
+8334,0.035270043264537,0.234210526315789,23.421052631579,1,94.2341300741174,0.860381681039141,23.4210526315789,0.175131749571039,0
+8335,0.0318837774719319,0.268698060941828,26.8698060941828,5,85.7852517625531,0.67779083942877,13.5734072022161,0,0
+8336,0.0217723796096804,0.274238227146814,27.4238227146814,3,91.1058542207376,0.837443176944849,23.8227146814404,0.389102063997827,0
+8337,-0.0227907578034755,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,33.7712388038635,25.977876663208
+8338,0.0233407931919685,0.0657894736842105,6.57894736842105,7,52.6139235382429,0.464788732394366,2.10526315789474,1.83475028991699,0
+8339,0.0168927960334651,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,8.86940169334412,7.34765291213989
+8340,0.109578125292891,0.686980609418283,68.6980609418283,1,98.8527710749899,0.986229783338419,68.6980609418283,3.01460500686399,0
+8341,0.0345350284184364,0.304709141274238,30.4709141274238,1,95.4912282246299,0.862679933532203,30.4709141274238,1.01144688779658,0
+8342,0.0112778194751907,0.0803324099722992,8.03324099722992,3,77.7093668552443,0.699243783645219,6.37119113573407,15.5450531203171,0
+8343,0.0207526133272232,0.157894736842105,15.7894736842105,1,91.7992580895076,0.908653846153846,15.7894736842105,7.6998522122701,0
+8344,0.0413708460126704,0.326869806094183,32.6869806094183,4,90.8417043995412,0.750086535133264,19.9445983379501,0.989744255098246,0
+8345,0.0465230954304844,0.429362880886427,42.9362880886427,4,93.8186060386926,0.754045307443366,36.5650969529086,0.686443042755127,0
+8346,0.0138536285648218,0.0470914127423823,4.70914127423823,3,62.9408196473215,0.664186046511628,2.49307479224377,12.886913467856,5.19557523727417
+8347,0.0104428096622781,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,28.8954658508301,21.4219055175781
+8348,0.0154639507621562,0.0332409972299169,3.32409972299169,3,57.8159175945309,0.513231080397775,1.93905817174515,27.023758093516,18.7329120635986
+8349,0.017462476364571,0.105263157894737,10.5263157894737,4,73.9556624332146,0.645191409897292,4.15512465373961,13.5369493961334,0
+8350,0.0355243153671055,0.221606648199446,22.1606648199446,3,88.3359064265405,0.791915192220941,18.5595567867036,8.24141406416893,0
+8351,0.0289415815518551,0.0315789473684211,3.15789473684211,4,46.2006860361741,0.453324808184143,1.05263157894737,6.49446900685628,0
+8352,0.018326070795796,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.956400966183575,4.43213296398892,6.72870808839798,0
+8353,0.024499148647675,0.0914127423822715,9.14127423822715,4,73.4183920522793,0.755420054200542,6.37119113573407,79.4877569025213,52.2148818969727
+8354,0.0406847542462276,0.346260387811634,34.6260387811634,2,94.8161536679037,0.838273725080266,32.9639889196676,45.9266598854065,0
+8355,0.0206892401489313,0.0578947368421053,5.78947368421053,3,77.2322533193378,0.719027275714755,5.26315789473684,72.3952617645264,51.955753326416
+8356,0.0242327662933633,0.0637119113573407,6.37119113573407,3,72.0147778795119,0.762656147271532,4.70914127423823,159.250920171323,106.983444213867
+8357,0.0300137581010017,0.163434903047091,16.3434903047091,1,91.8133927298019,0.800772626931567,16.3434903047091,101.2548850108,86.4716033935547
+8358,0.0209101802084809,0.0637119113573407,6.37119113573407,2,74.4571577349407,0.732988165680473,3.32409972299169,18.5163032075633,5.19557523727417
+8359,0.018643358061926,0.0342105263157895,3.42105263157895,5,45.477145146961,0.424765364819861,1.31578947368421,46.11315037654,20.7823009490967
+8360,0.0189474139561221,0.0554016620498615,5.54016620498615,5,61.9840106350921,0.487749503358244,3.04709141274238,30.3589481830597,0
+8361,0.0182012039367692,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,22.5141595204671,20.7823009490967
+8362,0.00472618460250318,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.494397759103641,1.10803324099723,12.0804438591003,10.3911504745483
+8363,-0.00166338306189094,0,0,0,NA,NA,0,NA,NA
+8364,0.00160463606674364,0,0,0,NA,NA,0,NA,NA
+8365,-0.000790869200817752,0,0,0,NA,NA,0,NA,NA
+8366,-0.0218714175103626,0,0,0,NA,NA,0,NA,NA
+8367,0.0143383717942542,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,12.148217022419,7.34765291213989
+8368,0.0139264172826906,0,0,0,NA,NA,0,NA,NA
+8369,0.0120700220356847,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,13.9895996366228,5.19557523727417
+8370,0.019298273130786,0.074792243767313,7.4792243767313,4,71.4743019617963,0.698370700459546,5.26315789473684,5.10767452805131,0
+8371,0.0195088082898828,0.05,5,4,66.2765045191667,0.745916515426497,3.94736842105263,5.76011416786595,0
+8372,0.0260170560067009,0.0692520775623269,6.92520775623269,6,58.9052986365015,0.543377976190476,3.04709141274238,37.9347257995605,15.5867252349854
+8373,0.0240275207952915,0.0637119113573407,6.37119113573407,4,65.8761300901673,0.643984220907298,3.601108033241,59.9936063185982,30.2951488494873
+8374,0.0264848764735716,0.132963988919668,13.2963988919668,5,83.8171747712194,0.690563391256916,11.3573407202216,10.948192636172,0
+8375,0.0249518596214521,0.102631578947368,10.2631578947368,4,77.1064981504738,0.691405368824724,6.05263157894737,85.1836581107898,59.2386741638184
+8376,0.0215389232117531,0.0775623268698061,7.75623268698061,2,81.6098385780591,0.879546212879546,7.20221606648199,77.4076548985073,65.7194061279297
+8377,0.00699474330939063,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,56.5955619812012,47.9008369445801
+8378,0.0269873142777472,0.185595567867036,18.5595567867036,6,86.3439144278323,0.748124890982034,15.7894736842105,11.7491809289847,0
+8379,0.027843651307615,0.068421052631579,6.84210526315789,3,71.1440576938078,0.738183822516191,3.94736842105263,33.9534846819364,11.6176595687866
+8380,0.0190787905794372,0.0221606648199446,2.21606648199446,4,32.8149929723314,0.386402266288952,0.831024930747922,13.9130883812904,7.34765291213989
+8381,0.0202808031433537,0.10803324099723,10.803324099723,7,71.2631614866944,0.637792642140468,6.64819944598338,77.8730963193453,25.977876663208
+8382,0.0196554464959177,0.0498614958448753,4.98614958448753,4,59.1838031937908,0.571212612028939,1.93905817174515,138.437603844537,97.0613555908203
+8383,0.0209204206923268,0.0605263157894737,6.05263157894737,5,58.9642895567449,0.497354497354497,1.84210526315789,146.649748760721,125.664199829102
+8384,0.0181211244056602,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,24.5777851451527,20.7823009490967
+8385,0.0283356277452533,0.166204986149584,16.6204986149584,3,89.5503852483807,0.803954766164069,15.7894736842105,1.83673129081726,0
+8386,0.0343744903511027,0.157894736842105,15.7894736842105,5,82.5299403325049,0.672831632653061,11.3573407202216,12.2161566500078,0
+8387,0.0200100792038843,0.0710526315789474,7.10526315789474,4,71.2369684966215,0.699584952895448,3.42105263157895,58.9391381299054,25.977876663208
+8388,0.0307617580383975,0.149584487534626,14.9584487534626,7,74.4489719623446,0.68389898777626,7.75623268698061,7.49480766720242,0
+8389,0.0308801686019012,0.18005540166205,18.005540166205,4,84.0762973097001,0.805728294666348,9.41828254847645,3.03400948597835,0
+8390,0.0277834836319182,0.135734072022161,13.5734072022161,4,80.944653228699,0.73828601953602,8.86426592797784,6.04377639536955,0
+8391,0.0468807345911046,0.434210526315789,43.4210526315789,5,91.5750181154549,0.744186046511628,21.0526315789474,5.45239828283137,0
+8392,0.0231983784155761,0.174515235457064,17.4515235457064,6,79.3007477258276,0.581513117754728,9.41828254847645,3.31878836192782,0
+8393,0.0368143192953894,0.227146814404432,22.7146814404432,7,82.2778395735907,0.678754171301446,13.5734072022161,11.4929707341078,0
+8394,0.0458789753612006,0.462603878116344,46.2603878116343,3,93.9838771804433,0.848959030660062,30.7479224376731,4.38955957732515,0
+8395,0.0260493511194287,0.131578947368421,13.1578947368421,4,75.8080758745551,0.729055258467023,5.52631578947368,7.08643887519836,0
+8396,0.0263358364733458,0.213296398891967,21.3296398891967,4,86.5472919695827,0.813069594034797,16.0664819944598,4.62793539716052,0
+8397,0.0435704701148629,0.409972299168975,40.9972299168975,2,96.49575403876,0.862411863555255,40.7202216066482,3.29274754910856,0
+8398,0.032191762124405,0.224376731301939,22.4376731301939,6,83.688782485334,0.623958333333333,10.5263157894737,28.3767342214231,5.19557523727417
+8399,0.0392581808700159,0.294736842105263,29.4736842105263,6,89.8334675791531,0.75432244717009,22.3684210526316,11.0304972146239,0
+8400,0.030941240161852,0.178362573099415,17.8362573099415,7,77.8242966783672,0.598133351238837,7.60233918128655,25.0745568353622,0
+8401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8406,-0.00359299456230426,0,0,0,NA,NA,0,NA,NA
+8407,0.00201807650138458,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,11.9642436504364,5.19557523727417
+8408,0.00374178811060855,0,0,0,NA,NA,0,NA,NA
+8409,-0.00278035449703092,0.0304709141274238,3.04709141274238,2,65.4820625454678,0.587428571428571,2.49307479224377,6.9196945103732,5.19557523727417
+8410,-0.0109752478560519,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483
+8411,-0.00652834855355043,0,0,0,NA,NA,0,NA,NA
+8412,0.0156457890959833,0.0581717451523546,5.81717451523546,7,48.6312665871251,0.502297794117647,1.66204986149584,6.0137882232666,0
+8413,0.00901687351797792,0.0415512465373961,4.15512465373961,6,43.8273303481587,0.478323699421965,1.66204986149584,9.45614194869995,0
+8414,0.0147582188988472,0.0657894736842105,6.57894736842105,7,58.5765292357242,0.598591549295775,3.94736842105263,13.9141012001038,5.19557523727417
+8415,0.0196245193766518,0.174515235457064,17.4515235457064,5,80.2569450444624,0.768730933496034,10.5263157894737,8.08497984447176,0
+8416,0.0231289003188515,0.0997229916897507,9.97229916897507,2,80.9259094401896,0.833384615384615,6.37119113573407,18.6051718526416,5.19557523727417
+8417,0.0176906026932466,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,45.3998228708903,20.7823009490967
+8418,0.0192824123071516,0.0236842105263158,2.36842105263158,3,48.3998322391164,0.658580413297394,1.57894736842105,103.601887173123,94.0958709716797
+8419,0.0216947908377524,0.149584487534626,14.9584487534626,4,81.3460330061847,0.797695352176806,10.803324099723,74.6426825699983,18.7329120635986
+8420,0.0172740781700388,0.0415512465373961,4.15512465373961,3,59.0579738584608,0.620599054125066,1.66204986149584,29.4867441177368,14.6953058242798
+8421,0.019749356151438,0.0304709141274238,3.04709141274238,3,58.0245725145703,0.587428571428571,2.21606648199446,5.39121866226196,0
+8422,0.00785308140483195,0.05,5,6,48.8428355762865,0.41923774954628,1.31578947368421,75.7668487147281,51.955753326416
+8423,0.0191795168357203,0.213296398891967,21.3296398891967,2,92.8023418028033,0.841109154929577,21.0526315789474,23.9203288400328,0
+8424,0.0189598177889732,0.0526315789473684,5.26315789473684,4,58.7387247508835,0.636015325670498,2.21606648199446,3.00796461105347,0
+8425,0.0374545419495448,0.25207756232687,25.207756232687,2,92.5759145760243,0.859693644261545,23.8227146814404,11.5251645779872,0
+8426,0.0230163394409733,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,0,0
+8427,0.0051384085610427,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,32.5712966918945,23.2353191375732
+8428,0.0773299411873603,0.620498614958449,62.0498614958449,3,96.1021693670403,0.691108161911082,49.0304709141274,22.6761770078114,0
+8429,0.087017432054696,0.700831024930748,70.0831024930748,1,98.9193346356796,0.809599156118144,70.0831024930748,9.7199298553316,0
+8430,0.0564115943471399,0.573684210526316,57.3684210526316,3,95.6542583066525,0.757343550446999,44.2105263157895,0.771132112643041,0
+8431,0.0700862537708107,0.631578947368421,63.1578947368421,1,98.56496811549,0.79563025210084,63.1578947368421,2.11009636050776,0
+8432,0.0594342224495976,0.617728531855956,61.7728531855956,2,95.9865031116428,0.861656911928651,50.9695290858726,0.13979126198944,0
+8433,0.0573388024870502,0.592797783933518,59.2797783933518,2,97.4462228020962,0.759358014562609,57.0637119113573,0.64129455067287,0
+8434,0.00653159406524118,0.0868421052631579,8.68421052631579,1,87.058227229868,0.878322126160743,8.68421052631579,0.157441673856793,0
+8435,0.00844461184500174,0.157894736842105,15.7894736842105,2,90.5196246862467,0.854591836734694,15.5124653739612,0,0
+8436,0.0431349602888651,0.512465373961219,51.2465373961219,2,97.416277390058,0.778093434343434,50.6925207756233,2.52814977748974,0
+8437,0.0356056567366257,0.398891966759003,39.8891966759003,3,92.757986159036,0.84876413908672,25.7617728531856,17.5193985899289,0
+8438,0.0123279845924883,0.0815789473684211,8.1578947368421,6,62.8819643643924,0.54269340974212,2.89473684210526,0.167599201202393,0
+8439,0.0260151858080596,0.135734072022161,13.5734072022161,3,81.7099644584547,0.73828601953602,6.64819944598338,0.106032147699473,0
+8440,0.112347553627323,0.814404432132964,81.4404432132964,1,99.3994305406243,0.912310059107716,81.4404432132964,0.254728336723483,0
+8441,0.0495353534798417,0.39612188365651,39.612188365651,3,93.0148519482979,0.804065410743049,34.3490304709141,2.61518258648319,0
+8442,0.0189390131234283,0.168975069252078,16.8975069252078,4,84.3781993536227,0.807012578616352,13.0193905817175,1.41816049325662,0
+8443,0.0174496272138353,0.173684210526316,17.3684210526316,2,91.1431245513889,0.957906397119911,17.1052631578947,25.428696863579,5.19557523727417
+8444,0.0335867952839523,0.168975069252078,16.8975069252078,5,79.7691884096286,0.704842767295598,8.31024930747922,0,0
+8445,0.0243460906756083,0.14404432132964,14.404432132964,7,71.2578701886628,0.645576524490018,5.26315789473684,0.599489450454712,0
+8446,0.0374669963040859,0.329639889196676,32.9639889196676,3,88.9401118332031,0.737565044383226,13.8504155124654,0.698564737784762,0
+8447,0.0046041345627983,0.136842105263158,13.6842105263158,4,80.2501761908653,0.713620169909564,9.21052631578947,0.940620284814101,0
+8448,0.00586668806161197,0.0277008310249307,2.77008310249307,3,50.9159793672456,0.60442691211922,1.66204986149584,1.55867257118225,0
+8449,0.011970752197072,0.0775623268698061,7.75623268698061,3,73.0599516916248,0.68682015348682,5.26315789473684,3.41687256949288,0
+8450,0.0254505519925132,0.168975069252078,16.8975069252078,8,73.1883556682634,0.648081761006289,4.98614958448753,5.08733203762867,0
+8451,0.0272597103614412,0.184210526315789,18.4210526315789,7,78.0793236134406,0.681091004458432,7.10526315789474,4.52850916726249,0
+8452,0.0182031817641367,0.0415512465373961,4.15512465373961,3,61.6347950212909,0.573173935890699,2.49307479224377,9.23090279897054,5.19557523727417
+8453,0.0108100635743968,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,37.8301730155945,29.3906116485596
+8454,0.0158857983696485,0.0803324099722992,8.03324099722992,5,68.8289008053298,0.699243783645219,5.26315789473684,10.7394819588497,0
+8455,0.0206809152536918,0.0342105263157895,3.42105263157895,2,67.0201477040538,0.884953072963972,2.89473684210526,59.5133332472581,49.28955078125
+8456,0.0222938615246112,0.0470914127423823,4.70914127423823,2,70.2294374596475,0.832093023255814,3.601108033241,174.375058342429,162.398101806641
+8457,0.0293395395462925,0.0470914127423823,4.70914127423823,4,61.8484003846717,0.706162790697674,3.32409972299169,99.4951427684111,88.9339218139648
+8458,0.0181341136090382,0.03601108033241,3.601108033241,2,64.5560838458797,0.654214559386973,2.21606648199446,7.38519389812763,0
+8459,0.0283531568739866,0.113157894736842,11.3157894736842,6,74.8410262699946,0.765084075173096,8.1578947368421,54.01860623027,0
+8460,0.0240586642271045,0.0609418282548476,6.09418282548476,4,64.5466105890473,0.624154086413326,3.04709141274238,17.7328186902133,0
+8461,0.0190171264528776,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,19.1582636833191,5.19557523727417
+8462,0.00540158251307549,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,32.1339263916016,27.9790287017822
+8463,0.00218289199463344,0,0,0,NA,NA,0,NA,NA
+8464,-0.00756516564826718,0,0,0,NA,NA,0,NA,NA
+8465,-0.00888496349976283,0,0,0,NA,NA,0,NA,NA
+8466,0.00435676587935166,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,27.6370224952698,14.6953058242798
+8467,0.00581338725744564,0.0289473684210526,2.89473684210526,2,60.5719561857418,0.588075880758808,1.57894736842105,19.1411358226429,15.5867252349854
+8468,0.0149579144078348,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648
+8469,0.0162889000374652,0.038781163434903,3.8781163434903,2,72.2708465875433,0.79193083573487,3.601108033241,16.6908573423113,10.3911504745483
+8470,0.0222965871087939,0.119113573407202,11.9113573407202,5,75.8718494404563,0.747728860936408,8.03324099722992,18.1717306957688,0
+8471,0.0188978077188183,0.0736842105263158,7.36842105263158,4,74.1317909196491,0.736111111111111,5.78947368421053,8.24076877321516,0
+8472,0.0219385866796094,0.0692520775623269,6.92520775623269,3,70.1356594586321,0.677678571428571,4.15512465373961,23.5169995307922,7.34765291213989
+8473,0.0201525317711571,0.0554016620498615,5.54016620498615,4,67.0110355751799,0.590199602686595,3.601108033241,9.48902604579926,0
+8474,0.0189406321530096,0.03601108033241,3.601108033241,2,68.4014764340965,0.769476372924649,3.04709141274238,15.3462686538696,5.19557523727417
+8475,0.025230374319845,0.0947368421052632,9.47368421052632,2,80.47521303084,0.815891472868217,5.52631578947368,52.1509881019592,30.2951488494873
+8476,0.000758824224163452,0,0,0,NA,NA,0,NA,NA
+8477,0.0140169059244288,0.0332409972299169,3.32409972299169,2,67.8816212455305,0.878307770099444,3.04709141274238,55.9691950480143,46.4706382751465
+8478,0.0165110848173454,0.0304709141274238,3.04709141274238,2,66.19517193391,0.862476190476191,2.77008310249307,66.8743050315163,36.369026184082
+8479,0.0213967929173793,0.0473684210526316,4.73684210526316,6,53.2857443866839,0.533456108041743,2.63157894736842,25.0436009830899,14.6953058242798
+8480,0.0149010806508411,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,7.49053144454956,5.19557523727417
+8481,0.0176319363381078,0.10803324099723,10.803324099723,5,74.5675053340725,0.655040611562351,5.81717451523546,38.105225000626,15.5867252349854
+8482,0.0194623971831705,0.0664819944598338,6.64819944598338,6,57.1499934674103,0.577151335311573,2.77008310249307,124.041208585103,83.2914047241211
+8483,0.0201673750947616,0.0236842105263158,2.36842105263158,4,37.2301851041841,0.40251572327044,0.789473684210526,138.288359747993,98.8525619506836
+8484,0.0183329381037554,0.0221606648199446,2.21606648199446,3,41.4023931466401,0.488668555240793,0.831024930747922,44.9273107051849,15.5867252349854
+8485,0.032451668795175,0.171745152354571,17.1745152354571,3,88.1095784447055,0.765235971757711,14.9584487534626,1.79450254286489,0
+8486,0.0357138397872843,0.246537396121884,24.6537396121884,7,78.3550759787773,0.599334073251942,6.64819944598338,13.4593954622076,0
+8487,0.0265971231025392,0.207894736842105,20.7894736842105,5,88.7851443715564,0.765543426672995,18.4210526315789,17.4915032205702,0
+8488,0.03695131302654,0.227146814404432,22.7146814404432,5,84.4870463340571,0.776912618959338,16.0664819944598,15.2469143227833,0
+8489,0.0256595550415927,0.177285318559557,17.7285318559557,5,81.1821165359748,0.750390812890813,7.20221606648199,8.14881477504969,0
+8490,0.0319857444230877,0.260387811634349,26.0387811634349,6,85.7404829199219,0.694176921705012,16.8975069252078,8.52041979546243,0
+8491,0.0422458219936265,0.331578947368421,33.1578947368421,6,86.3553223925689,0.758278031839906,18.6842105263158,9.80929627872649,0
+8492,0.0238980800296654,0.238227146814404,23.8227146814404,3,89.0531277427289,0.768342245989305,18.5595567867036,17.2604466704435,0
+8493,0.025174725269255,0.207756232686981,20.7756232686981,5,83.2911484131569,0.722690188599279,11.3573407202216,27.8211657778422,0
+8494,0.0280903741315639,0.191135734072022,19.1135734072022,4,85.9450272312458,0.7036963659006,12.1883656509695,12.9141565474911,0
+8495,0.0430840396812528,0.307894736842105,30.7894736842105,4,89.0428174182801,0.768276059975608,15.2631578947368,9.59584701163137,0
+8496,0.0413009157184856,0.293628808864266,29.3628808864266,4,87.1771982730003,0.747993019197208,18.5595567867036,20.8836827772968,0
+8497,0.0416440522768776,0.404432132963989,40.4432132963989,2,93.5465789633228,0.849072380454664,26.3157894736842,6.47635308030533,0
+8498,0.028077884299519,0.127423822714681,12.7423822714681,7,72.8136642652117,0.647374847374847,7.4792243767313,9.2266424946163,0
+8499,0.0320731148665226,0.136842105263158,13.6842105263158,5,74.6970247077467,0.739654699917786,4.47368421052632,11.8732222868846,0
+8500,0.0321424897917458,0.213450292397661,21.3450292397661,2,90.9653546636402,0.761617100371747,18.7134502923977,14.1266368709198,0
+8501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8506,0.0106090777710625,0.0394736842105263,3.94736842105263,1,64.398586025552,0.851272015655577,3.94736842105263,13.1177492936452,7.34765291213989
+8507,0.00741090134142421,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,19.0685736338298,16.4298515319824
+8508,0.0127946485955058,0,0,0,NA,NA,0,NA,NA
+8509,0.00558929903269229,0,0,0,NA,NA,0,NA,NA
+8510,0.00164123629569267,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,9.22238985697428,5.19557523727417
+8511,0.0105292794257922,0.03601108033241,3.601108033241,1,76.2797118658907,1,3.601108033241,2.16384260471051,0
+8512,0.024002946482812,0.127423822714681,12.7423822714681,3,80.2402844203861,0.764916564916565,7.4792243767313,31.1799577630084,15.5867252349854
+8513,0.0236755793607158,0.141274238227147,14.1274238227147,4,85.3772318027947,0.718909899888765,12.1883656509695,26.7976068982891,0
+8514,0.0176850863382532,0.0789473684210526,7.89473684210526,5,74.1632796115906,0.62332361516035,5.78947368421053,17.4751693725586,5.19557523727417
+8515,0.0129600915856688,0.0637119113573407,6.37119113573407,5,59.8748586405394,0.643984220907298,3.32409972299169,4.79859729435133,0
+8516,0.019445067815982,0.0637119113573407,6.37119113573407,4,65.9640525013089,0.703320184089415,3.8781163434903,12.0653274162956,0
+8517,0.0288989158151584,0.130193905817175,13.0193905817175,7,69.4484786884708,0.655095541401274,5.81717451523546,35.701895429733,10.3911504745483
+8518,0.0190796246640514,0.0710526315789474,7.10526315789474,3,72.2449125318614,0.62448119111931,3.68421052631579,35.5872738273055,0
+8519,0.0138870713813061,0.0526315789473684,5.26315789473684,4,61.097800939282,0.636015325670498,3.04709141274238,15.7725574091861,0
+8520,0.0200183725254725,0.0526315789473684,5.26315789473684,6,48.4381183541947,0.454022988505747,1.66204986149584,4.9397601579365,0
+8521,0.015482474949845,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,2.01340730985006,0
+8522,0.0258544065169285,0.0894736842105263,8.94736842105263,6,64.1838676953285,0.607762180016515,3.15789473684211,57.5252798865823,20.7823009490967
+8523,0.028584323460944,0.163434903047091,16.3434903047091,2,90.3768693834986,0.953122971042722,16.0664819944598,37.093405028521,0
+8524,0.0212881259254255,0.0969529085872576,9.69529085872576,6,68.9099868527728,0.675428390099429,4.98614958448753,7.80601895196097,0
+8525,0.0228248833823537,0.0581717451523546,5.81717451523546,7,48.3481119204063,0.469117647058824,1.93905817174515,7.6249103092012,0
+8526,0.0171194428071,0.0815789473684211,8.1578947368421,3,77.3876308868421,0.69512893982808,5.78947368421053,15.2703561782837,0
+8527,0.013124118316109,0.0304709141274238,3.04709141274238,3,51.4667845845621,0.656190476190476,1.66204986149584,5.195575280623,0
+8528,0.0554414163399135,0.476454293628809,47.6454293628809,4,93.6219801726974,0.722831438919767,40.1662049861496,20.9524985052818,0
+8529,0.0668410757079932,0.556786703601108,55.6786703601108,2,95.1834881093076,0.836678954423592,39.3351800554017,9.41724158756769,0
+8530,0.0606688783570701,0.628947368421053,62.8947368421053,2,98.3548988225443,0.825154298951243,62.6315789473684,2.38204266336672,0
+8531,0.0633275568086201,0.614958448753463,61.4958448753463,2,98.0129369233803,0.780436520348938,60.6648199445983,1.33300246419133,0
+8532,0.0899618945479228,0.930747922437673,93.0747922437673,1,99.7970278965502,0.522456692913386,93.0747922437673,0,0
+8533,0.0844230193056558,0.869806094182826,86.9806094182826,1,99.5987109379562,0.909179125934445,86.9806094182826,0.0330928359062049,0
+8534,0.036266361357105,0.213157894736842,21.3157894736842,8,75.7090650447493,0.620494240059457,5.78947368421053,0.769714849966544,0
+8535,0.0506636028064382,0.39612188365651,39.612188365651,5,92.5518533062529,0.759822116394705,32.9639889196676,0.699136974094631,0
+8536,0.0561129292230934,0.46814404432133,46.814404432133,1,97.4358974358974,0.867421207264957,46.814404432133,2.0027876351712,0
+8537,0.056624248850874,0.662049861495845,66.2049861495845,2,98.3483536462569,0.834506913118422,65.6509695290859,11.6888018532278,0
+8538,0.0347659050825888,0.181578947368421,18.1578947368421,8,75.6268273430085,0.626371874252611,8.1578947368421,1.43066564504651,0
+8539,0.0291305993600671,0.157894736842105,15.7894736842105,6,81.0187458429313,0.75765306122449,12.4653739612188,1.13156106179221,0
+8540,0.0901985524352537,0.670360110803324,67.0360110803324,2,98.1564158401669,0.906038521603331,66.2049861495845,0.668318226317729,0
+8541,0.123967567666587,0.759002770083102,75.9002770083103,4,97.1546290622289,0.895053446039626,73.4072022160665,0.0758478136828346,0
+8542,0.0686019127783778,0.626038781163435,62.6038781163435,1,98.5341044447128,0.904724201636316,62.6038781163435,2.02647560254662,0
+8543,0.0502210720303705,0.455263157894737,45.5263157894737,7,90.0572622475761,0.741038571623279,31.0526315789474,1.75966382164487,0
+8544,0.0289795585839711,0.141274238227147,14.1274238227147,7,76.4642660366605,0.651983685576567,7.20221606648199,0.305622072780834,0
+8545,0.0269667803386205,0.160664819944598,16.0664819944598,5,82.8193936898391,0.833201320132013,13.0193905817175,1.20163027171431,0
+8546,0.108725837318658,0.750692520775623,75.0692520775623,3,97.0416884216508,0.866033617114167,70.9141274238227,1.2712314120078,0
+8547,0.0629112498160746,0.557894736842105,55.7894736842105,3,96.9193484316498,0.873700749335267,54.2105263157895,0.545109967015824,0
+8548,-0.0156403256684077,0,0,0,NA,NA,0,NA,NA
+8549,-0.0145188084138599,0.03601108033241,3.601108033241,2,63.9994282705831,0.711845466155811,1.93905817174515,1.5986385345459,0
+8550,0.0553599677469138,0.45983379501385,45.983379501385,6,91.0111572625446,0.745902463549522,35.4570637119114,0.232054845396295,0
+8551,0.0390966341261351,0.386842105263158,38.6842105263158,1,96.7134334661834,0.933308869282193,38.6842105263158,1.15697124053021,0
+8552,0.0201753235510031,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,0,0
+8553,0.0240221987593923,0.121883656509695,12.1883656509695,5,77.3242725664061,0.692215875181175,7.75623268698061,48.5334937355735,20.7823009490967
+8554,0.0255509907173319,0.132963988919668,13.2963988919668,3,82.9456745646777,0.746824592846567,9.97229916897507,5.02458214759827,0
+8555,-0.00597233214135294,0,0,0,NA,NA,0,NA,NA
+8556,-0.0064457607212845,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,174.051765441895,171.453979492188
+8557,0.018697800705736,0,0,0,NA,NA,0,NA,NA
+8558,0.0182300686571083,0,0,0,NA,NA,0,NA,NA
+8559,0.0251483457436782,0.0894736842105263,8.94736842105263,1,87.3300800675053,0.980388109000826,8.94736842105263,64.3005458607393,46.4706382751465
+8560,0.0173474258168083,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,39.5683212280273,39.5683212280273
+8561,0.0166257073400519,0.0249307479224377,2.49307479224377,3,44.989045488799,0.572679924242424,1.10803324099723,36.455150604248,22.0429573059082
+8562,0.0148598379430918,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,16.4298515319824,16.4298515319824
+8563,0.0119107529217481,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,9.37665128707886,7.34765291213989
+8564,0.00654442061740586,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,10.3911504745483,10.3911504745483
+8565,0.00948847330062392,0.074792243767313,7.4792243767313,4,72.6698163926436,0.773778025344659,5.26315789473684,22.5138886769613,10.3911504745483
+8566,0.00706321607966481,0,0,0,NA,NA,0,NA,NA
+8567,0.0090224296219946,0,0,0,NA,NA,0,NA,NA
+8568,0.0269055079546198,0.171745152354571,17.1745152354571,5,81.642679617752,0.742877492877493,8.03324099722992,24.6266034956901,10.3911504745483
+8569,0.0308856936166411,0.260387811634349,26.0387811634349,6,79.4840869956108,0.686128945960407,8.86426592797784,20.6438455328028,0
+8570,0.021412095430875,0.199445983379501,19.9445983379501,5,85.7654895029233,0.763943001934447,16.3434903047091,12.8174418608348,0
+8571,0.020325002578274,0.0894736842105263,8.94736842105263,6,75.8050289039627,0.666597853014038,7.10526315789474,11.1978279422311,0
+8572,0.0252686417726909,0.0803324099722992,8.03324099722992,2,78.4634207674723,0.722378877210971,5.81717451523546,19.8157102815036,7.34765291213989
+8573,0.0263761128527899,0.119113573407202,11.9113573407202,4,75.6536072879999,0.747728860936408,5.26315789473684,31.4760557662609,10.3911504745483
+8574,0.00835994759871738,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,20.5410484313965,16.4298515319824
+8575,0.00380514038831614,0,0,0,NA,NA,0,NA,NA
+8576,0.0263152486943423,0.163434903047091,16.3434903047091,3,85.941419144007,0.835930398649526,11.9113573407202,7.06454862174341,0
+8577,0.0182041279313377,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,43.9292793273926,33.2679138183594
+8578,0.0224973254004613,0.0554016620498615,5.54016620498615,5,56.1187027768203,0.590199602686595,2.21606648199446,7.63526027202606,0
+8579,0.0178675548600854,0.0578947368421053,5.78947368421053,3,70.6669397504177,0.687808084127506,3.42105263157895,7.7260037985715,0
+8580,0.0222775010621273,0.0941828254847645,9.41828254847645,4,75.8116494306739,0.645150720838794,6.37119113573407,10.9325103619519,0
+8581,0.0127731995728677,0.0498614958448753,4.98614958448754,1,80.6758725138067,0.766115970197603,4.98614958448754,2.30914454989963,0
+8582,0.0141455302004687,0.03601108033241,3.601108033241,5,49.3372725466979,0.538952745849298,2.21606648199446,62.4915070166955,49.28955078125
+8583,0.0202459226428657,0.0552631578947368,5.52631578947368,4,62.1408783318226,0.603064066852368,2.10526315789474,38.6019290515355,7.34765291213989
+8584,0.0239549235274078,0.105263157894737,10.5263157894737,5,70.3593106068852,0.662931839402428,4.43213296398892,13.9418157652805,5.19557523727417
+8585,0.0494251165245892,0.45983379501385,45.983379501385,3,93.6766931561985,0.854801407742584,40.9972299168975,1.90049601750201,0
+8586,0.0366014309667329,0.260387811634349,26.0387811634349,4,84.8674726298001,0.734416800428036,9.97229916897507,6.68913244186564,0
+8587,0.0263836179018701,0.126315789473684,12.6315789473684,6,69.7701578156551,0.609168380840435,3.42105263157895,45.5508175492287,0
+8588,0.02090093144522,0.185595567867036,18.5595567867036,2,91.46725302759,0.811093668236525,18.005540166205,14.8977832936529,0
+8589,0.0180480458247708,0.0415512465373961,4.15512465373961,4,53.364582483068,0.620599054125066,1.93905817174515,13.3055956840515,0
+8590,0.0202344928414647,0.0498614958448753,4.98614958448753,4,57.9951983665689,0.571212612028939,1.93905817174515,35.0312301317851,14.6953058242798
+8591,0.0339209936464038,0.231578947368421,23.1578947368421,4,85.4377054163514,0.709885699328156,10.2631578947368,38.9210521416231,0
+8592,0.0422549818912837,0.368421052631579,36.8421052631579,3,90.1310827762308,0.810261707988981,21.0526315789474,48.2402818579423,5.19557523727417
+8593,-0.00589639134363439,0.0332409972299169,3.32409972299169,2,68.5613517353952,0.817461655149166,3.04709141274238,49.1537748972575,41.8880653381348
+8594,0.0164535279554483,0.130193905817175,13.0193905817175,2,86.2587471098127,0.899402866242038,11.6343490304709,86.4159190401118,62.3469009399414
+8595,0.0207124376138764,0.157894736842105,15.7894736842105,3,90.0410805740969,0.783052884615385,15.2631578947368,60.338254292806,42.8438110351562
+8596,0.0220978766578545,0.146814404432133,14.6814404432133,6,79.5090966334148,0.742400456686171,11.3573407202216,39.2134658525575,0
+8597,0.0437850898729304,0.376731301939058,37.6731301939058,2,96.1524917715791,0.805913978494624,37.3961218836565,18.4682679562008,0
+8598,0.0257772694800385,0.149584487534626,14.9584487534626,9,67.0435839743554,0.582746663864663,3.8781163434903,7.06382538654186,0
+8599,0.0355817186729263,0.25,25,7,80.1024317853955,0.670588235294118,10.5263157894737,3.98420441778083,0
+8600,0.0430860219941827,0.383040935672515,38.3040935672515,4,91.631092142497,0.769418390211981,28.0701754385965,7.02961168216385,0
+8601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8606,0.0137208936084789,0.2,20,3,76.9001816972187,0.639423076923077,9.375,15.0522041618824,5.19557523727417
+8607,0.0136679423187927,0.0842105263157895,8.42105263157895,3,76.3908747410946,0.811007957559682,5.52631578947368,17.5702134668827,10.3911504745483
+8608,0.0108599388666718,0.0789473684210526,7.89473684210526,1,86.162631131474,0.756268221574344,7.89473684210526,9.92364622751872,5.19557523727417
+8609,0.0125897201756552,0.118421052631579,11.8421052631579,6,73.5222439623299,0.686567164179104,7.63157894736842,22.8134361373054,5.19557523727417
+8610,0.0144471647341379,0.11,11,5,74.5615342897147,0.681141815973277,6.5,23.8884729580446,5.19557523727417
+8611,0.0113377423611574,0.0394736842105263,3.94736842105263,4,54.4016670201473,0.479452054794521,1.84210526315789,10.5175963083903,7.34765291213989
+8612,0.017958811098326,0.0236842105263158,2.36842105263158,2,61.8884961483246,0.743935309973046,2.10526315789474,7.6409985754225,5.19557523727417
+8613,0.0188535143618202,0.184210526315789,18.4210526315789,5,79.8144097332961,0.70102281667978,10.7894736842105,8.7526867049081,0
+8614,0.0150552792344683,0.135,13.5,4,82.4666874455123,0.676797812169806,7.75,9.21592254108853,0
+8615,0.0204747038764732,0.186842105263158,18.6842105263158,5,83.4475604160638,0.754045307443366,8.68421052631579,8.28637977385185,0
+8616,0.0197128168128409,0.152631578947368,15.2631578947368,4,78.1285236624368,0.752173913043478,5.78947368421053,9.19559511645087,0
+8617,0.0328854123378589,0.257894736842105,25.7894736842105,6,84.9176215954091,0.732027724049001,13.9473684210526,19.6454454538774,5.19557523727417
+8618,0.0283748205294251,0.2775,27.75,4,90.5048437059448,0.681660899653979,20.25,10.6857266726795,0
+8619,0.0332276000699877,0.231578947368421,23.1578947368421,4,86.3173821493234,0.734752639385743,13.9473684210526,33.945560650392,10.3911504745483
+8620,0.0179545668052972,0.113157894736842,11.3157894736842,7,63.6387568273914,0.561490273656446,2.36842105263158,19.8913673910984,0
+8621,0.0322180288240289,0.247368421052632,24.7368421052632,5,87.0290962894559,0.802281052281052,14.2105263157895,5.43863088526624,0
+8622,0.0204876872055229,0.1575,15.75,6,77.5074951240114,0.773401672511465,7.25,5.40855551522876,0
+8623,0.0328076604025562,0.265789473684211,26.5789473684211,7,83.0548708072385,0.736628448088081,12.6315789473684,5.72438668732596,0
+8624,0.0344913024071023,0.268421052631579,26.8421052631579,3,93.0713028050717,0.723630931320517,24.7368421052632,9.25749156054328,0
+8625,0.0202002580784928,0.0868421052631579,8.68421052631579,5,77.9209808755376,0.655246024122105,7.10526315789474,11.4423283374671,0
+8626,0.0214747542712166,0.08,8,4,72.520853496956,0.728260869565217,4.25,6.9920257627964,0
+8627,0.0200951464915809,0.0947368421052632,9.47368421052632,7,62.4810574728354,0.502906976744186,2.63157894736842,3.03075222174327,0
+8628,0.0357997074946884,0.202631578947368,20.2631578947368,7,87.6228240539685,0.649582605319356,16.8421052631579,4.65290193433885,0
+8629,0.0576377602078872,0.447368421052632,44.7368421052632,2,94.9767510235972,0.861250570515746,40.2631578947368,6.66078267097473,0
+8630,0.0452642173129925,0.41,41,5,92.0764290677458,0.75305870468066,26.5,31.2628027927585,0
+8631,0.0307808795964535,0.252631578947368,25.2631578947368,5,85.3240846061667,0.743285293154274,11.0526315789474,13.7425892005364,0
+8632,0.0418026222367955,0.455263157894737,45.5263157894737,3,92.8151746003044,0.792830857298623,28.1578947368421,1.28836735962443,0
+8633,0.0477300382648154,0.494736842105263,49.4736842105263,3,94.4071371756781,0.766822318007663,31.5789473684211,5.31382730159354,0
+8634,0.0191697153473433,0.0775,7.75,4,71.9873599170168,0.67479674796748,5,1.24261626889629,0
+8635,0.0567905736905615,0.573684210526316,57.3684210526316,3,97.0161997334355,0.757343550446999,54.7368421052632,0.119164569662252,0
+8636,0.0630588137162512,0.739473684210526,73.9473684210526,1,99.119208233448,0.832797673706765,73.9473684210526,1.25888986859033,0
+8637,0.0336780582959794,0.268421052631579,26.8421052631579,6,85.8021324729566,0.783386405629595,16.5789473684211,2.24451372202705,0
+8638,0.0538279109391806,0.5925,59.25,3,95.6138306915536,0.734105166945948,42.25,0.579059214531621,0
+8639,0.0659003492487644,0.597368421052632,59.7368421052632,4,95.2682356320173,0.788624669726046,52.1052631578947,2.80906472437182,0
+8640,0.0523009371729323,0.481578947368421,48.1578947368421,4,93.3499615902203,0.766016880425315,39.2105263157895,1.15612477682979,0
+8641,0.0484859548810882,0.460526315789474,46.0526315789474,7,91.2998996847352,0.632711621233859,31.0526315789474,4.43661363601685,0
+8642,0.0454163546964226,0.373684210526316,37.3684210526316,7,87.0597752589555,0.649967679379444,14.2105263157895,8.94539763558079,0
+8643,0.0545377007930074,0.5725,57.25,3,97.4611339567735,0.769916594765602,55.75,14.5275253104331,0
+8644,0.0242259851820372,0.407894736842105,40.7894736842105,2,96.5144798177365,0.905185185185185,40.5263157894737,0.23463888168335,0
+8645,-0.0179006326443222,0.0236842105263158,2.36842105263158,2,55.8915688410153,0.573225516621743,1.31578947368421,5.67381466759576,0
+8646,0.0599956319458311,0.626315789473684,62.6315789473684,2,98.3473957810601,0.813578097800285,62.3684210526316,1.47729401428159,0
+8647,0.0411355298815761,0.3475,34.75,5,92.7575159444002,0.722448487042568,26.5,1.01828193664551,0
+8648,0.0189940091800341,0.136842105263158,13.6842105263158,5,82.1570715284423,0.752671964921896,10.2631578947368,11.2730390842144,0
+8649,0.0219623859614474,0.152631578947368,15.2631578947368,5,76.5080695823705,0.645962732919255,5.52631578947368,17.4312634468079,0
+8650,0.0518622196114034,0.471052631578947,47.1052631578947,6,87.7742069629603,0.720130465497287,21.0526315789474,1.33075411226496,0
+8651,0.0553748154867935,0.79,79,1,99.3416426267051,0.752317034196229,79,0,0
+8652,0.0414302369024402,0.373684210526316,37.3684210526316,1,96.561696952739,0.797349709114415,37.3684210526316,0.843896617352123,0
+8653,0.0213996790936155,0.0842105263157895,8.42105263157895,5,72.0889821195302,0.601016799292661,4.47368421052632,67.6424188017845,20.7823009490967
+8654,0.0195796775173604,0.0710526315789474,7.10526315789474,8,52.1350523994248,0.449239080308321,1.57894736842105,39.2698725947627,0
+8655,-0.00212424659457611,0.005,0.5,1,30.8308651382582,1,0.5,75.3358421325684,72.7380523681641
+8656,-0.00558563167451212,0,0,0,NA,NA,0,NA,NA
+8657,0.0102990088442886,0,0,0,NA,NA,0,NA,NA
+8658,0.00655307798457981,0,0,0,NA,NA,0,NA,NA
+8659,0.00763552693450038,0,0,0,NA,NA,0,NA,NA
+8660,0.0202580446831952,0.0315789473684211,3.15789473684211,3,57.7070175524891,0.635549872122762,2.10526315789474,45.5599412918091,33.2679138183594
+8661,0.0166358530340834,0.0157894736842105,1.57894736842105,2,45.1383411060509,0.709702062643239,1.05263157894737,1.73185841242472,0
+8662,0.0191230505703348,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,54.5535411834717,51.955753326416
+8663,0.00923764842300443,0.05,5,3,69.8959081674694,0.728353140916808,3.5,30.966111946106,15.5867252349854
+8664,0.0185801529654207,0.0394736842105263,3.94736842105263,2,71.4033730948885,0.763387297633873,3.42105263157895,46.563762029012,22.0429573059082
+8665,0.0178847181432981,0.0421052631578947,4.21052631578947,2,73.9482678087317,0.869505494505495,3.94736842105263,34.8183652162552,22.0429573059082
+8666,0.0169279554733593,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,51.4335708618164,51.4335708618164
+8667,0.0165705262742267,0,0,0,NA,NA,0,NA,NA
+8668,0.0305482451717054,0.178947368421053,17.8947368421053,6,82.7558112219565,0.682719241542771,12.1052631578947,57.4083357418285,36.369026184082
+8669,0.0295750974690631,0.210526315789474,21.0526315789474,6,82.8059593747449,0.705633802816901,10,25.9324564278126,7.34765291213989
+8670,0.0215998816531995,0.0578947368421053,5.78947368421053,2,78.1035948821918,0.843904042063753,5.26315789473684,9.61315250396729,0
+8671,0.0123306932734158,0.0425,4.25,2,72.9569086624483,0.87467362924282,3.75,52.78438094083,7.34765291213989
+8672,0.0155060654028555,0.0789473684210526,7.89473684210526,2,80.7994649125595,0.822740524781341,6.84210526315789,37.9592295328776,11.6176595687866
+8673,0.0181730203651114,0.0447368421052632,4.47368421052632,3,67.915568560165,0.706887052341598,3.42105263157895,50.2168634078082,15.5867252349854
+8674,0.00229711160739163,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,38.8416389465332,31.1734504699707
+8675,-0.000320536135786824,0.005,0.5,1,30.8308651382582,1,0.5,59.9750061035156,57.3870010375977
+8676,0.0199555079641294,0.0973684210526316,9.73684210526316,2,81.0219597900756,0.872867179658749,5.78947368421053,19.2444450919693,0
+8677,0.0185663350686235,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,90.73681640625,90.73681640625
+8678,0.0268024476788062,0.113157894736842,11.3157894736842,5,74.9026736892959,0.5928123969667,5,68.2372621935467,0
+8679,0.0226389961396126,0.1075,10.75,6,73.250501024334,0.595393713040772,5.75,21.6772784632306,0
+8680,0.0266539839739476,0.0789473684210526,7.89473684210526,6,67.9574314777344,0.556851311953353,4.73684210526316,47.969261932373,5.19557523727417
+8681,0.0340314905893185,0.2,20,8,78.3849394531235,0.664179104477612,11.5789473684211,16.0796933174133,0
+8682,0.0259041575680295,0.0947368421052632,9.47368421052632,6,65.3831003164165,0.613372093023256,3.94736842105263,41.6510807673136,16.4298515319824
+8683,0.023435004018429,0.08,8,6,72.1820601247085,0.686454849498328,5.5,55.9068516492844,36.7382659912109
+8684,0.0344330964965354,0.194736842105263,19.4736842105263,5,82.2043215578455,0.799396681749623,13.4210526315789,12.9274748402673,0
+8685,0.053661403139612,0.513157894736842,51.3157894736842,4,94.776098925554,0.82410034343736,43.421052631579,2.23695937670194,0
+8686,0.0359727755568824,0.268421052631579,26.8421052631579,5,86.4715721225816,0.723630931320517,13.9473684210526,11.0426222530066,0
+8687,0.0121136450275026,0.05,5,5,55.7953668603982,0.558573853989813,1.75,51.5115765810013,7.34765291213989
+8688,0.0129179202635226,0.155263157894737,15.5263157894737,1,91.6844204312125,0.80269989615784,15.5263157894737,57.5753144086418,26.4923400878906
+8689,0.0172263710820851,0.0973684210526316,9.73684210526316,5,66.8936386996647,0.673087033408211,2.63157894736842,46.5262241879025,20.7823009490967
+8690,0.0228420907017272,0.102631578947368,10.2631578947368,6,66.363564870704,0.588540491766298,3.68421052631579,18.2135191452809,0
+8691,0.0338529838671457,0.225,22.5,7,85.8616202251051,0.735523943097576,15,40.4621653291914,0
+8692,0.0300898780895152,0.215789473684211,21.5789473684211,7,80.3119645841224,0.674612358250405,10.7894736842105,15.8330507627348,0
+8693,0.0276536597951175,0.252631578947368,25.2631578947368,2,92.5013155968906,0.906649197510645,23.6842105263158,21.100043023626,0
+8694,0.0427615829510231,0.276315789473684,27.6315789473684,2,93.0536965453561,0.91957671957672,25.5263157894737,39.8411285309565,0
+8695,0.0227113590511362,0.165,16.5,2,88.9039766517517,0.82296277011195,13.5,37.6384091088266,5.19557523727417
+8696,0.0293447332262172,0.226315789473684,22.6315789473684,2,92.48716220508,0.898626117113512,21.8421052631579,17.6912800544916,0
+8697,0.0180421659730392,0.0763157894736842,7.63157894736842,2,77.8475831696608,0.838758562162818,4.21052631578947,27.585755857928,0
+8698,0.0306114189242898,0.297368421052632,29.7368421052632,5,87.9128811502131,0.70698391716237,19.2105263157895,15.3771742846059,0
+8699,0.0573996966326376,0.5875,58.75,4,96.651556505745,0.685235038310209,54.25,4.41860263905627,0
+8700,0.0289161271089041,0.222222222222222,22.2222222222222,6,80.1266019244145,0.683098591549296,7.77777777777778,13.3126856982708,0
+8701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8706,0.0348361901150814,0.236842105263158,23.6842105263158,4,77.3395123592008,0.672413793103448,16.4473684210526,31.3819083902571,14.6953058242798
+8707,0.0102818485963258,0.102493074792244,10.2493074792244,2,86.3636363636364,0.87214126695001,9.97229916897507,50.7329616160006,7.34765291213989
+8708,0.0232114825263336,0.166204986149584,16.6204986149584,3,89.5835387001602,0.723230258113979,15.7894736842105,23.137884871165,10.3911504745483
+8709,0.027992849411429,0.260387811634349,26.0387811634349,4,87.7339052225919,0.734416800428036,15.5124653739612,72.5931588436695,52.2148818969727
+8710,0.0179293158363802,0.139473684210526,13.9473684210526,3,83.8421663887861,0.846758745841315,9.21052631578947,67.5705949315485,21.4219055175781
+8711,0.0041531198200732,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,26.7652339935303,23.2353191375732
+8712,0.0124491681485892,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,5.91293446222941,5.19557523727417
+8713,0.0124614326124172,0.0692520775623269,6.92520775623269,5,62.9268808947112,0.543377976190476,2.49307479224377,6.57902271270752,5.19557523727417
+8714,0.0284901730388332,0.171052631578947,17.1052631578947,8,75.8429649987454,0.647703329119258,9.21052631578947,5.04261810596173,0
+8715,0.0206462959451574,0.124653739612188,12.4653739612188,5,74.65934305932,0.684335443037975,5.26315789473684,10.5670927047729,0
+8716,0.0156613675295537,0.0609418282548476,6.09418282548476,3,67.7268624229131,0.749436057608884,2.77008310249307,14.2562409097498,7.34765291213989
+8717,0.0287050119407057,0.210526315789474,21.0526315789474,6,78.539091702889,0.688059701492537,7.75623268698061,18.4734062709306,0
+8718,0.050213303498573,0.378947368421053,37.8947368421053,5,89.5455107328071,0.743836671802774,28.1578947368421,9.2850135465463,0
+8719,0.0242238636024705,0.157894736842105,15.7894736842105,5,78.334441285328,0.745535714285714,9.14127423822715,32.8491978645325,5.19557523727417
+8720,0.0102140619862522,0.0193905817174515,1.93905817174515,2,54.980748285685,0.745056497175141,1.66204986149584,5.81045457295009,0
+8721,0.0459754425342842,0.354570637119114,35.4570637119114,1,96.2256744148997,0.960102414853838,35.4570637119114,26.8787798024714,0
+8722,0.0477143551733063,0.394736842105263,39.4736842105263,4,89.6885809098208,0.789723320158103,16.3157894736842,8.71266209602356,0
+8723,0.0442411812169702,0.412742382271468,41.2742382271468,4,91.7232265628465,0.750501071255788,26.3157894736842,4.79715074628792,0
+8724,0.0456074989296643,0.409972299168975,40.9972299168975,5,93.9256960863238,0.662283665090172,35.4570637119114,5.42725734775131,0
+8725,0.0278255776720672,0.191135734072022,19.1135734072022,3,89.8531694279363,0.754783199366014,16.8975069252078,7.88104584597159,0
+8726,0.0179433189214538,0.0526315789473684,5.26315789473684,6,56.1790521750495,0.489247311827957,2.63157894736842,10.9209254741669,0
+8727,0.0348382305738216,0.174515235457064,17.4515235457064,11,70.3287587345194,0.515436241610738,5.54016620498615,6.53190644582113,0
+8728,0.0104817210450338,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,14.476905186971,10.3911504745483
+8729,0.02619679067405,0.168975069252078,16.8975069252078,4,82.5103688785378,0.818364779874214,11.3573407202216,8.34287265089692,0
+8730,0.0328539996063275,0.228947368421053,22.8947368421053,6,85.3491907557447,0.715512495871408,17.1052631578947,0.962859866262852,0
+8731,0.0516397022866964,0.57617728531856,57.617728531856,2,96.0790234338507,0.731739034976609,43.7673130193906,4.16716172832709,0
+8732,0.0420746971549785,0.382271468144044,38.2271468144044,5,88.2453322113444,0.672378816997651,17.4515235457064,0.573871640191562,0
+8733,0.0648709845179666,0.659279778393352,65.9279778393352,1,98.7134051402827,0.782351329131269,65.9279778393352,0.0436602961115476,0
+8734,0.0335612627265379,0.228947368421053,22.8947368421053,1,94.1064327935278,0.765716173070571,22.8947368421053,5.39473022811714,0
+8735,0.0721728723300131,0.81994459833795,81.994459833795,2,99.1134244222667,0.730783041016434,81.4404432132964,0.947209358215332,0
+8736,0.0421350750289509,0.415512465373961,41.5512465373961,3,93.3399183916395,0.632934080137872,30.1939058171745,3.9711269569397,0
+8737,0.0372625849754072,0.102493074792244,10.2493074792244,2,80.9569748748364,0.762548067192876,6.92520775623269,11.2458094777288,0
+8738,0.042282898510008,0.328947368421053,32.8947368421053,8,88.0146564792271,0.71771616135441,21.3157894736842,0.978563892364502,0
+8739,0.0814167897389825,0.703601108033241,70.3601108033241,2,98.7419673699421,0.716484724731014,70.0831024930748,4.74284453467121,0
+8740,0.0912714370971718,0.786703601108033,78.6703601108033,2,99.0778405807972,0.771730142516659,78.393351800554,5.16210515734176,0
+8741,0.0569945764863332,0.590027700831025,59.0027700831025,4,93.4938169440376,0.655064155064155,29.6398891966759,9.59733288724657,0
+8742,0.0665489159220665,0.728531855955679,72.8531855955679,2,98.5255160532786,0.753425508134288,71.4681440443213,18.7215204166369,0
+8743,0.0702296777089175,0.736842105263158,73.6842105263158,1,99.1079895428082,0.869961977186312,73.6842105263158,0,0
+8744,0.0866395836470131,0.828254847645429,82.8254847645429,1,99.4511201625786,0.937947630779809,82.8254847645429,5.87672613456496,0
+8745,0.0812202009276959,0.800554016620499,80.0554016620499,2,99.0702815077388,0.889399509803921,79.7783933518006,11.4688472005323,0
+8746,0.0662805693716822,0.772853185595568,77.2853185595568,2,98.8585222149877,0.689140755911376,76.1772853185596,1.5820883559497,0
+8747,0.0468334527356331,0.355263157894737,35.5263157894737,5,91.9554956222764,0.842375974780156,31.5789473684211,2.83525257817021,0
+8748,0.0187217077420171,0.0997229916897507,9.97229916897507,4,73.787450861497,0.685282051282051,4.43213296398892,5.31513510810004,0
+8749,0.017931500857976,0.0637119113573407,6.37119113573407,4,61.8112775694862,0.584648257725181,2.21606648199446,5.28914383183355,0
+8750,0.0222855879098796,0.135734072022161,13.5734072022161,5,77.7406836809069,0.75206043956044,9.41828254847645,2.561978184447,0
+8751,0.0364228219451099,0.339473684210526,33.9473684210526,6,90.0650610760413,0.65211494447741,23.1578947368421,2.98211379014244,0
+8752,0.0217773580107479,0.130193905817175,13.0193905817175,4,77.6540705555399,0.741321656050955,6.09418282548476,7.26162166798368,0
+8753,0.0140939447552389,0.0581717451523546,5.81717451523546,3,73.8817695667493,0.668198529411765,4.70914127423823,99.8670469011579,80.6570205688477
+8754,0.00692668503711943,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.956400966183575,4.43213296398892,94.9759583473206,88.3247756958008
+8755,-0.00945865051433334,0,0,0,NA,NA,0,NA,NA
+8756,-0.0110585988078075,0,0,0,NA,NA,0,NA,NA
+8757,0.00463746689922541,0,0,0,NA,NA,0,NA,NA
+8758,0.0186522891601065,0.0443213296398892,4.43213296398892,5,51.7273631283365,0.564009661835749,1.93905817174515,85.1398026943207,31.6034507751465
+8759,0.0128867090912727,0.0263157894736842,2.63157894736842,2,58.2677109531801,0.604989604989605,1.31578947368421,13.9457649230957,10.3911504745483
+8760,0.0150684030121741,0.0886426592797784,8.86426592797784,3,78.630285046821,0.704582651391162,6.92520775623269,13.7047607749701,5.19557523727417
+8761,0.0182920569445779,0.119113573407202,11.9113573407202,6,70.28835206158,0.621593291404612,6.37119113573407,11.0699786696323,0
+8762,0.0193354037581134,0.166204986149584,16.6204986149584,5,77.9606977172524,0.734762330692563,8.03324099722992,10.6316574017207,5.19557523727417
+8763,0.0159443949334385,0.0921052631578947,9.21052631578947,7,60.0286573326056,0.582208895552224,3.15789473684211,12.3870267050607,5.19557523727417
+8764,0.0172828542308984,0.0304709141274238,3.04709141274238,3,56.9154881169365,0.656190476190476,2.21606648199446,17.0403944362294,0
+8765,0.0209249640848659,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,51.8675675392151,27.9790287017822
+8766,0.0195764788025213,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,16.5090443747384,10.3911504745483
+8767,0.0109083092185469,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,8.63800954818726,5.19557523727417
+8768,0.0223889815092573,0.074792243767313,7.4792243767313,3,74.1552685985959,0.748642250382955,5.54016620498615,19.1907847898978,7.34765291213989
+8769,0.0150802531943529,0.0914127423822715,9.14127423822715,3,82.6392329479614,0.857328364950316,8.58725761772853,17.6868897640344,10.3911504745483
+8770,0.0116222530661737,0.0277008310249307,2.77008310249307,3,51.5659347755111,0.525312294543064,1.38504155124654,14.5008318901062,0
+8771,0.0125183694917627,0,0,0,NA,NA,0,NA,NA
+8772,0.00415040584800643,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,14.6953058242798,14.6953058242798
+8773,-0.0020916886569668,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,15.2895854314168,14.6953058242798
+8774,0.00143984642707039,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.617584745762712,1.93905817174515,35.4012712751116,25.977876663208
+8775,0.00884824077129451,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,21.1021032333374,20.7823009490967
+8776,0.0177401716072157,0.03601108033241,3.601108033241,2,66.7798407649733,0.711845466155811,2.77008310249307,28.5348581167368,25.977876663208
+8777,0.017743310362814,0,0,0,NA,NA,0,NA,NA
+8778,0.0154748084103006,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,72.2062273025513,54.2434005737305
+8779,0.0137919101974005,0.0289473684210526,2.89473684210526,6,31.0506569467344,0.313459801264679,0.789473684210526,46.6466178027066,11.6176595687866
+8780,0.0223875807591501,0.0554016620498615,5.54016620498615,5,60.6986600060306,0.419449437139344,2.49307479224377,24.1785759925842,10.3911504745483
+8781,0.0246590318892637,0.135734072022161,13.5734072022161,7,69.7017712408926,0.600541819291819,4.70914127423823,13.4537860130777,0
+8782,0.0406691719994911,0.437673130193906,43.7673130193906,2,94.9534187091824,0.883489043655512,41.2742382271468,4.93083519573453,0
+8783,0.0371329760895031,0.342105263157895,34.2105263157895,2,95.3889074237664,0.82042194092827,33.4210526315789,8.30953212151161,0
+8784,0.0283021671156376,0.152354570637119,15.2354570637119,7,71.7801443816163,0.615032679738562,4.43213296398892,12.2037071921609,0
+8785,0.041466954040032,0.343490304709141,34.3490304709141,5,86.329307523031,0.756286919831224,16.6204986149584,3.54083454224371,0
+8786,0.0274953150343672,0.182825484764543,18.2825484764543,3,86.9585050482311,0.787177597641857,13.0193905817175,3.44126380573619,0
+8787,0.00891184017604617,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,28.3714995384216,14.6953058242798
+8788,0.0100211254148512,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,11.1812453951154,10.3911504745483
+8789,0.0162848636242929,0.0637119113573407,6.37119113573407,5,62.9778965599047,0.643984220907298,2.77008310249307,18.4505205154419,5.19557523727417
+8790,0.0183714772155631,0.0526315789473684,5.26315789473684,4,61.9247738278611,0.563218390804598,2.77008310249307,9.39735896963822,0
+8791,0.0237929023481372,0.155263157894737,15.5263157894737,6,78.8136521247718,0.698246900006108,9.73684210526316,11.457764213368,0
+8792,0.0295671341506864,0.210526315789474,21.0526315789474,3,85.1411630835327,0.735323383084577,13.5734072022161,7.61659107710186,0
+8793,0.041165054525671,0.409972299168975,40.9972299168975,3,95.2093138372512,0.768601770524748,37.9501385041551,6.29036408179515,0
+8794,0.0334150013815382,0.329639889196676,32.9639889196676,3,94.0790135504281,0.765189776553413,31.0249307479224,8.96002411241291,0
+8795,0.0246364348595594,0.163157894736842,16.3157894736842,5,79.9225208394796,0.6680642907058,9.47368421052632,7.33774172875189,0
+8796,0.0179049078771308,0.0664819944598338,6.64819944598338,4,67.0704357899908,0.718100890207715,3.8781163434903,9.11053204536438,0
+8797,0.0190539595852665,0.0775623268698061,7.75623268698061,5,63.5309598178908,0.68682015348682,2.77008310249307,8.82205586774009,0
+8798,0.0302502756362792,0.207756232686981,20.7756232686981,8,81.0668513037205,0.607941301123119,11.6343490304709,10.1026420084635,0
+8799,0.0305624926241331,0.226315789473684,22.6315789473684,5,81.8368125749482,0.687430527766662,8.1578947368421,5.33948662114698,0
+8800,0.0259712104930392,0.274853801169591,27.4853801169591,4,92.4473291403776,0.802995391705069,26.0233918128655,1.28466902387903,0
+8801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8806,0.0216355310729724,0.111842105263158,11.1842105263158,2,73.9836197449725,0.819851851851852,9.21052631578947,34.0902457517736,20.7823009490967
+8807,0.0109707169678405,0.0969529085872576,9.69529085872576,3,76.3915615499488,0.809075523587899,5.81717451523546,25.3620941570827,7.34765291213989
+8808,0.0106323464452566,0.0997229916897507,9.97229916897507,2,83.4473804199243,0.833384615384615,8.58725761772853,17.4526663488812,5.19557523727417
+8809,0.0174059009615345,0.0664819944598338,6.64819944598338,5,64.5547033304985,0.63353115727003,3.601108033241,44.5134884317716,7.34765291213989
+8810,0.0252286694334639,0.213157894736842,21.3157894736842,4,82.3447857940204,0.735228539576366,7.10526315789474,46.8166848641855,20.7823009490967
+8811,0.0192048834964474,0.202216066481994,20.2216066481994,4,82.8770224775839,0.794352213541667,7.75623268698061,32.3085775375366,14.6953058242798
+8812,0.0118490933069763,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,29.1370887756348,27.9790287017822
+8813,0.0136282872037373,0.0443213296398892,4.43213296398892,4,53.6979759799493,0.607608695652174,1.38504155124654,8.80941930413246,0
+8814,0.021148537878808,0.0763157894736842,7.63157894736842,9,50.2722924139485,0.44717221312966,1.84210526315789,9.25472660722404,0
+8815,0.0164863941331293,0.03601108033241,3.601108033241,3,58.3268715904617,0.711845466155811,1.93905817174515,13.9248526279743,5.19557523727417
+8816,0.0144957914832058,0.0304709141274238,3.04709141274238,4,43.2526735237033,0.449904761904762,1.10803324099723,16.1975330439481,5.19557523727417
+8817,0.0284558984935845,0.171745152354571,17.1745152354571,4,83.1053419877356,0.798773690078038,13.8504155124654,8.22952284351472,0
+8818,0.0271848622374436,0.189473684210526,18.9473684210526,4,85.7935503021049,0.834850189180898,10.5263157894737,11.9969511495696,0
+8819,0.0235561065923537,0.149584487534626,14.9584487534626,4,81.3518287159171,0.709187068754159,8.86426592797784,22.3362719394543,5.19557523727417
+8820,0.0134143383178994,0.038781163434903,3.8781163434903,3,60.5941626698857,0.635878962536023,2.21606648199446,25.5945958409991,11.6176595687866
+8821,0.0344989863493598,0.279778393351801,27.9778393351801,1,95.0523852144501,0.953973650658734,27.9778393351801,27.8086690336171,10.3911504745483
+8822,0.0321469438583575,0.205263157894737,20.5263157894737,6,78.2344081732336,0.68998944236491,7.63157894736842,16.7231799639188,0
+8823,0.0369859576088065,0.279778393351801,27.9778393351801,5,85.8303859542658,0.792881427964301,14.9584487534626,10.6969152205061,0
+8824,0.0461586619876622,0.409972299168975,40.9972299168975,4,91.2883316763917,0.749839751918646,30.4709141274238,3.25124603993184,0
+8825,0.0446963483384297,0.357340720221607,35.7340720221607,5,90.467369892953,0.761628760088041,26.3157894736842,10.175217314284,0
+8826,0.0155698597095819,0.0342105263157895,3.42105263157895,4,50.7201874484944,0.539812291855889,1.31578947368421,0.799319267272949,0
+8827,0.0297169457836714,0.238227146814404,23.8227146814404,5,83.2041210363734,0.759762329174094,13.5734072022161,2.15023296932841,0
+8828,0.022977396680224,0.171745152354571,17.1745152354571,6,81.5646787528111,0.675802056236839,11.9113573407202,4.43273228983725,0
+8829,0.0190046838052541,0.127423822714681,12.7423822714681,7,66.6307281486219,0.632682132682133,3.32409972299169,3.12376667105633,0
+8830,0.0680567438708845,0.757894736842105,75.7894736842105,2,98.6699308867485,0.885689074282047,75,0.61774380505085,0
+8831,0.0786060931379043,0.806094182825485,80.6094182825485,1,99.3677793036386,0.820867067119352,80.6094182825485,1.19865246736717,0
+8832,0.0551919723545534,0.623268698060942,62.3268698060942,2,97.9872561062425,0.747198879551821,61.218836565097,0.226952588823107,0
+8833,0.0524867216274761,0.515235457063712,51.5235457063712,6,94.7368452775216,0.712159468438538,45.983379501385,2.04482518985707,0
+8834,0.0520907529317284,0.518421052631579,51.8421052631579,2,97.5956375534905,0.709858522344487,51.3157894736842,0.459273384307242,0
+8835,0.0161669583222619,0.0886426592797784,8.86426592797784,4,68.5301196782893,0.641278933832125,2.77008310249307,0.649446904659271,0
+8836,-0.0145759065571006,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,9.59818426767985,0
+8837,0.0249614830948271,0,0,0,NA,NA,0,NA,NA
+8838,0.0190369960448726,0.115789473684211,11.5789473684211,2,84.4045697398494,0.862451737451737,8.94736842105263,0.118081255392595,0
+8839,0.0744785943582597,0.656509695290859,65.6509695290859,2,97.4490689455811,0.730557780528654,60.1108033240997,5.43143848024843,0
+8840,0.108244419975046,0.878116343490305,87.8116343490305,1,99.626964905704,0.766760413499544,87.8116343490305,11.5522469300953,0
+8841,0.0668335790272513,0.60387811634349,60.387811634349,2,95.7905414947082,0.769936959592132,41.2742382271468,26.0210335385909,0
+8842,0.0474669547266707,0.493074792243767,49.3074792243767,2,95.9348029625824,0.856096467188201,43.4903047091413,25.7266773722145,0
+8843,0.0628773525329674,0.615789473684211,61.5789473684211,2,97.0494881547782,0.827278141751042,57.3684210526316,0.401237573379125,0
+8844,0.0819570662768511,0.911357340720222,91.1357340720222,1,99.7360893989003,0.854669887278584,91.1357340720222,0.196045533501993,0
+8845,0.0397392946996915,0.354570637119114,35.4570637119114,4,89.744691737741,0.800512074269189,22.9916897506925,4.08810390159488,0
+8846,0.0191609480710432,0.271468144044321,27.1468144044321,1,94.8928342519489,0.906412029035603,27.1468144044321,4.5203122216828,0
+8847,0.0248744089517889,0.0921052631578947,9.21052631578947,3,76.5352383687349,0.715142428785607,4.73684210526316,2.12011677878244,0
+8848,-0.00370937655885463,0,0,0,NA,NA,0,NA,NA
+8849,-0.00213517793168432,0,0,0,NA,NA,0,NA,NA
+8850,0.00149831689547652,0,0,0,NA,NA,0,NA,NA
+8851,0.000263558728801396,0,0,0,NA,NA,0,NA,NA
+8852,0.00303684172533855,0,0,0,NA,NA,0,NA,NA
+8853,0.00201141932811476,0,0,0,NA,NA,0,NA,NA
+8854,0.0105991357296284,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,51.170482635498,51.170482635498
+8855,-0.00720200897591631,0,0,0,NA,NA,0,NA,NA
+8856,-0.00957935995830564,0,0,0,NA,NA,0,NA,NA
+8857,0.00730626092363284,0,0,0,NA,NA,0,NA,NA
+8858,0.0168829303577612,0.0277008310249307,2.77008310249307,1,72.175958031556,0.920885382423844,2.77008310249307,86.1816413879395,74.3893203735352
+8859,0.0201271172639071,0.0263157894736842,2.63157894736842,3,50.8400314805911,0.604989604989605,1.31578947368421,24.6098377227783,15.5867252349854
+8860,0.0175689003390642,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,60.847530909947,52.2148818969727
+8861,0.018965902135326,0.0637119113573407,6.37119113573407,3,70.2372263254062,0.762656147271532,4.15512465373961,5.5561607816945,0
+8862,0.0229450350290231,0.0692520775623269,6.92520775623269,4,73.1605262479135,0.785119047619048,5.81717451523546,12.3390268325806,0
+8863,0.0252033511420258,0.105263157894737,10.5263157894737,4,78.0129684077389,0.733099209833187,7.63157894736842,9.10780370235443,0
+8864,0.0251641307929737,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,36.5300151824951,30.2951488494873
+8865,0.0223130208267276,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,41.9389053980509,20.7823009490967
+8866,0.0171124621319993,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,90.73681640625,90.73681640625
+8867,0.00949914749013547,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,38.9990010261536,10.3911504745483
+8868,0.0252893669965291,0.204986149584488,20.4986149584488,4,87.3717092196138,0.825837577057089,17.1745152354571,72.9535089827873,10.3911504745483
+8869,0.0213550561135872,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,88.4823417663574,72.9233703613281
+8870,0.0310537458401963,0.113573407202216,11.3573407202216,4,77.8869988105645,0.738405797101449,7.20221606648199,79.5726540728313,46.7601776123047
+8871,0.0103781201205182,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,21.3020819255284,5.19557523727417
+8872,0.0186702009722016,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,66.1970672607422,62.5630111694336
+8873,0.00650648413868711,0.0277008310249307,2.77008310249307,1,72.175958031556,1,2.77008310249307,46.7601776123047,41.5646018981934
+8874,0.0155384650742061,0.0637119113573407,6.37119113573407,2,74.5713123522124,0.762656147271532,3.32409972299169,24.6652098531308,10.3911504745483
+8875,0.0212580100437519,0.0184210526315789,1.84210526315789,3,37.0208748079497,0.490616621983914,0.789473684210526,20.483715397971,7.34765291213989
+8876,0.0237357897103191,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,36.8145728792463,14.6953058242798
+8877,0.0177611672972937,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,23.6992582593645,16.4298515319824
+8878,0.0235850560208628,0.0914127423822715,9.14127423822715,2,79.6978666593051,0.836946702800361,5.54016620498615,42.1867830103094,25.977876663208
+8879,0.0138293170784915,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,69.8757349650065,67.7420120239258
+8880,0.0196511429152693,0.0470914127423823,4.70914127423823,3,63.3221717832135,0.748139534883721,2.49307479224377,6.48594990898581,0
+8881,0.0261794746566565,0.116343490304709,11.6343490304709,10,58.8574262228817,0.521833193518478,2.77008310249307,54.0801501501174,27.9790287017822
+8882,0.0276406591444843,0.152354570637119,15.2354570637119,6,78.2729838762151,0.590196078431373,7.4792243767313,16.8238054969094,0
+8883,0.0292394059780667,0.139473684210526,13.9473684210526,8,73.1191387379066,0.655207178142958,7.63157894736842,60.3338228261696,16.4298515319824
+8884,0.0202069730215162,0.0470914127423823,4.70914127423823,2,69.4674072116699,0.706162790697674,2.49307479224377,22.4817492260652,5.19557523727417
+8885,0.0468242105658984,0.393351800554017,39.3351800554017,4,92.3144947565802,0.797119775201967,32.409972299169,3.95392402796678,0
+8886,0.0342941877867193,0.279778393351801,27.9778393351801,1,95.0523852144501,0.915618359541012,27.9778393351801,2.4883014471224,0
+8887,0.0364277811173356,0.218421052631579,21.8421052631579,6,83.7266845664259,0.808515998992189,17.1052631578947,42.333630205637,15.5867252349854
+8888,0.031850415241712,0.213296398891967,21.3296398891967,7,75.6061556663455,0.654178748964374,5.54016620498615,15.6467504810977,0
+8889,0.0229248647459388,0.0831024930747922,8.31024930747922,3,79.1242293766554,0.799679388371663,7.20221606648199,47.524994913737,11.6176595687866
+8890,0.005677744176799,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,24.2460180918376,20.7823009490967
+8891,0.00441084471647053,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,60.900842666626,59.2386741638184
+8892,0.0252758782239917,0.119113573407202,11.9113573407202,4,84.3516924851902,0.779262753319357,10.803324099723,8.28715141429458,0
+8893,0.0369097883188278,0.293628808864266,29.3628808864266,4,88.2946602830522,0.733169079149985,16.8975069252078,12.4707999499339,0
+8894,0.0395588697071498,0.335180055401662,33.5180055401662,5,86.9000802317105,0.623958333333333,14.9584487534626,4.99555933376974,0
+8895,0.0337034937800222,0.252631578947368,25.2631578947368,8,79.0478733563298,0.719947592531936,8.68421052631579,13.604110126694,0
+8896,0.0350098582030089,0.296398891966759,29.6398891966759,3,92.6131036674185,0.867447268573294,26.5927977839335,17.3151005539939,0
+8897,0.0444009071731955,0.412742382271468,41.2742382271468,2,95.0189265463362,0.912675374939526,38.2271468144044,5.32173939839305,0
+8898,-0.00385308424955437,0.0332409972299169,3.32409972299169,2,69.5361692923241,0.69576942524861,3.04709141274238,2.6406596104304,0
+8899,0.0370207592016653,0.365789473684211,36.5789473684211,3,91.8403416122202,0.788937171235338,26.0526315789474,4.85398031138688,0
+8900,0.0513475744317698,0.464912280701754,46.4912280701754,1,97.3326299962824,0.923197844150011,46.4912280701754,4.56119045821376,0
+8901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+8906,0.00934631184664843,0.138157894736842,13.8157894736842,2,80.2392787150731,0.782442748091603,12.5,5.38837357929775,0
+8907,-0.00496906319060291,0.0692520775623269,6.92520775623269,2,81.0802855003502,0.70453869047619,6.37119113573407,8.71641899108887,0
+8908,0.0181851651423206,0.074792243767313,7.4792243767313,6,61.8231214195741,0.648099150536137,4.43213296398892,38.5201265900223,10.3911504745483
+8909,0.0222807735579741,0.14404432132964,14.404432132964,4,78.9207285896739,0.698083706047053,8.58725761772853,36.6363779398111,14.6953058242798
+8910,0.0260738183241445,0.268421052631579,26.8421052631579,3,87.5334037418356,0.835672445650037,11.8421052631579,29.3394059854395,0
+8911,0.0147719619896616,0.18005540166205,18.005540166205,2,87.0789709716053,0.881278402296101,10.803324099723,10.9970000927265,0
+8912,0.0205347280669965,0.132963988919668,13.2963988919668,2,84.6668505659726,0.887477596820697,11.0803324099723,15.2976869841417,5.19557523727417
+8913,0.0250774005358946,0.135734072022161,13.5734072022161,3,85.2272876633379,0.80715811965812,11.9113573407202,6.5911037775935,0
+8914,0.0144248789160572,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,7.70422086715698,0
+8915,0.0027657409879902,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.7999868392944,10.3911504745483
+8916,0.0154011923769982,0.102493074792244,10.2493074792244,5,68.6778123363827,0.726017000607164,4.70914127423823,7.50355167646666,0
+8917,0.0217706796975209,0.213296398891967,21.3296398891967,6,80.1553708792687,0.672871789560895,8.86426592797784,9.07639248340161,0
+8918,0.0123273047883566,0.0605263157894737,6.05263157894737,4,64.8358725265421,0.645191409897292,2.89473684210526,9.54584851472274,0
+8919,0.0202282148634783,0.102493074792244,10.2493074792244,4,74.1537555046069,0.671220400728597,5.26315789473684,13.7405982017517,0
+8920,0.0166021409950165,0.0664819944598338,6.64819944598338,4,66.671210579691,0.605341246290801,3.32409972299169,16.6107208927472,0
+8921,0.0326729692848286,0.199445983379501,19.9445983379501,2,92.0781836607122,0.921314333978149,19.6675900277008,29.402899980545,15.5867252349854
+8922,0.0153771894811526,0.0921052631578947,9.21052631578947,3,80.2108943207748,0.829085457271364,7.89473684210526,8.58095397949219,0
+8923,0.0398260056781434,0.332409972299169,33.2409972299169,2,93.331812137497,0.766378621188473,28.2548476454294,3.07556655406952,0
+8924,0.049157678207687,0.454293628808864,45.4293628808864,6,92.9053110069677,0.702675900090765,38.2271468144044,3.83336010211852,0
+8925,0.0439161340300592,0.404432132963989,40.4432132963989,3,92.1753331973546,0.754742618238829,24.0997229916898,4.80722567153304,0
+8926,0.0222847090645461,0.0894736842105263,8.94736842105263,3,81.6485301898677,0.784269199009083,7.89473684210526,6.97586683666005,0
+8927,0.0344098958594662,0.282548476454294,28.2548476454294,2,91.649373163104,0.801970588855834,23.8227146814404,2.97622686741399,0
+8928,0.0345772292318727,0.171745152354571,17.1745152354571,10,67.703891056103,0.508113464635204,4.15512465373961,3.54532107230156,0
+8929,0.0480301174118475,0.326869806094183,32.6869806094183,7,87.7671595516928,0.68760816891658,21.3296398891967,2.03891701617483,0
+8930,0.0949213657185043,0.952631578947368,95.2631578947368,1,99.867195732999,0.845904298459043,95.2631578947368,1.20727718205742,0
+8931,0.0599919060437677,0.686980609418283,68.6980609418283,3,98.219690417617,0.827872291730241,67.8670360110803,18.8862770603549,0
+8932,0.0463112501882712,0.457063711911357,45.7063711911357,2,96.9097003304696,0.787946428571428,45.1523545706371,7.33520703460231,0
+8933,0.0870095097957762,0.889196675900277,88.9196675900277,1,99.6640189602595,0.583003300330033,88.9196675900277,3.79680253115027,0
+8934,0.0612066191970371,0.626315789473684,62.6315789473684,2,97.4664936114048,0.831618927045419,59.7368421052632,0.0873205922230953,0
+8935,-0.0178133009851025,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0
+8936,0.0513606820626279,0.587257617728532,58.7257617728532,1,98.3059702360414,0.883163560794467,58.7257617728532,1.28119319789815,0
+8937,0.0121624007939957,0.038781163434903,3.8781163434903,1,77.3446466870219,0.947982708933717,3.8781163434903,0,0
+8938,0.00587914640733097,0.1,10,2,82.2156638037124,0.876543209876543,8.1578947368421,0,0
+8939,0.0295289822140131,0.321329639889197,32.1329639889197,3,90.2202526340507,0.831603498542274,20.2216066481994,2.14000690805501,0
+8940,0.0474501143592803,0.304709141274238,30.4709141274238,7,82.6411533119112,0.747041982822479,10.5263157894737,2.84582474881952,0
+8941,0.0831913141663692,0.742382271468144,74.2382271468144,1,99.1077237700839,0.830222963295496,74.2382271468144,1.88782008548281,0
+8942,0.0417914281673918,0.32409972299169,32.409972299169,4,94.0276066980267,0.790635632539437,31.0249307479224,1.76102709158873,0
+8943,0.0907390015429548,0.681578947368421,68.1578947368421,2,96.5944753500321,0.825168271278862,58.421052631579,1.09986570719126,0
+8944,0.0997951194422108,0.722991689750693,72.2991689750693,3,96.7397602200693,0.830204498977505,65.3739612188366,1.20178295186653,0
+8945,0.0518323447417201,0.437673130193906,43.7673130193906,2,95.7035509747802,0.895753354849669,41.5512465373961,0.924976487702961,0
+8946,-0.00534808104111261,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,0,0
+8947,0.0145008978521242,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,0,0
+8948,-0.0011522144857111,0,0,0,NA,NA,0,NA,NA
+8949,-0.00152217941304821,0,0,0,NA,NA,0,NA,NA
+8950,-0.000257282586820834,0,0,0,NA,NA,0,NA,NA
+8951,-0.00122892435060031,0,0,0,NA,NA,0,NA,NA
+8952,0.00354794290373386,0,0,0,NA,NA,0,NA,NA
+8953,-0.000787033154824271,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,34.1954889297485,31.6034507751465
+8954,0.0112725886769304,0.0249307479224377,2.49307479224377,2,63.2654294198794,0.572679924242424,2.21606648199446,48.937808142768,33.2679138183594
+8955,-0.00338143233375855,0,0,0,NA,NA,0,NA,NA
+8956,-0.00461691940850678,0,0,0,NA,NA,0,NA,NA
+8957,0.0165971951868253,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,163.58065032959,161.146606445312
+8958,0.0190794794045808,0,0,0,NA,NA,0,NA,NA
+8959,0.0151306501388478,0.0342105263157895,3.42105263157895,2,71.5369935792344,0.654859218891916,3.15789473684211,9.76905364256639,0
+8960,0.0262596786026701,0.116343490304709,11.6343490304709,5,69.7038500240934,0.64934434191355,3.601108033241,35.3537104129791,0
+8961,0.0254762009761462,0.110803324099723,11.0803324099723,8,62.7106578651077,0.580369182126749,3.04709141274238,18.5390321016312,0
+8962,0.0226498789084762,0.102493074792244,10.2493074792244,4,73.0102404655297,0.689485934021453,3.8781163434903,35.0095770294602,11.6176595687866
+8963,0.0204727672770452,0.0921052631578947,9.21052631578947,5,70.3729924839451,0.620189905047476,3.68421052631579,12.6651319095067,0
+8964,0.0225306694471462,0.0415512465373961,4.15512465373961,4,57.2799649224169,0.573173935890699,2.49307479224377,72.4132153828939,47.0479354858398
+8965,0.0176354220873545,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,37.8342628479004,16.4298515319824
+8966,0.0207091642698459,0.0692520775623269,6.92520775623269,2,77.1989234742067,0.785119047619048,5.26315789473684,78.6191168212891,41.8880653381348
+8967,0.0198678488795275,0.0868421052631579,8.68421052631579,1,87.058227229868,0.83776283488099,8.68421052631579,140.985479181463,130.821243286133
+8968,0.0167062718063666,0.0526315789473684,5.26315789473684,4,64.5695216840793,0.672413793103448,3.32409972299169,139.706300032766,118.591209411621
+8969,0.0190233925361673,0.07202216066482,7.20221606648199,2,78.7638577500085,0.789734255551511,5.54016620498615,168.993912916917,160.054077148438
+8970,0.0156396996837702,0.0664819944598338,6.64819944598338,5,60.8298424322775,0.605341246290801,3.04709141274238,106.559891700745,77.2377777099609
+8971,0.0148504368327658,0.0421052631578947,4.21052631578947,4,62.6235274701637,0.652014652014652,3.15789473684211,44.3239080905914,26.4923400878906
+8972,0.0153501854197366,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,29.3906116485596,29.3906116485596
+8973,0.00623210623498657,0.03601108033241,3.601108033241,2,64.2671370987704,0.827107279693487,1.93905817174515,13.2108289278471,10.3911504745483
+8974,0.0412719544759427,0.296398891966759,29.6398891966759,5,84.7337320655088,0.771714740320672,16.6204986149584,8.01065124083902,0
+8975,0.0322505406911851,0.163157894736842,16.3157894736842,5,79.57978825834,0.65699976706266,7.63157894736842,40.5111706103048,5.19557523727417
+8976,0.0202118043610897,0.0470914127423823,4.70914127423823,5,59.7558755684403,0.538255813953488,3.04709141274238,50.8696245305678,22.0429573059082
+8977,0.0135689564105275,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,2.59778761863708,0
+8978,0.0249751283805492,0.124653739612188,12.4653739612188,2,84.5906249546235,0.834651898734177,9.69529085872576,39.8958385043674,10.3911504745483
+8979,0.0263144600864555,0.102631578947368,10.2631578947368,7,67.9210113976359,0.639972930295511,5,17.3070825430063,0
+8980,0.0332986694659684,0.210526315789474,21.0526315789474,3,90.5834086842925,0.725870646766169,18.8365650969529,8.07465222634767,0
+8981,0.0295288171552867,0.191135734072022,19.1135734072022,5,86.6756054360405,0.765000566059096,16.0664819944598,44.7319116868835,10.3911504745483
+8982,0.024172948380616,0.10803324099723,10.803324099723,7,73.0809247481925,0.603296703296703,6.37119113573407,16.5123838155698,0
+8983,0.0317858659150692,0.160526315789474,16.0526315789474,5,83.3467117924826,0.752765126870527,12.1052631578947,9.09938742684536,0
+8984,0.0255294235680103,0.119113573407202,11.9113573407202,3,78.1194039077766,0.731961914744934,6.37119113573407,20.1428755161374,0
+8985,0.030211631830939,0.146814404432133,14.6814404432133,5,82.6424708671329,0.72952047952048,11.3573407202216,5.21298700008752,0
+8986,0.0241479955709873,0.074792243767313,7.4792243767313,4,69.8601474611613,0.748642250382955,4.15512465373961,3.39642095565796,0
+8987,0.0374711303862951,0.284210526315789,28.4210526315789,6,87.5563780214352,0.77790346907994,22.6315789473684,12.5595754517449,0
+8988,0.0412332214835265,0.349030470914127,34.9030470914127,5,87.8488255951923,0.771922326488897,23.2686980609418,8.17773236168755,0
+8989,0.0390906939136285,0.296398891966759,29.6398891966759,5,89.7184995594812,0.85271918730366,24.6537396121884,6.22216181888759,0
+8990,0.0327598680677589,0.257617728531856,25.7617728531856,1,94.6099543334011,0.943198165797518,25.7617728531856,6.40437914222799,0
+8991,0.0295804508430018,0.252631578947368,25.2631578947368,2,92.9203528670147,0.898869963969866,24.2105263157895,6.1522526293993,0
+8992,0.0384905266937822,0.340720221606648,34.0720221606648,4,90.2932888253235,0.789143460074613,23.5457063711911,6.99874485992804,0
+8993,0.0392473012073013,0.329639889196676,32.9639889196676,3,94.0798604222268,0.806626874808693,31.0249307479224,6.24822793688093,0
+8994,0.0371844253130604,0.310249307479224,31.0249307479224,4,88.3905156073841,0.741619945127043,14.404432132964,5.83687933853694,0
+8995,0.0541816137187293,0.573684210526316,57.3684210526316,2,97.8912438020428,0.705345739828498,56.578947368421,3.69923521619324,0
+8996,0.04019517063821,0.43213296398892,43.213296398892,2,93.7938193427953,0.852740715560466,25.4847645429363,17.8919247419406,0
+8997,0.0520229424707755,0.520775623268698,52.0775623268698,1,97.8571254487222,0.886070692977211,52.0775623268698,3.4163903987154,0
+8998,0.0382378680015259,0.307479224376731,30.7479224376731,3,93.6225279759068,0.8556,29.3628808864266,7.43748035516825,0
+8999,0.0397489178703166,0.397368421052632,39.7368421052632,3,95.3826885304403,0.832263963552094,38.1578947368421,2.91338247337089,0
+9000,0.0352783007551036,0.342105263157895,34.2105263157895,2,92.4861137724262,0.813584905660377,23.3918128654971,3.79568542578281,0
+9001,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9002,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9003,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9004,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9005,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9006,0.00376657820452238,0.1125,11.25,2,74.2150239386403,0.874804381846635,9.375,1.63091460863749,0
+9007,0.00496308544434693,0.152631578947368,15.2631578947368,1,91.5666254903575,0.893788819875776,15.2631578947368,9.47855554778,0
+9008,0.0110770963801004,0.0263157894736842,2.63157894736842,2,60.6867581339923,0.841995841995842,2.10526315789474,29.6093720436096,5.19557523727417
+9009,-0.00917511951318279,0.0236842105263158,2.36842105263158,2,59.10066639958,0.658580413297394,1.84210526315789,17.3171316782633,11.6176595687866
+9010,0.0417204873246737,0.37,37,3,92.3070613622018,0.847712762841914,18.25,28.8291501483402,5.19557523727417
+9011,0.0222220901121737,0.244736842105263,24.4736842105263,3,89.121499789573,0.840476890138953,13.1578947368421,42.0873644428868,22.0429573059082
+9012,0.027484865409018,0.244736842105263,24.4736842105263,1,94.4770536430222,0.920238445069476,24.4736842105263,31.0551010306163,0
+9013,0.0176771647539729,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,6.49446904659271,5.19557523727417
+9014,0.00867666637590446,0.025,2.5,4,43.859649122807,0.447731755424063,1,6.44989790916443,0
+9015,0.0112793693369512,0.0157894736842105,1.57894736842105,3,30.8730773315672,0.419404125286478,0.526315789473684,11.1643578211466,5.19557523727417
+9016,0.0211756493025716,0.0894736842105263,8.94736842105263,5,68.0396824138823,0.666597853014038,3.68421052631579,7.25761475282557,0
+9017,0.0276853616679881,0.255263157894737,25.5263157894737,5,82.8081245800442,0.753056334023801,12.6315789473684,12.5459762406103,0
+9018,0.0356417974412034,0.2925,29.25,6,88.1858263922477,0.806653776918461,20,5.63531121637067,0
+9019,0.0215281773069268,0.0447368421052632,4.47368421052632,3,66.2924355821115,0.665013774104683,3.15789473684211,10.572859175065,0
+9020,0.014390907850774,0.0736842105263158,7.36842105263158,4,68.127541717108,0.688131313131313,3.15789473684211,3.42884004116058,0
+9021,0.0460699325681689,0.336842105263158,33.6842105263158,2,94.7611524231374,0.909394372913686,32.6315789473684,19.1954411901534,0
+9022,0.0242718205212896,0.185,18.5,4,83.5254325969445,0.697970740915526,9.25,4.62525932853286,0
+9023,0.0425581959723403,0.373684210526316,37.3684210526316,3,91.3560208259081,0.735940530058177,24.2105263157895,5.97365999221802,0
+9024,0.0435842805655786,0.357894736842105,35.7894736842105,5,90.5764824598421,0.704851930195664,26.8421052631579,2.8240855511497,0
+9025,0.0312756461829658,0.197368421052632,19.7368421052632,6,81.0427214212032,0.726279185295579,7.63157894736842,5.4710918490092,0
+9026,0.0243872459090926,0.0675,6.75,3,79.3957250893676,0.725668682586196,6,0.577286137474908,0
+9027,0.0379417249690672,0.265789473684211,26.5789473684211,3,90.9963165763813,0.834452167369651,21.5789473684211,1.54324016948738,0
+9028,0.0318126041786902,0.215789473684211,21.5789473684211,5,80.1398600726917,0.674612358250405,7.36842105263158,1.35003447532654,0
+9029,0.0509663141361671,0.452631578947368,45.2631578947368,3,92.5593904633528,0.711841785974278,26.5789473684211,0.392688826073048,0
+9030,0.0857405381184071,0.9725,97.25,1,99.9261039309117,0.753633899975364,97.25,0,0
+9031,0.0784683062351848,0.826315789473684,82.6315789473684,3,98.9775668970442,0.708230958230958,81.8421052631579,0.209316845912083,0
+9032,0.074539272053976,0.797368421052632,79.7368421052632,1,99.3517893599999,0.766643164191325,79.7368421052632,12.8644401326825,0
+9033,0.0742094612827427,0.886842105263158,88.6842105263158,1,99.6653789560343,0.611551239458217,88.6842105263158,4.74958262033208,0
+9034,0.0702670948719606,0.7225,72.25,2,98.8783898006011,0.788023317435082,72,0.0179777689871079,0
+9035,0.0292805390605113,0.160526315789474,16.0526315789474,2,88.1786003913218,0.752765126870527,12.3684210526316,3.94027972612225,0
+9036,0.0350697911399613,0.0894736842105263,8.94736842105263,2,83.9313228274086,0.901940545004129,8.42105263157895,9.76712918281555,0
+9037,0.0369915958124023,0.328947368421053,32.8947368421053,3,91.346788154137,0.881834672194869,22.8947368421053,1.24961877059937,0
+9038,0.0464401665440528,0.52,52,2,95.095528668801,0.790051679586563,30,0.0999149084091187,0
+9039,-0.0190433415529122,0.0868421052631579,8.68421052631579,2,84.7755499609084,0.898601771800619,8.42105263157895,0,0
+9040,0.0569079688321692,0.513157894736842,51.3157894736842,1,97.8589072810594,0.886516350604748,51.3157894736842,0.905895169576009,0
+9041,0.0910628206772871,0.778947368421053,77.8947368421053,2,99.0526051471938,0.837565187654954,77.6315789473684,2.82966696410566,0
+9042,0.142170170111288,0.936842105263158,93.6842105263158,1,99.8207047058738,0.953016815034619,93.6842105263158,3.39651093858012,0
+9043,0.0950179320598164,0.725,72.5,4,96.6536958343692,0.886572143452878,69,3.7059792600829,0
+9044,0.0868597137484405,0.818421052631579,81.8421052631579,2,98.8647670707754,0.708661027847851,80,3.25297827582651,0
+9045,0.090092478182755,0.8,80,2,97.0216397428195,0.68586387434555,46.0526315789474,1.44746560015176,0
+9046,0.0587486465970869,0.610526315789474,61.0526315789474,2,95.6380144466163,0.786530179139879,32.3684210526316,1.67380637547065,0
+9047,0.0376046484750759,0.305,30.5,6,85.8029327672878,0.700511084345193,16.25,14.4551686341645,0
+9048,0.00973216041870489,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,3.71112516948155,0
+9049,0.0107165339911693,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,4.32964603106181,0
+9050,0.0160434120343588,0.0789473684210526,7.89473684210526,5,65.0837113841216,0.667638483965015,4.21052631578947,5.27848078409831,0
+9051,0.0199191418208829,0.1175,11.75,5,73.360771406705,0.645892351274788,5.5,4.13592258412787,0
+9052,0.0133236382429602,0.0368421052631579,3.68421052631579,4,52.9086443073112,0.636612021857924,1.84210526315789,6.46263262203762,0
+9053,0.00715154313825463,0,0,0,NA,NA,0,NA,NA
+9054,0.00223877144839877,0,0,0,NA,NA,0,NA,NA
+9055,0.00324373034965902,0,0,0,NA,NA,0,NA,NA
+9056,0.0017790853130193,0,0,0,NA,NA,0,NA,NA
+9057,0.0171865616709846,0,0,0,NA,NA,0,NA,NA
+9058,0.0183166736912502,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,61.989013671875,58.0882949829102
+9059,0.0194247749162059,0.025,2.5,4,42.5339393749759,0.368836291913215,1,7.86223583221436,0
+9060,0.0256668879433403,0.0605263157894737,6.05263157894737,4,68.0636092379487,0.645191409897292,3.68421052631579,54.409647402556,41.5646018981934
+9061,0.0257408415296691,0.0815789473684211,8.15789473684211,6,64.1730358223426,0.564469914040115,3.42105263157895,19.766271745005,5.19557523727417
+9062,0.0228337168329362,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,51.3563821580675,27.9790287017822
+9063,0.0189485866166933,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,7.08487532355569,0
+9064,0.0195416466981298,0.0131578947368421,1.31578947368421,2,42.162911735052,0.797333333333333,1.05263157894737,67.7298721313477,58.0882949829102
+9065,0.0238730461382817,0.0342105263157895,3.42105263157895,4,56.3694475605296,0.597335755373903,2.36842105263158,10.6155478770916,5.19557523727417
+9066,0.0216341821334744,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,28.2434993743896,15.5867252349854
+9067,0.0164494034244581,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,86.3163935343425,72.7380523681641
+9068,0.0208368890013868,0.0447368421052632,4.47368421052632,4,56.4063593485795,0.581267217630854,1.84210526315789,70.9268755071303,20.7823009490967
+9069,0.0212905824439459,0.0447368421052632,4.47368421052632,4,59.6034525304417,0.623140495867769,2.36842105263158,89.8706198299632,53.4917221069336
+9070,0.0199146656463415,0.0631578947368421,6.31578947368421,5,68.9304568076558,0.578651685393258,4.21052631578947,55.1367461681366,23.2353191375732
+9071,0.0104961689966512,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,16.1614501659687,0
+9072,0.0208466308795323,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,46.0258079528809,31.1734504699707
+9073,0.015591191331738,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,57.2691650390625,57.1513290405273
+9074,0.0256898709366061,0.0657894736842105,6.57894736842105,4,63.6153718003284,0.652112676056338,2.63157894736842,8.00055732727051,0
+9075,0.0282962540867629,0.1,10,7,65.5049950018919,0.618573797678275,3.25,62.9164469718933,34.8529777526855
+9076,0.0320443889793846,0.160526315789474,16.0526315789474,6,79.220307480886,0.662861536641628,8.68421052631579,53.3522339805228,18.7329120635986
+9077,0.027318880526352,0.0631578947368421,6.31578947368421,5,68.3811859000709,0.634831460674157,4.47368421052632,8.59838978449504,0
+9078,0.019142756259412,0.0526315789473684,5.26315789473684,6,55.8310427642727,0.557347670250896,2.89473684210526,23.8176390886307,0
+9079,0.0178427627570272,0.1175,11.75,4,78.8686505985846,0.660056657223796,5.75,22.3929021916491,0
+9080,0.0127194502121136,0.0815789473684211,8.15789473684211,5,69.8214955067691,0.651575931232092,3.94736842105263,15.8971610684549,0
+9081,0.0272195715211159,0.165789473684211,16.5789473684211,7,77.6110581135048,0.651276168626326,7.63157894736842,23.2826335543678,0
+9082,0.0189570152576045,0.115789473684211,11.5789473684211,6,72.7486100307208,0.709620334620335,4.73684210526316,16.828486084938,0
+9083,0.0242405921455429,0.1525,15.25,7,81.7295267386348,0.56587076306562,10.75,24.507242867204,0
+9084,0.0182389946533811,0.0605263157894737,6.05263157894737,8,48.4279199396156,0.40865234982882,1.57894736842105,20.2773076140362,0
+9085,0.022568103683175,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,4.85740884145101,0
+9086,0.0202309987659407,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.19557523727417,0
+9087,0.0251305288190633,0.135,13.5,5,79.3183287088501,0.825968052706818,10.5,30.3513267393465,0
+9088,0.0266456164831891,0.136842105263158,13.6842105263158,5,76.4481806937044,0.661551109893121,5.52631578947368,45.4606484449827,5.19557523727417
+9089,0.0191549684948864,0.0526315789473684,5.26315789473684,4,61.7600536090805,0.591397849462366,2.63157894736842,28.8279438972473,0
+9090,0.02852394344068,0.192105263157895,19.2105263157895,3,88.5494814899375,0.767915309446254,15.5263157894737,10.8181841079503,0
+9091,0.0270514300526338,0.1175,11.75,7,70.7206478802648,0.603399433427762,5.75,35.8760702254924,15.5867252349854
+9092,0.0292269475663105,0.139473684210526,13.9473684210526,3,84.5247845997964,0.885069059380986,11.8421052631579,10.4816461509129,0
+9093,0.0176675899998181,0.0473684210526316,4.73684210526316,3,69.0166313507975,0.727849396357684,3.68421052631579,15.5809442996979,0
+9094,0.0498533581527657,0.365789473684211,36.578947368421,3,92.485322151768,0.85101447381318,26.8421052631579,11.7396804343025,0
+9095,0.0224569903505108,0.2025,20.25,5,80.5078323389642,0.651689306861721,7.25,9.00977988301972,0
+9096,0.0135120183870353,0.163157894736842,16.3157894736842,4,83.3771208298071,0.73445143256464,12.3684210526316,4.49415690668168,0
+9097,0.0465346192150671,0.494736842105263,49.4736842105263,1,97.7196633854302,0.829382183908046,49.4736842105263,4.17375505985098,0
+9098,0.0562696895509266,0.555263157894737,55.5263157894737,4,95.4901967259573,0.839391377852916,50.7894736842105,6.09880064110055,0
+9099,0.0480113531710776,0.51,51,2,96.445196400209,0.833073070917021,47.25,7.6289838996588,0
+9100,0.0535993824583582,0.616666666666667,61.6666666666667,1,98.4787239257302,0.911783238815375,61.6666666666667,5.71847737157667,0
+9101,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9102,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9103,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9104,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9105,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9106,0.00723681123432279,0.0328947368421053,3.28947368421053,2,45.3445993393869,0.586394557823129,2.63157894736842,3.11734504699707,0
+9107,0.0144224972806779,0.127423822714681,12.7423822714681,2,88.1771776858108,0.941229141229141,12.4653739612188,28.8363482330156,5.19557523727417
+9108,0.00667220775797525,0.132963988919668,13.2963988919668,2,87.793160126734,0.831216395231045,12.4653739612188,21.6269368827343,7.34765291213989
+9109,0.00205888618903194,0.14404432132964,14.404432132964,2,88.4119208381339,0.868732046107414,13.5734072022161,18.3842221131692,5.19557523727417
+9110,-0.00127881858738635,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,16.7944658279419,10.3911504745483
+9111,-0.0362799670187682,0,0,0,NA,NA,0,NA,NA
+9112,0.00249145494645415,0.0221606648199446,2.21606648199446,2,56.2053215106892,0.590934844192635,1.66204986149584,16.6288707256317,10.3911504745483
+9113,0.0107508241696786,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,14.1487491130829,11.6176595687866
+9114,0.011753462907463,0.0631578947368421,6.31578947368421,7,53.9723958643135,0.466292134831461,2.10526315789474,8.47215668360392,5.19557523727417
+9115,0.0142869183898994,0.0415512465373961,4.15512465373961,5,47.1716708269646,0.478323699421965,1.38504155124654,7.41727717717489,5.19557523727417
+9116,0.0172250063292935,0.0775623268698061,7.75623268698061,6,65.5052934295373,0.638638638638639,4.70914127423823,7.02042298657553,0
+9117,0.0213959604191277,0.182825484764543,18.2825484764543,5,82.6369780891466,0.733971997052321,9.41828254847645,9.5804456653017,0
+9118,0.0294005891679262,0.215789473684211,21.5789473684211,7,83.4765200785127,0.727377921777366,11.5789473684211,8.37974872240206,0
+9119,0.0221806147301045,0.121883656509695,12.1883656509695,6,78.6605619028306,0.676826668940234,8.31024930747922,11.4772077582099,0
+9120,0.0234591035173391,0.193905817174515,19.3905817174515,6,81.6925301647494,0.646998016371916,12.1883656509695,20.7022606032235,0
+9121,0.0422499553794656,0.321329639889197,32.1329639889197,2,95.268258699801,0.859669582118562,31.8559556786704,11.8563384023206,0
+9122,0.0258593057787757,0.242105263157895,24.2105263157895,3,89.3707763940191,0.798865176151761,16.3157894736842,10.4644945393438,0
+9123,0.0364935492429256,0.301939058171745,30.1939058171745,7,85.3865550240501,0.687313673354283,16.6204986149584,7.28338694353716,0
+9124,0.0332735372731272,0.254847645429363,25.4847645429363,6,82.9587065371844,0.729961918578294,12.7423822714681,6.1266292800074,0
+9125,0.0238129019893969,0.121883656509695,12.1883656509695,5,72.3507938685404,0.646048256458351,4.43213296398892,9.05152114954862,0
+9126,0.0189267176592119,0.05,5,4,65.2324269878267,0.70961887477314,3.68421052631579,0.820353984832764,0
+9127,0.0364629315778967,0.235457063711911,23.5457063711911,4,87.6745963549713,0.766124388137057,17.4515235457064,2.58599890540628,0
+9128,0.0393108517172023,0.349030470914127,34.9030470914127,6,89.6627308745276,0.698132490941187,24.3767313019391,0.924243911864266,0
+9129,0.0489859044714863,0.515235457063712,51.5235457063712,3,96.7207440543848,0.784119601328904,49.584487534626,1.13567604813524,0
+9130,0.0857696891321163,0.855263157894737,85.5263157894737,1,99.5603354844149,0.628058727569331,85.5263157894737,0.563402434128981,0
+9131,0.0716187954052168,0.825484764542936,82.5484764542936,1,99.4408863994965,0.499504852446029,82.5484764542936,0.482192170699971,0
+9132,0.07356068617316,0.869806094182826,86.9806094182826,1,99.5987109379562,0.727537377803335,86.9806094182826,0.13237134362482,0
+9133,0.0716317541022731,0.786703601108033,78.6703601108033,2,96.7945299795224,0.762950532613454,60.1108033240997,0.256119906062811,0
+9134,0.0529928028147352,0.497368421052632,49.7368421052632,4,92.5375154304758,0.670306656694091,32.6315789473684,0.808591320401146,0
+9135,0.0346463139364946,0.340720221606648,34.0720221606648,2,92.2724019518666,0.829954403285978,23.5457063711911,2.56388641372929,0
+9136,0.0324313095260452,0.398891966759003,39.8891966759003,2,94.0915393921459,0.86136712749616,31.5789473684211,1.87639802032047,0
+9137,0.05890586439177,0.598337950138504,59.8337950138504,3,97.2882594228411,0.820398009950249,58.1717451523546,1.51412825231199,0
+9138,0.035419789045945,0.257894736842105,25.7894736842105,3,90.5534307771672,0.709058671824629,19.4736842105263,0.499104640921768,0
+9139,0.0411706917431246,0.351800554016621,35.180055401662,6,89.3400358146772,0.706145706145706,22.7146814404432,0.0818200824767586,0
+9140,0.090333766312341,0.78393351800554,78.393351800554,1,99.2809290737347,0.852106227106227,78.393351800554,1.38582847480639,0
+9141,0.107428459698267,0.903047091412742,90.3047091412742,1,99.7093740351042,0.664576074332172,90.3047091412742,1.72261062136457,0
+9142,0.133853154205343,0.81994459833795,81.994459833795,1,99.4202635107429,0.950145007595636,81.994459833795,1.15233438079422,0
+9143,0.0339201192878567,0.273684210526316,27.3684210526316,2,94.6326733923108,0.786483763465861,27.1052631578947,36.1901960372925,0
+9144,0.0283004912687079,0.0775623268698061,7.75623268698061,5,71.4831782260038,0.566366366366366,5.26315789473684,23.6762210641588,5.19557523727417
+9145,0.0579819843525175,0.60387811634349,60.387811634349,2,95.4998752335952,0.769936959592132,36.5650969529086,2.53408748512968,0
+9146,0.0659887284087856,0.656509695290859,65.6509695290859,2,97.8282022504382,0.822562440835943,63.98891966759,1.05147898146875,0
+9147,0.0662833824837925,0.697368421052632,69.7368421052632,1,98.9321616400442,0.787245210392792,69.7368421052632,1.39144489720183,0
+9148,0.0466701961478794,0.418282548476454,41.8282548476454,3,92.0587816812327,0.739350180505415,26.5927977839335,0.599184481513421,0
+9149,0.0550136888471613,0.634349030470914,63.4349030470914,1,98.5802481063074,0.839880065289901,63.4349030470914,0,0
+9150,0.0318573431450406,0.254847645429363,25.4847645429363,6,87.0404824993712,0.680864085592529,15.7894736842105,6.88966020293858,0
+9151,0.0183174429827456,0.131578947368421,13.1578947368421,3,84.7144710973387,0.810338680926916,11.0526315789474,21.4087005805969,0
+9152,0.0241751852586188,0.0886426592797784,8.86426592797784,4,68.7321229769861,0.725683890577508,3.601108033241,3.96393384039402,0
+9153,0.0137220194462676,0,0,0,NA,NA,0,NA,NA
+9154,0.0156321382098926,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0
+9155,0.0111465048266262,0,0,0,NA,NA,0,NA,NA
+9156,0.0148900776754528,0,0,0,NA,NA,0,NA,NA
+9157,0.0217612611654394,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,52.2148818969727,52.2148818969727
+9158,0.0216473877326607,0.03601108033241,3.601108033241,3,59.7050842905758,0.711845466155811,2.49307479224377,4.96146007684561,0
+9159,0.0192587678480777,0.0631578947368421,6.31578947368421,3,70.0296146014243,0.691011235955056,3.15789473684211,8.20314701398214,0
+9160,0.0177353050791864,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,11.1333755084446,5.19557523727417
+9161,0.0294737954851104,0.213296398891967,21.3296398891967,4,85.2616619947494,0.728950911350456,12.7423822714681,9.44815212101131,0
+9162,0.0183895493271777,0.102493074792244,10.2493074792244,3,81.6508014538614,0.762548067192876,8.03324099722992,14.3290072002926,5.19557523727417
+9163,0.0201645322312719,0.0289473684210526,2.89473684210526,5,40.5412612837039,0.382113821138211,1.05263157894737,12.8673804890026,0
+9164,0.0147192590292764,0.102493074792244,10.2493074792244,2,81.3310518237384,0.74428253390002,6.09418282548476,23.2003695513751,15.5867252349854
+9165,0.0237622621921962,0.0886426592797784,8.86426592797784,4,72.0256672218156,0.662380173018471,3.8781163434903,9.84881959855556,0
+9166,0.0158073385040719,0.102493074792244,10.2493074792244,3,83.9839197525506,0.689485934021453,9.14127423822715,28.6503793871081,10.3911504745483
+9167,0.0152150010706177,0.0657894736842105,6.57894736842105,4,75.2835887135572,0.67887323943662,5.52631578947368,12.4487469100952,0
+9168,0.00996341055417406,0,0,0,NA,NA,0,NA,NA
+9169,0.00245765436824679,0,0,0,NA,NA,0,NA,NA
+9170,0.000150543140077598,0,0,0,NA,NA,0,NA,NA
+9171,-0.00244308727074225,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,17.7563650948661,11.6176595687866
+9172,0.0163405517278558,0.0526315789473684,5.26315789473684,2,72.6112499709987,0.818007662835249,4.15512465373961,17.7174237401862,10.3911504745483
+9173,0.0219405908806303,0.0803324099722992,8.03324099722992,3,80.1640948464557,0.676108690079467,6.92520775623269,16.5527723739887,5.19557523727417
+9174,0.0239609175395271,0.0415512465373961,4.15512465373961,4,58.5808548398306,0.715449290593799,3.04709141274238,13.3279349327087,0
+9175,0.0277910170461316,0.144736842105263,14.4736842105263,4,82.3878092160774,0.741538461538461,9.47368421052632,17.3545137492093,7.34765291213989
+9176,0.024394002310549,0.121883656509695,12.1883656509695,4,83.7960361306932,0.784551112626822,10.803324099723,32.8858678340912,10.3911504745483
+9177,0.0299800886299575,0.138504155124654,13.8504155124654,1,90.6277457305062,0.918063173822584,13.8504155124654,12.5877834796906,0
+9178,0.0236578247781747,0.0941828254847645,9.41828254847645,2,85.3240652127375,0.881716906946265,9.14127423822715,12.0692049054538,5.19557523727417
+9179,0.0307961901437107,0.131578947368421,13.1578947368421,5,81.4018633831919,0.810338680926916,10.7894736842105,7.17722367286682,0
+9180,0.0302233988940545,0.210526315789474,21.0526315789474,3,87.431537445417,0.810945273631841,16.6204986149584,7.06632806752857,0
+9181,0.0405462632009597,0.304709141274238,30.4709141274238,7,86.6810537130187,0.718132495145048,22.1606648199446,18.9691705010154,0
+9182,0.0309441195326462,0.191135734072022,19.1135734072022,4,89.4554958840607,0.846739499603759,18.005540166205,13.7605752737626,0
+9183,0.0331948836921488,0.284210526315789,28.421052631579,3,92.7409849937851,0.742081447963801,24.7368421052632,12.6078333015795,0
+9184,0.0329663968569092,0.218836565096953,21.8836565096953,5,84.0070318717746,0.689108409321175,13.8504155124654,22.2255365395848,0
+9185,0.0177413966309342,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417
+9186,0.0209518504418857,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.91280193236715,4.43213296398892,1.62361726164818,0
+9187,0.0171835307719831,0.0947368421052632,9.47368421052632,4,72.0932460431247,0.723837209302326,3.68421052631579,10.8935196664598,0
+9188,0.0225686458286273,0.0886426592797784,8.86426592797784,4,69.2550125217457,0.641278933832125,3.601108033241,5.089908644557,0
+9189,0.0271987733589982,0.135734072022161,13.5734072022161,6,74.9566197557136,0.600541819291819,7.20221606648199,11.1201909318262,0
+9190,0.0255352590486073,0.224376731301939,22.4376731301939,2,92.6275982423299,0.883606150793651,21.8836565096953,2.42960762094568,0
+9191,0.028075984259761,0.115789473684211,11.5789473684211,4,75.3939523865371,0.755469755469755,3.94736842105263,72.8466146642511,51.955753326416
+9192,0.0398913092024907,0.321329639889197,32.1329639889197,4,88.6993943294363,0.789504373177843,17.7285318559557,29.5813257324285,0
+9193,0.0322935557424367,0.196675900277008,19.6675900277008,5,85.3003234937362,0.760993103448276,14.6814404432133,13.3619391683122,0
+9194,0.0317823780023598,0.204986149584488,20.4986149584488,3,88.2452675691727,0.806486196730099,15.7894736842105,5.6081533174257,0
+9195,0.0218847231706221,0.0868421052631579,8.68421052631579,8,58.8720183201173,0.411890276443591,2.36842105263158,8.49606014020515,0
+9196,0.0508896756756482,0.523545706371191,52.3545706371191,5,93.9444250649319,0.772126245847176,43.4903047091413,3.07474525643404,0
+9197,0.0652864750050953,0.709141274238227,70.9141274238227,3,97.3463765446904,0.892559523809524,67.590027700831,2.56704608537257,0
+9198,0.0257359875600978,0.155124653739612,15.5124653739612,5,79.3070809005109,0.731553151935102,7.75623268698061,27.1152949333191,0
+9199,0.030872653101381,0.0868421052631579,8.68421052631579,2,85.1885343539816,0.817483189241114,8.42105263157895,22.7497091293335,0
+9200,0.0203506263618565,0.149122807017544,14.9122807017544,2,84.8857072886328,0.810878066121578,9.35672514619883,25.8305241827871,0
+9201,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9202,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9203,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9204,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9205,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9206,-0.0208481634258772,0.0131578947368421,1.31578947368421,1,31.8747015751665,1,1.31578947368421,19.7576065063477,18.7329120635986
+9207,0.00193792180558234,0.135734072022161,13.5734072022161,1,90.4761904761905,0.84848137973138,13.5734072022161,29.7943498650376,15.5867252349854
+9208,0.0198287791277946,0.177285318559557,17.7285318559557,4,80.1974413203507,0.717833092833093,9.14127423822715,25.0577355846763,0
+9209,0.0271968409552703,0.243767313019391,24.3767313019391,1,94.3032955256761,0.898929096381326,24.3767313019391,18.7828976674513,0
+9210,0.00185563497913168,0.0184210526315789,1.84210526315789,2,56.5983888707251,0.490616621983914,1.57894736842105,65.2597133091518,54.2434005737305
+9211,-0.0398425619592606,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.866452925581109,8.31024930747922,8.36602048873901,0
+9212,0.024665219308515,0.0997229916897507,9.97229916897507,2,86.0031529858117,0.870410256410256,9.69529085872576,19.9537812868754,10.3911504745483
+9213,0.0147783159203619,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,13.2834918498993,10.3911504745483
+9214,0.0106375219270448,0.0184210526315789,1.84210526315789,2,53.6189928746137,0.872654155495979,1.57894736842105,7.90490559169224,5.19557523727417
+9215,0.0103234305731431,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,9.28745645284653,5.19557523727417
+9216,0.0105538846662846,0.074792243767313,7.4792243767313,3,72.0371649276023,0.723506475421251,3.32409972299169,4.79011297225952,0
+9217,0.0333337719907491,0.229916897506925,22.9916897506925,4,84.6107934110204,0.83215876278569,8.86426592797784,10.9504923533244,0
+9218,0.0500211199338848,0.421052631578947,42.1052631578947,4,91.3203632272139,0.776747062461348,20.5263157894737,7.53433756530285,0
+9219,0.0285911803129593,0.18005540166205,18.005540166205,4,85.7053160029788,0.751763932073667,13.5734072022161,16.1975773664621,0
+9220,0.0147293674235295,0.038781163434903,3.8781163434903,2,66.0295825454064,0.79193083573487,2.21606648199446,26.1315960884094,0
+9221,0.0200154032947033,0.0470914127423823,4.70914127423823,4,57.228158923632,0.622209302325581,2.21606648199446,16.230533655952,10.3911504745483
+9222,0.0307751527594136,0.144736842105263,14.4736842105263,3,80.9793084312751,0.729230769230769,6.57894736842105,28.9865544926036,0
+9223,0.0383870819438177,0.293628808864266,29.3628808864266,5,87.6015995473932,0.71093316907915,18.5595567867036,16.7026748072426,0
+9224,0.034223651568682,0.265927977839335,26.5927977839335,2,90.4712026291951,0.786156208863537,14.9584487534626,9.36563707888126,0
+9225,0.011677220243257,0.0886426592797784,8.86426592797784,6,65.6917963414691,0.556873977086743,4.15512465373961,15.4730836749077,5.19557523727417
+9226,0.0166575566552542,0.0736842105263158,7.36842105263158,6,60.2914865964353,0.592171717171717,3.15789473684211,10.2067157370704,0
+9227,0.0381632916233228,0.368421052631579,36.8421052631579,4,91.5786697905603,0.784090909090909,26.3157894736842,3.55160091873398,0
+9228,0.0354792055126648,0.229916897506925,22.9916897506925,6,81.6393719911054,0.655483776244311,9.97229916897507,1.69012687866946,0
+9229,0.0570772402831389,0.570637119113573,57.0637119113573,2,96.8702673465106,0.811488250652742,52.6315789473684,3.02564045989398,0
+9230,0.0471610715199188,0.347368421052632,34.7368421052632,3,93.5316757300719,0.828336233435952,31.5789473684211,7.92114787029498,0
+9231,0.0128612154565321,0.268698060941828,26.8698060941828,4,90.5612454815292,0.850683559735284,24.6537396121884,0.321375787872629,0
+9232,0.00640220157856927,0.0470914127423823,4.70914127423823,6,46.6502625418319,0.454302325581395,1.38504155124654,4.5318946277394,0
+9233,0.0279073622906629,0.135734072022161,13.5734072022161,4,77.9549525400629,0.669413919413919,4.98614958448754,2.59553005257431,0
+9234,0.0414304624706825,0.336842105263158,33.6842105263158,9,84.2702551087123,0.64404932216091,17.1052631578947,9.81468698382378,0
+9235,0.0567877091255209,0.634349030470914,63.4349030470914,1,98.5802481063074,0.75661769924065,63.4349030470914,0.440471647087664,0
+9236,0.0422642463111961,0.277008310249307,27.7008310249307,7,83.7281568634319,0.769476372924649,17.1745152354571,0.31173451423645,0
+9237,0.0319792204458296,0.218836565096953,21.8836565096953,6,81.1553214983935,0.771403242147923,10.2493074792244,0.131533550310738,0
+9238,0.0478447935890137,0.457894736842105,45.7894736842105,6,88.5483927300562,0.787375616247769,19.4736842105263,0.832872275648446,0
+9239,0.0522619797933622,0.526315789473684,52.6315789473684,5,92.1302139099763,0.712121212121212,25.7617728531856,1.07973026225441,0
+9240,0.0700726699766855,0.631578947368421,63.1578947368421,3,95.3013342445324,0.693445378151261,35.180055401662,1.80624977747599,0
+9241,0.0823952515618914,0.57617728531856,57.617728531856,3,97.0499310158871,0.841482157031633,55.4016620498615,1.00682094234687,0
+9242,0.0624445442590312,0.498614958448753,49.8614958448753,3,93.8030819758283,0.790370480978216,26.5927977839335,0.444920590188768,0
+9243,0.0339200988246471,0.273684210526316,27.3684210526316,3,90.6312210431973,0.80120902115787,22.8947368421053,0.0999149084091187,0
+9244,0.0260765605550995,0.116343490304709,11.6343490304709,7,69.7748628584848,0.64934434191355,6.37119113573407,0,0
+9245,0.0377979122094279,0.191135734072022,19.1135734072022,8,74.3086783936246,0.693478999207517,8.58725761772853,0.376490959222766,0
+9246,0.0503853889449224,0.443213296398892,44.3213296398892,7,87.8903555197511,0.706772261143263,26.5927977839335,2.59619143009186,0
+9247,0.0669706858248805,0.660526315789474,66.0526315789474,1,98.7540308612622,0.649018637638133,66.0526315789474,0.91935214388418,0
+9248,0.0578651864086781,0.623268698060942,62.3268698060942,3,95.2419196995166,0.766158963585434,50.9695290858726,0.365501261817084,0
+9249,0.0588074082101068,0.601108033240997,60.1108033240997,2,95.4445112548518,0.807635451045105,32.1329639889197,0,0
+9250,0.0329669679750797,0.246537396121884,24.6537396121884,2,93.241672738832,0.799667036625971,23.8227146814404,0.233508999428053,0
+9251,0.0154921286635631,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,0,0
+9252,0.0164206533825921,0.038781163434903,3.8781163434903,2,67.7007682833212,0.79193083573487,3.04709141274238,0.74222503389631,0
+9253,0.00883356129754116,0,0,0,NA,NA,0,NA,NA
+9254,0.0207306856906733,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,8.4066174030304,5.19557523727417
+9255,0.0122822868628023,0,0,0,NA,NA,0,NA,NA
+9256,0.0182972388284621,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0
+9257,0.021215299320804,0.0664819944598338,6.64819944598338,2,78.8267140245079,0.774480712166172,5.81717451523546,1.08241150776545,0
+9258,0.0326459395361889,0.177285318559557,17.7285318559557,4,85.1472884771039,0.77209595959596,13.8504155124654,5.41703028976917,0
+9259,0.0202663460144801,0.134210526315789,13.4210526315789,2,88.3673414295946,0.827411522202425,12.6315789473684,7.5143702544418,0
+9260,0.0187416474558697,0.0443213296398892,4.43213296398892,1,79.1666666666667,1,4.43213296398892,0,0
+9261,0.0264274885613856,0.119113573407202,11.9113573407202,4,78.4431121333349,0.731961914744934,7.4792243767313,5.44076045723849,0
+9262,0.0253359663617537,0.0637119113573407,6.37119113573407,4,64.1596783126811,0.673652202498356,2.21606648199446,22.2656801472539,5.19557523727417
+9263,0.0199859156377084,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,28.5666130610875,20.7823009490967
+9264,0.0178570345044459,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967
+9265,0.0215973759184842,0.0443213296398892,4.43213296398892,3,68.763560240737,0.651207729468599,3.601108033241,8.25259104371071,0
+9266,0.0174988942582208,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,5.19557523727417,0
+9267,0.0121947552826321,0.0394736842105263,3.94736842105263,3,63.6005860494717,0.716064757160648,2.63157894736842,20.2805556615194,0
+9268,0.0128188224167449,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,35.1627635955811,32.8597030639648
+9269,0.0111450997168821,0,0,0,NA,NA,0,NA,NA
+9270,0.00969716885419052,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,72.2552299499512,70.6674652099609
+9271,0.0131656898273497,0.0421052631578947,4.21052631578947,3,63.3981506295416,0.652014652014652,2.36842105263158,21.9961772561073,10.3911504745483
+9272,0.0259741000504052,0.0914127423822715,9.14127423822715,6,65.2322489661231,0.551603432700994,3.32409972299169,8.51099496899229,0
+9273,0.021911243138831,0.0221606648199446,2.21606648199446,2,59.9907158055784,0.590934844192635,1.93905817174515,18.3063123226166,10.3911504745483
+9274,0.023397619336551,0.0443213296398892,4.43213296398892,4,57.7208754095995,0.651207729468599,2.77008310249307,5.86294683814049,0
+9275,0.0251895392201397,0.0236842105263158,2.36842105263158,4,38.5817419813752,0.487870619946092,1.05263157894737,45.8202952278985,5.19557523727417
+9276,0.0240476327808638,0.07202216066482,7.20221606648199,4,66.9718046401324,0.658318165271205,4.15512465373961,65.7897198016827,20.7823009490967
+9277,0.0123509939788308,0,0,0,NA,NA,0,NA,NA
+9278,0.0227814055214117,0.0969529085872576,9.69529085872576,6,64.550782164745,0.599058599534589,3.32409972299169,3.36329687663487,0
+9279,0.0202493816146001,0.068421052631579,6.8421052631579,5,64.6159282256214,0.581094116025906,3.42105263157895,11.0986854663262,0
+9280,0.0177868469165831,0,0,0,NA,NA,0,NA,NA
+9281,0.020897260639227,0.0609418282548476,6.09418282548476,4,65.5725482846326,0.718115564809995,3.8781163434903,33.8874233419245,16.4298515319824
+9282,0.021667935501133,0.0193905817174515,1.93905817174515,4,30.1587301587302,0.490112994350283,1.10803324099723,27.8119911466326,14.6953058242798
+9283,0.0258666201658152,0.0973684210526316,9.73684210526316,5,76.4229753097442,0.745734359317497,7.63157894736842,15.3637923936586,0
+9284,0.0154135765875767,0,0,0,NA,NA,0,NA,NA
+9285,0.0238125011988547,0.0277008310249307,2.77008310249307,2,59.2647635931022,0.762656147271532,1.93905817174515,7.42996516227722,5.19557523727417
+9286,0.0318942253819378,0.116343490304709,11.6343490304709,4,76.6660486391755,0.744977703209855,6.09418282548476,11.0773095516931,0
+9287,0.0251210027856455,0.239473684210526,23.9473684210526,6,85.6979376275603,0.732154299628348,16.3157894736842,10.8179559498043,0
+9288,0.0311642599206965,0.238227146814404,23.8227146814404,5,87.4275898093607,0.759762329174094,18.2825484764543,9.0105790814688,0
+9289,0.0354618585181035,0.232686980609418,23.2686980609418,3,89.4165177323556,0.877547064666974,19.1135734072022,13.51931871119,0
+9290,0.0345264801714351,0.282548476454294,28.2548476454294,1,95.1039981574685,0.824820136295546,28.2548476454294,6.39404719483619,0
+9291,0.0283277805611425,0.231578947368421,23.1578947368421,2,91.924068373777,0.842509379635285,21.0526315789474,8.34102854403582,0
+9292,0.0292664932443727,0.146814404432133,14.6814404432133,5,76.7138528956624,0.652240616526331,6.37119113573407,13.6866857960539,0
+9293,0.0232757293613814,0.18005540166205,18.005540166205,3,89.4493267761888,0.794935422147811,16.3434903047091,11.0047150978675,0
+9294,0.0331888337556477,0.25207756232687,25.207756232687,4,89.0878333392263,0.735893918609968,16.6204986149584,5.09280891208858,0
+9295,0.0382570073138739,0.339473684210526,33.9473684210526,6,89.4192681099306,0.735865050436552,21.3157894736842,10.12180553111,0
+9296,0.0449659887234402,0.445983379501385,44.5983379501385,3,93.399725729976,0.792668918918919,22.9916897506925,5.53514425206629,0
+9297,0.0734153887483684,0.650969529085873,65.0969529085873,3,97.2771711335263,0.83684058285425,62.3268698060942,8.11874715115162,0
+9298,0.0562604355810609,0.43213296398892,43.213296398892,2,96.240351814839,0.901827143706977,42.382271468144,5.70919536321591,0
+9299,0.08231289331115,0.615789473684211,61.5789473684211,2,97.4938199278981,0.8868374032162,59.2105263157895,3.25981323331849,0
+9300,0.0293266524663017,0.187134502923977,18.7134502923977,7,71.988476632935,0.626541623843782,4.09356725146199,5.8672104999423,0
+9301,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9302,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9303,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9304,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9305,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9306,-0.0197928684220211,0.0394736842105263,3.94736842105263,1,64.398586025552,0.851272015655577,3.94736842105263,31.7537991205851,25.977876663208
+9307,0.00375245739642171,0.141274238227147,14.1274238227147,3,80.1511525171107,0.812606599925843,5.54016620498615,21.6114528225917,7.34765291213989
+9308,0.0109177529739906,0.138504155124654,13.8504155124654,3,80.2511266659561,0.767845659163987,6.64819944598338,33.4166617965698,15.5867252349854
+9309,0.00661167595404509,0.14404432132964,14.404432132964,2,85.4847536852598,0.868732046107414,9.41828254847645,15.9609393339891,0
+9310,0.00345462059114269,0.0447368421052632,4.47368421052632,1,79.8422589600986,1,4.47368421052632,5.39431563545676,0
+9311,-0.0275258715072624,0.0858725761772853,8.58725761772853,4,72.780431467783,0.781212121212121,6.37119113573407,18.7624478340149,0
+9312,0.011799354991688,0.0775623268698061,7.75623268698061,4,69.6388893640086,0.735001668335002,4.15512465373961,14.6315459353583,0
+9313,0.0203539508761335,0.0415512465373961,4.15512465373961,5,49.7429586904867,0.478323699421965,1.93905817174515,18.799347114563,0
+9314,0.0162563308487973,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,1.73185841242472,0
+9315,0.00293972761281721,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.5867252349854,15.5867252349854
+9316,0.0147295049627299,0.0332409972299169,3.32409972299169,5,41.4639799590451,0.452384965447497,1.38504155124654,5.62853980064392,0
+9317,0.0289173010600295,0.138504155124654,13.8504155124654,3,81.8067374050704,0.795157934556459,7.4792243767313,10.0105599021912,0
+9318,0.0323866272995809,0.189473684210526,18.9473684210526,2,87.9705032619157,0.893138357705287,10.7894736842105,15.2235285507308,0
+9319,0.0166451882335491,0.0554016620498615,5.54016620498615,3,65.6245772983892,0.726799735124397,2.77008310249307,30.0810334205627,16.4298515319824
+9320,0.0167466525369272,0.0609418282548476,6.09418282548476,2,80.1883084538809,0.780756550407774,5.81717451523546,16.1931231021881,5.19557523727417
+9321,0.0218100036507978,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,19.3528614044189,0
+9322,0.0330692270804751,0.239473684210526,23.9473684210526,1,94.3575940766551,0.894485027126319,23.9473684210526,46.2813677106585,31.1734504699707
+9323,0.0227907621975744,0.113573407202216,11.3573407202216,6,70.9377422923506,0.70570652173913,5.26315789473684,10.942151127792,0
+9324,0.0185063604051486,0.0775623268698061,7.75623268698061,8,58.4005303533774,0.494094094094094,2.77008310249307,13.2493999855859,0
+9325,0.0306338821539909,0.310249307479224,31.0249307479224,1,95.5814930733676,0.942582210028232,31.0249307479224,32.3024189046451,5.19557523727417
+9326,0.0130833126270629,0.0289473684210526,2.89473684210526,3,54.079497554272,0.588075880758808,1.57894736842105,38.0051518353549,10.3911504745483
+9327,0.0423891773762457,0.371191135734072,37.1191135734072,2,94.1842817421503,0.876164512168701,34.0720221606648,4.44861552964396,0
+9328,0.045319237337716,0.443213296398892,44.3213296398892,6,93.4012787516599,0.639574237655261,33.7950138504155,1.53407932817936,0
+9329,0.0585065515632755,0.498614958448753,49.8614958448753,4,92.7945555322848,0.664592769565145,26.3157894736842,2.70312432712979,0
+9330,0.0305863865685272,0.0921052631578947,9.21052631578947,6,65.6149086455977,0.658170914542729,4.73684210526316,2.37512005397252,0
+9331,-0.0426627683298149,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,0,0
+9332,-0.040769129089877,0,0,0,NA,NA,0,NA,NA
+9333,0.0164946534396298,0.10803324099723,10.803324099723,4,75.560671403622,0.79302436693741,6.09418282548476,11.1104738651178,0
+9334,0.0342272396646685,0.115789473684211,11.5789473684211,3,81.2353700785163,0.862451737451737,7.63157894736842,31.0101147023114,7.34765291213989
+9335,0.0593875976707632,0.673130193905817,67.3130193905817,3,97.2290698519409,0.885443888598522,63.7119113573407,0.275663158039988,0
+9336,0.0320866429886279,0.202216066481994,20.2216066481994,5,80.4235729581301,0.716010199652778,6.37119113573407,0,0
+9337,0.0177606589270548,0.174515235457064,17.4515235457064,2,89.3556228009183,0.790756558877364,15.5124653739612,0,0
+9338,0.0766380895104272,0.589473684210526,58.9473684210526,5,93.0290168709921,0.796037296037296,45,0.902103140950203,0
+9339,0.040488457850276,0.401662049861496,40.1662049861496,5,87.9551910261887,0.754035639412998,16.8975069252078,0.689493705486429,0
+9340,0.0532498128526429,0.606648199445983,60.6648199445983,1,98.4227721168943,0.58252209334438,60.6648199445983,0,0
+9341,0.0473389967107356,0.418282548476454,41.8282548476454,4,94.116212000038,0.770379920921437,35.180055401662,1.56504767462118,0
+9342,0.0406887590393945,0.440443213296399,44.0443213296399,2,96.7261574579182,0.804150278041503,43.4903047091413,0.130706295277338,0
+9343,0.0354915337579242,0.394736842105263,39.4736842105263,2,96.3335368354951,0.921897233201581,39.2105263157895,0,0
+9344,0.0423285100786267,0.465373961218837,46.5373961218837,2,96.8065195213999,0.903459802774528,45.983379501385,0.0927781292370388,0
+9345,0.0157765846424884,0.0332409972299169,3.32409972299169,4,47.8607650886615,0.452384965447497,1.38504155124654,2.1648230155309,0
+9346,0.0387144328521983,0.210526315789474,21.0526315789474,8,83.1036702513084,0.697512437810945,15.2354570637119,3.5196796404688,0
+9347,0.0737315809611525,0.705263157894737,70.5263157894737,2,98.015196584462,0.66948310139165,65.7894736842105,0.736686041106039,0
+9348,0.0595799314076612,0.548476454293629,54.8476454293629,3,95.9097296667799,0.794821216629612,48.4764542936288,0.819815606781931,0
+9349,0.0540298022867503,0.642659279778393,64.2659279778393,4,96.0508837055211,0.735019782659291,55.9556786703601,0.972249193438168,0
+9350,0.0312786287202199,0.290858725761773,29.0858725761773,5,87.7844920270976,0.76870453042328,19.9445983379501,3.5605731010437,0
+9351,0.0238217139737619,0.213157894736842,21.3157894736842,5,85.3663945663956,0.717577108881457,15,6.14160032625552,0
+9352,0.0178440467507622,0.146814404432133,14.6814404432133,2,89.9200602098632,0.845440274011703,14.404432132964,5.28943058229842,0
+9353,0.0113704077430812,0.0277008310249307,2.77008310249307,2,58.34967603056,0.683541529695376,1.38504155124654,8.19229397773743,0
+9354,0.0219814388323574,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,7.94952268600464,5.19557523727417
+9355,0.0114651078556658,0,0,0,NA,NA,0,NA,NA
+9356,0.021277104358323,0.0914127423822715,9.14127423822715,1,87.180691871343,0.857328364950316,9.14127423822715,21.4356286597974,11.6176595687866
+9357,0.0200331183177015,0.0941828254847645,9.41828254847645,3,75.3586186196631,0.645150720838794,5.26315789473684,8.99417229259715,0
+9358,0.0304090232246361,0.191135734072022,19.1135734072022,6,83.1663696384442,0.734348465979848,13.2963988919668,9.60639628811159,0
+9359,0.0235381194657461,0.128947368421053,12.8947368421053,3,83.136308725436,0.753992231333621,9.73684210526316,5.09158397207455,0
+9360,0.0242094228195234,0.149584487534626,14.9584487534626,4,81.0899663543834,0.797695352176806,10.2493074792244,3.21492704638728,0
+9361,0.0281410604675682,0.204986149584488,20.4986149584488,5,82.0513083296824,0.777459126239614,9.69529085872576,9.6117488886859,0
+9362,0.0342803378407351,0.199445983379501,19.9445983379501,4,85.109703597177,0.773778710187178,13.2963988919668,10.8129756251971,0
+9363,0.0268693818052845,0.157894736842105,15.7894736842105,5,77.4915501925104,0.703125,6.31578947368421,17.4085316578547,5.19557523727417
+9364,0.0199495582546509,0.0914127423822715,9.14127423822715,3,76.4982478199715,0.694275067750677,5.54016620498615,22.6670652302829,5.19557523727417
+9365,0.0186365095643669,0.0914127423822715,9.14127423822715,2,79.4951507067129,0.735038392050587,4.98614958448753,9.51724178140814,5.19557523727417
+9366,0.0179092311521236,0.0775623268698061,7.75623268698061,5,68.0873637282791,0.614547881214548,4.70914127423823,12.5524278879166,0
+9367,-0.00471246148044914,0,0,0,NA,NA,0,NA,NA
+9368,0.0102580647786186,0.0498614958448753,4.98614958448753,1,80.6758725138067,1,4.98614958448753,13.6362606949276,5.19557523727417
+9369,0.0141078274040173,0.138504155124654,13.8504155124654,2,88.636766488103,0.877094760733876,13.2963988919668,56.1319281768799,37.4658241271973
+9370,0.0202704824492644,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,37.0556313196818,10.3911504745483
+9371,0.0132249410950815,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,29.8158760070801,27.9790287017822
+9372,0.0197538943765195,0.0498614958448753,4.98614958448754,4,58.8330429995327,0.649173955296404,2.49307479224377,7.07557476891412,0
+9373,0.0184880734502013,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,46.9909915924072,21.4219055175781
+9374,0.0188207955699375,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,12.535639444987,0
+9375,0.0227141218425171,0.0210526315789474,2.10526315789474,4,36.0704232461395,0.387096774193548,1.05263157894737,75.3385095596313,52.9846801757812
+9376,0.023174799395165,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,86.4244213104248,37.4658241271973
+9377,0.0116901502731208,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,32.5740633010864,30.2951488494873
+9378,0.0154479634805579,0.0249307479224377,2.49307479224377,4,37.8641466851588,0.316287878787879,0.831024930747922,3.70283656650119,0
+9379,0.0198560643844949,0.0710526315789474,7.10526315789474,7,52.8677434087404,0.424204493049608,1.57894736842105,5.81828763749864,0
+9380,0.0135788822762179,0.0304709141274238,3.04709141274238,3,53.369110064677,0.518666666666667,1.66204986149584,21.2546257972717,0
+9381,0.021942006392547,0.0692520775623269,6.92520775623269,5,65.8619379028558,0.70453869047619,3.601108033241,44.5891931152344,22.0429573059082
+9382,0.0186253521959697,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.844195079844627,8.31024930747922,75.4989952087402,58.0882949829102
+9383,0.0163537071398232,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,39.2577247619629,21.4219055175781
+9384,0.0170361534695925,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,9.1297858783177,0
+9385,0.023492031661217,0.0277008310249307,2.77008310249307,2,58.1094160395534,0.762656147271532,1.66204986149584,3.63690266609192,0
+9386,0.0244235333013013,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0
+9387,0.0154423792911984,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,6.494469165802,0
+9388,0.0205276239817911,0.0498614958448753,4.98614958448753,5,57.3390241173703,0.688154626930137,3.04709141274238,5.33375120162964,0
+9389,0.0414990044832281,0.263157894736842,26.3157894736842,3,88.119037235502,0.82436974789916,13.0193905817175,12.833778045052,0
+9390,0.0172431449171759,0.0249307479224377,2.49307479224377,2,63.2654294198794,0.572679924242424,2.21606648199446,48.6781039767795,36.369026184082
+9391,0.0270670535308263,0.05,5,4,61.3006724494784,0.637023593466425,2.63157894736842,37.9860171518828,5.19557523727417
+9392,0.0255641044609156,0.0914127423822715,9.14127423822715,6,67.891981095851,0.633130081300813,4.98614958448753,5.26239707253196,0
+9393,0.0170809211036371,0,0,0,NA,NA,0,NA,NA
+9394,0.0277172426905656,0.168975069252078,16.8975069252078,3,83.7865423802436,0.829716981132075,10.5263157894737,2.59048088261339,0
+9395,0.0288068997857121,0.152631578947368,15.2631578947368,6,75.6204820610415,0.63416149068323,4.73684210526316,7.42301501076797,0
+9396,0.0308391440378518,0.235457063711911,23.5457063711911,3,88.8188762633042,0.783448507534312,18.005540166205,7.13677324407241,0
+9397,0.0566866221175648,0.631578947368421,63.1578947368421,1,98.56496811549,0.94890756302521,63.1578947368421,2.77373871259522,0
+9398,0.0370771988985343,0.240997229916898,24.0997229916898,4,87.5402858818168,0.829997645396751,19.3905817174515,2.80041039675132,0
+9399,0.0334267972144421,0.297368421052632,29.7368421052632,6,85.8561733055527,0.727913637365058,13.9473684210526,2.46633433873675,0
+9400,0.0361320149119304,0.277777777777778,27.7777777777778,4,90.2732846913847,0.755656108597285,22.8070175438597,2.61963609896208,0
+9401,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9402,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9403,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9404,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9405,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9406,-0.0418252478690192,0.075,7.5,2,69.8294033975445,0.872813990461049,6.875,27.1695192654928,18.7329120635986
+9407,-0.0897389985560566,0.0973684210526316,9.73684210526316,3,76.7095427749786,0.745734359317497,5.52631578947368,18.9428516207515,7.34765291213989
+9408,0.0120575642213991,0.186842105263158,18.6842105263158,4,81.8062211308646,0.793398058252427,10.5263157894737,21.074418826842,5.19557523727417
+9409,0.0152727573871217,0.192105263157895,19.2105263157895,3,88.2205056788548,0.825936482084691,14.2105263157895,24.7282817723,5.19557523727417
+9410,0.0218465403620939,0.22,22,3,88.6728953421958,0.828515433610975,12.25,20.7751096161929,0
+9411,0.00920404364397224,0.152631578947368,15.2631578947368,2,90.2503490468519,0.929192546583851,15,16.9726934926263,0
+9412,-0.0104380751629211,0.0605263157894737,6.05263157894737,1,83.4283422491937,0.940865234982882,6.05263157894737,37.7911022020423,21.4219055175781
+9413,0.0122040644850738,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,63.124471282959,36.7382659912109
+9414,0.0189772572853326,0.035,3.5,4,49.7638167517705,0.585492227979275,1.5,12.2510190691267,0
+9415,0.0151655918134853,0.05,5,4,57.9354860010718,0.56442831215971,1.84210526315789,14.6099716487684,5.19557523727417
+9416,0.0125084818611197,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,14.3063578605652,5.19557523727417
+9417,0.00801337579104208,0.0263157894736842,2.63157894736842,2,64.1609526402965,0.841995841995842,2.36842105263158,9.68989400863648,5.19557523727417
+9418,0.00500194199770704,0,0,0,NA,NA,0,NA,NA
+9419,0.00562160329048215,0,0,0,NA,NA,0,NA,NA
+9420,0.017578826545149,0.131578947368421,13.1578947368421,3,87.1967864494077,0.688413547237077,11.8421052631579,3.90253674507141,0
+9421,0.0222340262245875,0.0921052631578947,9.21052631578947,6,69.7699766619487,0.620189905047476,5.52631578947368,2.65513928277152,0
+9422,0.0210449707245016,0.1325,13.25,4,83.8345956240445,0.83532317826266,11.75,18.2375595434657,0
+9423,0.0236053545923297,0.223684210526316,22.3684210526316,4,88.0033891346939,0.846447412728701,15.5263157894737,5.81061446806964,0
+9424,0.0316942855899565,0.268421052631579,26.8421052631579,5,87.6612628071531,0.828203011361403,15.2631578947368,6.45783078904245,0
+9425,0.0150756333801837,0.136842105263158,13.6842105263158,1,90.7899197045923,0.960948204987668,13.6842105263158,7.62873623004326,0
+9426,0.00742559812623995,0.06,6,2,76.9680614337127,0.664053751399776,4.25,46.1673986911774,23.2353191375732
+9427,0.0213453342368379,0.155263157894737,15.5263157894737,4,82.2367634263164,0.779488119235233,11.3157894736842,3.44934129714966,0
+9428,0.0332734283620395,0.321052631578947,32.1052631578947,4,91.0802132074474,0.733417517275246,23.6842105263158,1.72110727185109,0
+9429,0.0504998569459291,0.534210526315789,53.4210526315789,2,97.1802152366231,0.834854411125598,51.3157894736842,0.665443133838071,0
+9430,0.0544273947776674,0.475,47.5,5,93.0060469237765,0.826839826839827,40.5,1.72645035041006,0
+9431,0.023765627179857,0.194736842105263,19.4736842105263,9,77.766684004465,0.665661136249371,10.5263157894737,3.21763568955499,0
+9432,0.0270017728973471,0.168421052631579,16.8421052631579,6,75.3320325259431,0.656419529837251,5.52631578947368,3.38173937797546,0
+9433,0.0184376771645379,0.142105263157895,14.2105263157895,5,75.6404990640932,0.72425621742859,6.31578947368421,5.24783923890856,0
+9434,0.0102895332141543,0.085,8.5,4,71.9259401778425,0.629195940671351,3.25,6.18559342272141,0
+9435,0.0357654651711575,0.405263157894737,40.5263157894737,4,95.7670168500055,0.79799243253385,39.4736842105263,0.452562050385909,0
+9436,0.0178179043607088,0.128947368421053,12.8947368421053,3,81.6649111790789,0.794993526111351,7.89473684210526,3.83767298289708,0
+9437,0.018200991763972,0.139473684210526,13.9473684210526,3,85.635995303764,0.846758745841315,11.8421052631579,1.17635665749604,0
+9438,0.0864575297018746,0.76,76,1,99.2259017402484,0.85456660849331,76,5.85933362339672,0
+9439,0.0757931271459184,0.744736842105263,74.4736842105263,2,98.9122139887498,0.8379970544919,74.2105263157895,0.0367178461998175,0
+9440,0.041798664249348,0.436842105263158,43.6842105263158,2,95.7563355012809,0.825911673080447,39.4736842105263,3.88721487895552,0
+9441,0.0462255043365219,0.460526315789474,46.0526315789474,2,97.1666728771832,0.804878048780488,45.7894736842105,4.21806379863194,0
+9442,0.057740202002644,0.694736842105263,69.4736842105263,1,98.9199097507581,0.774991292232671,69.4736842105263,0.695991743694652,0
+9443,0.0120719163390459,0.13,13,2,87.2813335840578,0.832106418700762,11.5,4.29634100657243,0
+9444,-0.0155545951519583,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,1.29889380931854,0
+9445,-0.0131528115809488,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0
+9446,0.0292086440591926,0.0921052631578947,9.21052631578947,11,61.6988465837601,0.392303848075962,4.21052631578947,4.07907709394182,0
+9447,0.0394558151171077,0.2175,21.75,7,79.406700638065,0.678449963928682,7.75,0.179157766802558,0
+9448,0.0619401369893335,0.578947368421053,57.8947368421053,5,94.5742726988526,0.739329268292683,50.5263157894737,1.02985036373138,0
+9449,0.0402434611698769,0.342105263157895,34.2105263157895,5,89.1696628937308,0.679324894514768,18.6842105263158,2.49016469808725,0
+9450,-0.0210102928974313,0.0210526315789474,2.10526315789474,4,34.5706664476853,0.387096774193548,0.789473684210526,3.66955786943436,0
+9451,-0.00467386789916873,0.03,3,3,54.6658847081426,0.636143117040631,1.75,0.432964603106181,0
+9452,0.0257538431699351,0.189473684210526,18.9473684210526,3,89.4820184475359,0.834850189180898,17.1052631578947,8.32852375507355,0
+9453,0.0127119392337303,0,0,0,NA,NA,0,NA,NA
+9454,0.0192181009758267,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,16.6193564732869,14.6953058242798
+9455,0.00642901582675222,0.005,0.5,1,30.8308651382582,1,0.5,61.3293762207031,59.2386741638184
+9456,0.0100595752457402,0,0,0,NA,NA,0,NA,NA
+9457,0.0226866788883375,0.0263157894736842,2.63157894736842,2,64.8660180539262,0.762993762993763,2.36842105263158,11.1259155750275,0
+9458,0.0274088536627172,0.1,10,4,77.6557762713308,0.753086419753086,7.36842105263158,12.5090169404682,5.19557523727417
+9459,0.0263857652110619,0.0475,4.75,9,36.6727501240803,0.312154946148973,1,39.8594048148707,15.5867252349854
+9460,0.0287542763172257,0.155263157894737,15.5263157894737,6,74.6659282616635,0.651823346160894,4.73684210526316,20.3965088230068,0
+9461,0.0224655390812443,0.0421052631578947,4.21052631578947,3,67.2681564018174,0.739010989010989,3.42105263157895,15.9127663373947,5.19557523727417
+9462,0.0212777696414138,0.0526315789473684,5.26315789473684,6,48.4292428629278,0.421146953405018,1.05263157894737,26.9711708068848,10.3911504745483
+9463,0.0190624339835631,0.0275,2.75,4,46.7423356471358,0.520137103684661,1.5,32.5958133610812,5.19557523727417
+9464,0.0225001649333679,0.05,5,4,63.6338401494464,0.673321234119782,3.15789473684211,13.7565554568642,0
+9465,0.0244241951903524,0.0921052631578947,9.21052631578947,4,78.3100315888973,0.829085457271364,7.89473684210526,7.39767848423549,0
+9466,0.0038491377040995,0.0210526315789474,2.10526315789474,4,34.5706664476853,0.387096774193548,0.789473684210526,18.0747252106667,0
+9467,-0.0141003429135958,0,0,0,NA,NA,0,NA,NA
+9468,-0.000485858988146279,0.0868421052631579,8.68421052631579,1,87.058227229868,0.878322126160743,8.68421052631579,15.8766984361591,5.19557523727417
+9469,0.0156007691824734,0.0710526315789474,7.10526315789474,3,79.2504871787327,0.749654127412873,6.31578947368421,61.3308176111292,7.34765291213989
+9470,0.00971414453667278,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,8.64713062558855,0
+9471,0.0149491855010274,0.0175,1.75,3,44.8240830231146,0.491094147582697,1.25,7.60234430858067,5.19557523727417
+9472,0.0202100208430477,0.0552631578947368,5.52631578947368,3,72.5662752008794,0.636142061281337,3.94736842105263,5.85127696536836,0
+9473,0.0214716406499256,0.0789473684210526,7.89473684210526,1,86.162631131474,0.756268221574344,7.89473684210526,6.13324036598206,0
+9474,0.0194668168899816,0.0342105263157895,3.42105263157895,4,56.3694475605296,0.597335755373903,2.36842105263158,7.5935330757728,0
+9475,0.0178174968560779,0.025,2.5,3,47.9024210673189,0.526627218934911,1,10.2937640666962,5.19557523727417
+9476,0.0192735478993487,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,22.6423890855577,15.5867252349854
+9477,0.0324055788009374,0.257894736842105,25.7894736842105,3,92.2341993593267,0.846872985170858,23.6842105263158,12.7021212334536,0
+9478,0.0204879640503446,0.0631578947368421,6.31578947368421,4,66.1057690377562,0.634831460674157,3.15789473684211,11.6426635980606,0
+9479,0.0120770138615626,0.1375,13.75,2,87.2927718838272,0.792524790236461,12,8.22454786300659,0
+9480,0.00576856832968157,0.0921052631578947,9.21052631578947,3,83.162196423799,0.772113943028486,8.42105263157895,9.37443617412022,5.19557523727417
+9481,0.00136259847918394,0.0789473684210526,7.89473684210526,1,86.162631131474,0.800583090379009,7.89473684210526,10.4134897391001,5.19557523727417
+9482,0.0118108538322447,0.0526315789473684,5.26315789473684,2,78.4561041158034,0.795698924731183,5,10.2429605484009,5.19557523727417
+9483,0.0180382439667301,0.1275,12.75,4,86.1065628146974,0.749695352896617,11.5,8.3733811191484,0
+9484,0.0268145022265296,0.2,20,3,88.2397448277082,0.832089552238806,13.9473684210526,7.39881289632697,0
+9485,0.0178548052671096,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,11.0874055862427,0
+9486,0.0196557810275216,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,0,0
+9487,0.0135290291956881,0.0375,3.75,3,69.6310205938586,0.622195985832349,3.25,9.49550724029541,0
+9488,0.0240032316295056,0.178947368421053,17.8947368421053,4,82.2870058324647,0.795302736479207,9.73684210526316,28.5628978574977,5.19557523727417
+9489,0.0400237003222987,0.3,30,2,94.9658884082077,0.902912621359223,29.7368421052632,61.1491036164133,18.7329120635986
+9490,0.0159749875262773,0.0947368421052632,9.47368421052632,3,80.7358293460633,0.779069767441861,7.36842105263158,47.2039125760396,0
+9491,0.0213676906848559,0.025,2.5,3,52.9103541849425,0.684418145956607,1.75,9.9488796710968,5.19557523727417
+9492,0.0370715358556481,0.268421052631579,26.8421052631579,5,87.5996508590565,0.77591697134096,16.3157894736842,6.04973869230233,0
+9493,0.0217256482939487,0.113157894736842,11.3157894736842,2,85.5581590285192,0.859050445103858,10,65.80659387278,36.369026184082
+9494,0.0261402450652799,0.131578947368421,13.1578947368421,2,85.0084451043918,0.850980392156863,8.42105263157895,0,0
+9495,0.0331102098353585,0.195,19.5,6,79.8700230047781,0.594923035376722,8.75,9.18478008416983,0
+9496,0.0380282430229559,0.334210526315789,33.4210526315789,2,92.4986838523164,0.863456701401366,20.5263157894737,3.94601445310698,0
+9497,0.0526451858594986,0.526315789473684,52.6315789473684,1,97.9538591370238,0.931716082659479,52.6315789473684,9.45828508615494,0
+9498,0.0197030442036473,0.163157894736842,16.3157894736842,3,87.8867555666775,0.80083857442348,14.4736842105263,17.025736008921,0
+9499,0.0306132708397854,0.1625,16.25,5,85.8158105329934,0.714700832122573,13.25,32.5169144850511,0
+9500,0.0318849855397679,0.188888888888889,18.8888888888889,4,86.2800280380327,0.761712904339818,14.4444444444444,25.5133603110033,0
+9501,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9502,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9503,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9504,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9505,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9506,-0.00910849942489509,0.0197368421052632,1.97368421052632,2,21.6627726262731,0.48993288590604,1.31578947368421,49.0734036763509,46.7601776123047
+9507,-0.03759873604372,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,40.6631264686584,34.8529777526855
+9508,0.022615149532786,0.227146814404432,22.7146814404432,3,89.1166390021021,0.875071066617229,19.6675900277008,36.3659941917512,7.34765291213989
+9509,0.0192724973139599,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,25.8589508533478,10.3911504745483
+9510,0.0139711269420667,0.0578947368421053,5.78947368421053,3,70.4744172976112,0.812684850476503,4.47368421052632,44.6731973127885,25.977876663208
+9511,0.00793722809256782,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,33.5461068834577,16.4298515319824
+9512,0.0220722559783617,0.160664819944598,16.0664819944598,2,90.5746386782675,0.880858085808581,15.7894736842105,55.8358557470914,31.6034507751465
+9513,0.0216205766344078,0.0415512465373961,4.15512465373961,3,67.9088155718609,0.762874408828166,3.601108033241,60.8238611857096,47.9008369445801
+9514,0.0153488366187383,0.0605263157894737,6.05263157894737,4,68.3397100865063,0.615624027388733,3.94736842105263,35.2410333674887,7.34765291213989
+9515,0.0186162177271797,0.0221606648199446,2.21606648199446,3,42.742818892036,0.488668555240793,1.10803324099723,9.69631141424179,0
+9516,-0.00381242560540065,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,3.67382645606995,0
+9517,0.0173125340706093,0.0332409972299169,3.32409972299169,3,53.9746927765558,0.634923310298331,1.38504155124654,24.8862462838491,5.19557523727417
+9518,0.00275234774780026,0,0,0,NA,NA,0,NA,NA
+9519,0.00127873768717834,0,0,0,NA,NA,0,NA,NA
+9520,0.0278535174011444,0.0969529085872576,9.69529085872576,6,63.6041717548233,0.484503913687328,2.77008310249307,6.16883944102696,0
+9521,0.0284008866909168,0.102493074792244,10.2493074792244,7,61.8509030568024,0.525096134385752,2.21606648199446,3.29967800346581,0
+9522,0.0192033921468752,0.0578947368421053,5.78947368421053,8,50.9880752354821,0.406835359842261,1.84210526315789,4.34874690662731,0
+9523,0.0127584639455142,0.0304709141274238,3.04709141274238,4,47.7809316764096,0.312380952380952,1.38504155124654,3.77860017256303,0
+9524,0.0240434528868391,0.10803324099723,10.803324099723,5,74.290718002545,0.603296703296703,6.37119113573407,30.368414463141,0
+9525,0.0304329224561929,0.121883656509695,12.1883656509695,3,81.400655401699,0.692215875181175,7.20221606648199,16.1026990847154,0
+9526,0.0529613708480802,0.536842105263158,53.6842105263158,3,96.170336941423,0.87467018469657,51.3157894736842,35.8336187063479,0
+9527,0.0220705514482567,0.130193905817175,13.0193905817174,2,84.1908825993138,0.841918789808917,8.58725761772853,12.2749618367946,0
+9528,0.0115749555584758,0.0415512465373961,4.15512465373961,2,67.1736361324614,0.715449290593799,2.21606648199446,0,0
+9529,0.011030019995734,0.0415512465373961,4.15512465373961,4,54.1073430162022,0.620599054125066,2.21606648199446,1.03911504745483,0
+9530,0.0139852126255798,0.0657894736842105,6.57894736842105,6,58.6929089638894,0.545070422535211,2.63157894736842,1.45476106643677,0
+9531,0.0249950769234035,0.265927977839335,26.5927977839335,1,94.7823367794258,0.80199648968846,26.5927977839335,1.77669336398443,0
+9532,0.048583428509091,0.479224376731302,47.9224376731302,4,96.2436321920967,0.56659774561462,45.1523545706371,3.32434666639119,0
+9533,0.0400674874704703,0.238227146814404,23.8227146814404,5,85.8344441495463,0.72544266191325,10.803324099723,1.94789610907089,0
+9534,0.035182735711255,0.252631578947368,25.2631578947368,3,90.2114574935058,0.611038322961022,17.8947368421053,1.94834071397781,0
+9535,0.0205817552395025,0.127423822714681,12.7423822714681,4,78.3831568035958,0.691452991452991,6.09418282548476,2.173404071642,0
+9536,0.0152843499581902,0.0886426592797784,8.86426592797784,3,77.3376192706392,0.62017769464578,4.43213296398892,7.33875939249992,0
+9537,0.0157090309573034,0.0498614958448753,4.98614958448753,3,63.1766253770632,0.610193283662671,2.21606648199446,8.14746228853861,0
+9538,0.0299089880263445,0.252631578947368,25.2631578947368,3,91.3224878681374,0.743285293154274,20.7894736842105,1.19763368368149,0
+9539,0.0319563575599544,0.232686980609418,23.2686980609418,5,87.8465241319319,0.667627746953214,17.7285318559557,5.87255049319494,0
+9540,0.0463798757736188,0.376731301939058,37.6731301939058,3,93.5006133823093,0.83179211469534,34.0720221606648,1.44429910533568,0
+9541,0.0345502253475088,0.329639889196676,32.9639889196676,1,95.87929364248,0.83425160697888,32.9639889196676,1.89547741913996,0
+9542,0.0308760311368271,0.260387811634349,26.0387811634349,7,81.8016027596789,0.670032994471197,13.5734072022161,2.62068205691398,0
+9543,0.0211622462103964,0.05,5,6,52.4811967635683,0.455535390199637,2.10526315789474,3.00796461105347,0
+9544,0.00590719530058037,0.0277008310249307,2.77008310249307,3,50.7231889218751,0.683541529695376,1.66204986149584,1.03911504745483,0
+9545,0.00641092801143459,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,1.73185841242472,0
+9546,0.0217189453045323,0.0443213296398892,4.43213296398892,6,49.857979438331,0.433212560386473,2.21606648199446,2.59778761863708,0
+9547,0.0306341038970124,0.247368421052632,24.7368421052632,2,90.5771175717496,0.826007326007326,15.7894736842105,2.28904959496031,0
+9548,0.0297458113609411,0.265927977839335,26.5927977839335,5,84.5472730261195,0.70695480473892,11.6343490304709,3.1781171609958,0
+9549,0.0209870200259882,0.177285318559557,17.7285318559557,7,75.0226039804299,0.555044492544493,6.92520775623269,4.72818780690432,0
+9550,0.0237802135594856,0.191135734072022,19.1135734072022,8,71.8450836593082,0.509566398732028,4.70914127423823,6.28695085774297,0
+9551,0.0282528258101114,0.257894736842105,25.7894736842105,4,89.9607213015034,0.754996776273372,20.7894736842105,2.51371542774901,0
+9552,0.0282972582627078,0.204986149584488,20.4986149584488,4,86.1666971992764,0.777459126239614,14.404432132964,4.27984927796029,0
+9553,0.0196494633535702,0.0637119113573407,6.37119113573407,4,67.3012459195691,0.614316239316239,3.601108033241,4.18732442026553,0
+9554,0.0230917272394506,0.0526315789473684,5.26315789473684,2,71.5387162663941,0.745210727969349,3.04709141274238,12.3229458708512,5.19557523727417
+9555,0.0166475952922299,0,0,0,NA,NA,0,NA,NA
+9556,0.0163286377518139,0,0,0,NA,NA,0,NA,NA
+9557,0.0208244854502003,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,8.77935470853533,5.19557523727417
+9558,0.0316026196266958,0.235457063711911,23.5457063711911,5,84.6599010217414,0.72281408964392,16.3434903047091,7.90754625657025,0
+9559,0.0344279824995618,0.3,30,6,88.5763648338523,0.674063800277393,20.5263157894737,8.16705820434972,0
+9560,0.0377566044106293,0.343490304709141,34.3490304709141,5,90.0084557893457,0.715668073136428,25.4847645429363,6.89973198598431,0
+9561,0.030678301326717,0.313019390581717,31.3019390581717,3,89.7900523656481,0.785934535104364,19.1135734072022,8.77070350984556,0
+9562,0.0328028609220279,0.304709141274238,30.4709141274238,3,89.4244619235371,0.732587238983763,14.9584487534626,10.7312021428888,0
+9563,0.0246915423198755,0.197368421052632,19.7368421052632,3,89.138118411584,0.830104321907601,16.8421052631579,11.1778132629395,0
+9564,0.0251969637722035,0.185595567867036,18.5595567867036,2,90.4967522097224,0.842578056863771,17.4515235457064,9.30195362176468,0
+9565,0.0193472428832856,0.07202216066482,7.20221606648199,4,67.2524971622365,0.684601383327266,2.77008310249307,8.91394826082083,0
+9566,0.0235634994877075,0.213296398891967,21.3296398891967,3,87.844971284823,0.691564830157415,11.6343490304709,9.37461246143688,0
+9567,0.0265055412396673,0.215789473684211,21.5789473684211,2,91.5358402104329,0.868086091182597,19.7368421052632,11.2860306007106,0
+9568,0.0251931074527115,0.191135734072022,19.1135734072022,2,91.4530698523016,0.877391599683007,18.5595567867036,10.8857851788618,0
+9569,0.0213341723308714,0.18005540166205,18.005540166205,3,89.0953708268904,0.838106912221956,16.3434903047091,10.7457383962778,0
+9570,0.0239613272205438,0.229916897506925,22.9916897506925,2,92.7476246182945,0.902828757402242,22.4376731301939,9.45849917882896,0
+9571,0.025221372543226,0.157894736842105,15.7894736842105,4,85.0822639905748,0.805889423076923,13.4210526315789,8.17612585226695,0
+9572,0.0240139225212497,0.168975069252078,16.8975069252078,2,89.1493131557194,0.841069182389937,15.5124653739612,5.89512535001411,0
+9573,0.0348741162862271,0.307479224376731,30.7479224376731,2,91.9215836286799,0.84838,26.3157894736842,6.03610771196383,0
+9574,0.0377232687842227,0.340720221606648,34.0720221606648,3,92.5725884687886,0.8435580510231,29.6398891966759,6.87111841372358,0
+9575,0.0340532241680577,0.289473684210526,28.9473684210526,3,92.6278559299055,0.844407221291643,26.8421052631579,10.0030023791573,0
+9576,0.0279180672121463,0.155124653739612,15.5124653739612,4,84.7259230363814,0.84137231705256,13.0193905817175,35.6007205588477,5.19557523727417
+9577,0.0250679617136061,0.157894736842105,15.7894736842105,1,91.5743806754245,0.745535714285714,15.7894736842105,11.5238399756582,0
+9578,0.0255976715475841,0.238227146814404,23.8227146814404,3,88.1384431102178,0.682543077837195,15.2354570637119,9.00112240259037,0
+9579,0.0344122381938824,0.297368421052632,29.7368421052632,2,94.3887900447158,0.888374825585665,28.9473684210526,5.9297553290308,0
+9580,0.0391553258561236,0.326869806094183,32.6869806094183,2,95.3074312624911,0.888927348948117,32.409972299169,6.06444134954679,0
+9581,0.0470196037372501,0.437673130193906,43.7673130193906,3,93.6517525329065,0.779242398505181,36.5650969529086,6.18765041797976,0
+9582,0.0355570383490933,0.393351800554017,39.3351800554017,2,92.9122257435126,0.752739726027397,22.7146814404432,6.34733572140546,0
+9583,0.038760811304191,0.355263157894737,35.5263157894737,4,90.0476947911428,0.766716442674631,26.0526315789474,5.90104192804407,0
+9584,0.0259052757660722,0.232686980609418,23.2686980609418,2,89.1044516047883,0.772587405810094,18.005540166205,5.99262279555911,0
+9585,0.0126841788427998,0.0831024930747922,8.31024930747922,6,67.3452169637449,0.465811702324434,3.32409972299169,9.36730281511942,5.19557523727417
+9586,0.0185286353858485,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,25.0126088142395,5.19557523727417
+9587,0.0210332454757774,0.0894736842105263,8.94736842105263,3,79.6939200106747,0.764657308009909,6.31578947368421,13.4520121602451,0
+9588,0.023003407548826,0.160664819944598,16.0664819944598,4,83.3417510173156,0.773630363036304,10.803324099723,4.92302407889531,0
+9589,0.0364591360134569,0.301939058171745,30.1939058171745,6,88.3498968278618,0.803662073966643,24.6537396121884,10.3016395962566,0
+9590,0.0300229451561405,0.221606648199446,22.1606648199446,7,81.6474940215248,0.728585033331662,13.8504155124654,6.82683494091034,0
+9591,0.0315941399479542,0.281578947368421,28.1578947368421,4,90.2808909221772,0.834120974017347,24.4736842105263,4.52038009144435,0
+9592,0.0325552837648174,0.296398891966759,29.6398891966759,7,87.8852848645973,0.720166455876953,22.4376731301939,4.90625825775004,0
+9593,0.0279879590409029,0.229916897506925,22.9916897506925,4,86.8135803108052,0.796823765477414,17.4515235457064,3.63509158628533,0
+9594,0.0337167544400228,0.337950138504155,33.7950138504155,3,90.7335282117942,0.733448190991878,22.7146814404432,3.90126795846908,0
+9595,0.0486246042276769,0.447368421052632,44.7368421052632,3,95.6577409481556,0.762969724631066,42.1052631578947,6.07151589674108,0
+9596,0.0392090983363852,0.371191135734072,37.1191135734072,3,95.12040353724,0.797952625117354,35.7340720221607,6.23681982239681,0
+9597,0.0416649351399305,0.426592797783933,42.6592797783933,3,94.9348244465773,0.83361499462283,39.612188365651,4.83545430294879,0
+9598,0.0333503317490082,0.39612188365651,39.612188365651,1,96.7285565610363,0.835667763849009,39.612188365651,8.9471692205309,0
+9599,0.037696128080815,0.336842105263158,33.6842105263158,4,90.3282457354882,0.715239457728728,23.1578947368421,7.83819305151701,0
+9600,0.0372202435213247,0.388888888888889,38.8888888888889,2,95.9673270433773,0.824192336589031,38.3040935672515,17.4304045519434,0
+9601,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9602,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9603,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9604,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9605,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9606,0.00906556078859323,0.105263157894737,10.5263157894737,4,57.2539673769526,0.580882352941177,3.94736842105263,32.1814085841179,10.3911504745483
+9607,-0.000974239101428655,0.0304709141274238,3.04709141274238,1,73.7293580723472,1,3.04709141274238,35.8797354264693,31.1734504699707
+9608,-0.00255612231542065,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,9.71404838562012,5.19557523727417
+9609,0.0115922266943049,0.038781163434903,3.8781163434903,3,64.6111086803567,0.687896253602305,3.04709141274238,18.7069658211299,5.19557523727417
+9610,0.012465618241329,0.0236842105263158,2.36842105263158,2,55.8915688410153,0.573225516621743,1.31578947368421,11.3704490131802,5.19557523727417
+9611,0.00863188940157844,0,0,0,NA,NA,0,NA,NA
+9612,0.0141143376194427,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,5.19557523727417,5.19557523727417
+9613,0.0169491514550581,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,33.2679138183594,33.2679138183594
+9614,0.0176000379401222,0.105263157894737,10.5263157894737,3,80.415644929093,0.79982440737489,6.31578947368421,31.6237951755524,20.7823009490967
+9615,0.0172255439955384,0.0664819944598338,6.64819944598338,5,62.0455095153494,0.605341246290801,3.04709141274238,26.7228520512581,0
+9616,0.0176454235372647,0.0221606648199446,2.21606648199446,4,36.1211634414231,0.386402266288952,1.10803324099723,10.6601600646973,5.19557523727417
+9617,0.0191759799835333,0.0664819944598338,6.64819944598338,4,65.2555662110169,0.63353115727003,2.49307479224377,6.41674888134003,0
+9618,0.0193718570955465,0.118421052631579,11.8421052631579,4,78.1015484357349,0.671641791044776,5.52631578947368,6.16214051776462,0
+9619,0.0265072655591242,0.157894736842105,15.7894736842105,4,85.4089014232018,0.672831632653061,12.1883656509695,3.46371681648388,0
+9620,0.0266442787871403,0.0858725761772853,8.58725761772853,7,58.5507443522754,0.58430303030303,2.21606648199446,2.58340987851543,0
+9621,0.0266203744462488,0.127423822714681,12.7423822714681,5,81.4133255306417,0.823687423687424,11.0803324099723,2.41867734038312,0
+9622,0.0221748038831337,0.0526315789473684,5.26315789473684,6,52.8751384691105,0.523297491039426,2.10526315789474,2.85756638050079,0
+9623,0.0240425105221019,0.132963988919668,13.2963988919668,6,72.7517798131716,0.634302189667264,6.64819944598338,5.42601957917213,0
+9624,0.0329163637822636,0.174515235457064,17.4515235457064,5,81.0086028801802,0.779743746186699,13.0193905817175,19.8943484548538,0
+9625,0.0134542556941123,0.0443213296398892,4.43213296398892,2,68.9688857755306,0.564009661835749,2.77008310249307,1.89262697100639,0
+9626,0.0278655648255249,0.223684210526316,22.3684210526316,4,88.8070560438587,0.778201818385902,18.9473684210526,6.41546065947589,0
+9627,0.0268190478218508,0.279778393351801,27.9778393351801,3,92.6300361204551,0.80822354441139,26.0387811634349,9.42619815675339,0
+9628,0.0277722899179965,0.204986149584488,20.4986149584488,6,76.8038267186435,0.641999463950683,6.37119113573407,8.28351890718615,0
+9629,0.024482699452288,0.282548476454294,28.2548476454294,3,92.8193106439371,0.84005316792202,26.3157894736842,4.59090143559026,0
+9630,0.0183923983891442,0.118421052631579,11.8421052631579,3,84.5404937378454,0.82089552238806,10.5263157894737,3.99438778559367,0
+9631,0.0322141487976651,0.282548476454294,28.2548476454294,4,88.2061159137116,0.794354073042597,22.1606648199446,5.1912371598038,0
+9632,0.0190788584095622,0.132963988919668,13.2963988919668,2,87.1051553478881,0.76088989324398,11.9113573407202,10.3283984760443,0
+9633,0.0144040199359695,0.0914127423822715,9.14127423822715,3,78.48711046002,0.714656729900632,6.92520775623269,10.1546643719529,0
+9634,0.0120950315051136,0.115789473684211,11.5789473684211,2,86.5534543313549,0.862451737451737,10.7894736842105,9.71825339577415,0
+9635,0.0128060458934425,0.0415512465373961,4.15512465373961,4,52.0065956257307,0.525748817656332,1.66204986149584,19.471156279246,5.19557523727417
+9636,0.00941151418962446,0.0304709141274238,3.04709141274238,2,64.4435673397843,0.724952380952381,2.49307479224377,11.3755984739824,5.19557523727417
+9637,0.00694193064116418,0.0886426592797784,8.86426592797784,2,84.3142311899249,0.746785129763853,8.31024930747922,10.0464653521776,0
+9638,0.0144192172545062,0.121052631578947,12.1052631578947,2,87.0857979492804,0.854137878089974,11.3157894736842,11.9341681107231,5.19557523727417
+9639,0.0223311969771039,0.152354570637119,15.2354570637119,4,81.593527153935,0.813725490196078,10.803324099723,4.42802293950861,0
+9640,0.0200924929279374,0.0775623268698061,7.75623268698061,7,54.9874477851541,0.518184851518185,1.93905817174515,27.7101465633937,7.34765291213989
+9641,0.0140618130382521,0.110803324099723,11.0803324099723,2,84.4278669488042,0.88250337099549,9.69529085872576,11.080295920372,5.19557523727417
+9642,0.0172150378684491,0.105263157894737,10.5263157894737,4,77.6364261427375,0.680672268907563,7.20221606648199,16.4412340741409,5.19557523727417
+9643,0.0136788467255476,0.0578947368421053,5.78947368421053,4,61.1773015693606,0.656588892540256,2.10526315789474,25.9452903487466,10.3911504745483
+9644,0.0109396883117395,0.0443213296398892,4.43213296398892,3,61.9584653237011,0.651207729468599,2.21606648199446,16.3258247971535,10.3911504745483
+9645,0.0118115700030239,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,66.3576030731201,59.2386741638184
+9646,0.0111892952491844,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,38.4437971115112,34.8529777526855
+9647,0.00921781574365205,0.0605263157894737,6.05263157894737,2,75.3000859475324,0.733893557422969,4.21052631578947,9.37561383454696,0
+9648,0.0221558873305195,0.110803324099723,11.0803324099723,4,77.4705181055241,0.68108057841633,5.81717451523546,15.4322456359863,0
+9649,0.0243575911168072,0.110803324099723,11.0803324099723,6,66.1104258990018,0.59715441484168,2.77008310249307,18.2000845193863,0
+9650,0.0338181617716803,0.25207756232687,25.207756232687,5,85.5398432545298,0.620347508001829,13.0193905817175,11.1133501870292,0
+9651,0.0275978148449978,0.155263157894737,15.5263157894737,6,80.2725158382973,0.651823346160894,10.2631578947368,8.18406543085131,0
+9652,0.0176807792461962,0.102493074792244,10.2493074792244,2,83.5541429915826,0.780813600485732,8.31024930747922,7.97446953283774,0
+9653,0.0270486645657863,0.127423822714681,12.7423822714681,2,87.1466847350091,0.853072853072853,11.6343490304709,7.21876462646153,0
+9654,0.0203999255448547,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,14.3184618268694,5.19557523727417
+9655,0.0214805748813409,0.068421052631579,6.8421052631579,5,66.983887841662,0.659638969271049,4.47368421052632,35.041484777744,7.34765291213989
+9656,0.0159658269361158,0.0249307479224377,2.49307479224377,3,48.4679161904122,0.658143939393939,1.66204986149584,19.6043331358168,0
+9657,0.0185987049436559,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,22.3959392905235,0
+9658,0.0154512882542912,0.0609418282548476,6.09418282548476,4,60.8221534266774,0.561513100815548,2.21606648199446,9.47696308656172,5.19557523727417
+9659,0.0186580179972273,0.0789473684210526,7.89473684210526,5,65.7458893894898,0.53469387755102,2.63157894736842,9.70106369654338,0
+9660,0.0151017931733945,0.074792243767313,7.4792243767313,5,64.2169646554169,0.622963375574433,3.04709141274238,7.56255674362183,0
+9661,0.0128963808328738,0.0443213296398892,4.43213296398892,3,61.8687874600599,0.651207729468599,2.49307479224377,6.51541212201118,5.19557523727417
+9662,0.0126334016336574,0.0692520775623269,6.92520775623269,4,66.833510311951,0.677678571428571,3.04709141274238,16.4151090431213,5.19557523727417
+9663,0.0171588525741658,0.0736842105263158,7.36842105263158,5,63.0404922400274,0.688131313131313,2.89473684210526,33.079602769443,0
+9664,0.0124864904509173,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,57.0098363702947,44.6940307617188
+9665,0.0141684031637609,0,0,0,NA,NA,0,NA,NA
+9666,0.015831060522788,0.074792243767313,7.4792243767313,2,81.5785655975614,0.824049575268069,6.92520775623269,5.89799420038859,0
+9667,0.0196511754989364,0.0868421052631579,8.68421052631579,4,70.808339077427,0.675525669761981,4.47368421052632,17.6489293503039,5.19557523727417
+9668,0.0214083499237337,0.0554016620498615,5.54016620498615,3,67.5302852284346,0.692649702014947,3.04709141274238,13.2689398050308,0
+9669,0.0290144883090413,0.149584487534626,14.9584487534626,1,91.1912638540493,0.860915554621554,14.9584487534626,12.0349014246905,5.19557523727417
+9670,0.0259579190743677,0.18005540166205,18.005540166205,4,87.8618412426967,0.74097105955513,15.7894736842105,9.11720278813289,0
+9671,0.025416959706988,0.163157894736842,16.3157894736842,6,75.3889817542412,0.6680642907058,5.78947368421053,19.6939272111462,0
+9672,0.0282525485743266,0.193905817174515,19.3905817174515,6,76.8036099898471,0.667169558293521,6.92520775623269,10.6406648431505,0
+9673,0.0400855163260886,0.346260387811634,34.6260387811634,3,90.6788926893309,0.770887777197043,21.606648199446,14.7224036331177,0
+9674,0.0246286390845606,0.0581717451523546,5.81717451523546,4,65.0971825988835,0.568658088235294,3.32409972299169,50.8589019775391,16.4298515319824
+9675,0.0201584049749439,0.0526315789473684,5.26315789473684,5,57.5111167000816,0.557347670250896,2.36842105263158,16.5184016942978,0
+9676,0.0186437028722623,0.0304709141274238,3.04709141274238,4,46.8677942155493,0.518666666666667,1.38504155124654,30.5669478069652,0
+9677,0.0187017639584251,0.03601108033241,3.601108033241,3,62.1708434767973,0.538952745849298,2.49307479224377,24.3117035719065,7.34765291213989
+9678,0.0199920908110211,0.0581717451523546,5.81717451523546,4,59.443848610103,0.601838235294118,1.66204986149584,32.2192535854521,5.19557523727417
+9679,0.0176334903691608,0.110526315789474,11.0526315789474,2,82.288848733128,0.809984165347112,5.78947368421053,24.1998804637364,10.3911504745483
+9680,0.00641840761862798,0.038781163434903,3.8781163434903,3,59.435000766849,0.687896253602305,2.21606648199446,31.2524510792324,10.3911504745483
+9681,-0.00699897997517817,0.124653739612188,12.4653739612188,3,85.9744945140926,0.849683544303798,11.6343490304709,20.1904209666782,5.19557523727417
+9682,0.0356544158489984,0.224376731301939,22.4376731301939,7,82.8458956264178,0.650818452380952,11.0803324099723,41.3252289442368,7.34765291213989
+9683,0.0282149502887621,0.155263157894737,15.5263157894737,4,81.3242769317816,0.651823346160894,8.1578947368421,25.5107596203432,5.19557523727417
+9684,0.0209730438912017,0.0692520775623269,6.92520775623269,3,80.4940341273027,0.570238095238095,6.37119113573407,14.5476106643677,10.3911504745483
+9685,0.0205738761262656,0.0775623268698061,7.75623268698061,3,80.2307064618663,0.590457123790457,6.64819944598338,13.4557707139424,5.19557523727417
+9686,0.0238426112386216,0.0637119113573407,6.37119113573407,4,68.9352336050265,0.643984220907298,4.43213296398892,22.7500458592954,10.3911504745483
+9687,0.0184034393208046,0.0315789473684211,3.15789473684211,7,31.5057414941329,0.392583120204604,1.57894736842105,37.8854724566142,15.5867252349854
+9688,0.02316927186766,0.0941828254847645,9.41828254847645,2,81.6625416344376,0.842289209261686,7.20221606648199,11.0335610614103,0
+9689,0.0164628983259005,0.0941828254847645,9.41828254847645,4,77.2220817631524,0.802861511577108,7.75623268698061,9.99603808627409,0
+9690,0.0382112716316868,0.282548476454294,28.2548476454294,4,91.0603949922349,0.695339367470515,22.7146814404432,32.4373799211839,5.19557523727417
+9691,0.0255485718895598,0.171052631578947,17.1052631578947,5,80.5653081010659,0.701081612586037,8.1578947368421,12.0817828398484,0
+9692,0.0477333937051198,0.50415512465374,50.415512465374,2,97.4200259606292,0.850388740613033,50.1385041551247,4.39951848197769,0
+9693,0.0314005354743121,0.204986149584488,20.4986149584488,6,78.5740960127243,0.632323773787188,6.37119113573407,4.14284248609801,0
+9694,0.0353142618482392,0.326869806094183,32.6869806094183,4,90.5229716765825,0.861159186185147,26.0387811634349,0.85481362019555,0
+9695,0.0257427109513389,0.163157894736842,16.3157894736842,5,81.235144732878,0.7787095271372,11.8421052631579,9.28658460801648,0
+9696,0.0391908713204845,0.335180055401662,33.5180055401662,5,89.1082429811397,0.753863636363636,20.2216066481994,22.1555226657016,0
+9697,0.0252593740648721,0.246537396121884,24.6537396121884,2,93.2698794730196,0.774625416204218,23.5457063711911,10.6060298266036,0
+9698,0.0160866163244015,0.0941828254847645,9.41828254847645,4,69.6478938538127,0.664864569681083,3.32409972299169,25.1045132945566,0
+9699,0.0226477831158646,0.0394736842105263,3.94736842105263,4,53.9192287727554,0.574097135740971,1.84210526315789,60.193899790446,47.0479354858398
+9700,0.0222551980203856,0.154970760233918,15.4970760233918,2,88.5732781348666,0.882961329328111,14.327485380117,27.5212053802778,0
+9701,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9702,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9703,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9704,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9705,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9706,0.0289022162586255,0.276315789473684,27.6315789473684,2,88.2458526709887,0.883226632522407,25,33.4717548801785,7.34765291213989
+9707,0.028404989535876,0.191135734072022,19.1135734072022,3,86.5441893232479,0.795652666138345,14.9584487534626,26.1350399514903,10.3911504745483
+9708,0.00940264253993196,0.135734072022161,13.5734072022161,2,85.5663102564254,0.7933836996337,10.5263157894737,17.242508820125,5.19557523727417
+9709,0.0428040116907106,0.3601108033241,36.01108033241,4,87.5190318650396,0.756023161086452,18.5595567867036,17.8103682994843,0
+9710,0.0189109515851765,0.168421052631579,16.8421052631579,6,75.4867253814212,0.667156419529837,8.1578947368421,27.8429934382439,5.19557523727417
+9711,0.0346072783161257,0.293628808864266,29.3628808864266,4,87.5361546084808,0.829524689456935,15.7894736842105,22.6667090182034,0
+9712,0.0272466236330573,0.207756232686981,20.7756232686981,3,87.4055288753053,0.83743907607544,11.9113573407202,13.3389696947734,0
+9713,0.0284882583089464,0.260387811634349,26.0387811634349,2,93.9143497325817,0.91952024255395,25.7617728531856,73.4619142654094,42.8438110351562
+9714,0.017844295291654,0.113157894736842,11.3157894736842,3,82.7851574681708,0.812067260138477,9.47368421052632,51.4707896210426,41.5646018981934
+9715,0.0145429277977314,0.03601108033241,3.601108033241,5,46.7634646535588,0.423690932311622,1.66204986149584,44.3142654712384,29.3906116485596
+9716,0.00988389534398964,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,38.6031894683838,23.2353191375732
+9717,0.0177334417695518,0.07202216066482,7.20221606648199,4,66.0479888784668,0.500618856934838,3.04709141274238,26.8188592103811,5.19557523727417
+9718,0.00690090828863839,0.0263157894736842,2.63157894736842,3,52.8544892788092,0.525987525987526,1.57894736842105,16.794465637207,15.5867252349854
+9719,0.0158950072055377,0.10803324099723,10.803324099723,3,81.9583933952293,0.844768275203058,9.14127423822715,3.66071021251189,0
+9720,0.0320614346111493,0.218836565096953,21.8836565096953,4,82.2334452748226,0.780547112462006,8.31024930747922,2.92565349385708,0
+9721,0.0288534143538852,0.121883656509695,12.1883656509695,10,59.2974409924982,0.50754540028988,3.8781163434903,4.05102962797338,0
+9722,0.0224805094503896,0.0657894736842105,6.57894736842105,4,74.1522688137267,0.652112676056338,5.26315789473684,28.7074526405334,0
+9723,0.0204613251609817,0.168975069252078,16.8975069252078,2,87.0445787956136,0.875125786163522,13.0193905817175,49.0349306825732,18.7329120635986
+9724,0.0218595804249729,0.152354570637119,15.2354570637119,3,83.399909608165,0.813725490196078,9.97229916897507,54.5208518981934,27.9790287017822
+9725,0.00815554383431878,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,42.3323268890381,40.5787391662598
+9726,0.00694813293283866,0.0631578947368421,6.31578947368421,5,64.1967820506238,0.634831460674157,3.94736842105263,19.3545023004214,0
+9727,0.0414338140380653,0.349030470914127,34.9030470914127,2,92.5384306558279,0.859128495772554,22.1606648199446,12.3014607997168,0
+9728,0.0353710570451845,0.282548476454294,28.2548476454294,3,93.8953488372093,0.870519231174969,27.7008310249307,7.1359106091892,0
+9729,0.0093593352213144,0.0664819944598338,6.64819944598338,4,67.0283519436654,0.63353115727003,3.8781163434903,1.22318595647812,0
+9730,0.0113183051091159,0.0631578947368421,6.31578947368421,4,64.8135964068099,0.634831460674157,3.42105263157895,7.60338173309962,0
+9731,0.0293116469543757,0.0415512465373961,4.15512465373961,5,49.2698600458824,0.478323699421965,1.66204986149584,0.692743364969889,0
+9732,0.00816172918018922,0.0332409972299169,3.32409972299169,4,49.493734867695,0.574077195348053,1.93905817174515,8.83863190809886,0
+9733,0.00253493738795406,0.0249307479224377,2.49307479224377,3,48.8677635297387,0.487215909090909,1.38504155124654,7.37974336412218,0
+9734,0.0213050473331302,0.105263157894737,10.5263157894737,5,76.58215813637,0.616330114135206,6.8421052631579,6.06022988557816,0
+9735,0.0337138097541323,0.257617728531856,25.7617728531856,3,91.5579208966512,0.780907210933285,21.8836565096953,12.3353422226444,0
+9736,0.0152386252728753,0.0637119113573407,6.37119113573407,3,68.0793155236349,0.703320184089415,3.04709141274238,20.0749360789423,0
+9737,0.0149676245531223,0.0470914127423823,4.70914127423823,2,69.7132066894998,0.790116279069767,3.04709141274238,31.820649988511,0
+9738,0.0138829272321537,0.0552631578947368,5.52631578947368,4,63.7022955205393,0.669220055710306,3.42105263157895,34.8856876918248,15.5867252349854
+9739,0.0254373097256659,0.163434903047091,16.3434903047091,4,86.1348480527492,0.683580054538372,13.2963988919668,5.88490469981048,0
+9740,0.0215527315869566,0.0969529085872576,9.69529085872576,5,66.9768087967743,0.675428390099429,3.04709141274238,12.6821749278477,0
+9741,0.0125837541215794,0.110803324099723,11.0803324099723,5,71.6735951753848,0.647510112986469,4.43213296398892,20.7211652874947,0
+9742,0.00394667929535559,0.0221606648199446,2.21606648199446,2,52.7777777777778,0.693201133144476,1.10803324099723,32.1175727844238,10.3911504745483
+9743,0.00372862703004318,0,0,0,NA,NA,0,NA,NA
+9744,0.0183009132261983,0.121883656509695,12.1883656509695,1,89.6424568139514,0.892275556313411,12.1883656509695,6.38176921280948,0
+9745,0.00424167755086664,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,73.4765319824219,73.4765319824219
+9746,0.0191345731907158,0.0498614958448753,4.98614958448753,4,55.8589562520377,0.610193283662671,1.66204986149584,0.865929206212362,0
+9747,0.0130080622272592,0.0184210526315789,1.84210526315789,3,37.0208748079497,0.490616621983914,0.789473684210526,4.45335020337786,0
+9748,0.0164121104403685,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,15.2678679360284,5.19557523727417
+9749,0.0143200615195201,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,67.7420120239258,67.7420120239258
+9750,0.0293047640829515,0.185595567867036,18.5595567867036,4,85.8489544801339,0.695650909936624,14.1274238227147,5.10591409455484,0
+9751,0.0210260534239045,0.105263157894737,10.5263157894737,5,72.7288119474334,0.716417910447761,4.47368421052632,6.63446992635727,0
+9752,0.0140589494787789,0,0,0,NA,NA,0,NA,NA
+9753,0.0446369972576531,0.437673130193906,43.7673130193906,4,92.4026155306093,0.785374554102259,25.7617728531856,11.5001174286951,0
+9754,0.0355412017050341,0.271468144044321,27.1468144044321,6,82.9959573834849,0.766030072589008,12.7423822714681,5.3887646100959,0
+9755,0.0501350380100791,0.428947368421053,42.8947368421053,3,92.3705589956006,0.81321044546851,22.1052631578947,4.17004453038877,0
+9756,0.013535538020355,0,0,0,NA,NA,0,NA,NA
+9757,0.0307465384654969,0.185595567867036,18.5595567867036,4,85.607554152305,0.737630094772952,13.5734072022161,38.9220507749871,14.6953058242798
+9758,0.01105405248585,0.0664819944598338,6.64819944598338,3,74.4445552616069,0.802670623145401,5.54016620498615,17.6375576059024,5.19557523727417
+9759,0.0276423429927442,0.210526315789474,21.0526315789474,5,82.3433525256662,0.723474178403756,10.5263157894737,40.4164199411869,5.19557523727417
+9760,0.023248802293978,0.0581717451523546,5.81717451523546,5,58.7597701674274,0.635018382352941,3.32409972299169,7.24853020622617,0
+9761,0.0220983411994304,0.0554016620498615,5.54016620498615,6,51.1171065625613,0.521899536467695,1.38504155124654,4.63144671916962,0
+9762,0.0175755726322627,0.0692520775623269,6.92520775623269,2,78.1007112295827,0.892559523809524,5.81717451523546,11.5325269889832,5.19557523727417
+9763,0.104435417954013,0.547368421052632,54.7368421052632,3,95.9290117040076,0.89724175229854,50,10.2470275736772,0
+9764,0.114000302311954,0.57617728531856,57.617728531856,2,97.9024400750065,0.902450558173312,57.3407202216066,32.037784741475,0
+9765,0.0178394894724258,0.10803324099723,10.803324099723,3,81.6912252101949,0.810272336359293,9.14127423822715,28.6068308536823,5.19557523727417
+9766,0.0301300179197323,0.196675900277008,19.6675900277008,3,85.5662905391598,0.770951724137931,10.2493074792244,62.9057294550076,20.7823009490967
+9767,0.0290682198555978,0.228947368421053,22.8947368421053,2,93.1990892122088,0.824287129802929,22.3684210526316,57.404029670803,31.1734504699707
+9768,0.00970773213475317,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,11.6176592508952,0
+9769,0.0186657674508106,0.0249307479224377,2.49307479224377,2,56.0256720617195,0.743607954545455,1.38504155124654,35.6407718658447,15.5867252349854
+9770,0.0204692494285495,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,68.0963424682617,67.54248046875
+9771,0.0406220145127583,0.352631578947368,35.2631578947368,3,90.9110948886032,0.778421964547514,21.5789473684211,37.134833720193,10.3911504745483
+9772,0.0293208032415154,0.160664819944598,16.0664819944598,4,84.7381339772996,0.880858085808581,13.8504155124654,12.1302252062436,0
+9773,0.0258421628649535,0.174515235457064,17.4515235457064,4,85.25043580026,0.713666870042709,12.7423822714681,11.0309125431,0
+9774,0.0301037611813306,0.113573407202216,11.3573407202216,3,77.0892564770878,0.754755434782609,5.54016620498615,59.4457638438155,31.1734504699707
+9775,0.0229749788174032,0.107894736842105,10.7894736842105,3,80.855538400089,0.772562096532854,8.42105263157895,20.9760558895948,7.34765291213989
+9776,0.032919251395472,0.193905817174515,19.3905817174515,5,81.0397953402174,0.727684184058335,8.58725761772853,52.9916297640119,11.6176595687866
+9777,0.0198790604555241,0.116343490304709,11.6343490304709,1,89.2679797262236,0.824672170956775,11.6343490304709,52.1466200692313,34.8529777526855
+9778,0.0139940360608095,0.0193905817174515,1.93905817174515,3,36.5555592639715,0.362641242937853,0.831024930747922,28.6364032200405,20.7823009490967
+9779,0.0224968491416228,0.118421052631579,11.8421052631579,3,81.4239642642586,0.805970149253731,6.57894736842105,37.6125834994846,18.7329120635986
+9780,0.00277871441476916,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,33.8739347457886,18.7329120635986
+9781,0.00279523145622371,0.0775623268698061,7.75623268698061,3,72.5044199389243,0.638638638638639,3.8781163434903,7.94708263874054,0
+9782,0.0306732254235446,0.119113573407202,11.9113573407202,6,72.6300441593598,0.653127183787561,6.92520775623269,52.1360913210137,23.2353191375732
+9783,0.0291472574152929,0.0763157894736842,7.63157894736842,5,66.2736965634559,0.63144814208644,2.89473684210526,41.5228641608666,7.34765291213989
+9784,0.0344928679148937,0.207756232686981,20.7756232686981,8,76.264206020966,0.674878152150879,8.31024930747922,57.4636713155111,36.369026184082
+9785,0.0217133404976392,0.121883656509695,12.1883656509695,2,82.8346760921718,0.815329525108705,7.75623268698061,20.8925118229606,0
+9786,0.0120784624779461,0.0332409972299169,3.32409972299169,3,57.7881939035363,0.634923310298331,2.21606648199446,39.0585275491079,5.19557523727417
+9787,0.0238373806406918,0.105263157894737,10.5263157894737,5,72.8309518969287,0.716417910447761,6.05263157894737,11.1089632630348,0
+9788,0.0327996636032697,0.160664819944598,16.0664819944598,8,81.037338178285,0.74980198019802,13.2963988919668,7.75872154071413,0
+9789,0.0248451075538247,0.102493074792244,10.2493074792244,4,77.0415177304169,0.707751467314309,6.37119113573407,3.29690263078019,0
+9790,0.0231996087164599,0.138504155124654,13.8504155124654,2,87.7035599007807,0.904407036126348,12.7423822714681,16.8050142478943,0
+9791,0.0228325646579067,0.0236842105263158,2.36842105263158,5,29.393006743637,0.317160826594789,0.789473684210526,9.14298990037706,0
+9792,0.0526572508621997,0.562326869806094,56.2326869806094,2,96.1038176353392,0.824245374878286,47.9224376731302,4.22003796300277,0
+9793,0.0334789133772584,0.232686980609418,23.2686980609418,9,74.9809114012175,0.606401279286701,7.4792243767313,4.89125273908888,0
+9794,0.0223357714757591,0.110803324099723,11.0803324099723,6,68.8189091754038,0.59715441484168,4.43213296398892,3.92613676786423,0
+9795,0.0349396560918601,0.313157894736842,31.3157894736842,2,91.6584494172,0.797786292039166,16.5789473684211,4.90983441697449,0
+9796,0.0514172972225097,0.445983379501385,44.5983379501385,6,89.916644119946,0.743885135135135,20.7756232686981,14.6135036960152,0
+9797,0.0446191993787907,0.43213296398892,43.213296398892,3,95.2414693611788,0.785246876859013,39.3351800554017,14.5686074984379,0
+9798,0.0284622453469648,0.130193905817175,13.0193905817175,4,79.629724776058,0.712579617834395,6.64819944598338,12.0427201960949,0
+9799,0.0464829577286238,0.310526315789474,31.0526315789474,5,89.8342645943021,0.769565527573661,24.2105263157895,46.4140100761995,0
+9800,0.0153193833094514,0.064327485380117,6.4327485380117,1,83.1776611645899,0.748529411764706,6.4327485380117,47.5301832719283,32.8597030639648
+9801,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9802,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9803,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9804,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9805,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9806,0.00601336758500111,0.0375,3.75,1,64.2549725606995,0.851576994434137,3.75,5.55425484975179,0
+9807,0.0245585668985625,0.178947368421053,17.8947368421053,2,90.106222659587,0.897651368239603,16.8421052631579,13.6093420140883,0
+9808,0.0298065623876602,0.192105263157895,19.2105263157895,5,82.5256236566591,0.787255700325733,10,50.4272028256769,32.8597030639648
+9809,0.029858723840229,0.215789473684211,21.5789473684211,6,82.7412979800267,0.797732006479982,16.3157894736842,11.3406698471162,0
+9810,0.0536488843156258,0.3775,37.75,3,94.1205072549948,0.889811955402839,34.5,21.2826391024305,0
+9811,0.0351613962876064,0.292105263157895,29.2105263157895,3,90.6565213053915,0.858736059479554,17.3684210526316,17.4112462739687,0
+9812,0.0283977247739921,0.197368421052632,19.7368421052632,4,84.425077977221,0.848981619473423,9.47368421052632,5.92640324910482,0
+9813,0.0144234477460582,0.113157894736842,11.3157894736842,2,82.6730236550577,0.843389383448731,5.78947368421053,41.5892041228538,21.4219055175781
+9814,0.0153101410545787,0.11,11,3,83.966431971944,0.893713938657759,10,21.6372345035726,7.34765291213989
+9815,0.0195795869017562,0.168421052631579,16.8421052631579,5,82.7373894094811,0.828209764918626,13.9473684210526,26.3062295764685,5.19557523727417
+9816,0.0185304985195994,0.131578947368421,13.1578947368421,3,86.7071504819422,0.891622103386809,12.3684210526316,18.1312763404846,0
+9817,0.0261022714693593,0.189473684210526,18.9473684210526,7,83.1745301263321,0.727988546886185,12.6315789473684,13.6435295343399,0
+9818,0.0165199500897506,0.1675,16.75,3,87.9398347227487,0.733066399733066,14,21.6209056128317,5.19557523727417
+9819,0.0225834840289424,0.202631578947368,20.2631578947368,5,80.5785846650107,0.668025626092021,8.42105263157895,16.6276990593254,0
+9820,0.0510744264601894,0.423684210526316,42.3684210526316,8,91.5417431182319,0.742070837961249,34.7368421052632,17.3837918968675,0
+9821,0.0424878185800289,0.302631578947368,30.2631578947368,4,85.7415035300121,0.800072568940494,11.5789473684211,26.2360189023225,0
+9822,0.0353607071690931,0.285,28.5,5,88.3813415513939,0.782741530314346,16,52.9786818989536,15.5867252349854
+9823,0.0276091802230439,0.231578947368421,23.1578947368421,2,89.5452161513704,0.883954279731263,12.1052631578947,22.1731476296078,0
+9824,0.0165976031854514,0.115789473684211,11.5789473684211,6,74.1729177436116,0.724903474903475,6.84210526315789,16.984418944879,0
+9825,0.0161227830840983,0.0894736842105263,8.94736842105263,3,80.7821033614543,0.843104872006606,7.89473684210526,15.0251871698043,5.19557523727417
+9826,0.0245508334732585,0.27,27,5,90.4044315087891,0.754127151387425,22.5,38.6723888141138,0
+9827,0.0595589119896144,0.460526315789474,46.0526315789474,3,94.801922851761,0.799139167862267,34.7368421052632,7.83886089052473,0
+9828,0.0458189269543494,0.344736842105263,34.4736842105263,6,88.3655099260553,0.802053401892087,19.4736842105263,6.2307655283513,0
+9829,0.0298004777848435,0.231578947368421,23.1578947368421,3,91.015536354237,0.883954279731263,21.3157894736842,0.118081255392595,0
+9830,0.0148664881723926,0.075,7.5,4,69.0100166287344,0.691119691119691,4,0.692743364969889,0
+9831,0.0224070751741932,0.107894736842105,10.7894736842105,4,74.5336598194697,0.675088709332649,3.68421052631579,9.83976260627188,0
+9832,0.0699031548427516,0.671052631578947,67.1052631578947,1,98.8064194597879,0.783765690376569,67.1052631578947,6.4179578369739,0
+9833,0.0587834142463276,0.468421052631579,46.8421052631579,2,96.1470004905021,0.942821029823347,44.7368421052632,8.26300997144721,0
+9834,0.0207102248085357,0.065,6.5,5,61.5012737620172,0.556541019955654,1.75,10.8490140071282,0
+9835,0.0143807639796011,0.0763157894736842,7.63157894736842,1,85.8336389547059,0.792689579923622,7.63157894736842,36.3960360823006,15.5867252349854
+9836,0.0240834370482174,0.0815789473684211,8.15789473684211,3,81.3012097784137,0.782234957020057,7.36842105263158,11.2028255308828,0
+9837,0.0368441448704719,0.3,30,6,85.213410969592,0.722607489597781,17.1052631578947,16.903086536809,0
+9838,0.0140126856647476,0.0825,8.25,3,73.4226374944004,0.737612271672217,3.25,18.2754242492445,0
+9839,0.0162020097428084,0.0868421052631579,8.68421052631579,6,66.0946636399047,0.614686732842352,3.42105263157895,6.13248618443807,0
+9840,0.0335073566248052,0.218421052631579,21.8421052631579,3,89.231238898832,0.834627453675073,17.8947368421053,9.31988570776331,0
+9841,0.0311609313018332,0.257894736842105,25.7894736842105,8,80.5314479630823,0.693745970341715,13.6842105263158,10.8005716508749,0
+9842,0.0119694581749316,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,9.59733734130859,0
+9843,0.0329694587895847,0.275,27.5,4,93.7553398633594,0.695026858430081,26.25,6.50633457357233,0
+9844,0.0258982142791195,0.171052631578947,17.1052631578947,2,88.5059572619302,0.786486866132884,13.6842105263158,2.68973182531504,0
+9845,0.0112203376659109,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,3.46371682484945,0
+9846,0.0126306503223053,0.0578947368421053,5.78947368421053,2,78.1035948821918,0.843904042063753,5.26315789473684,1.65313757549633,0
+9847,0.0056747267813688,0,0,0,NA,NA,0,NA,NA
+9848,0.0104034561112138,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,7.79336285591125,5.19557523727417
+9849,0.0142538808747735,0,0,0,NA,NA,0,NA,NA
+9850,0.0240718672379827,0.1,10,8,62.0765487432038,0.559082892416226,2.63157894736842,8.15145599214654,0
+9851,0.0372835018706974,0.305,30.5,9,85.5629207019795,0.648426055535662,18.75,17.3663867809733,0
+9852,0.0126141141878107,0.0210526315789474,2.10526315789474,3,44.1505367610631,0.489247311827957,1.05263157894737,9.67372065782547,0
+9853,0.0649165615720114,0.489473684210526,48.9473684210526,2,97.2722048931821,0.817789498921122,48.4210526315789,12.039837104018,0
+9854,0.0768510462213894,0.573684210526316,57.3684210526316,1,98.2681975546911,0.832451499118166,57.3684210526316,9.91295710397423,0
+9855,0.0570914434613223,0.42,42,1,97.1419289493636,0.810901001112347,42,6.3933020234108,0
+9856,0.0148936468858569,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417
+9857,0.0295137960181149,0.147368421052632,14.7368421052632,4,79.8128476829849,0.758177421407662,7.36842105263158,12.7051892450878,0
+9858,0.0214461978663932,0.0789473684210526,7.89473684210526,5,70.0065362482197,0.601166180758018,3.94736842105263,35.8607880751292,7.34765291213989
+9859,0.0268742161225782,0.0875,8.75,5,69.9586770794796,0.622106754841757,5,40.7968267304557,0
+9860,0.0319573948503699,0.231578947368421,23.1578947368421,6,82.0962871415863,0.718174679347352,10.2631578947368,27.0180663032965,0
+9861,0.0287867914158836,0.165789473684211,16.5789473684211,6,77.5694142418221,0.738457126469745,7.10526315789474,36.8458160218738,0
+9862,0.0348383472095807,0.268421052631579,26.8421052631579,7,79.0923246097852,0.656406022722805,7.36842105263158,12.5698542080674,0
+9863,0.0373448712906611,0.245,24.5,2,91.0690285254623,0.894641782059001,20.75,27.3080586803203,5.19557523727417
+9864,0.0302168323348604,0.3,30,2,93.9293729079781,0.826629680998613,27.8947368421053,19.134629743141,0
+9865,0.0130987081163001,0.0473684210526316,4.73684210526316,2,76.1485134967922,0.883364027010436,4.47368421052632,15.3975142902798,10.3911504745483
+9866,0.0202811423390238,0.0736842105263158,7.36842105263158,5,65.3519428834843,0.712121212121212,4.73684210526316,30.2510726281575,5.19557523727417
+9867,0.00819475534532103,0.0025,0.25,1,0,NA,0.25,67.54248046875,67.54248046875
+9868,0.0177075007821067,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.872654155495979,1.84210526315789,0.74222503389631,0
+9869,0.0168390727832478,0.0236842105263158,2.36842105263158,3,46.4475313956783,0.573225516621743,1.31578947368421,35.8928705851237,31.1734504699707
+9870,0.0192642288212554,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.588075880758808,2.89473684210526,37.3136763139205,31.1734504699707
+9871,0.0224680683563929,0.1175,11.75,6,74.3512733781685,0.660056657223796,6,12.8162871421652,0
+9872,0.0297857826035684,0.213157894736842,21.3157894736842,6,81.4901250299782,0.74405425492382,8.68421052631579,18.8740815998595,0
+9873,0.0173321284565765,0.0605263157894737,6.05263157894737,5,58.1846549143214,0.556489262371615,2.10526315789474,19.8162560462952,0
+9874,0.0193768502127281,0.1,10,3,84.2520741143971,0.788359788359788,9.21052631578947,59.9290545112208,30.2951488494873
+9875,0.025318189189129,0.1425,14.25,3,82.2875024061823,0.773903730588445,7.25,69.8323009557891,36.369026184082
+9876,0.0279060840747422,0.176315789473684,17.6315789473684,3,85.719414075855,0.792468802053467,12.6315789473684,101.501474124282,55.2297248840332
+9877,0.0251160215544779,0.134210526315789,13.4210526315789,2,87.9109145213436,0.893791705970723,12.6315789473684,71.1484553019206,56.1987419128418
+9878,0.0254776013815756,0.113157894736842,11.3157894736842,3,80.9614927993993,0.765084075173096,7.89473684210526,29.3269999082698,0
+9879,0.0267958254579571,0.16,16,5,82.7691729881425,0.681122448979592,10.5,23.9506780654192,5.19557523727417
+9880,0.0196778989979832,0.15,15,4,85.7334388158725,0.711884753901561,12.3684210526316,10.5178100853636,0
+9881,0.0269298201458265,0.181578947368421,18.1578947368421,4,82.9029667802898,0.697058276421036,7.36842105263158,20.3543983818828,0
+9882,0.0275483542919717,0.215789473684211,21.5789473684211,4,88.2741086085556,0.815320527655635,18.1578947368421,14.5315960558449,0
+9883,0.02837936537122,0.165,16.5,6,77.8303732148319,0.656339494923197,6.5,27.0986584822337,5.19557523727417
+9884,0.023636513153839,0.126315789473684,12.6315789473684,7,70.1084947883777,0.595210108727593,4.47368421052632,15.1207946141561,0
+9885,0.027543362093868,0.173684210526316,17.3684210526316,4,80.3290763391989,0.736914981999446,7.10526315789474,13.4630966909004,0
+9886,0.0297845092760996,0.228947368421053,22.8947368421053,5,83.0585481593032,0.790818011670153,9.21052631578947,20.0328146781044,0
+9887,0.0204698293072579,0.13,13,4,83.6307554515995,0.690042619139868,8.5,18.7045478270604,5.19557523727417
+9888,0.0106735933445443,0.0868421052631579,8.68421052631579,5,67.8674268543697,0.675525669761981,3.68421052631579,9.75888058633515,0
+9889,0.00977291427016577,0.0789473684210526,7.89473684210526,3,77.2249669058741,0.778425655976676,5.52631578947368,22.7597288131714,0
+9890,0.0329249701446602,0.223684210526316,22.3684210526316,6,80.4392923076035,0.727017622628802,8.15789473684211,20.7122777546153,0
+9891,0.0317191808388452,0.2575,25.75,4,86.8233953098674,0.774319774319775,13.75,12.5836771992804,0
+9892,0.0340068152871314,0.239473684210526,23.9473684210526,4,87.821759780292,0.764620445127942,16.0526315789474,4.23602015107543,0
+9893,0.0491193168119552,0.352631578947368,35.2631578947368,4,90.8641532489471,0.816406770625083,22.1052631578947,17.8424968541558,0
+9894,0.0265808849591658,0.163157894736842,16.3157894736842,5,82.971572454282,0.75658047985092,11.8421052631579,6.42438151759486,0
+9895,0.0449410223258019,0.39,39,4,90.485905512397,0.714399954303993,21.5,5.47943946948418,0
+9896,0.0470229876460507,0.4,40,2,93.4058389921735,0.8805256869773,22.3684210526316,9.84019383003837,0
+9897,0.0373097109421858,0.347368421052632,34.7368421052632,2,95.0048491110041,0.777472895194753,32.6315789473684,11.6589679718018,0
+9898,0.0249992706483585,0.147368421052632,14.7368421052632,7,71.2473622169819,0.613083874252259,5.26315789473684,32.372805425099,0
+9899,0.0448317667172523,0.4625,46.25,4,92.2879751128698,0.711682306541548,23.75,18.381552064741,0
+9900,0.0213032397171143,0.219444444444444,21.9444444444444,2,89.010734396786,0.899339095068632,14.4444444444444,19.1603171915948,0
+9901,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9902,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9903,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9904,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9905,NA,NA,NA,NA,NA,NA,NA,NA,NA
+9906,0.0116480083993843,0.00694444444444444,0.694444444444445,1,0,NA,0.694444444444445,10.3911504745483,10.3911504745483
+9907,0.0291965314782079,0.257309941520468,25.7309941520468,2,90.7716228551171,0.86278148352475,20.7602339181287,23.313873832876,0
+9908,0.0410734414011009,0.333333333333333,33.3333333333333,4,87.405286768842,0.796116504854369,15.4970760233918,53.5379097252561,15.5867252349854
+9909,0.0342948562246904,0.286549707602339,28.6549707602339,4,86.4801737006122,0.800903502235469,13.4502923976608,9.26528375002803,0
+9910,0.0182397128018743,0.163888888888889,16.3888888888889,3,84.9186712323131,0.847566933750244,10,10.3585550502195,0
+9911,0.0324935920789464,0.216374269005848,21.6374269005848,5,83.002415585811,0.784041331802526,11.6959064327485,21.3050317248783,0
+9912,0.0237419390723198,0.172514619883041,17.2514619883041,4,80.2558920401089,0.75119517771773,9.06432748538012,23.0266898284524,0
+9913,0.0216046158428671,0.128654970760234,12.8654970760234,2,84.5233322514634,0.875929620896064,10.233918128655,27.6492714665153,11.6176595687866
+9914,0.0381801083382622,0.3,30,1,95.4058239418613,0.919413919413919,30,22.6570325383434,0
+9915,0.0293947075626941,0.245614035087719,24.5614035087719,2,90.2495519826537,0.866552208521929,17.8362573099415,34.3725494316646,14.6953058242798
+9916,0.0534539713011944,0.37719298245614,37.719298245614,2,95.8880791637201,0.904345220257717,37.4269005847953,14.630254024683,0
+9917,0.0385226382492199,0.257309941520468,25.7309941520468,5,86.6829640142124,0.828476854405938,20.1754385964912,32.6844679279761,0
+9918,0.0920659802433672,0.686111111111111,68.6111111111111,3,95.6942705081315,0.786231467647397,41.1111111111111,90.4027394283156,42.8438110351562
+9919,0.0253760532897418,0.210526315789474,21.0526315789474,4,87.9752335028562,0.800524934383202,18.1286549707602,76.1819841066996,52.9846801757812
+9920,0.0714094774492564,0.83625730994152,83.6257309941521,1,99.4653459653639,0.704859267126925,83.6257309941521,29.9026857372764,0
+9921,0.0221087107803049,0.0935672514619883,9.35672514619883,4,73.5277857498316,0.724193548387097,6.14035087719298,24.4763947427273,0
+9922,0.0178874623210302,0.172222222222222,17.2222222222222,4,81.9958671665536,0.720357941834452,11.3888888888889,27.5567061055091,0
+9923,0.0229567380615796,0.192982456140351,19.2982456140351,3,84.1842777374405,0.762948960302458,9.94152046783626,30.3999704375412,5.19557523727417
+9924,0.0298960444790591,0.216374269005848,21.6374269005848,9,73.4652565012549,0.548450057405281,5.55555555555556,11.3694702870137,0
+9925,0.0194819915899462,0.0672514619883041,6.72514619883041,6,54.3222282935406,0.493730407523511,1.75438596491228,7.73164222551429,0
+9926,0.0151340780564371,0.05,5,5,55.3469669667765,0.532163742690059,1.94444444444444,29.1549945672353,0
+9927,0.0363233366444004,0.277777777777778,27.7777777777778,6,84.0616525146524,0.780090497737557,11.6959064327485,32.1147656139575,0
+9928,0.0295468608153003,0.210526315789474,21.0526315789474,5,84.2840868397992,0.710761154855643,12.280701754386,14.8543200029267,0
+9929,0.0120799077600881,0.0818713450292398,8.18713450292398,4,70.0970807043519,0.588535031847134,4.3859649122807,12.9223207405635,0
+9930,0.0152938640240286,0.105555555555556,10.5555555555556,9,60.0884144164632,0.503105590062112,3.88888888888889,5.1943043407641,0
+9931,0.0281556715262444,0.266081871345029,26.6081871345029,4,90.0733456115311,0.781319167773351,22.2222222222222,22.6195774392767,0
+9932,0.0120486008841876,0.192982456140351,19.2982456140351,2,90.3534467942406,0.85992438563327,17.8362573099415,12.7809174349814,0
+9933,-0.00271512017483559,0.0701754385964912,7.01754385964912,2,78.0596532573456,0.858490566037736,6.14035087719298,25.8374716838201,10.3911504745483
+9934,-0.00714429933219978,0.0555555555555556,5.55555555555556,2,76.1581661054724,0.863377609108159,5,8.54488263130188,0
+9935,-0.00225183973750505,0.043859649122807,4.3859649122807,5,55.1498979124707,0.572143452877398,2.92397660818713,5.36138636271159,0
+9936,0.0154443539496981,0.0467836257309941,4.67836257309941,8,40.0106743809265,0.344325153374233,2.04678362573099,10.1104474067688,0
+9937,0.0343793093847211,0.213450292397661,21.3450292397661,4,85.0743017443476,0.761617100371747,11.4035087719298,5.90123644920245,0
+9938,0.0229055681191918,0.108333333333333,10.8333333333333,3,79.1504807715882,0.706685837526959,7.22222222222222,25.3792842473739,7.34765291213989
+9939,0.020457746374326,0.0497076023391813,4.97076023391813,4,57.6625624120015,0.4528,2.04678362573099,5.48638464422787,0
+9940,0.0364208137419033,0.251461988304094,25.1461988304094,5,84.8740288598925,0.729319852941177,12.8654970760234,22.2855846382851,0
+9941,0.0266114334877167,0.16374269005848,16.374269005848,4,81.6384819253655,0.815081825391104,9.06432748538012,10.3457475730351,0
+9942,0.0109843348871766,0.0701754385964912,7.01754385964912,2,77.4880701011948,0.80188679245283,5.84795321637427,26.1419096390406,10.3911504745483
+9943,0.0237033133234945,0.0888888888888889,8.88888888888889,5,67.4675251338743,0.662288930581614,3.88888888888889,22.0355857759714,5.19557523727417
+9944,0.0330936289681961,0.260233918128655,26.0233918128655,6,81.7703282050046,0.66843165038407,11.6959064327485,8.73057980483837,0
+9945,0.0182576182234368,0.184210526315789,18.4210526315789,4,84.1715602779839,0.665689149560117,12.8654970760234,12.3291098201086,0
+9946,3.42789827826843e-05,0.00292397660818713,0.292397660818713,1,0,NA,0.292397660818713,0,0
+9947,-0.010340854108391,0.00277777777777778,0.277777777777778,1,0,NA,0.277777777777778,0,0
+9948,0.0306722772253571,0.114035087719298,11.4035087719298,7,68.3760298775485,0.531150038080731,4.97076023391813,8.24449187058669,0
+9949,0.0130649605194159,0.0146198830409357,1.46198830409357,2,44.0485388573933,0.59406528189911,1.16959064327485,66.7314949035645,47.9008369445801
+9950,0.0189999477286205,0.0760233918128655,7.60233918128655,6,58.7250560651756,0.551250385921581,2.04678362573099,12.6985403391031,5.19557523727417
+9951,0.0219832764092037,0.111111111111111,11.1111111111111,5,76.7499753904656,0.697761194029851,5.83333333333333,15.0789857029915,0
+9952,-0.00747106033855605,0.0263157894736842,2.63157894736842,2,56.3541100214224,0.657657657657658,1.46198830409357,3.46371682484945,0
+9953,0.0350585142073081,0.295321637426901,29.5321637426901,5,84.8748180412421,0.647188280873891,10.8187134502924,8.29397189735186,0
+9954,0.00946069760049784,0.0584795321637427,5.84795321637427,6,51.9765470623323,0.486074934882789,2.33918128654971,30.7429587364197,5.19557523727417
+9955,0.0120206319703155,0.105555555555556,10.5555555555556,4,72.4920006183301,0.698314108251996,5,23.5950414005079,0
+9956,0.0119577673070641,0.0146198830409357,1.46198830409357,2,39.4712338774849,0.59406528189911,0.87719298245614,21.5408805847168,11.6176595687866
+9957,0.0239139639127255,0.0555555555555556,5.55555555555556,3,68.0588062869663,0.707910750507099,3.21637426900585,72.0627051905582,36.7382659912109
+9958,0.0209381394169963,0.0146198830409357,1.46198830409357,4,12.8255612819501,0.18813056379822,0.584795321637427,86.8874702453613,51.170482635498
+9959,0.0247872525834989,0.0277777777777778,2.77777777777778,4,44.856554450862,0.446153846153846,1.38888888888889,60.2985046386719,23.2353191375732
+9960,0.0235607091839781,0.175438596491228,17.5438596491228,6,80.5824532615834,0.743453355155483,9.64912280701754,58.6168611526489,18.7329120635986
+9961,0.0222642658971392,0.201754385964912,20.1754385964912,4,84.3062105182044,0.834347470711107,9.94152046783626,55.5285672173984,20.7823009490967
+9962,0.0199463444341373,0.160818713450292,16.0818713450292,4,83.3753606363,0.749128919860627,8.7719298245614,52.7074799971147,37.8243598937988
+9963,-0.00877507800385299,0.00555555555555556,0.555555555555556,1,30.9188904927171,1,0.555555555555556,15.1410155296326,14.6953058242798
+9964,0.0177562562762193,0.0350877192982456,3.50877192982456,5,45.9591396363326,0.390374331550802,1.75438596491228,9.4509361187617,0
+9965,0.018032597089411,0.0321637426900585,3.21637426900585,4,45.2901277188333,0.448942598187311,1.16959064327485,23.2228974429044,15.5867252349854
+9966,0.0308077637927725,0.169590643274854,16.9590643274854,2,88.962961204349,0.879577464788732,15.4970760233918,28.1467396801916,10.3911504745483
+9967,0.0218050773322425,0.0277777777777778,2.77777777777778,3,58.9743653882982,0.525274725274725,2.22222222222222,139.083763122559,99.2613220214844
+9968,0.0156873746320492,0.0087719298245614,0.877192982456141,1,44.6810474176022,1,0.877192982456141,77.9336293538411,72.7380523681641
+9969,0.0214715458944403,0.0614035087719298,6.14035087719298,2,77.3582655851545,0.866822429906542,5.55555555555556,69.7254213605608,62.3469009399414
+9970,0.0200136023701885,0.0204678362573099,2.04678362573099,3,40.6307136150415,0.48955223880597,1.16959064327485,19.8588792937142,5.19557523727417
+9971,0.0156339116775295,0.0166666666666667,1.66666666666667,2,49.4994455391406,0.709443099273608,1.38888888888889,6.06150436401367,0
+9972,0.0118848867201578,0.111111111111111,11.1111111111111,3,78.889937189231,0.821428571428572,6.72514619883041,31.6979371622989,15.5867252349854
+9973,0.0125722563210469,0.0818713450292398,8.18713450292398,4,70.7911769260107,0.612738853503185,3.80116959064328,22.1361984525408,10.3911504745483
+9974,0.0120503718106575,0.0233918128654971,2.33918128654971,3,50.7246329366872,0.488023952095808,1.75438596491228,33.0450821518898,7.34765291213989
+9975,0.0107329181771396,0,0,0,NA,NA,0,NA,NA
+9976,0.0228949354360546,0.0935672514619883,9.35672514619883,6,70.6106255687666,0.681761786600496,5.55555555555556,138.728776454926,125.126022338867
+9977,0.0281737062624091,0.248538011695906,24.8538011695906,2,93.4267894235022,0.911871569562192,24.5614035087719,51.5778025907629,36.369026184082
+9978,0.0297891568374729,0.154970760233918,15.4970760233918,3,82.0817580999572,0.817939845621507,7.89473684210526,6.43165456124072,0
+9979,0.0251267513982586,0.122222222222222,12.2222222222222,4,74.328049570684,0.722887444406432,4.44444444444444,39.9228906197981,15.5867252349854
+9980,0.0371140258918429,0.292397660818713,29.2397660818713,2,90.8764575673459,0.709504132231405,17.8362573099415,10.9458120679855,0
+9981,0.0228764691165606,0.0380116959064327,3.80116959064328,3,61.013843354169,0.768996960486322,2.92397660818713,125.334763746995,82.1492538452148
+9982,0.0240908109542794,0.0584795321637427,5.84795321637427,8,46.7257933510643,0.520336605890603,2.33918128654971,107.532706069946,63.206901550293
+9983,0.0251394761341443,0.122222222222222,12.2222222222222,7,71.2762716324906,0.67670201847417,6.11111111111111,116.281230579723,60.5902976989746
+9984,0.0215681055739629,0.210526315789474,21.0526315789474,6,82.266360027071,0.750656167979003,13.4502923976608,82.4375597635905,47.9008369445801
+9985,0.0212324554139587,0.10233918128655,10.233918128655,4,75.6758597211408,0.711894866898798,6.72514619883041,29.6202272142683,0
+9986,0.0300584354140722,0.166666666666667,16.6666666666667,2,86.2524857165187,0.86530612244898,9.64912280701754,15.4282469916762,0
+9987,0.0140774218551978,0.0333333333333333,3.33333333333333,2,67.6959263403027,0.574036511156187,2.77777777777778,12.1017262538274,7.34765291213989
+9988,0.0174970540434164,0.0497076023391813,4.97076023391813,3,64.7434624572858,0.705353846153846,2.92397660818713,0.305622072780834,0
+9989,-0.00675678512612776,0,0,0,NA,NA,0,NA,NA
+9990,0.024827212472202,0.178362573099415,17.8362573099415,3,85.8260337560299,0.839253340495535,10.8187134502924,16.3730073522349,0
+9991,0.0213865930231906,0.0861111111111111,8.61111111111111,2,78.7371593159095,0.846808510638298,5.27777777777778,8.16413002629434,0
+9992,0.0178087963079298,0.0409356725146199,4.09356725146199,3,64.6035566227814,0.530792682926829,2.92397660818713,24.3634025028774,15.5867252349854
+9993,0.024625453497507,0.0672514619883041,6.72514619883041,4,65.453534795373,0.58307210031348,3.21637426900585,25.8071266671886,5.19557523727417
+9994,0.0306206628606959,0.207602339181287,20.7602339181287,4,85.2199207549106,0.777889298892989,14.327485380117,10.7759862886348,0
+9995,0.0291683874652436,0.169444444444444,16.9444444444444,8,70.7977717609269,0.534296712311478,5.55555555555556,29.2063353960631,0
+9996,0.0175015807141327,0.0730994152046784,7.30994152046784,3,69.0778531697809,0.676340694006309,3.21637426900585,11.2642728424072,0
+9997,0.045866235924781,0.505847953216374,50.5847953216374,3,96.6798498396877,0.892155589768322,49.7076023391813,5.73303926886851,0
+9998,0.0413706699986378,0.339181286549708,33.9181286549708,3,94.16934106666,0.783817951959545,31.8713450292398,22.6480633225934,0
+9999,0.0195721318919014,0.122222222222222,12.2222222222222,6,73.8791645676109,0.599726308587068,6.38888888888889,26.941715944897,0
+10000,0.0203263453523044,0.0987654320987654,9.87654320987654,6,65.0810961403902,0.551896733403583,3.39506172839506,40.7271429598331,10.3911504745483
diff --git a/data/results/xian_flood_pattern_type_characteristics.csv b/data/results/xian_flood_pattern_type_characteristics.csv
new file mode 100644
index 00000000..63fc4981
--- /dev/null
+++ b/data/results/xian_flood_pattern_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,flood_share,np_flood,flood_cohesion,flood_clumpy,flood_lpi
+Type 1,7.405395744677287e-4,0.23709239130434784,0.4401488466749977,0.005945209599464743,0.054675764574718594
+Type 2,0.18717040143147806,4.965277777777778,77.93156528676494,0.6962741306762512,11.268386538626114
+Type 3,0.06920715533877334,2.292996910401648,64.40489637478437,0.750677114367105,5.416969055122403
+Type 4,0.544951996086576,2.2072072072072073,96.13680948642381,0.8048300710909942,49.217602528659775
diff --git a/data/results/xian_flood_pattern_type_cluster_centres_scaled.csv b/data/results/xian_flood_pattern_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..67c600df
--- /dev/null
+++ b/data/results/xian_flood_pattern_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,flood_share,np_flood,flood_cohesion,flood_clumpy,flood_lpi
+Type 1,-0.8487308401485142,-1.3398599752641605,-1.9666405391777912,-2.141652738225959,-0.7066263086083658
+Type 2,0.13511393080258755,1.071761329571237,0.4425870071389564,0.22650269803963258,-0.06476513086581935
+Type 3,-0.48741253398523643,-0.29124137559024216,0.022039482654797684,0.4131307207734913,-0.39969420056466953
+Type 4,2.0232317866960363,-0.33499860147041555,1.0085926091549144,0.5989010324902585,2.1074086446638707
diff --git a/data/results/xian_flood_pattern_type_elbow.csv b/data/results/xian_flood_pattern_type_elbow.csv
new file mode 100644
index 00000000..1e5ab39b
--- /dev/null
+++ b/data/results/xian_flood_pattern_type_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,29935.31231273808
+3,16996.793706761542
+4,12526.989218370523
+5,9076.934470578315
+6,7534.370757437511
+7,6434.975041061416
+8,5651.297139334939
diff --git a/data/results/xian_green_metrics_base.gpkg b/data/results/xian_green_metrics_base.gpkg
new file mode 100644
index 00000000..85e5ba75
Binary files /dev/null and b/data/results/xian_green_metrics_base.gpkg differ
diff --git a/data/results/xian_green_type_characteristics.csv b/data/results/xian_green_type_characteristics.csv
new file mode 100644
index 00000000..dff1bd88
--- /dev/null
+++ b/data/results/xian_green_type_characteristics.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,gyrate,contig,enn
+Type 1,17.627320257753727,0.057452242411396216,9.851559375807858,0.44914659822502234,29.76817233974176
+Type 2,0.4868054854806631,0.0035805657783105544,1.2639146875826344,0.07457111479524901,0.6281781802051972
+Type 3,33.054611957467955,0.1668753073771448,19.133371282583997,0.6517336102413108,10.77368373969457
+Type 4,76.03978745524665,0.7331655263433479,35.239103175116824,0.8764282929923592,0.8840135706453468
diff --git a/data/results/xian_green_type_cluster_centres_scaled.csv b/data/results/xian_green_type_cluster_centres_scaled.csv
new file mode 100644
index 00000000..c93e7aea
--- /dev/null
+++ b/data/results/xian_green_type_cluster_centres_scaled.csv
@@ -0,0 +1,5 @@
+type,green_percent,area,gyrate,contig,enn
+Type 1,-0.40240553661766054,-0.48901491564310307,-0.48403707214190606,-0.2550953627987335,0.9789800823508976
+Type 2,-1.079082187879441,-0.718602622997947,-1.272479374368518,-1.6558622473020446,-0.8028168449650069
+Type 3,0.20663615344221314,-0.02268098680831592,0.36813758276046155,0.5025014106593395,-0.18245877169309138
+Type 4,1.9036134610776443,2.390707294299364,1.846824789021284,1.3427722896814054,-0.7871735092083435
diff --git a/data/results/xian_green_type_elbow.csv b/data/results/xian_green_type_elbow.csv
new file mode 100644
index 00000000..21194c2a
--- /dev/null
+++ b/data/results/xian_green_type_elbow.csv
@@ -0,0 +1,8 @@
+k,within_cluster_ss
+2,27805.486905864855
+3,18679.281416593796
+4,13662.572317069455
+5,10164.859392977785
+6,8442.242732658582
+7,7184.796235717764
+8,6352.569063208153
diff --git a/data/results/xian_grid_metrics.csv b/data/results/xian_grid_metrics.csv
new file mode 100644
index 00000000..85ae3091
--- /dev/null
+++ b/data/results/xian_grid_metrics.csv
@@ -0,0 +1,10001 @@
+"id","left","top","right","bottom","row_index","col_index","green_percent","area","gyrate","contig","enn","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green","elevation_mean","elevation_min","slope_mean"
+1,303274,3800598,303374,3800498,0,0,17.7285318559557,0.0863808051354593,11.5819238203448,0.68482905982906,64.2657162255477,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.956499735514,383.695892333984,0.319362595270869
+2,303274,3800498,303374,3800398,1,0,21.3157894736842,0.0546628532497828,9.61624227926281,0.439439439439439,18.1845130908769,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.119418674045,383.962127685547,0.249073403772122
+3,303274,3800398,303374,3800298,2,0,35.1800554016621,0.114274606793785,14.3584766267146,0.734525621511923,26.0246957931215,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.308583577474,384.166320800781,0.215595500161912
+4,303274,3800298,303374,3800198,3,0,27.7008310249307,0.26994001604831,24.9174374975495,0.833333333333333,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.454454210069,384.293487548828,0.285784153078454
+5,303274,3800198,303374,3800098,4,0,2.21606648199446,0.0215952012838648,6.56613567725095,0.479166666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.543146769206,384.302001953125,0.329274811339552
+6,303274,3800098,303374,3799998,5,0,0,NA,NA,NA,NA,0.00619989868075783,0.0263157894736842,2.63157894736842,1,54.4135192072642,0.743243243243243,2.63157894736842,109.170440673828,104.041313171387,384.858425564236,384.511383056641,0.510839989627204
+7,303274,3799998,303374,3799898,6,0,0,NA,NA,NA,NA,0.011792434418801,0.0332409972299169,3.32409972299169,2,66.2503006056306,0.756615540198888,2.77008310249307,101.845731735229,92.5045852661133,385.561864217122,384.938110351562,0.661256324288136
+8,303274,3799898,303374,3799798,7,0,0,NA,NA,NA,NA,0.0058636441306507,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,118.477348327637,118.477348327637,386.03082953559,385.853698730469,0.299060147014456
+9,303274,3799798,303374,3799698,8,0,5.54016620498615,0.053988003209662,9.75441114324932,0.683333333333333,NA,0.0214491831687652,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.978898760813654,8.86426592797784,2.24520729482174,0,386.092084248861,386.010864257812,0.102071642432072
+10,303274,3799698,303374,3799598,9,0,0,NA,NA,NA,NA,0.00793712066906784,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,106.604286193848,106.604286193848,386.063069661458,385.891845703125,0.231721809833203
+11,303274,3799598,303374,3799498,10,0,0,NA,NA,NA,NA,0.00734691268169229,0,0,0,NA,NA,0,NA,NA,386.102584838867,385.883361816406,0.280796859805048
+12,303274,3799498,303374,3799398,11,0,0,NA,NA,NA,NA,0.00770644694213107,0.0304709141274238,3.04709141274238,3,54.4858695954154,0.656190476190476,1.93905817174515,129.469594782049,107.109527587891,386.167386372884,386.015808105469,0.224406706161766
+13,303274,3799398,303374,3799298,12,0,0,NA,NA,NA,NA,0.00287189962605566,0,0,0,NA,NA,0,NA,NA,386.216389973958,386.084808349609,0.214890584170641
+14,303274,3799298,303374,3799198,13,0,39.4736842105263,0.404910024072465,31.0493912680868,0.843333333333333,NA,0.0090026550652223,0.068421052631579,6.8421052631579,3,72.9971248228742,0.685820587019429,4.21052631578947,5.05394941109877,0,386.452733357747,386.188385009766,0.346195130610845
+15,303274,3799198,303374,3799098,14,0,91.4127423822715,0.890802052959424,35.9573701931513,0.927272727272727,NA,0.0371232921969651,0.224376731301939,22.4376731301939,6,87.4124517373894,0.749305555555556,18.8365650969529,0,0,387.049828423394,386.691925048828,0.543541760443977
+16,303274,3799098,303374,3798998,15,0,57.8947368421053,0.282087316770484,18.0683927589172,0.645996732026144,16.4298513045218,0.0321352374562052,0.213296398891967,21.3296398891967,5,83.7899361603726,0.756990472245236,14.6814404432133,1.35385186331613,0,387.659245808919,387.1845703125,0.369035992732665
+17,303274,3798998,303374,3798898,16,0,0,NA,NA,NA,NA,0.0223165435886447,0.243767313019391,24.3767313019391,2,92.3041090577956,0.797858192762651,22.4376731301939,43.7070605321364,15.5867252349854,388.111612955729,387.899597167969,0.334135465123441
+18,303274,3798898,303374,3798798,17,0,12.6315789473684,0.129571207703189,14.3376048602556,0.791666666666667,NA,-0.0488957803300429,0,0,0,NA,NA,0,NA,NA,388.525741577148,388.133056640625,0.50959251446128
+19,303274,3798798,303374,3798698,18,0,0,NA,NA,NA,NA,-0.0280688747221585,0.0637119113573407,6.37119113573407,2,77.9767086306785,0.79232412886259,5.54016620498615,42.6940749624501,25.977876663208,388.772566053602,388.463836669922,0.395158838246536
+20,303274,3798698,303374,3798598,19,0,0,NA,NA,NA,NA,-0.0131883308268217,0.0914127423822715,9.14127423822715,2,79.774877008713,0.816565040650407,5.26315789473684,43.4738540649414,36.369026184082,389.143933614095,388.715393066406,0.693441971055624
+21,303274,3798598,303374,3798498,20,0,0,NA,NA,NA,NA,-0.00815804846536989,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,44.4598064422607,37.8243598937988,391.080125596788,390.294586181641,1.40162658175786
+22,303274,3798498,303374,3798398,21,0,0,NA,NA,NA,NA,-0.0389826916792356,0,0,0,NA,NA,0,NA,NA,391.954048156738,391.501068115234,0.721343047727705
+23,303274,3798398,303374,3798298,22,0,0,NA,NA,NA,NA,-0.014865876202959,0,0,0,NA,NA,0,NA,NA,392.621856689453,391.89404296875,1.73419420098504
+24,303274,3798298,303374,3798198,23,0,4.15512465373961,0.0202455012036233,8.44623921392888,0.277777777777778,15.5867256623399,-0.000795986313180007,0,0,0,NA,NA,0,NA,NA,393.895772298177,392.154846191406,3.17709093763958
+25,303274,3798198,303374,3798098,24,0,11.0803324099723,0.053988003209662,10.0102716698311,0.637896825396825,23.2353185658643,0.0102489585160873,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.5646018981934,41.5646018981934,394.48531765408,392.481903076172,1.57379386178179
+26,303274,3798098,303374,3797998,25,0,34.4736842105263,0.176810710511643,17.8120049385999,0.716858237547893,15.5867256623399,0.0152055870842703,0.0342105263157895,3.42105263157895,2,71.239704032982,0.71238268240993,3.15789473684211,24.5731847469623,14.6953058242798,394.131762186686,392.966857910156,1.3512346360566
+27,303274,3797998,303374,3797898,26,0,10.803324099723,0.0526383031294205,10.3301023115995,0.490740740740741,25.9778758441098,0.0194477113880042,0.116343490304709,11.6343490304709,3,78.4496667254934,0.665283235462934,6.09418282548476,26.3744256382897,0,393.920000712077,393.163208007812,1.13893311589983
+28,303274,3797898,303374,3797798,27,0,44.3213296398892,0.431904025677296,29.5963911118617,0.810416666666667,NA,0.0690448430914708,0.67590027700831,67.590027700831,1,98.7980535590972,0.993233618233618,67.590027700831,13.7097904213139,0,394.978186713325,394.111236572266,0.873644348233225
+29,303274,3797798,303374,3797698,28,0,27.4238227146814,0.267240615887827,24.137242455336,0.835016835016835,NA,0.0718951739424113,0.598337950138504,59.8337950138504,1,98.3734097048024,0.919488763081146,59.8337950138504,27.6171795262231,0,395.336514790853,394.453796386719,0.615999362333043
+30,303274,3797698,303374,3797598,29,0,6.05263157894737,0.0620862036911113,9.6770843511213,0.731884057971015,NA,0.0111715070217925,0.115789473684211,11.5789473684211,3,83.1978406384162,0.831885456885457,10,41.6462894786488,23.2353191375732,394.687822129991,394.251708984375,0.805548152901836
+31,303274,3797598,303374,3797498,30,0,54.2936288088643,0.529082431454688,33.5808069685988,0.820578231292517,NA,0.0152469136250893,0.0443213296398892,4.43213296398892,2,71.5809969180075,0.869202898550725,3.8781163434903,33.2635025978088,5.19557523727417,395.257123311361,394.258483886719,1.05104021062094
+32,303274,3797498,303374,3797398,31,0,69.2520775623269,0.337425020060388,18.2759882819125,0.43574297188755,11.6176592829322,0.0126876176873137,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.968679507201111,6.09418282548476,0,0,396.276716444227,396.016815185547,0.726808415435466
+33,303274,3797398,303374,3797298,32,0,73.6842105263158,0.718040442688505,34.4767241835737,0.880952380952381,NA,0.00988905756423562,0.0858725761772853,8.58725761772853,1,86.597218119396,0.978121212121212,8.58725761772853,12.7105938849911,0,396.101908365885,395.707092285156,0.974128510820851
+34,303274,3797298,303374,3797198,33,0,73.9473684210526,0.758531445095752,36.0627823194466,0.870106761565836,NA,0.0187157520544325,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.924896238223862,7.10526315789474,9.76278241475423,0,396.185228135851,395.933532714844,0.552823845197591
+35,303274,3797198,303374,3797098,34,0,62.8808864265928,0.204254612143221,12.6291758153544,0.280987654320988,13.8548671861359,-0.000435813833485194,0,0,0,NA,NA,0,NA,NA,396.466883341471,395.265319824219,1.45814058248506
+36,303274,3797098,303374,3796998,35,0,12.1883656509695,0.0593868035306282,12.2434241986796,0.645833333333333,18.7329127343573,0.00241978779223717,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,62.3469009399414,62.3469009399414,394.379730224609,394.003082275391,1.0826688302166
+37,303274,3796998,303374,3796898,36,0,38.781163434903,0.377916022467634,27.9415117435973,0.842857142857143,NA,0.00523649054016548,0.0249307479224377,2.49307479224377,2,58.3321631610904,0.743607954545455,1.93905817174515,42.7191751268175,0,393.275978088379,391.711944580078,1.44121038087372
+38,303274,3796898,303374,3796798,37,0,97.3684210526316,0.998778059378748,38.4191516355791,0.92027027027027,NA,0.0107240174174589,0.0210526315789474,2.10526315789474,2,58.2306946168411,0.795698924731183,1.84210526315789,0.649446904659271,0,390.772650824653,390.637054443359,0.715688593184878
+39,303274,3796798,303374,3796698,38,0,89.4736842105263,0.871906251836042,36.1265475447903,0.920536635706914,NA,0.0208252868047954,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,390.9533106486,390.775787353516,0.157691364208456
+40,303274,3796698,303374,3796598,39,0,28.5318559556787,0.0926794055099198,12.0930337401665,0.336139169472503,17.7388032424607,0.0109763908886204,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,4.83608111739159,0,391.210868835449,391.028167724609,0.20723554259154
+41,303274,3796598,303374,3796498,40,0,58.1717451523546,0.188958011233817,14.5787899618751,0.371959646213378,22.5141590648952,-0.00141293833246216,0,0,0,NA,NA,0,NA,NA,391.675886366102,391.462615966797,0.319239221855388
+42,303274,3796498,303374,3796398,41,0,45.4293628808864,0.0442701626319229,10.2167957004071,0.361435548578406,10.9107078649177,0.0109747527054131,0.0221606648199446,2.21606648199446,2,54.34634595652,0.795467422096317,1.66204986149584,3.24723452329636,0,392.074562072754,391.902221679688,0.173684334235565
+43,303274,3796398,303374,3796298,42,0,26.5789473684211,0.136319708104397,20.9048430798859,0.587438725490196,10.3911504415599,0.00876247977082944,0,0,0,NA,NA,0,NA,NA,392.259375678168,392.206939697266,0.0710065170541063
+44,303274,3796298,303374,3796198,43,0,0,NA,NA,NA,NA,0.0247699066044774,0,0,0,NA,NA,0,NA,NA,392.322868347168,392.285095214844,0.0480422668199845
+45,303274,3796198,303374,3796098,44,0,25.207756232687,0.0409409024339937,8.7843165415556,0.461461131461131,14.0537323306974,0.00699158599081406,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,18.7329120635986,18.7329120635986,392.381639268663,392.344757080078,0.0490006761685616
+46,303274,3796098,303374,3795998,45,0,61.4958448753463,0.299633417813624,23.3158199681839,0.824188739823415,15.5867255064659,0.00674986032180114,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,8.00347248713175,5.19557523727417,392.463386535645,392.401092529297,0.0784534438781344
+47,303274,3795998,303374,3795898,46,0,41.8421052631579,0.143068208505604,13.5572496780457,0.545634920634921,21.59997330548,-0.00713008041562525,0.0973684210526316,9.73684210526316,2,81.3505233499693,0.872867179658749,6.31578947368421,12.5948705157718,0,392.551289876302,392.522918701172,0.0517710698234782
+48,303274,3795898,303374,3795798,47,0,6.09418282548476,0.0593868035306282,12.8331802699131,0.522727272727273,NA,0.0299704901042792,0.25207756232687,25.207756232687,4,84.9259083017455,0.801920438957476,9.14127423822715,29.0381328404605,5.19557523727417,392.633649190267,392.538269042969,0.129584355124101
+49,303274,3795798,303374,3795698,48,0,36.8421052631579,0.119673407114751,14.1370956384061,0.69339472563913,10.3911503722826,0.0350872851348946,0.243767313019391,24.3767313019391,2,89.8454589385259,0.898929096381326,16.0664819944598,3.53383167765357,0,393.145111083984,392.797149658203,0.695952154728244
+50,303274,3795698,303374,3795598,49,0,41.5512465373961,0.202455012036233,25.9824118136569,0.785559328428598,57.1513274285795,0.0476768689990009,0.32409972299169,32.409972299169,3,89.803766898172,0.804593257036808,21.0526315789474,1.27226233686137,0,395.056648254395,393.903259277344,1.07925790992351
+51,303274,3795598,303374,3795498,50,0,13.4210526315789,0.0458898027282127,8.93976724743264,0.480531813865147,30.0036766792077,-0.00359956619366513,0.0447368421052632,4.47368421052632,3,70.1420782906299,0.832506887052342,3.94736842105263,7.1679212065304,0,396.328430175781,395.688140869141,0.801662492879936
+52,303274,3795498,303374,3795398,51,0,14.404432132964,0.140368808345121,17.0251009325924,0.740384615384615,NA,-0.0375288282845565,0.0831024930747922,8.31024930747922,2,82.8324088785172,0.844195079844627,7.75623268698061,38.2463523228963,22.0429573059082,396.976610819499,396.584106445312,0.336376392286388
+53,303274,3795398,303374,3795298,52,0,28.2548476454294,0.275338816369276,21.1243243080386,0.852941176470588,NA,-0.0131377187582753,0,0,0,NA,NA,0,NA,NA,396.964847140842,396.653442382812,0.429074130608029
+54,303274,3795298,303374,3795198,53,0,18.2825484764543,0.0356320821183769,8.6177793745424,0.401432360742706,15.5867255480323,-0.0459503263709622,0,0,0,NA,NA,0,NA,NA,397.079396565755,396.587371826172,0.633932130796097
+55,303274,3795198,303374,3795098,54,0,15.7894736842105,0.161964009628986,17.2832377554307,0.730555555555556,NA,-0.0019003067571918,0.0736842105263158,7.36842105263158,2,79.6024325441793,0.832070707070707,6.05263157894737,41.0703278950282,31.6034507751465,397.026117960612,396.449645996094,0.870678261452186
+56,303274,3795098,303374,3794998,55,0,33.7950138504155,0.109775606526313,16.4886521423112,0.569670455034655,12.6435414584993,-0.0217812641927604,0,0,0,NA,NA,0,NA,NA,396.53082953559,396.38720703125,0.602106670218036
+57,303274,3794998,303374,3794898,56,0,30.4709141274238,0.0494890029421902,8.35507250831158,0.352810064111434,13.8387691505997,-0.0573894554537947,0,0,0,NA,NA,0,NA,NA,396.49989827474,396.379241943359,0.187359848443065
+58,303274,3794898,303374,3794798,57,0,34.6260387811634,0.0337425020060388,8.01669092759836,0.415862193362193,14.287038673926,-0.072331629556502,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,11.1643578211466,5.19557523727417,397.013919406467,396.743957519531,0.514142712383793
+59,303274,3794798,303374,3794698,58,0,20,0.0293077731709594,7.12314724637184,0.466134279798876,19.2150225889037,-0.105720487738462,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,15.5867252349854,15.5867252349854,397.618436177572,397.253112792969,0.534336439945046
+60,303274,3794698,303374,3794598,59,0,8.03324099722992,0.0195706511635025,5.783027024397,0.425189393939394,30.223735376753,-0.0287566914412511,0,0,0,NA,NA,0,NA,NA,397.220957438151,396.703216552734,0.736794146067916
+61,303274,3794598,303374,3794498,60,0,35.7340720221607,0.34822262070232,27.4519552751013,0.843669250645995,NA,-0.0166530351578084,0,0,0,NA,NA,0,NA,NA,396.775835673014,396.558929443359,0.365740058776074
+62,303274,3794498,303374,3794398,61,0,15.2354570637119,0.0371167522066427,6.62580245227602,0.418981481481481,22.8556825174113,0.00691973756879621,0,0,0,NA,NA,0,NA,NA,397.165317111545,396.904754638672,0.376765139329101
+63,303274,3794398,303374,3794298,62,0,22.3684210526316,0.0458898027282127,8.13953466482539,0.575605038236617,21.0016605615011,0.0382014569789566,0.231578947368421,23.1578947368421,4,88.1609834726634,0.867376319692872,14.7368421052632,13.8475572629408,0,397.490715026855,397.310394287109,0.213454503149176
+64,303274,3794298,303374,3794198,63,0,13.8504155124654,0.0168712510030194,4.87532305960042,0.1875,20.1328537791851,0.011706151282025,0.0443213296398892,4.43213296398892,2,73.6199431581337,0.651207729468599,3.8781163434903,14.4130092859268,0,397.580844455295,397.450103759766,0.290343707713361
+65,303274,3794198,303374,3794098,64,0,10.2493074792244,0.0499389029689374,10.0687109904528,0.515079365079365,62.778373731644,0.0152194150239402,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,30.6804415384928,26.4923400878906,398.655604044596,397.699005126953,1.0275058884097
+66,303274,3794098,303374,3793998,65,0,19.3905817174515,0.0944790056169086,13.5180790687174,0.740816885964912,15.5867256623399,0.0118664817214531,0,0,0,NA,NA,0,NA,NA,399.292785644531,398.580413818359,1.03471942812357
+67,303274,3793998,303374,3793898,66,0,41.3157894736842,0.105951456298962,15.2147861737063,0.722327441077441,18.3444142788856,0.00186721984500764,0.0236842105263158,2.36842105263158,2,55.9348798176734,0.743935309973046,1.57894736842105,17.7618408203125,15.5867252349854,399.975982666016,399.590179443359,0.481543265394299
+68,303274,3793898,303374,3793798,67,0,56.786703601108,0.138344258224759,13.9107180896574,0.628676470588235,11.6900441688179,0.003428694448973,0.0332409972299169,3.32409972299169,2,63.7874511601681,0.756615540198888,2.21606648199446,15.6317644913991,10.3911504745483,400.375261094835,400.159454345703,0.389482074122538
+69,303274,3793798,303374,3793698,68,0,29.0858725761773,0.0404910024072465,8.24125685348747,0.463270030234316,14.1576739724319,0.0185506412554507,0.0277008310249307,2.77008310249307,1,72.175958031556,0.920885382423844,2.77008310249307,7.82687177658081,5.19557523727417,401.15901184082,400.739532470703,0.608018728534104
+70,303274,3793698,303374,3793598,69,0,42.6592797783933,0.103926906178599,22.3353143624758,0.653617982675329,15.5867255064659,0.0147391935714146,0,0,0,NA,NA,0,NA,NA,402.429438273112,401.922485351562,0.46165473247275
+71,303274,3793598,303374,3793498,70,0,42.1052631578947,0.143968008559099,16.6383995634049,0.704100529100529,14.6725397470507,0.0182215910508316,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,3.46371682484945,0,402.876349555122,402.7353515625,0.133816889699258
+72,303274,3793498,303374,3793398,71,0,10.803324099723,0.0350922020862803,7.41732987288636,0.390151515151515,44.3399825142362,0.0361687857212648,0.254847645429363,25.4847645429363,4,84.8614471526277,0.770876779399764,9.97229916897507,19.4567053214363,0,402.794654846191,402.620758056641,0.181502531613964
+73,303274,3793398,303374,3793298,72,0,41.2742382271468,0.201105311955991,19.3772432562822,0.605274822695036,11.6176593526411,0.0585004309379903,0.429362880886427,42.9362880886427,3,92.242825334027,0.827831715210356,20.7756232686981,7.06324754222747,0,402.256958007812,401.804779052734,0.557296677215081
+74,303274,3793298,303374,3793198,73,0,2.21606648199446,0.0107976006419324,3.84747475390466,0.305555555555556,46.7601765193976,0.00696584997678147,0.119113573407202,11.9113573407202,1,89.4584842426695,0.842330538085255,11.9113573407202,19.6871200716773,0,401.550206502279,401.269134521484,0.341998891373541
+75,303274,3793198,303374,3793098,74,0,21.0526315789474,0.107976006419324,23.6750153853201,0.657029122145401,10.3911503376439,0.00800900873707992,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.19557523727417,0,401.31261867947,401.1591796875,0.241700648881622
+76,303274,3793098,303374,3792998,75,0,3.32409972299169,0.0161964009628986,4.73471403420302,0.478571428571429,20.7823006752878,0.0251969937178683,0.160664819944598,16.0664819944598,2,90.4335975692693,0.916600660066007,15.7894736842105,40.9466605350889,15.5867252349854,401.029187520345,400.438415527344,0.539782708808336
+77,303274,3792998,303374,3792898,76,0,7.75623268698061,0.0377916022467634,6.01577025434249,0.339506172839506,23.2353185658643,0.0400829632237768,0.28808864265928,28.808864265928,3,89.7550768575192,0.879814394806384,14.404432132964,27.6386350347446,0,400.208167182075,399.973449707031,0.38143107672427
+78,303274,3792898,303374,3792798,77,0,16.6204986149584,0.0809820048144931,14.5631180050536,0.476190476190476,55.2297218651029,0.0273003501258655,0.163434903047091,16.3434903047091,4,82.4710312835728,0.789053369692248,7.75623268698061,26.2254168461945,0,399.864227294922,399.751403808594,0.143861272035872
+79,303274,3792798,303374,3792698,78,0,34.2105263157895,0.0877305052157008,11.1686757155069,0.519764957264957,34.873814747663,0.0582371267182201,0.423684210526316,42.3684210526316,3,93.3823451577093,0.753794890781192,29.7368421052632,9.84745656777613,0,399.756815592448,399.729858398438,0.047153751853627
+80,303274,3792698,303374,3792598,79,0,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.0140418170446343,0.0914127423822715,9.14127423822715,3,80.5043956054117,0.755420054200542,7.75623268698061,19.957454291257,5.19557523727417,399.767344156901,399.738830566406,0.0313959826943065
+81,303274,3792598,303374,3792498,80,0,2.77008310249307,0.0134970008024155,5.82619781595592,0.291666666666667,99.9388845742108,0.00894625921129995,0.0415512465373961,4.15512465373961,2,73.0085666444357,0.8577246452969,3.8781163434903,21.5669164657593,10.3911504745483,399.785647922092,399.765838623047,0.0313686238417295
+82,303274,3792498,303374,3792398,81,0,1.10803324099723,0.0107976006419324,5.19557516882196,0.25,NA,0.0250848706313757,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.943620178041543,6.64819944598338,15.6035781900088,5.19557523727417,399.711725870768,399.652496337891,0.05458856728854
+83,303274,3792398,303374,3792298,82,0,15.2631578947368,0.0782826046540099,13.1626735465592,0.690905190905191,18.7329127343573,0.0201471930008617,0.0973684210526316,9.73684210526316,4,75.6541369821688,0.709410696362854,4.73684210526316,21.6007501885698,0,399.624179416233,399.582824707031,0.0489252809861544
+84,303274,3792298,303374,3792198,83,0,12.1883656509695,0.0395912023537522,10.130881904056,0.502314814814815,14.0680687008703,0.0293395038571964,0.202216066481994,20.2216066481994,4,82.8185987596269,0.716010199652778,8.86426592797784,37.8311283163828,0,399.638287862142,399.530548095703,0.123978327852669
+85,303274,3792198,303374,3792098,84,0,19.1135734072022,0.0232823263841668,6.83020787363104,0.35734126984127,18.5013173315903,0.0298692347547794,0.110803324099723,11.0803324099723,4,79.2959101507987,0.78179197470591,8.86426592797784,26.5830476284027,0,400.162371317546,399.3017578125,0.702187401233982
+86,303274,3792098,303374,3791998,85,0,47.3684210526316,0.230798713721305,23.5423928176041,0.616628469569646,15.5867255064659,0.0299854338234158,0.146814404432133,14.6814404432133,5,79.3959114169091,0.678000570857714,9.14127423822715,2.67058847535331,0,401.701917860243,400.892486572266,1.1834423435101
+87,303274,3791998,303374,3791898,86,0,36.8421052631579,0.188958011233817,28.264034730095,0.647686406137617,10.3911504415599,0.0270320721002032,0.115789473684211,11.5789473684211,4,78.3418885238263,0.694337194337194,7.10526315789474,23.1854079311544,0,401.657173156738,401.107696533203,0.832232742749919
+88,303274,3791898,303374,3791798,87,0,23.5457063711911,0.0573622534102659,11.4160493150067,0.396128841607565,15.5143407333716,0.0329671683410977,0.204986149584488,20.4986149584488,3,90.0737324738763,0.874216027874564,19.1135734072022,4.63367705087404,0,400.862796359592,400.684722900391,0.300549408776324
+89,303274,3791798,303374,3791698,88,0,22.7146814404432,0.0737836043865381,18.30811901101,0.464413065183283,10.3911504415599,0.0282988302293697,0.157894736842105,15.7894736842105,6,75.4771818672285,0.684948979591837,6.09418282548476,21.3364418180365,0,400.607485453288,400.531494140625,0.124791391806254
+90,303274,3791698,303374,3791598,89,0,42.9362880886427,0.20920351243744,23.3140545465438,0.786295247612703,10.3911504415599,0.051734399091147,0.398891966759003,39.8891966759003,4,88.4705734055519,0.7164327607876,17.7285318559557,4.96414824989107,0,400.780673556858,400.594543457031,0.261544183587041
+91,303274,3791598,303374,3791498,90,0,8.68421052631579,0.0222700513239856,6.47963406832011,0.355917874396135,29.1258422227479,0.0214172161236332,0.0789473684210526,7.89473684210526,5,67.6094957264676,0.62332361516035,3.42105263157895,11.7129981517792,0,401.443868001302,400.954071044922,0.590386150408514
+92,303274,3791498,303374,3791398,91,0,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.00937078831104216,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,21.0029547864741,0,402.588551839193,402.249755859375,0.542962462858432
+93,303274,3791398,303374,3791298,92,0,0,NA,NA,NA,NA,0.00941471098177264,0,0,0,NA,NA,0,NA,NA,403.128718058268,402.932922363281,0.271450064151228
+94,303274,3791298,303374,3791198,93,0,9.69529085872576,0.0944790056169086,11.7113057026857,0.776190476190476,NA,0.0265231767958146,0.152354570637119,15.2354570637119,3,82.0398859627863,0.826143790849673,9.14127423822715,13.0683124975725,0,403.222429063585,403.090850830078,0.253466677765376
+95,303274,3791198,303374,3791098,94,0,26.5789473684211,0.0908798054029311,13.7792408804819,0.574345466155811,17.3185838960732,0.0267061128707658,0.136842105263158,13.6842105263158,1,90.7899197045923,0.843792819950671,13.6842105263158,2.03968427731441,0,403.461466471354,403.209716796875,0.312705714620125
+96,303274,3791098,303374,3790998,95,0,93.6288088642659,0.912397254243288,36.7255826820328,0.925542406311637,NA,0.0808421075155939,0.401662049861496,40.1662049861496,2,94.5840976583191,0.918011879804333,36.2880886426593,0,0,403.634813096788,403.480834960938,0.203141236423394
+97,303274,3790998,303374,3790898,96,0,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.152856702076667,0.952908587257618,95.2908587257618,1,99.864381414263,1,95.2908587257618,0,0,403.341776529948,402.723815917969,0.722917192292264
+98,303274,3790898,303374,3790798,97,0,33.5180055401662,0.0816568548546138,9.89894610266795,0.383249184006528,21.0565005619755,0.105614051072042,0.833795013850416,83.3795013850416,1,99.4714344797886,0.692269253380364,83.3795013850416,8.55988428996647,0,402.496083577474,402.417785644531,0.188783437819035
+99,303274,3790798,303374,3790698,98,0,13.6842105263158,0.0467896027817071,10.7758857430301,0.409145299145299,14.6725397935234,0.0399241903940779,0.273684210526316,27.3684210526316,6,83.0976682590037,0.661319073083779,9.21052631578947,18.4754400024047,0,402.327033996582,402.283660888672,0.0772798799477491
+100,303274,3790698,303374,3790598,99,0,32.6869806094183,0.0530882031561677,11.5567667501424,0.570063758934373,14.8171987042777,0.00401088880589243,0.0730994152046784,7.30994152046784,3,69.2952713609886,0.676340694006309,3.21637426900585,8.14208457946777,0,402.277104695638,402.231506347656,0.0379507303500383
+101,303374,3800598,303474,3800498,0,1,13.4210526315789,0.0458898027281965,9.48279246140234,0.541968599033816,18.3008871078296,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.694887161255,383.543701171875,0.143325463315076
+102,303374,3800498,303474,3800398,1,1,29,0.10437680620531,15.8622238705636,0.510818713450292,29.4415926233244,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.821517944336,383.754577636719,0.128376877421738
+103,303374,3800398,303474,3800298,2,1,55,0.188058211180256,13.1851192734648,0.506535947712418,17.1975384477992,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.919204711914,383.738586425781,0.227622092155817
+104,303374,3800298,303474,3800198,3,1,67.1052631578947,0.688347040922948,32.6449015745953,0.913725490196078,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.982846577962,383.783874511719,0.231012277195998
+105,303374,3800198,303474,3800098,4,1,22.6315789473684,0.0386914023002441,4.9787905377631,0.23202614379085,22.7766117730518,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.188278198242,383.958679199219,0.204815796507601
+106,303374,3800098,303474,3799998,5,1,3.25,0.0350922020862679,9.88340318785692,0.525641025641026,NA,-0.00869518232630071,0,0,0,NA,NA,0,NA,NA,384.464584350586,384.325927734375,0.237656033983091
+107,303374,3799998,303474,3799898,6,1,23.1578947368421,0.237547214122429,27.7038934853299,0.738636363636364,NA,0.000881409062936942,0.0368421052631579,3.68421052631579,2,72.1693261347176,0.792349726775956,3.42105263157895,1.48445006779262,0,384.998538970947,384.63525390625,0.41319363460995
+108,303374,3799898,303474,3799798,7,1,27.1052631578947,0.139019108264831,16.3013397245364,0.750103648424544,26.4923394248973,0.00508126120516384,0.0368421052631579,3.68421052631579,4,50.7687705165695,0.532786885245902,1.57894736842105,11.6160306249346,5.19557523727417,385.643572489421,385.364715576172,0.491111200549258
+109,303374,3799798,303474,3799698,8,1,0,NA,NA,NA,NA,0.0123534426141161,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,16.7141089439392,14.6953058242798,386.276384353638,386.000762939453,0.344080832252834
+110,303374,3799698,303474,3799598,9,1,0,NA,NA,NA,NA,0.0114820064268133,0.01,1,1,52.6315789473684,0.747474747474748,1,100.001941680908,92.941276550293,386.456723531087,386.283233642578,0.256165391758994
+111,303374,3799598,303474,3799498,10,1,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.00907407141456037,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,24.437123298645,22.0429573059082,386.482269287109,386.312377929688,0.173817318231737
+112,303374,3799498,303474,3799398,11,1,0,NA,NA,NA,NA,0.0167238917922839,0.144736842105263,14.4736842105263,2,85.3822298824625,0.778461538461538,8.15789473684211,76.8398139260032,37.8243598937988,386.460872650146,386.370666503906,0.107763075507841
+113,303374,3799398,303474,3799298,12,1,13.4210526315789,0.13766940818459,20.9681677022951,0.754901960784314,NA,0.000506432693816207,0.0236842105263158,2.36842105263158,3,55.1455442633031,0.487870619946092,1.84210526315789,11.6167899237739,0,386.464299519857,386.387115478516,0.101355159668425
+114,303374,3799298,303474,3799198,13,1,89.25,0.963685857292127,38.295998378706,0.924836601307189,NA,0.0307679688598,0.285,28.5,2,92.3811601475103,0.775952203136669,23.25,0,0,386.721719741821,386.499237060547,0.27368584392466
+115,303374,3799198,303474,3799098,14,1,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0296856719321927,0.139473684210526,13.9473684210526,3,84.6803166311991,0.693517491682629,9.73684210526316,0,0,387.322909037272,387.007354736328,0.436900273018378
+116,303374,3799098,303474,3798998,15,1,86.3157894736842,0.885403252638144,37.3265236300239,0.909044715447154,NA,-0.00350126351477229,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,0,0,387.625015258789,387.357849121094,0.256609230395578
+117,303374,3798998,303474,3798898,16,1,58.6842105263158,0.601966235787519,32.4812966714654,0.87593423019432,NA,0.0331706404395702,0.173684210526316,17.3684210526316,3,84.4108150351601,0.789531985599557,10,11.2411705652873,0,387.749392191569,387.581787109375,0.188384638964788
+118,303374,3798898,303474,3798798,17,1,76.25,0.823317048947055,35.6625045895729,0.910382513661202,NA,0.0116298972448567,0.0425,4.25,4,57.8063683931704,0.5822454308094,2,0.916866190293256,0,387.957559585571,387.727752685547,0.257506129056474
+119,303374,3798798,303474,3798698,18,1,65,0.66675183963909,32.0915525167818,0.91497975708502,NA,0.0378943473492774,0.413157894736842,41.3157894736842,2,94.4819777423544,0.881664175386148,34.2105263157895,8.80597110614655,0,388.281074523926,388.0498046875,0.284128815148994
+120,303374,3798698,303474,3798598,19,1,63.1578947368421,0.647856038515715,31.429965747725,0.911805555555556,NA,0.0653165165533306,0.778947368421053,77.8947368421053,1,99.2806056729252,0.967513037530991,77.8947368421053,8.84748484154005,0,388.775260925293,388.349090576172,0.622882965297565
+121,303374,3798598,303474,3798498,20,1,50.2631578947368,0.257792715326045,18.2792175627597,0.514550264550265,18.7329128064055,0.0317765557155852,0.165789473684211,16.5789473684211,4,84.5295764853319,0.771149985661027,12.8947368421053,5.51012930794368,0,390.976819356283,389.628448486328,1.8084247711346
+122,303374,3798498,303474,3798398,21,1,71.25,0.769329045737412,34.5349515831422,0.91812865497076,NA,-0.0102195744723758,0.02,2,2,58.1510768543717,0.795918367346939,1.75,0,0,392.945808410645,392.394500732422,1.16583300212659
+123,303374,3798398,303474,3798298,22,1,54.2105263157895,0.278038216529661,17.0217707002042,0.426829268292683,27.979028590554,-0.0331447033903954,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,0,0,395.325775146484,392.804962158203,2.06602916297771
+124,303374,3798298,303474,3798198,23,1,60.7894736842105,0.623561437071376,32.1325221945251,0.902597402597403,NA,0.00181522531222168,0.0578947368421053,5.78947368421053,1,82.9343718737514,0.968780808412751,5.78947368421053,7.79336276921359,0,396.468458175659,396.124145507812,0.664067188263051
+125,303374,3798198,303474,3798098,24,1,51.5789473684211,0.26454121572725,22.8127500251484,0.680196253345227,34.8529778487941,-0.01334226415353,0,0,0,NA,NA,0,NA,NA,395.853856404622,395.595611572266,0.441803449713826
+126,303374,3798098,303474,3797998,25,1,69.25,0.747733844453555,33.9895794789255,0.916967509025271,NA,-0.0376791556835087,0,0,0,NA,NA,0,NA,NA,395.335529327393,394.869354248047,0.466372279146806
+127,303374,3797998,303474,3797898,26,1,33.9473684210526,0.348222620702197,24.3252521035974,0.870801033591731,NA,-0.0204608127177619,0.0210526315789474,2.10526315789474,2,59.9064455234177,0.591397849462366,1.84210526315789,43.2089012861252,10.3911504745483,395.352722167969,394.836242675781,0.578171248162167
+128,303374,3797898,303474,3797798,27,1,0,NA,NA,NA,NA,0.0404534136144273,0.484210526315789,48.4210526315789,1,97.6365516083771,0.903061224489796,48.4210526315789,52.6790917334349,15.5867252349854,395.67857615153,395.421844482422,0.242253115124024
+129,303374,3797798,303474,3797698,28,1,0,NA,NA,NA,NA,0.0115535677445127,0.131578947368421,13.1578947368421,2,84.9006552318258,0.810338680926916,10,72.0183020782471,34.8529777526855,395.831798553467,395.677124023438,0.226762334890388
+130,303374,3797698,303474,3797598,29,1,7.25,0.0782826046539823,15.1552376431639,0.586206896551724,NA,-0.00874754026684968,0,0,0,NA,NA,0,NA,NA,395.583557128906,395.200958251953,0.381203170816657
+131,303374,3797598,303474,3797498,30,1,14.2105263157895,0.0242946014443393,6.44598560937995,0.371428571428571,16.4526547272476,0.00702085623226211,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,44.4680004119873,41.8880653381348,396.039709091187,395.143951416016,0.955405631791209
+132,303374,3797498,303474,3797398,31,1,8.94736842105263,0.091779605456393,22.9757113930833,0.602941176470588,NA,-0.0171709603760208,0,0,0,NA,NA,0,NA,NA,397.213300069173,396.653289794922,0.684270396007117
+133,303374,3797398,303474,3797298,32,1,36.3157894736842,0.124172407382179,13.8787948651125,0.602981795354677,11.8258688975811,-0.0217401840329618,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707,397.792261123657,396.825927734375,0.794783695962253
+134,303374,3797298,303474,3797198,33,1,99.75,1.07706066403238,39.6434395711841,0.934419381787803,NA,-0.0372323717231666,0,0,0,NA,NA,0,NA,NA,397.278432210286,396.568115234375,0.930526362706264
+135,303374,3797198,303474,3797098,34,1,90.5263157894737,0.928593655205859,37.3423633447252,0.913759689922481,NA,-0.0262058689352431,0,0,0,NA,NA,0,NA,NA,395.857973098755,395.119781494141,1.05375157998645
+136,303374,3797098,303474,3796998,35,1,22.8947368421053,0.0782826046539823,13.9371107377252,0.536929786929787,53.1640963661311,-0.00631868432542672,0,0,0,NA,NA,0,NA,NA,394.866526285807,394.345306396484,0.604624861292084
+137,303374,3796998,303474,3796898,36,1,45.2631578947368,0.0928593655205859,12.5396725054801,0.58352151443658,10.3911503792088,8.89506732882613e-06,0,0,0,NA,NA,0,NA,NA,392.948453903198,391.182464599609,1.88469310628698
+138,303374,3796898,303474,3796798,37,1,89.25,0.481842928646063,25.3343178349202,0.802556419960751,10.3911503376439,0.0169180760431846,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,0,0,390.811706542969,390.646606445312,0.487065621107799
+139,303374,3796798,303474,3796698,38,1,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0224487307854073,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,0,0,390.811416625977,390.683776855469,0.137020653244176
+140,303374,3796698,303474,3796598,39,1,53.1578947368421,0.181759610805798,12.8834660073739,0.346240179573513,15.5867256623343,0.0556076945108974,0.542105263157895,54.2105263157895,1,98.0632061915115,0.777617718555866,54.2105263157895,5.24650415633489,0,391.099760055542,390.947601318359,0.208502439598993
+141,303374,3796598,303474,3796498,40,1,25.2631578947368,0.259142415406286,35.3265304341705,0.696180555555555,NA,0.0264077928508892,0.126315789473684,12.6315789473684,6,73.9131585677305,0.706876285630326,5.52631578947368,9.18956180413564,0,391.591865539551,391.352600097656,0.369887906917573
+142,303374,3796498,303474,3796398,41,1,23.6842105263158,0.121473007221697,17.8778280049968,0.735150157624025,25.9778761038906,0.0170641045036782,0.0263157894736842,2.63157894736842,3,48.8831304598528,0.525987525987526,1.05263157894737,11.282075548172,7.34765291213989,392.061573028564,391.888671875,0.199252265682162
+143,303374,3796398,303474,3796298,42,1,53.25,0.574972234182697,34.4939686524664,0.83489827856025,NA,0.00294391613637345,0.0075,0.75,1,44.4894453484604,1,0.75,6.92743364969889,5.19557523727417,392.287353515625,392.189270019531,0.137045914596268
+144,303374,3796298,303474,3796198,43,1,0,NA,NA,NA,NA,0.0265821972717516,0.0526315789473684,5.26315789473684,4,63.9481841327528,0.659498207885305,3.42105263157895,76.4474803924561,57.1513290405273,392.415729522705,392.293762207031,0.119510425642713
+145,303374,3796198,303474,3796098,44,1,14.4736842105263,0.074233504413259,17.0430739865587,0.563888888888889,18.7329127343552,0.0131322975558233,0.0263157894736842,2.63157894736842,3,52.8544892788092,0.525987525987526,1.57894736842105,50.3180869579315,0,392.483009338379,392.406280517578,0.090361193741251
+146,303374,3796098,303474,3795998,45,1,45,0.230798713721224,18.5503678068971,0.602272727272727,16.4298513045212,-0.00258187959451262,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,1.48445006779262,0,392.549432754517,392.455474853516,0.0713949969806908
+147,303374,3795998,303474,3795898,46,1,18.75,0.101227506018081,16.2408090186922,0.698198198198198,10.3911503376439,0.0118270896598733,0.01,1,1,52.6315789473684,0.747474747474748,1,2.59778761863708,0,392.588984171549,392.529510498047,0.0450631141911722
+148,303374,3795898,303474,3795798,47,1,33.4210526315789,0.114274606793744,12.8150795366209,0.486274991805965,13.8548671861334,-0.0013315199368088,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,15.5867252349854,15.5867252349854,392.664257049561,392.541046142578,0.13924507167574
+149,303374,3795798,303474,3795698,48,1,27.3684210526316,0.280737616690143,23.9008996238436,0.836538461538462,NA,0.0286778182852829,0.155263157894737,15.5263157894737,4,85.4424913374778,0.849123450003054,13.4210526315789,14.6422550637843,0,393.15934753418,392.803894042969,0.613728906782777
+150,303374,3795698,303474,3795598,49,1,29.4736842105263,0.302332817974001,28.4131157871164,0.837797619047619,NA,0.034899225564502,0.236842105263158,23.6842105263158,1,94.2963765153462,0.84536303276933,23.6842105263158,5.35032689306471,0,394.403497695923,393.622222900391,0.771181468830885
+151,303374,3795598,303474,3795498,50,1,36.5,0.394112423430393,30.1412188281226,0.83675799086758,NA,-0.00501744766404954,0,0,0,NA,NA,0,NA,NA,395.484736124674,394.714233398438,0.914942870826845
+152,303374,3795498,303474,3795398,51,1,32.3684210526316,0.332026219739304,26.1271418257984,0.811653116531165,NA,-0.0671398806300682,0.0921052631578947,9.21052631578947,2,82.8642375665534,0.84807596201899,8.15789473684211,37.961642074585,18.7329120635986,396.543088912964,395.622375488281,0.73565485137477
+153,303374,3795398,303474,3795298,52,1,0,NA,NA,NA,NA,0.00477429619447656,0.0105263157894737,1.05263157894737,1,52.703639668815,1,1.05263157894737,40.4954147338867,36.7382659912109,397.307914733887,396.762542724609,0.541916859428387
+154,303374,3795298,303474,3795198,53,1,5.52631578947368,0.0566874033701251,9.72143470238194,0.658730158730159,NA,0.00985368557812762,0.0315789473684211,3.15789473684211,5,41.0801109615744,0.392583120204604,1.05263157894737,34.0602402687073,11.6176595687866,397.771446228027,397.533905029297,0.385269089159744
+155,303374,3795198,303474,3795098,54,1,0,NA,NA,NA,NA,0.024391340365255,0.04,4,6,44.9544508862929,0.348958333333333,1.25,95.7771496772766,63.206901550293,398.108369827271,397.636688232422,0.49507050813135
+156,303374,3795098,303474,3794998,55,1,5,0.0512886030491608,11.0056247772991,0.587719298245614,NA,0.018522286660453,0.0210526315789474,2.10526315789474,3,49.0305203394942,0.591397849462366,1.57894736842105,55.9380149841309,34.8529777526855,397.205998738607,396.495727539062,0.956979352927689
+157,303374,3794998,303474,3794898,56,1,51.8421052631579,0.177260610538328,20.8567796541015,0.622916666666667,18.4561625189642,-0.0222709514762884,0,0,0,NA,NA,0,NA,NA,396.362340927124,396.192230224609,0.208362458833863
+158,303374,3794898,303474,3794798,57,1,18.4210526315789,0.0314930018722917,7.37539813889703,0.453666744475568,23.267903869022,-0.0230944253966108,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,24.0104169845581,22.0429573059082,396.381006876628,396.146087646484,0.358333461278429
+159,303374,3794798,303474,3794698,58,1,6.75,0.036441902166509,7.77963130500574,0.563492063492063,36.3690265454468,-0.0535059116195771,0.0025,0.25,1,0,NA,0.25,41.8880653381348,41.8880653381348,396.551259994507,396.000793457031,0.650004456103506
+160,303374,3794698,303474,3794598,59,1,11.5789473684211,0.0395912023537382,8.48476176811866,0.480549199084668,12.940681409399,0.00132983916279811,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,31.0627311706543,25.977876663208,396.337875366211,395.913024902344,0.622896679184074
+161,303374,3794598,303474,3794498,60,1,35.2631578947368,0.120573207168203,12.2426402570679,0.607871687209355,16.4043982143022,-0.00799251265567651,0,0,0,NA,NA,0,NA,NA,396.212696075439,395.786529541016,0.395103816989945
+162,303374,3794498,303474,3794398,61,1,35.5263157894737,0.072883804333018,10.4588448731925,0.453868353868354,17.8843155225535,0.00132550921076281,0.0210526315789474,2.10526315789474,3,46.4278190834861,0.489247311827957,1.31578947368421,10.4965411424637,5.19557523727417,396.682156880697,396.186584472656,0.61562047301977
+163,303374,3794398,303474,3794298,62,1,18.75,0.0404910024072322,7.89985659048567,0.424033816425121,20.208356963727,0.0360583630517795,0.2525,25.25,3,93.4317795168043,0.903915445592121,24.75,33.3319982915822,7.34765291213989,397.114629745483,396.606506347656,0.393441886632844
+164,303374,3794298,303474,3794198,63,1,13.1578947368421,0.0192814297177296,7.05066450819811,0.287556689342404,16.3289505825395,0.0129065209625735,0.0657894736842105,6.57894736842105,1,84.325823470104,0.652112676056338,6.57894736842105,47.7445063781738,41.5646018981934,397.248489379883,396.912384033203,0.318852397212811
+165,303374,3794198,303474,3794098,64,1,44.4736842105263,0.114049656780371,10.9267188162898,0.391232638888889,18.1845131688111,-0.00306059313305396,0.0131578947368421,1.31578947368421,2,42.162911735052,0.797333333333333,1.05263157894737,11.4302653312683,5.19557523727417,397.952924728394,397.556427001953,0.479714503050868
+166,303374,3794098,303474,3793998,65,1,13.6842105263158,0.140368808345072,17.3891995921611,0.772435897435897,NA,0.00904817114378722,0.0657894736842105,6.57894736842105,1,84.325823470104,0.785915492957747,6.57894736842105,15.4658287811279,10.3911504745483,398.477483113607,398.1884765625,0.489969869732523
+167,303374,3793998,303474,3793898,66,1,10,0.035992002139762,8.72615104849417,0.563568376068376,22.2854790293241,0.027420206005593,0.1725,17.25,5,83.9824302333241,0.720356545404609,11.75,11.5731732948967,0,399.293306350708,398.800872802734,0.558900155853069
+168,303374,3793898,303474,3793798,67,1,53.1578947368421,0.545278832417394,32.7945791789204,0.824257425742574,NA,0.0128279828222371,0,0,0,NA,NA,0,NA,NA,400.134747823079,399.598052978516,0.665003290285894
+169,303374,3793798,303474,3793698,68,1,36.0526315789474,0.0528311174265792,9.72683522794853,0.381135983972253,13.8095058414512,0.0131636685883246,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,9.0922566652298,5.19557523727417,401.269237518311,400.490264892578,0.712245675887138
+170,303374,3793698,303474,3793598,69,1,27.3684210526316,0.0935792055633811,17.7583253894591,0.570433944464952,22.5141590648952,0.0201440842760923,0.0368421052631579,3.68421052631579,6,40.4918916288722,0.325136612021858,1.05263157894737,11.5044879232134,0,402.419692993164,402.032196044922,0.409706822149866
+171,303374,3793598,303474,3793498,70,1,38.5,0.207853812357125,17.646305508106,0.575075075075075,25.9778758441098,0.0220086307109113,0.0825,8.25,1,86.9391941099265,0.838530628721364,8.25,11.0428738449559,5.19557523727417,402.624425252279,402.396697998047,0.265062956915221
+172,303374,3793498,303474,3793398,71,1,18.6842105263158,0.191657411394232,26.2498543015013,0.758215962441315,NA,0.0365408143902498,0.218421052631579,21.8421052631579,4,83.9594187648112,0.764996907854051,10.7894736842105,11.2768548310521,0,402.466186523438,402.056732177734,0.362930894849591
+173,303374,3793398,303474,3793298,72,1,27.8947368421053,0.0953788056703692,15.022062848889,0.535573476702509,19.0504422856805,0.0332742712153049,0.186842105263158,18.6842105263158,6,79.7603502695955,0.704854368932039,8.68421052631579,13.4960184903212,0,401.840108235677,401.069213867188,0.720507939067406
+174,303374,3793298,303474,3793198,73,1,35,0.179510110672063,26.2963485150723,0.685884353741496,11.6176592829313,0.0175085005427281,0.121052631578947,12.1052631578947,2,87.7832082650979,0.854137878089974,11.5789473684211,20.006697592528,5.19557523727417,401.110877990723,400.552703857422,0.49097166640177
+175,303374,3793198,303474,3793098,74,1,22.75,0.0491290829207751,11.3793947083305,0.34265873015873,11.4302654545382,0.0227960292643229,0.06,6,5,62.2005930197738,0.524076147816349,2.5,6.58413894971212,0,400.965014139811,400.669799804688,0.357924041504292
+176,303374,3793098,303474,3792998,75,1,0,NA,NA,NA,NA,0.00859909288870097,0,0,0,NA,NA,0,NA,NA,400.573324203491,400.326629638672,0.37051074466319
+177,303374,3792998,303474,3792898,76,1,0,NA,NA,NA,NA,0.0234410319096672,0.121052631578947,12.1052631578947,2,84.0639641544568,0.854137878089974,8.42105263157895,96.2735776486604,62.3469009399414,399.992146809896,399.876617431641,0.255910192121766
+178,303374,3792898,303474,3792798,77,1,14.4736842105263,0.074233504413259,14.2079402353185,0.570861678004535,18.7329127343552,0.0329465547770143,0.268421052631579,26.8421052631579,3,88.5635936088178,0.850611314227307,13.9473684210526,42.0774422954111,5.19557523727417,399.769449234009,399.717895507812,0.0769104188686898
+179,303374,3792798,303474,3792698,78,1,46.25,0.166463009896399,18.1231527926915,0.666180660298307,19.9911943633133,0.0705798005416727,0.53,53,2,95.9385050850156,0.816394859056053,42.25,5.57969358732116,0,399.709958394368,399.70068359375,0.016943065129293
+180,303374,3792698,303474,3792598,79,1,26.5789473684211,0.136319708104348,21.0170703921728,0.458333333333333,16.4298513045212,0.0205465039146331,0.105263157894737,10.5263157894737,6,74.2516340563517,0.716417910447761,7.36842105263158,9.09984059333801,0,399.728021621704,399.703918457031,0.0251077599367245
+181,303374,3792598,303474,3792498,80,1,28.6842105263158,0.147117308746277,17.4492246827303,0.635416666666667,20.7823006752878,0.0239983396561672,0.0473684210526316,4.73684210526316,5,63.2580037149911,0.455698792715367,3.15789473684211,13.702944888009,0,399.746462504069,399.722534179688,0.0276635730970166
+182,303374,3792498,303474,3792398,81,1,3.94736842105263,0.0202455012036161,9.61181406232063,0.283333333333333,15.5867256623343,0.0202655719807617,0,0,0,NA,NA,0,NA,NA,399.702835083008,399.674774169922,0.0339396714617434
+183,303374,3792398,303474,3792298,82,1,42.5,0.458898027281965,29.624617526614,0.884313725490196,NA,0.0230162964188821,0.06,6,3,71.8202358152103,0.776035834266517,3.75,0,0,399.66864267985,399.657135009766,0.0194194042755647
+184,303374,3792298,303474,3792198,83,1,57.1052631578947,0.195256611608209,14.4062936799128,0.613916947250281,12.940681409399,0.0505417237872423,0.547368421052632,54.7368421052632,4,96.6286133511694,0.80019229613605,52.6315789473684,2.60192408240758,0,399.734506607056,399.684692382812,0.0799921459351388
+185,303374,3792198,303474,3792098,84,1,58.9473684210526,0.604665635948001,35.9582856612423,0.770089285714286,NA,0.0349979912071017,0.263157894736842,26.3157894736842,7,83.3264970188868,0.728571428571429,14.2105263157895,2.42409196376801,0,400.080572128296,399.84912109375,0.312371894990808
+186,303374,3792098,303474,3791998,85,1,44.4736842105263,0.152066209040494,17.916171342022,0.587184770876263,12.4040507037496,0.030668147496487,0.218421052631579,21.8421052631579,5,82.1269972942224,0.686662543805401,9.47368421052632,3.12719904083803,0,400.526062011719,400.239227294922,0.426945214475863
+187,303374,3791998,303474,3791898,86,1,23,0.124172407382179,18.8882588819505,0.515376984126984,20.7823008831125,0.0287615059066593,0.1425,14.25,5,76.8119305708624,0.643005890402808,5.75,8.5191792856183,0,400.684669494629,400.363311767578,0.403717398030272
+188,303374,3791898,303474,3791798,87,1,0.263157894736842,0.00269940016048215,0,0,NA,0.0158516029324107,0.0342105263157895,3.42105263157895,2,66.1572734427665,0.769906145927944,2.63157894736842,34.3433101360614,25.977876663208,400.615717569987,400.507049560547,0.173619099020118
+189,303374,3791798,303474,3791698,88,1,11.3157894736842,0.0580371034503662,10.9667265911532,0.625641025641026,30.2951490982138,0.0244132365939884,0.139473684210526,13.9473684210526,2,84.9903378015689,0.859528850354538,7.89473684210526,3.82530720728748,0,400.76042175293,400.610900878906,0.175267251095026
+190,303374,3791698,303474,3791598,89,1,74.7368421052632,0.25554321519231,14.3474853168458,0.461291616526274,13.8548671861334,0.074202219779162,0.878947368421053,87.8947368421053,1,99.6396496245617,0.882174602080893,87.8947368421053,1.55620154506432,0,401.056432088216,400.791137695312,0.303013469932823
+191,303374,3791598,303474,3791498,90,1,23,0.0620862036910894,13.2760122654407,0.508851575456053,32.773098772859,0.0280006657449121,0.2025,20.25,5,80.3069915087536,0.721351445489377,8.75,5.60104438993666,0,401.531147003174,401.112030029297,0.515640855022472
+192,303374,3791498,303474,3791398,91,1,7.63157894736842,0.0782826046539823,18.3528049258253,0.540229885057471,NA,0.0380995643803831,0.305263157894737,30.5263157894737,4,92.9862391062747,0.766955266955267,27.6315789473684,26.8261991985913,0,402.67035929362,402.161834716797,0.730228311143365
+193,303374,3791398,303474,3791298,92,1,0,NA,NA,NA,NA,0.0156044407631031,0.068421052631579,6.84210526315789,5,64.6841355110419,0.659638969271049,3.15789473684211,72.395899772644,20.7823009490967,403.437564849854,403.173522949219,0.300331628115627
+194,303374,3791298,303474,3791198,93,1,3.42105263157895,0.0350922020862679,8.95722321604155,0.551282051282051,NA,0.0258826738682968,0.118421052631579,11.8421052631579,5,76.5845439313554,0.805970149253731,8.15789473684211,19.8916192690531,0,403.75484975179,403.419952392578,0.383421133191918
+195,303374,3791198,303474,3791098,94,1,43.25,0.466996227763411,27.1962468077939,0.884393063583815,NA,0.0211146099590769,0.175,17.5,4,82.383216185046,0.812761763981276,8.5,5.8486736025129,0,403.92014503479,403.630981445312,0.252944526374937
+196,303374,3791098,303474,3790998,95,1,96.3157894736842,0.987980458736466,37.8075206564883,0.932149362477231,NA,0.00592346368173726,0.068421052631579,6.8421052631579,3,71.765981552158,0.738183822516191,3.68421052631579,1.61152658095727,0,403.736890157064,403.628051757812,0.206601339529935
+197,303374,3790998,303474,3790898,96,1,99.2105263157895,1.01767386050177,38.5156105421852,0.932802829354553,NA,0.130757961765228,0.918421052631579,91.8421052631579,1,99.7649570350094,0.851417399804497,91.8421052631579,0.0508275168673015,0,403.241296768188,402.752532958984,0.52463913095483
+198,303374,3790898,303474,3790798,97,1,30.7894736842105,0.315829818776411,33.3253293322916,0.740740740740741,NA,0.0775015801065724,0.660526315789474,66.0526315789474,2,97.2992279560712,0.74303150255649,62.3684210526316,8.50818158335895,0,402.630439758301,402.472259521484,0.206891344615448
+199,303374,3790798,303474,3790698,98,1,7.25,0.0260942015513274,6.71569249030448,0.436928104575163,49.1065089739433,0.0362511571644086,0.285,28.5,3,88.9313630285881,0.803109511847376,14.75,14.5213005584583,0,402.485202789307,402.350158691406,0.136626382270646
+200,303374,3790698,303474,3790598,99,1,26.3157894736842,0.0899800053494049,13.4123331740125,0.666305916305916,24.2460175930522,0.0682199770764985,0.675,67.5,2,98.5268584458289,0.667909183327686,66.9444444444444,11.2081307462213,0,402.325572967529,402.217926025391,0.111295838527408
+201,303474,3800598,303574,3800498,0,2,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.821993509928,383.719085693359,0.122534711382135
+202,303474,3800498,303574,3800398,1,2,60,0.615463236590147,31.7261319030146,0.894005847953216,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.757310655382,383.697784423828,0.101976501007231
+203,303474,3800398,303574,3800298,2,2,50.1385041551247,0.244295714523721,18.5116386562981,0.628766478342749,26.4923391803511,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.683171590169,383.668060302734,0.0512985601174538
+204,303474,3800298,303574,3800198,3,2,20.4986149584488,0.19975561187575,21.4945513633025,0.801801801801802,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.79530843099,383.725250244141,0.135858661711776
+205,303474,3800198,303574,3800098,4,2,8.31024930747922,0.026994001604831,7.71449148763044,0.44118265993266,17.8806678490735,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.145383199056,383.937652587891,0.253735592787646
+206,303474,3800098,303574,3799998,5,2,23.1578947368421,0.237547214122513,25.1495537300632,0.816287878787879,NA,0.0126533645508169,0.0921052631578947,9.21052631578947,1,79.7417889742105,0.834782608695652,9.21052631578947,0,0,384.619672987196,384.428192138672,0.326689357829421
+207,303474,3799998,303574,3799898,6,2,80.6094182825485,0.785525446700583,35.1839820508549,0.901489117983963,NA,0.00155833468533805,0.177285318559557,17.7285318559557,4,86.9855496346269,0.80465367965368,15.5124653739612,2.29276194423437,0,385.224840799967,384.829650878906,0.441495872523221
+208,303474,3799898,303574,3799798,7,2,4.43213296398892,0.0431904025677296,10.5231298759654,0.583333333333333,NA,0.0100260938776056,0.0249307479224377,2.49307479224377,2,59.1838031937908,0.658143939393939,1.93905817174515,56.4135453965929,46.4706382751465,386.096076117622,385.510559082031,0.689883275099378
+209,303474,3799798,303574,3799698,8,2,0,NA,NA,NA,NA,0.0118129758115794,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,108.502647399902,83.7761306762695,386.836802164714,386.560272216797,0.340193197098841
+210,303474,3799698,303574,3799598,9,2,0,NA,NA,NA,NA,0.00800463744635635,0.0289473684210526,2.89473684210526,4,45.9385834752211,0.450767841011743,1.31578947368421,124.462988419966,109.230712890625,386.913648817274,386.797790527344,0.202954520518444
+211,303474,3799598,303574,3799498,10,2,0,NA,NA,NA,NA,0.00238558196794727,0.0526315789473684,5.26315789473684,4,60.9729203973508,0.454022988505747,2.49307479224377,75.3128762496145,39.5683212280273,386.673528035482,386.497589111328,0.194381806010608
+212,303474,3799498,303574,3799398,11,2,32.6869806094183,0.159264609468503,12.8993715279059,0.570048309178744,15.5867256623399,0.00618080710946264,0.10803324099723,10.803324099723,2,86.3608231463384,0.810272336359293,10.2493074792244,10.2257837148813,0,386.396832784017,386.238647460938,0.187792671431038
+213,303474,3799398,303574,3799298,12,2,31.5789473684211,0.153865809147537,15.7793594263059,0.528528528528529,60.5902979113002,0.0128499232092695,0.127423822714681,12.7423822714681,4,79.2552484265159,0.764916564916565,7.4792243767313,4.98293802012568,0,386.3384636773,386.225616455078,0.190411756308698
+214,303474,3799298,303574,3799198,13,2,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0428645729212899,0.336842105263158,33.6842105263158,5,90.7936514384594,0.734654949247224,27.1052631578947,0,0,386.506136576335,386.293182373047,0.296629585278854
+215,303474,3799198,303574,3799098,14,2,59.8337950138504,0.291535217332175,23.9207445629016,0.736531986531987,10.3911503376439,0.0344184373976718,0.246537396121884,24.6537396121884,6,87.4954626865633,0.732889382167962,18.8365650969529,7.40319295947471,0,386.85998196072,386.604339599609,0.353933567853013
+216,303474,3799098,303574,3798998,15,2,67.590027700831,0.658653639157877,34.2343931865511,0.898224043715847,NA,0.0133778652854386,0.0941828254847645,9.41828254847645,4,76.9495884569259,0.724006116207951,6.92520775623269,8.5710511488073,0,387.200365702311,386.948425292969,0.28884745147777
+217,303474,3798998,303574,3798898,16,2,81.994459833795,0.799022447502998,37.4400483486626,0.884572072072072,NA,0.0437030136550408,0.326869806094183,32.6869806094183,6,87.0941117596241,0.770912657205492,14.6814404432133,0.663294218354306,0,387.43741522895,387.226684570312,0.263179669232277
+218,303474,3798898,303574,3798798,17,2,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.00881277715910217,0.131578947368421,13.1578947368421,2,84.3399309917266,0.891622103386809,6.8421052631579,0,0,387.749219258626,387.544036865234,0.220223745984976
+219,303474,3798798,303574,3798698,18,2,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0154577757951546,0.0775623268698061,7.75623268698061,2,82.9605556490172,0.879546212879546,7.4792243767313,0,0,388.067003038194,387.955444335938,0.232977133122898
+220,303474,3798698,303574,3798598,19,2,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.00638319689790874,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,0,0,388.672457377116,388.277618408203,0.706527850754889
+221,303474,3798598,303574,3798498,20,2,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.044824010583662,0.412742382271468,41.2742382271468,2,96.113537856994,0.943862741032553,40.7202216066482,0,0,391.254316541884,389.711730957031,1.85694468464404
+222,303474,3798498,303574,3798398,21,2,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0489508738524915,0.378947368421053,37.8947368421053,2,93.7379196785025,0.896314843348742,31.8421052631579,0,0,393.357360839844,392.186309814453,1.4214717288658
+223,303474,3798398,303574,3798298,22,2,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.120026935777631,0.817174515235457,81.7174515235457,1,99.4098735083044,0.970434070434071,81.7174515235457,0,0,395.998565673828,394.899017333984,1.35826960704379
+224,303474,3798298,303574,3798198,23,2,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,-0.00311575472109441,0.25207756232687,25.207756232687,1,94.4903267234909,0.983493369913123,25.207756232687,0,0,396.354301452637,395.717926025391,0.616240926773323
+225,303474,3798198,303574,3798098,24,2,53.185595567867,0.259142415406378,22.3454517668359,0.718253968253968,31.1734510129318,-0.0147135300150966,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,18.7329120635986,18.7329120635986,395.7431640625,395.634948730469,0.217306728517784
+226,303474,3798098,303574,3797998,25,2,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,-0.00689599175074315,0,0,0,NA,NA,0,NA,NA,395.790557861328,395.635009765625,0.186841281026966
+227,303474,3797998,303574,3797898,26,2,75.0692520775623,0.731537443490921,34.1393993248385,0.896063960639606,NA,-0.118002891816409,0,0,0,NA,NA,0,NA,NA,395.718704223633,395.645294189453,0.0844592142414695
+228,303474,3797898,303574,3797798,27,2,0,NA,NA,NA,NA,-0.0741435287602844,0,0,0,NA,NA,0,NA,NA,395.733761257595,395.632781982422,0.128525451177517
+229,303474,3797798,303574,3797698,28,2,0,NA,NA,NA,NA,-0.0451371672245934,0,0,0,NA,NA,0,NA,NA,395.611457824707,395.511016845703,0.182119905684517
+230,303474,3797698,303574,3797598,29,2,36.3157894736842,0.372517222146668,27.4912594227034,0.871980676328502,NA,-0.0341038753056062,0,0,0,NA,NA,0,NA,NA,395.754611545139,395.582702636719,0.256114867159052
+231,303474,3797598,303574,3797498,30,2,29.3628808864266,0.0572272834022418,13.5301317914695,0.497501725327812,16.2159629520442,-0.00124041434701766,0,0,0,NA,NA,0,NA,NA,396.543329874674,395.790374755859,1.07818233172557
+232,303474,3797498,303574,3797398,31,2,1.66204986149584,0.0161964009628986,5.52275872581071,0.416666666666667,NA,-0.0331386943656403,0,0,0,NA,NA,0,NA,NA,398.683902316623,397.560180664062,1.12814142041677
+233,303474,3797398,303574,3797298,32,2,22.9916897506925,0.224050213320097,23.844009333643,0.78714859437751,NA,-0.0497947793595501,0,0,0,NA,NA,0,NA,NA,398.422375996908,398.006378173828,0.593290157209493
+234,303474,3797298,303574,3797198,33,2,96.0526315789474,0.985281058576332,38.0587730307752,0.927397260273973,NA,-0.0819998847614778,0,0,0,NA,NA,0,NA,NA,397.961524115668,397.400543212891,0.935439013880029
+235,303474,3797198,303574,3797098,34,2,99.1689750692521,0.96638525745295,37.646837368126,0.929236499068901,NA,-0.0648289486053825,0,0,0,NA,NA,0,NA,NA,396.036913553874,395.454071044922,0.891170036201063
+236,303474,3797098,303574,3796998,35,2,22.4376731301939,0.0546628532497828,10.7259983795532,0.514482821637427,17.159819234375,-0.00139323014346068,0,0,0,NA,NA,0,NA,NA,395.229234483507,395.058685302734,0.382161958900561
+237,303474,3796998,303574,3796898,36,2,42.1052631578947,0.0820617648786863,10.7099763478874,0.361965811965812,12.9599840664208,0.00869376346121211,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,24.2817262922015,20.7823009490967,393.983009338379,392.50146484375,1.77937858662588
+238,303474,3796898,303574,3796798,37,2,95.7894736842105,0.982581658415849,39.2343485956385,0.905677655677656,NA,-0.00962333089965365,0.0552631578947368,5.52631578947368,2,74.8925550458031,0.768454038997215,3.94736842105263,0,0,390.630788167318,390.618530273438,0.69217252916874
+239,303474,3796798,303574,3796698,38,2,84.4875346260388,0.823317048947346,38.1152077673465,0.895628415300546,NA,0.0246398236800749,0.0470914127423823,4.70914127423823,2,76,0.790116279069767,4.43213296398892,0,0,390.791422526042,390.647918701172,0.197226643024463
+240,303474,3796698,303574,3796598,39,2,31.0249307479224,0.100777605991369,12.8880337882167,0.515095398428732,14.8857412617851,0.0267025665852494,0.188365650969529,18.8365650969529,3,88.9495419045008,0.792927409871799,16.3434903047091,20.8951697349548,0,391.260129292806,390.994018554688,0.331206447841756
+241,303474,3796598,303574,3796498,40,2,50.415512465374,0.491290829207925,33.8751449665617,0.84981684981685,NA,0.0150308352939422,0.0831024930747922,8.31024930747922,7,64.0786012152935,0.53258523953388,3.601108033241,14.183936436971,0,391.793067084418,391.504974365234,0.416812945237748
+242,303474,3796498,303574,3796398,41,2,63.98891966759,0.623561437071597,34.6986828604373,0.825396825396825,NA,0.00446063334717598,0,0,0,NA,NA,0,NA,NA,392.303090413411,392.05615234375,0.261702631879687
+243,303474,3796398,303574,3796298,42,2,77.3684210526316,0.396811823591016,21.9994419599167,0.816255262150785,15.5867255064659,-0.00797833189889819,0.0236842105263158,2.36842105263158,4,35.6939146200956,0.40251572327044,0.789473684210526,1.15457227494982,0,392.539801703559,392.414886474609,0.152720790304319
+244,303474,3796298,303574,3796198,43,2,27.4238227146814,0.133620307943914,15.0985375048435,0.68234126984127,10.3911504415599,0.0130477787474031,0.0249307479224377,2.49307479224377,2,61.9755545773026,0.743607954545455,2.21606648199446,1.73185841242472,0,392.622268676758,392.545989990234,0.0826553193495829
+245,303474,3796198,303574,3796098,44,2,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0192096852010348,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,7.64479287465413,5.19557523727417,392.63195461697,392.606018066406,0.0546167007680617
+246,303474,3796098,303574,3795998,45,2,54.8476454293629,0.267240615887827,27.8110383712408,0.746153846153846,14.6953058096335,0.0253731766077135,0.290858725761773,29.0858725761773,2,93.9940189485009,0.895543981481482,27.9778393351801,3.02860623314267,0,392.586481730143,392.5615234375,0.0284499869585986
+247,303474,3795998,303574,3795898,46,2,7.36842105263158,0.0377916022467634,8.37364687964113,0.381410256410256,14.6953058096335,0.0167693169987998,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,4.58687572479248,0,392.587988959418,392.556640625,0.0455098854612123
+248,303474,3795898,303574,3795798,47,2,11.3573407202216,0.0553377032899036,11.4392514965972,0.635683760683761,16.4298514359663,0.0246165988324603,0.168975069252078,16.8975069252078,1,92.0405515626388,0.920534591194968,16.8975069252078,3.89424114539975,0,392.70364634196,392.616760253906,0.128538514158166
+249,303474,3795798,303574,3795698,48,2,3.601108033241,0.0175461010431402,5.48547602260664,0.45625,105.202379310683,0.014325053047947,0.0581717451523546,5.81717451523546,8,42.3267856383898,0.4359375,1.66204986149584,31.9204663322085,0,393.019677056207,392.823486328125,0.335742796833359
+250,303474,3795698,303574,3795598,49,2,8.03324099722992,0.0260942015513367,6.25364073847556,0.461174242424242,34.4112031643193,0.0130432328417926,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989,393.59236907959,393.060729980469,0.66256292430611
+251,303474,3795598,303574,3795498,50,2,24.7368421052632,0.126871807542706,12.7707713928737,0.412186379928315,11.6176592829322,-0.0133413847647573,0,0,0,NA,NA,0,NA,NA,394.466078016493,393.897369384766,0.782712873918315
+252,303474,3795498,303574,3795398,51,2,13.2963988919668,0.129571207703189,23.696550541811,0.697916666666667,NA,-0.0231797630602013,0,0,0,NA,NA,0,NA,NA,395.314613342285,394.672790527344,0.898724851522713
+253,303474,3795398,303574,3795298,52,2,23.5457063711911,0.229449013641064,22.8975319646941,0.815686274509804,NA,-0.0285673337652209,0.0692520775623269,6.92520775623269,1,84.4444444444445,0.865699404761905,6.92520775623269,21.6564557266235,14.6953058242798,396.337215847439,395.844207763672,0.936512720806149
+254,303474,3795298,303574,3795198,53,2,0,NA,NA,NA,NA,-0.00973946234766636,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.91280193236715,4.43213296398892,47.3269250392914,36.7382659912109,397.038185119629,395.997741699219,0.913585551617253
+255,303474,3795198,303574,3795098,54,2,0,NA,NA,NA,NA,-0.01104750118213,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,95.8415095011393,91.9191131591797,397.937965393066,397.244750976562,0.994856216645783
+256,303474,3795098,303574,3794998,55,2,0,NA,NA,NA,NA,0.0124577062390188,0.102493074792244,10.2493074792244,3,78.855754465208,0.762548067192876,7.75623268698061,67.5351221239245,47.9008369445801,397.020948621962,396.608856201172,0.816306596253201
+257,303474,3794998,303574,3794898,56,2,22.1606648199446,0.107976006419324,15.7470464057872,0.574444444444444,14.6953058096335,-0.0230338725080318,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.881716906946265,9.41828254847645,47.1466324750115,33.2679138183594,396.27704111735,396.044586181641,0.315013863079135
+258,303474,3794898,303574,3794798,57,2,34.0720221606648,0.166013109869711,21.7459357062184,0.680050505050505,11.6176592829322,-0.036603163521912,0,0,0,NA,NA,0,NA,NA,395.966874864366,395.824249267578,0.210112552699115
+259,303474,3794798,303574,3794698,58,2,8.42105263157895,0.0863808051354593,14.1075792916282,0.708333333333333,NA,-0.00111255881753383,0.321052631578947,32.1052631578947,1,95.8641526644856,0.980006313795644,32.1052631578947,30.5524774066737,10.3911504745483,395.612696329753,395.128173828125,0.469149703110806
+260,303474,3794698,303574,3794598,59,2,45.4293628808864,0.221350813159614,17.1631888824457,0.649891774891775,11.6176593526411,-0.00275844464943115,0.155124653739612,15.5124653739612,3,89.0829755934431,0.853574446510056,14.9584487534626,16.4929664731026,0,395.413072374132,395.104919433594,0.467438459659514
+261,303474,3794598,303574,3794498,60,2,31.8559556786704,0.0517385030759261,6.73905668636145,0.356225374310481,18.5933494839099,0.0233380092797531,0.310249307479224,31.0249307479224,3,92.5564737162669,0.877987196309992,27.9778393351801,15.5873878002167,0,395.757787068685,395.461944580078,0.30271013872862
+262,303474,3794498,303574,3794398,61,2,10.2493074792244,0.019975561187575,4.88892337921596,0.356944444444444,35.1285810773401,0.0243557472909551,0.285318559556787,28.5318559556787,4,86.4873675592639,0.788225434737063,12.7423822714681,16.8895398251061,0,396.086300320095,395.954864501953,0.228246563607414
+263,303474,3794398,303574,3794298,62,2,3.15789473684211,0.0161964009628986,4.94178630758346,0.472222222222222,67.742012947455,0.0459307419112998,0.384210526315789,38.4210526315789,3,91.8602365509771,0.787125068023944,21.5789473684211,40.845733606652,0,396.402460734049,396.144744873047,0.362306147373601
+264,303474,3794298,303574,3794198,63,2,10.2493074792244,0.0166463009896458,6.78132789451327,0.342746913580247,16.1360829063973,0.0129512856692902,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,47.1375436782837,10.3911504745483,397.066599527995,396.585601806641,0.595910460501014
+265,303474,3794198,303574,3794098,64,2,16.6204986149584,0.053988003209662,8.91809619996426,0.438359788359788,29.5646721851773,0.0129397571444595,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483,398.187405904134,397.598663330078,0.589396335163994
+266,303474,3794098,303574,3793998,65,2,4.98614958448753,0.00971784057773917,3.45378921623597,0.215555555555556,29.1392921156908,0.0152171167889752,0,0,0,NA,NA,0,NA,NA,398.840874565972,398.629272460938,0.326004902558415
+267,303474,3793998,303574,3793898,66,2,10.5263157894737,0.053988003209662,6.46074229319227,0.378205128205128,55.2297218651029,0.0309512640005395,0.176315789473684,17.6315789473684,2,87.3786796800462,0.885857841129407,11.3157894736842,16.6719932840831,0,399.128270467122,398.991882324219,0.16434068495364
+268,303474,3793898,303574,3793798,67,2,19.9445983379501,0.194356811554783,19.4817278594246,0.766203703703704,NA,0.00909012643125526,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,27.5129818916321,23.2353191375732,399.607225206163,399.283752441406,0.621839772656812
+269,303474,3793798,303574,3793698,68,2,27.7008310249307,0.0449900026747184,9.99518761945963,0.507642089093702,14.9810627005226,0.0326408841696386,0.218836565096953,21.8836565096953,3,89.6629238028319,0.88112968591692,19.6675900277008,21.5444493776635,0,400.885780334473,400.153869628906,0.80387424396814
+270,303474,3793698,303574,3793598,69,2,23.2686980609418,0.0566874033701451,10.2080764273368,0.545913461538462,15.5867255064659,0.0278881085225566,0.135734072022161,13.5734072022161,3,84.5013776898956,0.8622557997558,11.3573407202216,31.5177870186008,10.3911504745483,401.81992594401,401.347381591797,0.568825012178033
+271,303474,3793598,303574,3793498,70,2,2.63157894736842,0.026994001604831,7.63827396124445,0.516666666666667,NA,0.022469920901456,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,39.1679834638323,36.369026184082,401.947262234158,401.634674072266,0.497920201865692
+272,303474,3793498,303574,3793398,71,2,12.7423822714681,0.124172407382223,19.605090336672,0.72463768115942,NA,0.0440380798971701,0.357340720221607,35.7340720221607,3,90.3794973503623,0.768250183418929,19.6675900277008,27.3966336915659,0,401.781972249349,401.369659423828,0.529011049329112
+273,303474,3793398,303574,3793298,72,2,20.4986149584488,0.0665852039585832,11.9108488979685,0.355030403537866,19.6125263252775,0.0540485049090134,0.426592797783933,42.6592797783933,3,92.3293080749104,0.771990918557211,29.6398891966759,13.6191826176334,0,400.925072564019,400.486602783203,0.74228630769092
+274,303474,3793298,303574,3793198,73,2,20.2216066481994,0.0985281058576332,16.868069809532,0.665966386554622,10.3911504415599,0.0317631017172759,0.188365650969529,18.8365650969529,5,83.4266604268221,0.782573780365388,14.6814404432133,14.2494231462479,0,400.328397115072,400.200805664062,0.260513905391025
+275,303474,3793198,303574,3793098,74,2,23.6842105263158,0.0809820048144931,12.6407587667271,0.504290004290004,17.3185838960732,0.0465617237397007,0.355263157894737,35.5263157894737,4,93.5975521881749,0.867595818815331,33.4210526315789,20.9043709719623,0,400.270673963759,400.119232177734,0.296661385229968
+276,303474,3793098,303574,3792998,75,2,0,NA,NA,NA,NA,0.0193669556810053,0.146814404432133,14.6814404432133,2,89.9580234556675,0.832560296846011,14.404432132964,81.5675489317696,58.0882949829102,400.172945658366,400.0068359375,0.270416974842918
+277,303474,3792998,303574,3792898,76,2,0,NA,NA,NA,NA,0.0279510210177824,0.193905817174515,19.3905817174515,3,90.6181176650461,0.858799206548767,18.5595567867036,87.0013495309012,62.3469009399414,399.924465603299,399.869110107422,0.133804329218451
+278,303474,3792898,303574,3792798,77,2,0,NA,NA,NA,NA,0.0240197578781907,0.163434903047091,16.3434903047091,6,78.0250166031768,0.707018569017011,10.5263157894737,78.3901590250306,44.0859146118164,399.800905863444,399.736968994141,0.0742844210994277
+279,303474,3792798,303574,3792698,78,2,0.263157894736842,0.0026994001604831,0,0,NA,0.0366746819867809,0.323684210526316,32.3684210526316,2,93.381513510008,0.761302367782799,25,45.5827664243496,10.3911504745483,399.73634507921,399.709136962891,0.0537212566225088
+280,303474,3792698,303574,3792598,79,2,21.8836565096953,0.106626306339083,10.2667675293777,0.412393162393162,49.2895539135654,0.0292148409770514,0.227146814404432,22.7146814404432,4,87.0915878446392,0.794759609442591,17.1745152354571,36.0088525748834,5.19557523727417,399.720685323079,399.709625244141,0.034171354734059
+281,303474,3792598,303574,3792498,80,2,67.8670360110803,0.66135303931836,34.2852261585386,0.859863945578231,NA,0.0319303592294197,0.102493074792244,10.2493074792244,6,67.7614813480912,0.634689334142886,3.04709141274238,3.60183696489076,0,399.713185628255,399.702758789062,0.0265594703635255
+282,303474,3792498,303574,3792398,81,2,46.5373961218837,0.151166408987054,13.1051671644334,0.434368530020704,16.7243040981849,0.0317483981639963,0.182825484764543,18.2825484764543,5,78.4089139977309,0.648843036109064,6.09418282548476,4.70639171022357,0,399.683181762695,399.670013427734,0.0228983703999565
+283,303474,3792398,303574,3792298,82,2,15.5263157894737,0.0796323047342515,16.1707623382929,0.571278825995807,36.3690261817537,0.0319491767602525,0.181578947368421,18.1578947368421,1,92.7177340931195,0.919215540378943,18.1578947368421,3.28506911319235,0,399.678849962023,399.670013427734,0.0236619218690581
+284,303474,3792298,303574,3792198,83,2,86.1495844875346,0.839513449910245,35.1859223311263,0.920150053590568,NA,0.110066503918423,0.914127423822715,91.4127423822715,2,99.4923032550517,0.81307927302853,91.1357340720222,0.993407792756052,0,399.746142069499,399.695648193359,0.0685702074564904
+285,303474,3792198,303574,3792098,84,2,39.612188365651,0.193007111474542,16.7119242711925,0.573671497584541,14.6953058096335,0.0389569802964338,0.346260387811634,34.6260387811634,6,87.1542558463364,0.683286044948854,18.005540166205,6.20372824859619,0,399.915537516276,399.828369140625,0.125165331947311
+286,303474,3792098,303574,3791998,85,2,14.404432132964,0.140368808345121,20.3867807717729,0.711538461538462,NA,0.0101102184498083,0.038781163434903,3.8781163434903,3,67.3117947810322,0.687896253602305,3.32409972299169,8.49341079166957,0,400.095194498698,400.001708984375,0.165413321206058
+287,303474,3791998,303574,3791898,86,2,0,NA,NA,NA,NA,0.0117618047261682,0.0605263157894737,6.05263157894737,3,73.3346031843701,0.674758792405851,4.47368421052632,23.7290229797363,10.3911504745483,400.193211873372,400.071533203125,0.189477687365339
+288,303474,3791898,303574,3791798,87,2,0,NA,NA,NA,NA,0.012318850274889,0.0443213296398892,4.43213296398892,4,62.7116198662941,0.651207729468599,3.32409972299169,38.7377865314484,16.4298515319824,400.330023871528,400.172424316406,0.226189777772448
+289,303474,3791798,303574,3791698,88,2,34.6260387811634,0.0674850040120775,10.4216316401819,0.526328903654485,13.6771206401147,0.00506931644443705,0.0470914127423823,4.70914127423823,3,64.9260211104871,0.664186046511628,2.49307479224377,7.6996852089377,0,400.806093851725,400.495666503906,0.331347906129708
+290,303474,3791698,303574,3791598,89,2,16.6204986149584,0.0809820048144931,12.5291459479436,0.676361143752448,16.4298514359663,0.0300480730833356,0.229916897506925,22.9916897506925,3,89.2645627268057,0.867493760093966,19.9445983379501,5.22886639905263,0,401.311255560981,401.143737792969,0.269369205385937
+291,303474,3791598,303574,3791498,90,2,21.5789473684211,0.0553377032899036,14.6055557697735,0.458407738095238,15.7975070079379,0.032425080235905,0.178947368421053,17.8947368421053,5,80.9950420311549,0.682719241542771,7.63157894736842,5.69234826985527,0,401.821276346842,401.42431640625,0.528512565040912
+292,303474,3791498,303574,3791398,91,2,5.81717451523546,0.0188958011233817,5.95794744367306,0.243055555555556,14.6725398163281,0.0263782398517397,0.14404432132964,14.404432132964,4,79.5716470247215,0.763717682993346,8.58725761772853,16.1057269481512,0,402.931230333116,402.564056396484,0.541415510657947
+293,303474,3791398,303574,3791298,92,2,21.0526315789474,0.102577206098358,15.7774909175903,0.655982905982906,14.6953058096335,0.0329245243041658,0.229916897506925,22.9916897506925,4,88.2615258483173,0.770322517496207,18.2825484764543,4.91139090779316,0,403.713826497396,403.305328369141,0.412116514960784
+294,303474,3791298,303574,3791198,93,2,3.601108033241,0.0350922020862803,9.22897680253906,0.538461538461538,NA,0.0258029963705443,0.185595567867036,18.5595567867036,5,77.3728983087036,0.695650909936624,5.26315789473684,24.6929597712275,0,404.180213080512,404.074584960938,0.184279311706163
+295,303474,3791198,303574,3791098,94,2,3.15789473684211,0.0161964009628986,4.70810822406654,0.358333333333333,15.5867256623399,0.0155446898557305,0.131578947368421,13.1578947368421,5,76.3814976096633,0.620677361853832,6.05263157894737,24.0673218536377,0,404.195187886556,404.110687255859,0.147387211563753
+296,303474,3791098,303574,3790998,95,2,11.3573407202216,0.0368918021932691,7.12386270711433,0.398412698412698,25.9778760346225,0.0484311252078535,0.448753462603878,44.8753462603878,2,95.4695335352202,0.817375467943746,39.612188365651,19.7567960009163,0,403.859198676215,403.624755859375,0.311271312149529
+297,303474,3790998,303574,3790898,96,2,22.1606648199446,0.215952012838648,21.9006396766705,0.764583333333333,NA,0.0420645741554448,0.42382271468144,42.382271468144,1,97.0218946746475,0.765295647413085,42.382271468144,12.3905600722319,0,403.364972432454,403.068634033203,0.330172844924823
+298,303474,3790898,303574,3790798,97,2,0,NA,NA,NA,NA,0.0268820590893299,0.296398891966759,29.6398891966759,2,93.0392857357765,0.874811309208111,26.5927977839335,46.2303906289217,14.6953058242798,402.979034423828,402.734619140625,0.323996850937035
+299,303474,3790798,303574,3790698,98,2,7.36842105263158,0.0755832044935268,13.881367114127,0.690476190476191,NA,0.0164657279833735,0.115789473684211,11.5789473684211,6,73.2053086669977,0.694337194337194,6.57894736842105,20.6718352924694,0,402.646438598633,402.513397216797,0.169950090767228
+300,303474,3790698,303574,3790598,99,2,20.4986149584488,0.19975561187575,19.6588502960794,0.81981981981982,NA,0.0607715506348594,0.505847953216374,50.5847953216374,2,94.9815843576902,0.835061490233904,38.0116959064327,13.3831348694818,0,402.501495361328,402.374694824219,0.133676431928844
+301,303574,3800598,303674,3800498,0,3,4.70914127423823,0.0458898027282127,22.0047891703622,0.313725490196078,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.908580780029,383.699920654297,0.181581645146995
+302,303574,3800498,303674,3800398,1,3,16.3157894736842,0.0836814049749762,13.1035345163714,0.632222222222222,14.6953058096335,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.813054402669,383.76025390625,0.0854272607882816
+303,303574,3800398,303674,3800298,2,3,72.5761772853186,0.707242842046573,33.4479601838613,0.891221374045802,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.732067108154,383.687255859375,0.0546944003643056
+304,303574,3800298,303674,3800198,3,3,19.9445983379501,0.0971784057773917,11.2868037527856,0.390845070422535,27.9790285905554,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.844479878743,383.753356933594,0.133766693171951
+305,303574,3800198,303674,3800098,4,3,14.1274238227147,0.0458898027282127,10.5000879690555,0.482275132275132,18.1362565262654,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.141860961914,383.990997314453,0.213962893857129
+306,303574,3800098,303674,3799998,5,3,41.8421052631579,0.429204625516813,27.6825217621192,0.882599580712788,NA,-0.0082631393982554,0.0855263157894737,8.55263157894737,1,78.6438486329537,0.939248601119105,8.55263157894737,2.32938704123864,0,384.59171295166,384.349822998047,0.339412027082733
+307,303574,3799998,303674,3799898,6,3,63.98891966759,0.623561437071597,31.5183825428128,0.908369408369408,NA,0.0023097855143364,0.0581717451523546,5.81717451523546,3,73.0229005567848,0.834099264705882,4.98614958448754,2.32915499096825,0,385.158515930176,384.74609375,0.470722870341651
+308,303574,3799898,303674,3799798,7,3,0,NA,NA,NA,NA,0.0110765124632695,0,0,0,NA,NA,0,NA,NA,385.93977355957,385.158966064453,0.727785540567886
+309,303574,3799798,303674,3799698,8,3,0,NA,NA,NA,NA,0.0128992744999309,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,123.268074035645,115.008964538574,386.582641601562,385.951995849609,0.499864718984899
+310,303574,3799698,303674,3799598,9,3,7.10526315789474,0.0728838043330438,11.4766745820277,0.716049382716049,NA,0.0064184707933327,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,14.0237555503845,11.6176595687866,386.683031717936,386.298675537109,0.374039121479857
+311,303574,3799598,303674,3799498,10,3,14.9584487534626,0.0728838043330438,10.5361870577098,0.720668859649123,36.3690261817537,-0.000611309252620979,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,59.6055641174316,53.4917221069336,386.357404708862,386.016998291016,0.344646109201398
+312,303574,3799498,303674,3799398,11,3,58.7257617728532,0.286136417011209,20.5214129631476,0.810223298358892,15.5867256623399,0.0160385095456714,0.141274238227147,14.1274238227147,3,82.1447414308835,0.825991842788283,9.97229916897507,2.72154180676329,0,386.044063568115,385.880645751953,0.21263630648518
+313,303574,3799398,303674,3799298,12,3,86.7036011080332,0.844912250231211,36.27710583208,0.905218317358892,NA,0.025178743450073,0.224376731301939,22.4376731301939,5,85.9693561231598,0.758258928571429,17.1745152354571,0.256571616655515,0,385.973119099935,385.840087890625,0.184899644047172
+314,303574,3799298,303674,3799198,13,3,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0468899587855527,0.410526315789474,41.0526315789474,3,93.2624063297978,0.668989547038328,29.7368421052632,0,0,386.058511734009,385.852111816406,0.246447825607005
+315,303574,3799198,303674,3799098,14,3,62.0498614958449,0.604665635948215,35.2368036353982,0.823660714285714,NA,0.0205426932488864,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,3.46371682484945,0,386.373364766439,386.065124511719,0.352858599797325
+316,303574,3799098,303674,3798998,15,3,16.3434903047091,0.0530882031561677,8.79263988137962,0.515046296296296,60.6150439826429,0.0147861072954561,0.074792243767313,7.4792243767313,3,74.3475734659516,0.748642250382955,4.98614958448753,2.74069300404301,0,386.734832763672,386.382904052734,0.304154194005474
+317,303574,3798998,303674,3798898,16,3,72.8531855955679,0.354971121103528,27.7069569459284,0.851844823951086,15.5867256623399,0.0481429247259275,0.493074792243767,49.3074792243767,3,93.4666307967227,0.826116564519076,32.6869806094183,0.63213379463453,0,387.073644002279,386.843231201172,0.306881774065516
+318,303574,3798898,303674,3798798,17,3,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0262398441932467,0.236842105263158,23.6842105263158,1,94.2963765153462,0.943028485757122,23.6842105263158,0,0,387.481708526611,387.296447753906,0.245696541385754
+319,303574,3798798,303674,3798698,18,3,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0318234287839821,0.210526315789474,21.0526315789474,3,85.9244896431983,0.706965174129353,11.3573407202216,0,0,387.827303568522,387.686340332031,0.257739427162001
+320,303574,3798698,303674,3798598,19,3,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0255714480214952,0.157894736842105,15.7894736842105,4,83.9292911286834,0.794005102040817,12.7423822714681,0,0,388.657987594604,388.028259277344,0.906586271222044
+321,303574,3798598,303674,3798498,20,3,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0764300795585605,0.709141274238227,70.9141274238227,1,98.9583333333333,0.928373015873016,70.9141274238227,0,0,391.035631815592,389.799407958984,1.53449244280181
+322,303574,3798498,303674,3798398,21,3,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0406527808178094,0.321052631578947,32.1052631578947,2,95.1593494020271,0.966677189659406,31.8421052631579,0,0,393.010492324829,392.126007080078,1.13978522167033
+323,303574,3798398,303674,3798298,22,3,99.7229916897507,0.971784057773917,37.6969151191446,0.927777777777778,NA,0.0847356206088226,0.581717451523546,58.1717451523546,2,97.6037665180732,0.969428024593079,57.617728531856,0,0,394.77202351888,393.894805908203,0.968533425541829
+324,303574,3798298,303674,3798198,23,3,83.3795013850416,0.812519448305414,35.2914850958269,0.908637873754153,NA,0.000642105483294721,0.171745152354571,17.1745152354571,2,90.0322194015748,0.877028366158801,16.3434903047091,3.65430774227265,0,395.490772247314,394.995056152344,0.644130243724482
+325,303574,3798198,303674,3798098,24,3,20.4986149584488,0.0998778059378748,12.2378273488592,0.685259856630824,15.5867256623399,-0.0187685649274136,0.0775623268698061,7.75623268698061,3,76.5895944769416,0.807273940607274,5.81717451523546,21.4773400681359,7.34765291213989,395.45334370931,395.07666015625,0.386333026864218
+326,303574,3798098,303674,3797998,25,3,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,-0.0392747086290336,0,0,0,NA,NA,0,NA,NA,395.703401565552,395.59619140625,0.109496650785362
+327,303574,3797998,303674,3797898,26,3,67.590027700831,0.658653639157877,33.0536064250639,0.887978142076503,NA,-0.0449376780337556,0,0,0,NA,NA,0,NA,NA,395.551084518433,395.252838134766,0.207028541028085
+328,303574,3797898,303674,3797798,27,3,19.9445983379501,0.194356811554783,24.0174223820672,0.761574074074074,NA,-0.0525546235432981,0,0,0,NA,NA,0,NA,NA,395.340408325195,395.102294921875,0.262991295070203
+329,303574,3797798,303674,3797698,28,3,9.14127423822715,0.0222700513239856,6.67969390898914,0.406746031746032,15.5867255064659,-0.0177810963686979,0.146814404432133,14.6814404432133,1,91.0563849165273,1,14.6814404432133,7.61112423662869,0,395.306913375854,395.111999511719,0.201575754669198
+330,303574,3797698,303674,3797598,29,3,58.6842105263158,0.601966235787732,38.1318262511417,0.860986547085202,NA,0.00476231387009121,0.263157894736842,26.3157894736842,2,94.1290777182916,0.803968253968254,25.7894736842105,0.103911504745483,0,395.481043497721,395.278106689453,0.212968110792419
+331,303574,3797598,303674,3797498,30,3,56.786703601108,0.184459010966345,22.2836086963628,0.71121842653387,15.5867255064659,-0.00572949092108963,0.0581717451523546,5.81717451523546,2,73.2316744981545,0.800919117647059,3.601108033241,0.247408344632103,0,396.371538162231,395.496459960938,1.24767443211893
+332,303574,3797498,303674,3797398,31,3,66.4819944598338,0.647856038515944,33.4039474318033,0.900694444444444,NA,-0.0366103548061237,0,0,0,NA,NA,0,NA,NA,398.706568400065,397.774566650391,1.02420936379482
+333,303574,3797398,303674,3797298,32,3,80.0554016620499,0.780126646379616,34.0778191065715,0.92156862745098,NA,-0.0457810008268795,0,0,0,NA,NA,0,NA,NA,398.002994537354,396.578826904297,1.24860111273691
+334,303574,3797298,303674,3797198,33,3,74.7368421052632,0.766629645577201,34.3878023152338,0.919600938967136,NA,-0.0362567056716408,0.115789473684211,11.5789473684211,1,89.5165340769437,0.938867438867439,11.5789473684211,20.7914743423462,15.5867252349854,398.227508544922,396.303863525391,2.08566248006247
+335,303574,3797198,303674,3797098,34,3,74.2382271468144,0.723439243009471,33.0041312483098,0.913557213930348,NA,-0.019426471313334,0.135734072022161,13.5734072022161,1,90.4761904761905,0.88980463980464,13.5734072022161,17.0061835074911,5.19557523727417,395.960977554321,394.862274169922,1.4588720890006
+336,303574,3797098,303674,3796998,35,3,6.92520775623269,0.0674850040120775,10.8311271554206,0.72,NA,-0.0280310954161164,0,0,0,NA,NA,0,NA,NA,394.982007344564,394.682922363281,0.417394436051612
+337,303574,3796998,303674,3796898,36,3,55.9556786703601,0.545278832417587,33.4396022317287,0.867986798679868,NA,8.11138188031404e-05,0.102493074792244,10.2493074792244,1,88.2023291177678,1,10.2493074792244,25.1943521241884,15.5867252349854,394.04395866394,391.474243164062,1.60144859899793
+338,303574,3796898,303674,3796798,37,3,92.6315789473684,0.950188856490052,38.0092682199688,0.904356060606061,NA,-0.0297203484625482,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,390.791712443034,390.617340087891,0.797901534890746
+339,303574,3796798,303674,3796698,38,3,24.3767313019391,0.118773607061256,20.9093693257483,0.709254267744834,31.1734510129318,0.0146639235132281,0.0166204986149584,1.66204986149584,2,45.2018371240175,0.709456740442656,1.10803324099723,8.91955844561259,5.19557523727417,391.08235168457,390.701446533203,0.427916355528555
+340,303574,3796698,303674,3796598,39,3,6.92520775623269,0.0674850040120775,10.4125253135116,0.733333333333333,NA,0.0203449220085063,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,18.9699705441793,0,391.708543777466,391.217651367188,0.402572537954777
+341,303574,3796598,303674,3796498,40,3,0,NA,NA,NA,NA,0.0258064019364007,0.119113573407202,11.9113573407202,6,73.2486342562793,0.653127183787561,6.92520775623269,43.2653090233027,14.6953058242798,392.15111541748,391.918243408203,0.301365016825
+342,303574,3796498,303674,3796398,41,3,48.4764542936288,0.472395028084543,26.3941404440166,0.896190476190476,NA,0.0120001288828777,0.105263157894737,10.5263157894737,2,85.0983132852866,0.698412698412698,9.14127423822715,16.3386497748526,5.19557523727417,392.459127426147,392.314300537109,0.150707470379131
+343,303574,3796398,303674,3796298,42,3,56.578947368421,0.290185517251933,20.1006622439247,0.751832045949693,10.3911504415599,0.0180202254423038,0.176315789473684,17.6315789473684,4,79.7409138760145,0.730209442669507,6.57894736842105,4.60732857860736,0,392.584299723307,392.551574707031,0.0485419859907519
+344,303574,3796298,303674,3796198,43,3,12.1883656509695,0.0395912023537522,7.92287219357054,0.47922192749779,17.7388033463767,0.0128623813418062,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,18.184513092041,0,392.604089736938,392.559997558594,0.038724843267129
+345,303574,3796198,303674,3796098,44,3,11.3573407202216,0.110675406579807,15.1505739734905,0.719512195121951,NA,0.0219647861441366,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,23.5819484710693,20.7823009490967,392.598052978516,392.555084228516,0.0386392781793918
+346,303574,3796098,303674,3795998,45,3,19.1135734072022,0.0620862036911113,13.1069067883197,0.473045267489712,16.4298513045218,0.0172830737921731,0.21606648199446,21.606648199446,2,92.5650864410763,0.824371383212987,21.0526315789474,3.46517641116411,0,392.520334243774,392.461669921875,0.0737076014209784
+347,303574,3795998,303674,3795898,46,3,20.7894736842105,0.042650522535633,8.65355239421233,0.406763285024155,19.743185703873,0.000449208620890012,0.0184210526315789,1.84210526315789,2,53.6189928746137,0.872654155495979,1.57894736842105,7.3427745274135,0,392.486882527669,392.450012207031,0.0647780487506361
+348,303574,3795898,303674,3795798,47,3,5.26315789473684,0.017096201016393,5.13811371793679,0.261904761904762,49.2895541326396,0.0123073568203251,0,0,0,NA,NA,0,NA,NA,392.574893951416,392.481109619141,0.101707359930894
+349,303574,3795798,303674,3795698,48,3,4.98614958448753,0.0485892028886958,9.44596856072451,0.666666666666667,NA,0.0155541987176578,0.038781163434903,3.8781163434903,4,61.38958682741,0.635878962536023,3.04709141274238,14.8483097553253,0,392.703742980957,392.584808349609,0.166080734548666
+350,303574,3795698,303674,3795598,49,3,4.98614958448753,0.0485892028886958,8.70795519175782,0.675925925925926,NA,0.0256290221562234,0.135734072022161,13.5734072022161,2,88.3806045897272,0.87603021978022,13.0193905817175,46.1704321686102,11.6176595687866,392.877912521362,392.674041748047,0.335277901586292
+351,303574,3795598,303674,3795498,50,3,3.68421052631579,0.0377916022467634,8.88931566577831,0.607142857142857,NA,0.0198522732405476,0.163157894736842,16.3157894736842,4,84.9654065585335,0.8340321453529,12.8947368421053,34.2753163460762,5.19557523727417,393.588757832845,393.143890380859,0.696391692565602
+352,303574,3795498,303674,3795398,51,3,11.3573407202216,0.110675406579807,21.3286440989408,0.682926829268293,NA,0.00626952649988079,0.146814404432133,14.6814404432133,1,91.0563849165273,0.896960182674468,14.6814404432133,38.0899475025681,25.977876663208,394.691736221313,393.989318847656,0.745231243359251
+353,303574,3795398,303674,3795298,52,3,15.5124653739612,0.0755832044935268,16.8656141394417,0.604166666666667,57.1513274285795,-0.0465369764624131,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,35.1400736172994,22.0429573059082,395.460934956868,395.270294189453,0.377594830081492
+354,303574,3795298,303674,3795198,53,3,9.41828254847645,0.0917796054564255,27.1116187039437,0.588235294117647,NA,-0.0682290896697233,0,0,0,NA,NA,0,NA,NA,395.990955352783,395.606689453125,0.540302587619495
+355,303574,3795198,303674,3795098,54,3,15.2631578947368,0.0521884031026733,8.95791302127628,0.661388888888889,15.5867255064659,-0.0429143709980915,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.862691960252936,2.89473684210526,49.0847150629217,41.8880653381348,396.472829818726,396.117065429688,0.496728421738006
+356,303574,3795098,303674,3794998,55,3,33.2409972299169,0.323928019257972,25.8083159575002,0.822222222222222,NA,-0.0784241405581622,0,0,0,NA,NA,0,NA,NA,396.436993916829,396.289855957031,0.256577337255064
+357,303574,3794998,303674,3794898,56,3,75.9002770083102,0.369817821986185,16.7259598332322,0.457875457875458,15.5867256623399,-0.068276003287951,0,0,0,NA,NA,0,NA,NA,396.166400909424,396.026031494141,0.169412531527338
+358,303574,3794898,303674,3794798,57,3,60.9418282548476,0.118773607061256,11.8736838182361,0.428667628667629,14.3693266060762,-0.0206029635685852,0.0554016620498615,5.54016620498615,2,78.056958509412,0.590199602686595,4.98614958448753,9.79266858100891,5.19557523727417,395.915331522624,395.785797119141,0.198236479380127
+359,303574,3794798,303674,3794698,58,3,68.4210526315789,0.350922020862803,17.5385611955074,0.52390180878553,10.3911503376439,-0.0199820990648804,0.0236842105263158,2.36842105263158,3,44.5503582375033,0.40251572327044,0.789473684210526,8.25551684697469,5.19557523727417,395.578462600708,395.128631591797,0.317673315665971
+360,303574,3794698,303674,3794598,59,3,47.6454293628809,0.232148413801547,25.9374675989698,0.748920968212307,15.5867256623399,-0.0109782093614712,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,27.9790287017822,27.9790287017822,395.508575439453,395.110870361328,0.360089479191486
+361,303574,3794598,303674,3794498,60,3,36.2880886426593,0.0884053552558216,12.2608379167053,0.511964563862928,22.1097171260008,0.0258273148958369,0.210526315789474,21.0526315789474,2,88.5615671539578,0.867661691542289,12.7423822714681,12.4088748756208,0,395.832525253296,395.544067382812,0.215944057805876
+362,303574,3794498,303674,3794398,61,3,4.98614958448753,0.012147300722174,4.23988984133822,0.321759259259259,34.8251460092183,0.0357143601707263,0.254847645429363,25.4847645429363,3,89.1498457742944,0.869072445371294,13.2963988919668,22.5327030420303,0,396.03458404541,395.933715820312,0.146616361799406
+363,303574,3794398,303674,3794298,62,3,10.2631578947368,0.0526383031294205,16.9605738834849,0.53525641025641,57.1513274285795,0.0320718204130811,0.25,25,3,89.3678081724326,0.874509803921569,14.4736842105263,32.8862580951891,0,396.271776199341,396.102722167969,0.241184943880859
+364,303574,3794298,303674,3794198,63,3,14.6814404432133,0.0476894028352015,14.0322708748373,0.501674836601307,24.9441716147752,0.0183308128197145,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,42.8190046946208,15.5867252349854,396.829500834147,396.507934570312,0.720497873583075
+365,303574,3794198,303674,3794098,64,3,14.9584487534626,0.0161964009628986,2.93968006747478,0.220566778900112,14.7817296895932,0.0183898811858417,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,8.02952536669645,5.19557523727417,398.302450180054,397.393707275391,0.908313868933875
+366,303574,3794098,303674,3793998,65,3,14.404432132964,0.0280737616690243,7.67062192317075,0.312845849802372,17.6649557506519,0.0106854908856871,0.0304709141274238,3.04709141274238,4,47.804250529389,0.449904761904762,1.38504155124654,9.45374579863115,5.19557523727417,399.148518880208,398.880035400391,0.32147803716234
+367,303574,3793998,303674,3793898,66,3,23.9473684210526,0.122822707301981,26.4787499628694,0.515140845070422,15.5867256623399,0.0179444968981299,0.0526315789473684,5.26315789473684,5,59.4040618076065,0.557347670250896,2.36842105263158,28.9308326721191,5.19557523727417,399.334989547729,399.185211181641,0.208906078749365
+368,303574,3793898,303674,3793798,67,3,40.4432132963989,0.0788224846861066,9.02992273919376,0.426367702448211,13.5084955012867,0.0607940650014903,0.332409972299169,33.2409972299169,4,93.6781572803956,0.8694468765465,31.8559556786704,1.67106999953588,0,399.561922709147,399.299102783203,0.385135915886071
+369,303574,3793798,303674,3793698,68,3,34.3490304709141,0.0557876033166508,8.05262638567157,0.402450980392157,13.8548671947956,0.0351981012627271,0.163434903047091,16.3434903047091,2,86.4887768209731,0.824211141410206,9.41828254847645,5.05213357634464,0,400.488124847412,399.970672607422,0.578475593084528
+370,303574,3793698,303674,3793598,69,3,39.3351800554017,0.1277716075962,19.3219122687233,0.691882191882192,12.1230087792092,0.0216664584931451,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,11.3195694684982,7.34765291213989,401.247453689575,401.008087158203,0.254034708835966
+371,303574,3793598,303674,3793498,70,3,48.4210526315789,0.0827816049214818,13.742050541384,0.543607246019759,11.2570796103846,0.0208757971877946,0.0526315789473684,5.26315789473684,4,58.8058225499651,0.591397849462366,1.84210526315789,4.78362159729004,0,401.379926045736,401.282348632812,0.17929228154291
+372,303574,3793498,303674,3793398,71,3,23.5457063711911,0.0458898027282127,9.83587882711842,0.483669772256729,18.400860982993,0.0182514849822379,0.0498614958448753,4.98614958448753,3,64.8592548457668,0.649173955296404,2.77008310249307,12.5895080831316,5.19557523727417,401.318452835083,401.167297363281,0.288281719341778
+373,303574,3793398,303674,3793298,72,3,14.404432132964,0.0467896027817071,12.2606511395445,0.523611111111111,17.3185839653505,0.00945638615229758,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,30.957852045695,26.4923400878906,401.026522318522,400.505310058594,0.431257441487628
+374,303574,3793298,303674,3793198,73,3,12.4653739612188,0.0242946014443479,6.83782779399282,0.472751322751323,15.5867255792071,0.0114624731572715,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,9.42680803934733,5.19557523727417,400.680198669434,400.200531005859,0.488870287832093
+375,303574,3793198,303674,3793098,74,3,18.4210526315789,0.0314930018723029,7.17406783667889,0.463316993464052,18.5043154724196,0.0154862106537196,0.0763157894736842,7.63157894736842,2,77.8610107442377,0.792689579923622,4.47368421052632,13.6875737946609,0,400.291381835938,400.081329345703,0.325973638472013
+376,303574,3793098,303674,3792998,75,3,22.9916897506925,0.112025106660049,25.7688519139084,0.627039627039627,10.3911504415599,0.00681130323820497,0,0,0,NA,NA,0,NA,NA,400.14621925354,399.980133056641,0.237190755066615
+377,303574,3792998,303674,3792898,76,3,24.9307479224377,0.0809820048144931,16.3975466067091,0.507786762503744,12.1230087965286,0.00475273108193233,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,3.03075222174327,0,400.055432637533,399.909515380859,0.232690249894445
+378,303574,3792898,303674,3792798,77,3,28.2548476454294,0.275338816369276,26.4515942587272,0.71078431372549,NA,0.0105628892937366,0.07202216066482,7.20221606648199,5,65.9165872886942,0.658318165271205,4.15512465373961,37.9634787852948,0,400.004190444946,399.846710205078,0.291656911298011
+379,303574,3792798,303674,3792698,78,3,31.8421052631579,0.108875806472818,16.7035961483975,0.695675029868578,10.7999867220173,0.0118839196199827,0.0894736842105263,8.94736842105263,3,75.5855429263361,0.666597853014038,4.47368421052632,13.8162898175857,0,399.948234558105,399.797393798828,0.237770404307268
+380,303574,3792698,303674,3792598,79,3,24.9307479224377,0.0485892028886958,8.60185438530211,0.539729225023343,10.3911503376439,0.0151975851662922,0.10803324099723,10.803324099723,5,69.9661241648727,0.499808886765409,3.8781163434903,10.652754404606,0,399.956062316895,399.76953125,0.372397710693745
+381,303574,3792598,303674,3792498,80,3,43.213296398892,0.210553212517682,23.586432382569,0.728404698186143,15.5867256623399,0.0209748400850905,0.213296398891967,21.3296398891967,3,87.8932728920179,0.728950911350456,14.404432132964,7.6120815029392,0,399.875709533691,399.737609863281,0.241095428689142
+382,303574,3792498,303674,3792398,81,3,43.213296398892,0.105276606258841,8.23151074367481,0.416570881226054,14.0237553594492,0.036735447338741,0.229916897506925,22.9916897506925,2,93.1288938114304,0.770322517496207,22.4376731301939,9.24494550888797,0,399.786193847656,399.695526123047,0.142595249551777
+383,303574,3792398,303674,3792298,82,3,12.6315789473684,0.0431904025677296,5.77319064368761,0.334175084175084,19.0504423895965,0.0219520091981011,0.121052631578947,12.1052631578947,3,79.0223652302339,0.781206817134961,6.57894736842105,18.2043607545936,0,399.778917948405,399.697418212891,0.118425337187747
+384,303574,3792298,303674,3792198,83,3,50.9695290858726,0.165563209842964,20.8468784014758,0.60016583747927,10.3911503722826,0.0621368909908337,0.703601108033241,70.3601108033241,1,98.9324109457639,0.709396842849289,70.3601108033241,3.49551107939773,0,399.917980194092,399.744842529297,0.229648001331587
+385,303574,3792198,303674,3792098,84,3,50.1385041551247,0.0977182858094883,11.8276993513501,0.505246913580247,11.4302654441495,0.0516027618980634,0.554016620498615,55.4016620498615,5,96.1002558867121,0.782424536672749,52.0775623268698,3.88703421592712,0,400.13468170166,399.88427734375,0.321948885892408
+386,303574,3792098,303674,3791998,85,3,40.1662049861496,0.0978532558175124,13.0349799853342,0.438206837518157,11.996671457098,0.035014072022355,0.357340720221607,35.7340720221607,2,95.1526109412079,0.79473587674248,34.3490304709141,8.44537855118744,0,400.196044921875,400.024383544922,0.238348034010532
+387,303574,3791998,303674,3791898,86,3,44.4736842105263,0.456198627121644,33.1091599596931,0.738658777120316,NA,0.0327846755175606,0.407894736842105,40.7894736842105,2,94.787874444019,0.691851851851852,31.8421052631579,5.32456596743676,0,400.255731582642,400.069702148438,0.238087658281366
+388,303574,3791898,303674,3791798,87,3,33.7950138504155,0.0658653639157877,11.9382924860707,0.516856725146199,13.2052858765206,0.0320169418116879,0.343490304709141,34.3490304709141,2,94.5369744857114,0.76305672761369,30.7479224376731,6.78601047685069,0,400.310872395833,400.153625488281,0.230288968722279
+389,303574,3791798,303674,3791698,88,3,23.5457063711911,0.0573622534102659,9.44407996403623,0.494837962962963,11.6900441558284,0.0335227091234936,0.310249307479224,31.0249307479224,5,89.4759030268612,0.770328840112927,22.9916897506925,13.3640148809978,0,400.844129562378,400.428985595703,0.446964405867934
+390,303574,3791698,303674,3791598,89,3,18.2825484764543,0.0296934017653141,5.24348189253395,0.357082732082732,19.6680632011274,0.0410833229583145,0.357340720221607,35.7340720221607,6,88.1909144946126,0.741764490095378,20.4986149584488,11.7732524760934,0,401.525517781576,401.281311035156,0.354078541785687
+391,303574,3791598,303674,3791498,90,3,22.3684210526316,0.0458898027282127,10.3513461827475,0.563693181818182,12.4693805298719,0.0298860359589238,0.165789473684211,16.5789473684211,5,82.1883377897038,0.705764267278463,8.42105263157895,13.7267248744056,0,402.165332794189,401.839935302734,0.464779834994674
+392,303574,3791498,303674,3791398,91,3,27.7008310249307,0.0385628594354729,8.32133202902714,0.526221696408032,13.6557126209998,0.0333012341350726,0.210526315789474,21.0526315789474,6,80.7915078497373,0.669154228855721,9.69529085872576,7.92453272091715,0,402.950945536296,402.557769775391,0.673690610509767
+393,303574,3791398,303674,3791298,92,3,23.8227146814404,0.116074206900773,24.7673389321683,0.531202865761689,10.3911504415599,0.031679039730573,0.213296398891967,21.3296398891967,4,83.8248329690714,0.747643951946976,8.58725761772853,8.68543775360306,0,403.957782745361,403.415435791016,0.575673164587074
+394,303574,3791298,303674,3791198,93,3,12.4653739612188,0.0404910024072465,15.5406819989539,0.430733618233618,15.5867256623399,0.0314530949322752,0.240997229916898,24.0997229916898,2,92.9316681357232,0.846997880857076,23.2686980609418,7.15606438428506,0,404.366152445475,404.115661621094,0.210140274389995
+395,303574,3791198,303674,3791098,94,3,19.2105263157895,0.0394112423430533,9.40313937154125,0.443466810966811,11.4302654441495,0.0376923889601082,0.344736842105263,34.4736842105263,3,94.394168521745,0.853136394952194,32.8947368421053,8.3972556245236,0,404.359760284424,404.177825927734,0.153911258067855
+396,303574,3791098,303674,3790998,95,3,14.404432132964,0.0280737616690243,6.14860423312261,0.461580086580087,19.439976079107,0.0407854515234901,0.3601108033241,36.01108033241,6,89.8515293373807,0.749429192467167,25.7617728531856,13.3160563505613,0,404.098004659017,403.861877441406,0.26234136405222
+397,303574,3790998,303674,3790898,96,3,31.0249307479224,0.0755832044935269,12.1089891835083,0.453822412155745,14.2878318051869,0.0398790194266744,0.462603878116344,46.2603878116344,1,97.3874214343619,0.915417057169635,46.2603878116344,6.89680572898088,0,403.698360443115,403.452056884766,0.271730638169369
+398,303574,3790898,303674,3790798,97,3,19.3905817174515,0.0377916022467634,8.80797355887121,0.435761874059746,11.4302654857159,0.0354420438498662,0.412742382271468,41.2742382271468,1,96.9081075056324,0.912675374939526,41.2742382271468,12.4102812645419,0,403.287793477376,403.063720703125,0.293988707933026
+399,303574,3790798,303674,3790698,98,3,11.0526315789474,0.11337480674029,14.6379623896887,0.738095238095238,NA,0.027083106567906,0.239473684210526,23.9473684210526,2,93.0686904994706,0.94318424537571,23.4210526315789,10.7950714499086,0,402.824621200562,402.618011474609,0.242935394811968
+400,303574,3790698,303674,3790598,99,3,21.0526315789474,0.0683848040655719,12.1468959611072,0.579365079365079,14.6725398628007,0.0585885443485564,0.552631578947368,55.2631578947368,1,98.0267498837932,0.955294117647059,55.2631578947368,12.1161126535406,0,402.714347839355,402.599060058594,0.102625801413402
+401,303674,3800598,303774,3800498,0,4,13.5734072022161,0.132270607863672,17.476011701285,0.727891156462585,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.561803181966,383.285186767578,0.280562832711844
+402,303674,3800498,303774,3800398,1,4,1.57894736842105,0.0161964009628986,5.14509030281621,0.444444444444444,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.693366156684,383.633117675781,0.0953927559490152
+403,303674,3800398,303774,3800298,2,4,44.3213296398892,0.431904025677296,32.3265208589687,0.851041666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.735206604004,383.679260253906,0.0602142222197514
+404,303674,3800298,303774,3800198,3,4,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.881062825521,383.819519042969,0.125024288492665
+405,303674,3800198,303774,3800098,4,4,10.5263157894737,0.034192402032786,7.31851765347959,0.583950617283951,13.8548671861359,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.134925842285,384.003265380859,0.16321628810469
+406,303674,3800098,303774,3799998,5,4,6.31578947368421,0.0647856038515944,12.0766778586853,0.6875,NA,-0.00120163980203583,0.0328947368421053,3.28947368421053,1,60.1581072775551,1,3.28947368421053,10.8885838508606,7.34765291213989,384.436418321398,384.336059570312,0.1947729962546
+407,303674,3799998,303774,3799898,6,4,7.75623268698061,0.0755832044935268,12.3792526555087,0.720238095238095,NA,-0.00620125342318242,0,0,0,NA,NA,0,NA,NA,384.758514404297,384.599212646484,0.213846691715707
+408,303674,3799898,303774,3799798,7,4,0,NA,NA,NA,NA,-0.0028350742310808,0,0,0,NA,NA,0,NA,NA,385.141259087457,384.922943115234,0.352101991060424
+409,303674,3799798,303774,3799698,8,4,10.2493074792244,0.0998778059378748,12.8957319701468,0.743243243243243,NA,-0.00400594078136819,0,0,0,NA,NA,0,NA,NA,385.744928995768,385.379180908203,0.461702207793502
+410,303674,3799698,303774,3799598,9,4,16.5789473684211,0.0566874033701451,12.7198961553143,0.440076869322152,20.1880209813156,-0.00354544586072351,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,3.1173451423645,0,386.019931369358,385.812469482422,0.303988396322249
+411,303674,3799598,303774,3799498,10,4,62.6038781163435,0.305032218134591,27.72313711326,0.824392050902118,27.9790285905554,0.00145763277419505,0,0,0,NA,NA,0,NA,NA,385.957448323568,385.86279296875,0.157555314551326
+412,303674,3799498,303774,3799398,11,4,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0436728259115132,0.310249307479224,31.0249307479224,5,87.879453793639,0.777506063859398,19.9445983379501,0,0,385.81113688151,385.736236572266,0.0900357811171825
+413,303674,3799398,303774,3799298,12,4,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0323096820462232,0.188365650969529,18.8365650969529,6,77.4791800306838,0.741159262339748,8.58725761772853,0,0,385.736931694878,385.681488037109,0.0991939518137426
+414,303674,3799298,303774,3799198,13,4,73.6842105263158,0.755832044935269,39.8331673920267,0.884523809523809,NA,0.0257997685041214,0.0289473684210526,2.89473684210526,4,48.5890104469681,0.588075880758808,1.84210526315789,5.06085712259466,0,385.801363627116,385.688934326172,0.141546484172295
+415,303674,3799198,303774,3799098,14,4,57.617728531856,0.187158411126828,15.8287639074579,0.657319528329019,14.6725397470507,0.0313713775087958,0.152354570637119,15.2354570637119,4,81.4671720791714,0.813725490196078,11.3573407202216,5.06405148072676,0,386.107984754774,385.976440429688,0.256589221985188
+416,303674,3799098,303774,3798998,15,4,58.4487534626039,0.284786716930967,23.3681468390868,0.713612565445026,21.4219054085159,0.0132360559244695,0.074792243767313,7.4792243767313,5,63.0466006144717,0.597827600612728,3.32409972299169,8.48053875675908,0,386.571034749349,386.368865966797,0.276806639556611
+417,303674,3798998,303774,3798898,16,4,78.1163434903047,0.761230845256235,38.8519726378174,0.840425531914894,NA,0.0621194976001109,0.562326869806094,56.2326869806094,2,97.7767720257621,0.793942853305577,55.6786703601108,1.44442432854563,0,387.050740559896,386.839172363281,0.315844153851516
+418,303674,3798898,303774,3798798,17,4,98.1578947368421,1.0068762598602,38.4657835178808,0.928954423592493,NA,0.0362827200315415,0.210526315789474,21.0526315789474,4,88.2475652152456,0.750234741784038,16.3157894736842,0.351624423265457,0,387.463088989258,387.300323486328,0.251505569666839
+419,303674,3798798,303774,3798698,18,4,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.020489326327479,0.0609418282548476,6.09418282548476,3,68.8643028906557,0.749436057608884,3.8781163434903,0,0,387.840691460503,387.677185058594,0.374242399336294
+420,303674,3798698,303774,3798598,19,4,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0145884752882039,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,388.874659220378,388.133544921875,0.946087275325178
+421,303674,3798598,303774,3798498,20,4,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.073799252295944,0.595567867036011,59.5567867036011,1,98.3567264167006,0.913458904109589,59.5567867036011,0,0,390.967258029514,389.875091552734,1.81571963814412
+422,303674,3798498,303774,3798398,21,4,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0203382228763076,0.0947368421052632,9.47368421052632,4,72.8847431885324,0.742248062015504,4.21052631578947,0,0,393.248697916667,392.055053710938,1.31532356671753
+423,303674,3798398,303774,3798298,22,4,81.1634349030471,0.790924247021549,34.7907221593154,0.911831626848692,NA,0.0185936243825404,0.0581717451523546,5.81717451523546,2,73.1227084751741,0.734558823529412,3.8781163434903,6.68002528236026,0,394.564473470052,393.909027099609,0.711850018253697
+424,303674,3798298,303774,3798198,23,4,13.5734072022161,0.066135303931836,10.4416198993015,0.696811868686869,31.1734510129318,0.0820722513292965,0.806094182825485,80.6094182825485,1,99.3677793036386,0.811439018020371,80.6094182825485,23.2123576308444,0,395.061464945475,394.839904785156,0.364141998243268
+425,303674,3798198,303774,3798098,24,4,0.277008310249307,0.0026994001604831,0,0,NA,0.004282478505692,0.204986149584488,20.4986149584488,2,88.240212478429,0.854864647547574,15.7894736842105,49.1578339434959,0,395.200798882378,394.910980224609,0.423277955013863
+426,303674,3798098,303774,3797998,25,4,48.9473684210526,0.502088429849857,31.4747649124564,0.875448028673835,NA,-0.0810664859836259,0,0,0,NA,NA,0,NA,NA,395.600588480632,395.540740966797,0.107508380920189
+427,303674,3797998,303774,3797898,26,4,38.781163434903,0.377916022467634,27.7746859739889,0.865476190476191,NA,-0.0109689675383477,0,0,0,NA,NA,0,NA,NA,395.316090901693,395.090362548828,0.242427506207348
+428,303674,3797898,303774,3797798,27,4,0,NA,NA,NA,NA,-0.0414352991777924,0,0,0,NA,NA,0,NA,NA,395.019334581163,394.948211669922,0.122294230865961
+429,303674,3797798,303774,3797698,28,4,48.1994459833795,0.46969562792406,28.0637346181378,0.881226053639847,NA,-0.0485353988865918,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,0,0,395.082913716634,394.948059082031,0.12598421634396
+430,303674,3797698,303774,3797598,29,4,93.9473684210526,0.963685857292467,37.6424167985822,0.9234360410831,NA,-0.0573047348739285,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.745308310991957,1.84210526315789,0,0,395.27431233724,395.201812744141,0.128797110348747
+431,303674,3797598,303774,3797498,30,4,25.4847645429363,0.0827816049214818,18.5480785732863,0.591284815813118,17.3185838960732,-0.0530874830978948,0,0,0,NA,NA,0,NA,NA,396.114395141602,395.347717285156,1.23274361641258
+432,303674,3797498,303774,3797398,31,4,0,NA,NA,NA,NA,-0.117984696741186,0,0,0,NA,NA,0,NA,NA,398.036729600694,397.586456298828,0.815505925287379
+433,303674,3797398,303774,3797298,32,4,0,NA,NA,NA,NA,-0.00838289846752783,0,0,0,NA,NA,0,NA,NA,398.115976969401,396.852111816406,1.51743237741793
+434,303674,3797298,303774,3797198,33,4,0,NA,NA,NA,NA,-0.00216141228447668,0.394736842105263,39.4736842105263,1,96.8008110192232,0.99399209486166,39.4736842105263,54.4878864542643,27.9790287017822,396.188822428385,395.412170410156,1.22724496297385
+435,303674,3797198,303774,3797098,34,4,0,NA,NA,NA,NA,-0.000793217647125122,0.445983379501385,44.5983379501385,1,97.2366123785873,0.993902027027027,44.5983379501385,48.8954653888015,20.7823009490967,395.02104695638,394.65087890625,0.732924129046751
+436,303674,3797098,303774,3796998,35,4,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,-0.039835325962153,0,0,0,NA,NA,0,NA,NA,394.473327636719,394.297027587891,0.291245782932494
+437,303674,3796998,303774,3796898,36,4,80.0554016620499,0.780126646379616,34.7881594661195,0.897923875432526,NA,0.00622866113287709,0.0304709141274238,3.04709141274238,3,55.716992547311,0.518666666666667,1.93905817174515,0,0,393.432304382324,391.957702636719,1.35674596926921
+438,303674,3796898,303774,3796798,37,4,29.4736842105263,0.0755832044935268,12.2263668128093,0.383087474120083,21.1021030419019,0.0101754544329986,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,10.3911504745483,10.3911504745483,391.564466688368,391.197814941406,0.691431106524884
+439,303674,3796798,303774,3796698,38,4,23.5457063711911,0.229449013641064,25.3976762275406,0.805882352941176,NA,0.00459943482456158,0,0,0,NA,NA,0,NA,NA,391.855346679688,391.306915283203,0.61528030796083
+440,303674,3796698,303774,3796598,39,4,0,NA,NA,NA,NA,0.00834923326764211,0,0,0,NA,NA,0,NA,NA,392.294492085775,391.926300048828,0.488312407737725
+441,303674,3796598,303774,3796498,40,4,0,NA,NA,NA,NA,0.0076674003051007,0,0,0,NA,NA,0,NA,NA,392.599029541016,392.321105957031,0.432009835125627
+442,303674,3796498,303774,3796398,41,4,0,NA,NA,NA,NA,0.022189045996814,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,39.5683212280273,39.5683212280273,392.755373636882,392.538299560547,0.38253278197239
+443,303674,3796398,303774,3796298,42,4,0,NA,NA,NA,NA,0.0278144584714411,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,26.4781646728516,25.977876663208,392.733530680339,392.591247558594,0.352705408301196
+444,303674,3796298,303774,3796198,43,4,2.77008310249307,0.026994001604831,7.39964424319384,0.533333333333333,NA,0.0175244499336047,0.0304709141274238,3.04709141274238,3,54.1555710798866,0.587428571428571,1.66204986149584,32.7215733094649,10.3911504745483,392.717999776204,392.585845947266,0.393983271216588
+445,303674,3796198,303774,3796098,44,4,2.49307479224377,0.0242946014443479,6.66837224033792,0.537037037037037,NA,0.0266089195047294,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,35.1327386856079,10.3911504745483,392.847781711155,392.582061767578,0.714622181334703
+446,303674,3796098,303774,3795998,45,4,11.3573407202216,0.0553377032899036,14.0293286063854,0.536111111111111,15.5867256623399,0.0195497870279779,0.119113573407202,11.9113573407202,5,82.7636060507854,0.700428022361985,10.2493074792244,12.8577452371287,5.19557523727417,392.764859517415,392.327606201172,0.735481389803957
+447,303674,3795998,303774,3795898,46,4,20.2631578947368,0.0415707624714398,9.54573140026741,0.434444444444444,21.8214157610102,0.0176984402257762,0.0315789473684211,3.15789473684211,4,47.1072025586818,0.453324808184143,1.05263157894737,7.03248846530914,5.19557523727417,392.662706163194,392.498107910156,0.45612598928221
+448,303674,3795898,303774,3795798,47,4,16.3434903047091,0.0318529218937006,9.41074896744455,0.346558265582656,25.9778758773629,0.0170998407291164,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,15.5867254734039,10.3911504745483,392.705825805664,392.544799804688,0.40874116456066
+449,303674,3795798,303774,3795698,48,4,30.4709141274238,0.0742335044132853,14.2768714861052,0.526653439153439,14.6029963149775,0.00149926397361898,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,9.81386433707343,5.19557523727417,392.841535780165,392.673828125,0.482605100539748
+450,303674,3795698,303774,3795598,49,4,23.8227146814404,0.0773828046005156,13.0354975758686,0.479407739206171,25.9778760346225,0.0116173739076161,0.0304709141274238,3.04709141274238,3,54.8537073680638,0.518666666666667,1.66204986149584,10.3911504745483,10.3911504745483,393.136881510417,392.811065673828,0.745518535020842
+451,303674,3795598,303774,3795498,50,4,18.9473684210526,0.0485892028886958,13.7435857503015,0.386111111111111,20.7823008831198,0.00914693848771525,0.0289473684210526,2.89473684210526,2,60.5719561857418,0.588075880758808,1.57894736842105,11.3662631294944,10.3911504745483,394.05505710178,393.323455810547,1.07017781754388
+452,303674,3795498,303774,3795398,51,4,65.6509695290859,0.319878919017248,27.3488552095334,0.816965005644251,10.3911504415599,-0.0783718269628286,0,0,0,NA,NA,0,NA,NA,395.290301005046,394.557098388672,0.708428581000232
+453,303674,3795398,303774,3795298,52,4,79.5013850415512,0.77472784605865,34.2823445608715,0.911149825783972,NA,-0.116787961239225,0,0,0,NA,NA,0,NA,NA,395.878455268012,395.578765869141,0.459253855221709
+454,303674,3795298,303774,3795198,53,4,56.5096952908587,0.550677632738553,39.1643875053121,0.814542483660131,NA,-0.0483262093846236,0,0,0,NA,NA,0,NA,NA,396.045977274577,395.807769775391,0.375204433597161
+455,303674,3795198,303774,3795098,54,4,21.8421052631579,0.112025106660049,16.3594470357649,0.503472222222222,63.2069005355288,-0.0415472351940192,0.0368421052631579,3.68421052631579,3,58.2564699840793,0.688524590163934,1.84210526315789,19.0452682631356,10.3911504745483,396.240226745605,396.034088134766,0.368871643759024
+456,303674,3795098,303774,3794998,55,4,50.415512465374,0.245645414603962,19.8600846161789,0.708083832335329,14.6953058096335,-0.0740648053717962,0.0470914127423823,4.70914127423823,3,64.8357914677872,0.748139534883721,3.32409972299169,10.527755204369,5.19557523727417,396.588229709201,396.364196777344,0.439988270047369
+457,303674,3794998,303774,3794898,56,4,18.2825484764543,0.0890802052959424,13.8977636689295,0.635964912280702,64.2657162255477,-0.018795476099631,0.0554016620498615,5.54016620498615,4,58.7065959810488,0.590199602686595,2.21606648199446,28.364791059494,0,396.652984619141,396.235015869141,0.767949575255506
+458,303674,3794898,303774,3794798,57,4,18.2825484764543,0.0445401026479712,9.8493536350152,0.327424242424242,18.7977676284685,0.00327014929355848,0.0581717451523546,5.81717451523546,3,68.2126568030286,0.800919117647059,4.15512465373961,25.4990159897577,10.3911504745483,396.356038411458,396.036499023438,0.680438110248285
+459,303674,3794798,303774,3794698,58,4,27.8947368421053,0.0572272834022418,11.2350252391036,0.419466089466089,15.4891676264786,0.0170787052050735,0.0236842105263158,2.36842105263158,3,47.4332757019335,0.573225516621743,1.05263157894737,7.30283212661743,0,395.970456441243,395.836212158203,0.223966968709056
+460,303674,3794698,303774,3794598,59,4,73.9612188365651,0.240246614282996,14.3851532495005,0.499729788153913,13.17173789651,-0.0240839400383195,0,0,0,NA,NA,0,NA,NA,395.917236328125,395.831146240234,0.132307692856979
+461,303674,3794598,303774,3794498,60,4,63.7119113573407,0.206954012303704,15.4271642060542,0.602907032409402,10.3911503376439,-0.0479669370577242,0,0,0,NA,NA,0,NA,NA,396.090370178223,395.941497802734,0.196898201509758
+462,303674,3794498,303774,3794398,61,4,34.0720221606648,0.0830065549348554,19.0583930242668,0.525485657225853,16.8856194675349,-0.0420080720610471,0,0,0,NA,NA,0,NA,NA,396.329260932075,396.146850585938,0.300362005551278
+463,303674,3794398,303774,3794298,62,4,3.94736842105263,0.0202455012036233,6.10245079931713,0.409722222222222,77.2377780644721,0.0159942213307276,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,70.8902206420898,67.54248046875,396.775512695312,396.349639892578,0.599623192552406
+464,303674,3794298,303774,3794198,63,4,19.1135734072022,0.0465646527683335,9.66982183924776,0.443815449476404,16.4399094502552,0.0166606646706394,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,27.8176393508911,20.7823009490967,397.805759006076,397.026428222656,1.13416586273294
+465,303674,3794198,303774,3794098,64,4,21.0526315789474,0.0512886030491789,14.1547363295045,0.528194444444444,18.1845131298454,0.0130242916139119,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,15.7443613211314,7.34765291213989,399.429481506348,398.637542724609,0.971423365680115
+466,303674,3794098,303774,3793998,65,4,27.9778393351801,0.0681598540521983,12.5514503083404,0.558494316619935,16.8856193376399,0.0154789339497904,0.0332409972299169,3.32409972299169,2,63.7874511601681,0.756615540198888,2.21606648199446,24.9671456019084,18.7329120635986,399.825792100694,399.420288085938,0.597101457278961
+467,303674,3793998,303774,3793898,66,4,6.05263157894737,0.0620862036911113,27.0692477014945,0.369565217391304,NA,0.0219113551346182,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,11.4302654266357,10.3911504745483,399.817690531413,399.610168457031,0.410792928812515
+468,303674,3793898,303774,3793798,67,4,5.81717451523546,0.0283437016850726,8.03459473820097,0.254166666666667,31.1734510129318,0.0237881285540722,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,17.388525554112,11.6176595687866,399.94721476237,399.660797119141,0.350728999125678
+469,303674,3793798,303774,3793698,68,4,13.2963988919668,0.0431904025677296,6.91586334961347,0.379198966408269,30.3191820156241,0.0338440438273535,0.168975069252078,16.8975069252078,2,90.7567276146515,0.93188679245283,16.6204986149584,12.0124835889848,0,400.594118754069,400.109649658203,0.569941400134049
+470,303674,3793698,303774,3793598,69,4,11.9113573407202,0.116074206900773,21.4656112816318,0.689922480620155,NA,0.0169035429882262,0.0498614958448753,4.98614958448753,2,70.6058026354122,0.72713529856387,3.32409972299169,15.1235378053453,10.3911504745483,401.418950398763,401.116088867188,0.323264303570693
+471,303674,3793598,303774,3793498,70,4,43.1578947368421,0.221350813159614,25.5471464160562,0.769914215686275,10.3911504415599,0.0137802383948981,0.0236842105263158,2.36842105263158,2,59.10066639958,0.658580413297394,1.84210526315789,6.82838699552748,5.19557523727417,401.546573215061,401.381683349609,0.277060312091787
+472,303674,3793498,303774,3793398,71,4,22.9916897506925,0.0560125533300244,9.14999348229998,0.473958333333333,18.5043154409154,0.0116408410120935,0.0692520775623269,6.92520775623269,2,78.4475512410027,0.865699404761905,5.81717451523546,13.8166150093079,7.34765291213989,401.763071695964,401.564819335938,0.444827740368357
+473,303674,3793398,303774,3793298,72,4,14.1274238227147,0.0458898027282127,9.64346649068551,0.535390946502058,22.0425386765878,0.0047314621845738,0.0609418282548476,6.09418282548476,3,69.4587181507612,0.655474579212216,3.04709141274238,12.0494628602808,5.19557523727417,401.834092881944,401.526245117188,0.441106471033625
+474,303674,3793298,303774,3793198,73,4,40.1662049861496,0.195706511635025,20.9167647677124,0.805353959765724,10.3911503376439,0.057952657429188,0.357340720221607,35.7340720221607,4,93.9248072417829,0.867571533382245,34.0720221606648,4.69677081218986,0,401.517285664876,401.196929931641,0.602997288081447
+475,303674,3793198,303774,3793098,74,4,28.6842105263158,0.294234617492658,26.5954619648966,0.770642201834862,NA,0.0216289931972585,0.0631578947368421,6.31578947368421,5,61.2333683854934,0.550561797752809,2.36842105263158,8.24028939008713,0,400.818715413411,400.573181152344,0.33378056846277
+476,303674,3793098,303774,3792998,75,4,37.1191135734072,0.361719621504736,25.2376267203435,0.851990049751244,NA,0.0152163777688316,0.10803324099723,10.803324099723,2,82.1686128360378,0.689536550406116,6.37119113573407,11.1149940246191,0,400.757031758626,400.472808837891,0.403602039490971
+477,303674,3792998,303774,3792898,76,4,14.9584487534626,0.0364419021665219,8.44687885440673,0.52578431372549,23.3800883246463,0.0235663807146205,0.0831024930747922,8.31024930747922,6,64.6125789728397,0.554843085270362,3.04709141274238,11.8158536752065,0,400.873111300998,400.387908935547,0.814503384724669
+478,303674,3792898,303774,3792798,77,4,6.64819944598338,0.0161964009628986,5.74119577051343,0.402777777777778,37.7142502000965,0.0165328451563618,0.0470914127423823,4.70914127423823,5,55.6457885916418,0.496279069767442,2.49307479224377,22.051157839158,5.19557523727417,401.248601277669,400.418090820312,1.40367732674121
+479,303674,3792798,303774,3792698,78,4,21.3157894736842,0.0728838043330438,10.9407132100872,0.517231638418079,46.5671506027162,0.0158850582591472,0.0842105263157895,8.42105263157895,1,86.7737288361143,0.853006189213086,8.42105263157895,9.12260408699512,5.19557523727417,400.97353108724,400.295623779297,1.51238865993591
+480,303674,3792698,303774,3792598,79,4,6.64819944598338,0.0323928019257972,7.7631617369959,0.573426573426573,46.7601769870196,0.0214408707975268,0.116343490304709,11.6343490304709,2,85.3470604404428,0.697161022561703,9.97229916897507,18.3225580737704,5.19557523727417,401.512326558431,400.631195068359,1.36928381750925
+481,303674,3792598,303774,3792498,80,4,18.2825484764543,0.0890802052959423,11.3305366271313,0.383333333333333,20.7823006752878,0.0277553373453378,0.146814404432133,14.6814404432133,7,79.6366557172805,0.574960753532182,9.97229916897507,25.1585879055959,0,400.948316786024,400.138305664062,1.44215837018485
+482,303674,3792498,303774,3792398,81,4,21.8836565096953,0.106626306339083,19.4983886867897,0.677498927498928,11.6176592829322,0.0371163721122022,0.246537396121884,24.6537396121884,8,79.5449640792638,0.641070107288198,9.14127423822715,13.4515437276176,0,400.373616536458,399.927795410156,0.804118045866051
+483,303674,3792398,303774,3792298,82,4,5.52631578947368,0.0566874033701451,9.31547048012884,0.714285714285714,NA,0.0166956783548238,0.0763157894736842,7.63157894736842,4,68.925624786854,0.677517124325635,3.15789473684211,42.2262014849433,5.19557523727417,400.047871907552,399.920043945312,0.241441826015356
+484,303674,3792298,303774,3792198,83,4,3.04709141274238,0.0296934017653141,7.61241508968522,0.560606060606061,NA,0.0226152608763824,0.127423822714681,12.7423822714681,7,70.5330514630153,0.52983312983313,4.43213296398892,28.1919441637786,10.3911504745483,400.453684488932,400.093109130859,0.440950460548551
+485,303674,3792198,303774,3792098,84,4,23.2686980609418,0.0566874033701451,10.3038006082117,0.45347725774555,18.7977675869021,0.0435835575117582,0.321329639889197,32.1329639889197,7,86.5314837537104,0.684256559766764,15.5124653739612,6.41030893654659,0,400.974161783854,400.582183837891,0.558059295188923
+486,303674,3792098,303774,3791998,85,4,19.1135734072022,0.0465646527683335,7.80458802968205,0.401585297418631,27.0418413932871,0.0292123590463884,0.130193905817175,13.0193905817174,6,72.4727393174753,0.698208598726115,6.64819944598338,8.31495735493112,0,400.917721218533,400.532684326172,0.580325939208456
+487,303674,3791998,303774,3791898,86,4,34.4736842105263,0.117873807007762,10.6590121411237,0.251507321274763,16.404398136658,0.0356973945999543,0.344736842105263,34.4736842105263,5,88.7226301141848,0.712658164036901,20.2631578947368,5.63690390113656,0,400.814598083496,400.592437744141,0.388946083606885
+488,303674,3791898,303774,3791798,87,4,26.3157894736842,0.0641107538114737,11.3654740557279,0.341286799620133,17.6721661056442,0.028188608090975,0.213296398891967,21.3296398891967,1,93.5263835959271,0.775683512841756,21.3296398891967,4.93541388697438,0,400.752505832248,400.509521484375,0.374283775857805
+489,303674,3791798,303774,3791698,88,4,2.77008310249307,0.0134970008024155,6.18520853431186,0.253968253968254,36.3690261817537,0.0257768054068801,0.168975069252078,16.8975069252078,3,86.752672324023,0.784308176100629,14.404432132964,37.6391073445805,0,401.030962626139,400.746643066406,0.26203813919169
+490,303674,3791698,303774,3791598,89,4,0,NA,NA,NA,NA,0.0231700440781827,0.130193905817175,13.0193905817174,4,79.3648190881829,0.583240445859873,7.75623268698061,35.953617177111,5.19557523727417,401.427086724175,401.218383789062,0.343638909547286
+491,303674,3791598,303774,3791498,90,4,3.42105263157895,0.0116974006954268,3.24175269316786,0.244444444444444,17.8806677614438,0.0436454110168125,0.352631578947368,35.2631578947368,3,95.0752452327159,0.892376382780221,34.4736842105263,26.4349900288368,0,402.23922475179,401.740936279297,0.737237216459868
+492,303674,3791498,303774,3791398,91,4,12.7423822714681,0.124172407382223,20.9044425141423,0.721014492753623,NA,0.0254779616577184,0.132963988919668,13.2963988919668,3,85.8616569715617,0.789020494038806,11.9113573407202,11.8914512693882,0,403.830393473307,402.956909179688,0.987182231084201
+493,303674,3791398,303774,3791298,92,4,0,NA,NA,NA,NA,0.0254676277207313,0.0997229916897507,9.97229916897507,5,72.5180028101834,0.611230769230769,5.81717451523546,47.8102485868666,20.7823009490967,404.58213297526,404.246185302734,0.270623341017467
+494,303674,3791298,303774,3791198,93,4,0,NA,NA,NA,NA,0.0236058919129031,0.0886426592797784,8.86426592797784,6,64.3205848874716,0.556873977086743,3.04709141274238,62.2639714479446,39.5683212280273,404.556291368273,404.498596191406,0.143451920673245
+495,303674,3791198,303774,3791098,94,4,0,NA,NA,NA,NA,0.0147169761768677,0.0552631578947368,5.52631578947368,2,72.794153612383,0.735376044568245,3.15789473684211,58.9470768883115,41.5646018981934,404.502634684245,404.375396728516,0.182891807775355
+496,303674,3791098,303774,3790998,95,4,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0246630676127782,0.116343490304709,11.6343490304709,2,86.2235234801228,0.840611064506159,10.803324099723,51.6406704130627,31.1734504699707,404.115851508247,403.913238525391,0.304266689540956
+497,303674,3790998,303774,3790898,96,4,20.2216066481994,0.0656854039050888,10.7429142179818,0.480990274093722,19.0504423895965,0.0216505675494959,0.124653739612188,12.4653739612188,5,74.5584325462912,0.639240506329114,6.64819944598338,8.03250711229112,0,403.650665283203,403.246917724609,0.355686298975222
+498,303674,3790898,303774,3790798,97,4,18.2825484764543,0.0890802052959424,12.8342905288434,0.683641975308642,18.7329127343573,0.0330187012044806,0.313019390581717,31.3019390581717,1,95.625724167062,0.864425205566097,31.3019390581717,8.25789265928015,0,403.134721544054,402.847259521484,0.448672156715809
+499,303674,3790798,303774,3790698,98,4,1.84210526315789,0.0188958011233817,6.89839626840956,0.404761904761905,NA,0.0145039876698799,0.0710526315789474,7.10526315789474,4,69.1696082596491,0.699584952895448,3.68421052631579,53.0108381024113,0,402.728830973307,402.572845458984,0.230044180107854
+500,303674,3790698,303774,3790598,99,4,0.277008310249307,0.0026994001604831,0,0,NA,0.0367695527194925,0.248538011695906,24.8538011695906,3,88.2102268375407,0.841368825211946,14.6198830409357,63.2823277136859,7.34765291213989,402.688891092936,402.572296142578,0.147188643661096
+501,303774,3800598,303874,3800498,0,5,19.7368421052632,0.0506137530090403,9.08675309291783,0.351900584795322,28.5756636363454,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.316757202148,383.094146728516,0.221424413814218
+502,303774,3800498,303874,3800398,1,5,9,0.0323928019257858,4.04595499815829,0.251633986928105,57.1513272622996,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.568585713704,383.499572753906,0.090136221815621
+503,303774,3800398,303874,3800298,2,5,31.0526315789474,0.0796323047342233,13.7717693017128,0.473611111111111,10.6977775999439,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.656455993652,383.565368652344,0.0960778426972141
+504,303774,3800298,303874,3800198,3,5,4.21052631578947,0.0143968008559048,4.56467236630523,0.355555555555556,53.6876103895639,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.844510396322,383.702453613281,0.172562171227581
+505,303774,3800198,303874,3800098,4,5,51.5789473684211,0.132270607863625,11.4493695131287,0.457161700806952,15.586725558422,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.134344100952,383.952117919922,0.182865900404666
+506,303774,3800098,303874,3799998,5,5,23,0.248344814764358,33.116945269039,0.639492753623188,NA,0.0103891671920792,0.06875,6.875,2,66.2926986359053,0.713646532438479,5.625,4.25092519413341,0,384.422159830729,384.309936523438,0.165641356036864
+507,303774,3799998,303874,3799898,6,5,4.21052631578947,0.0215952012838572,4.57282818575618,0.3,69.8993154158293,-0.00605467109390271,0,0,0,NA,NA,0,NA,NA,384.645477294922,384.513305664062,0.154935604716743
+508,303774,3799898,303874,3799798,7,5,0,NA,NA,NA,NA,-0.00481578634217409,0,0,0,NA,NA,0,NA,NA,384.926165262858,384.718322753906,0.268887039530865
+509,303774,3799798,303874,3799698,8,5,36.0526315789474,0.123272607328685,17.7605591399282,0.64037814037814,16.6354546863413,-0.00130866415034497,0.0210526315789474,2.10526315789474,3,44.1505367610631,0.489247311827957,1.05263157894737,7.14391589164734,0,385.31732749939,385.026153564453,0.302006464477725
+510,303774,3799698,303874,3799598,9,5,22.25,0.0480493228565822,10.2528129213846,0.487411056376574,18.5668626008265,0.0146134702639779,0.14,14,4,80.1080895492342,0.796211939582834,7.5,11.442147229399,0,385.679840087891,385.490600585938,0.230425720128876
+511,303774,3799598,303874,3799498,10,5,63.9473684210526,0.327977119498581,24.1884477506274,0.560936238902341,10.3911504415562,0.0112146959860375,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,5.19557523727417,0,385.855051040649,385.799835205078,0.0602150642994842
+512,303774,3799498,303874,3799398,11,5,97.8947368421053,1.00417685969936,38.321890110149,0.924731182795699,NA,0.0247315114544778,0.121052631578947,12.1052631578947,1,89.8658238791242,0.868724090280976,12.1052631578947,0,0,385.783626556396,385.711517333984,0.0803923728875821
+513,303774,3799398,303874,3799298,12,5,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0391306247000868,0.35,35,2,93.6561432649513,0.796567069294342,29.2105263157895,0,0,385.663340250651,385.643646240234,0.0423919133318488
+514,303774,3799298,303874,3799198,13,5,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0184710136627473,0.065,6.5,1,84.6193541959806,0.843485065866701,6.5,0,0,385.761505126953,385.658721923828,0.143256785880386
+515,303774,3799198,303874,3799098,14,5,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0371836505934449,0.236842105263158,23.6842105263158,5,87.8636612730447,0.829085457271364,17.8947368421053,0,0,386.182266235352,385.998138427734,0.342411849697698
+516,303774,3799098,303874,3798998,15,5,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.000435696283602738,0,0,0,NA,NA,0,NA,NA,386.78734588623,386.449127197266,0.333218861479638
+517,303774,3798998,303874,3798898,16,5,55.5263157894737,0.284786716930867,24.5799421576888,0.493221690590112,25.9778758441098,0.0595003458415847,0.534210526315789,53.4210526315789,2,97.3308848743549,0.971526622607862,52.8947368421053,5.86781220600523,0,387.375587463379,387.031555175781,0.547968271319899
+518,303774,3798898,303874,3798798,17,5,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0543759128917009,0.485,48.5,3,94.4128327319474,0.795037756202805,40.75,0,0,388.065044403076,387.505249023438,0.643824538298608
+519,303774,3798798,303874,3798698,18,5,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0324840817008455,0.165789473684211,16.5789473684211,2,88.4792134230696,0.8801261829653,14.4736842105263,0,0,388.487622578939,388.016693115234,0.670798730329351
+520,303774,3798698,303874,3798598,19,5,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0639533175471067,0.413157894736842,41.3157894736842,3,94.3288560742077,0.840246636771301,37.1052631578947,0,0,390.117195129395,388.591735839844,1.89091234051072
+521,303774,3798598,303874,3798498,20,5,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0956969997065914,0.755263157894737,75.5263157894737,1,99.1852843694118,0.984866587017125,75.5263157894737,0,0,392.886660257975,391.350830078125,1.28595715256571
+522,303774,3798498,303874,3798398,21,5,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,-0.0123423895572978,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,0,0,394.435884475708,392.855255126953,1.08022499307225
+523,303774,3798398,303874,3798298,22,5,85.5263157894737,0.877305052156698,36.2902863868927,0.922564102564103,NA,0.0344959578760226,0.155263157894737,15.5263157894737,5,81.4000909987912,0.698246900006108,9.47368421052632,3.17018146029973,0,394.924975077311,394.737915039062,0.245108458325297
+524,303774,3798298,303874,3798198,23,5,55.7894736842105,0.572272834022215,34.153937287999,0.841981132075472,NA,0.0556410026488409,0.5,50,4,94.0162107106892,0.75,33.9473684210526,5.82732300256428,0,394.914434432983,394.706573486328,0.275323793037866
+525,303774,3798198,303874,3798098,24,5,11.3157894736842,0.116074206900732,19.4016649280229,0.732558139534884,NA,0.0103773629434918,0.221052631578947,22.1052631578947,2,90.4893994079256,0.887992018864502,18.4210526315789,36.7889071873256,0,394.954004923503,394.743560791016,0.327309119769275
+526,303774,3798098,303874,3797998,25,5,11.75,0.0634359037713305,11.3878666012693,0.515988372093023,72.7380530908937,-0.098064913735434,0,0,0,NA,NA,0,NA,NA,395.38876914978,395.125946044922,0.20067050967332
+527,303774,3797998,303874,3797898,26,5,73.6842105263158,0.755832044935001,34.9812080966357,0.897619047619048,NA,-0.0521219211592229,0.0473684210526316,4.73684210526316,1,80.5625453356091,1,4.73684210526316,0,0,395.331886291504,395.141143798828,0.186367272214837
+528,303774,3797898,303874,3797798,27,5,67.8947368421053,0.696445241404394,32.5809362093076,0.916666666666667,NA,-0.000289782441579614,0.134210526315789,13.4210526315789,2,87.9111907077571,0.800859448695105,12.1052631578947,0,0,395.093981424967,394.937866210938,0.212160818423474
+529,303774,3797798,303874,3797698,28,5,54.2105263157895,0.556076433059322,31.9986273863385,0.87378640776699,NA,0.00651982905775711,0.0815789473684211,8.15789473684211,2,84.4494870925724,0.825787965616046,7.89473684210526,0,0,395.083641052246,394.938446044922,0.180969354204278
+530,303774,3797698,303874,3797598,29,5,3,0.0323928019257858,6.79028708848217,0.638888888888889,NA,-0.0171263069048291,0,0,0,NA,NA,0,NA,NA,395.336853027344,395.150543212891,0.188578914654042
+531,303774,3797598,303874,3797498,30,5,0.263157894736842,0.00269940016048215,0,0,NA,0.00579505539484863,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,7.79336285591125,5.19557523727417,395.438659667969,395.181610107422,0.886851145489323
+532,303774,3797498,303874,3797398,31,5,0,NA,NA,NA,NA,-0.000482685204202713,0,0,0,NA,NA,0,NA,NA,398.391159057617,397.384338378906,1.7157668585185
+533,303774,3797398,303874,3797298,32,5,0,NA,NA,NA,NA,-0.123196554173123,0,0,0,NA,NA,0,NA,NA,398.852872848511,396.844848632812,1.74975599879124
+534,303774,3797298,303874,3797198,33,5,0,NA,NA,NA,NA,-0.182470144107938,0,0,0,NA,NA,0,NA,NA,396.512446085612,396.115844726562,0.686793535377855
+535,303774,3797198,303874,3797098,34,5,0,NA,NA,NA,NA,-0.147683900996651,0,0,0,NA,NA,0,NA,NA,395.580684661865,394.582061767578,1.4001600264782
+536,303774,3797098,303874,3796998,35,5,88.1578947368421,0.904299053761519,37.0542501844973,0.894029850746269,NA,0.0513908636655144,0.526315789473684,52.6315789473684,1,97.9538591370238,0.98292902066487,52.6315789473684,0,0,394.348553975423,394.114868164062,0.297055579601431
+537,303774,3796998,303874,3796898,36,5,83.6842105263158,0.286136417011108,14.9202509381033,0.495607951918632,15.5867255064659,0.062399397201941,0.513157894736842,51.3157894736842,1,97.8589072810594,0.943258175302374,51.3157894736842,0.133219877878825,0,393.426826477051,392.524322509766,0.942355184151583
+538,303774,3796898,303874,3796798,37,5,23.5,0.253743615085322,26.4271143762572,0.824468085106383,NA,0.0189249011197171,0.02,2,1,68.0470115164975,0.897959183673469,2,38.3870575428009,30.2951488494873,392.485438028971,392.145111083984,0.448517454026889
+539,303774,3796798,303874,3796698,38,5,6.8421052631579,0.0233948013908453,6.22893302638007,0.168981481481481,45.0823862318772,0.0200418866280846,0.0842105263157895,8.42105263157895,6,62.5314871311594,0.517020335985853,2.36842105263158,33.5574602484703,14.6953058242798,392.742238998413,392.234954833984,0.528188395420422
+540,303774,3796698,303874,3796598,39,5,11.0526315789474,0.0377916022467501,10.3150701161074,0.479166666666667,14.8857413247905,0.0150522598248484,0.0421052631578947,4.21052631578947,3,63.9844172174811,0.652014652014652,2.63157894736842,20.2849240005016,0,393.186519622803,392.640930175781,0.561240826536023
+541,303774,3796598,303874,3796498,40,5,0,NA,NA,NA,NA,0.0132856304756148,0.0210526315789474,2.10526315789474,3,41.3442342914615,0.489247311827957,0.789473684210526,64.7259240150452,31.6034507751465,393.408810933431,393.013397216797,0.453918308121697
+542,303774,3796498,303874,3796398,41,5,0,NA,NA,NA,NA,0.0209629249896879,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,120.636973063151,110.092269897461,393.605199813843,393.158264160156,0.499141223994406
+543,303774,3796398,303874,3796298,42,5,0,NA,NA,NA,NA,0.0225328138921032,0,0,0,NA,NA,0,NA,NA,393.719357808431,393.209167480469,0.57445433408532
+544,303774,3796298,303874,3796198,43,5,0,NA,NA,NA,NA,0.014315969193175,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,104.429763793945,104.429763793945,394.119920730591,393.163757324219,0.967124994971996
+545,303774,3796198,303874,3796098,44,5,0,NA,NA,NA,NA,0.0256279356114311,0.0342105263157895,3.42105263157895,4,50.1284378525324,0.597335755373903,1.84210526315789,132.893596355732,93.5203552246094,394.996248881022,393.36474609375,1.21140544525683
+546,303774,3796098,303874,3795998,45,5,0,NA,NA,NA,NA,0.0188058834140783,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,59.2841510772705,47.9008369445801,394.88715171814,393.502105712891,1.20050603737283
+547,303774,3795998,303874,3795898,46,5,12.75,0.0344173520461474,8.64650929966404,0.262626262626263,13.6021924295519,0.0131019821285372,0.0025,0.25,1,0,NA,0.25,14.6953058242798,14.6953058242798,394.127115885417,393.427734375,0.998295977024046
+548,303774,3795898,303874,3795798,47,5,8.94736842105263,0.091779605456393,15.643732488987,0.681372549019608,NA,0.0194095745865549,0.0210526315789474,2.10526315789474,3,42.6827771112369,0.489247311827957,1.05263157894737,19.2507899999619,0,394.152772903442,393.268188476562,0.825608376809511
+549,303774,3795798,303874,3795698,48,5,56.8421052631579,0.291535217332072,28.6495340672998,0.7971859368815,18.7329127343552,-0.00859780774872457,0,0,0,NA,NA,0,NA,NA,394.321067810059,393.586669921875,0.819562905677943
+550,303774,3795698,303874,3795598,49,5,64.2105263157895,0.658653639157644,35.6618984156178,0.82103825136612,NA,-0.00558998521664762,0,0,0,NA,NA,0,NA,NA,394.878858566284,393.786743164062,0.930275021798555
+551,303774,3795598,303874,3795498,50,5,75.25,0.270839816101709,20.9319935977082,0.751020647537041,12.94068145587,-0.00972144881994609,0,0,0,NA,NA,0,NA,NA,395.346583048503,394.442291259766,0.8877278738128
+552,303774,3795498,303874,3795398,51,5,55.7894736842105,0.572272834022215,39.6497527714344,0.822327044025157,NA,-0.0694802080284142,0,0,0,NA,NA,0,NA,NA,396.287075042725,395.650054931641,0.647171494178076
+553,303774,3795398,303874,3795298,52,5,45.2631578947368,0.232148413801465,26.5532964450505,0.772131147540984,31.1734513246687,-0.0252498463465216,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.709702062643239,1.57894736842105,14.7207961082458,10.3911504745483,396.715703328451,396.296966552734,0.43643275178535
+554,303774,3795298,303874,3795198,53,5,75.2631578947368,0.386014222948947,18.0573794972295,0.436842105263158,10.3911504415562,-0.0215428274493063,0.0289473684210526,2.89473684210526,2,67.3422405823507,0.725383920505872,2.63157894736842,8.36713227358731,0,396.888561248779,396.389801025391,0.485563289066909
+555,303774,3795198,303874,3795098,54,5,31.75,0.171411910190616,19.3137378100323,0.756219852754506,46.7601769870031,-0.0224377676751465,0.1225,12.25,3,83.163166353191,0.837199837199837,10.25,22.8620146829255,5.19557523727417,397.200784683228,396.633575439453,0.650246928959754
+556,303774,3795098,303874,3794998,55,5,36.3157894736842,0.186258611073268,21.5606452786795,0.647005208333333,11.6176593526379,-0.0401778136507155,0.0763157894736842,7.63157894736842,2,81.5760683569485,0.654482633206037,6.57894736842105,14.5401234462343,10.3911504745483,397.718526204427,396.923675537109,0.747323842824541
+557,303774,3794998,303874,3794898,56,5,20.2631578947368,0.207853812357125,27.5060718384325,0.79004329004329,NA,0.0134776046655852,0.0894736842105263,8.94736842105263,4,74.9785050025887,0.784269199009083,6.84210526315789,23.6235826155719,10.3911504745483,398.185974121094,397.493591308594,0.789074811241463
+558,303774,3794898,303874,3794798,57,5,30.7894736842105,0.315829818776411,28.3368614804505,0.839031339031339,NA,-0.0126762449986257,0.0157894736842105,1.57894736842105,1,62.3749377455957,1,1.57894736842105,23.5724334716797,20.7823009490967,397.326243082682,396.562164306641,1.10208036108291
+559,303774,3794798,303874,3794698,58,5,5.75,0.0206954012303631,6.71890401211259,0.385683760683761,20.9955022530281,0.0268483534715779,0.0175,1.75,4,28.9394712793554,0.363867684478371,0.75,36.9640456608364,10.3911504745483,396.242565155029,396.017974853516,0.328064590865656
+560,303774,3794698,303874,3794598,59,5,36.8421052631579,0.0755832044935001,11.6207646753807,0.435624463256042,15.9639975927285,-0.00156801932584561,0,0,0,NA,NA,0,NA,NA,396.07167561849,395.991973876953,0.111719069024729
+561,303774,3794598,303874,3794498,60,5,71.8421052631579,0.736936243811626,35.4001961167036,0.892551892551892,NA,-0.0474433097480199,0,0,0,NA,NA,0,NA,NA,396.272193908691,396.086578369141,0.194684457055699
+562,303774,3794498,303874,3794398,61,5,6.57894736842105,0.0337425020060268,15.5243805273576,0.316468253968254,67.5424778701155,-0.00846884877426323,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,55.6544024149577,49.28955078125,396.633387247721,396.452362060547,0.331191252783485
+563,303774,3794398,303874,3794298,62,5,0.25,0.00269940016048215,0,0,NA,0.0132072393531416,0.025,2.5,1,71.9760246298065,1,2.5,74.9500625610352,67.54248046875,397.514049530029,396.929901123047,0.692933555514845
+564,303774,3794298,303874,3794198,63,5,15.7894736842105,0.0539880032096429,12.3540301694112,0.573148148148148,12.1230087272512,0.0198389245119439,0,0,0,NA,NA,0,NA,NA,398.769014994303,397.749237060547,1.06160367478981
+565,303774,3794198,303874,3794098,64,5,17.8947368421053,0.0458898027281965,10.6031764494374,0.431397306397306,16.8856193506275,0.0170277572821712,0.0210526315789474,2.10526315789474,3,44.9082855597301,0.591397849462366,1.31578947368421,38.1570078134537,11.6176595687866,400.19939994812,399.416351318359,0.726134988736792
+566,303774,3794098,303874,3793998,65,5,32.1052631578947,0.164663409789411,15.3307792232612,0.479166666666667,20.7823006752878,0.0105712215133807,0.0526315789473684,5.26315789473684,2,73.0449150643781,0.761648745519713,3.68421052631579,11.3434009790421,5.19557523727417,400.77202351888,400.360076904297,0.464306438227889
+567,303774,3793998,303874,3793898,66,5,13.5,0.145767608666036,19.4200856186046,0.700617283950617,NA,0.00703831410859948,0,0,0,NA,NA,0,NA,NA,400.380321502686,400.143005371094,0.315018524043924
+568,303774,3793898,303874,3793798,67,5,0,NA,NA,NA,NA,0.0199594496724833,0,0,0,NA,NA,0,NA,NA,400.193244934082,400.085754394531,0.128650603337849
+569,303774,3793798,303874,3793698,68,5,3.15789473684211,0.0161964009628929,4.91752585041251,0.407407407407407,88.4774574586965,0.0174095890995599,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,24.7932946681976,5.19557523727417,400.796997070312,400.330749511719,0.629077299899712
+570,303774,3793698,303874,3793598,69,5,0,NA,NA,NA,NA,0.0185385730911788,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,31.3030161857605,10.3911504745483,401.661748886108,401.450073242188,0.281403460708693
+571,303774,3793598,303874,3793498,70,5,1,0.0107976006419286,5.19557516882196,0.25,NA,0.0171157635398959,0.02,2,1,68.0470115164975,0.897959183673469,2,10.5444639921188,5.19557523727417,402.092702229818,401.779357910156,0.378524661913526
+572,303774,3793498,303874,3793398,71,5,38.4210526315789,0.131370807810131,17.1552111157809,0.722414560304747,16.635454582429,0.00491043177159889,0,0,0,NA,NA,0,NA,NA,402.339813232422,402.083679199219,0.231657422109488
+573,303774,3793398,303874,3793298,72,5,29.2105263157895,0.299633417813518,34.0583499866306,0.804804804804805,NA,0.0170773580306942,0,0,0,NA,NA,0,NA,NA,402.226320902507,402.081115722656,0.204369951739366
+574,303774,3793298,303874,3793198,73,5,15.7894736842105,0.0539880032096429,8.77848332163027,0.674248971193416,48.5784127353403,0.0329900566488504,0.221052631578947,22.1052631578947,1,93.9064022813433,0.853528024668964,22.1052631578947,11.9564303159714,0,401.818454742432,401.200286865234,0.549865835527919
+575,303774,3793198,303874,3793098,74,5,21.75,0.0469695627923894,9.42826393172649,0.419032258064516,22.0407755952637,0.0176930471967171,0.0225,2.25,3,56.0601961229235,0.403239556692242,1.75,10.7013373904758,5.19557523727417,400.998229980469,400.915618896484,0.26867049115531
+576,303774,3793098,303874,3792998,75,5,8.15789473684211,0.0278938016583155,6.48101633947854,0.369484316852738,36.5238170360492,0.001330009603637,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,26.8193632761637,15.5867252349854,401.240743637085,400.885650634766,0.57907516060487
+577,303774,3792998,303874,3792898,76,5,33.6842105263158,0.115174406847238,15.4867950027463,0.572940287226001,14.6953058096309,0.0155387570214579,0.0157894736842105,1.57894736842105,4,20.982045994374,0.274255156608098,0.526315789473684,8.74503596623739,0,402.600214640299,401.430969238281,1.29228569868018
+578,303774,3792898,303874,3792798,77,5,19.2105263157895,0.0394112423430393,7.69928522903472,0.504754273504273,22.3186672639052,0.00325355310382484,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,13.1072329793658,5.19557523727417,403.537040710449,402.022125244141,1.16723719562215
+579,303774,3792798,303874,3792698,78,5,30.5,0.164663409789411,15.8597649164722,0.72663139329806,27.9790287931623,0.015925770594622,0.02,2,4,36.0211048169316,0.387755102040816,1,18.9872738718987,5.19557523727417,403.778010050456,403.103485107422,1.23414027841834
+580,303774,3792698,303874,3792598,79,5,18.6842105263158,0.191657411394232,18.9746964118648,0.814553990610329,NA,0.0269795507093046,0.118421052631579,11.8421052631579,1,89.6940898761467,0.91044776119403,11.8421052631579,46.1868043687609,18.7329120635986,403.866851806641,402.57373046875,1.45995182595765
+581,303774,3792598,303874,3792498,80,5,9.47368421052632,0.0485892028886787,11.2780541015093,0.603973168214654,10.3911504415562,0.0514804478050409,0.368421052631579,36.8421052631579,2,92.9655288364468,0.8515625,26.0526315789474,44.5970224108015,11.6176595687866,403.873682657878,402.343719482422,1.73201415711192
+582,303774,3792498,303874,3792398,81,5,34.2105263157895,0.0584870034771132,11.7063760708493,0.564823232323232,12.4679478944385,0.0328664827635772,0.160526315789474,16.0526315789474,10,64.3983389582102,0.494292304962442,3.42105263157895,7.76418882901551,0,401.766946792603,400.172149658203,1.75951699190694
+583,303774,3792398,303874,3792298,82,5,20.75,0.0448100426640036,7.70431010564651,0.410130718954248,10.6364521267014,0.0264192590866151,0.1075,10.75,3,86.0320872160946,0.64207905384376,9.75,4.9695061084836,0,400.311907450358,400.139343261719,0.299031909759011
+584,303774,3792298,303874,3792198,83,5,39.2105263157895,0.134070207970613,9.65360681474349,0.264928193499622,21.4804548355582,0.0200785286984683,0.107894736842105,10.7894736842105,6,80.380321337207,0.707579838399384,9.21052631578947,3.32432487534314,0,400.594827651978,400.364807128906,0.275457294635966
+585,303774,3792198,303874,3792098,84,5,16.8421052631579,0.0431904025677144,9.18318941750285,0.362453703703704,22.1735040971605,0.0131285373869009,0.0447368421052632,4.47368421052632,4,60.2750289650533,0.665013774104683,2.89473684210526,10.6937702964334,0,401.118259429932,400.840728759766,0.380846504373525
+586,303774,3792098,303874,3791998,85,5,9.47368421052632,0.0242946014443393,7.49930236085272,0.403156565656566,15.586725532444,0.0329506359861912,0.202631578947368,20.2631578947368,6,80.8499574851973,0.612696563774024,9.73684210526316,15.7905947945335,0,401.352221171061,401.207916259766,0.223505185690866
+587,303774,3791998,303874,3791898,86,5,30,0.0647856038515715,11.81571584194,0.429392097264438,16.6258406129689,0.0504206067806081,0.4775,47.75,6,92.252216292771,0.610737166490958,32.25,6.00231935840627,0,401.362234115601,401.207824707031,0.202332078076422
+588,303774,3791898,303874,3791798,87,5,32.1052631578947,0.054887803263137,10.9976422455854,0.419020481520482,15.6539971820583,0.0485267190523844,0.478947368421053,47.8947368421053,5,93.1675043344006,0.703863561430327,31.0526315789474,4.71845201083592,0,401.352310180664,401.142974853516,0.223613311348446
+589,303774,3791798,303874,3791698,88,5,36.0526315789474,0.0739635643972108,13.5348174678633,0.628982971477224,16.4475566195675,0.0416703787649328,0.318421052631579,31.8421052631579,7,82.4839231229064,0.71990171990172,9.73684210526316,6.18562184483552,0,401.199195861816,401.127136230469,0.102956657399765
+590,303774,3791698,303874,3791598,89,5,12.1052631578947,0.0413908024607263,6.79198163468778,0.411680911680912,38.3470436047932,0.0283237570520693,0.184210526315789,18.4210526315789,5,78.4092157982617,0.730920535011802,7.89473684210526,17.9969353539603,0,401.243103027344,401.136810302734,0.222487040375735
+591,303774,3791598,303874,3791498,90,5,7.25,0.0260942015513274,6.98406109165058,0.464387464387464,16.4043982385484,0.0253030783169925,0.0475,4.75,4,63.5726507559145,0.601773916191511,3,25.1600813614695,10.3911504745483,401.868803024292,401.534759521484,0.688415262356986
+592,303774,3791498,303874,3791398,91,5,0,NA,NA,NA,NA,0.0262014490222148,0.0815789473684211,8.1578947368421,5,74.4185385342823,0.804011461318052,6.84210526315789,42.4680464959914,27.9790287017822,403.521708170573,402.519592285156,1.16121359394015
+593,303774,3791398,303874,3791298,92,5,4.47368421052632,0.0458898027281965,11.6723882890493,0.568627450980392,NA,0.028975468070329,0.210526315789474,21.0526315789474,5,86.891910079971,0.750234741784038,15.5263157894737,27.9182741880417,0,404.105863571167,403.407318115234,0.761428322203559
+594,303774,3791298,303874,3791198,93,5,16.8421052631579,0.0863808051354287,10.8902092129669,0.558333333333333,31.1734510129318,0.0528152861727377,0.436842105263158,43.6842105263158,3,91.3429194183073,0.785291063465885,17.8947368421053,13.7686833674649,0,403.944524129232,403.322204589844,0.592300967840972
+595,303774,3791198,303874,3791098,94,5,18.5,0.0998778059378395,13.7376752242372,0.641053391053391,16.4298514359611,0.0454746018373407,0.4475,44.75,2,94.7774110916096,0.835955762737352,33.5,10.0926793034516,0,403.968414306641,403.781646728516,0.339378929212086
+596,303774,3791098,303874,3790998,95,5,6.8421052631579,0.0233948013908453,9.31846639887548,0.344444444444444,29.4415927272368,0.0429130130272824,0.310526315789474,31.0526315789474,3,92.8781051385437,0.823785403438682,28.421052631579,25.752790341943,0,403.823443094889,403.70068359375,0.263008535772475
+597,303774,3790998,303874,3790898,96,5,56.8421052631579,0.194356811554715,20.1830274239985,0.60863511659808,16.7243040981832,0.0752999971081552,0.786842105263158,78.6842105263158,1,99.3114189797412,0.633357454553429,78.6842105263158,2.43582794578578,0,403.291860580444,402.904296875,0.430799586776705
+598,303774,3790898,303874,3790798,97,5,57.3684210526316,0.588469234985108,37.4476414220385,0.798929663608563,NA,0.079167044836121,0.844736842105263,84.4736842105263,1,99.5240187137835,0.649270011746937,84.4736842105263,2.96522161299566,0,402.684521993001,402.511962890625,0.271342616429344
+599,303774,3790798,303874,3790698,98,5,20,0.0719840042795239,11.1738510334588,0.45273569023569,23.1812099803766,0.0495116384064386,0.46,46,5,93.4811787832712,0.738562091503268,37.5,10.4391756627871,0,402.507513046265,402.43115234375,0.103618283736836
+600,303774,3790698,303874,3790598,99,5,7.89473684210526,0.0269940016048215,9.28411532526365,0.388047138047138,40.4244568593755,0.058215292253428,0.494444444444444,49.4444444444444,5,90.2035197320769,0.675339857710678,23.0555555555556,23.0770500536715,0,402.565254211426,402.479064941406,0.112687727747121
+601,303874,3800598,303974,3800498,0,6,24.0997229916898,0.0782826046540099,17.4938772052344,0.593603801169591,10.3911503722826,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.298553466797,383.11962890625,0.184297336780041
+602,303874,3800498,303974,3800398,1,6,42.6315789473684,0.145767608666087,16.4265597687317,0.601014578408195,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.471862792969,383.414306640625,0.105677118862994
+603,303874,3800398,303974,3800298,2,6,26.0387811634349,0.126871807542706,23.5830884820085,0.580067567567567,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.498886108398,383.411895751953,0.139853289175759
+604,303874,3800298,303974,3800198,3,6,22.4376731301939,0.109325706499566,23.1973474386901,0.663279569892473,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.653272840712,383.515319824219,0.199569491591584
+605,303874,3800198,303974,3800098,4,6,35.7340720221607,0.08705565517558,10.2275904363195,0.379026610644258,16.3598811500153,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.940241495768,383.732788085938,0.240456099498459
+606,303874,3800098,303974,3799998,5,6,36.8421052631579,0.377916022467634,34.8504970757556,0.798809523809524,NA,0.012848440007091,0,0,0,NA,NA,0,NA,NA,384.205657958984,384.037658691406,0.245867843292283
+607,303874,3799998,303974,3799898,6,6,44.5983379501385,0.144867808612593,17.1361765843377,0.49322255843995,12.1230087272512,-0.00176815773244857,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,2.55726853283969,0,384.401893615723,384.209777832031,0.248862157066799
+608,303874,3799898,303974,3799798,7,6,36.8421052631579,0.359020221344253,26.8798863646151,0.81077694235589,NA,0.00303633037308883,0,0,0,NA,NA,0,NA,NA,384.620727539062,384.438903808594,0.276435089964102
+609,303874,3799798,303974,3799698,8,6,10.5263157894737,0.034192402032786,8.69937546502076,0.489197530864198,15.867767482966,0.0167691627000226,0.0526315789473684,5.26315789473684,4,66.7209478097032,0.636015325670498,3.8781163434903,24.2417160084373,5.19557523727417,385.022038777669,384.697601318359,0.349581232705826
+610,303874,3799698,303974,3799598,9,6,5.52631578947368,0.0188958011233817,5.46692428401868,0.277777777777778,48.6838735183092,0.0364372157906856,0.302631578947368,30.2631578947368,1,95.5779998570431,0.85522496371553,30.2631578947368,36.7917079635288,7.34765291213989,385.55126953125,385.374450683594,0.280255172982833
+611,303874,3799598,303974,3799498,10,6,32.409972299169,0.315829818776523,25.5210725340819,0.846153846153846,NA,0.0211164666323641,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,7.37089217792858,0,385.862045288086,385.757446289062,0.106487403923575
+612,303874,3799498,303974,3799398,11,6,98.6149584487535,0.960986457131984,37.4608884147157,0.925561797752809,NA,0.0217597261123205,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,385.844950358073,385.757843017578,0.0841848766312221
+613,303874,3799398,303974,3799298,12,6,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0180287608459858,0,0,0,NA,NA,0,NA,NA,385.70908610026,385.6728515625,0.0586079821727657
+614,303874,3799298,303974,3799198,13,6,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0203098607525661,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,0,0,385.769945780436,385.685485839844,0.115436031112508
+615,303874,3799198,303974,3799098,14,6,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0456640004977543,0.409972299168975,40.9972299168975,1,96.8789423366617,0.893681894565424,40.9972299168975,0,0,386.140126546224,385.947326660156,0.327395782663989
+616,303874,3799098,303974,3798998,15,6,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,-0.0042671141713868,0,0,0,NA,NA,0,NA,NA,386.684773763021,386.357971191406,0.367903477027538
+617,303874,3798998,303974,3798898,16,6,42.382271468144,0.137669408184638,15.5144771382922,0.74369385997293,31.0769380395828,0.0879574533154636,0.64819944598338,64.8199445983379,2,98.2724928995634,0.960972269770627,64.5429362880886,11.2360513760493,0,387.447224934896,386.982543945312,0.76902870292951
+618,303874,3798898,303974,3798798,17,6,75.2631578947368,0.386014222949084,23.4876136173222,0.684289127837515,10.3911504415599,0.0757562910892854,0.794736842105263,79.4736842105263,2,98.9481610258615,0.751701140101843,78.6842105263158,2.7034101991464,0,388.588356018066,387.826812744141,0.584837706515606
+619,303874,3798798,303974,3798698,18,6,86.4265927977839,0.421106425035364,20.1988947881552,0.580627705627706,10.3911504415599,0.0912964865023533,0.745152354570637,74.5152354570637,3,98.5595054607799,0.875678002582867,73.9612188365651,1.17528816669847,0,389.324147542318,388.919647216797,0.759959924531092
+620,303874,3798698,303974,3798598,19,6,90.0277008310249,0.438652526078504,19.2346216061094,0.544117647058823,18.7329128064101,0.1223021498533,0.911357340720222,91.1357340720222,1,99.7360893989003,0.74567230273752,91.1357340720222,0.719323071302976,0,391.887517293294,389.831329345703,1.80594131480748
+621,303874,3798598,303974,3798498,20,6,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.124390179570071,0.880886426592798,88.0886426592798,1,99.6362939290284,1,88.0886426592798,0,0,393.363142225477,392.423614501953,0.935908771979646
+622,303874,3798498,303974,3798398,21,6,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,-0.0214120337781136,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.952677459526775,3.94736842105263,0,0,395.021077473958,394.418151855469,0.749919568155328
+623,303874,3798398,303974,3798298,22,6,84.2105263157895,0.820617648786863,34.8210957825279,0.924342105263158,NA,0.042369911706653,0.329639889196676,32.9639889196676,5,89.810430891857,0.848063973063973,22.9916897506925,3.01256038361237,0,395.002237955729,394.78759765625,0.291344131920128
+624,303874,3798298,303974,3798198,23,6,35.7340720221607,0.34822262070232,24.3948071097533,0.852713178294574,NA,0.0917937183861332,0.659279778393352,65.9279778393352,2,97.6552827623115,0.934045857312506,64.2659279778393,7.03285615384078,0,394.690594991048,394.581481933594,0.157391714063031
+625,303874,3798198,303974,3798098,24,6,21.0526315789474,0.102577206098358,15.8564022855238,0.624624008750342,41.8880662648159,0.00340826134321367,0.171745152354571,17.1745152354571,2,86.9611148966139,0.821132168958256,10.2493074792244,6.52637434005737,0,394.769154866536,394.626800537109,0.241091608414953
+626,303874,3798098,303974,3797998,25,6,85.5263157894737,0.877305052157008,35.8567660814281,0.925128205128205,NA,-0.081321643732793,0.147368421052632,14.7368421052632,2,89.2881160867743,0.915362097492682,14.2105263157895,0.671958650861468,0,395.216723124186,395.063446044922,0.239163945237694
+627,303874,3797998,303974,3797898,26,6,99.4459833795014,0.969084657613434,37.6365555400017,0.925719591457753,NA,-0.00490354711191962,0.207756232686981,20.7756232686981,3,86.8955166736791,0.82787666878576,15.7894736842105,0.0692743364969889,0,395.766014099121,395.432952880859,0.478832124277578
+628,303874,3797898,303974,3797798,27,6,98.8919667590028,0.963685857292467,37.8465099298005,0.92156862745098,NA,0.0509195644782541,0.542936288088643,54.2936288088643,3,95.336239959298,0.747552447552447,44.0443213296399,0.106032147699473,0,395.75627983941,395.397186279297,0.5131829908187
+629,303874,3797798,303974,3797698,28,6,99.1689750692521,0.96638525745295,37.7249010498112,0.92364990689013,NA,0.0532037998413231,0.501385041551247,50.1385041551247,2,94.5200738515995,0.862305140961857,33.7950138504155,0.086114506695152,0,395.60083770752,395.319793701172,0.40077621450079
+630,303874,3797698,303974,3797598,29,6,70.5263157894737,0.723439243009471,34.8973292776032,0.89863184079602,NA,-0.0125921250538053,0.281578947368421,28.1578947368421,1,95.2171730229585,0.935090815919831,28.1578947368421,0,0,395.394721137153,395.111053466797,0.351004060375896
+631,303874,3797598,303974,3797498,30,6,33.7950138504155,0.109775606526313,14.100172448239,0.55233918128655,12.1230088484866,0.0024255525514337,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.955484308527036,8.31024930747922,1.9470661799113,0,394.849296569824,394.362731933594,0.892395893315547
+632,303874,3797498,303974,3797398,31,6,28.808864265928,0.140368808345121,15.750738385936,0.497249724972497,14.6953058096335,0.0169408689823822,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,1.03911504745483,0,396.611989339193,394.718200683594,2.6539871649136
+633,303874,3797398,303974,3797298,32,6,18.005540166205,0.175461010431402,28.3661049227155,0.71025641025641,NA,-0.0376845399888298,0,0,0,NA,NA,0,NA,NA,396.620473225911,395.733306884766,1.96974864642305
+634,303874,3797298,303974,3797198,33,6,36.8421052631579,0.377916022467634,27.3571216998063,0.863095238095238,NA,-0.0601356962199421,0,0,0,NA,NA,0,NA,NA,396.057281494141,395.628601074219,1.12448377908986
+635,303874,3797198,303974,3797098,34,6,36.5650969529086,0.356320821183769,31.2664885002451,0.768939393939394,NA,-0.0428415187465326,0,0,0,NA,NA,0,NA,NA,394.917821248372,394.579742431641,0.688004865896113
+636,303874,3797098,303974,3796998,35,6,95.0138504155125,0.925894255045704,37.0406710614649,0.91642371234208,NA,0.0785759619220774,0.720221606648199,72.0221606648199,1,99.0092778966807,0.948624636590969,72.0221606648199,0.424491299115694,0,394.802273220486,394.49755859375,0.536459899797885
+637,303874,3796998,303974,3796898,36,6,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.101499228988493,0.590027700831025,59.0027700831025,2,97.6599686740351,0.975361725361725,58.4487534626039,0,0,394.310643513997,393.214263916016,1.07979564749743
+638,303874,3796898,303974,3796798,37,6,51.8421052631579,0.531781831615171,30.0869662231765,0.883248730964467,NA,0.00711279826224965,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,12.1230087280273,10.3911504745483,392.996239556207,392.884674072266,0.299735691158624
+639,303874,3796798,303974,3796698,38,6,12.7423822714681,0.0310431018455557,9.21487226776161,0.436872329059829,18.1845131688139,0.0255712921686994,0.0443213296398892,4.43213296398892,4,57.5219262245891,0.564009661835749,2.21606648199446,15.4662938714027,0,393.412679036458,393.110809326172,0.410610524525513
+640,303874,3796698,303974,3796598,39,6,9.41828254847645,0.0917796054564255,22.2671853978982,0.583333333333333,NA,0.0203699806579027,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,28.6421898007393,5.19557523727417,394.00808207194,393.722412109375,0.402847312387114
+641,303874,3796598,303974,3796498,40,6,0,NA,NA,NA,NA,0.017489679442766,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,62.8849563598633,62.5630111694336,394.187164306641,393.884429931641,0.579405923599469
+642,303874,3796498,303974,3796398,41,6,0,NA,NA,NA,NA,0.0190188487689124,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,128.985271453857,126.840156555176,394.374506632487,394.093139648438,0.429492561412374
+643,303874,3796398,303974,3796298,42,6,0,NA,NA,NA,NA,0.0171282908182823,0,0,0,NA,NA,0,NA,NA,394.453067355686,394.227447509766,0.279899115641484
+644,303874,3796298,303974,3796198,43,6,0,NA,NA,NA,NA,0.0200996879873634,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,99.2714471817017,89.6895294189453,394.794242858887,394.484954833984,0.349764602826887
+645,303874,3796198,303974,3796098,44,6,0,NA,NA,NA,NA,0.0208656353259413,0,0,0,NA,NA,0,NA,NA,395.502400716146,395.021331787109,0.514108331769472
+646,303874,3796098,303974,3795998,45,6,0,NA,NA,NA,NA,0.0212699452282055,0.0637119113573407,6.37119113573407,2,78.1486025274243,0.910996055226825,5.81717451523546,114.350031977114,79.307014465332,395.649602254232,395.540466308594,0.248426031961504
+647,303874,3795998,303974,3795898,46,6,10.2631578947368,0.0526383031294205,12.4326163101277,0.617105263157895,16.4298514359663,0.00836288919904052,0,0,0,NA,NA,0,NA,NA,395.219601101345,394.875946044922,0.501347015055769
+648,303874,3795898,303974,3795798,47,6,4.98614958448753,0.0242946014443479,8.49767356773764,0.363095238095238,11.6176592829322,0.00729186471803675,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.805096641831336,4.98614958448753,39.324323548211,25.977876663208,394.943351745605,394.817993164062,0.193106080115489
+649,303874,3795798,303974,3795698,48,6,61.218836565097,0.596567435466765,30.8556682554009,0.875565610859729,NA,-0.0047756566117266,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,16.4298515319824,16.4298515319824,395.036777072483,394.791351318359,0.25553877961826
+650,303874,3795698,303974,3795598,49,6,49.0304709141274,0.238896914202754,18.2140370245212,0.705503833515882,14.6953058096335,-0.00260909327899297,0,0,0,NA,NA,0,NA,NA,395.633529663086,395.139373779297,0.48987598564397
+651,303874,3795598,303974,3795498,50,6,60,0.615463236590147,37.2505886948628,0.853070175438596,NA,0.0160290820871428,0.118421052631579,11.8421052631579,2,86.0520161037405,0.865671641791045,10.7894736842105,0.115457227494982,0,396.197502983941,395.986633300781,0.350587107568093
+652,303874,3795498,303974,3795398,51,6,45.1523545706371,0.220001113079373,16.3103521703302,0.587133123689727,52.9846788498127,0.0117489460386635,0,0,0,NA,NA,0,NA,NA,396.723635355632,396.507049560547,0.310260792462501
+653,303874,3795398,303974,3795298,52,6,39.8891966759003,0.194356811554783,21.720914041969,0.612373737373737,41.5646017662397,0.0514783658986328,0.329639889196676,32.9639889196676,1,95.87929364248,0.95856290174472,32.9639889196676,2.35298093026426,0,397.038140190972,396.889343261719,0.192804846120476
+654,303874,3795298,303974,3795198,53,6,69.8060941828255,0.680248840441742,35.1477697923548,0.854497354497355,NA,-0.0101104886093897,0.110803324099723,11.0803324099723,2,87.3811231454204,0.81536244013577,10.803324099723,0.90922566652298,0,397.406982421875,397.159851074219,0.33639073193373
+655,303874,3795198,303974,3795098,54,6,41.3157894736842,0.211902912597923,17.4136559691156,0.54780701754386,25.9778761038998,0.00962598589831032,0.239473684210526,23.9473684210526,1,94.3575940766551,0.975650390875304,23.9473684210526,16.7184640025045,0,398.035832722982,397.621948242188,0.477391267709912
+656,303874,3795098,303974,3794998,55,6,80.3324099722992,0.260942015513366,12.171618630585,0.361595044521874,12.1230087965286,-0.132029335793392,0,0,0,NA,NA,0,NA,NA,398.519975450304,398.183135986328,0.33510638305263
+657,303874,3794998,303974,3794898,56,6,34.6260387811634,0.337425020060388,36.8048373412049,0.794666666666667,NA,-0.0598192144521651,0.0277008310249307,2.77008310249307,3,50.9115480554855,0.60442691211922,1.38504155124654,15.1262991905212,10.3911504745483,398.682370503743,398.514953613281,0.223411833918877
+658,303874,3794898,303974,3794798,57,6,46.2603878116344,0.450799826800678,31.1088220641282,0.87125748502994,NA,-0.0168742019426711,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,23.716521581014,21.4219055175781,397.967963324653,397.258636474609,0.848254173564524
+659,303874,3794798,303974,3794698,58,6,0,NA,NA,NA,NA,0.0247665204181383,0.0289473684210526,2.89473684210526,4,44.2576686027918,0.450767841011743,1.05263157894737,74.003718289462,58.0882949829102,396.690068562826,396.306671142578,0.550456341505797
+660,303874,3794698,303974,3794598,59,6,9.69529085872576,0.0314930018723029,9.23919356196409,0.487329434697856,13.2217233366014,0.0222383780510376,0.074792243767313,7.4792243767313,4,69.4142502182074,0.648099150536137,3.04709141274238,35.9307797749837,18.7329120635986,396.346303304036,396.207885742188,0.270477225191454
+661,303874,3794598,303974,3794498,60,6,16.6204986149584,0.0404910024072465,7.41774187322279,0.468343495934959,15.2077134406538,0.0131163320842955,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,19.4013822873433,14.6953058242798,396.409815470378,396.23046875,0.201844625990018
+662,303874,3794498,303974,3794398,61,6,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0128197428399602,0.0609418282548476,6.09418282548476,4,63.4940476031559,0.655474579212216,2.49307479224377,21.8159109245647,7.34765291213989,396.701009114583,396.555786132812,0.280997149526816
+663,303874,3794398,303974,3794298,62,6,0,NA,NA,NA,NA,0.00861088951598839,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,108.271740722656,95.8016738891602,397.488807678223,397.043395996094,0.661966886022172
+664,303874,3794298,303974,3794198,63,6,16.3434903047091,0.0398161523671258,10.895943514645,0.432598039215686,11.004404862246,0.0156587324263581,0.038781163434903,3.8781163434903,3,60.1852099123432,0.687896253602305,1.93905817174515,23.4318477766854,14.6953058242798,399.093204074436,398.360961914062,1.05416030862798
+665,303874,3794198,303974,3794098,64,6,6.64819944598338,0.0323928019257972,9.70800390656534,0.242753623188406,15.5867256623399,0.0154365675653353,0,0,0,NA,NA,0,NA,NA,400.44184366862,399.746673583984,0.791371158201423
+666,303874,3794098,303974,3793998,65,6,28.808864265928,0.280737616690243,26.7637824404134,0.810897435897436,NA,0.0114306947457849,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,7.03248846530914,5.19557523727417,401.404361300998,401.066192626953,0.521227685792476
+667,303874,3793998,303974,3793898,66,6,18.4210526315789,0.0629860037446057,10.6319816575438,0.470328282828283,12.1230087792092,0.0125434174678766,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,11.927698802948,7.34765291213989,400.734860738118,400.299285888672,0.553300504164046
+668,303874,3793898,303974,3793798,67,6,0,NA,NA,NA,NA,0.00998501589676576,0,0,0,NA,NA,0,NA,NA,400.239142523872,400.196624755859,0.107326275296504
+669,303874,3793798,303974,3793698,68,6,0.277008310249307,0.0026994001604831,0,0,NA,0.0181643713281056,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,23.3800888061523,20.7823009490967,400.383405049642,400.201599121094,0.33487271226886
+670,303874,3793698,303974,3793598,69,6,19.6675900277008,0.0638858037981001,8.67696376095929,0.382996632996633,16.4298514359663,0.0120043059847109,0,0,0,NA,NA,0,NA,NA,401.118255615234,400.636383056641,0.61397647658287
+671,303874,3793598,303974,3793498,70,6,0.526315789473684,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0114896410856761,0,0,0,NA,NA,0,NA,NA,402.059193929036,401.639556884766,0.540172555495094
+672,303874,3793498,303974,3793398,71,6,24.3767313019391,0.0791824047075043,16.2665629008496,0.560552616108172,12.9406813574434,0.0184638611055783,0.0443213296398892,4.43213296398892,2,68.56432292423,0.738405797101449,3.04709141274238,4.49041458964348,0,402.594144185384,402.512481689453,0.180297033833782
+673,303874,3793398,303974,3793298,72,6,13.8504155124654,0.0337425020060388,7.44453046243547,0.433035714285714,15.2077134755083,0.0185735927008052,0.0415512465373961,4.15512465373961,2,68.9900385068792,0.810299527062533,3.32409972299169,26.060375213623,15.5867252349854,402.547529432509,402.394744873047,0.24860641417852
+674,303874,3793298,303974,3793198,73,6,33.5180055401662,0.163313709709228,17.037504814839,0.496704331450094,54.2433977502533,0.042413458464328,0.260387811634349,26.0387811634349,2,92.609254221734,0.879280363830925,23.5457063711911,4.55773255165587,0,401.541244506836,401.051635742188,0.668261701428238
+675,303874,3793198,303974,3793098,74,6,29.2105263157895,0.0749083544534061,13.217870714359,0.637879720853859,16.8856192986714,0.0434576627858549,0.297368421052632,29.7368421052632,5,89.3833525908891,0.755819930968642,23.4210526315789,12.6378424990494,0,400.985972086589,400.936096191406,0.158262797483265
+676,303874,3793098,303974,3792998,75,6,18.5595567867036,0.0602866035841226,12.2973772615503,0.511473429951691,19.5355530640136,0.0206720299892143,0.074792243767313,7.4792243767313,4,73.9380243466582,0.773778025344659,6.09418282548476,21.9116369706613,5.19557523727417,401.847661336263,401.122436523438,0.90745091381032
+677,303874,3792998,303974,3792898,76,6,39.0581717451524,0.0951538556570293,12.1079769460231,0.481759732878659,15.5867255064659,0.0171299451128946,0.0415512465373961,4.15512465373961,3,63.1049163845889,0.668024172359432,2.77008310249307,5.91065788269043,0,403.552076551649,402.966644287109,0.839550230393895
+678,303874,3792898,303974,3792798,77,6,6.09418282548476,0.0296934017653141,8.17150653904201,0.498263888888889,65.7194057438652,0.019770426930356,0.202216066481994,20.2216066481994,4,85.9416659982433,0.82373046875,14.1274238227147,35.4476518630981,11.6176595687866,404.685391743978,404.050262451172,0.784402857752441
+679,303874,3792798,303974,3792698,78,6,0,NA,NA,NA,NA,0.0233457964210845,0.128947368421053,12.8947368421053,4,79.5664350719632,0.781326427852108,8.42105263157895,54.184554294664,5.19557523727417,405.821834988064,404.873992919922,1.46885105468449
+680,303874,3792698,303974,3792598,79,6,0,NA,NA,NA,NA,0.0208673512678315,0.0969529085872576,9.69529085872576,2,82.5312446392778,0.809075523587899,8.03324099722992,55.6677940913609,18.7329120635986,406.327445983887,404.950958251953,1.46541849677015
+681,303874,3792598,303974,3792498,80,6,0,NA,NA,NA,NA,0.0207282081226624,0.138504155124654,13.8504155124654,6,72.4542574100573,0.672252695290335,4.43213296398892,70.4179242324829,26.4923400878906,405.896847195095,404.789947509766,1.60603020891217
+682,303874,3792498,303974,3792398,81,6,8.86426592797784,0.0431904025677296,9.38384451610514,0.625490196078431,10.3911503376439,0.0275009706226664,0.202216066481994,20.2216066481994,3,86.0787884088664,0.755181206597222,13.0193905817175,24.4777975670279,0,402.143976847331,400.145935058594,2.29167520488493
+683,303874,3792398,303974,3792298,82,6,11.8421052631579,0.12147300722174,13.9437921989869,0.785185185185185,NA,0.0265577109289696,0.136842105263158,13.6842105263158,3,83.8902711016462,0.778706494930118,11.0526315789474,5.86747479438782,0,400.111887613932,400.033813476562,0.203471988201243
+684,303874,3792298,303974,3792198,83,6,8.31024930747922,0.0202455012036233,2.62212964919155,0.186728395061728,23.6998905785626,0.049552340197849,0.349030470914127,34.9030470914127,6,85.804572190003,0.765214159620924,12.7423822714681,22.0345269876813,0,400.239479064941,400.044128417969,0.28953274507993
+685,303874,3792198,303974,3792098,84,6,1.66204986149584,0.00809820048144931,3.28720978401067,0.25,88.7820281813838,0.0259992009009605,0.196675900277008,19.6675900277008,7,79.1273491615911,0.69128275862069,11.3573407202216,36.5821254891409,18.7329120635986,400.372352600098,400.130798339844,0.400399213313357
+686,303874,3792098,303974,3791998,85,6,2.49307479224377,0.0242946014443479,5.960797428667,0.555555555555556,NA,0.0311274189130584,0.191135734072022,19.1135734072022,9,73.4227850242738,0.642392165742103,8.31024930747922,46.0564785556517,15.5867252349854,400.84481133355,400.480926513672,0.47955465152115
+687,303874,3791998,303974,3791898,86,6,31.3157894736842,0.321228619097489,24.9691675088815,0.778711484593838,NA,0.0537470346339672,0.534210526315789,53.4210526315789,6,93.4950466784966,0.692487524164906,44.7368421052632,11.2110289846148,0,401.292643229167,401.096069335938,0.282638319970587
+688,303874,3791898,303974,3791798,87,6,35.7340720221607,0.17411131035116,16.6886129292983,0.568666666666667,14.6953058096335,0.0560915450013431,0.545706371191136,54.5706371191136,5,95.8559536866648,0.722586034079519,50.1385041551247,9.93462568612268,0,401.275868733724,401.2041015625,0.1537311049103
+689,303874,3791798,303974,3791698,88,6,53.4626038781163,0.260492115486619,20.2374753506609,0.465095986038394,15.5867255064659,0.046368811039207,0.434903047091413,43.4903047091413,2,94.2367863000379,0.698920887799564,30.4709141274238,3.02805389720164,0,401.15503692627,401.086029052734,0.0915976169771452
+690,303874,3791698,303974,3791598,89,6,33.5180055401662,0.163313709709228,19.1128741946565,0.632199286442406,25.9778759376342,0.0676829783036954,0.637119113573407,63.7119113573407,1,98.5954283363778,0.775173935479279,63.7119113573407,7.78149686067001,0,401.151597764757,401.099578857422,0.13989899673027
+691,303874,3791598,303974,3791498,90,6,5.52631578947368,0.0283437016850726,8.33353888266744,0.375,29.390611619267,0.0290424337850326,0.115789473684211,11.5789473684211,6,71.1780509820679,0.709620334620335,6.05263157894737,32.8928479498083,0,401.540837605794,401.342163085938,0.321131274595076
+692,303874,3791498,303974,3791398,91,6,8.58725761772853,0.0418407024874881,7.46460837020453,0.425287356321839,31.1734510129318,0.0319169194017049,0.229916897506925,22.9916897506925,5,84.7045703963152,0.734987520187931,12.4653739612188,33.088597648115,0,401.923763699002,401.477355957031,0.823047381848674
+693,303874,3791398,303974,3791298,92,6,27.7008310249307,0.134970008024155,17.5688411826892,0.706564799094511,32.8597028719326,0.0493884411570487,0.454293628808864,45.4293628808864,4,95.8825539497682,0.836168353111238,44.0443213296399,7.22818428423347,0,402.114547729492,401.470794677734,1.15199331502139
+694,303874,3791298,303974,3791198,93,6,53.4626038781163,0.520984230973239,35.1635945899547,0.838514680483592,NA,0.0552344066758416,0.56786703601108,56.786703601108,4,93.0615278726588,0.744902079547749,33.7950138504155,4.80948341648753,0,403.053375244141,402.493988037109,0.72890425057081
+695,303874,3791198,303974,3791098,94,6,8.15789473684211,0.0167362809949952,3.48359196863685,0.225,25.0727731950119,0.0709056878388908,0.536842105263158,53.6842105263158,5,91.9742262640767,0.789218037898777,35,19.4056097082063,0,403.529103597005,403.147247314453,0.336619104965083
+696,303874,3791098,303974,3790998,95,6,0.831024930747922,0.00404910024072465,1.29889380519499,0.0833333333333333,63.2068999375998,0.038147227544201,0.32409972299169,32.409972299169,4,92.9074544048045,0.83250850603155,30.1939058171745,26.9978547789093,5.19557523727417,403.511176215278,403.291320800781,0.288513484153193
+697,303874,3790998,303974,3790898,96,6,50.415512465374,0.163763609735975,16.951439129177,0.518102601865489,24.9772170271782,0.0625585890271884,0.584487534626039,58.4487534626039,2,97.0791349526846,0.699166666666667,51.8005540166205,3.74653649669123,0,402.99899037679,402.771545410156,0.317360835562917
+698,303874,3790898,303974,3790798,97,6,50.9695290858726,0.165563209842964,18.3586290131296,0.678772378516624,20.233714678193,0.0826926331688493,0.905817174515235,90.5817174515235,1,99.7183199952349,0.483744875583945,90.5817174515235,3.75066317841183,0,402.587565104167,402.493041992188,0.183664660519107
+699,303874,3790798,303974,3790698,98,6,6.31578947368421,0.0323928019257972,8.4089829944175,0.5625,62.3469020258635,0.0634670354257411,0.505263157894737,50.5263157894737,3,94.2710932926718,0.789923499880469,41.5789473684211,20.5536093215148,0,402.46253712972,402.426727294922,0.0630352296154468
+700,303874,3790698,303974,3790598,99,6,30.7479224376731,0.0998778059378748,11.4370517002171,0.49467817331895,34.6371679653397,0.0592937088075873,0.614035087719298,61.4035087719298,2,95.7011527419206,0.701813531736805,38.5964912280702,11.6532772313981,0,402.761019388835,402.494384765625,0.319604949693417
+701,303974,3800598,304074,3800498,0,7,11.6343490304709,0.11337480674029,18.5856402472629,0.718253968253968,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.99095916748,382.664398193359,0.320677426626057
+702,303974,3800498,304074,3800398,1,7,8.68421052631579,0.0445401026479712,9.24553107791058,0.629710144927536,36.738264700435,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.121693929036,382.864837646484,0.284907923315117
+703,303974,3800398,304074,3800298,2,7,65.0969529085873,0.634359037713529,31.8800503179256,0.897163120567376,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.202661514282,382.973175048828,0.224368189253516
+704,303974,3800298,304074,3800198,3,7,34.9030470914127,0.0850311050552177,11.5889164459569,0.508954248366013,16.6506909845883,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.41641998291,383.239013671875,0.197268668463119
+705,303974,3800198,304074,3800098,4,7,44.0443213296399,0.214602312758407,18.4152076273944,0.648109823399559,25.9778761038998,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.657512664795,383.494049072266,0.181051897097616
+706,303974,3800098,304074,3799998,5,7,48.4210526315789,0.496689629528891,40.7279107481531,0.745471014492754,NA,0.0155929341777473,0.0460526315789474,4.60526315789474,3,40.1941872793875,0.475862068965517,1.97368421052632,2.96890013558524,0,383.835507710775,383.698089599609,0.183155282761585
+707,303974,3799998,304074,3799898,6,7,59.2797783933518,0.288835817171692,26.7622413248013,0.779524413741247,16.4298513045218,0.00779928867323531,0.07202216066482,7.20221606648199,2,76.132073948143,0.816017473607572,3.8781163434903,0.999149084091187,0,383.959003448486,383.752197265625,0.250766992083713
+708,303974,3799898,304074,3799798,7,7,48.4764542936288,0.472395028084543,34.5560183954522,0.806666666666667,NA,0.0020283724319436,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.82907196969697,2.49307479224377,0,0,384.116813659668,383.856292724609,0.334238023188308
+709,303974,3799798,304074,3799698,8,7,43.7673130193906,0.42650522535633,32.2781935340003,0.79746835443038,NA,0.0106845212995669,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,2.22667510168893,0,384.60516166687,384.079467773438,0.494411119140117
+710,303974,3799698,304074,3799598,9,7,29.7368421052632,0.101677406044863,11.835422748316,0.567933723196881,24.9441715904318,0.044256623292734,0.381578947368421,38.1578947368421,2,96.2014034129462,0.908470493777599,37.8947368421053,11.5473236840347,0,385.233202616374,384.879241943359,0.397019184432976
+711,303974,3799598,304074,3799498,10,7,23.8227146814404,0.0773828046005156,9.32306340507034,0.490620490620491,20.7823007445652,0.0233177980921219,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,0,0,385.643550872803,385.238311767578,0.301837023512289
+712,303974,3799498,304074,3799398,11,7,99.4459833795014,0.969084657613434,37.6295941731344,0.929433611884865,NA,0.0318452431275342,0.0304709141274238,3.04709141274238,2,67.8826803593044,0.656190476190476,2.77008310249307,0,0,385.789926528931,385.652038574219,0.15650181886505
+713,303974,3799398,304074,3799298,12,7,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0405983455437868,0.260387811634349,26.0387811634349,4,92.414829129531,0.839040485107901,24.9307479224377,0,0,385.735018412272,385.678283691406,0.0789486478520937
+714,303974,3799298,304074,3799198,13,7,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0201967856766331,0,0,0,NA,NA,0,NA,NA,385.757843017578,385.69970703125,0.0701685415000325
+715,303974,3799198,304074,3799098,14,7,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0369052466844261,0.235457063711911,23.5457063711911,2,93.4207403327058,0.86140704482196,23.2686980609418,0,0,385.963348388672,385.847564697266,0.205877374790442
+716,303974,3799098,304074,3798998,15,7,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.00956383976186277,0.191135734072022,19.1135734072022,1,92.8481599520577,0.877391599683007,19.1135734072022,0,0,386.406679153442,386.155944824219,0.310242673676896
+717,303974,3798998,304074,3798898,16,7,49.584487534626,0.161064209575492,14.2266262507104,0.617913832199546,18.136256676654,0.040761341034,0.335180055401662,33.5180055401662,8,90.511760425295,0.753863636363636,29.3628808864266,8.99518505600858,0,386.97737121582,386.650787353516,0.444097284958057
+718,303974,3798898,304074,3798798,17,7,49.4736842105263,0.253743615085412,25.5163232495178,0.778115942028985,15.5867256623399,0.0463788349908244,0.347368421052632,34.7368421052632,7,89.5470736834114,0.809262481595503,29.7368421052632,2.5055603944894,0,387.759824752808,387.071807861328,0.779764586246609
+719,303974,3798798,304074,3798698,18,7,78.9473684210526,0.384664522868842,27.6576396203608,0.876331453634085,15.5867256623399,0.0509239822466123,0.490304709141274,49.0304709141274,4,93.5377445420166,0.892002393298763,44.8753462603878,1.48676468154131,0,389.469573974609,388.400451660156,1.39636028950906
+720,303974,3798698,304074,3798598,19,7,79.2243767313019,0.386014222949084,28.004653133602,0.840625,15.5867256623399,0.0956649771708366,0.767313019390582,76.7313019390582,2,96.4259072287906,0.743795787545787,47.9224376731302,1.91006735688082,0,391.971138000488,390.675354003906,1.38616279628988
+721,303974,3798598,304074,3798498,20,7,90.8587257617728,0.442701626319229,28.4313308959529,0.88719806763285,10.3911504415599,0.0829620833497061,0.537396121883656,53.7396121883656,4,93.7617204476264,0.873902195608782,44.0443213296399,0.77665815402552,0,393.599492390951,393.01171875,0.693679635780529
+722,303974,3798498,304074,3798398,21,7,91.0526315789474,0.933992455527153,39.9972892439906,0.892100192678227,NA,-0.00866617572370926,0,0,0,NA,NA,0,NA,NA,394.379745483398,393.965484619141,0.444951144760257
+723,303974,3798398,304074,3798298,22,7,84.7645429362881,0.275338816369276,17.7974044451349,0.588888888888889,12.1230087965286,0.0168029146012969,0.119113573407202,11.9113573407202,2,84.6598252569111,0.826563591893781,9.69529085872576,2.17489192652148,0,394.493321736654,394.247436523438,0.319052951912065
+724,303974,3798298,304074,3798198,23,7,59.8337950138504,0.291535217332175,23.3827917180281,0.755100261551874,10.3911504415599,0.0418091515634451,0.282548476454294,28.2548476454294,2,94.4649096005602,0.900985294427917,27.9778393351801,6.91937983737272,0,394.441791534424,394.267730712891,0.180137291552623
+725,303974,3798198,304074,3798098,24,7,52.0775623268698,0.507487230170823,29.3796819294802,0.899822695035461,NA,0.0187796064442951,0.177285318559557,17.7285318559557,4,81.1781486543503,0.80465367965368,9.41828254847645,15.5854345262051,0,394.63304901123,394.514801025391,0.200942785470588
+726,303974,3798098,304074,3797998,25,7,70.7894736842105,0.363069321584977,24.5979796107018,0.867384531177635,15.5867256623399,0.073946095849552,0.692105263157895,69.2105263157895,3,94.871376120456,0.723305767930514,33.1578947368421,2.65979457173511,0,395.035158157349,394.799041748047,0.296951919737205
+727,303974,3797998,304074,3797898,26,7,48.7534626038781,0.158364809415009,17.3605478087914,0.61704156954157,10.3911504415599,0.0325029037345791,0.263157894736842,26.3157894736842,2,91.2074673038105,0.904201680672269,22.4376731301939,0,0,395.698062896729,395.137725830078,0.511672766685491
+728,303974,3797898,304074,3797798,27,7,84.7645429362881,0.413008224553915,28.1558246966273,0.863104423868313,10.3911504415599,0.0469311903045984,0.42382271468144,42.382271468144,3,93.1021617203289,0.870294963044073,30.7479224376731,0.0679160161735186,0,396.101885477702,395.99560546875,0.19978335794647
+729,303974,3797798,304074,3797698,28,7,88.0886426592798,0.429204625516813,28.0020962219241,0.876117496807152,10.3911504415599,0.0365013020256856,0.343490304709141,34.3490304709141,2,95.4233577475022,0.952611345522738,34.0720221606648,0,0,395.613759994507,394.854156494141,0.567494219556692
+730,303974,3797698,304074,3797598,29,7,37.8947368421053,0.129571207703189,10.455996520522,0.346335697399527,11.8258688975844,0.0465431667912574,0.526315789473684,52.6315789473684,3,93.0656368836199,0.829290206648697,36.578947368421,6.17578941106796,0,394.745338439941,394.057861328125,0.768408747799356
+731,303974,3797598,304074,3797498,30,7,24.6537396121884,0.0400411023804993,7.37771575378047,0.42636684303351,17.4251847227177,0.0202471037154789,0.185595567867036,18.5595567867036,4,82.361228153735,0.821588464445607,13.5734072022161,9.61312938804057,0,394.010953903198,393.65380859375,0.490219893193606
+732,303974,3797498,304074,3797398,31,7,40.4432132963989,0.394112423430533,28.0138967757348,0.876712328767123,NA,-0.00230550771231513,0,0,0,NA,NA,0,NA,NA,394.267857869466,393.764312744141,0.756860295896763
+733,303974,3797398,304074,3797298,32,7,14.9584487534626,0.145767608666088,14.8996123843556,0.811728395061728,NA,-0.0581126652241815,0,0,0,NA,NA,0,NA,NA,395.416027069092,394.702911376953,0.763420808324797
+734,303974,3797298,304074,3797198,33,7,0.263157894736842,0.0026994001604831,0,0,NA,-0.066173718197311,0,0,0,NA,NA,0,NA,NA,395.972694396973,395.204895019531,1.06382089538258
+735,303974,3797198,304074,3797098,34,7,4.70914127423823,0.0458898027282127,19.8856846034672,0.333333333333333,NA,-0.0521475565150558,0,0,0,NA,NA,0,NA,NA,394.762147903442,394.499572753906,0.356103674663943
+736,303974,3797098,304074,3796998,35,7,49.8614958448753,0.161964009628986,16.682558957868,0.522007108118219,19.0504424761932,0.0208857974437484,0.470914127423823,47.0914127423823,1,97.4598140066111,0.99396149407022,47.0914127423823,1.30368762016296,0,394.436737060547,394.092437744141,0.404260416650626
+737,303974,3796998,304074,3796898,36,7,90.0277008310249,0.877305052157008,37.2023265869763,0.902564102564103,NA,0.0534317719010337,0.340720221606648,34.0720221606648,3,90.8419827971301,0.897972641971587,27.4238227146814,0.253442694501179,0,393.795625686646,393.249176025391,0.647150627835261
+738,303974,3796898,304074,3796798,37,7,75,0.384664522868842,22.5993475308701,0.739814814814815,15.5867255064659,0.00315745114122891,0,0,0,NA,NA,0,NA,NA,393.11412302653,393.051879882812,0.185375114438515
+739,303974,3796798,304074,3796698,38,7,25.7617728531856,0.0502088429849857,11.9219084120931,0.499305555555556,18.6461627302253,0.016226630427338,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,8.20219922065735,0,393.505842208862,393.175811767578,0.431391283311842
+740,303974,3796698,304074,3796598,39,7,15.7894736842105,0.0384664522868842,8.49256560399149,0.448958333333333,17.2563020422905,0.0155723778142125,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,10.5487326383591,5.19557523727417,394.453519821167,394.072845458984,0.517520941183519
+741,303974,3796598,304074,3796498,40,7,0,NA,NA,NA,NA,0.014230182084885,0,0,0,NA,NA,0,NA,NA,395.183130900065,394.742095947266,0.486927621581803
+742,303974,3796498,304074,3796398,41,7,0,NA,NA,NA,NA,0.0163680441131612,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,126.413803100586,126.413803100586,395.086254119873,394.658508300781,0.427250381895484
+743,303974,3796398,304074,3796298,42,7,13.9473684210526,0.143068208505604,18.1219699382859,0.767295597484277,NA,0.0147797504972627,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.948087431693989,3.68421052631579,7.57597010476249,0,394.711069742839,394.605255126953,0.206614683445281
+744,303974,3796298,304074,3796198,43,7,22.7146814404432,0.0737836043865381,10.8324701260566,0.579094516594517,20.9955022530305,0.0116095034212413,0.0526315789473684,5.26315789473684,5,58.5564100911271,0.454022988505747,2.49307479224377,7.01590086284437,0,394.642990112305,394.560302734375,0.143901266669435
+745,303974,3796198,304074,3796098,44,7,25.4847645429363,0.124172407382223,12.3524670898082,0.487037037037037,10.3911503376439,0.0124893186020448,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,18.184513092041,0,395.02124786377,394.705596923828,0.354249358505331
+746,303974,3796098,304074,3795998,45,7,0,NA,NA,NA,NA,0.0139656154590379,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,98.2791544596354,92.0658264160156,395.349805831909,395.207977294922,0.175859579579432
+747,303974,3795998,304074,3795898,46,7,5,0.0512886030491789,10.0815171712981,0.649122807017544,NA,0.0101871438314489,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,27.9790287017822,27.9790287017822,395.280878702799,395.103912353516,0.217199226728472
+748,303974,3795898,304074,3795798,47,7,27.7008310249307,0.134970008024155,23.3993670438992,0.621710526315789,11.6176592829322,-0.00116948379787608,0,0,0,NA,NA,0,NA,NA,395.036088943481,395.010437011719,0.0643524117592624
+749,303974,3795798,304074,3795698,48,7,26.3157894736842,0.128221507622947,15.4426807944933,0.698839662447257,14.6953058096335,0.0107440531538635,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,22.5999031066895,10.3911504745483,395.164866129557,395.075378417969,0.131340310334508
+750,303974,3795698,304074,3795598,49,7,96.398891966759,0.939391255848119,36.9954260911625,0.926724137931035,NA,0.00878275014211616,0,0,0,NA,NA,0,NA,NA,395.701284408569,395.254852294922,0.553491412901343
+751,303974,3795598,304074,3795498,50,7,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.00398466905866084,0.0368421052631579,3.68421052631579,2,69.6957255342279,0.792349726775956,3.15789473684211,0,0,396.700261433919,396.1845703125,0.723932360990529
+752,303974,3795498,304074,3795398,51,7,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0306976142870211,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,0,0,397.064170837402,396.771789550781,0.329810159081621
+753,303974,3795398,304074,3795298,52,7,67.590027700831,0.658653639157877,33.9444447570928,0.878415300546448,NA,0.0124194460560295,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,14.0953762190683,5.19557523727417,397.207550048828,397.065490722656,0.180566545601308
+754,303974,3795298,304074,3795198,53,7,72.0221606648199,0.701844041725606,38.2344992642262,0.873076923076923,NA,-0.00545170457377111,0.0831024930747922,8.31024930747922,2,82.4302837955849,0.88871077131759,7.75623268698061,5.93034046490987,0,397.630456924438,397.296752929688,0.350004278425768
+755,303974,3795198,304074,3795098,54,7,52.8947368421053,0.271289716128552,27.1895307771722,0.815921052631579,41.5646017662396,-0.0576324284807924,0,0,0,NA,NA,0,NA,NA,398.305250167847,398.057159423828,0.300757057327537
+756,303974,3795098,304074,3794998,55,7,56.786703601108,0.276688516449518,20.1767541223796,0.540837479270315,26.4923394249063,-0.0970374314576444,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.8677673339844,15.5867252349854,398.623789469401,398.486206054688,0.12877587741973
+757,303974,3794998,304074,3794898,56,7,74.792243767313,0.364419021665219,22.0678886029721,0.646161506427666,15.5867255064659,-0.168755702581515,0,0,0,NA,NA,0,NA,NA,398.64001083374,398.518585205078,0.108436224077587
+758,303974,3794898,304074,3794798,57,7,70.3601108033241,0.685647640762708,35.506083037981,0.858923884514436,NA,-0.0749673559308636,0,0,0,NA,NA,0,NA,NA,398.259389241536,397.837799072266,0.46190329723051
+759,303974,3794798,304074,3794698,58,7,5,0.0128221507622947,4.17322049549717,0.254166666666667,34.2960803000102,0.0254913260144684,0.176315789473684,17.6315789473684,2,88.7267132410601,0.761339122361487,14.2105263157895,38.8396574988294,10.3911504745483,397.516494750977,396.751892089844,0.674066299392754
+760,303974,3794698,304074,3794598,59,7,1.10803324099723,0.0107976006419324,3.97663195763135,0.333333333333333,NA,0.0152339492920682,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,51.0933542251587,41.8880653381348,397.076304117839,396.612091064453,0.625232145224237
+761,303974,3794598,304074,3794498,60,7,29.6398891966759,0.0962786057238973,23.6002566168896,0.577171840958606,15.2734876412629,0.00690983235318738,0,0,0,NA,NA,0,NA,NA,396.857664108276,396.583984375,0.39296010456407
+762,303974,3794498,304074,3794398,61,7,7.20221606648199,0.0350922020862803,9.69133302849333,0.368055555555556,18.7329127343573,0.0110831323116528,0,0,0,NA,NA,0,NA,NA,396.813105265299,396.64501953125,0.197654426115461
+763,303974,3794398,304074,3794298,62,7,0.526315789473684,0.0053988003209662,3.67382645240838,0.0833333333333333,NA,0.0127388304022469,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,27.9790287017822,27.9790287017822,397.340185165405,396.90478515625,0.551369759804905
+764,303974,3794298,304074,3794198,63,7,16.0664819944598,0.0521884031026733,14.427222686105,0.488573474205658,16.6354546064473,0.0155950504986549,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,21.4480323791504,16.4298515319824,398.512873331706,397.748229980469,0.974754847443105
+765,303974,3794198,304074,3794098,64,7,7.4792243767313,0.0364419021665219,10.0624096293589,0.518137254901961,15.5867256623399,0.0147943905900733,0,0,0,NA,NA,0,NA,NA,399.889240264893,398.820709228516,1.13389774822332
+766,303974,3794098,304074,3793998,65,7,32.1329639889197,0.31313041861604,26.5055447693921,0.844827586206896,NA,0.0121701670009378,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,3.82239643732707,0,401.508232116699,401.066192626953,0.59796255320884
+767,303974,3793998,304074,3793898,66,7,34.2105263157895,0.350922020862803,39.7689478970282,0.791025641025641,NA,0.0119141888431554,0.0447368421052632,4.47368421052632,2,70.5678656220003,0.790633608815427,3.15789473684211,15.6640816295848,10.3911504745483,401.237602233887,400.629211425781,0.464808071768719
+768,303974,3793898,304074,3793798,67,7,19.9445983379501,0.0485892028886958,8.75888661002953,0.506344696969697,29.0553670303998,0.00262037324690309,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,12.2347052892049,10.3911504745483,400.483164469401,400.247985839844,0.440280391250332
+769,303974,3793798,304074,3793698,68,7,4.70914127423823,0.0152966009094042,4.19106563498688,0.242063492063492,16.4043982143055,0.0172448301879773,0.0498614958448753,4.98614958448753,4,60.9452942344228,0.610193283662671,2.77008310249307,31.9227035840352,10.3911504745483,400.291568756104,400.191223144531,0.269273001331933
+770,303974,3793698,304074,3793598,69,7,2.49307479224377,0.012147300722174,2.97218804259788,0.270833333333333,20.7823006752878,0.0243705840754888,0,0,0,NA,NA,0,NA,NA,401.389747619629,400.602600097656,0.761603530420122
+771,303974,3793598,304074,3793498,70,7,3.94736842105263,0.0404910024072465,10.264221454087,0.555555555555556,NA,0.01751941829314,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.709702062643239,1.57894736842105,13.7096716562907,10.3911504745483,402.202934265137,401.928802490234,0.366055258577777
+772,303974,3793498,304074,3793398,71,7,22.4376731301939,0.109325706499566,16.1466816759411,0.631971153846154,21.4219054085159,0.0172602741321929,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,30.9229553222656,18.7329120635986,402.661901473999,402.548309326172,0.154749874828023
+773,303974,3793398,304074,3793298,72,7,16.3434903047091,0.159264609468503,18.2330068205956,0.745762711864407,NA,0.0476656529021777,0.243767313019391,24.3767313019391,4,85.5966479668649,0.839971069270432,15.7894736842105,16.5221482027661,0,402.568618774414,402.351776123047,0.243476758247036
+774,303974,3793298,304074,3793198,73,7,22.7146814404432,0.221350813159614,24.9034007749786,0.798780487804878,NA,0.0869425706646968,0.653739612188366,65.3739612188366,1,98.6844741426788,0.888671201814059,65.3739612188366,25.7355292793048,0,401.814012527466,401.129577636719,0.642067172662295
+775,303974,3793198,304074,3793098,74,7,20.5263157894737,0.0701844041725607,10.7777980775852,0.459780907668232,23.9532501020753,0.0450585497144953,0.239473684210526,23.9473684210526,4,88.4161838542799,0.870135418001623,20.5263157894737,12.4521199792296,0,401.038101196289,400.966979980469,0.206832915949771
+776,303974,3793098,304074,3792998,75,7,34.0720221606648,0.0664052439478843,9.67670992613122,0.449296350842743,14.1377329260818,0.0261482259451028,0.0498614958448753,4.98614958448753,5,54.2032735496431,0.610193283662671,1.93905817174515,2.2082007461124,0,401.592330932617,401.074798583984,0.665780736751267
+777,303974,3792998,304074,3792898,76,7,33.7950138504155,0.0548878032631564,9.10099690684466,0.510664682539683,16.4526547792065,0.0212683807954904,0.038781163434903,3.8781163434903,1,77.3446466870219,1,3.8781163434903,9.01479353223528,0,402.608777364095,401.724243164062,0.976466028117174
+778,303974,3792898,304074,3792798,77,7,4.98614958448753,0.0161964009628986,4.33491976161078,0.321428571428571,41.3038412630249,0.0375994262603274,0.282548476454294,28.2548476454294,3,90.3289898594623,0.870519231174969,20.7756232686981,41.306370342479,0,403.511932373047,401.790618896484,1.94810842972934
+779,303974,3792798,304074,3792698,78,7,22.6315789473684,0.0773828046005156,14.987700024374,0.493493493493493,41.0151817889985,0.0427921374214317,0.360526315789474,36.0526315789474,5,88.7081769156643,0.812345679012346,15.7894736842105,7.56510768319569,0,406.411911010742,404.662109375,1.53002169687942
+780,303974,3792698,304074,3792598,79,7,9.41828254847645,0.0458898027282127,8.57759749598799,0.654671717171717,46.7601769870196,0.0369170890427939,0.28808864265928,28.808864265928,1,95.2049817565958,0.909860796104788,28.808864265928,10.8026379897044,0,407.018646240234,406.472198486328,0.562969489872228
+781,303974,3792598,304074,3792498,80,7,0,NA,NA,NA,NA,0.0399344213328329,0.376731301939058,37.6731301939058,2,92.671243985805,0.805913978494624,24.6537396121884,78.0195539698881,51.955753326416,406.290596008301,405.399383544922,1.38933783795362
+782,303974,3792498,304074,3792398,81,7,24.6537396121884,0.120123307141498,15.6373098407063,0.565162037037037,20.7823006752878,0.012151871075776,0.0249307479224377,2.49307479224377,4,42.1999460549695,0.401751893939394,1.38504155124654,10.4139702055189,5.19557523727417,401.856044769287,400.137878417969,2.41479571671675
+783,303974,3792398,304074,3792298,82,7,0,NA,NA,NA,NA,0.0219430164032689,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,45.1705448150635,39.5683212280273,399.99671681722,399.935485839844,0.147919048538779
+784,303974,3792298,304074,3792198,83,7,9.97229916897507,0.0242946014443479,5.06420934261727,0.271825396825397,13.2955651758042,0.0209142248801838,0.102493074792244,10.2493074792244,4,72.6967815979716,0.689485934021453,3.8781163434903,24.2906338717486,0,399.973648071289,399.926452636719,0.0857242142740902
+785,303974,3792198,304074,3792098,84,7,28.2548476454294,0.0917796054564255,17.8962161482083,0.637698412698413,10.7999867220173,0.0253489560402809,0.0609418282548476,6.09418282548476,8,47.2656332613178,0.43623112961999,1.93905817174515,9.83184458992698,0,400.234649658203,400.100128173828,0.178525274107593
+786,303974,3792098,304074,3791998,85,7,24.0997229916898,0.0587119534905075,11.710959209039,0.484787603065635,11.4671892316203,0.0311705891606965,0.124653739612188,12.4653739612188,7,67.6465679734454,0.549050632911392,3.8781163434903,14.6095026122199,0,400.656471252441,400.421142578125,0.294608792467193
+787,303974,3791998,304074,3791898,86,7,23.1578947368421,0.0475094428245026,8.42816683056531,0.336269841269841,11.9208690189736,0.0451306293636184,0.339473684210526,33.9473684210526,5,87.5104955834731,0.690768839535475,18.1578947368421,12.1730278517849,0,400.960172653198,400.837768554688,0.150221886438397
+788,303974,3791898,304074,3791798,87,7,17.7285318559557,0.0575872034236395,8.73431084450312,0.280510018214936,12.9406814039161,0.0363725328720736,0.260387811634349,26.0387811634349,4,86.3980101471706,0.798800606384876,15.2354570637119,22.0077570600713,0,401.077123006185,401.023468017578,0.0810953636586038
+789,303974,3791798,304074,3791698,88,7,24.9307479224377,0.12147300722174,16.4194491901362,0.508823529411765,14.6953058096335,0.0486939136539341,0.451523545706371,45.1523545706371,3,91.8382440842206,0.726515151515151,20.7756232686981,11.3755033615908,0,401.087219238281,401.053100585938,0.050508546597184
+790,303974,3791698,304074,3791598,89,7,30.1939058171745,0.294234617492658,34.7684069778966,0.753822629969419,NA,0.04184219928815,0.349030470914127,34.9030470914127,4,92.1978354446487,0.778630493356871,27.1468144044321,8.1970349342104,0,401.141909281413,401.108428955078,0.0594142241004929
+791,303974,3791598,304074,3791498,90,7,1.57894736842105,0.00809820048144931,3.39810794893223,0.277777777777778,15.5867256623399,0.0290754236289965,0.202631578947368,20.2631578947368,1,93.3950050212716,0.79712677150068,20.2631578947368,36.9659921101161,10.3911504745483,401.241207122803,401.165130615234,0.132262179864062
+792,303974,3791498,304074,3791398,91,7,33.2409972299169,0.107976006419324,12.9118640744723,0.623597081930415,11.8258688975844,0.0552705084175659,0.526315789473684,52.6315789473684,2,95.0073159898624,0.730113636363636,37.3961218836565,11.4598442529377,0,401.245018005371,401.181640625,0.152998629785162
+793,303974,3791398,304074,3791298,92,7,31.8559556786704,0.103477006151852,10.4556455251621,0.480083857442348,38.7734467393006,0.0872573003165135,0.786703601108033,78.6703601108033,1,99.2919856928658,0.771730142516659,78.6703601108033,8.70583628600752,0,401.458393096924,401.261657714844,0.355629190543447
+794,303974,3791298,304074,3791198,93,7,36.8421052631579,0.179510110672126,19.5080345753902,0.501171875,15.5867255064659,0.0633025526742604,0.662049861495845,66.2049861495845,1,98.7277342668279,0.702112443613159,66.2049861495845,5.53969346130243,0,402.257146199544,401.73193359375,0.809323585462163
+795,303974,3791198,304074,3791098,94,7,7.89473684210526,0.026994001604831,8.41727011761057,0.27962962962963,16.4043982697274,0.036763066887445,0.286842105263158,28.6842105263158,3,88.2741738635422,0.814936220428194,13.4210526315789,14.6415497753598,0,403.140632629395,402.841522216797,0.36749549385934
+796,303974,3791098,304074,3790998,95,7,0,NA,NA,NA,NA,0.023060958233289,0.110803324099723,11.0803324099723,3,77.938350454427,0.79857720742084,6.92520775623269,39.7930102825165,25.977876663208,403.326075236003,403.030731201172,0.264737918575101
+797,303974,3790998,304074,3790898,96,7,6.37119113573407,0.0206954012303704,6.56959268970175,0.380952380952381,42.9609098302663,0.0417559782914279,0.318559556786704,31.8559556786704,5,89.9644907337984,0.73895794246404,22.1606648199446,18.6032068045243,0,403.109157562256,402.895751953125,0.237134714046073
+798,303974,3790898,304074,3790798,97,7,8.86426592797784,0.0431904025677296,8.25434755400181,0.615909090909091,63.2069005355288,0.054363482144798,0.457063711911357,45.7063711911357,3,92.4165070310063,0.727359693877551,26.5927977839335,20.2447624784527,0,402.714775085449,402.5517578125,0.225373091472681
+799,303974,3790798,304074,3790698,98,7,0,NA,NA,NA,NA,0.0402154138404799,0.342105263157895,34.2105263157895,2,94.824331365189,0.807594936708861,32.1052631578947,48.4792061879085,20.7823009490967,402.541341781616,402.480804443359,0.096382417898106
+800,303974,3790698,304074,3790598,99,7,19.1135734072022,0.0620862036911113,12.5677976776376,0.495431286549708,24.758007105724,0.0330330697823505,0.251461988304094,25.1461988304094,4,85.5316011743022,0.790441176470588,15.2046783625731,10.7976923099784,0,402.880498886108,402.589111328125,0.296359334981862
+801,304074,3800598,304174,3800498,0,8,14.404432132964,0.140368808345121,15.1915224685073,0.778846153846154,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.405494689941,382.125396728516,0.33833084448671
+802,304074,3800498,304174,3800398,1,8,20.5263157894737,0.0526383031294205,9.4006586470108,0.262586805555556,11.0044048971005,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.602254231771,382.402252197266,0.274105363948611
+803,304074,3800398,304174,3800298,2,8,42.9362880886427,0.20920351243744,17.4374667008059,0.639157014157014,11.6176592829322,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.817947387695,382.587707519531,0.268225995157794
+804,304074,3800298,304174,3800198,3,8,48.1994459833795,0.0939391255848119,9.54130161050798,0.398949753949754,19.3333080533373,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.213975694444,383.027069091797,0.260563134399583
+805,304074,3800198,304174,3800098,4,8,72.0221606648199,0.350922020862803,24.801560254785,0.780797101449275,11.6176593526411,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.525479634603,383.410308837891,0.132602071353011
+806,304074,3800098,304174,3799998,5,8,62.6315789473684,0.160614309548745,15.4080264941046,0.666622245913291,10.3911504415599,0.0236625459169054,0.0328947368421053,3.28947368421053,2,43.5308153658114,0.793197278911565,2.63157894736842,2.07823009490967,0,383.660247802734,383.604919433594,0.0880981381930679
+807,304074,3799998,304174,3799898,6,8,68.6980609418283,0.334725619899905,18.3022285086748,0.418690958164642,26.4923394249063,0.0151744776221298,0.0221606648199446,2.21606648199446,4,30.9165064303089,0.386402266288952,0.554016620498615,2.75110125541687,0,383.654655456543,383.600158691406,0.108751088748416
+808,304074,3799898,304174,3799798,7,8,50.1385041551247,0.244295714523721,24.8303200456152,0.742061717352415,10.3911504415599,0.0195406697219626,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.884324532171238,8.03324099722992,10.538695055863,0,383.715671115451,383.608581542969,0.186223997579559
+809,304074,3799798,304174,3799698,8,8,77.5623268698061,0.755832044935269,38.5211269485056,0.848214285714286,NA,0.0255131098539169,0.0415512465373961,4.15512465373961,5,51.9665047606898,0.573173935890699,2.49307479224377,0.346371682484945,0,384.037020365397,383.731201171875,0.418169944251428
+810,304074,3799698,304174,3799598,9,8,71.3157894736842,0.731537443490921,40.1556223031763,0.845633456334563,NA,0.0424798750336202,0.305263157894737,30.5263157894737,3,92.0766538042987,0.910894660894661,27.1052631578947,0,0,384.541358100043,384.142425537109,0.568860720308837
+811,304074,3799598,304174,3799498,10,8,97.7839335180055,0.952888256650535,37.324182957974,0.928706326723324,NA,0.0909478384433856,0.853185595567867,85.3185595567867,2,99.0973388779808,0.9295380611581,84.7645429362881,0,0,384.944025675456,384.524658203125,0.576267848818862
+812,304074,3799498,304174,3799398,11,8,52.0775623268698,0.507487230170823,31.6677315189588,0.874113475177305,NA,0.0353735042469888,0.310249307479224,31.0249307479224,3,91.8829596986625,0.899518867549405,27.7008310249307,2.037168102605,0,385.278470357259,384.884246826172,0.46926790377712
+813,304074,3799398,304174,3799298,12,8,27.9778393351801,0.272639416208793,31.7120292644568,0.764026402640264,NA,0.0290932097850197,0.0914127423822715,9.14127423822715,3,75.9057873348393,0.796183378500452,6.09418282548476,18.485890157295,0,385.460296630859,385.238708496094,0.296334929992885
+814,304074,3799298,304174,3799198,13,8,47.1052631578947,0.241596314363238,19.9372402666646,0.505649717514124,31.1734513246797,0.0306366582608079,0.147368421052632,14.7368421052632,4,81.5723734971918,0.746086292478045,8.94736842105263,22.4121700014387,0,385.664629618327,385.465362548828,0.177294962040377
+815,304074,3799198,304174,3799098,14,8,39.8891966759003,0.194356811554783,17.8994560907962,0.591183574879227,15.5867256623399,0.0494086739416166,0.393351800554017,39.3351800554017,4,94.3597892328708,0.860519845451352,37.3961218836565,17.0726632232397,0,385.930145263672,385.826324462891,0.206219024581697
+816,304074,3799098,304174,3798998,15,8,72.5761772853186,0.707242842046573,35.3088116078289,0.905216284987277,NA,0.0601477292108342,0.714681440443213,71.4681440443213,1,98.9839537105949,0.920179300086434,71.4681440443213,6.91805347176485,0,386.434420267741,386.133392333984,0.357211665650065
+817,304074,3798998,304174,3798898,16,8,40.4432132963989,0.394112423430533,27.6221939424132,0.877853881278539,NA,0.0212302476103808,0.0526315789473684,5.26315789473684,3,70.1179041938074,0.745210727969349,4.15512465373961,5.42210967917191,0,386.947150336372,386.660614013672,0.298969960971618
+818,304074,3798898,304174,3798798,17,8,11.8421052631579,0.12147300722174,13.6717990900524,0.8,NA,0.00330055247651983,0,0,0,NA,NA,0,NA,NA,387.429255167643,387.095153808594,0.454977311346771
+819,304074,3798798,304174,3798698,18,8,58.1717451523546,0.566874033701451,34.0119728003064,0.885714285714286,NA,0.0355025978538516,0.307479224376731,30.7479224376731,2,94.4521265631326,0.94946,30.1939058171745,0,0,389.296698676215,388.104217529297,2.47212730196123
+820,304074,3798698,304174,3798598,19,8,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0851814873630073,0.905817174515235,90.5817174515235,2,99.2980650081323,0.896748975116789,90.0277008310249,0,0,393.038378397624,391.446685791016,1.58345820590607
+821,304074,3798598,304174,3798498,20,8,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0514112481708094,0.548476454293629,54.8476454293629,2,97.4803560303554,0.746543855836579,53.4626038781163,0,0,393.839097764757,393.394104003906,0.447901045381878
+822,304074,3798498,304174,3798398,21,8,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0534957372044262,0.55,55,3,96.269846658743,0.90288489003142,52.3684210526316,0,0,394.063275655111,393.979278564453,0.136456247323679
+823,304074,3798398,304174,3798298,22,8,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.053291606533643,0.542936288088643,54.2936288088643,3,96.6246803672935,0.837712287712288,52.3545706371191,0,0,394.065036349826,393.963928222656,0.19889297861496
+824,304074,3798298,304174,3798198,23,8,95.2908587257618,0.928593655206187,37.0784698339304,0.907461240310078,NA,0.0500598053830928,0.620498614958449,62.0498614958449,1,98.5028283384221,0.899137358991374,62.0498614958449,0,0,394.164334615072,393.994812011719,0.229636743810015
+825,304074,3798198,304174,3798098,24,8,88.6426592797784,0.863808051354593,36.414092139893,0.893229166666667,NA,0.0126706601367876,0.0941828254847645,9.41828254847645,5,68.8238879554985,0.664864569681083,3.8781163434903,0.152811036390417,0,394.414513481988,394.241180419922,0.268336927147055
+826,304074,3798098,304174,3797998,25,8,26.0526315789474,0.133620307943914,19.9383974855759,0.636404293381038,62.3469026493595,-0.00169354487044122,0.118421052631579,11.8421052631579,1,89.6940898761467,0.925373134328358,11.8421052631579,11.4000847286648,0,394.636171976725,394.403289794922,0.372404091121373
+827,304074,3797998,304174,3797898,26,8,12.4653739612188,0.0607365036108698,12.0979856409249,0.645545314900154,30.2951490982217,0.00866107922741717,0.0526315789473684,5.26315789473684,3,64.6738402459532,0.745210727969349,2.77008310249307,18.9848904860647,10.3911504745483,395.12983194987,394.532867431641,0.970915528540422
+828,304074,3797898,304174,3797798,27,8,65.9279778393352,0.642457238194978,31.2084742477283,0.906862745098039,NA,0.0153086590003806,0.074792243767313,7.4792243767313,2,77.2637992829888,0.849185350229773,4.98614958448753,0,0,395.597113715278,394.57373046875,1.24480925856285
+829,304074,3797798,304174,3797698,28,8,93.9058171745152,0.915096654403772,36.9303005853047,0.910029498525074,NA,0.00569438728448819,0.0664819944598338,6.64819944598338,3,74.4445552616069,0.802670623145401,5.54016620498615,0,0,394.89656829834,394.273620605469,0.886663016575909
+830,304074,3797698,304174,3797598,29,8,42.8947368421053,0.440002226158746,31.7955738611033,0.853783231083845,NA,0.0313030347711614,0.352631578947368,35.2631578947368,1,96.3014772930087,0.784752765560442,35.2631578947368,3.42885236953621,0,393.936272515191,393.616973876953,0.527524597507565
+831,304074,3797598,304174,3797498,30,8,60.9418282548476,0.197956011768761,15.4702435729721,0.695070901320901,15.5867255584239,0.0277154855700203,0.174515235457064,17.4515235457064,3,86.4681878199271,0.746705308114704,10.803324099723,1.10626278983222,0,393.591339111328,393.515594482422,0.178426980170836
+832,304074,3797498,304174,3797398,31,8,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0226997072550299,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0,394.004062228733,393.733795166016,0.635078465746704
+833,304074,3797398,304174,3797298,32,8,96.398891966759,0.939391255848119,37.0287273676004,0.92911877394636,NA,0.0241708721852845,0.185595567867036,18.5595567867036,2,87.5475396975021,0.895052037909181,14.1274238227147,0,0,395.278307596842,394.703765869141,0.52910183561094
+834,304074,3797298,304174,3797198,33,8,88.9473684210526,0.912397254243288,36.6535418297583,0.928500986193294,NA,0.019423735568355,0.0763157894736842,7.63157894736842,3,76.244319596073,0.838758562162818,6.31578947368421,0,0,395.506700303819,395.230987548828,0.340850100561396
+835,304074,3797198,304174,3797098,34,8,80.3324099722992,0.7828260465401,34.3075466818787,0.913793103448276,NA,0.0200846517013374,0.119113573407202,11.9113573407202,1,89.4584842426695,0.921165269042628,11.9113573407202,0,0,394.770792643229,394.491729736328,0.387974453770212
+836,304074,3797098,304174,3796998,35,8,99.4459833795014,0.969084657613434,37.5768148882739,0.930826369545033,NA,0.0361069563951684,0.221606648199446,22.1606648199446,2,92.5079071629638,0.891434013332665,21.606648199446,0,0,394.170895046658,393.934509277344,0.364009417134736
+837,304074,3796998,304174,3796898,36,8,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0369759619537834,0.229916897506925,22.9916897506925,3,91.1452264314037,0.823325013458621,21.0526315789474,0,0,393.466054280599,393.041809082031,0.430356983591481
+838,304074,3796898,304174,3796798,37,8,64.4736842105263,0.33067651965918,16.934824560212,0.437841530054645,15.5867256623399,0.0128302387066601,0.05,5,2,72.9608481119824,0.782214156079855,3.94736842105263,9.62116344351518,0,392.990787082248,392.9150390625,0.172638172717272
+839,304074,3796798,304174,3796698,38,8,10.2493074792244,0.0332926019792916,7.64925895375949,0.485933048433048,36.3690263895857,0.027423048028745,0.074792243767313,7.4792243767313,4,73.7381171662191,0.648099150536137,5.54016620498615,16.1410862251564,0,393.549807230632,393.0380859375,0.601513985143953
+840,304074,3796698,304174,3796598,39,8,20.2216066481994,0.0328427019525444,7.28712811766537,0.350836582196231,22.9229954232896,0.027469311534718,0.130193905817175,13.0193905817174,4,82.2395472764075,0.770063694267516,10.2493074792244,11.5124568431935,0,394.737340291341,394.312530517578,0.516325282397923
+841,304074,3796598,304174,3796498,40,8,0,NA,NA,NA,NA,0.0264441838739195,0.0692520775623269,6.92520775623269,3,75.8304865841759,0.785119047619048,5.81717451523546,37.7140018463135,18.7329120635986,395.271677652995,394.889343261719,0.424455804830665
+842,304074,3796498,304174,3796398,41,8,0,NA,NA,NA,NA,0.0141923275144781,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,93.5203552246094,93.5203552246094,395.241068522135,394.940216064453,0.373103645320038
+843,304074,3796398,304174,3796298,42,8,36.5789473684211,0.375216622307151,26.866225937699,0.864508393285372,NA,0.0142003609870651,0.05,5,2,75.9748167142965,0.782214156079855,4.47368421052632,0,0,394.859944661458,394.698913574219,0.324158489988967
+844,304074,3796298,304174,3796198,43,8,81.4404432132964,0.793623647182032,35.797294412692,0.855442176870748,NA,0.0216091947624687,0.0914127423822715,9.14127423822715,6,64.0347450986263,0.633130081300813,3.8781163434903,3.06676049665971,0,394.562856038411,394.492523193359,0.112587728571313
+845,304074,3796198,304174,3796098,44,8,33.5180055401662,0.108875806472818,12.94256913435,0.72875226039783,12.1230087965286,0.0192827143092218,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,394.853810628255,394.617645263672,0.32864538710997
+846,304074,3796098,304174,3795998,45,8,12.4653739612188,0.0607365036108698,13.7264535617007,0.598765432098765,20.7823006752878,0.0247253728099329,0.0775623268698061,7.75623268698061,7,57.4019704348541,0.566366366366366,3.04709141274238,15.0898682900837,5.19557523727417,395.219889322917,395.081115722656,0.120208440487225
+847,304074,3795998,304174,3795898,46,8,0,NA,NA,NA,NA,0.0180370688968029,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,58.6976432800293,36.7382659912109,395.25491672092,395.188110351562,0.124947454505763
+848,304074,3795898,304174,3795798,47,8,25.207756232687,0.122822707301981,14.1737209992673,0.400925925925926,18.7329127343573,0.00545725557314246,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,9.84946880340576,5.19557523727417,395.057764689128,395.021118164062,0.0756846189072814
+849,304074,3795798,304174,3795698,48,8,0,NA,NA,NA,NA,0.0291506325110707,0.0498614958448753,4.98614958448753,5,53.5630874993746,0.493251268761473,1.93905817174515,46.4371501074897,31.1734504699707,395.146823459201,395.076812744141,0.130438761127405
+850,304074,3795698,304174,3795598,49,8,69.2520775623269,0.674850040120775,31.9087047739295,0.912666666666667,NA,0.0178756907411792,0.0775623268698061,7.75623268698061,2,77.2720296878259,0.831364698031365,4.43213296398892,0,0,395.411969502767,395.287078857422,0.232318047692526
+851,304074,3795598,304174,3795498,50,8,93.9473684210526,0.963685857292467,37.6541201146885,0.928104575163399,NA,0.000358552872498158,0.0236842105263158,2.36842105263158,2,57.7190885084827,0.487870619946092,1.57894736842105,8.49463648266262,0,395.889116075304,395.592071533203,0.603507157831656
+852,304074,3795498,304174,3795398,51,8,76.7313019390582,0.747733844453819,36.5898169417338,0.880264741275572,NA,-0.00123541124033527,0,0,0,NA,NA,0,NA,NA,396.635175069173,396.173858642578,0.458370498647775
+853,304074,3795398,304174,3795298,52,8,45.7063711911357,0.148467008826571,19.7362008678007,0.60976304397357,24.1495045048214,0.00198940731127064,0.0277008310249307,2.77008310249307,3,54.4037650304522,0.60442691211922,1.93905817174515,8.00857062339783,0,397.070543077257,396.804748535156,0.295297236446864
+854,304074,3795298,304174,3795198,53,8,84.2105263157895,0.820617648786863,36.0165801707975,0.885964912280702,NA,-0.0355148032454998,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,6.27161407470703,5.19557523727417,397.412246704102,397.110412597656,0.372497019250486
+855,304074,3795198,304174,3795098,54,8,70.7894736842105,0.242046214389985,15.7472141822848,0.611111111111111,15.867767482966,-0.0976058366472563,0.0263157894736842,2.63157894736842,2,58.2677109531801,0.683991683991684,1.31578947368421,1.03911504745483,0,398.086970011393,397.776275634766,0.307811824674104
+856,304074,3795098,304174,3794998,55,8,85.595567867036,0.834114649589279,36.7716057429804,0.899137001078749,NA,-0.0993187693924397,0.07202216066482,7.20221606648199,1,84.8544079576361,0.947433563887878,7.20221606648199,5.64372170888461,0,398.356180826823,398.252716064453,0.173590556147192
+857,304074,3794998,304174,3794898,56,8,73.6842105263158,0.718040442688505,38.3450897410632,0.869047619047619,NA,-0.057498781611289,0,0,0,NA,NA,0,NA,NA,398.504559834798,398.401184082031,0.145773828390146
+858,304074,3794898,304174,3794798,57,8,64.2659279778393,0.62626083723208,37.2311537192871,0.808189655172414,NA,-0.042670209014142,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911504745483,10.3911504745483,398.46573554145,398.406127929688,0.196752290936226
+859,304074,3794798,304174,3794698,58,8,20.2631578947368,0.0415707624714398,11.0321044900797,0.496210748792271,13.9990990865024,0.00733511171060136,0,0,0,NA,NA,0,NA,NA,398.250198364258,397.927459716797,0.270316948148191
+860,304074,3794698,304174,3794598,59,8,6.37119113573407,0.0124172407382223,3.35210293759049,0.227142857142857,31.4292929685726,0.00723420980613099,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,13.8548669815063,10.3911504745483,398.123233371311,397.827575683594,0.470243128616034
+861,304074,3794598,304174,3794498,60,8,13.5734072022161,0.033067651965918,8.99081050537275,0.35526598026598,11.0044048971005,0.011598832760902,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,23.6777811050415,10.3911504745483,397.6355565389,397.177398681641,0.516938662799224
+862,304074,3794498,304174,3794398,61,8,53.7396121883656,0.174561210377907,24.7791453933863,0.675100382709078,11.6176592829322,0.0113560054809684,0,0,0,NA,NA,0,NA,NA,397.07467312283,396.916564941406,0.278832605461323
+863,304074,3794398,304174,3794298,62,8,1.05263157894737,0.0107976006419324,3.97663196826998,0.333333333333333,NA,0.0184567107777974,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,41.8525483267648,36.7382659912109,397.020126342773,396.910736083984,0.212693811781771
+864,304074,3794298,304174,3794198,63,8,27.1468144044321,0.088180405242448,20.0034350052031,0.636837121212121,19.0504422856805,0.013537724588638,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,29.7583498273577,20.7823009490967,397.56115383572,397.220367431641,0.690707872862685
+865,304074,3794198,304174,3794098,64,8,22.9916897506925,0.0448100426640195,6.90693100731788,0.330266040688576,19.3785713611312,0.0115177239349275,0,0,0,NA,NA,0,NA,NA,399.175559997559,398.094329833984,1.42692791562037
+866,304074,3794098,304174,3793998,65,8,51.5235457063712,0.502088429849857,32.0431897064144,0.861111111111111,NA,0.00566192639548352,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.2895854314168,14.6953058242798,401.256147596571,400.949493408203,0.483692467827344
+867,304074,3793998,304174,3793898,66,8,38.1578947368421,0.39141302327005,33.7578878173802,0.81264367816092,NA,0.00382957145113898,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,11.0044050216675,10.3911504745483,401.135594685872,400.814178466797,0.376537914870693
+868,304074,3793898,304174,3793798,67,8,68.6980609418283,0.669451239799809,32.8016402106649,0.895161290322581,NA,-0.00152559484863219,0,0,0,NA,NA,0,NA,NA,400.436099582248,400.197784423828,0.424089992672591
+869,304074,3793798,304174,3793698,68,8,26.3157894736842,0.0854810050819649,15.2318260348093,0.569958847736626,19.4160420480008,0.0121205670853906,0.0498614958448753,4.98614958448753,3,66.04736496188,0.688154626930137,3.32409972299169,15.5867255528768,5.19557523727417,400.359428405762,400.136047363281,0.376321018141401
+870,304074,3793698,304174,3793598,69,8,20.7756232686981,0.202455012036233,28.6510850918494,0.731111111111111,NA,0.0188065866968626,0.03601108033241,3.601108033241,3,55.8504653747671,0.654214559386973,1.93905817174515,12.4879052822406,0,401.573148091634,400.988494873047,0.675495158089006
+871,304074,3793598,304174,3793498,70,8,18.4210526315789,0.0944790056169086,14.6176749669545,0.624338624338624,15.5867256623399,0.0115636274169159,0.0421052631578947,4.21052631578947,3,64.2932552543776,0.652014652014652,2.89473684210526,6.84226983785629,5.19557523727417,402.308820936415,402.207885742188,0.170954707898039
+872,304074,3793498,304174,3793398,71,8,17.1745152354571,0.0418407024874881,6.31369501319706,0.406786359530262,13.1564825462828,0.00720902990464426,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,32.8876972198486,27.9790287017822,402.521603902181,402.378479003906,0.143183511967157
+873,304074,3793398,304174,3793298,72,8,0,NA,NA,NA,NA,0.0153228779967714,0.110803324099723,11.0803324099723,2,87.1836077261266,0.86571813828056,10.803324099723,67.4983051300049,51.955753326416,402.417355007595,402.279693603516,0.194831341655655
+874,304074,3793298,304174,3793198,73,8,0,NA,NA,NA,NA,0.0280223331484141,0.401662049861496,40.1662049861496,2,95.0267484967889,0.924318658280922,37.9501385041551,81.2881120615992,51.4335708618164,401.95307413737,401.404479980469,0.529665100662139
+875,304074,3793198,304174,3793098,74,8,14.7368421052632,0.151166408987054,26.0895556218507,0.723214285714286,NA,0.0231272278490283,0.121052631578947,12.1052631578947,4,80.7351763011577,0.795793029325963,9.47368421052632,29.3975833706234,0,401.366180419922,401.139831542969,0.526826393092971
+876,304074,3793098,304174,3792998,75,8,6.37119113573407,0.0310431018455557,7.08563005345788,0.593055555555555,15.5867255064659,0.0124015870614007,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,12.3362104098002,5.19557523727417,402.437728881836,401.810455322266,1.07006515847449
+877,304074,3792998,304174,3792898,76,8,19.9445983379501,0.0647856038515944,7.50067172783003,0.380718954248366,22.0263764609654,0.0118887266805845,0.0498614958448753,4.98614958448753,4,62.3739280058982,0.610193283662671,2.77008310249307,9.75820260577732,0,402.5267706977,401.777282714844,1.31347967643264
+878,304074,3792898,304174,3792798,77,8,6.09418282548476,0.0593868035306282,10.8411513896374,0.651515151515151,NA,0.0532394509445568,0.437673130193906,43.7673130193906,3,96.1083986400978,0.834431798878886,42.6592797783934,38.5086648856537,0,402.444198608398,401.791564941406,1.17861777128057
+879,304074,3792798,304174,3792698,78,8,9.47368421052632,0.0242946014443479,5.08638061855705,0.248511904761905,19.0549992316416,0.0170028274812993,0.0526315789473684,5.26315789473684,7,48.7571627504417,0.489247311827957,2.36842105263158,17.0356243371963,0,404.075378417969,403.50048828125,1.43368393095405
+880,304074,3792698,304174,3792598,79,8,4.43213296398892,0.0215952012838648,5.99416380401464,0.5,10.3911503376439,0.0131235950411742,0.0831024930747922,8.31024930747922,6,63.6504251214128,0.554843085270362,3.8781163434903,31.5150232156118,0,405.631518046061,404.777709960938,0.999891700163274
+881,304074,3792598,304174,3792498,80,8,0,NA,NA,NA,NA,0.0204133039063125,0.07202216066482,7.20221606648199,2,78.6399658730485,0.921150345831817,6.09418282548476,51.356899701632,41.5646018981934,405.211561414931,404.264312744141,1.53476083612602
+882,304074,3792498,304174,3792398,81,8,19.9445983379501,0.0647856038515944,12.0170043141228,0.564453761938039,14.9924457085776,0.015439021206289,0.0498614958448753,4.98614958448753,3,69.4217255724389,0.688154626930137,3.601108033241,6.33785631921556,0,401.564206441243,400.16796875,1.94326666159548
+883,304074,3792398,304174,3792298,82,8,1.31578947368421,0.0134970008024155,6.23469026493595,0.266666666666667,NA,0.031519593503847,0.189473684210526,18.9473684210526,3,90.5396377355842,0.883423662951222,18.1578947368421,33.1575521760517,10.3911504745483,400.033911810981,399.949432373047,0.145307233967657
+884,304074,3792298,304174,3792198,83,8,52.3545706371191,0.510186630331306,36.5515161268799,0.786596119929453,NA,0.0425912243809256,0.326869806094183,32.6869806094183,4,90.9501167945365,0.79173877927772,26.8698060941828,4.65393788531675,0,400.026341756185,399.943389892578,0.154046426997493
+885,304074,3792198,304174,3792098,84,8,67.590027700831,0.658653639157877,37.4847681901199,0.844262295081967,NA,0.037017862454387,0.21606648199446,21.606648199446,5,88.2421262882202,0.741178880524402,18.005540166205,2.81807572413714,0,400.285097757975,400.10888671875,0.234414203880945
+886,304074,3792098,304174,3791998,85,8,9.41828254847645,0.0458898027282127,8.53483818719654,0.659340659340659,51.9557516882196,0.02285152263188,0.0941828254847645,9.41828254847645,6,63.7898883893554,0.605723023154216,2.49307479224377,13.3897053353927,0,400.761888292101,400.543060302734,0.298555214103852
+887,304074,3791998,304174,3791898,86,8,46.3157894736842,0.475094428245026,35.1293926793053,0.787878787878788,NA,0.045781040542275,0.357894736842105,35.7894736842105,3,90.7276207987114,0.767649391856161,18.1578947368421,6.7275407594793,0,401.065930684408,400.908538818359,0.167913186829827
+888,304074,3791898,304174,3791798,87,8,43.7673130193906,0.14216840845211,13.912542798826,0.504622987406345,20.7823007445652,0.0736334505884384,0.61218836565097,61.218836565097,2,95.5084293121765,0.780946601941748,33.7950138504155,7.84407870693984,0,401.136159261068,401.073638916016,0.114554563979365
+889,304074,3791798,304174,3791698,88,8,29.3628808864266,0.0953788056704029,12.0589980239832,0.505126281570393,29.5646720707678,0.0692369711504199,0.526315789473684,52.6315789473684,2,95.9334654117011,0.862058080808081,44.5983379501385,9.14345256152906,0,401.136233011882,401.086853027344,0.0893894320667306
+890,304074,3791698,304174,3791598,89,8,32.6869806094183,0.159264609468503,16.9843116863955,0.78116458704694,26.4923391803511,0.0404503579048144,0.326869806094183,32.6869806094183,3,90.8180830636383,0.770912657205492,22.9916897506925,11.3632664114742,0,401.170118543837,401.136383056641,0.0719202884084647
+891,304074,3791598,304174,3791498,90,8,19.7368421052632,0.0506137530090582,10.4290051495324,0.488760504201681,19.8770858414061,0.0427615753133738,0.328947368421053,32.8947368421053,6,87.5987250981266,0.829316748725922,25,8.57410473632813,0,401.231196085612,401.149169921875,0.151235652914658
+892,304074,3791498,304174,3791398,91,8,29.9168975069252,0.0971784057773917,13.1936649795938,0.623109670860338,17.5317855147236,0.0518630048528719,0.512465373961219,51.2465373961219,4,91.3100496737132,0.754103535353535,26.8698060941828,6.64920236999924,0,401.467095269097,401.231323242188,0.511905033129051
+893,304074,3791398,304174,3791298,92,8,4.15512465373961,0.0101227506018116,4.14343144590565,0.21031746031746,11.6176593177867,0.0321141366074096,0.257617728531856,25.7617728531856,3,87.1258313841179,0.748449019960439,15.5124653739612,15.9300824903673,0,402.138387044271,401.524169921875,0.692504829641898
+894,304074,3791298,304174,3791198,93,8,14.404432132964,0.140368808345121,16.3976119504585,0.740384615384615,NA,0.0306489700834035,0.240997229916898,24.0997229916898,4,85.1274856275273,0.795997174476101,16.3434903047091,11.5566020395564,0,402.760518391927,402.498321533203,0.39591186280329
+895,304074,3791198,304174,3791098,94,8,10.7894736842105,0.0368918021932691,9.6841573110466,0.415216201423098,30.6195896347708,0.074915799265804,0.644736842105263,64.4736842105263,1,98.6730552827086,0.760310528869481,64.4736842105263,18.0693914063123,0,402.863952636719,402.762969970703,0.122724732838896
+896,304074,3791098,304174,3790998,95,8,3.32409972299169,0.0323928019257972,6.98696547128476,0.611111111111111,NA,0.0421080029494751,0.315789473684211,31.5789473684211,4,88.2701701951598,0.744585511575803,15.2354570637119,35.7401436462737,0,403.011915418837,402.938507080078,0.122323449566376
+897,304074,3790998,304174,3790898,96,8,27.7008310249307,0.134970008024155,18.3558873824878,0.694805194805195,10.3911503376439,0.0651750051380339,0.529085872576177,52.9085872576177,2,97.168597930113,0.778049185776005,51.5235457063712,17.9290939051443,0,403.021479288737,402.829162597656,0.16138460711208
+898,304074,3790898,304174,3790798,97,8,50.1385041551247,0.244295714523721,24.0176008758691,0.78490990990991,30.2951489556501,0.0784610123760544,0.745152354570637,74.5152354570637,2,98.5468423330377,0.797976754197159,73.1301939058172,5.36763406952074,0,402.681593153212,402.605407714844,0.15706237718084
+899,304074,3790798,304174,3790698,98,8,16.5789473684211,0.170062210110435,23.2305658957252,0.698412698412698,NA,0.0547042553797885,0.431578947368421,43.1578947368421,3,94.0725204978345,0.801937699288693,37.3684210526316,13.5328391993918,0,402.583470662435,402.549987792969,0.0879664204604746
+900,304074,3790698,304174,3790598,99,8,4.98614958448753,0.0485892028886958,13.4284938187196,0.518518518518518,NA,0.0464503365435722,0.400584795321637,40.0584795321637,1,96.6845237015724,0.839843902439025,40.0584795321637,44.608765696087,5.19557523727417,403.007901509603,402.683258056641,0.458162597086284
+901,304174,3800598,304274,3800498,0,9,7.36842105263158,0.0755832044935001,10.3973415938337,0.761904761904762,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.189819335938,381.975982666016,0.265701846858579
+902,304174,3800498,304274,3800398,1,9,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.475168863932,382.342407226562,0.250344060936135
+903,304174,3800398,304274,3800298,2,9,1.05263157894737,0.0107976006419286,5.19557522077812,0.25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.780693054199,382.534118652344,0.30513766735195
+904,304174,3800298,304274,3800198,3,9,47.6315789473684,0.244295714523634,26.2808944925362,0.799745800176835,16.4298513045212,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.216300964355,383.012451171875,0.272235038821569
+905,304174,3800198,304274,3800098,4,9,59.4736842105263,0.203354812089655,16.8384530899977,0.40489358136417,12.1230087965261,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.489557266235,383.380401611328,0.0958285576489745
+906,304174,3800098,304274,3799998,5,9,86.75,0.936691855687305,39.4721358465734,0.879923150816523,NA,0.0316476567455538,0.2375,23.75,1,90.9696393431328,0.895914650013011,23.75,1.09380531311035,0,383.544901529948,383.512634277344,0.0394518716157326
+907,304174,3799998,304274,3799898,6,9,67.1052631578947,0.688347040922948,38.3648913522344,0.81764705882353,NA,-0.0049158364373924,0.0289473684210526,2.89473684210526,2,61.3015378816306,0.794037940379404,2.10526315789474,0,0,383.526390075684,383.491333007812,0.0471405108547466
+908,304174,3799898,304274,3799798,7,9,25.5263157894737,0.0872806051889228,16.2771733897369,0.681492268219957,20.7823008831125,0.0094643941032413,0.0815789473684211,8.15789473684211,2,78.6508751064407,0.804011461318052,4.21052631578947,20.9461040958281,5.19557523727417,383.542371114095,383.496459960938,0.0691297893267948
+909,304174,3799798,304274,3799698,8,9,44.4736842105263,0.456198627121483,27.8337700032125,0.873767258382643,NA,0.0332576627265601,0.2,20,5,86.489594664336,0.766791044776119,15,17.5307036010843,0,383.670095443726,383.542053222656,0.162681236478543
+910,304174,3799698,304274,3799598,9,9,44.75,0.483192628726304,31.2914905073498,0.853817504655494,NA,0.0394348507016548,0.2975,29.75,3,93.5596257169906,0.894556478186371,28.25,3.95289292856425,0,383.916946411133,383.740692138672,0.256342448945552
+911,304174,3799598,304274,3799498,10,9,86.3157894736842,0.885403252638144,36.9974296227232,0.904979674796748,NA,0.0739549077507323,0.628947368421053,62.8947368421053,1,98.5890492401195,0.987941675789741,62.8947368421053,0.108694042620799,0,384.251592636108,384.018951416016,0.305702761887561
+912,304174,3799498,304274,3799398,11,9,47.8947368421053,0.122822707301938,10.481970461099,0.410343567251462,12.9889380519453,0.00193048758988569,0.131578947368421,13.1578947368421,1,90.5004389364175,0.918716577540107,13.1578947368421,5.44775087356567,0,384.700231552124,384.459594726562,0.296149478796058
+913,304174,3799398,304274,3799298,12,9,35.7894736842105,0.367118421825572,31.4490767435263,0.778186274509804,NA,0.0233976357906948,0.128947368421053,12.8947368421053,3,86.8612857068963,0.767659329592864,11.8421052631579,5.12210932556464,0,385.112500508626,384.935852050781,0.262924277992938
+914,304174,3799298,304274,3799198,13,9,46.25,0.249694514844599,19.4976574190947,0.527854511970534,10.3911504415562,0.0266981659898374,0.2125,21.25,6,83.6771750131583,0.730894565331651,12.75,9.09952909806195,0,385.53491973877,385.326080322266,0.260515768390738
+915,304174,3799198,304274,3799098,14,9,51.8421052631579,0.265890915807492,22.6562941710938,0.76468253968254,15.5867255064659,0.0229309820546118,0.0526315789473684,5.26315789473684,3,68.5376207236775,0.693548387096774,2.63157894736842,4.67601771354675,0,386.014572143555,385.831634521484,0.284306051114017
+916,304174,3799098,304274,3798998,15,9,56.8421052631579,0.291535217332072,18.923913576957,0.712157809983897,10.3911504415562,0.0251848515895912,0.142105263157895,14.2105263157895,8,70.6053219610987,0.611451942740286,5.26315789473684,8.9346793934151,0,386.550497055054,386.221374511719,0.359989492431094
+917,304174,3798998,304274,3798898,16,9,8.94736842105263,0.0305932018187977,9.09175038325641,0.421783625730994,13.1717378724892,0.014754960399985,0.068421052631579,6.8421052631579,4,73.8847395621753,0.659638969271049,5.26315789473684,10.5360637628115,0,387.155649820964,386.914459228516,0.341583401980977
+918,304174,3798898,304274,3798798,17,9,0,NA,NA,NA,NA,0.00603879323709407,0.02,2,3,44.0901705406037,0.489795918367347,1,42.030041217804,31.1734504699707,387.631246566772,387.292388916016,0.378322356983826
+919,304174,3798798,304274,3798698,18,9,58.1578947368421,0.596567435466555,32.0785059682302,0.902714932126697,NA,0.0530913187433678,0.486842105263158,48.6842105263158,2,95.5152862656284,0.897435897435897,44.2105263157895,2.34643552367752,0,389.265553792318,388.047088623047,2.91262806092711
+920,304174,3798698,304274,3798598,19,9,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.122035022001517,1,100,1,100,NA,100,0,0,394.507377624512,393.139770507812,1.98978439885243
+921,304174,3798598,304274,3798498,20,9,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0660849493143982,0.921052631578947,92.1052631578947,1,99.7730232611531,0.579053373615308,92.1052631578947,0,0,394.329701741536,394.125579833984,0.306315599811959
+922,304174,3798498,304274,3798398,21,9,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0648695986252278,0.895,89.5,1,99.6998271307191,0.690967832560753,89.5,0,0,394.004602432251,393.810607910156,0.192555446695929
+923,304174,3798398,304274,3798298,22,9,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0601487900669637,0.886842105263158,88.6842105263158,1,99.6653789560343,0.653170749516264,88.6842105263158,0,0,393.75284576416,393.555358886719,0.209303330373665
+924,304174,3798298,304274,3798198,23,9,76.0526315789474,0.39006332318967,19.3613982004819,0.605482456140351,15.5867255064659,0.0454405852005278,0.576315789473684,57.6315789473684,3,97.649143709587,0.895871392035075,57.1052631578947,0.0237240878414346,0,393.722297668457,393.406707763672,0.331342694935863
+925,304174,3798198,304274,3798098,24,9,67.8947368421053,0.696445241404394,32.6851586921492,0.90374677002584,NA,0.0221885848647569,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.76010101010101,7.36842105263158,8.27256834506989,0,393.827514648438,393.369323730469,0.483705994734999
+926,304174,3798098,304274,3797998,25,9,54.5,0.588469234985108,45.6651587991076,0.784403669724771,NA,-0.01849693632661,0.01,1,1,52.6315789473684,0.747474747474748,1,0,0,393.953762054443,393.525329589844,0.477583814159506
+927,304174,3797998,304274,3797898,26,9,25.5263157894737,0.0872806051889228,14.0188539567617,0.580216802168022,21.4877176255986,0.0231916867838184,0.263157894736842,26.3157894736842,3,90.0244877889814,0.864285714285714,16.3157894736842,7.61298178672791,0,394.059246063232,393.74853515625,0.34265468823132
+928,304174,3797898,304274,3797798,27,9,27.8947368421053,0.143068208505554,16.1454751056161,0.691203703703704,41.8880664774764,0.00951939137713022,0.113157894736842,11.3157894736842,4,77.809739869776,0.686778766897461,6.05263157894737,20.8645578317864,0,394.067253112793,393.849304199219,0.324312387179941
+929,304174,3797798,304274,3797698,28,9,53.9473684210526,0.27668851644942,22.7492681484805,0.760714285714286,14.6953058096309,0.0249881958021625,0.363157894736842,36.3157894736842,3,91.9061738825603,0.869146005509642,26.8421052631579,7.39997601854628,0,393.962167739868,393.75146484375,0.314543786076155
+930,304174,3797698,304274,3797598,29,9,94.5,1.02037326066225,38.6681437262561,0.931657848324515,NA,0.04978609346952,0.49,49,6,93.7401328226345,0.838396897220427,42.25,0,0,393.623438517253,393.466766357422,0.242881098290005
+931,304174,3797598,304274,3797498,30,9,80.5263157894737,0.413008224553769,28.464762864364,0.859527036419238,15.5867255064659,0.028776634793796,0.0868421052631579,8.68421052631579,6,65.7343112794996,0.5741274415626,2.89473684210526,0,0,393.485799789429,393.395812988281,0.13876722879099
+932,304174,3797498,304274,3797398,31,9,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0302619921023985,0.0421052631578947,4.21052631578947,3,66.3531383768327,0.782509157509158,3.42105263157895,0,0,393.975092569987,393.703063964844,0.593422319037665
+933,304174,3797398,304274,3797298,32,9,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0445435207466385,0.373684210526316,37.3684210526316,2,96.065847917993,0.797349709114415,36.8421052631579,0,0,395.027362823486,394.460083007812,0.494165328055694
+934,304174,3797298,304274,3797198,33,9,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.047181383339921,0.4025,40.25,3,94.2056361466841,0.773832409815674,32.5,0,0,395.176582336426,394.764617919922,0.428389447100968
+935,304174,3797198,304274,3797098,34,9,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0379994461205665,0.305263157894737,30.5263157894737,2,93.1302500900423,0.862914862914863,26.8421052631579,0,0,394.723150253296,394.357635498047,0.402573261326509
+936,304174,3797098,304274,3796998,35,9,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0370960265073288,0.176315789473684,17.6315789473684,3,88.8903812894133,0.823598481745447,15.2631578947368,0,0,394.135813395182,393.836059570312,0.420434230904925
+937,304174,3796998,304274,3796898,36,9,98.9473684210526,1.01497446034129,38.6682422838995,0.928191489361702,NA,0.0471086599490311,0.410526315789474,41.0526315789474,5,88.7022096401576,0.651256844201095,15,0,0,393.272041320801,392.889129638672,0.481304994651118
+938,304174,3796898,304274,3796798,37,9,67.5,0.36441902166509,22.3294418358098,0.681467181467182,15.5867256623344,0.025771165044498,0.155,15.5,5,80.3895989180753,0.737015121630506,9.5,2.0513060092926,0,392.785715738932,392.683990478516,0.137699911889355
+939,304174,3796798,304274,3796698,38,9,0,NA,NA,NA,NA,0.0213165061586647,0.0368421052631579,3.68421052631579,6,39.945103860425,0.42896174863388,1.31578947368421,44.128367968968,27.9790287017822,393.129943847656,392.747161865234,0.483523149760049
+940,304174,3796698,304274,3796598,39,9,4.21052631578947,0.0107976006419286,4.42698698898869,0.162878787878788,23.7150868655748,0.0267114732576853,0.152631578947368,15.2631578947368,6,76.1091078750579,0.58695652173913,5.52631578947368,27.5904324219145,7.34765291213989,393.905735015869,393.197631835938,0.713898082492223
+941,304174,3796598,304274,3796498,40,9,7.36842105263158,0.0755832044935001,14.4854659604701,0.636904761904762,NA,0.0193804547037488,0.0421052631578947,4.21052631578947,5,51.4097917649052,0.478021978021978,1.57894736842105,20.4475724697113,10.3911504745483,394.134765625,393.501708984375,0.699514204450625
+942,304174,3796498,304274,3796398,41,9,23.9473684210526,0.245645414603875,21.8607244408538,0.778388278388278,NA,0.00714935927553597,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,13.7620937824249,5.19557523727417,394.294996261597,393.858154296875,0.559202172976772
+943,304174,3796398,304274,3796298,42,9,36,0.194356811554715,18.1891816083703,0.785714285714286,18.7329128064055,-0.0102161413351314,0.025,2.5,2,64.0732265446224,0.842209072978304,2.25,13.9409356594086,5.19557523727417,394.271957397461,393.950592041016,0.37529753380488
+944,304174,3796298,304274,3796198,43,9,18.4210526315789,0.0629860037445834,10.3364069191521,0.310243055555556,20.7823007792002,0.0247236491728759,0.0947368421052632,9.47368421052632,6,67.6004366634638,0.594961240310077,4.21052631578947,13.4420295688841,0,394.515134811401,394.216369628906,0.274859046153681
+945,304174,3796198,304274,3796098,44,9,29.7368421052632,0.305032218134483,29.0953679168351,0.777286135693215,NA,0.0267622790321184,0.144736842105263,14.4736842105263,5,84.1631852456504,0.84,12.8947368421053,35.5188414573669,0,394.964892069499,394.636077880859,0.282358155003941
+946,304174,3796098,304274,3795998,45,9,0,NA,NA,NA,NA,0.0274050218670613,0.168421052631579,16.8421052631579,5,82.6827954998951,0.720840867992767,8.15789473684211,50.4959036186337,7.34765291213989,395.112882614136,395.066864013672,0.0807741336431029
+947,304174,3795998,304274,3795898,46,9,0,NA,NA,NA,NA,0.0255223437443601,0.1125,11.25,4,80.533711530199,0.851742031134173,9.5,80.4935493469238,63.4200782775879,395.09516398112,395.040893554688,0.0816873774575573
+948,304174,3795898,304274,3795798,47,9,13.9473684210526,0.143068208505554,19.9401996965201,0.742138364779874,NA,0.00920315137817325,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,13.3087403774261,5.19557523727417,395.061447143555,395.040100097656,0.0565717351018911
+949,304174,3795798,304274,3795698,48,9,12.1052631578947,0.0620862036910894,10.2985083659063,0.535714285714286,11.6176592829313,0.028056141439715,0.0763157894736842,7.63157894736842,7,56.8194643162802,0.424137722010062,2.36842105263158,23.3063242188815,0,395.216433207194,395.117797851562,0.18153523981144
+950,304174,3795698,304274,3795598,49,9,19.4736842105263,0.199755611875679,28.2947997404218,0.740990990990991,NA,0.0198611511518577,0.0473684210526316,4.73684210526316,1,80.5625453356091,0.883364027010436,4.73684210526316,12.9977110756768,5.19557523727417,395.577833175659,395.343994140625,0.315614932713574
+951,304174,3795598,304274,3795498,50,9,39.25,0.423805825195697,29.7611216295371,0.86411889596603,NA,-0.000163047000860388,0.005,0.5,1,30.8308651382582,1,0.5,20.7823009490967,20.7823009490967,396.02997080485,395.615600585938,0.422821128254194
+952,304174,3795498,304274,3795398,51,9,60,0.123092647317986,9.61918683404024,0.370397306397306,20.3724231534675,0.00777681087260326,0.0894736842105263,8.94736842105263,2,82.3026236955927,0.86271676300578,7.89473684210526,1.74421780249652,0,396.511762619019,396.116638183594,0.326446705720827
+953,304174,3795398,304274,3795298,52,9,68.1578947368421,0.699144641564876,39.2519447367125,0.824324324324324,NA,0.0266117776941123,0.244736842105263,24.4736842105263,3,90.5374476247291,0.824524579152848,19.2105263157895,2.38632081657328,0,396.887351989746,396.746337890625,0.250884865890282
+954,304174,3795298,304274,3795198,53,9,75.2631578947368,0.386014222948947,22.5666962077321,0.753462351483344,11.6176592829314,-0.0464518217924036,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,0,0,397.425765991211,397.043609619141,0.52336988302845
+955,304174,3795198,304274,3795098,54,9,63.5,0.342823820381233,17.9784817504595,0.426218708827404,10.3911504415562,-0.118967637487513,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,10.6364521026611,0,398.292402267456,397.952026367188,0.395763621951748
+956,304174,3795098,304274,3794998,55,9,58.421052631579,0.599266835627037,41.3714492336594,0.79954954954955,NA,-0.0324830870627394,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,1.46953058242798,0,398.379801432292,398.261016845703,0.17328645413266
+957,304174,3794998,304274,3794898,56,9,75.5263157894737,0.387363923029188,27.5383277845403,0.596764346764347,15.5867255064659,-0.0255400770807539,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,7.64479287465413,5.19557523727417,398.21696472168,397.776977539062,0.279548748342115
+958,304174,3794898,304274,3794798,57,9,30.7894736842105,0.157914909388206,21.2955687484056,0.767000786163522,20.7823008831125,-0.00266971966218415,0.0710526315789474,7.10526315789474,3,72.9128724799591,0.62448119111931,4.47368421052632,16.0408226119147,7.34765291213989,397.85302734375,397.353271484375,0.504823264861531
+959,304174,3794798,304274,3794698,58,9,13.25,0.143068208505554,27.8182974158914,0.70440251572327,NA,0.00353008484949896,0.1175,11.75,6,75.4145414295729,0.660056657223796,7.25,40.88781151873,11.6176595687866,397.875028610229,397.329437255859,0.495918694538525
+960,304174,3794698,304274,3794598,59,9,21.8421052631579,0.0448100426640036,9.89270064067856,0.488521421107628,14.675531381542,0.0060236207367971,0.0605263157894737,6.05263157894737,3,70.209473740524,0.645191409897292,3.15789473684211,19.0885894194893,11.6176595687866,398.326377868652,397.971923828125,0.371200470417008
+961,304174,3794598,304274,3794498,60,9,34.2105263157895,0.0701844041725358,14.5527066722563,0.586086226203807,18.9348842327571,0.00799520271648362,0.0815789473684211,8.15789473684211,3,75.7947859794771,0.651575931232092,5.26315789473684,10.9345259051169,5.19557523727417,397.875577926636,397.517517089844,0.384605423131654
+962,304174,3794498,304274,3794398,61,9,28.4210526315789,0.0971784057773573,14.2872296639712,0.473003848003848,24.5938751251615,0.00890627661247938,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,9.94544053077698,7.34765291213989,397.246607462565,397.016021728516,0.349791257598452
+963,304174,3794398,304274,3794298,62,9,19.75,0.0710842042260299,15.7992189296959,0.602961852961853,13.2217233339413,0.0218980647754029,0.0675,6.75,2,81.9410279120859,0.925182367978054,6.5,23.4355356604965,7.34765291213989,396.917707443237,396.867645263672,0.114241551260481
+964,304174,3794298,304274,3794198,63,9,8.15789473684211,0.0278938016583155,7.96602831926065,0.47156862745098,32.0912739289511,0.0138647706858568,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,24.2622237205505,18.7329120635986,397.099573771159,396.902648925781,0.444904988577633
+965,304174,3794198,304274,3794098,64,9,31.0526315789474,0.0796323047342233,8.52272795413238,0.391316073354908,20.0966614815026,0.0092919108781069,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,24.2622237205505,18.7329120635986,398.640163421631,397.369476318359,1.41339962233183
+966,304174,3794098,304274,3793998,65,9,46.3157894736842,0.475094428244858,35.7012605607416,0.826704545454545,NA,0.00366144864091032,0,0,0,NA,NA,0,NA,NA,400.679944356283,399.909851074219,0.752667353607713
+967,304174,3793998,304274,3793898,66,9,41.75,0.450799826800519,38.3302186598445,0.836327345309381,NA,0.0066486823152718,0,0,0,NA,NA,0,NA,NA,400.753814697266,400.420562744141,0.33729872057165
+968,304174,3793898,304274,3793798,67,9,68.4210526315789,0.701844041725358,37.9780120986546,0.848717948717949,NA,0.0159475067928342,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,5.39999341964722,0,400.138987223307,399.626220703125,0.477139545512181
+969,304174,3793798,304274,3793698,68,9,10,0.0341924020327739,8.10775912355875,0.371527777777778,27.4584299933211,0.0195601656385023,0.068421052631579,6.8421052631579,3,74.5242983157724,0.816728675761334,5.26315789473684,40.5119924545288,15.5867252349854,400.056648254395,399.552124023438,0.627378082775956
+970,304174,3793698,304274,3793598,69,9,30.7894736842105,0.0789574546941028,16.9737097865261,0.555097787127941,12.9889379220549,0.014746261523019,0,0,0,NA,NA,0,NA,NA,401.439325332642,400.327514648438,0.79682555184218
+971,304174,3793598,304274,3793498,70,9,12.25,0.0440902026212084,10.7228468880796,0.569041867954911,24.0781406860809,0.017711971594108,0.06,6,4,69.1187759277482,0.608062709966405,4,17.7501603364944,10.3911504745483,402.148221333822,401.977966308594,0.232498838373649
+972,304174,3793498,304274,3793398,71,9,34.4736842105263,0.176810710511581,21.6341071289164,0.649521072796935,27.9790287931623,0.0212219072481132,0.0789473684210526,7.89473684210526,5,64.1386474187522,0.556851311953353,2.89473684210526,8.669526720047,0,402.281702041626,401.875701904297,0.268849615221418
+973,304174,3793398,304274,3793298,72,9,32.6315789473684,0.167362809949893,20.5122588604201,0.465794306703398,25.9778758441098,0.0172636306881414,0.0263157894736842,2.63157894736842,3,48.8157644052256,0.604989604989605,1.31578947368421,8.81035375595093,0,401.952176411947,401.386932373047,0.554625313037948
+974,304174,3793298,304274,3793198,73,9,18.1578947368421,0.186258611073268,19.4685769221688,0.814009661835749,NA,0.0335665431660968,0.223684210526316,22.3684210526316,2,89.2594983123061,0.872039510607251,11.8421052631579,27.5728373134837,0,401.293384552002,400.911804199219,0.525246039296162
+975,304174,3793198,304274,3793098,74,9,17.5,0.0944790056168752,17.3702616606789,0.604432301153613,20.7823006752878,0.010090238783373,0.0175,1.75,2,54.8284470438964,0.745547073791349,1.5,0,0,401.333943684896,400.873657226562,0.717282101606786
+976,304174,3793098,304274,3792998,75,9,0.526315789473684,0.00539880032096429,2.59778761038906,0.166666666666667,NA,-0.000224929663315714,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,53.0364675521851,36.7382659912109,403.29810333252,401.983093261719,1.38361874128451
+977,304174,3792998,304274,3792898,76,9,0,NA,NA,NA,NA,0.0279987223026661,0.105263157894737,10.5263157894737,3,81.7156489112824,0.883230904302019,8.94736842105263,62.2598268508911,37.8243598937988,404.914810180664,403.979095458984,1.02755944656521
+978,304174,3792898,304274,3792798,77,9,0,NA,NA,NA,NA,0.00688490383436925,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,107.398799351283,72.3659896850586,404.866718292236,403.421112060547,1.14382687231447
+979,304174,3792798,304274,3792698,78,9,0,NA,NA,NA,NA,0.00558044589176461,0.04,4,1,78.9473684210526,0.739583333333333,4,28.0453236699104,5.19557523727417,405.093116760254,404.323852539062,0.70810939810163
+980,304174,3792698,304274,3792598,79,9,0,NA,NA,NA,NA,0.0154870512029639,0.0263157894736842,2.63157894736842,5,35.0897607907672,0.367983367983368,1.05263157894737,101.342670440674,52.9846801757812,405.260019302368,404.965362548828,0.336647873138982
+981,304174,3792598,304274,3792498,80,9,0,NA,NA,NA,NA,-0.00132841280226689,0,0,0,NA,NA,0,NA,NA,404.949089050293,404.142150878906,1.20756934491939
+982,304174,3792498,304274,3792398,81,9,3.15789473684211,0.0323928019257858,6.79028708848218,0.638888888888889,NA,0.0075722081876608,0.0342105263157895,3.42105263157895,3,56.7140975198571,0.71238268240993,2.10526315789474,27.4699367009676,5.19557523727417,402.04806137085,400.354888916016,1.66643523426342
+983,304174,3792398,304274,3792298,82,9,3.5,0.0377916022467501,10.7018041868553,0.5,NA,0.034258522345408,0.205,20.5,3,91.7840836467354,0.921925829538061,20,32.6305103302002,16.4298515319824,400.200993855794,400.0732421875,0.309867764229753
+984,304174,3792298,304274,3792198,83,9,49.4736842105263,0.253743615085322,21.8768503924215,0.68689138576779,15.5867256623344,0.0475853862881195,0.418421052631579,41.8421052631579,3,93.6204438680786,0.817454906093101,27.8947368421053,6.35992957361089,0,400.51167678833,400.216888427734,0.452460846671583
+985,304174,3792198,304274,3792098,84,9,40.7894736842105,0.104601756218683,10.3844249567156,0.426241134751773,18.2920129337561,0.053747552666372,0.507894736842105,50.7894736842105,6,94.7718398922782,0.653750784214143,43.1578947368421,5.40000112316151,0,400.643283843994,400.283081054688,0.397161973116999
+986,304174,3792098,304274,3791998,85,9,0,NA,NA,NA,NA,0.0240753469820591,0.0842105263157895,8.42105263157895,4,68.8631205121241,0.727011494252874,3.15789473684211,29.8608079254627,10.3911504745483,401.012702941895,400.734313964844,0.261554995670945
+987,304174,3791998,304274,3791898,86,9,21.25,0.0458898027281965,7.29469501639973,0.43468660968661,25.9778759438656,0.0528341314998397,0.43,43,5,93.4035901725783,0.695611267917428,34.5,11.7477091412212,0,401.280536651611,401.076049804688,0.191340039187223
+988,304174,3791898,304274,3791798,87,9,58.9473684210526,0.302332817974001,20.7841264184187,0.638506625891947,33.2679134207152,0.0531786845799376,0.452631578947368,45.2631578947368,4,90.6685446749467,0.763710264498908,24.4736842105263,4.86823165693948,0,401.47927347819,401.262878417969,0.230811501153682
+989,304174,3791798,304274,3791698,88,9,58.9473684210526,0.604665635948001,39.6501805211363,0.784226190476191,NA,0.0635783108585441,0.639473684210526,63.9473684210526,1,98.6453992153938,0.737290588121805,63.9473684210526,3.09822070942004,0,401.449258804321,401.235656738281,0.254192643428113
+990,304174,3791698,304274,3791598,89,9,52.8947368421053,0.271289716128456,19.5188356580881,0.609597447226313,11.6176592829314,0.0591781249247632,0.555263157894737,55.5263157894737,2,96.5303241944111,0.753351044559836,45,4.40904006008853,0,401.450533548991,401.276611328125,0.193940893918424
+991,304174,3791598,304274,3791498,90,9,25.5,0.13766940818459,18.3330818567674,0.705681818181818,31.1734510129318,0.0529908107421943,0.51,51,2,97.5456941875082,0.795379893382155,50.5,16.9118658163968,0,401.56561088562,401.300506591797,0.247582078493924
+992,304174,3791498,304274,3791398,91,9,6.05263157894737,0.0155215509227723,5.33834906126589,0.307539682539683,31.125157245592,0.0498080470759305,0.463157894736842,46.3157894736842,3,96.1378204398956,0.805128205128205,44.4736842105263,17.5623649060726,0,402.086265563965,401.753723144531,0.42193159340696
+993,304174,3791398,304274,3791298,92,9,3.42105263157895,0.0350922020862679,8.71601587837283,0.551282051282051,NA,0.0374392705564548,0.273684210526316,27.3684210526316,4,88.1372268136319,0.823296907695885,21.0526315789474,30.4960153102875,0,402.657480239868,402.26513671875,0.457231664285839
+994,304174,3791298,304274,3791198,93,9,29.2105263157895,0.149816708906759,16.5070468312347,0.485339506172839,34.8529778487941,0.067805684288377,0.589473684210526,58.9473684210526,2,97.2321260410503,0.737762237762238,54.7368421052632,9.85925419415746,0,403.296180725098,403.002899169922,0.339992993043148
+995,304174,3791198,304274,3791098,94,9,41.75,0.225399913400259,20.3912547172508,0.758252818035427,47.9008364530368,0.0886288386918022,0.7825,78.25,1,99.3133324321661,0.742840444184687,78.25,8.57184170305539,0,403.160089492798,402.974243164062,0.233944832163812
+996,304174,3791098,304274,3790998,95,9,12.1052631578947,0.0413908024607263,8.10921906488802,0.426900584795322,31.1500001734457,0.0423855457319357,0.371052631578947,37.1052631578947,5,90.7344434142562,0.815121144302812,27.8947368421053,15.7578907858395,0,403.091247558594,402.983001708984,0.100266790453755
+997,304174,3790998,304274,3790898,96,9,48.6842105263158,0.499389029689197,30.7023411169567,0.841441441441441,NA,0.0825819289641099,0.747368421052632,74.7368421052632,1,99.1525080497293,0.80727215980025,74.7368421052632,6.4726574437719,0,403.013473510742,402.805053710938,0.152028172462395
+998,304174,3790898,304274,3790798,97,9,48.1578947368421,0.246995114684116,19.4279328275414,0.595809792843691,44.6940277025709,0.0737381385921158,0.639473684210526,63.9473684210526,1,98.6453992153938,0.847261969838259,63.9473684210526,4.55862787231006,0,402.799644470215,402.633178710938,0.251423716401762
+999,304174,3790798,304274,3790698,98,9,8.25,0.0296934017653036,6.99929949952562,0.37037037037037,57.3864087666383,0.0398101633025317,0.285,28.5,3,90.3377436281682,0.871002783624143,24.5,15.5410739748101,0,402.857046127319,402.616180419922,0.363455248685906
+1000,304174,3790698,304274,3790598,99,9,1.31578947368421,0.0134970008024107,4.4048163270008,0.433333333333333,NA,0.052841657797641,0.422222222222222,42.2222222222222,5,88.471760440497,0.727047146401985,15.2777777777778,43.3371440830984,7.34765291213989,403.658157348633,402.833374023438,0.859356874095484
+1001,304274,3800598,304374,3800498,0,10,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.984931945801,382.280120849609,0.782724443415491
+1002,304274,3800498,304374,3800398,1,10,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.416684468587,382.850708007812,0.769992259911039
+1003,304274,3800398,304374,3800298,2,10,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.574520111084,383.075927734375,0.620367275127125
+1004,304274,3800298,304374,3800198,3,10,45.1523545706371,0.220001113079373,22.3545523043334,0.819679548600021,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.668851216634,383.379638671875,0.333163076931806
+1005,304274,3800198,304374,3800098,4,10,18.005540166205,0.0584870034771339,13.5756993323183,0.405473453749316,36.3690261817537,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.624351501465,383.536376953125,0.135989110375702
+1006,304274,3800098,304374,3799998,5,10,57.8947368421053,0.197956011768761,21.7352028187566,0.781440973922791,10.3911503722826,0.00826796183039397,0.0657894736842105,6.57894736842105,3,51.286996448474,0.505958829902492,3.28947368421053,0.519557523727417,0,383.547996520996,383.510681152344,0.060197153997005
+1007,304274,3799998,304374,3799898,6,10,21.606648199446,0.105276606258841,13.2952571825795,0.751449275362319,51.9557516882196,-0.0025235501233097,0.141274238227147,14.1274238227147,2,86.0034692477091,0.892918057100482,12.7423822714681,11.3193741779701,0,383.502119064331,383.485229492188,0.0254080132376844
+1008,304274,3799898,304374,3799798,7,10,28.5318559556787,0.27803821652976,27.4125497163386,0.822006472491909,NA,0.00535669377619604,0.07202216066482,7.20221606648199,5,67.7104814493901,0.658318165271205,4.43213296398892,42.8315960077139,0,383.500836690267,383.486022949219,0.0261156859663568
+1009,304274,3799798,304374,3799698,8,10,0,NA,NA,NA,NA,0.0447909125795077,0.285318559556787,28.5318559556787,4,90.0788611980002,0.742845170752147,17.4515235457064,62.7517262245845,15.5867252349854,383.588815689087,383.527679443359,0.0927295717542079
+1010,304274,3799698,304374,3799598,9,10,10.5263157894737,0.0359920021397747,6.1921104809588,0.362962962962963,43.6080223229607,0.0408425912138467,0.268421052631579,26.8421052631579,5,91.5304839967676,0.835672445650037,25,28.316953013925,0,383.834902445475,383.739929199219,0.18701663851912
+1011,304274,3799598,304374,3799498,10,10,49.0304709141274,0.159264609468503,20.36255025003,0.736497036372619,12.1230087272512,0.0245375437925834,0.171745152354571,17.1745152354571,5,79.6657624948429,0.709339774557166,7.75623268698061,13.1241217505547,0,384.19935798645,383.994842529297,0.251547822814794
+1012,304274,3799498,304374,3799398,11,10,78.1163434903047,0.761230845256235,35.6085801283717,0.912529550827423,NA,0.0529162002382295,0.398891966759003,39.8891966759003,1,96.7592592592593,0.95588954056696,39.8891966759003,8.10089188151889,0,384.703363418579,384.474090576172,0.262487918515561
+1013,304274,3799398,304374,3799298,12,10,40.1662049861496,0.0978532558175124,17.2975118177257,0.640521877720673,24.8388832352113,0.0398872314745604,0.21606648199446,21.606648199446,9,75.6514489391404,0.685717212065345,9.41828254847645,6.12034073242774,0,385.139472961426,384.963928222656,0.284640394778835
+1014,304274,3799298,304374,3799198,13,10,98.9473684210526,1.01497446034165,38.4693209289954,0.93218085106383,NA,0.0131772489342869,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,0,0,385.642618179321,385.360321044922,0.296759407865287
+1015,304274,3799198,304374,3799098,14,10,89.196675900277,0.869206851675559,36.0194819564195,0.921325051759834,NA,0.0280603854214789,0.0858725761772853,8.58725761772853,5,70.1664410875928,0.715575757575758,4.98614958448754,0,0,386.119204203288,385.913879394531,0.296596130742288
+1016,304274,3799098,304374,3798998,15,10,75.0692520775623,0.731537443490921,35.3974132824873,0.899753997539975,NA,0.0298979558227029,0.07202216066482,7.20221606648199,5,68.4779569536904,0.658318165271205,4.98614958448753,0.199829816818237,0,386.717674255371,386.331329345703,0.461981250319404
+1017,304274,3798998,304374,3798898,16,10,22.1606648199446,0.0719840042795494,9.26371031434032,0.510693792383933,24.2460175237798,0.01581748559219,0.0858725761772853,8.58725761772853,5,65.6328891211365,0.606181818181818,3.601108033241,6.04855354370609,0,387.462359110514,387.195861816406,0.380227446206074
+1018,304274,3798898,304374,3798798,17,10,16.8421052631579,0.0863808051354593,13.709398630243,0.71875,34.8529778487965,0.010188782682637,0.1,10,7,63.1170783264029,0.576719576719577,2.63157894736842,13.3209742495888,0,388.159954071045,387.664459228516,0.872442344972304
+1019,304274,3798798,304374,3798698,18,10,89.196675900277,0.869206851675559,35.9422736493418,0.925983436853002,NA,0.0827501725914651,0.781163434903047,78.1163434903047,1,99.2698136948151,0.965512299976117,78.1163434903047,0,0,391.685267130534,388.573028564453,4.43062927262356
+1020,304274,3798698,304374,3798598,19,10,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.125194144422328,1,100,1,100,NA,100,0,0,396.164213180542,394.753082275391,2.13893817321363
+1021,304274,3798598,304374,3798498,20,10,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0614019283544984,0.60387811634349,60.387811634349,2,98.014713704507,0.832116159702367,59.8337950138504,0,0,394.562301635742,394.327239990234,0.338564552891599
+1022,304274,3798498,304374,3798398,21,10,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0617703499419517,0.652631578947368,65.2631578947368,4,96.5977321021455,0.807667189132706,60.5263157894737,0,0,394.002288818359,393.548614501953,0.55271022807352
+1023,304274,3798398,304374,3798298,22,10,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0530350634368998,0.479224376731302,47.9224376731302,6,91.4784202854089,0.753201494030548,34.6260387811634,0,0,393.249295552572,392.693634033203,0.526452821599196
+1024,304274,3798298,304374,3798198,23,10,87.5346260387812,0.85301045071266,35.4542814452598,0.913502109704641,NA,0.029187171042561,0.074792243767313,7.4792243767313,6,66.5281723244372,0.673234925497842,4.98614958448753,0.81514111271611,0,392.959476470947,392.395141601562,0.476750399067721
+1025,304274,3798198,304374,3798098,24,10,16.3434903047091,0.0796323047342515,18.185858885616,0.589423076923077,10.3911504415599,0.0122076647569775,0.0221606648199446,2.21606648199446,4,30.9165064303089,0.386402266288952,0.554016620498615,15.7254421710968,5.19557523727417,392.669245402018,392.141723632812,0.626277435443532
+1026,304274,3798098,304374,3797998,25,10,34.2105263157895,0.175461010431402,17.0356541240662,0.803687459389214,10.3911504415599,0.0149743368744758,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,3.71112523760114,0,392.91276550293,392.238372802734,0.676792924239826
+1027,304274,3797998,304374,3797898,26,10,92.2437673130194,0.449450126720436,28.7467390552266,0.886560044893378,10.3911504415599,0.0310962779929776,0.213296398891967,21.3296398891967,8,80.3876231292267,0.691564830157415,13.0193905817175,0.404850018488896,0,393.68691444397,393.364044189453,0.329200010879793
+1028,304274,3797898,304374,3797798,27,10,70.0831024930748,0.341474120301112,27.9891954002595,0.83963105126269,10.3911504415599,0.0195686777531143,0.0526315789473684,5.26315789473684,5,56.2462710113334,0.563218390804598,2.77008310249307,1.09380531311035,0,393.638155619303,393.426574707031,0.224092377557271
+1029,304274,3797798,304374,3797698,28,10,75.6232686980609,0.736936243811887,36.2253285342717,0.873015873015873,NA,0.0109305212620981,0.124653739612188,12.4653739612188,2,88.4305112526116,0.849683544303798,12.1883656509695,5.19723389943441,0,393.45107460022,393.06396484375,0.384901816320251
+1030,304274,3797698,304374,3797598,29,10,98.4210526315789,1.00957566002068,38.4303942380896,0.929144385026738,NA,0.0192123632962313,0.2,20,2,90.9483801458869,0.850746268656716,17.8947368421053,0,0,393.190157572428,392.917205810547,0.344177847588121
+1031,304274,3797598,304374,3797498,30,10,86.4265927977839,0.421106425035364,28.3278880495844,0.866583530676341,15.5867255064659,0.0420462102203571,0.268698060941828,26.8698060941828,6,88.4312831061191,0.803530999651689,22.4376731301939,0,0,393.359806060791,393.000579833984,0.280903905388881
+1032,304274,3797498,304374,3797398,31,10,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0444489095396803,0.304709141274238,30.4709141274238,2,93.9735956987982,0.949408396564496,29.6398891966759,0,0,393.679817199707,393.493560791016,0.307431480667779
+1033,304274,3797398,304374,3797298,32,10,65.3739612188366,0.637058437874012,33.7571640578206,0.892655367231638,NA,0.0389903930254175,0.310249307479224,31.0249307479224,4,88.8262468732625,0.799037735098811,21.8836565096953,8.23387143867356,0,394.167934417725,393.681121826172,0.634565883367447
+1034,304274,3797298,304374,3797198,33,10,86.3157894736842,0.885403252638457,36.81534189569,0.923272357723577,NA,0.039079812509743,0.307894736842105,30.7894736842105,4,88.2997483725319,0.775091469976325,15.5263157894737,3.14037766823402,0,394.141260782878,393.697174072266,0.510372172679406
+1035,304274,3797198,304374,3797098,34,10,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0387296568766143,0.221606648199446,22.1606648199446,3,91.2289563507089,0.755726529998496,20.2216066481994,0,0,394.127983093262,393.842926025391,0.353823982543149
+1036,304274,3797098,304374,3796998,35,10,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0428195036625247,0.398891966759003,39.8891966759003,4,95.3638362545945,0.88027161011032,39.0581717451524,0,0,393.888412475586,393.734191894531,0.278813827639337
+1037,304274,3796998,304374,3796898,36,10,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0595418121291639,0.664819944598338,66.4819944598338,2,98.1121821081697,0.827237755158387,65.0969529085873,0,0,393.31630897522,392.885681152344,0.45932094619989
+1038,304274,3796898,304374,3796798,37,10,93.1578947368421,0.955587656811018,37.5666469720711,0.927495291902071,NA,0.0210137091520186,0.0868421052631579,8.68421052631579,4,73.2732186427986,0.716084961041733,5,1.79707288742065,0,392.718821207682,392.610321044922,0.196154971717124
+1039,304274,3796798,304374,3796698,38,10,37.3961218836565,0.364419021665219,32.8049994194943,0.818518518518519,NA,0.0292457486074129,0.218836565096953,21.8836565096953,6,83.1865712517268,0.771403242147923,16.3434903047091,14.5072087819063,0,392.715211868286,392.652282714844,0.14016031414124
+1040,304274,3796698,304374,3796598,39,10,27.1468144044321,0.264541215727344,34.5813048691663,0.748299319727891,NA,0.00653240226179616,0.0775623268698061,7.75623268698061,4,73.8938226535883,0.68682015348682,5.81717451523546,17.2723282235009,5.19557523727417,392.913528442383,392.679534912109,0.303873352380652
+1041,304274,3796598,304374,3796498,40,10,28.2548476454294,0.0917796054564255,9.2805881007703,0.394931773879142,19.5937410795113,0.000997793865114704,0.0664819944598338,6.64819944598338,2,75.9746494195538,0.746290801186944,4.43213296398892,29.1159019470215,15.5867252349854,393.183174133301,392.851257324219,0.409234334699489
+1042,304274,3796498,304374,3796398,41,10,40.9972299168975,0.399511223751499,29.7968752736133,0.79954954954955,NA,0.0199174206662624,0.149584487534626,14.9584487534626,5,77.1917916821992,0.658610906798361,7.75623268698061,9.51837794869034,0,393.537664413452,393.203063964844,0.304081163387872
+1043,304274,3796398,304374,3796298,42,10,37.6315789473684,0.386014222949084,36.8355930185032,0.801864801864802,NA,0.00835086192239128,0.121052631578947,12.1052631578947,2,84.5096857373024,0.839551665898971,8.42105263157895,1.40215175048165,0,393.786880493164,393.549041748047,0.289700299874715
+1044,304274,3796298,304374,3796198,43,10,27.4238227146814,0.0534481231775654,8.5436280024748,0.476236681887367,15.1768479742567,0.0121252198038351,0.0304709141274238,3.04709141274238,4,43.7452164795091,0.518666666666667,1.38504155124654,7.11533797870983,0,394.423313140869,393.873931884766,0.558182473324401
+1045,304274,3796198,304374,3796098,44,10,24.6537396121884,0.0800822047609987,15.7910730264643,0.528946083560019,15.2734876850778,0.0221154926274169,0.0470914127423823,4.70914127423823,4,58.2439433088657,0.664186046511628,2.49307479224377,20.1602707750657,0,395.037493387858,394.675598144531,0.227941518141483
+1046,304274,3796098,304374,3795998,45,10,20.7756232686981,0.101227506018116,17.8886340297402,0.661172161172161,11.6176592829322,0.0116652702530791,0.0609418282548476,6.09418282548476,3,73.0205854240378,0.780756550407774,4.98614958448754,27.0828907489777,7.34765291213989,395.078586578369,395.050476074219,0.0540633913139551
+1047,304274,3795998,304374,3795898,46,10,13.6842105263158,0.140368808345121,16.1896374286701,0.775641025641026,NA,0.0210041396911133,0.157894736842105,15.7894736842105,6,83.1576806177233,0.737379807692308,12.6315789473684,23.8598651409149,0,395.136693318685,395.045593261719,0.132858644198731
+1048,304274,3795898,304374,3795798,47,10,12.4653739612188,0.0607365036108698,13.3826174937429,0.594468390804598,16.4298513045218,0.00969058658294074,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989,395.260757446289,395.097045898438,0.24125190120755
+1049,304274,3795798,304374,3795698,48,10,29.9168975069252,0.291535217332175,28.1072938310259,0.83179012345679,NA,0.012309122665682,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,7.94952268600464,5.19557523727417,395.436503092448,395.211334228516,0.264087424809655
+1050,304274,3795698,304374,3795598,49,10,14.404432132964,0.0701844041725607,11.5806311648539,0.583687943262411,25.9778759376342,0.0143628063827103,0,0,0,NA,NA,0,NA,NA,396.053884506226,395.544891357422,0.51018146713415
+1051,304274,3795598,304374,3795498,50,10,34.4736842105263,0.353621421023286,33.415112076755,0.819338422391858,NA,0.0117187056023747,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.832070707070707,7.36842105263158,16.1852611473628,10.3911504745483,396.664919535319,396.263122558594,0.391136669809118
+1052,304274,3795498,304374,3795398,51,10,57.8947368421053,0.282087316770484,24.5749662547807,0.762876299945265,10.3911503376439,0.0150913580702229,0.038781163434903,3.8781163434903,5,43.9401924144595,0.479827089337176,1.38504155124654,12.1737017631531,0,396.959808349609,396.558349609375,0.282197901272209
+1053,304274,3795398,304374,3795298,52,10,30.4709141274238,0.0742335044132853,8.81840329110806,0.364931610942249,18.1845131688139,0.00874816537571883,0.0304709141274238,3.04709141274238,2,60.8393117971009,0.656190476190476,1.66204986149584,14.6420753652399,10.3911504745483,397.300148010254,396.970275878906,0.386357960068134
+1054,304274,3795298,304374,3795198,53,10,38.2271468144044,0.124172407382223,15.3522140736453,0.715366430260047,13.9894104334072,0.0289627144401319,0.218836565096953,21.8836565096953,3,87.1233152080804,0.826266464032422,14.6814404432133,9.39269918731496,0,397.874158859253,397.462341308594,0.511938325650283
+1055,304274,3795198,304374,3795098,54,10,0,NA,NA,NA,NA,0.0236223208485937,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,23.3800888061523,20.7823009490967,398.811548233032,398.553833007812,0.383432543982302
+1056,304274,3795098,304374,3794998,55,10,38.781163434903,0.0944790056169086,15.6514037263574,0.535612535612536,13.1564825462828,0.00627479979025502,0,0,0,NA,NA,0,NA,NA,398.356526692708,397.843688964844,0.516235302654665
+1057,304274,3794998,304374,3794898,56,10,73.9612188365651,0.240246614282996,14.1284124032273,0.385027885027885,15.5867255584239,-0.0018203251863655,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,1.73185841242472,0,397.702138900757,397.160308837891,0.490497918570588
+1058,304274,3794898,304374,3794798,57,10,27.4238227146814,0.133620307943914,17.7295463381812,0.678977272727273,15.5867255064659,0.0210840991074448,0.132963988919668,13.2963988919668,3,80.2500874226144,0.789020494038806,7.4792243767313,31.2729205886523,5.19557523727417,397.130854288737,396.900360107422,0.300308786394888
+1059,304274,3794798,304374,3794698,58,10,5.26315789473684,0.026994001604831,6.44736485886059,0.489583333333333,67.5424772946047,0.00734000837094419,0.0921052631578947,9.21052631578947,4,77.5277856697589,0.810094952523738,7.63157894736842,29.8665561948504,14.6953058242798,397.101106643677,396.892211914062,0.292630451210069
+1060,304274,3794698,304374,3794598,59,10,22.4376731301939,0.0728838043330438,8.90950884851889,0.46037037037037,37.3871431248069,0.0129185268989831,0.0609418282548476,6.09418282548476,3,78.0731307365436,0.624154086413326,5.54016620498615,24.3518825444308,0,397.283721923828,396.903778076172,0.49303546439844
+1061,304274,3794598,304374,3794498,60,10,52.6315789473684,0.17096201016393,16.2010959568767,0.440188478492172,13.2217233366014,0.0108732882701457,0.0914127423822715,9.14127423822715,4,73.5843421978001,0.775801716350497,6.37119113573407,3.90129002657804,0,397.351156234741,396.99755859375,0.365619861957189
+1062,304274,3794498,304374,3794398,61,10,31.8559556786704,0.0620862036911113,11.9451675688198,0.57289884842826,13.4505875892869,0.0261484015586033,0.146814404432133,14.6814404432133,4,85.7849306373345,0.832560296846011,13.2963988919668,11.741398352497,0,397.207491556803,397.095977783203,0.210010822897733
+1063,304274,3794398,304374,3794298,62,10,27.3684210526316,0.0701844041725607,13.1090929977305,0.536465721040189,19.8929109834891,0.0159284886277563,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.9164962768555,15.5867252349854,396.988540649414,396.906005859375,0.149650762760068
+1064,304274,3794298,304374,3794198,63,10,25.207756232687,0.0614113536509906,10.422000013499,0.502023979107312,12.9889379220549,0.0161647182789556,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,3.89668142795563,0,396.998746236165,396.917510986328,0.173550140922449
+1065,304274,3794198,304374,3794098,64,10,42.1052631578947,0.102577206098358,12.1154859107201,0.675084294821137,13.5526298567777,0.00994899248618212,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989,398.07933807373,397.164642333984,1.21802349423696
+1066,304274,3794098,304374,3793998,65,10,51.8005540166205,0.168262610003447,18.63976981701,0.738032407407407,19.0504423549579,0.0101772485260397,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,3.13580703735352,0,400.254610697428,399.828948974609,0.689965340257805
+1067,304274,3793998,304374,3793898,66,10,22.3684210526316,0.0764830045470212,10.2335222295026,0.361805555555556,77.9336275323294,0.0257606628269346,0.1,10,1,88.3079606859525,0.82363315696649,10,19.4089502158918,5.19557523727417,400.54013633728,400.155548095703,0.345961757328211
+1068,304274,3793898,304374,3793798,67,10,2.77008310249307,0.00674850040120775,2.9979477796611,0.222222222222222,51.9557522077996,0.018029995724102,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,12.861168384552,5.19557523727417,399.605557759603,399.227783203125,0.568827575365212
+1069,304274,3793798,304374,3793698,68,10,11.0803324099723,0.0359920021397747,9.59255256181812,0.301835317460317,17.3185838960732,0.0188479358044168,0.113573407202216,11.3573407202216,2,87.2428964266246,0.901902173913043,11.0803324099723,15.7416151442179,0,399.387306213379,399.165863037109,0.361233924000503
+1070,304274,3793698,304374,3793598,69,10,27.7008310249307,0.0899800053494367,12.379788304991,0.459598214285714,19.0504422856805,0.018400854801703,0.0415512465373961,4.15512465373961,2,73.4201733450948,0.810299527062533,3.8781163434903,13.5902627627055,5.19557523727417,400.732460021973,399.870056152344,0.888174849705364
+1071,304274,3793598,304374,3793498,70,10,20.2631578947368,0.0692846041190663,15.238842374961,0.603605544782015,16.9375056129193,0.018971123069174,0.0315789473684211,3.15789473684211,4,51.716557962325,0.514066496163683,1.84210526315789,10.5212836662928,5.19557523727417,401.641143798828,401.293334960938,0.438618772555546
+1072,304274,3793498,304374,3793398,71,10,40.7202216066482,0.198405911795508,24.0765480507005,0.597129452926209,15.5867255064659,0.0234521941856757,0.0470914127423823,4.70914127423823,8,37.6002179062698,0.370348837209302,1.38504155124654,7.89373734418084,0,401.749380111694,401.510101318359,0.319624692229839
+1073,304274,3793398,304374,3793298,72,10,43.213296398892,0.140368808345121,24.2291834444717,0.711545572866204,17.3185838960732,0.0342645358268128,0.202216066481994,20.2216066481994,6,80.1976510001216,0.706217447916667,10.803324099723,5.24719261143306,0,401.325592041016,400.884155273438,0.562650885354463
+1074,304274,3793298,304374,3793198,73,10,22.7146814404432,0.221350813159614,26.52477650993,0.778455284552846,NA,0.0467193639203371,0.379501385041551,37.9501385041551,2,95.8125386800853,0.903303571428571,37.3961218836565,21.2711864248679,0,400.679237365723,400.499420166016,0.258107129761321
+1075,304274,3793198,304374,3793098,74,10,19.4736842105263,0.19975561187575,23.4379282948377,0.765765765765766,NA,0.0234404720567047,0.0789473684210526,7.89473684210526,4,73.6374443134807,0.667638483965015,3.94736842105263,10.8507511774699,0,401.045290629069,400.559387207031,1.036469690747
+1076,304274,3793098,304374,3792998,75,10,0,NA,NA,NA,NA,0.0408763280498745,0.39612188365651,39.612188365651,4,93.6033303420896,0.785103998879473,34.9030470914127,66.8648500909338,18.7329120635986,403.872171401978,402.226928710938,1.47605201843892
+1077,304274,3792998,304374,3792898,76,10,0,NA,NA,NA,NA,0.0181657880841153,0.0664819944598338,6.64819944598338,4,65.167918550766,0.718100890207715,3.04709141274238,130.250189145406,86.4716033935547,405.146710713704,404.862640380859,0.435348660696889
+1078,304274,3792898,304374,3792798,77,10,0,NA,NA,NA,NA,0.0214761671805438,0.149584487534626,14.9584487534626,2,89.8805710190786,0.898847676088403,14.6814404432133,175.171222828053,156.213241577148,405.263807296753,404.936676025391,0.295392202912189
+1079,304274,3792798,304374,3792698,78,10,0,NA,NA,NA,NA,0.0177805757695368,0.165789473684211,16.5789473684211,2,90.7074491704865,0.847433323774018,16.0526315789474,149.96870882549,125.126022338867,405.502410888672,405.236145019531,0.345524815051628
+1080,304274,3792698,304374,3792598,79,10,0,NA,NA,NA,NA,0.0266677632681469,0.240997229916898,24.0997229916898,1,94.2388121322677,0.940499175888863,24.0997229916898,157.812690647169,133.577835083008,405.746900558472,405.443817138672,0.222618096984555
+1081,304274,3792598,304374,3792498,80,10,0,NA,NA,NA,NA,0.0163130046180274,0.0415512465373961,4.15512465373961,3,65.1431305573521,0.762874408828166,3.32409972299169,45.3918509165446,30.2951488494873,404.93616994222,403.906188964844,1.4226750479567
+1082,304274,3792498,304374,3792398,81,10,0,NA,NA,NA,NA,0.0356186224885593,0.293628808864266,29.3628808864266,4,93.6328147554243,0.659049378913869,27.7008310249307,77.7271100530085,33.2679138183594,401.814023971558,400.32177734375,1.65802077021046
+1083,304274,3792398,304374,3792298,82,10,1.84210526315789,0.00944790056169086,3.95882905197048,0.284722222222222,76.7117486585162,0.0399045689337838,0.276315789473684,27.6315789473684,1,95.1205821781401,0.934199134199134,27.6315789473684,24.0010362170991,0,400.282549540202,400.225982666016,0.244954207153358
+1084,304274,3792298,304374,3792198,83,10,48.1994459833795,0.23484781396203,25.0876830616175,0.745433789954338,11.6176592829322,0.0299740573854077,0.135734072022161,13.5734072022161,7,69.4773396154987,0.572992979242979,3.8781163434903,10.1640787513889,0,401.062154769897,400.437774658203,0.639952369784122
+1085,304274,3792198,304374,3792098,84,10,40.4432132963989,0.131370807810178,14.5644611179222,0.555254901960784,11.6176593061685,0.0373799271750049,0.177285318559557,17.7285318559557,8,73.3632978642619,0.652717652717653,8.86426592797784,3.1817609667778,0,401.626415252686,401.182586669922,0.442463171428915
+1086,304274,3792098,304374,3791998,85,10,31.5789473684211,0.307731618295074,28.3844929605592,0.771929824561404,NA,0.0346393093048623,0.290858725761773,29.0858725761773,3,92.7655298686035,0.738859953703704,26.0387811634349,7.01780454090663,0,401.480870564779,401.273284912109,0.258601472492532
+1087,304274,3791998,304374,3791898,86,10,47.3684210526316,0.242946014443479,20.5818878264968,0.486423220973783,25.9778761038998,0.0617268478502075,0.565789473684211,56.5789473684211,2,96.6876390374212,0.700606060606061,50.5263157894737,7.79023127001385,0,401.459564208984,401.282531738281,0.187753740029002
+1088,304274,3791898,304374,3791798,87,10,59.5567867036011,0.580371034503867,36.7802672881018,0.817829457364341,NA,0.0528867487366591,0.562326869806094,56.2326869806094,2,95.6145181554666,0.709095792901991,38.781163434903,3.83756617607154,0,401.665870666504,401.552642822266,0.185010689153037
+1089,304274,3791798,304374,3791698,88,10,60.9418282548476,0.296934017653141,30.3172452447796,0.720744168112589,20.7823006752878,0.0545726776499704,0.570637119113573,57.0637119113573,3,97.3636944820359,0.69594879137539,55.4016620498615,3.27065916894709,0,401.775194168091,401.633331298828,0.165343494316648
+1090,304274,3791698,304374,3791598,89,10,68.9750692520776,0.672150639960292,34.3798927790839,0.860776439089692,NA,0.0234637733625942,0.299168975069252,29.9168975069252,1,95.3984674864788,0.985365359278403,29.9168975069252,0,0,401.679911295573,401.625762939453,0.0906688122001877
+1091,304274,3791598,304374,3791498,90,10,27.1052631578947,0.27803821652976,25.4850772759674,0.831715210355987,NA,0.0429511062185108,0.421052631578947,42.1052631578947,3,93.0062869709023,0.841372912801484,29.4736842105263,21.9393920272589,0,401.817512512207,401.661773681641,0.203526928915336
+1092,304274,3791498,304374,3791398,91,10,49.8614958448753,0.485892028886958,31.1478282326958,0.832407407407407,NA,0.0949957710974579,0.795013850415512,79.5013850415512,1,99.3248081189344,0.810285285285285,79.5013850415512,6.29412063738195,0,402.132044474284,401.949981689453,0.27257861819743
+1093,304274,3791398,304374,3791298,92,10,14.6814404432133,0.143068208505604,18.1162294268586,0.726415094339623,NA,0.0552024084873436,0.46814404432133,46.814404432133,2,96.8593872052187,0.891526442307692,46.2603878116344,11.6626439150974,0,402.542503356934,402.293823242188,0.340245929996649
+1094,304274,3791298,304374,3791198,93,10,38.2271468144044,0.372517222146668,28.252396702906,0.867149758454106,NA,0.0652485551774357,0.556786703601108,55.6786703601108,2,95.0341375810744,0.770140750670241,31.5789473684211,15.5733922630993,0,403.254519144694,402.979858398438,0.326881243201007
+1095,304274,3791198,304374,3791098,94,10,56.8421052631579,0.291535217332175,19.4837480074066,0.5101246105919,31.1734510129318,0.0762883870874679,0.671052631578947,67.1052631578947,1,98.8064194597879,0.732887029288703,67.1052631578947,4.45002778371175,0,403.252777099609,403.063812255859,0.173587080065151
+1096,304274,3791098,304374,3790998,95,10,13.8504155124654,0.0674850040120775,13.4734202180067,0.430555555555556,25.9778758441098,0.0438115033885423,0.379501385041551,37.9501385041551,3,90.3192380142954,0.774375,18.5595567867036,17.8065823812554,0,403.180084228516,403.071990966797,0.0997354168391856
+1097,304274,3790998,304374,3790898,96,10,52.3545706371191,0.255093315165653,21.5057886797113,0.811577466284379,15.5867255064659,0.0824321213818782,0.756232686980609,75.6232686980609,1,99.1670427107182,0.863791725852273,75.6232686980609,2.37322988614931,0,403.312595367432,403.164093017578,0.191841234828334
+1098,304274,3790898,304374,3790798,97,10,64.819944598338,0.315829818776523,23.1689298645549,0.744158878504673,10.3911503376439,0.0887155277006988,0.833795013850416,83.3795013850416,1,99.4714344797886,0.681657848324515,83.3795013850416,2.43954472209132,0,403.54744720459,403.185791015625,0.365765993240414
+1099,304274,3790798,304374,3790698,98,10,27.6315789473684,0.0944790056169086,14.4006580712847,0.606959706959707,32.4585640389756,0.071079672207002,0.647368421052632,64.7368421052632,2,96.7481713210452,0.790395846852693,55,7.95006392641765,0,403.619955062866,403.360595703125,0.298496992635314
+1100,304274,3790698,304374,3790598,99,10,31.3019390581717,0.152516109067295,13.5935316147209,0.576452599388379,11.6176592829322,0.0766635077749515,0.748538011695906,74.8538011695907,1,99.109212429135,0.784593023255814,74.8538011695907,8.31421785615385,0,403.926378250122,403.551910400391,0.441285897219626
+1101,304374,3800598,304474,3800498,0,11,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.164184570312,383.348449707031,0.752860861100079
+1102,304374,3800498,304474,3800398,1,11,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.774749755859,384.446014404297,0.535910084748519
+1103,304374,3800398,304474,3800298,2,11,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.618581136068,384.288787841797,0.449667092246117
+1104,304374,3800298,304474,3800198,3,11,1.38504155124654,0.0134970008024155,6.23469020258635,0.266666666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.203121609158,383.986419677734,0.346482605595998
+1105,304374,3800198,304474,3800098,4,11,25.207756232687,0.122822707301981,15.4819787384321,0.567441860465116,25.9778758441098,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.880317687988,383.713806152344,0.20719069850537
+1106,304374,3800098,304474,3799998,5,11,70,0.239346814229502,18.8871319313188,0.631884722699996,10.3911504415599,0.0195758074610479,0.0328947368421053,3.28947368421053,2,40.6326142031695,0.586394557823129,1.97368421052632,0,0,383.671410454644,383.587768554688,0.130084896563459
+1107,304374,3799998,304474,3799898,6,11,80.6094182825485,0.392762723350291,19.9708239902424,0.660380116959064,10.3911504415599,0.0300918954004409,0.221606648199446,22.1606648199446,5,81.7015328661861,0.674302039997995,6.92520775623269,0.454612827301025,0,383.561317443848,383.521759033203,0.0614400614693273
+1108,304374,3799898,304474,3799798,7,11,87.5346260387812,0.42650522535633,22.6779730527441,0.754848628192999,11.6176593526411,0.00292772566109581,0.0193905817174515,1.93905817174515,2,54.980748285685,0.745056497175141,1.66204986149584,0,0,383.548475477431,383.519592285156,0.0533639107843069
+1109,304374,3799798,304474,3799698,8,11,79.2243767313019,0.386014222949084,22.938650933713,0.618478260869565,10.3911504415599,0.018021360493239,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,7.29722958803177,0,383.649101257324,383.556701660156,0.116834169793148
+1110,304374,3799698,304474,3799598,9,11,90.2631578947368,0.925894255045704,37.7611412415619,0.892128279883382,NA,0.0153661998285794,0.0552631578947368,5.52631578947368,2,78.8971711789297,0.867688022284123,5.26315789473684,0,0,383.897779676649,383.761932373047,0.220660726869143
+1111,304374,3799598,304474,3799498,10,11,92.5207756232687,0.901599653601356,36.5004288809092,0.918163672654691,NA,0.0106425465783306,0.0526315789473684,5.26315789473684,3,71.3158730935122,0.781609195402299,4.43213296398892,1.91415927284642,0,384.321889241536,384.106353759766,0.286184383565844
+1112,304374,3799498,304474,3799398,11,11,44.8753462603878,0.218651412999131,26.3101124814248,0.657210401891253,15.5867255064659,0.0132001096711586,0.210526315789474,21.0526315789474,2,92.5124564069047,0.914925373134328,20.7756232686981,6.10381255651775,0,384.90468343099,384.603698730469,0.342116278118738
+1113,304374,3799398,304474,3799298,12,11,25.7617728531856,0.125522107462464,25.9693419707374,0.600074775672981,31.1734510129318,-0.0125882976209541,0.0831024930747922,8.31024930747922,2,78.4218893703244,0.799679388371663,4.70914127423823,2.74125946362813,0,385.367621527778,385.134216308594,0.31622971367977
+1114,304374,3799298,304474,3799198,13,11,98.4210526315789,1.00957566002068,38.4451066409617,0.927807486631016,NA,0.0347231242445942,0.265789473684211,26.5789473684211,2,92.0055234228793,0.834452167369651,21.8421052631579,0.20576535593165,0,385.793380737305,385.585144042969,0.244447642272368
+1115,304374,3799198,304474,3799098,14,11,60.1108033240997,0.585769834824833,34.6748360569914,0.857910906298003,NA,0.0278961828719067,0.0831024930747922,8.31024930747922,5,66.4968626257275,0.666132313952771,3.32409972299169,7.0630673567454,0,386.255672878689,386.073608398438,0.329076108010795
+1116,304374,3799098,304474,3798998,15,11,86.9806094182826,0.847611650391694,35.8095353802968,0.918789808917198,NA,0.0337283544963448,0.0941828254847645,9.41828254847645,4,75.7916391587842,0.724006116207951,4.70914127423823,0.152811036390417,0,387.021003723145,386.534271240234,0.558790023359229
+1117,304374,3798998,304474,3798898,16,11,86.7036011080332,0.844912250231211,35.7461267844317,0.920127795527157,NA,-0.0573884880036719,0.0581717451523546,5.81717451523546,4,68.7464301372584,0.701378676470588,4.43213296398892,0,0,387.785485161675,387.508941650391,0.410955388805725
+1118,304374,3798898,304474,3798798,17,11,72.8947368421053,0.747733844453819,36.3849339282281,0.876654632972322,NA,-0.0159792763628502,0.281578947368421,28.1578947368421,1,95.2171730229585,0.942302947484295,28.1578947368421,0,0,389.202054341634,387.962982177734,2.38443541025783
+1119,304374,3798798,304474,3798698,18,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0949747719056388,1,100,1,100,NA,100,0,0,393.943142361111,391.905090332031,2.46782496895403
+1120,304374,3798698,304474,3798598,19,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0795225489709186,0.886426592797784,88.6426592797784,1,99.6548206149311,0.650137296074948,88.6426592797784,0,0,395.176002502441,394.371978759766,1.35329311790564
+1121,304374,3798598,304474,3798498,20,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0490850509990664,0.451523545706371,45.1523545706371,6,89.8969156016195,0.671818181818182,22.4376731301939,0,0,394.316277398003,393.906433105469,0.641126605983965
+1122,304374,3798498,304474,3798398,21,11,84.2105263157895,0.863808051354593,37.3107348628471,0.897395833333333,NA,0.210431073272699,0.994736842105263,99.4736842105263,1,99.9857139002346,0.735006973500708,99.4736842105263,1.12472420520883,0,393.126174926758,392.197235107422,0.99253836353101
+1123,304374,3798398,304474,3798298,22,11,67.8670360110803,0.66135303931836,34.5834210829585,0.873469387755102,NA,0.208776814734094,0.994459833795014,99.4459833795014,1,99.9845464081023,0.73455882352941,99.4459833795014,3.67965417718489,0,392.167344835069,391.816192626953,0.655906157615551
+1124,304374,3798298,304474,3798198,23,11,69.5290858725762,0.677549440281259,33.8048676535713,0.904382470119522,NA,0.0975770545966015,0.753462603878116,75.3462603878116,1,99.1553098948745,0.849183139470964,75.3462603878116,5.29917013469864,0,391.957979838053,391.586761474609,0.664113856003312
+1125,304374,3798198,304474,3798098,24,11,26.3157894736842,0.256443015245895,26.3422796577336,0.82280701754386,NA,-0.00113737398631232,0,0,0,NA,NA,0,NA,NA,391.726687961155,391.531860351562,0.408611516742295
+1126,304374,3798098,304474,3797998,25,11,55.7894736842105,0.572272834022418,34.6719642728083,0.877358490566038,NA,0.0186357373631501,0.215789473684211,21.5789473684211,2,92.9828471723581,0.894468872946077,21.3157894736842,0.57024606844274,0,392.178090413411,391.663787841797,0.910619913402766
+1127,304374,3797998,304474,3797898,26,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0653619203107674,0.894736842105263,89.4736842105263,1,99.6822873347675,0.641803278688525,89.4736842105263,0,0,393.976493835449,393.579620361328,0.808592359299811
+1128,304374,3797898,304474,3797798,27,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0535760910206389,0.659279778393352,65.9279778393352,1,98.7134051402827,0.742778843518772,65.9279778393352,0,0,393.322191026476,393.039489746094,0.451278068100951
+1129,304374,3797798,304474,3797698,28,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0319683150825422,0.185595567867036,18.5595567867036,5,81.348040304853,0.685156113727542,9.97229916897507,0,0,392.812080383301,392.536437988281,0.366049536291777
+1130,304374,3797698,304474,3797598,29,11,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0128380866182852,0.113157894736842,11.3157894736842,3,81.2969034274975,0.812067260138477,6.31578947368421,0,0,392.562822129991,392.380523681641,0.352640963485787
+1131,304374,3797598,304474,3797498,30,11,86.1495844875346,0.419756724955122,28.5847160055023,0.85379805897723,15.5867255064659,0.0524107052761109,0.520775623268698,52.0775623268698,3,94.1449821865435,0.826107899807322,40.1662049861496,0.299254828311027,0,392.88178507487,392.44580078125,0.442766931273294
+1132,304374,3797498,304474,3797398,31,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0617221029496454,0.700831024930748,70.0831024930748,1,98.9193346356796,0.936533052039381,70.0831024930748,0,0,393.330790201823,393.128967285156,0.31336129218388
+1133,304374,3797398,304474,3797298,32,11,49.0304709141274,0.159264609468503,13.4458606464339,0.416666666666667,18.4561624877923,-0.00332544310978363,0.0637119113573407,6.37119113573407,3,68.5777636529169,0.703320184089415,3.8781163434903,1.36993654914524,0,393.503809611003,393.367645263672,0.172538053538236
+1134,304374,3797298,304474,3797198,33,11,91.3157894736842,0.936691855687636,37.4525112003752,0.925552353506244,NA,0.0366617976133344,0.260526315789474,26.0526315789474,2,94.3059012125916,0.817665640369467,25.7894736842105,0,0,393.569685194227,393.496612548828,0.142906694004195
+1135,304374,3797198,304474,3797098,34,11,99.7229916897507,0.971784057773917,37.6969151164605,0.92962962962963,NA,0.0410899892447767,0.274238227146814,27.4238227146814,3,92.9927341189968,0.690367956085428,24.6537396121884,0.0524805579522643,0,393.669179280599,393.56494140625,0.159398812567263
+1136,304374,3797098,304474,3796998,35,11,97.5069252077562,0.950188856490052,37.1597899052785,0.930397727272727,NA,0.0475719647322087,0.445983379501385,44.5983379501385,2,94.0040508541022,0.762179054054054,26.0387811634349,0,0,393.702633327908,393.647186279297,0.118441018482455
+1137,304374,3796998,304474,3796898,36,11,88.9196675900277,0.866507451515076,36.1212846334112,0.921599169262721,NA,0.0565621993643776,0.609418282548476,60.9418282548476,2,98.1520577732038,0.868863518422418,60.6648199445983,0.104247175563465,0,393.610026041667,393.476440429688,0.175242715473651
+1138,304374,3796898,304474,3796798,37,11,99.7368421052632,1.0230726608231,38.7260467747357,0.929639401934916,NA,0.0349313289101701,0.45,45,2,96.5388122203586,0.780663780663781,43.4210526315789,0,0,393.108910454644,392.743316650391,0.499885319134079
+1139,304374,3796798,304474,3796698,38,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0602247161663994,0.686980609418283,68.6980609418283,2,98.1782150085419,0.786561641745499,67.0360110803324,0,0,392.781929016113,392.622924804688,0.196744398086064
+1140,304374,3796698,304474,3796598,39,11,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.030071205537016,0.373961218836565,37.3961218836565,1,96.4707798051925,0.974026908410677,37.3961218836565,0,0,392.666880289714,392.636932373047,0.0681802518182389
+1141,304374,3796598,304474,3796498,40,11,62.6038781163435,0.610064436269181,33.0767040316106,0.857669616519174,NA,0.0264996858388253,0.290858725761773,29.0858725761773,1,95.2543881188766,0.835854828042328,29.0858725761773,10.5289979435149,0,392.820441351997,392.690002441406,0.215520107997841
+1142,304374,3796498,304474,3796398,41,11,29.6398891966759,0.0962786057238973,11.0999855787632,0.308522114347357,16.6354546863457,0.0628925602255232,0.562326869806094,56.2326869806094,3,95.5420297661082,0.715156297216533,43.4903047091413,8.81290673270014,0,393.195742289225,392.951934814453,0.252884114225249
+1143,304374,3796398,304474,3796298,42,11,48.1578947368421,0.164663409789469,13.9133936026143,0.614125380792047,17.3185839999892,-0.00484695175745353,0.186842105263158,18.6842105263158,3,84.5595071499308,0.832750809061489,11.8421052631579,0.762082113346583,0,393.509453667535,393.389984130859,0.186624439164783
+1144,304374,3796298,304474,3796198,43,11,64.819944598338,0.157914909388261,14.7993834276622,0.662770964944878,12.4765909548355,0.0204976475602493,0.0581717451523546,5.81717451523546,4,63.7919054176196,0.668198529411765,3.601108033241,2.69337372552781,0,393.845431009928,393.616760253906,0.335490041856104
+1145,304374,3796198,304474,3796098,44,11,30.1939058171745,0.098078205830886,13.5902757104359,0.634749455337691,14.6725398163281,0.0182782096159935,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,7.27380523681641,0,394.533942328559,394.058441162109,0.603812342852363
+1146,304374,3796098,304474,3795998,45,11,2.49307479224377,0.0242946014443479,7.11002120941978,0.5,NA,0.0210128484046396,0.141274238227147,14.1274238227147,4,86.3113986602911,0.812606599925843,13.0193905817175,16.8007922827029,0,395.117042541504,394.873474121094,0.217828833085777
+1147,304374,3795998,304474,3795898,46,11,2.63157894736842,0.026994001604831,10.292133351813,0.4,NA,0.0173811419328463,0.068421052631579,6.8421052631579,6,64.5081994731253,0.502549262780763,3.15789473684211,16.8964191400088,0,395.450832790799,395.300994873047,0.300632351589656
+1148,304374,3795898,304474,3795798,47,11,11.0803324099723,0.0359920021397747,10.8599327010423,0.476430976430976,18.6983404792656,0.0196307690097949,0.0193905817174515,1.93905817174515,2,53.6944186091776,0.872528248587571,1.66204986149584,15.2623519216265,5.19557523727417,395.770652770996,395.523956298828,0.279187377279134
+1149,304374,3795798,304474,3795698,48,11,30.1939058171745,0.147117308746329,16.9179326201795,0.627684407096172,11.6176592829322,0.00620718532090628,0,0,0,NA,NA,0,NA,NA,395.73639594184,395.670776367188,0.144918626680688
+1150,304374,3795698,304474,3795598,49,11,14.404432132964,0.0467896027817071,9.3231138757077,0.472739018087855,32.9718211607291,0.0109028467199287,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,395.940996805827,395.682800292969,0.393328568852269
+1151,304374,3795598,304474,3795498,50,11,31.8421052631579,0.326627419418455,34.5618792008783,0.771349862258953,NA,0.018489976920261,0.123684210526316,12.3684210526316,3,86.513628656511,0.671921921921922,11.0526315789474,6.96670396277245,0,396.410325792101,396.189086914062,0.460662554287671
+1152,304374,3795498,304474,3795398,51,11,32.9639889196676,0.321228619097489,25.656735998816,0.827731092436975,NA,0.015095842733816,0.0914127423822715,9.14127423822715,2,84.4502318275306,0.796183378500452,8.58725761772853,11.5686107259808,5.19557523727417,396.581029256185,396.289001464844,0.506994969550195
+1153,304374,3795398,304474,3795298,52,11,32.409972299169,0.315829818776523,27.1006388951404,0.813390313390313,NA,0.0200501328170143,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,14.1910425186157,10.3911504745483,396.923122829861,396.473388671875,0.62287940638549
+1154,304374,3795298,304474,3795198,53,11,19.1135734072022,0.0620862036911113,13.9801246823708,0.495936786128899,20.7823006752878,0.023223263047668,0.0969529085872576,9.69529085872576,3,79.1527521925454,0.732705733023059,6.64819944598338,11.2790354864938,5.19557523727417,397.719561258952,397.274841308594,0.601456556373924
+1155,304374,3795198,304474,3795098,54,11,19.7368421052632,0.202455012036233,26.8045759971546,0.775555555555556,NA,0.0184463046014762,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,8.65929206212362,5.19557523727417,398.386360168457,398.077941894531,0.498042187568139
+1156,304374,3795098,304474,3794998,55,11,32.6869806094183,0.318529218937006,31.4734218111858,0.785310734463277,NA,0.0163217310190781,0.0443213296398892,4.43213296398892,5,48.5580013132095,0.476811594202899,1.66204986149584,12.129646807909,5.19557523727417,397.869374593099,397.573028564453,0.493616397281856
+1157,304374,3794998,304474,3794898,56,11,37.9501385041551,0.123272607328728,11.5943742154617,0.515111111111111,16.6354545824297,0.0153586329095036,0.0581717451523546,5.81717451523546,4,68.1889317964375,0.535477941176471,3.8781163434903,14.4300698779878,10.3911504745483,397.222363789876,396.975708007812,0.3422859472591
+1158,304374,3794898,304474,3794798,57,11,27.7008310249307,0.053988003209662,8.44176259914586,0.509045025634887,11.2519814736082,0.0270354432956345,0.166204986149584,16.6204986149584,3,82.8185763908546,0.827018911321237,8.58725761772853,13.8120455344518,0,396.887518988715,396.845947265625,0.0996417777628651
+1159,304374,3794798,304474,3794698,58,11,26.5789473684211,0.136319708104397,25.3229331028336,0.693872746838849,22.0429587144503,0.0232114638328934,0.223684210526316,22.3684210526316,3,86.5559989457349,0.837916713435851,11.0526315789474,10.0734469918644,0,396.914464314779,396.838104248047,0.128471150095919
+1160,304374,3794698,304474,3794598,59,11,8.86426592797784,0.0172761610270919,4.25214437825322,0.332638888888889,47.2800258335839,0.0218261850276881,0.03601108033241,3.601108033241,5,43.2303968445198,0.423690932311622,1.10803324099723,14.1340915606572,5.19557523727417,397.111246744792,396.941131591797,0.406066726437817
+1161,304374,3794598,304474,3794498,60,11,39.0581717451524,0.0951538556570293,16.0857325940068,0.507996270797476,14.4477329884939,0.0193210616841631,0.0581717451523546,5.81717451523546,8,49.8943767902182,0.402757352941176,2.49307479224377,5.55912038258144,0,397.54014078776,396.919494628906,1.05228914461561
+1162,304374,3794498,304474,3794398,61,11,31.3019390581717,0.305032218134591,31.8551394243301,0.721238938053097,NA,0.0247383029329532,0.116343490304709,11.6343490304709,7,67.3267503564856,0.537772087067862,3.8781163434903,11.109810545331,0,397.889536539714,397.245239257812,0.847192380686099
+1163,304374,3794398,304474,3794298,62,11,19.4736842105263,0.0998778059378748,18.5788474943594,0.467527386541471,16.4298513045218,0.0198089158292293,0.0605263157894737,6.05263157894737,3,74.0147299627415,0.70432617491441,4.73684210526316,16.0269978564718,10.3911504745483,397.446332295736,397.034484863281,0.59439999198565
+1164,304374,3794298,304474,3794198,63,11,19.9445983379501,0.0485892028886958,9.58409741276104,0.475559163059163,18.7069835121708,0.0171804381960937,0,0,0,NA,NA,0,NA,NA,397.308651394314,397.051818847656,0.365304656579828
+1165,304374,3794198,304474,3794098,64,11,29.9168975069252,0.0728838043330438,9.82550422861588,0.577119883040936,11.7738164593906,0.0114355882729089,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,16.7141089439392,14.6953058242798,398.164301554362,397.214813232422,1.1898133272479
+1166,304374,3794098,304474,3793998,65,11,58.4487534626039,0.569573433861934,33.8834023131088,0.845971563981043,NA,0.00688018683444387,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,5.91293446222941,5.19557523727417,400.081403944227,399.650482177734,0.737163912438317
+1167,304374,3793998,304474,3793898,66,11,46.5789473684211,0.238896914202754,18.1778054048541,0.42282196969697,46.7601769870196,0.0138659544010711,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.874827063706437,7.10526315789474,18.3642374674479,10.3911504745483,400.057624816895,399.5,0.726886378950052
+1168,304374,3793898,304474,3793798,67,11,20.7756232686981,0.202455012036233,25.7142460823608,0.76,NA,0.01315130112465,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.795467422096317,2.21606648199446,14.3932223320007,10.3911504745483,399.272135416667,398.779998779297,0.720088271910278
+1169,304374,3793798,304474,3793698,68,11,0,NA,NA,NA,NA,0.0123571795447385,0,0,0,NA,NA,0,NA,NA,398.988995869954,398.644134521484,0.499273280362207
+1170,304374,3793698,304474,3793598,69,11,5.81717451523546,0.0566874033701451,9.04118060547919,0.714285714285714,NA,0.0153282847657924,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,20.4965839385986,11.6176595687866,399.975351969401,399.337249755859,0.784957808948716
+1171,304374,3793598,304474,3793498,70,11,27.8947368421053,0.143068208505604,15.2884582721233,0.675595238095238,16.4298513045218,0.0139453819981243,0.0289473684210526,2.89473684210526,5,39.8243371274577,0.450767841011743,1.31578947368421,12.6793078075756,5.19557523727417,400.927642822266,400.60595703125,0.543483918348324
+1172,304374,3793498,304474,3793398,71,11,30.4709141274238,0.0989780058843804,17.9760198899611,0.639673571876962,22.5141591514918,0.0155487156967623,0.0498614958448753,4.98614958448753,4,57.5094243058959,0.610193283662671,1.93905817174515,8.00270011689928,0,401.116287231445,400.792602539062,0.425464167006195
+1173,304374,3793398,304474,3793298,72,11,37.9501385041551,0.123272607328728,16.7872836630835,0.592225161669606,10.7999866759763,0.02029722505004,0.0775623268698061,7.75623268698061,8,52.3204809613743,0.494094094094094,2.49307479224377,12.7838863985879,0,400.784576416016,400.494964599609,0.479733420968566
+1174,304374,3793298,304474,3793198,73,11,13.0193905817175,0.0253743615085412,5.37651922130935,0.363194444444444,21.8952635582709,0.0240190780414926,0.116343490304709,11.6343490304709,4,80.6566356425384,0.792794383858007,9.41828254847645,30.0371021316165,10.3911504745483,400.489535013835,400.398986816406,0.14321240094423
+1175,304374,3793198,304474,3793098,74,11,24.7368421052632,0.126871807542706,12.268225877935,0.362007168458781,20.7823006752878,0.028070408226095,0.0815789473684211,8.15789473684211,3,79.4549359102614,0.825787965616046,7.10526315789474,12.0447866224474,0,400.723052978516,400.524017333984,0.698454954055405
+1176,304374,3793098,304474,3792998,75,11,17.7285318559557,0.172761610270919,18.1999500708908,0.794270833333333,NA,0.0652900814545377,0.609418282548476,60.9418282548476,1,98.4390014517769,0.781439197370697,60.9418282548476,26.6497188763185,0,402.961954752604,401.430725097656,1.63150250588393
+1177,304374,3792998,304474,3792898,76,11,0,NA,NA,NA,NA,0.0313979981936659,0.21606648199446,21.606648199446,3,85.5194389502255,0.861345828852358,12.1883656509695,80.5552628345979,51.955753326416,404.658908420139,404.373291015625,0.601412279070045
+1178,304374,3792898,304474,3792798,77,11,0,NA,NA,NA,NA,0.0213026378943592,0.221606648199446,22.1606648199446,3,88.8028253310414,0.846198185554609,18.005540166205,81.1612316608429,42.8438110351562,405.134745279948,404.885559082031,0.354967363553091
+1179,304374,3792798,304474,3792698,78,11,0,NA,NA,NA,NA,0.0335441697234943,0.234210526315789,23.4210526315789,1,94.2341300741174,0.926084419373663,23.4210526315789,75.4190715832657,41.8880653381348,405.51618109809,405.350219726562,0.221789398175288
+1180,304374,3792698,304474,3792598,79,11,0,NA,NA,NA,NA,0.0282371459032829,0.235457063711911,23.5457063711911,2,92.7180080775997,0.939365582109607,22.9916897506925,84.926396448472,46.7601776123047,405.775199890137,405.580139160156,0.301435369141292
+1181,304374,3792598,304474,3792498,80,11,4.70914127423823,0.0229449013641064,6.69587521299509,0.488636363636364,31.1734513246797,0.00275401934535255,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,33.2679138183594,33.2679138183594,404.489423963759,403.250061035156,1.81328874064201
+1182,304374,3792498,304474,3792398,81,11,12.1883656509695,0.0395912023537522,8.20672544602099,0.45679012345679,27.4479773778702,0.0277482573002188,0.138504155124654,13.8504155124654,5,81.1796142503572,0.644940419897863,9.14127423822715,22.90600938797,0,401.053169250488,400.194000244141,1.41528379728801
+1183,304374,3792398,304474,3792298,82,11,17.1052631578947,0.0584870034771339,7.34339622621261,0.35397692774742,18.7329127583749,0.0264855427456496,0.0815789473684211,8.1578947368421,5,71.2113386374167,0.586246418338109,3.94736842105263,9.19352616033246,0,400.191769070095,400.113189697266,0.178691744397317
+1184,304374,3792298,304474,3792198,83,11,45.4293628808864,0.110675406579807,12.4397299665152,0.5448975571316,14.2878317142604,0.0332675736082764,0.177285318559557,17.7285318559557,8,75.775161332624,0.598454785954786,8.86426592797784,6.14237938821316,0,400.828229268392,400.333953857422,0.546099254812307
+1185,304374,3792198,304474,3792098,84,11,51.2465373961219,0.499389029689374,38.8279688311397,0.744144144144144,NA,0.0286580528399228,0.0664819944598338,6.64819944598338,6,58.3954675562978,0.577151335311573,3.04709141274238,3.21009202798208,0,401.528531392415,401.1103515625,0.563178834861249
+1186,304374,3792098,304474,3791998,85,11,46.5373961218837,0.453499226961161,35.6106347597568,0.791666666666667,NA,0.0491584144354349,0.443213296398892,44.3213296398892,4,95.4563126972595,0.706772261143263,40.7202216066482,5.01544165015221,0,401.518846299913,401.229125976562,0.58937229175083
+1187,304374,3791998,304474,3791898,86,11,29.4736842105263,0.100777605991369,15.7246958193776,0.718309602841836,25.9778759376342,0.070299075086261,0.678947368421053,67.8947368421052,1,98.8449087667805,0.761395648779826,67.8947368421052,10.0679309996524,0,401.191251118978,400.821350097656,0.575535049577874
+1188,304374,3791898,304474,3791798,87,11,0.831024930747922,0.00404910024072465,1.29889379220549,0.0833333333333333,56.1987382030718,0.0527298747819211,0.465373961218837,46.5373961218837,3,93.9110841121365,0.740548219956544,30.7479224376731,27.3341962723505,0,401.05426703559,400.596984863281,0.712242531009111
+1189,304374,3791798,304474,3791698,88,11,38.2271468144044,0.372517222146668,37.5069017916046,0.739130434782609,NA,0.0465643187109129,0.429362880886427,42.9362880886427,4,90.1006251769154,0.760194174757282,20.4986149584488,7.4560954893789,0,401.433034261068,400.779174804688,0.529734375039786
+1190,304374,3791698,304474,3791598,89,11,20.7756232686981,0.0506137530090582,10.0461048976732,0.560287309368192,12.9889380129814,0.056215287539301,0.542936288088643,54.2936288088643,2,95.8515249296078,0.777605727605728,43.213296398892,12.2201873769566,0,401.792728000217,401.672271728516,0.221237292216789
+1191,304374,3791598,304474,3791498,90,11,20,0.102577206098358,13.7271617851103,0.747869318181818,10.3911504415599,0.0473822267744493,0.452631578947368,45.2631578947368,5,92.1373098233842,0.746420771657365,26.8421052631579,17.7708463946054,0,402.139706929525,401.944763183594,0.275202954425858
+1192,304374,3791498,304474,3791398,91,11,10.5263157894737,0.102577206098358,15.3785258054863,0.741228070175439,NA,0.0552282540250157,0.462603878116344,46.2603878116344,1,97.3874214343619,0.818750836792074,46.2603878116344,17.9872612867527,0,402.537322998047,402.259613037109,0.355203169994948
+1193,304374,3791398,304474,3791298,92,11,7.75623268698061,0.0755832044935268,12.7411382882251,0.696428571428572,NA,0.0459537755846629,0.415512465373961,41.5512465373961,2,94.5736049447739,0.819577768203361,37.1191135734072,23.1826655356089,0,402.742172241211,402.501953125,0.239374891614506
+1194,304374,3791298,304474,3791198,93,11,16.8975069252078,0.0548878032631564,9.11439609744151,0.566176470588235,24.0781408120996,0.0444089596243117,0.409972299168975,40.9972299168975,3,95.0055669574224,0.781109782928815,38.2271468144044,27.7908025335621,0,402.992465549045,402.936981201172,0.147330822078952
+1195,304374,3791198,304474,3791098,94,11,20,0.0683848040655719,12.1886886619816,0.542036588646758,19.7174933050784,0.0773264794913733,0.597368421052632,59.7368421052632,3,95.184163582821,0.823853891438372,32.6315789473684,11.9268447544081,0,402.959314982096,402.864105224609,0.151368532752043
+1196,304374,3791098,304474,3790998,95,11,8.31024930747922,0.0404910024072465,6.5626579048808,0.458333333333333,99.2613246862776,0.0348674774920011,0.213296398891967,21.3296398891967,4,84.5890098720818,0.794376553438277,9.97229916897507,26.2084055628095,0,403.080054389106,402.937622070312,0.20055794400772
+1197,304374,3790998,304474,3790898,96,11,48.4764542936288,0.472395028084543,37.2388901729681,0.774285714285714,NA,0.0619565644172482,0.584487534626039,58.4487534626039,2,97.6518529503909,0.815816326530612,57.3407202216066,2.89167546096006,0,403.417277018229,403.266296386719,0.190773132446824
+1198,304374,3790898,304474,3790798,97,11,46.2603878116344,0.112699956700169,10.5991327368969,0.385893246187364,21.8752587327075,0.0796004573011918,0.806094182825485,80.6094182825485,2,98.8079679782623,0.651162183337686,78.1163434903047,4.02219940296973,0,403.610263400608,403.527008056641,0.154940582628621
+1199,304374,3790798,304474,3790698,98,11,30.2631578947368,0.103477006151852,22.1635311225526,0.612826797385621,14.6725398163281,0.0622809015802647,0.573684210526316,57.3684210526316,2,97.5043381001895,0.832451499118166,56.0526315789474,6.58859550843545,0,403.508458455404,403.345550537109,0.208893777881641
+1200,304374,3790698,304474,3790598,99,11,63.98891966759,0.311780718535798,19.7360606887599,0.725388143966126,15.5867255064659,0.0716574269058237,0.631578947368421,63.1578947368421,3,97.5109175660764,0.939232409381663,62.280701754386,0.64579537179735,0,403.422711690267,403.324920654297,0.160520742488471
+1201,304474,3800598,304574,3800498,0,12,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.55775642395,383.924133300781,0.537538819905817
+1202,304474,3800498,304574,3800398,1,12,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.165260314941,385.046295166016,0.173896235634113
+1203,304474,3800398,304574,3800298,2,12,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.988975524902,384.698150634766,0.271202925243698
+1204,304474,3800298,304574,3800198,3,12,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.529579162598,384.276824951172,0.314986009724411
+1205,304474,3800198,304574,3800098,4,12,36.01108033241,0.116974006954268,20.2129794832724,0.709308477913129,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.108751296997,383.890777587891,0.231675536083033
+1206,304474,3800098,304574,3799998,5,12,60.7894736842105,0.623561437071597,37.0208128034366,0.82972582972583,NA,0.0219661068938302,0.0131578947368421,1.31578947368421,2,0,1,0.657894736842105,0,0,383.844960530599,383.708526611328,0.16596420988359
+1207,304474,3799998,304574,3799898,6,12,85.8725761772853,0.836814049749762,35.230421159766,0.923118279569893,NA,0.0283889229009683,0.182825484764543,18.2825484764543,4,86.7607982671217,0.808459837877671,13.8504155124654,1.02337088006915,0,383.681827545166,383.58740234375,0.115538801142168
+1208,304474,3799898,304574,3799798,7,12,74.5152354570637,0.726138643169954,38.8751208933296,0.828996282527881,NA,0.0204847320697239,0.0415512465373961,4.15512465373961,5,49.2274056102515,0.525748817656332,1.93905817174515,1.18258689244588,0,383.668230692546,383.586517333984,0.111612787179736
+1209,304474,3799798,304574,3799698,8,12,95.2908587257618,0.928593655206187,38.1291053824492,0.910368217054264,NA,0.0296265459957412,0.10803324099723,10.803324099723,2,81.6408378730398,0.79302436693741,6.37119113573407,0.532879511515299,0,383.834316253662,383.649749755859,0.209121617266457
+1210,304474,3799698,304574,3799598,9,12,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0149031397136193,0.0315789473684211,3.15789473684211,1,74.9788187875667,0.93925831202046,3.15789473684211,0,0,384.173006693522,383.892639160156,0.360072185537436
+1211,304474,3799598,304574,3799498,10,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.00931488047914233,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,0,0,384.678276062012,384.221984863281,0.483205101501447
+1212,304474,3799498,304574,3799398,11,12,92.5207756232687,0.901599653601356,37.3190764672237,0.909680638722555,NA,0.0311524004293631,0.265927977839335,26.5927977839335,3,90.6490750174243,0.833677051338306,22.7146814404432,0.0541205753882726,0,385.265846252441,384.874908447266,0.325192068852636
+1213,304474,3799398,304574,3799298,12,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0147710916164739,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,0,0,385.620180765788,385.428283691406,0.21383495233831
+1214,304474,3799298,304574,3799198,13,12,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0327744171688162,0.178947368421053,17.8947368421053,2,88.1272769071759,0.907886231415643,14.2105263157895,0,0,385.912353515625,385.72607421875,0.186574344483044
+1215,304474,3799198,304574,3799098,14,12,65.9279778393352,0.642457238194978,40.5540205569301,0.801820728291316,NA,0.0266557684583171,0.168975069252078,16.8975069252078,3,83.4800087288716,0.772955974842767,8.03324099722992,1.82941388302162,0,386.352376302083,386.137908935547,0.383768053807783
+1216,304474,3799098,304574,3798998,15,12,98.0609418282548,0.955587656811018,37.5864160350789,0.923258003766478,NA,0.036478369576637,0.213296398891967,21.3296398891967,6,86.7242022080085,0.775683512841756,17.7285318559557,0,0,387.275333404541,386.70556640625,0.59193997782633
+1217,304474,3798998,304574,3798898,16,12,81.994459833795,0.799022447502998,38.0660960119351,0.869932432432432,NA,0.0605253055269875,0.476454293628809,47.6454293628809,2,95.832652803792,0.88551733346686,44.8753462603878,2.54926164482915,0,388.132171630859,387.728698730469,0.497184247093237
+1218,304474,3798898,304574,3798798,17,12,95.5263157894737,0.489941129127683,19.2493292155814,0.45902394106814,10.3911504415599,0.0561420617319719,0.710526315789474,71.0526315789474,1,98.9923966022447,0.945490407028869,71.0526315789474,0.343070127345898,0,391.196603775024,388.398345947266,3.0120626619447
+1219,304474,3798798,304574,3798698,18,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0801465426084077,0.905817174515235,90.5817174515235,1,99.7183199952349,0.965582991705596,90.5817174515235,0,0,393.439676920573,392.263916015625,1.14442801422895
+1220,304474,3798698,304574,3798598,19,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.071669566292842,0.872576177285319,87.2576177285319,1,99.6081737630215,0.98678817157078,87.2576177285319,0,0,393.258136749268,392.599609375,0.927867215606184
+1221,304474,3798598,304574,3798498,20,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0668529420575111,0.842105263157895,84.2105263157895,2,99.1729254026181,0.756835369400815,83.6565096952909,0,0,392.930826822917,392.436248779297,0.790913798003838
+1222,304474,3798498,304574,3798398,21,12,25.5263157894737,0.261841815566861,25.9780999609071,0.836769759450172,NA,0.247499515527957,1,100,1,100,NA,100,25.8105801243531,0,392.304988861084,391.757080078125,0.653545115721965
+1223,304474,3798398,304574,3798298,22,12,0,NA,NA,NA,NA,0.190190263546247,0.922437673130194,92.2437673130194,1,99.7711467429596,0.918010447422212,92.2437673130194,62.6523422435955,15.5867252349854,391.636558532715,391.335571289062,0.346433216714426
+1224,304474,3798298,304574,3798198,23,12,40.1662049861496,0.39141302327005,28.5266448664261,0.870114942528736,NA,0.11620774025638,0.745152354570637,74.5152354570637,2,98.8393870368659,0.891218252260009,74.2382271468144,22.1784036717893,0,391.32550239563,391.203094482422,0.191290468134827
+1225,304474,3798198,304574,3798098,24,12,69.5290858725762,0.677549440281259,36.9078222978617,0.889110225763612,NA,0.0183514299729884,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,391.368499755859,391.269226074219,0.158452814557371
+1226,304474,3798098,304574,3797998,25,12,45.5263157894737,0.466996227763577,36.3869746922556,0.826589595375723,NA,0.0299246960206227,0.213157894736842,21.3157894736842,4,88.5385150693161,0.894091415830546,19.4736842105263,0.864563518100315,0,391.782358169556,391.493103027344,0.465191839319659
+1227,304474,3797998,304574,3797898,26,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.059007619974562,0.71191135734072,71.191135734072,1,98.9711809058421,0.812370062370062,71.191135734072,0,0,393.075838088989,392.337432861328,0.652294858914016
+1228,304474,3797898,304574,3797798,27,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0587205182544247,0.803324099722992,80.3324099722992,1,99.3571199051226,0.804083214885644,80.3324099722992,0,0,393.170092264811,392.818176269531,0.462772411081009
+1229,304474,3797798,304574,3797698,28,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0605562631269127,0.739612188365651,73.9612188365651,1,99.0956604634,0.892682719667049,73.9612188365651,0,0,392.484552383423,392.196624755859,0.304599290203537
+1230,304474,3797698,304574,3797598,29,12,96.8421052631579,0.993379259057781,38.4741138180572,0.91893115942029,NA,-0.0144277464476641,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.65672990063234,2.89473684210526,0,0,392.177457173665,392.089965820312,0.152309594355994
+1231,304474,3797598,304574,3797498,30,12,40.7202216066482,0.066135303931836,11.4228229277066,0.456269944469571,15.2451608842828,0.0425935479350533,0.268698060941828,26.8698060941828,4,88.138003618247,0.77209595959596,14.9584487534626,5.36499116838593,0,392.39301109314,392.131286621094,0.31824180596485
+1232,304474,3797498,304574,3797398,31,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.045840208002023,0.407202216066482,40.7202216066482,2,96.3365115943514,0.937289372198867,40.4432132963989,0,0,392.973981221517,392.653045654297,0.388559927288459
+1233,304474,3797398,304574,3797298,32,12,94.1828254847645,0.917796054564255,37.1699000455513,0.91421568627451,NA,-0.00969224503886863,0.03601108033241,3.601108033241,2,70.0302904667729,0.884738186462324,3.32409972299169,0.799319267272949,0,393.369255065918,393.219421386719,0.131740334307254
+1234,304474,3797298,304574,3797198,33,12,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,-0.0120492541006043,0.118421052631579,11.8421052631579,2,87.5009187807936,0.865671641791045,11.3157894736842,0,0,393.494890848796,393.468231201172,0.0379683427716104
+1235,304474,3797198,304574,3797098,34,12,95.8448753462604,0.933992455527153,38.0242760814576,0.90028901734104,NA,0.0402040941556245,0.346260387811634,34.6260387811634,3,94.2507322558718,0.797842156350332,32.409972299169,0.332516815185547,0,393.540519714355,393.511749267578,0.0507437662053002
+1236,304474,3797098,304574,3796998,35,12,34.0720221606648,0.110675406579807,13.5422117151687,0.529185757922871,19.1232134708126,-0.0851288775751694,0,0,0,NA,NA,0,NA,NA,393.567591349284,393.506774902344,0.078326059981163
+1237,304474,3796998,304574,3796898,36,12,59.5567867036011,0.580371034503867,32.7306601870929,0.890697674418605,NA,-0.0908414349853193,0.0581717451523546,5.81717451523546,1,82.5214449195341,1,5.81717451523546,0,0,393.506546020508,393.415252685547,0.116525141069517
+1238,304474,3796898,304574,3796798,37,12,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,-0.102227623937468,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.952677459526775,3.94736842105263,0,0,393.282012939453,393.184997558594,0.177749705551538
+1239,304474,3796798,304574,3796698,38,12,98.3379501385042,0.958287056971501,37.5491830568279,0.924882629107981,NA,-0.0662204100607851,0.196675900277008,19.6675900277008,1,93.028415830176,0.930289655172414,19.6675900277008,0,0,392.947891235352,392.761352539062,0.195600305320046
+1240,304474,3796698,304574,3796598,39,12,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0444874636195387,0.50415512465374,50.415512465374,3,96.6575012266708,0.922202145118777,49.584487534626,0,0,392.668657302856,392.625122070312,0.0759996384365651
+1241,304474,3796598,304574,3796498,40,12,67.3130193905817,0.327977119498697,23.6177728217336,0.766630591630592,10.3911503376439,0.0415811474003654,0.426592797783933,42.6592797783933,2,95.2655623042349,0.808965364196582,36.2880886426593,4.09295286451067,0,392.712130228678,392.644165039062,0.136751496546934
+1242,304474,3796498,304574,3796398,41,12,32.409972299169,0.0526383031294205,9.022900831983,0.470685579196217,11.2570795844056,0.066295075140006,0.573407202216066,57.3407202216066,3,96.6822573745513,0.695564176083657,51.8005540166205,7.39255494426414,0,393.089937210083,392.860900878906,0.283801798108211
+1243,304474,3796398,304574,3796298,42,12,38.6842105263158,0.099202955897754,10.3708273107708,0.3970703125,16.0082885491531,0.0324400835186488,0.231578947368421,23.1578947368421,6,85.2332126215992,0.743041619404939,16.8421052631579,3.18904208053242,0,393.51976776123,393.375549316406,0.219058915993479
+1244,304474,3796298,304574,3796198,43,12,37.3961218836565,0.0728838043330438,13.0056109079882,0.576805827353773,17.7678484148532,0.0309246931277223,0.204986149584488,20.4986149584488,6,79.4425486380495,0.709729295095149,8.86426592797784,7.03505668124637,0,393.750871658325,393.600616455078,0.151197351843241
+1245,304474,3796198,304574,3796098,44,12,36.2880886426593,0.0884053552558216,10.7819567356562,0.507361013094958,18.797767641458,0.0204674185048421,0.0332409972299169,3.32409972299169,3,54.6185229131174,0.634923310298331,1.66204986149584,7.48395907878876,0,394.17330678304,393.88232421875,0.463703148104843
+1246,304474,3796098,304574,3795998,45,12,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0199546923589742,0.0277008310249307,2.77008310249307,5,32.4430614223119,0.367083059390752,0.831024930747922,55.386325263977,27.9790287017822,394.835666656494,394.340911865234,0.432336104032161
+1247,304474,3795998,304574,3795898,46,12,0.526315789473684,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.00831153162951427,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,59.6644659042358,47.9008369445801,395.354698181152,394.831787109375,0.499767221364526
+1248,304474,3795898,304574,3795798,47,12,14.6814404432133,0.0476894028352015,11.2729402105886,0.587988639712778,14.8857412617851,0.0251211684633826,0.0664819944598338,6.64819944598338,7,50.7990390898169,0.492581602373887,1.66204986149584,21.7801944414775,0,395.760471343994,395.394866943359,0.377964756189373
+1249,304474,3795798,304574,3795698,48,12,5.26315789473684,0.0256443015245895,6.5679997366091,0.372549019607843,79.4770175410533,0.00842154111166749,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,18.7875315348307,15.5867252349854,395.603757222493,395.221618652344,0.397724544391434
+1250,304474,3795698,304574,3795598,49,12,44.8753462603878,0.218651412999131,25.4672517618052,0.792511261261261,14.6953058096335,0.0164846924726615,0.0249307479224377,2.49307479224377,3,51.3992027392928,0.487215909090909,1.66204986149584,5.09652858310276,0,395.455833435059,395.165222167969,0.337596912126926
+1251,304474,3795598,304574,3795498,50,12,31.0526315789474,0.318529218937006,25.6119470145392,0.853107344632768,NA,0.0108013134240022,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,0.74222503389631,0,395.804550170898,395.584991455078,0.302652797732103
+1252,304474,3795498,304574,3795398,51,12,0,NA,NA,NA,NA,0.00756451295491189,0,0,0,NA,NA,0,NA,NA,395.99031829834,395.743011474609,0.263855568916746
+1253,304474,3795398,304574,3795298,52,12,27.9778393351801,0.136319708104397,15.1262688791838,0.484006734006734,11.6176592829322,0.012993098741584,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,396.369824727376,396.0546875,0.439176286436037
+1254,304474,3795298,304574,3795198,53,12,14.1274238227147,0.0344173520461595,7.97442527096276,0.439616402116402,18.3444142788856,0.00939804126545297,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417,397.036380767822,396.599548339844,0.467829683952762
+1255,304474,3795198,304574,3795098,54,12,0,NA,NA,NA,NA,0.0140487809310104,0.0184210526315789,1.84210526315789,3,38.9311331818969,0.490616621983914,0.789473684210526,40.7205690656389,36.7382659912109,397.744953155518,397.509582519531,0.386079167334794
+1256,304474,3795098,304574,3794998,55,12,5.54016620498615,0.053988003209662,13.5236310365767,0.6,NA,0.0105554244725991,0.0581717451523546,5.81717451523546,3,66.3737276922825,0.635018382352941,2.77008310249307,21.5613290014721,7.34765291213989,397.539746602376,397.290985107422,0.31699323702593
+1257,304474,3794998,304574,3794898,56,12,0,NA,NA,NA,NA,0.00968577673916305,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,39.819229888916,18.7329120635986,397.171695709229,396.990112304688,0.177095160374936
+1258,304474,3794898,304574,3794798,57,12,0,NA,NA,NA,NA,0.0115207283316394,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,29.3906116485596,29.3906116485596,397.016680399577,396.905181884766,0.103894119495433
+1259,304474,3794798,304574,3794698,58,12,0,NA,NA,NA,NA,0.0131751806436928,0.0236842105263158,2.36842105263158,2,56.6643481405042,0.658580413297394,1.57894736842105,18.6887955135769,15.5867252349854,397.13313293457,396.958618164062,0.257605384161522
+1260,304474,3794698,304574,3794598,59,12,11.9113573407202,0.0386914023002578,7.92485066012682,0.427469135802469,10.7999867220173,0.00985414878256276,0.0415512465373961,4.15512465373961,3,58.7146493383558,0.525748817656332,1.66204986149584,13.2216071764628,5.19557523727417,398.054094950358,397.205474853516,0.858532242739671
+1261,304474,3794598,304574,3794498,60,12,0,NA,NA,NA,NA,0.0179698460539696,0.0609418282548476,6.09418282548476,2,74.0184442226122,0.655474579212216,4.15512465373961,15.6297549334439,10.3911504745483,399.449697494507,398.257965087891,1.14238473747452
+1262,304474,3794498,304574,3794398,61,12,0,NA,NA,NA,NA,0.0103796960243332,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,35.0701322555542,31.1734504699707,399.518686930339,398.609680175781,1.12626003113988
+1263,304474,3794398,304574,3794298,62,12,13.4210526315789,0.0688347040923191,13.0897185438946,0.613636363636364,25.9778761038998,0.0130805911554106,0.0473684210526316,4.73684210526316,2,76.4701262567725,0.844485369347248,4.47368421052632,12.9363164107005,5.19557523727417,398.2506275177,397.521331787109,0.794804357529395
+1264,304474,3794298,304574,3794198,63,12,61.218836565097,0.596567435466765,31.9425107647462,0.866515837104072,NA,0.00410274166855556,0,0,0,NA,NA,0,NA,NA,397.658264160156,397.393493652344,0.298402034098153
+1265,304474,3794198,304574,3794098,64,12,22.1606648199446,0.053988003209662,10.2837970146454,0.628003246753247,17.0964008330045,0.0139882682167688,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,11.9112103462219,5.19557523727417,398.083192825317,397.524810791016,0.608430167674306
+1266,304474,3794098,304574,3793998,65,12,27.7008310249307,0.0899800053494367,13.718353263395,0.710168940870695,18.4561625743889,0.0107037983294791,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,13.5269573926926,7.34765291213989,399.095563252767,398.713958740234,0.579646246267742
+1267,304474,3793998,304574,3793898,66,12,21.3157894736842,0.109325706499566,18.8818324072061,0.503205128205128,15.5867256623399,0.0168157152500307,0.0631578947368421,6.31578947368421,3,69.9636235746934,0.634831460674157,2.89473684210526,9.41225657860438,0,398.803129196167,398.280700683594,0.586490521445398
+1268,304474,3793898,304574,3793798,67,12,17.7285318559557,0.172761610270919,21.3760124604878,0.6953125,NA,0.0159253331509737,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,9.52522126833598,5.19557523727417,398.378018697103,398.093536376953,0.429787152750006
+1269,304474,3793798,304574,3793698,68,12,0,NA,NA,NA,NA,0.0148511230720456,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,49.0149574279785,49.0149574279785,398.338317871094,398.074798583984,0.359224070260651
+1270,304474,3793698,304574,3793598,69,12,21.0526315789474,0.0512886030491789,10.5784651159478,0.505671296296296,15.8933528121732,0.0151693838001381,0.0221606648199446,2.21606648199446,2,55.3960460550465,0.693201133144476,1.66204986149584,5.19557523727417,5.19557523727417,399.079713821411,398.316192626953,0.857047921603572
+1271,304474,3793598,304574,3793498,70,12,34.2105263157895,0.0701844041725607,9.60053030298389,0.447616747181965,13.330211541137,0.0211026610388408,0.0263157894736842,2.63157894736842,5,36.5232178697678,0.446985446985447,1.31578947368421,4.80208349227905,0,400.306813557943,400.01220703125,0.512781627099753
+1272,304474,3793498,304574,3793398,71,12,31.3019390581717,0.0610064436269181,9.39700963876673,0.542584601408131,12.4693804467391,0.0183410249211039,0.0277008310249307,2.77008310249307,2,61.6502325407046,0.762656147271532,2.21606648199446,5.74864168167114,0,400.54979133606,400.282928466797,0.295433760653104
+1273,304474,3793398,304574,3793298,72,12,31.3019390581717,0.0610064436269181,10.2671053127148,0.47735834124723,12.4693805298719,0.0247657163442689,0.0886426592797784,8.86426592797784,7,59.9464960943244,0.535772737900397,2.77008310249307,8.50484816730022,0,400.408233642578,400.186828613281,0.258539294228049
+1274,304474,3793298,304574,3793198,73,12,36.01108033241,0.116974006954268,17.1739525820255,0.610120816003169,10.3911503722826,0.03076461195844,0.188365650969529,18.8365650969529,6,77.4804066505135,0.637622967275647,7.20221606648199,7.21364420301774,0,400.304086685181,400.17724609375,0.137893282665942
+1275,304474,3793198,304574,3793098,74,12,16.8421052631579,0.0431904025677296,9.6875476586159,0.557688672111313,24.0535045441676,0.0365260759342116,0.197368421052632,19.7368421052632,5,81.9747683511385,0.811227024341779,8.42105263157895,10.0673315811157,0,400.511655171712,400.372406005859,0.278703598067678
+1276,304474,3793098,304574,3792998,75,12,16.3434903047091,0.0530882031561677,12.2531944985189,0.464918334483552,17.7388033463767,0.0158210457313816,0.0941828254847645,9.41828254847645,2,84.8724455569932,0.783147662734819,8.86426592797784,30.642294771531,15.5867252349854,401.640254974365,400.698852539062,1.3605066754137
+1277,304474,3792998,304574,3792898,76,12,17.7285318559557,0.0575872034236395,15.4706752851971,0.468024691358025,19.0504423722772,0.00407407947073767,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,46.7601776123047,46.7601776123047,404.692105611165,402.921051025391,2.15862687533748
+1278,304474,3792898,304574,3792798,77,12,29.6398891966759,0.0962786057238973,14.5331509564045,0.631254061078622,22.6856469821969,-0.00270242088291648,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,36.750794728597,32.8597030639648,406.119157791138,405.297332763672,0.756730496337106
+1279,304474,3792798,304574,3792698,78,12,23.6842105263158,0.12147300722174,20.2813963580775,0.549145299145299,20.7823008831198,0.0106774325105777,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,39.5683212280273,39.5683212280273,405.675453186035,405.484222412109,0.386429628133791
+1280,304474,3792698,304574,3792598,79,12,13.8504155124654,0.134970008024155,24.1230953889763,0.703333333333333,NA,0.0158518821218949,0.0277008310249307,2.77008310249307,3,48.6078808399273,0.60442691211922,1.10803324099723,31.271497297287,0,405.535987854004,404.853637695312,0.512347831157308
+1281,304474,3792598,304574,3792498,80,12,6.09418282548476,0.0148467008826571,4.89802065588604,0.29265873015873,14.2878317921974,0.0143700077706674,0.0498614958448753,4.98614958448753,2,76.2556314648576,0.883057985098801,4.70914127423823,33.1742651197645,25.977876663208,403.071790059408,400.239990234375,2.83171794164006
+1282,304474,3792498,304574,3792398,81,12,21.3296398891967,0.0519634530892997,11.9206709734432,0.488094038792177,10.3911504415599,0.0271645864993244,0.102493074792244,10.2493074792244,2,80.7328322999127,0.74428253390002,5.54016620498615,17.730427574467,0,400.272853851318,399.908874511719,0.712089918440718
+1283,304474,3792398,304574,3792298,82,12,0,NA,NA,NA,NA,0.028770333324945,0.168421052631579,16.8421052631579,2,90.7790683658233,0.860420433996383,16.3157894736842,80.7805597782135,31.1734504699707,399.996973673503,399.884368896484,0.170287214212532
+1284,304474,3792298,304574,3792198,83,12,11.9113573407202,0.116074206900773,15.1171110095625,0.732558139534884,NA,0.0362991858323729,0.279778393351801,27.9778393351801,3,90.1882507171022,0.792881427964301,20.2216066481994,34.4813050468369,5.19557523727417,400.368148803711,399.938537597656,0.496731566635574
+1285,304474,3792198,304574,3792098,84,12,30.4709141274238,0.148467008826571,19.0181299927521,0.669326241134752,49.0149584653305,0.0386359423072541,0.362880886426593,36.2880886426593,3,94.687061503991,0.770147353101692,34.3490304709141,13.7738605309989,0,400.282909393311,399.956604003906,0.576341715028681
+1286,304474,3792098,304574,3791998,85,12,46.5373961218837,0.226749613480581,21.3888802968781,0.661324786324786,15.5867255064659,0.0168096019244175,0.0941828254847645,9.41828254847645,6,63.0826948650176,0.586009174311927,2.49307479224377,6.52888913715587,0,400.142229715983,399.872314453125,0.512085834485058
+1287,304474,3791998,304574,3791898,86,12,21.3157894736842,0.218651412999131,29.0121584162613,0.763374485596708,NA,0.0458922602012631,0.355263157894737,35.5263157894737,4,90.3514480153498,0.804546208727393,21.5789473684211,19.1383372094896,0,400.120279312134,399.865936279297,0.412375625252415
+1288,304474,3791898,304574,3791798,87,12,35.1800554016621,0.342823820381354,33.4630055865863,0.759842519685039,NA,0.0272138830759031,0.199445983379501,19.9445983379501,5,82.2257206078247,0.744271585428984,11.0803324099723,20.478350520134,0,400.161226908366,399.921142578125,0.324445828146554
+1289,304474,3791798,304574,3791698,88,12,19.9445983379501,0.0971784057773917,14.7742604259337,0.626923076923077,25.9778761038998,0.0368964971480775,0.279778393351801,27.9778393351801,6,85.1347827426402,0.731512962175946,11.9113573407202,19.2402115954031,0,400.616493225098,400.095031738281,0.552466931416609
+1290,304474,3791698,304574,3791598,89,12,3.32409972299169,0.0161964009628986,5.62618945860636,0.342592592592593,74.3893162012794,0.0356072584745007,0.321329639889197,32.1329639889197,4,86.9528995172213,0.789504373177843,15.7894736842105,25.8801220573228,0,401.17652130127,400.589416503906,0.589564326748554
+1291,304474,3791598,304574,3791498,90,12,16.5789473684211,0.0340124420220871,6.93900212955405,0.475570926657883,31.137899023663,0.0265251762143682,0.178947368421053,17.8947368421053,6,84.1976327953124,0.733893557422969,13.6842105263158,18.0715074959923,0,402.150609970093,401.473937988281,0.585808578389954
+1292,304474,3791498,304574,3791398,91,12,35.4570637119114,0.0863808051354593,16.3246208834167,0.604445300132632,14.5944590849152,0.0483153858929911,0.39612188365651,39.612188365651,4,90.6697114316162,0.747181175152322,27.1468144044321,9.04734673199954,0,402.804237365723,402.566497802734,0.263841864419859
+1293,304474,3791398,304574,3791298,92,12,35.7340720221607,0.08705565517558,15.1744787383477,0.472267025089606,14.0237553943037,0.0408042470862156,0.373961218836565,37.3961218836565,3,91.9822287427121,0.785721994388085,25.7617728531856,5.87439033013803,0,402.965148925781,402.860809326172,0.126257646364069
+1294,304474,3791298,304574,3791198,93,12,34.3490304709141,0.0836814049749762,15.9343566505573,0.563395277868962,27.3690793439226,0.0381905492888406,0.329639889196676,32.9639889196676,6,85.1008594966844,0.723752678298133,15.7894736842105,8.51346816535757,0,402.844047546387,402.780822753906,0.096868600955968
+1295,304474,3791198,304574,3791098,94,12,28.6842105263158,0.0588469234985316,11.3534692326753,0.540511089681774,24.9387609662194,0.0486197830455096,0.486842105263158,48.6842105263158,2,94.5289431890792,0.749287749287749,27.8947368421053,9.00572368776476,0,402.790842056274,402.742767333984,0.0845947498405362
+1296,304474,3791098,304574,3790998,95,12,37.6731301939058,0.061186403637617,9.46333704532314,0.385849761051374,13.269979898555,0.0390332034908988,0.301939058171745,30.1939058171745,5,86.2780650157618,0.781846748851825,15.5124653739612,7.72792292078701,0,402.977068583171,402.861175537109,0.200885229269484
+1297,304474,3790998,304574,3790898,96,12,42.6592797783933,0.103926906178599,18.7007033358728,0.677044782324955,16.8856194675349,0.0523445397977255,0.46814404432133,46.814404432133,3,92.3674095095019,0.734842414529914,24.0997229916897,4.9959665699118,0,403.293779373169,403.105407714844,0.17965021260968
+1298,304474,3790898,304574,3790798,97,12,31.5789473684211,0.102577206098358,20.2204339060438,0.675273981646531,20.7823008831198,0.0495818693899987,0.470914127423823,47.0914127423823,5,89.6621091400745,0.752421256879046,26.5927977839335,5.65334893114427,0,403.401911417643,403.351867675781,0.0916122848639545
+1299,304474,3790798,304574,3790698,98,12,24.7368421052632,0.126871807542706,22.1011058446654,0.683018711707236,15.5867256623399,0.0349641555739493,0.307894736842105,30.7894736842105,3,90.7397133692249,0.836430159982782,15.5263157894737,15.7548995262537,0,403.300815582275,403.252288818359,0.0761253148427667
+1300,304474,3790698,304574,3790598,99,12,40.4432132963989,0.0985281058576332,9.24346485674741,0.387962962962963,22.3553943671705,0.0473402642257912,0.345029239766082,34.5029239766082,2,92.3580732024103,0.907251335113485,27.4853801169591,1.54957966885324,0,403.31427192688,403.253540039062,0.079489540658821
+1301,304574,3800598,304674,3800498,0,13,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.551188151042,383.863098144531,0.624617428718584
+1302,304574,3800498,304674,3800398,1,13,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.307105170356,385.204437255859,0.185461839708297
+1303,304574,3800398,304674,3800298,2,13,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.230171203613,385.027038574219,0.223459499299104
+1304,304574,3800298,304674,3800198,3,13,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.750244140625,384.554168701172,0.323769680904955
+1305,304574,3800198,304674,3800098,4,13,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.303825378418,384.115142822266,0.222895039550726
+1306,304574,3800098,304674,3799998,5,13,3.5,0.0377916022467501,8.24183360128965,0.607142857142857,NA,-0.00150704408329148,0,0,0,NA,NA,0,NA,NA,384.040293375651,383.935607910156,0.148861109708486
+1307,304574,3799998,304674,3799898,6,13,15.2631578947368,0.156565209307965,17.3357473108772,0.764367816091954,NA,0.0147038389425832,0.223684210526316,22.3684210526316,2,90.599503143092,0.854978112021551,18.4210526315789,28.5136132745182,10.3911504745483,383.89360555013,383.799072265625,0.141756392282003
+1308,304574,3799898,304674,3799798,7,13,0,NA,NA,NA,NA,0.0497798753216078,0.476315789473684,47.6315789473684,6,90.241238917349,0.652291307282682,27.6315789473684,42.7166299240365,5.19557523727417,383.891645643446,383.809509277344,0.14268496151945
+1309,304574,3799798,304674,3799698,8,13,7.10526315789474,0.072883804333018,18.8572512445401,0.561728395061728,NA,0.0586802194630237,0.818421052631579,81.8421052631579,1,99.430180885378,0.642874808329624,81.8421052631579,40.4115602088511,0,384.118916829427,383.909210205078,0.278070186084009
+1310,304574,3799698,304674,3799598,9,13,62.75,0.677549440281019,33.6520197515173,0.889774236387782,NA,0.0468185676384019,0.445,44.5,2,94.1755654526542,0.797365754812563,30,5.28367203005244,0,384.723320855035,384.373382568359,0.49790393251148
+1311,304574,3799598,304674,3799498,10,13,52.3684210526316,0.537180631935947,40.730430579591,0.828308207705193,NA,0.0411093587254359,0.357894736842105,35.7894736842105,5,90.3817843105111,0.78020888418826,21.8421052631579,4.63406061424929,0,385.363535563151,384.970428466797,0.374772330509662
+1312,304574,3799498,304674,3799398,11,13,77.6315789473684,0.796323047342233,36.2065653989683,0.896610169491525,NA,0.00773456898812009,0.0473684210526316,4.73684210526316,4,62.4492274141944,0.688970738694496,2.89473684210526,0,0,385.607274373372,385.490295410156,0.155306031077475
+1313,304574,3799398,304674,3799298,12,13,14.7368421052632,0.151166408987,25.0590857691975,0.729166666666667,NA,0.000764953178795143,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,55.980396270752,51.170482635498,385.771270751953,385.655944824219,0.153433024618858
+1314,304574,3799298,304674,3799198,13,13,17.75,0.0958287056971162,19.909768019485,0.674523007856341,67.5424778701156,0.057374629334081,0.4675,46.75,2,96.4109658711984,0.831745773290998,43.5,25.5553536287604,0,385.9959081014,385.886291503906,0.147828891156453
+1315,304574,3799198,304674,3799098,14,13,69.2105263157895,0.709942242206805,37.8527946573678,0.85171102661597,NA,0.0227526970173226,0.0578947368421053,5.78947368421053,3,72.859711409249,0.687808084127506,4.47368421052632,2.4189277345484,0,386.341244167752,386.186309814453,0.340779056381578
+1316,304574,3799098,304674,3798998,15,13,68.9473684210526,0.353621421023161,28.9250633984313,0.835773260640327,15.5867255064659,0.0352409601538535,0.173684210526316,17.3684210526316,5,86.0106201371233,0.736914981999446,13.6842105263158,1.29214062835231,0,387.340888977051,386.739105224609,0.683582849426032
+1317,304574,3798998,304674,3798898,16,13,57.6315789473684,0.295584317572795,24.8936957995243,0.819763029178614,10.3911504415562,0.00964850374155886,0.0394736842105263,3.94736842105263,3,59.8111021773408,0.716064757160648,1.84210526315789,3.89413235982259,0,388.383124457465,388.050720214844,0.69576815774974
+1318,304574,3798898,304674,3798798,17,13,94.75,1.02307266082273,38.8543876286978,0.928759894459103,NA,0.0647016099256143,0.6675,66.75,2,98.2515366772265,0.915957558567077,66,0.019459083285671,0,390.43012491862,389.157501220703,1.62516690174578
+1319,304574,3798798,304674,3798698,18,13,98.4210526315789,1.00957566002032,38.3772704538532,0.92825311942959,NA,0.0407885493447386,0.252631578947368,25.2631578947368,7,81.2910488922788,0.665492957746479,12.3684210526316,0.0541205753882726,0,392.071044921875,391.603729248047,0.857098553851442
+1320,304574,3798698,304674,3798598,19,13,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0422942163287907,0.334210526315789,33.421052631579,4,90.576502555991,0.772427835668943,18.1578947368421,0,0,392.108116149902,391.876098632812,0.509661251472389
+1321,304574,3798598,304674,3798498,20,13,99.7368421052632,1.02307266082273,38.6539218940444,0.932717678100264,NA,0.046516332976324,0.360526315789474,36.0526315789474,3,91.5921185615275,0.774814814814815,18.9473684210526,0.0379239068414173,0,392.007619222005,391.750671386719,0.444296256887601
+1322,304574,3798498,304674,3798398,21,13,15.5,0.167362809949893,26.4328656539936,0.733870967741935,NA,0.196643394567072,0.985,98.5,1,99.9600766120013,0.465240641711228,98.5,32.8356263928002,0,391.749618530273,391.460479736328,0.372803659107613
+1323,304574,3798398,304674,3798298,22,13,0,NA,NA,NA,NA,0.0667947177611304,0.626315789473684,62.6315789473684,1,98.5747402420146,0.981959170754866,62.6315789473684,93.076967255408,67.54248046875,391.35349867079,391.233612060547,0.220964328125478
+1324,304574,3798298,304674,3798198,23,13,47.1052631578947,0.483192628726304,31.1175548417341,0.881750465549348,NA,0.0284741418847453,0.171052631578947,17.1052631578947,3,90.0644817797082,0.829189492906307,16.3157894736842,1.19897890824538,0,391.19829305013,391.169097900391,0.0784689416042505
+1325,304574,3798198,304674,3798098,24,13,77.8947368421053,0.799022447502716,36.3940516735096,0.913851351351351,NA,0.0168999819066621,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,391.390062120226,391.276031494141,0.207973350945845
+1326,304574,3798098,304674,3797998,25,13,45,0.242946014443393,20.4008030768763,0.721707818930041,14.6953058096309,0.0264559848151521,0.24,24,3,91.251692597751,0.885250917992656,22.25,2.39177683989207,0,391.857355753581,391.555511474609,0.346620573215886
+1327,304574,3797998,304674,3797898,26,13,95.5263157894737,0.97988225825502,38.232883139563,0.917355371900826,NA,0.0427587819775861,0.260526315789474,26.0526315789474,3,91.1695402598147,0.802471110400256,22.1052631578947,0.314883347713586,0,392.669731140137,392.22705078125,0.478607685808174
+1328,304574,3797898,304674,3797798,27,13,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0420027355859546,0.218421052631579,21.8421052631579,3,87.9117764928433,0.782404544309306,15.2631578947368,0,0,392.730261908637,392.558471679688,0.368591414423887
+1329,304574,3797798,304674,3797698,28,13,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0265318677404522,0.118421052631579,11.8421052631579,4,78.4392285869099,0.761194029850746,7.36842105263158,0,0,392.304189046224,392.065734863281,0.268625874916202
+1330,304574,3797698,304674,3797598,29,13,96,1.03656966162514,39.4479337292717,0.909722222222222,NA,-0.030283924015821,0.0025,0.25,1,0,NA,0.25,0,0,392.046698676215,391.991943359375,0.101629585180847
+1331,304574,3797598,304674,3797498,30,13,46.5789473684211,0.119448457101335,14.4811225791241,0.47354797979798,27.2767697402276,0.0467439543199649,0.423684210526316,42.3684210526316,4,90.9683965638924,0.830001234110823,29.7368421052632,3.44264293753583,0,392.318305969238,392.042388916016,0.292408122642653
+1332,304574,3797498,304674,3797398,31,13,97.6315789473684,1.00147745953888,38.6504754774691,0.920035938903863,NA,0.0363692268407919,0.318421052631579,31.8421052631579,3,92.8751532900581,0.913302913302913,29.7368421052632,0.0858772766491598,0,392.889916314019,392.659576416016,0.385162814472214
+1333,304574,3797398,304674,3797298,32,13,100,1.02577206098322,38.731321195904,0.932456140350877,NA,-0.0738757100274884,0,0,0,NA,NA,0,NA,NA,393.31894938151,393.176666259766,0.164753731573855
+1334,304574,3797298,304674,3797198,33,13,90.75,0.97988225825502,39.0790361728407,0.919191919191919,NA,-0.0847045109805185,0,0,0,NA,NA,0,NA,NA,393.473815917969,393.421875,0.0824814175334531
+1335,304574,3797198,304674,3797098,34,13,97.8947368421053,1.00417685969936,38.3158266211548,0.930555555555555,NA,-0.0237837747444007,0.118421052631579,11.8421052631579,1,89.6940898761467,0.985074626865672,11.8421052631579,0.115457227494982,0,393.423489888509,393.308776855469,0.131611804384561
+1336,304574,3797098,304674,3796998,35,13,29.4736842105263,0.100777605991334,11.6358415567419,0.656035665294925,19.0504423895928,-0.141997081801099,0,0,0,NA,NA,0,NA,NA,393.373816596137,393.269805908203,0.165564583507738
+1337,304574,3796998,304674,3796898,36,13,62.1052631578947,0.637058437873787,31.5278568958109,0.909604519774011,NA,-0.148504378097622,0,0,0,NA,NA,0,NA,NA,393.293230692546,393.117004394531,0.207355804482515
+1338,304574,3796898,304674,3796798,37,13,88.25,0.952888256650198,37.6903084351223,0.926817752596789,NA,-0.160628603585064,0,0,0,NA,NA,0,NA,NA,393.133548312717,392.976440429688,0.206842510389642
+1339,304574,3796798,304674,3796698,38,13,99.7368421052632,1.02307266082273,38.6920006042015,0.931398416886544,NA,-0.161494353021446,0,0,0,NA,NA,0,NA,NA,392.902959187826,392.781066894531,0.154078403178365
+1340,304574,3796698,304674,3796598,39,13,90,0.923194854884894,37.7896696078543,0.900584795321637,NA,-0.0106990903232815,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,0,0,392.725641886393,392.670593261719,0.0927026347087164
+1341,304574,3796598,304674,3796498,40,13,23.4210526315789,0.120123307141456,12.8849891777765,0.382575757575758,27.979028590554,0.0111317459892521,0.144736842105263,14.4736842105263,3,88.4535214899024,0.815384615384615,13.6842105263158,15.7133009130305,0,392.847564697266,392.696502685547,0.271823960854688
+1342,304574,3796498,304674,3796398,41,13,7.89473684210526,0.0269940016048215,5.38555676549264,0.435185185185185,13.8548671861334,0.0189137629892924,0.0921052631578947,9.21052631578947,2,80.0974139150922,0.810094952523738,6.57894736842105,9.14517216001238,0,393.391283671061,392.990325927734,0.468367853039716
+1343,304574,3796398,304674,3796298,42,13,30,0.323928019257858,30.2923324883734,0.825,NA,0.0274834203273349,0.2025,20.25,4,88.8771560126921,0.730059212817833,15.75,15.9912919762694,0,393.887356228299,393.67724609375,0.277694220813451
+1344,304574,3796298,304674,3796198,43,13,12.1052631578947,0.0413908024607263,9.59602781554369,0.602733686067019,27.7097342337171,0.0313945448918323,0.210526315789474,21.0526315789474,4,83.235363459741,0.74131455399061,9.21052631578947,19.775087672472,0,393.855443318685,393.781768798828,0.102738257350509
+1345,304574,3796198,304674,3796098,44,13,27.1052631578947,0.278038216529661,30.3095983711704,0.784789644012945,NA,0.032677417635444,0.147368421052632,14.7368421052632,6,75.4636516457664,0.661448389970727,5.78947368421053,22.7698746323586,0,393.891404893663,393.772430419922,0.184036301568734
+1346,304574,3796098,304674,3795998,45,13,0,NA,NA,NA,NA,0.0375078792549749,0.313157894736842,31.3157894736842,5,84.4103470747661,0.696679438058748,8.15789473684211,51.9212269662809,25.977876663208,394.212567647298,393.928253173828,0.382531570484388
+1347,304574,3795998,304674,3795898,46,13,3.75,0.0404910024072322,10.3271703709952,0.588888888888889,NA,0.0388368080994405,0.275,27.5,6,88.5867756882397,0.688095650667129,21.25,26.227685065703,0,394.61675008138,394.346588134766,0.499116839251983
+1348,304574,3795898,304674,3795798,47,13,18.9473684210526,0.0971784057773573,18.7923918236817,0.629464285714286,15.5867255064659,0.0225335593376689,0.0605263157894737,6.05263157894737,4,69.0280599277946,0.615624027388733,3.68421052631579,24.9694200598675,10.3911504745483,394.819366455078,394.451904296875,0.623497530767139
+1349,304574,3795798,304674,3795698,48,13,0,NA,NA,NA,NA,0.0316960390995519,0.223684210526316,22.3684210526316,2,89.3103708736574,0.872039510607251,15.2631578947368,56.8747982025146,25.977876663208,394.777245415582,394.478424072266,0.531083064412813
+1350,304574,3795698,304674,3795598,49,13,49.4736842105263,0.253743615085322,23.9685885630738,0.792101013067097,14.6953058096309,0.00865839189582402,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,5.91293446222941,5.19557523727417,394.960823059082,394.636840820312,0.439765547356281
+1351,304574,3795598,304674,3795498,50,13,9.75,0.0526383031294019,10.2946522813497,0.608333333333333,92.0658266277408,0.0129602051717029,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,16.253776550293,10.3911504745483,395.389068603516,395.154968261719,0.333591125481749
+1352,304574,3795498,304674,3795398,51,13,27.8947368421053,0.286136417011108,28.5556766482114,0.773584905660377,NA,0.0127379235596316,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,15.5746519565582,14.6953058242798,395.632784525553,395.400054931641,0.270127551535643
+1353,304574,3795398,304674,3795298,52,13,66.5789473684211,0.227649413533994,14.7276369705555,0.6219484477504,13.989410433406,0.00357357696416569,0.0210526315789474,2.10526315789474,3,42.6827771112369,0.489247311827957,1.05263157894737,6.26734548807144,0,395.98146226671,395.760955810547,0.371768120173663
+1354,304574,3795298,304674,3795198,53,13,18.4210526315789,0.0377916022467501,7.74075778983755,0.42387757026976,23.3257021333777,0.0213678780855844,0.0868421052631579,8.68421052631579,7,61.7514463952323,0.553847795922724,3.15789473684211,14.137675372037,0,396.828824361165,396.284637451172,0.551734336147192
+1355,304574,3795198,304674,3795098,54,13,1.25,0.0134970008024107,5.38293056567618,0.333333333333333,NA,0.0231271364657732,0.15,15,3,87.4668306595215,0.773755656108597,12.75,37.9182799577713,0,397.394627888997,397.249084472656,0.254270113062347
+1356,304574,3795098,304674,3794998,55,13,5.78947368421053,0.0593868035306072,9.70814549112361,0.712121212121212,NA,0.0122405018372773,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,11.798388004303,7.34765291213989,397.174672444661,397.012359619141,0.232646528248854
+1357,304574,3794998,304674,3794898,56,13,32.1052631578947,0.109775606526274,12.6711952319272,0.392753623188406,10.3911503722814,0.0189090458456696,0.0894736842105263,8.94736842105263,4,77.0891369286281,0.705821635012386,6.31578947368421,10.7156586647034,0,397.070658365885,396.982482910156,0.137852028560865
+1358,304574,3794898,304674,3794798,57,13,45.2631578947368,0.464296827602929,35.5266287738716,0.830426356589147,NA,0.0159374970076418,0.0631578947368421,6.31578947368421,4,70.6279097594616,0.831460674157303,5.26315789473684,15.1650869250298,5.19557523727417,397.082631429036,397.040222167969,0.0511037985603427
+1359,304574,3794798,304674,3794698,58,13,25.5,0.275338816369179,25.7105413472766,0.808823529411765,NA,0.000913563484809856,0.0025,0.25,1,0,NA,0.25,56.1987419128418,56.1987419128418,397.204762776693,397.092132568359,0.174115169581227
+1360,304574,3794698,304674,3794598,59,13,28.4210526315789,0.072883804333018,12.5410457491006,0.591125335862178,11.0044048277143,0.00931879972624397,0.0789473684210526,7.89473684210526,5,70.9009848895605,0.53469387755102,3.94736842105263,10.9868001461029,0,397.681847466363,397.320465087891,0.880839553490999
+1361,304574,3794598,304674,3794498,60,13,33.9473684210526,0.174111310351099,24.5044712598517,0.720147679324895,51.9557522077812,0.00639308827358993,0.0236842105263158,2.36842105263158,4,39.9312986090565,0.40251572327044,1.05263157894737,9.2365779876709,0,400.057060241699,398.821319580078,1.21122019134037
+1362,304574,3794498,304674,3794398,61,13,14.7368421052632,0.0503888029956667,15.7905223432441,0.460580065359477,26.8183146581132,0.00395254598219086,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,8.65929206212362,5.19557523727417,400.263037787543,399.619232177734,0.894043581184351
+1363,304574,3794398,304674,3794298,62,13,30.25,0.16331370970917,20.3899485166369,0.710394802598701,15.5867255064659,0.0106509199984487,0.0175,1.75,1,65.4774238937655,0.745547073791349,1.75,5.19557523727417,0,398.645327250163,397.954284667969,0.787195117854532
+1364,304574,3794298,304674,3794198,63,13,52.8947368421053,0.135644858064228,12.7266121315654,0.510057471264368,11.9008256382013,0.0130748325178789,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,10.194324016571,7.34765291213989,397.83299085829,397.764678955078,0.154492764914424
+1365,304574,3794198,304674,3794098,64,13,34.4736842105263,0.0884053552557903,15.2415660615509,0.664153343023256,16.3732724069593,0.0159132716017235,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,12.9065885543823,10.3911504745483,398.132906595866,397.848022460938,0.324016358234206
+1366,304574,3794098,304674,3793998,65,13,32.1052631578947,0.109775606526274,10.9913771028325,0.472383252818035,10.3911503722814,0.0195968181393446,0.0526315789473684,5.26315789473684,2,72.3226977310897,0.761648745519713,3.15789473684211,13.1630016326904,5.19557523727417,398.373884412977,398.109497070312,0.392066325229604
+1367,304574,3793998,304674,3793898,66,13,28,0.151166408987,19.8138848557379,0.617761776177618,11.6176593526378,0.0101683693080213,0.0025,0.25,1,0,NA,0.25,5.19557523727417,5.19557523727417,398.240234375,398.081390380859,0.243846753990183
+1368,304574,3793898,304674,3793798,67,13,15,0.153865809147482,27.5621362844083,0.722222222222222,NA,0.0174098739577044,0.0789473684210526,7.89473684210526,2,83.0273833676639,0.800583090379009,7.36842105263158,31.7363193511963,10.3911504745483,398.033060709635,397.963531494141,0.116999328390171
+1369,304574,3793798,304674,3793698,68,13,20.7894736842105,0.0710842042260299,8.93416477966511,0.510826210826211,29.4415927341643,0.0248264644206325,0.0842105263157895,8.42105263157895,3,76.9038028289694,0.811007957559682,6.57894736842105,29.6967504918575,5.19557523727417,398.021072387695,397.953277587891,0.114772524352091
+1370,304574,3793698,304674,3793598,69,13,21.0526315789474,0.035992002139762,9.4749014352404,0.525047982155825,19.0504423636148,0.0289110254863628,0.144736842105263,14.4736842105263,6,79.5318163675413,0.766153846153846,11.3157894736842,17.3558650363575,5.19557523727417,398.515007019043,398.146118164062,0.682233731643724
+1371,304574,3793598,304674,3793498,70,13,15,0.0404910024072322,10.5320161868555,0.440285441426146,19.4834068830824,0.0144572819900486,0.0575,5.75,3,71.4487744926719,0.73474801061008,4,8.33391098354174,0,399.996365017361,399.651000976562,0.557331965180054
+1372,304574,3793498,304674,3793398,71,13,33.4210526315789,0.114274606793744,12.9685107533795,0.550375870920425,12.940681409399,-0.00232267752721662,0.0815789473684211,8.1578947368421,2,78.885671576978,0.84756446991404,4.73684210526316,17.6230950509348,5.19557523727417,400.188700358073,400.114990234375,0.0931356520406864
+1373,304574,3793398,304674,3793298,72,13,25.2631578947368,0.129571207703143,16.6076399602306,0.761826697892272,25.9778759376309,0.0340307148456831,0.273684210526316,27.3684210526316,6,84.7700864884485,0.793846392311865,14.2105263157895,11.961149096489,0,400.109822591146,400.074249267578,0.0717082715559083
+1374,304574,3793298,304674,3793198,73,13,8.68421052631579,0.0296934017653036,5.55300284128668,0.385327635327635,23.9532501020743,0.0286999539690441,0.181578947368421,18.1578947368421,4,82.5200866453047,0.828333023305254,8.15789473684211,20.6010716134223,0,400.180112202962,400.086212158203,0.135977944025073
+1375,304574,3793198,304674,3793098,74,13,15.25,0.164663409789411,28.1933898344164,0.721311475409836,NA,0.0531306509100978,0.255,25.5,4,88.3659033780281,0.88264202149118,19.75,32.2865719654981,0,400.620880126953,400.387878417969,0.488902531024859
+1376,304574,3793098,304674,3792998,75,13,2.10526315789474,0.0215952012838572,5.94437605233417,0.541666666666667,NA,0.00796132794101523,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,6.234690284729,5.19557523727417,402.301760355632,401.102905273438,1.68149633841607
+1377,304574,3792998,304674,3792898,76,13,0.263157894736842,0.00269940016048215,0,0,NA,0.0176422441040981,0.0342105263157895,3.42105263157895,3,56.4085533093324,0.654859218891916,1.84210526315789,32.8330986316387,11.6176595687866,405.879035101997,404.691741943359,1.81201364043872
+1378,304574,3792898,304674,3792798,77,13,6.57894736842105,0.0337425020060268,9.06995622890487,0.402777777777778,41.5646013505757,-0.00327596517653499,0.0868421052631579,8.68421052631579,2,82.1945815810208,0.918881417440495,7.89473684210526,19.4739635785421,7.34765291213989,407.158030192057,406.950134277344,0.517837948453451
+1379,304574,3792798,304674,3792698,78,13,40.75,0.44000222615859,34.5918114968994,0.822085889570552,NA,0.0380698354679771,0.205,20.5,3,87.8380043715431,0.904576013879852,17.5,3.13909075899822,0,407.171101888021,405.954467773438,1.08129493242763
+1380,304574,3792698,304674,3792598,79,13,12.6315789473684,0.0647856038515715,13.1088328664924,0.647101449275362,20.7823006752878,0.0274212124710462,0.184210526315789,18.4210526315789,7,78.1632953454259,0.691056910569106,10.7894736842105,23.5421199662345,0,405.989786783854,404.894836425781,1.40341170617326
+1381,304574,3792598,304674,3792498,80,13,0,NA,NA,NA,NA,0.036586635981956,0.255263157894737,25.5263157894737,6,84.9678393197006,0.753056334023801,16.5789473684211,61.6717533819454,25.977876663208,402.428344726562,400.307342529297,2.78362134721112
+1382,304574,3792498,304674,3792398,81,13,0,NA,NA,NA,NA,0.0262330446244098,0.115789473684211,11.5789473684211,3,86.0195013273545,0.893018018018018,11.0526315789474,62.0159430937334,41.5646018981934,400.030250549316,399.879943847656,0.370822013476115
+1383,304574,3792398,304674,3792298,82,13,0,NA,NA,NA,NA,0.0293225594645082,0.1775,17.75,2,88.7019283204085,0.883282674772036,13.75,116.775374291648,91.9191131591797,399.834777832031,399.813690185547,0.0553755798154937
+1384,304574,3792298,304674,3792198,83,13,1.57894736842105,0.0161964009628929,7.79336283116718,0.277777777777778,NA,0.0156166485318337,0.105263157894737,10.5263157894737,3,77.8617024890699,0.716417910447761,6.57894736842105,39.4367147564888,0,399.854563395182,399.812866210938,0.0813014497639455
+1385,304574,3792198,304674,3792098,84,13,38.1578947368421,0.0978532558174778,12.9071575964062,0.508040439821793,11.0044048451409,0.0419596399015159,0.342105263157895,34.2105263157895,3,92.2844806805892,0.73704641350211,20.5263157894737,9.60233978124765,0,399.827921549479,399.791076660156,0.0812443435504825
+1386,304574,3792098,304674,3791998,85,13,69.2105263157895,0.354971121103402,28.3521694585057,0.828621391711014,10.3911503376439,0.0379091886430136,0.297368421052632,29.7368421052632,6,87.0291465144087,0.797679371374018,17.1052631578947,2.87326004230871,0,399.789099799262,399.769073486328,0.0657966626937547
+1387,304574,3791998,304674,3791898,86,13,44,0.475094428244858,32.0838617787498,0.825757575757576,NA,0.0550409796169515,0.4975,49.75,2,95.7019037721288,0.843600426054012,40.5,7.24214351596545,0,399.798487345378,399.768280029297,0.0653041227826514
+1388,304574,3791898,304674,3791798,87,13,40.2631578947368,0.413008224553769,36.0828873146335,0.779956427015251,NA,0.0518750689198465,0.439473684210526,43.9473684210526,2,94.1933677917777,0.768306810560332,25.5263157894737,12.6757793569279,0,399.910885281033,399.844848632812,0.124864952216417
+1389,304574,3791798,304674,3791698,88,13,57.6315789473684,0.59116863514559,36.3021467450422,0.850076103500761,NA,0.0526267978166671,0.481578947368421,48.1578947368421,2,94.6688314790729,0.788844501847235,30.5263157894737,4.66256371482474,0,400.108225504557,400.007385253906,0.228281398403192
+1390,304574,3791698,304674,3791598,89,13,17.8947368421053,0.0611864036375953,9.36975672721349,0.457407407407407,45.9985396801711,0.0912219715439469,0.697368421052632,69.7368421052632,1,98.9321616400442,0.76065086169189,69.7368421052632,15.0192203557716,0,400.554578993056,400.289489746094,0.434741061654178
+1391,304574,3791598,304674,3791498,90,13,23.5,0.0634359037713305,8.99134828454974,0.296216475095785,35.0701325713948,0.0563559391576382,0.5825,58.25,2,98.0247363981564,0.823800674513043,57.75,17.2233411887173,0,401.593983968099,400.770050048828,0.975535375894912
+1392,304574,3791498,304674,3791398,91,13,65.2631578947368,0.334725619899786,27.7430108676506,0.844230899600027,20.7823006752878,0.0872786060373887,0.786842105263158,78.6842105263158,1,99.3114189797412,0.758349231410214,78.6842105263158,2.69129559507338,0,402.968492296007,402.679565429688,0.428419493045874
+1393,304574,3791398,304674,3791298,92,13,43.421052631579,0.111350256619889,13.6173657517527,0.534201861130995,15.5867256103782,0.0713866803483573,0.710526315789474,71.0526315789474,3,98.2390813750477,0.71382463690156,69.4736842105263,5.0022118586081,0,403.087895711263,402.929718017578,0.180491743270456
+1394,304574,3791298,304674,3791198,93,13,60.7894736842105,0.623561437071376,38.3572344058195,0.844155844155844,NA,0.0874951390705782,0.807894736842105,80.7894736842105,1,99.391368149945,0.810873583921885,80.7894736842105,2.68689382814041,0,402.866628011068,402.781372070312,0.139423120722034
+1395,304574,3791198,304674,3791098,94,13,64.5,0.696445241404394,41.4217214115181,0.794573643410853,NA,0.063235322846449,0.63,63,2,98.1931853641165,0.725148877691251,62,2.10723110796913,0,402.853558858236,402.7646484375,0.169892503903116
+1396,304574,3791098,304674,3790998,95,13,30.7894736842105,0.0789574546941028,15.2556056143549,0.463401605169898,24.7792088096845,0.0623698094933245,0.6,60,6,91.49108457981,0.694117647058824,21.0526315789474,8.50866843733871,0,403.179918077257,402.954315185547,0.296754286840707
+1397,304574,3790998,304674,3790898,96,13,64.2105263157895,0.658653639157644,38.9918903376313,0.814207650273224,NA,0.0762711445932693,0.763157894736842,76.3157894736842,2,98.7678736718604,0.71335372069317,75.2631578947368,2.24384143434722,0,403.484931945801,403.275451660156,0.189166282183894
+1398,304574,3790898,304674,3790798,97,13,75.2631578947368,0.772028445897894,39.5548385269262,0.837995337995338,NA,0.0665908350607137,0.707894736842105,70.7894736842105,2,98.7305754386172,0.674605298367675,70.2631578947368,1.47864041452514,0,403.464596218533,403.369506835938,0.141211760794148
+1399,304574,3790798,304674,3790698,98,13,6.25,0.0674850040120537,14.4110389802546,0.626666666666667,NA,0.0381910402028188,0.3075,30.75,5,86.8530109517257,0.689174531738194,16.25,32.1823411259225,0,403.325978597005,403.273498535156,0.0795625649503631
+1400,304574,3790698,304674,3790598,99,13,37.6315789473684,0.0965035557372368,10.6881030447057,0.467356491746736,14.2878317921946,0.0741406270945542,0.605555555555556,60.5555555555556,3,95.6423432451397,0.856379657253868,55.2777777777778,5.22846152148116,0,403.448020935059,403.291381835938,0.170837254922187
+1401,304674,3800598,304774,3800498,0,14,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.549777984619,383.824951171875,0.660197591951439
+1402,304674,3800498,304774,3800398,1,14,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.283983866374,385.077026367188,0.221967377638854
+1403,304674,3800398,304774,3800298,2,14,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.217926025391,384.925598144531,0.255621627351727
+1404,304674,3800298,304774,3800198,3,14,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.717859903971,384.470153808594,0.337294463424778
+1405,304674,3800198,304774,3800098,4,14,2.77008310249307,0.026994001604831,7.39964429433391,0.533333333333333,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.310026168823,384.152313232422,0.185585284642946
+1406,304674,3800098,304774,3799998,5,14,26.0526315789474,0.0890802052959424,13.6116637873848,0.424603174603175,10.3911504415599,0.0144908622885276,0.164473684210526,16.4473684210526,2,83.7631325800645,0.880314960629921,15.7894736842105,1.03911504745483,0,384.128870646159,384.051940917969,0.0997785200333584
+1407,304674,3799998,304774,3799898,6,14,50.9695290858726,0.165563209842964,16.8179214674924,0.6743594348659,10.3911504415599,0.0290668936764919,0.18005540166205,18.005540166205,7,79.6459394379702,0.697799569480985,10.2493074792244,6.15197756107037,0,384.026304244995,383.986297607422,0.0793255651910946
+1408,304674,3799898,304774,3799798,7,14,25.207756232687,0.245645414603962,25.9581593369049,0.706959706959707,NA,0.0408895232349423,0.25207756232687,25.207756232687,7,81.9465340717335,0.645107453132145,10.803324099723,31.2376825416481,0,384.025349934896,383.982177734375,0.0805825887948115
+1409,304674,3799798,304774,3799698,8,14,23.8227146814404,0.0773828046005156,16.0825446503061,0.470833333333333,10.3911503722826,0.0398367593433983,0.296398891966759,29.6398891966759,4,91.8758013981508,0.80117090285994,26.5927977839335,42.4842212846346,0,384.233539581299,384.082092285156,0.207472954852411
+1410,304674,3799698,304774,3799598,9,14,22.3684210526316,0.0764830045470212,10.3913306235225,0.481481481481482,10.7999867220173,0.0293667977135077,0.0947368421052632,9.47368421052632,7,62.6882655868767,0.484496124031008,2.63157894736842,28.8433559735616,0,384.71097056071,384.483703613281,0.386374343626985
+1411,304674,3799598,304774,3799498,10,14,27.4238227146814,0.133620307943914,18.2752119619711,0.597872340425532,20.7823006752878,0.0357581985104375,0.238227146814404,23.8227146814404,2,92.8864907259316,0.828401663695781,22.7146814404432,27.1780501909034,5.19557523727417,385.351188659668,385.026336669922,0.320856788201765
+1412,304674,3799498,304774,3799398,11,14,71.7451523545706,0.699144641565123,33.1145623159325,0.8996138996139,NA,-0.0309778510628069,0.0692520775623269,6.92520775623269,2,76.8644389047778,0.811979166666667,4.98614958448753,9.58803140640259,0,385.759449005127,385.636871337891,0.141976711845377
+1413,304674,3799398,304774,3799298,12,14,0,NA,NA,NA,NA,0.00654590815880369,0.0470914127423823,4.70914127423823,6,52.4295539412683,0.412325581395349,2.21606648199446,33.5665610818302,15.5867252349854,385.914171854655,385.798980712891,0.116948585125708
+1414,304674,3799298,304774,3799198,13,14,3.42105263157895,0.0350922020862803,7.23606392467839,0.628205128205128,NA,0.010956389629619,0.0657894736842105,6.57894736842105,4,67.5936057940987,0.652112676056338,3.68421052631579,30.7233736038208,10.3911504745483,386.089962005615,385.963562011719,0.119734767610187
+1415,304674,3799198,304774,3799098,14,14,11.6343490304709,0.0377916022467634,8.54882715143082,0.467491948470209,51.9557517505692,0.024662662591438,0.0969529085872576,9.69529085872576,2,82.861517307731,0.847260418870319,8.03324099722992,7.79235860279628,0,386.330624898275,386.231262207031,0.237945891122686
+1416,304674,3799098,304774,3798998,15,14,59.0027700831025,0.28748611709145,17.7757984452258,0.540079365079365,32.8597028719326,0.0333936535130923,0.0914127423822715,9.14127423822715,6,64.6636428577588,0.612748419150858,3.32409972299169,1.96466877966216,0,386.952905654907,386.604034423828,0.466062240949022
+1417,304674,3798998,304774,3798898,16,14,8.31024930747922,0.0202455012036233,6.25803031047383,0.363815789473684,24.6789821792014,0.00362200353771398,0.0277008310249307,2.77008310249307,1,72.175958031556,1,2.77008310249307,9.35203528404236,0,387.728612263997,387.273254394531,0.68472406327506
+1418,304674,3798898,304774,3798798,17,14,86.8421052631579,0.890802052959424,36.0051656953927,0.925252525252525,NA,0.0274168209612406,0.144736842105263,14.4736842105263,6,77.1505285796093,0.753846153846154,9.47368421052632,0.0944650043140758,0,389.022531509399,387.955047607422,1.10566878618878
+1419,304674,3798798,304774,3798698,18,14,84.7645429362881,0.826016449107829,35.9313395183387,0.912854030501089,NA,0.0358868417763177,0.210526315789474,21.0526315789474,5,83.6505717686288,0.735323383084577,11.6343490304709,2.73556194807354,0,390.388613382975,389.603149414062,1.07738715833529
+1420,304674,3798698,304774,3798598,19,14,67.0360110803324,0.326627419418455,17.8530526433617,0.53125,10.3911504415599,0.0232545428271173,0.0858725761772853,8.58725761772853,3,74.5556416665035,0.759333333333333,4.15512465373961,0.502797603607178,0,391.155609130859,390.402313232422,0.739671710385837
+1421,304674,3798598,304774,3798498,20,14,59.2797783933518,0.288835817171692,18.2085517139481,0.552579365079365,32.8597028719326,0.030619204701879,0.202216066481994,20.2216066481994,4,85.3014402853968,0.716010199652778,11.9113573407202,5.13825732061308,0,391.351491292318,391.052185058594,0.433545900507846
+1422,304674,3798498,304774,3798398,21,14,2.89473684210526,0.00989780058843804,3.05464110087417,0.215277777777778,64.0787607618575,0.0170119350894789,0.0894736842105263,8.94736842105263,2,81.3813266701094,0.803881090008258,7.36842105263158,40.5360855214736,10.3911504745483,391.270948410034,391.072723388672,0.289796065179624
+1423,304674,3798398,304774,3798298,22,14,16.6204986149584,0.161964009628986,16.7961945538376,0.813888888888889,NA,0.0397651938015226,0.401662049861496,40.1662049861496,4,91.6475893500827,0.810796645702306,32.1329639889197,36.7930710726771,0,391.15044148763,391.049560546875,0.138018460975261
+1424,304674,3798298,304774,3798198,23,14,57.617728531856,0.561475233380485,30.4554311911567,0.903846153846154,NA,0.096525849252707,0.67590027700831,67.590027700831,2,98.4991341335948,0.736111111111111,67.0360110803324,9.98457276821136,0,391.241592407227,391.106872558594,0.160834930713551
+1425,304674,3798198,304774,3798098,24,14,97.5069252077562,0.950188856490052,37.182694957969,0.929924242424242,NA,0.085142447477738,0.745152354570637,74.5152354570637,1,99.1197197465866,0.883448127421438,74.5152354570637,0,0,391.621393839518,391.415191650391,0.298418261877477
+1426,304674,3798098,304774,3797998,25,14,96.8421052631579,0.993379259057781,38.2112544700113,0.928894927536232,NA,0.0838699648793983,0.894736842105263,89.4736842105263,1,99.6907669965973,0.793157076205288,89.4736842105263,0.104345902274637,0,392.040699005127,391.761260986328,0.211518713161396
+1427,304674,3797998,304774,3797898,26,14,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0666012285829333,0.817174515235457,81.7174515235457,2,97.8320628556849,0.733906633906634,74.5152354570637,0,0,392.157590866089,391.705108642578,0.382157682389569
+1428,304674,3797898,304774,3797798,27,14,99.7229916897507,0.971784057773917,37.6992790177389,0.92962962962963,NA,0.0538179906265077,0.634349030470914,63.4349030470914,2,98.3096459447735,0.859094457455113,63.1578947368421,0,0,391.867815653483,391.410522460938,0.593531778973256
+1429,304674,3797798,304774,3797698,28,14,98.0609418282548,0.955587656811018,37.4949389848802,0.928436911487759,NA,0.0395881939109239,0.451523545706371,45.1523545706371,2,96.5639585155289,0.866296296296296,44.3213296398892,0,0,391.782526016235,391.372955322266,0.447736835623438
+1430,304674,3797698,304774,3797598,29,14,94.4736842105263,0.969084657613434,38.0046711713769,0.922005571030641,NA,-0.0400714831725437,0.0578947368421053,5.78947368421053,1,82.9343718737514,0.843904042063753,5.78947368421053,0,0,391.735674540202,391.530029296875,0.248372549113602
+1431,304674,3797598,304774,3797498,30,14,83.1024930747922,0.404910024072465,28.377439212811,0.765151515151515,15.5867255064659,0.0423203436441322,0.326869806094183,32.6869806094183,7,82.8049663049402,0.604303680627668,9.69529085872576,0.608869774866912,0,392.098693847656,391.853210449219,0.297417302207303
+1432,304674,3797498,304774,3797398,31,14,97.7839335180055,0.952888256650535,37.2257077627687,0.930122757318225,NA,0.0294858333034734,0.246537396121884,24.6537396121884,3,91.7029778771981,0.916527931927488,23.5457063711911,0,0,392.596130371094,392.333251953125,0.410488101768104
+1433,304674,3797398,304774,3797298,32,14,72.8531855955679,0.709942242207056,32.8904789916015,0.915716096324461,NA,-0.0823425445963636,0,0,0,NA,NA,0,NA,NA,393.155221939087,392.909454345703,0.251581774784507
+1434,304674,3797298,304774,3797198,33,14,33.1578947368421,0.170062210110435,12.8862011493362,0.415333333333333,37.4658254687145,-0.0847309974904515,0,0,0,NA,NA,0,NA,NA,393.229382832845,393.003173828125,0.233907442839998
+1435,304674,3797198,304774,3797098,34,14,27.4238227146814,0.0668101539719568,10.2047152477469,0.590776353276353,15.0609873967783,-0.0571721288261237,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.743607954545455,2.49307479224377,2.30914454989963,0,393.112878799438,392.910736083984,0.234887021288122
+1436,304674,3797098,304774,3796998,35,14,45.4293628808864,0.442701626319229,26.7971782409992,0.865853658536585,NA,-0.136123537728331,0,0,0,NA,NA,0,NA,NA,393.035769144694,392.854095458984,0.214867140851534
+1437,304674,3796998,304774,3796898,36,14,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,-0.142267250804194,0,0,0,NA,NA,0,NA,NA,392.928302764893,392.721343994141,0.215421594112948
+1438,304674,3796898,304774,3796798,37,14,56.8421052631579,0.58307043466435,29.6352671662888,0.902006172839506,NA,-0.110570852476495,0,0,0,NA,NA,0,NA,NA,392.799977620443,392.650573730469,0.189669966400549
+1439,304674,3796798,304774,3796698,38,14,98.6149584487535,0.960986457131984,37.3828262089381,0.930711610486891,NA,-0.0908305804012021,0,0,0,NA,NA,0,NA,NA,392.727224349976,392.641326904297,0.10679123636377
+1440,304674,3796698,304774,3796598,39,14,74.5152354570637,0.726138643169954,33.8794823496638,0.911400247831475,NA,0.00338926760569291,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,4.75371287085793,0,392.829723358154,392.713348388672,0.150611888687295
+1441,304674,3796598,304774,3796498,40,14,17.1745152354571,0.0418407024874881,8.50803601679218,0.562246376811594,20.4052580344439,0.000570748227224295,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,393.298060099284,392.932342529297,0.457488974922232
+1442,304674,3796498,304774,3796398,41,14,5.81717451523546,0.0141718508425363,4.78534749000035,0.363425925925926,21.8697270607637,0.0269371586502373,0.152354570637119,15.2354570637119,3,86.968200999821,0.801307189542484,13.2963988919668,12.4723668011752,0,393.905939102173,393.514678955078,0.337950325999637
+1443,304674,3796398,304774,3796298,42,14,0,NA,NA,NA,NA,0.0237233369479471,0.0315789473684211,3.15789473684211,2,64.5097418171392,0.696291560102302,2.36842105263158,84.5878314971924,63.206901550293,393.993085225423,393.653472900391,0.313786602181677
+1444,304674,3796298,304774,3796198,43,14,0,NA,NA,NA,NA,0.0188628522156953,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,50.2454137802124,33.2679138183594,393.610555648804,393.338195800781,0.300287998979592
+1445,304674,3796198,304774,3796098,44,14,19.9445983379501,0.0971784057773917,13.0669729707507,0.700584795321637,15.5867256623399,0.0215135666558202,0.0554016620498615,5.54016620498615,5,55.9732833510366,0.556049569577145,2.21606648199446,14.4032318353653,0,393.555501302083,393.330383300781,0.257083292542386
+1446,304674,3796098,304774,3795998,45,14,0,NA,NA,NA,NA,0.0196654123685795,0.0554016620498615,5.54016620498615,5,54.4879942613516,0.453599470248794,1.66204986149584,66.1472797393799,42.8438110351562,393.723781585693,393.415802001953,0.313700230993906
+1447,304674,3795998,304774,3795898,46,14,0,NA,NA,NA,NA,0.0117093798236486,0,0,0,NA,NA,0,NA,NA,393.902109781901,393.624053955078,0.336613828837791
+1448,304674,3795898,304774,3795798,47,14,13.8504155124654,0.0674850040120775,16.3253111141205,0.585470085470085,16.4298513045218,0.0137755829756439,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,21.477500140667,7.34765291213989,393.956171035767,393.722381591797,0.337969453814181
+1449,304674,3795798,304774,3795698,48,14,0,NA,NA,NA,NA,0.0315864787271884,0.207756232686981,20.7756232686981,5,84.66787281345,0.81831426149608,14.1274238227147,61.1897184244792,15.5867252349854,394.013865152995,393.774047851562,0.329937198963977
+1450,304674,3795698,304774,3795598,49,14,22.4376731301939,0.218651412999131,22.9590571349742,0.800411522633745,NA,0.0185156717111593,0.10803324099723,10.803324099723,1,88.6531393205741,0.913760152890588,10.803324099723,62.6366309141501,51.4335708618164,394.323202133179,393.933135986328,0.405170259127978
+1451,304674,3795598,304774,3795498,50,14,36.0526315789474,0.184908910993092,22.2917745845602,0.770534388916378,15.5867255064659,0.0163115194739117,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,17.710278857838,11.6176595687866,394.819096883138,394.439483642578,0.426789696288415
+1452,304674,3795498,304774,3795398,51,14,0,NA,NA,NA,NA,0.0188842810888386,0.038781163434903,3.8781163434903,4,58.3494540897699,0.635878962536023,2.77008310249307,46.8600944791521,18.7329120635986,395.319013595581,394.926696777344,0.329186663356882
+1453,304674,3795398,304774,3795298,52,14,16.0664819944598,0.15656520930802,21.3330040125326,0.752873563218391,NA,0.0191318809323337,0.152354570637119,15.2354570637119,7,75.9877756494776,0.726797385620915,9.69529085872576,37.2338484504006,10.3911504745483,395.777669270833,395.621826171875,0.306136211925387
+1454,304674,3795298,304774,3795198,53,14,24.9307479224377,0.242946014443479,26.7661690913757,0.714814814814815,NA,0.00933632428422346,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,9.74170362949371,5.19557523727417,396.469444274902,396.104736328125,0.443245939925102
+1455,304674,3795198,304774,3795098,54,14,7.89473684210526,0.0404910024072465,9.65278340414141,0.581018518518518,18.7329127343573,0.0145373246980231,0.0526315789473684,5.26315789473684,3,68.0684078287621,0.727598566308244,3.42105263157895,8.97359063625336,0,396.965772628784,396.562469482422,0.338671442303097
+1456,304674,3795098,304774,3794998,55,14,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0075798209531703,0,0,0,NA,NA,0,NA,NA,396.839589436849,396.558624267578,0.305738149771605
+1457,304674,3794998,304774,3794898,56,14,0.277008310249307,0.0026994001604831,0,0,NA,0.0195888438151757,0.0304709141274238,3.04709141274238,7,24.776598840576,0.174857142857143,0.831024930747922,47.6976526433771,31.1734504699707,396.801158905029,396.53076171875,0.220956358704833
+1458,304674,3794898,304774,3794798,57,14,38.5041551246537,0.375216622307151,31.1071996796988,0.788968824940048,NA,0.0198469170661617,0.0332409972299169,3.32409972299169,4,54.2652939860693,0.513231080397775,2.21606648199446,10.2705045541128,0,396.937708536784,396.762023925781,0.156181277168115
+1459,304674,3794798,304774,3794698,58,14,64.2105263157895,0.658653639157877,34.6226231222434,0.885245901639344,NA,0.0202591768368668,0.0368421052631579,3.68421052631579,3,66.4529068619687,0.740437158469945,3.15789473684211,2.2868983745575,0,397.090028762817,396.929290771484,0.155175292973154
+1460,304674,3794698,304774,3794598,59,14,40.4432132963989,0.197056211715266,15.5742149764463,0.500578703703704,21.4219054085159,0.0190003532907842,0.0997229916897507,9.97229916897507,5,73.613222737953,0.537179487179487,5.54016620498615,12.9118534988827,0,397.611419677734,397.277587890625,0.844655006947828
+1461,304674,3794598,304774,3794498,60,14,3.04709141274238,0.00989780058843804,4.70075848607701,0.206349206349206,15.5867255064659,0.0381125296307876,0.135734072022161,13.5734072022161,3,88.0635968916973,0.683188339438339,12.7423822714681,20.7584380811575,5.19557523727417,399.878389358521,398.749786376953,1.16257221549956
+1462,304674,3794498,304774,3794398,61,14,0.277008310249307,0.0026994001604831,0,0,NA,0.0391398928975661,0.102493074792244,10.2493074792244,5,71.5011778267498,0.579892734264319,5.26315789473684,25.8087870108115,11.6176595687866,400.350565592448,399.745086669922,0.720784592638151
+1463,304674,3794398,304774,3794298,62,14,20.2631578947368,0.0692846041190663,15.0912706871016,0.425006892748828,14.6725397470507,0.0204999048033355,0.0789473684210526,7.89473684210526,6,70.9040945571208,0.601166180758018,5.52631578947368,19.3380159219106,5.19557523727417,398.822038650513,397.987335205078,0.873159872583942
+1464,304674,3794298,304774,3794198,63,14,80.3324099722992,0.39141302327005,17.5622903523181,0.442906574394464,10.3911504415599,0.021403651350099,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.933639705882353,5.81717451523546,0.74222503389631,0,398.008832295736,397.806488037109,0.267825955714249
+1465,304674,3794198,304774,3794098,64,14,26.3157894736842,0.0854810050819649,11.375217736621,0.603276353276353,19.1735216743401,0.0182764180124076,0.03601108033241,3.601108033241,2,69.363302574963,0.942369093231162,3.32409972299169,14.7267346382141,7.34765291213989,397.957925796509,397.811584472656,0.138460594477991
+1466,304674,3794098,304774,3793998,65,14,41.8282548476454,0.203804712116474,18.1676452858746,0.80509768009768,25.9778758441098,0.01007531702131,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,7.79336285591125,5.19557523727417,398.027254740397,397.966857910156,0.109014392529413
+1467,304674,3793998,304774,3793898,66,14,48.9473684210526,0.502088429849857,43.421451857935,0.697132616487455,NA,0.0229218963894374,0.0736842105263158,7.36842105263158,4,69.5148571779702,0.616161616161616,3.42105263157895,11.1105620690754,5.19557523727417,398.050327301025,398.007446289062,0.0655744650340941
+1468,304674,3793898,304774,3793798,67,14,31.3019390581717,0.305032218134591,26.693229366872,0.811209439528024,NA,0.0302940037352432,0.196675900277008,19.6675900277008,3,86.1086184796951,0.880496551724138,11.0803324099723,24.6740845760829,0,397.978744506836,397.950378417969,0.051311888302065
+1469,304674,3793798,304774,3793698,68,14,6.37119113573407,0.0620862036911113,11.7020830628879,0.659420289855072,NA,0.0200475565545774,0.174515235457064,17.4515235457064,2,86.733434074433,0.845820622330689,9.41828254847645,38.6161108471098,11.6176595687866,397.993488311768,397.941925048828,0.0824094839770378
+1470,304674,3793698,304774,3793598,69,14,2.49307479224377,0.0242946014443479,6.87276083796902,0.5,NA,0.0238814764851217,0.113573407202216,11.3573407202216,2,83.5348533541682,0.901902173913043,10.2493074792244,23.8208694458008,5.19557523727417,398.524181365967,398.131103515625,0.722620556911573
+1471,304674,3793598,304774,3793498,70,14,5.78947368421053,0.0118773607061256,3.75387187179665,0.256060606060606,29.698509743863,0.0145646918374232,0,0,0,NA,NA,0,NA,NA,400.145573933919,399.728179931641,0.707396774455372
+1472,304674,3793498,304774,3793398,71,14,41.8282548476454,0.101902356058237,10.1425299404511,0.361507409865074,25.5387249906708,0.00646778853851051,0.116343490304709,11.6343490304709,4,79.1073261217204,0.697161022561703,6.92520775623269,13.4230927058629,0,400.281814575195,400.126403808594,0.23086278021361
+1473,304674,3793398,304774,3793298,72,14,27.7008310249307,0.26994001604831,26.1223851141691,0.748333333333333,NA,0.0176620566393533,0.0664819944598338,6.64819944598338,3,72.7862000886869,0.802670623145401,5.26315789473684,20.4773188432058,0,400.236526489258,400.098419189453,0.228274351010098
+1474,304674,3793298,304774,3793198,73,14,6.09418282548476,0.0296934017653141,7.67984085264228,0.543055555555556,93.6645636717864,0.0274190117583142,0.188365650969529,18.8365650969529,4,84.41739269489,0.772220150858978,12.1883656509695,22.1818033036064,0,400.32963180542,400.111358642578,0.284454849377926
+1475,304674,3793198,304774,3793098,74,14,17.8947368421053,0.061186403637617,11.4026392039838,0.551688453159041,19.8681149623453,0.018032778401831,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,23.2353191375732,23.2353191375732,400.788284301758,400.500579833984,0.450680813274149
+1476,304674,3793098,304774,3792998,75,14,19.6675900277008,0.03833148227886,8.03115994082086,0.512409744948314,20.2337892196388,0.0197219533700344,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,10.6363138622708,0,402.048784255981,401.348175048828,1.35625992753136
+1477,304674,3792998,304774,3792898,76,14,9.69529085872576,0.0472395028084543,8.01694998822328,0.421717171717172,14.6953058096335,0.0242270113795659,0.0803324099722992,8.03324099722992,4,70.5645286125411,0.699243783645219,4.70914127423823,23.7721428049022,11.6176595687866,405.200055440267,404.347869873047,1.69598754442243
+1478,304674,3792898,304774,3792798,77,14,0.554016620498615,0.0053988003209662,3.67382645240838,0.0833333333333333,NA,0.00816371737538321,0.0304709141274238,3.04709141274238,5,40.3517430439582,0.381142857142857,1.38504155124654,30.5618850534612,10.3911504745483,406.634578704834,405.938812255859,0.780562822304848
+1479,304674,3792798,304774,3792698,78,14,6.31578947368421,0.0647856038515944,10.6149231735042,0.673611111111111,NA,0.0290314194603621,0.257894736842105,25.7894736842105,3,91.8643458775345,0.854529335912315,23.6842105263158,25.1741334175577,0,407.023071289062,405.673706054688,1.17388905123004
+1480,304674,3792698,304774,3792598,79,14,0,NA,NA,NA,NA,0.030073643231202,0.304709141274238,30.4709141274238,4,87.9520753716948,0.797633586257983,19.1135734072022,58.9591582905162,22.0429573059082,405.007291793823,402.408447265625,2.33077417506266
+1481,304674,3792598,304774,3792498,80,14,0,NA,NA,NA,NA,0.0391923792481582,0.321329639889197,32.1329639889197,4,88.841741898048,0.698289601554908,15.7894736842105,63.6739143009844,21.4219055175781,401.480995178223,400.568969726562,1.58884749031448
+1482,304674,3792498,304774,3792398,81,14,0,NA,NA,NA,NA,0.00913636326254478,0.0443213296398892,4.43213296398892,2,69.2536080762502,0.738405797101449,2.77008310249307,102.208561420441,83.1292037963867,400.250677108765,399.930084228516,0.439927063867791
+1483,304674,3792398,304774,3792298,82,14,0,NA,NA,NA,NA,0.0154367242974905,0,0,0,NA,NA,0,NA,NA,399.944068908691,399.832397460938,0.140913483339914
+1484,304674,3792298,304774,3792198,83,14,3.04709141274238,0.00989780058843804,3.97543078990381,0.177248677248677,21.3443847322041,0.0138148733794349,0.0304709141274238,3.04709141274238,3,56.9154881169365,0.656190476190476,2.21606648199446,29.9368397105824,15.5867252349854,399.991083145142,399.831695556641,0.209417761470792
+1485,304674,3792198,304774,3792098,84,14,46.2603878116344,0.11269995670017,15.6617497316861,0.589805677387914,11.6900442077864,0.0334720980255922,0.135734072022161,13.5734072022161,9,70.3151460163833,0.641865079365079,7.75623268698061,2.55161010002603,0,400.008338928223,399.826538085938,0.255647747196938
+1486,304674,3792098,304774,3791998,85,14,54.5706371191136,0.17726061053839,18.263710570271,0.638846801346801,17.3185839653505,0.0538355513091117,0.409972299168975,40.9972299168975,3,94.6518019254965,0.899935900767459,39.0581717451524,2.79971396278691,0,399.921765645345,399.798278808594,0.162234315146723
+1487,304674,3791998,304774,3791898,86,14,50.5263157894737,0.172761610270919,21.7531577781232,0.75184134489099,12.1230087965286,0.0722629737429854,0.571052631578947,57.1052631578947,2,97.9454682753194,0.896130717366215,56.8421052631579,5.8386035624737,0,399.917951583862,399.803100585938,0.142636758077424
+1488,304674,3791898,304774,3791798,87,14,6.64819944598338,0.0215952012838648,6.34856013479332,0.389880952380952,53.6876104242136,0.0662785944666093,0.526315789473684,52.6315789473684,2,95.2279439445575,0.778093434343434,38.781163434903,21.3118838385532,0,400.256167093913,399.921356201172,0.399493744375702
+1489,304674,3791798,304774,3791698,88,14,48.7534626038781,0.118773607061256,12.6274162044717,0.561614229024943,16.3732723524072,0.0706401023545517,0.684210526315789,68.4210526315789,1,98.8392163908112,0.684704184704185,68.4210526315789,5.50914254941438,0,400.774808883667,400.108245849609,0.704966352341489
+1490,304674,3791698,304774,3791598,89,14,18.005540166205,0.0877305052157008,13.4688434116755,0.717512771392082,32.8597026090436,0.109439528646551,0.767313019390582,76.7313019390582,1,99.2133368920022,0.760325091575091,76.7313019390582,15.219393886814,0,401.219993591309,400.474060058594,0.803699867409655
+1491,304674,3791598,304774,3791498,90,14,22.3684210526316,0.0573622534102659,8.90016250620255,0.375730994152047,15.5867255844029,0.0499950902648331,0.494736842105263,49.4736842105263,4,96.1800403348651,0.789571360153257,46.3157894736842,13.994858670742,0,401.982202529907,400.772308349609,0.829130788042585
+1492,304674,3791498,304774,3791398,91,14,66.7590027700831,0.325277719338214,27.4833676998035,0.83004806463159,18.7329127343573,0.0686832575666911,0.709141274238227,70.9141274238227,1,98.9583333333333,0.770793650793651,70.9141274238227,2.17983119934797,0,402.877314249674,402.445739746094,0.422723130858651
+1493,304674,3791398,304774,3791298,92,14,57.3407202216066,0.558775833220002,36.2694772463392,0.749597423510467,NA,0.0783450171955116,0.803324099722992,80.3324099722992,1,99.3571199051226,0.598837059051557,80.3324099722992,2.80741437221396,0,403.357906341553,403.108428955078,0.319281808669989
+1494,304674,3791298,304774,3791198,93,14,59.0027700831025,0.28748611709145,22.7643324751852,0.773295739348371,10.3911504415599,0.0727404094639123,0.714681440443213,71.4681440443213,2,98.7467309287206,0.600896500432169,70.9141274238227,2.79269754239755,0,403.358306884766,402.972381591797,0.508807661864787
+1495,304674,3791198,304774,3791098,94,14,53.6842105263158,0.183559210912851,25.7774814835685,0.752160403244215,13.8548671168586,0.0970092966074222,0.863157894736842,86.3157894736842,1,99.587135979304,0.634025102522679,86.3157894736842,3.38618045463795,0,403.377578735352,402.961517333984,0.532856629253007
+1496,304674,3791098,304774,3790998,95,14,43.4903047091413,0.211902912597923,31.528130594083,0.649976779287124,10.3911503376439,0.104137051458422,0.880886426592798,88.0886426592798,1,99.6362939290284,0.706162790697674,88.0886426592798,3.91667565909572,0,403.48676554362,403.201416015625,0.40292906744291
+1497,304674,3790998,304774,3790898,96,14,56.786703601108,0.553377032899036,36.0466123625635,0.782926829268293,NA,0.0802942048526083,0.822714681440443,82.2714681440443,1,99.4306009941514,0.677101967799642,82.2714681440443,3.2633188677958,0,403.798221588135,403.537109375,0.260553958752381
+1498,304674,3790898,304774,3790798,97,14,68.9750692520776,0.672150639960292,40.2816700948793,0.808567603748327,NA,0.0915966411804847,0.880886426592798,88.0886426592798,1,99.6362939290284,0.622209302325581,88.0886426592798,1.60627757528293,0,403.642639160156,403.519378662109,0.21805603768147
+1499,304674,3790798,304774,3790698,98,14,14.2105263157895,0.0728838043330437,11.0261448821694,0.599319727891157,20.7823008831198,0.0483562085955974,0.460526315789474,46.0526315789474,4,91.0735501813109,0.753228120516499,22.1052631578947,26.2458828762599,0,403.44785118103,403.378356933594,0.0738546650392406
+1500,304674,3790698,304774,3790598,99,14,0.554016620498615,0.0026994001604831,0,0,83.2914070074414,0.0437538701741065,0.476608187134503,47.6608187134503,1,97.436138449723,0.853519553072626,47.6608187134503,25.1374811160784,0,403.543901443481,403.390716552734,0.151309818574696
+1501,304774,3800598,304874,3800498,0,15,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.226659138997,383.561248779297,0.642093286633216
+1502,304774,3800498,304874,3800398,1,15,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.894622802734,384.668273925781,0.321530765719644
+1503,304774,3800398,304874,3800298,2,15,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.829780578613,384.530853271484,0.31684658831221
+1504,304774,3800298,304874,3800198,3,15,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.417687310113,384.240905761719,0.285547114420535
+1505,304774,3800198,304874,3800098,4,15,8.03324099722992,0.039141302327005,8.92765996924021,0.411324786324786,11.6176593526411,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.139389038086,384.029510498047,0.145362831739307
+1506,304774,3800098,304874,3799998,5,15,64.7368421052632,0.664052439478843,37.1472805979807,0.846883468834688,NA,0.0540452389916601,0.585526315789474,58.5526315789474,3,90.431707050086,0.620644903663772,34.8684210526316,0.467017998856105,0,383.994795057509,383.933044433594,0.0904881000584782
+1507,304774,3799998,304874,3799898,6,15,63.7119113573407,0.310431018455557,21.9661134637224,0.77659118202093,15.5867255064659,0.0579572869903328,0.650969529085873,65.0969529085873,3,97.1563028156703,0.8694724662834,62.0498614958449,4.67188949584961,0,383.924489339193,383.890533447266,0.0591428542428388
+1508,304774,3799898,304874,3799798,7,15,41.5512465373961,0.202455012036233,29.1499294572836,0.734006734006734,25.9778758441098,0.071045996590293,0.922437673130194,92.2437673130194,1,99.7711467429596,0.897513059277765,92.2437673130194,9.14239299762714,0,383.95504421658,383.915344238281,0.0783828187367486
+1509,304774,3799798,304874,3799698,8,15,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0604839846756247,0.64819944598338,64.819944598338,2,97.780412258958,0.876412187606984,62.8808864265928,0,0,384.144691467285,384.025909423828,0.180189592453183
+1510,304774,3799698,304874,3799598,9,15,96.3157894736842,0.987980458736815,38.2005756810967,0.921220400728597,NA,0.0269813740839278,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,0,0,384.599765353733,384.357452392578,0.432021203170288
+1511,304774,3799598,304874,3799498,10,15,58.4487534626039,0.142393358465484,13.8999320248216,0.592964039621016,15.0609873578098,0.00291221118518315,0,0,0,NA,NA,0,NA,NA,385.353073120117,385.010009765625,0.428636025110536
+1512,304774,3799498,304874,3799398,11,15,88.9196675900277,0.866507451515076,36.6484467247011,0.885773624091381,NA,0.0101726369358958,0.0415512465373961,4.15512465373961,4,55.7903787362693,0.525748817656332,1.93905817174515,4.29993203481038,0,385.890706380208,385.695861816406,0.205234174787255
+1513,304774,3799398,304874,3799298,12,15,52.6315789473684,0.512886030491789,40.0069752153371,0.820175438596491,NA,0.00646360197854713,0.03601108033241,3.601108033241,4,53.295542939621,0.48132183908046,1.93905817174515,7.9931924526508,0,386.025763617622,385.965728759766,0.0850665305183715
+1514,304774,3799298,304874,3799198,13,15,61.0526315789474,0.62626083723208,33.7823071087981,0.846264367816092,NA,0.0128238661686881,0.0236842105263158,2.36842105263158,1,70.2715195584201,0.743935309973046,2.36842105263158,0,0,386.124214172363,386.054809570312,0.0982738091666168
+1515,304774,3799198,304874,3799098,14,15,50.1385041551247,0.12214785726186,15.4222901272748,0.620728814564431,10.3911503376439,0.00612071361375907,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,9.28131957487627,0,386.396436903212,386.247222900391,0.292886456665743
+1516,304774,3799098,304874,3798998,15,15,26.5927977839335,0.0647856038515944,8.14897837809411,0.438873626373626,29.6549818329752,0.0230254504603183,0.038781163434903,3.8781163434903,3,62.2507122507123,0.583861671469741,2.49307479224377,7.20485755375453,0,386.967391967773,386.638793945312,0.388054833896238
+1517,304774,3798998,304874,3798898,16,15,30.4709141274238,0.296934017653141,26.5029358705095,0.846969696969697,NA,-0.00781367712901193,0,0,0,NA,NA,0,NA,NA,387.492462158203,387.274444580078,0.397986614545116
+1518,304774,3798898,304874,3798798,17,15,42.1052631578947,0.215952012838648,20.5627288870859,0.803175126345858,14.6953058096335,0.00171814914620451,0.0342105263157895,3.42105263157895,4,56.7046429576746,0.71238268240993,2.63157894736842,4.67995192454411,0,388.291320800781,387.852355957031,0.605596712335056
+1519,304774,3798798,304874,3798698,18,15,76.4542936288089,0.745034444293336,35.2855540117623,0.879227053140097,NA,0.0165889419639173,0.03601108033241,3.601108033241,2,63.9994282705831,0.711845466155811,1.93905817174515,1.76418297107403,0,389.183573404948,388.938629150391,0.580363861480691
+1520,304774,3798698,304874,3798598,19,15,44.5983379501385,0.434603425837779,28.7238985098879,0.870600414078675,NA,0.00895972191823568,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.814919251473981,8.03324099722992,32.0288949834889,11.6176595687866,389.666742960612,389.170989990234,0.83166299837197
+1521,304774,3798598,304874,3798498,20,15,61.218836565097,0.596567435466765,37.674958855539,0.852941176470588,NA,0.00742236680868456,0.074792243767313,7.4792243767313,2,80.394630259477,0.824049575268069,6.64819944598338,0,0,390.304497612847,389.801971435547,0.764139673402536
+1522,304774,3798498,304874,3798398,21,15,13.4210526315789,0.0458898027282127,8.18147654950372,0.490740740740741,40.9073602673678,-0.00911215412994161,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,18.0701729456584,14.6953058242798,390.628105163574,390.229431152344,0.491633220176683
+1523,304774,3798398,304874,3798298,22,15,24.9307479224377,0.242946014443479,27.3972498411597,0.766666666666667,NA,0.112119106527152,0.614958448753463,61.4958448753463,1,98.4711305282964,0.987453515448511,61.4958448753463,28.0462439489794,0,390.887946234809,390.643981933594,0.27801561303219
+1524,304774,3798298,304874,3798198,23,15,52.9085872576177,0.515585430652272,31.2202132983078,0.851657940663176,NA,0.0838372015769637,0.628808864265928,62.8808864265928,3,95.5178757695486,0.713401079707844,45.4293628808864,9.42061096981234,0,391.262489318848,391.032318115234,0.266140004497428
+1525,304774,3798198,304874,3798098,24,15,40.9972299168975,0.399511223751499,35.3466166865214,0.82545045045045,NA,0.0697198050087602,0.645429362880886,64.5429362880887,2,95.4479618893002,0.811979166666667,52.0775623268698,7.33808299297938,0,391.733361138238,391.615203857422,0.234887247470461
+1526,304774,3798098,304874,3797998,25,15,32.6315789473684,0.334725619899905,28.1725200722052,0.85752688172043,NA,0.0970515131987141,0.707894736842105,70.7894736842105,1,98.9804840892258,0.850860761751851,70.7894736842105,12.6175459007348,0,391.99681854248,391.930053710938,0.117525561055174
+1527,304774,3797998,304874,3797898,26,15,42.382271468144,0.206504112276957,16.1399917324147,0.577222222222222,41.5646017662397,0.1582985845526,0.983379501385042,98.3379501385042,1,99.9532483576382,0.373263888888889,98.3379501385042,14.633536595358,0,391.730420430501,391.311767578125,0.381736888646326
+1528,304774,3797898,304874,3797798,27,15,35.7340720221607,0.17411131035116,17.3262617556428,0.699270557029178,25.9778758441098,0.0441315455494901,0.529085872576177,52.9085872576177,1,97.9178236108022,0.886025257560651,52.9085872576177,5.61815532464632,0,391.216152615017,391.074188232422,0.261254956540407
+1529,304774,3797798,304874,3797698,28,15,64.5429362880887,0.314480118696281,25.8303368649277,0.84083009308354,15.5867256623399,0.0366811067735569,0.326869806094183,32.6869806094183,3,93.7593017658272,0.812564901349948,30.4709141274238,3.68724081475856,0,391.170219421387,391.025726318359,0.245208914122703
+1530,304774,3797698,304874,3797598,29,15,97.1052631578947,0.996078659218265,38.5287662109333,0.911020776874436,NA,0.0381115184615115,0.505263157894737,50.5263157894737,3,93.6189277840482,0.852378675591681,29.2105263157895,0.270602876941363,0,391.421576605903,391.221038818359,0.32178902481679
+1531,304774,3797598,304874,3797498,30,15,32.9639889196676,0.10707620636583,14.6595182933608,0.579460333673817,13.2217232901287,-0.0188767799205944,0.074792243767313,7.4792243767313,2,76.6211507912225,0.773778025344659,4.15512465373961,0.769714849966544,0,392.052284240723,391.788665771484,0.323655773186924
+1532,304774,3797498,304874,3797398,31,15,35.1800554016621,0.342823820381354,26.2345908042869,0.863517060367454,NA,-0.0359211790054866,0.14404432132964,14.404432132964,1,90.9176337107231,0.973746409221483,14.404432132964,0,0,392.433383517795,392.237854003906,0.40076453850096
+1533,304774,3797398,304874,3797298,32,15,16.8975069252078,0.0823317048947346,10.1298319150629,0.376388888888889,15.5867256623399,-0.0492937558364778,0,0,0,NA,NA,0,NA,NA,392.927675882975,392.377593994141,0.549036664810825
+1534,304774,3797298,304874,3797198,33,15,39.7368421052632,0.203804712116474,21.4807883461472,0.667076771653543,11.6176592829322,-0.0474231639916788,0,0,0,NA,NA,0,NA,NA,392.537509494358,392.119781494141,0.666167721785795
+1535,304774,3797198,304874,3797098,34,15,65.9279778393352,0.321228619097489,25.3949494860683,0.831372725095785,10.3911504415599,-0.0528935175621237,0,0,0,NA,NA,0,NA,NA,392.593503316243,392.360076904297,0.374712171806153
+1536,304774,3797098,304874,3796998,35,15,6.37119113573407,0.0310431018455557,6.64295167910139,0.59375,49.2895539135654,-0.0883361967770677,0,0,0,NA,NA,0,NA,NA,392.674740261502,392.547668457031,0.189203027838012
+1537,304774,3796998,304874,3796898,36,15,0,NA,NA,NA,NA,-0.0781402871311949,0,0,0,NA,NA,0,NA,NA,392.665435791016,392.602722167969,0.0965599101297751
+1538,304774,3796898,304874,3796798,37,15,0,NA,NA,NA,NA,-0.0989175119192192,0,0,0,NA,NA,0,NA,NA,392.586927625868,392.544311523438,0.0701222386490708
+1539,304774,3796798,304874,3796698,38,15,34.0720221606648,0.166013109869711,14.5581381232518,0.642806267806268,51.9557522077996,-0.105272322828808,0,0,0,NA,NA,0,NA,NA,392.583422342936,392.537872314453,0.0708720274862199
+1540,304774,3796698,304874,3796598,39,15,65.9279778393352,0.642457238194978,34.9879778485887,0.850140056022409,NA,0.00946927520832166,0.074792243767313,7.4792243767313,3,74.3287254039782,0.798913800306364,4.98614958448753,6.94100750817193,0,392.75303141276,392.611938476562,0.194908901717835
+1541,304774,3796598,304874,3796498,40,15,21.3296398891967,0.0346423020595331,7.00678338263798,0.3670465337132,11.4614977852519,0.0144536569375942,0.0581717451523546,5.81717451523546,5,65.1402372404988,0.568658088235294,3.8781163434903,7.3473721912929,0,393.153110080295,392.863677978516,0.467517812946911
+1542,304774,3796498,304874,3796398,41,15,4.70914127423823,0.0229449013641064,7.26833511482701,0.460714285714286,15.5867256623399,0.0359441703025811,0.240997229916898,24.0997229916898,5,87.544406547188,0.770496821285613,19.3905817174515,14.1562041030533,0,393.657821655273,393.252166748047,0.471194199983922
+1543,304774,3796398,304874,3796298,42,15,0,NA,NA,NA,NA,0.00429328611148537,0,0,0,NA,NA,0,NA,NA,393.440928141276,393.313385009766,0.281608430255461
+1544,304774,3796298,304874,3796198,43,15,0,NA,NA,NA,NA,0.0140173505791195,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,145.139694213867,143.326324462891,393.264027913411,393.1865234375,0.124554048317646
+1545,304774,3796198,304874,3796098,44,15,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0185924552482136,0.0249307479224377,2.49307479224377,3,44.989045488799,0.572679924242424,1.10803324099723,30.7724064721002,11.6176595687866,393.213212754991,393.175262451172,0.0881061106196004
+1546,304774,3796098,304874,3795998,45,15,2.21606648199446,0.0215952012838648,5.38798381594044,0.5625,NA,0.013603977715567,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,88.4774551391602,88.4774551391602,393.332265218099,393.222503662109,0.145123046336051
+1547,304774,3795998,304874,3795898,46,15,6.57894736842105,0.0337425020060388,10.3369800885091,0.477777777777778,46.7601769870196,0.0089837973539225,0.0236842105263158,2.36842105263158,3,46.4475313956783,0.573225516621743,1.31578947368421,15.9966371324327,10.3911504745483,393.528503417969,393.434783935547,0.141519537250093
+1548,304774,3795898,304874,3795798,47,15,31.8559556786704,0.310431018455557,23.6187774033145,0.853623188405797,NA,0.0281009452572969,0.160664819944598,16.0664819944598,4,83.5890430909988,0.797458745874587,13.0193905817175,5.02842650742366,0,393.632164001465,393.576904296875,0.0792921166900705
+1549,304774,3795798,304874,3795698,48,15,3.601108033241,0.0350922020862803,9.08765523149906,0.576923076923077,NA,0.0351809297791177,0.25207756232687,25.207756232687,2,89.9407719193222,0.843187014174669,15.5124653739612,25.5321335844941,0,393.733632405599,393.678314208984,0.100565732652213
+1550,304774,3795698,304874,3795598,49,15,7.20221606648199,0.0233948013908535,5.56956256236394,0.534722222222222,32.4980164446014,0.041367101136784,0.307479224376731,30.7479224376731,2,91.7106578276201,0.87726,24.0997229916898,25.3010730141992,0,393.949157714844,393.8037109375,0.212082516178503
+1551,304774,3795598,304874,3795498,50,15,51.0526315789474,0.261841815566861,28.0548059657088,0.810996563573883,14.6953058096335,0.00583552855070569,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,0,0,394.377648247613,394.196014404297,0.360839876001126
+1552,304774,3795498,304874,3795398,51,15,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0141100161671101,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,93.4404602050781,90.73681640625,395.235298156738,394.746063232422,0.579441918051156
+1553,304774,3795398,304874,3795298,52,15,2.77008310249307,0.0134970008024155,4.31419122893538,0.333333333333333,34.8529778487965,0.0155303043353755,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,70.6125651768276,44.0859146118164,396.151058620877,395.657318115234,0.696899829518875
+1554,304774,3795298,304874,3795198,53,15,11.6343490304709,0.0161964009628986,4.31566463839292,0.349107142857143,20.9902053748766,0.0126680381894443,0,0,0,NA,NA,0,NA,NA,396.658060709635,396.175201416016,0.5314546354932
+1555,304774,3795198,304874,3795098,54,15,12.8947368421053,0.066135303931836,13.377129042147,0.616635101010101,69.8993153424648,0.0111549767959763,0,0,0,NA,NA,0,NA,NA,396.605211893717,396.358856201172,0.252489485799497
+1556,304774,3795098,304874,3794998,55,15,20.4986149584488,0.0499389029689374,9.83960014902511,0.516224504350307,22.173504138883,0.033329948922585,0.279778393351801,27.9778393351801,2,93.909937574408,0.854249893752656,26.8698060941828,15.7575241362694,0,396.333214653863,396.1240234375,0.333115312879848
+1557,304774,3794998,304874,3794898,56,15,45.1523545706371,0.146667408719582,13.9010322733559,0.483410493827161,13.8548671861359,0.0119520501736142,0.0914127423822715,9.14127423822715,4,72.8118570278777,0.755420054200542,6.09418282548476,4.45672283750592,0,396.334335327148,396.092590332031,0.316171555783299
+1558,304774,3794898,304874,3794798,57,15,40.9972299168975,0.133170407917166,16.6929508231834,0.625578703703704,22.9405621497857,0.0138872674791165,0.0941828254847645,9.41828254847645,3,77.0488778732394,0.74371996505024,4.98614958448753,8.72085951356327,0,396.610897488064,396.381713867188,0.293920798945259
+1559,304774,3794798,304874,3794698,58,15,31.3157894736842,0.0803071547743723,12.5086345878234,0.677350184537684,19.4834069220509,0.0205954895985039,0.0263157894736842,2.63157894736842,2,64.1609526402966,0.841995841995842,2.36842105263158,11.9853565216064,0,397.027763366699,396.740570068359,0.323525881558602
+1560,304774,3794698,304874,3794598,59,15,33.5180055401662,0.0653254838836911,9.19443081689446,0.532051282051282,15.2301576589077,0.0202919599752145,0.07202216066482,7.20221606648199,4,72.4803921126595,0.55318529304696,4.70914127423823,9.13726751620953,0,397.742014567057,397.437866210938,0.579362243103095
+1561,304774,3794598,304874,3794498,60,15,9.97229916897507,0.0971784057773917,23.7982753947885,0.625,NA,0.0107939616780873,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,52.2148818969727,52.2148818969727,398.98912302653,398.376098632812,0.96030357090601
+1562,304774,3794498,304874,3794398,61,15,4.70914127423823,0.0458898027282127,9.5297817143291,0.647058823529412,NA,0.0210293297874522,0.0221606648199446,2.21606648199446,4,32.8149929723314,0.386402266288952,0.831024930747922,42.8220047950745,15.5867252349854,399.373884412977,398.874084472656,0.803473283051395
+1563,304774,3794398,304874,3794298,62,15,14.7368421052632,0.0377916022467634,7.33029401157195,0.390509259259259,15.7975070079379,0.0166566558357628,0.0105263157894737,1.05263157894737,1,52.703639668815,1,1.05263157894737,13.5063467025757,10.3911504745483,398.784517923991,398.489532470703,0.454272487969983
+1564,304774,3794298,304874,3794198,63,15,84.7645429362881,0.826016449107829,35.5305047619499,0.901416122004357,NA,0.0248093087995832,0.0277008310249307,2.77008310249307,3,50.9115480554855,0.60442691211922,1.38504155124654,5.10643320083618,0,398.516065809462,398.353302001953,0.246015574785639
+1565,304774,3794198,304874,3794098,64,15,65.0969529085873,0.317179518856764,20.5634662682313,0.707962962962963,14.6953058096335,0.0252415619280552,0.0692520775623269,6.92520775623269,6,60.9756487656949,0.650818452380952,3.04709141274238,7.06124017715454,0,398.368100484212,398.073364257812,0.383496557007981
+1566,304774,3794098,304874,3793998,65,15,25.7617728531856,0.0836814049749762,13.0083532566181,0.523345153664303,32.1155884814814,0.0159554411991325,0.0470914127423823,4.70914127423823,5,54.8760364284993,0.538255813953488,1.93905817174515,10.9676604270935,5.19557523727417,398.156904432509,398.077819824219,0.166127349124614
+1567,304774,3793998,304874,3793898,66,15,41.0526315789474,0.421106425035364,37.2085602716835,0.712606837606838,NA,0.0213150337543323,0.0342105263157895,3.42105263157895,3,55.0229095936175,0.654859218891916,1.31578947368421,9.31492134240957,5.19557523727417,398.085774739583,398.045013427734,0.0828584086219601
+1568,304774,3793898,304874,3793798,67,15,39.8891966759003,0.129571207703189,18.3086344052541,0.612313612313612,12.9406813574434,0.0323232634578653,0.171745152354571,17.1745152354571,3,84.6239930532242,0.832311408398365,12.7423822714681,11.4306767063756,0,398.076731363932,398.009368896484,0.106974511685497
+1569,304774,3793798,304874,3793698,68,15,12.7423822714681,0.0413908024607409,9.74777079473452,0.576754385964912,11.8258688975844,0.0281273073006481,0.168975069252078,16.8975069252078,2,88.9172025911267,0.795660377358491,14.404432132964,23.4395226650551,0,398.107510884603,398.006286621094,0.169795657564479
+1570,304774,3793698,304874,3793598,69,15,8.03324099722992,0.0195706511635025,7.75409033562759,0.293709150326797,11.0044048971005,0.0220754612193277,0.0609418282548476,6.09418282548476,3,70.2765585918105,0.749436057608884,4.43213296398892,10.2417972304604,0,398.890581766764,398.202056884766,1.00469572561137
+1571,304774,3793598,304874,3793498,70,15,35.5263157894737,0.0520598602378884,9.69971256231032,0.446890663132332,15.4524807293609,0.0149287761243948,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,5.7335946559906,0,400.803673638238,400.449432373047,0.715671710147166
+1572,304774,3793498,304874,3793398,71,15,3.04709141274238,0.0148467008826571,5.87872449537333,0.341666666666667,57.1513268570416,0.019220713399034,0.0443213296398892,4.43213296398892,4,56.8121372019516,0.607608695652174,1.93905817174515,25.0133250355721,10.3911504745483,400.91029103597,400.663848876953,0.386138485620281
+1573,304774,3793398,304874,3793298,72,15,27.9778393351801,0.0454399027014655,8.72443834191918,0.458692738791423,13.9107153942119,0.0271163302518226,0.0692520775623269,6.92520775623269,4,72.6470431456661,0.73139880952381,5.54016620498615,6.64012069702148,0,400.860914442274,400.624450683594,0.373407547695123
+1574,304774,3793298,304874,3793198,73,15,30.7479224376731,0.0499389029689374,9.3824643170069,0.509493978243978,18.5933495071463,0.0280933968185568,0.138504155124654,13.8504155124654,4,81.3636479711735,0.644940419897863,6.92520775623269,10.0189635467529,0,401.01380666097,400.703460693359,0.455943616995589
+1575,304774,3793198,304874,3793098,74,15,29.2105263157895,0.0749083544534061,16.4740884100942,0.557936069358483,20.3365908658401,0.0265605423158329,0.0342105263157895,3.42105263157895,3,57.4370971628886,0.654859218891916,1.84210526315789,5.69220854685857,0,401.193576388889,400.899017333984,0.457779633217042
+1576,304774,3793098,304874,3792998,75,15,5.81717451523546,0.0283437016850726,7.55952590117666,0.531060606060606,20.7823006752878,0.0207450363867745,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,43.2611389160156,21.4219055175781,402.4464747111,401.237609863281,1.29973996580173
+1577,304774,3792998,304874,3792898,76,15,3.8781163434903,0.0125972007489211,4.83132513769949,0.30026455026455,13.2217233339435,0.0257826132599556,0.0831024930747922,8.31024930747922,6,63.2024544719823,0.599358776743326,3.32409972299169,20.0613792896271,0,404.787668863932,403.993896484375,1.11451410796014
+1578,304774,3792898,304874,3792798,77,15,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0185369840174969,0.199445983379501,19.9445983379501,2,89.8176883947644,0.852464376209029,17.7285318559557,36.0035137004323,0,405.20204671224,404.445709228516,1.00503321846861
+1579,304774,3792798,304874,3792698,78,15,0,NA,NA,NA,NA,0.0378834919958823,0.297368421052632,29.7368421052632,3,90.8543470161548,0.81163251817581,22.3684210526316,58.0688624761801,15.5867252349854,404.681243896484,403.748504638672,1.44082121239231
+1580,304774,3792698,304874,3792598,79,15,0,NA,NA,NA,NA,0.043746847134765,0.329639889196676,32.9639889196676,1,95.87929364248,0.882594888276706,32.9639889196676,64.5748737880162,41.8880653381348,403.043228149414,402.271423339844,1.23497337997997
+1581,304774,3792598,304874,3792498,80,15,24.6537396121884,0.0800822047609987,12.3183267162821,0.581048581048581,14.2750865325234,0.057268380746713,0.49584487534626,49.584487534626,2,94.4007477498633,0.778277613625046,27.4238227146814,11.2656612875741,0,401.231299506293,400.728515625,0.985998375872848
+1582,304774,3792498,304874,3792398,81,15,45.7063711911357,0.445401026479712,27.0333323900196,0.856565656565657,NA,0.0191438658166539,0.07202216066482,7.20221606648199,4,70.0642364217514,0.658318165271205,4.70914127423823,15.4635662482335,0,400.544728597005,400.15087890625,0.566009633048104
+1583,304774,3792398,304874,3792298,82,15,16.3157894736842,0.0418407024874881,12.3327416919138,0.448735119047619,27.8900241438139,0.0171339414331143,0.0210526315789474,2.10526315789474,2,54.2700044452268,0.795698924731183,1.57894736842105,6.11403185129166,0,400.193596733941,400.099456787109,0.149514780487151
+1584,304774,3792298,304874,3792198,83,15,30.7479224376731,0.0998778059378748,13.243641114397,0.448232323232323,18.5450928413615,0.0185872879511531,0.03601108033241,3.601108033241,5,44.5715980158669,0.48132183908046,1.66204986149584,13.2358880409828,5.19557523727417,400.440526326497,400.132080078125,0.357421740064387
+1585,304774,3792198,304874,3792098,84,15,36.01108033241,0.350922020862803,30.268821145598,0.752564102564103,NA,0.0352107096996179,0.221606648199446,22.1606648199446,8,76.2507744689289,0.601924715553105,6.09418282548476,9.34761834740639,0,400.546457926432,400.342193603516,0.339376846761152
+1586,304774,3792098,304874,3791998,85,15,32.1329639889197,0.062626083723208,8.90035516354995,0.400661375661376,16.3438838986898,0.0597718742108837,0.534626038781163,53.4626038781163,4,96.3701568080503,0.723895982974195,50.415512465374,11.4441974471888,0,400.139217800564,400.031036376953,0.22179868741385
+1587,304774,3791998,304874,3791898,86,15,38.4210526315789,0.0656854039050888,10.8035924029236,0.535286978310234,12.9889379376423,0.07161659053343,0.644736842105263,64.4736842105263,1,98.6730552827086,0.686559922367783,64.4736842105263,6.3156921445107,0,400.014554341634,399.970306396484,0.0978932864019973
+1588,304774,3791898,304874,3791798,87,15,25.207756232687,0.122822707301981,15.9025364226243,0.523202614379085,55.9580575863418,0.0525135155286707,0.42382271468144,42.382271468144,2,93.4787979731623,0.697354913769504,28.2548476454294,12.8180944156023,0,400.414330376519,400.128753662109,0.428028451612614
+1589,304774,3791798,304874,3791698,88,15,3.32409972299169,0.0161964009628986,7.79336275323294,0.270833333333333,25.9778758441098,0.0626804023178764,0.440443213296399,44.0443213296399,5,90.2502475222329,0.773548758985488,29.6398891966759,26.6550972596654,0,401.492240905762,400.805816650391,0.69740649694555
+1590,304774,3791698,304874,3791598,89,15,5.81717451523546,0.0188958011233817,6.08339051895232,0.393518518518518,67.7723746401205,0.0636212306511214,0.598337950138504,59.8337950138504,2,95.6146777808362,0.752273117172757,37.9501385041551,21.1023117679137,0,402.21767171224,401.887786865234,0.484774947761642
+1591,304774,3791598,304874,3791498,90,15,5.52631578947368,0.0283437016850726,8.1866238099849,0.489583333333333,57.1513268570416,0.0455057635802644,0.381578947368421,38.1578947368421,3,93.0466703889967,0.859654757125652,27.6315789473684,26.8664297103882,0,402.746091206868,402.354858398438,0.340332973871025
+1592,304774,3791498,304874,3791398,91,15,46.814404432133,0.114049656780411,17.481982670961,0.583604420450351,17.7388033463767,0.0450008102478053,0.437673130193906,43.7673130193906,4,93.4808984207422,0.736317309325633,32.9639889196676,4.56871089150634,0,403.020260281033,402.809387207031,0.320244280061146
+1593,304774,3791398,304874,3791298,92,15,44.8753462603878,0.145767608666087,17.0384925111992,0.57322277501382,17.7388033463767,0.0550774593420834,0.562326869806094,56.2326869806094,2,97.2064218417433,0.763640331732868,53.7396121883656,4.80958756319995,0,403.702257792155,403.377777099609,0.396947630446096
+1594,304774,3791298,304874,3791198,93,15,22.1606648199446,0.0359920021397747,8.7353871626067,0.384523809523809,12.9889379740129,0.0326322699126909,0.227146814404432,22.7146814404432,6,79.7451476017904,0.660907180818193,7.75623268698061,6.56599041892261,0,404.287102593316,403.90625,0.445532549494377
+1595,304774,3791198,304874,3791098,94,15,49.2105263157895,0.25239391500517,27.9381821547719,0.726139784946237,10.3911504415599,0.0587477221833404,0.573684210526316,57.3684210526316,2,97.9373793837563,0.780453688499666,56.8421052631579,2.4317927469901,0,404.47144317627,404.177947998047,0.514339663424208
+1596,304774,3791098,304874,3790998,95,15,39.3351800554017,0.1277716075962,16.7410840173455,0.697822074566261,10.7999866759763,0.0675995944836467,0.650969529085873,65.0969529085873,2,98.4571316676394,0.76505043931012,64.819944598338,3.8203242261359,0,404.570281982422,404.011932373047,0.709129652477841
+1597,304774,3790998,304874,3790898,96,15,43.7673130193906,0.071084204226055,10.0614872616059,0.404791762983511,12.9889379393742,0.0570385901066649,0.581717451523546,58.1717451523546,2,96.0819408766983,0.877712098372318,48.7534626038781,3.97608579453968,0,404.297119140625,404.035980224609,0.471886067174611
+1598,304774,3790898,304874,3790798,97,15,54.2936288088643,0.264541215727344,26.8520628221906,0.585911602209945,20.7823006752878,0.0803564424733593,0.822714681440443,82.2714681440443,2,99.2280131403295,0.727554785330948,81.994459833795,3.09899273304024,0,403.808637830946,403.608428955078,0.311181166065967
+1599,304774,3790798,304874,3790698,98,15,22.1052631578947,0.0755832044935268,11.2746967514115,0.35108604845447,20.7823007445652,0.022215007728511,0.263157894736842,26.3157894736842,2,92.9466725075694,0.886904761904762,25,4.5046325302124,0,403.486671447754,403.437133789062,0.102969925938742
+1600,304774,3790698,304874,3790598,99,15,4.43213296398892,0.0431904025677296,9.32264733060197,0.604166666666667,NA,0.0475657384738218,0.400584795321637,40.0584795321637,3,90.0972859837875,0.786458536585366,16.6666666666667,29.5351205568244,0,403.692273457845,403.457550048828,0.281753709657795
+1601,304874,3800598,304974,3800498,0,16,29.0858725761773,0.283437016850726,26.8367191228201,0.83015873015873,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.785772323608,383.302368164062,0.563429713527729
+1602,304874,3800498,304974,3800398,1,16,47.1052631578947,0.483192628726475,28.3913647754615,0.897579143389199,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.532076517741,384.280364990234,0.342588339674853
+1603,304874,3800398,304974,3800298,2,16,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.605922698975,384.446166992188,0.198710124030615
+1604,304874,3800298,304974,3800198,3,16,1.93905817174515,0.00944790056169086,3.50130195022848,0.3,25.9778758441098,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.307505289714,384.198760986328,0.194672280516061
+1605,304874,3800198,304974,3800098,4,16,16.3434903047091,0.0796323047342515,11.6714116259908,0.554545454545455,18.7329128064101,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.094135284424,384.009399414062,0.106772818797359
+1606,304874,3800098,304974,3799998,5,16,66.8421052631579,0.685647640762708,36.5449225448152,0.84251968503937,NA,0.0228514122785256,0.0460526315789474,4.60526315789474,3,44.3065235255746,0.606896551724138,3.28947368421053,0.74222503389631,0,383.984202067057,383.926544189453,0.0736443749391486
+1607,304874,3799998,304974,3799898,6,16,41.5512465373961,0.202455012036233,22.2202871251491,0.744973544973545,18.73291280641,0.0132610201115595,0.127423822714681,12.7423822714681,4,74.495503323923,0.720838420838421,3.601108033241,2.71801945437556,0,383.962976455688,383.898193359375,0.0998381015837174
+1608,304874,3799898,304974,3799798,7,16,76.1772853185596,0.742335044132853,34.2146970829881,0.900606060606061,NA,0.0732658104772726,0.706371191135734,70.6371191135734,1,98.9454102607679,0.914502249940791,70.6371191135734,1.83927479351268,0,384.129547119141,383.934448242188,0.393442437661862
+1609,304874,3799798,304974,3799698,8,16,42.9362880886427,0.418407024874881,28.1715077909938,0.875268817204301,NA,0.0677285743516114,0.736842105263158,73.6842105263158,2,97.5075160754118,0.748697394789579,65.3739612188366,14.3061878197175,0,384.780527114868,384.112609863281,0.776185075954828
+1610,304874,3799698,304974,3799598,9,16,33.6842105263158,0.172761610270919,20.16722088112,0.652118644067797,10.3911504415599,0.0171235114574972,0.110526315789474,11.0526315789474,5,76.3189570920069,0.588299024918743,6.31578947368421,15.7117080461411,0,385.441998799642,384.558013916016,0.818483957388151
+1611,304874,3799598,304974,3799498,10,16,57.3407202216066,0.279387916610001,18.1912258931517,0.420307443365696,20.7823006752878,0.0165966903690298,0.166204986149584,16.6204986149584,4,81.526361386647,0.815486838742653,9.14127423822715,1.85853006045024,0,385.996210098267,385.209655761719,0.513914149543795
+1612,304874,3799498,304974,3799398,11,16,88.3656509695291,0.86110865119411,36.4573007270706,0.902298850574713,NA,0.0132236064494255,0.130193905817175,13.0193905817175,2,86.5567910875761,0.798805732484076,11.3573407202216,0.110544153984557,0,386.224256515503,385.992645263672,0.198149471591597
+1613,304874,3799398,304974,3799298,12,16,26.5927977839335,0.0863808051354593,11.8390114187052,0.723033958328076,43.2964600172923,-0.00115683811092414,0.132963988919668,13.2963988919668,3,79.2618002061209,0.774955193641393,5.54016620498615,19.5119788547357,0,386.206891377767,386.108337402344,0.123518870973514
+1614,304874,3799298,304974,3799198,13,16,56.578947368421,0.193457011501289,17.9242378537614,0.741854636591479,17.3185840692665,0.0374963007656716,0.302631578947368,30.2631578947368,6,87.6970146651773,0.806966618287373,23.4210526315789,9.82900599604068,0,386.268182754517,386.120758056641,0.18692136276091
+1615,304874,3799198,304974,3799098,14,16,45.1523545706371,0.220001113079373,19.0946071745624,0.811224489795918,11.6176592829322,0.0191370489904876,0.119113573407202,11.9113573407202,4,81.9240305177657,0.810796645702306,10.2493074792244,3.85002679603044,0,386.706258138021,386.361145019531,0.504178858260052
+1616,304874,3799098,304974,3798998,15,16,0,NA,NA,NA,NA,0.0171416972908721,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,19.4058793783188,10.3911504745483,387.569803237915,386.970428466797,0.614410365647703
+1617,304874,3798998,304974,3798898,16,16,0,NA,NA,NA,NA,0.00763637947237741,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,134.221458435059,132.461700439453,388.165542602539,387.655883789062,0.563750235798281
+1618,304874,3798898,304974,3798798,17,16,0,NA,NA,NA,NA,0.00994490902778221,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,98.7159271240234,98.7159271240234,388.647668838501,388.105041503906,0.39634701822802
+1619,304874,3798798,304974,3798698,18,16,0.554016620498615,0.0026994001604831,0,0,68.3371225775405,0.0146477664264975,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,11.733465274175,5.19557523727417,388.939033508301,388.835998535156,0.12248747564802
+1620,304874,3798698,304974,3798598,19,16,17.7285318559557,0.0431904025677296,9.62013172789713,0.458496732026144,34.8236669313873,0.00892713015705252,0.102493074792244,10.2493074792244,2,82.7017219883293,0.817344667071443,8.58725761772853,16.6051624272321,5.19557523727417,389.080766677856,388.920166015625,0.220127971696459
+1621,304874,3798598,304974,3798498,20,16,40.7202216066482,0.099202955897754,16.5044128395804,0.512881854987118,11.6900441558284,0.0665176731941035,0.454293628808864,45.4293628808864,2,94.3781842505016,0.921118095942448,40.9972299168975,10.9882003883036,0,389.428456624349,389.130279541016,0.406410965224467
+1622,304874,3798498,304974,3798398,21,16,40.5263157894737,0.0831415249428795,12.1125645313227,0.650743243243243,15.7553507284267,0.0111039181320226,0.0710526315789474,7.10526315789474,4,75.5419745729966,0.774688714671586,6.05263157894737,2.77370855543349,0,389.905879974365,389.466766357422,0.447987359224406
+1623,304874,3798398,304974,3798298,22,16,17.7285318559557,0.0575872034236395,13.8531266369293,0.456562881562882,15.5867256623399,0.0236596750079,0.196675900277008,19.6675900277008,3,84.9780920502815,0.780910344827586,13.0193905817175,13.1365403591747,0,390.50087483724,390.151733398438,0.459081253764425
+1624,304874,3798298,304974,3798198,23,16,59.5567867036011,0.580371034503867,36.0864892226467,0.806976744186047,NA,0.0426177521226123,0.390581717451524,39.0581717451524,3,90.1478166226648,0.860077519379845,14.1274238227147,7.07529073742265,0,391.221858978271,390.868865966797,0.345968282252235
+1625,304874,3798198,304974,3798098,24,16,49.8614958448753,0.242946014443479,18.4753013939271,0.748856707317073,10.3911504415599,0.05355788991139,0.626038781163435,62.6038781163435,2,96.0820227587528,0.898372481745403,52.0775623268698,7.76578940543453,0,391.653358459473,391.520843505859,0.217954458866717
+1626,304874,3798098,304974,3797998,25,16,57.8947368421053,0.593868035306282,31.7721613955195,0.878030303030303,NA,0.0604507919169632,0.615789473684211,61.5789473684211,2,96.07801588702,0.767718880285884,43.9473684210526,9.02809397583334,0,391.840665817261,391.6826171875,0.178776804866598
+1627,304874,3797998,304974,3797898,26,16,59.8337950138504,0.291535217332175,15.319433001124,0.445736434108527,20.7823008831198,0.0803046665242112,0.714681440443213,71.4681440443213,5,93.5482450866058,0.724255763934954,40.9972299168975,7.17548194227293,0,391.439142227173,391.060272216797,0.390091544826258
+1628,304874,3797898,304974,3797798,27,16,25.4847645429363,0.0827816049214818,10.5212883094107,0.505184826993338,10.3911503376439,0.0314157634572522,0.407202216066482,40.7202216066482,1,96.8494800677755,0.811868116596602,40.7202216066482,7.04962592546632,0,390.914141337077,390.724304199219,0.241591252916891
+1629,304874,3797798,304974,3797698,28,16,74.5152354570637,0.726138643169954,35.0084969718495,0.877942998760843,NA,0.0377546765617742,0.310249307479224,31.0249307479224,3,91.470660819564,0.813392182591753,26.0387811634349,2.57958913275174,0,390.830444335938,390.641052246094,0.234564033010793
+1630,304874,3797698,304974,3797598,29,16,83.6842105263158,0.429204625516813,18.2818390085987,0.441903259726604,10.3911504415599,0.0534519443940984,0.497368421052632,49.7368421052632,3,94.8018888148376,0.806731488406881,40.7894736842105,0.506203343628576,0,391.062243143717,390.776153564453,0.37933226455587
+1631,304874,3797598,304974,3797498,30,16,26.0387811634349,0.126871807542706,17.7497433382676,0.752317981456148,11.6176592829322,-0.0570912150855736,0,0,0,NA,NA,0,NA,NA,391.511806488037,390.947967529297,0.667992267619134
+1632,304874,3797498,304974,3797398,31,16,53.7396121883656,0.261841815566861,20.1190508055463,0.809481950304735,10.3911503376439,-0.0840965129384755,0,0,0,NA,NA,0,NA,NA,391.420977274577,390.522552490234,0.915705056538253
+1633,304874,3797398,304974,3797298,32,16,87.5346260387812,0.85301045071266,36.0121995726536,0.921940928270042,NA,-0.00707888003655418,0.0664819944598338,6.64819944598338,2,80.9489286721698,0.859050445103858,6.37119113573407,0,0,390.916185379028,389.776397705078,1.42618917747012
+1634,304874,3797298,304974,3797198,33,16,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0204994343950315,0.218421052631579,21.8421052631579,2,92.5517531967339,0.817219817219817,20.7894736842105,0,0,390.860847473145,389.941558837891,1.09811313817861
+1635,304874,3797198,304974,3797098,34,16,99.1689750692521,0.96638525745295,37.5063718202095,0.931098696461825,NA,-0.0294045992508412,0,0,0,NA,NA,0,NA,NA,391.680244445801,390.585601806641,0.85248674343376
+1636,304874,3797098,304974,3796998,35,16,31.5789473684211,0.0769329045737684,10.3274159576252,0.507726116762494,25.1005450158798,-0.0416450905579741,0,0,0,NA,NA,0,NA,NA,392.4129002889,392.127685546875,0.296517660579764
+1637,304874,3796998,304974,3796898,36,16,27.1468144044321,0.066135303931836,9.36885382581845,0.506735159817352,18.2536302064452,-0.0439143296965808,0,0,0,NA,NA,0,NA,NA,392.604187011719,392.568969726562,0.0580261998774336
+1638,304874,3796898,304974,3796798,37,16,1.57894736842105,0.0161964009628986,7.17094961417839,0.305555555555556,NA,-0.0624243138040918,0,0,0,NA,NA,0,NA,NA,392.555892944336,392.537506103516,0.0290388296343744
+1639,304874,3796798,304974,3796698,38,16,26.3157894736842,0.256443015245895,21.1526832387143,0.83859649122807,NA,-0.0798939605051387,0,0,0,NA,NA,0,NA,NA,392.523948669434,392.483856201172,0.0341854870613186
+1640,304874,3796698,304974,3796598,39,16,49.8614958448753,0.161964009628986,15.5954318751121,0.537467700258398,18.136256572738,0.0472061092916288,0.390581717451524,39.0581717451524,3,95.0378347604538,0.917318534179,37.9501385041551,4.21648657237384,0,392.557876586914,392.430694580078,0.149307773418254
+1641,304874,3796598,304974,3796498,40,16,78.6703601108033,0.766629645577201,34.0132279902422,0.89612676056338,NA,0.0538945968163366,0.570637119113573,57.0637119113573,1,98.2011515158107,0.847974395687695,57.0637119113573,0.636748950458267,0,392.667928059896,392.420684814453,0.328655406517786
+1642,304874,3796498,304974,3796398,41,16,15.2354570637119,0.0371167522066427,9.49947704358028,0.539202508960574,15.1752860434992,0.0385973446620049,0.260387811634349,26.0387811634349,6,86.7454085991634,0.782704654895666,19.9445983379501,9.58496851616717,0,392.990423202515,392.494995117188,0.424028014507812
+1643,304874,3796398,304974,3796298,42,16,0,NA,NA,NA,NA,0.0271021916001796,0.157894736842105,15.7894736842105,4,81.9644227247732,0.817307692307692,8.1578947368421,73.9815024058024,51.955753326416,393.232841491699,393.024475097656,0.173387400548013
+1644,304874,3796298,304974,3796198,43,16,0,NA,NA,NA,NA,0.0144501012970708,0,0,0,NA,NA,0,NA,NA,393.288969039917,393.19873046875,0.0874100214106305
+1645,304874,3796198,304974,3796098,44,16,0,NA,NA,NA,NA,0.0309402635503676,0.116343490304709,11.6343490304709,3,84.0989282999918,0.776855490308623,10.2493074792244,36.3969192731948,10.3911504745483,393.239110310872,393.179901123047,0.0809873389557342
+1646,304874,3796098,304974,3795998,45,16,4.70914127423823,0.0229449013641064,6.77919294092381,0.413461538461538,16.4298514359663,0.0298126018844258,0.210526315789474,21.0526315789474,1,93.4475029346092,0.943283582089552,21.0526315789474,34.0911511496494,10.3911504745483,393.312023162842,393.215179443359,0.109660406481739
+1647,304874,3795998,304974,3795898,46,16,45,0.115399356860653,15.7192860207677,0.667722174752886,13.5526298567777,0.0280180259490647,0.171052631578947,17.1052631578947,3,89.1750410293218,0.925270403146509,16.3157894736842,2.25748868355384,0,393.537592569987,393.426879882812,0.140573588608754
+1648,304874,3795898,304974,3795798,47,16,56.5096952908587,0.275338816369276,26.3393491782404,0.743627450980392,25.9778758441098,0.0143835477349481,0.0526315789473684,5.26315789473684,3,69.7872417840778,0.636015325670498,3.8781163434903,6.64681853746113,0,393.660343170166,393.579223632812,0.0739427924527707
+1649,304874,3795798,304974,3795698,48,16,7.75623268698061,0.0377916022467634,5.77351146649618,0.348765432098765,62.3469026493595,0.0390353535907319,0.313019390581717,31.3019390581717,3,90.2565037726583,0.850154174573055,21.0526315789474,25.2226403076037,0,393.703804016113,393.679992675781,0.043157375648667
+1650,304874,3795698,304974,3795598,49,16,16.0664819944598,0.039141302327005,5.93258395287376,0.253930817610063,32.2527694077223,0.0614529636295024,0.512465373961219,51.2465373961219,4,92.0065659214233,0.814078282828283,22.4376731301939,17.3884979711997,0,393.814149856567,393.699279785156,0.133819278613689
+1651,304874,3795598,304974,3795498,50,16,29.2105263157895,0.149816708906812,19.0920456846774,0.716294813119756,14.6953058096335,0.0118012198977292,0.0394736842105263,3.94736842105263,4,57.8109253728276,0.526774595267746,1.84210526315789,7.05160293579102,0,394.140686035156,393.915069580078,0.379231783501164
+1652,304874,3795498,304974,3795398,51,16,23.2686980609418,0.11337480674029,12.2119761373766,0.402610441767068,15.5867255064659,0.0104698109562806,0,0,0,NA,NA,0,NA,NA,395.294666290283,394.575592041016,0.887358849092839
+1653,304874,3795398,304974,3795298,52,16,27.4238227146814,0.0668101539719568,10.2281968012808,0.359979889391654,18.9710598978497,0.0153023449676156,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,1.73185841242472,0,396.827206929525,396.103424072266,0.787334666261319
+1654,304874,3795298,304974,3795198,53,16,37.6731301939058,0.0734236843651404,11.5963143012873,0.530723905723906,13.9990991384604,0.0155485320899673,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,3.67382645606995,0,397.356737136841,397.095397949219,0.42307819455883
+1655,304874,3795198,304974,3795098,54,16,32.6315789473684,0.167362809949952,17.8094171537213,0.6756038647343,10.3911504415599,0.0159318003263156,0.0210526315789474,2.10526315789474,3,44.1505367610631,0.489247311827957,1.05263157894737,20.857243001461,5.19557523727417,396.595151901245,396.087585449219,0.524578781340324
+1656,304874,3795098,304974,3794998,55,16,8.31024930747922,0.0404910024072465,8.87033060492103,0.479166666666667,54.2433977502533,0.047906119311149,0.421052631578947,42.1052631578947,2,93.3928770195453,0.845226458129684,22.4376731301939,25.8068299889565,0,395.981160481771,395.881408691406,0.185710672386786
+1657,304874,3794998,304974,3794898,56,16,37.3961218836565,0.0911047554163047,11.0763393321151,0.493807641633729,16.3732723653967,0.00888803827467623,0.0304709141274238,3.04709141274238,5,36.1729843734908,0.381142857142857,0.831024930747922,11.9594242789529,5.19557523727417,396.00562286377,395.890014648438,0.17478097932464
+1658,304874,3794898,304974,3794798,57,16,11.0803324099723,0.107976006419324,25.7138787421077,0.541666666666667,NA,0.0188240122860963,0.03601108033241,3.601108033241,5,43.0287566795466,0.423690932311622,1.38504155124654,17.267964729896,10.3911504745483,396.314559936523,396.15576171875,0.299028547485644
+1659,304874,3794798,304974,3794698,58,16,4.73684210526316,0.0242946014443479,7.95581535239227,0.45625,20.7823006752878,0.016147300101109,0.0657894736842105,6.57894736842105,6,62.4581963718947,0.464788732394366,3.15789473684211,16.141471824646,10.3911504745483,396.852809906006,396.533599853516,0.433692343998623
+1660,304874,3794698,304974,3794598,59,16,19.9445983379501,0.0647856038515944,12.3011540002559,0.612869352869353,12.1230087792092,0.0159401376371725,0.0886426592797784,8.86426592797784,3,74.4701737232676,0.746785129763853,4.15512465373961,19.1693794429302,10.3911504745483,397.428553263346,397.185516357422,0.338416974395512
+1661,304874,3794598,304974,3794498,60,16,11.0803324099723,0.107976006419324,26.8794061463102,0.616666666666667,NA,0.0206615919301471,0.110803324099723,11.0803324099723,4,76.9301636420628,0.69786581113126,6.64819944598338,13.4143775820732,7.34765291213989,397.788208007812,397.344757080078,0.587648841186835
+1662,304874,3794498,304974,3794398,61,16,16.0664819944598,0.15656520930802,24.5449210996238,0.729885057471264,NA,0.0200811435155367,0.119113573407202,11.9113573407202,5,77.1882102938285,0.653127183787561,7.75623268698061,11.6657878853554,5.19557523727417,398.281260172526,397.806610107422,0.558766768962925
+1663,304874,3794398,304974,3794298,62,16,23.4210526315789,0.0480493228565992,9.82925550660548,0.540320346320346,16.7537614906373,0.0189311461024676,0.0473684210526316,4.73684210526316,6,56.7164705409956,0.416820135052179,2.63157894736842,14.0642043219672,5.19557523727417,398.457160949707,398.224731445312,0.208959907494908
+1664,304874,3794298,304974,3794198,63,16,81.994459833795,0.399511223751499,17.0900220742716,0.461016949152542,14.6953058096335,0.022396067613818,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,3.46371682484945,0,398.620513916016,398.498992919922,0.12911745550392
+1665,304874,3794198,304974,3794098,64,16,36.2880886426593,0.0884053552558216,11.8736392305241,0.445862193362193,14.2248779261031,0.0292948630360362,0.102493074792244,10.2493074792244,4,79.9950783075989,0.726017000607164,8.03324099722992,4.23074150085449,0,398.668954849243,398.54736328125,0.132277495945193
+1666,304874,3794098,304974,3793998,65,16,15.7894736842105,0.0769329045737684,11.6705190877889,0.448484848484848,10.3911504415599,0.0154584956878536,0.0304709141274238,3.04709141274238,3,52.5080154774204,0.587428571428571,1.66204986149584,34.9018878936768,15.5867252349854,398.395403544108,398.226043701172,0.18077033690846
+1667,304874,3793998,304974,3793898,66,16,26.0526315789474,0.0668101539719568,11.2127827637319,0.483217592592593,15.1410156580497,0.024430204740125,0.139473684210526,13.9473684210526,3,81.4709231860087,0.719057700709077,7.10526315789474,6.75007768846908,0,398.282308578491,398.178649902344,0.119668447073942
+1668,304874,3793898,304974,3793798,67,16,9.97229916897507,0.0971784057773917,15.823244855667,0.726851851851852,NA,0.0182048658538194,0.0609418282548476,6.09418282548476,4,65.2398031028508,0.718115564809995,3.04709141274238,13.8370017355139,7.34765291213989,398.326975504557,398.196563720703,0.169349556815496
+1669,304874,3793798,304974,3793698,68,16,0,NA,NA,NA,NA,0.0113594338430141,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,15.5867252349854,15.5867252349854,398.555042266846,398.205871582031,0.436255042657467
+1670,304874,3793698,304974,3793598,69,16,14.9584487534626,0.0291535217332175,7.11929747887232,0.415667761357417,17.3829989324542,0.0218077640978729,0.074792243767313,7.4792243767313,4,67.9859560607988,0.698370700459546,3.601108033241,10.9680839997751,0,399.47841835022,398.567504882812,0.883133224850849
+1671,304874,3793598,304974,3793498,70,16,22.8947368421053,0.0587119534905075,12.9263502763495,0.541517857142857,21.8716002668456,0.0232040589638736,0.0736842105263158,7.36842105263158,5,63.1542033385726,0.568181818181818,2.10526315789474,11.5572169508253,5.19557523727417,400.870887756348,400.524108886719,0.540009315752228
+1672,304874,3793498,304974,3793398,71,16,14.6814404432133,0.0715341042528022,15.6725609438239,0.519149831649832,15.5867255064659,0.0244876290541729,0.0470914127423823,4.70914127423823,5,53.3458803281257,0.580232558139535,2.49307479224377,42.3380123867708,7.34765291213989,401.191272735596,401.044464111328,0.121236539088647
+1673,304874,3793398,304974,3793298,72,16,11.9113573407202,0.0386914023002578,9.04974719347623,0.378819444444444,27.7097345108264,0.0223922158242848,0.0637119113573407,6.37119113573407,2,74.421559212614,0.703320184089415,3.32409972299169,15.1718954418017,5.19557523727417,401.205950419108,401.092559814453,0.183650689637921
+1674,304874,3793298,304974,3793198,73,16,11.6343490304709,0.0377916022467634,8.54770950792737,0.583333333333333,39.8327431341617,0.0262485052817056,0.0609418282548476,6.09418282548476,3,71.191966701636,0.749436057608884,3.8781163434903,9.019869370894,0,401.465200424194,401.259948730469,0.234960074616548
+1675,304874,3793198,304974,3793098,74,16,15.2631578947368,0.0521884031026733,11.3687014916358,0.433115468409586,48.492034909005,0.0233691677383735,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,6.3217708269755,0,401.552543640137,401.430847167969,0.185213461924903
+1676,304874,3793098,304974,3792998,75,16,0,NA,NA,NA,NA,0.0218249528326669,0.119113573407202,11.9113573407202,3,83.0084667267254,0.795029699510832,9.14127423822715,46.2274578005769,25.977876663208,402.288316726685,401.553009033203,0.953761154911358
+1677,304874,3792998,304974,3792898,76,16,0,NA,NA,NA,NA,0.0166715283488471,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,45.1817537943522,36.7382659912109,403.519343058268,402.9013671875,0.850987603357343
+1678,304874,3792898,304974,3792798,77,16,0.277008310249307,0.0026994001604831,0,0,NA,0.0324749916134782,0.25207756232687,25.207756232687,3,89.2133168415034,0.83493369913123,19.1135734072022,35.2895066187932,11.6176595687866,403.864715576172,403.516876220703,0.545301967281775
+1679,304874,3792798,304974,3792698,78,16,25.5263157894737,0.13092090778343,11.9801602254574,0.396701388888889,10.3911503376439,0.0241117121477146,0.181578947368421,18.1578947368421,5,83.9358805302779,0.757646621136829,12.8947368421053,13.4808208700539,0,403.454249064128,403.047271728516,0.583762000965621
+1680,304874,3792698,304974,3792598,79,16,13.5734072022161,0.132270607863672,26.018039978587,0.625850340136054,NA,0.0400636421009266,0.229916897506925,22.9916897506925,3,91.3070076479606,0.902828757402242,21.8836565096953,49.2206934561212,0,402.798501968384,402.457946777344,0.444598295842842
+1681,304874,3792598,304974,3792498,80,16,21.0526315789474,0.0410308824393431,7.77681145502094,0.359027777777778,27.5822734633072,0.0382883289557691,0.268698060941828,26.8698060941828,7,80.3627375137159,0.7092258794845,9.97229916897507,11.2152765411692,0,402.410359700521,402.072357177734,0.611374920238939
+1682,304874,3792498,304974,3792398,81,16,30.1939058171745,0.098078205830886,12.2646914147364,0.493386243386243,20.1880209813156,0.0214780797048943,0.135734072022161,13.5734072022161,4,77.9284321056586,0.73828601953602,6.09418282548476,12.0491992502796,0,401.465322494507,400.459899902344,0.926509638790985
+1683,304874,3792398,304974,3792298,82,16,5.52631578947368,0.0188958011233817,5.14582529486394,0.5,79.6654864415167,0.0214339548155151,0.0894736842105263,8.94736842105263,2,84.1117930501835,0.882328654004955,8.42105263157895,21.7461658085094,0,400.329442342122,400.2509765625,0.240844458711298
+1684,304874,3792298,304974,3792198,83,16,27.1468144044321,0.264541215727344,31.4968735071276,0.744897959183673,NA,0.0375475372127872,0.293628808864266,29.3628808864266,3,92.8230875581662,0.703521199055538,26.3157894736842,14.021519624962,0,400.533012390137,400.263488769531,0.269731897967522
+1685,304874,3792198,304974,3792098,84,16,6.37119113573407,0.0206954012303704,7.78763207936632,0.366096866096866,35.579305468528,0.0402323088770406,0.285318559556787,28.5318559556787,7,82.212471995147,0.742845170752147,13.0193905817175,26.2618014094899,0,400.619499206543,400.282897949219,0.282163022235121
+1686,304874,3792098,304974,3791998,85,16,48.1994459833795,0.46969562792406,30.7002710490921,0.831417624521073,NA,0.0513098002830649,0.443213296398892,44.3213296398892,7,89.1649697598867,0.688445527464717,20.7756232686981,9.5187475413084,0,400.104708353678,399.984649658203,0.224555073246547
+1687,304874,3791998,304974,3791898,86,16,54.7368421052632,0.561475233380485,37.1858735645793,0.77724358974359,NA,0.0515923260650437,0.471052631578947,47.1052631578947,4,92.935717006955,0.680149103425471,26.5789473684211,3.96552723612865,0,399.989519119263,399.934600830078,0.100731293405879
+1688,304874,3791898,304974,3791798,87,16,34.0720221606648,0.0830065549348554,11.6857705135139,0.390015015015015,17.6721662535524,0.0559659328636097,0.6398891966759,63.98891966759,3,97.0438704825573,0.626307335356059,56.786703601108,7.44578970871962,0,400.265975952148,400.096374511719,0.282701519722759
+1689,304874,3791798,304974,3791698,88,16,11.6343490304709,0.11337480674029,18.2956835321253,0.71031746031746,NA,0.0515732577723535,0.426592797783933,42.6592797783933,2,94.5045973197181,0.76582851095065,30.1939058171745,17.4667982250065,0,401.11142539978,400.493591308594,0.796379149664246
+1690,304874,3791698,304974,3791598,89,16,13.5734072022161,0.066135303931836,11.1923463050726,0.69561887254902,30.2951490982217,0.0406212416308038,0.354570637119114,35.4570637119114,1,96.2256744148997,0.840409659415351,35.4570637119114,18.3800356425345,0,402.410820007324,402.001556396484,0.555247048098924
+1691,304874,3791598,304974,3791498,90,16,0.263157894736842,0.0026994001604831,0,0,NA,0.0459174397811646,0.336842105263158,33.6842105263158,1,96.0905040868722,0.87703522038286,33.6842105263158,29.6914859749377,0,402.970613479614,402.620178222656,0.256713224704478
+1692,304874,3791498,304974,3791398,91,16,52.3545706371191,0.255093315165653,27.4784254811417,0.789193729003359,31.1734510129318,0.0478076998048168,0.476454293628809,47.6454293628809,5,94.2093255523775,0.692704421411046,35.180055401662,4.67109481401222,0,403.03840637207,402.935791015625,0.235887333890102
+1693,304874,3791398,304974,3791298,92,16,34.6260387811634,0.0843562550150969,12.0903423447576,0.356019103806714,12.9889379740129,0.052099129275375,0.409972299168975,40.9972299168975,4,90.27483097174,0.799871801534917,21.0526315789474,7.35360128170735,0,403.381109237671,403.018707275391,0.39720303640778
+1694,304874,3791298,304974,3791198,93,16,32.9639889196676,0.160614309548745,20.6907809515453,0.718031609195402,16.4298514359663,0.0192799339227783,0.0332409972299169,3.32409972299169,5,42.7847632421225,0.391538850497219,1.38504155124654,3.21009202798208,0,404.314669291178,403.706390380859,0.634114002488275
+1695,304874,3791198,304974,3791098,94,16,59.7368421052632,0.612763836429664,31.8977019293675,0.900881057268722,NA,0.0312149852565582,0.2,20,3,87.9641894089344,0.80410447761194,15,0.99649020872618,0,404.931270599365,404.725738525391,0.250290667373773
+1696,304874,3791098,304974,3790998,95,16,26.8698060941828,0.0872806051889536,13.1486154560054,0.567654320987654,29.8071923856447,0.0350783346796881,0.285318559556787,28.5318559556787,2,93.0321615839713,0.878985962706893,26.0387811634349,2.00824413947689,0,405.076581319173,404.977233886719,0.122463005714068
+1697,304874,3790998,304974,3790898,96,16,32.1329639889197,0.104376806205347,10.4921062976758,0.506314222606358,35.9712697581871,0.0444702443297839,0.340720221606648,34.0720221606648,4,92.9296716433326,0.897972641971587,31.8559556786704,3.37088744233294,0,404.953380584717,404.404266357422,0.388069312005083
+1698,304874,3790898,304974,3790798,97,16,55.4016620498615,0.26994001604831,20.0525765466859,0.537840136054422,15.5867256623399,0.0626150116316685,0.617728531855956,61.7728531855956,2,97.4473768479272,0.754755434782609,57.0637119113573,2.45966660281468,0,404.32874806722,403.771911621094,0.615123188815721
+1699,304874,3790798,304974,3790698,98,16,66.5789473684211,0.227649413534075,15.9912477453446,0.566056699244472,16.6354545824297,0.0560752040582501,0.586842105263158,58.6842105263158,1,98.3486858290049,0.755634492895639,58.6842105263158,1.69066152871991,0,403.776987075806,403.516479492188,0.35899960656719
+1700,304874,3790698,304974,3790598,99,16,0,NA,NA,NA,NA,0.0514838015871689,0.286549707602339,28.6549707602339,5,91.3308162589484,0.864614381520119,26.9005847953216,55.1394883175286,10.3911504745483,403.728183746338,403.52294921875,0.228784660488992
+1701,304974,3800598,305074,3800498,0,17,19.7368421052632,0.202455012036161,19.0923304566314,0.833333333333333,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.04559580485,383.577514648438,0.669222903670971
+1702,304974,3800498,305074,3800398,1,17,3,0.0323928019257858,10.2305589057794,0.444444444444444,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.956305609809,384.533874511719,0.536543902775141
+1703,304974,3800398,305074,3800298,2,17,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.011395772298,384.70751953125,0.38449789686911
+1704,304974,3800298,305074,3800198,3,17,8.15789473684211,0.0836814049749466,15.4363533211402,0.629032258064516,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.591373019748,384.349578857422,0.363081698267931
+1705,304974,3800198,305074,3800098,4,17,27.6315789473684,0.0566874033701251,8.81216833620816,0.471786216596343,18.6314433387947,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.271102905273,384.127105712891,0.203021253797957
+1706,304974,3800098,305074,3799998,5,17,57.5,0.310431018455447,23.1505082498457,0.642912257495591,25.9778759376309,-0.00873914280573445,0.15,15,1,86.4196594377943,0.969040247678019,15,0,0,384.149797227648,384.067230224609,0.149066688424277
+1707,304974,3799998,305074,3799898,6,17,59.4736842105263,0.203354812089655,16.5332917660518,0.484045584045584,10.3911504415562,0.0692167200424975,0.418421052631579,41.8421052631579,1,97.0479383351358,0.970557242918242,41.8421052631579,0.732419703741493,0,384.198532104492,384.069671630859,0.20605819768695
+1708,304974,3799898,305074,3799798,7,17,46.3157894736842,0.0950188856489716,11.2812298017468,0.450438436244063,14.0503433744791,0.0739646762917753,0.568421052631579,56.8421052631579,1,98.2352224056243,0.804028637301298,56.8421052631579,3.81578511220438,0,384.79498969184,384.242004394531,0.732846403897511
+1709,304974,3799798,305074,3799698,8,17,0.263157894736842,0.00269940016048215,0,0,NA,0.0130977513545651,0.231578947368421,23.1578947368421,5,84.3334134974865,0.801064479539307,10,51.1005887118253,20.7823009490967,385.801717122396,385.368255615234,0.511030537732508
+1710,304974,3799698,305074,3799598,9,17,3.25,0.0350922020862679,7.29724174123611,0.628205128205128,NA,0.0172893512136216,0.22,22,5,85.8958123553787,0.7713539114813,17,44.3027039603754,0,386.323520236545,386.130035400391,0.270840048363705
+1711,304974,3799598,305074,3799498,10,17,44.7368421052632,0.229449013640983,15.0019997262898,0.432445759368836,27.9790287931623,0.0246960556975338,0.139473684210526,13.9473684210526,3,82.376783270031,0.821218536814867,7.63157894736842,5.51286940304738,0,386.49969736735,386.406280517578,0.130793600999603
+1712,304974,3799498,305074,3799398,11,17,84.2105263157895,0.863808051354287,37.6640472569957,0.884895833333333,NA,0.0151170557190198,0.0973684210526316,9.73684210526316,5,73.3368763529741,0.709410696362854,6.05263157894737,2.32301242931469,0,386.445803324382,386.383819580078,0.0819583334861356
+1713,304974,3799398,305074,3799298,12,17,4.21052631578947,0.0107976006419286,3.67438836505524,0.281944444444444,50.9310578995999,0.045622365650266,0.386842105263158,38.6842105263158,6,87.3606493125301,0.708984156867751,15,20.0557541101157,0,386.401848687066,386.340667724609,0.108261739043688
+1714,304974,3799298,305074,3799198,13,17,61,0.658653639157644,37.0293289774835,0.845628415300546,NA,0.0430963829954271,0.4725,47.25,2,94.7220960939863,0.815842924847664,27.75,4.26314840114937,0,386.557329813639,386.368774414062,0.320024536195011
+1715,304974,3799198,305074,3799098,14,17,2.89473684210526,0.0296934017653036,7.1967729224925,0.575757575757576,NA,0.0167213584313638,0.0473684210526316,4.73684210526316,3,66.7428800073857,0.766728054020872,3.15789473684211,30.0437553723653,10.3911504745483,387.334092881944,386.835418701172,0.677817216042615
+1716,304974,3799098,305074,3798998,15,17,0,NA,NA,NA,NA,0.0143512889977405,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,85.894781930106,73.4765319824219,388.266624450684,387.703247070312,0.540344433040508
+1717,304974,3798998,305074,3798898,16,17,0,NA,NA,NA,NA,0.0144958594922125,0,0,0,NA,NA,0,NA,NA,388.847452799479,388.56005859375,0.330850251817346
+1718,304974,3798898,305074,3798798,17,17,0,NA,NA,NA,NA,0.0108560084778946,0,0,0,NA,NA,0,NA,NA,389.036415100098,388.951812744141,0.140414136365905
+1719,304974,3798798,305074,3798698,18,17,4.73684210526316,0.0485892028886786,10.4164293577077,0.611111111111111,NA,0.0182974343029568,0.0526315789473684,5.26315789473684,3,68.3319630590925,0.727598566308244,2.89473684210526,43.7845273733139,5.19557523727417,388.848778618707,388.673309326172,0.215032941456009
+1720,304974,3798698,305074,3798598,19,17,46.3157894736842,0.237547214122429,22.5168857225794,0.564814814814815,11.6176593526378,0.0212210510670694,0.234210526315789,23.4210526315789,2,93.5475628738772,0.876807365622771,23.1578947368421,6.94898215840372,0,388.809438069661,388.679962158203,0.240133561686974
+1721,304974,3798598,305074,3798498,20,17,28.4210526315789,0.0971784057773573,16.8860453315882,0.563125966256638,12.1230087272512,0.0868270198896521,0.576315789473684,57.6315789473684,1,98.2845154772468,0.994215077335282,57.6315789473684,15.7095528998876,0,389.120425754123,388.961791992188,0.276773449744924
+1722,304974,3798498,305074,3798398,21,17,26.25,0.283437016850625,28.7974253517655,0.750793650793651,NA,0.000895692703494433,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,10.5028468767802,5.19557523727417,389.542643229167,389.259765625,0.337610767554176
+1723,304974,3798398,305074,3798298,22,17,0,NA,NA,NA,NA,-0.0105895354887922,0.0342105263157895,3.42105263157895,2,63.9095268615724,0.71238268240993,1.84210526315789,26.7974562278161,10.3911504745483,390.194034152561,389.828460693359,0.561197541023002
+1724,304974,3798298,305074,3798198,23,17,41.3157894736842,0.141268608398566,16.2728301671056,0.636044973544974,20.1880208773979,0.0285731460192964,0.273684210526316,27.3684210526316,6,85.7077260334592,0.771758505773851,15,4.58607843289009,0,391.094383239746,390.751037597656,0.415048161175948
+1725,304974,3798198,305074,3798098,24,17,85.2631578947368,0.874605651996216,37.128095224163,0.902777777777778,NA,0.0668928465413812,0.876315789473684,87.6315789473684,1,99.6309960117236,0.691506274735311,87.6315789473684,1.48287141502083,0,391.409339057075,391.198577880859,0.298026776177124
+1726,304974,3798098,305074,3797998,25,17,92,0.99337925905743,39.9885041287298,0.908967391304348,NA,0.0542756499422831,0.635,63.5,1,98.6583599459141,0.781282375964084,63.5,0.533284226740439,0,391.454940795898,391.211547851562,0.383639479522215
+1727,304974,3797998,305074,3797898,26,17,95.7894736842105,0.982581658415502,38.0534489642614,0.929945054945055,NA,0.0588609401191781,0.663157894736842,66.3157894736842,1,98.7672448732661,0.880495233050847,66.3157894736842,0,0,391.064748128255,390.742279052734,0.418795247588129
+1728,304974,3797898,305074,3797798,27,17,1.57894736842105,0.0161964009628929,5.09716192339744,0.444444444444444,NA,-0.00995472892598053,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,51.4628200531006,40.5787391662598,390.626597086589,390.40283203125,0.313086018039308
+1729,304974,3797798,305074,3797698,28,17,18.6842105263158,0.0958287056971162,14.1577862333896,0.697614734299517,54.2433977502357,-0.00988477845366058,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,35.0030899047852,33.2679138183594,390.414670308431,390.225769042969,0.269007350879334
+1730,304974,3797698,305074,3797598,29,17,35.5,0.127771607596155,11.6772063072049,0.418545751633987,36.3690265454468,0.00960051952904905,0.095,9.5,5,75.9786080993483,0.754450583179865,7.25,3.37032610491702,0,390.392300075955,390.209747314453,0.368527536964255
+1731,304974,3797598,305074,3797498,30,17,14.7368421052632,0.151166408987,28.3269493072566,0.705357142857143,NA,-0.0337367928506482,0.107894736842105,10.7894736842105,1,88.9454279930292,0.93501774186653,10.7894736842105,0.760328083503537,0,390.462315877279,390.181427001953,0.4677004420503
+1732,304974,3797498,305074,3797398,31,17,46.5789473684211,0.23889691420267,18.9720895704617,0.570833333333333,25.9778758441098,-0.0480755380492682,0,0,0,NA,NA,0,NA,NA,390.128967285156,389.864532470703,0.493917330711041
+1733,304974,3797398,305074,3797298,32,17,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0279301969814313,0.257894736842105,25.7894736842105,3,88.1005245000187,0.808591231463572,14.2105263157895,0,0,389.689142862956,389.504425048828,0.249507504712991
+1734,304974,3797298,305074,3797198,33,17,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0351542336999046,0.3575,35.75,5,93.7686617791664,0.798021801764339,33,0,0,389.843482123481,389.547973632812,0.509937522185328
+1735,304974,3797198,305074,3797098,34,17,61.5789473684211,0.631659637552823,34.900344421624,0.892450142450142,NA,0.00428081189073916,0.163157894736842,16.3157894736842,2,88.8572209880086,0.87829023992546,15,0,0,390.936241149902,390.360168457031,0.725170838011215
+1736,304974,3797098,305074,3796998,35,17,16.3157894736842,0.0278938016583155,5.80356230087601,0.353685897435897,21.6914186533688,-0.0313396246744608,0,0,0,NA,NA,0,NA,NA,392.043711344401,391.706359863281,0.484801808574811
+1737,304974,3796998,305074,3796898,36,17,28.4210526315789,0.0583070434664144,9.08753150285686,0.363253968253968,16.8452004576154,-0.0252509787866936,0,0,0,NA,NA,0,NA,NA,392.420560201009,392.116851806641,0.257222316123229
+1738,304974,3796898,305074,3796798,37,17,9.25,0.0499389029689197,17.4863421836853,0.471003898635478,10.3911503376439,-0.0642552415881073,0,0,0,NA,NA,0,NA,NA,392.56595187717,392.547821044922,0.0424378016802349
+1739,304974,3796798,305074,3796698,38,17,0,NA,NA,NA,NA,-0.0651443005015608,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,17.5996259053548,15.5867252349854,392.498346964518,392.412536621094,0.100156861640573
+1740,304974,3796698,305074,3796598,39,17,32.8947368421053,0.168712510030134,18.5013629738152,0.674532940019666,14.6953058096309,0.0454240408004568,0.544736842105263,54.4736842105263,1,98.0809669748179,0.777494182118459,54.4736842105263,7.40724261832122,0,392.189506530762,391.828491210938,0.362818215825162
+1741,304974,3796598,305074,3796498,40,17,35.7894736842105,0.183559210912786,19.3896255767279,0.554580152671756,11.6176592829314,0.0430516465321393,0.413157894736842,41.3157894736842,2,96.3234326506694,0.840246636771301,40.5263157894737,5.13643440623192,0,391.97548421224,391.692260742188,0.556078670926667
+1742,304974,3796498,305074,3796398,41,17,0,NA,NA,NA,NA,0.0211554434282382,0.15,15,3,86.2519892363779,0.735894357743097,11.5789473684211,22.5342063318219,5.19557523727417,392.160545349121,391.667602539062,0.627712320670449
+1743,304974,3796398,305074,3796298,42,17,0,NA,NA,NA,NA,0.0163859760138439,0.0325,3.25,3,58.9194150148019,0.655469422911283,2,58.838083413931,37.8243598937988,392.84021335178,392.533966064453,0.539402909819081
+1744,304974,3796298,305074,3796198,43,17,0,NA,NA,NA,NA,0.0140071139544154,0.0263157894736842,2.63157894736842,3,55.1428774701672,0.762993762993763,2.10526315789474,69.5811519622803,51.955753326416,393.346288045247,393.158325195312,0.158957427627102
+1745,304974,3796198,305074,3796098,44,17,7.63157894736842,0.0391413023269911,10.3182078617753,0.468599033816425,44.6940277025709,0.0198808612506821,0.0578947368421053,5.78947368421053,5,63.9659284563403,0.562931317778508,3.15789473684211,22.8843524022536,0,393.399698893229,393.331909179688,0.0990582939887027
+1746,304974,3796098,305074,3795998,45,17,3.94736842105263,0.0404910024072322,8.74894905971077,0.611111111111111,NA,0.0276342311735214,0.171052631578947,17.1052631578947,3,85.2580851011103,0.87189211967973,10,17.1038011477544,0,393.439585367839,393.331207275391,0.154937101459382
+1747,304974,3795998,305074,3795898,46,17,7.5,0.0404910024072322,7.6844076865614,0.469135802469136,23.2353185658627,0.0171974311829399,0.0425,4.25,5,50.174912734063,0.540469973890339,1.75,16.7416558546178,5.19557523727417,393.678649902344,393.531219482422,0.184060262766713
+1748,304974,3795898,305074,3795798,47,17,24.7368421052632,0.126871807542661,13.3680214507464,0.737271448663854,15.5867255064659,0.0213026432645213,0.0789473684210526,7.89473684210526,5,68.3537414634292,0.689795918367347,3.68421052631579,17.3248017470042,0,393.796203613281,393.736389160156,0.0888347451925245
+1749,304974,3795798,305074,3795698,48,17,1.84210526315789,0.00629860037445834,2.30914453102224,0.148148148148148,40.3168107298297,0.0104466603815557,0.0263157894736842,2.63157894736842,3,51.3901406140503,0.604989604989605,1.31578947368421,30.6253832817078,10.3911504745483,393.721042209201,393.682067871094,0.0613214137460061
+1750,304974,3795698,305074,3795598,49,17,18.6842105263158,0.191657411394232,24.4435720550251,0.746478873239437,NA,0.0134550838208892,0.0763157894736842,7.63157894736842,4,69.3472757318256,0.72358610656483,3.68421052631579,21.7599403611545,0,393.777956644694,393.690643310547,0.1421240045814
+1751,304974,3795598,305074,3795498,50,17,8.75,0.0472395028084376,9.63204990441135,0.586538461538461,74.3893157186306,0.0190698409682523,0.1325,13.25,3,86.7215369379863,0.873325521740507,12.25,36.8169920039627,11.6176595687866,394.131503634983,393.922668457031,0.388485479434867
+1752,304974,3795498,305074,3795398,51,17,48.6842105263158,0.249694514844599,27.0475163090495,0.804019607843137,15.5867255064659,0.0113781099031384,0,0,0,NA,NA,0,NA,NA,395.110399881999,394.519653320312,0.726946847969552
+1753,304974,3795398,305074,3795298,52,17,3.94736842105263,0.0134970008024107,3.63185422764499,0.311111111111111,25.9778758752835,0.0126917657706647,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,31.2292188008626,21.4219055175781,396.261637369792,395.804382324219,0.692896578264365
+1754,304974,3795298,305074,3795198,53,17,33.6842105263158,0.115174406847238,17.6482629444849,0.603108823883472,13.1717378272311,0.02327939198276,0.0394736842105263,3.94736842105263,5,48.3199797353197,0.479452054794521,1.31578947368421,14.3004042307536,5.19557523727417,396.739601135254,396.287567138672,0.691172146524976
+1755,304974,3795198,305074,3795098,54,17,39.5,0.106626306339045,14.7196121225598,0.550250172532781,16.287031718537,0.0186509826178406,0.02,2,3,44.9064287078991,0.387755102040816,1,4.81513804197311,0,396.184272766113,395.909362792969,0.408883558815894
+1756,304974,3795098,305074,3794998,55,17,23.9473684210526,0.122822707301938,18.0362898018827,0.678971734892788,36.3690265454468,0.0152435169748251,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.709702062643239,1.57894736842105,14.1322484811147,7.34765291213989,395.921207004123,395.893096923828,0.101365218563907
+1757,304974,3794998,305074,3794898,56,17,27.1052631578947,0.0556076433059322,10.7244050666979,0.407725825372884,10.3911503584264,0.0158110882261972,0.0263157894736842,2.63157894736842,4,43.6667933010076,0.446985446985447,1.31578947368421,5.10643315315247,0,396.19416809082,395.915924072266,0.443834209473027
+1758,304974,3794898,305074,3794798,57,17,14.7368421052632,0.0755832044935001,22.0434434858767,0.482142857142857,10.3911504415562,0.00921829738929917,0.068421052631579,6.84210526315789,3,79.8179174958544,0.764365440264572,6.31578947368421,5.87783688765306,0,397.056064181858,396.372192382812,1.39914021959863
+1759,304974,3794798,305074,3794698,58,17,10.5,0.11337480674025,26.6967687342715,0.634920634920635,NA,0.00781179206857331,0.0125,1.25,2,43.859649122807,0.594936708860759,1,10.273054599762,7.34765291213989,397.909380594889,396.883453369141,1.31636766986424
+1760,304974,3794698,305074,3794598,59,17,61.5789473684211,0.210553212517608,17.9638367988264,0.715608465608466,12.1230087965261,0.00955639445512229,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,2.30914454989963,0,397.664109971788,397.308410644531,0.725874463988661
+1761,304974,3794598,305074,3794498,60,17,77.6315789473684,0.398161523671117,20.2457973115584,0.679108796296296,10.3911503376439,0.0121674991911564,0.113157894736842,11.3157894736842,3,84.3707450504998,0.79640619848335,10,3.60408923792285,0,397.775108337402,397.334747314453,1.14635084513889
+1762,304974,3794498,305074,3794398,61,17,0,NA,NA,NA,NA,0.00882771932501782,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,47.8047240121024,31.1734504699707,399.642673068576,397.816162109375,2.22400139886357
+1763,304974,3794398,305074,3794298,62,17,41,0.442701626319072,29.5607432338967,0.851626016260163,NA,0.0166485041796568,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,10.3911504745483,10.3911504745483,399.038579305013,398.430694580078,1.3621954176697
+1764,304974,3794298,305074,3794198,63,17,71.0526315789474,0.36441902166509,19.3673328726504,0.579887218045113,11.6176592829313,0.0256737723169959,0.0315789473684211,3.15789473684211,4,46.2006860361741,0.453324808184143,1.05263157894737,0,0,398.670664469401,398.563079833984,0.139841987554783
+1765,304974,3794198,305074,3794098,64,17,31.5789473684211,0.107976006419286,14.4273580651512,0.700569692543909,15.586725558422,0.028696234972449,0.0947368421052632,9.47368421052632,6,66.6490964740007,0.650193798449612,3.15789473684211,9.24739714463552,0,398.61848449707,398.554534912109,0.10211828407079
+1766,304974,3794098,305074,3793998,65,17,10,0.102577206098322,18.4960435884163,0.692982456140351,NA,0.0239948894726886,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,35.2052307128906,15.5867252349854,398.511410183377,398.450988769531,0.126332974566765
+1767,304974,3793998,305074,3793898,66,17,5.75,0.0206954012303631,5.54543449922041,0.430021367521368,30.2847185528196,0.0266332563777905,0.1475,14.75,4,82.7624462293902,0.804496578690127,7.25,25.9374917078826,0,398.373458862305,398.293273925781,0.102903128421126
+1768,304974,3793898,305074,3793798,67,17,16.8421052631579,0.172761610270857,16.7572593684762,0.809895833333333,NA,0.0181419946601876,0.0342105263157895,3.42105263157895,4,51.006956221298,0.482288828337875,1.57894736842105,19.4511691240164,0,398.489373101128,398.357818603516,0.211269910426343
+1769,304974,3793798,305074,3793698,68,17,0,NA,NA,NA,NA,0.0204747851566265,0,0,0,NA,NA,0,NA,NA,399.161272684733,398.695953369141,0.593773835693775
+1770,304974,3793698,305074,3793598,69,17,8.68421052631579,0.0222700513239777,4.3832354271465,0.289175724637681,21.9326806439412,0.0334666045256247,0.226315789473684,22.6315789473684,2,93.3212154942304,0.881730469965764,22.3684210526316,9.55508121224337,0,399.992416381836,399.575286865234,0.442366403510672
+1771,304974,3793598,305074,3793498,70,17,11,0.0593868035306072,13.7843111472338,0.455982905982906,16.4298514359611,0.0240774339072959,0.13,13,3,84.2953920476796,0.81919152783159,9.75,29.0479221527393,10.3911504745483,400.679002549913,400.378265380859,0.442029774523566
+1772,304974,3793498,305074,3793398,71,17,10.7894736842105,0.0221350813159536,4.83733890641873,0.251111111111111,23.1358267205438,0.0237487099082883,0.0421052631578947,4.21052631578947,5,52.952572104081,0.565018315018315,2.36842105263158,31.2186444103718,5.19557523727417,401.330574035645,401.023986816406,0.355248301577311
+1773,304974,3793398,305074,3793298,72,17,9.47368421052632,0.0485892028886786,12.3470641767179,0.285714285714286,90.7368195154335,0.024619842051159,0.0947368421052632,9.47368421052632,3,84.6893344255697,0.742248062015504,8.94736842105263,35.6946810351478,5.19557523727417,401.642737494575,401.441833496094,0.31985154966296
+1774,304974,3793298,305074,3793198,73,17,48.6842105263158,0.166463009896399,20.1493795905247,0.546406130268199,15.586725558422,0.0163508399465962,0.0210526315789474,2.10526315789474,2,56.1263686554176,0.591397849462366,1.57894736842105,6.91679239273071,5.19557523727417,401.791501363118,401.504943847656,0.247382005528315
+1775,304974,3793198,305074,3793098,74,17,29.75,0.0803071547743439,16.4327843163371,0.462287808641975,21.6354846190758,0.02336039147056,0,0,0,NA,NA,0,NA,NA,401.555440266927,401.381958007812,0.244294732977613
+1776,304974,3793098,305074,3792998,75,17,0,NA,NA,NA,NA,0.0256736504364534,0.157894736842105,15.7894736842105,3,85.0391616603156,0.828725961538462,11.5789473684211,34.9905046463013,15.5867252349854,401.699935913086,401.36572265625,0.465010346225801
+1777,304974,3792998,305074,3792898,76,17,0,NA,NA,NA,NA,0.0253508897464551,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,91.9901666641235,37.4658241271973,402.4429558648,401.63232421875,0.897808539640767
+1778,304974,3792898,305074,3792798,77,17,0.263157894736842,0.00269940016048215,0,0,NA,0.0276244373491959,0.134210526315789,13.4210526315789,5,83.0123751732793,0.800859448695105,11.5789473684211,47.1618872623818,25.977876663208,402.867029825846,402.098937988281,0.997633996884581
+1779,304974,3792798,305074,3792698,78,17,2,0.0215952012838572,5.94437605233417,0.541666666666667,NA,0.029677563981204,0.185,18.5,7,76.8648402004562,0.669655497876357,8.75,28.0980366371773,10.3911504745483,403.17470296224,402.583221435547,0.886862471665116
+1780,304974,3792698,305074,3792598,79,17,22.3684210526316,0.0764830045469942,12.154353902282,0.453036369703036,13.8548671861334,0.0355859915787158,0.168421052631579,16.8421052631579,5,81.4562759272348,0.699367088607595,9.47368421052632,13.1155679300427,0,403.38902537028,403.113677978516,0.4550097906043
+1781,304974,3792598,305074,3792498,80,17,17.3684210526316,0.0890802052959109,17.3966334616342,0.516522988505747,10.3911504415562,0.0349454869746344,0.192105263157895,19.2105263157895,4,87.9312523184078,0.642202768729642,15,10.1394112077478,0,403.573387993707,403.1806640625,0.717033437852053
+1782,304974,3792498,305074,3792398,81,17,6.8421052631579,0.0350922020862679,10.1365820988341,0.412878787878788,25.9778761038906,0.0253972083810176,0.068421052631579,6.84210526315789,5,66.404764751788,0.685820587019429,4.47368421052632,26.153908271056,0,401.782399495443,400.926910400391,1.24844464377055
+1783,304974,3792398,305074,3792298,82,17,22.75,0.0818818048679585,13.7192184724211,0.544789704959196,27.781770155399,0.0237177156268422,0.1075,10.75,3,82.3189705408406,0.688764394646748,8,3.14151059749515,0,400.417073567708,400.264190673828,0.35881540870212
+1784,304974,3792298,305074,3792198,83,17,12.8947368421053,0.132270607863625,15.9705376520731,0.775510204081633,NA,0.0373441967111399,0.326315789473684,32.6315789473684,4,91.8372473297941,0.722916666666667,23.9473684210526,30.1183941518107,0,400.333368937174,400.254119873047,0.236842032734125
+1785,304974,3792198,305074,3792098,84,17,11.3157894736842,0.0290185517251831,9.0572610350819,0.458874458874459,36.6432261593614,0.0522320765458158,0.323684210526316,32.3684210526316,3,93.1615785833851,0.913803632810455,29.4736842105263,15.6590270298283,0,400.48331451416,400.218048095703,0.373741467437441
+1786,304974,3792098,305074,3791998,85,17,23.1578947368421,0.237547214122429,25.5553888697676,0.820075757575758,NA,0.0528388489180399,0.521052631578947,52.1052631578947,2,95.0307778258153,0.806569452346019,37.1052631578947,20.0063512397535,0,400.157836914062,400.019592285156,0.287301570607354
+1787,304974,3791998,305074,3791898,86,17,16.75,0.045214952688076,8.46490669768357,0.339043209876543,10.3911503896001,0.0351148437049005,0.24,24,4,92.4755497028155,0.770501835985312,22.75,34.1878287891547,0,400.120391845703,399.991577148438,0.263915284397094
+1788,304974,3791898,305074,3791798,87,17,12.1052631578947,0.0310431018455447,8.04112651176044,0.343297101449275,11.6900442077836,0.0500742799614703,0.473684210526316,47.3684210526316,2,97.1092534642266,0.834534534534534,46.8421052631579,29.1855775064892,0,400.53705851237,400.162017822266,0.52400240185878
+1789,304974,3791798,305074,3791698,88,17,0.526315789473684,0.00539880032096429,2.59778761038906,0.166666666666667,NA,0.0198707121477032,0.136842105263158,13.6842105263158,4,78.8688593157767,0.752671964921896,5.26315789473684,41.4715369297908,22.0429573059082,401.065554300944,400.510406494141,0.855524305621141
+1790,304974,3791698,305074,3791598,89,17,24.2105263157895,0.124172407382179,21.7684646119656,0.678095238095238,27.9790287931623,0.0583419238531573,0.392105263157895,39.2105263157895,2,96.3468711476028,0.897562754705612,38.9473684210526,13.2562171404794,0,402.485073513455,402.014984130859,0.658031516145291
+1791,304974,3791598,305074,3791498,90,17,7.25,0.0260942015513274,6.43000465346059,0.487654320987654,29.3450794941004,0.0274599093737106,0.1875,18.75,3,87.5370250710602,0.701631701631702,13.75,31.3515292930603,5.19557523727417,402.873293558757,402.431457519531,0.325227070772591
+1792,304974,3791498,305074,3791398,91,17,38.6842105263158,0.396811823590876,36.4602112201397,0.753968253968254,NA,0.0226547377184416,0.163157894736842,16.3157894736842,6,77.6140573519498,0.6680642907058,9.21052631578947,6.80378676229908,0,402.927327473958,402.875793457031,0.12158216854154
+1793,304974,3791398,305074,3791298,92,17,25,0.0854810050819347,15.71821466066,0.613399162752053,28.0527098951234,0.0504671486543406,0.494736842105263,49.4736842105263,1,97.7196633854303,0.943127394636015,49.4736842105263,12.9273076108161,0,403.297238667806,402.981750488281,0.675566942010644
+1794,304974,3791298,305074,3791198,93,17,50.2631578947368,0.257792715326045,20.1225324875425,0.546774193548387,26.4923391803507,-0.00330469403729933,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,27.8430283069611,21.4219055175781,404.330885145399,403.900665283203,0.788540346676603
+1795,304974,3791198,305074,3791098,94,17,23.5,0.0634359037713305,10.2383218480369,0.397883597883598,25.9778760129673,0.0437995387689625,0.3725,37.25,5,92.6436869692897,0.77817667060695,31.75,8.72362549993016,0,405.029945373535,404.447998046875,0.634043230875867
+1796,304974,3791098,305074,3790998,95,17,22.8947368421053,0.0782826046539823,13.6610456301733,0.319105691056911,19.8362614424191,0.0419186193046603,0.35,35,2,93.4763066112908,0.809281627463446,25.2631578947368,6.20330517274096,0,405.289303249783,405.0908203125,0.378984081125591
+1797,304974,3790998,305074,3790898,96,17,8.15789473684211,0.0836814049749466,24.1862767201221,0.532258064516129,NA,0.0259642563627973,0.205263157894737,20.5263157894737,3,91.9105205308256,0.854112678759958,20,12.4690417326414,0,405.257624308268,405.082244873047,0.269057259637865
+1798,304974,3790898,305074,3790798,97,17,55.7894736842105,0.572272834022215,33.4059607038971,0.842767295597484,NA,0.0475198322501097,0.484210526315789,48.4210526315789,3,93.7424069949285,0.789015606242497,23.9473684210526,2.23739868920782,0,404.644029405382,404.052124023438,0.603866656513475
+1799,304974,3790798,305074,3790698,98,17,72.25,0.780126646379341,37.1680383002654,0.8760092272203,NA,0.0678247722960077,0.8,80,1,99.3787684802637,0.660596026490066,80,2.10827252715826,0,403.931195576986,403.537719726562,0.492042629939288
+1800,304974,3790698,305074,3790598,99,17,6.8421052631579,0.0701844041725358,19.6790863934321,0.576923076923077,NA,0.0363505127425823,0.261111111111111,26.1111111111111,5,84.8699519411681,0.726100966702471,13.6111111111111,31.0478593998767,0,403.630393981934,403.503173828125,0.168990696572204
+1801,305074,3800598,305174,3800498,0,18,62.6038781163435,0.610064436269181,30.6026100233179,0.908554572271386,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.448474884033,383.835205078125,0.697851409337888
+1802,305074,3800498,305174,3800398,1,18,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.430582682292,385.082153320312,0.348360446602626
+1803,305074,3800398,305174,3800298,2,18,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.399066925049,385.12939453125,0.224958287218403
+1804,305074,3800298,305174,3800198,3,18,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.946123758952,384.670074462891,0.315414283399049
+1805,305074,3800198,305174,3800098,4,18,21.8836565096953,0.213252612678165,25.9931119725689,0.694092827004219,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.56499671936,384.355773925781,0.205662891768981
+1806,305074,3800098,305174,3799998,5,18,37.1052631578947,0.190307711314059,17.9907797652463,0.535583941605839,18.7329128064101,-0.0261888723723706,0.0921052631578947,9.21052631578947,2,74.5107366110501,0.779710144927536,8.55263157894737,16.8499086924962,0,384.443723042806,384.308044433594,0.156660609479364
+1807,305074,3799998,305174,3799898,6,18,3.601108033241,0.0175461010431402,8.31292035324793,0.279166666666667,36.3690265454597,0.0188271504963253,0.368421052631579,36.8421052631579,1,96.4027280994676,0.973829201101928,36.8421052631579,32.409499835251,5.19557523727417,384.500453948975,384.300598144531,0.209892808879992
+1808,305074,3799898,305174,3799798,7,18,19.1135734072022,0.0620862036911113,10.2356919009671,0.358906525573192,48.492034909005,0.0513988850687287,0.548476454293629,54.8476454293629,1,98.0540488689693,0.885341268116548,54.8476454293629,22.074708627932,0,385.054410298665,384.688323974609,0.523515134294392
+1809,305074,3799798,305174,3799698,8,18,6.09418282548476,0.0296934017653141,10.1691039563976,0.320175438596491,27.9790285905554,0.00598805170271473,0.116343490304709,11.6343490304709,3,77.6775299890555,0.776855490308623,4.70914127423823,16.584874187197,5.19557523727417,385.893669128418,385.545989990234,0.406319477662043
+1810,305074,3799698,305174,3799598,9,18,40,0.205154412196716,12.5609082016848,0.440949227373068,39.5683217016104,0.072148997992994,0.557894736842105,55.7894736842105,1,98.1678776705731,0.913886874546773,55.7894736842105,8.6279375193254,0,386.411076863607,386.290374755859,0.196731216281797
+1811,305074,3799598,305174,3799498,10,18,26.5927977839335,0.0863808051354593,11.5974343041504,0.612745098039216,29.3450795870467,0.0364780159084677,0.299168975069252,29.9168975069252,4,88.7811845825967,0.831701631701632,24.3767313019391,9.12753617322003,0,386.567487716675,386.533996582031,0.0555094471049952
+1812,305074,3799498,305174,3799398,11,18,53.7396121883656,0.261841815566861,20.1446441531791,0.644946808510638,23.2353187052823,0.00409525081940301,0.0470914127423823,4.70914127423823,3,65.6859714875883,0.748139534883721,3.32409972299169,4.65848737604478,0,386.488912582397,386.448760986328,0.0443335511134717
+1813,305074,3799398,305174,3799298,12,18,33.7950138504155,0.0658653639157877,12.7492109282431,0.480083542188805,16.0773291644228,0.00883020800359082,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,15.2914860248566,7.34765291213989,386.500595092773,386.456878662109,0.0781664170778058
+1814,305074,3799298,305174,3799198,13,18,28.6842105263158,0.098078205830886,18.0510840984931,0.652169312169312,17.3185839653505,0.0176231906088919,0.152631578947368,15.2631578947368,4,80.1791275381343,0.775776397515528,8.42105263157895,13.9067946631333,0,386.736349105835,386.557098388672,0.263070249807683
+1815,305074,3799198,305174,3799098,14,18,5.81717451523546,0.0566874033701451,11.990498506132,0.634920634920635,NA,0.0106178603482124,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,60.8459129333496,46.7601776123047,387.362284342448,386.9453125,0.586023231334046
+1816,305074,3799098,305174,3798998,15,18,0,NA,NA,NA,NA,0.0139473803560564,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,79.5455551147461,77.9336318969727,388.343255996704,387.762786865234,0.531328048407769
+1817,305074,3798998,305174,3798898,16,18,0,NA,NA,NA,NA,0.0148112280813694,0.0609418282548476,6.09418282548476,4,65.9968158201178,0.624154086413326,2.77008310249307,116.130758805708,63.206901550293,388.835182189941,388.613983154297,0.267750670451071
+1818,305074,3798898,305174,3798798,17,18,0,NA,NA,NA,NA,0.0163307075973774,0.0473684210526316,4.73684210526316,3,63.9041712651465,0.688970738694496,2.36842105263158,85.2961167229547,47.0479354858398,388.681499481201,387.919525146484,0.531467773120435
+1819,305074,3798798,305174,3798698,18,18,3.601108033241,0.0175461010431402,4.40339679115222,0.270833333333333,10.3911504415599,0.00119176724011164,0,0,0,NA,NA,0,NA,NA,388.103012084961,387.390411376953,0.711298339339682
+1820,305074,3798698,305174,3798598,19,18,44.3213296398892,0.215952012838648,29.444367952289,0.553875824312554,10.3911504415599,0.0206538337655241,0.121883656509695,12.1883656509695,4,76.8354908492102,0.707605081422116,6.64819944598338,20.6170734275471,0,388.036527633667,387.402648925781,0.636558244568066
+1821,305074,3798598,305174,3798498,20,18,66.7590027700831,0.325277719338214,26.2977402971191,0.736960955710956,10.3911504415599,0.0268867103785803,0.254847645429363,25.4847645429363,2,93.9432197635411,0.852706501042706,25.207756232687,1.78500193098317,0,388.614059448242,387.980773925781,0.565467670439579
+1822,305074,3798498,305174,3798398,21,18,49.2105263157895,0.100957566002068,12.4153943368092,0.42583255524432,14.8848608334903,0.00573329266495468,0.0631578947368421,6.31578947368421,3,74.7056916685708,0.719101123595506,5,2.95504436890284,0,389.075704574585,388.671295166016,0.382426292765861
+1823,305074,3798398,305174,3798298,22,18,74.792243767313,0.364419021665219,22.1453239288225,0.671990171990172,15.5867255064659,0.0220727715776097,0.166204986149584,16.6204986149584,4,86.366550106913,0.677101967799642,13.5734072022161,0.692743364969889,0,389.631706237793,389.14306640625,0.647655044631435
+1824,305074,3798298,305174,3798198,23,18,75.0692520775623,0.18288436087273,13.1950264311433,0.533725071225071,11.6900441558284,0.03844405369356,0.293628808864266,29.3628808864266,6,87.9423993126168,0.740581049173596,14.9584487534626,1.02931207530903,0,390.458457946777,389.819244384766,0.59376441977273
+1825,305074,3798198,305174,3798098,24,18,74.792243767313,0.182209510832609,16.0209010846351,0.568334398976982,10.3911504415599,0.05948222418775,0.595567867036011,59.5567867036011,2,95.4476246114231,0.802191780821918,34.6260387811634,1.39782159494799,0,390.726844787598,390.336395263672,0.473550628142159
+1826,305074,3798098,305174,3797998,25,18,74.2105263157895,0.380615422628117,28.130761019871,0.831512944983819,10.3911504415599,0.0443942413540514,0.426315789473684,42.6315789473684,3,93.3504287870861,0.742626685548919,23.9473684210526,0.732140805986192,0,390.491073608398,390.016662597656,0.569979788764318
+1827,305074,3797998,305174,3797898,26,18,77.0083102493075,0.250144414871434,19.489721751246,0.606845617780555,14.9924457605356,0.0470499395622763,0.49584487534626,49.584487534626,4,91.7764673403279,0.730337638192623,24.0997229916898,1.20413352124518,0,390.445297241211,390.211059570312,0.373711891271915
+1828,305074,3797898,305174,3797798,27,18,73.4072022160665,0.357670521264011,28.5574358272644,0.805999777888833,10.3911504415599,0.0572396802068256,0.49584487534626,49.584487534626,3,94.3592861715995,0.832210085986521,41.8282548476454,0.691633440262779,0,390.168088277181,389.94677734375,0.280082167873489
+1829,305074,3797798,305174,3797698,28,18,27.7008310249307,0.0899800053494367,14.4217627181467,0.435846560846561,11.8258688975844,0.0301022662515455,0.243767313019391,24.3767313019391,6,84.0427327412582,0.722055015048646,13.2963988919668,6.49902454289523,0,390.033679962158,389.897430419922,0.182833070465883
+1830,305074,3797698,305174,3797598,29,18,13.6842105263158,0.0233948013908535,5.6116934897529,0.33936735778841,13.8548672034552,0.0218702421744398,0.165789473684211,16.5789473684211,7,76.9640566404858,0.585890450243763,9.47368421052632,8.39745199869549,0,389.985598246257,389.895202636719,0.135605640942712
+1831,305074,3797598,305174,3797498,30,18,3.601108033241,0.0116974006954268,3.30675541436949,0.311111111111111,32.9053096276904,-0.0258451950609932,0.191135734072022,19.1135734072022,1,92.8481599520577,0.918261066455338,19.1135734072022,12.2973535026329,0,389.954803466797,389.872528076172,0.138409615278621
+1832,305074,3797498,305174,3797398,31,18,18.005540166205,0.0877305052157008,19.8463175654646,0.529513888888889,51.9557522077996,-0.0573437789592433,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0,389.831057230632,389.762420654297,0.1300920910242
+1833,305074,3797398,305174,3797298,32,18,91.1357340720222,0.888102652798941,36.3649430070778,0.916919959473151,NA,0.0293311181941284,0.390581717451524,39.0581717451524,3,94.90186426741,0.860077519379845,37.3961218836565,0.184240256640928,0,389.725114822388,389.608459472656,0.157816353471579
+1834,305074,3797298,305174,3797198,33,18,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0838624198265423,0.760526315789474,76.0526315789474,1,99.2068511412989,0.946266968325792,76.0526315789474,0,0,390.155759175618,389.757781982422,0.54622250223782
+1835,305074,3797198,305174,3797098,34,18,78.393351800554,0.763930245416718,33.6419043013271,0.919316843345112,NA,0.00898072851810574,0.157894736842105,15.7894736842105,1,91.5743806754245,0.89094387755102,15.7894736842105,0,0,391.082155227661,390.496215820312,0.479284642380271
+1836,305074,3797098,305174,3796998,35,18,57.0637119113573,0.556076433059519,30.8538400249604,0.888349514563107,NA,-0.0354661404047486,0,0,0,NA,NA,0,NA,NA,391.734558105469,391.541900634766,0.342646721865962
+1837,305074,3796998,305174,3796898,36,18,84.2105263157895,0.820617648786863,34.4927384666951,0.921600877192982,NA,-0.0258877756029085,0,0,0,NA,NA,0,NA,NA,392.295541763306,392.010986328125,0.312920696854461
+1838,305074,3796898,305174,3796798,37,18,5,0.0128221507622947,4.21570033644131,0.343055555555556,21.1759796336116,-0.0511622400906115,0,0,0,NA,NA,0,NA,NA,392.665952046712,392.546051025391,0.171712228883642
+1839,305074,3796798,305174,3796698,38,18,15.2354570637119,0.148467008826571,20.4537576236263,0.748484848484849,NA,-0.0535639120990454,0.0221606648199446,2.21606648199446,2,56.8482855749007,0.488668555240793,1.66204986149584,2.8667973279953,0,392.734317779541,392.418334960938,0.346305472964368
+1840,305074,3796698,305174,3796598,39,18,67.3130193905817,0.655954238997394,32.7845314070337,0.901920438957476,NA,0.0467021483030261,0.476454293628809,47.6454293628809,3,95.4430983292795,0.734882245923255,42.1052631578947,4.72433205815249,0,391.910045623779,390.359619140625,1.25018726263956
+1841,305074,3796598,305174,3796498,40,18,2.21606648199446,0.0215952012838648,7.76451734950849,0.375,NA,0.0250443994355866,0.14404432132964,14.404432132964,2,89.8758827025257,0.803098069161121,14.1274238227147,30.8164381339,0,390.439458211263,388.519714355469,1.46550345506709
+1842,305074,3796498,305174,3796398,41,18,0.277008310249307,0.0026994001604831,0,0,NA,0.0346746302614386,0.279778393351801,27.9778393351801,3,90.3424762293798,0.846578835529112,20.4986149584488,43.5385560328417,5.19557523727417,391.427404403687,390.926483154297,0.744890468064101
+1843,305074,3796398,305174,3796298,42,18,14.2105263157895,0.0728838043330437,12.209914718095,0.320754716981132,31.1734510129318,0.00139356146461834,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,2.80220580101013,0,392.553082784017,392.160034179688,0.588901789525436
+1844,305074,3796298,305174,3796198,43,18,14.6814404432133,0.143068208505604,16.7723619256358,0.773584905660377,NA,0.00645604642272386,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,8.32116072518485,0,393.217247009277,392.846710205078,0.291065311875643
+1845,305074,3796198,305174,3796098,44,18,5.81717451523546,0.0566874033701451,23.0753336971912,0.396825396825397,NA,0.0142703558899144,0.038781163434903,3.8781163434903,5,46.2940617495256,0.427809798270893,1.66204986149584,30.3158794811794,11.6176595687866,393.50840250651,393.393402099609,0.125196148887421
+1846,305074,3796098,305174,3795998,45,18,17.7285318559557,0.172761610270919,24.0473470328892,0.7734375,NA,0.0152752727179509,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,10.5944701830546,0,393.687660217285,393.535217285156,0.177695024054105
+1847,305074,3795998,305174,3795898,46,18,0,NA,NA,NA,NA,0.00962590971953193,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,87.011609395345,83.7761306762695,393.866221110026,393.744476318359,0.165612573389697
+1848,305074,3795898,305174,3795798,47,18,0,NA,NA,NA,NA,0.0117713018164038,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,86.6267433166504,79.307014465332,393.956586837769,393.838928222656,0.149693280305309
+1849,305074,3795798,305174,3795698,48,18,0,NA,NA,NA,NA,0.00943948901327037,0,0,0,NA,NA,0,NA,NA,393.910413106283,393.776214599609,0.199598417219547
+1850,305074,3795698,305174,3795598,49,18,0,NA,NA,NA,NA,0.0102406978867772,0.038781163434903,3.8781163434903,2,69.7937663778274,0.79193083573487,3.32409972299169,69.4608691079276,56.1987419128418,394.092311859131,393.797332763672,0.357076946627472
+1851,305074,3795598,305174,3795498,50,18,0,NA,NA,NA,NA,0.0175789977626808,0.0394736842105263,3.94736842105263,4,54.8985011029376,0.479452054794521,1.84210526315789,45.9618714650472,25.977876663208,394.521827697754,394.214538574219,0.37294989757179
+1852,305074,3795498,305174,3795398,51,18,41.2742382271468,0.201105311955991,23.5920532689333,0.789193527253669,15.5867255064659,0.0151617753062385,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,4.02681461970011,0,395.157245635986,394.756042480469,0.403288335387305
+1853,305074,3795398,305174,3795298,52,18,21.606648199446,0.0701844041725607,14.3403178058792,0.53968253968254,19.5355529569589,0.0198888845507628,0.07202216066482,7.20221606648199,1,84.8544079576361,0.921150345831817,7.20221606648199,24.6175136566162,15.5867252349854,395.77747853597,395.501922607422,0.358000148485976
+1854,305074,3795298,305174,3795198,53,18,25.7617728531856,0.251044214924928,24.5898645125169,0.826164874551971,NA,0.0346733358662008,0.274238227146814,27.4238227146814,2,92.6785282821765,0.845183978042714,25.207756232687,28.3877500283598,0,395.943723678589,395.765594482422,0.267058031685477
+1855,305074,3795198,305174,3795098,54,18,34.4736842105263,0.0884053552558216,13.7879904344964,0.572840354090354,24.299969968665,0.0300225840933021,0.163157894736842,16.3157894736842,6,84.0375969067868,0.84509666899604,14.4736842105263,9.63865014814561,0,395.850679397583,395.771453857422,0.122781908997623
+1856,305074,3795098,305174,3794998,55,18,9.97229916897507,0.0485892028886958,7.56446043827202,0.458333333333333,46.4706374105646,0.0204022016325748,0.130193905817175,13.0193905817175,4,77.2503387396074,0.669466560509554,6.64819944598338,34.1255221671247,5.19557523727417,396.035336812337,395.893951416016,0.252286281647049
+1857,305074,3794998,305174,3794898,56,18,18.2825484764543,0.0890802052959424,15.1266795205401,0.651515151515151,14.6953058096335,0.0240909345605428,0.074792243767313,7.4792243767313,5,64.0910360675042,0.597827600612728,2.49307479224377,34.6242000968368,5.19557523727417,396.670761108398,396.28857421875,0.61222782988033
+1858,305074,3794898,305174,3794798,57,18,11.3573407202216,0.110675406579807,26.1361066895658,0.597560975609756,NA,0.0267034852026315,0.10803324099723,10.803324099723,7,70.0665738068961,0.620544672718586,6.64819944598338,24.2426783732879,0,398.081921895345,397.310516357422,1.10786920549673
+1859,305074,3794798,305174,3794698,58,18,12.8947368421053,0.066135303931836,15.3779436162917,0.444444444444444,57.1513274285795,0.0302137717375827,0.157894736842105,15.7894736842105,5,88.8079728505091,0.577524038461539,14.4736842105263,23.1043690125147,0,398.442026138306,397.466583251953,0.708092752013861
+1860,305074,3794698,305174,3794598,59,18,48.7534626038781,0.475094428245026,34.1519203591368,0.776515151515151,NA,0.023447508746305,0.0886426592797784,8.86426592797784,6,69.8964994061281,0.704582651391162,6.37119113573407,12.9610811322927,0,398.182373046875,397.804321289062,0.42386793997189
+1861,305074,3794598,305174,3794498,60,18,48.1994459833795,0.15656520930802,15.5357308955874,0.61140873015873,12.9406814039161,0.0201425836587022,0.105263157894737,10.5263157894737,3,79.5754593328593,0.787114845938375,5.81717451523546,8.33063701579445,0,398.558868408203,397.777374267578,1.45227160052098
+1862,305074,3794498,305174,3794398,61,18,35.1800554016621,0.342823820381354,29.0448413762357,0.769028871391076,NA,0.00100953894867326,0,0,0,NA,NA,0,NA,NA,402.553385416667,400.135986328125,3.19561398100921
+1863,305074,3794398,305174,3794298,62,18,40.7894736842105,0.139469008291627,14.4896680377476,0.652800975635621,13.8548672554132,0.0161588060288953,0.0421052631578947,4.21052631578947,3,66.698381328035,0.652014652014652,3.15789473684211,4.62278515100479,0,401.037010192871,398.953582763672,1.92593325051324
+1864,305074,3794298,305174,3794198,63,18,56.786703601108,0.276688516449518,22.8632643078165,0.736929922135706,10.3911503376439,0.0166864037112588,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,2.96890006746565,0,398.938474019368,398.682647705078,0.537644739297335
+1865,305074,3794198,305174,3794098,64,18,16.0664819944598,0.039141302327005,7.88837555213028,0.460503472222222,23.3800884935098,0.0184566316362441,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,20.1434162139893,15.5867252349854,398.468814849854,398.234436035156,0.255732083245194
+1866,305074,3794098,305174,3793998,65,18,11.0803324099723,0.053988003209662,12.2419963016419,0.604166666666667,14.6953058096335,0.0237745403634143,0.0803324099722992,8.03324099722992,3,77.4271992660421,0.745513970776724,6.37119113573407,17.7057105261704,5.19557523727417,398.223383585612,398.046539306641,0.205037191760509
+1867,305074,3793998,305174,3793898,66,18,33.6842105263158,0.345523220541837,35.728263639512,0.736979166666667,NA,0.0174566536206265,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,1.73185841242472,0,398.118152618408,397.990173339844,0.171007404271981
+1868,305074,3793898,305174,3793798,67,18,24.9307479224377,0.0485892028886958,8.11318537513777,0.301827485380117,17.8843154937364,0.0231185306847062,0.0692520775623269,6.92520775623269,7,55.5228643657008,0.489657738095238,2.49307479224377,13.8457409858704,5.19557523727417,398.272453308105,398.046691894531,0.329180516892703
+1869,305074,3793798,305174,3793698,68,18,42.382271468144,0.206504112276957,21.5496652162486,0.745308924485126,10.3911503376439,0.0215462791010121,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,5.19557523727417,0,399.365734100342,398.450378417969,0.826037173041353
+1870,305074,3793698,305174,3793598,69,18,44.8753462603878,0.218651412999131,23.1711153325997,0.760971645295286,41.5646013505757,0.0316002642088621,0.119113573407202,11.9113573407202,4,76.7236656518271,0.668894129979036,5.26315789473684,3.68266102325085,0,400.285562515259,399.971374511719,0.357403060957861
+1871,305074,3793598,305174,3793498,70,18,36.0526315789474,0.0924544554965462,13.0726754708737,0.507714646464646,16.1999800440575,0.0340625881717929,0.255263157894737,25.5263157894737,6,82.8186351644766,0.722188375776776,10.7894736842105,5.69526358240658,0,400.758331298828,400.507690429688,0.457862412150351
+1872,305074,3793498,305174,3793398,71,18,37.9501385041551,0.123272607328728,18.2324963794534,0.674671582337486,22.5141592034498,0.0367902124030038,0.301939058171745,30.1939058171745,6,84.8671764954242,0.694585448392555,16.0664819944598,8.49591226752745,0,401.278150558472,400.817199707031,0.475866260769256
+1873,305074,3793398,305174,3793298,72,18,21.606648199446,0.105276606258841,13.3933680877479,0.392857142857143,36.3690265454597,0.0203152255155166,0.0969529085872576,9.69529085872576,6,72.2635935571148,0.637243494817009,6.37119113573407,12.3912252834865,5.19557523727417,401.643892923991,400.932312011719,0.579168948499645
+1874,305074,3793298,305174,3793198,73,18,36.01108033241,0.0501317172661147,8.91154233781008,0.396141930950784,16.5116948143027,0.0232330866698183,0.0775623268698061,7.75623268698061,3,75.7592408248262,0.68682015348682,4.70914127423823,7.4991101707731,0,401.749073028564,401.278564453125,0.483954520249652
+1875,305074,3793198,305174,3793098,74,18,36.5789473684211,0.125072207435717,14.5407489277209,0.774774220032841,26.100955371324,0.0265312362079337,0.0526315789473684,5.26315789473684,5,53.9245231818348,0.557347670250896,1.57894736842105,6.4666524887085,0,401.260009765625,400.780212402344,0.525978012885507
+1876,305074,3793098,305174,3792998,75,18,10.803324099723,0.0526383031294205,11.1716274960948,0.518481182795699,20.7823006752878,0.0229521832211138,0.191135734072022,19.1135734072022,2,90.9378798792687,0.795652666138345,17.7285318559557,13.8961125042128,0,401.206777572632,400.80908203125,0.315609482203334
+1877,305074,3792998,305174,3792898,76,18,13.5734072022161,0.066135303931836,13.124517956259,0.633333333333333,31.1734510129318,0.038888558047376,0.25207756232687,25.207756232687,4,85.8629863043211,0.801920438957476,11.6343490304709,8.87695941296253,0,401.249799092611,400.689788818359,0.60019433079293
+1878,305074,3792898,305174,3792798,77,18,12.1883656509695,0.118773607061256,15.9699783514179,0.776515151515151,NA,0.0429004709584864,0.307479224376731,30.7479224376731,4,89.2021724728475,0.7834,20.7756232686981,29.6477352477409,0,401.02752494812,400.532989501953,0.737394780634027
+1879,305074,3792798,305174,3792698,78,18,13.6842105263158,0.0701844041725606,11.8392671897173,0.485260770975057,36.3690261817537,0.0421818532486979,0.305263157894737,30.5263157894737,6,86.1656517404002,0.732683982683983,16.3157894736842,13.3331310009134,0,401.049359639486,400.553833007812,1.03909129093463
+1880,305074,3792698,305174,3792598,79,18,13.0193905817175,0.126871807542706,20.3152334185053,0.613475177304965,NA,0.0423786252285331,0.368421052631579,36.8421052631579,3,94.9557105686598,0.784090909090909,35.180055401662,19.2656859491104,0,402.37965965271,401.149932861328,1.18384800837474
+1881,305074,3792598,305174,3792498,80,18,6.09418282548476,0.0296934017653141,6.76230983754974,0.572222222222222,21.4219054085159,0.0233556692551133,0.0997229916897507,9.97229916897507,7,67.7930382722238,0.537179487179487,4.43213296398892,20.6271666553285,5.19557523727417,402.957229614258,401.974151611328,0.821931263993084
+1882,305074,3792498,305174,3792398,81,18,2.21606648199446,0.0107976006419324,3.93426657042754,0.327777777777778,72.7380530909194,0.00738557777031448,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,27.2666268348694,5.19557523727417,402.185461044312,400.933929443359,1.12855087568026
+1883,305074,3792398,305174,3792298,82,18,31.3157894736842,0.0803071547743723,12.7372304315176,0.69284809740742,21.0853916662965,0.0220794795372153,0.0921052631578947,9.21052631578947,5,71.4408825926718,0.658170914542729,5.52631578947368,6.24190868650164,0,400.702123006185,400.378143310547,0.429285651345124
+1884,305074,3792298,305174,3792198,83,18,55.4016620498615,0.26994001604831,21.8005940961575,0.773117386489479,41.5646017662397,0.038259904307013,0.385041551246537,38.5041551246537,3,92.5144686507438,0.839948215932468,23.8227146814404,1.78788803635741,0,400.846961975098,400.386077880859,0.504770314853987
+1885,305074,3792198,305174,3792098,84,18,62.8808864265928,0.306381918214832,25.7497213047992,0.805940915692119,31.1734513246797,0.0309938276082989,0.362880886426593,36.2880886426593,3,92.4041049579576,0.862088411861015,31.8559556786704,0.891525355914167,0,401.349830627441,400.803649902344,0.696867977158538
+1886,305074,3792098,305174,3791998,85,18,54.2936288088643,0.264541215727344,17.7365516074159,0.726084373143197,36.3690265454597,0.0264290829839806,0.279778393351801,27.9778393351801,2,93.0877609264738,0.846578835529112,25.4847645429363,0.102882677965825,0,401.358963012695,400.511413574219,0.965397033195297
+1887,305074,3791998,305174,3791898,86,18,57.3684210526316,0.294234617492658,25.7259195453221,0.783370514965607,26.4923394249063,0.0184344866473494,0.197368421052632,19.7368421052632,2,87.9428294678318,0.792349726775956,13.1578947368421,1.65069847742716,0,401.175382614136,400.488342285156,0.808046709064664
+1888,305074,3791898,305174,3791798,87,18,60.6648199445983,0.197056211715266,18.2201580280123,0.692103482219761,22.5141592346246,0.0154724470666428,0.0332409972299169,3.32409972299169,4,47.8607650886615,0.452384965447497,1.38504155124654,5.62853984038035,0,401.586344401042,400.639495849609,0.876744465099923
+1889,305074,3791798,305174,3791698,88,18,67.8670360110803,0.66135303931836,32.1272808089531,0.90952380952381,NA,0.0242756460217286,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,4.45335006713867,0,402.293676376343,401.591156005859,0.782713018530104
+1890,305074,3791698,305174,3791598,89,18,77.2853185595568,0.376566322387393,25.5440187922067,0.613252470799641,25.9778761038998,0.0348936318726996,0.329639889196676,32.9639889196676,3,93.0699046065383,0.75137741046832,26.8698060941828,1.11989888824335,0,403.166987101237,402.592132568359,0.699697337099924
+1891,305074,3791598,305174,3791498,90,18,49.2105263157895,0.25239391500517,20.7622787607399,0.851828981416137,25.9778758441098,0.0292344645826808,0.178947368421053,17.8947368421053,4,85.4014574862205,0.826007326007326,14.2105263157895,0.534838620354148,0,403.400129318237,403.072937011719,0.465490504819618
+1892,305074,3791498,305174,3791398,91,18,75.9002770083102,0.73963564397237,33.5925782923986,0.917274939172749,NA,0.0376218799659673,0.285318559556787,28.5318559556787,3,91.2409205937605,0.742845170752147,20.7756232686981,3.34436464772641,0,403.877909342448,403.031585693359,1.25661664878954
+1893,305074,3791398,305174,3791298,92,18,84.2105263157895,0.820617648786863,34.8210957346508,0.924342105263158,NA,0.0412948860949224,0.290858725761773,29.0858725761773,8,78.6680812520918,0.626942791005291,11.0803324099723,1.5544277145749,0,405.184427261353,403.351043701172,1.41198226826532
+1894,305074,3791298,305174,3791198,93,18,84.7645429362881,0.826016449107829,34.8820532975279,0.923747276688453,NA,0.0499687851589257,0.590027700831025,59.0027700831025,4,96.3888289625653,0.833691646191646,56.2326869806094,0.439062696107676,0,406.147605895996,404.798095703125,1.02081010315126
+1895,305074,3791198,305174,3791098,94,18,57.6315789473684,0.2955843175729,24.6358467301253,0.813731860515486,10.3911504415599,0.0592420532928755,0.673684210526316,67.3684210526316,3,97.1184034180887,0.827620967741935,63.9473684210526,2.52078965120018,0,406.231321334839,405.609222412109,0.552332032433454
+1896,305074,3791098,305174,3790998,95,18,81.1634349030471,0.790924247021549,34.8384700771231,0.904436860068259,NA,0.0869620220653114,0.872576177285319,87.2576177285319,1,99.6081737630215,0.643280632411067,87.2576177285319,1.30337869856093,0,406.089101155599,405.6982421875,0.486128066663006
+1897,305074,3790998,305174,3790898,96,18,33.5180055401662,0.326627419418455,31.9895326457397,0.761707988980716,NA,0.0624402782678945,0.565096952908587,56.5096952908587,1,98.1651884454077,0.817992370132598,56.5096952908587,6.16978369273391,0,404.950160980225,404.233459472656,0.868256430659494
+1898,305074,3790898,305174,3790798,97,18,29.3628808864266,0.0715341042528022,11.8872655475041,0.623358585858586,18.6060760556271,0.0161661172324857,0.0609418282548476,6.09418282548476,3,76.0834007280729,0.530192608016658,4.98614958448754,5.90406276962974,5.19557523727417,403.920977274577,403.659698486328,0.46086820150254
+1899,305074,3790798,305174,3790698,98,18,16.3157894736842,0.0557876033166508,10.9823149523833,0.426587301587302,20.7823008831198,0.00161921097368529,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483,403.542293548584,403.445587158203,0.171366557500136
+1900,305074,3790698,305174,3790598,99,18,0,NA,NA,NA,NA,0.00585306030619617,0,0,0,NA,NA,0,NA,NA,403.554470062256,403.446838378906,0.142237085213082
+1901,305174,3800598,305274,3800498,0,19,4.98614958448753,0.0485892028886958,9.36478696157314,0.638888888888889,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.700294494629,384.311065673828,0.457395060228054
+1902,305174,3800498,305274,3800398,1,19,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.374437120226,385.207366943359,0.269081438918137
+1903,305174,3800398,305274,3800298,2,19,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.342562357585,385.1640625,0.212315645615374
+1904,305174,3800298,305274,3800198,3,19,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.0087890625,384.910858154297,0.198545502134691
+1905,305174,3800198,305274,3800098,4,19,17.7285318559557,0.0575872034236395,9.14509387515445,0.325925925925926,11.6176592829322,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.738560994466,384.6474609375,0.127274272515766
+1906,305174,3800098,305274,3799998,5,19,5.52631578947368,0.0566874033701451,20.0267194595159,0.436507936507937,NA,0.00983954628655307,0.0263157894736842,2.63157894736842,2,31.8747015751665,0.486486486486487,1.31578947368421,11.6900444030762,0,384.611924913194,384.582092285156,0.0557445406106599
+1907,305174,3799998,305274,3799898,6,19,34.3490304709141,0.0836814049749762,14.4555403830734,0.552177177177177,14.5944590849152,0.0114621897403008,0.03601108033241,3.601108033241,2,65.6056090786984,0.827107279693487,2.77008310249307,19.0533505953275,10.3911504745483,384.685567220052,384.623016357422,0.121703197533964
+1908,305174,3799898,305274,3799798,7,19,55.9556786703601,0.181759610805862,15.8556444168184,0.746875,19.7174933050784,0.0268326630165502,0.0803324099722992,8.03324099722992,6,61.1654021629513,0.629838502947962,3.04709141274238,4.22911777167485,0,385.111399332682,384.865997314453,0.411635241160158
+1909,305174,3799798,305274,3799698,8,19,76.7313019390582,0.747733844453819,33.5554452049532,0.918772563176895,NA,0.0167671408159557,0.113573407202216,11.3573407202216,6,69.6302454568601,0.591259057971014,5.26315789473684,0.400728086145913,0,385.810788472493,385.491943359375,0.37775469111673
+1910,305174,3799698,305274,3799598,9,19,38.9473684210526,0.133170407917166,12.5971864324659,0.582621082621083,18.136256572738,0.0825085767607417,0.723684210526316,72.3684210526316,1,99.0509812333555,0.964931709117756,72.3684210526316,8.64437235918912,0,386.3539191352,386.195220947266,0.238065747050887
+1911,305174,3799598,305274,3799498,10,19,7.75623268698061,0.0755832044935268,19.7287863521891,0.571428571428571,NA,0.111163698229681,0.972299168975069,97.2299168975069,1,99.9214168105618,1,97.2299168975069,26.9736040324567,0,386.55052947998,386.503662109375,0.0734025858067272
+1912,305174,3799498,305274,3799398,11,19,85.595567867036,0.834114649589279,36.3957168758683,0.887810140237325,NA,0.0346898139055799,0.299168975069252,29.9168975069252,2,94.8554380102356,0.868288233505625,29.6398891966759,1.01645609626064,0,386.42008972168,386.337860107422,0.0882699348959798
+1913,305174,3799398,305274,3799298,12,19,59.2797783933518,0.288835817171692,29.673341281681,0.748121131741821,15.5867255064659,0.0100864211711815,0.0526315789473684,5.26315789473684,2,72.161538872763,0.854406130268199,3.601108033241,0.546902656555176,0,386.387054443359,386.325866699219,0.107439900713768
+1914,305174,3799298,305274,3799198,13,19,25,0.128221507622947,24.6183378287413,0.683227943390545,75.6487163911779,0.0383393555736347,0.447368421052632,44.7368421052632,1,97.3229100554683,0.884375475429789,44.7368421052632,23.6741183224846,0,386.494778951009,386.374969482422,0.199654718432637
+1915,305174,3799198,305274,3799098,14,19,16.0664819944598,0.15656520930802,17.7502468487685,0.790229885057471,NA,-0.00296338154005846,0,0,0,NA,NA,0,NA,NA,386.832146538628,386.582214355469,0.474360588147981
+1916,305174,3799098,305274,3798998,15,19,0,NA,NA,NA,NA,0.00792736276717302,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,37.6325136820475,34.8529777526855,387.710817972819,387.221282958984,0.61627580582472
+1917,305174,3798998,305274,3798898,16,19,4.43213296398892,0.0431904025677296,7.77045346879913,0.6875,NA,0.0112475628782281,0.0554016620498615,5.54016620498615,4,63.9894151694966,0.624349635796046,3.04709141274238,41.9885697841644,11.6176595687866,388.139573838976,387.712097167969,0.6351390815841
+1918,305174,3798898,305274,3798798,17,19,9.47368421052632,0.0971784057773917,14.0842285194333,0.675925925925926,NA,0.00340817505769481,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,57.1513290405273,57.1513290405273,387.66291809082,387.115295410156,0.698825941156783
+1919,305174,3798798,305274,3798698,18,19,15.5124653739612,0.151166408987054,17.0800666172619,0.758928571428572,NA,0.00996789449753809,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,5.19557523727417,5.19557523727417,387.108778211806,386.947204589844,0.34244579364289
+1920,305174,3798698,305274,3798598,19,19,12.1883656509695,0.118773607061256,15.7255987543201,0.776515151515151,NA,0.0125971279047315,0.110803324099723,11.0803324099723,1,88.8657567935558,0.98321476728507,11.0803324099723,35.3299115657806,20.7823009490967,387.224225362142,386.970367431641,0.337487597650914
+1921,305174,3798598,305274,3798498,20,19,32.1329639889197,0.0782826046540099,9.60765218819566,0.485303287981859,15.3517971793933,0.0164900218590741,0.155124653739612,15.5124653739612,6,72.9570435947058,0.646138245732635,4.98614958448754,2.53350497143609,0,387.943603515625,387.492431640625,0.643299271891768
+1922,305174,3798498,305274,3798398,21,19,50.2631578947368,0.515585430652272,36.0091647061268,0.793193717277487,NA,0.0118416677296122,0.113157894736842,11.3157894736842,2,86.2058524566642,0.874711506758984,10.5263157894737,0.604136655496996,0,388.682563781738,388.378051757812,0.322761141730906
+1923,305174,3798398,305274,3798298,22,19,69.8060941828255,0.170062210110435,11.6429126735755,0.486265985651903,13.6021925074905,0.0381855122771682,0.310249307479224,31.0249307479224,4,86.9384608555399,0.79186051135234,17.7285318559557,2.82494645885059,0,389.108751085069,388.915618896484,0.347810232288506
+1924,305174,3798298,305274,3798198,23,19,59.5567867036011,0.193457011501289,14.2054096716172,0.371942335710452,10.3911503722826,0.0402567552153016,0.282548476454294,28.2548476454294,5,88.698364703036,0.801970588855834,19.6675900277008,4.13896223143035,0,389.604329427083,389.298522949219,0.558740863654687
+1925,305174,3798198,305274,3798098,24,19,77.2853185595568,0.753132644774785,34.5601333169312,0.878136200716846,NA,0.0307083973042246,0.268698060941828,26.8698060941828,3,88.5850140096718,0.756378439568095,15.7894736842105,2.90798314576296,0,389.866370307075,389.315460205078,0.741772776762004
+1926,305174,3798098,305274,3797998,25,19,78.9473684210526,0.404910024072465,19.1218012662695,0.665259009009009,16.4298514359663,0.0227148711298612,0.184210526315789,18.4210526315789,5,81.6701144571713,0.70102281667978,7.10526315789474,3.85217300142561,0,389.655616760254,389.344848632812,0.528303216210196
+1927,305174,3797998,305274,3797898,26,19,75.9002770083102,0.73963564397237,34.2280473676705,0.895377128953771,NA,0.09077344294866,0.653739612188366,65.3739612188366,3,97.1843993791597,0.829732426303855,60.6648199445983,2.0447625911842,0,389.914105733236,389.583190917969,0.371050779419399
+1928,305174,3797898,305274,3797798,27,19,73.9612188365651,0.720739842848988,33.0770227838842,0.917602996254682,NA,0.0955409000815057,0.833795013850416,83.3795013850416,1,99.4714344797886,0.734714873603762,83.3795013850416,2.89537112974249,0,389.831166585286,389.751953125,0.162215414346184
+1929,305174,3797798,305274,3797698,28,19,0,NA,NA,NA,NA,0.0360957280280977,0.254847645429363,25.4847645429363,2,93.3941762563934,0.918170278357059,24.9307479224377,55.6505452860957,31.1734504699707,389.832547505697,389.768371582031,0.0675953036863418
+1930,305174,3797698,305274,3797598,29,19,15.2631578947368,0.039141302327005,8.82201165061467,0.244791666666667,12.9889379740129,0.00521616668893809,0.0815789473684211,8.1578947368421,2,81.0066776031089,0.608022922636103,6.57894736842105,5.63976024812268,0,389.904822455512,389.874938964844,0.0732991915398312
+1931,305174,3797598,305274,3797498,30,19,36.5650969529086,0.0890802052959424,12.6714136933041,0.664031719824235,22.2098103626925,0.0361965736623375,0.335180055401662,33.5180055401662,3,91.0508281320312,0.82907196969697,26.5927977839335,8.35390485416759,0,389.97455851237,389.900207519531,0.158364223313074
+1932,305174,3797498,305274,3797398,31,19,66.4819944598338,0.323928019257972,27.730902535755,0.708243469925713,10.3911504415599,0.0182103319942111,0.254847645429363,25.4847645429363,3,88.8587321645181,0.746327862906882,15.2354570637119,3.48161599947059,0,389.952663845486,389.837585449219,0.224866176971955
+1933,305174,3797398,305274,3797298,32,19,99.7229916897507,0.971784057773917,37.6464169659479,0.931018518518519,NA,0.0487618581643405,0.457063711911357,45.7063711911357,5,92.5694040136635,0.763711734693878,34.3490304709141,0,0,389.850936889648,389.748291015625,0.287363663156407
+1934,305174,3797298,305274,3797198,33,19,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0824392038688529,0.778947368421053,77.8947368421052,1,99.2806056729252,0.959391296913738,77.8947368421052,0,0,390.35545179579,389.966857910156,0.646714739157209
+1935,305174,3797198,305274,3797098,34,19,87.8116343490305,0.855709850873143,36.2071600780226,0.915878023133544,NA,0.0258357016690125,0.290858725761773,29.0858725761773,2,91.2116282273702,0.843315972222222,18.005540166205,0,0,391.206965128581,390.940460205078,0.383299200132756
+1936,305174,3797098,305274,3796998,35,19,81.7174515235457,0.796323047342515,35.7335790099714,0.912994350282486,NA,0.0253972884469441,0.368421052631579,36.8421052631579,1,96.4027280994676,0.934573002754821,36.8421052631579,0.234386852809361,0,391.84080335829,391.577301025391,0.530799843279626
+1937,305174,3796998,305274,3796898,36,19,53.7396121883656,0.523683631133722,34.9003085221363,0.84192439862543,NA,-0.0189600715601857,0,0,0,NA,NA,0,NA,NA,392.576482137044,392.174926757812,0.414727615667555
+1938,305174,3796898,305274,3796798,37,19,4.47368421052632,0.0229449013641064,7.72326740442068,0.322222222222222,73.4765286954649,-0.0690492607849209,0,0,0,NA,NA,0,NA,NA,392.930694580078,392.757720947266,0.245611304498472
+1939,305174,3796798,305274,3796698,38,19,57.3407202216066,0.279387916610001,21.8769697677211,0.81641569064882,18.7329127343573,-0.0246086958394298,0.296398891966759,29.6398891966759,1,95.3511148378513,0.948451715556281,29.6398891966759,0.788690295174857,0,393.189954121908,392.910034179688,0.393222540121604
+1940,305174,3796698,305274,3796598,39,19,76.1772853185596,0.371167522066427,17.9791910453856,0.532661782661783,10.3911504415599,0.0580445137442479,0.756232686980609,75.6232686980609,2,98.9484261157853,0.791681463068182,75.3462603878116,0.892563568366753,0,391.869608561198,388.5,2.98771481036044
+1941,305174,3796598,305274,3796498,40,19,0,NA,NA,NA,NA,0.0253815508395668,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.722378877210971,8.03324099722992,74.9669063831198,27.9790287017822,388.594319661458,388.5,1.01604103716048
+1942,305174,3796498,305274,3796398,41,19,0,NA,NA,NA,NA,0.0302634121237179,0.25207756232687,25.207756232687,1,94.4903267234909,0.958733424782808,25.207756232687,69.0826234712706,25.977876663208,391.170417785645,390.813262939453,1.10783510178105
+1943,305174,3796398,305274,3796298,42,19,13.6842105263158,0.0280737616690243,7.24927384694567,0.455809523809524,20.7823007688122,0.0160882919109243,0.0789473684210526,7.89473684210526,5,73.0379904996317,0.579008746355685,5.26315789473684,8.90526065826416,0,392.597340901693,392.306365966797,0.523807644651471
+1944,305174,3796298,305274,3796198,43,19,7.75623268698061,0.0755832044935268,15.6211028534541,0.666666666666667,NA,0.016443080682119,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,18.2910513877869,5.19557523727417,392.977821350098,392.819030761719,0.219416558003067
+1945,305174,3796198,305274,3796098,44,19,20.2216066481994,0.0656854039050888,11.6167289428552,0.504563492063492,25.9778758441098,0.0257071502763669,0.07202216066482,7.20221606648199,5,65.3001337680246,0.658318165271205,4.15512465373961,6.40953423426701,0,393.380099826389,393.140502929688,0.323163357681291
+1946,305174,3796098,305274,3795998,45,19,20.2216066481994,0.197056211715266,26.1343301323785,0.780821917808219,NA,0.0157506853063353,0.0304709141274238,3.04709141274238,6,29.7001725491467,0.312380952380952,0.831024930747922,22.2328434857455,0,393.94394938151,393.661743164062,0.356710469841479
+1947,305174,3795998,305274,3795898,46,19,3.42105263157895,0.0350922020862803,7.84984394871604,0.602564102564103,NA,0.00879795696566457,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210527,30.5128365357717,5.19557523727417,394.264831542969,393.980438232422,0.435812537390306
+1948,305174,3795898,305274,3795798,47,19,8.86426592797784,0.0863808051354593,12.1974289725147,0.75,NA,0.00949823721383738,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0,394.382364908854,394.180755615234,0.415848413323502
+1949,305174,3795798,305274,3795698,48,19,0,NA,NA,NA,NA,0.00655956537893544,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,51.955753326416,51.955753326416,394.484137641059,394.190490722656,0.504977600463289
+1950,305174,3795698,305274,3795598,49,19,9.41828254847645,0.0917796054564255,15.7716149451542,0.720588235294118,NA,0.0195787006777413,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,14.2459764480591,0,394.769373575846,394.309020996094,0.502589257092894
+1951,305174,3795598,305274,3795498,50,19,17.6315789473684,0.0904299053761839,10.5076722870619,0.665254237288136,25.9778760103754,0.0172969075791738,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,17.2007837295532,0,394.994171142578,394.812835693359,0.309709189680247
+1952,305174,3795498,305274,3795398,51,19,26.5927977839335,0.129571207703189,16.6849819160025,0.724920634920635,49.0149582505366,0.0165247767319992,0.0498614958448753,4.98614958448753,2,76.5776966368913,0.844077313465069,4.70914127423823,23.984823624293,5.19557523727417,395.166979471842,394.9892578125,0.219347336000538
+1953,305174,3795398,305274,3795298,52,19,29.6398891966759,0.0962786057238973,15.705090919683,0.675820707070707,28.2718181614373,0.0103750197412211,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,1.29889380931854,0,395.547444661458,395.341613769531,0.221251518256597
+1954,305174,3795298,305274,3795198,53,19,9.14127423822715,0.0296934017653141,8.68535259778085,0.250319284802043,39.4254500008237,0.0270070246739865,0.238227146814404,23.8227146814404,3,91.7322814562012,0.836981580510992,22.4376731301939,29.3111535449361,11.6176595687866,395.706377665202,395.627288818359,0.0836886906903239
+1955,305174,3795198,305274,3795098,54,19,54.7368421052632,0.140368808345121,10.1571489125559,0.454406850459482,11.9966714355567,0.0323920635612969,0.15,15,5,82.4349386313142,0.747899159663866,10.7894736842105,20.7426525835405,0,395.893732706706,395.768127441406,0.186356775090835
+1956,305174,3795098,305274,3794998,55,19,39.0581717451524,0.190307711314059,14.5680937766192,0.389880952380952,10.3911504415599,0.0206766986709007,0.124653739612188,12.4653739612188,5,74.8889142612952,0.684335443037975,7.20221606648199,20.2944092644586,5.19557523727417,396.241363525391,396.037078857422,0.23517759192344
+1957,305174,3794998,305274,3794898,56,19,38.781163434903,0.125972007489211,20.5982353177936,0.694008720550682,13.8548672554132,0.0143054826019635,0.0526315789473684,5.26315789473684,2,71.509663588221,0.672413793103448,3.32409972299169,8.71936459290354,0,396.596616109212,396.386810302734,0.321867909934629
+1958,305174,3794898,305274,3794798,57,19,17.1745152354571,0.0836814049749762,12.7793922369518,0.359289617486339,16.4298514359663,0.0326455614072918,0.21606648199446,21.606648199446,4,90.1280592172393,0.852102217442515,20.2216066481994,19.1424850378281,5.19557523727417,397.050862630208,396.734069824219,0.431182395349013
+1959,305174,3794798,305274,3794698,58,19,19.4736842105263,0.0665852039585832,13.3090311133615,0.460846560846561,19.0504424761932,0.0253619637832583,0.107894736842105,10.7894736842105,5,77.6191749370739,0.675088709332649,7.89473684210526,20.8663973459383,10.3911504745483,397.504559834798,396.919708251953,0.599153683483946
+1960,305174,3794698,305274,3794598,59,19,28.2548476454294,0.0458898027282127,8.06782328611293,0.450191466743978,15.995561847541,0.0232713028287997,0.0775623268698061,7.75623268698061,4,68.4488833418153,0.638638638638639,3.8781163434903,12.6750727040427,0,398.248691134983,397.888946533203,0.496147026079893
+1961,305174,3794598,305274,3794498,60,19,23.8227146814404,0.116074206900773,17.5949270020223,0.512139917695473,16.4298513045218,0.0254673826547385,0.07202216066482,7.20221606648199,3,74.3859358055179,0.76345103749545,5.26315789473684,17.4726944519923,5.19557523727417,399.312446594238,398.798095703125,0.854505988624267
+1962,305174,3794498,305274,3794398,61,19,14.1274238227147,0.137669408184638,23.9550651384771,0.722222222222222,NA,-0.00873945362811426,0,0,0,NA,NA,0,NA,NA,401.764584011502,400.370452880859,1.80930411831287
+1963,305174,3794398,305274,3794298,62,19,42.8947368421053,0.440002226158746,31.9068856114766,0.844580777096115,NA,0.00353129078181442,0.0315789473684211,3.15789473684211,2,68.4650420918366,0.817774936061381,2.89473684210526,7.1067734559377,5.19557523727417,401.95255279541,400.578216552734,1.3327070060718
+1964,305174,3794298,305274,3794198,63,19,73.1301939058172,0.356320821183769,18.7382767458799,0.718130442838614,10.3911503376439,0.00781043855896009,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,10.0883189042409,5.19557523727417,399.772254096137,399.053405761719,1.07340454096329
+1965,305174,3794198,305274,3794098,64,19,10.2493074792244,0.0998778059378748,23.2397207986649,0.635135135135135,NA,0.0313100743703602,0.146814404432133,14.6814404432133,5,78.5198110327775,0.793920365348937,10.2493074792244,52.9469387126419,15.5867252349854,398.553588867188,398.212768554688,0.544355732210484
+1966,305174,3794098,305274,3793998,65,19,0,NA,NA,NA,NA,0.0268919131668602,0.152354570637119,15.2354570637119,6,72.1277668446584,0.627450980392157,6.09418282548476,45.0600309545344,22.0429573059082,398.055511474609,398.001617431641,0.13002901057147
+1967,305174,3793998,305274,3793898,66,19,13.4210526315789,0.0688347040923191,12.4865027960411,0.665882967607106,65.7194057438652,0.0290436080907248,0.15,15,2,85.862702502561,0.879951980792317,10.5263157894737,19.8536581072891,0,397.930959065755,397.898681640625,0.0653196476776878
+1968,305174,3793898,305274,3793798,67,19,21.0526315789474,0.0683848040655719,14.220117642393,0.6502849002849,10.3911503722826,0.0212144548014115,0.038781163434903,3.8781163434903,6,38.8666891304194,0.375792507204611,1.10803324099723,14.3181238515036,0,398.003495958116,397.920684814453,0.158151281773282
+1969,305174,3793798,305274,3793698,68,19,37.3961218836565,0.0911047554163047,15.7699533109231,0.606283700980392,13.8129739160426,0.0414801144755092,0.274238227146814,27.4238227146814,6,86.308493883221,0.698108757183292,18.5595567867036,6.31120590248493,0,398.529085795085,398.082733154297,0.726142938088582
+1970,305174,3793698,305274,3793598,69,19,25.207756232687,0.0614113536509906,9.3063802920213,0.453374384236453,22.2919760537844,0.0363391429290311,0.188365650969529,18.8365650969529,8,76.1454907583812,0.647976596782058,7.75623268698061,5.62403436268077,0,399.531504313151,398.69189453125,0.858448876124917
+1971,305174,3793598,305274,3793498,70,19,36.3157894736842,0.093129305536667,14.2999003703525,0.485050836984608,22.3553944191285,0.0421204916373091,0.347368421052632,34.7368421052632,6,86.9771829905491,0.713893722393254,19.7368421052632,8.08494121378118,0,399.924360487196,399.436370849609,0.733995734399403
+1972,305174,3793498,305274,3793398,71,19,18.2825484764543,0.0445401026479712,9.69867972136408,0.470833333333333,33.7712388051747,0.0182428767811846,0.121883656509695,12.1883656509695,3,80.5359892034012,0.799940318867764,8.03324099722992,14.6417681087147,0,400.27907816569,399.806243896484,0.685697626437286
+1973,305174,3793398,305274,3793298,72,19,23.5457063711911,0.114724506820532,18.6004874452218,0.718490173847317,41.5646017662397,0.000378263210898133,0.0554016620498615,5.54016620498615,2,77.7710689425904,0.897549900671649,5.26315789473684,25.6218439340591,7.34765291213989,400.422356499566,400.066009521484,0.578174508906826
+1974,305174,3793298,305274,3793198,73,19,19.1135734072022,0.0465646527683335,9.87121830657398,0.472349351639969,19.1850895160576,0.022496184159939,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,3.13580703735352,0,400.502487182617,400.144500732422,0.617352470524323
+1975,305174,3793198,305274,3793098,74,19,18.9473684210526,0.0971784057773917,10.6912639970932,0.490476190476191,57.387004000763,0.0290134450604551,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,17.7069203513009,0,400.36877102322,400.142150878906,0.474217158846572
+1976,305174,3793098,305274,3792998,75,19,0,NA,NA,NA,NA,0.0177309756314405,0.0415512465373961,4.15512465373961,3,66.989886121689,0.810299527062533,3.601108033241,62.4523208618164,47.9008369445801,400.442161560059,400.128082275391,0.466135841022678
+1977,305174,3792998,305274,3792898,76,19,0,NA,NA,NA,NA,0.0294478452090307,0.149584487534626,14.9584487534626,2,89.1143362847831,0.810339392665756,14.1274238227147,30.7337629176952,15.5867252349854,400.584794786241,400.494934082031,0.253293603726818
+1978,305174,3792898,305274,3792798,77,19,0,NA,NA,NA,NA,0.0339363128962021,0.196675900277008,19.6675900277008,3,85.6209886706926,0.830703448275862,11.3573407202216,56.0192128302346,25.977876663208,400.483350118001,400.423950195312,0.109672489532927
+1979,305174,3792798,305274,3792698,78,19,18.4210526315789,0.0944790056169086,14.3444297413377,0.649664750957854,20.7823008831198,0.0330752628454464,0.234210526315789,23.4210526315789,6,82.0186944929337,0.770040415829173,10.2631578947368,18.6081902418244,0,400.565090603299,400.474456787109,0.215005952745002
+1980,305174,3792698,305274,3792598,79,19,28.808864265928,0.0935792055634142,19.2115887664255,0.656481481481482,18.136256676654,0.0316161689204572,0.229916897506925,22.9916897506925,3,89.7665509583694,0.752655018842069,19.1135734072022,10.1847015805991,0,401.08260345459,400.737670898438,0.462497508855052
+1981,305174,3792598,305274,3792498,80,19,23.8227146814404,0.0773828046005156,14.3765385341807,0.579073075771189,21.14790057224,0.0278637979498755,0.149584487534626,14.9584487534626,5,80.4060050512661,0.633322825820462,8.86426592797784,12.5583978670615,0,401.710659450955,401.441986083984,0.526371521804862
+1982,305174,3792498,305274,3792398,81,19,7.4792243767313,0.0364419021665219,6.92187031197703,0.472222222222222,88.3247780655799,0.0117440771159271,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.834099264705882,5.81717451523546,24.1264644804455,5.19557523727417,401.549718221029,401.250701904297,0.438794660092625
+1983,305174,3792398,305274,3792298,82,19,12.1052631578947,0.0413908024607409,8.49140536017659,0.622795414462081,26.0737950621652,0.0166503841230511,0.0263157894736842,2.63157894736842,2,58.2677109531801,0.683991683991684,1.31578947368421,1.55867257118225,0,401.263407389323,401.094512939453,0.362763452763464
+1984,305174,3792298,305274,3792198,83,19,22.9916897506925,0.112025106660049,15.9044296425513,0.743737373737374,10.3911504415599,0.0329260641295067,0.224376731301939,22.4376731301939,4,88.6076653361537,0.838839285714286,19.3905817174515,5.82814376148177,0,401.7169825236,401.271179199219,0.59961840215276
+1985,305174,3792198,305274,3792098,84,19,15.5124653739612,0.151166408987054,24.8051957089784,0.732142857142857,NA,0.0284621908203338,0.326869806094183,32.6869806094183,4,90.4874370709122,0.861159186185147,27.4238227146814,8.91108395285526,0,402.348930358887,401.923614501953,0.551231892339105
+1986,305174,3792098,305274,3791998,85,19,16.3434903047091,0.0530882031561677,12.1946650679491,0.508454106280193,43.2964599306957,0.0289744699499185,0.301939058171745,30.1939058171745,3,90.6995051056035,0.861836274272823,25.207756232687,7.28843441359494,0,402.543650309245,402.283386230469,0.4556193937916
+1987,305174,3791998,305274,3791898,86,19,20.2631578947368,0.0296934017653141,6.94001507432561,0.344678287981859,22.2882686499776,0.0308433533789675,0.218421052631579,21.8421052631579,4,84.7188682975127,0.791108362536934,10.5263157894737,8.32277428385723,0,402.350563049316,402.018218994141,0.548044669819436
+1988,305174,3791898,305274,3791798,87,19,8.31024930747922,0.0202455012036233,4.7583271319472,0.289855072463768,43.9174027424621,0.020907714688831,0.135734072022161,13.5734072022161,2,85.0114552810163,0.84848137973138,9.97229916897507,6.83230081869631,0,402.514963785807,402.381286621094,0.291028582103768
+1989,305174,3791798,305274,3791698,88,19,15.2354570637119,0.148467008826571,20.2265714085542,0.733333333333333,NA,0.0237792874993532,0.204986149584488,20.4986149584488,2,91.1397488145662,0.816161886893594,19.1135734072022,8.12662745810844,0,402.928225199382,402.481842041016,0.551644978782976
+1990,305174,3791698,305274,3791598,89,19,25.207756232687,0.245645414603962,25.3241864920569,0.831501831501832,NA,0.0382788935997488,0.418282548476454,41.8282548476454,3,94.5747262365358,0.869675090252708,38.5041551246537,6.46450245459348,0,403.937394883898,403.384216308594,0.689976659159784
+1991,305174,3791598,305274,3791498,90,19,18.1578947368421,0.0620862036911113,9.8340943005377,0.573734448734449,31.1734511514864,0.028798348114115,0.178947368421053,17.8947368421053,6,80.3963889802277,0.774833010127128,12.1052631578947,7.17111250933479,0,404.612528483073,404.03955078125,0.762779192531998
+1992,305174,3791498,305274,3791398,91,19,68.9750692520776,0.336075319980146,28.0588746725399,0.793874700718276,20.7823008831198,0.0476831493377131,0.50415512465374,50.415512465374,3,94.053846862206,0.814482038360161,42.382271468144,2.80682318289201,0,405.325381808811,404.444915771484,0.853108457560308
+1993,305174,3791398,305274,3791298,92,19,67.0360110803324,0.130650967767382,11.1597521009431,0.496019703914441,14.5476105558343,0.0454323034018192,0.545706371191136,54.5706371191136,3,95.8622407905085,0.752739726027397,49.0304709141274,2.00156034188827,0,406.168469746908,405.790283203125,0.352912396395751
+1994,305174,3791298,305274,3791198,93,19,68.9750692520776,0.224050213320097,18.5464754755781,0.603178294573643,19.4160421653133,0.0499902688100814,0.56786703601108,56.786703601108,2,96.3002475925924,0.763123359580052,48.4764542936288,2.51251841754448,0,406.562645806207,406.418182373047,0.198615495034567
+1995,305174,3791198,305274,3791098,94,19,47.8947368421053,0.163763609735975,16.721481492083,0.514243498817967,27.7097345108264,0.0572423096898427,0.597368421052632,59.7368421052632,2,95.829222543002,0.864954650102752,52.3684210526316,3.26218447916308,0,406.598584493001,406.4873046875,0.142902333383152
+1996,305174,3791098,305274,3790998,95,19,50.6925207756233,0.164663409789469,12.9567665609366,0.543159792652693,23.6076130773842,0.0897431988346486,0.728531855955679,72.8531855955679,3,95.5151089228591,0.813201142525976,60.1108033240997,4.84591771622574,0,406.207685682509,405.939971923828,0.442565563978622
+1997,305174,3790998,305274,3790898,96,19,34.3490304709141,0.111575206633302,14.9165566273999,0.53752773510838,17.3185839999892,0.0655717445987953,0.554016620498615,55.4016620498615,3,94.1663895633886,0.794512062413152,36.8421052631579,6.77114110469818,0,405.295374552409,404.146514892578,0.877935520694904
+1998,305174,3790898,305274,3790798,97,19,40.4432132963989,0.0656854039050888,10.3365955003642,0.344783541518937,15.2451609189214,0.0303968888387559,0.243767313019391,24.3767313019391,5,82.7086107850567,0.696787289143977,9.14127423822715,7.07603926550258,0,404.312588161892,403.815704345703,0.763050826357952
+1999,305174,3790798,305274,3790698,98,19,30.5263157894737,0.104376806205347,15.4010392929951,0.639988161677659,16.4043982232547,0.0286078692958223,0.286842105263158,28.6842105263158,4,87.5717973378733,0.743757843669807,12.8947368421053,7.4197056665333,0,403.794662475586,403.567932128906,0.424605592737807
+2000,305174,3790698,305274,3790598,99,19,3.601108033241,0.0350922020862803,7.2762502251166,0.641025641025641,NA,0.0246755905232686,0.119883040935673,11.9883040935673,2,83.3005599897648,0.884732052578362,9.94152046783626,39.4874464709584,0,404.04044342041,403.616729736328,0.514329695031364
+2001,305274,3800598,305374,3800498,0,20,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.620470046997,384.309906005859,0.339078693829189
+2002,305274,3800498,305374,3800398,1,20,1.57894736842105,0.0161964009628986,7.17094955176224,0.305555555555556,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.059506734212,384.866241455078,0.225725056338807
+2003,305274,3800398,305374,3800298,2,20,26.3157894736842,0.128221507622947,12.9823702187485,0.697459086993971,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.069664001465,384.929412841797,0.180589254185585
+2004,305274,3800298,305374,3800198,3,20,7.4792243767313,0.0728838043330438,15.725228151799,0.635802469135803,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.831372578939,384.613555908203,0.232865370145969
+2005,305274,3800198,305374,3800098,4,20,32.409972299169,0.157914909388261,14.2856505353538,0.703268348623853,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.620414733887,384.489959716797,0.149362311385642
+2006,305274,3800098,305374,3799998,5,20,18.6842105263158,0.1916574113943,19.4081221421619,0.805164319248826,NA,0.0108304265896119,0.0526315789473684,5.26315789473684,1,70.3508699948475,0.894444444444444,5.26315789473684,1.94834071397781,0,384.611048380534,384.545104980469,0.0659522703663403
+2007,305274,3799998,305374,3799898,6,20,24.6537396121884,0.060061653570749,13.0225403264837,0.361342592592593,14.2878317921974,0.00854516183926661,0.177285318559557,17.7285318559557,3,87.3335334174038,0.739538239538239,14.404432132964,28.2481062710285,0,384.70837020874,384.620330810547,0.115914713205467
+2008,305274,3799898,305374,3799798,7,20,11.9113573407202,0.116074206900773,26.6165293185383,0.627906976744186,NA,0.06285641522942,0.465373961218837,46.5373961218837,2,96.9036389367724,0.957763663713856,46.2603878116344,34.6632461036955,0,385.037556966146,384.839080810547,0.330323842650595
+2009,305274,3799798,305374,3799698,8,20,93.6288088642659,0.912397254243288,36.6421881774207,0.927021696252465,NA,0.0140640090547679,0.185595567867036,18.5595567867036,4,80.7704456654198,0.758619687191116,8.31024930747922,0,0,385.754529953003,385.392272949219,0.390104601241121
+2010,305274,3799698,305374,3799598,9,20,96.3157894736842,0.987980458736815,38.1032425851249,0.92896174863388,NA,0.0298052934282551,0.25,25,7,80.2614671904178,0.701960784313726,11.3157894736842,0.164070796966553,0,386.222076416016,386.050872802734,0.214199892835169
+2011,305274,3799598,305374,3799498,10,20,86.7036011080332,0.844912250231211,37.5671257946327,0.888711395101171,NA,-0.0193686721295988,0.0581717451523546,5.81717451523546,3,65.9818809511864,0.668198529411765,2.49307479224377,1.97926675705683,0,386.426975250244,386.267456054688,0.142439004417828
+2012,305274,3799498,305374,3799398,11,20,82.2714681440443,0.801721847663481,34.7444947607967,0.918069584736251,NA,-0.00280833026653683,0.0443213296398892,4.43213296398892,3,59.8880548051563,0.607608695652174,1.66204986149584,0,0,386.323883056641,386.257690429688,0.085444649215178
+2013,305274,3799398,305374,3799298,12,20,19.6675900277008,0.1916574113943,27.8985895254702,0.694835680751174,NA,-0.0562636807244568,0.0581717451523546,5.81717451523546,2,77.8271812367532,0.800919117647059,5.26315789473684,16.1340703737168,5.19557523727417,386.242345174154,386.200012207031,0.0581829983036
+2014,305274,3799298,305374,3799198,13,20,26.5789473684211,0.272639416208793,35.7015886754842,0.696369636963696,NA,-0.0382335075332345,0.157894736842105,15.7894736842105,4,80.7375621889417,0.794471153846154,8.68421052631579,18.2789939959844,0,386.309896469116,386.216186523438,0.118026479517213
+2015,305274,3799198,305374,3799098,14,20,1.10803324099723,0.0053988003209662,2.59778759740048,0.166666666666667,124.910099381885,0.00544199211332835,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.418913480885312,0.831024930747922,14.2135469118754,5.19557523727417,386.619148254395,386.445770263672,0.278416315175187
+2016,305274,3799098,305374,3798998,15,20,1.10803324099723,0.0107976006419324,3.67382645240838,0.416666666666667,NA,0.0054309728140168,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,51.4335708618164,51.4335708618164,387.069814682007,386.778076171875,0.362608597722953
+2017,305274,3798998,305374,3798898,16,20,16.8975069252078,0.164663409789469,23.0159340688803,0.734972677595628,NA,-0.00846642044770233,0,0,0,NA,NA,0,NA,NA,387.171229044596,386.838012695312,0.438150689719699
+2018,305274,3798898,305374,3798798,17,20,22.3684210526316,0.0764830045470212,10.8013269837292,0.436467236467237,15.5867256623399,-0.0138342067521032,0,0,0,NA,NA,0,NA,NA,386.911933898926,386.732330322266,0.290752196397763
+2019,305274,3798798,305374,3798698,18,20,29.9168975069252,0.0728838043330438,11.1106436971783,0.450892857142857,13.602192472636,0.00173023726369984,0.0886426592797784,8.86426592797784,2,81.9340815894836,0.915595043254618,7.75623268698061,9.08383363485336,0,386.827433268229,386.741943359375,0.118442306899872
+2020,305274,3798698,305374,3798598,19,20,39.8891966759003,0.388713623109567,35.2573007819906,0.793981481481482,NA,0.0431845096164955,0.354570637119114,35.4570637119114,2,95.2830525628863,0.946803219805117,34.9030470914127,5.18917836993933,0,387.081439971924,386.892028808594,0.271502838008338
+2021,305274,3798598,305374,3798498,20,20,49.584487534626,0.241596314363238,15.1406289592699,0.437734082397004,15.5867255064659,0.0360532749916357,0.315789473684211,31.5789473684211,3,88.9631692488557,0.794249439880508,13.5734072022161,15.6503055764918,0,387.766273498535,387.399139404297,0.539366044016337
+2022,305274,3798498,305374,3798398,21,20,17.8947368421053,0.0917796054564255,22.9997193499955,0.610894660894661,83.1292035324793,0.0254215502280491,0.257894736842105,25.7894736842105,3,89.2859811640011,0.877498388136686,20.7894736842105,25.9231440291113,0,388.519407272339,388.253967285156,0.326107580691023
+2023,305274,3798398,305374,3798298,22,20,34.3490304709141,0.111575206633302,16.2907574651443,0.541407867494824,28.1361374017405,0.00733184270191844,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,1.48445006779262,0,388.924021402995,388.819915771484,0.197826853972982
+2024,305274,3798298,305374,3798198,23,20,65.0969529085873,0.211453012571176,13.9467418827188,0.506882989183874,12.1230087792092,0.0180934030801113,0.182825484764543,18.2825484764543,2,87.6364001242079,0.904229918938836,12.4653739612188,5.89103220448349,0,389.043079376221,388.791168212891,0.245562297746866
+2025,305274,3798198,305374,3798098,24,20,9.41828254847645,0.0917796054564255,23.3698232910033,0.588235294117647,NA,0.0154559974336301,0.487534626038781,48.7534626038781,2,97.1682373296326,0.933954261954262,48.4764542936288,25.7871350618926,0,388.798126220703,388.666625976562,0.27993053732846
+2026,305274,3798098,305374,3797998,25,20,16.8421052631579,0.0863808051354593,12.9531127727063,0.552824858757062,20.7823006752878,0.028212949338788,0.228947368421053,22.8947368421053,2,92.8361643967273,0.748981614004184,21.8421052631579,9.58714416657371,0,388.950756072998,388.688690185547,0.31989928187308
+2027,305274,3797998,305374,3797898,26,20,52.0775623268698,0.253743615085412,18.9679676397913,0.787341513292434,15.5867256623399,0.120354512639565,0.731301939058172,73.1301939058172,3,95.8295788674991,0.849630323857128,66.2049861495845,4.59890589569554,0,389.321918487549,389.021331787109,0.349962338907015
+2028,305274,3797898,305374,3797798,27,20,60.1108033240997,0.585769834824833,30.9598347212528,0.88863287250384,NA,0.11097936535356,0.78393351800554,78.393351800554,2,96.8030596800314,0.791208791208791,55.4016620498615,7.68195455571367,0,389.658345540365,389.51123046875,0.19209338767537
+2029,305274,3797798,305374,3797698,28,20,0,NA,NA,NA,NA,-0.0218328691622859,0.193905817174515,19.3905817174515,1,92.939253568137,0.889056519431174,19.3905817174515,47.3598621368408,31.1734504699707,389.873153686523,389.751800537109,0.149182995813086
+2030,305274,3797698,305374,3797598,29,20,15.7894736842105,0.0809820048144931,15.40849463093,0.689360119047619,20.7823006752878,0.0107681496784006,0.126315789473684,12.6315789473684,5,82.7568971110731,0.706876285630326,10.5263157894737,5.08733403682709,0,390.109102884928,389.926727294922,0.254109363175661
+2031,305274,3797598,305374,3797498,30,20,50.1385041551247,0.244295714523721,26.8334638269539,0.77342202970297,22.0429587144503,0.0495393073439103,0.443213296398892,44.3213296398892,4,91.2274448697316,0.566267302941077,20.2216066481994,4.73810709416866,0,390.493618011475,390.123962402344,0.463699123471544
+2032,305274,3797498,305374,3797398,31,20,93.3518005540166,0.909697854082805,37.2570470083217,0.919386745796241,NA,0.0453973269809832,0.326869806094183,32.6869806094183,4,92.7223752562511,0.833391023422176,30.1939058171745,0,0,391.074541727702,390.244812011719,1.77465825451439
+2033,305274,3797398,305374,3797298,32,20,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0499673558301047,0.443213296398892,44.3213296398892,3,94.6461316085233,0.902257420381088,40.1662049861496,0,0,394.014093399048,390.130767822266,5.19984820443832
+2034,305274,3797298,305374,3797198,33,20,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0729994067334031,0.907894736842105,90.7894736842105,1,99.7323421835731,0.733567046450482,90.7894736842105,0,0,395.496660868327,390.279479980469,5.65274903287013
+2035,305274,3797198,305374,3797098,34,20,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0677332517089854,0.775623268698061,77.5623268698061,2,99.0165554429347,0.813594329437168,77.2853185595568,0,0,396.751430511475,391.189270019531,5.78794012944038
+2036,305274,3797098,305374,3796998,35,20,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0716026125455125,0.897506925207756,89.7506925207756,1,99.6913580246914,0.904345521992581,89.7506925207756,0,0,396.070729573568,391.869018554688,5.22191519302766
+2037,305274,3796998,305374,3796898,36,20,54.2936288088643,0.264541215727344,22.05501189056,0.758670520231214,14.6953058096335,-0.00381922569320125,0.0969529085872576,9.69529085872576,1,87.7134101779535,0.88544531415274,9.69529085872576,0,0,393.337314605713,392.890258789062,1.18866012745489
+2038,305274,3796898,305374,3796798,37,20,13.4210526315789,0.0688347040923191,16.4081542419556,0.605820105820106,67.5424771946855,-0.0758120816176463,0,0,0,NA,NA,0,NA,NA,393.195821126302,393.032196044922,0.210962193238115
+2039,305274,3796798,305374,3796698,38,20,46.2603878116344,0.225399913400339,17.4545859065848,0.740021231422505,25.9778758441098,-0.0312497497266487,0.282548476454294,28.2548476454294,1,95.1039981574685,0.939067873494103,28.2548476454294,0,0,393.414447784424,393.280303955078,0.226691661809342
+2040,305274,3796698,305374,3796598,39,20,85.3185595567867,0.831415249428795,36.1120185752381,0.897727272727273,NA,0.0702068177038943,0.89196675900277,89.196675900277,1,99.6731744228157,0.512820512820512,89.196675900277,0.850570150043653,0,391.977493286133,388.5,2.60812060362046
+2041,305274,3796598,305374,3796498,40,20,0,NA,NA,NA,NA,0.0253239251423944,0.038781163434903,3.8781163434903,2,67.1322948478631,0.687896253602305,2.77008310249307,13.4128161157881,10.3911504745483,388.53884379069,388.5,1.27020530631823
+2042,305274,3796498,305374,3796398,41,20,15.7894736842105,0.153865809147537,19.0826689281819,0.789473684210526,NA,0.0211208211118581,0.171745152354571,17.1745152354571,2,86.6454834499149,0.88820760559891,9.41828254847645,18.354844362505,0,391.404500961304,390.854248046875,1.26270499224922
+2043,305274,3796398,305374,3796298,42,20,12.8947368421053,0.132270607863672,21.045573912817,0.683673469387755,NA,0.0172516448126675,0.0736842105263158,7.36842105263158,3,77.7800460328999,0.736111111111111,6.05263157894737,6.02662764276777,0,392.697283426921,392.299774169922,0.512845742918116
+2044,305274,3796298,305374,3796198,43,20,0,NA,NA,NA,NA,0.0110911495768577,0,0,0,NA,NA,0,NA,NA,393.13069152832,392.881958007812,0.399840336886701
+2045,305274,3796198,305374,3796098,44,20,0,NA,NA,NA,NA,0.0207866662097424,0.0581717451523546,5.81717451523546,2,79.0081556784912,0.867279411764706,5.54016620498615,48.0263248625256,36.369026184082,393.616696675618,393.236114501953,0.631943038527407
+2046,305274,3796098,305374,3795998,45,20,22.1606648199446,0.215952012838648,26.9840558887798,0.79375,NA,0.0141258069611631,0.0443213296398892,4.43213296398892,4,55.2400648437248,0.607608695652174,1.66204986149584,27.541956871748,0,394.48611831665,393.894012451172,0.641907913619003
+2047,305274,3795998,305374,3795898,46,20,26.8421052631579,0.137669408184638,13.0990107690215,0.515151515151515,11.6176592829322,0.0143582533689991,0.05,5,4,61.8597690768356,0.673321234119782,3.15789473684211,7.67427339051899,0,395.185231526693,394.679809570312,0.458907908194798
+2048,305274,3795898,305374,3795798,47,20,4.43213296398892,0.0431904025677296,8.38480397825359,0.645833333333333,NA,0.00242656220692768,0,0,0,NA,NA,0,NA,NA,395.325553894043,394.773834228516,0.422045907715909
+2049,305274,3795798,305374,3795698,48,20,17.4515235457064,0.0340124420220871,7.25269408421236,0.507878787878788,16.0773291540312,0.0143769963148501,0.03601108033241,3.601108033241,2,67.5979989290526,0.596583652618135,2.77008310249307,7.54811154879056,5.19557523727417,395.319742838542,394.997650146484,0.358407847129177
+2050,305274,3795698,305374,3795598,49,20,29.9168975069252,0.145767608666088,19.8603287304391,0.626132246376812,18.7329127343573,0.020024591077065,0.0609418282548476,6.09418282548476,6,56.6476723001142,0.467551622418879,2.49307479224377,10.1281479922208,5.19557523727417,395.334693908691,395.179656982422,0.199944262594285
+2051,305274,3795598,305374,3795498,50,20,15.5263157894737,0.0398161523671258,9.16458802437154,0.551256613756614,21.3059163474504,0.0198046020882765,0.0421052631578947,4.21052631578947,5,52.7574762017826,0.478021978021978,2.10526315789474,14.0615395307541,5.19557523727417,395.3097559611,395.180541992188,0.143763243769143
+2052,305274,3795498,305374,3795398,51,20,14.404432132964,0.140368808345121,20.2389042289229,0.666666666666667,NA,0.0124101965412287,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,14.9985638618469,5.19557523727417,395.129453659058,395.021240234375,0.137825792713481
+2053,305274,3795398,305374,3795298,52,20,40.7202216066482,0.198405911795508,26.789497365138,0.723209219858156,15.5867255064659,0.0100364004059597,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,21.4480323791504,16.4298515319824,395.33283996582,395.154510498047,0.261713262582917
+2054,305274,3795298,305374,3795198,53,20,13.5734072022161,0.0264541215727344,6.8883428224389,0.486130952380952,17.7909447567903,0.0228650267806321,0.135734072022161,13.5734072022161,3,86.6365162684236,0.87603021978022,12.7423822714681,24.498131878522,0,395.62398147583,395.292938232422,0.274589073831071
+2055,305274,3795198,305374,3795098,54,20,30.7894736842105,0.0789574546941307,12.2970330305091,0.60612922705314,14.4986132485935,0.0283509918301876,0.139473684210526,13.9473684210526,4,82.6125846639984,0.79567832778842,11.0526315789474,12.0527558326721,0,396.029767990112,395.833709716797,0.205253368841217
+2056,305274,3795098,305374,3794998,55,20,17.4515235457064,0.0850311050552177,8.11394824902295,0.408602150537634,91.9191084354244,0.0316726818936409,0.218836565096953,21.8836565096953,3,86.9913242882863,0.817122593718338,13.5734072022161,30.1430947810789,5.19557523727417,396.294314066569,396.217956542969,0.102441949304967
+2057,305274,3794998,305374,3794898,56,20,60.6648199445983,0.197056211715266,14.0775121087038,0.488215933468512,14.6725397935234,0.0173778390016501,0,0,0,NA,NA,0,NA,NA,396.37135887146,396.306823730469,0.108827287877601
+2058,305274,3794898,305374,3794798,57,20,22.4376731301939,0.218651412999131,30.7414607934044,0.713991769547325,NA,0.0210354405280265,0.0277008310249307,2.77008310249307,3,49.7452423750949,0.525312294543064,1.38504155124654,15.8272038459778,10.3911504745483,396.494799296061,396.343505859375,0.207621013560244
+2059,305274,3794798,305374,3794698,58,20,30.2631578947368,0.155215509227778,18.5625064300129,0.77784730913642,52.2148842320149,0.00535602570836138,0,0,0,NA,NA,0,NA,NA,397.032768249512,396.478942871094,0.677838964525277
+2060,305274,3794698,305374,3794598,59,20,14.6814404432133,0.0357670521264011,7.72752914730067,0.360119047619048,14.5944589680097,0.0209359178877101,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,20.0262117385864,10.3911504745483,398.028409322103,397.249633789062,0.765098767474726
+2061,305274,3794598,305374,3794498,60,20,15.5124653739612,0.0503888029956846,8.00288041243236,0.389978213507625,14.9924457085776,0.0250237326665299,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,31.1734504699707,31.1734504699707,399.34218788147,397.939422607422,1.5388502708812
+2062,305274,3794498,305374,3794398,61,20,0,NA,NA,NA,NA,-0.0171579690189765,0,0,0,NA,NA,0,NA,NA,402.384241739909,401.336181640625,1.66175029130057
+2063,305274,3794398,305374,3794298,62,20,48.6842105263158,0.499389029689374,29.9271825562086,0.889189189189189,NA,0.00130400527864128,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,0,0,401.599948883057,398.744201660156,2.32738305269842
+2064,305274,3794298,305374,3794198,63,20,80.6094182825485,0.785525446700583,35.3007202662671,0.883161512027491,NA,0.00970160665197012,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,399.25289662679,398.390106201172,1.06855777090177
+2065,305274,3794198,305374,3794098,64,20,22.7146814404432,0.110675406579807,13.0178964986902,0.388888888888889,20.7823006752878,0.0207668369505496,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,20.7460476370419,5.19557523727417,398.470916748047,398.15625,0.486372837244778
+2066,305274,3794098,305374,3793998,65,20,3.601108033241,0.0116974006954268,4.4440551433683,0.342592592592593,32.9053096623291,0.0159497389518604,0.0581717451523546,5.81717451523546,3,70.3976104557161,0.800919117647059,4.15512465373961,54.9867858886719,11.6176595687866,398.03724416097,397.978637695312,0.113324599504551
+2067,305274,3793998,305374,3793898,66,20,26.5789473684211,0.0681598540521983,13.8165145265874,0.648523500309215,26.2840576993379,0.0192202890212732,0.121052631578947,12.1052631578947,3,80.9209222355022,0.839551665898971,6.05263157894737,11.302591935448,0,397.936891555786,397.893920898438,0.0662606634942067
+2068,305274,3793898,305374,3793798,67,20,26.3157894736842,0.0512886030491789,11.2317549075896,0.410908271354519,11.9208690222648,0.0194928371378425,0.102493074792244,10.2493074792244,6,69.9258022518429,0.634689334142886,5.26315789473684,11.8631502873189,5.19557523727417,397.971984863281,397.910552978516,0.108660272602313
+2069,305274,3793798,305374,3793698,68,20,31.5789473684211,0.0769329045737684,11.4372764471949,0.371135305851064,17.6721661756154,0.0311788838799176,0.0692520775623269,6.92520775623269,2,77.1989234742067,0.785119047619048,5.26315789473684,18.1424777793884,0,398.182476043701,398.026580810547,0.225713834146958
+2070,305274,3793698,305374,3793598,69,20,37.3961218836565,0.0520598602378884,11.8163759132384,0.510233117637299,14.844500541729,0.0292899048585029,0.0941828254847645,9.41828254847645,5,70.1004756236508,0.74371996505024,5.81717451523546,6.79683756828308,0,398.725629806519,398.449127197266,0.412553449694039
+2071,305274,3793598,305374,3793498,70,20,26.0526315789474,0.0381772308411182,10.2657440788517,0.417217504717505,19.0431593147912,0.0223045855191913,0.0342105263157895,3.42105263157895,3,58.0809391704607,0.597335755373903,1.84210526315789,13.4544007594769,0,399.382995605469,399.132965087891,0.543866877789876
+2072,305274,3793498,305374,3793398,71,20,29.9168975069252,0.0364419021665219,6.91873635505927,0.433300445962084,15.9352389702872,0.0231487363295686,0.196675900277008,19.6675900277008,1,93.028415830176,0.910372413793104,19.6675900277008,20.9857243484175,5.19557523727417,400.092830657959,399.545806884766,0.746017173643903
+2073,305274,3793398,305374,3793298,72,20,37.6731301939058,0.0917796054564255,16.7518788731448,0.519483702571938,17.3071822496573,-0.0081730576460049,0,0,0,NA,NA,0,NA,NA,400.457476298014,400.058929443359,0.529330380668244
+2074,305274,3793298,305374,3793198,73,20,18.5595567867036,0.045214952688092,13.4372947571266,0.411910597572362,17.7388032424607,0.0135551144476494,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,400.35750579834,400.145080566406,0.355338135772361
+2075,305274,3793198,305374,3793098,74,20,10.2631578947368,0.0263191515647102,5.73114459477056,0.347402597402597,27.4442850781799,0.014249203757754,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483,400.08922068278,399.932342529297,0.243873174019535
+2076,305274,3793098,305374,3792998,75,20,1.93905817174515,0.00944790056169086,2.36924115617535,0.25,20.7823006752878,0.0182731130076224,0,0,0,NA,NA,0,NA,NA,399.978826522827,399.880187988281,0.154210414604562
+2077,305274,3792998,305374,3792898,76,20,0,NA,NA,NA,NA,0.0229663504144097,0.038781163434903,3.8781163434903,2,69.7937663778274,0.79193083573487,3.32409972299169,29.5919233049665,21.4219055175781,400.169782002767,400.008575439453,0.282239498360822
+2078,305274,3792898,305374,3792798,77,20,16.0664819944598,0.031313041861604,7.12147061327767,0.409391534391534,13.9087260297926,0.0171244894812431,0,0,0,NA,NA,0,NA,NA,400.606792449951,400.383941650391,0.386452877093415
+2079,305274,3792798,305374,3792698,78,20,7.36842105263158,0.0377916022467634,6.76856416025769,0.32716049382716,31.6034499687999,0.0267571035321453,0.105263157894737,10.5263157894737,3,80.76660339204,0.783143107989464,7.36842105263158,14.2307188034058,5.19557523727417,401.265886942546,400.576049804688,0.594132157241261
+2080,305274,3792698,305374,3792598,79,20,15.5124653739612,0.151166408987054,24.5339461860317,0.735119047619048,NA,0.0361227873871136,0.277008310249307,27.7008310249307,3,92.4883798098156,0.723371647509579,24.9307479224377,13.7208535718918,0,401.568796157837,400.874755859375,0.394854563128133
+2081,305274,3792598,305374,3792498,80,20,7.75623268698061,0.0251944014978423,7.81484419679463,0.383333333333333,34.4631074029952,0.0484227196751328,0.326869806094183,32.6869806094183,3,90.4687544472848,0.763970616514749,24.9307479224377,16.902958372892,0,401.661465962728,401.519592285156,0.182356871484386
+2082,305274,3792498,305374,3792398,81,20,32.1329639889197,0.0447329169451485,7.57254744029426,0.303034629150552,14.7171548336401,0.0278323273347959,0.0886426592797784,8.86426592797784,7,57.9623258551074,0.556873977086743,2.21606648199446,10.4806264936924,0,401.8336353302,401.448852539062,0.279462921672364
+2083,305274,3792398,305374,3792298,82,20,20.2631578947368,0.0415707624714398,9.34300015511538,0.434033613445378,17.8152744388368,0.0226761494670523,0.0552631578947368,5.52631578947368,4,61.0643056095146,0.636142061281337,2.10526315789474,4.6318180447533,0,401.843378702799,401.492340087891,0.325563881162784
+2084,305274,3792298,305374,3792198,83,20,24.0997229916898,0.0587119534905075,8.74400544822989,0.490025252525252,14.4477328975674,0.0338136333746036,0.229916897506925,22.9916897506925,6,82.7205098136688,0.673151274898449,10.2493074792244,5.71510187976332,0,402.352863311768,401.741912841797,0.547629591317194
+2085,305274,3792198,305374,3792098,84,20,30.4709141274238,0.0989780058843804,14.2782447687891,0.569893142442162,11.6176593061685,0.0167191448680143,0.0415512465373961,4.15512465373961,4,54.7056310017917,0.620599054125066,2.21606648199446,8.01122725804647,0,403.154941558838,402.68115234375,0.391198907712712
+2086,305274,3792098,305374,3791998,85,20,12.1883656509695,0.0395912023537522,9.89141083238237,0.564980158730159,18.0938693638078,0.0223732439884055,0.07202216066482,7.20221606648199,4,68.6435158408864,0.658318165271205,3.601108033241,5.07000835125263,0,403.231137593587,403.048034667969,0.321176102633753
+2087,305274,3791998,305374,3791898,86,20,7.10526315789474,0.0364419021665219,8.44008317454863,0.458333333333333,44.0859174289005,0.0200085810165451,0.0631578947368421,6.31578947368421,4,65.0865745570215,0.719101123595506,3.68421052631579,26.3606836795807,10.3911504745483,402.958917617798,402.773010253906,0.258325087759279
+2088,305274,3791898,305374,3791798,87,20,6.37119113573407,0.0310431018455557,7.04828808848167,0.515350877192982,62.3469026493595,0.0235637924659114,0.0609418282548476,6.09418282548476,2,80.1883084538809,0.780756550407774,5.81717451523546,13.379238280383,0,403.107462565104,402.794738769531,0.387961278472785
+2089,305274,3791798,305374,3791698,88,20,7.4792243767313,0.0728838043330438,11.3974412965733,0.703703703703704,NA,0.0196240326314331,0.138504155124654,13.8504155124654,5,78.0110757337718,0.740533383771515,6.37119113573407,48.0720546722412,0,403.599857330322,402.919219970703,0.592827682494834
+2090,305274,3791698,305374,3791598,89,20,41.8282548476454,0.407609424232948,33.6248655733643,0.790286975717439,NA,0.063522769147579,0.584487534626039,58.4487534626039,1,98.2888114302174,0.785119047619048,58.4487534626039,6.71138483879125,0,404.39217376709,403.914520263672,0.399387234172269
+2091,305274,3791598,305374,3791498,90,20,47.8947368421053,0.491290829207925,32.4220649062588,0.81959706959707,NA,0.0361088986769334,0.247368421052632,24.7368421052632,3,88.7060573992414,0.691558441558442,12.1052631578947,13.4308614730835,0,404.944309234619,404.602355957031,0.49393694298066
+2092,305274,3791498,305374,3791398,91,20,54.2936288088643,0.264541215727344,23.2122431034472,0.656322897483119,15.5867255064659,0.039762303641729,0.257617728531856,25.7617728531856,9,79.6514616800667,0.659188994785111,8.58725761772853,4.36875575075867,0,405.82006072998,405.489898681641,0.400398115171957
+2093,305274,3791398,305374,3791298,92,20,63.98891966759,0.207853812357199,13.2575285829744,0.383015173764072,19.0504423168553,0.0364164093930475,0.199445983379501,19.9445983379501,4,82.3954009617785,0.685257335912596,8.31024930747922,1.69424162970649,0,406.354497909546,405.991271972656,0.380837667228889
+2094,305274,3791298,305374,3791198,93,20,45.4293628808864,0.147567208773076,18.3792805704249,0.605950812472552,14.0680687008702,0.0337952553811596,0.243767313019391,24.3767313019391,5,87.1479620291884,0.722055015048646,17.1745152354571,4.72132028774782,0,406.88766225179,406.455749511719,0.421525068535053
+2095,305274,3791198,305374,3791098,94,20,54.7368421052632,0.561475233380485,36.9282911159991,0.804487179487179,NA,0.0659044786115421,0.626315789473684,62.6315789473684,3,97.330062879218,0.735401171071372,59.7368421052632,4.36874220150859,0,406.977376937866,406.562316894531,0.458911262940464
+2096,305274,3791098,305374,3790998,95,20,27.4238227146814,0.0534481231775654,10.0446852755302,0.512877492877493,15.7741194319315,0.0728391489861034,0.6398891966759,63.98891966759,3,95.2885472566842,0.735837943958594,46.2603878116344,7.9694882058478,0,406.559880574544,406.137969970703,0.537303436407709
+2097,305274,3790998,305374,3790898,96,20,29.9168975069252,0.291535217332175,24.8905437136321,0.841049382716049,NA,0.105595787961315,0.875346260387812,87.5346260387812,1,99.6175916340015,0.650037285607756,87.5346260387812,10.0774158390262,0,405.748157501221,404.959136962891,0.715246336452063
+2098,305274,3790898,305374,3790798,97,20,45.1523545706371,0.220001113079373,23.3399072325361,0.751768008165646,11.6176593526411,0.113683107817272,0.922437673130194,92.2437673130194,1,99.7711467429596,0.692539177833295,92.2437673130194,5.02438999153114,0,404.839182535807,404.630340576172,0.434695016504325
+2099,305274,3790798,305374,3790698,98,20,29.2105263157895,0.0998778059378748,13.864476678122,0.538118874888634,12.940681455874,0.0909747607417797,0.884210526315789,88.4210526315789,2,99.3871838750395,0.605583392984968,87.8947368421053,8.31992785277821,0,404.387748718262,403.991638183594,0.432371871121193
+2100,305274,3790698,305374,3790598,99,20,11.0803324099723,0.0359920021397747,8.88129036203972,0.536324786324786,12.4040507037514,0.041328945463865,0.35672514619883,35.672514619883,3,91.5580336696502,0.810078157136981,24.5614035087719,21.3712752608002,0,404.655519485474,404.375701904297,0.259025877511193
+2101,305374,3800598,305474,3800498,0,21,0.789473684210526,0.00404910024072322,1.29889379220549,0.0833333333333333,62.5630100627367,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.440572102865,384.139587402344,0.305033777685135
+2102,305374,3800498,305474,3800398,1,21,33.75,0.182209510832545,14.4855696028787,0.510025062656642,14.6953058096309,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.762010362413,384.624084472656,0.207954609353187
+2103,305374,3800398,305474,3800298,2,21,62.3684210526316,0.319878919017134,23.0926851101587,0.667797888386124,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.763994852702,384.546234130859,0.23524153242941
+2104,305374,3800298,305474,3800198,3,21,6.57894736842105,0.0337425020060268,8.43299047502638,0.57034632034632,72.7380530908937,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.521223280165,384.347869873047,0.252337482344511
+2105,305374,3800198,305474,3800098,4,21,45,0.461597427442447,31.5358777929529,0.862573099415205,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.364512125651,384.283447265625,0.150636697759606
+2106,305374,3800098,305474,3799998,5,21,30.75,0.332026219739304,41.0915796846805,0.772357723577236,NA,-0.0206061805794889,0,0,0,NA,NA,0,NA,NA,384.456783718533,384.360748291016,0.14180554628633
+2107,305374,3799998,305474,3799898,6,21,28.6842105263158,0.0980782058308513,11.4793495886683,0.478144481114778,22.9405620943636,0.0110537219469987,0.105263157894737,10.5263157894737,4,80.7740812090251,0.616330114135206,7.63157894736842,19.184505045414,0,384.619987487793,384.485595703125,0.15275833777674
+2108,305374,3799898,305474,3799798,7,21,24.7368421052632,0.126871807542661,13.7409511113319,0.48731884057971,20.7823006752878,0.0990983863670599,0.628947368421053,62.8947368421053,2,96.8209309307251,0.915591730528186,56.578947368421,17.5673325071774,0,385.0005730523,384.820220947266,0.338254520502204
+2109,305374,3799798,305474,3799698,8,21,15.2631578947368,0.156565209307965,24.3821756697217,0.75,NA,0.0257705368563907,0.318421052631579,31.8421052631579,3,90.9214608261534,0.846612846612847,23.6842105263158,26.9271314794367,14.6953058242798,385.651611328125,385.382904052734,0.322891265921548
+2110,305374,3799698,305474,3799598,9,21,55.5,0.599266835627037,36.366820794402,0.879129129129129,NA,0.041028346072053,0.365,36.5,4,90.1998505668542,0.834852104161137,18,15.8639596684338,0,386.015011257595,385.878051757812,0.188735416655197
+2111,305374,3799598,305474,3799498,10,21,97.8947368421053,1.00417685969936,38.6436490974839,0.917114695340502,NA,0.00396260576157937,0.0842105263157895,8.42105263157895,4,70.3811691584748,0.748010610079576,4.73684210526316,0,0,386.207005818685,386.113372802734,0.105590716809703
+2112,305374,3799498,305474,3799398,11,21,86.5789473684211,0.888102652798626,37.1610421617469,0.919452887537994,NA,-0.00336261549358297,0.0289473684210526,2.89473684210526,2,66.7940384779939,0.794037940379404,2.63157894736842,0,0,386.282371520996,386.257537841797,0.0515282343286606
+2113,305374,3799398,305474,3799298,12,21,26.5789473684211,0.272639416208697,26.6076974686367,0.808580858085809,NA,-0.109360208541559,0,0,0,NA,NA,0,NA,NA,386.25148179796,386.213928222656,0.0777712452350253
+2114,305374,3799298,305474,3799198,13,21,15.5,0.0836814049749466,15.3832606873108,0.615011820330969,36.7382643477322,-0.13707701612806,0.005,0.5,1,30.8308651382582,1,0.5,30.4193658828735,27.9790287017822,386.307500203451,386.224243164062,0.0969388347665841
+2115,305374,3799198,305474,3799098,14,21,10.7894736842105,0.0221350813159536,7.02368027207,0.367316017316017,24.5395050468116,0.0109529708277741,0.0263157894736842,2.63157894736842,3,52.9827965925392,0.683991683991684,1.84210526315789,24.1623445510864,15.5867252349854,386.513261583116,386.427398681641,0.159978926814994
+2116,305374,3799098,305474,3798998,15,21,23.6842105263158,0.0607365036108483,8.83788397670192,0.488242953431373,21.6354847619553,0.0121354622592806,0.0473684210526316,4.73684210526316,1,80.5625453356091,0.922242684673624,4.73684210526316,0.577286137474908,0,386.725128173828,386.642456054688,0.123103429623305
+2117,305374,3798998,305474,3798898,16,21,10.7894736842105,0.027668851644942,7.30167447261017,0.476832399626517,35.327364179942,-0.0166076366110677,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,27.6842441558838,25.977876663208,386.731306287977,386.666931152344,0.108868751658887
+2118,305374,3798898,305474,3798798,17,21,24.5,0.26454121572725,26.6090625015468,0.828231292517007,NA,-0.0278734608085051,0,0,0,NA,NA,0,NA,NA,386.661549886068,386.626098632812,0.0749981560787913
+2119,305374,3798798,305474,3798698,18,21,23.4210526315789,0.0800822047609704,13.6538036943823,0.521300643366371,26.1493637043723,-0.0249443255469439,0.0210526315789474,2.10526315789474,2,56.1263686554176,0.591397849462366,1.57894736842105,0.649446904659271,0,386.764407687717,386.677673339844,0.155999086243822
+2120,305374,3798698,305474,3798598,19,21,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.00868368682744116,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.792349726775956,3.68421052631579,29.3821905681065,23.2353191375732,387.201647440592,386.958984375,0.337296343154255
+2121,305374,3798598,305474,3798498,20,21,70.7894736842105,0.726138643169698,36.8304499753393,0.859355638166047,NA,0.0144653567369938,0.0526315789473684,5.26315789473684,3,72.0787897592289,0.693548387096774,4.21052631578947,0,0,387.940745035807,387.691162109375,0.473333407360525
+2122,305374,3798498,305474,3798398,21,21,80.75,0.290635417278578,16.1758526361325,0.40787037037037,20.7823006752878,0.0181597325993243,0.105,10.5,3,83.8099265080457,0.795420568101346,9.25,0.247408344632103,0,388.604565938314,388.329040527344,0.324530709782151
+2123,305374,3798398,305474,3798298,22,21,50,0.170962010163869,13.8421054057835,0.643280423280423,37.090185960684,0.0293151474747375,0.186842105263158,18.6842105263158,2,88.3630896605903,0.7442071197411,12.6315789473684,4.58432902752514,0,389.005577935113,388.913146972656,0.201147051487063
+2124,305374,3798298,305474,3798198,23,21,87.6315789473684,0.898900253440555,36.9100307659137,0.90940940940941,NA,-0.0067981219265101,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.745308310991957,1.84210526315789,0,0,389.06755065918,388.755859375,0.301125172054282
+2125,305374,3798198,305474,3798098,24,21,2.36842105263158,0.0121473007221697,5.62853982250963,0.25,20.7823008831125,0.0872408652996742,0.852631578947368,85.2631578947368,1,99.5513193744284,0.833683473389356,85.2631578947368,45.9133117007621,5.19557523727417,388.676669650608,388.647277832031,0.0802862146265589
+2126,305374,3798098,305474,3797998,25,21,0,NA,NA,NA,NA,0.092901188719552,0.88,88,1,99.6526127274839,0.924924924924925,88,57.0653251951391,20.7823009490967,388.743891398112,388.656982421875,0.142098254129897
+2127,305374,3797998,305474,3797898,26,21,66.3157894736842,0.680248840441501,33.5039294286962,0.900793650793651,NA,0.0591344533766938,0.571052631578947,57.1052631578947,3,95.9398678545331,0.7749498876268,49.2105263157895,1.27131039535944,0,389.158203125,388.925415039062,0.297128419854793
+2128,305374,3797898,305474,3797798,27,21,52.6315789473684,0.539880032096429,30.7715168393884,0.901666666666667,NA,0.0160015510618809,0.444736842105263,44.4736842105263,1,97.2990270808893,0.959594118361891,44.4736842105263,0,0,389.682868109809,389.524108886719,0.301022558729368
+2129,305374,3797798,305474,3797698,28,21,0,NA,NA,NA,NA,-0.151295882239815,0,0,0,NA,NA,0,NA,NA,390.082394917806,389.872467041016,0.226788627510785
+2130,305374,3797698,305474,3797598,29,21,20,0.107976006419286,13.7673400617668,0.736626402070751,26.4923391803507,-0.0321232668531036,0.165,16.5,3,86.0334809510059,0.718823223118979,11.25,5.30722264087561,0,390.35733710395,390.233489990234,0.216192313391117
+2131,305374,3797598,305474,3797498,30,21,60.7894736842105,0.311780718535688,25.5574675273469,0.818396663577386,20.7823008831125,0.0438442909740705,0.484210526315789,48.4210526315789,4,92.0480332341889,0.783313325330132,36.0526315789474,1.21115980459296,0,390.993553161621,390.529022216797,0.561930038675625
+2132,305374,3797498,305474,3797398,31,21,95,0.974483457934055,38.7970090717102,0.917820867959372,NA,0.0695721786456967,0.828947368421053,82.8947368421053,1,99.4682519635264,0.803159803159803,82.8947368421053,0.0329877792842804,0,392.407487657335,391.422088623047,2.36725939796708
+2133,305374,3797398,305474,3797298,32,21,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0950240854468,0.992105263157895,99.2105263157895,1,99.978528257005,1,99.2105263157895,0,0,398.940986633301,394.33056640625,4.5787641196767
+2134,305374,3797298,305474,3797198,33,21,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0746151907835156,0.9625,96.25,1,99.898450616446,0.744292237442922,96.25,0,0,401.092115614149,399.228088378906,3.46477448749426
+2135,305374,3797198,305474,3797098,34,21,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.093786211654936,1,100,1,100,NA,100,0,0,399.598080952962,396.213714599609,4.82374529316129
+2136,305374,3797098,305474,3796998,35,21,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0933786119285383,1,100,1,100,NA,100,0,0,399.310245090061,396.161102294922,4.39414715977048
+2137,305374,3796998,305474,3796898,36,21,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0706954846832607,0.894736842105263,89.4736842105263,1,99.6907669965973,0.852255054432348,89.4736842105263,0,0,394.999984741211,393.316070556641,2.32310821473651
+2138,305374,3796898,305474,3796798,37,21,91.25,0.985281058575984,38.1769157127246,0.927397260273973,NA,0.0388240046922874,0.565,56.5,1,98.2611567869712,0.950855925956262,56.5,0,0,393.753414577908,393.307586669922,0.696955514171143
+2139,305374,3796798,305474,3796698,38,21,91.3157894736842,0.936691855687305,37.3052856439567,0.92747358309318,NA,0.0594881877836183,0.778947368421053,77.8947368421053,1,99.2806056729252,0.951269556296486,77.8947368421053,0,0,394.413162231445,393.398803710938,1.03589277986163
+2140,305374,3796698,305474,3796598,39,21,96.3157894736842,0.987980458736466,38.6784473377816,0.918488160291439,NA,0.0705575349532362,0.623684210526316,62.3684210526316,3,96.7947908870871,0.886028193025936,59.2105263157895,0,0,392.340947469076,391.004821777344,2.03716021747644
+2141,305374,3796598,305474,3796498,40,21,1.31578947368421,0.0134970008024107,6.23469026493374,0.266666666666667,NA,0.0237543139504564,0.0526315789473684,5.26315789473684,4,66.2695342051196,0.727598566308244,3.94736842105263,8.80295386314392,0,389.853997124566,388.5,2.7047557065681
+2142,305374,3796498,305474,3796398,41,21,1.05263157894737,0.0107976006419286,3.67382645240773,0.416666666666667,NA,0.0479131049785218,0.321052631578947,32.1052631578947,2,95.112527342493,0.88670244484198,31.5789473684211,56.1571320236706,20.7823009490967,392.099062601725,391.64794921875,0.630994857512468
+2143,305374,3796398,305474,3796298,42,21,0,NA,NA,NA,NA,0.00289916063888086,0,0,0,NA,NA,0,NA,NA,392.947862413194,392.672546386719,0.47545490366423
+2144,305374,3796298,305474,3796198,43,21,0,NA,NA,NA,NA,0.00756348228422475,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,111.70486831665,109.107078552246,393.744537353516,393.396423339844,0.558965417179781
+2145,305374,3796198,305474,3796098,44,21,1.05263157894737,0.0107976006419286,5.19557522077812,0.25,NA,0.0247535205924099,0,0,0,NA,NA,0,NA,NA,394.500088161892,394.278015136719,0.455417723591597
+2146,305374,3796098,305474,3795998,45,21,24.7368421052632,0.126871807542661,14.3867256521468,0.370071684587814,10.3911504415562,0.0296571628745082,0.128947368421053,12.8947368421053,4,86.5914964808481,0.712990936555891,11.8421052631579,8.80723200038988,0,394.966382344564,394.632568359375,0.268349759239211
+2147,305374,3795998,305474,3795898,46,21,7,0.0755832044935001,13.1442044425425,0.696428571428572,NA,0.0296191203409398,0.1775,17.75,6,77.1584852847179,0.659574468085106,6.5,33.1459425268039,5.19557523727417,395.174360487196,395.037780761719,0.252330060132394
+2148,305374,3795898,305474,3795798,47,21,13.4210526315789,0.0344173520461474,7.35140999458082,0.491666666666667,10.3911504415562,0.00885268814886091,0.0447368421052632,4.47368421052632,2,74.2330325779122,0.748760330578512,3.94736842105263,9.92740114997415,0,395.207758585612,394.891235351562,0.387727516004012
+2149,305374,3795798,305474,3795698,48,21,16.8421052631579,0.0431904025677144,12.9237469708785,0.498731812169312,15.3638706757782,0.012072358146064,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.419404125286478,0.789473684210526,9.87016042073568,0,395.137027316623,394.989074707031,0.273665901635273
+2150,305374,3795698,305474,3795598,49,21,11.8421052631579,0.0404910024072322,10.1928237655277,0.32520325203252,30.6512073423922,0.0124447069890793,0.0552631578947368,5.52631578947368,4,62.236663616228,0.669220055710306,2.63157894736842,16.9534418469384,10.3911504745483,395.177022298177,395.094757080078,0.119245208022503
+2151,305374,3795598,305474,3795498,50,21,20.25,0.0546628532497635,11.902811471708,0.453649870801034,22.1779118227398,0.0219497648016841,0.0275,2.75,4,47.6718287827702,0.451585261353899,1.25,13.7179368625988,10.3911504745483,395.166191948785,395.032318115234,0.166079165374798
+2152,305374,3795498,305474,3795398,51,21,0,NA,NA,NA,NA,0.0152845207783302,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,38.7484750747681,11.6176595687866,394.866434733073,394.545715332031,0.321005161916264
+2153,305374,3795398,305474,3795298,52,21,6.8421052631579,0.0350922020862679,8.86644760128983,0.541666666666667,15.5867255064659,0.0175788816095998,0.0342105263157895,3.42105263157895,3,59.6212152413065,0.71238268240993,2.36842105263158,21.4032374895536,0,394.718058268229,394.489654541016,0.437660791141007
+2154,305374,3795298,305474,3795198,53,21,22.1052631578947,0.0566874033701251,8.08126499569697,0.465709728867624,15.5625785570761,0.0193665369706363,0.0315789473684211,3.15789473684211,4,49.424209926269,0.574808184143223,1.84210526315789,6.50865260759989,0,395.066617329915,394.691864013672,0.477959144271669
+2155,305374,3795198,305474,3795098,54,21,23.5,0.0507487230170644,8.53292904946192,0.512978632478633,18.0122363402265,0.0127200488619201,0.0425,4.25,3,62.6726813047014,0.74934725848564,2.75,13.6629819028518,0,395.924705505371,395.479858398438,0.391570826498847
+2156,305374,3795098,305474,3794998,55,21,22.8947368421053,0.117423906980973,22.8595209349593,0.646141975308642,31.1734513246687,0.0171070970245637,0.0736842105263158,7.36842105263158,6,58.1000832198943,0.544191919191919,2.10526315789474,14.4124490533556,0,396.21477593316,396.112579345703,0.121166109045625
+2157,305374,3794998,305474,3794898,56,21,35.5263157894737,0.36441902166509,26.5010176248605,0.822222222222222,NA,0.0223605484370302,0.0631578947368421,6.31578947368421,4,63.1612543179411,0.691011235955056,2.89473684210526,16.87717405955,5.19557523727417,396.267911275228,396.221374511719,0.0669479558658941
+2158,305374,3794898,305474,3794798,57,21,33.4210526315789,0.114274606793744,11.7881297997394,0.443055555555556,31.1734513246687,0.0149661382954755,0.0947368421052632,9.47368421052632,4,81.4981585051074,0.687015503875969,8.15789473684211,8.64440082179176,0,396.354146321615,396.3115234375,0.0834137832351378
+2159,305374,3794798,305474,3794698,58,21,20,0.0539880032096429,14.0386215701341,0.483047284256962,18.7977676763081,0.0206497234273957,0.115,11.5,6,69.5099489219904,0.65232507605389,4.25,16.3063835372096,5.19557523727417,396.643277486165,396.432586669922,0.306758014412634
+2160,305374,3794698,305474,3794598,59,21,23.9473684210526,0.0491290829207751,9.70905512404749,0.379578839239856,16.7537614906357,0.0145845219700325,0.05,5,3,65.929818495282,0.673321234119782,2.63157894736842,14.039150489004,10.3911504745483,397.290483262804,397.018157958984,0.509116423031326
+2161,305374,3794598,305474,3794498,60,21,12.6315789473684,0.129571207703143,24.2273284202116,0.690972222222222,NA,0.0161377851337947,0.0526315789473684,5.26315789473684,4,59.5316517554572,0.591397849462366,1.84210526315789,15.7525451183319,10.3911504745483,398.552813212077,397.643371582031,1.36743831794258
+2162,305374,3794498,305474,3794398,61,21,13.4210526315789,0.13766940818459,24.9843289277326,0.699346405228758,NA,0.0172507743653305,0.0421052631578947,4.21052631578947,7,39.4731166296107,0.391025641025641,1.05263157894737,21.0134319067001,10.3911504745483,400.573869493273,399.196166992188,1.98524451797191
+2163,305374,3794398,305474,3794298,62,21,32.75,0.353621421023161,28.505918166205,0.833333333333333,NA,0.0209099575821438,0.065,6.5,9,47.9499317309547,0.478283552889005,2,6.32598330424382,0,399.349116007487,398.428527832031,1.21204307654045
+2164,305374,3794298,305474,3794198,63,21,33.6842105263158,0.172761610270857,15.7332673798615,0.533777777777778,46.7601769870031,0.0289374908496699,0.126315789473684,12.6315789473684,3,82.5694057851921,0.665001469291801,8.15789473684211,5.37657542030017,0,398.262834337023,398.100494384766,0.250009943590318
+2165,305374,3794198,305474,3794098,64,21,22.6315789473684,0.0580371034503662,8.11619837888013,0.495622119815668,25.526479001085,0.0207740585215537,0.0394736842105263,3.94736842105263,5,51.3833169186911,0.432129514321295,1.84210526315789,9.45841849644979,0,398.092013041178,398.039459228516,0.130626684752619
+2166,305374,3794098,305474,3793998,65,21,18.1578947368421,0.0620862036910894,11.3506897742751,0.500953159041394,15.5867256623344,0.016548895066992,0.0368421052631579,3.68421052631579,3,57.206714896318,0.636612021857924,1.84210526315789,19.2709950038365,5.19557523727417,398.093614366319,398.045928955078,0.0895252266857619
+2167,305374,3793998,305474,3793898,66,21,5.25,0.0566874033701251,14.5918942949948,0.579365079365079,NA,0.0341340135251812,0.2075,20.75,4,85.0533895991029,0.725315993905449,11.75,33.226166351732,5.19557523727417,398.151880900065,398.033142089844,0.229214852708901
+2168,305374,3793898,305474,3793798,67,21,6.05263157894737,0.0620862036910894,13.3672068322158,0.63768115942029,NA,0.0288001813272115,0.2,20,6,79.2628988110906,0.738805970149254,8.42105263157895,34.4467416750757,0,398.278516981337,398.094390869141,0.333758132188795
+2169,305374,3793798,305474,3793698,68,21,12.6315789473684,0.0431904025677144,9.44148292883557,0.342807924203273,22.4404120447228,0.0246129272570616,0.1,10,4,73.7929699403807,0.753086419753086,6.57894736842105,21.5498681695838,5.19557523727417,398.576380411784,398.232116699219,0.397327548122488
+2170,305374,3793698,305474,3793598,69,21,28.6842105263158,0.0735586543731385,16.2256600174323,0.623367602843655,18.1845130908769,0.0354722595645351,0.207894736842105,20.7894736842105,5,82.2541332252218,0.774560987185572,11.5789473684211,7.1150147039679,0,398.923667907715,398.576751708984,0.306646677805461
+2171,305374,3793598,305474,3793498,70,21,46.75,0.12619695750254,14.409361943625,0.659891325298302,15.5867255064659,0.041154851319443,0.38,38,6,93.2180522897926,0.734073303272055,32.75,7.27665221063714,0,399.822638617622,399.297821044922,1.00505409072589
+2172,305374,3793498,305474,3793398,71,21,30.2631578947368,0.103477006151816,15.9848310828817,0.472785829307568,28.8473128254345,0.0305564929043038,0.273684210526316,27.3684210526316,2,92.5559988954582,0.896923196155933,24.7368421052632,9.21029502611894,0,401.404177347819,400.518127441406,1.02148419206256
+2173,305374,3793398,305474,3793298,72,21,36.8421052631579,0.125972007489167,14.4274708274952,0.604470121381886,17.5317854108074,0.0133937270544505,0.0526315789473684,5.26315789473684,2,75.5074053121974,0.761648745519713,4.47368421052632,15.9449444770813,5.19557523727417,401.770351833767,401.017791748047,0.800092346658069
+2174,305374,3793298,305474,3793198,73,21,24.4736842105263,0.0502088429849679,8.82936065155448,0.397058531746032,11.4302654129732,0.0182342454059452,0.0578947368421053,5.78947368421053,3,72.5666742571943,0.812684850476503,4.73684210526316,23.5959356481379,5.19557523727417,401.195121765137,400.628723144531,0.780892950769344
+2175,305374,3793198,305474,3793098,74,21,54.75,0.295584317572795,18.7148994651579,0.627738654147105,14.6953058096309,0.0129479701411583,0,0,0,NA,NA,0,NA,NA,400.300065782335,399.977661132812,0.552975371015836
+2176,305374,3793098,305474,3792998,75,21,21.5789473684211,0.073783604386512,11.1465387049283,0.431851851851852,20.7823006752878,0.0473527915582772,0.426315789473684,42.6315789473684,1,97.1257013369564,0.918108490856474,42.6315789473684,24.1917867748826,0,400.006334940592,399.901611328125,0.158660665252174
+2177,305374,3792998,305474,3792898,76,21,14.7368421052632,0.0503888029956668,10.6325371046816,0.51927575348628,28.9362433521917,0.0146857146958562,0.0894736842105263,8.94736842105263,4,70.776167492485,0.705821635012386,4.21052631578947,16.6154174383949,0,400.308312310113,400.046417236328,0.307455313440777
+2178,305374,3792898,305474,3792798,77,21,46.8421052631579,0.120123307141456,21.0640711338226,0.705029761904762,15.5867255064659,0.018320933395482,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,15.6003240346909,5.19557523727417,400.78505452474,400.452697753906,0.421288854256356
+2179,305374,3792798,305474,3792698,78,21,3.25,0.017546101043134,6.59087522810161,0.319444444444444,95.5194874234758,0.0239145118816668,0.0775,7.75,3,73.3117858429469,0.78319783197832,4,22.8131307325056,5.19557523727417,401.391262478299,401.080963134766,0.455180302951242
+2180,305374,3792698,305474,3792598,79,21,8.42105263157895,0.0431904025677144,9.86242601241634,0.574561403508772,67.7420122779754,0.0343073868674094,0.2,20,4,89.6453254144101,0.822761194029851,18.4210526315789,27.9383890315106,0,401.511817932129,400.930389404297,0.562844727825679
+2181,305374,3792598,305474,3792498,80,21,8.94736842105263,0.0183559210912786,4.69799444260591,0.354269005847953,23.1677245900672,0.019222616675669,0.0789473684210526,7.89473684210526,8,53.6165616118297,0.512536443148688,1.84210526315789,13.3822952429454,0,401.744886610243,401.422515869141,0.441421588142362
+2182,305374,3792498,305474,3792398,81,21,48.1578947368421,0.123497557342058,12.3334444353138,0.38035305655443,12.988937948033,0.0386930902706808,0.281578947368421,28.1578947368421,5,86.6061273197363,0.646605553341305,14.2105263157895,4.92886226422319,0,402.167101542155,402.094879150391,0.169936063093918
+2183,305374,3792398,305474,3792298,82,21,40.75,0.088000445231718,15.7200090559082,0.541183667662541,15.5867255688133,0.0424440049735131,0.3375,33.75,6,85.2147994213114,0.67479674796748,16.25,2.42048080938834,0,402.01951429579,401.837707519531,0.204953621711802
+2184,305374,3792298,305474,3792198,83,21,30.7894736842105,0.157914909388206,14.7017690086398,0.366379310344828,11.6176593526378,0.0324504136011168,0.157894736842105,15.7894736842105,7,73.1013041841728,0.634615384615385,5,6.31801737149557,0,402.392186482747,402.022888183594,0.618243938357004
+2185,305374,3792198,305474,3792098,84,21,41.0526315789474,0.105276606258804,15.6646592471782,0.424715909090909,13.6021923946986,0.0352501115705021,0.292105263157895,29.2105263157895,5,87.060695538097,0.773977695167286,16.5789473684211,5.21712867633716,0,403.115521748861,402.686279296875,0.37720169524279
+2186,305374,3792098,305474,3791998,85,21,10.5263157894737,0.0539880032096429,12.6587704730188,0.580721747388414,20.7823006752878,0.0263715257428167,0.228947368421053,22.8947368421053,7,84.84714002499,0.765716173070571,16.3157894736842,9.28042316984856,0,403.204227023655,403.127593994141,0.132235531473684
+2187,305374,3791998,305474,3791898,86,21,6.75,0.036441902166509,8.9589423105053,0.545833333333333,30.2951490982138,0.0128931551539972,0.0375,3.75,3,64.9626786721516,0.763872491145218,3,54.8874900817871,5.19557523727417,403.209999084473,403.117950439453,0.166397044568021
+2188,305374,3791898,305474,3791798,87,21,27.1052631578947,0.139019108264831,19.7443293948664,0.739631782945736,32.8597026090424,0.0191430006927955,0.0447368421052632,4.47368421052632,4,55.431296985303,0.539393939393939,1.57894736842105,10.5889577024123,5.19557523727417,403.603240966797,403.41357421875,0.305097101579837
+2189,305374,3791798,305474,3791698,88,21,1.31578947368421,0.0134970008024107,6.23469026493374,0.266666666666667,NA,0.0237808388160039,0.0657894736842105,6.57894736842105,4,66.788392346861,0.652112676056338,3.42105263157895,26.5246759986877,0,404.107327779134,403.800537109375,0.401989105870378
+2190,305374,3791698,305474,3791598,89,21,49.4736842105263,0.253743615085322,17.8583494614905,0.413101604278075,10.3911503376439,0.0598054368857686,0.526315789473684,52.6315789473684,5,94.3916459949211,0.772386942198263,44.7368421052632,6.0461687040329,0,404.669721815321,404.463165283203,0.314634899871548
+2191,305374,3791598,305474,3791498,90,21,57.25,0.206054212250137,16.8496257524192,0.536055536055536,14.9924457085759,0.0648239725131134,0.6625,66.25,2,96.7168138829227,0.6959534987704,54.5,3.45674953640632,0,405.361460367839,404.789306640625,0.530447612876014
+2192,305374,3791498,305474,3791398,91,21,49.7368421052632,0.170062210110375,14.6018031031921,0.470679012345679,10.3911503376439,0.0564015542769707,0.507894736842105,50.7894736842105,3,93.0778571696111,0.687808084127506,30.2631578947368,4.0651422930505,0,406.010257297092,405.853454589844,0.334252358947348
+2193,305374,3791398,305474,3791298,92,21,16.0526315789474,0.0329326819578822,5.05329014284867,0.278666666666667,25.0247606430839,0.0445099052467604,0.360526315789474,36.0526315789474,6,87.6357138977697,0.680987654320988,21.0526315789474,16.5284850197117,0,406.743268330892,406.353607177734,0.552667834404452
+2194,305374,3791298,305474,3791198,93,21,35,0.0897550553360314,15.0802869795723,0.630753968253968,11.9966713661713,0.0300255004522593,0.328947368421053,32.8947368421053,3,94.4628195470724,0.776798825256975,31.0526315789474,5.3691381111145,0,407.493465847439,406.925109863281,0.845749791438417
+2195,305374,3791198,305474,3791098,94,21,48.5,0.174561210377846,16.9819051152553,0.646486229819563,13.1717378724892,0.0629657805179886,0.6325,63.25,2,98.4879195356406,0.678521197508539,63,4.35935789417372,0,407.697507222493,407.472686767578,0.440545431946875
+2196,305374,3791098,305474,3790998,95,21,50,0.128221507622902,16.5864157202063,0.619331614012465,14.2878317662165,0.0714171287187032,0.734210526315789,73.421052631579,2,98.8398374904061,0.691255385080493,72.8947368421053,3.54986951171711,0,407.378506130642,406.895935058594,0.771547023412383
+2197,305374,3790998,305474,3790898,96,21,8.94736842105263,0.0458898027281965,11.8250736535183,0.564236111111111,37.824358195588,0.0467960696667433,0.4,40,4,89.8240147607979,0.7610513739546,15.7894736842105,14.1313314406495,0,406.012583414714,405.122039794922,0.866582087236721
+2198,305374,3790898,305474,3790798,97,21,33.6842105263158,0.345523220541715,29.2740538865881,0.817708333333333,NA,0.0586781600294145,0.565789473684211,56.578947368421,1,98.2185625529054,0.861818181818182,56.578947368421,6.45102439259374,0,404.985049777561,404.774017333984,0.491094324242074
+2199,305374,3790798,305474,3790698,98,21,19,0.102577206098322,17.0286948653132,0.682440476190476,10.3911504415562,0.0965108208544552,0.8525,85.25,1,99.5628383044854,0.62160031533307,85.25,14.6660504452993,0,404.936070760091,404.734893798828,0.369849957775117
+2200,305374,3790698,305474,3790598,99,21,23.4210526315789,0.0800822047609704,15.2342484230397,0.519173213617658,19.1735217331217,0.0569020145637397,0.477777777777778,47.7777777777778,3,91.8562794742725,0.722129001946439,27.5,7.26457894402881,0,404.897900899251,404.801330566406,0.261317742688442
+2201,305474,3800598,305574,3800498,0,22,69.8060941828255,0.680248840441742,41.3916518605561,0.861772486772487,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.095752716064,383.822479248047,0.28911453368874
+2202,305474,3800498,305574,3800398,1,22,76.0526315789474,0.260042215459872,17.8871000832192,0.697385281385281,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.411410013835,384.239318847656,0.208379748277614
+2203,305474,3800398,305574,3800298,2,22,20.2216066481994,0.0985281058576332,18.4158935203236,0.60569403714565,20.7823008831198,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.406530380249,384.231384277344,0.194357254163318
+2204,305474,3800298,305574,3800198,3,22,28.808864265928,0.0561475233380485,9.75516320528984,0.49182769726248,20.2337892196388,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.242218017578,384.144439697266,0.141470221472155
+2205,305474,3800198,305574,3800098,4,22,69.8060941828255,0.680248840441742,33.7465356535035,0.906084656084656,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.191387176514,384.133148193359,0.0777833466862618
+2206,305474,3800098,305574,3799998,5,22,7.10526315789474,0.0728838043330438,12.4936820791122,0.703703703703704,NA,0.0679401701536814,0.822368421052632,82.2368421052632,1,99.0932521871338,0.801598955783978,82.2368421052632,15.7841768417358,0,384.277005513509,384.184661865234,0.115210227216179
+2207,305474,3799998,305574,3799898,6,22,73.4072022160665,0.715341042528022,33.8491345894254,0.90188679245283,NA,0.0467876545482488,0.354570637119114,35.4570637119114,7,86.5473660130941,0.687468916355063,13.8504155124654,2.0955810174346,0,384.436103820801,384.259368896484,0.195432576579691
+2208,305474,3799898,305574,3799798,7,22,78.6703601108033,0.766629645577201,34.1117194927017,0.912558685446009,NA,0.0186731764595889,0.265927977839335,26.5927977839335,3,87.7250097811406,0.825756910925845,16.0664819944598,8.76933410267035,0,384.876241048177,384.596130371094,0.392173559227362
+2209,305474,3799798,305574,3799698,8,22,24.9307479224377,0.0809820048144931,9.31700239554297,0.473577235772358,33.4147331148214,0.0255110446344278,0.171745152354571,17.1745152354571,4,83.7957038611596,0.686981295676948,12.4653739612188,10.3017618886886,0,385.551740646362,385.243194580078,0.339354653964607
+2210,305474,3799698,305574,3799598,9,22,33.1578947368421,0.170062210110435,15.9095057160889,0.495295698924731,21.4219052194909,0.0538250143829684,0.563157894736842,56.3157894736842,3,95.25625202286,0.792940606647696,41.3157894736842,18.4339269722734,0,385.997873942057,385.856048583984,0.239217367956239
+2211,305474,3799598,305574,3799498,10,22,0.277008310249307,0.0026994001604831,0,0,NA,0.00455135644451503,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.903636970303637,7.75623268698061,12.8033817495619,5.19557523727417,386.296279907227,386.10595703125,0.198309278311584
+2212,305474,3799498,305574,3799398,11,22,28.2548476454294,0.137669408184638,13.6161427156591,0.504208754208754,51.1704811206788,0.0054422710979913,0.0941828254847645,9.41828254847645,2,82.4259784611648,0.783147662734819,8.03324099722992,21.0165618728189,0,386.454753875732,386.277038574219,0.195098596789453
+2213,305474,3799398,305574,3799298,12,22,35.7340720221607,0.17411131035116,15.8164872711067,0.400390625,15.5867255064659,-0.0786303850161107,0,0,0,NA,NA,0,NA,NA,386.483383178711,386.339233398438,0.197279203229027
+2214,305474,3799298,305574,3799198,13,22,0,NA,NA,NA,NA,-0.0323586021951135,0,0,0,NA,NA,0,NA,NA,386.475889205933,386.350494384766,0.166617297926616
+2215,305474,3799198,305574,3799098,14,22,0,NA,NA,NA,NA,-0.00345752075983678,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,36.0025405883789,31.6034507751465,386.617790222168,386.4775390625,0.164520357026004
+2216,305474,3799098,305574,3798998,15,22,42.1052631578947,0.136769608131144,13.1118146180145,0.545276435856146,12.9406814039161,-0.00123648586852842,0,0,0,NA,NA,0,NA,NA,386.750032424927,386.668121337891,0.0975736906658731
+2217,305474,3798998,305574,3798898,16,22,23.8227146814404,0.0386914023002578,10.5574908442978,0.344798514242959,14.1359091539764,-0.00666021857568543,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,386.709615071615,386.652770996094,0.0838187540598009
+2218,305474,3798898,305574,3798798,17,22,22.6315789473684,0.232148413801547,25.2850727470554,0.808139534883721,NA,-0.0175165541921735,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,0,0,386.628890991211,386.606414794922,0.0516565139940692
+2219,305474,3798798,305574,3798698,18,22,7.75623268698061,0.0377916022467634,5.30309048087447,0.367283950617284,67.5424778701394,-0.00610475971039715,0.119113573407202,11.9113573407202,1,89.4584842426695,0.952699161425577,11.9113573407202,61.2554423310036,44.0859146118164,386.726539611816,386.652893066406,0.139738565772194
+2220,305474,3798698,305574,3798598,19,22,0,NA,NA,NA,NA,-0.00131894253291923,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,21.1021032333374,20.7823009490967,387.10124206543,386.849273681641,0.313191421272321
+2221,305474,3798598,305574,3798498,20,22,66.7590027700831,0.650555438676428,32.2953604197957,0.899031811894882,NA,0.00842166280042099,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,0,0,387.837946573893,387.527496337891,0.522507782564492
+2222,305474,3798498,305574,3798398,21,22,65.2631578947368,0.223150413266603,16.7466465800851,0.584554423419052,19.4160420480008,-0.00482860525130251,0.0236842105263158,2.36842105263158,2,59.7740001564927,0.573225516621743,1.84210526315789,0.577286137474908,0,388.57935333252,388.275573730469,0.349166859047693
+2223,305474,3798398,305574,3798298,22,22,54.8476454293629,0.178160410591885,14.1193834141879,0.564228367528992,10.7999867452537,0.0128363978461428,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,2.59778761863708,0,388.992558797201,388.845642089844,0.190729155920969
+2224,305474,3798298,305574,3798198,23,22,93.6288088642659,0.912397254243288,36.5892247925226,0.920611439842209,NA,0.0435457961639284,0.43213296398892,43.213296398892,1,97.1043474380648,0.846604912042152,43.213296398892,0.480064942286565,0,389.169681549072,388.881713867188,0.189159791307021
+2225,305474,3798198,305574,3798098,24,22,32.6869806094183,0.106176406312335,13.169014154177,0.621194655163865,12.9406813574434,0.0764646481913985,0.742382271468144,74.2382271468144,2,97.2579256065691,0.76076872100729,60.387811634349,18.6740998901538,0,388.971361796061,388.764801025391,0.245269247953573
+2226,305474,3798098,305574,3797998,25,22,32.8947368421053,0.337425020060388,23.1236920678576,0.874666666666667,NA,0.0619605238943941,0.581578947368421,58.1578947368421,3,95.3121543601681,0.860780362703792,41.0526315789474,22.809600441704,0,388.990341186523,388.767395019531,0.25180291395039
+2227,305474,3797998,305574,3797898,26,22,62.6038781163435,0.610064436269181,34.1808569600236,0.866519174041298,NA,0.0212605341477174,0.207756232686981,20.7756232686981,5,81.2014104789371,0.684440559440559,7.20221606648199,3.72826171875,0,389.422710418701,389.041229248047,0.393961134211433
+2228,305474,3797898,305574,3797798,27,22,43.4903047091413,0.423805825195847,28.1079194232142,0.870488322717622,NA,0.0263567259185303,0.285318559556787,28.5318559556787,1,95.1548576193769,0.984873245338362,28.5318559556787,0,0,390.054534912109,389.654510498047,0.441165887836989
+2229,305474,3797798,305574,3797698,28,22,0,NA,NA,NA,NA,-0.056255550243089,0,0,0,NA,NA,0,NA,NA,390.419248580933,390.124328613281,0.269509485636077
+2230,305474,3797698,305574,3797598,29,22,33.4210526315789,0.171411910190677,19.445219429977,0.77166149068323,15.5867255064659,0.00483334565689898,0.0921052631578947,9.21052631578947,7,72.2055709713419,0.658170914542729,6.57894736842105,2.69609944479806,0,390.526690165202,390.374664306641,0.186285289964875
+2231,305474,3797598,305574,3797498,30,22,68.1440443213296,0.664052439478843,34.1325908504237,0.892276422764228,NA,0.0563624830944902,0.609418282548476,60.9418282548476,3,97.8189375183459,0.800172980453209,60.1108033240997,8.59983396096663,0,390.248317718506,388.5,1.13907318108329
+2232,305474,3797498,305574,3797398,31,22,60.1108033240997,0.292884917412417,17.1366095887766,0.563992731048806,41.5646017662397,0.0606519878631357,0.681440443213296,68.1440443213296,3,97.3478115182521,0.754328922495274,64.2659279778393,8.26708084587159,0,390.298362731934,388.5,1.88271180072012
+2233,305474,3797398,305574,3797298,32,22,69.8060941828255,0.340124420220871,27.3316663496673,0.82518807997424,31.1734513246797,0.0590033190662358,0.678670360110803,67.8670360110803,1,98.8118584805562,0.877691612708929,67.8670360110803,2.96766057111779,0,391.557489395142,388.5,3.56164882850587
+2234,305474,3797298,305574,3797198,33,22,73.1578947368421,0.375216622307151,28.644401895445,0.855631141345427,25.9778761038998,0.0516309552687361,0.576315789473684,57.6315789473684,1,98.2845154772468,0.84959201071733,57.6315789473684,3.02467998304324,0,392.255444844564,389.120880126953,4.14753357715278
+2235,305474,3797198,305574,3797098,34,22,65.0969529085873,0.317179518856764,27.3639983610076,0.828208556149733,31.1734513246797,0.0540492467632936,0.592797783933518,59.2797783933518,1,98.3399263258508,0.895104775578573,59.2797783933518,4.38045991024124,0,391.762172698975,388.851531982422,3.8269847199441
+2236,305474,3797098,305574,3796998,35,22,72.5761772853186,0.353621421023286,27.8222602218473,0.79628668926241,23.2353187052823,0.058492600587274,0.664819944598338,66.4819944598338,1,98.7419737427832,0.940197684477903,66.4819944598338,2.28375944097837,0,392.181800842285,388.732360839844,4.43628209462198
+2237,305474,3796998,305574,3796898,36,22,75.9002770083102,0.369817821986185,27.6541402602024,0.86734902573256,25.9778761038998,0.054254176879178,0.614958448753463,61.4958448753463,2,96.5389625644656,0.818075974003406,57.617728531856,2.54179941211735,0,392.360372543335,389.075134277344,3.05234247387103
+2238,305474,3796898,305574,3796798,37,22,56.0526315789474,0.28748611709145,25.4386146334243,0.832746478873239,36.3690265454597,0.0521671953585036,0.555263157894737,55.5263157894737,3,97.5761467101074,0.862335466731071,55,4.97478401491427,0,391.413475036621,388.5,3.26835626877748
+2239,305474,3796798,305574,3796698,38,22,43.213296398892,0.421106425035364,29.1721205359357,0.858974358974359,NA,0.0647137402534263,0.703601108033241,70.3601108033241,1,98.9324109457639,0.766099897903087,70.3601108033241,7.84677773573267,0,390.845123291016,388.5,3.68528194572768
+2240,305474,3796698,305574,3796598,39,22,38.2271468144044,0.186258611073334,19.5679753301709,0.762824675324675,52.9846788498127,0.0627519084202575,0.584487534626039,58.4487534626039,2,97.3319483796484,0.834234693877551,55.9556786703601,8.02993377125094,0,390.268789291382,388.5,3.07509147753996
+2241,305474,3796598,305574,3796498,40,22,23.5457063711911,0.229449013641064,25.2507766602586,0.782352941176471,NA,0.0310075648154009,0.152354570637119,15.2354570637119,5,79.0459120816159,0.689542483660131,8.58725761772853,9.68776199167425,0,390.394788106283,388.5,2.79187515616021
+2242,305474,3796498,305574,3796398,41,22,5.54016620498615,0.053988003209662,12.9471727030706,0.591666666666667,NA,0.0135597373438558,0.113573407202216,11.3573407202216,3,80.5428285379975,0.738405797101449,6.64819944598338,32.1469097835262,10.3911504745483,392.545101165771,391.858306884766,0.537818278161824
+2243,305474,3796398,305574,3796298,42,22,8.15789473684211,0.0418407024874881,12.6594470801172,0.530982905982906,37.8243585167531,0.0127021645255139,0.0447368421052632,4.47368421052632,2,75.8932411230936,0.790633608815427,4.21052631578947,16.735416356255,10.3911504745483,393.20250193278,392.868713378906,0.382106472583216
+2244,305474,3796298,305574,3796198,43,22,22.1606648199446,0.215952012838648,25.2977557415862,0.789583333333333,NA,0.0143028158334376,0.0470914127423823,4.70914127423823,2,70.7265317165013,0.664186046511628,3.32409972299169,14.4751997555003,0,393.827508926392,393.399047851562,0.527575687115546
+2245,305474,3796198,305574,3796098,44,22,25.4847645429363,0.0620862036911113,9.08607354184633,0.470373062015504,19.4834069610193,0.0228059416284273,0.132963988919668,13.2963988919668,5,72.4306968254835,0.676498090859503,4.15512465373961,13.4782563149929,0,394.824534098307,394.554870605469,0.478697793289416
+2246,305474,3796098,305574,3795998,45,22,47.0914127423823,0.0917796054564255,10.1170095483071,0.497027652086476,18.6780374821904,0.0213789003238248,0.0664819944598338,6.64819944598338,6,56.2746275544672,0.464391691394659,2.21606648199446,4.26790022850037,0,395.05970954895,394.56982421875,0.310455361965599
+2247,305474,3795998,305574,3795898,46,22,14.4736842105263,0.0742335044132853,8.48171064557632,0.375,22.0429587144503,0.0234431070489097,0.142105263157895,14.2105263157895,4,84.2959471977274,0.674120984233789,11.3157894736842,10.0568275893176,0,394.63316599528,394.044921875,0.497559406064529
+2248,305474,3795898,305574,3795798,47,22,7.20221606648199,0.0233948013908536,7.15099134948527,0.388888888888889,10.3911504415599,0.0212113437098254,0.038781163434903,3.8781163434903,4,58.2439433088657,0.531844380403458,2.49307479224377,24.9029581887381,0,394.399806976318,393.943603515625,0.523879856216204
+2249,305474,3795798,305574,3795698,48,22,14.6814404432133,0.0357670521264011,11.424866167596,0.299342105263158,10.3911503896019,0.0219108592971281,0.0554016620498615,5.54016620498615,4,66.8446776261368,0.521899536467695,3.32409972299169,26.5029056310654,5.19557523727417,394.636027018229,394.098388671875,0.475851987885594
+2250,305474,3795698,305574,3795598,49,22,35.7340720221607,0.0580371034503867,12.5148567085336,0.485863030165356,12.6723660693076,0.0176403156075439,0.074792243767313,7.4792243767313,6,61.3399397085753,0.472148725804206,3.04709141274238,8.88895282038936,0,395.022644042969,394.738311767578,0.24315219991588
+2251,305474,3795598,305574,3795498,50,22,3.94736842105263,0.0134970008024155,3.67017433097543,0.279461279461279,27.7097345108264,0.0210576723906343,0.128947368421053,12.8947368421053,3,82.1800224835407,0.808660624370594,10.2631578947368,31.482859893721,7.34765291213989,394.988329569499,394.589538574219,0.310879625954761
+2252,305474,3795498,305574,3795398,51,22,3.8781163434903,0.0377916022467634,7.87310430544012,0.630952380952381,NA,0.00633437680361897,0,0,0,NA,NA,0,NA,NA,394.469846725464,394.187774658203,0.347574660802284
+2253,305474,3795398,305574,3795298,52,22,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.00487368215375546,0,0,0,NA,NA,0,NA,NA,394.333544413249,394.193084716797,0.192420250109621
+2254,305474,3795298,305574,3795198,53,22,40.9972299168975,0.133170407917166,18.357777612609,0.648225957049486,11.6176592829322,0.0108125671329798,0,0,0,NA,NA,0,NA,NA,394.903051376343,394.553039550781,0.399516283010685
+2255,305474,3795198,305574,3795098,54,22,55.2631578947368,0.188958011233817,16.7357507886115,0.635734635734636,11.8258688283071,0.0125253932397563,0.0368421052631579,3.68421052631579,2,69.1230166596743,0.844262295081967,3.15789473684211,3.12261996950422,0,395.614711761475,395.310119628906,0.34280517096279
+2256,305474,3795098,305574,3794998,55,22,21.606648199446,0.210553212517682,21.1822187955668,0.786324786324786,NA,0.00227838580830913,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967,396.038314819336,395.810394287109,0.242335547701764
+2257,305474,3794998,305574,3794898,56,22,26.5927977839335,0.0863808051354593,14.8446603816658,0.495075757575758,23.2657530445521,0.011856768304101,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.862003058103975,9.41828254847645,11.4073867517359,5.19557523727417,396.35986328125,396.205444335938,0.202195733141117
+2258,305474,3794898,305574,3794798,57,22,31.8559556786704,0.155215509227778,18.3104027012189,0.506200396825397,52.9846783607022,0.0154399554324028,0.0997229916897507,9.97229916897507,2,84.1969420215301,0.851897435897436,9.14127423822715,14.843208750089,0,396.611325581868,396.357086181641,0.30742224677568
+2259,305474,3794798,305574,3794698,58,22,38.9473684210526,0.133170407917166,14.9635577599543,0.477871939736347,12.4040507292139,0.0129306085015095,0,0,0,NA,NA,0,NA,NA,396.904205322266,396.528045654297,0.405409656493635
+2260,305474,3794698,305574,3794598,59,22,19.1135734072022,0.0372517222146668,8.6925072764134,0.415393518518519,14.6283365249803,0.0347767112149776,0.243767313019391,24.3767313019391,4,87.4594854484598,0.856816219873545,16.6204986149584,20.3149305094372,0,397.74173227946,397.286773681641,0.726881265004866
+2261,305474,3794598,305574,3794498,60,22,0,NA,NA,NA,NA,0.0295374691606684,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.693201133144476,2.21606648199446,79.4101715087891,72.9233703613281,399.803194046021,398.045288085938,2.28803249540612
+2262,305474,3794498,305574,3794398,61,22,0,NA,NA,NA,NA,0.0280517761958584,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,78.913321358817,72.9233703613281,401.559191385905,399.039978027344,3.03507777910509
+2263,305474,3794398,305574,3794298,62,22,9.47368421052632,0.0971784057773917,23.7982756226051,0.625,NA,0.0222515391231833,0.0315789473684211,3.15789473684211,2,69.4384903010343,0.696291560102302,2.89473684210526,33.4344466527303,20.7823009490967,400.304134368896,398.425354003906,2.63272441700093
+2264,305474,3794298,305574,3794198,63,22,34.9030470914127,0.170062210110435,20.9839557377986,0.761277668814794,51.9557516882196,0.011860593170767,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,8.94033400217692,0,398.267977396647,398.041351318359,0.328326807758463
+2265,305474,3794198,305574,3794098,64,22,35.4570637119114,0.0863808051354593,11.2832776063553,0.452049365942029,17.5813820194395,0.0198438911870439,0.0914127423822715,9.14127423822715,2,84.8948035646419,0.898091689250226,8.86426592797784,11.3665042068019,0,398.105760574341,397.927978515625,0.115878146290539
+2266,305474,3794098,305574,3793998,65,22,35.4570637119114,0.115174406847279,12.3650767817882,0.58158748701973,19.0504423168553,0.00515396431202686,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,398.295290629069,398.122192382812,0.202425893222335
+2267,305474,3793998,305574,3793898,66,22,22.3684210526316,0.114724506820532,13.7267284853442,0.370039682539683,41.5646013505757,0.0136598124507768,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,10.3911504745483,10.3911504745483,398.566822052002,398.331420898438,0.252058583280866
+2268,305474,3793898,305574,3793798,67,22,16.8975069252078,0.0329326819578938,8.52753550027452,0.461111111111111,16.4501801703403,0.0157705609298245,0.038781163434903,3.8781163434903,4,56.9101755477017,0.687896253602305,2.77008310249307,16.1652734960829,0,398.832934061686,398.636535644531,0.207052048095981
+2269,305474,3793798,305574,3793698,68,22,23.5457063711911,0.0382415022735106,8.18641775423531,0.28005291005291,16.8742176568436,0.0347538324671319,0.188365650969529,18.8365650969529,1,92.7550642341935,0.906817334442309,18.8365650969529,28.5744554856244,11.6176595687866,398.890451431274,398.642608642578,0.120209460221694
+2270,305474,3793698,305574,3793598,69,22,19.1135734072022,0.0465646527683335,10.385545208595,0.421296296296296,15.3517971075637,0.0288278719820979,0.155124653739612,15.5124653739612,2,85.4471605756097,0.792563799222579,9.69529085872576,18.7857345342636,0,398.905796051025,398.844329833984,0.0883393372005273
+2271,305474,3793598,305574,3793498,70,22,55.7894736842105,0.286136417011209,16.1372952490745,0.588250930356193,20.7823008831198,0.0802356588310718,0.515789473684211,51.5789473684211,3,96.7655303047007,0.903547539417105,50.5263157894737,4.98023788539731,0,399.288266499837,399.04541015625,0.554046180914892
+2272,305474,3793498,305574,3793398,71,22,46.814404432133,0.456198627121644,41.6001193434674,0.779092702169625,NA,0.0185701221192092,0.0886426592797784,8.86426592797784,2,81.4406775834936,0.873392564881927,7.75623268698061,3.89668138325214,0,401.284429550171,399.669250488281,1.5175619214312
+2273,305474,3793398,305574,3793298,72,22,16.0664819944598,0.031313041861604,8.24559740044283,0.395392047565961,17.8335807751722,0.0176708950846388,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417,402.493794759115,402.257568359375,0.449492113357636
+2274,305474,3793298,305574,3793198,73,22,36.01108033241,0.0701844041725607,12.4655303271751,0.481268285091815,22.5039629576081,0.0181966626934955,0.038781163434903,3.8781163434903,4,50.0691806185109,0.479827089337176,1.10803324099723,6.98746497290475,0,401.954624176025,401.337219238281,0.665757145952363
+2275,305474,3793198,305574,3793098,74,22,30.5263157894737,0.07828260465401,12.3571002887039,0.643703703703704,18.3444142788856,0.016871208567337,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,16.8375148773193,10.3911504745483,400.529823303223,400.1669921875,0.723271113409141
+2276,305474,3793098,305574,3792998,75,22,25.4847645429363,0.0827816049214818,19.0426898150991,0.501583508751968,10.3911503376439,0.0317549427267915,0.135734072022161,13.5734072022161,4,77.9067678879753,0.76583485958486,6.09418282548476,32.678031901924,11.6176595687866,400.150465011597,400.048645019531,0.107339106672252
+2277,305474,3792998,305574,3792898,76,22,28.808864265928,0.140368808345121,16.706061070104,0.429738562091503,15.5867255064659,0.0247877012604031,0.177285318559557,17.7285318559557,2,87.1646717634873,0.8372113997114,10.2493074792244,17.6341225802898,0,400.292538960775,400.187164306641,0.166733809011022
+2278,305474,3792898,305574,3792798,77,22,7.4792243767313,0.0364419021665219,10.9502710402399,0.256410256410256,18.7329127343573,0.0469057648020841,0.379501385041551,37.9501385041551,3,95.6158676448462,0.806607142857143,37.1191135734072,25.4182454025658,0,400.543615341187,400.298156738281,0.306563995095771
+2279,305474,3792798,305574,3792698,78,22,1.31578947368421,0.0134970008024155,4.40481631604598,0.433333333333333,NA,0.0380760884382318,0.328947368421053,32.8947368421053,4,90.2802886066845,0.829316748725922,19.7368421052632,39.9197208786011,5.19557523727417,400.551310221354,400.283203125,0.375919200641075
+2280,305474,3792698,305574,3792598,79,22,24.6537396121884,0.120123307141498,20.1929812276568,0.61300505050505,37.4658254687145,0.0447237330733623,0.3601108033241,36.01108033241,2,93.2764146844661,0.815368878660018,25.7617728531856,13.6132917807652,0,400.443817138672,400.232452392578,0.38076310858799
+2281,305474,3792598,305574,3792498,80,22,49.3074792243767,0.240246614282996,17.8026594608257,0.365819209039548,15.5867255064659,0.0352742638040032,0.21606648199446,21.606648199446,6,82.3221247678788,0.685717212065345,11.9113573407202,5.40106062400035,0,400.83624013265,400.299194335938,0.775585100428761
+2282,305474,3792498,305574,3792398,81,22,47.0914127423823,0.229449013641064,21.3824587417443,0.692862165963432,15.5867255064659,0.0409765166085061,0.335180055401662,33.5180055401662,6,87.221981621964,0.644469696969697,14.6814404432133,6.75020862216792,0,401.548294067383,400.659637451172,0.731983223127454
+2283,305474,3792398,305574,3792298,82,22,35,0.119673407114751,21.4894724584894,0.688664421997755,21.59997330548,0.0345736882089879,0.168421052631579,16.8421052631579,11,65.8653526868559,0.506103074141049,2.89473684210526,7.08838032186031,0,401.38582611084,400.834350585938,0.625804947815293
+2284,305474,3792298,305574,3792198,83,22,2.77008310249307,0.026994001604831,6.27505322553942,0.6,NA,0.0164769523220144,0,0,0,NA,NA,0,NA,NA,401.557332992554,400.88037109375,0.568660226671577
+2285,305474,3792198,305574,3792098,84,22,18.005540166205,0.175461010431402,23.4659081836855,0.751282051282051,NA,0.0106153562501529,0,0,0,NA,NA,0,NA,NA,402.51830291748,401.919555664062,0.52574978157318
+2286,305474,3792098,305574,3791998,85,22,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.00623725955125423,0,0,0,NA,NA,0,NA,NA,402.92808787028,402.588195800781,0.349265877891024
+2287,305474,3791998,305574,3791898,86,22,2.10526315789474,0.0215952012838648,6.03059482826526,0.5,NA,0.0223850941813955,0.0605263157894737,6.05263157894737,2,74.7657317226782,0.852163087457205,4.73684210526316,12.684243844903,0,403.438938140869,403.155548095703,0.370343918380178
+2288,305474,3791898,305574,3791798,87,22,11.9113573407202,0.0386914023002578,7.94268216422873,0.388888888888889,15.2734876412629,0.0206178181518646,0.105263157894737,10.5263157894737,4,73.2374883718658,0.680672268907563,4.15512465373961,12.9853721417879,0,403.874356587728,403.723083496094,0.244943597388734
+2289,305474,3791798,305574,3791698,88,22,9.69529085872576,0.0472395028084543,9.49227557982121,0.424242424242424,44.3910137562246,0.0153284038843038,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,39.676944732666,37.4658241271973,404.116924285889,403.901947021484,0.284233084046819
+2290,305474,3791698,305574,3791598,89,22,29.3628808864266,0.0953788056704029,12.2290187420941,0.490978157644824,31.2860704440067,0.0326696691355862,0.235457063711911,23.5457063711911,3,89.2275648261621,0.75746232843843,17.4515235457064,13.1399086503422,0,404.661748250326,404.196350097656,0.504208933981567
+2291,305474,3791598,305574,3791498,90,22,56.0526315789474,0.1916574113943,16.038248051293,0.465007215007215,17.3185839653505,0.0712587081364626,0.671052631578947,67.1052631578947,1,98.8064194597879,0.758326359832636,67.1052631578947,3.79341748929491,0,405.674627304077,405.107574462891,0.723315899433109
+2292,305474,3791498,305574,3791398,91,22,37.1191135734072,0.120573207168245,12.5616635264425,0.483950617283951,12.6435414584993,0.0673947004980918,0.617728531855956,61.7728531855956,1,98.4870327369633,0.754755434782609,61.7728531855956,6.93695622602386,0,406.597160339355,405.91748046875,0.914903092568663
+2293,305474,3791398,305574,3791298,92,22,20.2216066481994,0.197056211715266,25.5904398834608,0.737442922374429,NA,0.0796678245798498,0.6398891966759,63.98891966759,2,95.726673318873,0.819596644654649,35.7340720221607,20.0965005866377,0,407.932546615601,406.405151367188,1.92913186064464
+2294,305474,3791298,305574,3791198,93,22,31.3019390581717,0.0762580545336476,11.9808259583304,0.502003205128205,11.7738164593906,0.0338992305483957,0.321329639889197,32.1329639889197,3,94.0511719691559,0.831603498542274,30.7479224376731,5.8858905784015,0,409.573178609212,408.263458251953,1.60024191771467
+2295,305474,3791198,305574,3791098,94,22,52.8947368421053,0.271289716128552,19.4933081915664,0.490787269681742,26.4923391803511,0.0795351287742194,0.828947368421053,82.8947368421053,1,99.4682519635264,0.734265734265734,82.8947368421053,3.70245961083306,0,408.596502304077,408.225555419922,0.542697241531327
+2296,305474,3791098,305574,3790998,95,22,39.0581717451524,0.126871807542706,19.6460787623868,0.636261110454659,11.8258688283071,0.0658061144489104,0.703601108033241,70.3601108033241,1,98.9324109457639,0.709396842849289,70.3601108033241,6.2249505050539,0,407.906339009603,407.174713134766,0.680115777406636
+2297,305474,3790998,305574,3790898,96,22,0.277008310249307,0.0026994001604831,0,0,NA,0.0436632972091489,0.365650969529086,36.5650969529086,4,87.7246800573196,0.744894815995941,16.8975069252078,31.9948046424172,5.19557523727417,406.82230758667,405.903961181641,0.762479114304609
+2298,305474,3790898,305574,3790798,97,22,9.14127423822715,0.0890802052959424,15.3866802486806,0.666666666666667,NA,0.0495594423612544,0.50415512465374,50.415512465374,2,97.1620390777979,0.814482038360161,49.584487534626,22.8578076441209,0,406.306170145671,405.566314697266,0.798610446197332
+2299,305474,3790798,305574,3790698,98,22,0,NA,NA,NA,NA,0.039712395062088,0.286842105263158,28.6842105263158,1,95.311093057307,0.89323243486242,28.6842105263158,55.1921928825728,25.977876663208,405.988803863525,405.327819824219,0.78989453346447
+2300,305474,3790698,305574,3790598,99,22,0.277008310249307,0.0026994001604831,0,0,NA,0.0266176180062034,0.210526315789474,21.0526315789474,2,88.1618113502462,0.860367454068241,13.4502923976608,46.7368578381009,20.7823009490967,405.603883743286,404.989379882812,0.817213017042249
+2301,305574,3800598,305674,3800498,0,23,72.0221606648199,0.350922020862803,30.1298437653366,0.836672644445819,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.957242329915,383.826995849609,0.16727363077596
+2302,305574,3800498,305674,3800398,1,23,71.8421052631579,0.184234060952972,16.0920268040809,0.576705926802024,13.8129738831815,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.175089518229,384.084991455078,0.116257711884996
+2303,305574,3800398,305674,3800298,2,23,20.4986149584488,0.0665852039585832,16.6704367437947,0.402441077441077,32.3110298298022,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.175008138021,384.117401123047,0.0865653193427451
+2304,305574,3800298,305674,3800198,3,23,47.6454293628809,0.154765609201031,15.2413365183504,0.679481256103974,20.7823007445652,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.112928602431,384.077789306641,0.0534295042631277
+2305,305574,3800198,305674,3800098,4,23,75.6232686980609,0.368468121905943,17.6786923159159,0.448223039215686,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.098790486654,384.071838378906,0.0463998531649336
+2306,305574,3800098,305674,3799998,5,23,91.0526315789474,0.933992455527153,38.1721613789968,0.895953757225433,NA,0.0290404846987497,0.25,25,3,80.3138800717231,0.724867724867725,12.5,0.820353984832764,0,384.149729410807,384.108215332031,0.0613393546284352
+2307,305574,3799998,305674,3799898,6,23,58.1717451523546,0.188958011233817,20.8163820850823,0.53958633958634,10.3911503722826,0.0225356791434376,0.210526315789474,21.0526315789474,3,87.1449782521657,0.735323383084577,14.404432132964,3.86590285677659,0,384.239789326986,384.137054443359,0.152620106704997
+2308,305574,3799898,305674,3799798,7,23,67.8670360110803,0.22045101310612,16.1423216129109,0.682629587107199,10.7999867220173,0.0217731715514689,0.301939058171745,30.1939058171745,3,89.7401841565673,0.82547739908146,17.7285318559557,5.14745818146872,0,384.670396592882,384.426513671875,0.406403780682079
+2309,305574,3799798,305674,3799698,8,23,23.5457063711911,0.0764830045470212,13.4323974224854,0.553125,17.3185839999892,0.0202702912980345,0.124653739612188,12.4653739612188,5,76.6307847580316,0.684335443037975,7.4792243767313,12.3400966750251,0,385.5232518514,385.070281982422,0.51920200721732
+2310,305574,3799698,305674,3799598,9,23,35.2631578947368,0.120573207168245,15.8934427379046,0.689594356261023,22.5141592900465,0.0391419062025594,0.405263157894737,40.5263157894737,5,90.0885185223861,0.792051033490728,24.2105263157895,12.5692393284339,0,386.260365804036,386.022705078125,0.382799536367212
+2311,305574,3799598,305674,3799498,10,23,7.75623268698061,0.0755832044935268,19.4470003964746,0.595238095238095,NA,0.00143727630453022,0.0221606648199446,2.21606648199446,2,55.3960460550465,0.693201133144476,1.66204986149584,26.7453811168671,20.7823009490967,386.650848388672,386.393737792969,0.268895399241008
+2312,305574,3799498,305674,3799398,11,23,17.7285318559557,0.0863808051354593,18.4216545246042,0.644097222222222,10.3911504415599,-0.0123517295992075,0.0637119113573407,6.37119113573407,2,74.421559212614,0.821992110453649,3.32409972299169,28.4091909242713,10.3911504745483,386.864944458008,386.629302978516,0.256001339751668
+2313,305574,3799398,305674,3799298,12,23,16.8975069252078,0.164663409789469,17.0315933512721,0.792349726775956,NA,-0.100801680550989,0,0,0,NA,NA,0,NA,NA,386.951473659939,386.766052246094,0.33381507972702
+2314,305574,3799298,305674,3799198,13,23,1.84210526315789,0.00944790056169086,4.81676186512236,0.2,36.3690261817537,-0.0192334723346951,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,36.369026184082,36.369026184082,386.942749023438,386.708343505859,0.514803926971217
+2315,305574,3799198,305674,3799098,14,23,0,NA,NA,NA,NA,-0.0136943357895593,0,0,0,NA,NA,0,NA,NA,387.025007459852,386.767181396484,0.463421126681699
+2316,305574,3799098,305674,3798998,15,23,14.1274238227147,0.0458898027282127,12.0802967688132,0.545762554534484,12.1230087272512,0.00227143055640617,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,37.0126857757568,33.2679138183594,387.063669840495,386.900421142578,0.324982776081512
+2317,305574,3798998,305674,3798898,16,23,5.54016620498615,0.0107976006419324,4.52298477940482,0.229126984126984,27.4448324158623,0.00238347106146509,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,38.9436973571777,36.7382659912109,386.903035481771,386.763336181641,0.233602567272801
+2318,305574,3798898,305674,3798798,17,23,56.0526315789474,0.28748611709145,18.918091763342,0.782478632478632,22.0429587144503,-0.0491119086547099,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,0,0,386.753100077311,386.676849365234,0.13979560355147
+2319,305574,3798798,305674,3798698,18,23,19.9445983379501,0.194356811554783,27.1145990370347,0.743055555555555,NA,-0.00426549712118335,0.0997229916897507,9.97229916897507,2,80.5884173588518,0.740820512820513,5.81717451523546,49.8741707272,32.8597030639648,386.804382324219,386.697265625,0.176048359033168
+2320,305574,3798698,305674,3798598,19,23,0,NA,NA,NA,NA,0.0211595940683634,0.240997229916898,24.0997229916898,1,94.2388121322677,0.914998822698375,24.0997229916898,24.773593316133,5.19557523727417,387.10019938151,386.866607666016,0.261541754238591
+2321,305574,3798598,305674,3798498,20,23,74.792243767313,0.728838043330438,34.6133426003514,0.874691358024691,NA,0.0162766796182197,0.074792243767313,7.4792243767313,3,73.4212899305291,0.748642250382955,4.15512465373961,0.96214356245818,0,387.655510796441,387.393737792969,0.474891028300707
+2322,305574,3798498,305674,3798398,21,23,41.5789473684211,0.42650522535633,34.904355259757,0.758438818565401,NA,0.0080926673541207,0.102631578947368,10.2631578947368,3,77.9686892830865,0.811414392059553,5.78947368421053,1.33219877878825,0,388.352521260579,388.10791015625,0.315881199753504
+2323,305574,3798398,305674,3798298,22,23,55.6786703601108,0.542579432257103,34.991246164221,0.828358208955224,NA,-0.00180112692522475,0.0332409972299169,3.32409972299169,1,75.0842913483253,1,3.32409972299169,0,0,388.773166232639,388.613555908203,0.244535357574359
+2324,305574,3798298,305674,3798198,23,23,81.994459833795,0.799022447502998,35.105062815803,0.900900900900901,NA,0.0574150672810723,0.545706371191136,54.5706371191136,2,95.9656245653937,0.873354493818911,47.9224376731302,1.59973223197279,0,389.102055867513,388.925689697266,0.177973829032021
+2325,305574,3798198,305674,3798098,24,23,88.6426592797784,0.863808051354593,35.9709345567771,0.913541666666667,NA,0.0704303414243534,0.742382271468144,74.2382271468144,1,99.1077237700839,0.737617306911221,74.2382271468144,0.990087966420757,0,389.276011149089,389.207244873047,0.111741207340344
+2326,305574,3798098,305674,3797998,25,23,86.8421052631579,0.890802052959424,36.8181229708686,0.922222222222222,NA,0.0424636391660897,0.65,65,1,98.7003747627035,0.962894248608534,65,0,0,389.36762491862,389.180999755859,0.231279111396915
+2327,305574,3797998,305674,3797898,26,23,43.213296398892,0.210553212517682,26.3130606409021,0.762378246753247,51.9557516882196,0.0140261126792934,0.105263157894737,10.5263157894737,3,76.5886916429342,0.822595704948646,5.54016620498615,0.410176992416382,0,389.830370585124,389.494567871094,0.376552325896469
+2328,305574,3797898,305674,3797798,27,23,30.4709141274238,0.296934017653141,26.2707537111094,0.853030303030303,NA,0.0085385598108732,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,390.425045437283,390.185180664062,0.348425754157562
+2329,305574,3797798,305674,3797698,28,23,16.3434903047091,0.0796323047342515,10.9715371145272,0.701262626262626,10.3911503376439,-0.00738216710608331,0,0,0,NA,NA,0,NA,NA,390.826082865397,390.638854980469,0.208410976666709
+2330,305574,3797698,305674,3797598,29,23,32.6315789473684,0.167362809949952,17.333335030979,0.706556717618665,67.5424771946855,0.0264483467815712,0.228947368421053,22.8947368421053,2,91.20928117866,0.916327204668061,20.5263157894737,3.34427829172419,0,390.806701660156,390.714996337891,0.126155684553523
+2331,305574,3797598,305674,3797498,30,23,15.7894736842105,0.153865809147537,25.2691477020176,0.748538011695906,NA,0.0530503410588011,0.631578947368421,63.1578947368421,1,98.56496811549,0.623193277310924,63.1578947368421,28.931156317393,0,389.128461201986,388.5,1.13748260838539
+2332,305574,3797498,305674,3797398,31,23,60.6648199445983,0.591168635145799,30.2341501174057,0.908675799086758,NA,0.049171865890009,0.443213296398892,44.3213296398892,3,91.1685722249353,0.841168308119268,22.1606648199446,12.8341159820557,0,389.86533610026,388.5,2.39825736717575
+2333,305574,3797398,305674,3797298,32,23,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0910367288788293,0.642659279778393,64.2659279778393,1,98.6254938212924,0.974148271478955,64.2659279778393,0,0,392.063763936361,391.709930419922,0.972668092571867
+2334,305574,3797298,305674,3797198,33,23,87.3684210526316,0.89620085328039,40.4365764961831,0.889558232931727,NA,0.103786312857808,0.655263157894737,65.5263157894737,1,98.7273644278237,0.912852602955148,65.5263157894737,1.35673188014203,0,392.358815511068,391.613128662109,0.588668102934577
+2335,305574,3797198,305674,3797098,34,23,80.6094182825485,0.785525446700583,35.6283274596504,0.900343642611684,NA,0.136401917792229,0.825484764542936,82.5484764542936,1,99.4408863994965,0.969357439945675,82.5484764542936,1.90927107542153,0,392.717051188151,392.216613769531,0.915353712355988
+2336,305574,3797098,305674,3796998,35,23,20.2216066481994,0.0656854039050888,12.6105108649665,0.352733686067019,54.9080507094048,0.0696935776435355,0.673130193905817,67.3130193905817,2,98.253288100869,0.764149182408721,66.2049861495845,18.5511275377784,0,392.900044759115,392.720153808594,1.24587374825659
+2337,305574,3796998,305674,3796898,36,23,21.3296398891967,0.0519634530892997,13.6443566686956,0.414525320775321,25.2922366892979,0.105442918950583,0.781163434903047,78.1163434903047,3,96.9759605872823,0.793073799856699,71.4681440443213,15.6554627147972,0,392.895479838053,392.443908691406,0.604232463140786
+2338,305574,3796898,305674,3796798,37,23,42.3684210526316,0.144867808612593,18.9545717351941,0.475081103000811,17.3185840692665,0.0369695615459166,0.292105263157895,29.2105263157895,5,86.8121200620623,0.809293680297398,13.1578947368421,5.05563413774645,0,392.992933485243,391.165588378906,1.4990202337573
+2339,305574,3796798,305674,3796698,38,23,43.7673130193906,0.071084204226055,17.0595486743074,0.441589671222024,13.40915732906,0.0270414794464673,0.155124653739612,15.5124653739612,2,88.5084802408706,0.804765928680074,14.1274238227147,5.85820920978274,0,392.391975402832,390.655029296875,2.42188804428646
+2340,305574,3796698,305674,3796598,39,23,23.8227146814404,0.0257942682001719,8.13548397499791,0.314005179622932,13.1091312492392,0.0310780904753636,0.193905817174515,19.3905817174515,4,87.2160788957045,0.737769955019138,14.9584487534626,6.77316911561149,0,392.815981547038,391.644317626953,1.18901954422517
+2341,305574,3796598,305674,3796498,40,23,1.66204986149584,0.00809820048144931,3.28720977102117,0.25,77.2377779910755,0.0332574321705188,0.263157894736842,26.3157894736842,3,90.3044768737933,0.792436974789916,19.9445983379501,24.21836521751,0,392.779174804688,392.682952880859,0.387780963239478
+2342,305574,3796498,305674,3796398,41,23,25.4847645429363,0.248344814764445,20.6864986926166,0.835144927536232,NA,0.0353338493940231,0.257617728531856,25.7617728531856,4,91.5619361194103,0.837709045135767,23.8227146814404,22.48425333987,0,392.970947265625,392.771881103516,0.25599947493512
+2343,305574,3796398,305674,3796298,42,23,43.9473684210526,0.450799826800678,30.8044249350293,0.834331337325349,NA,0.0255658901616698,0.186842105263158,18.6842105263158,3,88.7872115230638,0.803236245954693,16.8421052631579,10.9722949216064,0,393.45162624783,393.246185302734,0.270070135045617
+2344,305574,3796298,305674,3796198,43,23,9.41828254847645,0.0917796054564255,15.0752593528754,0.686274509803921,NA,0.00709102715636794,0.171745152354571,17.1745152354571,2,87.0218008698327,0.854669887278583,10.803324099723,5.31592199110216,0,393.810246785482,393.603302001953,0.341510154082161
+2345,305574,3796198,305674,3796098,44,23,41.8282548476454,0.0815218848465897,12.3372551162165,0.573970637303971,13.2052858346952,0.0427662998794544,0.415512465373961,41.5512465373961,3,91.3252427697072,0.769806118052564,18.005540166205,2.7168052927653,0,394.330050998264,394.109375,0.375269791151412
+2346,305574,3796098,305674,3795998,45,23,49.3074792243767,0.160164409521997,16.7141195262825,0.691049382716049,13.8548672554132,0.0393339627234709,0.271468144044321,27.1468144044321,7,85.658704538314,0.750432077428275,19.1135734072022,3.29841612309826,0,394.607986450195,394.416107177734,0.44483420429431
+2347,305574,3795998,305674,3795898,46,23,1.05263157894737,0.0107976006419324,4.51955015500873,0.291666666666667,NA,0.025481218536726,0.121052631578947,12.1052631578947,5,75.6366033381416,0.766620604943958,7.36842105263158,82.0948395625405,0,394.050370958116,393.720794677734,0.500884588522992
+2348,305574,3795898,305674,3795798,47,23,0,NA,NA,NA,NA,0.0246250524546453,0.07202216066482,7.20221606648199,6,58.0863211090736,0.55318529304696,1.93905817174515,119.710482377272,89.6895294189453,393.673746744792,393.55126953125,0.236320627331559
+2349,305574,3795798,305674,3795698,48,23,0,NA,NA,NA,NA,0.0177286050623522,0.0775623268698061,7.75623268698061,6,61.128326776266,0.566366366366366,2.49307479224377,93.5900214059012,46.7601776123047,393.880062527127,393.61376953125,0.463301661602868
+2350,305574,3795698,305674,3795598,49,23,20.2216066481994,0.0492640529288166,12.3495704178627,0.54416335978836,15.927562503991,0.0187851626903575,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,6.92743364969889,5.19557523727417,394.470980326335,394.032287597656,0.471305313603596
+2351,305574,3795598,305674,3795498,50,23,12.8947368421053,0.022045101310612,5.4984320067385,0.334668803418803,25.6547651496593,0.0188356070961977,0.0763157894736842,7.63157894736842,4,74.5561724532934,0.63144814208644,5.52631578947368,14.0555145493869,5.19557523727417,394.483883327908,394.268981933594,0.33901923189031
+2352,305574,3795498,305674,3795398,51,23,54.5706371191136,0.132945457903793,9.02448779045309,0.374852245862884,24.459871151972,0.0222097137304238,0.202216066481994,20.2216066481994,1,93.2012122404084,0.931450737847222,20.2216066481994,9.01590955420716,0,394.169822692871,394.127624511719,0.11445850621992
+2353,305574,3795398,305674,3795298,52,23,29.6398891966759,0.288835817171692,29.537195914127,0.772585669781931,NA,0.00125311485740325,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,16.6179789134434,11.6176595687866,394.261457655165,394.16162109375,0.21391016206534
+2354,305574,3795298,305674,3795198,53,23,28.2548476454294,0.0917796054564255,14.6994026237707,0.641460571538443,10.79998665274,0.00751730733582688,0,0,0,NA,NA,0,NA,NA,394.832051595052,394.548431396484,0.341992674868933
+2355,305574,3795198,305674,3795098,54,23,38.1578947368421,0.0978532558175124,15.2566407028079,0.51728272154633,16.3732723704204,0.0139465647354403,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,12.5432281494141,10.3911504745483,395.381441752116,395.158386230469,0.274957047450613
+2356,305574,3795098,305674,3794998,55,23,8.03324099722992,0.0782826046540099,14.4914388116877,0.666666666666667,NA,0.0108538650226498,0,0,0,NA,NA,0,NA,NA,395.859754774306,395.577667236328,0.393440719634288
+2357,305574,3794998,305674,3794898,56,23,13.0193905817175,0.126871807542706,18.4494871469286,0.698581560283688,NA,0.0167910994741685,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,18.4447795550028,7.34765291213989,396.543678283691,396.214080810547,0.385937409332909
+2358,305574,3794898,305674,3794798,57,23,13.5734072022161,0.132270607863672,25.5398698514264,0.693877551020408,NA,0.0138965444835635,0,0,0,NA,NA,0,NA,NA,397.04987250434,396.939910888672,0.257335531881992
+2359,305574,3794798,305674,3794698,58,23,6.57894736842105,0.0337425020060388,8.14599418551908,0.466666666666667,51.9557516882196,0.0196976307863416,0.0578947368421053,5.78947368421053,3,70.3862552664237,0.750246467302005,3.15789473684211,19.7154436328194,5.19557523727417,397.363159179688,397.059265136719,0.278819513295282
+2360,305574,3794698,305674,3794598,59,23,32.1329639889197,0.0782826046540099,8.31011684364804,0.447524752475248,24.0124327068241,0.0265801881822808,0.138504155124654,13.8504155124654,4,80.6647539021791,0.713221108379043,6.92520775623269,13.8380642223358,0,397.899722629123,397.565765380859,0.929739536399979
+2361,305574,3794598,305674,3794498,60,23,38.5041551246537,0.375216622307151,26.7984605985197,0.848920863309353,NA,0.0232856369242745,0.124653739612188,12.4653739612188,5,75.1428841356301,0.744462025316456,7.20221606648199,10.0083603435093,0,401.389803568522,399.116912841797,2.79129562043714
+2362,305574,3794498,305674,3794398,61,23,24.0997229916898,0.23484781396203,26.4641577672033,0.804597701149425,NA,0.0259667087951046,0.141274238227147,14.1274238227147,3,83.5411748254279,0.839377085650723,10.803324099723,13.6531652749753,0,404.56457180447,403.830261230469,1.50961512130443
+2363,305574,3794398,305674,3794298,62,23,24.7368421052632,0.126871807542706,15.4126826761049,0.664244186046512,40.5787395179318,0.0235096725344862,0.1,10,1,88.3079606859525,0.876543209876543,10,14.6080130903344,5.19557523727417,402.471463521322,399.234741210938,3.11371343469241
+2364,305574,3794298,305674,3794198,63,23,35.1800554016621,0.171411910190677,21.6233417601926,0.673981191222571,47.047934632588,0.0160322608608011,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,398.357964409722,398.208465576172,0.483428971203122
+2365,305574,3794198,305674,3794098,64,23,35.1800554016621,0.114274606793785,13.32279392147,0.517678941495297,22.9405620943639,0.0164580462434259,0.0304709141274238,3.04709141274238,2,67.4369707831767,0.724952380952381,2.77008310249307,37.9649713689631,0,398.234191894531,398.130218505859,0.134896112480867
+2366,305574,3794098,305674,3793998,65,23,51.5235457063712,0.502088429849857,27.5632774138722,0.89247311827957,NA,0.0142461656845994,0.074792243767313,7.4792243767313,2,82.3655876327824,0.673234925497842,6.92520775623269,10.8980871836344,0,398.432576497396,398.342224121094,0.150336409930134
+2367,305574,3793998,305674,3793898,66,23,11.3157894736842,0.0580371034503867,9.33342894550126,0.339285714285714,40.5787394447539,0.023960569469177,0.0868421052631579,8.68421052631579,3,78.0592989720641,0.878322126160743,7.36842105263158,24.0711489879724,5.19557523727417,398.667386372884,398.556976318359,0.145248329968526
+2368,305574,3793898,305674,3793798,67,23,11.9113573407202,0.0290185517251933,7.0037842009918,0.319492337164751,31.6970666798985,0.0270277343443315,0.0831024930747922,8.31024930747922,3,80.0452775493904,0.732905851162217,7.20221606648199,13.4749758243561,0,398.78525797526,398.671569824219,0.15181508126294
+2369,305574,3793798,305674,3793698,68,23,8.58725761772853,0.020920351243744,7.29275902677066,0.38296568627451,17.0455204347221,0.0357967623058357,0.254847645429363,25.4847645429363,3,86.6716939613993,0.811791640221235,12.1883656509695,28.3596190162327,10.3911504745483,398.896324157715,398.77685546875,0.124950070204142
+2370,305574,3793698,305674,3793598,69,23,24.3767313019391,0.0593868035306282,12.1924349697207,0.568998015873016,15.5867255064659,0.018081185237002,0,0,0,NA,NA,0,NA,NA,398.878255208333,398.830810546875,0.0912088741576583
+2371,305574,3793598,305674,3793498,70,23,1.31578947368421,0.0134970008024155,4.40481632700177,0.433333333333333,NA,0.0403394830587786,0.157894736842105,15.7894736842105,3,86.6302039562816,0.897235576923077,14.2105263157895,20.0175217787425,0,399.019788953993,398.876068115234,0.368036200583741
+2372,305574,3793498,305674,3793398,71,23,26.5927977839335,0.0431904025677296,7.49041731380111,0.405618069145466,19.9702823514822,0.0150606123346749,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,16.4386280377706,7.34765291213989,399.971728006999,399.109527587891,1.26322011657805
+2373,305574,3793398,305674,3793298,72,23,40.9972299168975,0.0799022447502998,10.3757317618254,0.396455026455026,17.0671352929757,0.0163448292476566,0.03601108033241,3.601108033241,2,65.6056090786984,0.827107279693487,2.77008310249307,3.36282150561993,0,401.753607855903,400.523651123047,1.0458663962822
+2374,305574,3793298,305674,3793198,73,23,6.37119113573407,0.0155215509227778,3.58170391887561,0.3125,47.3599654310549,0.0215190468983882,0.0803324099722992,8.03324099722992,5,62.5806622241384,0.629838502947962,2.21606648199446,19.935539706,5.19557523727417,401.789782206217,401.238464355469,0.683920572652912
+2375,305574,3793198,305674,3793098,74,23,33.9473684210526,0.0580371034503867,6.88601859677198,0.391971677559913,14.1709817484335,0.00529211590665478,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,11.6176595687866,11.6176595687866,400.675337049696,400.372924804688,0.485034878113006
+2376,305574,3793098,305674,3792998,75,23,20.7756232686981,0.0337425020060388,7.99981412669435,0.458978675645342,17.9940708168336,0.0188044727477081,0.155124653739612,15.5124653739612,2,88.8135246714552,0.902382964340037,14.404432132964,37.4448171002524,15.5867252349854,400.413500467936,400.263153076172,0.233773585257024
+2377,305574,3792998,305674,3792898,76,23,19.9445983379501,0.0485892028886958,10.8640825675848,0.544328703703704,15.5625786227999,0.0324212965727149,0.227146814404432,22.7146814404432,3,86.1966616857832,0.848300580892349,11.0803324099723,13.9700665125033,0,400.366461859809,400.236907958984,0.255825618872511
+2378,305574,3792898,305674,3792798,77,23,10.2493074792244,0.0332926019792916,7.49649270548446,0.590544871794872,13.8548671168586,0.0426983551920064,0.263157894736842,26.3157894736842,2,90.1739414206495,0.880252100840336,18.5595567867036,30.5646829052975,5.19557523727417,400.351430257161,400.260833740234,0.18454544336142
+2379,305574,3792798,305674,3792698,78,23,22.8947368421053,0.0782826046540099,13.0466401402108,0.583449074074074,11.6176593526411,0.0236670334868522,0.131578947368421,13.1578947368421,4,76.3217180920266,0.756149732620321,5,7.71201535224915,0,400.386108398438,400.257476806641,0.177707630542634
+2380,305574,3792698,305674,3792598,79,23,14.9584487534626,0.0485892028886958,6.68821390391231,0.421497584541063,26.4512972925453,0.0318393348273407,0.171745152354571,17.1745152354571,7,77.4288005504559,0.698160535117057,10.5263157894737,10.1331733734377,0,400.205217997233,400.162231445312,0.0877666479760959
+2381,305574,3792598,305674,3792498,80,23,31.0249307479224,0.100777605991369,14.8238695758179,0.614428164428164,20.9345467558249,0.0528533105649215,0.379501385041551,37.9501385041551,4,93.3815527292254,0.851732142857143,34.9030470914127,6.37970062589993,0,400.212887234158,400.157806396484,0.13115844572093
+2382,305574,3792498,305674,3792398,81,23,11.6343490304709,0.0566874033701451,11.0920564817923,0.604377104377104,15.5867255064659,0.0400975665272345,0.240997229916898,24.0997229916898,4,85.5078198723771,0.727996232634801,11.9113573407202,24.760378130551,0,400.422129313151,400.220947265625,0.34320232016342
+2383,305574,3792398,305674,3792298,82,23,18.9473684210526,0.0647856038515944,15.3505057789578,0.49702380952381,15.5867255757432,0.0270050634525097,0.0947368421052632,9.47368421052632,4,73.9013275499804,0.631782945736434,4.73684210526316,26.8013066053391,0,400.527004665799,400.411407470703,0.278465262074282
+2384,305574,3792298,305674,3792198,83,23,17.7285318559557,0.0863808051354593,14.023918383287,0.671900161030596,10.3911503376439,0.0183572642727438,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.915430267062315,6.64819944598338,1.82152831554413,0,400.928560892741,400.495025634766,0.561243799167358
+2385,305574,3792198,305674,3792098,84,23,23.8227146814404,0.116074206900773,16.906630673282,0.670442571127503,23.2353185658643,0.00434728357508386,0,0,0,NA,NA,0,NA,NA,401.961362202962,401.346343994141,0.575656877268986
+2386,305574,3792098,305674,3791998,85,23,48.1994459833795,0.15656520930802,13.8161163400604,0.529512051734274,12.940681455874,0.0106115686452228,0.113573407202216,11.3573407202216,2,86.0165602468936,0.820153985507246,10.2493074792244,2.1624358107404,0,402.445471869575,402.14404296875,0.418733331166049
+2387,305574,3791998,305674,3791898,86,23,4.73684210526316,0.0485892028886958,10.7479979139239,0.62962962962963,NA,0.0104235654818934,0.0289473684210526,2.89473684210526,2,62.0252426148085,0.725383920505872,2.10526315789474,13.4972356449474,0,402.923413594564,402.491149902344,0.572128263569231
+2388,305574,3791898,305674,3791798,87,23,0,NA,NA,NA,NA,0.009114103214713,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,45.2272042036057,30.2951488494873,403.576802571615,403.287811279297,0.393109388637702
+2389,305574,3791798,305674,3791698,88,23,1.38504155124654,0.0134970008024155,5.00492458457433,0.366666666666667,NA,0.0229439570188298,0.0831024930747922,8.31024930747922,3,79.4680930343721,0.777421542635181,7.20221606648199,42.0006261189779,21.4219055175781,403.845245361328,403.665313720703,0.257531634515803
+2390,305574,3791698,305674,3791598,89,23,23.5457063711911,0.229449013641064,24.2490175537024,0.743137254901961,NA,0.0210549349901769,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.961019328366267,4.98614958448753,2.83690736028883,0,404.389495849609,404.026885986328,0.563456744048737
+2391,305574,3791598,305674,3791498,90,23,13.1578947368421,0.0337425020060388,6.48590491695331,0.452876984126984,21.5688475601977,0.0496346282371393,0.439473684210526,43.9473684210526,2,94.4729392657182,0.803060788976282,28.6842105263158,25.1146646117022,0,405.783749898275,404.508209228516,1.27622742842262
+2392,305574,3791498,305674,3791398,91,23,2.49307479224377,0.0242946014443479,11.7464750887894,0.296296296296296,NA,0.0548678949741173,0.437673130193906,43.7673130193906,3,93.005989835099,0.803771020893494,28.5318559556787,30.2296152959896,0,407.551896837023,406.565368652344,1.27457510697104
+2393,305574,3791398,305674,3791298,92,23,37.3961218836565,0.12147300722174,15.68744412947,0.642777777777778,22.6372386750383,0.0735160935850887,0.6398891966759,63.98891966759,2,98.0797748984599,0.755166874888453,62.8808864265928,9.68632925950087,0,409.80153910319,408.420867919922,1.03945620814677
+2394,305574,3791298,305674,3791198,93,23,16.0664819944598,0.039141302327005,7.03926174503562,0.383527131782946,17.2007838838011,0.0214506897553448,0.171745152354571,17.1745152354571,6,81.2922115895243,0.742877492877493,13.0193905817175,7.09807655888219,0,410.004547119141,409.554504394531,0.709491833654525
+2395,305574,3791198,305674,3791098,94,23,3.15789473684211,0.0161964009628986,3.73207702515824,0.272727272727273,25.9778759376342,0.0311701164157344,0.189473684210526,18.9473684210526,6,83.388512954516,0.757132631148379,13.6842105263158,15.8775777750545,0,408.892420450846,408.345947265625,0.660391837425997
+2396,305574,3791098,305674,3790998,95,23,5.54016620498615,0.0134970008024155,5.87789998950976,0.217592592592593,18.3444143261419,0.0272026453242983,0.152354570637119,15.2354570637119,4,81.9582562810304,0.788888888888889,9.69529085872576,16.9066621086814,0,408.057356092665,407.889739990234,0.39314233126014
+2397,305574,3790998,305674,3790898,96,23,42.382271468144,0.206504112276957,19.8223711928923,0.677304964539007,20.7823008831198,0.0567343410723997,0.562326869806094,56.2326869806094,4,96.7934538812224,0.787882348991035,54.016620498615,4.61526568182583,0,407.387001037598,406.867126464844,0.450301457482294
+2398,305574,3790898,305674,3790798,97,23,19.9445983379501,0.194356811554783,28.2362057217612,0.752314814814815,NA,0.0611126014493261,0.689750692520776,68.9750692520776,3,96.7317171275326,0.778663396689148,62.3268698060942,17.0106726975805,0,407.353847927517,407.041107177734,0.524358952736923
+2399,305574,3790798,305674,3790698,98,23,0,NA,NA,NA,NA,0.0271768555305818,0.163157894736842,16.3157894736842,3,88.3737040950112,0.84509666899604,15,46.9930911602512,5.19557523727417,407.071164449056,406.043304443359,0.86497975969914
+2400,305574,3790698,305674,3790598,99,23,12.1883656509695,0.0593868035306282,10.1986829098235,0.660463192721257,77.237777728945,0.0653203608579995,0.482456140350877,48.2456140350877,2,94.0162176472013,0.841101694915254,38.0116959064327,22.7898366725806,0,405.928815205892,405.184967041016,0.605377103890088
+2401,305674,3800598,305774,3800498,0,24,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.980003356934,383.842834472656,0.0997360504927351
+2402,305674,3800498,305774,3800398,1,24,40,0.205154412196716,25.1905486791996,0.785460683312962,14.6953058096335,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.076416015625,384.055480957031,0.0422487715409124
+2403,305674,3800398,305774,3800298,2,24,4.98614958448753,0.0485892028886958,20.6193634116242,0.37037037037037,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.098600387573,384.081176757812,0.0555486488408338
+2404,305674,3800298,305774,3800198,3,24,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.128331502279,384.071105957031,0.0963537140060379
+2405,305674,3800198,305774,3800098,4,24,31.8559556786704,0.310431018455557,26.8979401226449,0.855072463768116,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.131446838379,384.069396972656,0.110144303787682
+2406,305674,3800098,305774,3799998,5,24,91.8421052631579,0.942090656008603,37.7881547641663,0.910219675262655,NA,0.0438553006081891,0.467105263157895,46.7105263157895,1,95.9116451039364,0.879901234567901,46.7105263157895,0,0,384.176241556803,384.099090576172,0.132278627308826
+2407,305674,3799998,305774,3799898,6,24,19.9445983379501,0.0971784057773917,11.695519167202,0.379107981220657,25.9778758441098,0.00775173817612257,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,0.649446904659271,0,384.266300201416,384.131652832031,0.175225524912467
+2408,305674,3799898,305774,3799798,7,24,2.49307479224377,0.012147300722174,5.50618407539773,0.283333333333333,18.7329127343573,0.0192275234904348,0.177285318559557,17.7285318559557,2,89.8596429078757,0.858916546416546,16.0664819944598,62.4519737958908,16.4298515319824,384.625279744466,384.399261474609,0.406031067635807
+2409,305674,3799798,305774,3799698,8,24,0,NA,NA,NA,NA,0.030122588251084,0.257617728531856,25.7617728531856,4,87.9972467265556,0.789021758676497,19.6675900277008,64.7914496185959,25.977876663208,385.71004486084,385.054656982422,0.666760526482614
+2410,305674,3799698,305774,3799598,9,24,18.6842105263158,0.0958287056971501,16.7081584986992,0.69348357791754,25.9778758441098,0.0575645379577365,0.668421052631579,66.8421052631579,2,95.8314547951369,0.80358810190743,50.5263157894737,19.1903011911497,0,386.503285725911,386.273345947266,0.323915303528001
+2411,305674,3799598,305774,3799498,10,24,0,NA,NA,NA,NA,0.0484037059668833,0.340720221606648,34.0720221606648,4,87.6578105968879,0.6871161020462,15.2354570637119,53.2479351632963,31.1734504699707,386.8726978302,386.768463134766,0.135319164595998
+2412,305674,3799498,305774,3799398,11,24,11.6343490304709,0.11337480674029,26.6857461889365,0.642857142857143,NA,0.0287123980766092,0.335180055401662,33.5180055401662,3,90.0991994110631,0.760700757575758,19.1135734072022,22.6337815986192,10.3911504745483,387.055261611938,386.953033447266,0.127274629105486
+2413,305674,3799398,305774,3799298,12,24,4.98614958448753,0.0485892028886958,15.3468160325865,0.462962962962963,NA,0.0380169111548264,0.346260387811634,34.6260387811634,2,95.7027191033596,0.831535130291944,34.3490304709141,49.7830340652466,11.6176595687866,387.33295694987,387.145294189453,0.299022075342721
+2414,305674,3799298,305774,3799198,13,24,0.789473684210526,0.00809820048144931,3.46371677921464,0.222222222222222,NA,0.00338948416369691,0,0,0,NA,NA,0,NA,NA,388.04753112793,387.386474609375,0.681379963620161
+2415,305674,3799198,305774,3799098,14,24,3.601108033241,0.0350922020862803,9.08765523149906,0.576923076923077,NA,0.00391661840455383,0,0,0,NA,NA,0,NA,NA,388.182604471842,387.563751220703,0.677661138320263
+2416,305674,3799098,305774,3798998,15,24,42.1052631578947,0.0820617648786863,11.8834482694934,0.467606837606838,13.7537972835029,0.0133565902277273,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,5.75867303212484,0,387.66584777832,387.292175292969,0.488389225841433
+2417,305674,3798998,305774,3798898,16,24,39.3351800554017,0.1277716075962,16.1912348171307,0.60702614379085,15.5867256623399,2.40663782349259e-06,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,9.03469059202406,5.19557523727417,387.194727579753,387.000274658203,0.199277425988425
+2418,305674,3798898,305774,3798798,17,24,57.8947368421053,0.593868035306282,44.1619862522745,0.771969696969697,NA,-0.0865018737128642,0,0,0,NA,NA,0,NA,NA,387.085033416748,386.894866943359,0.259951963781803
+2419,305674,3798798,305774,3798698,18,24,23.5457063711911,0.229449013641064,31.0701738817484,0.725490196078431,NA,-0.036545834978033,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483,387.341921488444,386.927764892578,0.548811085497179
+2420,305674,3798698,305774,3798598,19,24,3.601108033241,0.0350922020862803,9.88340310904987,0.525641025641026,NA,0.013599185884272,0.0415512465373961,4.15512465373961,3,62.0511327514169,0.668024172359432,1.93905817174515,14.0126293818156,0,387.70979309082,387.114501953125,0.691523686471404
+2421,305674,3798598,305774,3798498,20,24,31.5789473684211,0.102577206098358,12.5596829855486,0.643869248035915,22.5141591514918,0.0153015991380626,0.0526315789473684,5.26315789473684,4,62.7423213041705,0.708812260536398,3.04709141274238,13.990723635021,0,388.185740152995,387.626708984375,0.559965948908116
+2422,305674,3798498,305774,3798398,21,24,13.9473684210526,0.0476894028352015,8.54774435250395,0.448792270531401,10.3911504415599,0.00500129807805934,0.0184210526315789,1.84210526315789,2,51.6860660322344,0.617962466487936,1.31578947368421,0.74222503389631,0,388.484149932861,388.193481445312,0.246564721276243
+2423,305674,3798398,305774,3798298,22,24,55.6786703601108,0.271289716128552,19.8459102805752,0.669753086419753,15.5867255064659,-0.0117012588674284,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,388.67000579834,388.575439453125,0.163110410759936
+2424,305674,3798298,305774,3798198,23,24,45.4293628808864,0.221350813159614,19.9957869435055,0.647168803418803,41.5646013505757,0.0107945863047585,0.119113573407202,11.9113573407202,2,84.7981706382009,0.873864430468204,9.97229916897507,3.41248289374418,0,389.033494949341,388.84521484375,0.236191699534734
+2425,305674,3798198,305774,3798098,24,24,54.2936288088643,0.529082431454688,29.1922642398173,0.899659863945578,NA,0.047550726289691,0.520775623268698,52.0775623268698,1,97.8571254487222,0.856089296392266,52.0775623268698,2.26319593825239,0,389.409016927083,389.298034667969,0.190245289692053
+2426,305674,3798098,305774,3797998,25,24,81.5789473684211,0.836814049749762,35.7719447742447,0.918817204301075,NA,0.0342720466987598,0.602631578947368,60.2631578947368,1,98.4417702566629,0.952851404376754,60.2631578947368,0.772647830596657,0,389.648998260498,389.454345703125,0.209839575976856
+2427,305674,3797998,305774,3797898,26,24,11.9113573407202,0.0386914023002578,10.7241609345821,0.430085882984434,53.6876103895749,0.0069091211241415,0.146814404432133,14.6814404432133,3,84.5959650930734,0.742400456686171,11.3573407202216,9.54407243008884,0,390.068700790405,389.754608154297,0.284124077868307
+2428,305674,3797898,305774,3797798,27,24,39.8891966759003,0.388713623109567,26.7114232879019,0.862268518518518,NA,-0.00561563854740791,0,0,0,NA,NA,0,NA,NA,390.523506164551,390.376220703125,0.256221084421443
+2429,305674,3797798,305774,3797698,28,24,3.04709141274238,0.0148467008826571,6.89462914328808,0.284722222222222,15.5867255064659,-0.000158732172801315,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,6.234690284729,0,390.876405715942,390.746124267578,0.130759412710302
+2430,305674,3797698,305774,3797598,29,24,29.7368421052632,0.152516109067295,13.7625262748734,0.421875,72.7380523635074,0.0214609833078971,0.136842105263158,13.6842105263158,5,80.7829299452207,0.804741024938339,9.73684210526316,0.141301017541152,0,390.959299723307,390.743225097656,0.177483553599493
+2431,305674,3797598,305774,3797498,30,24,6.92520775623269,0.0337425020060388,10.3136525450415,0.441520467836257,20.7823008831198,0.0543325470239337,0.775623268698061,77.5623268698061,1,99.2474045618463,0.745810449232502,77.5623268698061,31.2312074235507,0,389.202663421631,388.5,1.51139158389022
+2432,305674,3797498,305774,3797398,31,24,75.9002770083102,0.73963564397237,33.8815432374718,0.914841849148419,NA,0.095748381468292,0.570637119113573,57.0637119113573,4,94.1012524405697,0.841893371515203,49.3074792243767,3.21041830766548,0,391.009236653646,388.5,2.22026086209809
+2433,305674,3797398,305774,3797298,32,24,98.3379501385042,0.958287056971501,37.3426470023216,0.930516431924883,NA,0.178858188184757,1,100,1,100,NA,100,0.0863530510350278,0,392.565685272217,392.228332519531,0.410577473849686
+2434,305674,3797298,305774,3797198,33,24,85.7894736842105,0.440002226158746,27.832945257532,0.83252861769972,11.6176593526411,0.126220052793169,0.839473684210526,83.9473684210526,2,97.9328822740574,0.83443167583465,77.8947368421052,0.580745670115312,0,392.964452107747,392.679046630859,0.356683977561955
+2435,305674,3797198,305774,3797098,34,24,83.1024930747922,0.404910024072465,29.2585281240632,0.835448491970231,10.3911504415599,0.0794797162257697,0.700831024930748,70.0831024930748,2,96.1257789132503,0.788443506797937,41.8282548476454,0.826417657226442,0,393.19135093689,392.910003662109,0.305265159540442
+2436,305674,3797098,305774,3796998,35,24,57.0637119113573,0.13901910826488,15.9189447783634,0.629296037440211,16.4169683966929,0.0565700719762742,0.529085872576177,52.9085872576177,4,92.2528548112388,0.7660518444666,31.0249307479224,2.27973563508838,0,393.500796000163,393.125183105469,0.484400955593972
+2437,305674,3796998,305774,3796898,36,24,18.2825484764543,0.0197956011768761,7.59169968120759,0.277491181657848,14.9230695228535,0.0338772841246068,0.293628808864266,29.3628808864266,4,86.9773389314944,0.599753618724977,12.1883656509695,12.7700452669612,0,393.79411315918,393.454742431641,0.416054158302887
+2438,305674,3796898,305774,3796798,37,24,7.89473684210526,0.0404910024072465,12.2339617298486,0.438405797101449,20.7823008831198,0.0188898678877817,0.1,10,3,79.8592252825486,0.717813051146384,5.78947368421053,9.86280458851864,5.19557523727417,393.688735961914,393.439819335938,0.339248827830521
+2439,305674,3796798,305774,3796698,38,24,6.92520775623269,0.0224950013373592,7.50152743927208,0.290123456790123,10.7999867220173,0.0123149721108761,0.03601108033241,3.601108033241,1,76.2797118658907,0.884738186462324,3.601108033241,10.7737914965703,5.19557523727417,393.459957122803,393.176483154297,0.325163047335549
+2440,305674,3796698,305774,3796598,39,24,14.9584487534626,0.0364419021665219,10.6779929484717,0.414842549923195,24.6065972398416,0.00954991276167345,0.0831024930747922,8.31024930747922,2,81.560995145132,0.732905851162217,6.92520775623269,7.71425218582153,0,393.053617477417,392.795196533203,0.228602586298021
+2441,305674,3796598,305774,3796498,40,24,0.277008310249307,0.0026994001604831,0,0,NA,0.0249863216165957,0.243767313019391,24.3767313019391,4,84.6916382028934,0.789435617461095,10.2493074792244,39.8311779065566,7.34765291213989,392.954655965169,392.849761962891,0.153663784424568
+2442,305674,3796498,305774,3796398,41,24,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.027797536457248,0.265927977839335,26.5927977839335,2,90.4905290427092,0.897038174637999,16.8975069252078,34.3707449138165,0,393.106430053711,392.969696044922,0.130806533573707
+2443,305674,3796398,305774,3796298,42,24,3.94736842105263,0.0404910024072465,7.81279518695075,0.655555555555556,NA,0.043661245177095,0.381578947368421,38.1578947368421,3,90.2732900628008,0.835246888799679,14.7368421052632,43.1497560040704,10.3911504745483,393.291577657064,393.216430664062,0.138582825937362
+2444,305674,3796298,305774,3796198,43,24,20.2216066481994,0.0985281058576332,13.5977044834661,0.734126984126984,14.6953058096335,0.014472999375075,0.0554016620498615,5.54016620498615,5,55.6254838596827,0.590199602686595,2.21606648199446,19.3496941566467,0,393.520919799805,393.329864501953,0.234162428337614
+2445,305674,3796198,305774,3796098,44,24,45.1523545706371,0.146667408719582,13.027373575613,0.393303899926417,14.6725398163281,0.0157569396014324,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,3.46371682484945,0,393.89575958252,393.643096923828,0.282180796404457
+2446,305674,3796098,305774,3795998,45,24,0,NA,NA,NA,NA,0.0209685512223823,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,21.5795174326215,7.34765291213989,394.007780075073,393.85400390625,0.252675819465364
+2447,305674,3795998,305774,3795898,46,24,0,NA,NA,NA,NA,0.0128330325945794,0,0,0,NA,NA,0,NA,NA,393.804550170898,393.669158935547,0.254081135398921
+2448,305674,3795898,305774,3795798,47,24,0,NA,NA,NA,NA,0.0283419003761538,0.193905817174515,19.3905817174515,2,89.6461018930189,0.838627664627162,16.6204986149584,76.128540802002,15.5867252349854,393.504266738892,393.421905517578,0.108622981814856
+2449,305674,3795798,305774,3795698,48,24,0,NA,NA,NA,NA,0.024291349719838,0.0997229916897507,9.97229916897507,3,80.8269444432558,0.833384615384615,8.03324099722992,71.4462862014771,51.4335708618164,393.527857462565,393.41455078125,0.187272930720814
+2450,305674,3795698,305774,3795598,49,24,17.7285318559557,0.0863808051354593,18.3851791612462,0.556174957118353,18.7329127343573,0.00814358188114142,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,393.931648254395,393.533020019531,0.37497906142204
+2451,305674,3795598,305774,3795498,50,24,7.10526315789474,0.012147300722174,3.03934289166509,0.251157407407407,28.9844997668532,0.0249735078100218,0.131578947368421,13.1578947368421,5,79.2714444870343,0.756149732620321,7.63157894736842,20.8496690940857,0,394.122159322103,393.921966552734,0.187004335149687
+2452,305674,3795498,305774,3795398,51,24,54.016620498615,0.263191515647102,20.6651042173372,0.536892361111111,20.7823006752878,0.031292894557432,0.268698060941828,26.8698060941828,4,87.4578022532092,0.795672239637757,18.8365650969529,7.13543009512203,0,394.253173828125,394.147430419922,0.171191234734583
+2453,305674,3795398,305774,3795298,52,24,35.1800554016621,0.171411910190677,20.2750884731699,0.721612237237237,42.8438104389818,0.0345239228909752,0.321329639889197,32.1329639889197,2,91.5741146950101,0.845636540330418,18.2825484764543,12.8951270703612,0,394.528244018555,394.233917236328,0.333501091698671
+2454,305674,3795298,305774,3795198,53,24,10.5263157894737,0.0512886030491789,11.4105473772534,0.532886334610473,18.7329127343573,0.00825696555736192,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,13.4088587327437,10.3911504745483,394.950426101685,394.577545166016,0.271754252138162
+2455,305674,3795198,305774,3795098,54,24,48.4210526315789,0.124172407382223,20.7767032483312,0.686529271206691,11.004404810288,0.00525996858473503,0,0,0,NA,NA,0,NA,NA,395.282428741455,395.144287109375,0.163559626219451
+2456,305674,3795098,305774,3794998,55,24,23.8227146814404,0.0773828046005156,12.0582646897481,0.557495590828924,34.637167854496,0.0165090352462342,0.0692520775623269,6.92520775623269,5,63.5804943348559,0.597098214285714,3.32409972299169,13.7759074211121,0,395.591822306315,395.445343017578,0.27784879543147
+2457,305674,3794998,305774,3794898,56,24,16.3434903047091,0.0530882031561677,12.7329950324301,0.478232618583496,25.0085662111244,-0.00854221124479719,0,0,0,NA,NA,0,NA,NA,396.247272491455,395.692565917969,0.521731067765763
+2458,305674,3794898,305774,3794798,57,24,0,NA,NA,NA,NA,-0.00847355842073074,0,0,0,NA,NA,0,NA,NA,396.832875569661,396.440795898438,0.421397016106374
+2459,305674,3794798,305774,3794698,58,24,0,NA,NA,NA,NA,0.0170440012201174,0,0,0,NA,NA,0,NA,NA,397.323621749878,396.931182861328,0.352217696443775
+2460,305674,3794698,305774,3794598,59,24,18.2825484764543,0.0593868035306282,12.8600379548253,0.411260639521509,10.3911503376439,0.0192693546435337,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,10.3911504745483,0,397.98405456543,397.49853515625,0.677768551599902
+2461,305674,3794598,305774,3794498,60,24,19.6675900277008,0.1916574113943,25.7288923601351,0.737089201877934,NA,0.0219146120816479,0.0498614958448753,4.98614958448753,4,59.0929059462443,0.688154626930137,2.77008310249307,9.23657819959852,5.19557523727417,399.464332580566,398.072204589844,1.80721854750172
+2462,305674,3794498,305774,3794398,61,24,0,NA,NA,NA,NA,0.021916235832706,0,0,0,NA,NA,0,NA,NA,402.69701385498,400.710906982422,1.80114098858432
+2463,305674,3794398,305774,3794298,62,24,12.8947368421053,0.132270607863672,27.8443728086853,0.680272108843537,NA,0.0210128160791723,0,0,0,NA,NA,0,NA,NA,400.880477905273,398.659576416016,2.25309588543731
+2464,305674,3794298,305774,3794198,63,24,60.6648199445983,0.197056211715266,15.4090688922312,0.537605752961083,12.1230087792092,0.0263663265227038,0.0941828254847645,9.41828254847645,4,73.220753785432,0.664864569681083,4.15512465373961,2.66108402083902,0,398.298327128092,398.122863769531,0.507891842958344
+2465,305674,3794198,305774,3794098,64,24,26.8698060941828,0.13092090778343,20.8437548827306,0.677340383862123,10.3911504415599,0.025363938037525,0.0914127423822715,9.14127423822715,3,77.1646673087393,0.836946702800361,5.81717451523546,30.9020630952084,0,398.200481414795,398.092071533203,0.202797380292078
+2466,305674,3794098,305774,3793998,65,24,26.0387811634349,0.126871807542706,21.6411071626428,0.654427083333333,10.3911504415599,0.02139181156199,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,11.1390421655443,0,398.38232421875,398.253295898438,0.178978538128529
+2467,305674,3793998,305774,3793898,66,24,22.1052631578947,0.0755832044935269,16.0504830333931,0.458888888888889,12.1230087965286,0.0252592577961638,0.0921052631578947,9.21052631578947,2,84.5791901660549,0.867066466766617,8.68421052631579,15.555765070234,0,398.542238235474,398.488952636719,0.0853578111978409
+2468,305674,3793898,305774,3793798,67,24,27.9778393351801,0.0681598540521983,14.8610189040765,0.455750134192163,16.008288516292,0.0342622928619172,0.277008310249307,27.7008310249307,4,88.8280678137307,0.715687526607067,14.9584487534626,9.87210659980774,0,398.55837504069,398.51025390625,0.0926959678984954
+2469,305674,3793798,305774,3793698,68,24,18.8365650969529,0.061186403637617,12.3282541388287,0.522420634920635,10.7999867220173,0.0298893575721364,0.218836565096953,21.8836565096953,6,78.7854774474311,0.661676798378926,7.4792243767313,25.3215483110162,0,398.650386810303,398.527435302734,0.133293961626293
+2470,305674,3793698,305774,3793598,69,24,30.7479224376731,0.0499389029689374,8.6689017109845,0.461789061789062,12.5318451002223,0.0233022308552627,0.119113573407202,11.9113573407202,6,71.250094354615,0.668894129979036,5.81717451523546,6.46405521658964,0,398.797454833984,398.731109619141,0.0892335962720557
+2471,305674,3793598,305774,3793498,70,24,16.0526315789474,0.0823317048947346,15.5860327611303,0.663939393939394,20.7823008831198,0.0188497198069327,0.0447368421052632,4.47368421052632,3,63.6931816846236,0.665013774104683,2.63157894736842,10.6967723790337,5.19557523727417,398.970390319824,398.855163574219,0.214602807231488
+2472,305674,3793498,305774,3793398,71,24,20.7756232686981,0.0674850040120775,12.7083800032381,0.521604938271605,17.3185839653505,0.0223366409524193,0.168975069252078,16.8975069252078,2,90.9499265113519,0.886477987421384,16.6204986149584,17.0346728152916,10.3911504745483,399.876792907715,399.098449707031,0.785466697906721
+2473,305674,3793398,305774,3793298,72,24,26.8698060941828,0.0523683631133722,9.92248660150526,0.491194426488544,23.2607613741952,0.0128867971527289,0.0831024930747922,8.31024930747922,3,75.5609493656735,0.732905851162217,5.54016620498615,11.5670374234517,5.19557523727417,400.999069213867,400.5107421875,0.580363400980054
+2474,305674,3793298,305774,3793198,73,24,20.4986149584488,0.0998778059378748,17.4016284233861,0.681382275132275,20.7823008831198,0.0310585706630513,0.199445983379501,19.9445983379501,4,90.6651984987648,0.813121543198104,19.1135734072022,12.1649132503404,0,401.269742965698,401.011474609375,0.302289674970292
+2475,305674,3793198,305774,3793098,74,24,46.0526315789474,0.472395028084543,33.2604985761551,0.819047619047619,NA,0.00571884992051836,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,7.09552135467529,5.19557523727417,400.824162801107,400.639801025391,0.244810125553416
+2476,305674,3793098,305774,3792998,75,24,21.0526315789474,0.0512886030491789,8.93462917124402,0.506183478471214,21.7929061058513,-0.00292690691544282,0.0554016620498615,5.54016620498615,1,81.9526157930578,0.931699933781099,5.54016620498615,28.7412919044495,15.5867252349854,400.814390182495,400.587280273438,0.322087125615067
+2477,305674,3792998,305774,3792898,76,24,26.3157894736842,0.0641107538114737,10.5982329486087,0.545776255707763,16.8856194155769,0.0134000332388226,0.0609418282548476,6.09418282548476,2,75.9723833614773,0.780756550407774,4.70914127423823,23.009586204182,11.6176595687866,401.15335337321,400.664489746094,0.459852405651702
+2478,305674,3792898,305774,3792798,77,24,32.409972299169,0.0789574546941307,11.3082644952324,0.636169499105546,12.7660830887733,0.0216200296476663,0.146814404432133,14.6814404432133,4,83.5921867689523,0.703760525189097,10.2493074792244,16.8127486840734,5.19557523727417,400.934604644775,400.562103271484,0.380473649943726
+2479,305674,3792798,305774,3792698,78,24,17.1052631578947,0.0584870034771339,10.1487858489318,0.460185185185185,17.5317855147236,0.0178504021686278,0.0657894736842105,6.57894736842105,4,70.7443264800494,0.67887323943662,4.47368421052632,10.8067963790894,0,400.647455851237,400.437164306641,0.289192901450903
+2480,305674,3792698,305774,3792598,79,24,22.4376731301939,0.0546628532497828,8.90567798912588,0.621374591503268,14.2878317662184,0.0225337568013539,0.116343490304709,11.6343490304709,4,79.8370824031573,0.697161022561703,8.86426592797784,9.56125229880923,0,400.284488677979,400.167907714844,0.146729232465121
+2481,305674,3792598,305774,3792498,80,24,18.8365650969529,0.0458898027282127,8.8613883178527,0.499543128654971,19.3926228798384,0.0333135894137251,0.124653739612188,12.4653739612188,4,78.5417490473465,0.819620253164557,8.58725761772853,15.0903196228875,0,400.18453725179,400.156311035156,0.0547543742259871
+2482,305674,3792498,305774,3792398,81,24,11.6343490304709,0.11337480674029,17.4724912931937,0.742063492063492,NA,0.0243591379145486,0.138504155124654,13.8504155124654,4,80.0430767226328,0.754189521467751,8.03324099722992,14.8408298015594,5.19557523727417,400.310230255127,400.197540283203,0.132763155610286
+2483,305674,3792398,305774,3792298,82,24,21.3157894736842,0.0546628532497828,7.41357949140604,0.415093800045756,26.39943880886,0.0208266740725919,0.0894736842105263,8.94736842105263,3,79.1061085267409,0.823492981007432,6.8421052631579,12.3123672990238,0,400.442293802897,400.336212158203,0.12138026965182
+2484,305674,3792298,305774,3792198,83,24,35.4570637119114,0.115174406847279,15.732301367049,0.535453216374269,16.2537765587636,0.0272395035767419,0.188365650969529,18.8365650969529,4,87.9431120715232,0.782573780365388,16.0664819944598,7.91306488654193,0,400.629877090454,400.44775390625,0.295510848756689
+2485,305674,3792198,305774,3792098,84,24,38.2271468144044,0.186258611073334,14.3638258996871,0.39720194647202,46.7601765193976,0.028110746158899,0.271468144044321,27.1468144044321,4,91.5868826656196,0.773829070169374,24.3767313019391,7.37647444374707,0,401.648958206177,401.088439941406,0.552387938151854
+2486,305674,3792098,305774,3791998,85,24,28.808864265928,0.140368808345121,25.2828545996765,0.663021034972255,10.3911504415599,0.0251860895333062,0.130193905817175,13.0193905817174,9,62.38022160823,0.554498407643312,3.8781163434903,6.42111274029346,0,402.276237487793,402.072845458984,0.323350533541027
+2487,305674,3791998,305774,3791898,86,24,38.6842105263158,0.132270607863672,21.0753988842446,0.743250487329435,13.8548672554132,0.0266803764365537,0.136842105263158,13.6842105263158,8,68.7268910746383,0.557412989860236,3.68421052631579,7.4829194178948,0,402.784761428833,402.4404296875,0.37352326766616
+2488,305674,3791898,305774,3791798,87,24,57.3407202216066,0.279387916610001,27.8327580173666,0.728446365248227,10.3911504415599,0.0196243323125877,0.102493074792244,10.2493074792244,6,70.4049058179075,0.61642380085003,5.26315789473684,6.64291304510993,0,403.463221232096,403.084655761719,0.436316771898198
+2489,305674,3791798,305774,3791698,88,24,39.3351800554017,0.0958287056971501,16.422010880375,0.65628317711651,11.004404862246,0.0197170168630943,0.0831024930747922,8.31024930747922,5,65.4310579134526,0.643874468216289,3.04709141274238,8.38617464701335,0,404.037975311279,403.829803466797,0.247620566169635
+2490,305674,3791698,305774,3791598,89,24,24.0997229916898,0.117423906981015,11.8538293250104,0.494117647058824,26.4923394249063,0.0174277044420416,0.074792243767313,7.4792243767313,3,77.0714958632794,0.723506475421251,6.09418282548476,3.2506832546658,0,404.2615331014,404.015197753906,0.345885266971202
+2491,305674,3791598,305774,3791498,90,24,2.10526315789474,0.0215952012838648,5.94195244015499,0.520833333333333,NA,0.0329551727844917,0.271052631578947,27.1052631578947,3,87.6576057500105,0.762708556932384,12.6315789473684,36.7213272168798,0,404.836803436279,404.270568847656,0.789031947650069
+2492,305674,3791498,305774,3791398,91,24,18.8365650969529,0.061186403637617,8.90732729644779,0.396953405017921,47.3322349333906,0.0652918826071831,0.534626038781163,53.4626038781163,3,94.4518962562896,0.825934424048949,38.781163434903,14.101523080638,0,407.078501383464,405.721435546875,1.75187070992638
+2493,305674,3791398,305774,3791298,92,24,41.2742382271468,0.201105311955991,22.3613291375355,0.480403348554033,10.3911504415599,0.0549587045129972,0.382271468144044,38.2271468144044,5,88.8570489395035,0.794433767527938,24.0997229916898,6.4132390782453,0,408.485347747803,407.338775634766,0.950636506688429
+2494,305674,3791298,305774,3791198,93,24,18.5595567867036,0.045214952688092,9.10058947748289,0.312339124839125,21.2151322092877,0.0203970105931526,0.0997229916897507,9.97229916897507,4,77.438891562938,0.574205128205128,4.98614958448753,8.89984652731154,0,408.559379577637,408.234283447266,0.613091608377016
+2495,305674,3791198,305774,3791098,94,24,5,0.0256443015245895,6.19295249515161,0.387254901960784,15.5867255064659,0.0129237119857862,0,0,0,NA,NA,0,NA,NA,408.525278091431,408.244812011719,0.318573447636053
+2496,305674,3791098,305774,3790998,95,24,10.803324099723,0.0263191515647102,8.53451640865946,0.356646825396825,23.4347126447114,0.0297227454983011,0.155124653739612,15.5124653739612,4,82.9160442589548,0.719351022477607,11.6343490304709,9.05922555071967,0,408.222493489583,407.950439453125,0.397012957908603
+2497,305674,3790998,305774,3790898,96,24,64.5429362880887,0.314480118696281,20.3893667691537,0.604444444444444,21.4219052194909,0.0729050732603415,0.742382271468144,74.2382271468144,4,98.1113550042892,0.861091515423587,73.1301939058172,1.7308223905848,0,407.630405426025,407.490173339844,0.243370014899691
+2498,305674,3790898,305774,3790798,97,24,29.0858725761773,0.141718508425363,16.6241691851351,0.617543859649123,11.6176593526411,0.0603077918714508,0.637119113573407,63.7119113573407,2,97.5722244771422,0.762326731792381,59.2797783933518,12.1947713748268,0,407.497006734212,407.233917236328,0.256897157718447
+2499,305674,3790798,305774,3790698,98,24,1.05263157894737,0.0053988003209662,1.73185840692665,0.111111111111111,36.3690265454597,0.0386755161128301,0.260526315789474,26.0526315789474,6,83.5068543486196,0.7264984605542,13.4210526315789,34.3848510077505,5.19557523727417,406.934469223022,406.135375976562,0.765126376028166
+2500,305674,3790698,305774,3790598,99,24,29.3628808864266,0.286136417011209,27.4910506281737,0.825471698113208,NA,0.0917648925319262,0.730994152046784,73.0994152046784,2,96.5480335408094,0.825250836120401,57.8947368421053,15.1064582328796,0,405.569618225098,405.076812744141,0.730241537263454
+2501,305774,3800598,305874,3800498,0,25,92.8947368421053,0.952888256650198,37.4567662374868,0.92823418319169,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.037750244141,383.940521240234,0.067596925958703
+2502,305774,3800498,305874,3800398,1,25,30.75,0.166013109869652,16.6555388795654,0.568079096045198,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.119834899902,384.077270507812,0.0738368643502152
+2503,305774,3800398,305874,3800298,2,25,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.293375015259,384.1220703125,0.229795423415311
+2504,305774,3800298,305874,3800198,3,25,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.638025919596,384.315612792969,0.423803376200043
+2505,305774,3800198,305874,3800098,4,25,2.63157894736842,0.0269940016048215,7.39964424319344,0.533333333333333,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.781930923462,384.343170166016,0.565766144138473
+2506,305774,3800098,305874,3799998,5,25,23.75,0.128221507622902,12.715879565848,0.543498168498169,15.5867255064659,0.0375253756508755,0.3,30,3,84.7422680877535,0.808362369337979,21.25,6.73009051879247,0,384.847544352214,384.386322021484,0.535473235436765
+2507,305774,3799998,305874,3799898,6,25,7.10526315789474,0.0145767608666036,3.67193542214815,0.288627450980392,35.4013893769804,0.010771118138607,0.0289473684210526,2.89473684210526,3,50.4376283471023,0.588075880758808,1.05263157894737,16.3825773325833,5.19557523727417,384.789136886597,384.470428466797,0.368313172962417
+2508,305774,3799898,305874,3799798,7,25,8.42105263157895,0.0431904025677144,10.1337915154056,0.51610305958132,15.5867255064659,0.0295978010419563,0.218421052631579,21.8421052631579,2,90.1452282341769,0.852035090130328,17.6315789473684,61.2557336278709,25.977876663208,385.041442871094,384.663665771484,0.404011543963589
+2509,305774,3799798,305874,3799698,8,25,1.05263157894737,0.0107976006419286,5.19557516882196,0.25,NA,0.0166229089494951,0.192105263157895,19.2105263157895,3,88.4486634883001,0.874287459283388,16.5789473684211,53.4801601775705,25.977876663208,385.912265777588,385.399597167969,0.524974413530381
+2510,305774,3799698,305874,3799598,9,25,17.75,0.191657411394232,34.2973901979704,0.666666666666667,NA,0.06835189002275,0.55,55,3,94.1003577963222,0.842818428184282,32.5,16.763039096919,0,386.558108011882,386.393188476562,0.272058088972546
+2511,305774,3799598,305874,3799498,10,25,0,NA,NA,NA,NA,0.115973627292796,0.884210526315789,88.421052631579,2,98.380964151668,0.782390837508948,84.4736842105263,45.0355378559657,11.6176595687866,386.959508895874,386.770965576172,0.215732021515237
+2512,305774,3799498,305874,3799398,11,25,28.9473684210526,0.148467008826518,17.9393325628074,0.519497863247863,25.9778758441098,0.0422702542104257,0.357894736842105,35.7894736842105,3,94.8761455464849,0.849286092014807,34.4736842105263,12.454543846495,0,387.294523239136,387.069061279297,0.232276963318071
+2513,305774,3799398,305874,3799298,12,25,81.3157894736842,0.834114649588984,39.4272073486948,0.866774541531823,NA,0.0719387673437412,0.694736842105263,69.4736842105263,1,98.9199097507581,0.913967258794845,69.4736842105263,1.26811644163999,0,387.701914469401,387.374481201172,0.380557627935233
+2514,305774,3799298,305874,3799198,13,25,20.5,0.221350813159536,27.5072884602399,0.802845528455285,NA,-0.00675064156199369,0.0025,0.25,1,0,NA,0.25,0,0,388.383092880249,387.891204833984,0.418519372505227
+2515,305774,3799198,305874,3799098,14,25,0.526315789473684,0.00539880032096429,2.59778761038906,0.166666666666667,NA,-0.0213407585459687,0,0,0,NA,NA,0,NA,NA,388.757906595866,388.585968017578,0.315771742140409
+2516,305774,3799098,305874,3798998,15,25,30,0.0769329045737412,10.3679290484656,0.476641414141414,23.3800882596988,0.0104905182308668,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,0.472325021570379,0,387.967771530151,387.433776855469,0.591797840352754
+2517,305774,3798998,305874,3798898,16,25,55.7894736842105,0.190757611340738,13.9611313657397,0.520060207991243,23.6517376566125,0.00193641044195254,0,0,0,NA,NA,0,NA,NA,387.249638875326,387.201873779297,0.132434251016038
+2518,305774,3798898,305874,3798798,17,25,67.75,0.731537443490662,35.6485136148627,0.90159901599016,NA,-0.0418983616001242,0.0125,1.25,1,58.1880425789518,1,1.25,1.03911504745483,0,387.500778198242,387.220275878906,0.430551123176034
+2519,305774,3798798,305874,3798698,18,25,8.94736842105263,0.091779605456393,12.8370147480817,0.75,NA,-0.0185696210845076,0,0,0,NA,NA,0,NA,NA,388.45699818929,387.85791015625,0.693751481975197
+2520,305774,3798698,305874,3798598,19,25,0,NA,NA,NA,NA,0.00536168579657035,0,0,0,NA,NA,0,NA,NA,389.027215957642,388.370361328125,0.458495716065336
+2521,305774,3798598,305874,3798498,20,25,0,NA,NA,NA,NA,0.00718561331337849,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,119.498229980469,119.498229980469,389.074350992839,388.773498535156,0.300889357321414
+2522,305774,3798498,305874,3798398,21,25,24.25,0.0654604538916921,8.82645987006609,0.440432098765432,15.5867255844001,-0.0179718160214179,0.0025,0.25,1,0,NA,0.25,5.19557523727417,5.19557523727417,388.987018585205,388.750183105469,0.271433645717899
+2523,305774,3798398,305874,3798298,22,25,33.4210526315789,0.114274606793744,15.2473700010316,0.712903800399506,36.3690263029848,0.0366593984636845,0.323684210526316,32.3684210526316,2,92.6879001134006,0.867390204323777,24.4736842105263,16.0367831292191,0,388.824119567871,388.712951660156,0.150412537334352
+2524,305774,3798298,305874,3798198,23,25,2.10526315789474,0.0107976006419286,4.84920352207419,0.244444444444444,78.6233198686072,-0.00510596541211462,0.0342105263157895,3.42105263157895,3,58.1077276069264,0.71238268240993,2.10526315789474,45.4704455228952,5.19557523727417,389.04959487915,388.841094970703,0.248697306739615
+2525,305774,3798198,305874,3798098,24,25,0,NA,NA,NA,NA,0.0119778994152045,0.0631578947368421,6.31578947368421,3,71.1051775048383,0.719101123595506,3.68421052631579,75.4831212361654,59.2386741638184,389.534576416016,389.360198974609,0.268798584857244
+2526,305774,3798098,305874,3797998,25,25,5.25,0.0566874033701251,10.6226116836249,0.682539682539682,NA,0.00817917983972961,0.0875,8.75,1,87.4704367425575,0.962210675484176,8.75,3.63374207360404,0,389.918916702271,389.703002929688,0.227510841506482
+2527,305774,3797998,305874,3797898,26,25,0,NA,NA,NA,NA,0.00262024829262373,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,61.8549591064453,58.7812232971191,390.26731300354,390.054809570312,0.193555193853559
+2528,305774,3797898,305874,3797798,27,25,4.73684210526316,0.0242946014443393,4.97252770501,0.294117647058824,11.6176593526378,0.000903009769574151,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210526,12.7032214800517,10.3911504745483,390.5695215861,390.442962646484,0.195197752937474
+2529,305774,3797798,305874,3797698,28,25,2.63157894736842,0.0269940016048215,8.2288258554922,0.466666666666667,NA,0.011420802326948,0.0210526315789474,2.10526315789474,3,50.576266658982,0.489247311827957,1.57894736842105,76.5936276912689,30.2951488494873,390.896911621094,390.736633300781,0.185254481810204
+2530,305774,3797698,305874,3797598,29,25,33.5,0.180859810752304,15.0249889684466,0.541772688719254,11.6176593526378,0.0340521983067538,0.2975,29.75,4,93.0487346271703,0.874785817846316,28.25,2.85252294219842,0,391.208938598633,390.993743896484,0.207674737015082
+2531,305774,3797598,305874,3797498,30,25,20,0.0683848040655477,9.73618352663289,0.527329749103943,12.1230087965261,0.0446586328341111,0.431578947368421,43.1578947368421,4,90.2732976160374,0.702906548933039,19.4736842105263,18.9409445844046,0,389.981914520264,388.5,1.75243750209356
+2532,305774,3797498,305874,3797398,31,25,83.9473684210526,0.430554325596903,27.7998552606036,0.868959435626102,10.3911504415562,0.0538951998370497,0.434210526315789,43.421052631579,3,92.5769602775136,0.843023255813954,27.8947368421053,0.67632876887466,0,391.697573343913,390.243682861328,1.81243148218773
+2533,305774,3797398,305874,3797298,32,25,88.4210526315789,0.453499226961001,24.8894654911904,0.775868486352357,14.6953058096309,0.137975903828383,0.839473684210526,83.9473684210526,2,97.1205443382991,0.772343554272643,70.2631578947368,0.571204925405568,0,393.101173400879,392.426422119141,0.774996937180477
+2534,305774,3797298,305874,3797198,33,25,98.75,1.06626306339045,39.5274154194365,0.928691983122363,NA,0.165015264386311,0.9625,96.25,1,99.898450616446,1,96.25,0.0674750030814827,0,394.295806884766,393.438354492188,1.30228332195744
+2535,305774,3797198,305874,3797098,34,25,60.7894736842105,0.207853812357125,15.7721906451774,0.58405695611578,20.7501047427681,0.0733070568996577,0.647368421052632,64.7368421052632,2,98.4982546532881,0.741077222582738,64.4736842105263,2.25267988491834,0,394.450981140137,393.413421630859,1.40424713128096
+2536,305774,3797098,305874,3796998,35,25,30,0.0769329045737412,16.6848908122969,0.431528562460766,15.2914857353391,0.0383583739508666,0.328947368421053,32.8947368421053,4,87.7148524660725,0.665198237885463,12.1052631578947,15.6690684013367,0,394.933837890625,394.11767578125,1.06466083121975
+2537,305774,3796998,305874,3796898,36,25,17.3684210526316,0.0890802052959109,10.0278955280898,0.542328042328042,91.9191085088279,0.0351245825694365,0.373684210526316,37.3684210526316,2,96.1044139176996,0.901745313510019,37.1052631578947,35.6090704152282,0,394.558206558228,393.983734130859,0.679621260491214
+2538,305774,3796898,305874,3796798,37,25,0.5,0.00269940016048215,0,0,46.7601769870031,0.0171892797905411,0.0925,9.25,6,67.919697206938,0.620647608725105,3.25,49.4667306075225,0,394.568283081055,394.142608642578,0.913160358462094
+2539,305774,3796798,305874,3796698,38,25,3.15789473684211,0.0323928019257858,7.25170551875093,0.583333333333333,NA,0.0403906302116842,0.342105263157895,34.2105263157895,3,89.582192162635,0.794767932489451,12.8947368421053,44.7132501162016,11.6176595687866,394.025169372559,393.468292236328,0.55785323388705
+2540,305774,3796698,305874,3796598,39,25,42.1052631578947,0.143968008559048,17.7756986643166,0.674178004535147,22.2854790293241,0.0374074743506705,0.286842105263158,28.6842105263158,4,90.7834018677466,0.886114597186581,25.2631578947368,6.2609551499743,0,393.617218017578,393.289154052734,0.467416235222166
+2541,305774,3796598,305874,3796498,40,25,47.3684210526316,0.242946014443393,20.3182459209995,0.65692007797271,18.7329127343552,0.0130439766526826,0.0605263157894737,6.05263157894737,3,67.2569242314528,0.733893557422969,2.36842105263158,7.39040030603823,0,393.337272644043,393.161468505859,0.224184271470004
+2542,305774,3796498,305874,3796398,41,25,13.4210526315789,0.0688347040922948,15.3002022265917,0.625512820512821,10.3911504415562,0.0216167036290579,0.189473684210526,18.9473684210526,5,80.275188619191,0.786276715410574,11.8421052631579,15.9340800046921,0,393.319620132446,393.171691894531,0.154666554184479
+2543,305774,3796398,305874,3796298,42,25,0,NA,NA,NA,NA,0.0234737640851301,0.1675,16.75,2,90.0295330102283,0.938399938399938,16,83.8812729565065,34.8529777526855,393.355038960775,393.247436523438,0.139719671099533
+2544,305774,3796298,305874,3796198,43,25,14.7368421052632,0.0503888029956667,8.15385389842756,0.420634920634921,27.979028590554,0.0310770958858867,0.194736842105263,19.4736842105263,5,84.3297288269368,0.742081447963801,14.4736842105263,10.0741016671464,0,393.431707382202,393.323516845703,0.111886131705411
+2545,305774,3796198,305874,3796098,44,25,19.7368421052632,0.0506137530090403,9.12718889014522,0.467622950819672,23.9437837981351,0.0182965401707598,0.0921052631578947,9.21052631578947,3,82.265119281949,0.84807596201899,8.42105263157895,10.019328716823,0,393.656979878743,393.533294677734,0.177693288799594
+2546,305774,3796098,305874,3795998,45,25,21.3157894736842,0.0546628532497635,8.87313319012812,0.416468253968254,20.7823006752878,0.0250935045511333,0.107894736842105,10.7894736842105,5,72.7152075423414,0.642597580265914,5.26315789473684,10.9915448165521,0,393.785264968872,393.729705810547,0.0553420037647884
+2547,305774,3795998,305874,3795898,46,25,24,0.0518284830812572,9.7209779838598,0.461760037348273,17.792876572595,0.0177061122571604,0.0725,7.25,6,58.9514484711116,0.518265756724207,2.25,11.8176920331758,5.19557523727417,393.716784159342,393.635070800781,0.105840923539834
+2548,305774,3795898,305874,3795798,47,25,25,0.128221507622902,14.6964424729531,0.754402687000726,36.7382645240773,0.0333949292065403,0.260526315789474,26.0526315789474,5,83.0656099629691,0.756887520492623,10,12.406785993865,0,393.495115280151,393.391479492188,0.126121078884689
+2549,305774,3795798,305874,3795698,48,25,0,NA,NA,NA,NA,0.0230873876589182,0.1,10,2,85.4283732185665,0.894179894179894,9.47368421052632,28.8924945530139,10.3911504745483,393.364888509115,393.328247070312,0.0565612592440061
+2550,305774,3795698,305874,3795598,49,25,17.1052631578947,0.17546101043134,21.1603044086577,0.756410256410256,NA,0.00984066249971204,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,15.0328108787537,0,393.478174209595,393.340393066406,0.177687620864534
+2551,305774,3795598,305874,3795498,50,25,17.75,0.0273796301991761,6.34260071588467,0.368551587301587,18.9257006432029,0.0257699436629082,0.1275,12.75,5,80.4878912851277,0.723347495306788,9.5,19.9228649419897,5.19557523727417,393.852882385254,393.624908447266,0.335339039442318
+2552,305774,3795498,305874,3795398,51,25,32.3684210526316,0.166013109869652,16.7498817339932,0.525694444444444,11.6176592829314,0.018935016342546,0.142105263157895,14.2105263157895,2,87.2439474855527,0.837060492116894,13.1578947368421,7.63887981132225,0,394.466817855835,394.111541748047,0.359890040825141
+2553,305774,3795398,305874,3795298,52,25,11.0526315789474,0.0283437016850625,7.0381784918896,0.533558006535948,15.5867255844001,0.0195824418378331,0.0921052631578947,9.21052631578947,3,75.3394518557686,0.734132933533233,4.21052631578947,17.4040762901306,0,394.978174845378,394.734191894531,0.312418331746004
+2554,305774,3795298,305874,3795198,53,25,3.42105263157895,0.0116974006954226,3.83035886483914,0.25,32.3594387644377,0.0126143480732169,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,13.07271027565,10.3911504745483,395.318103790283,395.045562744141,0.253660626770465
+2555,305774,3795198,305874,3795098,54,25,43.25,0.155665409254471,19.865097480326,0.544359876222876,10.7999866527397,0.00255170925368475,0.005,0.5,1,30.8308651382582,1,0.5,2.59778761863708,0,395.468910217285,395.28369140625,0.19880962266595
+2556,305774,3795098,305874,3794998,55,25,43.9473684210526,0.225399913400259,23.5535064817612,0.805547263681592,41.8880661681468,0.0343569748913165,0.278947368421053,27.8947368421053,3,91.8551522371302,0.818473650017197,24.2105263157895,13.6364390895052,0,395.609255472819,395.462341308594,0.190476372599384
+2557,305774,3794998,305874,3794898,56,25,48.4210526315789,0.165563209842905,16.6102397915166,0.619382601525459,19.9911943633133,0.0268352487651818,0.226315789473684,22.6315789473684,3,92.4126180923582,0.898626117113512,22.1052631578947,4.98678842810697,0,395.87412071228,395.664398193359,0.268536176549258
+2558,305774,3794898,305874,3794798,57,25,3.94736842105263,0.0134970008024107,4.3310100346639,0.37037037037037,36.5214427985193,-0.00131914081706495,0,0,0,NA,NA,0,NA,NA,396.369059244792,396.155517578125,0.306450802632673
+2559,305774,3794798,305874,3794698,58,25,17,0.091779605456393,18.4621132518686,0.654940923737916,16.4298514359611,0.00308110952680181,0,0,0,NA,NA,0,NA,NA,396.775886535645,396.434448242188,0.364145500474634
+2560,305774,3794698,305874,3794598,59,25,31.5789473684211,0.107976006419286,11.3308949975194,0.41374269005848,24.2460174545025,0.0138075732038966,0,0,0,NA,NA,0,NA,NA,397.151509602865,396.749389648438,0.460950293031038
+2561,305774,3794598,305874,3794498,60,25,16.5789473684211,0.0850311050551876,16.7541524263244,0.440804597701149,51.9557522077812,-0.000687098975207559,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,9.48265624046326,7.34765291213989,397.920339584351,396.978881835938,1.10073343785822
+2562,305774,3794498,305874,3794398,61,25,0.789473684210526,0.00809820048144644,3.39810794893163,0.277777777777778,NA,-0.0179711214140154,0,0,0,NA,NA,0,NA,NA,399.069463094076,397.751617431641,1.82003195043521
+2563,305774,3794398,305874,3794298,62,25,12,0.129571207703143,15.7052949707842,0.746527777777778,NA,0.00981177911015038,0.03,3,1,74.8763016215986,0.878714372346877,3,25.2476824124654,20.7823009490967,398.440250396729,397.883636474609,1.14490072019721
+2564,305774,3794298,305874,3794198,63,25,86.5789473684211,0.888102652798626,36.7850232932036,0.922998986828774,NA,0.0207321871247443,0.0368421052631579,3.68421052631579,4,54.2539589990242,0.584699453551913,2.10526315789474,3.21022776194981,0,398.684542338053,398.244537353516,0.72954410055388
+2565,305774,3794198,305874,3794098,64,25,30.2631578947368,0.155215509227723,21.1307038705202,0.680521346469622,57.1513268570416,0.0282603202515594,0.15,15,7,76.2836794828329,0.603841536614646,7.36842105263158,7.78708764962983,0,398.959281921387,398.233428955078,0.706145526903226
+2566,305774,3794098,305874,3793998,65,25,4.73684210526316,0.0242946014443393,6.54429338292364,0.5375,36.3690265454468,0.0291754367251614,0.15,15,6,79.3951584466301,0.567827130852341,6.31578947368421,15.3199458707843,5.19557523727417,399.066988627116,398.552642822266,0.612734311076339
+2567,305774,3793998,305874,3793898,66,25,15.75,0.170062210110375,23.124218492002,0.761904761904762,NA,0.0452863570539557,0.2825,28.25,5,91.4513126222368,0.856527977044476,24.75,12.8791954074286,0,398.928754806519,398.591094970703,0.426033472879312
+2568,305774,3793898,305874,3793798,67,25,8.94736842105263,0.091779605456393,12.753448419532,0.745098039215686,NA,0.0322856685305707,0.194736842105263,19.4736842105263,4,87.2127295204852,0.856711915535445,16.8421052631579,18.3712366980475,0,398.683311462402,398.5283203125,0.242860585495349
+2569,305774,3793798,305874,3793698,68,25,0,NA,NA,NA,NA,0.0220234126111456,0.115789473684211,11.5789473684211,2,85.8364618568419,0.786036036036036,10.2631578947368,33.2284770011902,15.5867252349854,398.720949172974,398.540130615234,0.257221725686055
+2570,305774,3793698,305874,3793598,69,25,0,NA,NA,NA,NA,0.00986151384338308,0.0315789473684211,3.15789473684211,3,53.30217292845,0.514066496163683,1.31578947368421,49.0743659337362,41.5646018981934,399.127861022949,398.779083251953,0.402299432247376
+2571,305774,3793598,305874,3793498,70,25,23.25,0.12552210746242,16.6142154740067,0.64922480620155,25.9778758441098,0.0286332149491136,0.1825,18.25,2,91.5478577475243,0.904434250764526,17.75,11.6441511193367,0,399.413375854492,399.046234130859,0.399928725191785
+2572,305774,3793498,305874,3793398,71,25,23.6842105263158,0.242946014443393,24.0127190400954,0.751851851851852,NA,0.0426821822028662,0.378947368421053,37.8947368421053,1,96.6233393928275,0.896314843348742,37.8947368421053,7.86362263560295,0,399.904731750488,399.459869384766,0.481823323723122
+2573,305774,3793398,305874,3793298,72,25,42.1052631578947,0.143968008559048,16.5228718087064,0.69701646090535,15.8677675430633,0.0205906872010114,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,8.31292028427124,0,400.835497538249,400.542907714844,0.443581225545492
+2574,305774,3793298,305874,3793198,73,25,22.1052631578947,0.0453499226961001,10.0901085953831,0.457325131009342,19.9625455692998,0.0265929734190362,0.0447368421052632,4.47368421052632,5,49.4302920195556,0.539393939393939,1.57894736842105,12.5570388681748,0,401.056442260742,400.967407226562,0.100223868784207
+2575,305774,3793198,305874,3793098,74,25,25.75,0.0926794055098871,13.2134153506548,0.665900537634409,24.6724205878832,0.0216758756585659,0.05,5,2,77.8661828264503,0.864176570458404,4.75,5.13823471069336,0,400.926645914714,400.867492675781,0.101528729370852
+2576,305774,3793098,305874,3792998,75,25,13.9473684210526,0.0715341042527769,12.5269488509014,0.605324074074074,20.7823006752878,0.0212213709731833,0.0763157894736842,7.63157894736842,3,73.0471103483924,0.677517124325635,3.68421052631579,44.6530972184806,23.2353191375732,401.123064041138,400.913024902344,0.234958733143947
+2577,305774,3792998,305874,3792898,76,25,15,0.153865809147482,31.9009026100581,0.654970760233918,NA,0.019883662306529,0.126315789473684,12.6315789473684,2,84.5771534532282,0.818542462533059,9.21052631578947,19.010425945123,0,401.463383992513,401.326751708984,0.20464466835099
+2578,305774,3792898,305874,3792798,77,25,35,0.179510110672063,14.8925692546312,0.484096692111959,20.7823008831125,0.0117839253921901,0.0605263157894737,6.05263157894737,2,78.4049805538197,0.881730469965764,5.52631578947368,32.4861924959266,14.6953058242798,401.207893371582,400.962066650391,0.26027001803416
+2579,305774,3792798,305874,3792698,78,25,24.25,0.0872806051889228,13.4064656764582,0.414814814814815,13.221723290128,0.0242377964463049,0.1175,11.75,3,86.3532569138442,0.915014164305949,11.25,33.3943739951925,5.19557523727417,400.793690999349,400.597137451172,0.243880615390445
+2580,305774,3792698,305874,3792598,79,25,48.4210526315789,0.165563209842905,20.1467948632348,0.590443121693122,11.8258688283063,0.0340180240040162,0.207894736842105,20.7894736842105,6,80.4820414873681,0.756525866160418,11.0526315789474,6.64090888107879,0,400.469776153564,400.276580810547,0.189794086168226
+2581,305774,3792598,305874,3792498,80,25,58.421052631579,0.599266835627037,34.475089604403,0.832582582582583,NA,0.0472473680292942,0.5,50,1,97.7602315628138,0.818181818181818,50,2.26086185605902,0,400.398941040039,400.259857177734,0.180296604056833
+2582,305774,3792498,305874,3792398,81,25,20,0.102577206098322,14.0365374776064,0.587474120082816,20.7823006752878,0.012888515379937,0,0,0,NA,NA,0,NA,NA,400.670648574829,400.350494384766,0.296367276494232
+2583,305774,3792398,305874,3792298,82,25,24.75,0.133620307943866,10.9289971814699,0.403061224489796,31.6034499687996,0.0242044055207407,0.13,13,6,73.1384531552792,0.651297946532352,4.75,4.02832979422349,0,400.823837280273,400.588989257812,0.274741393890208
+2584,305774,3792298,305874,3792198,83,25,26.0526315789474,0.0381772308411047,9.27435087757412,0.492381295952725,14.5731531636624,0.0282264832666011,0.0947368421052632,9.47368421052632,7,62.5324523869712,0.539728682170543,3.68421052631579,4.38944905334049,0,400.922039031982,400.570892333984,0.347674203250299
+2585,305774,3792198,305874,3792098,84,25,34.4736842105263,0.176810710511581,20.2331532869199,0.728479853479853,15.5867255064659,0.0418572096632775,0.328947368421053,32.8947368421053,3,91.519611517827,0.835881489159541,16.5789473684211,6.72180492019653,0,401.851566314697,401.031768798828,0.716830088678764
+2586,305774,3792098,305874,3791998,85,25,16.5789473684211,0.170062210110375,29.9535298789795,0.711640211640212,NA,0.0249087750917074,0.152631578947368,15.2631578947368,7,79.8486902386949,0.669565217391304,10.5263157894737,17.1683100996346,0,402.824556986491,402.482025146484,0.401132934530304
+2587,305774,3791998,305874,3791898,86,25,77.5,0.836814049749466,36.2620219341079,0.918279569892473,NA,0.0417531485397012,0.49,49,3,96.5135778954303,0.854557207498384,46.75,1.52548369582818,0,403.163743972778,402.903259277344,0.252519356313512
+2588,305774,3791898,305874,3791798,87,25,63.6842105263158,0.65325483883668,36.5050014114212,0.886363636363636,NA,0.0519247786324214,0.6,60,1,98.4265117299858,0.747058823529412,60,1.86216021420663,0,403.400291442871,403.266052246094,0.191062143889228
+2589,305774,3791798,305874,3791698,88,25,69.7368421052632,0.715341042527769,33.6031997865271,0.913836477987421,NA,0.0493278002246945,0.592105263157895,59.2105263157895,1,98.3801273817881,0.859907834101382,59.2105263157895,1.50034199396769,0,403.860387802124,403.465209960938,0.422022785627509
+2590,305774,3791698,305874,3791598,89,25,3.94736842105263,0.0404910024072322,8.72175751437181,0.611111111111111,NA,0.031344803146203,0.178947368421053,17.8947368421053,4,81.7306038965461,0.682719241542771,8.68421052631579,36.5819964338751,0,404.723765055339,404.243377685547,0.455366933632295
+2591,305774,3791598,305874,3791498,90,25,0,NA,NA,NA,NA,0.0143208251775286,0.025,2.5,2,59.1005952728997,0.763313609467456,1.75,53.1654628753662,42.8438110351562,405.180749893188,404.778778076172,0.477746792528467
+2592,305774,3791498,305874,3791398,91,25,22.8947368421053,0.0782826046539823,12.5802477893857,0.648430735930736,25.3835960462198,0.02615609189739,0.0736842105263158,7.36842105263158,4,71.7462130467915,0.640151515151515,3.68421052631579,28.3521966082709,0,406.273228963216,405.460205078125,1.1299132743529
+2593,305774,3791398,305874,3791298,92,25,36.8421052631579,0.0944790056168752,11.7288122290415,0.514176245210728,18.1957817958152,0.040135031780856,0.302631578947368,30.2631578947368,7,83.4525901039864,0.682873730043541,14.2105263157895,8.53041940772015,0,407.60337638855,406.502349853516,0.888341673782746
+2594,305774,3791298,305874,3791198,93,25,36.0526315789474,0.123272607328685,13.6482241798416,0.507790692830063,15.273487641261,0.0524354072633861,0.507894736842105,50.7894736842105,3,94.0303975248834,0.693484300779733,26.5789473684211,6.39486984391287,0,408.029899597168,407.630523681641,0.421940690031214
+2595,305774,3791198,305874,3791098,94,25,19.75,0.106626306339045,17.5131592833413,0.701149425287356,16.4298514359611,0.0482842256471486,0.4725,47.25,2,96.4355260217648,0.718348002708192,43.75,13.4194537647187,0,408.426378250122,408.26220703125,0.211741052840869
+2596,305774,3791098,305874,3790998,95,25,51.0526315789474,0.261841815566768,20.2301008631411,0.710121830287576,10.3911504415562,0.0867157768115009,0.860526315789474,86.0526315789474,1,99.578243470897,0.697868566710498,86.0526315789474,4.39587902366568,0,408.347679138184,408.143890380859,0.327795522122758
+2597,305774,3790998,305874,3790898,96,25,30,0.153865809147482,22.2566514390249,0.739166666666667,16.4298513045212,0.0486317351584531,0.4,40,3,93.7080365687091,0.778972520908005,31.8421052631579,7.23310821307333,0,407.69751739502,407.504486083984,0.305596901218393
+2598,305774,3790898,305874,3790798,97,25,16.5789473684211,0.0850311050551876,14.1310226899958,0.664945652173913,66.5358269874858,0.0296007719659859,0.326315789473684,32.6315789473684,2,92.0710233307581,0.788888888888889,18.4210526315789,11.2433095939698,0,407.234547932943,406.904968261719,0.402795322171609
+2599,305774,3790798,305874,3790698,98,25,12,0.0431904025677144,9.95503095499388,0.462962962962963,17.3185839999855,0.0308694312247462,0.23,23,6,82.9076571210451,0.754513778904023,11.75,27.6616878872332,0,406.46480178833,406.115600585938,0.413656819075309
+2600,305774,3790698,305874,3790598,99,25,13.9473684210526,0.0357670521263884,8.36822049072409,0.352390180878553,23.8825175581278,0.0709994755545848,0.677777777777778,67.7777777777778,2,96.8869352122434,0.836660617059891,57.7777777777778,11.1642551304864,0,405.673765182495,405.288330078125,0.470334185575601
+2601,305874,3800598,305974,3800498,0,26,40.1662049861496,0.0978532558175124,9.86404882801743,0.377623456790123,18.1845130908769,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.903806050618,383.771362304688,0.125965221499255
+2602,305874,3800498,305974,3800398,1,26,4.21052631578947,0.0143968008559099,5.4035535508737,0.337301587301587,33.3429452922171,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.082305908203,383.979858398438,0.155729245783721
+2603,305874,3800398,305974,3800298,2,26,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.483642578125,384.217864990234,0.316308158505488
+2604,305874,3800298,305974,3800198,3,26,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.091935899523,384.878082275391,0.382191891405346
+2605,305874,3800198,305974,3800098,4,26,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.538581848145,385.391784667969,0.224163114124279
+2606,305874,3800098,305974,3799998,5,26,0,NA,NA,NA,NA,0.0155437872939441,0.0394736842105263,3.94736842105263,1,64.398586025552,0.851272015655577,3.94736842105263,24.1669057210286,18.7329120635986,385.526092529297,385.43310546875,0.230789746962323
+2607,305874,3799998,305974,3799898,6,26,42.1052631578947,0.102577206098358,8.7089339129217,0.311453576864536,14.7881200294627,0.0232316671219723,0.127423822714681,12.7423822714681,6,74.8544216972327,0.706145706145706,5.54016620498615,4.95931907322096,0,385.184196472168,385.046661376953,0.191955360033929
+2608,305874,3799898,305974,3799798,7,26,40.1662049861496,0.0652355038783416,11.6738085406911,0.507496690659386,11.1085096349335,0.0157395871372254,0.03601108033241,3.601108033241,3,62.9721526245304,0.654214559386973,2.77008310249307,15.4124193925124,0,385.188117133247,385.064239501953,0.219133512227682
+2609,305874,3799798,305974,3799698,8,26,29.3628808864266,0.0572272834022418,13.3706832619755,0.474823232323232,15.6303882591115,0.0151013139906974,0.0415512465373961,4.15512465373961,2,73.4201733450948,0.810299527062533,3.8781163434903,5.99470173517863,0,385.728624979655,385.330078125,0.463635087108941
+2610,305874,3799698,305974,3799598,9,26,23.9473684210526,0.0491290829207925,8.67423192277517,0.34039039039039,13.5084955428531,0.00546101982794138,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.19557523727417,0,386.213250054253,385.864837646484,0.459203575190271
+2611,305874,3799598,305974,3799498,10,26,49.0304709141274,0.238896914202754,18.1567200903575,0.614766081871345,16.4298514359663,0.0428737518821818,0.268698060941828,26.8698060941828,6,85.0451082315434,0.732802159526297,18.8365650969529,10.1275241104598,0,386.772313435872,386.243682861328,0.48998131954057
+2612,305874,3799498,305974,3799398,11,26,40.7202216066482,0.198405911795508,20.1005745687848,0.724813928761297,14.6953058096335,0.0309777809400498,0.18005540166205,18.005540166205,3,90.9093350339046,0.773349677110739,17.4515235457064,7.47272790762094,0,387.126065572103,386.705108642578,0.471443363451132
+2613,305874,3799398,305974,3799298,12,26,70.9141274238227,0.345523220541837,29.1292141368445,0.752239877239877,15.5867256623399,0.0309161843426127,0.163434903047091,16.3434903047091,9,73.312890787173,0.542948967666537,6.09418282548476,4.74016343941123,0,387.7054816352,387.472747802734,0.43052522853388
+2614,305874,3799298,305974,3799198,13,26,47.1052631578947,0.0966385257452951,12.7859843038744,0.480901609880093,11.6755672539904,0.0199518384585405,0.173684210526316,17.3684210526316,6,80.5041445607134,0.642204375519247,9.73684210526316,5.01112081787803,0,388.017489115397,387.626861572266,0.599211958391929
+2615,305874,3799198,305974,3799098,14,26,43.213296398892,0.140368808345121,23.6940391172316,0.690663890128415,12.1230088484866,-0.00360671684091993,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,388.077338324653,387.677947998047,0.637366544220023
+2616,305874,3799098,305974,3798998,15,26,24.6537396121884,0.0480493228565992,8.46310746258378,0.473611111111111,15.5288177191653,0.00644928484150298,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,7.64479287465413,5.19557523727417,387.584892272949,387.210540771484,0.507253841684699
+2617,305874,3798998,305974,3798898,16,26,29.6398891966759,0.0962786057238973,12.1307944112584,0.551251251251251,21.0516172357551,0.00134490071902299,0,0,0,NA,NA,0,NA,NA,387.177015516493,387.121002197266,0.117570402397318
+2618,305874,3798898,305974,3798798,17,26,9.47368421052632,0.0971784057773917,14.884237619568,0.74537037037037,NA,0.00800584536227389,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,3.46371682484945,0,387.660199483236,387.260375976562,0.569786989901762
+2619,305874,3798798,305974,3798698,18,26,0,NA,NA,NA,NA,0.00944534965847726,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,112.805416107178,111.190162658691,388.84226820204,388.527709960938,0.535059503614941
+2620,305874,3798698,305974,3798598,19,26,0,NA,NA,NA,NA,0.00666566552618732,0,0,0,NA,NA,0,NA,NA,389.211235046387,389.0234375,0.219230165664024
+2621,305874,3798598,305974,3798498,20,26,0,NA,NA,NA,NA,0.00253293550641171,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,77.4572601318359,72.3659896850586,389.24961344401,389.171264648438,0.116409167185655
+2622,305874,3798498,305974,3798398,21,26,23.6842105263158,0.0607365036108698,8.96745260819294,0.588755341880342,17.1598191204116,0.0131872375413016,0.205263157894737,20.5263157894737,2,92.4087439571563,0.835876763604952,20,8.47645351214287,0,389.278528849284,389.201721191406,0.128056048347662
+2623,305874,3798398,305974,3798298,22,26,52.6315789473684,0.256443015245895,23.7527024792275,0.765751106482687,11.6176592829322,0.0237854480423105,0.0969529085872576,9.69529085872576,3,79.0919026077057,0.789983075946689,7.75623268698061,6.57143034253802,0,389.067043728299,388.960571289062,0.173925023568237
+2624,305874,3798298,305974,3798198,23,26,11.6343490304709,0.0283437016850726,7.7369391022775,0.463319088319088,35.0701326233592,-0.00316580887734351,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,10.1676730428423,5.19557523727417,389.163180033366,388.986968994141,0.208604713926804
+2625,305874,3798198,305974,3798098,24,26,26.0387811634349,0.126871807542706,20.9067157820663,0.721173271173271,10.3911504415599,0.00363645429833696,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,3.1173451423645,0,389.600243462457,389.430938720703,0.287474970030022
+2626,305874,3798098,305974,3797998,25,26,38.6842105263158,0.396811823591016,28.6619803558076,0.8718820861678,NA,0.00928559004565422,0.184210526315789,18.4210526315789,1,92.8086997479863,0.880409126671912,18.4210526315789,1.39749299458095,0,390.038332621257,389.8564453125,0.223236704905602
+2627,305874,3797998,305974,3797898,26,26,52.6315789473684,0.256443015245895,26.6498487933194,0.746854871175523,10.3911504415599,0.0266538698630644,0.301939058171745,30.1939058171745,2,94.2261267813204,0.898195149464185,29.3628808864266,1.82286712663983,0,390.385080973307,390.281494140625,0.145406673692843
+2628,305874,3797898,305974,3797798,27,26,71.7451523545706,0.349572320782562,27.5185261915588,0.836586808636498,10.3911504415599,0.0403227729623211,0.415512465373961,41.5512465373961,3,95.1071718006742,0.713813011632917,36.8421052631579,1.9320360215505,0,390.625566270616,390.541046142578,0.156476850622715
+2629,305874,3797798,305974,3797698,28,26,48.1994459833795,0.117423906981015,10.6027874368934,0.527168150975403,17.0531639967223,0.0405370847972167,0.390581717451524,39.0581717451524,4,92.1285564278385,0.732875264270613,27.4238227146814,4.39841302574104,0,391.038233439128,390.778381347656,0.781022548839826
+2630,305874,3797698,305974,3797598,29,26,84.2105263157895,0.863808051354593,36.9216026707337,0.911458333333333,NA,0.0348282005310849,0.223684210526316,22.3684210526316,7,82.6935441672164,0.692894825457403,13.4210526315789,1.04386363309972,0,392.691101074219,391.249359130859,2.84625544735559
+2631,305874,3797598,305974,3797498,30,26,27.9778393351801,0.0908798054029311,11.5061369402631,0.360818713450292,10.3911503722826,0.0536806476231499,0.717451523545706,71.7451523545706,1,98.9966524699873,0.832160905599353,71.7451523545706,24.4709283928153,0,389.649192810059,388.5,2.18547128745594
+2632,305874,3797498,305974,3797398,31,26,59.5567867036011,0.580371034503867,30.9779442753717,0.868217054263566,NA,0.0746970403095253,0.548476454293629,54.8476454293629,3,94.3919541565116,0.824994567125257,33.5180055401662,9.01532513204247,0,391.534101698134,389.562896728516,2.58150823322363
+2633,305874,3797398,305974,3797298,32,26,98.6149584487535,0.960986457131984,37.382826209348,0.930711610486891,NA,0.212775763206782,1,100,1,100,NA,100,0.0779223098649213,0,393.703623453776,392.856903076172,1.16564924334967
+2634,305874,3797298,305974,3797198,33,26,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.169216584232881,0.992105263157895,99.2105263157895,1,99.978528257005,0.822843822843827,99.2105263157895,0,0,395.732306586372,395.10595703125,1.01737181576135
+2635,305874,3797198,305974,3797098,34,26,53.7396121883656,0.13092090778343,16.5531410637005,0.512593404808317,14.023755293727,0.0664156722830392,0.526315789473684,52.6315789473684,5,94.5773730946073,0.856060606060606,49.0304709141274,1.83953786900169,0,396.733357747396,396.016387939453,0.916062347347244
+2636,305874,3797098,305974,3796998,35,26,28.2548476454294,0.137669408184638,18.2468354675658,0.757241857241857,41.5646013505757,0.023239889048956,0.207756232686981,20.7756232686981,3,90.8592868957155,0.78962703962704,19.1135734072022,16.8941707293193,0,396.962287055122,395.764862060547,1.40544314301726
+2637,305874,3796998,305974,3796898,36,26,34.3490304709141,0.0669451239799809,8.26676653670943,0.349007936507936,19.3866177939653,0.0199485916290493,0.160664819944598,16.0664819944598,4,79.5554651706781,0.725973597359736,8.31024930747922,9.51511093665814,0,396.858225504557,394.967651367188,2.09793557782652
+2638,305874,3796898,305974,3796798,37,26,7.36842105263158,0.0188958011233817,5.34275255300757,0.390277777777778,39.2649243647559,0.0153285037687678,0.0657894736842105,6.57894736842105,5,64.2429470890298,0.625352112676056,3.42105263157895,9.60749826431274,0,397.120761447483,395.754516601562,1.66149699323189
+2639,305874,3796798,305974,3796698,38,26,28.808864265928,0.0701844041725606,12.1995212778409,0.51474358974359,10.6977776173722,0.0431364341606331,0.393351800554017,39.3351800554017,4,95.0239029341037,0.797119775201967,37.3961218836565,8.8398609161377,0,395.615559895833,393.828491210938,2.20275322691032
+2640,305874,3796698,305974,3796598,39,26,49.3074792243767,0.240246614282996,19.7780879945009,0.728481012658228,15.5867256623399,0.0756788983748054,0.662049861495845,66.2049861495845,2,97.4856221312265,0.814647742692632,61.7728531855956,5.38745945367853,0,394.500699361165,393.895568847656,0.796285126003953
+2641,305874,3796598,305974,3796498,40,26,40.1662049861496,0.195706511635025,19.5891039817753,0.647241647241647,25.9778759376342,0.0340709274537491,0.188365650969529,18.8365650969529,6,84.0889794595689,0.823988298391029,16.0664819944598,4.20173212359933,0,393.831715901693,393.517181396484,0.4275731094292
+2642,305874,3796498,305974,3796398,41,26,48.1994459833795,0.23484781396203,20.4103790566039,0.704985119047619,23.2353185658643,0.00920464280210369,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,6.12054443359375,0,393.611773173014,393.492523193359,0.24066167436649
+2643,305874,3796398,305974,3796298,42,26,22.6315789473684,0.0773828046005156,12.5425113478692,0.510416666666667,29.8071923856447,0.00557446857327657,0,0,0,NA,NA,0,NA,NA,393.612945556641,393.565551757812,0.122542270632066
+2644,305874,3796298,305974,3796198,43,26,19.3905817174515,0.0472395028084543,8.77880665140458,0.271081349206349,23.3800883636148,0.0403237185036084,0.349030470914127,34.9030470914127,3,91.6175713748949,0.892669330112422,21.0526315789474,11.0289514556764,0,393.566729227702,393.505340576172,0.0868466262780464
+2645,305874,3796198,305974,3796098,44,26,0,NA,NA,NA,NA,0.00742813557429288,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,29.3186189333598,11.6176595687866,393.642693413628,393.600616455078,0.0796919603274018
+2646,305874,3796098,305974,3795998,45,26,7.75623268698061,0.0125972007489211,4.13447932283926,0.264583333333333,27.8925342254915,0.0165441619025213,0.0443213296398892,4.43213296398892,5,47.5733173250203,0.520410628019324,1.66204986149584,10.2600452303886,0,393.73336537679,393.675537109375,0.0593931227073143
+2647,305874,3795998,305974,3795898,46,26,35,0.0897550553360631,12.8651768757662,0.571471930846931,11.6900441947969,0.0330971110305271,0.25,25,2,92.0001881551555,0.843137254901961,22.6315789473684,16.7978434010556,0,393.673529730903,393.590576171875,0.101449935646066
+2648,305874,3795898,305974,3795798,47,26,6.09418282548476,0.0593868035306282,12.8003394359014,0.621212121212121,NA,0.0488606721331977,0.42382271468144,42.382271468144,4,91.5163308592254,0.752942786750616,26.0387811634349,24.1265951854731,0,393.482447306315,393.389923095703,0.112875275025854
+2649,305874,3795798,305974,3795698,48,26,0,NA,NA,NA,NA,0.0247782000881562,0.157894736842105,15.7894736842105,2,88.1458164355375,0.878826530612245,14.404432132964,73.1716197499058,49.0149574279785,393.351345486111,393.321746826172,0.0547703017289295
+2650,305874,3795698,305974,3795598,49,26,7.20221606648199,0.0350922020862803,11.3599271512513,0.5,51.9557522077996,0.0119695544549296,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,34.723760286967,18.7329120635986,393.403806050618,393.331909179688,0.109262349206806
+2651,305874,3795598,305974,3795498,50,26,12.8947368421053,0.033067651965918,6.68251120494007,0.366898148148148,20.1900100234631,0.0318478653872597,0.189473684210526,18.9473684210526,1,92.9849123366196,0.970855915737805,18.9473684210526,14.5642073882951,0,393.683471679688,393.543212890625,0.271204931929551
+2652,305874,3795498,305974,3795398,51,26,0,NA,NA,NA,NA,0.0268411731522014,0.149584487534626,14.9584487534626,6,73.0896290248948,0.67125494728731,5.54016620498615,69.2669813368056,15.5867252349854,394.380551656087,393.97412109375,0.509830772331937
+2653,305874,3795398,305974,3795298,52,26,0,NA,NA,NA,NA,0.0387689429487668,0.301939058171745,30.1939058171745,4,87.276673636514,0.789118523890098,12.4653739612188,102.054075888537,74.3893203735352,395.167941623264,394.921844482422,0.389744124748157
+2654,305874,3795298,305974,3795198,53,26,0,NA,NA,NA,NA,0.018316942442025,0.038781163434903,3.8781163434903,3,57.692266668405,0.531844380403458,1.66204986149584,86.1434064592634,63.206901550293,395.775779724121,395.380096435547,0.542378110743727
+2655,305874,3795198,305974,3795098,54,26,11.3157894736842,0.0580371034503867,15.4900146753397,0.549466338259442,11.6176592829322,0.0104011993976344,0.0605263157894737,6.05263157894737,2,76.3032599060127,0.822595704948646,5,14.9684007064156,5.19557523727417,395.972501118978,395.708618164062,0.48682024466339
+2656,305874,3795098,305974,3794998,55,26,34.0720221606648,0.332026219739422,27.0919684782843,0.838753387533875,NA,0.0297791000184922,0.171745152354571,17.1745152354571,5,82.8333563802306,0.754056732317602,11.0803324099723,15.6986219729147,0,396.021606445312,395.831939697266,0.311091076179098
+2657,305874,3794998,305974,3794898,56,26,3.601108033241,0.0350922020862803,8.03656289232347,0.564102564102564,NA,0.015938161736926,0.168975069252078,16.8975069252078,4,81.0252157787004,0.772955974842767,6.37119113573407,40.8452459241523,20.7823009490967,396.123118082682,395.967681884766,0.199169661064128
+2658,305874,3794898,305974,3794798,57,26,36.8421052631579,0.359020221344253,30.6820315508018,0.838345864661654,NA,0.00800510866118358,0.07202216066482,7.20221606648199,2,76.1914687294161,0.842300691663633,3.8781163434903,17.9146982339712,0,396.278598361545,396.205352783203,0.111245927784157
+2659,305874,3794798,305974,3794698,58,26,4.21052631578947,0.0215952012838648,5.94578116872848,0.351190476190476,99.2613246862776,-0.000153042493873631,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,23.6517378489176,15.5867252349854,396.428601582845,396.338562011719,0.145213342628761
+2660,305874,3794698,305974,3794598,59,26,4.70914127423823,0.0229449013641064,5.44325310622974,0.528846153846154,102.867140667435,0.00342060875321035,0,0,0,NA,NA,0,NA,NA,396.56679280599,396.420684814453,0.251735613572604
+2661,305874,3794598,305974,3794498,60,26,4.43213296398892,0.0215952012838648,5.20302888902686,0.398809523809524,77.237777728945,0.0030669596333136,0.03601108033241,3.601108033241,2,63.9994282705831,0.711845466155811,1.93905817174515,21.5689783829909,10.3911504745483,397.054662068685,396.654022216797,0.484052745103576
+2662,305874,3794498,305974,3794398,61,26,11.6343490304709,0.11337480674029,15.1647818894943,0.718253968253968,NA,0.00376452258061864,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,21.4219055175781,21.4219055175781,397.460751003689,397.148956298828,0.397788521332082
+2663,305874,3794398,305974,3794298,62,26,10.2631578947368,0.105276606258841,16.8328567786746,0.700854700854701,NA,0.0127821618936459,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,2.59778761863708,0,398.173906962077,397.653869628906,0.471348104638571
+2664,305874,3794298,305974,3794198,63,26,73.4072022160665,0.715341042528022,33.02363705811,0.915094339622642,NA,0.0358681263860187,0.193905817174515,19.3905817174515,4,85.2389204871416,0.74785572597994,9.97229916897507,0,0,399.25819905599,398.588195800781,0.904890930459542
+2665,305874,3794198,305974,3794098,64,26,27.4238227146814,0.0890802052959424,11.7311969011539,0.415861513687601,15.5867255757432,0.0339591758911965,0.207756232686981,20.7756232686981,6,78.8468878010379,0.550566857385039,7.75623268698061,8.84302061716716,0,399.878481547038,399.676849365234,0.236147214899864
+2666,305874,3794098,305974,3793998,65,26,0,NA,NA,NA,NA,0.0133931790079836,0.0609418282548476,6.09418282548476,4,62.703839185064,0.624154086413326,3.04709141274238,52.1790243495594,27.9790287017822,399.758609347873,399.667877197266,0.104987315896591
+2667,305874,3793998,305974,3793898,66,26,13.4210526315789,0.0458898027282127,8.69260548615385,0.625831244778613,29.9267034640072,0.0366702819963968,0.228947368421053,22.8947368421053,5,87.873703258287,0.815919850269734,18.4210526315789,12.0719820384322,0,399.545397440592,399.302520751953,0.294363939293524
+2668,305874,3793898,305974,3793798,67,26,8.31024930747922,0.0809820048144931,12.8124389430052,0.722222222222222,NA,0.0294669527745737,0.196675900277008,19.6675900277008,4,82.9153374004333,0.751034482758621,9.97229916897507,26.2349710262997,0,399.240902370877,398.938232421875,0.433151957423358
+2669,305874,3793798,305974,3793698,68,26,0,NA,NA,NA,NA,0.019926619211791,0.0997229916897507,9.97229916897507,2,82.1690975551257,0.814871794871795,8.03324099722992,32.6662407981025,18.7329120635986,399.460571289062,398.941314697266,0.68791208745806
+2670,305874,3793698,305974,3793598,69,26,7.4792243767313,0.0364419021665219,6.40985684769243,0.446666666666667,58.0882963170683,0.0191571580701312,0.113573407202216,11.3573407202216,3,81.9313401204668,0.852853260869565,9.14127423822715,24.1307077058932,5.19557523727417,399.812789916992,399.4228515625,0.406357805717807
+2671,305874,3793598,305974,3793498,70,26,37.1052631578947,0.126871807542706,16.7582457902989,0.513292937833204,25.9778758441098,0.0260927049551691,0.107894736842105,10.7894736842105,4,73.9436980242485,0.723825402932752,5.26315789473684,9.01507952155136,0,399.892310248481,399.765686035156,0.167714312761693
+2672,305874,3793498,305974,3793398,71,26,27.9778393351801,0.0908798054029311,13.9782435697293,0.545079365079365,28.9362431790054,0.0366468227588071,0.357340720221607,35.7340720221607,3,91.4656110552666,0.728521643433602,21.3296398891967,10.1563065957653,0,400.156524658203,399.958038330078,0.312735041856045
+2673,305874,3793398,305974,3793298,72,26,49.0304709141274,0.238896914202755,18.3118751258375,0.53544061302682,20.7823006752878,0.0379134620063138,0.282548476454294,28.2548476454294,3,90.0611774951574,0.862902715361732,23.2686980609418,2.1024455463185,0,400.843607584635,400.661254882812,0.334103798920463
+2674,305874,3793298,305974,3793198,73,26,26.3157894736842,0.0641107538114737,11.0231769524459,0.397406291834003,28.5756635324368,0.0340967917465927,0.210526315789474,21.0526315789474,4,88.7853650889816,0.820398009950249,18.8365650969529,4.6437993175105,0,401.032669067383,400.957214355469,0.130972877635703
+2675,305874,3793198,305974,3793098,74,26,20.5263157894737,0.105276606258841,16.0403461346403,0.584803921568627,68.3371219257421,0.0216683800085632,0.0368421052631579,3.68421052631579,3,60.5090447125999,0.636612021857924,2.10526315789474,34.5258231844221,0,400.873491075304,400.750335693359,0.141891863979169
+2676,305874,3793098,305974,3792998,75,26,53.4626038781163,0.520984230973239,34.6037965123103,0.759067357512953,NA,0.0307443480137471,0.141274238227147,14.1274238227147,4,81.96214556244,0.812606599925843,9.69529085872576,10.1257782730402,0,400.871467590332,400.610382080078,0.330884178157724
+2677,305874,3792998,305974,3792898,76,26,31.5789473684211,0.102577206098358,13.9694406871133,0.557598039215686,17.3185838960732,0.0363552242904367,0.224376731301939,22.4376731301939,2,90.9182578906635,0.811979166666667,19.6675900277008,6.42683048601504,0,400.877336290148,400.649017333984,0.418166346039754
+2678,305874,3792898,305974,3792798,77,26,30.7479224376731,0.0749083544534061,15.4127664511221,0.575418399683106,20.4032885920485,0.0325281408635082,0.188365650969529,18.8365650969529,4,87.048749853557,0.772220150858978,15.5124653739612,19.0495747818666,0,400.958979288737,400.785247802734,0.251421380621624
+2679,305874,3792798,305974,3792698,78,26,45.5263157894737,0.116749056940894,20.2294971653672,0.560344516594517,11.6900441558284,0.0132283355608754,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,7.79336285591125,5.19557523727417,400.867194281684,400.805023193359,0.115119468065973
+2680,305874,3792698,305974,3792598,79,26,41.5512465373961,0.134970008024155,20.4047265785742,0.598824786324786,12.9406813574434,0.0398009777406648,0.296398891966759,29.6398891966759,6,88.0102882870901,0.72753049651177,21.3296398891967,7.45806963198653,0,400.684539794922,400.554656982422,0.142172297042969
+2681,305874,3792598,305974,3792498,80,26,32.6869806094183,0.106176406312335,15.0653322387945,0.538896859556831,33.9717413334569,0.0398645436184363,0.265927977839335,26.5927977839335,4,90.3619281659509,0.817836770513383,20.7756232686981,9.8987456659476,0,400.652238633898,400.549560546875,0.176641476556005
+2682,305874,3792498,305974,3792398,81,26,2.77008310249307,0.00899800053494367,3.75235984414919,0.166666666666667,62.5387407679905,0.010022911169454,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,13.4177672386169,7.34765291213989,400.998863220215,400.751953125,0.301447413744793
+2683,305874,3792398,305974,3792298,82,26,1.05263157894737,0.0053988003209662,2.59778758441098,0.166666666666667,36.3690261817537,0.0254269801625062,0.113157894736842,11.3157894736842,6,68.704022254472,0.63979558193208,4.21052631578947,49.0261113366415,26.4923400878906,401.256958007812,401.142150878906,0.197843278883792
+2684,305874,3792298,305974,3792198,83,26,24.6537396121884,0.120123307141498,21.5052320229185,0.68433908045977,18.7329127343573,0.0320209913169243,0.116343490304709,11.6343490304709,5,74.4987101017794,0.681222129012318,6.37119113573407,18.8109072390057,0,401.295733133952,401.119110107422,0.208227736129952
+2685,305874,3792198,305974,3792098,84,26,12.7423822714681,0.0620862036911113,10.2444602071732,0.612962962962963,44.3910140906919,0.023941621049759,0.157894736842105,15.7894736842105,4,82.242254640645,0.745535714285714,11.3573407202216,13.3720429487396,0,402.127835591634,401.494140625,0.681662039711374
+2686,305874,3792098,305974,3791998,85,26,68.6980609418283,0.334725619899905,17.0090715937752,0.444669365721997,25.9778760103754,0.0568843988886805,0.626038781163435,62.6038781163435,2,97.3845054451955,0.822151843054456,59.0027700831025,1.54375029454189,0,403.056223551432,402.678497314453,0.384879145862639
+2687,305874,3791998,305974,3791898,86,26,92.8947368421053,0.952888256650535,37.7430934419241,0.919263456090652,NA,0.0708220453430457,0.865789473684211,86.578947368421,1,99.595987913489,0.724037763253449,86.578947368421,0.411714875589388,0,403.253084818522,403.202423095703,0.0843754206811979
+2688,305874,3791898,305974,3791798,87,26,23.5457063711911,0.229449013641064,21.2067792903112,0.819607843137255,NA,0.026451068186981,0.285318559556787,28.5318559556787,2,91.2763151040945,0.916802849360989,21.8836565096953,4.87418791391317,0,403.306681315104,403.247344970703,0.124314411357926
+2689,305874,3791798,305974,3791698,88,26,47.3684210526316,0.46159742744261,29.9956642924556,0.868421052631579,NA,0.0376625510630887,0.39612188365651,39.612188365651,1,96.7285565610363,0.835667763849009,39.612188365651,2.39797471119807,0,403.823196411133,403.442413330078,0.470364713907335
+2690,305874,3791698,305974,3791598,89,26,6.37119113573407,0.0206954012303704,4.38803396832941,0.369934640522876,29.8071923856447,0.0254051620132307,0.0886426592797784,8.86426592797784,5,70.6284469065691,0.725683890577508,5.54016620498615,10.1083951294422,0,404.730472140842,404.109497070312,0.647290835853991
+2691,305874,3791598,305974,3791498,90,26,4.73684210526316,0.0242946014443479,6.19210255642162,0.535416666666667,67.5424771946855,0.0315582725525019,0.176315789473684,17.6315789473684,1,92.5297305898419,0.979246880205347,17.6315789473684,17.2591684327197,0,405.087575276693,404.93212890625,0.225929741815828
+2692,305874,3791498,305974,3791398,91,26,10.5263157894737,0.0512886030491789,6.60956357463177,0.380630630630631,31.1734513246797,0.0195166200119929,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.956400966183575,4.43213296398892,34.6273822784424,21.4219055175781,405.085801866319,404.953247070312,0.354367017348611
+2693,305874,3791398,305974,3791298,92,26,54.2936288088643,0.132270607863672,12.1003264207466,0.480898876404494,14.2878318181764,0.0295507872457503,0.127423822714681,12.7423822714681,6,73.3663468395246,0.647374847374847,5.54016620498615,1.60866763280786,0,405.919825236003,405.158386230469,1.10115756253544
+2694,305874,3791298,305974,3791198,93,26,45.7063711911357,0.111350256619928,15.0122927149973,0.675438533775654,13.3793374704909,0.0400392279416514,0.329639889196676,32.9639889196676,7,89.0893417430617,0.709940312213039,26.3157894736842,3.63747811918499,0,407.472174750434,406.752563476562,0.843566054970956
+2695,305874,3791198,305974,3791098,94,26,15.5263157894737,0.0398161523671258,10.1988712417594,0.468089225589226,29.2080079459262,0.0519512153242862,0.507894736842105,50.7894736842105,3,93.9438569936177,0.704836734084187,26.8421052631579,12.8781659788418,0,408.083735148112,407.930908203125,0.23815274257958
+2696,305874,3791098,305974,3790998,95,26,67.590027700831,0.329326819578938,19.3001468004141,0.534693407100046,15.5867256623399,0.0944837425987641,0.936288088642659,93.6288088642659,1,99.8140902382289,0.459617609035856,93.6288088642659,2.4306608685375,0,407.968814425998,407.724548339844,0.525988758726668
+2697,305874,3790998,305974,3790898,96,26,38.781163434903,0.125972007489211,13.7290637295075,0.671279854620976,16.4298514359663,0.0517981029844221,0.426592797783933,42.6592797783933,3,94.055732227269,0.858264625049077,38.2271468144044,4.29364945671775,0,407.224403381348,406.600372314453,0.794020633295515
+2698,305874,3790898,305974,3790798,97,26,13.0193905817175,0.0317179518856764,7.61457045560571,0.509271442495127,27.5833970121659,0.0496742734438843,0.404432132963989,40.4432132963989,1,96.8197156203083,0.842783729640275,40.4432132963989,13.1405018323088,0,406.911980523003,406.6728515625,0.471695344033021
+2699,305874,3790798,305974,3790698,98,26,13.4210526315789,0.0229449013641064,5.95178114707445,0.338709677419355,12.2347051434032,0.050739876092963,0.489473684210526,48.9473684210526,1,97.6784426290734,0.789319108127547,48.9473684210526,17.1672373740904,0,406.533419291178,406.282592773438,0.295959310483437
+2700,305874,3790698,305974,3790598,99,26,18.5595567867036,0.045214952688092,7.73670786920409,0.437083333333333,22.1097171428421,0.0434927543588132,0.342105263157895,34.2105263157895,4,87.1512280865537,0.706037735849056,18.7134502923977,10.7495944683368,0,405.825881958008,405.441833496094,0.421582039636968
+2701,305974,3800598,306074,3800498,0,27,27.7008310249307,0.0899800053494367,15.5803318157398,0.521340388007055,15.5867255584239,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.809295654297,383.697814941406,0.122349865574934
+2702,305974,3800498,306074,3800398,1,27,7.63157894736842,0.039141302327005,11.9994477838954,0.417735042735043,31.1734513246797,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.009648640951,383.93701171875,0.121966184559651
+2703,305974,3800398,306074,3800298,2,27,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.271520614624,384.08349609375,0.257570697036884
+2704,305974,3800298,306074,3800198,3,27,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.605072021484,384.249450683594,0.460529914134906
+2705,305974,3800198,306074,3800098,4,27,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.982963562012,384.434112548828,0.513178264290041
+2706,305974,3800098,306074,3799998,5,27,2.36842105263158,0.0242946014443479,11.6801258055202,0.277777777777778,NA,0.00962018002304065,0,0,0,NA,NA,0,NA,NA,385.08718363444,384.788940429688,0.381688546083841
+2707,305974,3799998,306074,3799898,6,27,11.3573407202216,0.0368918021932691,7.9383475082292,0.468106995884774,27.3866177720836,-0.00285535899113955,0.03601108033241,3.601108033241,2,63.8710229715496,0.769476372924649,2.21606648199446,9.73166344715999,0,384.866863250732,384.685546875,0.233899659305136
+2708,305974,3799898,306074,3799798,7,27,49.0304709141274,0.238896914202754,15.6594013816371,0.396780303030303,23.2353185658643,0.000236706604019041,0.0304709141274238,3.04709141274238,4,50.4125152854324,0.656190476190476,2.21606648199446,8.69310340014371,0,384.884012858073,384.698028564453,0.229623200419943
+2709,305974,3799798,306074,3799698,8,27,18.8365650969529,0.0917796054564255,13.6016040278854,0.622222222222222,57.3870034362763,0.0270934402046163,0.0304709141274238,3.04709141274238,3,52.1271892473943,0.518666666666667,1.38504155124654,8.89727817882191,0,385.23362159729,384.898834228516,0.311469867531043
+2710,305974,3799698,306074,3799598,9,27,38.1578947368421,0.07828260465401,8.33494840205947,0.31266339869281,11.92086899109,0.0111840420369701,0.110526315789474,11.0526315789474,1,89.1425830254437,0.841653471122593,11.0526315789474,5.18748490015666,0,385.692604064941,385.469512939453,0.347312542379859
+2711,305974,3799598,306074,3799498,10,27,6.92520775623269,0.0674850040120775,19.2186133506244,0.54,NA,0.0655768323806437,0.714681440443213,71.4681440443213,1,98.9839537105949,0.840358600172868,71.4681440443213,20.5951113589974,0,386.124364852905,385.874694824219,0.301739470177817
+2712,305974,3799498,306074,3799398,11,27,30.7479224376731,0.299633417813624,27.0264766916304,0.803303303303303,NA,-0.0259060282172707,0.0526315789473684,5.26315789473684,1,81.3394503136629,1,5.26315789473684,0,0,386.649080276489,386.260375976562,0.43275601534707
+2713,305974,3799398,306074,3799298,12,27,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0122360125017942,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,387.032526652018,386.782409667969,0.319789703501169
+2714,305974,3799298,306074,3799198,13,27,91.0526315789474,0.933992455527153,38.4504111292307,0.91859344894027,NA,0.0260874547583578,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,1.03911504745483,0,387.072551727295,386.867248535156,0.33740362529385
+2715,305974,3799198,306074,3799098,14,27,41.2742382271468,0.402210623911982,28.3033287084136,0.861297539149888,NA,0.000752614695604854,0,0,0,NA,NA,0,NA,NA,387.171999613444,386.943267822266,0.320155829162485
+2716,305974,3799098,306074,3798998,15,27,0,NA,NA,NA,NA,0.00557044575653182,0,0,0,NA,NA,0,NA,NA,387.106819152832,386.989990234375,0.188954358689369
+2717,305974,3798998,306074,3798898,16,27,26.0387811634349,0.253743615085412,28.6649535381622,0.803191489361702,NA,0.00438457957229566,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417,387.059445699056,387.000061035156,0.11055968982331
+2718,305974,3798898,306074,3798798,17,27,25.7894736842105,0.264541215727344,19.7501786839922,0.860544217687075,NA,-0.00431632693890654,0,0,0,NA,NA,0,NA,NA,387.456956863403,387.180786132812,0.380492894872891
+2719,305974,3798798,306074,3798698,18,27,4.15512465373961,0.0134970008024155,5.02032562011343,0.330246913580247,11.8258688975844,-0.00156216174661918,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,37.0486970381303,27.9790287017822,388.197204589844,387.702239990234,0.597708711483678
+2720,305974,3798698,306074,3798598,19,27,0,NA,NA,NA,NA,0.000591927659347537,0,0,0,NA,NA,0,NA,NA,388.651008605957,388.214233398438,0.403563647100805
+2721,305974,3798598,306074,3798498,20,27,0,NA,NA,NA,NA,0.00460796929646198,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,62.0051879882812,60.5902976989746,388.886479695638,388.619049072266,0.276512313092594
+2722,305974,3798498,306074,3798398,21,27,1.31578947368421,0.0134970008024155,5.19636639234463,0.333333333333333,NA,0.017063187014068,0.107894736842105,10.7894736842105,1,88.9454279930292,0.886281048266427,10.7894736842105,27.1437275816755,10.3911504745483,389.142820358276,388.934692382812,0.17416550529999
+2723,305974,3798398,306074,3798298,22,27,11.9113573407202,0.0290185517251933,8.35002163458672,0.359375,17.1598191204116,0.0187645408563017,0.0914127423822715,9.14127423822715,5,65.8134228809357,0.673893405600723,3.601108033241,16.78744801608,0,389.333384195964,389.224151611328,0.215071616738776
+2724,305974,3798298,306074,3798198,23,27,24.3767313019391,0.0475094428245026,9.91094694867923,0.51962962962963,16.5679327772631,0.029313735823669,0.238227146814404,23.8227146814404,6,84.0691836393276,0.673963161021985,14.6814404432133,12.787194340728,0,389.505176544189,389.210876464844,0.32702996575505
+2725,305974,3798198,306074,3798098,24,27,35.4570637119114,0.172761610270919,25.565376929076,0.735785272075595,10.3911504415599,0.0357357437159738,0.412742382271468,41.2742382271468,1,96.9081075056324,0.781688437348815,41.2742382271468,4.75715900267531,0,389.738334655762,389.516815185547,0.229968492097321
+2726,305974,3798098,306074,3797998,25,27,20,0.0512886030491789,10.2728778336574,0.325,19.4834070779248,0.0289576252531429,0.223684210526316,22.3684210526316,4,88.8957410383452,0.701425524750253,17.6315789473684,8.40677044251386,0,389.985530853271,389.853912353516,0.161107292585625
+2727,305974,3797998,306074,3797898,26,27,96.6759002770083,0.942090656008603,37.2524544307424,0.91738299904489,NA,0.0189718147653045,0.119113573407202,11.9113573407202,4,80.6537297273255,0.637360237596087,8.03324099722992,0.241654662198799,0,390.278541564941,390.098968505859,0.187107740258864
+2728,305974,3797898,306074,3797798,27,27,22.4376731301939,0.0728838043330438,16.3866175093264,0.417062361506806,29.0438361685968,0.011736834170038,0.124653739612188,12.4653739612188,1,89.820262380557,0.924841772151899,12.4653739612188,7.91756901211209,0,390.570625305176,390.468109130859,0.173747428789387
+2729,305974,3797798,306074,3797698,28,27,18.2825484764543,0.0593868035306282,10.0731805794963,0.382495590828924,26.2901989974521,0.0144035625726914,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,2.44921763737996,0,390.946901321411,390.722442626953,1.8625117267427
+2730,305974,3797698,306074,3797598,29,27,72.3684210526316,0.742335044132853,38.2544524009918,0.843030303030303,NA,0.0460899755701815,0.4,40,3,95.398856058472,0.731182795698925,37.3684210526316,2.50145999067708,0,396.709139506022,394.298034667969,4.42718966249677
+2731,305974,3797598,306074,3797498,30,27,39.8891966759003,0.388713623109567,27.8878131383293,0.840277777777778,NA,0.0604999339997438,0.78393351800554,78.393351800554,1,99.2809290737347,0.76510989010989,78.393351800554,12.289443022792,0,391.427560806274,388.5,3.12805887846142
+2732,305974,3797498,306074,3797398,31,27,32.1329639889197,0.104376806205347,10.8505291018225,0.603692201518288,40.3798420104368,0.0503873954110436,0.56786703601108,56.786703601108,1,98.1832357668767,0.79956591964466,56.786703601108,13.2111605341842,0,389.465283711751,388.5,2.10202966468074
+2733,305974,3797398,306074,3797298,32,27,79.2243767313019,0.772028445898167,36.5282704218764,0.870629370629371,NA,0.0527041260170953,0.357340720221607,35.7340720221607,2,95.0778649854002,0.933785766691122,34.9030470914127,1.14482618302338,0,394.628622055054,389.161895751953,4.37698603479375
+2734,305974,3797298,306074,3797198,33,27,94.7368421052632,0.971784057773917,38.1882462551818,0.914351851851852,NA,-0.0554817633181014,0.226315789473684,22.6315789473684,2,90.4948586870715,0.847939175670268,18.4210526315789,1.25832162901413,0,399.366719563802,395.658660888672,3.80745693530647
+2735,305974,3797198,306074,3797098,34,27,41.8282548476454,0.101902356058237,15.6335315221327,0.529210372960373,24.6789821168518,0.0367271983400453,0.238227146814404,23.8227146814404,3,91.8825033673922,0.871301247771836,22.7146814404432,0.689574480056763,0,398.01208114624,397.097015380859,0.854353402340612
+2736,305974,3797098,306074,3796998,35,27,19.3905817174515,0.0944790056169086,18.0938973596906,0.685714285714286,36.3690261817537,0.028904314962644,0.132963988919668,13.2963988919668,3,84.4645936723829,0.746824592846567,10.803324099723,22.9892084797223,0,398.456774393717,398.006896972656,0.512705444255174
+2737,305974,3796998,306074,3796898,36,27,17.7285318559557,0.0575872034236395,12.2893384097458,0.437830687830688,17.8806677614438,0.031455657674737,0.204986149584488,20.4986149584488,3,86.2565372751311,0.777459126239614,13.2963988919668,23.1544074625582,0,398.831201553345,398.370941162109,0.364666312166518
+2738,305974,3796898,306074,3796798,37,27,21.5789473684211,0.221350813159614,27.2220187261003,0.672764227642276,NA,0.0239936449094354,0.118421052631579,11.8421052631579,6,70.7518615794655,0.641791044776119,3.94736842105263,22.1348435825772,0,398.858601888021,398.388214111328,0.44058312698394
+2739,305974,3796798,306074,3796698,38,27,25.207756232687,0.122822707301981,13.7719554713036,0.617829457364341,21.4219054085159,0.0507806123632111,0.537396121883656,53.7396121883656,1,97.9771083257017,0.789836992681304,53.7396121883656,17.7645845953951,0,397.609052658081,395.610687255859,1.63665791744551
+2740,305974,3796698,306074,3796598,39,27,16.3434903047091,0.0398161523671258,9.17475926353737,0.59354967948718,18.1845130908769,0.0439177602868936,0.371191135734072,37.1191135734072,4,91.6788102861349,0.693670109048891,25.207756232687,13.4397081830608,0,394.688182830811,394.222900390625,0.76530918986321
+2741,305974,3796598,306074,3796498,40,27,10.5263157894737,0.017096201016393,5.74879194769746,0.270263532763533,19.8752264542525,0.0331156497963184,0.235457063711911,23.5457063711911,4,84.8092931530046,0.748800268739802,10.5263157894737,20.5971808994518,0,394.314056396484,394.116821289062,0.234148356608057
+2742,305974,3796498,306074,3796398,41,27,25.4847645429363,0.0827816049214818,12.5558539043317,0.694262444262444,25.8813628188028,0.0116774439564908,0.03601108033241,3.601108033241,3,57.3324734266151,0.538952745849298,1.93905817174515,19.8968569682195,0,394.202835083008,393.817016601562,0.469349060638768
+2743,305974,3796398,306074,3796298,42,27,62.6315789473684,0.214152412731659,18.0974980197736,0.490352224647641,12.9406813574434,0.0224249517123481,0.123684210526316,12.3684210526316,3,82.1225490897793,0.728978978978979,8.68421052631579,0.377421348652941,0,393.951698303223,393.684539794922,0.344660899960729
+2744,305974,3796298,306074,3796198,43,27,60.9418282548476,0.296934017653141,22.2561741487463,0.674656261612783,20.7823008831198,0.029734610460429,0.141274238227147,14.1274238227147,5,78.2652170876174,0.759065628476085,7.75623268698061,5.49747502570059,0,393.71470451355,393.593811035156,0.159693676341498
+2745,305974,3796198,306074,3796098,44,27,35.4570637119114,0.0863808051354593,10.6854115397894,0.399980709876543,19.4834070259668,0.0183076929972175,0.0443213296398892,4.43213296398892,3,68.1228734051765,0.694806763285024,3.601108033241,5.00535663962364,0,393.599822998047,393.559204101562,0.0450767279490022
+2746,305974,3796098,306074,3795998,45,27,26.3157894736842,0.128221507622947,17.7464875066669,0.695947570947571,31.1734513246797,0.0238868348334761,0.166204986149584,16.6204986149584,4,80.4274987931231,0.769358548428316,8.86426592797784,13.1213099718094,5.19557523727417,393.607997894287,393.497863769531,0.106519912006976
+2747,305974,3795998,306074,3795898,46,27,22.1052631578947,0.0755832044935269,14.8241155544514,0.450703316556975,25.0864562511934,0.0398055812353146,0.4,40,5,91.4175125563968,0.72520908004779,28.4210526315789,16.8811286593738,0,393.537528991699,393.464202880859,0.0950190682192942
+2748,305974,3795898,306074,3795798,47,27,7.75623268698061,0.0377916022467634,9.80013684622815,0.506944444444444,31.1734513246797,0.0343827513675712,0.274238227146814,27.4238227146814,6,83.3508037701463,0.721331160476885,11.3573407202216,26.7433735770409,5.19557523727417,393.501037597656,393.428405761719,0.097102637099623
+2749,305974,3795798,306074,3795698,48,27,0,NA,NA,NA,NA,0.0370570693233369,0.418282548476454,41.8282548476454,3,91.6887888610565,0.764173972838233,23.2686980609418,47.8935563990612,14.6953058242798,393.584353129069,393.419281005859,0.262346197899173
+2750,305974,3795698,306074,3795598,49,27,26.0387811634349,0.126871807542706,21.1468438471532,0.470436507936508,20.7823008831198,0.0125483101566156,0.0886426592797784,8.86426592797784,4,69.4918144526104,0.62017769464578,3.601108033241,10.5189993232489,0,393.751462936401,393.449432373047,0.392877576809955
+2751,305974,3795598,306074,3795498,50,27,35,0.0897550553360631,11.1531768214439,0.416041666666667,18.1845132727298,0.0182266940006995,0.0973684210526316,9.73684210526316,4,75.4736798934213,0.763896190794819,6.57894736842105,7.24827235453838,0,394.073705037435,393.640502929688,0.546888605887923
+2752,305974,3795498,306074,3795398,51,27,1.10803324099723,0.0107976006419324,4.51955013150874,0.291666666666667,NA,0.0202719734988428,0.0941828254847645,9.41828254847645,2,80.0507389835085,0.822575360419397,4.98614958448753,66.7049700793098,18.7329120635986,394.758638381958,394.005798339844,0.627398944430604
+2753,305974,3795398,306074,3795298,52,27,0,NA,NA,NA,NA,0.0147566730194231,0.0609418282548476,6.09418282548476,3,77.0312685670851,0.749436057608884,5.54016620498615,132.587723818692,117.562446594238,395.557540893555,394.999176025391,0.586843105920044
+2754,305974,3795298,306074,3795198,53,27,0,NA,NA,NA,NA,0.0126539682153375,0,0,0,NA,NA,0,NA,NA,396.80177116394,395.859741210938,0.807144925565932
+2755,305974,3795198,306074,3795098,54,27,12.6315789473684,0.129571207703189,15.3680941882478,0.763888888888889,NA,0.0430328096345827,0.234210526315789,23.4210526315789,1,94.2341300741174,0.909658734790032,23.4210526315789,11.7628738371174,0,396.848529815674,396.341186523438,0.492741370480174
+2756,305974,3795098,306074,3794998,55,27,37.3961218836565,0.182209510832609,18.9517483112492,0.73189863234111,23.2353185658643,0.0425864545701148,0.310249307479224,31.0249307479224,6,85.8237416448729,0.734442721380572,12.7423822714681,8.62790613940784,0,396.510457356771,396.313079833984,0.221933627474495
+2757,305974,3794998,306074,3794898,56,27,19.3905817174515,0.0629860037446057,9.8709438911073,0.55970625798212,16.6354546863457,0.0318282815294632,0.116343490304709,11.6343490304709,8,63.8600004108131,0.601527661265398,4.70914127423823,21.6457321757362,0,396.434017181396,396.272003173828,0.180583559712177
+2758,305974,3794898,306074,3794798,57,27,34.3490304709141,0.167362809949952,19.8344247068918,0.761384335154827,42.8438104389818,0.0456924827310187,0.354570637119114,35.4570637119114,3,92.875209349241,0.840409659415351,30.1939058171745,12.5914201177657,0,396.361518859863,396.278228759766,0.101536517381888
+2759,305974,3794798,306074,3794698,58,27,60.2631578947368,0.20605421225021,10.8883068163951,0.298580518844836,13.2217233366014,0.0211577969306602,0.0868421052631579,8.68421052631579,5,71.775774975441,0.716084961041733,5,2.56638794234305,0,396.363740921021,396.331787109375,0.0717811258959847
+2760,305974,3794698,306074,3794598,59,27,10.5263157894737,0.0512886030491789,11.2534607489779,0.637037037037037,49.0149584653305,0.0161538426661972,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,15.620464691749,5.19557523727417,396.422579447428,396.357421875,0.139209483139956
+2761,305974,3794598,306074,3794498,60,27,0,NA,NA,NA,NA,0.014143526330377,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,20.7823007106781,5.19557523727417,396.736516952515,396.510162353516,0.328817191786695
+2762,305974,3794498,306074,3794398,61,27,3.32409972299169,0.0161964009628986,3.93449580782015,0.28030303030303,21.4219054085159,0.0132030437105444,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.82907196969697,2.49307479224377,13.9880295859443,10.3911504745483,397.39444732666,397.075714111328,0.432529643466024
+2763,305974,3794398,306074,3794298,62,27,8.94736842105263,0.0305932018188085,6.76665951635117,0.459205582393988,48.778701156693,0.0226513724549525,0.0842105263157895,8.42105263157895,3,75.7439156678173,0.79000884173298,4.21052631578947,17.5257491767406,5.19557523727417,398.116697311401,397.67578125,0.5868988380293
+2764,305974,3794298,306074,3794198,63,27,74.2382271468144,0.361719621504736,18.3814467863161,0.595492662473795,25.9778758441098,0.0403374656879277,0.282548476454294,28.2548476454294,3,93.3632740683132,0.710572399096989,25.7617728531856,1.28698993196674,0,399.66370900472,398.965759277344,0.854867319281401
+2765,305974,3794198,306074,3794098,64,27,29.9168975069252,0.291535217332175,27.7096976975331,0.814814814814815,NA,0.0343592311938838,0.235457063711911,23.5457063711911,5,83.7224000803846,0.705489970246665,10.5263157894737,8.69733399222879,0,399.79861831665,399.518890380859,0.247727718949885
+2766,305974,3794098,306074,3793998,65,27,0,NA,NA,NA,NA,0.0157274070758964,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,62.8872509002686,59.2386741638184,399.532053629557,399.389984130859,0.1801843731253
+2767,305974,3793998,306074,3793898,66,27,32.3684210526316,0.110675406579807,14.7558733426527,0.486702127659574,12.9406814039161,0.0287864610839997,0.184210526315789,18.4210526315789,5,82.8777935343781,0.720954628901128,12.1052631578947,7.01244622639247,0,399.487947463989,399.387725830078,0.134784547970742
+2768,305974,3793898,306074,3793798,67,27,39.8891966759003,0.0777427246219133,11.3926798081567,0.488424167520749,10.3911503999935,0.0317784599644062,0.243767313019391,24.3767313019391,7,83.1565365969527,0.696787289143977,16.3434903047091,8.16077236695723,0,399.83118947347,399.609832763672,0.413481737196193
+2769,305974,3793798,306074,3793698,68,27,28.2548476454294,0.0917796054564255,14.6169113821874,0.68782554893666,17.8806678307211,0.012119205097411,0.038781163434903,3.8781163434903,5,46.9199429047739,0.531844380403458,1.38504155124654,7.14118477276393,0,400.361764907837,399.897216796875,0.430497085334476
+2770,305974,3793698,306074,3793598,69,27,9.14127423822715,0.0178160410591885,4.41889876163759,0.357407407407407,29.0952210605099,0.0172274831643424,0.0692520775623269,6.92520775623269,2,80.7882551669466,0.758258928571429,6.37119113573407,25.2090756225586,0,400.367198944092,400.090881347656,0.310943059799311
+2771,305974,3793598,306074,3793498,70,27,38.4210526315789,0.197056211715266,25.990910728585,0.777219991075413,20.7823006752878,0.0311080735147315,0.223684210526316,22.3684210526316,4,88.4404686810472,0.846447412728701,18.9473684210526,3.88444286234239,0,400.059906005859,399.99755859375,0.106395574595868
+2772,305974,3793498,306074,3793398,71,27,72.2991689750693,0.70454344188609,36.914378905043,0.830779054916986,NA,0.0550327639384427,0.631578947368421,63.1578947368421,4,96.2196789094162,0.738151260504202,57.0637119113573,1.33420951115458,0,400.111915588379,400.019897460938,0.147190955842542
+2773,305974,3793398,306074,3793298,72,27,26.8698060941828,0.0872806051889536,13.6087777027851,0.458948663853727,31.2454871402895,0.0438748470089467,0.351800554016621,35.1800554016621,3,94.6066860175146,0.792966292966293,33.2409972299169,10.6289155013918,0,400.528078715007,400.202880859375,0.353062179429015
+2774,305974,3793298,306074,3793198,73,27,9.41828254847645,0.0229449013641064,5.98654905792292,0.390641711229947,14.2878317921974,0.0381839378318334,0.285318559556787,28.5318559556787,3,89.9568481956035,0.795788812067882,21.8836565096953,13.3256269473474,0,400.71576499939,400.505676269531,0.25163976141503
+2775,305974,3793198,306074,3793098,74,27,25,0.028493668360655,6.5801712700844,0.408048433048433,14.3331066714774,0.0239142606139802,0.0236842105263158,2.36842105263158,1,70.2715195584201,0.914645103324349,2.36842105263158,3.70283656650119,0,400.57234954834,400.404876708984,0.207864449157084
+2776,305974,3793098,306074,3792998,75,27,20.2216066481994,0.0656854039050888,12.0402261536577,0.560858585858586,17.8806678490735,0.0163616436817654,0.0277008310249307,2.77008310249307,4,40.6969603094515,0.446197676966908,0.831024930747922,16.0171412467957,5.19557523727417,400.423767089844,400.272644042969,0.192166180240408
+2777,305974,3792998,306074,3792898,76,27,15.7894736842105,0.0512886030491789,9.22662474387255,0.521115627822945,19.0504423168553,0.0119405677281537,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,21.9210008893694,5.19557523727417,400.405604044596,400.272155761719,0.189383725536911
+2778,305974,3792898,306074,3792798,77,27,36.8421052631579,0.119673407114751,10.1554016683494,0.437554680664917,13.8548671861359,0.0338030681401037,0.227146814404432,22.7146814404432,3,88.3334491394169,0.750142133234458,15.2354570637119,9.07620654455045,0,400.617107391357,400.404998779297,0.200062555519823
+2779,305974,3792798,306074,3792698,78,27,12.8947368421053,0.016533825982959,5.25004647526905,0.269665404040404,18.2644637238497,0.0148174671758744,0.0263157894736842,2.63157894736842,3,54.327342861319,0.604989604989605,1.84210526315789,20.7930957794189,11.6176595687866,400.804779052734,400.645568847656,0.119988443462675
+2780,305974,3792698,306074,3792598,79,27,29.3628808864266,0.0572272834022418,9.40737079154072,0.32883275261324,16.4145794836451,0.0234519029044629,0.0803324099722992,8.03324099722992,3,74.2204045459728,0.745513970776724,3.8781163434903,8.31616492106997,0,400.901147842407,400.758514404297,0.159054852181828
+2781,305974,3792598,306074,3792498,80,27,38.5041551246537,0.0938041555767878,14.3204720033564,0.515938692550191,16.0082884834308,0.0260025235670948,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.960572302315422,9.41828254847645,6.99034249081331,0,400.99449412028,400.775268554688,0.276814755587926
+2782,305974,3792498,306074,3792398,81,27,57.0637119113573,0.18535881101984,16.387071435394,0.362693095105155,10.3911503722826,0.0171283013730783,0.0332409972299169,3.32409972299169,4,47.4171983018734,0.574077195348053,1.66204986149584,3.46371682484945,0,401.319862365723,401.030120849609,0.219731996951738
+2783,305974,3792398,306074,3792298,82,27,43.6842105263158,0.224050213320097,22.0784332573014,0.496701388888889,25.9778758441098,0.0194373949151333,0.0342105263157895,3.42105263157895,4,56.7046429576746,0.71238268240993,2.63157894736842,6.63656850961539,0,401.422843933105,401.360015869141,0.0883064087198181
+2784,305974,3792298,306074,3792198,83,27,32.409972299169,0.315829818776523,28.3323818733625,0.807692307692308,NA,0.0378124274526609,0.246537396121884,24.6537396121884,5,87.7973743702823,0.808014243433222,20.4986149584488,13.0323441055384,0,401.309860229492,401.207275390625,0.105058088915687
+2785,305974,3792198,306074,3792098,84,27,22.7146814404432,0.0737836043865381,10.3856929686854,0.596167200854701,14.6725397470507,0.0257909351926312,0.105263157894737,10.5263157894737,3,84.6436058700209,0.858076563958917,9.97229916897507,5.1430483993731,0,401.630235671997,401.231842041016,0.531121615627729
+2786,305974,3792098,306074,3791998,85,27,65.6509695290859,0.639757838034495,32.3137163171315,0.89732770745429,NA,0.0582578715871174,0.64819944598338,64.819944598338,1,98.6551730229158,0.869907565902088,64.819944598338,1.95300592112745,0,402.69849395752,401.844116210938,0.711764178198798
+2787,305974,3791998,306074,3791898,86,27,95.7894736842105,0.982581658415849,38.0485472320148,0.923534798534798,NA,0.0760608178367348,0.939473684210526,93.9473684210526,1,99.828534527005,0.731155132492925,93.9473684210526,0.230357938120011,0,403.15470123291,403.00439453125,0.137651037993304
+2788,305974,3791898,306074,3791798,87,27,32.1329639889197,0.15656520930802,15.3040237390045,0.816091954022989,25.9778759376342,0.0286506144601948,0.240997229916898,24.0997229916898,4,89.3677107384214,0.821497527666588,20.4986149584488,3.50385975015574,0,403.309308369954,403.181854248047,0.254071893704965
+2789,305974,3791798,306074,3791698,88,27,47.6454293628809,0.232148413801547,15.8944871742775,0.586805555555556,55.2297218651029,0.0469627805404321,0.529085872576177,52.9085872576177,1,97.9178236108022,0.940013293452974,52.9085872576177,1.2328603754493,0,404.200298309326,403.478393554688,0.721417752882048
+2790,305974,3791698,306074,3791598,89,27,54.5706371191136,0.265890915807586,18.5336950512343,0.553837342497136,44.0859174289005,0.0705011531396529,0.714681440443213,71.4681440443213,1,98.9839537105949,0.695230054875475,71.4681440443213,3.91886712229529,0,404.950373331706,404.671264648438,0.2384860231994
+2791,305974,3791598,306074,3791498,90,27,29.2105263157895,0.0998778059378748,11.6008454675034,0.506710671067107,21.8254428409413,0.0476986637608781,0.363157894736842,36.3157894736842,5,87.4544191753282,0.788141151777515,17.3684210526316,17.4466369981351,0,404.965274810791,404.905181884766,0.096904187475944
+2792,305974,3791498,306074,3791398,91,27,0,NA,NA,NA,NA,0.0207807178448196,0.0193905817174515,1.93905817174515,2,54.980748285685,0.745056497175141,1.66204986149584,39.3288912091936,33.2679138183594,404.962468465169,404.917236328125,0.0957330716187449
+2793,305974,3791398,306074,3791298,92,27,11.3573407202216,0.0553377032899036,11.5852177431812,0.624601275917065,23.2353185658643,0.0155799320843,0.0277008310249307,2.77008310249307,3,56.7673037307377,0.683541529695376,2.21606648199446,3.95152130126953,0,405.595067977905,405.050689697266,0.778129476968874
+2794,305974,3791298,306074,3791198,93,27,46.814404432133,0.152066209040548,12.477266677372,0.400548696844993,16.6354546863457,0.0355114800610997,0.174515235457064,17.4515235457064,10,68.7972973639314,0.581513117754728,6.09418282548476,5.57243593912276,0,406.893686930339,406.214447021484,0.865907335107802
+2795,305974,3791198,306074,3791098,94,27,38.4210526315789,0.197056211715266,19.9785532313492,0.679246794871795,10.3911503376439,0.0532888369741972,0.555263157894737,55.5263157894737,2,97.7592135993281,0.839391377852916,55,3.84279790534792,0,407.141044616699,405.884094238281,0.956186418935315
+2796,305974,3791098,306074,3790998,95,27,37.6731301939058,0.183559210912851,15.0141559417809,0.45771144278607,16.4298514359663,0.0657610538361757,0.695290858725762,69.5290858725762,1,98.892947967301,0.706731141199226,69.5290858725762,10.4880460609953,0,406.472630818685,405.708557128906,1.04596337165533
+2797,305974,3790998,306074,3790898,96,27,16.6204986149584,0.053988003209662,10.5707419932373,0.583333333333333,21.4145298226878,0.0539485822858062,0.429362880886427,42.9362880886427,4,96.1582129072207,0.772491909385113,42.1052631578947,11.8206965631054,0,405.939908981323,405.628814697266,0.567346930535224
+2798,305974,3790898,306074,3790798,97,27,34.6260387811634,0.337425020060388,31.5134209861224,0.746666666666667,NA,0.0401470251258855,0.282548476454294,28.2548476454294,5,85.5438139410505,0.809587104669072,11.9113573407202,4.42684180128808,0,406.037704467773,405.656005859375,0.493513563765098
+2799,305974,3790798,306074,3790698,98,27,4.21052631578947,0.0215952012838648,4.24596740453141,0.311111111111111,88.7820281813838,0.0335137289239547,0.307894736842105,30.7894736842105,3,92.3272395921326,0.843245569983499,26.0526315789474,28.102099341205,0,406.168617248535,405.819427490234,0.354400953980167
+2800,305974,3790698,306074,3790598,99,27,13.8504155124654,0.0449900026747184,10.2587776111649,0.448484848484848,22.51415909607,0.0729940565396917,0.777777777777778,77.7777777777778,2,98.3814430692297,0.864729458917835,75.7309941520468,17.6223204494419,0,405.918117523193,405.723907470703,0.215966683903208
+2801,306074,3800598,306174,3800498,0,28,67.0360110803324,0.217751612945637,17.8072228529805,0.75156948213943,13.8548671861359,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.84907023112,383.757110595703,0.0886696303878873
+2802,306074,3800498,306174,3800398,1,28,1.31578947368421,0.00674850040120775,3.03075221212164,0.194444444444444,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.960964626736,383.933227539062,0.0539219376822769
+2803,306074,3800398,306174,3800298,2,28,19.6675900277008,0.0958287056971501,16.6023364294502,0.683260869565217,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.994684855143,383.940490722656,0.109308950512157
+2804,306074,3800298,306174,3800198,3,28,2.77008310249307,0.026994001604831,12.5452724963722,0.316666666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.052154541016,383.946319580078,0.196370184346883
+2805,306074,3800198,306174,3800098,4,28,1.66204986149584,0.0161964009628986,7.79336275323294,0.277777777777778,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.30492401123,384.0732421875,0.283185517696136
+2806,306074,3800098,306174,3799998,5,28,18.1578947368421,0.186258611073334,24.3284352616137,0.751207729468599,NA,-0.0221474445130106,0,0,0,NA,NA,0,NA,NA,384.605363633898,384.50439453125,0.164591851100345
+2807,306074,3799998,306174,3799898,6,28,35.7340720221607,0.116074206900773,8.46267689427787,0.34700176366843,13.1717378724924,0.0227172629898214,0.141274238227147,14.1274238227147,3,82.9534785069219,0.799221357063404,9.97229916897507,5.30443289700676,0,384.614362080892,384.580413818359,0.0710488325488546
+2808,306074,3799898,306174,3799798,7,28,16.6204986149584,0.0809820048144931,13.0062630582783,0.699935815147625,46.7601765193976,0.0285832457084527,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,11.6176595687866,11.6176595687866,384.677361382378,384.603271484375,0.131784661392113
+2809,306074,3799798,306174,3799698,8,28,63.1578947368421,0.615463236590147,33.0595697792599,0.876461988304094,NA,0.0158300962313378,0,0,0,NA,NA,0,NA,NA,385.079928080241,384.836120605469,0.29272172142904
+2810,306074,3799698,306174,3799598,9,28,83.4210526315789,0.855709850873143,37.3475506622831,0.893796004206099,NA,0.0313230339916022,0.186842105263158,18.6842105263158,3,88.180453825785,0.793398058252427,13.9473684210526,2.11430070769619,0,385.598300509983,385.421539306641,0.284552996962797
+2811,306074,3799598,306174,3799498,10,28,31.8559556786704,0.310431018455557,24.9805097667892,0.814492753623188,NA,0.0278087567384321,0.207756232686981,20.7756232686981,8,76.2433357830924,0.703565374019919,10.5263157894737,19.8948064549764,0,385.919901529948,385.732818603516,0.186568519599167
+2812,306074,3799498,306174,3799398,11,28,27.7008310249307,0.0674850040120775,10.8736388983288,0.442314814814815,23.3800882596988,0.0246601362725885,0.243767313019391,24.3767313019391,5,83.422365038405,0.781013042159539,15.5124653739612,4.73701698671688,0,386.304171244303,386.107116699219,0.264069387005566
+2813,306074,3799398,306174,3799298,12,28,79.7783933518006,0.388713623109567,20.0653567835147,0.697508896797153,25.9778760103754,0.0187815408449081,0.038781163434903,3.8781163434903,4,60.1315905366243,0.687896253602305,3.04709141274238,3.3400126525334,0,386.679100884332,386.5224609375,0.188458618911799
+2814,306074,3799298,306174,3799198,13,28,95.7894736842105,0.982581658415849,37.8345578499376,0.927655677655678,NA,0.0100970297324621,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.745308310991957,1.84210526315789,7.47012022563389,0,386.837354024251,386.785339355469,0.0821353991668931
+2815,306074,3799198,306174,3799098,14,28,50.6925207756233,0.493990229368408,30.2038822502617,0.887067395264117,NA,-0.00652493216177889,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,14.2637033462524,11.6176595687866,386.953738742405,386.900146484375,0.113988844493156
+2816,306074,3799098,306174,3798998,15,28,0,NA,NA,NA,NA,0.00393439070348224,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,42.025465965271,34.8529777526855,387.068481445312,386.99462890625,0.148280793273866
+2817,306074,3798998,306174,3798898,16,28,14.404432132964,0.0701844041725607,10.8226577042039,0.71541394335512,72.3659889050807,0.00311612816623484,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,12.9889380137126,0,387.161295572917,387.0302734375,0.231876621438714
+2818,306074,3798898,306174,3798798,17,28,66.3157894736842,0.340124420220871,21.5540115971502,0.63957475994513,11.6176593526411,0.00363217892055744,0.0605263157894737,6.05263157894737,3,73.5731581549036,0.733893557422969,4.73684210526316,1.90072519882866,0,387.477887471517,387.200622558594,0.287233363413666
+2819,306074,3798798,306174,3798698,18,28,39.8891966759003,0.388713623109567,37.1056222655805,0.774305555555555,NA,-0.00340159965899626,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,3.71112516948155,0,387.824232313368,387.669799804688,0.204662961272762
+2820,306074,3798698,306174,3798598,19,28,39.612188365651,0.193007111474542,18.1936971800285,0.721560846560847,32.8597028719326,0.0133078897251281,0.0803324099722992,8.03324099722992,4,72.2578777252131,0.676108690079467,4.15512465373961,4.76697591255451,0,388.162157694499,387.927429199219,0.295207288773096
+2821,306074,3798598,306174,3798498,20,28,39.0581717451524,0.380615422628117,29.2431968261979,0.810874704491726,NA,0.0327775937305854,0.365650969529086,36.5650969529086,1,96.3681237134493,0.941129572922141,36.5650969529086,10.8509589325298,0,388.511912027995,388.244598388672,0.357741449374611
+2822,306074,3798498,306174,3798398,21,28,48.6842105263158,0.499389029689374,32.2818501936875,0.867567567567567,NA,0.0484267437021596,0.415789473684211,41.5789473684211,3,91.9023871581963,0.85834109972041,25,12.2207495019406,0,389.030522664388,388.685791015625,0.383201654279635
+2823,306074,3798398,306174,3798298,22,28,45.7063711911357,0.222700513239856,21.2541092945995,0.636792452830189,41.5646017662396,0.0174919009124371,0.191135734072022,19.1135734072022,4,82.1752064775278,0.744565832672931,8.03324099722992,1.49304469426473,0,389.787465413411,389.432098388672,0.600180959301687
+2824,306074,3798298,306174,3798198,23,28,34.0720221606648,0.332026219739422,24.8815415627811,0.85230352303523,NA,0.0155916926897662,0.0554016620498615,5.54016620498615,2,77.7710689425904,0.897549900671649,5.26315789473684,0.580882978439331,0,390.249272664388,389.934600830078,0.474264374162559
+2825,306074,3798198,306174,3798098,24,28,0,NA,NA,NA,NA,0.00640629428843192,0,0,0,NA,NA,0,NA,NA,390.172193739149,389.994873046875,0.343339283806663
+2826,306074,3798098,306174,3797998,25,28,4.73684210526316,0.0242946014443479,7.24725726739254,0.383333333333333,41.5646017662397,-1.76306273906927e-05,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,2.59778761863708,0,390.163327534993,390.015014648438,0.276865918659231
+2827,306074,3797998,306174,3797898,26,28,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0708764893250296,0.473684210526316,47.3684210526316,2,94.1502640814954,0.897460317460317,26.5927977839335,0,0,390.313242594401,390.116668701172,0.291733549052534
+2828,306074,3797898,306174,3797798,27,28,40.7202216066482,0.198405911795508,19.0461755890763,0.723600508905852,25.9778758441098,0.0162623620169327,0.14404432132964,14.404432132964,3,82.9376936380227,0.72433729682557,8.86426592797784,5.04462152261,0,390.740037706163,390.500396728516,0.361669302576747
+2829,306074,3797798,306174,3797698,28,28,2.21606648199446,0.0215952012838648,6.03059484748078,0.5,NA,0.00433013596814406,0,0,0,NA,NA,0,NA,NA,391.362111409505,390.815490722656,1.79841349348056
+2830,306074,3797698,306174,3797598,29,28,32.8947368421053,0.168712510030194,20.186870141177,0.612946998722861,44.6940278475361,0.0506805467168114,0.592105263157895,59.2105263157895,1,98.3801273817881,0.731490015360983,59.2105263157895,11.3508155526055,0,397.025448269314,394.328094482422,3.31727651133562
+2831,306074,3797598,306174,3797498,30,28,34.3490304709141,0.334725619899905,27.9890431733969,0.856182795698925,NA,0.0591708291218799,0.753462603878116,75.3462603878116,2,98.9717377710016,0.690428549440401,75.0692520775623,15.951567236115,0,391.823613484701,388.5,4.7281851725394
+2832,306074,3797498,306174,3797398,31,28,58.1717451523546,0.566874033701451,33.1210284892689,0.855555555555556,NA,0.0252384481934019,0.174515235457064,17.4515235457064,3,84.532834484977,0.779743746186699,10.803324099723,11.3032012666975,0,394.243191189236,388.5,5.45537487656387
+2833,306074,3797398,306174,3797298,32,28,72.8531855955679,0.354971121103528,24.726492567448,0.811757105943152,14.6953058096335,0.0191716980745766,0.293628808864266,29.3628808864266,2,92.0801036954504,0.785052869315266,23.8227146814404,4.37668583078204,0,398.555483500163,396.974517822266,2.51351893555065
+2834,306074,3797298,306174,3797198,33,28,89.7368421052632,0.920495454724738,36.964355392985,0.903714565004888,NA,0.0135928832461727,0.442105263157895,44.2105263157895,2,96.9097509168511,0.884357881923311,43.9473684210526,1.3501337539582,0,400.188245985243,398.890899658203,2.20587536627526
+2835,306074,3797198,306174,3797098,34,28,46.814404432133,0.114049656780411,17.9749116005008,0.665188587737607,22.0811944674933,0.0426978387339737,0.382271468144044,38.2271468144044,6,89.2495667755516,0.775161933233682,28.5318559556787,2.09357958600141,0,398.618095397949,398.529388427734,0.355275975713812
+2836,306074,3797098,306174,3796998,35,28,3.8781163434903,0.0377916022467634,15.1470438824667,0.416666666666667,NA,0.0239111912690071,0.102493074792244,10.2493074792244,4,73.9729560905842,0.726017000607164,5.54016620498615,28.3756666312347,0,398.600399441189,398.56103515625,0.0745079788417507
+2837,306074,3796998,306174,3796898,36,28,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.016237247322699,0.0554016620498615,5.54016620498615,4,62.7921224622655,0.658499668905496,2.77008310249307,38.2986935138702,11.6176595687866,398.745028177897,398.624176025391,0.175230776415593
+2838,306074,3796898,306174,3796798,37,28,0,NA,NA,NA,NA,0.0168599321122249,0.0578947368421053,5.78947368421053,6,53.6685996655072,0.500492934604009,2.10526315789474,57.5069163062356,20.7823009490967,398.8314581977,398.701599121094,0.187121088825241
+2839,306074,3796798,306174,3796698,38,28,4.43213296398892,0.0143968008559099,4.08776878271884,0.282828282828283,25.4725266080544,0.046950008782247,0.382271468144044,38.2271468144044,4,88.3016370025026,0.794433767527938,13.5734072022161,30.62393066503,0,397.484797159831,395.419586181641,1.61958003277827
+2840,306074,3796698,306174,3796598,39,28,40.1662049861496,0.130471007756683,17.7129369909658,0.718220572057206,27.7097342960667,0.0407993135708329,0.337950138504155,33.7950138504155,5,86.6194594977849,0.78812548514739,12.7423822714681,6.59696785348361,0,394.991808573405,394.519897460938,1.0823367539455
+2841,306074,3796598,306174,3796498,40,28,40.9972299168975,0.19975561187575,18.1964582351401,0.524521072796935,37.4658256128201,0.0441139005035484,0.351800554016621,35.180055401662,4,87.4176901960485,0.772930772930773,14.6814404432133,7.36593453715167,0,394.844207763672,394.514343261719,0.714207414000312
+2842,306074,3796498,306174,3796398,41,28,23.8227146814404,0.0773828046005156,12.5287097508065,0.487200435729847,27.8530672813561,0.0226442972859213,0.146814404432133,14.6814404432133,3,81.0995513671668,0.845440274011703,7.4792243767313,20.9337915114637,0,395.172050476074,394.863677978516,0.618858195564059
+2843,306074,3796398,306174,3796298,42,28,29.2105263157895,0.149816708906812,15.8198796749381,0.544496855345912,41.8880662648159,0.029127205534635,0.157894736842105,15.7894736842105,3,82.5795177411224,0.783052884615385,10,25.2543895641963,0,394.730689154731,394.162231445312,0.766341326910086
+2844,306074,3796298,306174,3796198,43,28,54.2936288088643,0.264541215727344,20.2509844781235,0.699208350847695,37.4658254687145,0.0340498985386203,0.21606648199446,21.606648199446,5,81.9531817359409,0.685717212065345,10.5263157894737,5.27804133219597,0,393.947873433431,393.665649414062,0.398454528741161
+2845,306074,3796198,306174,3796098,44,28,16.6204986149584,0.0809820048144931,15.1170120490124,0.507309941520468,62.3469020258635,0.0359783227393972,0.182825484764543,18.2825484764543,3,88.3399416308406,0.904229918938836,16.6204986149584,22.0755532438105,0,393.577450222439,393.494873046875,0.115267646968262
+2846,306074,3796098,306174,3795998,45,28,10.2493074792244,0.0998778059378748,21.4757381612774,0.657657657657658,NA,0.0341334219212861,0.296398891966759,29.6398891966759,1,95.3511148378513,0.92635959365183,29.6398891966759,24.7046974618858,5.19557523727417,393.441337585449,393.387573242188,0.0819466396603769
+2847,306074,3795998,306174,3795898,46,28,12.1052631578947,0.124172407382223,16.6520129562055,0.721014492753623,NA,0.0408158575061431,0.276315789473684,27.6315789473684,3,88.7484615621003,0.853775853775854,19.2105263157895,19.8953619184948,0,393.438534206814,393.396545410156,0.0742665304739679
+2848,306074,3795898,306174,3795798,47,28,26.8698060941828,0.0872806051889536,12.2511234163922,0.572083648274125,19.5355529569589,0.0429649164234585,0.282548476454294,28.2548476454294,2,91.2122916971117,0.89336877861468,22.4376731301939,16.3178203900655,0,393.677391052246,393.502990722656,0.236552097371906
+2849,306074,3795798,306174,3795698,48,28,35.1800554016621,0.342823820381354,22.9825145201761,0.87007874015748,NA,0.033136815147821,0.210526315789474,21.0526315789474,5,84.1046319739615,0.829850746268657,17.1745152354571,15.0270459463722,0,394.083909776476,393.869049072266,0.315255203219942
+2850,306074,3795698,306174,3795598,49,28,26.3157894736842,0.256443015245895,23.7809267262325,0.798245614035088,NA,0.00690515844932666,0.0304709141274238,3.04709141274238,2,67.8826803593044,0.656190476190476,2.77008310249307,26.2447509332137,5.19557523727417,394.416386922201,394.174011230469,0.310635034126904
+2851,306074,3795598,306174,3795498,50,28,11.8421052631579,0.0607365036108698,14.9484103902139,0.502005347593583,56.1987384192302,0.0168860836832832,0.0526315789473684,5.26315789473684,5,53.8777536471947,0.523297491039426,1.57894736842105,13.2809161186218,0,394.840572781033,394.613464355469,0.315823143766968
+2852,306074,3795498,306174,3795398,51,28,5.54016620498615,0.053988003209662,11.411211896343,0.616666666666667,NA,0.0222961942220377,0.168975069252078,16.8975069252078,2,90.0930836264073,0.93188679245283,16.3434903047091,29.4204655240794,7.34765291213989,395.25385538737,395.021392822266,0.340999559334051
+2853,306074,3795398,306174,3795298,52,28,0,NA,NA,NA,NA,0.0107514335347567,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,98.0557454427083,93.6645584106445,395.977128770616,395.611328125,0.616088758905538
+2854,306074,3795298,306174,3795198,53,28,16.8975069252078,0.164663409789469,16.6381001676524,0.806010928961749,NA,0.0105187400965564,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,0,0,397.087692260742,396.594940185547,0.489561117380604
+2855,306074,3795198,306174,3795098,54,28,39.7368421052632,0.203804712116474,18.5836504262992,0.794555699109963,11.6176592829322,0.0204170358130221,0.15,15,4,80.2677653824206,0.711884753901561,5.78947368421053,1.77549291911878,0,397.032320658366,396.795440673828,0.299937781434525
+2856,306074,3795098,306174,3794998,55,28,16.6204986149584,0.0404910024072465,8.70040163366086,0.391493055555556,11.0044048971005,0.0640630908772769,0.451523545706371,45.1523545706371,3,92.7697791322348,0.82983164983165,33.5180055401662,21.7407976630275,0,396.719767252604,396.668090820312,0.066593300991044
+2857,306074,3794998,306174,3794898,56,28,3.8781163434903,0.0377916022467634,7.55648708341907,0.630952380952381,NA,0.0178993750803814,0.0498614958448753,4.98614958448753,2,74.9233646818843,0.805096641831336,4.43213296398892,26.0503945880466,0,396.661984761556,396.586791992188,0.0968078176610826
+2858,306074,3794898,306174,3794798,57,28,21.606648199446,0.105276606258841,17.1014481973031,0.695723684210526,16.4298513045218,0.053794143629232,0.43213296398892,43.213296398892,3,92.2578057888859,0.815925894450582,24.0997229916898,11.9274588211989,0,396.557539198134,396.466705322266,0.129044059374632
+2859,306074,3794798,306174,3794698,58,28,55,0.188058211180323,14.3072294871103,0.473652365236524,14.6953058096335,0.0262935612760741,0.173684210526316,17.3684210526316,3,85.6308332092534,0.831625588479646,11.0526315789474,2.19575418125499,0,396.553141276042,396.473541259766,0.12397465060876
+2860,306074,3794698,306174,3794598,59,28,26.5927977839335,0.0518284830812756,9.08856653615042,0.498303303303303,17.4866716761946,0.0199842156394386,0.10803324099723,10.803324099723,4,75.7685541091933,0.637792642140468,4.98614958448754,6.66303741014921,0,396.662760416667,396.492889404297,0.316373113254034
+2861,306074,3794598,306174,3794498,60,28,11.9113573407202,0.0580371034503867,12.0766826870374,0.561986863711002,14.6953058096335,0.0206232376136576,0.127423822714681,12.7423822714681,3,80.7444015290268,0.764916564916565,8.31024930747922,26.406291173852,0,397.234141031901,396.768218994141,0.521641833827307
+2862,306074,3794498,306174,3794398,61,28,19.9445983379501,0.0647856038515944,7.85362416785593,0.472885352195697,21.2713526702061,0.0103757937827594,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,12.3570981892672,5.19557523727417,397.835357666016,397.570220947266,0.365371418656101
+2863,306074,3794398,306174,3794298,62,28,39.7368421052632,0.203804712116474,22.6009633806962,0.773989898989899,15.5867256623399,0.0239923155303634,0.0868421052631579,8.68421052631579,4,69.8186583453725,0.675525669761981,3.94736842105263,6.08370153831713,0,398.289362589518,397.879699707031,0.459429115715238
+2864,306074,3794298,306174,3794198,63,28,67.590027700831,0.658653639157877,32.2060258339179,0.887295081967213,NA,0.0366050942473299,0.152354570637119,15.2354570637119,7,74.9873703933148,0.639869281045752,7.4792243767313,1.07824373245239,0,399.532975938585,398.906585693359,0.755325902002524
+2865,306074,3794198,306174,3794098,64,28,27.9778393351801,0.0908798054029311,8.46842073055619,0.334467120181406,12.1230088484866,0.0356787225551429,0.163434903047091,16.3434903047091,7,73.4354974077279,0.671860797299052,6.92520775623269,11.4184320336681,0,399.532043457031,399.376770019531,0.240033997980689
+2866,306074,3794098,306174,3793998,65,28,0,NA,NA,NA,NA,0.0128974005921737,0,0,0,NA,NA,0,NA,NA,399.36082288954,399.339996337891,0.0568823591823089
+2867,306074,3793998,306174,3793898,66,28,30,0.0769329045737684,11.3851004120566,0.489851401553529,18.1845130908769,0.0307016189907843,0.194736842105263,19.4736842105263,3,88.1589605988557,0.770739064856712,14.2105263157895,4.54818351848705,0,399.411211649577,399.344116210938,0.0966865795596899
+2868,306074,3793898,306174,3793798,67,28,26.5927977839335,0.0647856038515944,10.9997131906969,0.438288288288288,16.8856193376399,0.0325852342651656,0.207756232686981,20.7756232686981,4,82.3020157104205,0.722690188599279,9.41828254847645,11.5706020037333,0,399.661461724175,399.494903564453,0.294783876110549
+2869,306074,3793798,306174,3793698,68,28,39.8891966759003,0.194356811554783,19.345564614166,0.498817966903073,26.4923391803511,0.0307503847090171,0.168975069252078,16.8975069252078,4,85.82113015165,0.738899371069182,13.5734072022161,6.84037445412307,0,400.459040323893,399.892822265625,0.473350726201579
+2870,306074,3793698,306174,3793598,69,28,40.7202216066482,0.066135303931836,9.62220852005458,0.456718798630563,15.2451608842828,0.0187002424778493,0.121883656509695,12.1883656509695,2,85.8832216045666,0.676826668940234,9.97229916897507,2.93177184191617,0,400.687189737956,400.338012695312,0.275634200308256
+2871,306074,3793598,306174,3793498,70,28,46.0526315789474,0.157465009361514,22.3364668924568,0.694090909090909,19.4160420480008,0.0381404237054276,0.323684210526316,32.3684210526316,5,85.2205582773538,0.714888939296121,10.5263157894737,2.65690291024805,0,400.375,400.129211425781,0.348225226041185
+2872,306074,3793498,306174,3793398,71,28,41.5512465373961,0.101227506018116,12.0051499815718,0.3734440267335,20.7823008051828,0.0334340419119303,0.174515235457064,17.4515235457064,6,80.4322549735066,0.691641244661379,8.31024930747922,1.95574454655723,0,400.171277364095,400.079498291016,0.191365924226241
+2873,306074,3793398,306174,3793298,72,28,89.196675900277,0.869206851675559,36.6986317931665,0.901656314699793,NA,0.0509824675147956,0.512465373961219,51.2465373961219,4,94.1315879117437,0.76010101010101,39.8891966759003,0.634858603090853,0,400.269015842014,400.146026611328,0.15733206351872
+2874,306074,3793298,306174,3793198,73,28,47.0914127423823,0.152966009094042,14.3731152953272,0.777563277563278,11.8258688283071,0.0498812387805954,0.434903047091413,43.4903047091413,4,91.882515152362,0.827954793028323,31.0249307479224,3.48641131637962,0,400.376879374186,400.334045410156,0.114311363335383
+2875,306074,3793198,306174,3793098,74,28,23.4210526315789,0.0480493228565992,11.8745808363173,0.500143518518519,13.1519275602041,0.028590636151325,0.068421052631579,6.8421052631579,6,59.4777967551431,0.607275733774287,2.63157894736842,3.69259693072392,0,400.321529812283,400.244964599609,0.127569354520933
+2876,306074,3793098,306174,3792998,75,28,8.86426592797784,0.0431904025677296,11.3117125629567,0.449233716475096,20.7823008831198,0.016474616242497,0.0221606648199446,2.21606648199446,3,41.5253742324109,0.590934844192635,1.10803324099723,18.0263137221336,5.19557523727417,400.231895446777,400.163482666016,0.0999394832772047
+2877,306074,3792998,306174,3792898,76,28,19.3905817174515,0.188958011233817,22.5109820090926,0.778571428571429,NA,0.019179880312834,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,57.1513290405273,57.1513290405273,400.236365424262,400.188720703125,0.0951936707474952
+2878,306074,3792898,306174,3792798,77,28,34.9030470914127,0.170062210110435,17.9698624765233,0.775085034013606,31.1734513246797,0.0265177515020494,0.238227146814404,23.8227146814404,1,94.1732072729704,0.828401663695781,23.8227146814404,6.92604292270749,0,400.405741373698,400.287231445312,0.152773303447587
+2879,306074,3792798,306174,3792698,78,28,30.5263157894737,0.104376806205347,14.3512301111479,0.541366041366041,12.1230087792092,0.010433247126366,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,13.5892214775085,5.19557523727417,400.626224093967,400.468200683594,0.204480301740811
+2880,306074,3792698,306174,3792598,79,28,36.8421052631579,0.0598367035573754,11.5304030105251,0.541463498070941,15.7911437159719,0.0186578858997992,0.0526315789473684,5.26315789473684,3,64.043222049202,0.708812260536398,2.21606648199446,10.1688106185512,5.19557523727417,401.028467814128,400.752258300781,0.278798901751494
+2881,306074,3792598,306174,3792498,80,28,76.7313019390582,0.747733844453819,35.5767053364615,0.857400722021661,NA,0.0236542038995208,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,401.361616346571,401.277160644531,0.146322758651206
+2882,306074,3792498,306174,3792398,81,28,32.6869806094183,0.106176406312335,16.7193936418451,0.43456246944619,19.0504422856805,0.022082284852505,0.0664819944598338,6.64819944598338,4,64.5753131217366,0.63353115727003,2.49307479224377,6.80917863051097,0,401.450213114421,401.364715576172,0.0626774423502727
+2883,306074,3792398,306174,3792298,82,28,46.8421052631579,0.480493228565992,33.8494668295947,0.725655430711611,NA,0.0228298064934997,0.0526315789473684,5.26315789473684,6,56.0897098255207,0.591397849462366,3.15789473684211,9.48424792289734,0,401.409461127387,401.335174560547,0.124318977648487
+2884,306074,3792298,306174,3792198,83,28,9.41828254847645,0.0458898027282127,9.04603306259806,0.421875,95.3780823253938,0.0400308938665942,0.310249307479224,31.0249307479224,2,91.7716712622505,0.770328840112927,20.7756232686981,26.1890511385032,0,401.20085144043,401.151153564453,0.0806086816416574
+2885,306074,3792198,306174,3792098,84,28,40.7202216066482,0.066135303931836,12.0036269892484,0.492544817544818,16.7336967118918,0.0317307786794007,0.146814404432133,14.6814404432133,6,72.1379000645634,0.678000570857714,5.26315789473684,1.90949238471265,0,401.340207417806,401.1787109375,0.298672818690926
+2886,306074,3792098,306174,3791998,85,28,87.8116343490305,0.855709850873143,35.4248911346261,0.920609884332282,NA,0.067096936463577,0.800554016620499,80.0554016620499,1,99.3464052287582,0.926266339869281,80.0554016620499,0.329003296096432,0,402.360192192925,401.917053222656,0.696388470254491
+2887,306074,3791998,306174,3791898,86,28,94.2105263157895,0.96638525745295,37.7919033507969,0.920391061452514,NA,0.0728841004358592,0.852631578947368,85.2631578947368,1,99.5513193744284,0.667366946778711,85.2631578947368,0.285891772788248,0,402.969027201335,402.818969726562,0.189232088536385
+2888,306074,3791898,306174,3791798,87,28,50.9695290858726,0.248344814764445,19.6015249971795,0.814726966055239,22.0429587144503,0.0343462200939347,0.335180055401662,33.5180055401662,3,92.1496791485803,0.781212121212121,22.1606648199446,2.28405582806296,0,403.201202392578,403.120666503906,0.172040988051831
+2889,306074,3791798,306174,3791698,88,28,56.2326869806094,0.182659410859357,13.9388359519997,0.570390070921986,29.4415928069094,0.0265732915178781,0.274238227146814,27.4238227146814,5,85.0069402752938,0.752294364868342,16.0664819944598,1.70754055543379,0,403.867182413737,403.333160400391,0.736259435572483
+2890,306074,3791698,306174,3791598,89,28,95.5678670360111,0.93129305536667,37.6828706624017,0.917391304347826,NA,0.0597633706338683,0.759002770083102,75.9002770083102,4,95.2628879351148,0.669014714432667,59.8337950138504,0.307992195560984,0,405.208743625217,404.992126464844,0.513698879966621
+2891,306074,3791598,306174,3791498,90,28,76.5789473684211,0.785525446700583,36.3762132159075,0.911798396334479,NA,0.0480786792869989,0.484210526315789,48.421052631579,5,91.9937719473717,0.777611044417767,27.3684210526316,1.61709437681281,0,405.166374206543,404.997589111328,0.237479171335524
+2892,306074,3791498,306174,3791398,91,28,49.584487534626,0.483192628726475,29.9090118515485,0.804469273743017,NA,0.0318103491079057,0.243767313019391,24.3767313019391,2,92.285475923948,0.856816219873545,22.7146814404432,1.13951736146753,0,405.098219129774,404.978637695312,0.229560690386167
+2893,306074,3791398,306174,3791298,92,28,0,NA,NA,NA,NA,0.014698242181278,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.897733711048159,2.21606648199446,55.4806537628174,49.0149574279785,405.185185750326,405.058380126953,0.239406287820468
+2894,306074,3791298,306174,3791198,93,28,27.7008310249307,0.0674850040120775,11.8316010804441,0.560203157349896,14.8381323987472,0.0265874022834723,0.0941828254847645,9.41828254847645,5,73.2584048118911,0.74371996505024,5.81717451523546,4.60504659484415,0,405.544026692708,405.234710693359,0.594073224722576
+2895,306074,3791198,306174,3791098,94,28,11.5789473684211,0.0395912023537522,8.86570177629884,0.514687100893997,14.6725398628007,0.0447833139983949,0.381578947368421,38.1578947368421,2,96.1202537310159,0.835246888799679,37.6315789473684,17.5102337278169,0,405.71878306071,405.413696289062,0.488137310494856
+2896,306074,3791098,306174,3790998,95,28,6.64819944598338,0.0647856038515944,13.1982860857478,0.645833333333333,NA,0.0286647180564967,0.25207756232687,25.207756232687,2,89.9101977140426,0.777160493827161,13.2963988919668,22.5988176471584,0,405.52542453342,405.393341064453,0.189294011901247
+2897,306074,3790998,306174,3790898,96,28,3.8781163434903,0.0377916022467634,7.80918406405237,0.630952380952381,NA,0.0386795802088648,0.293628808864266,29.3628808864266,3,88.5536363086396,0.8072887793861,13.2963988919668,51.5147523924989,0,405.492635091146,405.385925292969,0.164463686291773
+2898,306074,3790898,306174,3790798,97,28,8.86426592797784,0.0863808051354593,17.0587244154074,0.588541666666667,NA,0.0336183952041863,0.193905817174515,19.3905817174515,5,83.2009955015244,0.697426871175928,13.0193905817175,53.674957881655,0,405.55603366428,405.435974121094,0.236605970550303
+2899,306074,3790798,306174,3790698,98,28,43.421052631579,0.445401026479712,35.0402164141911,0.775757575757576,NA,0.0379980781690775,0.378947368421053,37.8947368421053,3,95.1452397700407,0.859720082177709,36.578947368421,2.17614173558023,0,405.829271952311,405.751892089844,0.151549110684928
+2900,306074,3790698,306174,3790598,99,28,49.584487534626,0.483192628726475,35.209260633438,0.782122905027933,NA,0.0867740100097151,0.777777777777778,77.7777777777778,2,98.4311824867041,0.756513026052104,75.1461988304094,3.88908053520031,0,405.882550557454,405.853515625,0.098382799999276
+2901,306174,3800598,306274,3800498,0,29,43.9473684210526,0.11269995670013,13.8762722596046,0.602839052287582,14.2878318051837,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.823463439941,383.741455078125,0.0736263904094821
+2902,306174,3800498,306274,3800398,1,29,1,0.0107976006419286,5.19557522077812,0.25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.91465250651,383.883544921875,0.0401310718721521
+2903,306174,3800398,306274,3800298,2,29,1.57894736842105,0.0161964009628929,6.66218693808074,0.333333333333333,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.93706703186,383.910980224609,0.036124630557122
+2904,306174,3800298,306274,3800198,3,29,7.36842105263158,0.0755832044935001,23.4110886329096,0.517857142857143,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.962445576986,383.914276123047,0.0882193865394053
+2905,306174,3800198,306274,3800098,4,29,39.2105263157895,0.20110531195592,19.8622054930176,0.698691716269841,44.3910140906781,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.204326629639,384.030548095703,0.211080790906509
+2906,306174,3800098,306274,3799998,5,29,15.25,0.164663409789411,16.3380135093883,0.800546448087432,NA,-0.0207898600659973,0,0,0,NA,NA,0,NA,NA,384.545852661133,384.452239990234,0.152009442086326
+2907,306174,3799998,306274,3799898,6,29,22.1052631578947,0.11337480674025,19.7286537153387,0.696428571428571,44.3910137562227,0.0106120044525979,0.0815789473684211,8.15789473684211,1,86.4755730963744,0.956446991404011,8.15789473684211,29.5843912555325,20.7823009490967,384.645784378052,384.580139160156,0.104833744074889
+2908,306174,3799898,306274,3799798,7,29,30.2631578947368,0.155215509227723,15.343744464769,0.589339339339339,64.2657156584714,0.0165097638799221,0.0131578947368421,1.31578947368421,2,42.162911735052,0.797333333333333,1.05263157894737,31.5180618286133,27.9790287017822,384.719179789225,384.613525390625,0.150426807976266
+2909,306174,3799798,306274,3799698,8,29,29.7368421052632,0.305032218134483,32.8220538962534,0.793510324483776,NA,0.0190968496216412,0,0,0,NA,NA,0,NA,NA,385.083717346191,384.820892333984,0.275571568528622
+2910,306174,3799698,306274,3799598,9,29,50.25,0.271289716128456,19.1095395960264,0.586156111929308,25.9778761038906,0.029084682154953,0.15,15,2,86.0833586132085,0.886877828054299,8,3.85712607701619,0,385.479438781738,385.372406005859,0.201994243007953
+2911,306174,3799598,306274,3799498,10,29,62.6315789473684,0.642457238194751,32.5693181286194,0.892857142857143,NA,0.0472819281743604,0.521052631578947,52.1052631578947,2,96.5561801801875,0.857771656136779,47.8947368421053,2.34021801177901,0,385.847829818726,385.642761230469,0.273947607824828
+2912,306174,3799498,306274,3799398,11,29,37.8947368421053,0.388713623109429,32.4608628717844,0.800925925925926,NA,0.0246300493588359,0.210526315789474,21.0526315789474,2,91.9194056904423,0.821596244131455,19.7368421052632,4.5479782640934,0,386.405801773071,386.1171875,0.33756492017569
+2913,306174,3799398,306274,3799298,12,29,47.6315789473684,0.162863809682423,14.2403774761785,0.467876868096166,17.3185839653481,0.0184767735114412,0.147368421052632,14.7368421052632,3,84.8977744690386,0.818633066055746,11.8421052631579,3.45074198927198,0,386.800430297852,386.553161621094,0.240176092141625
+2914,306174,3799298,306274,3799198,13,29,66,0.712641642367287,32.9988548857979,0.912247474747475,NA,0.0514436876773107,0.505,50.5,5,92.6530883939057,0.843771043771044,39,2.69101957283398,0,386.977142333984,386.846099853516,0.121697679929851
+2915,306174,3799198,306274,3799098,14,29,37.8947368421053,0.388713623109429,25.0585284259635,0.878472222222222,NA,0.0386059925968048,0.321052631578947,32.1052631578947,5,92.112571121609,0.746746641411484,27.6315789473684,9.15712986226942,0,387.146479288737,387.008911132812,0.19407419349395
+2916,306174,3799098,306274,3798998,15,29,0,NA,NA,NA,NA,0.00933825847990336,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,51.3533981868199,30.2951488494873,387.478788375854,387.183471679688,0.315106849232778
+2917,306174,3798998,306274,3798898,16,29,5.78947368421053,0.0593868035306072,14.9411058082007,0.560606060606061,NA,0.0176250817035524,0.126315789473684,12.6315789473684,2,86.1152763776012,0.804584190420217,10.7894736842105,15.8494006991386,0,387.741038004557,387.376708984375,0.34685977307824
+2918,306174,3798898,306274,3798798,17,29,15.25,0.0823317048947055,12.4894735400108,0.593154761904762,59.2386718188407,0.0254590216194993,0.2,20,3,84.7440847871757,0.727112676056338,9.25,17.659627789259,0,387.808025360107,387.576904296875,0.198116213826877
+2919,306174,3798798,306274,3798698,18,29,7.89473684210526,0.0404910024072322,9.70477831820488,0.533333333333333,31.1734510129318,0.0277897893525063,0.257894736842105,25.7894736842105,3,88.6310878559313,0.785622179239201,15.7894736842105,35.4923054539427,5.19557523727417,387.734738667806,387.712432861328,0.0670208167896823
+2920,306174,3798698,306274,3798598,19,29,5.26315789473684,0.0107976006419286,3.05707368628353,0.235555555555556,17.6649555739947,0.0443616629922824,0.313157894736842,31.3157894736842,4,91.5667136521534,0.804526748971193,24.4736842105263,34.8638693504975,5.19557523727417,387.835538864136,387.725860595703,0.154700276871364
+2921,306174,3798598,306274,3798498,20,29,3.94736842105263,0.0202455012036161,5.89816422118956,0.388888888888889,62.3469026493374,0.0622358245082739,0.721052631578947,72.1052631578947,1,99.0393927130613,0.825636884222891,72.1052631578947,35.2393769051907,5.19557523727417,388.072809855143,387.923522949219,0.271217934098099
+2922,306174,3798498,306274,3798398,21,29,7.75,0.0418407024874733,7.50748456470868,0.413793103448276,47.9008367066314,0.0468524660880212,0.39,39,5,89.5093668194006,0.811503969840635,17.5,25.0561752991799,0,388.645807266235,388.21240234375,0.55905642794783
+2923,306174,3798398,306274,3798298,22,29,78.1578947368421,0.801721847663198,35.259233286235,0.915824915824916,NA,0.0578477039403209,0.707894736842105,70.7894736842105,1,98.9804840892258,0.823744536615824,70.7894736842105,1.87268310497241,0,390.093554178874,389.433776855469,1.03600319024709
+2924,306174,3798298,306274,3798198,23,29,98.9473684210526,1.01497446034129,38.4535636188874,0.932624113475177,NA,0.0550765877758079,0.652631578947368,65.2631578947368,1,98.7139104063183,0.826280041797283,65.2631578947368,0,0,390.888954162598,390.590667724609,0.394623637995145
+2925,306174,3798198,306274,3798098,24,29,38.1578947368421,0.391413023269911,29.0915435582136,0.818390804597701,NA,0.0141347577139401,0.0578947368421053,5.78947368421053,3,70.4286904628467,0.750246467302005,4.21052631578947,3.75486464933916,0,390.897260030111,390.509948730469,0.509737106956648
+2926,306174,3798098,306274,3797998,25,29,33.25,0.179510110672063,17.6245479532967,0.526495726495727,51.9557516882196,0.0332430249888785,0.3075,30.75,3,91.4656205236869,0.818685143513947,22.25,12.1160451920052,0,391.020483016968,390.495941162109,0.680708270702167
+2927,306174,3797998,306274,3797898,26,29,74.2105263157895,0.761230845255966,40.4637864440495,0.846335697399527,NA,0.0555548305233778,0.5,50,5,92.5751430708654,0.744318181818182,32.1052631578947,1.07485884867216,0,391.746236801147,390.510070800781,1.26904530148084
+2928,306174,3797898,306274,3797798,27,29,61.0526315789474,0.208753612410619,18.2883186114896,0.80459348237126,20.7823007792002,0.0274335759003407,0.244736842105263,24.4736842105263,6,85.5108976473869,0.808572268166744,18.6842105263158,2.86958086875177,0,392.225708007812,390.882995605469,1.40934438307414
+2929,306174,3797798,306274,3797698,28,29,28.9473684210526,0.296934017653036,31.1593102460804,0.648484848484848,NA,0.0308457118960704,0.252631578947368,25.2631578947368,3,89.021674468407,0.836636095643629,20.5263157894737,5.58596043288708,0,393.276971817017,391.336608886719,2.63540324960301
+2930,306174,3797698,306274,3797598,29,29,96.5,1.04196846194611,39.1623916770209,0.927029360967185,NA,0.0569327526399866,0.7125,71.25,1,99.0279065499043,0.740428293316029,71.25,0.091150442759196,0,397.989672342936,394.947326660156,3.30733317880768
+2931,306174,3797598,306274,3797498,30,29,35,0.359020221344126,31.1453089348056,0.779448621553885,NA,0.0450119265529793,0.421052631578947,42.1052631578947,3,93.1439351706507,0.682745825602968,29.2105263157895,11.4602818876505,0,393.47004699707,388.5,4.97704812485942
+2932,306174,3797498,306274,3797398,31,29,48.9473684210526,0.25104421492484,26.6345484365876,0.764678558156819,20.7823006752878,0.0193098734631253,0.113157894736842,11.3157894736842,3,78.6504863674055,0.780745136828223,5.52631578947368,5.99317169189453,0,396.982531229655,392.594085693359,4.03437254754245
+2933,306174,3797398,306274,3797298,32,29,20.5263157894737,0.0701844041725358,6.2136121288859,0.277046783625731,38.4691998799668,0.0674160501331483,0.778947368421053,77.8947368421053,1,99.2806056729252,0.699495597161666,77.8947368421053,16.5415539612641,0,398.581707000732,398.017486572266,0.401059912708079
+2934,306174,3797298,306274,3797198,33,29,63.25,0.682948240601983,33.7158613259805,0.872200263504611,NA,0.121573559483513,0.985,98.5,1,99.9600766120013,0.821746880570409,98.5,3.42050836897138,0,398.863655090332,398.820831298828,0.086864851066341
+2935,306174,3797198,306274,3797098,34,29,50.5263157894737,0.172761610270857,20.8210264438332,0.71562091503268,17.3185838960732,0.0415650824982501,0.376315789473684,37.6315789473684,4,91.0799740377,0.761329597062518,29.4736842105263,1.17088547286454,0,398.706539154053,398.617645263672,0.0996021184009972
+2936,306174,3797098,306274,3796998,35,29,4.73684210526316,0.0485892028886786,17.9518365475832,0.388888888888889,NA,0.025901708015724,0.173684210526316,17.3684210526316,6,84.0758253423987,0.663251176959291,13.4210526315789,37.24929932392,0,398.622762044271,398.584899902344,0.0571939396959767
+2937,306174,3796998,306274,3796898,36,29,0,NA,NA,NA,NA,0.0103011871897856,0.0289473684210526,2.89473684210526,2,63.093401258934,0.588075880758808,2.10526315789474,76.6873709938743,72.7380523681641,398.650043487549,398.602783203125,0.0606358780180779
+2938,306174,3796898,306274,3796798,37,29,0.5,0.00539880032096429,2.59778761038906,0.166666666666667,NA,0.0103098315373609,0.025,2.5,3,55.3365473562369,0.526627218934911,1.75,34.3215042114258,21.4219055175781,398.773063659668,398.675933837891,0.155532603707853
+2939,306174,3796798,306274,3796698,38,29,41.0526315789474,0.421106425035215,30.075144770898,0.797008547008547,NA,0.0406628863375916,0.305263157894737,30.5263157894737,4,86.4514158317477,0.801226551226551,10.7894736842105,15.2642517459804,0,398.302467346191,397.161499023438,0.971300103883437
+2940,306174,3796698,306274,3796598,39,29,49.2105263157895,0.168262610003387,17.4150471578984,0.649937092081466,14.6725398627961,0.03552346166306,0.281578947368421,28.1578947368421,4,87.2046044881013,0.754787526808252,12.3684210526316,6.4585374849979,0,397.454906463623,396.018707275391,1.3043796968097
+2941,306174,3796598,306274,3796498,40,29,45.2631578947368,0.154765609200976,16.2475196977775,0.599169729413018,22.4404119982518,0.0530077641813382,0.426315789473684,42.6315789473684,3,93.4067487712392,0.812819407671941,26.3157894736842,6.44912474832417,0,396.840085347493,395.774719238281,1.28087442392405
+2942,306174,3796498,306274,3796398,41,29,26.8421052631579,0.0550677632738358,8.60003029003151,0.398300653594771,17.0971266114093,0.0505094551615337,0.357894736842105,35.7894736842105,5,92.251759068685,0.817887361184558,28.6842105263158,12.1679902672768,0,396.106672286987,395.602569580078,0.649303802386436
+2943,306174,3796398,306274,3796298,42,29,35,0.18895801123375,20.8321321881602,0.74411231884058,20.7823006752878,0.0262604843632027,0.15,15,4,83.1881007752816,0.796380090497738,9.75,16.4142620325089,0,395.425799051921,395.071014404297,0.575866767164965
+2944,306174,3796298,306274,3796198,43,29,71.0526315789474,0.72883804333018,35.9733877063203,0.851234567901235,NA,0.0278116307134233,0.157894736842105,15.7894736842105,6,75.5400227018113,0.646033653846154,6.31578947368421,4.78471415042877,0,394.308162689209,393.826751708984,0.610335323248828
+2945,306174,3796198,306274,3796098,44,29,28.4210526315789,0.0971784057773573,11.9054060028744,0.642558457074586,27.1154546090143,0.0357685703183769,0.25,25,4,86.8734409627173,0.835294117647059,17.6315789473684,13.779045913094,0,393.616424560547,393.500183105469,0.247981066029266
+2946,306174,3796098,306274,3795998,45,29,5,0.0256443015245804,6.96066259941847,0.441666666666667,70.6674624957683,0.0310031924332131,0.192105263157895,19.2105263157895,3,85.6079911486447,0.825936482084691,11.5789473684211,31.5663093148846,5.19557523727417,393.400304794312,393.361022949219,0.065112778897615
+2947,306174,3795998,306274,3795898,46,29,41.25,0.148467008826518,19.0480071353214,0.700020553294693,15.0927590934363,0.0298912829982237,0.18,18,5,83.9805911004197,0.779143460725946,13.75,7.53379102547963,0,393.443163553874,393.385620117188,0.125523120060395
+2948,306174,3795898,306274,3795798,47,29,52.8947368421053,0.180859810752304,21.6054354449942,0.602601695168174,17.3185838960732,0.0399851056497075,0.252631578947368,25.2631578947368,5,86.6055609744586,0.789960694398952,17.3684210526316,8.65725265443325,0,393.842432022095,393.6123046875,0.290512320292884
+2949,306174,3795798,306274,3795698,48,29,57.1052631578947,0.585769834824626,36.3810233080355,0.846390168970814,NA,0.0770448321704048,0.531578947368421,53.1578947368421,4,92.9551959773439,0.795056179775281,30,5.92951985160903,0,394.282290140788,394.151947021484,0.181530155509261
+2950,306174,3795698,306274,3795598,49,29,15.5263157894737,0.0318529218936893,5.74390072645239,0.383760683760684,23.899645809833,0.0218256617149612,0.0763157894736842,7.63157894736842,5,71.2529104207806,0.608413650966843,5,14.574448503297,0,394.492609024048,394.380157470703,0.156275223508211
+2951,306174,3795598,306274,3795498,50,29,9.25,0.0998778059378394,14.6976720347756,0.698198198198198,NA,0.0366626243240444,0.2325,23.25,5,88.0884939573699,0.882265217220674,20.5,35.2311746740854,11.6176595687866,394.688903808594,394.495788574219,0.236684437279954
+2952,306174,3795498,306274,3795398,51,29,0.526315789473684,0.00539880032096429,2.59778761038906,0.166666666666667,NA,0.0141635645467001,0,0,0,NA,NA,0,NA,NA,395.193923950195,394.787963867188,0.392590959256533
+2953,306174,3795398,306274,3795298,52,29,0,NA,NA,NA,NA,0.0115253219634197,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,41.5646018981934,41.5646018981934,396.044359842936,395.568664550781,0.610898997904515
+2954,306174,3795298,306274,3795198,53,29,62.8947368421053,0.645156638355233,32.4307308235477,0.903765690376569,NA,0.0268801723204218,0.144736842105263,14.4736842105263,5,77.1006272946264,0.729230769230769,6.84210526315789,7.67740111784502,0,396.797456741333,396.518707275391,0.337612324008838
+2955,306174,3795198,306274,3795098,54,29,27.25,0.147117308746277,19.5457937082886,0.650531914893617,42.8438104389809,0.0285609316479122,0.155,15.5,5,78.508118169927,0.758930528161297,8.75,2.92433949439756,0,396.860988616943,396.714996337891,0.191990135674517
+2956,306174,3795098,306274,3794998,55,29,5.26315789473684,0.017996001069881,6.85729203404496,0.361111111111111,22.6100784359532,0.0157415532180542,0.0789473684210526,7.89473684210526,3,73.1055617197273,0.734110787172012,4.73684210526316,40.0927181243896,0,396.716873168945,396.694427490234,0.0384247257503139
+2957,306174,3794998,306274,3794898,56,29,0,NA,NA,NA,NA,0.0145615417533439,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,52.7369995117188,41.5646018981934,396.782459259033,396.702301025391,0.0892733281119076
+2958,306174,3794898,306274,3794798,57,29,12.6315789473684,0.129571207703143,29.5407802814341,0.638888888888889,NA,0.0280624284521094,0.0868421052631579,8.68421052631579,5,67.4079141224535,0.5741274415626,3.42105263157895,20.8902889454004,0,396.799509684245,396.665100097656,0.140002797711812
+2959,306174,3794798,306274,3794698,58,29,30.25,0.10887580647278,15.5809199258612,0.564516129032258,26.3580958657905,0.0309615213936195,0.1775,17.75,6,78.5019542218935,0.708206686930091,6.75,4.75414354028836,0,396.776006698608,396.627593994141,0.146555393757205
+2960,306174,3794698,306274,3794598,59,29,33.6842105263158,0.172761610270857,22.5020680482826,0.610655737704918,46.7601765193976,0.0263567545680991,0.2,20,7,75.4689334740606,0.692164179104477,7.10526315789474,5.66887271404266,0,396.993797302246,396.737335205078,0.31496517777728
+2961,306174,3794598,306274,3794498,60,29,20,0.205154412196643,26.2303997548789,0.776315789473684,NA,0.0170905639792995,0.0447368421052632,4.47368421052632,5,56.7805576367437,0.623140495867769,2.89473684210526,34.3343072779038,20.7823009490967,397.554956436157,397.306091308594,0.336915748926411
+2962,306174,3794498,306274,3794398,61,29,35.2631578947368,0.361719621504608,32.9975080466665,0.778606965174129,NA,0.0013574338002256,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,29.4415924549103,5.19557523727417,398.031471252441,397.873077392578,0.249816127835623
+2963,306174,3794398,306274,3794298,62,29,37.75,0.203804712116402,18.8150556606876,0.499624624624625,36.3690261817537,0.0275960873730946,0.11,11,5,78.3675668233323,0.741876708168843,7.75,4.75694862279025,0,398.398025512695,398.169525146484,0.425121396745049
+2964,306174,3794298,306274,3794198,63,29,70,0.718040442688251,33.2624168995406,0.916666666666667,NA,0.0201714782502102,0.142105263157895,14.2105263157895,6,76.04621808972,0.736790025727291,8.42105263157895,1.25078662236532,0,399.312118530273,398.975280761719,0.437380969823212
+2965,306174,3794198,306274,3794098,64,29,36.8421052631579,0.377916022467501,29.0882456046967,0.851190476190476,NA,0.0129895333244349,0.0394736842105263,3.94736842105263,4,58.2761618046508,0.621419676214197,2.63157894736842,0.836215209960937,0,399.36008644104,399.256042480469,0.101230298352827
+2966,306174,3794098,306274,3793998,65,29,0,NA,NA,NA,NA,0.0182307208570532,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,88.1587702433268,78.6233215332031,399.413538614909,399.365264892578,0.0814280528516159
+2967,306174,3793998,306274,3793898,66,29,23.75,0.128221507622902,17.8098325352737,0.666427203065134,15.5867255064659,0.0227534763362928,0.0475,4.75,3,71.9746812949251,0.855190514978731,4.25,11.0054690712377,0,399.493677139282,399.395538330078,0.080834018003627
+2968,306174,3793898,306274,3793798,67,29,5.78947368421053,0.0197956011768691,4.46341839888646,0.388888888888889,29.4415927791929,0.0180285518966469,0.0605263157894737,6.05263157894737,2,74.7911888949056,0.793028322440087,3.94736842105263,20.0431466724562,10.3911504745483,399.572992960612,399.49072265625,0.178975797995852
+2969,306174,3793798,306274,3793698,68,29,13.1578947368421,0.0192814297177296,5.42465649287991,0.400707757850615,24.7675420424648,0.0299222763921774,0.147368421052632,14.7368421052632,6,75.2225393859317,0.697721776759577,4.73684210526316,12.2353691288403,0,400.236793518066,399.800964355469,0.494637115234108
+2970,306174,3793698,306274,3793598,69,29,35.2631578947368,0.0904299053761519,16.6451413942194,0.516359809780862,14.4986132485903,0.0329444582322857,0.131578947368421,13.1578947368421,10,64.819912732216,0.471657754010695,3.68421052631579,8.23679849624634,0,400.820199966431,400.568695068359,0.282389480068463
+2971,306174,3793598,306274,3793498,70,29,43.5,0.0782826046539823,14.1375254380934,0.517488992488992,14.8613172780048,0.0458741740964615,0.415,41.5,6,93.3852258650447,0.659236914138875,33.5,4.51775341723339,0,400.559649149577,400.289825439453,0.281837791028583
+2972,306174,3793498,306274,3793398,71,29,36.0526315789474,0.123272607328685,21.2459705231016,0.511463844797178,22.8797588272141,0.0332085584381275,0.221052631578947,22.1052631578947,10,74.174952175439,0.620896063849084,6.05263157894737,4.14088101046426,0,400.532739639282,400.345428466797,0.259928829725144
+2973,306174,3793398,306274,3793298,72,29,60,0.61546323658993,41.4076487243108,0.751461988304094,NA,0.0452819513714578,0.460526315789474,46.0526315789474,3,94.6222317182157,0.672883787661406,33.6842105263158,2.47859462465559,0,400.673001607259,400.360809326172,0.325483585242444
+2974,306174,3793298,306274,3793198,73,29,43.1578947368421,0.147567208773024,12.9861962932048,0.498207885304659,26.1493637667197,0.0347653053903119,0.234210526315789,23.421052631579,4,86.8729977687238,0.712550519786466,14.7368421052632,5.26432127898998,0,400.569772720337,400.376281738281,0.226299104199897
+2975,306174,3793198,306274,3793098,74,29,5.25,0.0283437016850625,7.88511153239329,0.275,93.6645636717762,0.0238407702995096,0.045,4.5,3,66.6055457381153,0.767306573589296,3.25,12.5070805019803,0,400.240646362305,400.130279541016,0.188747821744656
+2976,306174,3793098,306274,3792998,75,29,29.7368421052632,0.152516109067241,25.2577884461944,0.718242204655248,10.3911503376439,0.0222519749710045,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.808080808080808,7.36842105263158,15.9011898551668,7.34765291213989,400.082752227783,400.008514404297,0.0818685944200811
+2977,306174,3792998,306274,3792898,76,29,7.63157894736842,0.0391413023269911,7.86069914016225,0.41358024691358,47.0479346325716,0.0246488926413517,0.105263157894737,10.5263157894737,3,79.0021935065481,0.666374012291484,5.26315789473684,12.7366349101067,5.19557523727417,400.090395609538,400.015533447266,0.0867348741176924
+2978,306174,3792898,306274,3792798,77,29,42.6315789473684,0.145767608666036,10.3046817486096,0.380918893577121,17.1445234445694,0.0278383619055023,0.205263157894737,20.5263157894737,4,89.0578440703894,0.844994721182455,18.4210526315789,12.6331543433361,0,400.185148239136,400.092926025391,0.126452344684077
+2979,306174,3792798,306274,3792698,78,29,41.75,0.225399913400259,25.627078273194,0.72984267453294,15.5867255064659,0.016020877938804,0.0575,5.75,4,66.5378371397197,0.675803124078986,3.5,9.9240578983141,5.19557523727417,400.383672078451,400.246704101562,0.221277730732283
+2980,306174,3792698,306274,3792598,79,29,27.1052631578947,0.0695095541324153,14.0652530594636,0.483854166666667,25.977875922044,0.0177791253705723,0.0447368421052632,4.47368421052632,4,55.7723101552989,0.623140495867769,1.84210526315789,11.0321176753325,0,400.803617477417,400.534149169922,0.350705825426915
+2981,306174,3792598,306274,3792498,80,29,58.6842105263158,0.601966235787519,36.9653752858456,0.757100149476831,NA,0.027088162546031,0.118421052631579,11.8421052631579,7,68.9242226699005,0.582089552238806,4.73684210526316,5.91141674253676,0,401.308090209961,401.152404785156,0.170192582265395
+2982,306174,3792498,306274,3792398,81,29,46.0526315789474,0.118098757021094,14.9675923553357,0.583985756262762,13.3041024578226,0.0212131564328717,0.0947368421052632,9.47368421052632,4,76.9037657274362,0.742248062015504,6.84210526315789,5.00969689422184,0,401.33637046814,401.158874511719,0.144711005558135
+2983,306174,3792398,306274,3792298,82,29,35,0.125972007489167,12.6228113632972,0.500706813683913,22.5141590648952,0.0349535019988707,0.2875,28.75,3,88.4815824711708,0.770580296896086,12.75,8.68765930507494,0,401.234153747559,401.110748291016,0.146297695800829
+2984,306174,3792298,306274,3792198,83,29,18.1578947368421,0.0620862036910894,10.2034111978606,0.527777777777778,34.6371680761734,0.0529552594979912,0.394736842105263,39.4736842105263,1,96.8008110192232,0.927905138339921,39.4736842105263,7.5489594523112,0,401.184429168701,401.126922607422,0.0779697289853084
+2985,306174,3792198,306274,3792098,84,29,28.4210526315789,0.072883804333018,13.9097629046177,0.45958485958486,16.7141093080182,0.0243269391998566,0.068421052631579,6.84210526315789,1,84.7352110985031,0.947636764503238,6.84210526315789,7.81020043446467,0,401.261196136475,401.162475585938,0.171948333174461
+2986,306174,3792098,306274,3791998,85,29,66.0526315789474,0.33877472014051,17.8656556604281,0.446666666666667,36.3690261817537,0.0599150130217726,0.689473684210526,68.9473684210526,1,98.895195872361,0.901618972004556,68.9473684210526,1.48792830314345,0,401.913505554199,401.374450683594,0.677457706428084
+2987,306174,3791998,306274,3791898,86,29,99.25,1.07166186371141,39.6385856000829,0.932829554995802,NA,0.0801425986690447,0.9775,97.75,1,99.9397711850087,0.580712788259958,97.75,0.039863748623587,0,402.605133056641,402.042663574219,0.485417490912637
+2988,306174,3791898,306274,3791798,87,29,71.8421052631579,0.736936243811626,36.2585550477021,0.898656898656899,NA,0.0609839748934303,0.742105263157895,74.2105263157895,1,99.1303671971735,0.678090103966115,74.2105263157895,2.89555868358477,0,402.981307983398,402.580871582031,0.330190682986165
+2989,306174,3791798,306274,3791698,88,29,28.4210526315789,0.072883804333018,13.8143351281387,0.570984582357533,12.9889379999891,0.0380741529181538,0.363157894736842,36.3157894736842,5,87.0815368510134,0.775678866587957,13.6842105263158,9.90603476330854,0,403.29168510437,402.774841308594,0.592287964680851
+2990,306174,3791698,306274,3791598,89,29,51.0526315789474,0.261841815566768,23.9301744828273,0.626140350877193,36.7382647004223,0.0534966219228839,0.555263157894737,55.5263157894737,3,94.4936276223713,0.759087066779375,36.5789473684211,3.754134566863,0,404.053657531738,403.282531738281,1.0331146987236
+2991,306174,3791598,306274,3791498,90,29,29.75,0.0642457238194751,11.7903960302811,0.534940600978337,11.4302654129732,0.0429543530519004,0.3225,32.25,3,91.3136984144127,0.748763445081259,16,5.24072183934293,0,404.229413986206,403.539337158203,0.839586533635389
+2992,306174,3791498,306274,3791398,91,29,49.4736842105263,0.253743615085322,24.0131188272225,0.638888888888889,22.0429587144464,0.0364430493485423,0.244736842105263,24.4736842105263,7,78.9501980653273,0.688929935770958,6.84210526315789,5.44109228093137,0,404.344543457031,403.660552978516,0.638166662833567
+2993,306174,3791398,306274,3791298,92,29,13.4210526315789,0.13766940818459,26.3452694079749,0.663398692810457,NA,0.0227607680594941,0.0315789473684211,3.15789473684211,2,62.5006532464426,0.635549872122762,1.84210526315789,7.56766215960185,0,404.865400314331,404.338531494141,0.407346043350198
+2994,306174,3791298,306274,3791198,93,29,17.3684210526316,0.0890802052959109,14.4055073221804,0.676449275362319,58.7812232385236,0.0492781917126482,0.381578947368421,38.1578947368421,3,94.9445623434491,0.871858691288639,36.5789473684211,15.2679821277487,0,405.20245107015,405.030242919922,0.315368824243179
+2995,306174,3791198,306274,3791098,94,29,34.75,0.187608311153509,22.4960079088085,0.627260981912145,11.6176592829313,0.0601957623547241,0.515,51.5,2,94.9581461912273,0.849263815240505,38.75,6.64932175515925,0,405.464902877808,405.207641601562,0.234343196747688
+2996,306174,3791098,306274,3790998,95,29,8.15789473684211,0.0418407024874733,9.27844276817175,0.430555555555556,16.4298513045212,0.0388156349854973,0.247368421052632,24.7368421052632,6,84.0596541221601,0.691558441558442,11.3157894736842,19.8846881186708,0,405.28640238444,405.080688476562,0.191486172592454
+2997,306174,3790998,306274,3790898,96,29,1.31578947368421,0.0134970008024107,6.23469020258635,0.266666666666667,NA,0.0470198601630584,0.336842105263158,33.6842105263158,7,86.5210362515645,0.792901423802711,16.5789473684211,60.0208240151405,0,405.126148223877,404.889953613281,0.259571845784051
+2998,306174,3790898,306274,3790798,97,29,0,NA,NA,NA,NA,0.0560187841319547,0.528947368421053,52.8947368421053,1,97.9724231015921,0.869097009001453,52.8947368421053,77.4554412614054,25.977876663208,405.103716532389,404.894134521484,0.288379105755869
+2999,306174,3790798,306274,3790698,98,29,5.75,0.0620862036910894,14.0179938719118,0.608695652173913,NA,0.0253185277364901,0.1975,19.75,4,85.2840802527748,0.688473520249221,10.25,31.3205647710003,0,405.711242675781,405.087036132812,0.616393615261946
+3000,306174,3790698,306274,3790598,99,29,10.7894736842105,0.110675406579768,16.2484000445866,0.654471544715447,NA,0.0364084214593782,0.2,20,6,80.6674490797284,0.69488188976378,9.16666666666667,16.2699642711216,0,406.377445220947,406.049896240234,0.346361471014994
+3001,306274,3800598,306374,3800498,0,30,40.9972299168975,0.133170407917166,16.4416905470598,0.662088750985028,17.3185838960732,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.753705342611,383.720336914062,0.0630306461740596
+3002,306274,3800498,306374,3800398,1,30,5,0.017096201016393,6.576278092842,0.276455026455026,40.1450662955539,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.866923014323,383.803527832031,0.0913405548546393
+3003,306274,3800398,306374,3800298,2,30,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.028887430827,383.960083007812,0.116714406900613
+3004,306274,3800298,306374,3800198,3,30,25.7617728531856,0.0836814049749762,10.396477523891,0.601044277360067,20.7823007792038,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.151197645399,384.045867919922,0.176063535626092
+3005,306274,3800198,306374,3800098,4,30,32.1329639889197,0.104376806205347,12.7501355518191,0.589778658114821,32.1155885929705,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.35397084554,384.15087890625,0.218445940095254
+3006,306274,3800098,306374,3799998,5,30,13.1578947368421,0.134970008024155,15.8200565139704,0.756666666666667,NA,0.000843091628631124,0.0263157894736842,2.63157894736842,2,35.6922526523744,0.486486486486487,1.97368421052632,35.6418628692627,27.9790287017822,384.750288221571,384.53955078125,0.317184309553852
+3007,306274,3799998,306374,3799898,6,30,10.2493074792244,0.0998778059378748,25.0014000594398,0.576576576576577,NA,-0.000942273364321371,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824,384.988014221191,384.836486816406,0.270285976279824
+3008,306274,3799898,306374,3799798,7,30,30.4709141274238,0.148467008826571,18.7798586402555,0.70929156753899,20.7823008831198,0.00536006004704353,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.795467422096317,2.21606648199446,14.2878315448761,10.3911504745483,385.019975450304,384.847808837891,0.292009687438534
+3009,306274,3799798,306374,3799698,8,30,92.797783933518,0.904299053761839,36.658511182698,0.906965174129353,NA,0.0237038383301224,0.105263157894737,10.5263157894737,3,82.099073773588,0.716153127917834,8.58725761772853,0.546902656555176,0,385.322937011719,385.0263671875,0.365219676437875
+3010,306274,3799698,306374,3799598,9,30,54.7368421052632,0.561475233380485,37.2372098625836,0.742788461538462,NA,0.020382360938215,0.0815789473684211,8.1578947368421,7,61.3637414522629,0.54269340974212,3.68421052631579,6.42024530902986,0,385.747548421224,385.481597900391,0.51439581736342
+3011,306274,3799598,306374,3799498,10,30,29.0858725761773,0.283437016850726,27.8818723695017,0.728571428571429,NA,0.0154318066100905,0.0914127423822715,9.14127423822715,1,87.180691871343,0.714656729900632,9.14127423822715,9.13817878202959,5.19557523727417,386.369478861491,385.792755126953,0.71973459611219
+3012,306274,3799498,306374,3799398,11,30,44.0443213296399,0.143068208505604,13.9351452747339,0.641727716727717,14.6953058096335,0.0168194568453491,0.07202216066482,7.20221606648199,2,76.2797118658907,0.816017473607572,3.601108033241,5.87783683263339,0,386.944376627604,386.537231445312,0.480292869355217
+3013,306274,3799398,306374,3799298,12,30,89.4736842105263,0.871906251836042,36.0263139266184,0.910216718266254,NA,0.0296440214636043,0.0498614958448753,4.98614958448753,3,68.0316417002971,0.688154626930137,3.32409972299169,2.30914454989963,0,387.134769015842,386.994934082031,0.22646873628879
+3014,306274,3799298,306374,3799198,13,30,26.8421052631579,0.0917796054564255,14.1059944516467,0.567489711934156,29.5375119799345,0.00559589273170786,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,18.1511862754822,0,387.136019388835,387.077911376953,0.0955270038004319
+3015,306274,3799198,306374,3799098,14,30,1.93905817174515,0.0188958011233817,8.90670037847993,0.285714285714286,NA,0.0145881864618509,0.0415512465373961,4.15512465373961,4,55.6311620723253,0.573173935890699,1.93905817174515,29.9870155016581,5.19557523727417,387.231387668186,387.1513671875,0.152213981778613
+3016,306274,3799098,306374,3798998,15,30,0,NA,NA,NA,NA,0.0178586529949412,0.0221606648199446,2.21606648199446,3,41.4023931466401,0.488668555240793,0.831024930747922,48.4859311580658,15.5867252349854,387.696619669596,387.434692382812,0.315669444709303
+3017,306274,3798998,306374,3798898,16,30,0,NA,NA,NA,NA,0.0130776136791829,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,104.233184814453,88.3247756958008,388.099765353733,388.004119873047,0.137462350644418
+3018,306274,3798898,306374,3798798,17,30,27.6315789473684,0.283437016850726,28.5737862445008,0.801587301587302,NA,-0.00169882474885143,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,13.5517172813416,0,388.084096272786,387.895843505859,0.182380265116007
+3019,306274,3798798,306374,3798698,18,30,53.4626038781163,0.520984230973239,29.5133932044325,0.881692573402418,NA,-0.0177808870964309,0,0,0,NA,NA,0,NA,NA,387.960747612847,387.799865722656,0.294292660752711
+3020,306274,3798698,306374,3798598,19,30,14.1274238227147,0.137669408184638,16.2156104440822,0.709150326797386,NA,0.00658882723451986,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,18.3326591082982,7.34765291213989,388.036771138509,387.803100585938,0.401117746710511
+3021,306274,3798598,306374,3798498,20,30,29.0858725761773,0.141718508425363,15.0722394940409,0.486111111111111,18.7329127343573,0.0228969123930702,0.188365650969529,18.8365650969529,4,86.1248986256184,0.730805632833338,14.1274238227147,4.30639342700734,0,388.320607503255,387.992950439453,0.526792119126148
+3022,306274,3798498,306374,3798398,21,30,24.2105263157895,0.124172407382223,15.0185498812122,0.548850574712644,47.047934173564,0.0117680619271356,0.165789473684211,16.5789473684211,2,86.7177319112959,0.901921422426154,11.3157894736842,22.6162268245031,0,388.877520243327,388.324981689453,0.934684140590488
+3023,306274,3798398,306374,3798298,22,30,49.3074792243767,0.160164409521997,10.5346061847327,0.34952380952381,15.758213285213,0.0340547143232395,0.25207756232687,25.207756232687,7,82.9412213825143,0.653360768175583,13.0193905817175,6.1965252488524,0,390.60605875651,389.719360351562,1.11954652530665
+3024,306274,3798298,306374,3798198,23,30,97.7839335180055,0.952888256650535,37.5505055952178,0.924929178470255,NA,0.0597801011499441,0.609418282548476,60.9418282548476,2,96.5393717864661,0.637813527071441,52.6315789473684,0.127863426641984,0,391.600481669108,391.220764160156,0.48243053872335
+3025,306274,3798198,306374,3798098,24,30,53.7396121883656,0.174561210377907,14.1115331477594,0.44440010641128,12.4040507037514,0.0253144478872784,0.260387811634349,26.0387811634349,1,94.6683312894905,0.903424291064741,26.0387811634349,0.0552720769922784,0,391.701911078559,391.443359375,0.306187253064366
+3026,306274,3798098,306374,3797998,25,30,30.2631578947368,0.103477006151852,13.5822885790645,0.545603426555808,20.8861750376724,0.0219003654480012,0.115789473684211,11.5789473684211,3,81.8168024267331,0.679054054054054,8.42105263157895,8.77572968873111,0,391.962610880534,391.588012695312,0.455724060834046
+3027,306274,3797998,306374,3797898,26,30,48.7534626038781,0.475094428245026,33.2139150534723,0.857007575757576,NA,0.0329811094197391,0.304709141274238,30.4709141274238,4,94.0993354302303,0.725359867064406,29.3628808864266,4.87153471599926,0,393.056788126628,392.299163818359,0.783687088066697
+3028,306274,3797898,306374,3797798,27,30,51.2465373961219,0.499389029689374,35.3470031029564,0.790990990990991,NA,0.0201820308251314,0.166204986149584,16.6204986149584,4,80.5356374529654,0.734762330692563,7.20221606648199,8.10102073351542,0,393.974110921224,393.462036132812,0.802761513674304
+3029,306274,3797798,306374,3797698,28,30,30.1939058171745,0.0735586543731645,10.3895338346949,0.392989417989418,18.7977677282705,-0.000896301267167471,0.0637119113573407,6.37119113573407,3,72.5534697776549,0.732988165680473,4.70914127423823,2.99144069008205,0,395.556297302246,394.498657226562,1.70626940319901
+3030,306274,3797698,306374,3797598,29,30,43.1578947368421,0.442701626319229,36.8026854727268,0.804878048780488,NA,0.0503163303493669,0.594736842105263,59.4736842105263,2,97.7622147229199,0.841749699231885,58.4210526315789,8.53992380927094,0,400.473202175564,397.5419921875,4.70714093571929
+3031,306274,3797598,306374,3797498,30,30,47.9224376731302,0.466996227763577,29.1018116163896,0.891136801541426,NA,0.0505793438895433,0.498614958448753,49.8614958448753,3,94.6959262919671,0.706518673369502,35.4570637119114,11.0099802335103,0,394.431086222331,388.5,4.98636587083283
+3032,306274,3797498,306374,3797398,31,30,59.5567867036011,0.290185517251933,19.7004910972244,0.72808972073678,15.5867256623399,0.0104384645238394,0.0332409972299169,3.32409972299169,4,46.9932820870421,0.513231080397775,1.38504155124654,5.98721937338511,0,395.529340955946,389.910797119141,5.80578677528922
+3033,306274,3797398,306374,3797298,32,30,15.7894736842105,0.0384664522868842,7.49253688591583,0.45577485380117,12.9889379999919,0.0246371489661504,0.28808864265928,28.808864265928,2,94.6996850714072,0.834744792858778,28.5318559556787,35.4631724541004,10.3911504745483,398.626085917155,398.397827148438,0.250786154357105
+3034,306274,3797298,306374,3797198,33,30,56.578947368421,0.290185517251933,21.808110725995,0.841618191433104,10.3911504415599,0.114113036212573,0.886842105263158,88.6842105263158,1,99.6653789560343,0.875141469825855,88.6842105263158,4.45927849155505,0,398.849704318576,398.809204101562,0.0852701272472725
+3035,306274,3797198,306374,3797098,34,30,39.612188365651,0.0551448889927262,8.77519203213549,0.487386493636494,13.6009436458989,0.0433566735292236,0.412742382271468,41.2742382271468,6,86.7900659139398,0.781688437348815,20.4986149584488,2.01047331214751,0,398.877235412598,398.783508300781,0.167126620013814
+3036,306274,3797098,306374,3796998,35,30,9.97229916897507,0.0485892028886958,12.5427314188735,0.499358974358974,51.9557516882196,0.0184644124342929,0.163434903047091,16.3434903047091,5,81.523632679331,0.683580054538372,11.6343490304709,25.228126493551,0,398.791215684679,398.704467773438,0.168292189096433
+3037,306274,3796998,306374,3796898,36,30,3.601108033241,0.0175461010431402,5.62964848331491,0.400793650793651,11.6176592829322,0.032968923589251,0.321329639889197,32.1329639889197,3,89.4097882404792,0.733372206025267,16.3434903047091,48.3911364818441,11.6176595687866,398.760363260905,398.690277099609,0.096631728967804
+3038,306274,3796898,306374,3796798,37,30,0.263157894736842,0.0026994001604831,0,0,NA,0.0310996433927796,0.181578947368421,18.1578947368421,4,83.5662558561311,0.838431080757886,14.2105263157895,32.8845683180768,5.19557523727417,398.933030870226,398.819122314453,0.196201493593978
+3039,306274,3796798,306374,3796698,38,30,6.09418282548476,0.0593868035306282,17.7962785970137,0.522727272727273,NA,0.0291699813511272,0.182825484764543,18.2825484764543,1,92.5625648410704,0.882947678703021,18.2825484764543,63.7705883835301,33.2679138183594,399.356783548991,399.123046875,0.418035907004273
+3040,306274,3796698,306374,3796598,39,30,37.1191135734072,0.180859810752368,19.111584774385,0.705853174603175,14.6953058096335,0.0296951415310462,0.199445983379501,19.9445983379501,4,82.2887838349209,0.724600168923521,9.97229916897507,4.70484809743034,0,398.869280497233,398.368194580078,0.620907533582606
+3041,306274,3796598,306374,3796498,40,30,20.4986149584488,0.0399511223751499,6.99980635023334,0.423218448218448,23.4271699609112,0.0434860569456208,0.368421052631579,36.8421052631579,4,87.3457439900843,0.803719008264463,11.3573407202216,10.7870103004283,0,397.882473415799,397.390533447266,0.938660528911003
+3042,306274,3796498,306374,3796398,41,30,35.7340720221607,0.17411131035116,12.8348000752327,0.399739583333333,36.7382645240838,0.0491108367349325,0.398891966759003,39.8891966759003,4,91.2771788725876,0.75424172601592,28.808864265928,9.77594216664632,0,396.616032918294,396.056427001953,0.691639162988932
+3043,306274,3796398,306374,3796298,42,30,23.4210526315789,0.0800822047609987,11.9253313300957,0.538314176245211,22.4176459356722,0.0366968076637166,0.25,25,5,88.3123144538366,0.866666666666667,21.3157894736842,24.602155881179,0,395.646697998047,395.328186035156,0.477380004979404
+3044,306274,3796298,306374,3796198,43,30,52.9085872576177,0.257792715326136,25.5549175298768,0.749307552998828,10.3911503376439,0.0311910780437756,0.21606648199446,21.606648199446,4,86.850196575544,0.759666103344088,15.2354570637119,5.92585076429905,0,394.748260498047,394.132507324219,0.633704211546765
+3045,306274,3796198,306374,3796098,44,30,49.3074792243767,0.480493228565992,29.2696296655396,0.888576779026217,NA,0.0122571216019413,0.149584487534626,14.9584487534626,4,81.4273030598708,0.785051311687857,9.41828254847645,0.384857424983272,0,393.799258761936,393.593475341797,0.421826393516675
+3046,306274,3796098,306374,3795998,45,30,1.93905817174515,0.0188958011233817,7.04756359463871,0.380952380952381,NA,0.0284512510542629,0.221606648199446,22.1606648199446,6,79.1266189203428,0.692396371109218,7.20221606648199,35.7274385869503,5.19557523727417,393.431973775228,393.368194580078,0.111159561095361
+3047,306274,3795998,306374,3795898,46,30,32.1052631578947,0.109775606526313,17.13618760266,0.550955058687017,19.0504423549578,0.0379150145843404,0.294736842105263,29.4736842105263,5,88.9628526524513,0.761341805822373,21.5789473684211,15.0337059242385,0,393.435869004991,393.386260986328,0.102846789856341
+3048,306274,3795898,306374,3795798,47,30,68.9750692520776,0.672150639960292,38.6622608772448,0.823962516733601,NA,0.0303351235630352,0.213296398891967,21.3296398891967,6,80.4404259157487,0.700911350455675,13.8504155124654,4.51821486361615,0,393.779937744141,393.559967041016,0.270240261801402
+3049,306274,3795798,306374,3795698,48,30,58.7257617728532,0.572272834022418,36.8542312423582,0.849842767295597,NA,0.0873965714625662,0.67590027700831,67.590027700831,2,96.109157572698,0.749643874643875,39.0581717451524,5.13006597855052,0,394.159844292535,393.938232421875,0.230445322113638
+3050,306274,3795698,306374,3795598,49,30,28.2548476454294,0.137669408184638,16.9848825339864,0.542087542087542,51.9557516882196,0.0345003836530414,0.224376731301939,22.4376731301939,3,86.9951553556236,0.767212301587302,14.1274238227147,12.2788324061735,0,394.287353515625,394.102722167969,0.163939502440769
+3051,306274,3795598,306374,3795498,50,30,0,NA,NA,NA,NA,0.0420314689133145,0.273684210526316,27.3684210526316,3,92.0293089829821,0.860110051925909,25,35.4969979111965,5.19557523727417,394.525987413194,394.413208007812,0.221772707695779
+3052,306274,3795498,306374,3795398,51,30,1.66204986149584,0.0161964009628986,5.52275875418425,0.416666666666667,NA,0.0127405506550896,0,0,0,NA,NA,0,NA,NA,395.125910441081,394.760864257812,0.486272972155235
+3053,306274,3795398,306374,3795298,52,30,0,NA,NA,NA,NA,0.0188720830258835,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,96.8526903788249,88.7820281982422,396.12900797526,395.688079833984,0.584835728365389
+3054,306274,3795298,306374,3795198,53,30,8.03324099722992,0.0782826046540099,14.6058590677628,0.683908045977012,NA,0.0188130078865654,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.710910910910911,7.75623268698061,4.1272611788341,0,396.74525197347,396.581481933594,0.205108052815238
+3055,306274,3795198,306374,3795098,54,30,10.5263157894737,0.053988003209662,11.6389470111687,0.613888888888889,41.8880664774876,0.0199720402852108,0.068421052631579,6.8421052631579,2,81.3670226465916,0.947636764503238,6.57894736842105,3.77405577439528,0,396.825289408366,396.731475830078,0.135783360588656
+3056,306274,3795098,306374,3794998,55,30,26.5927977839335,0.0431904025677296,8.63283337585911,0.408188579414995,17.7274202371483,0.0108695440045529,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,4.32964603106181,0,396.790323893229,396.725006103516,0.12480979001476
+3057,306274,3794998,306374,3794898,56,30,24.9307479224377,0.12147300722174,14.0419172166176,0.6,25.9778758441098,0.0165549634912218,0.0554016620498615,5.54016620498615,2,79.2017872380079,0.658499668905496,5.26315789473684,13.969637799263,0,396.899965922038,396.80078125,0.106287102917523
+3058,306274,3794898,306374,3794798,57,30,8.31024930747922,0.0404910024072465,11.352789097618,0.543560606060606,14.6953058096335,0.0247315150065076,0.105263157894737,10.5263157894737,7,67.0544248501807,0.574229691876751,3.32409972299169,14.8064969589836,5.19557523727417,396.956882052951,396.917144775391,0.0831970235707555
+3059,306274,3794798,306374,3794698,58,30,0.263157894736842,0.0026994001604831,0,0,NA,0.017530957360776,0.0710526315789474,7.10526315789474,5,67.3168279199043,0.649515778378022,4.21052631578947,21.893872084441,5.19557523727417,396.97034962972,396.901824951172,0.129155944842858
+3060,306274,3794698,306374,3794598,59,30,1.66204986149584,0.0053988003209662,1.22460881746946,0.138888888888889,36.3690263376277,0.0254368755352584,0.210526315789474,21.0526315789474,4,89.6605662927963,0.829850746268657,19.3905817174515,15.5649265992014,0,397.0882941352,396.991546630859,0.170417322125792
+3061,306274,3794598,306374,3794498,60,30,31.5789473684211,0.153865809147537,24.8753094875073,0.724074074074074,20.7823008831198,0.0224689436910211,0.18005540166205,18.005540166205,3,87.3577543658313,0.74097105955513,13.8504155124654,7.84879443828876,0,397.366803487142,397.206726074219,0.229809616221483
+3062,306274,3794498,306374,3794398,61,30,26.8698060941828,0.261841815566861,27.3310359769529,0.752577319587629,NA,-0.0587747026560328,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483,397.687049018012,397.564971923828,0.265112892562087
+3063,306274,3794398,306374,3794298,62,30,29.4736842105263,0.0755832044935269,11.4627886575372,0.632525252525252,17.2760189250444,-0.0223759568142812,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,10.3911503791809,5.19557523727417,398.233489990234,397.884948730469,0.4594759203917
+3064,306274,3794298,306374,3794198,63,30,39.0581717451524,0.0761230845256235,9.14682612173904,0.531119528619529,21.2729043469275,-0.0348356279680558,0,0,0,NA,NA,0,NA,NA,399.077606201172,398.752624511719,0.420292196559621
+3065,306274,3794198,306374,3794098,64,30,36.01108033241,0.116974006954268,12.5016716023621,0.621712361712362,23.331831897434,-0.0505648570872299,0,0,0,NA,NA,0,NA,NA,399.493156433105,399.270935058594,0.474409895012583
+3066,306274,3794098,306374,3793998,65,30,17.4515235457064,0.170062210110435,27.8452548348138,0.746031746031746,NA,-0.00555984951121026,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,25.5448131561279,18.7329120635986,399.618927001953,399.458740234375,0.235844314540721
+3067,306274,3793998,306374,3793898,66,30,26.8421052631579,0.0344173520461595,7.93264259117235,0.442897727272727,11.3472245090372,0.0221723216182191,0.0263157894736842,2.63157894736842,4,51.0856515317875,0.446985446985447,1.84210526315789,7.70422081947327,0,399.562754313151,399.484741210938,0.0796307239591124
+3068,306274,3793898,306374,3793798,67,30,32.9639889196676,0.0803071547743723,9.28220234971454,0.391452492211838,18.6060760556271,0.0277999602532213,0.0941828254847645,9.41828254847645,7,66.1713028233838,0.605723023154216,5.54016620498615,9.79861304339241,0,399.564721001519,399.495971679688,0.126161463426586
+3069,306274,3793798,306374,3793698,68,30,24.9307479224377,0.0485892028886958,10.8097720953568,0.553612368024133,14.8848608750567,0.031947621942926,0.224376731301939,22.4376731301939,6,80.0312143953441,0.73139880952381,8.86426592797784,15.9744007087048,0,399.834218343099,399.645446777344,0.328644428268925
+3070,306274,3793698,306374,3793598,69,30,20.2216066481994,0.0394112423430533,8.11774847979339,0.509824434824435,18.7040706077591,0.0407755852191918,0.299168975069252,29.9168975069252,3,90.6162704826732,0.765845748454444,18.2825484764543,13.0699023273256,0,400.232355753581,399.923797607422,0.442939428119953
+3071,306274,3793598,306374,3793498,70,30,22.3684210526316,0.0382415022735106,8.047789796346,0.466686367218282,20.1974135349213,0.0279297088645092,0.0894736842105263,8.94736842105263,6,65.441520141417,0.588150289017341,3.68421052631579,10.3778080239015,0,400.163353814019,399.943450927734,0.277945977733556
+3072,306274,3793498,306374,3793398,71,30,24.3767313019391,0.0395912023537522,12.4220384714986,0.346719526544088,19.9163715844002,0.0293811633980775,0.213296398891967,21.3296398891967,5,80.9977007954418,0.635485708367854,10.2493074792244,8.19014269345767,0,400.628941853841,400.222869873047,0.449227260411863
+3073,306274,3793398,306374,3793298,72,30,13.5734072022161,0.066135303931836,14.5446787471336,0.455314009661836,25.9778761038998,0.0252728423877159,0.224376731301939,22.4376731301939,4,87.1504463396241,0.713492063492064,14.1274238227147,11.1012107825574,0,401.07235039605,400.945068359375,0.256582355844151
+3074,306274,3793298,306374,3793198,73,30,22.7146814404432,0.0737836043865381,13.7901146655789,0.438357938357938,14.6725398163281,0.0206671205219952,0.10803324099723,10.803324099723,3,76.3659258655536,0.689536550406116,4.43213296398892,12.5058828378335,5.19557523727417,400.775769551595,400.478942871094,0.324637871677517
+3075,306274,3793198,306374,3793098,74,30,17.3684210526316,0.0445401026479712,9.78465622056577,0.496699330259113,32.7465448606884,0.0140322381587459,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,11.808125409213,10.3911504745483,400.239841037326,400.115814208984,0.255390562786591
+3076,306274,3793098,306374,3792998,75,30,10.5263157894737,0.0512886030491789,10.3602527416769,0.634920634920635,49.0149584653305,0.0215760430761404,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,8.05362923940023,5.19557523727417,400.026913960775,399.993988037109,0.0679819730416798
+3077,306274,3792998,306374,3792898,76,30,2.49307479224377,0.012147300722174,5.75224394989953,0.226190476190476,51.1704811206788,0.0254345479201789,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.940858453473132,9.41828254847645,41.5425389794742,23.2353191375732,400.037960476345,400.006134033203,0.0730938237133752
+3078,306274,3792898,306374,3792798,77,30,6.09418282548476,0.0296934017653141,8.86754745087138,0.438095238095238,47.047934173564,0.0260944169557588,0.074792243767313,7.4792243767313,3,74.421742658567,0.673234925497842,5.26315789473684,23.0173764935246,0,400.191637674967,400.070556640625,0.162519104654667
+3079,306274,3792798,306374,3792698,78,30,26.8421052631579,0.0688347040923191,12.2763302105262,0.537859195402299,16.1999800414596,0.0232329575508055,0.0605263157894737,6.05263157894737,6,55.689519139135,0.438219732337379,1.84210526315789,8.77113093500552,0,400.46334499783,400.289672851562,0.258780021876441
+3080,306274,3792698,306374,3792598,79,30,10.2493074792244,0.0332926019792916,9.95453545734795,0.333333333333333,37.5894668133316,0.0184409218867954,0.0637119113573407,6.37119113573407,6,53.0927992107868,0.436308349769888,1.38504155124654,19.896290447401,10.3911504745483,400.883328755697,400.669494628906,0.225959104429599
+3081,306274,3792598,306374,3792498,80,30,9.41828254847645,0.0229449013641064,8.43332378513386,0.311805555555556,14.6953058096335,0.0206466123454548,0.0581717451523546,5.81717451523546,5,55.6842946798304,0.502297794117647,1.66204986149584,16.5196300688244,5.19557523727417,401.121229383681,401.064910888672,0.10142868949289
+3082,306274,3792498,306374,3792398,81,30,16.8975069252078,0.0823317048947346,14.5070679038217,0.685813492063492,20.7823008831198,0.0241194462433364,0.119113573407202,11.9113573407202,7,66.8838390547668,0.526991614255765,3.04709141274238,25.3869530433832,5.19557523727417,401.073847452799,400.969177246094,0.133853100722806
+3083,306274,3792398,306374,3792298,82,30,32.8947368421053,0.0482035742943411,9.42850839772287,0.422413545908126,15.5605434939326,0.0212747801864153,0.15,15,6,77.1435687468973,0.699879951980792,7.63157894736842,10.5569169061226,0,400.993075900608,400.935882568359,0.108374763897391
+3084,306274,3792298,306374,3792198,83,30,36.2880886426593,0.0589369035038811,10.5334881393932,0.588226045135035,14.0592853350243,0.0156187496866052,0.0415512465373961,4.15512465373961,3,58.473768789882,0.573173935890699,1.66204986149584,11.9299916585286,10.3911504745483,401.026542663574,400.955413818359,0.0947125100504029
+3085,306274,3792198,306374,3792098,84,30,28.2548476454294,0.0688347040923191,10.0698247888562,0.610656130268199,37.471602534707,0.0280580724277336,0.135734072022161,13.5734072022161,4,80.7585368649013,0.76583485958486,10.2493074792244,6.51513398423487,0,401.14732615153,401.055694580078,0.117325202952769
+3086,306274,3792098,306374,3791998,85,30,48.7534626038781,0.158364809415009,21.2812167552632,0.681561996779388,15.5867255930625,0.0459474771053306,0.409972299168975,40.9972299168975,4,90.562427018773,0.774855776726781,20.4986149584488,6.63335181249155,0,401.414404975043,401.262115478516,0.299693224162875
+3087,306274,3791998,306374,3791898,86,30,39.2105263157895,0.100552655977996,15.1603446324931,0.626811104264375,25.9778760259628,0.0448419800486112,0.442105263157895,44.2105263157895,2,96.9109314544643,0.734023128423615,43.6842105263158,7.83124709980828,0,401.994743347168,401.687225341797,0.369621960228172
+3088,306274,3791898,306374,3791798,87,30,31.8559556786704,0.0443472883507938,9.47445857997979,0.346560846560847,12.2260315627111,0.0446863669886648,0.42382271468144,42.382271468144,5,88.8124031922967,0.746766356419381,22.4376731301939,6.65019476024154,0,402.524810791016,402.363159179688,0.251962544766199
+3089,306274,3791798,306374,3791698,88,30,45.4293628808864,0.0885403252638457,12.3668705513838,0.423166270882806,20.910221788199,0.0486715347920694,0.523545706371191,52.3545706371191,2,96.52446669006,0.700166112956811,46.814404432133,5.43451338470298,0,402.791076660156,402.662170410156,0.173047958926265
+3090,306274,3791698,306374,3791598,89,30,39.3351800554017,0.0958287056971501,18.303798499542,0.599320023148148,21.1021030513054,0.039150757205406,0.409972299168975,40.9972299168975,7,86.2996087383987,0.668537671292206,15.5124653739612,5.09676678116257,0,402.873304578993,402.785858154297,0.26380052970751
+3091,306274,3791598,306374,3791498,90,30,37.8947368421053,0.0971784057773917,15.6238035254823,0.431025480367586,15.5867255844029,0.0308621910463683,0.178947368421053,17.8947368421053,6,80.7545101442591,0.682719241542771,11.0526315789474,4.88669961340287,0,403.101854960124,402.818786621094,0.402829393393575
+3092,306274,3791498,306374,3791398,91,30,4.98614958448753,0.012147300722174,4.39887921038408,0.243055555555556,23.4246085028145,0.00976497244580495,0.0554016620498615,5.54016620498615,1,81.9526157930578,0.96584996689055,5.54016620498615,12.062561249733,5.19557523727417,403.817372639974,403.437866210938,0.55678294076269
+3093,306274,3791398,306374,3791298,92,30,0,NA,NA,NA,NA,0.0133185878777387,0.07202216066482,7.20221606648199,3,73.4563483852295,0.76345103749545,3.601108033241,63.1780228248009,52.2148818969727,404.588297526042,404.221405029297,0.415077451306247
+3094,306274,3791298,306374,3791198,93,30,15.5124653739612,0.0377916022467634,8.57782024795489,0.509049379739035,25.5748188251712,0.0270436181963507,0.0914127423822715,9.14127423822715,3,77.4756303819698,0.816565040650407,5.81717451523546,4.53105672200521,0,405.262264675564,405.1015625,0.288445803213588
+3095,306274,3791198,306374,3791098,94,30,29.2105263157895,0.0998778059378748,9.75252154497445,0.426028663892742,25.7638160485247,0.0471581995941386,0.355263157894737,35.5263157894737,4,90.1107005116423,0.741496598639456,21.3157894736842,11.8762985653347,0,405.362930297852,405.151641845703,0.230405555178393
+3096,306274,3791098,306374,3790998,95,30,0,NA,NA,NA,NA,0.0826525755918009,0.670360110803324,67.0360110803324,4,96.0012674563927,0.77851937235071,59.8337950138504,58.9128085798468,14.6953058242798,405.017130533854,404.874816894531,0.217931189362882
+3097,306274,3790998,306374,3790898,96,30,0,NA,NA,NA,NA,0.0489489941198606,0.385041551246537,38.5041551246537,5,88.1316684870267,0.705504717315741,14.1274238227147,117.372394259885,60.5902976989746,404.825220743815,404.763763427734,0.106782405012096
+3098,306274,3790898,306374,3790798,97,30,0,NA,NA,NA,NA,0.0249606735233303,0.127423822714681,12.7423822714681,4,75.276116646521,0.720838420838421,4.15512465373961,111.487795954165,77.2377777099609,404.854658338759,404.783020019531,0.171069980377489
+3099,306274,3790798,306374,3790698,98,30,2.10526315789474,0.0215952012838648,6.90659107741318,0.4375,NA,0.0083221582694669,0.0421052631578947,4.21052631578947,2,74.3517300133401,0.826007326007326,3.94736842105263,74.2152905464172,21.4219055175781,405.407353719076,405.008666992188,0.640138259834305
+3100,306274,3790698,306374,3790598,99,30,13.8504155124654,0.0337425020060388,7.9965147387137,0.499542124542125,19.09967573191,0.0335897581511989,0.204678362573099,20.4678362573099,6,83.5436913738518,0.693328550932568,14.0350877192982,26.196436555045,0,406.607424418132,406.272064208984,0.333896179292656
+3101,306374,3800598,306474,3800498,0,31,67.8670360110803,0.22045101310612,24.1189412995604,0.795471050373011,12.1230087272512,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.854307174683,383.758087158203,0.125968950865949
+3102,306374,3800498,306474,3800398,1,31,18.6842105263158,0.1916574113943,28.2285816766059,0.730046948356808,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.91886138916,383.811798095703,0.140588985904083
+3103,306374,3800398,306474,3800298,2,31,40.1662049861496,0.39141302327005,27.5057999372931,0.772413793103448,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.174953460693,383.981689453125,0.179292121328941
+3104,306374,3800298,306474,3800198,3,31,33.2409972299169,0.0647856038515944,11.2613923089463,0.568276972624799,12.7146822981463,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.408111572266,384.277252197266,0.146531086089593
+3105,306374,3800198,306474,3800098,4,31,40.4432132963989,0.197056211715266,18.1437650605922,0.673529411764706,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.602296829224,384.408935546875,0.180016608565392
+3106,306374,3800098,306474,3799998,5,31,12.1052631578947,0.0620862036911113,19.04044169344,0.541666666666667,30.2951490982217,0.016177398270776,0.0789473684210526,7.89473684210526,3,59.8573695167526,0.552941176470588,5.26315789473684,22.3233760197957,16.4298515319824,384.925610860189,384.690887451172,0.264580850956809
+3107,306374,3799998,306474,3799898,6,31,16.0664819944598,0.07828260465401,11.9917089734753,0.67134107027724,14.6953058096335,0.0120898709263559,0.0637119113573407,6.37119113573407,2,74.6659082073633,0.821992110453649,3.8781163434903,13.0450104215871,5.19557523727417,385.290229797363,385.148590087891,0.183977416154051
+3108,306374,3799898,306474,3799798,7,31,18.8365650969529,0.183559210912851,24.8987263279556,0.769607843137255,NA,0.00817624580762781,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,11.4655916293462,5.19557523727417,385.513829549154,385.300842285156,0.26729260736302
+3109,306374,3799798,306474,3799698,8,31,3.32409972299169,0.0161964009628986,5.3418526495192,0.21969696969697,26.4923394249063,0.0142203417128656,0.0803324099722992,8.03324099722992,2,84.0196092250209,0.745513970776724,7.75623268698061,8.83375629885443,5.19557523727417,385.954710006714,385.473815917969,0.500932042814328
+3110,306374,3799698,306474,3799598,9,31,0,NA,NA,NA,NA,0.00883530061963891,0.0447368421052632,4.47368421052632,3,64.8640491211159,0.706887052341598,2.10526315789474,46.8699952293845,10.3911504745483,386.715100606283,386.135528564453,0.736031588684139
+3111,306374,3799598,306474,3799498,10,31,0,NA,NA,NA,NA,0.00756684488099563,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,30.7575000762939,26.4923400878906,387.436922073364,386.821746826172,0.549855941047319
+3112,306374,3799498,306474,3799398,11,31,23.8227146814404,0.0773828046005156,11.5587017561788,0.665793903951799,15.586725606918,0.0162963487813527,0.116343490304709,11.6343490304709,4,78.9205131794088,0.760916596759239,8.58725761772853,4.87572244235447,0,387.614675521851,387.300933837891,0.297672168737371
+3113,306374,3799398,306474,3799298,12,31,40.7202216066482,0.396811823591016,32.3819512354192,0.824263038548753,NA,0.0225515325778726,0.0831024930747922,8.31024930747922,4,69.7593580989402,0.710648005425735,4.98614958448754,4.72920926411947,0,387.513145446777,387.312866210938,0.232802210963022
+3114,306374,3799298,306474,3799198,13,31,78.1578947368421,0.400860923831741,24.5595721562455,0.847212598879843,15.5867256623399,-0.0054682516019583,0.0421052631578947,4.21052631578947,1,79.0554595032226,0.913003663003663,4.21052631578947,0,0,387.325010299683,387.195617675781,0.156836756234841
+3115,306374,3799198,306474,3799098,14,31,12.1883656509695,0.0197956011768761,4.93501822584045,0.363425925925926,20.3307281389081,0.00459170755403998,0.121883656509695,12.1883656509695,2,85.6002784218713,0.815329525108705,10.2493074792244,21.480857686563,0,387.302266438802,387.206573486328,0.1295531981501
+3116,306374,3799098,306474,3798998,15,31,6.37119113573407,0.0620862036911113,10.2639410280072,0.710144927536232,NA,0.0130108324340848,0.03601108033241,3.601108033241,4,52.5609917571831,0.596583652618135,1.66204986149584,47.7410562221821,11.6176595687866,387.662673950195,387.419464111328,0.292688598052565
+3117,306374,3798998,306474,3798898,16,31,2.21606648199446,0.0107976006419324,4.3568688968833,0.263888888888889,11.6176592829322,0.0114307142025773,0,0,0,NA,NA,0,NA,NA,388.118268330892,388.001098632812,0.189027884396765
+3118,306374,3798898,306474,3798798,17,31,2.10526315789474,0.0107976006419324,5.19557516882196,0.222222222222222,115.360490780094,0.00806793946195333,0,0,0,NA,NA,0,NA,NA,388.381519317627,388.238708496094,0.282026978310342
+3119,306374,3798798,306474,3798698,18,31,0,NA,NA,NA,NA,0.0055794117318119,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,29.1989607129778,20.7823009490967,388.825798034668,388.2578125,0.774145474248531
+3120,306374,3798698,306474,3798598,19,31,0,NA,NA,NA,NA,0.00627575672796439,0,0,0,NA,NA,0,NA,NA,389.431350708008,388.506591796875,1.17102697278482
+3121,306374,3798598,306474,3798498,20,31,4.98614958448753,0.0161964009628986,6.88125800718122,0.301256613756614,22.6856469251607,0.0142791742467848,0.0858725761772853,8.58725761772853,3,74.0518223621108,0.803090909090909,4.15512465373961,11.4206255020634,0,389.792017618815,388.767791748047,1.06253598994705
+3122,306374,3798498,306474,3798398,21,31,13.1578947368421,0.0674850040120775,9.75370985776911,0.529891304347826,69.8993154158429,-0.00613532389882159,0,0,0,NA,NA,0,NA,NA,390.425508499146,389.430908203125,0.897464336311187
+3123,306374,3798398,306474,3798298,22,31,21.3296398891967,0.207853812357199,18.537550625095,0.837662337662338,NA,0.0303314406029078,0.235457063711911,23.5457063711911,8,76.5700432704005,0.662179671753527,6.37119113573407,19.2707873961505,0,391.276107788086,390.684234619141,0.684268452456189
+3124,306374,3798298,306474,3798198,23,31,63.1578947368421,0.615463236590147,31.8519357712226,0.896929824561404,NA,0.0393908386975862,0.229916897506925,22.9916897506925,9,76.5635494666173,0.646650026917242,6.92520775623269,7.27848035168935,0,391.896755218506,391.613250732422,0.320900174047519
+3125,306374,3798198,306474,3798098,24,31,21.8836565096953,0.071084204226055,11.168137181517,0.397619047619048,25.0864561472774,0.0169085168723803,0.0969529085872576,9.69529085872576,5,72.0953008664683,0.599058599534589,4.15512465373961,4.20205293382917,0,392.041353861491,391.898986816406,0.19503893053156
+3126,306374,3798098,306474,3797998,25,31,32.1052631578947,0.0823317048947346,12.2551202975755,0.577929292929293,24.3255818670076,0.0228954767724932,0.102631578947368,10.2631578947368,7,64.7709707280185,0.519963907060681,2.63157894736842,6.9045980160053,0,392.320690155029,392.010162353516,0.376822883032023
+3127,306374,3797998,306474,3797898,26,31,26.5927977839335,0.129571207703189,17.6832545019781,0.498207885304659,10.3911504415599,0.0283188019510568,0.182825484764543,18.2825484764543,5,81.9858358840734,0.733971997052321,9.69529085872576,8.50303951899211,0,393.629682540894,392.765319824219,0.882102590159783
+3128,306374,3797898,306474,3797798,27,31,29.0858725761773,0.0944790056169086,13.1996573606565,0.694104107897211,19.0504423722772,0.0249594646810191,0.074792243767313,7.4792243767313,5,62.8489893295861,0.547556050689319,3.32409972299169,16.6229200892978,0,395.025377909342,394.166625976562,1.01070212235302
+3129,306374,3797798,306474,3797698,28,31,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.00645436391538053,0.0831024930747922,8.31024930747922,3,78.0909937082952,0.710648005425735,6.64819944598338,36.8484668572744,5.19557523727417,396.600389480591,395.667938232422,0.863326735938152
+3130,306374,3797698,306474,3797598,29,31,50.2631578947368,0.257792715326136,16.9540337378498,0.695199275362319,15.5867255064659,0.0199466068514372,0.0921052631578947,9.21052631578947,6,65.6895922875893,0.544227886056971,2.63157894736842,11.3929219245911,0,397.222371419271,397.013671875,0.658208057902528
+3131,306374,3797598,306474,3797498,30,31,52.0775623268698,0.507487230170823,29.3715226789255,0.88918439716312,NA,0.0468311964603879,0.437673130193906,43.7673130193906,2,93.9750049946257,0.705656531340241,28.5318559556787,9.01114240477357,0,393.735780715942,389.383514404297,3.40443089568902
+3132,306374,3797498,306474,3797398,31,31,43.4903047091413,0.423805825195847,46.6817031130938,0.765392781316348,NA,-0.0138906065412988,0.0775623268698061,7.75623268698061,2,80.2681519206203,0.783183183183183,6.64819944598338,7.37054491043091,0,396.588055928548,394.116973876953,4.32880136744181
+3133,306374,3797398,306474,3797298,32,31,48.4764542936288,0.157465009361514,16.5648105241208,0.68287037037037,12.1230087272512,0.0281311808580074,0.354570637119114,35.4570637119114,3,89.6593164990141,0.760614489123027,15.2354570637119,13.7026927471161,0,398.646600723267,398.284484863281,0.424341229797407
+3134,306374,3797298,306474,3797198,33,31,50,0.256443015245895,16.7120954090451,0.423280423280423,20.7823006752878,0.148473985659841,0.984210526315789,98.421052631579,1,99.9567986794946,0.642689233662437,98.421052631579,9.80789919333025,0,399.098345438639,398.894470214844,0.247789251796155
+3135,306374,3797198,306474,3797098,34,31,34.6260387811634,0.0843562550150969,13.1567347557998,0.572754708881699,20.0966614336635,0.0408519309885101,0.332409972299169,33.2409972299169,3,94.2998804068794,0.876318093570368,32.1329639889197,2.43789966901143,0,399.281955718994,399.035125732422,0.288143821291418
+3136,306374,3797098,306474,3796998,35,31,25.207756232687,0.0614113536509906,12.1625192039196,0.516049382716049,23.2752760342261,0.0164384733491658,0.0581717451523546,5.81717451523546,4,60.7843829578809,0.635018382352941,1.93905817174515,7.74172076724824,0,399.130630493164,398.877593994141,0.330379364554414
+3137,306374,3796998,306474,3796898,36,31,6.09418282548476,0.0593868035306282,9.89905902196283,0.704545454545455,NA,0.0387486724366656,0.346260387811634,34.6260387811634,2,92.7534599851098,0.885443888598522,25.4847645429363,33.8475366821289,10.3911504745483,398.89965057373,398.832336425781,0.111356295624494
+3138,306374,3796898,306474,3796798,37,31,1.05263157894737,0.0053988003209662,1.73185840692665,0.111111111111111,10.3911504415599,0.0462277692491051,0.310526315789474,31.0526315789474,1,95.703752747636,0.932225155168724,31.0526315789474,29.8233071262554,5.19557523727417,398.961552937826,398.876708984375,0.167553652408951
+3139,306374,3796798,306474,3796698,38,31,0,NA,NA,NA,NA,0.0448957915427363,0.299168975069252,29.9168975069252,3,93.9511905180538,0.926826796392014,29.3628808864266,76.2523545159234,36.369026184082,399.515319824219,399.188323974609,0.349941201606304
+3140,306374,3796698,306474,3796598,39,31,0,NA,NA,NA,NA,0.000279781741004339,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,32.7219829559326,25.977876663208,399.096841812134,398.281524658203,0.79700132040082
+3141,306374,3796598,306474,3796498,40,31,10.5263157894737,0.102577206098358,20.6932581764794,0.578947368421053,NA,0.0525268614025292,0.470914127423823,47.0914127423823,3,96.063612813653,0.800729304317281,44.8753462603878,27.071727029015,0,396.971038818359,396.468353271484,1.12284740016834
+3142,306374,3796498,306474,3796398,41,31,31.3019390581717,0.101677406044863,15.092989214303,0.679433221099888,17.3185839999892,0.058730283780462,0.421052631578947,42.1052631578947,3,91.790771949765,0.851417399804496,20.4986149584488,6.80921349713677,0,396.276355743408,396.059539794922,0.301739728480871
+3143,306374,3796398,306474,3796298,42,31,15,0.0384664522868842,7.14235744507311,0.310714285714286,18.2390914290721,0.0342119567492007,0.228947368421053,22.8947368421053,2,91.0303613860151,0.866123527468898,20.2631578947368,20.9112723778034,5.19557523727417,395.922294616699,395.596710205078,0.380878889515373
+3144,306374,3796298,306474,3796198,43,31,29.0858725761773,0.141718508425363,24.067741821099,0.69212962962963,10.3911504415599,0.026834907733057,0.18005540166205,18.005540166205,5,78.8995001951792,0.676213824443913,7.4792243767313,9.81586176798894,0,395.143484115601,394.601928710938,0.613140400724877
+3145,306374,3796198,306474,3796098,44,31,44.8753462603878,0.218651412999131,15.1544017165653,0.40527950310559,31.1734510129318,0.00765065165254167,0.0470914127423823,4.70914127423823,4,60.4087524907143,0.580232558139535,2.49307479224377,1.85344356649062,0,394.084988911947,393.715362548828,0.564060090319616
+3146,306374,3796098,306474,3795998,45,31,0,NA,NA,NA,NA,0.0147499321395739,0.105263157894737,10.5263157894737,2,82.1079904030804,0.751633986928105,8.03324099722992,64.2896843960411,36.7382659912109,393.583429336548,393.41748046875,0.223884168399201
+3147,306374,3795998,306474,3795898,46,31,12.3684210526316,0.0634359037713529,14.9188213296545,0.551215277777778,16.4298513045218,0.0331096123267344,0.176315789473684,17.6315789473684,3,86.5497057180355,0.854728161437427,13.1578947368421,13.6531019495494,0,393.492144266764,393.414245605469,0.097051881621656
+3148,306374,3795898,306474,3795798,47,31,7.4792243767313,0.0242946014443479,8.35077421214235,0.273148148148148,41.5646015584077,0.0268372172923337,0.124653739612188,12.4653739612188,3,81.002892750276,0.834651898734177,9.14127423822715,17.4288562880622,0,393.74901008606,393.564178466797,0.190360548597692
+3149,306374,3795798,306474,3795698,48,31,10.803324099723,0.0150395151798344,4.85640351099566,0.205662393162393,17.1409851214794,0.0282932959458358,0.160664819944598,16.0664819944598,3,84.8053401149271,0.857029702970297,10.2493074792244,8.89399285152041,0,394.038510640462,393.925079345703,0.148329697018379
+3150,306374,3795698,306474,3795598,49,31,22.7146814404432,0.0316215447370878,7.41496640561824,0.415064175590491,15.3320342535846,0.0197126203085413,0.0609418282548476,6.09418282548476,3,66.8069831988221,0.686795072011105,2.77008310249307,4.55806944587014,0,394.249248504639,394.093841552734,0.172609530503973
+3151,306374,3795598,306474,3795498,50,31,46.5789473684211,0.119448457101377,15.9194551432739,0.365127995642702,15.5867256623399,0.0159248582615156,0.0342105263157895,3.42105263157895,2,66.6860336491831,0.71238268240993,2.63157894736842,1.5986385345459,0,394.56586710612,394.436614990234,0.228823730751706
+3152,306374,3795498,306474,3795398,51,31,12.4653739612188,0.0404910024072465,7.97841935111959,0.348290598290598,17.3185840692665,0.0146060317506617,0.0581717451523546,5.81717451523546,1,82.5214449195341,1,5.81717451523546,21.9459200359526,10.3911504745483,395.194561004639,394.830963134766,0.560728827052424
+3153,306374,3795398,306474,3795298,52,31,0,NA,NA,NA,NA,0.0143503562587909,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,56.0576010311351,47.0479354858398,396.308959960938,395.920166015625,0.62005084576193
+3154,306374,3795298,306474,3795198,53,31,2.49307479224377,0.0242946014443479,8.32152644355766,0.425925925925926,NA,0.0114458781811316,0,0,0,NA,NA,0,NA,NA,397.052236557007,396.650268554688,0.388057096526441
+3155,306374,3795198,306474,3795098,54,31,0,NA,NA,NA,NA,0.0103578953658909,0,0,0,NA,NA,0,NA,NA,397.22131729126,396.964996337891,0.273362129890471
+3156,306374,3795098,306474,3794998,55,31,44.0443213296399,0.214602312758407,26.1215220443426,0.785801564027371,20.7823006752878,0.00408080125681381,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,4.45335020337786,0,397.107426961263,396.942749023438,0.212603986790547
+3157,306374,3794998,306474,3794898,56,31,0,NA,NA,NA,NA,0.00560334147948199,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,100.879829406738,100.879829406738,397.099676132202,396.946594238281,0.156800198337975
+3158,306374,3794898,306474,3794798,57,31,0,NA,NA,NA,NA,0.0148291915996517,0.0277008310249307,2.77008310249307,1,72.175958031556,1,2.77008310249307,87.1709922790527,77.9336318969727,397.265118916829,397.040344238281,0.35066989371607
+3159,306374,3794798,306474,3794698,58,31,33.4210526315789,0.342823820381354,38.8323327338857,0.793963254593176,NA,0.0182872262695271,0.102631578947368,10.2631578947368,3,81.8441687533805,0.708549515001128,7.89473684210526,8.69161663299952,0,397.478343963623,397.111755371094,0.513002758749757
+3160,306374,3794698,306474,3794598,59,31,8.86426592797784,0.0431904025677296,10.074739214839,0.555555555555556,65.7194052180872,-0.0122008306142639,0.127423822714681,12.7423822714681,4,77.3933345138153,0.720838420838421,6.64819944598338,18.5010354829871,0,397.795038859049,397.20947265625,0.850071670520792
+3161,306374,3794598,306474,3794498,60,31,6.09418282548476,0.0296934017653141,6.62792797116436,0.611111111111111,31.1734510129318,0.00636458554867925,0.0443213296398892,4.43213296398892,3,63.5616037655817,0.694806763285024,3.04709141274238,14.4458105266094,7.34765291213989,398.090608596802,397.398223876953,0.793121097929687
+3162,306374,3794498,306474,3794398,61,31,2.77008310249307,0.026994001604831,6.09178977307209,0.6,NA,-0.0760853873153663,0,0,0,NA,NA,0,NA,NA,398.162259419759,397.630706787109,0.593221244370888
+3163,306374,3794398,306474,3794298,62,31,3.94736842105263,0.0404910024072465,7.90401905111904,0.644444444444444,NA,-0.0477411126580065,0,0,0,NA,NA,0,NA,NA,398.596843719482,398.026214599609,0.666225288561764
+3164,306374,3794298,306474,3794198,63,31,65.0969529085873,0.317179518856764,19.4155149549861,0.605470645317807,25.9778758441098,-0.0780166965225483,0,0,0,NA,NA,0,NA,NA,399.982879638672,399.175048828125,1.17190910680512
+3165,306374,3794198,306474,3794098,64,31,24.9307479224377,0.242946014443479,26.9937956843747,0.798148148148148,NA,-0.0366994917414579,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,13.1564826965332,11.6176595687866,400.811290740967,399.757446289062,1.0590638607943
+3166,306374,3794098,306474,3793998,65,31,0,NA,NA,NA,NA,0.0173974109075867,0.0969529085872576,9.69529085872576,4,72.3128889359231,0.713613285381849,4.98614958448753,85.8934116908482,37.8243598937988,400.070826212565,399.707214355469,0.664218612173165
+3167,306374,3793998,306474,3793898,66,31,12.6315789473684,0.0647856038515944,8.75691505596159,0.361702127659574,44.0859174289005,0.0340016327454769,0.244736842105263,24.4736842105263,4,86.6919431568205,0.832500734645901,15.7894736842105,23.5390246504097,0,399.557729721069,399.452392578125,0.184690618824317
+3168,306374,3793898,306474,3793798,67,31,38.2271468144044,0.186258611073334,18.3961521479061,0.627906976744186,31.6034502677644,0.0455605028340834,0.365650969529086,36.5650969529086,3,91.0239590310097,0.823388718766421,23.8227146814404,8.85052808125814,0,399.463185628255,399.428436279297,0.0884853612049187
+3169,306374,3793798,306474,3793698,68,31,15.5124653739612,0.0755832044935268,10.9495165081274,0.508385744234801,14.6953058096335,0.0504636652072714,0.407202216066482,40.7202216066482,4,90.294018237978,0.742886426015356,19.3905817174515,18.1857198695747,0,399.596334457397,399.476837158203,0.240392155777329
+3170,306374,3793698,306474,3793598,69,31,6.64819944598338,0.0647856038515944,11.669958694905,0.680555555555555,NA,0.0257460939082549,0.121883656509695,12.1883656509695,7,75.9846700009686,0.63065905021741,8.58725761772853,22.2414990013296,0,399.982797622681,399.684875488281,0.460141725402454
+3171,306374,3793598,306474,3793498,70,31,6.05263157894737,0.0620862036911113,11.682847980994,0.666666666666667,NA,0.0227261635472563,0.05,5,2,73.9613297988082,0.818511796733212,4.21052631578947,25.931751552381,11.6176595687866,400.501553853353,399.930725097656,0.707863916378592
+3172,306374,3793498,306474,3793398,71,31,27.1468144044321,0.0377916022467634,7.96903020948677,0.473179120132902,17.1446703170209,0.0223238898107585,0.0526315789473684,5.26315789473684,5,54.4115697671805,0.563218390804598,2.49307479224377,8.34628150337621,0,401.160013198853,400.467437744141,0.447638372663188
+3173,306374,3793398,306474,3793298,72,31,4.70914127423823,0.0152966009094042,5.22210367869688,0.377314814814815,26.5273584470385,0.0171315609816064,0.0609418282548476,6.09418282548476,3,76.6770728051208,0.780756550407774,5.54016620498615,27.9986209869385,0,401.348538716634,401.218414306641,0.161958309672507
+3174,306374,3793298,306474,3793198,73,31,26.5927977839335,0.0863808051354593,11.8558242129901,0.448317598644396,17.7388033463767,0.0164169466902258,0.07202216066482,7.20221606648199,1,84.8544079576361,0.894867127775755,7.20221606648199,19.3603821167579,5.19557523727417,400.908937454224,400.502227783203,0.355051152590372
+3175,306374,3793198,306474,3793098,74,31,30.7894736842105,0.0631659637553046,10.4823970976675,0.453843062703822,19.1946742690072,0.0193023244150003,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,9.37665128707886,7.34765291213989,400.465759277344,400.19482421875,0.349024042059407
+3176,306374,3793098,306474,3792998,75,31,31.0249307479224,0.151166408987054,21.251568631041,0.749066754501537,20.7823006752878,0.028332531838107,0.0498614958448753,4.98614958448753,4,59.1854125664721,0.649173955296404,2.21606648199446,14.5574180814955,0,400.248773574829,400.071014404297,0.22580961688401
+3177,306374,3792998,306474,3792898,76,31,28.5318559556787,0.27803821652976,25.6014086246971,0.831715210355987,NA,0.0305700182175932,0.0775623268698061,7.75623268698061,2,77.589067087699,0.807273940607274,4.43213296398892,19.9822340692793,0,400.252939860026,400.083099365234,0.188797524184032
+3178,306374,3792898,306474,3792798,77,31,30.7479224376731,0.299633417813624,28.0757053024337,0.786786786786787,NA,0.0249515301538673,0.0581717451523546,5.81717451523546,5,64.3295596531706,0.601838235294118,3.8781163434903,12.4072203863235,0,400.481897354126,400.224792480469,0.249409970907858
+3179,306374,3792798,306474,3792698,78,31,36.0526315789474,0.0924544554965462,15.0276006992397,0.546516754850088,15.6876329938774,0.0262997924280315,0.0842105263157895,8.42105263157895,6,61.5946458091562,0.559018567639257,2.36842105263158,11.7065499424934,0,400.792744954427,400.550933837891,0.294768063319386
+3180,306374,3792698,306474,3792598,79,31,39.612188365651,0.128671407649695,17.9973903231135,0.562550322061192,14.6725398163281,0.0278251282936072,0.202216066481994,20.2216066481994,4,87.3452441425393,0.813937717013889,16.3434903047091,7.32861038756697,0,401.118371963501,400.833312988281,0.261059065781503
+3181,306374,3792598,306474,3792498,80,31,27.7008310249307,0.0674850040120775,12.2925463085624,0.626363863863864,15.5867256623399,0.0281051154018407,0.149584487534626,14.9584487534626,5,81.1325962538859,0.759763230709958,11.3573407202216,13.1940386736834,0,401.158999125163,401.069183349609,0.137259162631249
+3182,306374,3792498,306474,3792398,81,31,17.4515235457064,0.170062210110435,17.5365093229121,0.78042328042328,NA,0.0265237134351846,0.193905817174515,19.3905817174515,6,77.8927969293042,0.717598413097533,7.20221606648199,26.050366960253,0,401.005100250244,400.932189941406,0.100334329062449
+3183,306374,3792398,306474,3792298,82,31,32.8947368421053,0.168712510030194,16.2693058985603,0.599789915966387,15.5867255064659,0.0179615624705452,0.0736842105263158,7.36842105263158,5,70.3137703779001,0.640151515151515,4.73684210526316,6.92257251058306,0,400.923472086589,400.903900146484,0.0470525806046488
+3184,306374,3792298,306474,3792198,83,31,43.4903047091413,0.211902912597923,19.9460354433912,0.624444444444444,10.3911503376439,0.0173110508724291,0.119113573407202,11.9113573407202,2,87.0058693740548,0.889631376659679,11.3573407202216,7.1784680832264,0,400.999725341797,400.925323486328,0.0986233250409684
+3185,306374,3792198,306474,3792098,84,31,62.0498614958449,0.302332817974107,27.8759347398028,0.797076670354353,25.9778758441098,0.0555732712453396,0.448753462603878,44.8753462603878,3,92.998019925043,0.817375467943746,22.4376731301939,3.40518303859381,0,401.227073669434,401.065551757812,0.172291076325043
+3186,306374,3792098,306474,3791998,85,31,52.6315789473684,0.256443015245895,18.099073105568,0.546197266785502,11.6176592829322,0.051770229507353,0.487534626038781,48.7534626038781,4,92.4135535493775,0.723808731808732,22.1606648199446,5.06756248799237,0,401.438985188802,401.261260986328,0.235623487879357
+3187,306374,3791998,306474,3791898,86,31,81.0526315789474,0.831415249428795,40.4331637217158,0.874458874458874,NA,0.0550401881876353,0.536842105263158,53.6842105263158,3,97.2154854232301,0.698069081314464,52.1052631578947,1.73444976526148,0,401.935501098633,401.53857421875,0.448994548928905
+3188,306374,3791898,306474,3791798,87,31,62.8808864265928,0.204254612143221,16.3288029168641,0.571548821548821,19.4160421172781,0.0539600084618977,0.54016620498615,54.016620498615,2,95.1041127424102,0.783731611528989,36.2880886426593,3.28743281975771,0,402.602221171061,402.326263427734,0.287171513405482
+3189,306374,3791798,306474,3791698,88,31,60.9418282548476,0.197956011768761,12.8375124432397,0.32642089093702,22.5141592346246,0.0619165629639943,0.570637119113573,57.0637119113573,3,97.3493855290891,0.768921081445296,55.6786703601108,3.23576472337963,0,402.857263565063,402.695953369141,0.140492645736016
+3190,306374,3791698,306474,3791598,89,31,43.7673130193906,0.213252612678165,27.2290818164095,0.756567614125754,10.3911503376439,0.0738144320361007,0.825484764542936,82.5484764542936,2,98.3808235264667,0.714002772826302,76.1772853185596,5.23946099633338,0,402.744247436523,402.687408447266,0.100760462701709
+3191,306374,3791598,306474,3791498,90,31,21.3157894736842,0.109325706499566,14.4852236585577,0.447257383966245,33.2679134207198,0.0475949214091279,0.455263157894737,45.5263157894737,3,92.7615453554182,0.729529174806536,23.6842105263158,7.20129748162507,0,402.827268600464,402.643096923828,0.246035221412966
+3192,306374,3791498,306474,3791398,91,31,4.43213296398892,0.0431904025677296,9.63167187506443,0.583333333333333,NA,0.0216122434090454,0.138504155124654,13.8504155124654,6,72.353666888909,0.713221108379043,6.37119113573407,41.3904093456268,0,403.496757507324,403.154235839844,0.588699909221861
+3193,306374,3791398,306474,3791298,92,31,4.98614958448753,0.0242946014443479,6.92657130356637,0.510416666666667,58.0882968607983,0.0257763833562971,0.191135734072022,19.1135734072022,5,81.4877913684128,0.744565832672931,11.3573407202216,38.9098801612854,0,404.57280921936,403.981536865234,0.639569246509078
+3194,306374,3791298,306474,3791198,93,31,34.0720221606648,0.332026219739422,30.1216917513371,0.822493224932249,NA,0.0230935023547894,0.0470914127423823,4.70914127423823,3,70.2407470177968,0.832093023255814,4.15512465373961,16.2601872892941,0,405.059857686361,404.780181884766,0.263386597819367
+3195,306374,3791198,306474,3791098,94,31,15,0.153865809147537,19.2992822507266,0.751461988304094,NA,0.0382743847253503,0.271052631578947,27.1052631578947,4,86.7062383300243,0.762708556932384,11.8421052631579,33.784960982869,0,405.102121353149,405.006591796875,0.182795975881671
+3196,306374,3791098,306474,3790998,95,31,7.20221606648199,0.0701844041725607,13.7437444427555,0.66025641025641,NA,0.0354869980127574,0.204986149584488,20.4986149584488,7,77.2258782043434,0.612972393460198,8.31024930747922,44.4239156310623,5.19557523727417,404.939577738444,404.858551025391,0.117063392118753
+3197,306374,3790998,306474,3790898,96,31,0,NA,NA,NA,NA,0.0402426201301315,0.332409972299169,33.2409972299169,4,88.6309065051252,0.677052799878183,15.2354570637119,102.638303375244,62.5630111694336,404.831422805786,404.774017333984,0.0713857296963316
+3198,306374,3790898,306474,3790798,97,31,1.66204986149584,0.0161964009628986,5.52275872581071,0.416666666666667,NA,0.0195323912117813,0.174515235457064,17.4515235457064,2,88.8985670939252,0.823794996949359,14.1274238227147,76.8320769658164,51.170482635498,404.917864481608,404.795776367188,0.161236543847922
+3199,306374,3790798,306474,3790698,98,31,22.3684210526316,0.0764830045470212,13.2653596817342,0.524944720840243,13.9894104798799,0.0441791515495688,0.363157894736842,36.3157894736842,4,92.0034283989289,0.850452577725305,30.7894736842105,5.65420329743537,0,405.482297897339,405.029418945312,0.510528144694459
+3200,306374,3790698,306474,3790598,99,31,26.3157894736842,0.0641107538114737,13.6406879475956,0.574402300208752,11.7738164939214,0.0574741848139909,0.476608187134503,47.6608187134503,4,95.4555709269562,0.777094972067039,44.4444444444444,5.9364367174956,0,406.297212600708,405.885772705078,0.389611217506708
+3201,306474,3800598,306574,3800498,0,32,77.8393351800554,0.379265722547876,27.2981221638233,0.843116026841448,14.6953058096335,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.026257832845,383.970794677734,0.0848187839789223
+3202,306474,3800498,306574,3800398,1,32,31.8421052631579,0.326627419418455,29.3186252252701,0.826446280991736,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.036078559028,383.989654541016,0.0936938002406647
+3203,306474,3800398,306574,3800298,2,32,16.6204986149584,0.161964009628986,25.2790168649809,0.697222222222222,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.208437601725,384.083923339844,0.131552542548139
+3204,306474,3800298,306574,3800198,3,32,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.429640028212,384.323394775391,0.145415272616743
+3205,306474,3800198,306574,3800098,4,32,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.643648783366,384.532073974609,0.135631840992744
+3206,306474,3800098,306574,3799998,5,32,4.21052631578947,0.0431904025677296,9.03217592148975,0.625,NA,0.00910800132140522,0,0,0,NA,NA,0,NA,NA,384.914404975043,384.792083740234,0.200998051856543
+3207,306474,3799998,306574,3799898,6,32,0,NA,NA,NA,NA,0.00766288359677434,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,111.765279769897,109.107078552246,385.224065144857,385.045257568359,0.217174349744923
+3208,306474,3799898,306574,3799798,7,32,0,NA,NA,NA,NA,0.00155985200524765,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,102.340965270996,102.340965270996,385.469346788194,385.272735595703,0.326020349172134
+3209,306474,3799798,306574,3799698,8,32,0,NA,NA,NA,NA,0.00747084135880596,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,73.3818187713623,72.7380523681641,386.28791809082,385.622222900391,0.716790196284151
+3210,306474,3799698,306574,3799598,9,32,0,NA,NA,NA,NA,0.0117376534478497,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,124.693801879883,124.693801879883,387.524315728082,387.029235839844,0.675047140853813
+3211,306474,3799598,306574,3799498,10,32,0,NA,NA,NA,NA,0.0125383537834521,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,43.6774730682373,26.4923400878906,388.06468963623,387.826354980469,0.299348426457264
+3212,306474,3799498,306574,3799398,11,32,33.7950138504155,0.329326819578938,25.9195953982774,0.818306010928962,NA,0.00688471504672685,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.852291325695581,8.86426592797784,16.7486398667097,0,388.014996846517,387.838470458984,0.229779284191365
+3213,306474,3799398,306574,3799298,12,32,54.8476454293629,0.178160410591885,13.8453744096473,0.495961386918834,13.1717378724924,-0.00615309321542768,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,0,0,387.834147135417,387.679718017578,0.248513476920398
+3214,306474,3799298,306574,3799198,13,32,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0261944847610146,0.284210526315789,28.4210526315789,5,85.683314649393,0.770739064856712,18.6842105263158,0,0,387.629191080729,387.444213867188,0.263649868600103
+3215,306474,3799198,306574,3799098,14,32,65.9279778393352,0.321228619097489,17.2527116934272,0.590661938534279,15.5867256623399,0.040190069801137,0.390581717451524,39.0581717451524,4,88.8265709997694,0.783756166314306,24.3767313019391,6.47074918544039,0,387.556013319227,387.411743164062,0.27350852019173
+3216,306474,3799098,306574,3798998,15,32,3.8781163434903,0.0188958011233817,3.6381251125583,0.32051282051282,36.3690265454597,0.0242272773350849,0.135734072022161,13.5734072022161,3,82.7101874194009,0.84848137973138,7.75623268698061,11.1587495706519,0,387.874801635742,387.538879394531,0.43219135292855
+3217,306474,3798998,306574,3798898,16,32,1.93905817174515,0.0188958011233817,5.2980805783384,0.5,NA,0.00348234616903736,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,83.811580657959,77.9336318969727,388.368075900608,388.063079833984,0.470331074679994
+3218,306474,3798898,306574,3798798,17,32,2.63157894736842,0.0134970008024155,4.540639758616,0.4,110.214793572251,0.00576898009242804,0,0,0,NA,NA,0,NA,NA,388.839968363444,388.4072265625,0.573713529248081
+3219,306474,3798798,306574,3798698,18,32,9.14127423822715,0.0890802052959424,15.3596592565124,0.691919191919192,NA,0.0022821493840031,0,0,0,NA,NA,0,NA,NA,389.848720974392,389.289916992188,0.835867847626508
+3220,306474,3798698,306574,3798598,19,32,0,NA,NA,NA,NA,0.00775894710850203,0,0,0,NA,NA,0,NA,NA,390.927815755208,390.435150146484,0.572581770209895
+3221,306474,3798598,306574,3798498,20,32,16.6204986149584,0.161964009628986,15.7294168646788,0.819444444444445,NA,0.0158447917634687,0.102493074792244,10.2493074792244,3,83.5731225861209,0.726017000607164,8.86426592797784,19.6595245309778,0,391.136400010851,390.765258789062,0.531331989885583
+3222,306474,3798498,306574,3798398,21,32,45.2631578947368,0.464296827603094,33.6098233860802,0.835271317829457,NA,-0.00372153018464527,0.0473684210526316,4.73684210526316,2,71.3169014368256,0.727849396357684,3.42105263157895,4.34826209810045,0,391.469380696615,390.888763427734,0.691427125249129
+3223,306474,3798398,306574,3798298,22,32,0,NA,NA,NA,NA,0.0284378830690312,0.268698060941828,26.8698060941828,3,92.6666966815476,0.787813479623825,24.9307479224377,50.2064928762692,10.3911504745483,392.222998725043,391.736480712891,0.625466983953239
+3224,306474,3798298,306574,3798198,23,32,11.6343490304709,0.11337480674029,15.1540371649335,0.702380952380952,NA,0.0393625080351359,0.3601108033241,36.01108033241,3,91.5545395318008,0.841744753137158,23.2686980609418,33.9046684301817,0,392.525604248047,392.244995117188,0.447015097160034
+3225,306474,3798198,306574,3798098,24,32,17.7285318559557,0.0863808051354593,14.7519431189868,0.678210678210678,58.0882967632057,0.00829919786960786,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,3.14411572047642,0,392.43020968967,392.286560058594,0.317377150893764
+3226,306474,3798098,306574,3797998,25,32,40.5263157894737,0.207853812357199,16.9362061491497,0.479166666666667,20.7823006752878,0.0193642878633048,0.0921052631578947,9.21052631578947,7,62.212055612199,0.620189905047476,3.15789473684211,5.86999116625105,0,392.508476257324,392.28564453125,0.356247074328458
+3227,306474,3797998,306574,3797898,26,32,26.8698060941828,0.13092090778343,19.38710389257,0.66029810298103,18.7329127343573,0.0278048873395698,0.265927977839335,26.5927977839335,6,87.9068054376618,0.762395787626152,21.3296398891967,7.49054103593032,0,393.94509379069,393.107025146484,1.04823636226813
+3228,306474,3797898,306574,3797798,27,32,17.4515235457064,0.0340124420220871,7.05675861136163,0.462444444444444,14.4897025951677,0.0308705511208366,0.191135734072022,19.1135734072022,6,80.3416569419252,0.734348465979848,11.9113573407202,23.9782583540764,0,395.6538933648,395.034851074219,0.840173136930225
+3229,306474,3797798,306574,3797698,28,32,0,NA,NA,NA,NA,0.00290539265642012,0,0,0,NA,NA,0,NA,NA,396.64421081543,396.233367919922,0.418302909147736
+3230,306474,3797698,306574,3797598,29,32,24.4736842105263,0.251044214924928,24.8003777926256,0.78494623655914,NA,0.0108137686835107,0.0868421052631579,8.68421052631579,2,85.6095918565683,0.675525669761981,8.42105263157895,4.44978526144317,0,396.74228922526,396.547271728516,0.274441841915209
+3231,306474,3797598,306574,3797498,30,32,57.3407202216066,0.558775833220002,30.2433533365592,0.903381642512077,NA,0.0477527214729851,0.53185595567867,53.185595567867,4,92.7188592761425,0.735988298650356,27.9778393351801,11.6381187513471,0,394.117057800293,388.5,3.66820859542943
+3232,306474,3797498,306574,3797398,31,32,38.5041551246537,0.0750433244614302,10.0224512082428,0.405094339622642,11.9208689774072,0.0112218834027497,0.102493074792244,10.2493074792244,1,88.2023291177678,0.926937866828577,10.2493074792244,16.9431141904882,5.19557523727417,395.021101209852,388.632568359375,5.75880575315044
+3233,306474,3797398,306574,3797298,32,32,16.8975069252078,0.0274439016315782,6.10019048437612,0.397751322751323,16.8728740822957,0.0663938872999714,0.761772853185596,76.1772853185596,3,98.5849323171123,0.910514692626645,75.6232686980609,16.3567402891679,0,398.764012654622,398.165405273438,0.776260126656612
+3234,306474,3797298,306574,3797198,33,32,46.0526315789474,0.472395028084543,29.2284638748833,0.867619047619048,NA,0.157110486679563,1,100,1,100,NA,100,12.6613861360048,0,399.539252387153,399.290771484375,0.38745227322213
+3235,306474,3797198,306574,3797098,34,32,28.5318559556787,0.0556076433059519,8.19185601564687,0.382833957553059,31.1734510441066,0.0425145003613771,0.332409972299169,33.2409972299169,3,93.2932114688606,0.855704442498763,30.4709141274238,2.96024960279465,0,399.763760884603,399.498840332031,0.303873027257664
+3236,306474,3797098,306574,3796998,35,32,23.2686980609418,0.11337480674029,14.3376530545008,0.425813008130081,15.5867256623399,0.0175637664932692,0.119113573407202,11.9113573407202,3,81.3275352535243,0.873864430468204,9.69529085872576,21.3038307899653,0,399.628655327691,399.279449462891,0.450858574323176
+3237,306474,3796998,306574,3796898,36,32,25.4847645429363,0.124172407382223,25.4229946642726,0.674286405418481,10.3911504415599,0.0318655866367383,0.277008310249307,27.7008310249307,2,94.0973767991322,0.761792252022137,26.8698060941828,25.4390466547012,5.19557523727417,399.110051472982,398.922760009766,0.242866141225413
+3238,306474,3796898,306574,3796798,37,32,27.6315789473684,0.0944790056169086,16.6589185794855,0.690093808630394,10.3911504415599,0.0176340406477577,0.1,10,1,88.3079606859525,0.964726631393298,10,25.4441183491757,10.3911504745483,399.071475558811,398.938018798828,0.221458171216851
+3239,306474,3796798,306574,3796698,38,32,19.6675900277008,0.0479143528485751,10.5190670672613,0.426494476933073,15.5867256623399,0.00998912356624417,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,22.8977345686692,16.4298515319824,399.446060180664,399.310302734375,0.158531014230022
+3240,306474,3796698,306574,3796598,39,32,48.4764542936288,0.157465009361514,19.7216247017794,0.608576171568298,15.5867256623399,0.00578789775273659,0.0332409972299169,3.32409972299169,4,49.493734867695,0.574077195348053,1.93905817174515,5.80787964661916,0,399.294253031413,398.725982666016,0.52190085312777
+3241,306474,3796598,306574,3796498,40,32,17.4515235457064,0.0566874033701451,10.7752204600509,0.599828820417056,19.0504424069158,0.0202435373760629,0.0969529085872576,9.69529085872576,6,67.6658747317277,0.618151047175799,4.70914127423823,16.9203999383109,0,397.480770534939,396.639038085938,1.24598573094023
+3242,306474,3796498,306574,3796398,41,32,9.97229916897507,0.0971784057773917,25.864392268642,0.550925925925926,NA,0.0292393330733261,0.177285318559557,17.7285318559557,3,83.1436465800466,0.761243386243386,8.58725761772853,16.7024140059948,5.19557523727417,396.589711507161,396.305206298828,0.417581080198359
+3243,306474,3796398,306574,3796298,42,32,13.1578947368421,0.0337425020060388,7.54840142674146,0.489236111111111,46.002152352919,0.0219029054091343,0.105263157894737,10.5263157894737,4,77.1774681441252,0.766461808604039,7.63157894736842,25.1547585010529,5.19557523727417,396.234388563368,396.018035888672,0.335462940853874
+3244,306474,3796298,306574,3796198,43,32,40.1662049861496,0.07828260465401,13.5048803692407,0.438951930654058,15.6605732580647,0.0141823252292487,0.0554016620498615,5.54016620498615,4,63.9086011378352,0.726799735124397,3.601108033241,9.99515810012817,0,395.604548136393,395.142578125,0.525661947831897
+3245,306474,3796198,306574,3796098,44,32,34.9030470914127,0.170062210110435,24.1519292761751,0.672641912078532,15.5867256623399,0.0118980754008907,0.038781163434903,3.8781163434903,2,68.6981417242708,0.687896253602305,3.04709141274238,2.75150745255607,0,394.646948920356,394.345458984375,0.540587605500802
+3246,306474,3796098,306574,3795998,45,32,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0130841255280218,0.038781163434903,3.8781163434903,3,60.7427754519644,0.739913544668588,2.77008310249307,36.4284233706338,7.34765291213989,393.895952860514,393.587951660156,0.400539371550466
+3247,306474,3795998,306574,3795898,46,32,4.47368421052632,0.0458898027282127,11.6568363821542,0.519607843137255,NA,0.0296896601561648,0.181578947368421,18.1578947368421,1,92.7177340931195,0.909117482926311,18.1578947368421,49.027695365574,20.7823009490967,393.564815945095,393.540496826172,0.0727049557347107
+3248,306474,3795898,306574,3795798,47,32,23.8227146814404,0.0580371034503867,12.0183740550145,0.457671957671958,12.9889379740129,0.00700635239890972,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,2.59778761863708,0,393.812215169271,393.646026611328,0.212662138751554
+3249,306474,3795798,306574,3795698,48,32,8.03324099722992,0.0782826046540099,14.7793124393641,0.672413793103448,NA,0.00522302632892299,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,36.369026184082,36.369026184082,394.18369547526,394.035034179688,0.154372439473618
+3250,306474,3795698,306574,3795598,49,32,10.5263157894737,0.102577206098358,12.1274345471424,0.789473684210526,NA,0.0184469311854446,0.07202216066482,7.20221606648199,1,84.8544079576361,0.947433563887878,7.20221606648199,2.99744725227356,0,394.312698364258,394.246276855469,0.113390497971247
+3251,306474,3795598,306574,3795498,50,32,39.7368421052632,0.101902356058237,12.117500106999,0.639016762619026,18.1845132727298,0.0196849141623093,0.173684210526316,17.3684210526316,2,89.6137187484558,0.810578787039601,15.5263157894737,11.3184432333166,0,394.601335313585,394.472229003906,0.30265028607058
+3252,306474,3795498,306574,3795398,51,32,34.3490304709141,0.111575206633302,16.3451755032929,0.465829177854494,18.1362565262654,0.0207760293646429,0.191135734072022,19.1135734072022,1,92.8481599520577,0.938695799841503,19.1135734072022,17.5934865716575,5.19557523727417,395.418973286947,394.841522216797,0.710585236610814
+3253,306474,3795398,306574,3795298,52,32,19.9445983379501,0.0647856038515944,8.93529448208266,0.401139601139601,14.0680687638786,0.0317357539836916,0.221606648199446,22.1606648199446,1,93.7540856743067,0.945717006666332,22.1606648199446,16.6429135799408,0,396.763892279731,396.279602050781,0.703969825138243
+3254,306474,3795298,306574,3795198,53,32,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.015551890230043,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,35.3767598470052,16.4298515319824,397.453796386719,397.121765136719,0.396909020381374
+3255,306474,3795198,306574,3795098,54,32,0,NA,NA,NA,NA,0.00851580187739178,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,26.4923400878906,26.4923400878906,397.647618611654,397.485992431641,0.24707189289159
+3256,306474,3795098,306574,3794998,55,32,36.5650969529086,0.178160410591885,25.8805903564621,0.740437788018433,31.1734510129318,0.0225509226804201,0.105263157894737,10.5263157894737,2,84.0960296911692,0.858076563958917,9.41828254847645,8.97880249274404,0,397.442067464193,397.281280517578,0.239189513456044
+3257,306474,3794998,306574,3794898,56,32,0,NA,NA,NA,NA,0.0432419837563928,0.254847645429363,25.4847645429363,3,89.119930578976,0.869072445371294,20.7756232686981,44.4502792773039,20.7823009490967,397.428553263346,397.251770019531,0.360207064191521
+3258,306474,3794898,306574,3794798,57,32,14.9584487534626,0.145767608666088,17.6814476785987,0.759259259259259,NA,0.016842898395631,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,5.7335946559906,5.19557523727417,398.019070095486,397.508209228516,0.665438178550401
+3259,306474,3794798,306574,3794698,58,32,21.3157894736842,0.0728838043330437,10.9041836634334,0.381091617933723,39.8327431341617,0.0090958253781106,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210527,0.865929206212362,0,398.541160583496,398.022491455078,0.669393437010477
+3260,306474,3794698,306574,3794598,59,32,4.98614958448753,0.0485892028886958,23.3800884935098,0.314814814814815,NA,0.00287868068434744,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,1.73185841242472,0,399.230214436849,398.657623291016,0.720333068996413
+3261,306474,3794598,306574,3794498,60,32,19.6675900277008,0.0638858037981001,13.2720001534623,0.514161220043573,24.2460175930571,0.00784505632297404,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,4.43470084667206,0,399.670956929525,399.019683837891,0.789137365558385
+3262,306474,3794498,306574,3794398,61,32,9.97229916897507,0.0971784057773917,17.4967243140538,0.699074074074074,NA,-0.0618634570271051,0,0,0,NA,NA,0,NA,NA,399.341159396701,398.866516113281,0.818721149456452
+3263,306474,3794398,306574,3794298,62,32,2.10526315789474,0.0215952012838648,7.55436815758797,0.395833333333333,NA,-0.105587576736549,0,0,0,NA,NA,0,NA,NA,399.375022888184,398.977172851562,0.605017506000148
+3264,306474,3794298,306574,3794198,63,32,88.6426592797784,0.863808051354593,35.6817590841678,0.920833333333333,NA,-0.0908338270353932,0,0,0,NA,NA,0,NA,NA,401.123491075304,400.035583496094,1.60767105246338
+3265,306474,3794198,306574,3794098,64,32,36.5650969529086,0.356320821183769,28.0320027245442,0.866161616161616,NA,-0.0238874639603574,0.102493074792244,10.2493074792244,1,88.2023291177678,0.890406800242866,10.2493074792244,37.6872076601596,20.7823009490967,402.147374471029,401.6455078125,0.732239659116349
+3266,306474,3794098,306574,3793998,65,32,0,NA,NA,NA,NA,0.0340703621307076,0.249307479224377,24.9307479224377,3,86.5161666806935,0.817973459237698,10.803324099723,84.0468420664469,52.2148818969727,400.605563693576,400.171936035156,1.10012658826077
+3267,306474,3793998,306574,3793898,66,32,28.9473684210526,0.296934017653141,28.3033918848604,0.821212121212121,NA,0.0176102580631969,0.05,5,4,58.1372946453525,0.491833030852995,2.10526315789474,36.5170895425897,10.3911504745483,399.971196492513,399.605621337891,0.748409429047917
+3268,306474,3793898,306574,3793798,67,32,63.1578947368421,0.615463236590147,37.0777263381409,0.850877192982456,NA,0.023325494546756,0.182825484764543,18.2825484764543,3,86.7830086486239,0.904229918938836,14.6814404432133,9.91531187115294,0,399.847195095486,399.555541992188,0.965918991558979
+3269,306474,3793798,306574,3793698,68,32,59.8337950138504,0.58307043466435,31.6577301037921,0.871141975308642,NA,0.0544641879964439,0.371191135734072,37.1191135734072,6,87.731275284491,0.791434967863075,16.3434903047091,10.5569738594454,0,400.420664469401,399.633087158203,1.12458667049785
+3270,306474,3793698,306574,3793598,69,32,49.0304709141274,0.477793828405509,30.6238088730917,0.864406779661017,NA,0.0235579577659984,0.110803324099723,11.0803324099723,7,68.7934185690889,0.63072488027154,5.26315789473684,14.8827959656715,0,401.459897359212,400.585510253906,1.3533191768625
+3271,306474,3793598,306574,3793498,70,32,32.6315789473684,0.167362809949952,20.7974790382932,0.780228120392055,14.6953058096335,0.0306430851178256,0.102631578947368,10.2631578947368,8,60.356719573427,0.571396345589894,3.42105263157895,21.2260110439398,0,401.577409532335,401.126617431641,0.580695386052653
+3272,306474,3793498,306574,3793398,71,32,41.2742382271468,0.134070207970661,12.0096066337005,0.416280864197531,27.8530673186613,0.0469795874477341,0.448753462603878,44.8753462603878,3,93.946737891916,0.671275842298742,33.5180055401662,4.71727558418556,0,401.680173238118,401.447509765625,0.356265850011491
+3273,306474,3793398,306574,3793298,72,32,31.5789473684211,0.102577206098358,12.8694650106019,0.363656783468104,34.3085473647045,0.0350494714095219,0.149584487534626,14.9584487534626,7,70.5686532500813,0.582746663864663,5.54016620498615,3.88813373777601,0,401.30766805013,401.09521484375,0.270550734800901
+3274,306474,3793298,306574,3793198,73,32,72.8531855955679,0.354971121103528,20.6105339912139,0.587656722870731,10.3911504415599,0.0371736627106924,0.277008310249307,27.7008310249307,3,89.9340109514288,0.754108131119625,16.8975069252078,3.23721411705017,0,401.099817911784,401.017059326172,0.0917260982364442
+3275,306474,3793198,306574,3793098,74,32,51.5789473684211,0.264541215727344,23.5603459912594,0.835565476190476,21.4219052194909,0.0280548946698745,0.121052631578947,12.1052631578947,3,80.3768029986895,0.708275756179948,7.10526315789474,8.04782620720241,0,400.941565619575,400.75390625,0.266046312046864
+3276,306474,3793098,306574,3792998,75,32,14.9584487534626,0.0485892028886958,10.6861469305693,0.539785105961577,15.5867255584239,0.0330681288778528,0.124653739612188,12.4653739612188,3,80.3847821627597,0.774525316455696,6.09418282548476,11.5370823542277,0,400.565124511719,400.472198486328,0.160747401748992
+3277,306474,3792998,306574,3792898,76,32,12.7423822714681,0.0620862036911113,6.63683434324794,0.403703703703704,41.5646013505757,0.0246118633986749,0.102493074792244,10.2493074792244,3,84.3583142617175,0.853875733657154,9.69529085872576,14.1118766552693,0,400.467732747396,400.429077148438,0.0618144233749501
+3278,306474,3792898,306574,3792798,77,32,12.1883656509695,0.0395912023537522,9.69329315935208,0.320987654320988,36.7615651868669,0.0324216732118244,0.21606648199446,21.606648199446,2,91.9828301059369,0.870589440262201,20.4986149584488,19.1705537514809,0,400.654607137044,400.51708984375,0.174987191638935
+3279,306474,3792798,306574,3792698,78,32,33.9473684210526,0.08705565517558,14.0862092654592,0.358223867111482,22.2098103015537,0.0213954987831561,0.0473684210526316,4.73684210526316,2,76.9702545305935,0.766728054020872,4.47368421052632,4.46592481931051,0,401.058376736111,400.863586425781,0.312812717575962
+3280,306474,3792698,306574,3792598,79,32,23.2686980609418,0.0755832044935268,13.8271555597445,0.576868919610855,18.1362565262654,0.0248546702259975,0.185595567867036,18.5595567867036,2,87.3034867199323,0.77960927960928,9.41828254847645,10.7246160151354,0,401.463897705078,401.283203125,0.201139880189393
+3281,306474,3792598,306574,3792498,80,32,37.9501385041551,0.184908910993092,20.0266743593123,0.406481481481482,21.4219054085159,0.0341733995034331,0.204986149584488,20.4986149584488,7,75.8664253416332,0.661350844277673,4.43213296398892,7.32775935611209,0,401.392116970486,401.296325683594,0.166575149374405
+3282,306474,3792498,306574,3792398,81,32,22.4376731301939,0.218651412999131,22.6907803039457,0.740740740740741,NA,0.0373949832223302,0.277008310249307,27.7008310249307,5,90.7329155816574,0.769476372924649,23.8227146814404,13.1592095708847,0,401.17475382487,401.026794433594,0.214109895337348
+3283,306474,3792398,306574,3792298,82,32,23.6842105263158,0.0809820048144931,17.0448523225188,0.61,16.4043981831307,0.0239769168850671,0.105263157894737,10.5263157894737,3,80.0300425841931,0.749780509218613,6.31578947368421,24.5151980638504,10.3911504745483,401.085452609592,400.993103027344,0.201770920035557
+3284,306474,3792298,306574,3792198,83,32,21.8836565096953,0.0533131531695413,9.71207187124464,0.442623468485537,16.19997997911,0.021372499166006,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.975909242575909,7.75623268698061,25.7908719267164,11.6176595687866,401.183982849121,401.025634765625,0.230014920348537
+3285,306474,3792198,306574,3792098,84,32,54.2936288088643,0.176360810484896,20.1120581668845,0.599351397223738,13.8548671168586,0.0588514912600043,0.46814404432133,46.814404432133,2,94.1007838522925,0.783052884615384,24.3767313019391,3.76648420977169,0,401.524861653646,401.251739501953,0.303289880913549
+3286,306474,3792098,306574,3791998,85,32,46.814404432133,0.456198627121644,37.2754903830758,0.748520710059172,NA,0.0644909388474718,0.506925207756233,50.6925207756233,4,93.4202298517928,0.789990692108237,35.4570637119114,6.60968061092773,0,401.869269476997,401.629364013672,0.448513952154477
+3287,306474,3791998,306574,3791898,86,32,63.4210526315789,0.325277719338214,20.1115095481526,0.416666666666667,32.8597026090436,0.068712388621153,0.715789473684211,71.5789473684211,1,99.0160242432472,0.662607813292745,71.5789473684211,3.9418646745822,0,402.391105651855,401.810607910156,0.632070299377049
+3288,306474,3791898,306574,3791798,87,32,39.612188365651,0.0965035557372709,13.4069456428181,0.549739583333333,17.0056166799939,0.0454585144599299,0.379501385041551,37.9501385041551,3,89.8552224245156,0.748589285714286,17.1745152354571,6.07916923509027,0,402.906022813585,402.766479492188,0.202692887817386
+3289,306474,3791798,306574,3791698,88,32,42.9362880886427,0.418407024874881,39.9255904842463,0.756989247311828,NA,0.0309266401295179,0.376731301939058,37.6731301939058,1,96.5042413397009,0.780035842293907,37.6731301939058,4.43014435908374,0,402.881439208984,402.732727050781,0.125287278692455
+3290,306474,3791698,306574,3791598,89,32,40.9972299168975,0.0998778059378748,13.7071196467188,0.637099012099012,14.3887392016719,0.0700336001731824,0.714681440443213,71.4681440443213,2,98.143755382659,0.658947918551127,66.7590027700831,5.56079632736916,0,402.628563774957,402.572845458984,0.114501762746473
+3291,306474,3791598,306574,3791498,90,32,32.3684210526316,0.166013109869711,24.5749309148621,0.698721461187215,10.3911503376439,0.0664151073312544,0.660526315789474,66.0526315789474,2,98.5330118162227,0.811974270163285,65.7894736842105,7.50316234603821,0,402.671930948893,402.575775146484,0.163595146855481
+3292,306474,3791498,306574,3791398,91,32,1.38504155124654,0.0134970008024155,4.40481631604598,0.433333333333333,NA,0.0318386707067097,0.204986149584488,20.4986149584488,4,81.8914838528609,0.806486196730099,8.86426592797784,36.4573259353638,10.3911504745483,403.144911024306,402.904449462891,0.472684595372743
+3293,306474,3791398,306574,3791298,92,32,13.2963988919668,0.0647856038515944,10.7646685450162,0.46969696969697,59.2386714907549,0.0622907733297647,0.470914127423823,47.0914127423823,3,95.4090981136799,0.855075857685295,42.6592797783934,24.9855437250698,5.19557523727417,404.040417989095,403.63232421875,0.537325643094217
+3294,306474,3791298,306574,3791198,93,32,27.1468144044321,0.132270607863672,17.0625428022924,0.695036642238508,63.420077462522,0.0265654874711595,0.038781163434903,3.8781163434903,4,53.0253816693419,0.635878962536023,2.21606648199446,13.4430756228311,0,404.785685221354,404.598510742188,0.39547902847468
+3295,306474,3791198,306574,3791098,94,32,10,0.034192402032786,7.37682423373466,0.289141414141414,37.8391279233461,0.0266790890936758,0.0342105263157895,3.42105263157895,2,65.1044960614774,0.71238268240993,2.36842105263158,33.7988755886371,0,405.337310791016,405.153594970703,0.283141345785241
+3296,306474,3791098,306574,3790998,95,32,13.5734072022161,0.132270607863672,16.1502933608817,0.772108843537415,NA,0.0225494289993838,0.10803324099723,10.803324099723,4,73.18194275937,0.741280458671763,4.70914127423823,26.5106376623496,0,405.070871988932,404.944427490234,0.247491190260629
+3297,306474,3790998,306574,3790898,96,32,11.6343490304709,0.0283437016850726,7.26028338724863,0.350448717948718,13.1564825462828,0.0204580323520015,0.102493074792244,10.2493074792244,5,68.1867150571827,0.707751467314309,4.43213296398892,30.1144994400643,0,404.913482666016,404.880859375,0.0567302248930776
+3298,306474,3790898,306574,3790798,97,32,27.4238227146814,0.0668101539719568,13.1599141296602,0.531687062937063,13.1564825811373,0.0344897180955217,0.310249307479224,31.0249307479224,3,90.1895605472199,0.755974392619985,15.2354570637119,5.92580115369388,0,405.067460801866,404.962554931641,0.211754050531949
+3299,306474,3790798,306574,3790698,98,32,12.1052631578947,0.0413908024607409,9.40382334503908,0.38034188034188,38.2464269416253,0.0269285699825272,0.197368421052632,19.7368421052632,6,83.613310511022,0.716840536512668,13.9473684210526,8.80779052734375,0,405.55810546875,405.263549804688,0.309067422140067
+3300,306474,3790698,306574,3790598,99,32,0.831024930747922,0.00809820048144931,4.48425993457759,0.166666666666667,NA,0.0362865079554233,0.245614035087719,24.5614035087719,3,88.3119431750773,0.822069611362572,17.2514619883041,25.953657297861,0,405.775024414062,405.585571289062,0.208260332152029
+3301,306574,3800598,306674,3800498,0,33,73.1578947368421,0.250144414871346,19.2941142449873,0.554114750328071,12.1230087965261,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.809658050537,383.386016845703,0.287405906839289
+3302,306574,3800498,306674,3800398,1,33,28.5,0.061546323658993,11.8227075983967,0.525168845315904,18.3475027913725,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.891064961751,383.699401855469,0.174475286929676
+3303,306574,3800398,306674,3800298,2,33,10.5263157894737,0.0539880032096429,12.6591635179438,0.584229390681004,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.091938018799,383.931091308594,0.150701290073657
+3304,306574,3800298,306674,3800198,3,33,14.7368421052632,0.151166408987,26.9625871266878,0.717261904761905,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.339851379395,384.245239257812,0.146631554230993
+3305,306574,3800198,306674,3800098,4,33,15,0.153865809147482,26.393112410931,0.701754385964912,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.556367874146,384.432434082031,0.134929266419754
+3306,306574,3800098,306674,3799998,5,33,6,0.0215952012838572,7.67812679806181,0.339506172839506,18.0938692761776,0.0164989508877625,0.03125,3.125,1,60.0239503843949,0.793548387096774,3.125,73.5453231811523,67.54248046875,384.741663614909,384.622528076172,0.166359458457047
+3307,306574,3799998,306674,3799898,6,33,12.8947368421053,0.132270607863625,20.4904575678629,0.710884353741497,NA,0.0121887092617199,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210526,41.1696551640828,20.7823009490967,384.852746963501,384.657501220703,0.248267933646783
+3308,306574,3799898,306674,3799798,7,33,0,NA,NA,NA,NA,0.00742569296696609,0,0,0,NA,NA,0,NA,NA,384.965827941895,384.719085693359,0.331892589168173
+3309,306574,3799798,306674,3799698,8,33,12.6315789473684,0.129571207703143,24.9678650861714,0.65625,NA,0.00331368614521412,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,7.34765291213989,7.34765291213989,385.926677703857,385.030609130859,0.959466986260688
+3310,306574,3799698,306674,3799598,9,33,11.5,0.0620862036910894,10.8577976729863,0.660606060606061,25.9778758441098,0.00601471659152139,0.0025,0.25,1,0,NA,0.25,0,0,387.568445841471,386.850250244141,0.856159656493541
+3311,306574,3799598,306674,3799498,10,33,21.3157894736842,0.109325706499527,14.2934222149053,0.763736263736264,11.6176592829313,0.0113468705429975,0.0552631578947368,5.52631578947368,2,78.3342796596557,0.933844011142061,5.26315789473684,8.80284484227498,0,388.203401565552,387.758453369141,0.267588321487418
+3312,306574,3799498,306674,3799398,11,33,30,0.0769329045737412,10.5252168109944,0.574779907195525,32.5532111376087,0.000384180963776185,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,3.1173451423645,0,388.369333267212,388.172637939453,0.182836075612096
+3313,306574,3799398,306674,3799298,12,33,45.5263157894737,0.116749056940853,10.5040819364135,0.363058943089431,18.1845131947892,-0.0348924696224793,0,0,0,NA,NA,0,NA,NA,388.335225423177,388.024108886719,0.34033320151405
+3314,306574,3799298,306674,3799198,13,33,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,-0.026824106235872,0.0175,1.75,1,65.4774238937655,1,1.75,0,0,388.174280166626,387.856292724609,0.40758123103633
+3315,306574,3799198,306674,3799098,14,33,84.2105263157895,0.863808051354287,36.4814733281599,0.919791666666667,NA,-0.000750725578339035,0.0947368421052632,9.47368421052632,2,84.7182076024243,0.88953488372093,8.94736842105263,0,0,388.247683207194,387.850677490234,0.475438026429443
+3316,306574,3799098,306674,3798998,15,33,5,0.0512886030491608,9.35097977190335,0.649122807017544,NA,0.0121300098936301,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,41.5764838218689,0,388.676198959351,388.058074951172,0.552403946335496
+3317,306574,3798998,306674,3798898,16,33,0,NA,NA,NA,NA,0.00780295662593505,0,0,0,NA,NA,0,NA,NA,389.21519724528,388.745971679688,0.514697822669685
+3318,306574,3798898,306674,3798798,17,33,14.5,0.0521884031026549,9.27851598495108,0.661914027554124,22.6372386750303,0.0171400846151482,0.1125,11.25,2,85.7013629510603,0.822090437361008,10,8.75209440655179,0,389.739570617676,389.144836425781,0.630650935259159
+3319,306574,3798798,306674,3798698,18,33,49.2105263157895,0.504787830010162,34.3933621537386,0.845811051693405,NA,0.0507289166787048,0.436842105263158,43.6842105263158,1,97.2260878105125,0.936167613462831,43.6842105263158,9.42194603437401,0,390.59290822347,389.956604003906,0.748987097230088
+3320,306574,3798698,306674,3798598,19,33,2.63157894736842,0.0269940016048215,7.63827396124217,0.516666666666667,NA,0.0221794647856912,0.131578947368421,13.1578947368421,1,90.5004389364175,0.959358288770053,13.1578947368421,14.5918350601196,0,391.504997253418,391.087280273438,0.471953448764867
+3321,306574,3798598,306674,3798498,20,33,60,0.61546323658993,31.1569027794372,0.908625730994152,NA,0.0160449142579015,0.05,5,5,53.8705538714131,0.491833030852995,1.57894736842105,1.09380531311035,0,391.884038289388,391.518280029297,0.399314030243554
+3322,306574,3798498,306674,3798398,21,33,62.25,0.672150639960055,31.9545973527081,0.912315930388219,NA,0.0171003073004795,0.0925,9.25,2,85.1954287744713,0.729034006232218,8.5,12.5428525563833,0,392.357852935791,391.753997802734,0.510822445503259
+3323,306574,3798398,306674,3798298,22,33,0,NA,NA,NA,NA,0.00132431157020811,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,44.1793518066406,41.8880653381348,392.861368815104,392.436981201172,0.419264039542132
+3324,306574,3798298,306674,3798198,23,33,3.94736842105263,0.0404910024072322,9.33091724275075,0.611111111111111,NA,0.0627391041856945,0.715789473684211,71.5789473684211,1,99.0160242432472,0.903602232369356,71.5789473684211,32.1544496680007,0,393.193948745728,392.817565917969,0.394564879586365
+3325,306574,3798198,306674,3798098,24,33,30.5263157894737,0.0626260837231858,8.12029361782814,0.437816455696203,13.0879048921282,0.0222572333949684,0.0894736842105263,8.94736842105263,5,73.5827889847634,0.646985962014864,5.78947368421053,5.545706244076,0,393.11791229248,392.691070556641,0.473794536071734
+3326,306574,3798098,306674,3797998,25,33,16.5,0.0890802052959109,14.9657070384848,0.644249512670565,23.2353185658627,0.0323134795625265,0.275,27.5,2,94.3109567173654,0.81978859816323,26.75,10.7554612333124,0,392.932085037231,392.572784423828,0.65592866242391
+3327,306574,3797998,306674,3797898,26,33,6.8421052631579,0.0350922020862679,7.26389755436235,0.429951690821256,53.4917204340477,0.00846815873749285,0.0710526315789474,7.10526315789474,2,77.294550605953,0.824757889189011,4.47368421052632,21.6884323579294,0,394.557035446167,393.459228515625,0.996035515873655
+3328,306574,3797898,306674,3797798,27,33,48.4210526315789,0.124172407382179,13.1463921288977,0.394835329341317,14.9933958073382,0.0358796607752741,0.428947368421053,42.8947368421053,1,97.1511440330302,0.819047619047619,42.8947368421053,2.88295760476516,0,395.761660257975,395.502075195312,0.521702668611167
+3329,306574,3797798,306674,3797698,28,33,33.6842105263158,0.115174406847238,14.0317382232963,0.711384583158777,12.6435415049689,0.0152997599212708,0.131578947368421,13.1578947368421,4,84.7507182859894,0.688413547237077,11.0526315789474,2.66604232788086,0,396.491249084473,396.180786132812,0.344518911625408
+3330,306574,3797698,306674,3797598,29,33,38.25,0.13766940818459,16.1392018717247,0.508724530001126,17.3185839653481,0.0119267783284886,0.1525,15.25,4,82.0718188882522,0.654922914231647,6.75,4.4877525861146,0,396.743024190267,396.553436279297,0.506679001517505
+3331,306574,3797598,306674,3797498,30,33,50.7894736842105,0.520984230973054,31.2535342635866,0.867012089810017,NA,0.0487936532345453,0.486842105263158,48.6842105263158,4,93.209185847161,0.635327635327635,28.421052631579,12.5365566227887,0,393.373176574707,388.5,4.01032722882586
+3332,306574,3797498,306674,3797398,31,33,56.8421052631579,0.583070434664144,32.6411366445386,0.85570987654321,NA,0.0265380683356903,0.155263157894737,15.5263157894737,5,84.7393608805724,0.733064565390019,12.8947368421053,23.1716051990703,0,393.443450927734,388.5,5.73064780573674
+3333,306574,3797398,306674,3797298,32,33,15.5263157894737,0.159264609468447,16.4136041473463,0.768361581920904,NA,0.0679189531294948,0.718421052631579,71.8421052631579,1,99.0277405777455,0.895955023364486,71.8421052631579,21.9635026376326,0,398.888168334961,397.088897705078,1.47597609741316
+3334,306574,3797298,306674,3797198,33,33,55.5,0.599266835627037,31.339142859867,0.893393393393393,NA,0.151852014265023,0.9175,91.75,1,99.7684657792434,0.947678221059516,91.75,5.98995850586436,0,400.210497538249,399.831359863281,0.493247046444703
+3335,306574,3797198,306674,3797098,34,33,56.8421052631579,0.145767608666036,18.582507771412,0.64034178187404,15.0743785731889,0.0476780660634272,0.336842105263158,33.6842105263158,2,95.489010491373,0.941753525444512,33.421052631579,0.503898285329342,0,400.220453262329,399.959045410156,0.304322052830829
+3336,306574,3797098,306674,3796998,35,33,9.47368421052632,0.0971784057773573,18.0314733294269,0.657407407407407,NA,0.0237682002511543,0.134210526315789,13.421052631579,3,83.9504367086869,0.787583411941446,10,31.489908657822,0,399.720476786296,399.427398681641,0.469747963850637
+3337,306574,3796998,306674,3796898,36,33,4.47368421052632,0.0229449013640983,5.72826754391368,0.270833333333333,65.1003704214645,0.0159289070104263,0.0578947368421053,5.78947368421053,5,57.3083709682081,0.46927374301676,1.84210526315789,38.1729081760753,21.4219055175781,398.990560531616,398.300750732422,0.449248328546144
+3338,306574,3796898,306674,3796798,37,33,24.25,0.0872806051889228,14.3291619040601,0.468216318785579,25.9778759826596,0.0148908280707838,0.035,3.5,6,42.8537377539076,0.481865284974093,1.75,13.9846481936319,5.19557523727417,398.731516520182,398.105041503906,0.6013629307932
+3339,306574,3796798,306674,3796698,38,33,7.63157894736842,0.0782826046539823,14.0719693241537,0.701149425287356,NA,0.0274832243947075,0.189473684210526,18.9473684210526,8,75.9816115966355,0.669700378361796,10,24.5025417142444,0,399.464509963989,399.223175048828,0.365156177920021
+3340,306574,3796698,306674,3796598,39,33,34.4736842105263,0.176810710511581,27.142400666284,0.659023385087215,11.6176592829314,0.0276728474676355,0.134210526315789,13.4210526315789,12,57.5958539512125,0.482234566607274,2.63157894736842,7.79409571254955,0,399.762418746948,399.329345703125,0.513933952270208
+3341,306574,3796598,306674,3796498,40,33,0,NA,NA,NA,NA,0.0274489446266671,0.152631578947368,15.2631578947368,4,79.97300674282,0.728571428571429,10,63.4688026493993,15.5867252349854,398.748827616374,397.161590576172,1.56147244698492
+3342,306574,3796498,306674,3796398,41,33,0.263157894736842,0.00269940016048215,0,0,NA,0.0152215088006127,0.0421052631578947,4.21052631578947,3,63.4385404381349,0.695512820512821,2.10526315789474,31.5911906957626,18.7329120635986,397.340600967407,396.683807373047,0.745904119530243
+3343,306574,3796398,306674,3796298,42,33,26.5,0.0715341042527769,10.5793275646082,0.479230182926829,18.7977675635206,0.0142980012825683,0.03,3,3,57.8971534133413,0.575500303214069,2,17.4996110995611,7.34765291213989,396.454411824544,396.111053466797,0.500028553867895
+3344,306574,3796298,306674,3796198,43,33,45.7894736842105,0.234847813961947,21.3089495695508,0.606734006734007,18.7329127343552,0.057453300960869,0.484210526315789,48.4210526315789,4,93.1337311102254,0.771908763505402,34.2105263157895,7.36059182364008,0,395.6953125,395.169097900391,0.463040088902565
+3345,306574,3796198,306674,3796098,44,33,12.6315789473684,0.0323928019257858,7.14936053071917,0.458088235294118,31.7437810576856,0.0136866085487877,0.0184210526315789,1.84210526315789,2,51.6860660322344,0.617962466487936,1.31578947368421,12.3631340435573,0,394.882278442383,394.424224853516,0.540569063607747
+3346,306574,3796098,306674,3795998,45,33,17.6315789473684,0.0602866035841013,12.6127595844574,0.534791898922334,29.4415926566297,0.0256926796936712,0.068421052631579,6.8421052631579,6,61.244839019595,0.581094116025906,3.68421052631579,18.8265837706052,0,393.982406616211,393.642272949219,0.429989447327266
+3347,306574,3795998,306674,3795898,46,33,28,0.0755832044935001,9.34030290297521,0.553539426523297,19.7576068087339,0.0451255288402899,0.4225,42.25,4,95.8465148665971,0.872349872349872,41.25,10.8935781710247,0,393.674522399902,393.577178955078,0.166369895587899
+3348,306574,3795898,306674,3795798,47,33,25.5263157894737,0.0290935350629743,6.68738848464392,0.344841327933115,12.19407597965,0.0140928601641558,0.05,5,2,72.0211767049231,0.745916515426497,3.15789473684211,0.546902656555176,0,393.955183029175,393.663238525391,0.282673208240148
+3349,306574,3795798,306674,3795698,48,33,17.6315789473684,0.0602866035841013,12.3805974655633,0.487076362076362,10.3911503722814,0.00871960435657385,0.0368421052631579,3.68421052631579,4,54.3552786715396,0.636612021857924,2.10526315789474,35.2556885310582,31.1734504699707,394.256604512533,394.102508544922,0.125148764896514
+3350,306574,3795698,306674,3795598,49,33,0,NA,NA,NA,NA,0.0184742208100751,0,0,0,NA,NA,0,NA,NA,394.316761016846,394.255859375,0.0755831404859255
+3351,306574,3795598,306674,3795498,50,33,27.25,0.294234617492554,25.0517338252783,0.851681957186544,NA,0.0273871313118434,0.1775,17.75,3,86.1485588000341,0.834650455927052,12.5,21.4951508280257,0,394.519353230794,394.410980224609,0.268206960665018
+3352,306574,3795498,306674,3795398,51,33,31.0526315789474,0.318529218936893,26.5086240887096,0.779661016949153,NA,0.0170969824370619,0.0473684210526316,4.73684210526316,4,60.6477211939732,0.650092081031307,2.89473684210526,12.6712850994534,0,395.608434677124,394.861236572266,0.951218641413897
+3353,306574,3795398,306674,3795298,52,33,0.263157894736842,0.00269940016048215,0,0,NA,0.0170023570164248,0.0342105263157895,3.42105263157895,2,68.3053913709012,0.769906145927944,2.89473684210526,61.9831088139461,36.7382659912109,397.417490641276,396.866577148438,0.888302125803509
+3354,306574,3795298,306674,3795198,53,33,17.3684210526316,0.0593868035306072,9.42674741759952,0.500377928949358,22.5141592034449,0.0145320266431027,0.0526315789473684,5.26315789473684,5,55.5127011732598,0.591397849462366,1.84210526315789,22.1492177009583,0,398.095388412476,397.719299316406,0.383205288487026
+3355,306574,3795198,306674,3795098,54,33,56.5,0.610064436268965,34.443978827683,0.870206489675516,NA,0.0196393924464428,0.125,12.5,5,73.8879459366836,0.704201680672269,4.75,4.51221877098083,0,398.041324615479,397.778533935547,0.245247630096121
+3356,306574,3795098,306674,3794998,55,33,13.9473684210526,0.0357670521263885,6.99082115406015,0.387122531939605,31.1734510129318,0.0205054881565095,0.0605263157894737,6.05263157894737,2,75.0598199214411,0.763460939931528,4.21052631578947,2.57840892542963,0,397.893915812174,397.651153564453,0.273215885432334
+3357,306574,3794998,306674,3794898,56,33,0,NA,NA,NA,NA,0.00616206391604895,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,71.7405052185059,59.2386741638184,398.177865982056,397.615295410156,0.509588136700871
+3358,306574,3794898,306674,3794798,57,33,17.3684210526316,0.0890802052959109,14.8156000837178,0.582786885245902,14.6953058096309,0.0111296864235555,0.0605263157894737,6.05263157894737,3,69.3750835605256,0.645191409897292,3.42105263157895,3.94834547457488,0,398.758293151855,398.337738037109,0.429217422011194
+3359,306574,3794798,306674,3794698,58,33,9,0.0971784057773573,17.0826611692032,0.694444444444445,NA,0.0169533658896034,0.045,4.5,6,51.7033711574271,0.573395384913709,2.5,28.5832107067108,5.19557523727417,399.189834594727,398.906524658203,0.316637994431315
+3360,306574,3794698,306674,3794598,59,33,36.8421052631579,0.377916022467501,29.3157954331728,0.814285714285714,NA,0.0295003605982761,0.178947368421053,17.8947368421053,5,82.8034138225058,0.774833010127128,10.2631578947368,14.1951370309381,0,399.744873046875,399.545654296875,0.418153069479412
+3361,306574,3794598,306674,3794498,60,33,37.1052631578947,0.190307711313991,18.2414781432638,0.676195090439277,27.979028590554,0.017272700870078,0.05,5,2,77.743422205647,0.782214156079855,4.73684210526316,13.1256636067441,5.19557523727417,400.446855545044,400.110137939453,0.626746471235765
+3362,306574,3794498,306674,3794398,61,33,44.4736842105263,0.456198627121483,30.2537518206314,0.82741617357002,NA,-0.0633991967794971,0.05,5,2,75.2734937978729,0.85480943738657,4.47368421052632,11.4849556370785,0,400.831026713053,399.717437744141,1.04315877616985
+3363,306574,3794398,306674,3794298,62,33,25.75,0.139019108264831,14.0471112327755,0.77886546184739,18.7329127343552,-0.129081452384125,0,0,0,NA,NA,0,NA,NA,400.521276473999,399.732574462891,0.988285823564193
+3364,306574,3794298,306674,3794198,63,33,63.4210526315789,0.650555438676197,33.699521770883,0.885892116182573,NA,-0.0742670101091502,0,0,0,NA,NA,0,NA,NA,401.870984395345,400.328491210938,1.58075081882959
+3365,306574,3794198,306674,3794098,64,33,28.6842105263158,0.294234617492554,28.9259042504297,0.836391437308869,NA,0.0127025175683421,0.234210526315789,23.4210526315789,3,87.0465240137506,0.778253258120988,10.7894736842105,42.5091788902711,10.3911504745483,403.083993911743,402.048309326172,0.639534818061752
+3366,306574,3794098,306674,3793998,65,33,0,NA,NA,NA,NA,0.0427649187909035,0.363157894736842,36.3157894736842,2,93.1989168429088,0.794372294372294,25.2631578947368,85.3458265498065,51.955753326416,402.587094624837,401.392974853516,1.16244669757198
+3367,306574,3793998,306674,3793898,66,33,35.75,0.386014222948947,29.3788668653364,0.841491841491842,NA,0.0258093576786996,0.19,19,2,88.2521661142403,0.861802100608071,10.75,42.4101571409326,11.6176595687866,402.519466400146,401.028228759766,1.38861713060054
+3368,306574,3793898,306674,3793798,67,33,90.2631578947368,0.925894255045377,37.1681394486414,0.918367346938776,NA,-0.0111900284563534,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,20.2921662330627,14.6953058242798,403.045649210612,401.502960205078,1.57584019450567
+3369,306574,3793798,306674,3793698,68,33,80,0.820617648786573,36.9068753291283,0.890350877192982,NA,0.0279713992180309,0.136842105263158,13.6842105263158,4,82.7744802047249,0.726637434913675,8.15789473684211,4.95670165465428,0,403.039674758911,401.181915283203,1.66544418408468
+3370,306574,3793698,306674,3793598,69,33,78.9473684210526,0.809820048144644,39.2446875466945,0.851111111111111,NA,0.0332716475195699,0.252631578947368,25.2631578947368,2,93.1608220651748,0.782181460858172,23.6842105263158,1.72026818990707,0,403.458503723145,402.535430908203,1.07584567909729
+3371,306574,3793598,306674,3793498,70,33,54.5,0.196156411661703,20.6716906786083,0.754076406974475,13.8548671861334,0.0338691693356395,0.295,29.5,8,84.7126914190361,0.67521707430238,16,1.82915966793642,0,402.35427347819,402.045288085938,0.652264134690537
+3372,306574,3793498,306674,3793398,71,33,20.7894736842105,0.0533131531695224,10.3946566161529,0.366972025216706,19.1975982356607,0.0412113417993839,0.252631578947368,25.2631578947368,6,86.3657390087334,0.665492957746479,12.6315789473684,4.99187770485878,0,401.810794830322,401.225341796875,0.47612606554726
+3373,306574,3793398,306674,3793298,72,33,38.6842105263158,0.132270607863625,15.1440242732308,0.607425299695831,22.6856468436421,0.0404694985160236,0.276315789473684,27.6315789473684,5,86.9651844913,0.692929292929293,15,5.29725355874924,0,401.116030375163,400.916717529297,0.312765880541492
+3374,306574,3793298,306674,3793198,73,33,42.1052631578947,0.0863808051354287,12.9617744917905,0.549582560296846,19.5460132603579,0.0218051844745643,0.0578947368421053,5.78947368421053,4,63.2020716614706,0.687808084127506,2.10526315789474,9.22337401996959,0,400.875049591064,400.754821777344,0.160736963678649
+3375,306574,3793198,306674,3793098,74,33,48.75,0.263191515647009,25.3982646175477,0.786761904761905,25.9778758441098,0.0203862281083457,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,0,0,400.826644897461,400.73828125,0.133866090320073
+3376,306574,3793098,306674,3792998,75,33,20.5263157894737,0.0701844041725358,12.7296969922101,0.382897603485839,19.0504422856805,0.0258688038832205,0.0842105263157895,8.42105263157895,2,82.3591833545246,0.874005305039788,7.63157894736842,8.7707681953907,0,400.623254776001,400.521423339844,0.115125916117621
+3377,306574,3792998,306674,3792898,76,33,16.8421052631579,0.0431904025677144,7.51114951216505,0.460470085470085,23.8016512244464,0.0232664845210916,0.107894736842105,10.7894736842105,2,85.198237675204,0.821298790132957,9.47368421052632,12.9497189638091,0,400.514773050944,400.484283447266,0.0442048303883674
+3378,306574,3792898,306674,3792798,77,33,26.0526315789474,0.0534481231775465,7.05915099488771,0.384323271665044,15.7553507408938,0.0109936161840922,0.0526315789473684,5.26315789473684,3,66.6022147472779,0.727598566308244,2.63157894736842,16.9123481750488,0,400.634349822998,400.528472900391,0.144044986279802
+3379,306574,3792798,306674,3792698,78,33,25.5,0.0550677632738358,7.93009345266907,0.409031246531247,20.7913156102229,0.00770470816827583,0,0,0,NA,NA,0,NA,NA,401.023061116536,400.847076416016,0.335547718553562
+3380,306574,3792698,306674,3792598,79,33,8.42105263157895,0.0172761610270857,4.20379386893526,0.357638888888889,24.6989275031685,0.0178146782212768,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707,401.581516265869,401.351989746094,0.320525009195935
+3381,306574,3792598,306674,3792498,80,33,36.0526315789474,0.0616363036643424,8.91246700462674,0.417167167167167,17.3185839913262,0.0286122882122168,0.134210526315789,13.4210526315789,5,77.8740907183182,0.668099081158509,8.15789473684211,8.20471028720631,0,401.990069071452,401.524139404297,0.688287868894088
+3382,306574,3792498,306674,3792398,81,33,33.9473684210526,0.116074206900732,12.3090181880974,0.447627793082339,15.586725558422,0.040587054972409,0.339473684210526,33.9473684210526,5,87.465567040554,0.787403577180639,15.7894736842105,17.5886364796365,0,402.120937347412,401.374664306641,1.07819541682391
+3383,306574,3792398,306674,3792298,82,33,35.75,0.0965035557372368,13.0554238676335,0.413811132561133,20.782300714255,0.0363703837701541,0.285,28.5,7,84.2686142056764,0.728426912892932,12,10.3051880451671,0,402.087867736816,401.332244873047,0.978841045797813
+3384,306574,3792298,306674,3792198,83,33,16.8421052631579,0.0345523220541715,7.66602562963228,0.525467262928563,25.4293645929939,0.0205398964411822,0.121052631578947,12.1052631578947,3,81.116753002923,0.810379241516966,8.94736842105263,31.5093488382257,5.19557523727417,401.996774673462,401.371490478516,0.722673012803138
+3385,306574,3792198,306674,3792098,84,33,41.5789473684211,0.0853010450712359,11.0914644156432,0.467657295850067,20.6778644043856,0.0410594553128057,0.326315789473684,32.6315789473684,4,89.6591939790499,0.7625,19.2105263157895,4.1555065378066,0,402.255609512329,401.553497314453,0.612587809408049
+3386,306574,3792098,306674,3791998,85,33,31.0526315789474,0.159264609468447,13.3885620104234,0.381766381766382,30.2951489556473,0.0475994157641732,0.376315789473684,37.6315789473684,7,86.9558812508464,0.700132057847779,18.1578947368421,9.52209579027616,0,402.653531392415,402.128631591797,0.481496064394067
+3387,306574,3791998,306674,3791898,86,33,51.25,0.55337703289884,41.7647959567138,0.778861788617886,NA,0.030659780672338,0.175,17.5,6,79.1115933127074,0.743779255974378,10.75,5.09386153902326,0,403.070384979248,402.736755371094,0.332741247232765
+3388,306574,3791898,306674,3791798,87,33,25,0.0854810050819347,9.48187534360558,0.369135802469136,29.0438361685922,0.0550316960122138,0.442105263157895,44.2105263157895,4,93.6475393637614,0.803408399269629,38.4210526315789,16.6256235752787,0,403.306226094564,403.001800537109,0.359376234073863
+3389,306574,3791798,306674,3791698,88,33,27.3684210526316,0.140368808345072,16.4616263539615,0.665798611111111,20.7823006752878,0.0488643300384482,0.413157894736842,41.3157894736842,6,88.5583671656262,0.757411559541604,19.4736842105263,8.95346117930807,0,403.08233833313,402.73779296875,0.43516104614108
+3390,306574,3791698,306674,3791598,89,33,52.6315789473684,0.539880032096429,37.4552628793415,0.79,NA,0.061730839483636,0.597368421052632,59.7368421052632,3,95.7130094790956,0.68293700458907,40.7894736842105,3.73415134236676,0,402.75905863444,402.598510742188,0.297249004932887
+3391,306574,3791598,306674,3791498,90,33,30.5,0.329326819578822,34.3985232768108,0.715846994535519,NA,0.0569783205576095,0.55,55,1,98.166317237229,0.821138211382114,55,6.76260445984927,0,402.939525604248,402.608673095703,0.474270525842708
+3392,306574,3791498,306674,3791398,91,33,9.21052631578947,0.0314930018722917,8.28586585108937,0.540196078431373,13.8548671861334,0.0270986737738942,0.152631578947368,15.2631578947368,4,79.9449990458579,0.799378881987578,7.63157894736842,28.4980428301055,0,403.568400065104,403.047210693359,0.620162485619859
+3393,306574,3791398,306674,3791298,92,33,27.1052631578947,0.0926794055098871,13.9400470087502,0.551646325959827,10.3911504415562,0.0362037039047879,0.226315789473684,22.6315789473684,5,81.0839040578442,0.712773998488284,8.68421052631579,21.6632209267727,0,404.227281570435,403.672088623047,0.656927812131092
+3394,306574,3791298,306674,3791198,93,33,34.2105263157895,0.0877305052156698,12.1425990991557,0.498825056116723,11.004404897097,0.0297145803643281,0.152631578947368,15.2631578947368,7,75.6224051937751,0.645962732919255,7.10526315789474,10.3692532407826,0,405.218948364258,404.592254638672,0.68000981847023
+3395,306574,3791198,306674,3791098,94,33,38.25,0.13766940818459,13.6149464067588,0.443531202435312,11.8258688283062,0.029849275746019,0.09,9,7,61.1409240518998,0.56043956043956,2.5,1.12981061140696,0,405.497898101807,405.243347167969,0.308018651642136
+3396,306574,3791098,306674,3790998,95,33,43.421052631579,0.148467008826518,15.8245696325602,0.541147244805781,23.2657530445481,0.036910667266133,0.205263157894737,20.5263157894737,5,83.0170204734819,0.662635569632402,10.5263157894737,2.8771154208061,0,405.21196492513,404.997650146484,0.288660638957256
+3397,306574,3790998,306674,3790898,96,33,38.4210526315789,0.197056211715197,19.4506735111253,0.695660434716522,41.5646017662249,0.0386073811159134,0.263157894736842,26.3157894736842,3,90.6545677880687,0.849206349206349,22.8947368421053,11.7197219800949,0,404.973802566528,404.899475097656,0.120229207684685
+3398,306574,3790898,306674,3790798,97,33,8.68421052631579,0.0890802052959109,16.6458564314159,0.646464646464647,NA,0.0283217395721677,0.05,5,2,77.2519177652181,0.85480943738657,4.73684210526316,12.8448348547283,5.19557523727417,405.117546081543,404.972351074219,0.190658373409605
+3399,306574,3790798,306674,3790698,98,33,4.25,0.0458898027281965,13.3591390162962,0.509803921568627,NA,0.035072125576844,0.1475,14.75,3,87.1984829895385,0.884997987464781,13.25,49.6207477036169,5.19557523727417,405.503173828125,405.253845214844,0.213847974706358
+3400,306574,3790698,306674,3790598,99,33,0.263157894736842,0.00269940016048215,0,0,NA,0.032779635111769,0.15,15,3,81.2608408163912,0.772296015180266,8.05555555555556,60.1210791093332,11.6176595687866,405.613729476929,405.495330810547,0.116233676471193
+3401,306674,3800598,306774,3800498,0,34,77.0083102493075,0.375216622307151,28.0761531990443,0.849935773924213,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.166590372721,382.828277587891,0.368987365121153
+3402,306674,3800498,306774,3800398,1,34,6.57894736842105,0.0337425020060388,10.2852168501505,0.465856481481481,23.2353185658643,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.526028103299,383.313262939453,0.310291352836563
+3403,306674,3800398,306774,3800298,2,34,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.912167867025,383.611724853516,0.284186782315838
+3404,306674,3800298,306774,3800198,3,34,3.8781163434903,0.0188958011233817,7.40584175341087,0.345833333333333,100.879822766819,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.219994439019,384.090393066406,0.191078779840425
+3405,306674,3800198,306774,3800098,4,34,14.9584487534626,0.0728838043330438,13.4507605624601,0.507598784194529,20.7823008831198,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.410235087077,384.281188964844,0.144285792831132
+3406,306674,3800098,306774,3799998,5,34,22.3684210526316,0.114724506820532,16.1838826722539,0.712626262626263,41.5646013505757,0.00331979994950272,0,0,0,NA,NA,0,NA,NA,384.491282145182,384.424987792969,0.11439894826122
+3407,306674,3799998,306774,3799898,6,34,6.09418282548476,0.0148467008826571,4.2083282669102,0.251388888888889,32.9636554607137,0.00421451852014752,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.922038656732534,4.98614958448753,5.85961683591207,0,384.488327026367,384.437255859375,0.116896938473489
+3408,306674,3799898,306774,3799798,7,34,0,NA,NA,NA,NA,0.00780650932176583,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,50.8817110061646,32.8597030639648,384.56586710612,384.4609375,0.201759637450445
+3409,306674,3799798,306774,3799698,8,34,32.409972299169,0.315829818776523,30.3498799635514,0.763532763532763,NA,0.00152991997301822,0.0277008310249307,2.77008310249307,2,59.2647635931022,0.762656147271532,1.93905817174515,6.87206931114197,0,385.037854512533,384.626281738281,0.705652831637996
+3410,306674,3799698,306774,3799598,9,34,67.3684210526316,0.230348813694558,19.5171478039841,0.609896476072947,10.7999867452537,-0.00327818747689315,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,4.45335020337786,0,386.051283094618,385.120239257812,1.43434706953815
+3411,306674,3799598,306774,3799498,10,34,92.797783933518,0.904299053761839,37.8041909921736,0.909452736318408,NA,0.00920802001503407,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,0,0,387.654510498047,386.348114013672,1.18576843220162
+3412,306674,3799498,306774,3799398,11,34,72.0221606648199,0.350922020862803,25.2804932105788,0.854092632077707,14.6953058096335,-0.00216598714674783,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,388.50547281901,388.232696533203,0.291406899676323
+3413,306674,3799398,306774,3799298,12,34,95.0138504155125,0.925894255045704,38.1633929502881,0.903304178814383,NA,-0.0237716926694148,0,0,0,NA,NA,0,NA,NA,388.841932508681,388.712249755859,0.253961768883569
+3414,306674,3799298,306774,3799198,13,34,94.4736842105263,0.969084657613434,38.5323427556999,0.903899721448468,NA,-0.0552164029121884,0,0,0,NA,NA,0,NA,NA,388.924247741699,388.720733642578,0.314060263774174
+3415,306674,3799198,306774,3799098,14,34,34.0720221606648,0.166013109869711,22.1256430929123,0.703224974200206,10.3911504415599,-0.0190585715205401,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648,388.928009033203,388.716735839844,0.30516561319925
+3416,306674,3799098,306774,3798998,15,34,12.1883656509695,0.0395912023537522,8.74995625217417,0.59656862745098,22.5141590648952,0.0133818918178013,0.130193905817175,13.0193905817174,2,88.8019530820823,0.856289808917197,12.7423822714681,7.15184849881111,0,389.274149576823,388.948394775391,0.340099669969581
+3417,306674,3798998,306774,3798898,16,34,5.26315789473684,0.0512886030491789,8.57651409178013,0.710526315789474,NA,-0.00509152234996673,0,0,0,NA,NA,0,NA,NA,389.724277072483,389.530395507812,0.299203351517986
+3418,306674,3798898,306774,3798798,17,34,24.7368421052632,0.0634359037713529,8.84037875584457,0.420462570621469,14.901086277831,-0.00360461513209884,0,0,0,NA,NA,0,NA,NA,390.240076700846,389.88720703125,0.40991770118113
+3419,306674,3798798,306774,3798698,18,34,34.3490304709141,0.167362809949952,22.0207917480272,0.72602641401091,36.3690265454597,-0.0105531520131783,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,17.4171357154846,14.6953058242798,391.019392225477,390.679016113281,0.494075926163556
+3420,306674,3798698,306774,3798598,19,34,14.6814404432133,0.0286136417011209,6.85793826661467,0.458353174603175,13.3205527198153,0.0113682463955246,0.124653739612188,12.4653739612188,3,83.2896559264346,0.849683544303798,10.803324099723,13.159765179952,0,391.801862080892,391.396728515625,0.411077070274524
+3421,306674,3798598,306774,3798498,20,34,2.77008310249307,0.00899800053494367,3.48877355989053,0.274074074074074,34.6371678960624,0.0287153084720635,0.279778393351801,27.9778393351801,4,88.9802684873925,0.769868253293668,19.6675900277008,31.6003300789559,0,392.326348198785,392.213653564453,0.256954870446941
+3422,306674,3798498,306774,3798398,21,34,2.10526315789474,0.00431904025677296,1.55867255064659,0.1,28.9381669669856,0.0130224475785661,0.236842105263158,23.6842105263158,4,87.0657357613001,0.715142428785607,16.3157894736842,24.0300881703695,5.19557523727417,392.739405314128,392.464752197266,0.299083846569748
+3423,306674,3798398,306774,3798298,22,34,0,NA,NA,NA,NA,0.0156905889907799,0.177285318559557,17.7285318559557,8,73.6224940927759,0.663570226070226,8.86426592797784,85.9313841462135,41.8880653381348,393.271040174696,393.048461914062,0.363514068142722
+3424,306674,3798298,306774,3798198,23,34,0,NA,NA,NA,NA,0.0154907470042163,0.102493074792244,10.2493074792244,5,71.8134306833938,0.634689334142886,4.15512465373961,49.185768642941,10.3911504745483,393.838907877604,393.501190185547,0.530552450047327
+3425,306674,3798198,306774,3798098,24,34,13.2963988919668,0.0647856038515944,11.2173572781022,0.5375,31.6034499687999,0.0249734678018839,0.193905817174515,19.3905817174515,4,87.4657158274861,0.74785572597994,15.2354570637119,8.31589429037911,0,394.250359429253,393.673034667969,0.907952833375591
+3426,306674,3798098,306774,3797998,25,34,4.21052631578947,0.0431904025677296,14.3564811418896,0.489583333333333,NA,0.0156900182981573,0.128947368421053,12.8947368421053,2,86.5414390577066,0.904330312185297,11.8421052631579,29.9963061663569,15.5867252349854,394.344927469889,393.561584472656,1.03017488537202
+3427,306674,3797998,306774,3797898,26,34,9.14127423822715,0.0296934017653141,8.11685686903774,0.491005291005291,64.1364252869141,0.0112556162348483,0.0277008310249307,2.77008310249307,3,50.9115480554855,0.60442691211922,1.38504155124654,17.3811436653137,10.3911504745483,395.138778686523,394.555023193359,0.548796633903305
+3428,306674,3797898,306774,3797798,27,34,83.9335180055402,0.81791824862638,35.006349435004,0.910891089108911,NA,0.0127499798893892,0.127423822714681,12.7423822714681,1,89.9922379614275,0.926536426536427,12.7423822714681,0,0,395.66347249349,395.525543212891,0.282915636022244
+3429,306674,3797798,306774,3797698,28,34,35.7340720221607,0.069644524140464,11.9289554592688,0.522664308871205,15.2835158398744,0.023771520522122,0.202216066481994,20.2216066481994,3,88.920870324781,0.833523220486111,17.1745152354571,2.77268757232248,0,396.155555725098,395.763549804688,0.635710567221975
+3430,306674,3797698,306774,3797598,29,34,76.5789473684211,0.392762723350291,21.9809568189922,0.561048199767712,14.6953058096335,0.119610432643247,0.994736842105263,99.4736842105263,1,99.9857139002346,0.735006973500708,99.4736842105263,1.4039342592633,0,397.660854763455,396.738372802734,1.43677926937055
+3431,306674,3797598,306774,3797498,30,34,30.4709141274238,0.296934017653141,27.4387419503717,0.815151515151515,NA,0.0460943421686123,0.476454293628809,47.6454293628809,4,92.4471919150224,0.777060070435465,32.9639889196676,10.3882855953172,0,394.044497172038,388.520812988281,4.16311008733522
+3432,306674,3797498,306774,3797398,31,34,45.4293628808864,0.442701626319229,31.2569030688638,0.822154471544715,NA,0.025256358725775,0.105263157894737,10.5263157894737,2,85.0244865728998,0.751633986928105,9.69529085872576,25.7612152099609,0,393.734398735894,392.4208984375,3.90124079127949
+3433,306674,3797398,306774,3797298,32,34,15.2354570637119,0.0742335044132853,9.71141761920083,0.474842767295597,25.9778758441098,0.0162902043297451,0.10803324099723,10.803324099723,5,75.3801264346332,0.706784519827998,7.20221606648199,51.0068814448821,0,398.699709574382,396.834381103516,2.06081578517304
+3434,306674,3797298,306774,3797198,33,34,80,0.820617648786863,35.5740577022817,0.919407894736842,NA,0.0996504329439057,0.842105263157895,84.2105263157895,1,99.5148332895738,0.811258278145695,84.2105263157895,1.35244070887566,0,400.42783610026,400.137817382812,0.355649246124317
+3435,306674,3797198,306774,3797098,34,34,61.7728531855956,0.300983117893866,26.8264163325683,0.835419311929379,41.5646013505757,0.0446151360491945,0.398891966759003,39.8891966759003,6,92.9928660533979,0.8109551738584,35.7340720221607,0.360803835921817,0,400.330223083496,400.125427246094,0.274281317776582
+3436,306674,3797098,306774,3796998,35,34,32.1329639889197,0.31313041861604,24.5386231728367,0.839080459770115,NA,0.0332495197599553,0.254847645429363,25.4847645429363,4,90.41301977914,0.828157584549823,22.4376731301939,11.9849886738736,0,399.664832221137,399.417785644531,0.466387137325891
+3437,306674,3796998,306774,3796898,36,34,1.93905817174515,0.00944790056169086,3.83351270257134,0.277777777777778,88.9339223645945,0.0285101039222264,0.168975069252078,16.8975069252078,2,86.4466415037585,0.897830188679245,9.69529085872576,20.915922305623,0,398.751922607422,398.290344238281,0.559544104726499
+3438,306674,3796898,306774,3796798,37,34,16.5789473684211,0.0850311050552177,14.8978577968048,0.417349726775956,15.5867255064659,0.0253112960626152,0.142105263157895,14.2105263157895,6,78.0924478465435,0.761857642324692,10.5263157894737,29.7905311937685,0,398.763061523438,398.092620849609,0.962107308374572
+3439,306674,3796798,306774,3796698,38,34,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0283912874583318,0.229916897506925,22.9916897506925,3,88.4106318873574,0.814491264131552,16.3434903047091,29.6919918290104,0,400.061185201009,399.52783203125,0.523220615970405
+3440,306674,3796698,306774,3796598,39,34,7.4792243767313,0.0242946014443479,5.5048082243229,0.340579710144927,19.0504423895965,0.0237208881767212,0.110803324099723,11.0803324099723,8,60.7548933829882,0.546798716696889,3.04709141274238,18.343768465519,0,400.564282735189,400.319976806641,0.397975294314336
+3441,306674,3796598,306774,3796498,40,34,0,NA,NA,NA,NA,0.0272876478387707,0.119113573407202,11.9113573407202,6,69.2164580265525,0.700428022361985,6.37119113573407,81.9133584665698,62.3469009399414,400.140075683594,399.229858398438,1.07175230381138
+3442,306674,3796498,306774,3796398,41,34,1.66204986149584,0.00809820048144931,2.20240816350088,0.216666666666667,10.3911504415599,0.0227577615655227,0.149584487534626,14.9584487534626,4,80.1580093303362,0.747119190221008,6.92520775623269,41.0025198194716,20.7823009490967,398.057741800944,397.171020507812,1.08952940027431
+3443,306674,3796398,306774,3796298,42,34,15,0.0256443015245895,4.95541770258592,0.234299516908213,18.5933494725076,0.0193943350261083,0.0763157894736842,7.63157894736842,8,57.4125949938728,0.470206704249257,2.89473684210526,17.2678396948453,5.19557523727417,396.693495008681,396.350463867188,0.686079702419531
+3444,306674,3796298,306774,3796198,43,34,51.2465373961219,0.499389029689374,34.8914872730865,0.769369369369369,NA,0.0561310265950441,0.457063711911357,45.7063711911357,3,94.3183555678607,0.763711734693878,31.8559556786704,3.96663482839411,0,395.703081766764,395.217132568359,0.572730367549527
+3445,306674,3796198,306774,3796098,44,34,33.5180055401662,0.0816568548546138,10.8347576349224,0.557630454340981,19.9175079400876,0.0362241964204533,0.177285318559557,17.7285318559557,3,88.8900912313057,0.8372113997114,16.3434903047091,5.9485295638442,0,394.997205946181,394.774536132812,0.389353682012243
+3446,306674,3796098,306774,3795998,45,34,27.7008310249307,0.0899800053494367,17.3876553840879,0.5849819481285,11.8258688283071,0.0307218706780845,0.221606648199446,22.1606648199446,3,90.5643938166394,0.746679364442885,19.3905817174515,15.9656719386578,0,394.403813680013,393.950164794922,0.542619754572227
+3447,306674,3795998,306774,3795898,46,34,45.7894736842105,0.23484781396203,18.1741189115864,0.451550387596899,20.7823006752878,0.0446185353332686,0.45,45,2,95.9587223043502,0.867243867243867,42.1052631578947,2.37982783680074,0,394.2515496148,393.920837402344,0.525256181045587
+3448,306674,3795898,306774,3795798,47,34,16.8975069252078,0.0235233442556385,6.07599785100877,0.310606060606061,15.5867256103819,0.0187745672197793,0.0526315789473684,5.26315789473684,2,77.0439842655532,0.89080459770115,4.98614958448754,5.55121592471474,0,394.394416809082,394.079803466797,0.328236149573339
+3449,306674,3795798,306774,3795698,48,34,8.03324099722992,0.0782826046540099,16.1678657063997,0.614942528735632,NA,0.00821169551406791,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.952574881765633,4.15512465373961,35.3831937154134,31.1734504699707,394.473978678385,394.400512695312,0.146559607933315
+3450,306674,3795698,306774,3795598,49,34,0,NA,NA,NA,NA,0.0131245011867789,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,85.9501088460286,67.54248046875,394.433652242025,394.360168457031,0.131147032897705
+3451,306674,3795598,306774,3795498,50,34,0,NA,NA,NA,NA,0.0222294739604159,0.0815789473684211,8.1578947368421,1,86.4755730963744,0.891117478510029,8.1578947368421,55.7989044189453,36.7382659912109,394.598924424913,394.450775146484,0.276263026600979
+3452,306674,3795498,306774,3795398,51,34,21.3296398891967,0.103926906178599,19.8416808230447,0.650421796625627,20.7823006752878,0.0149451429799903,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,9.17602896690369,5.19557523727417,395.769879659017,394.882751464844,1.18611342918234
+3453,306674,3795398,306774,3795298,52,34,10.2493074792244,0.0332926019792916,5.99247062908375,0.341935483870968,17.7388032424607,0.0185684161113996,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,8.65929206212362,0,397.817216661241,397.029876708984,0.865042983394337
+3454,306674,3795298,306774,3795198,53,34,16.0664819944598,0.039141302327005,7.35805408574732,0.456296992481203,15.9771251547039,0.0201122158804729,0.07202216066482,7.20221606648199,3,75.7026526309308,0.684601383327266,5.54016620498615,4.87868778522198,0,398.445068359375,398.183868408203,0.231666824089057
+3455,306674,3795198,306774,3795098,54,34,4.47368421052632,0.0229449013641064,6.02088368304593,0.517676767676768,11.6176592829322,0.019157166470062,0.0631578947368421,6.31578947368421,5,71.3892942924435,0.634831460674157,5,8.73107167085012,0,398.371208190918,398.173034667969,0.221614605384914
+3456,306674,3795098,306774,3794998,55,34,16.0664819944598,0.0782826046540099,13.1267006918657,0.308479532163743,15.5867255064659,0.0257508318359806,0.10803324099723,10.803324099723,2,83.5682500389006,0.79302436693741,8.58725761772853,6.83301640779544,0,398.227027045356,398.140869140625,0.140472633237011
+3457,306674,3794998,306774,3794898,56,34,12.7423822714681,0.124172407382223,16.01248726395,0.713768115942029,NA,0.058610216920557,0.470914127423823,47.0914127423823,2,96.9040714544976,0.788652292457722,46.2603878116344,31.5787445937886,0,398.520785013835,398.268249511719,0.265352206572442
+3458,306674,3794898,306774,3794798,57,34,12.1883656509695,0.0395912023537522,8.32948430180365,0.511631089217296,12.4040507292139,0.0435081743986337,0.335180055401662,33.5180055401662,3,92.102182813571,0.82907196969697,24.9307479224377,26.7123076659589,0,398.946509467231,398.815460205078,0.202570699873167
+3459,306674,3794798,306774,3794698,58,34,5.78947368421053,0.0197956011768761,5.32800321515207,0.444654882154882,35.9304512697872,0.015176778847174,0.0447368421052632,4.47368421052632,4,57.7344355262382,0.623140495867769,2.10526315789474,17.315842852873,10.3911504745483,399.194943745931,399.022674560547,0.203331757939176
+3460,306674,3794698,306774,3794598,59,34,25.207756232687,0.122822707301981,16.0190666144951,0.604263565891473,36.3690261817537,0.0172881723381256,0.0581717451523546,5.81717451523546,6,54.4448502862375,0.535477941176471,1.93905817174515,8.93631390162877,0,399.603135850694,399.347381591797,0.497190234035989
+3461,306674,3794598,306774,3794498,60,34,40.1662049861496,0.195706511635025,14.5868142679889,0.510489510489511,18.73291280641,0.0363732250323493,0.174515235457064,17.4515235457064,6,80.7280072426609,0.647589993898719,11.3573407202216,4.35673118016076,0,401.039726257324,400.312103271484,0.881948558211601
+3462,306674,3794498,306774,3794398,61,34,21.0526315789474,0.205154412196716,25.7321281721309,0.802631578947368,NA,0.0242650570344519,0.0443213296398892,4.43213296398892,4,61.5195839728942,0.694806763285024,3.32409972299169,7.46863940358162,0,402.135518391927,401.678283691406,0.770256027952318
+3463,306674,3794398,306774,3794298,62,34,30.5263157894737,0.31313041861604,25.3490295477539,0.852011494252873,NA,0.0109647942346591,0,0,0,NA,NA,0,NA,NA,402.204719543457,401.282043457031,0.972710018263271
+3464,306674,3794298,306774,3794198,63,34,63.1578947368421,0.307731618295074,16.8760637046013,0.536873156342183,31.1734510129318,-0.0211340043527764,0,0,0,NA,NA,0,NA,NA,403.139662000868,402.158386230469,1.13370675698386
+3465,306674,3794198,306774,3794098,64,34,62.6038781163435,0.610064436269181,31.8212351049819,0.898967551622419,NA,-0.0717943255831339,0.132963988919668,13.2963988919668,1,90.3199234519404,0.887477596820697,13.2963988919668,26.1324600378672,10.3911504745483,403.798393249512,403.570434570312,0.38466082537775
+3466,306674,3794098,306774,3793998,65,34,19.3905817174515,0.188958011233817,28.3562245896107,0.764285714285714,NA,-0.010663397541469,0.102493074792244,10.2493074792244,2,81.4102371761933,0.835610200364299,6.92520775623269,36.5592259071969,20.7823009490967,403.439036051432,403.234649658203,0.306603362475484
+3467,306674,3793998,306774,3793898,66,34,41.0526315789474,0.421106425035364,33.509288466386,0.822649572649573,NA,-0.0486267818729271,0.0868421052631579,8.68421052631579,1,87.058227229868,0.979720354360124,8.68421052631579,29.3397430073131,18.7329120635986,403.465789794922,403.229644775391,0.340307034289066
+3468,306674,3793898,306774,3793798,67,34,71.7451523545706,0.699144641565123,34.2943034117132,0.865508365508366,NA,-0.0971242944405858,0,0,0,NA,NA,0,NA,NA,404.087297227648,403.692230224609,0.479982796598116
+3469,306674,3793798,306774,3793698,68,34,42.9362880886427,0.20920351243744,24.8494146806868,0.791652721999108,25.9778761038998,-0.0139249278864274,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,11.6321672526273,5.19557523727417,404.737648010254,404.381988525391,0.379757888095852
+3470,306674,3793698,306774,3793598,69,34,46.2603878116344,0.450799826800678,32.6104385871093,0.821357285429142,NA,0.0372084655854882,0.254847645429363,25.4847645429363,5,83.8785946014915,0.713595974249705,9.97229916897507,10.2343109327814,0,404.418441772461,403.273803710938,0.827224445112162
+3471,306674,3793598,306774,3793498,70,34,43.421052631579,0.222700513239856,20.6660534932047,0.640199161425577,20.7823006752878,0.045816743401979,0.381578947368421,38.1578947368421,7,89.572346426227,0.780329185066238,20.7894736842105,10.8862299623161,0,402.555440266927,402.027770996094,0.968184543484551
+3472,306674,3793498,306774,3793398,71,34,20.2216066481994,0.0656854039050888,13.6433595891089,0.418414918414918,13.2217232901287,0.0273260696610483,0.182825484764543,18.2825484764543,5,84.8446881873592,0.712689756816507,14.404432132964,7.63952133872292,0,401.336003621419,400.839508056641,0.595472457851886
+3473,306674,3793398,306774,3793298,72,34,40.1662049861496,0.39141302327005,31.9572039603113,0.841379310344828,NA,0.0345803254913688,0.193905817174515,19.3905817174515,5,84.3069981067178,0.74785572597994,13.0193905817175,12.9585868835449,0,400.796902126736,400.660949707031,0.264596346119109
+3474,306674,3793298,306774,3793198,73,34,50.6925207756233,0.0987980458736815,12.1627801012838,0.491934046345811,15.7553507388183,0.0341498060368803,0.235457063711911,23.5457063711911,6,85.13109200857,0.6535176120549,12.7423822714681,5.76434629103717,0,400.717664082845,400.669830322266,0.0708032596547204
+3475,306674,3793198,306774,3793098,74,34,39.4736842105263,0.0809820048144931,12.6896886853805,0.454759615384615,13.3302116034866,0.025528330250994,0.0973684210526316,9.73684210526316,6,65.409859459405,0.673087033408211,4.21052631578947,0.842525714152568,0,400.779354519314,400.744323730469,0.0510963032341943
+3476,306674,3793098,306774,3792998,75,34,27.7008310249307,0.0674850040120775,12.4880625660051,0.459941520467836,18.7977675983755,0.026960439075554,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,7.72382146120071,0,400.712524414062,400.610382080078,0.0968142744696071
+3477,306674,3792998,306774,3792898,76,34,15.5124653739612,0.0755832044935269,18.3231871372166,0.568055555555556,57.387004000763,0.0167500046770538,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,40.4342543284098,11.6176595687866,400.600094265408,400.561553955078,0.0605999664644271
+3478,306674,3792898,306774,3792798,77,34,23.5457063711911,0.114724506820532,15.8143113237594,0.682077625570776,11.6176592829322,0.0189918405363879,0.127423822714681,12.7423822714681,2,87.6273256018697,0.897150997150997,12.1883656509695,33.6030867825384,14.6953058242798,400.720527648926,400.580413818359,0.211251713412275
+3479,306674,3792798,306774,3792698,78,34,18.4210526315789,0.0472395028084543,8.05068916017336,0.443899782135076,32.8421517677176,0.0126508550848006,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,27.9790287017822,27.9790287017822,401.179541693793,400.925109863281,0.401067448929537
+3480,306674,3792698,306774,3792598,79,34,50.9695290858726,0.124172407382223,12.8857291841808,0.510380993150685,13.602192394699,0.00799355857425905,0,0,0,NA,NA,0,NA,NA,401.95204671224,401.460723876953,0.6910863078412
+3481,306674,3792598,306774,3792498,80,34,51.2465373961219,0.124847257422343,14.3744955319388,0.425782272846295,15.5867255064659,0.0106253716518126,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989,403.069054497613,402.536804199219,0.745838110995672
+3482,306674,3792498,306774,3792398,81,34,53.7396121883656,0.261841815566861,27.6728266727493,0.737192118226601,16.4298513045218,0.0293755193023347,0.138504155124654,13.8504155124654,5,77.3179662219962,0.576659731416682,6.37119113573407,4.66529602050781,0,403.821825663249,403.504119873047,0.399923565981979
+3483,306674,3792398,306774,3792298,82,34,37.6315789473684,0.0965035557372709,16.0810690285637,0.603339947089947,11.0044048971005,0.0301410628679533,0.110526315789474,11.0526315789474,8,64.4753853987774,0.524960413367781,2.89473684210526,6.20116523333958,0,403.505777994792,403.239654541016,0.494887340782963
+3484,306674,3792298,306774,3792198,83,34,37.9501385041551,0.123272607328728,16.9153694907794,0.637162440733869,13.9894104798798,0.0301699135829408,0.227146814404432,22.7146814404432,5,81.0986652260629,0.714448152267952,8.58725761772853,5.29841206131912,0,403.176027933757,402.856109619141,0.466503833954472
+3485,306674,3792198,306774,3792098,84,34,50.1385041551247,0.12214785726186,13.0191598962329,0.575864887469586,17.0964007481854,0.0476811857801914,0.337950138504155,33.7950138504155,5,85.7347891177315,0.719778867453,15.5124653739612,5.13722834039907,0,402.997779846191,402.867645263672,0.262250175192099
+3486,306674,3792098,306774,3791998,85,34,18.005540166205,0.0584870034771339,10.795790804404,0.570255348516218,25.5801193547435,0.0324411831138592,0.21606648199446,21.606648199446,3,85.2597482163472,0.805884160393302,10.803324099723,9.70698300386086,0,403.061855740017,402.965698242188,0.212691961279537
+3487,306674,3791998,306774,3791898,86,34,33.6842105263158,0.0691046441083674,9.19666836178632,0.372985347985348,15.8593951356608,0.0409785370419788,0.257894736842105,25.7894736842105,5,87.7639226050223,0.823903932946486,18.4210526315789,5.18622878133034,0,403.56721496582,403.140563964844,0.52677600970746
+3488,306674,3791898,306774,3791798,87,34,19.9445983379501,0.0388713623109567,7.32884380528351,0.512250712250712,19.2322220970636,0.0399731620783009,0.351800554016621,35.180055401662,4,90.6365197518644,0.746216746216746,26.0387811634349,10.9167348155825,0,404.046590169271,403.697448730469,0.512654663021397
+3489,306674,3791798,306774,3791698,88,34,34.6260387811634,0.337425020060388,39.4178054950119,0.709333333333333,NA,0.0608848102267901,0.54016620498615,54.016620498615,6,91.9191951132067,0.711642148705319,40.1662049861496,10.509216548235,0,404.288828531901,403.780334472656,1.0783555790087
+3490,306674,3791698,306774,3791598,89,34,24.6537396121884,0.060061653570749,10.3532386371011,0.463326927556487,17.2007839253675,0.049011849033823,0.515235457063712,51.5235457063712,3,93.90807024683,0.748139534883721,37.9501385041551,9.32578105567604,0,404.067362467448,403.24365234375,1.80011700976706
+3491,306674,3791598,306774,3791498,90,34,5.78947368421053,0.0148467008826571,4.6026911062802,0.393055555555556,36.080904929437,0.0319156766655061,0.176315789473684,17.6315789473684,7,74.515394515717,0.667950083285547,6.57894736842105,15.3470304617241,0,404.334172566732,403.361267089844,1.76389501649155
+3492,306674,3791498,306774,3791398,91,34,22.7146814404432,0.0442701626319229,10.4058784050679,0.430409745293466,13.1519276017705,0.0289868325387267,0.210526315789474,21.0526315789474,7,78.2141393764153,0.688059701492537,9.41828254847645,6.99581692093297,0,404.819125705295,404.231597900391,1.19966839709824
+3493,306674,3791398,306774,3791298,92,34,35.4570637119114,0.115174406847279,14.9015915333749,0.472564581388111,11.6176593061685,0.0444622236389281,0.362880886426593,36.2880886426593,9,85.9996426275209,0.665071857376751,22.4376731301939,7.694665821454,0,405.452568054199,404.672973632812,0.724860553767147
+3494,306674,3791298,306774,3791198,93,34,43.213296398892,0.421106425035364,35.2970055243627,0.747863247863248,NA,0.0490446850100217,0.512465373961219,51.2465373961219,2,97.3201658849604,0.736111111111111,50.1385041551247,6.12061255171492,0,405.872887505425,405.608551025391,0.361461276895589
+3495,306674,3791198,306774,3791098,94,34,57.8947368421053,0.593868035306282,34.8687348259964,0.78030303030303,NA,0.0453418562577434,0.394736842105263,39.4736842105263,4,93.8019928490969,0.579446640316206,30.5263157894737,3.21272658983866,0,406.00715637207,405.829132080078,0.245195102471942
+3496,306674,3791098,306774,3790998,95,34,37.3961218836565,0.12147300722174,14.3730794131875,0.596693680996007,22.4176459356722,0.032679555675794,0.0941828254847645,9.41828254847645,4,70.6478497792122,0.724006116207951,4.15512465373961,1.72785513541278,0,405.615627712674,405.318511962891,0.393900917835564
+3497,306674,3790998,306774,3790898,96,34,46.5373961218837,0.226749613480581,20.8454136730792,0.671846846846847,11.6176592829322,0.0286947122659308,0.18005540166205,18.005540166205,6,76.5186477321475,0.65462807940684,7.4792243767313,3.40676990655752,0,405.146364847819,405.043762207031,0.16492965011209
+3498,306674,3790898,306774,3790798,97,34,7.20221606648199,0.0350922020862803,9.25466772979514,0.536458333333333,69.3176185573888,0.0205013050956816,0.0498614958448753,4.98614958448753,4,63.7613481588286,0.688154626930137,3.601108033241,8.53461096021864,0,405.174757215712,405.096496582031,0.121427753573904
+3499,306674,3790798,306774,3790698,98,34,14.7368421052632,0.0755832044935269,14.3207996353347,0.565208825847124,14.6953058096335,0.0455780476031254,0.410526315789474,41.0526315789474,3,92.8105710062355,0.751742160278746,28.1578947368421,23.9500620976473,0,405.495811462402,405.316986083984,0.208922603687135
+3500,306674,3790698,306774,3790598,99,34,0,NA,NA,NA,NA,0.0396372070575163,0.301169590643275,30.1169590643275,6,83.9152044922733,0.713807531380753,18.4210526315789,107.764706769036,52.2148818969727,405.529167175293,405.427917480469,0.155447488277974
+3501,306774,3800598,306874,3800498,0,35,66.7590027700831,0.216851812892143,18.4576688365087,0.805575808207387,15.5867255584239,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.878257751465,382.630706787109,0.262480933872083
+3502,306774,3800498,306874,3800398,1,35,23.4210526315789,0.060061653570749,6.67001732761764,0.334839357429719,16.2170545260471,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.240623474121,383.091766357422,0.221092627729564
+3503,306774,3800398,306874,3800298,2,35,10.2493074792244,0.0998778059378748,22.4216129339656,0.626126126126126,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.595567703247,383.338745117188,0.258354998074948
+3504,306774,3800298,306874,3800198,3,35,34.6260387811634,0.168712510030194,13.1625615402732,0.407930107526882,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.927322387695,383.708953857422,0.227876472866151
+3505,306774,3800198,306874,3800098,4,35,11.9113573407202,0.0580371034503867,16.0453313297423,0.341463414634146,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.218307495117,383.981140136719,0.210500204722099
+3506,306774,3800098,306874,3799998,5,35,0,NA,NA,NA,NA,0.0101780668153544,0.0263157894736842,2.63157894736842,2,31.8747015751665,0.486486486486487,1.31578947368421,43.2494516372681,36.7382659912109,384.480379740397,384.397705078125,0.198300222471736
+3507,306774,3799998,306874,3799898,6,35,0,NA,NA,NA,NA,0.00701193452752347,0.0332409972299169,3.32409972299169,4,50.4201712114784,0.574077195348053,1.93905817174515,51.3530842463175,37.8243598937988,384.617540359497,384.437530517578,0.38135526990139
+3508,306774,3799898,306874,3799798,7,35,0,NA,NA,NA,NA,0.00589985012673605,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,26.1064925193787,25.977876663208,384.507952372233,384.449096679688,0.158181244372959
+3509,306774,3799798,306874,3799698,8,35,21.8836565096953,0.213252612678165,26.6803151412563,0.767932489451477,NA,0.0236211128591457,0.168975069252078,16.8975069252078,1,92.0405515626388,0.954591194968553,16.8975069252078,6.85464230521781,0,384.508028030396,384.440155029297,0.148414686958831
+3510,306774,3799698,306874,3799598,9,35,84.4736842105263,0.866507451515076,35.6459522464796,0.925233644859813,NA,0.00209276434376845,0.0342105263157895,3.42105263157895,3,55.9124968957802,0.539812291855889,1.57894736842105,5.10278569735013,0,384.757537841797,384.523803710938,0.465681634043477
+3511,306774,3799598,306874,3799498,10,35,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0190542283390311,0.207756232686981,20.7756232686981,5,83.310522398907,0.79918944691672,14.404432132964,0,0,385.944770812988,385.098815917969,1.16954183453424
+3512,306774,3799498,306874,3799398,11,35,90.0277008310249,0.438652526078504,19.5386326735637,0.535603715170279,10.3911504415599,0.0226870080576423,0.105263157894737,10.5263157894737,3,83.0874459287934,0.822595704948646,9.41828254847645,0.136725664138794,0,387.927942276001,386.727203369141,0.870396737240605
+3513,306774,3799398,306874,3799298,12,35,93.9058171745152,0.915096654403772,37.7898412442459,0.901671583087512,NA,0.0397436091162966,0.32409972299169,32.409972299169,4,92.2270167172113,0.804593257036808,28.2548476454294,0.658480415996323,0,388.792999267578,388.503570556641,0.355300175246163
+3514,306774,3799298,306874,3799198,13,35,87.6315789473684,0.898900253440873,38.0604412604695,0.883883883883884,NA,0.0147101065074247,0.144736842105263,14.4736842105263,1,91.1941646912191,0.926153846153846,14.4736842105263,0.283395012942227,0,389.088491439819,388.909820556641,0.128570986080643
+3515,306774,3799198,306874,3799098,14,35,49.8614958448753,0.485892028886958,28.7440079760707,0.876851851851852,NA,0.0296150503410517,0.124653739612188,12.4653739612188,3,85.6078032627076,0.879746835443038,11.6343490304709,6.70289233525594,0,389.221148173014,389.117767333984,0.172578740815691
+3516,306774,3799098,306874,3798998,15,35,4.15512465373961,0.0202455012036233,6.58072984134804,0.320512820512821,32.8597026090436,0.0719601722051057,0.481994459833795,48.1994459833795,2,97.1515309615385,0.915804554617089,47.9224376731302,21.8849418519557,0,389.573162078857,389.279876708984,0.279728999910342
+3517,306774,3798998,306874,3798898,16,35,22.7146814404432,0.0737836043865381,7.30417724384981,0.36965811965812,26.4629865153882,0.0122605518711949,0.119113573407202,11.9113573407202,3,78.2709880661063,0.779262753319357,6.92520775623269,11.750141387762,0,389.964078267415,389.730987548828,0.290022476678924
+3518,306774,3798898,306874,3798798,17,35,38.1578947368421,0.195706511635025,15.6087843749689,0.543587470449173,10.3911504415599,-0.010429520669734,0.0289473684210526,2.89473684210526,1,73.6257888162573,1,2.89473684210526,0.472325021570379,0,390.389135360718,390.091033935547,0.30612139215564
+3519,306774,3798798,306874,3798698,18,35,58.7257617728532,0.286136417011209,28.2905270266055,0.791636733716475,25.9778761038998,0.00974550321146798,0.160664819944598,16.0664819944598,5,85.9135119620056,0.845115511551155,14.6814404432133,8.08139458195916,0,390.937555948893,390.685791015625,0.385361291958621
+3520,306774,3798698,306874,3798598,19,35,34.9030470914127,0.0566874033701451,8.94663127258409,0.483091107985623,17.9318384322935,0.00051998522150694,0.074792243767313,7.4792243767313,5,64.6185220517858,0.673234925497842,3.32409972299169,10.1868865931476,0,391.669033050537,391.305023193359,0.432500235527869
+3521,306774,3798598,306874,3798498,20,35,13.8504155124654,0.0674850040120775,13.0174649788989,0.32312925170068,83.1292027011514,0.0215186626546635,0.25207756232687,25.207756232687,4,86.79495612616,0.793667123914037,14.1274238227147,30.6234916225894,0,392.296918233236,392.120758056641,0.298799785786549
+3522,306774,3798498,306874,3798398,21,35,1.57894736842105,0.0161964009628986,7.79336275323294,0.277777777777778,NA,0.0280447216246102,0.236842105263158,23.6842105263158,5,84.3242170439689,0.731420004283572,10.7894736842105,61.4982331381904,18.7329120635986,392.767820358276,392.529968261719,0.279621672962905
+3523,306774,3798398,306874,3798298,22,35,0,NA,NA,NA,NA,0.01819039368744,0.0803324099722992,8.03324099722992,7,56.6194146568583,0.467892847987695,1.93905817174515,116.506362915039,77.9336318969727,393.297477722168,393.103179931641,0.390442887469269
+3524,306774,3798298,306874,3798198,23,35,0,NA,NA,NA,NA,0.0261078254051353,0.160664819944598,16.0664819944598,4,83.8991264954003,0.845115511551155,13.0193905817175,128.219432830811,88.3247756958008,394.665201187134,393.744323730469,1.1121535314956
+3525,306774,3798198,306874,3798098,24,35,0,NA,NA,NA,NA,0.010523123878312,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,128.997501373291,127.794258117676,395.826443990072,394.945220947266,1.02218008079246
+3526,306774,3798098,306874,3797998,25,35,0,NA,NA,NA,NA,0.0170000165418299,0.0921052631578947,9.21052631578947,4,75.1205492938526,0.60119940029985,4.47368421052632,68.5194875444685,32.8597030639648,395.937461853027,395.083068847656,1.00225636250757
+3527,306774,3797998,306874,3797898,26,35,10.2493074792244,0.0332926019792916,7.92519082169451,0.562809739280328,62.3469022683342,0.0137362107868872,0.0498614958448753,4.98614958448753,4,59.6257027879975,0.610193283662671,2.49307479224377,26.5582029554579,15.5867252349854,395.821243286133,395.388610839844,0.557722092378827
+3528,306774,3797898,306874,3797798,27,35,44.0443213296399,0.429204625516813,31.6565445829408,0.79874213836478,NA,0.0127744411172727,0.0831024930747922,8.31024930747922,2,84.0044760222821,0.844195079844627,8.03324099722992,7.7960194905599,0,395.430552164714,395.119110107422,0.268097762848462
+3529,306774,3797798,306874,3797698,28,35,13.2963988919668,0.0647856038515944,12.4315101168242,0.594298245614035,37.4658256128201,0.0237930581550855,0.182825484764543,18.2825484764543,2,90.2158970547083,0.797818717759764,16.8975069252078,7.47394459175341,0,395.37133026123,395.008331298828,0.470821073760775
+3530,306774,3797698,306874,3797598,29,35,61.3157894736842,0.209653412464188,20.8685021168661,0.604184247538678,10.3911503376439,0.0681905881459993,0.594736842105263,59.4736842105263,3,96.097328160482,0.806582965727859,52.6315789473684,1.80170665378064,0,395.833196004232,395.002227783203,1.15031291487758
+3531,306774,3797598,306874,3797498,30,35,58.1717451523546,0.566874033701451,30.3510704204316,0.894444444444444,NA,0.0585083072473633,0.750692520775623,75.0692520775623,1,99.1435121970083,0.653263479589609,75.0692520775623,8.02636756756209,0,392.91775894165,388.5,3.80421789423123
+3532,306774,3797498,306874,3797398,31,35,63.7119113573407,0.620862036911113,32.3379182425776,0.865942028985507,NA,0.0279058676067991,0.130193905817175,13.0193905817175,3,78.886792167699,0.712579617834395,4.98614958448754,12.5289179010594,0,393.328191121419,388.5,4.88407964513454
+3533,306774,3797398,306874,3797298,32,35,55.4016620498615,0.26994001604831,16.3673155811566,0.417922948073702,33.2679134207198,0.0550400094316829,0.556786703601108,55.6786703601108,1,98.1102407214926,0.739896112600536,55.6786703601108,6.97019369922467,0,398.804410934448,397.015380859375,1.71728289705054
+3534,306774,3797298,306874,3797198,33,35,89.7368421052632,0.920495454724738,37.4683414245889,0.918377321603128,NA,0.0957038959194171,0.928947368421053,92.8947368421053,1,99.7970159439352,0.59968950986915,92.8947368421053,1.01994940917147,0,400.160095214844,399.978759765625,0.266515579214959
+3535,306774,3797198,306874,3797098,34,35,47.6454293628809,0.0928593655206187,10.3639318280336,0.499355089355089,23.8979477637412,0.0429295907999096,0.371191135734072,37.1191135734072,6,89.088214367166,0.791434967863075,27.9778393351801,1.54365034245733,0,400.205476760864,400.111633300781,0.112992655067146
+3536,306774,3797098,306874,3796998,35,35,32.409972299169,0.105276606258841,11.7254130180296,0.691353187042842,24.8081014075028,0.0306528752161967,0.25207756232687,25.207756232687,4,89.8337587771074,0.810173754000915,21.3296398891967,11.2184348315983,0,399.916801452637,399.533996582031,0.319838947738622
+3537,306774,3796998,306874,3796898,36,35,18.5595567867036,0.0301433017920613,6.28779248030463,0.356463675213675,23.3132649106104,0.0417556162788778,0.332409972299169,33.2409972299169,6,85.6123300349194,0.759507404164605,15.2354570637119,11.3779474496841,0,399.456167221069,398.556304931641,0.715888275343117
+3538,306774,3796898,306874,3796798,37,35,29.4736842105263,0.0604665635948215,11.9138227539797,0.553769230769231,15.0382141547328,0.0274251039338292,0.236842105263158,23.6842105263158,3,88.6950859993771,0.837224245020347,17.3684210526316,9.38292136722141,0,399.880704243978,399.310211181641,0.691701649299739
+3539,306774,3796798,306874,3796698,38,35,9.41828254847645,0.0305932018188085,7.85039018384607,0.358465608465608,65.6865978888756,0.0290167534516201,0.18005540166205,18.005540166205,5,80.4048844673448,0.74097105955513,9.97229916897507,19.0275642908536,5.19557523727417,400.488088607788,400.045135498047,0.319474598677275
+3540,306774,3796698,306874,3796598,39,35,6.09418282548476,0.0593868035306282,11.3275516826933,0.621212121212121,NA,0.0225110855530767,0.124653739612188,12.4653739612188,2,87.1202240724581,0.819620253164557,11.3573407202216,46.5457354227702,27.9790287017822,400.659088134766,399.957855224609,0.393783894272727
+3541,306774,3796598,306874,3796498,40,35,0,NA,NA,NA,NA,0.0278198160899453,0.185595567867036,18.5595567867036,7,72.9549939837945,0.622187336473051,5.26315789473684,82.5476139694897,39.5683212280273,399.784866333008,399.1904296875,0.999400266803359
+3542,306774,3796498,306874,3796398,41,35,6.92520775623269,0.0674850040120775,12.5619377638123,0.606666666666667,NA,0.0317666319490267,0.240997229916898,24.0997229916898,9,77.4218239368294,0.702495879444314,13.5734072022161,44.4840031327872,0,398.274406433105,397.910980224609,0.630415453090564
+3543,306774,3796398,306874,3796298,42,35,18.1578947368421,0.093129305536667,17.0176079219941,0.622643288084465,15.5867255064659,0.0201572841488661,0.178947368421053,17.8947368421053,6,78.5505137650257,0.692954104718811,7.36842105263158,12.8635345907772,0,397.560592651367,396.916625976562,0.666821095683578
+3544,306774,3796298,306874,3796198,43,35,13.5734072022161,0.132270607863672,21.6480940557774,0.63265306122449,NA,0.0314388646119749,0.277008310249307,27.7008310249307,5,85.335708126699,0.73105576841209,11.6343490304709,28.3660425662994,0,396.277585983276,395.580871582031,0.824925532210288
+3545,306774,3796198,306874,3796098,44,35,19.9445983379501,0.0971784057773917,11.2891597911587,0.366197183098592,79.3070135755379,0.0331268941992973,0.218836565096953,21.8836565096953,1,93.6796277124475,0.871985815602837,21.8836565096953,6.80868961237654,0,395.474174499512,395.121673583984,0.330836974841803
+3546,306774,3796098,306874,3795998,45,35,10.803324099723,0.0526383031294205,9.16355575190427,0.518137254901961,10.3911503376439,0.0296985557274701,0.152354570637119,15.2354570637119,3,80.7137478285409,0.788888888888889,6.37119113573407,25.7503638787703,5.19557523727417,395.184518814087,394.684997558594,0.386109019259393
+3547,306774,3795998,306874,3795898,46,35,34.2105263157895,0.350922020862803,36.8907284895244,0.753846153846154,NA,0.0526241955813403,0.371052631578947,37.1052631578947,5,89.9160721090627,0.759657487593656,25.5263157894737,4.33381946712521,0,394.993512471517,394.730895996094,0.298156381329173
+3548,306774,3795898,306874,3795798,47,35,30.4709141274238,0.0742335044132853,16.3038781539816,0.606243485511778,14.2878317402394,0.0638300171138482,0.440443213296399,44.0443213296399,1,97.1844554840863,0.963278177132782,44.0443213296399,5.85447397172076,0,394.789022445679,394.617095947266,0.179676747907187
+3549,306774,3795798,306874,3795698,48,35,0,NA,NA,NA,NA,0.00768914977852496,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,84.8849347432454,76.7117462158203,394.675969441732,394.569885253906,0.104074957837698
+3550,306774,3795698,306874,3795598,49,35,0,NA,NA,NA,NA,0.0120338455115547,0,0,0,NA,NA,0,NA,NA,394.703842163086,394.549163818359,0.168725975630745
+3551,306774,3795598,306874,3795498,50,35,36.8421052631579,0.188958011233817,17.4717597318056,0.795386904761905,10.3911503376439,0.0180941750879452,0.0342105263157895,3.42105263157895,4,52.4663658047208,0.654859218891916,1.84210526315789,4.06145216868474,0,394.891377766927,394.648315429688,0.364031762989632
+3552,306774,3795498,306874,3795398,51,35,23.5457063711911,0.0458898027282127,13.6584698306625,0.461818181818182,16.7537615114205,0.0290464883037908,0.135734072022161,13.5734072022161,4,84.3608266202251,0.71073717948718,11.0803324099723,11.0064269961143,0,396.297479629517,395.25634765625,1.23704829741125
+3553,306774,3795398,306874,3795298,52,35,12.1883656509695,0.118773607061256,20.7987409201137,0.689393939393939,NA,0.014212674714321,0.07202216066482,7.20221606648199,3,75.7851736410038,0.76345103749545,5.26315789473684,9.07904557081369,0,398.34449005127,397.976165771484,0.778308344704318
+3554,306774,3795298,306874,3795198,53,35,2.77008310249307,0.026994001604831,12.9889380519499,0.3,NA,0.0159590786107525,0.0332409972299169,3.32409972299169,4,54.2652939860693,0.513231080397775,2.21606648199446,28.1086470683416,0,398.827033996582,398.547821044922,0.211661887817267
+3555,306774,3795198,306874,3795098,54,35,9.21052631578947,0.0472395028084543,10.5026570147584,0.582561728395062,37.824358195589,0.0172267742206091,0.0473684210526316,4.73684210526316,4,58.5373111945037,0.572334765704931,2.10526315789474,7.96877087487115,0,398.631448745728,398.390319824219,0.219115566048356
+3556,306774,3795098,306874,3794998,55,35,16.0664819944598,0.0782826046540099,13.7383785272333,0.424107142857143,10.3911503376439,0.018029354735888,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.756615540198888,3.32409972299169,3.03075222174327,0,398.383550008138,398.317260742188,0.0941510201006226
+3557,306774,3794998,306874,3794898,56,35,43.4903047091413,0.141268608398616,14.0950042807272,0.573354967978267,20.7823007445652,0.0299162034257241,0.182825484764543,18.2825484764543,5,84.4183422300208,0.77653647752395,14.9584487534626,14.1231785326293,0,398.451539993286,398.359619140625,0.145644060755763
+3558,306774,3794898,306874,3794798,57,35,37.9501385041551,0.123272607328728,14.9418016955295,0.537928302634185,15.8677674391512,0.0224019206215721,0.132963988919668,13.2963988919668,3,82.5953824684114,0.718693992051742,9.14127423822715,13.7632929086685,0,398.643145243327,398.447692871094,0.212097672865776
+3559,306774,3794798,306874,3794698,58,35,3.15789473684211,0.0107976006419324,4.04288950937982,0.203703703703704,41.0511026624509,0.0268908330048457,0.118421052631579,11.8421052631579,6,74.8670749237717,0.671641791044776,7.36842105263158,23.1536186218262,0,398.932334899902,398.694122314453,0.28613436838837
+3560,306774,3794698,306874,3794598,59,35,9.69529085872576,0.0944790056169086,12.7923102143912,0.742857142857143,NA,0.0166362458301269,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.8256038647343,4.43213296398892,5.67574661970139,0,399.607012430827,399.264343261719,0.626394042909914
+3561,306774,3794598,306874,3794498,60,35,32.9639889196676,0.0642457238194978,7.35976795539742,0.31855249745158,12.959983983288,0.0398220892270943,0.307479224376731,30.7479224376731,4,89.8759751547098,0.70398,19.3905817174515,6.01242568041827,0,401.011859893799,400.25634765625,0.897169054258277
+3562,306774,3794498,306874,3794398,61,35,47.9224376731302,0.466996227763577,30.4055838255599,0.83140655105973,NA,0.0391794624987914,0.290858725761773,29.0858725761773,4,90.3376120450056,0.701554232804233,21.606648199446,3.99999329703195,0,402.281117757161,402.039215087891,0.499189077036987
+3563,306774,3794398,306874,3794298,62,35,40,0.205154412196716,16.8769860527425,0.669540229885057,11.6176592829322,0.0288536108473636,0.15,15,2,90.3924697721745,0.85594237695078,14.7368421052632,8.58539281811631,0,402.834163665771,402.184020996094,0.697709719632258
+3564,306774,3794298,306874,3794198,63,35,63.4349030470914,0.20605421225021,12.7077023953018,0.514514514514514,13.1717378724924,-0.0340524670041569,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,11.0044050216675,10.3911504745483,404.032330830892,402.855407714844,1.11151414276557
+3565,306774,3794198,306874,3794098,64,35,36.01108033241,0.350922020862803,26.2183399395882,0.862820512820513,NA,-0.153022027552228,0,0,0,NA,NA,0,NA,NA,404.431703567505,403.903411865234,0.613993353545574
+3566,306774,3794098,306874,3793998,65,35,0,NA,NA,NA,NA,-0.0473174762416503,0,0,0,NA,NA,0,NA,NA,403.328567504883,402.923797607422,0.583114000566114
+3567,306774,3793998,306874,3793898,66,35,4.47368421052632,0.0229449013641064,6.38074087712655,0.496794871794872,20.7823006752878,-0.0299184337658804,0,0,0,NA,NA,0,NA,NA,403.088249206543,402.835266113281,0.322531952654133
+3568,306774,3793898,306874,3793798,67,35,25.207756232687,0.0614113536509906,11.5418409797785,0.399444444444444,19.3213831837256,-0.0823711716236838,0,0,0,NA,NA,0,NA,NA,403.732831319173,403.042022705078,0.785812293434207
+3569,306774,3793798,306874,3793698,68,35,3.04709141274238,0.0296934017653141,6.85424118171353,0.590909090909091,NA,-0.0201524259340396,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,36.1594009399414,34.8529777526855,404.725355148315,404.281494140625,0.411434880873262
+3570,306774,3793698,306874,3793598,69,35,19.6675900277008,0.0958287056971501,17.4801427246883,0.683664021164021,15.5867255064659,0.0331179605240816,0.157894736842105,15.7894736842105,6,78.559665623918,0.64859693877551,8.31024930747922,18.9188544541075,0,404.355684280396,403.207916259766,0.88533550911044
+3571,306774,3793598,306874,3793498,70,35,5,0.017096201016393,6.38095747419612,0.335185185185185,48.5640711077962,0.0370951383679456,0.260526315789474,26.0526315789474,4,91.0282432263878,0.718901195569595,21.3157894736842,23.3022443742463,5.19557523727417,402.546140034993,401.871673583984,1.10192983489812
+3572,306774,3793498,306874,3793398,71,35,20.4986149584488,0.19975561187575,25.6438658523148,0.788288288288288,NA,0.0126025724135701,0.0470914127423823,4.70914127423823,2,70.2737097001904,0.832093023255814,3.32409972299169,0,0,401.038955688477,400.661712646484,0.576872258514703
+3573,306774,3793398,306874,3793298,72,35,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0306597819753053,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,10.860778836643,0,400.614786783854,400.583312988281,0.0735100428018525
+3574,306774,3793298,306874,3793198,73,35,47.9224376731302,0.155665409254526,12.4875691097995,0.404761904761905,17.5317855147236,0.0442139324712776,0.365650969529086,36.5650969529086,5,88.8139217444668,0.725271340303321,17.1745152354571,5.45205653075016,0,400.697473526001,400.611297607422,0.0893357527077029
+3575,306774,3793198,306874,3793098,74,35,66.3157894736842,0.340124420220871,19.0730953281777,0.517,31.1734510129318,0.0305486228638696,0.0947368421052632,9.47368421052632,8,59.6944222413797,0.558139534883721,2.89473684210526,4.51829385757446,0,400.753992716471,400.718200683594,0.0589867859897235
+3576,306774,3793098,306874,3792998,75,35,15.7894736842105,0.0384664522868842,7.65246573544047,0.458035714285714,19.3528615444568,0.0278016162267023,0.0969529085872576,9.69529085872576,3,78.2611431583827,0.828167971229109,6.92520775623269,12.6243148122515,0,400.657186508179,400.603515625,0.0630854442628055
+3577,306774,3792998,306874,3792898,76,35,17.4515235457064,0.0850311050552177,11.3232789131962,0.540804597701149,25.9778761038998,0.0198538606383204,0.038781163434903,3.8781163434903,3,63.9070208989939,0.583861671469741,2.77008310249307,8.05862539155143,0,400.63053894043,400.601623535156,0.0719195186627002
+3578,306774,3792898,306874,3792798,77,35,17.7285318559557,0.0575872034236395,12.5955109277142,0.487280209502432,19.0504423895965,0.0233415712473767,0.0470914127423823,4.70914127423823,2,69.4674072116699,0.706162790697674,2.49307479224377,15.1499204074635,5.19557523727417,400.901844024658,400.662506103516,0.33625125939057
+3579,306774,3792798,306874,3792698,78,35,35.5263157894737,0.0607365036108698,11.9786358140044,0.420653377630122,13.4743980561031,0.0119825781821227,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,6.24523993900844,5.19557523727417,401.603459676107,401.365112304688,0.455332269794959
+3580,306774,3792698,306874,3792598,79,35,12.7423822714681,0.0310431018455557,6.33603767892192,0.474826388888889,30.7277411645156,0.017378756446434,0.0332409972299169,3.32409972299169,3,56.3269833848908,0.634923310298331,1.93905817174515,13.3172130584717,5.19557523727417,402.379804611206,401.97021484375,0.543401996051258
+3581,306774,3792598,306874,3792498,80,35,59.5567867036011,0.580371034503867,33.656588254255,0.817829457364341,NA,0.0104204775946167,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483,403.276438395182,402.497283935547,0.769146953995619
+3582,306774,3792498,306874,3792398,81,35,61.218836565097,0.298283717733383,27.3403953628242,0.760199381945682,15.5867255064659,0.0249645540504371,0.0470914127423823,4.70914127423823,5,53.7977735232606,0.496279069767442,2.49307479224377,3.79405767777387,0,404.000093460083,403.799682617188,0.223494956882094
+3583,306774,3792398,306874,3792298,82,35,30.2631578947368,0.0620862036911113,9.84207737341177,0.402694035947712,13.999099079402,0.0166467073027314,0.0342105263157895,3.42105263157895,4,50.1284378525324,0.597335755373903,1.84210526315789,4.35346130224375,0,403.867858886719,403.619018554688,0.265676853861601
+3584,306774,3792298,306874,3792198,83,35,42.382271468144,0.0826016449107829,11.4779960542561,0.476525423728814,14.4130259936048,0.0391420914190583,0.299168975069252,29.9168975069252,7,82.6791222953931,0.656085943042465,10.5263157894737,3.10841027012578,0,403.6335105896,403.430206298828,0.223029900492839
+3585,306774,3792198,306874,3792098,84,35,53.7396121883656,0.174561210377907,15.5794109071915,0.538051114822768,23.6517376566142,0.0324700110409908,0.207756232686981,20.7756232686981,7,82.8947901469733,0.588816486543759,13.8504155124654,2.64995882034302,0,403.467863082886,403.229400634766,0.274886821857442
+3586,306774,3792098,306874,3791998,85,35,7.4792243767313,0.0364419021665219,5.57196321521379,0.358974358974359,18.7329127343573,0.0215358311180451,0.0969529085872576,9.69529085872576,6,69.0598968390587,0.560873704252168,4.70914127423823,20.5221923419407,0,403.643402099609,403.234161376953,0.615807899871964
+3587,306774,3791998,306874,3791898,86,35,30.2631578947368,0.155215509227778,13.7554790093772,0.48598820058997,10.3911504415599,0.0446998936729965,0.323684210526316,32.3684210526316,3,93.3177987911447,0.893912163459022,30.5263157894737,3.23933843287026,0,404.366300582886,403.43701171875,0.713278677168898
+3588,306774,3791898,306874,3791798,87,35,32.1329639889197,0.062626083723208,8.48958392284787,0.471385281385281,16.6258405817967,0.044527261725216,0.465373961218837,46.5373961218837,2,95.7073577254204,0.800885843222464,40.7202216066482,5.54390868118831,0,404.956314086914,404.325469970703,0.609934339602443
+3589,306774,3791798,306874,3791698,88,35,0,NA,NA,NA,NA,0.0322883918503631,0.113573407202216,11.3573407202216,5,79.3863904022561,0.574909420289855,8.31024930747922,72.8289809808498,20.7823009490967,406.170015335083,405.017608642578,1.33433019185353
+3590,306774,3791698,306874,3791598,89,35,0,NA,NA,NA,NA,0.0354503873840311,0.138504155124654,13.8504155124654,3,88.2811574511878,0.808814072252695,13.2963988919668,97.4398341369629,65.1003723144531,407.798680623372,406.320007324219,1.80959558622264
+3591,306774,3791598,306874,3791498,90,35,0,NA,NA,NA,NA,0.0325388369682371,0.25,25,4,91.4390538434802,0.858823529411765,23.4210526315789,65.4904812059904,36.7382659912109,408.195798873901,406.623077392578,1.91367577941773
+3592,306774,3791498,306874,3791398,91,35,14.6814404432133,0.0357670521264011,9.99512691351497,0.470208333333333,21.9326806619607,0.0342406047042298,0.254847645429363,25.4847645429363,2,94.0096006800801,0.811791640221235,25.207756232687,9.73958476730015,0,406.900787353516,405.840393066406,2.22566265774643
+3593,306774,3791398,306874,3791298,92,35,55.1246537396122,0.537180631936137,30.0253721931338,0.88358458961474,NA,0.0445434085697766,0.365650969529086,36.5650969529086,3,94.7882648359794,0.849553353023248,34.9030470914127,1.01382673509193,0,405.817228317261,405.613708496094,0.139403265849313
+3594,306774,3791298,306874,3791198,93,35,67.590027700831,0.658653639157877,33.8900612895428,0.896857923497268,NA,0.0548712293824782,0.54016620498615,54.016620498615,2,96.8740684243374,0.807761432470212,50.1385041551247,1.62735239909245,0,405.775324503581,405.554107666016,0.246729269280905
+3595,306774,3791198,306874,3791098,94,35,51.8421052631579,0.531781831615171,35.368663716755,0.770727580372251,NA,0.0463233808723376,0.452631578947368,45.2631578947368,4,93.4650590722198,0.729131278815822,31.3157894736842,4.54887110410735,0,405.904832839966,405.585845947266,0.2997436439008
+3596,306774,3791098,306874,3790998,95,35,28.5318559556787,0.13901910826488,21.4393778620401,0.663220038220038,11.6176592829322,0.0384863194133351,0.235457063711911,23.5457063711911,4,88.2701244535269,0.79211056723294,17.4515235457064,11.5785274393418,0,405.685612996419,405.522735595703,0.281563236077389
+3597,306774,3790998,306874,3790898,96,35,21.3296398891967,0.0519634530892997,9.8540169594341,0.47156862745098,17.3071821976993,0.0316995057081313,0.171745152354571,17.1745152354571,4,82.2116304422494,0.742877492877493,10.5263157894737,13.1039104000215,0,405.261157989502,405.152069091797,0.166690604012944
+3598,306774,3790898,306874,3790798,97,35,1.38504155124654,0.00674850040120775,1.83691322620419,0.208333333333333,89.6895342491314,0.0367617642858783,0.28808864265928,28.808864265928,4,88.9704155357829,0.819721592209576,21.606648199446,31.8812852776968,0,405.136995951335,405.107208251953,0.0549160579375827
+3599,306774,3790798,306874,3790698,98,35,8.15789473684211,0.0278938016583254,6.49151168146537,0.431078904991949,10.7999867220173,0.0179619122983863,0.15,15,3,84.1762025074523,0.711884753901561,9.21052631578947,10.5042986869812,0,405.246438980103,405.126251220703,0.156987722820497
+3600,306774,3790698,306874,3790598,99,35,0,NA,NA,NA,NA,0.0399817473017714,0.35672514619883,35.672514619883,2,93.9384365479056,0.86635129576306,31.8713450292398,63.8327834019895,31.6034507751465,405.389848709106,405.266204833984,0.125743137175511
+3601,306874,3800598,306974,3800498,0,36,42.382271468144,0.206504112276957,20.877639825099,0.807704402515723,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.838027954102,382.661590576172,0.186404049076353
+3602,306874,3800498,306974,3800398,1,36,40.7894736842105,0.20920351243744,14.7650961639767,0.433982683982684,31.1734513246797,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.12168375651,383.04296875,0.147123177905371
+3603,306874,3800398,306974,3800298,2,36,4.98614958448753,0.0242946014443479,6.04383073309574,0.380208333333333,108.112916229972,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.404454549154,383.231292724609,0.188524950709414
+3604,306874,3800298,306974,3800198,3,36,7.75623268698061,0.0377916022467634,7.96641047919569,0.41025641025641,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.718980577257,383.587524414062,0.225445986857995
+3605,306874,3800198,306974,3800098,4,36,1.38504155124654,0.0134970008024155,5.79547075306021,0.3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.250915527344,383.934509277344,0.43113469854282
+3606,306874,3800098,306974,3799998,5,36,2.36842105263158,0.012147300722174,2.97218804259788,0.270833333333333,18.73291280641,0.0121782505515225,0,0,0,NA,NA,0,NA,NA,385.039235432943,384.562133789062,0.733843257534686
+3607,306874,3799998,306974,3799898,6,36,0,NA,NA,NA,NA,0.00953194525360418,0,0,0,NA,NA,0,NA,NA,385.622200012207,385.118927001953,0.532708546537863
+3608,306874,3799898,306974,3799798,7,36,62.3268698060942,0.607365036108698,30.3594652980962,0.907407407407407,NA,0.0131496875640392,0.0775623268698061,7.75623268698061,2,78.8533834903465,0.807273940607274,5.54016620498615,0,0,384.982767740885,384.584838867188,0.603195788521552
+3609,306874,3799798,306974,3799698,8,36,58.1717451523546,0.283437016850726,24.0559605558069,0.845001127323091,31.1734510129318,-0.00859870684201412,0,0,0,NA,NA,0,NA,NA,384.548848470052,384.449981689453,0.190875562947827
+3610,306874,3799698,306974,3799598,9,36,57.1052631578947,0.292884917412417,18.3574669207897,0.55269989615784,41.5646013505757,-0.0111540023310226,0.0342105263157895,3.42105263157895,3,58.9334263668246,0.71238268240993,2.36842105263158,0,0,384.637725830078,384.509368896484,0.238940600146904
+3611,306874,3799598,306974,3799498,10,36,97.7839335180055,0.952888256650535,37.6235778195697,0.923512747875354,NA,0.0249753819344906,0.221606648199446,22.1606648199446,4,87.1666759764835,0.755726529998496,15.2354570637119,0.0649446904659271,0,385.700116475423,384.920074462891,1.07522587218217
+3612,306874,3799498,306974,3799398,11,36,80.6094182825485,0.785525446700583,38.0565716728772,0.878579610538373,NA,0.0269853497308086,0.277008310249307,27.7008310249307,1,95,0.807896977437207,27.7008310249307,0.786038069725037,0,387.484603881836,386.653900146484,0.820393357596756
+3613,306874,3799398,306974,3799298,12,36,92.2437673130194,0.898900253440873,36.1789384014583,0.922922922922923,NA,-0.00669957565803499,0.127423822714681,12.7423822714681,5,78.7897155973945,0.77960927960928,9.69529085872576,0.338841863300489,0,388.49563937717,388.256011962891,0.382759530184981
+3614,306874,3799298,306974,3799198,13,36,69.7368421052632,0.715341042528022,38.510022165242,0.877987421383648,NA,0.0170503981495131,0.173684210526316,17.3684210526316,6,84.5694351804873,0.842148989199668,15.2631578947368,0.629766688202367,0,388.919507344564,388.748382568359,0.210272104216923
+3615,306874,3799198,306974,3799098,14,36,28.5318559556787,0.13901910826488,18.7302526358648,0.670682730923695,62.3469026493595,0.00905114623395161,0.0581717451523546,5.81717451523546,3,70.4441772992613,0.734558823529412,3.8781163434903,6.91689831869943,0,389.292721218533,389.154571533203,0.283960858230857
+3616,306874,3799098,306974,3798998,15,36,8.31024930747922,0.0404910024072465,7.71781552138955,0.66025641025641,39.5683219745072,0.0359571897779687,0.243767313019391,24.3767313019391,5,89.909352068309,0.82312591866732,22.1606648199446,27.5816174474629,0,389.87478129069,389.532470703125,0.404852554622431
+3617,306874,3798998,306974,3798898,16,36,32.6869806094183,0.318529218937006,32.3800030890293,0.803672316384181,NA,0.0364242449588719,0.279778393351801,27.9778393351801,3,92.622882880799,0.9309604759881,26.8698060941828,5.4870827740962,0,390.332088894314,390.108917236328,0.341576964196403
+3618,306874,3798898,306974,3798798,17,36,38.1578947368421,0.195706511635025,17.4009707441711,0.827777777777778,11.6176592829322,0.01121503858776,0.126315789473684,12.6315789473684,1,90.1930490625984,0.860417278871584,12.6315789473684,7.0682080189387,0,390.710454305013,390.410308837891,0.350334688521249
+3619,306874,3798798,306974,3798698,18,36,87.8116343490305,0.855709850873143,35.8018248364045,0.912197686645636,NA,0.0125808516157051,0.0277008310249307,2.77008310249307,2,61.6502325407046,0.762656147271532,2.21606648199446,0,0,391.151421440972,390.906951904297,0.346433786113819
+3620,306874,3798698,306974,3798598,19,36,68.6980609418283,0.223150413266603,13.5413246011222,0.523202614379085,13.8548672554132,0.0292607655404397,0.141274238227147,14.1274238227147,6,72.5593692116865,0.705524657026325,4.15512465373961,2.24483957477644,0,391.744740804036,391.390777587891,0.400468837223652
+3621,306874,3798598,306974,3798498,20,36,49.0304709141274,0.119448457101377,13.0817634630399,0.637053800719055,11.004404862246,0.0291919565821757,0.279778393351801,27.9778393351801,4,89.8269376598854,0.80822354441139,21.0526315789474,6.8771445066622,0,392.320275200738,392.177337646484,0.248302307492153
+3622,306874,3798498,306974,3798398,21,36,27.6315789473684,0.141718508425363,14.9405213714858,0.733567290552585,20.7823006752878,0.0336467926316178,0.25,25,5,90.9495644686861,0.796078431372549,22.8947368421053,28.7740293302034,0,392.743077596029,392.535736083984,0.26711788282529
+3623,306874,3798398,306974,3798298,22,36,3.04709141274238,0.0296934017653141,7.86899167180593,0.560606060606061,NA,0.0178035348950072,0.152354570637119,15.2354570637119,4,85.1672112051726,0.726797385620915,12.7423822714681,45.7863977258856,20.7823009490967,393.246124267578,393.071929931641,0.395474188620602
+3624,306874,3798298,306974,3798198,23,36,2.21606648199446,0.0215952012838648,5.77814729992049,0.520833333333333,NA,0.0149811583869954,0.0637119113573407,6.37119113573407,3,71.3050890336985,0.762656147271532,4.70914127423823,52.8183955316958,31.6034507751465,395.007804870605,393.734680175781,1.38456338767836
+3625,306874,3798198,306974,3798098,24,36,0,NA,NA,NA,NA,0.00983680917770698,0,0,0,NA,NA,0,NA,NA,396.842770046658,396.458557128906,0.572067942171416
+3626,306874,3798098,306974,3797998,25,36,0,NA,NA,NA,NA,0.0132257464533747,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,99.2613220214844,99.2613220214844,397.222333272298,396.910491943359,0.272168599933795
+3627,306874,3797998,306974,3797898,26,36,17.7285318559557,0.172761610270919,24.6084931291419,0.770833333333333,NA,0.0102078037021768,0,0,0,NA,NA,0,NA,NA,396.413299560547,395.629852294922,0.867235779643342
+3628,306874,3797898,306974,3797798,27,36,33.2409972299169,0.0809820048144931,11.4577587070762,0.55374053030303,28.5756636103738,0.016486987377376,0.038781163434903,3.8781163434903,4,54.330277939219,0.583861671469741,2.21606648199446,3.80117215429034,0,395.04012383355,394.774475097656,0.481627658338622
+3629,306874,3797798,306974,3797698,28,36,17.1745152354571,0.0557876033166508,8.34541203531477,0.364942528735632,45.5609549025637,0.032108857087682,0.257617728531856,25.7617728531856,3,92.4785082511204,0.878281783851825,24.6537396121884,12.385882131515,0,394.715049743652,394.570343017578,0.234694627336059
+3630,306874,3797698,306974,3797598,29,36,30.5263157894737,0.062626083723208,10.0996696645694,0.596524698201527,14.4897026230513,0.0256674332390671,0.126315789473684,12.6315789473684,5,76.6394996740939,0.748751101968851,6.05263157894737,7.68459335962931,0,394.614505343967,394.514373779297,0.258574753933788
+3631,306874,3797598,306974,3797498,30,36,65.6509695290859,0.639757838034495,32.3374973192347,0.90365682137834,NA,0.0476303643074888,0.443213296398892,44.3213296398892,3,95.5551850349515,0.712881172369445,40.4432132963989,8.56821731626987,0,393.202496846517,389.226043701172,2.99122918793799
+3632,306874,3797498,306974,3797398,31,36,63.4349030470914,0.61816263675063,31.8007010434144,0.902474526928675,NA,0.0271131129292096,0.235457063711911,23.5457063711911,1,94.1064480595709,0.844082925424705,23.5457063711911,19.7359065168044,0,392.910441080729,388.5,5.47455780969866
+3633,306874,3797398,306974,3797298,32,36,89.196675900277,0.434603425837779,18.0654013424849,0.458982346832814,15.5867256623399,0.00678986409331422,0.229916897506925,22.9916897506925,1,93.9693281121994,0.929330005383448,22.9916897506925,3.47709805132395,0,399.003161112467,397.177520751953,1.474445287371
+3634,306874,3797298,306974,3797198,33,36,88.6842105263158,0.909697854082805,38.1453384243008,0.887240356083086,NA,0.109581824745003,0.976315789473684,97.6315789473684,1,99.9348060656475,0.939939939939942,97.6315789473684,0.678999803136944,0,400.011990017361,399.934814453125,0.158616101387358
+3635,306874,3797198,306974,3797098,34,36,44.5983379501385,0.144867808612593,22.4619130857888,0.623950873950874,14.0680686315929,0.0602770272679943,0.407202216066482,40.7202216066482,4,90.6474287924288,0.755428551575583,29.0858725761773,4.43083538003519,0,400.17160542806,400.148559570312,0.0629109670939791
+3636,306874,3797098,306974,3796998,35,36,15.5124653739612,0.0302332817974107,7.08506834001666,0.413282498184459,16.8711423847961,0.034043149556884,0.263157894736842,26.3157894736842,3,89.1500841132972,0.82436974789916,20.4986149584488,19.1435958209791,0,400.24215359158,400.112365722656,0.214181645090973
+3637,306874,3796998,306974,3796898,36,36,41.5512465373961,0.134970008024155,17.4915987217753,0.634447754606642,13.8548671861359,0.0238184104491162,0.0914127423822715,9.14127423822715,8,56.7140698741783,0.510840108401084,2.49307479224377,6.51636135216915,0,400.346862792969,400.125762939453,0.323807254640758
+3638,306874,3796898,306974,3796798,37,36,43.6842105263158,0.224050213320097,27.9138058453945,0.733490566037736,36.3690261817537,0.0231096505637029,0.107894736842105,10.7894736842105,5,75.9782994974131,0.593860886665812,5.26315789473684,4.64520591642798,0,400.575544569227,400.290710449219,0.354111473790149
+3639,306874,3796798,306974,3796698,38,36,5.54016620498615,0.026994001604831,11.9008152422901,0.372222222222222,89.6895334063745,0.0300319490180852,0.25207756232687,25.207756232687,2,93.7700741350455,0.900960219478738,24.9307479224377,17.0454618799817,0,400.670244852702,400.583587646484,0.204298486729781
+3640,306874,3796698,306974,3796598,39,36,12.1883656509695,0.0237547214122513,5.79967601695482,0.286060606060606,27.1231228673529,0.0263395434106156,0.14404432132964,14.404432132964,3,82.5841065435409,0.855605250718156,11.0803324099723,24.6462101752941,0,400.423065185547,399.78662109375,0.570322782954101
+3641,306874,3796598,306974,3796498,40,36,5.81717451523546,0.0283437016850726,9.73940287170232,0.434294871794872,88.3247778699733,0.0134957097009009,0.0526315789473684,5.26315789473684,4,64.2159875452471,0.490421455938697,3.04709141274238,10.8856620537607,0,399.04823811849,398.343414306641,0.94424754456277
+3642,306874,3796498,306974,3796398,41,36,23.2686980609418,0.0566874033701451,8.18578824847319,0.362480438184664,17.9380476144214,0.0343369005528186,0.28808864265928,28.808864265928,4,88.5935841321144,0.789675190911172,19.3905817174515,14.3566287939365,0,398.015029907227,397.83740234375,0.366508662174269
+3643,306874,3796398,306974,3796298,42,36,1.57894736842105,0.0161964009628986,4.73848231235071,0.5,NA,0.0302650259078148,0.255263157894737,25.5263157894737,2,90.3219672251772,0.683603427967995,15,26.8722765765239,5.19557523727417,397.694498697917,397.546020507812,0.262143737461908
+3644,306874,3796298,306974,3796198,43,36,4.15512465373961,0.0202455012036233,5.77140906210715,0.488636363636364,36.3690261817537,0.0258335995294703,0.155124653739612,15.5124653739612,4,84.4715517804892,0.792563799222579,12.4653739612188,42.3153944696699,18.7329120635986,396.735366821289,395.9619140625,0.850367018523077
+3645,306874,3796198,306974,3796098,44,36,19.1135734072022,0.186258611073334,24.3199818518405,0.707729468599034,NA,0.0145688358602166,0.171745152354571,17.1745152354571,2,89.0912358828263,0.865849126718692,15.7894736842105,10.1366936468309,0,395.719533284505,395.351043701172,0.421100792649279
+3646,306874,3796098,306974,3795998,45,36,27.9778393351801,0.0681598540521983,12.6873542558891,0.471308479532164,18.6060759899048,0.0574448933830379,0.470914127423823,47.0914127423823,3,92.2889895338879,0.722228727230149,25.207756232687,11.4826124387629,0,395.567868550618,395.329162597656,0.264660196576742
+3647,306874,3795998,306974,3795898,46,36,36.8421052631579,0.377916022467634,37.2536020268444,0.735714285714286,NA,0.0360258073060944,0.255263157894737,25.5263157894737,5,85.5945622493061,0.71447138621502,12.6315789473684,9.15718866131969,0,395.152425130208,395.010375976562,0.248263723280021
+3648,306874,3795898,306974,3795798,47,36,28.5318559556787,0.0695095541324399,14.6051182728375,0.526041666666667,16.8856193506294,0.0669601829764043,0.498614958448753,49.8614958448753,1,97.6879089680563,0.982031755512419,49.8614958448753,6.01421909597185,0,394.833427429199,394.760314941406,0.108023633437434
+3649,306874,3795798,306974,3795698,48,36,15.5124653739612,0.0755832044935268,13.5333723586719,0.590909090909091,55.9580575863417,-0.000908649828700333,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.96360153256705,5.26315789473684,0,0,394.796315511068,394.756072998047,0.0686547473636961
+3650,306874,3795698,306974,3795598,49,36,25.207756232687,0.0818818048679874,11.966440003892,0.468841857730747,26.2901992154418,0.0123559929288251,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,1.83691322803497,0,394.978762308757,394.830413818359,0.204655572031084
+3651,306874,3795598,306974,3795498,50,36,47.3684210526316,0.0971784057773917,11.3527802170335,0.554216524216524,11.7425850517235,0.0405678095784663,0.35,35,3,94.5508543944427,0.713922441195168,32.6315789473684,3.43061456465183,0,395.243855794271,394.989898681641,0.401244280985938
+3652,306874,3795498,306974,3795398,51,36,24.9307479224377,0.0404910024072465,8.40219632171918,0.461624916259929,16.2516110673365,0.0223819712526246,0.03601108033241,3.601108033241,2,64.6953405017921,0.769476372924649,2.49307479224377,5.12700447669396,0,396.532587687174,395.717254638672,1.09646226958848
+3653,306874,3795398,306974,3795298,52,36,0,NA,NA,NA,NA,0.013072162717919,0,0,0,NA,NA,0,NA,NA,398.523773193359,397.713073730469,0.897098869444039
+3654,306874,3795298,306974,3795198,53,36,13.8504155124654,0.0674850040120775,8.62062684085355,0.484375,20.7823006752878,0.0113232509441286,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,26.8138199533735,7.34765291213989,398.961013793945,398.912048339844,0.109387921583789
+3655,306874,3795198,306974,3795098,54,36,6.31578947368421,0.0647856038515944,13.5341435826758,0.625,NA,0.0172662906870181,0.0473684210526316,4.73684210526316,5,51.2208851541742,0.494577450378555,1.57894736842105,14.856338845359,0,398.721715291341,398.557220458984,0.187789171479217
+3656,306874,3795098,306974,3794998,55,36,12.7423822714681,0.124172407382223,19.6152527257872,0.695652173913043,NA,0.0157579674338406,0,0,0,NA,NA,0,NA,NA,398.432495117188,398.367980957031,0.122485972008866
+3657,306874,3794998,306974,3794898,56,36,32.1329639889197,0.104376806205347,18.5932371412834,0.553519439837848,22.8797588272154,-0.00324674079107918,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417,398.334711710612,398.317230224609,0.0484868777964411
+3658,306874,3794898,306974,3794798,57,36,33.7950138504155,0.109775606526313,16.5075649993216,0.582657004830918,15.5867255584239,0.0198530495625345,0.113573407202216,11.3573407202216,3,83.6998408514433,0.852853260869565,10.2493074792244,11.2295400921891,0,398.446858723958,398.37451171875,0.149476684804167
+3659,306874,3794798,306974,3794698,58,36,3.68421052631579,0.0377916022467634,13.9727434821143,0.44047619047619,NA,0.0429193382799368,0.363157894736842,36.3157894736842,2,96.0734035175182,0.825528007346189,36.0526315789474,31.7179124528083,0,398.91835530599,398.609405517578,0.436530111075835
+3660,306874,3794698,306974,3794598,59,36,0,NA,NA,NA,NA,0.00408828623105385,0,0,0,NA,NA,0,NA,NA,399.824174669054,399.383422851562,0.656742868455383
+3661,306874,3794598,306974,3794498,60,36,0.277008310249307,0.0026994001604831,0,0,NA,0.0169607489154806,0.038781163434903,3.8781163434903,3,60.5372063498304,0.635878962536023,2.49307479224377,18.0274073055812,10.3911504745483,400.943552652995,400.370483398438,0.640891128072075
+3662,306874,3794498,306974,3794398,61,36,25.207756232687,0.245645414603962,23.4980174396777,0.816849816849817,NA,0.027653116489202,0.07202216066482,7.20221606648199,4,71.6091396772965,0.658318165271205,4.43213296398892,10.2339343841259,0,401.743014865451,401.491333007812,0.476352321217315
+3663,306874,3794398,306974,3794298,62,36,15.2631578947368,0.15656520930802,15.9399766004333,0.824712643678161,NA,0.0288060563458466,0.1,10,4,75.8002331454413,0.664902998236332,6.05263157894737,8.22628200681586,0,403.014050801595,402.056182861328,1.13491243918592
+3664,306874,3794298,306974,3794198,63,36,63.4349030470914,0.61816263675063,31.2339176544925,0.908296943231441,NA,-0.00887709302173222,0,0,0,NA,NA,0,NA,NA,405.011433919271,403.999633789062,1.24487154693846
+3665,306874,3794198,306974,3794098,64,36,39.0581717451524,0.380615422628117,26.6121425721354,0.873522458628842,NA,-0.0540064728286419,0,0,0,NA,NA,0,NA,NA,404.410700480143,403.794036865234,1.10315344305651
+3666,306874,3794098,306974,3793998,65,36,0,NA,NA,NA,NA,-0.0314966286019031,0,0,0,NA,NA,0,NA,NA,402.964260525174,402.66845703125,0.608356318008102
+3667,306874,3793998,306974,3793898,66,36,0,NA,NA,NA,NA,-0.00966949591537214,0,0,0,NA,NA,0,NA,NA,402.629994710286,402.499908447266,0.232493898803255
+3668,306874,3793898,306974,3793798,67,36,27.1468144044321,0.132270607863672,14.8995635521356,0.452256944444444,31.6034499687999,-0.0284444912194634,0,0,0,NA,NA,0,NA,NA,402.957010904948,402.585540771484,0.709790712125296
+3669,306874,3793798,306974,3793698,68,36,0.277008310249307,0.0026994001604831,0,0,NA,0.0175801566474245,0,0,0,NA,NA,0,NA,NA,404.004458109538,403.193481445312,0.875040529437489
+3670,306874,3793698,306974,3793598,69,36,6.09418282548476,0.0593868035306282,12.2061042183934,0.568181818181818,NA,0.0160171668783863,0.0277008310249307,2.77008310249307,4,41.7780866361615,0.446197676966908,1.10803324099723,17.0465975284576,0,403.701543172201,402.837890625,0.9927238888472
+3671,306874,3793598,306974,3793498,70,36,8.94736842105263,0.0458898027282127,8.36785904023877,0.496415770609319,11.6176592829322,0.0375007084881777,0.313157894736842,31.3157894736842,4,91.0201705593973,0.72364126578686,23.6842105263158,33.2973959906762,0,402.00491672092,401.258819580078,0.994625110282762
+3672,306874,3793498,306974,3793398,71,36,7.4792243767313,0.0364419021665219,8.2076464110053,0.474242424242424,89.3880554051525,0.0124136620219892,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.887240356083086,6.64819944598338,2.90393982330958,0,400.90217590332,400.662841796875,0.410835255605877
+3673,306874,3793398,306974,3793298,72,36,3.32409972299169,0.0323928019257972,7.63898031878122,0.597222222222222,NA,0.0292560860419187,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,3.61017883525175,0,400.613142225477,400.585266113281,0.0643935639885001
+3674,306874,3793298,306974,3793198,73,36,45.4293628808864,0.221350813159614,19.6938499850278,0.52208419599724,15.5867256623399,0.0365788402109035,0.221606648199446,22.1606648199446,2,92.8002828336368,0.800962357776553,21.606648199446,4.36222587823868,0,400.712885538737,400.628326416016,0.0863843557109477
+3675,306874,3793198,306974,3793098,74,36,77.8947368421053,0.799022447502998,40.4306260302134,0.867117117117117,NA,0.0348960108675161,0.176315789473684,17.6315789473684,8,73.678841102538,0.605690723901587,5,1.50549264452351,0,400.752244737413,400.697601318359,0.0855037086772348
+3676,306874,3793098,306974,3792998,75,36,30.1939058171745,0.0367793271865823,6.56344986124398,0.280869923727067,16.5570306710985,0.0234687194693037,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,11.0203877449036,5.19557523727417,400.65318552653,400.621002197266,0.0599173733087004
+3677,306874,3792998,306974,3792898,76,36,9.14127423822715,0.0296934017653141,8.17300321973238,0.316091954022989,40.1983430003979,0.0198562784042985,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,22.3067683577538,7.34765291213989,400.746029324002,400.64111328125,0.206330272527219
+3678,306874,3792898,306974,3792798,77,36,33.5180055401662,0.163313709709228,17.9103191476241,0.560541310541311,25.9778758441098,0.0190363532829374,0.0249307479224377,2.49307479224377,2,62.6945622308157,0.658143939393939,2.21606648199446,19.698795636495,10.3911504745483,401.174324035645,400.851867675781,0.344064439582493
+3679,306874,3792798,306974,3792698,78,36,30.2631578947368,0.0517385030759261,7.13992655344711,0.319676700111483,26.5110919394637,0.019232541280072,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,16.4298515319824,16.4298515319824,401.608442518446,401.458282470703,0.279118251358171
+3680,306874,3792698,306974,3792598,79,36,49.584487534626,0.241596314363238,18.6824742220349,0.658991228070175,39.5683217016104,0.0110226938874735,0.0498614958448753,4.98614958448754,1,80.6758725138067,0.766115970197603,4.98614958448754,13.9614097542233,7.34765291213989,402.033678690592,401.876647949219,0.332672764836459
+3681,306874,3792598,306974,3792498,80,36,40.4432132963989,0.197056211715266,25.7031379450094,0.678980066148208,15.5867255064659,0.0129763661718541,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,10.1476848125458,5.19557523727417,402.737165662977,402.421508789062,0.791587011595337
+3682,306874,3792498,306974,3792398,81,36,47.0914127423823,0.152966009094042,19.1460479151152,0.540336313324819,12.6435414584993,0.0182348549309725,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,6.77886366844177,5.19557523727417,403.950012207031,403.656677246094,0.377504560614142
+3683,306874,3792398,306974,3792298,82,36,16.5789473684211,0.0566874033701451,12.0699787635966,0.418855218855219,40.0745910816048,0.0179983687040201,0.0473684210526316,4.73684210526316,2,73.9757596745474,0.883364027010436,4.21052631578947,3.29005347357856,0,404.041208902995,403.989959716797,0.077434643508087
+3684,306874,3792298,306974,3792198,83,36,35.1800554016621,0.0857059550953385,14.4119691527188,0.479361230842912,16.3598811151608,0.0374216260956059,0.268698060941828,26.8698060941828,4,88.125079232603,0.685649599442703,15.5124653739612,6.2901160250005,0,403.846476236979,403.702056884766,0.149619886371038
+3685,306874,3792198,306974,3792098,84,36,39.0581717451524,0.126871807542706,20.0970796789227,0.702904238618524,14.6725397470507,0.0384263033406884,0.285318559556787,28.5318559556787,5,85.8606125427895,0.697464906767232,16.8975069252078,3.97288392353984,0,403.747721354167,403.668518066406,0.164076356032518
+3686,306874,3792098,306974,3791998,85,36,4.15512465373961,0.0134970008024155,5.66834855887219,0.31712962962963,41.2379527629496,0.022789618073188,0.0415512465373961,4.15512465373961,3,63.8138832313923,0.620599054125066,2.77008310249307,20.6825645446777,5.19557523727417,404.405965169271,403.913940429688,0.685780907499816
+3687,306874,3791998,306974,3791898,86,36,33.4210526315789,0.0685647640762708,12.6705437179347,0.49537037037037,15.8832716164841,0.0275603465962233,0.115789473684211,11.5789473684211,5,73.5221999277356,0.740186615186615,6.05263157894737,6.12939274311066,0,405.274876912435,404.949096679688,0.459378089646461
+3688,306874,3791898,306974,3791798,87,36,50.415512465374,0.245645414603962,17.4434164324783,0.476851851851852,10.3911504415599,0.0316413991545699,0.166204986149584,16.6204986149584,5,79.3364923698968,0.64250575006389,7.20221606648199,4.23898727099101,0,405.551856146918,405.322723388672,0.368082628064088
+3689,306874,3791798,306974,3791698,88,36,0,NA,NA,NA,NA,0.0314957830157061,0.193905817174515,19.3905817174515,4,86.9931592144538,0.707512642136731,14.6814404432133,73.886190196446,31.1734504699707,406.199282328288,405.700134277344,0.589430866182433
+3690,306874,3791698,306974,3791598,89,36,0,NA,NA,NA,NA,0.0285287900186735,0.0969529085872576,9.69529085872576,2,83.5557847992878,0.656335942458219,8.03324099722992,104.37034236363,62.7783737182617,407.281585693359,406.214874267578,1.74617527785999
+3691,306874,3791598,306974,3791498,90,36,20,0.102577206098358,12.4911982381173,0.503472222222222,10.3911503376439,0.0371800078736238,0.221052631578947,22.1052631578947,8,80.5433648412308,0.655360058044622,12.3684210526316,16.3614021993819,0,409.331832885742,408.343780517578,1.3742009904304
+3692,306874,3791498,306974,3791398,91,36,4.43213296398892,0.0431904025677296,10.1833917639278,0.583333333333333,NA,0.0283710600043249,0.210526315789474,21.0526315789474,3,87.4455987488466,0.792039800995025,14.6814404432133,26.8501405527717,0,407.57170952691,405.944000244141,2.17895609957674
+3693,306874,3791398,306974,3791298,92,36,24.0997229916898,0.0587119534905075,11.664903047158,0.50062656641604,35.0701327402647,0.0401567813933574,0.349030470914127,34.9030470914127,4,90.2740153099098,0.839003995168633,26.5927977839335,7.0675510414063,0,405.736821492513,405.460510253906,0.357070294752251
+3694,306874,3791298,306974,3791198,93,36,32.9639889196676,0.10707620636583,16.7618248203151,0.631429334554335,26.8183145368847,0.027928044592584,0.229916897506925,22.9916897506925,2,93.2346336391803,0.876327509421035,22.7146814404432,1.99237334584615,0,405.4009636773,405.310180664062,0.154344168732935
+3695,306874,3791198,306974,3791098,94,36,3.68421052631579,0.0188958011233817,6.23192147487668,0.418518518518519,83.1292035324793,0.0323706889435925,0.210526315789474,21.0526315789474,2,89.2087729118995,0.83943661971831,13.4210526315789,22.2321828305721,0,405.402435302734,405.285369873047,0.1945273968025
+3696,306874,3791098,306974,3790998,95,36,0,NA,NA,NA,NA,0.0245493004239257,0.0443213296398892,4.43213296398892,2,73.0060093777287,0.738405797101449,3.8781163434903,54.667382478714,36.7382659912109,405.385718451606,405.303619384766,0.159280790491879
+3697,306874,3790998,306974,3790898,96,36,32.409972299169,0.105276606258841,17.0075317863366,0.66205000518726,19.1735217331239,0.0258987604763793,0.0249307479224377,2.49307479224377,4,37.0325701044433,0.487215909090909,1.10803324099723,3.94195630815294,0,405.230611165365,405.165283203125,0.0934277307069528
+3698,306874,3790898,306974,3790798,97,36,24.3767313019391,0.118773607061256,16.5877032683532,0.714950980392157,25.9778758441098,0.0204482955011279,0.0470914127423823,4.70914127423823,2,76,0.790116279069767,4.43213296398892,14.6997928338892,0,405.142076280382,405.115661621094,0.0608908606154457
+3699,306874,3790798,306974,3790698,98,36,36.5789473684211,0.375216622307151,27.6041518989896,0.779376498800959,NA,0.0137954641251877,0.260526315789474,26.0526315789474,1,94.8134491638391,0.962013675076972,26.0526315789474,2.06624515610512,0,405.263071695964,405.14599609375,0.176620647257347
+3700,306874,3790698,306974,3790598,99,36,27.4238227146814,0.133620307943914,30.5228834497118,0.552216748768473,11.6176593526411,0.0321453080656571,0.195906432748538,19.5906432748538,5,80.6628408377204,0.681118881118881,8.47953216374269,12.5171117711423,0,405.638559977214,405.320037841797,0.467278053896385
+3701,306974,3800598,307074,3800498,0,37,33.6842105263158,0.115174406847238,16.1390108713468,0.59388327721661,15.586725558422,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.928152084351,382.761169433594,0.148422587234224
+3702,306974,3800498,307074,3800398,1,37,2.75,0.00989780058843454,2.5962207311703,0.154320987654321,56.1799085454331,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.114143371582,383.041046142578,0.10989934397441
+3703,306974,3800398,307074,3800298,2,37,25.2631578947368,0.259142415406286,20.8092988348009,0.836805555555555,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.318967819214,383.200927734375,0.164813272791428
+3704,306974,3800298,307074,3800198,3,37,15.7894736842105,0.161964009628929,20.6541804893704,0.780555555555556,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.683957417806,383.537658691406,0.274777329712689
+3705,306974,3800198,307074,3800098,4,37,23.4210526315789,0.240246614282911,23.8386165054574,0.808988764044944,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.543048858643,383.963256835938,0.692154681585884
+3706,306974,3800098,307074,3799998,5,37,0,NA,NA,NA,NA,0.0234716168802379,0.13125,13.125,1,84.8892993493996,1,13.125,116.635675339472,109.107078552246,385.744402567546,385.317626953125,0.614448355850328
+3707,306974,3799998,307074,3799898,6,37,0,NA,NA,NA,NA,0.01412375311857,0.0315789473684211,3.15789473684211,1,74.9788187875667,0.93925831202046,3.15789473684211,109.189479192098,103.911506652832,386.069206237793,385.798126220703,0.256190911720367
+3708,306974,3799898,307074,3799798,7,37,48.6842105263158,0.499389029689197,28.6305184490759,0.866666666666667,NA,-0.00407681645870549,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483,385.579483032227,385.037109375,0.499854606308343
+3709,306974,3799798,307074,3799698,8,37,56.8421052631579,0.291535217332072,27.0104647514909,0.832321156062163,36.3690261817537,0.00281680453052008,0.0447368421052632,4.47368421052632,3,66.9877958743225,0.665013774104683,3.15789473684211,3.66746487337,0,385.174444198608,384.704437255859,0.590824032850457
+3710,306974,3799698,307074,3799598,9,37,63.75,0.688347040922948,38.4096101986073,0.866666666666667,NA,0.00536508119551854,0.0025,0.25,1,0,NA,0.25,0,0,385.327646891276,384.722442626953,0.940341925942422
+3711,306974,3799598,307074,3799498,10,37,59.2105263157895,0.202455012036161,17.3134686774095,0.664324021687883,19.4160420960329,0.0285683394731773,0.194736842105263,19.4736842105263,6,80.5622968216797,0.722976370035193,7.89473684210526,0.425791089599197,0,386.900844573975,385.038177490234,1.57975173915816
+3712,306974,3799498,307074,3799398,11,37,53.1578947368421,0.181759610805798,11.6947517272051,0.438662131519274,20.9955023285718,0.0122383088650933,0.1,10,4,74.8467164527699,0.735449735449735,5,0,0,388.243232727051,387.527496337891,0.621357384330495
+3713,306974,3799398,307074,3799298,12,37,56.0526315789474,0.191657411394232,11.287406023761,0.343650793650794,21.4219052824966,0.000905476978790064,0.0842105263157895,8.42105263157895,2,83.4476898169513,0.874005305039788,7.89473684210526,0.391975879669189,0,388.787307739258,388.485473632812,0.340499203412874
+3714,306974,3799298,307074,3799198,13,37,40.5,0.437302825998108,39.9434747564823,0.763374485596708,NA,0.0175036489885315,0.075,7.5,3,76.4359477082507,0.823496966354109,5.25,11.6703282356262,0,389.024955749512,388.795928955078,0.261647617486377
+3715,306974,3799198,307074,3799098,14,37,41.3157894736842,0.141268608398566,12.7733969255464,0.535039941902687,19.8362613943856,0.0250825628899436,0.173684210526316,17.3684210526316,3,85.9428120251948,0.842148989199668,14.4736842105263,2.81149711030902,0,389.556978861491,389.171722412109,0.62418889662536
+3716,306974,3799098,307074,3798998,15,37,21.5789473684211,0.036891802193256,8.33070985446098,0.370620620620621,16.4526547705444,0.0197573742484996,0.0526315789473684,5.26315789473684,5,57.6904534345068,0.625448028673835,2.36842105263158,7.16027383804321,0,390.432041168213,389.784729003906,0.574520707782399
+3717,306974,3798998,307074,3798898,16,37,3.94736842105263,0.0404910024072322,8.23763839149232,0.644444444444444,NA,0.0012518884579262,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,22.6336080551147,14.6953058242798,390.886131286621,390.514831542969,0.45502063283022
+3718,306974,3798898,307074,3798798,17,37,57.75,0.311780718535688,19.13647138714,0.780529953917051,31.1734510129318,0.00761837434933113,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,16.6258407592773,0,391.279504776001,390.862243652344,0.418777616673783
+3719,306974,3798798,307074,3798698,18,37,87.3684210526316,0.896200853280073,37.9125782972876,0.89206827309237,NA,0.0116038499082175,0.0447368421052632,4.47368421052632,1,79.8422589600986,0.958126721763085,4.47368421052632,0.305622072780834,0,391.594357808431,391.288696289062,0.319760214055736
+3720,306974,3798698,307074,3798598,19,37,56.8421052631579,0.194356811554715,15.6457750615137,0.676972160482703,17.0258166604421,0.00276864731552594,0.0394736842105263,3.94736842105263,3,58.7317912006252,0.668742216687422,1.84210526315789,10.5146297454834,0,391.966497421265,391.614898681641,0.308838227120015
+3721,306974,3798598,307074,3798498,20,37,67.3684210526316,0.230348813694477,18.1344991344045,0.561297624956756,15.5867256623344,0.0363294416283392,0.318421052631579,31.8421052631579,4,89.954456523526,0.793260793260793,19.7368421052632,1.16488189933714,0,392.411875406901,392.303802490234,0.225419227317777
+3722,306974,3798498,307074,3798398,21,37,25.5,0.091779605456393,12.1431867738095,0.70507065793951,32.905309593045,0.0225024739321816,0.2025,20.25,4,84.9051749072142,0.695228143504006,12,10.7856661184334,0,392.805112838745,392.578979492188,0.279201713308198
+3723,306974,3798398,307074,3798298,22,37,5.52631578947368,0.0283437016850625,7.99081855103349,0.521969696969697,78.6233191098348,0.00343023897996892,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,33.3361930847168,25.977876663208,393.350557963053,393.052612304688,0.519543419929675
+3724,306974,3798298,307074,3798198,23,37,11.8421052631579,0.121473007221697,13.3550872841967,0.807407407407407,NA,0.0104483553193476,0.0210526315789474,2.10526315789474,3,46.4278190834861,0.489247311827957,1.31578947368421,36.3690268993378,15.5867252349854,394.947469711304,393.790710449219,1.30630317778415
+3725,306974,3798198,307074,3798098,24,37,0,NA,NA,NA,NA,0.0110117671460964,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,83.1292037963867,83.1292037963867,396.758323669434,396.454833984375,0.536335734973049
+3726,306974,3798098,307074,3797998,25,37,0,NA,NA,NA,NA,0.0129964596937498,0,0,0,NA,NA,0,NA,NA,397.11937713623,396.887878417969,0.243993315811721
+3727,306974,3797998,307074,3797898,26,37,3.68421052631579,0.0377916022467501,9.97540929456749,0.55952380952381,NA,0.0176798098736311,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,41.8880653381348,41.8880653381348,396.437051773071,395.685089111328,0.819637206221218
+3728,306974,3797898,307074,3797798,27,37,14.7368421052632,0.0503888029956667,9.17211031064886,0.442222222222222,32.9053094025391,0.00362468326861027,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,394.888982137044,394.661437988281,0.522438051732765
+3729,306974,3797798,307074,3797698,28,37,16.3157894736842,0.055787603316631,12.3404416876088,0.480313337456195,27.7097342337171,0.0116476102545819,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,18.2720297574997,5.19557523727417,394.551815032959,394.492462158203,0.0878640631407293
+3730,306974,3797698,307074,3797598,29,37,53.25,0.287486117091349,18.9485497826976,0.54484126984127,15.5867256623343,0.0274293423815288,0.135,13.5,3,88.7718699377941,0.813537199328734,13,0.096214356245818,0,394.570457458496,394.499633789062,0.127611936702646
+3731,306974,3797598,307074,3797498,30,37,74.7368421052632,0.76662964557693,33.8560141123384,0.917253521126761,NA,0.0479739405263803,0.465789473684211,46.5789473684211,2,94.2576686730133,0.748120697187448,25.5263157894737,6.13445662913349,0,393.375177383423,389.552154541016,2.86958413295801
+3732,306974,3797498,307074,3797398,31,37,39.4736842105263,0.404910024072322,31.4630630956131,0.792222222222222,NA,0.0302347115963992,0.189473684210526,18.9473684210526,3,86.8852087776612,0.815420799672768,10,25.4159282710817,11.6176595687866,392.822217305501,388.5,5.27846107757268
+3733,306974,3797398,307074,3797298,32,37,40,0.410308824393286,28.1276911281181,0.883771929824561,NA,0.00873848685169881,0.0368421052631579,3.68421052631579,3,60.6610118593761,0.688524590163934,2.10526315789474,5.65429551260812,0,398.77049446106,396.75341796875,1.52144532347024
+3734,306974,3797298,307074,3797198,33,37,54,0.583070434664144,36.8236128464951,0.877314814814815,NA,0.0468527719517806,0.38,38,3,94.9891731524967,0.919065787952364,36.25,0.717809736728668,0,400.029881795247,399.869262695312,0.269601074522884
+3735,306974,3797198,307074,3797098,34,37,31.3157894736842,0.0642457238194751,12.0302968392915,0.366275699359623,14.5476105142664,0.0343121974186751,0.197368421052632,19.7368421052632,4,86.8907947506728,0.82066567312469,14.7368421052632,7.24987091064453,0,400.253591537476,400.114501953125,0.149964367619158
+3736,306974,3797098,307074,3796998,35,37,2.63157894736842,0.0134970008024107,4.31419120633776,0.333333333333333,88.9339223645634,0.0317614521615867,0.286842105263158,28.6842105263158,3,87.8882385888658,0.822054058104033,10.7894736842105,25.9473538573729,0,400.470036824544,400.327239990234,0.160250230592152
+3737,306974,3796998,307074,3796898,36,37,21.0526315789474,0.0539880032096429,7.2529784563408,0.293543543543544,23.4010521600159,0.0296257927624634,0.263157894736842,26.3157894736842,3,88.5016789197741,0.834126984126984,13.9473684210526,19.5440676641464,0,400.647089004517,400.468872070312,0.19602328591751
+3738,306974,3796898,307074,3796798,37,37,37,0.133170407917119,16.7463333717258,0.556695688225539,27.4169670544762,0.0144561701316707,0.03,3,4,47.6895790835903,0.514857489387508,1.5,8.33138231436411,0,400.994285583496,400.77294921875,0.2522732874069
+3739,306974,3796798,307074,3796698,38,37,7.89473684210526,0.0269940016048215,9.74420417845618,0.373737373737374,12.1230087965261,0.0361618030018259,0.263157894736842,26.3157894736842,6,89.9828230965652,0.758730158730159,23.1578947368421,17.6840020227432,0,401.165229797363,400.900238037109,0.347219641210786
+3740,306974,3796698,307074,3796598,39,37,18.9473684210526,0.0647856038515715,15.4220286210551,0.614209401709402,20.7823006752878,0.0252569066216605,0.0447368421052632,4.47368421052632,6,46.6672233375066,0.413774104683196,1.31578947368421,19.4716747788822,5.19557523727417,401.054206848145,399.774627685547,1.07690067222434
+3741,306974,3796598,307074,3796498,40,37,6.8421052631579,0.017546101043134,6.18915816247707,0.302083333333333,33.7712389350578,0.0131999225973854,0.0263157894736842,2.63157894736842,5,33.3700988973066,0.446985446985447,1.05263157894737,27.7568053722382,0,398.961418151855,398.223876953125,1.54549188304969
+3742,306974,3796498,307074,3796398,41,37,7.63157894736842,0.0195706511634956,5.63365613972329,0.314583333333333,40.6278659978876,0.028066067012232,0.168421052631579,16.8421052631579,5,78.3482158389507,0.645682640144666,6.05263157894737,22.5850581973791,0,398.305475234985,397.915344238281,0.692537920633829
+3743,306974,3796398,307074,3796298,42,37,15.5,0.0334725619899786,7.41377298888072,0.381736909323116,27.0908385526348,0.0258671395322745,0.135,13.5,4,80.5496607311769,0.788675492572565,9.25,16.7057297936192,5.19557523727417,398.350156148275,397.751159667969,0.688524935693048
+3744,306974,3796298,307074,3796198,43,37,6.05263157894737,0.0155215509227723,3.94603912093836,0.37790404040404,36.5414492658232,0.0190186413931339,0.0578947368421053,5.78947368421053,5,60.5789468333259,0.656588892540256,3.15789473684211,20.0844350077889,5.19557523727417,397.72985458374,396.513977050781,1.00364044751463
+3745,306974,3796198,307074,3796098,44,37,12.8947368421053,0.132270607863625,22.0730785212383,0.731292517006803,NA,0.00538259554448718,0.0342105263157895,3.42105263157895,4,52.1899311009789,0.539812291855889,1.84210526315789,24.801352427556,5.19557523727417,396.4308497111,395.908203125,0.685569679324529
+3746,306974,3796098,307074,3795998,45,37,48.1578947368421,0.246995114684116,26.6847333195245,0.720028951177787,15.5867255064659,0.0355082128772473,0.181578947368421,18.1578947368421,10,73.7043116406289,0.656666046610507,10.5263157894737,9.83457066356272,0,395.7282371521,395.287628173828,0.445727772390124
+3747,306974,3795998,307074,3795898,46,37,17.25,0.046564652768317,10.1104530582414,0.518996415770609,27.4001867222157,0.0159146995355695,0.085,8.5,5,69.3604633998646,0.648711943793911,4.5,10.7411429601557,0,395.030283610026,394.806427001953,0.32177072527416
+3748,306974,3795898,307074,3795798,47,37,34.2105263157895,0.350922020862679,32.2599323496782,0.747435897435897,NA,0.0696326810274944,0.518421052631579,51.8421052631579,1,97.8973216375724,0.988621902837039,51.8421052631579,4.50775241609757,0,394.7467918396,394.703125,0.081812326556931
+3749,306974,3795798,307074,3795698,48,37,38.4210526315789,0.394112423430393,29.5534634117953,0.850456621004566,NA,0.0236311838104819,0.292105263157895,29.2105263157895,1,95.4024631382472,0.894052044609665,29.2105263157895,1.28087584607236,0,394.858637491862,394.767364501953,0.166962911361879
+3750,306974,3795698,307074,3795598,49,37,51.5789473684211,0.529082431454501,32.8789509939861,0.869897959183673,NA,0.036119837296543,0.310526315789474,31.0526315789474,4,92.2215081547149,0.810230434472426,27.3684210526316,5.6599671679028,0,395.181617736816,394.942016601562,0.269152164689166
+3751,306974,3795598,307074,3795498,50,37,44.5,0.0800822047609704,9.27906416431731,0.477462648453609,15.648265290802,0.0281987656946148,0.2225,22.25,5,80.9797378637474,0.724969160144796,7.25,3.96662449033073,0,395.610880533854,395.3828125,0.429415885149138
+3752,306974,3795498,307074,3795398,51,37,16.0526315789474,0.0329326819578822,7.66579617016257,0.373693693693694,25.2319684753828,0.0171896629668098,0.0263157894736842,2.63157894736842,2,58.4589470677482,0.683991683991684,1.57894736842105,6.05299143791199,0,396.63572883606,395.683715820312,1.07699475627416
+3753,306974,3795398,307074,3795298,52,37,0,NA,NA,NA,NA,0.0126833997588524,0,0,0,NA,NA,0,NA,NA,398.603741963704,397.812225341797,0.880928183729535
+3754,306974,3795298,307074,3795198,53,37,5.78947368421053,0.0296934017653036,8.20346276863219,0.494047619047619,64.2657162255263,0.0114863605184119,0.0552631578947368,5.52631578947368,4,62.7038464088765,0.702298050139276,2.36842105263158,16.3997015271868,0,399.05832862854,398.966156005859,0.110773620516964
+3755,306974,3795198,307074,3795098,54,37,7,0.0377916022467501,12.2016274523549,0.470486111111111,29.3906116192618,0.0240218588199014,0.1,10,5,74.18522610608,0.701492537313433,6,16.5083269119263,0,398.831678390503,398.619842529297,0.197126054254673
+3756,306974,3795098,307074,3794998,55,37,0,NA,NA,NA,NA,0.0137025006235394,0,0,0,NA,NA,0,NA,NA,398.542142232259,398.408660888672,0.159278494938103
+3757,306974,3794998,307074,3794898,56,37,32.1052631578947,0.329326819578822,31.5542356450428,0.818306010928962,NA,-0.00314147656787865,0.0973684210526316,9.73684210526316,1,88.0784293599108,0.909190842613392,9.73684210526316,5.05823125065984,0,398.422218322754,398.342468261719,0.105937899353651
+3758,306974,3794898,307074,3794798,57,37,51.5789473684211,0.26454121572725,14.5704671064944,0.433333333333333,32.8597026090424,0.0312302006539539,0.2,20,3,87.2910784340057,0.850746268656716,14.7368421052632,4.61174211376592,0,398.531054178874,398.392730712891,0.183945080242344
+3759,306974,3794798,307074,3794698,58,37,26,0.0935792055633811,16.3504402131262,0.55962481962482,12.1230087965261,0.025696206675384,0.175,17.5,6,80.1863106045536,0.753633899975364,8.5,19.2793490477971,0,399.050996780396,398.687713623047,0.446545189891179
+3760,306974,3794698,307074,3794598,59,37,52.8947368421053,0.271289716128456,23.6220040641944,0.755298651252408,10.3911504415562,0.0224182429016046,0.105263157894737,10.5263157894737,6,72.7154503850523,0.633011413520632,5.52631578947368,3.82897121906281,0,400.291745503743,399.591217041016,0.991997584396755
+3761,306974,3794598,307074,3794498,60,37,35.5263157894737,0.182209510832545,26.77575995928,0.747076023391813,51.9557522077812,0.0251094491417079,0.068421052631579,6.8421052631579,5,72.3465250451214,0.554912498277525,5,9.60471927202665,0,401.619958877563,400.846496582031,0.769349562131382
+3762,306974,3794498,307074,3794398,61,37,80,0.820617648786573,36.8745757702847,0.897478070175439,NA,0.0151402630802534,0.0263157894736842,2.63157894736842,2,59.8453882442866,0.683991683991684,1.84210526315789,5.93034052848816,0,402.000864664714,401.552581787109,0.626699980432101
+3763,306974,3794398,307074,3794298,62,37,79.25,0.855709850872841,36.1804622714699,0.911146161934805,NA,0.0126913837334996,0.025,2.5,1,71.9760246298065,1,2.5,8.99205260276795,0,402.349983215332,401.963623046875,0.593086450889858
+3764,306974,3794298,307074,3794198,63,37,69.4736842105263,0.356320821183643,23.1898080089115,0.645586297760211,23.2353187052757,-0.00341196893208881,0,0,0,NA,NA,0,NA,NA,402.888654073079,401.755676269531,1.42704135268608
+3765,306974,3794198,307074,3794098,64,37,35.2631578947368,0.361719621504608,31.0250862581045,0.850746268656716,NA,-0.0061022675511068,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,33.3412374768938,18.7329120635986,402.94478225708,401.92822265625,1.11548776738677
+3766,306974,3794098,307074,3793998,65,37,0,NA,NA,NA,NA,-0.0513983853875911,0,0,0,NA,NA,0,NA,NA,402.507443745931,402.355926513672,0.267491175744307
+3767,306974,3793998,307074,3793898,66,37,0,NA,NA,NA,NA,-0.0414014076039166,0.02,2,2,54.1958020619036,0.795918367346939,1.5,44.0261454582214,41.5646018981934,402.394680023193,402.356018066406,0.0811738343218607
+3768,306974,3793898,307074,3793798,67,37,16.3157894736842,0.0836814049749466,11.4649102243433,0.670833333333333,10.3911504415562,0.00702169683657925,0.176315789473684,17.6315789473684,3,85.8874914453875,0.81322192184812,12.1052631578947,25.7260455373508,10.3911504745483,402.501070658366,402.390716552734,0.205027031644291
+3769,306974,3793798,307074,3793698,68,37,0,NA,NA,NA,NA,0.0136636035900473,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,36.369026184082,36.369026184082,402.996171951294,402.574279785156,0.479356061566835
+3770,306974,3793698,307074,3793598,69,37,0,NA,NA,NA,NA,0.0255507872954061,0.0473684210526316,4.73684210526316,3,69.5016785164246,0.80560671168406,3.94736842105263,57.536376953125,42.8438110351562,403.228370666504,402.932525634766,0.413904350484463
+3771,306974,3793598,307074,3793498,70,37,0,NA,NA,NA,NA,0.0377882833356125,0.245,24.5,3,91.5656707947202,0.811860325105358,22,74.1936198254021,32.8597030639648,402.288386027018,401.685729980469,0.787512445446579
+3772,306974,3793498,307074,3793398,71,37,14.7368421052632,0.0503888029956668,9.59218295051953,0.546296296296296,39.7742216606148,0.0285652210066761,0.171052631578947,17.1052631578947,2,89.2369362391946,0.893243433066442,15.5263157894737,8.9451781639686,0,401.312757492065,400.774505615234,0.666345363888295
+3773,306974,3793398,307074,3793298,72,37,17.3684210526316,0.0356320821183643,8.34982511296612,0.463419913419913,21.932133051398,0.0249968921997798,0.128947368421053,12.8947368421053,6,71.2678102278607,0.603654150481945,4.21052631578947,10.1370290444822,0,400.755157470703,400.652862548828,0.203714108930243
+3774,306974,3793298,307074,3793198,73,37,3.15789473684211,0.0107976006419286,3.9116328283786,0.256944444444444,27.1983165449562,0.0358831331606397,0.210526315789474,21.0526315789474,7,85.4850006342568,0.598591549295775,14.2105263157895,25.7334976971149,0,400.624021530151,400.508392333984,0.0954011039815913
+3775,306974,3793198,307074,3793098,74,37,19.75,0.21325261267809,24.1660009927623,0.734177215189873,NA,0.0203761762610884,0.1575,15.75,4,83.3116183283391,0.773401672511465,10.75,7.11932764356099,0,400.548980712891,400.437591552734,0.130533311016413
+3776,306974,3793098,307074,3792998,75,37,16.3157894736842,0.0836814049749466,18.291087223098,0.571981981981982,11.6176593526379,0.0358902515764624,0.181578947368421,18.1578947368421,5,84.8146095474891,0.868725253115782,15,14.618193032085,0,400.566785812378,400.443542480469,0.132798895842318
+3777,306974,3792998,307074,3792898,76,37,0,NA,NA,NA,NA,0.0144548869340724,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,42.0355383555094,15.5867252349854,400.842430114746,400.647796630859,0.261995556353527
+3778,306974,3792898,307074,3792798,77,37,28.6842105263158,0.0980782058308513,10.0667825048076,0.395767195767196,15.5867255757408,0.0154079944934653,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,36.4356622695923,10.3911504745483,401.309000015259,400.960174560547,0.346169756965298
+3779,306974,3792798,307074,3792698,78,37,18.5,0.0249694514844599,6.35272712626832,0.33932705026455,12.7327645033898,0.0200153918029355,0.04,4,1,78.9473684210526,0.913194444444444,4,15.2266380190849,5.19557523727417,401.881134033203,401.6494140625,0.323111947436605
+3780,306974,3792698,307074,3792598,79,37,52.3684210526316,0.537180631935947,36.6786884273357,0.774706867671692,NA,0.0149461905920026,0.0210526315789474,2.10526315789474,2,55.3182300068637,0.693548387096774,1.57894736842105,15.0091056227684,0,402.297294616699,401.917419433594,0.376209436643291
+3781,306974,3792598,307074,3792498,80,37,43.421052631579,0.148467008826518,18.0955929839225,0.642703387147832,12.1230087272512,0.0216452135183174,0.15,15,3,88.2077026133477,0.891956782713085,14.2105263157895,21.5995335578918,0,403.085172017415,402.448760986328,0.639879715797322
+3782,306974,3792498,307074,3792398,81,37,23.1578947368421,0.118773607061214,21.6794807517112,0.473202614379085,32.8597028719221,0.0301451256094304,0.181578947368421,18.1578947368421,4,84.5154718001652,0.798038850947357,13.1578947368421,17.116176771081,0,403.697137832642,403.284637451172,0.408856413541465
+3783,306974,3792398,307074,3792298,82,37,10.5,0.0377916022467501,8.27329081643487,0.569483348895114,31.5164267089755,0.0242668625671649,0.05,5,5,57.4844465829221,0.558573853989813,2.5,20.6383237361908,0,403.836591084798,403.556396484375,0.24024146927923
+3784,306974,3792298,307074,3792198,83,37,5,0.0512886030491608,9.36557230839264,0.666666666666667,NA,0.020267765011139,0.115789473684211,11.5789473684211,3,78.0491790591086,0.724903474903475,4.47368421052632,18.9922166629271,0,403.755786895752,403.645477294922,0.121463140241257
+3785,306974,3792198,307074,3792098,84,37,25,0.0854810050819347,17.5808434712088,0.610319200779727,19.0504422856805,0.0246898164744236,0.126315789473684,12.6315789473684,4,79.3559876941572,0.678959741404643,7.36842105263158,2.45169254144033,0,403.72241973877,403.634613037109,0.127834125137615
+3786,306974,3792098,307074,3791998,85,37,13.1578947368421,0.134970008024107,27.4291804994079,0.663333333333333,NA,0.0380880226822276,0.226315789473684,22.6315789473684,6,86.7006425471612,0.678982704192788,16.5789473684211,14.4296954398931,0,404.328119913737,403.894897460938,0.69708156356035
+3787,306974,3791998,307074,3791898,86,37,23.5,0.0845812050284406,14.3649756645379,0.57299823633157,17.88066784907,0.0269436045389375,0.1675,16.75,2,90.7064594670458,0.928133261466595,16.25,10.7227679722345,0,405.323848724365,404.850830078125,0.354357050379673
+3788,306974,3791898,307074,3791798,87,37,31.3157894736842,0.107076206365792,14.5154965193816,0.729616210413312,12.6435414584979,0.0332648041615214,0.215789473684211,21.5789473684211,5,83.6883135454925,0.762554964128674,13.1578947368421,7.5412360109934,0,405.601636250814,405.472351074219,0.234895669000698
+3789,306974,3791798,307074,3791698,88,37,0,NA,NA,NA,NA,0.0111325963045601,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,67.54248046875,67.54248046875,405.808963775635,405.468658447266,0.29795445509921
+3790,306974,3791698,307074,3791598,89,37,0,NA,NA,NA,NA,0.00171519106962047,0,0,0,NA,NA,0,NA,NA,405.801498413086,405.591522216797,0.539861475046181
+3791,306974,3791598,307074,3791498,90,37,16.25,0.0350922020862679,8.53528888581241,0.441869047619048,12.4693804259552,0.0266717519003396,0.105,10.5,6,74.7621874501112,0.700999291840428,7.25,8.11594605445862,0,406.934358596802,405.821502685547,1.54607517694626
+3792,306974,3791498,307074,3791398,91,37,15.7894736842105,0.161964009628929,19.8463584831541,0.763888888888889,NA,0.0521790523155543,0.481578947368421,48.1578947368421,3,95.1108038310473,0.800258312558196,42.8947368421053,17.2910783199665,0,406.404602050781,405.580657958984,1.19741836064654
+3793,306974,3791398,307074,3791298,92,37,1.57894736842105,0.00809820048144644,2.2024081635004,0.216666666666667,72.7380523635074,0.0427357963725961,0.421052631578947,42.1052631578947,3,94.9211149500859,0.806122448979592,38.9473684210526,39.0787623226643,0,405.476676940918,405.231597900391,0.352219184094037
+3794,306974,3791298,307074,3791198,93,37,24.4736842105263,0.25104421492484,24.7095003728377,0.810035842293907,NA,0.0337653399952902,0.221052631578947,22.1052631578947,4,87.3272385730064,0.836296027571195,16.8421052631579,13.1510927052725,0,405.235679626465,405.164733886719,0.100250946894978
+3795,306974,3791198,307074,3791098,94,37,21.5,0.116074206900732,17.3286766482871,0.68422619047619,14.6953058096309,0.0337385396983291,0.25,25,5,89.0000274491189,0.777777777777778,20.25,5.74756384372711,0,405.210758209229,405.167907714844,0.0642714454698846
+3796,306974,3791098,307074,3790998,95,37,8.68421052631579,0.0445401026479554,9.00402121796268,0.487787356321839,21.4219054085088,0.0199326290225527,0.0289473684210526,2.89473684210526,3,50.6759411541477,0.588075880758808,1.31578947368421,35.7277141917836,0,405.242764790853,405.189697265625,0.0600572786405638
+3797,306974,3790998,307074,3790898,96,37,39.4736842105263,0.202455012036161,17.1789209916624,0.55952380952381,16.4298513045212,0.0209483941026424,0.068421052631579,6.8421052631579,5,65.7870832337152,0.633457351522668,3.94736842105263,0.682261668718778,0,405.24510383606,405.187927246094,0.0575907229473741
+3798,306974,3790898,307074,3790798,97,37,25,0.0854810050819347,8.53585612401094,0.421273490239007,58.3192723200268,0.0242484166589412,0.0868421052631579,8.68421052631579,2,79.8934043631236,0.83776283488099,6.57894736842105,1.89945430466623,0,405.312380472819,405.213409423828,0.182923619576974
+3799,306974,3790798,307074,3790698,98,37,12,0.0185101725290204,4.80870267669837,0.288095238095238,22.9283485449202,0.0249519941284143,0.0525,5.25,4,62.1686459642026,0.604221635883905,1.75,10.9474940072922,0,405.638458251953,405.266754150391,0.593743087696315
+3800,306974,3790698,307074,3790598,99,37,8.15789473684211,0.0139469008291578,4.04633290334947,0.242919389978213,23.5628881962782,0.0266449396530839,0.075,7.5,4,70.6403506256386,0.547454431175361,4.44444444444444,28.1223963101705,7.34765291213989,406.861820220947,405.682800292969,1.22986332153133
+3801,307074,3800598,307174,3800498,0,38,33.7950138504155,0.0823317048947346,12.4747218869846,0.426177933860111,15.1118677041341,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.017941792806,382.871673583984,0.189426111349157
+3802,307074,3800498,307174,3800398,1,38,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.264319525825,383.171234130859,0.156805715741035
+3803,307074,3800398,307174,3800298,2,38,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.434646606445,383.280883789062,0.184357941467872
+3804,307074,3800298,307174,3800198,3,38,27.1468144044321,0.264541215727344,19.5364425008677,0.869047619047619,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.742974175347,383.568176269531,0.265653646056824
+3805,307074,3800198,307174,3800098,4,38,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.395263671875,384.014862060547,0.554741671000832
+3806,307074,3800098,307174,3799998,5,38,5.78947368421053,0.0593868035306282,15.2688566459481,0.575757575757576,NA,-0.0034366701622371,0.0131578947368421,1.31578947368421,1,31.8747015751665,1,1.31578947368421,62.3469009399414,62.3469009399414,385.417144775391,384.946136474609,0.678197556732724
+3807,307074,3799998,307174,3799898,6,38,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.012415404838124,0.0166204986149584,1.66204986149584,1,62.4626804510367,1,1.66204986149584,71.5303064982096,65.7194061279297,385.932548522949,385.587280273438,0.355722624742199
+3808,307074,3799898,307174,3799798,7,38,8.31024930747922,0.0809820048144931,10.9284243389009,0.755555555555556,NA,0.0109126765094691,0.0277008310249307,2.77008310249307,3,50.7231889218751,0.683541529695376,1.66204986149584,29.1727270126343,21.4219055175781,386.006842719184,385.872772216797,0.273998044858822
+3809,307074,3799798,307174,3799698,8,38,5.54016620498615,0.026994001604831,6.10119132471193,0.439542483660131,107.109526679652,0.0118088720094186,0.0498614958448753,4.98614958448753,5,57.2295229187056,0.649173955296404,2.77008310249307,25.6177302466498,10.3911504745483,386.664845784505,385.850860595703,1.48009841301265
+3810,307074,3799698,307174,3799598,9,38,3.68421052631579,0.00944790056169086,3.4215545423423,0.226388888888889,16.359881162417,0.0102567057092241,0.0157894736842105,1.57894736842105,3,30.8730773315672,0.419404125286478,0.526315789473684,37.4999471505483,7.34765291213989,387.712636311849,386.648864746094,1.76417493520603
+3811,307074,3799598,307174,3799498,10,38,30.7479224376731,0.149816708906812,16.2010703217329,0.774273011295362,29.390611619267,0.00933851568687641,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,9.17375144958496,0,388.62776184082,387.5595703125,1.09284673963432
+3812,307074,3799498,307174,3799398,11,38,33.5180055401662,0.108875806472818,13.864559397023,0.459178743961353,17.3185840692665,-0.000372447599298725,0.0415512465373961,4.15512465373961,2,68.9900385068792,0.810299527062533,3.32409972299169,1.03911504745483,0,389.187772115072,388.703918457031,0.599315848252821
+3813,307074,3799398,307174,3799298,12,38,14.9584487534626,0.0364419021665219,8.25942907728548,0.351636904761905,16.8856193506294,-0.00200140264135665,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,9.64892523629325,0,389.455925835503,389.092803955078,0.643100956927783
+3814,307074,3799298,307174,3799198,13,38,0,NA,NA,NA,NA,0.0249453776708929,0.178947368421053,17.8947368421053,4,86.7463663311437,0.877181641887524,16.0526315789474,44.7571851646199,14.6953058242798,389.777386983236,389.271514892578,1.08515884828782
+3815,307074,3799198,307174,3799098,14,38,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.0135096127456448,0.0498614958448753,4.98614958448754,2,76.8481697650219,0.805096641831336,4.70914127423823,12.3257360723284,0,390.636834038628,389.719390869141,1.39329447199701
+3816,307074,3799098,307174,3798998,15,38,9.97229916897507,0.0323928019257972,5.91409376037744,0.384920634920635,38.3470434662477,0.0167747533711598,0.0692520775623269,6.92520775623269,4,71.7017550332716,0.70453869047619,5.26315789473684,15.3806623268127,5.19557523727417,391.439056396484,390.839508056641,0.935028888820568
+3817,307074,3798998,307174,3798898,16,38,7.4792243767313,0.0364419021665219,6.90456104478283,0.563405797101449,69.7059561158468,0.00806047354529449,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.8880653381348,41.8880653381348,391.697794596354,391.36181640625,0.573920380376129
+3818,307074,3798898,307174,3798798,17,38,13.6842105263158,0.0280737616690243,6.77846462900458,0.392063492063492,19.2322221375867,0.00453677193063892,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.91293446222941,0,391.896263122559,391.625427246094,0.349357232660146
+3819,307074,3798798,307174,3798698,18,38,9.41828254847645,0.0183559210912851,6.68718781017152,0.242142857142857,17.6649555739947,0.0138561400002034,0.0775623268698061,7.75623268698061,4,69.0789078973961,0.662729396062729,4.43213296398892,10.0577850512096,5.19557523727417,392.025570339627,391.859649658203,0.248636042929905
+3820,307074,3798698,307174,3798598,19,38,67.3130193905817,0.655954238997394,33.5605771986569,0.888203017832648,NA,0.00963227626498514,0.0526315789473684,5.26315789473684,4,60.4634124417839,0.672413793103448,2.77008310249307,0.546902656555176,0,392.230690002441,392.029571533203,0.226590857621052
+3821,307074,3798598,307174,3798498,20,38,57.617728531856,0.561475233380485,30.2861631851602,0.899038461538462,NA,0.0354858118370936,0.293628808864266,29.3628808864266,2,93.0623241569091,0.866584539574992,27.1468144044321,0.721242729222999,0,392.57467312283,392.396484375,0.277141098025253
+3822,307074,3798498,307174,3798398,21,38,10,0.102577206098358,13.216738740007,0.767543859649123,NA,0.0368908376164511,0.302631578947368,30.2631578947368,4,87.6803511322839,0.834542815674891,22.1052631578947,37.1016071734221,0,393.07807413737,392.747589111328,0.381212064403782
+3823,307074,3798398,307174,3798298,22,38,6.37119113573407,0.0310431018455557,5.08852385596586,0.337121212121212,18.7329127343573,0.0287440623439058,0.218836565096953,21.8836565096953,1,93.6796277124475,0.871985815602837,21.8836565096953,25.5102126930333,5.19557523727417,393.845984564887,393.478607177734,0.636625327593204
+3824,307074,3798298,307174,3798198,23,38,0,NA,NA,NA,NA,0.014718551929676,0.03601108033241,3.601108033241,2,63.8710229715496,0.769476372924649,2.21606648199446,53.0116691589355,21.4219055175781,395.404014587402,394.372344970703,0.959784139322961
+3825,307074,3798198,307174,3798098,24,38,0,NA,NA,NA,NA,0.013297666842906,0,0,0,NA,NA,0,NA,NA,396.410074869792,396.198181152344,0.404666218126305
+3826,307074,3798098,307174,3797998,25,38,0,NA,NA,NA,NA,0.020010082797384,0.0736842105263158,7.36842105263158,3,76.2641718574913,0.808080808080808,6.05263157894737,104.480484008789,88.3247756958008,396.674903869629,396.399383544922,0.350133146764206
+3827,307074,3797998,307174,3797898,26,38,0,NA,NA,NA,NA,0.0222596589225061,0.03601108033241,3.601108033241,7,31.0677154728732,0.308429118773946,0.831024930747922,89.2270953838642,51.4335708618164,396.221097310384,395.639068603516,0.740436970052528
+3828,307074,3797898,307174,3797798,27,38,1.10803324099723,0.0053988003209662,1.69905397446611,0.138888888888889,20.7823006752878,0.0111886993396395,0,0,0,NA,NA,0,NA,NA,394.825534396701,394.642059326172,0.512699452370061
+3829,307074,3797798,307174,3797698,28,38,14.6814404432133,0.143068208505604,17.8006070320942,0.729559748427673,NA,0.0136359401449201,0.0498614958448753,4.98614958448753,3,62.8550193196974,0.649173955296404,2.21606648199446,9.98476788732741,0,394.536231994629,394.492492675781,0.0732494248245988
+3830,307074,3797698,307174,3797598,29,38,29.4736842105263,0.100777605991369,10.2461743312594,0.528638497652582,12.1230087792092,0.0176984609417152,0.0921052631578947,9.21052631578947,5,74.3375879882571,0.639180409795102,6.57894736842105,4.73178634643555,0,394.522352430556,394.472839355469,0.0893798036310947
+3831,307074,3797598,307174,3797498,30,38,47.9224376731302,0.116749056940894,13.7855320418502,0.638374423485709,12.9889379740129,0.0404605638682722,0.368421052631579,36.8421052631579,5,86.6788464269705,0.646694214876033,12.1883656509695,7.49536696771034,0,393.379170735677,390.044708251953,2.63891372775926
+3832,307074,3797498,307174,3797398,31,38,36.2880886426593,0.0707242842046573,9.1512550809779,0.465095398428732,13.5084954701119,0.0223359267060952,0.149584487534626,14.9584487534626,5,80.4263096636251,0.772407271198907,7.20221606648199,21.8410140231804,5.19557523727417,392.886857774523,388.5,5.23445906871336
+3833,307074,3797398,307174,3797298,32,38,29.9168975069252,0.145767608666088,26.1552286230372,0.590644820295983,15.5867256623399,-0.0465548482443183,0.0443213296398892,4.43213296398892,2,68.7609337904383,0.607608695652174,2.77008310249307,4.22140488028526,0,398.413134256999,397.113433837891,1.4272138291102
+3834,307074,3797298,307174,3797198,33,38,49.4736842105263,0.253743615085412,26.4559701394218,0.783030669895077,10.3911504415599,-0.0130556171854933,0.165789473684211,16.5789473684211,3,83.7478105009623,0.662173788356754,9.47368421052632,1.47030054576813,0,400.059794108073,399.838623046875,0.438790964023143
+3835,307074,3797198,307174,3797098,34,38,22.7146814404432,0.0368918021932691,8.48348584564145,0.478346560846561,25.1119468138398,0.0250120052845171,0.0443213296398892,4.43213296398892,5,55.531979054292,0.433212560386473,1.93905817174515,4.054263651371,0,400.376973470052,400.221649169922,0.152712468010512
+3836,307074,3797098,307174,3796998,35,38,22.1606648199446,0.215952012838648,21.559001257415,0.777083333333333,NA,0.0077823398134665,0.0332409972299169,3.32409972299169,5,39.1616597892031,0.391538850497219,0.831024930747922,23.0095738172531,0,400.36220296224,400.286468505859,0.127821434636563
+3837,307074,3796998,307174,3796898,36,38,39.3351800554017,0.1916574113943,17.756569603553,0.793129200896191,25.9778759376342,0.0103487659584656,0.0637119113573407,6.37119113573407,4,62.9081605081503,0.554980276134122,2.77008310249307,7.21900716035262,0,400.596488952637,400.38232421875,0.289217362538897
+3838,307074,3796898,307174,3796798,37,38,78.4210526315789,0.804421247823964,37.7808332689473,0.860738255033557,NA,0.0171955154640536,0.213157894736842,21.3157894736842,2,92.2648258866098,0.849962839093274,20.5263157894737,2.19326945293097,0,401.209167480469,401.024536132812,0.326298790561807
+3839,307074,3796798,307174,3796698,38,38,25.207756232687,0.0818818048679874,18.854712922122,0.535541859270673,15.5867255064659,0.0292334348856442,0.121883656509695,12.1883656509695,8,71.075641840516,0.553713019012704,6.64819944598338,7.61372684348713,0,401.628008524577,401.405029296875,0.281466467601802
+3840,307074,3796698,307174,3796598,39,38,26.0387811634349,0.0634359037713529,15.1218763978514,0.533502252252252,22.0811944674933,0.0213067700006678,0.0526315789473684,5.26315789473684,6,49.4712319545075,0.490421455938697,1.93905817174515,10.3080752021388,0,402.080678304036,401.852874755859,0.327519946760171
+3841,307074,3796598,307174,3796498,40,38,21.8836565096953,0.0533131531695413,9.88851373280739,0.363235294117647,15.5867256623399,0.0213147730255287,0.0858725761772853,8.58725761772853,6,69.8652222108804,0.540545454545454,5.26315789473684,12.3431853325136,0,401.702124701606,400.319427490234,1.57629699986315
+3842,307074,3796498,307174,3796398,41,38,18.2825484764543,0.0356320821183769,8.58147083317407,0.510115995115995,18.7040707116751,0.0340747386351148,0.207756232686981,20.7756232686981,4,88.2057740870462,0.78006463233736,17.1745152354571,14.5521499443054,0,400.330156962077,399.497863769531,1.3971597990301
+3843,307074,3796398,307174,3796298,42,38,40,0.410308824393431,33.6224067152155,0.755482456140351,NA,0.0343252266658773,0.273684210526316,27.3684210526316,4,89.9433355819683,0.823296907695885,22.3684210526316,9.75455015897751,0,399.592295328776,399.019592285156,1.02117038593907
+3844,307074,3796298,307174,3796198,43,38,61.7728531855956,0.601966235787732,39.8761675921901,0.822122571001495,NA,0.0486191767960006,0.346260387811634,34.6260387811634,4,92.0466864830104,0.770887777197043,28.5318559556787,5.16626996231079,0,398.297485351562,397.278228759766,0.870298248281485
+3845,307074,3796198,307174,3796098,44,38,22.4376731301939,0.0546628532497828,12.203912373917,0.477210789766407,25.9778759740048,0.043136660856153,0.265927977839335,26.5927977839335,3,93.243540639243,0.912878455462922,26.0387811634349,8.28991282979647,0,396.837877061632,396.580413818359,0.609547038120788
+3846,307074,3796098,307174,3795998,45,38,30.7479224376731,0.0998778059378748,19.8396365912616,0.59804012345679,15.8677674391512,0.0586624294467828,0.479224376731302,47.9224376731302,4,92.6454208321747,0.789318348562663,30.1939058171745,12.805417477051,0,395.74013264974,395.048309326172,0.721837371885158
+3847,307074,3795998,307174,3795898,46,38,25.2631578947368,0.129571207703189,17.2923060767547,0.621966794380588,15.5867255064659,0.0142123762553398,0.131578947368421,13.1578947368421,1,90.5004389364175,0.864527629233512,13.1578947368421,19.0038798427582,0,394.850267198351,394.717834472656,0.254584115822891
+3848,307074,3795898,307174,3795798,47,38,47.9224376731302,0.466996227763577,36.6782371743981,0.80635838150289,NA,0.0904280592098418,0.518005540166205,51.8005540166205,2,95.6006770938763,0.928044648196133,45.1523545706371,1.88632505590265,0,394.732192993164,394.6904296875,0.0963486279836243
+3849,307074,3795798,307174,3795698,48,38,29.0858725761773,0.0708592542126814,10.8194109815929,0.394828216374269,14.993395772487,0.0264638594899703,0.271468144044321,27.1468144044321,4,90.0084626295254,0.719236087106809,21.0526315789474,5.72388252433465,0,395.042419433594,394.837707519531,0.339196885152378
+3850,307074,3795698,307174,3795598,49,38,72.8531855955679,0.354971121103528,18.8018491847486,0.635939510939511,10.3911504415599,0.0313426475203266,0.271468144044321,27.1468144044321,5,87.1274206891143,0.727035084687176,15.7894736842105,2.09335459008509,0,395.61275990804,395.216064453125,0.470316282163141
+3851,307074,3795598,307174,3795498,50,38,51.3157894736842,0.131595757823551,18.8914103895771,0.647865234840795,11.004404810288,0.0356813832863784,0.178947368421053,17.8947368421053,6,79.1948701442846,0.682719241542771,7.89473684210526,4.81180422446307,0,396.326633029514,395.939208984375,0.49383542645427
+3852,307074,3795498,307174,3795398,51,38,21.606648199446,0.0421106425035364,11.6747151421561,0.404864253393665,13.9990990482272,0.0208454018162894,0.0775623268698061,7.75623268698061,2,82.3376448204197,0.783183183183183,7.20221606648199,7.5687917641231,0,397.189717610677,396.635498046875,0.753459502523071
+3853,307074,3795398,307174,3795298,52,38,9.97229916897507,0.0971784057773917,17.2645589851546,0.615740740740741,NA,0.0185433966847355,0.03601108033241,3.601108033241,5,42.7991920286801,0.48132183908046,1.38504155124654,21.6506451826829,5.19557523727417,398.630306667752,398.101867675781,0.724672018100174
+3854,307074,3795298,307174,3795198,53,38,22.9916897506925,0.0560125533300244,10.4859949825654,0.521727395411606,23.3800882596988,0.0230860554830766,0.0969529085872576,9.69529085872576,9,55.5899223301871,0.484503913687328,2.49307479224377,8.23988466262817,0,399.090418497721,398.956390380859,0.117003441012481
+3855,307074,3795198,307174,3795098,54,38,22.6315789473684,0.116074206900773,14.6476323667569,0.595388788426763,10.3911504415599,0.0159278274820712,0.0421052631578947,4.21052631578947,3,64.0683340424584,0.695512820512821,2.36842105263158,4.81513804197311,0,398.934107462565,398.798217773438,0.156212995711461
+3856,307074,3795098,307174,3794998,55,38,11.6343490304709,0.11337480674029,19.1903582043174,0.718253968253968,NA,0.00345574009944985,0,0,0,NA,NA,0,NA,NA,398.701995849609,398.603942871094,0.130393949553396
+3857,307074,3794998,307174,3794898,56,38,16.3434903047091,0.0530882031561677,10.8021037566787,0.343434343434343,10.7999867452537,0.0102919806682178,0.116343490304709,11.6343490304709,3,79.1378819682451,0.729038809660471,6.37119113573407,14.7115124974932,0,398.616877237956,398.548217773438,0.117823144145513
+3858,307074,3794898,307174,3794798,57,38,35.1800554016621,0.171411910190677,24.6708849962598,0.742486338797814,34.8529778487965,0.0318647116929189,0.182825484764543,18.2825484764543,6,79.9882411745313,0.659484156226971,6.92520775623269,5.24295051892598,0,398.74767727322,398.608917236328,0.216517052433032
+3859,307074,3794798,307174,3794698,58,38,22.6315789473684,0.232148413801547,36.1630392526643,0.711240310077519,NA,0.0219183619042796,0.178947368421053,17.8947368421053,4,82.3396946365527,0.652014652014652,7.63157894736842,10.762228958747,0,399.041346232096,398.886108398438,0.315702156280959
+3860,307074,3794698,307174,3794598,59,38,20.2216066481994,0.0656854039050888,9.67455126423891,0.552449223416965,32.4585640389756,0.0211424929702907,0.07202216066482,7.20221606648199,2,81.1111300570207,0.816017473607572,6.64819944598338,14.486746439567,0,400.491587320964,399.335266113281,1.69794790587412
+3861,307074,3794598,307174,3794498,60,38,26.5927977839335,0.259142415406378,26.1772735209419,0.829861111111111,NA,0.0320156743203211,0.0526315789473684,5.26315789473684,6,51.7253070055792,0.417624521072797,1.93905817174515,19.9619465627168,5.19557523727417,402.53268178304,401.327972412109,0.936978261666665
+3862,307074,3794498,307174,3794398,61,38,39.612188365651,0.193007111474542,15.8147728037438,0.404342723004695,25.9778758441098,0.0240083402755152,0.0498614958448753,4.98614958448753,4,61.654245469812,0.688154626930137,2.49307479224377,8.22018183602227,5.19557523727417,403.18786960178,402.791748046875,0.552787795579656
+3863,307074,3794398,307174,3794298,62,38,41.3157894736842,0.141268608398616,14.7400602154654,0.503205128205128,18.4561624877923,0.0124082858863978,0.0789473684210526,7.89473684210526,4,70.3462568269606,0.711953352769679,3.68421052631579,8.9827041943868,0,402.351211547852,401.644683837891,0.716402590280491
+3864,307074,3794298,307174,3794198,63,38,75.9002770083102,0.73963564397237,39.0839498775931,0.826642335766423,NA,0.00401646289543436,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,3.46371682484945,0,401.576449924045,401.479370117188,0.204270280603147
+3865,307074,3794198,307174,3794098,64,38,49.584487534626,0.161064209575492,15.9477364257546,0.77876844005022,16.6354547103633,-0.00875219723742315,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,5.19557523727417,5.19557523727417,401.97220102946,401.638641357422,0.380685565146007
+3866,307074,3794098,307174,3793998,65,38,38.5041551246537,0.375216622307151,31.9796864821377,0.793764988009592,NA,-0.0471411379684194,0,0,0,NA,NA,0,NA,NA,402.422325981988,402.325347900391,0.138832868054729
+3867,307074,3793998,307174,3793898,66,38,51.8421052631579,0.531781831615171,29.6667893582455,0.897631133671743,NA,-0.0223707470885098,0.0657894736842105,6.57894736842105,2,81.6683768591005,0.812676056338028,6.31578947368421,27.8654830169678,0,402.406183878581,402.363922119141,0.0701851266935692
+3868,307074,3793898,307174,3793798,67,38,34.0720221606648,0.332026219739422,32.4633844996815,0.79810298102981,NA,0.0200608317183621,0.074792243767313,7.4792243767313,3,73.9171212486069,0.798913800306364,4.15512465373961,22.4430480709782,5.19557523727417,402.461147732205,402.393218994141,0.101343307356248
+3869,307074,3793798,307174,3793698,68,38,30.7479224376731,0.149816708906812,15.5326200355579,0.80103825136612,11.6176592829322,0.0125731119150967,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,16.4706853628159,11.6176595687866,402.740626017253,402.560302734375,0.248517613897619
+3870,307074,3793698,307174,3793598,69,38,33.5180055401662,0.326627419418455,26.9188680352506,0.820936639118457,NA,0.029169519566202,0.135734072022161,13.5734072022161,5,74.2065360439416,0.69696275946276,4.98614958448754,18.7719828255323,5.19557523727417,403.128512064616,402.997314453125,0.128332559971574
+3871,307074,3793598,307174,3793498,70,38,46.8421052631579,0.240246614282996,16.6756383763891,0.529206349206349,16.4298514359663,0.0302065319870101,0.189473684210526,18.9473684210526,8,74.5913409141661,0.630841599345536,8.94736842105263,6.96224311987559,0,402.997111002604,402.794128417969,0.329660653045881
+3872,307074,3793498,307174,3793398,71,38,40.1662049861496,0.195706511635025,20.0773529898991,0.734166666666667,10.3911504415599,0.0408093631836322,0.373961218836565,37.3961218836565,4,93.0392368660862,0.727282538312109,29.0858725761773,6.68959691436202,0,402.162452697754,401.271270751953,0.803241823423264
+3873,307074,3793398,307174,3793298,72,38,21.0526315789474,0.102577206098358,12.1655662345028,0.643382352941176,15.5867255064659,0.0435826681795412,0.354570637119114,35.4570637119114,5,91.2341936953112,0.780563281696108,29.3628808864266,17.291267413646,0,401.038367377387,400.770355224609,0.54008015026693
+3874,307074,3793298,307174,3793198,73,38,25.7617728531856,0.251044214924928,25.3556700769044,0.770609318996416,NA,0.0424120552686525,0.357340720221607,35.7340720221607,3,93.6664910893293,0.847707263389582,31.0249307479224,16.5754185573075,0,400.557530721029,400.451721191406,0.162479072046985
+3875,307074,3793198,307174,3793098,74,38,8.42105263157895,0.0287936017118198,7.99158641446456,0.351851851851852,26.5211747072179,0.0172138495731659,0.0736842105263158,7.36842105263158,3,79.7407082719225,0.76010101010101,6.57894736842105,17.6755633865084,5.19557523727417,400.38678656684,400.332885742188,0.0779152517067996
+3876,307074,3793098,307174,3792998,75,38,9.14127423822715,0.0222700513239856,5.85963328958674,0.404396407685881,31.9336190227687,0.0265662158934375,0.0803324099722992,8.03324099722992,7,58.3960302066663,0.537298128684953,2.49307479224377,12.3689019762237,0,400.401588439941,400.318328857422,0.106163146575044
+3877,307074,3792998,307174,3792898,76,38,37.9501385041551,0.0924544554965462,12.5322042566472,0.467989417989418,12.7660830368153,0.0215966385116583,0.166204986149584,16.6204986149584,4,81.8259359268711,0.619441604906721,7.4792243767313,7.98945713043213,0,400.650383843316,400.521362304688,0.221720335607002
+3878,307074,3792898,307174,3792798,77,38,49.3074792243767,0.240246614282996,24.6723308234034,0.788645953202915,15.5867256623399,0.0209192943144152,0.138504155124654,13.8504155124654,4,79.2485161991965,0.658596557594099,6.09418282548476,5.30381747245789,0,401.108889261882,400.848724365234,0.304692481483242
+3879,307074,3792798,307174,3792698,78,38,29.7368421052632,0.0610064436269181,9.39855699413056,0.376544780074192,22.104706975857,0.0234196700967962,0.115789473684211,11.5789473684211,5,70.9387268150024,0.694337194337194,4.73684210526316,8.28817429325797,0,401.657043457031,401.402496337891,0.471237105989798
+3880,307074,3792698,307174,3792598,79,38,26.3157894736842,0.0854810050819649,15.0724171989066,0.600198412698413,24.8081014584278,0.0226763488091676,0.127423822714681,12.7423822714681,5,76.7930604714646,0.676760276760277,6.92520775623269,10.0135692306187,5.19557523727417,402.494852701823,402.056243896484,0.411685393330673
+3881,307074,3792598,307174,3792498,80,38,35.1800554016621,0.114274606793785,11.4446730296865,0.466203703703704,17.3185839653505,0.0281624124708542,0.235457063711911,23.5457063711911,6,83.3357106816276,0.679503791150782,13.2963988919668,13.2295326064615,0,403.013641357422,402.871307373047,0.383647403486338
+3882,307074,3792498,307174,3792398,81,38,15.7894736842105,0.0512886030491789,10.287630191421,0.629373042416521,25.9778759307065,0.0250306640767794,0.191135734072022,19.1135734072022,4,82.5827262263623,0.744565832672931,11.0803324099723,12.5693118261254,0,403.075492858887,402.911071777344,0.288259542846001
+3883,307074,3792398,307174,3792298,82,38,6.31578947368421,0.0323928019257972,11.2654044968365,0.361111111111111,15.5867255064659,0.00663717358522837,0,0,0,NA,NA,0,NA,NA,403.543318006727,403.354675292969,0.241052109919704
+3884,307074,3792298,307174,3792198,83,38,11.3573407202216,0.110675406579807,24.6079762005771,0.650406504065041,NA,0.0169565052690063,0.10803324099723,10.803324099723,2,81.9713614026812,0.810272336359293,6.92520775623269,40.6320627774948,5.19557523727417,403.665466308594,403.626739501953,0.0509012089899763
+3885,307074,3792198,307174,3792098,84,38,8.03324099722992,0.039141302327005,7.70524537547547,0.63047138047138,67.5424777702202,0.0146264371731961,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.194324016571,7.34765291213989,403.653981526693,403.606567382812,0.09439205708954
+3886,307074,3792098,307174,3791998,85,38,32.6869806094183,0.0796323047342515,12.5381482057425,0.639852472089314,14.2878318051869,0.0464329252776063,0.412742382271468,41.2742382271468,2,96.5736229939575,0.819113276660447,40.9972299168975,9.23696526264984,0,404.078101264106,403.822357177734,0.500307240856354
+3887,307074,3791998,307174,3791898,86,38,37.6315789473684,0.193007111474542,22.4471979610356,0.774130763416478,10.3911504415599,0.0446295980101958,0.415789473684211,41.5789473684211,4,91.6098427897178,0.746194470332401,25,8.48892427094375,0,404.927607218424,404.467102050781,0.461754757592758
+3888,307074,3791898,307174,3791798,87,38,31.8559556786704,0.0443472883507938,8.26107856297418,0.477849810494573,15.5057744694094,0.0457215233997137,0.429362880886427,42.9362880886427,5,88.9881828571594,0.711003236245955,17.7285318559557,8.45949994056456,0,405.334720187717,405.214111328125,0.198160792460571
+3889,307074,3791798,307174,3791698,88,38,17.4515235457064,0.0850311050552177,14.4765011683062,0.581140350877193,44.3910140906919,0.0289865539488953,0.238227146814404,23.8227146814404,3,88.4269064712149,0.811241830065359,13.2963988919668,13.1475922839586,0,405.501808166504,405.403015136719,0.116553197162072
+3890,307074,3791698,307174,3791598,89,38,5.54016620498615,0.026994001604831,4.73317834203513,0.333333333333333,15.5867256623399,0.0362292161935178,0.265927977839335,26.5927977839335,3,91.5640109192819,0.841597191750768,24.3767313019391,28.9493724554777,5.19557523727417,405.504652235243,405.436828613281,0.112671731912014
+3891,307074,3791598,307174,3791498,90,38,36.0526315789474,0.073963564397237,12.7865553766478,0.517018275841805,16.6258407064959,0.0374101516872638,0.313157894736842,31.3157894736842,7,87.3842077513346,0.710160351922804,18.9473684210526,7.73616160865591,0,405.576756795247,405.385070800781,0.651561536987916
+3892,307074,3791498,307174,3791398,91,38,19.1135734072022,0.0465646527683335,8.09220672574967,0.319957580733443,20.7823007402353,0.0330661201533227,0.229916897506925,22.9916897506925,4,83.5079861087095,0.743821269515,8.86426592797784,12.9780388165669,0,405.404724121094,405.200592041016,0.475193322757895
+3893,307074,3791398,307174,3791298,92,38,11.0803324099723,0.053988003209662,8.42381492356466,0.508258258258258,20.7823006752878,0.0319483010333698,0.224376731301939,22.4376731301939,2,89.4192246887967,0.847792658730159,14.6814404432133,16.5211815304226,0,405.196319580078,405.127960205078,0.124389609628639
+3894,307074,3791298,307174,3791198,93,38,19.9445983379501,0.0647856038515944,12.4810750569464,0.489670684835779,24.2460176969731,0.0258825492977108,0.116343490304709,11.6343490304709,6,74.0341680588485,0.744977703209855,8.31024930747922,22.6526510147821,0,405.175584581163,405.146026611328,0.0493143018848295
+3895,307074,3791198,307174,3791098,94,38,17.8947368421053,0.061186403637617,11.270785954588,0.485838779956427,19.8681150835807,0.022425820433694,0.0605263157894737,6.05263157894737,4,65.3503629760438,0.674758792405851,2.89473684210526,4.28989719307941,0,405.206166585286,405.156890869141,0.0578931777652963
+3896,307074,3791098,307174,3790998,95,38,44.0443213296399,0.214602312758407,22.0214359452376,0.789723320158103,41.5646017662397,0.0283993431661243,0.193905817174515,19.3905817174515,2,88.1873603233755,0.828541893666359,14.1274238227147,3.1173451423645,0,405.200215657552,405.176635742188,0.0598660642795342
+3897,307074,3790998,307174,3790898,96,38,11.6343490304709,0.11337480674029,19.43444059658,0.714285714285714,NA,0.0266605124300055,0.116343490304709,11.6343490304709,1,89.2679797262236,0.872488851604927,11.6343490304709,3.21630848021734,0,405.325197855632,405.207702636719,0.182585127936609
+3898,307074,3790898,307174,3790798,97,38,27.9778393351801,0.0908798054029311,12.3232353843591,0.482098765432099,32.442854145128,0.0194364420546721,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417,405.670138888889,405.464202880859,0.395281709433294
+3899,307074,3790798,307174,3790698,98,38,40,0.205154412196716,21.2032235155348,0.713762626262626,20.7823008831198,0.0269890555739613,0.0710526315789474,7.10526315789474,4,76.1219450574871,0.824757889189011,6.31578947368421,14.637185856148,5.19557523727417,406.201985677083,405.799285888672,0.735724825474409
+3900,307074,3790698,307174,3790598,99,38,24.9307479224377,0.0809820048144931,14.8665461798504,0.341394335511983,17.1975384478003,0.0364386139829692,0.239766081871345,23.9766081871345,3,86.2227710753823,0.773209549071618,14.327485380117,15.8420936130896,0,408.151117960612,407.203552246094,0.891129710471492
+3901,307174,3800598,307274,3800498,0,39,45.4293628808864,0.110675406579807,13.1101797961111,0.620410313945211,14.0237553285815,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.099742889404,382.890716552734,0.256716880257622
+3902,307174,3800498,307274,3800398,1,39,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.481096903483,383.330749511719,0.206674006837635
+3903,307174,3800398,307274,3800298,2,39,4.15512465373961,0.0404910024072465,7.71125356819621,0.655555555555556,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.718139648438,383.512451171875,0.208228640585732
+3904,307174,3800298,307274,3800198,3,39,19.9445983379501,0.0971784057773917,13.7587994382222,0.739572989076465,55.9580575863417,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.946584065755,383.745422363281,0.230680335457655
+3905,307174,3800198,307274,3800098,4,39,10.5263157894737,0.0512886030491789,12.5563760464546,0.424603174603175,25.9778760103754,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.367919921875,384.034484863281,0.357134634650557
+3906,307174,3800098,307274,3799998,5,39,24.2105263157895,0.124172407382223,12.0742747072963,0.473148148148148,46.4706371317287,0.00434228104147319,0,0,0,NA,NA,0,NA,NA,384.931683858236,384.709716796875,0.326448839754536
+3907,307174,3799998,307274,3799898,6,39,25.207756232687,0.0818818048679874,10.3737640979357,0.496248196248196,10.79998665274,0.0197384293664213,0.124653739612188,12.4653739612188,4,82.3204381775447,0.789556962025316,10.5263157894737,29.1561904907227,0,385.425247192383,385.150726318359,0.406848255102935
+3908,307174,3799898,307274,3799798,7,39,25.207756232687,0.245645414603962,19.1539605145444,0.858974358974359,NA,0.00800250563258973,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,47.3474354743958,41.5646018981934,386.152351379395,385.698272705078,0.920567016656981
+3909,307174,3799798,307274,3799698,8,39,18.005540166205,0.175461010431402,17.0274787690313,0.828205128205128,NA,0.0151549896376173,0.03601108033241,3.601108033241,2,68.8738396875161,0.711845466155811,3.04709141274238,8.2788600554833,5.19557523727417,388.630437850952,386.815399169922,1.48314641160741
+3910,307174,3799698,307274,3799598,9,39,0,NA,NA,NA,NA,0.0135311599283944,0.0263157894736842,2.63157894736842,6,26.6477266281867,0.288981288981289,0.789473684210526,77.16213722229,44.6940307617188,389.757825215658,389.310974121094,0.652141087934895
+3911,307174,3799598,307274,3799498,10,39,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.00601829261378091,0.0138504155124654,1.38504155124654,2,42.2222222222222,0.797191011235955,1.10803324099723,46.2642501831055,31.1734504699707,389.801160812378,389.420715332031,0.465918054921263
+3912,307174,3799498,307274,3799398,11,39,13.0193905817175,0.126871807542706,13.7137334233169,0.812056737588652,NA,0.00263332397497181,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967,390.049062728882,389.593170166016,0.476724789981353
+3913,307174,3799398,307274,3799298,12,39,2.77008310249307,0.026994001604831,9.22233516990433,0.45,NA,0.00902346926130001,0.0304709141274238,3.04709141274238,5,40.3517430439582,0.381142857142857,1.38504155124654,32.0322279063138,0,390.611399332682,389.95361328125,0.854169212618542
+3914,307174,3799298,307274,3799198,13,39,0,NA,NA,NA,NA,0.0188529244806169,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,116.078202819824,77.2377777099609,392.01428604126,390.687347412109,1.30745923712346
+3915,307174,3799198,307274,3799098,14,39,0,NA,NA,NA,NA,0.0111794119077274,0,0,0,NA,NA,0,NA,NA,393.08390045166,392.061920166016,1.03475733625072
+3916,307174,3799098,307274,3798998,15,39,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0111770644543581,0,0,0,NA,NA,0,NA,NA,393.090074539185,392.509399414062,0.761993712318605
+3917,307174,3798998,307274,3798898,16,39,2.49307479224377,0.0242946014443479,6.08615409468026,0.555555555555556,NA,0.00342056163324698,0,0,0,NA,NA,0,NA,NA,392.48003133138,392.209259033203,0.355122189697951
+3918,307174,3798898,307274,3798798,17,39,26.5789473684211,0.136319708104397,17.0217444580175,0.779415618448637,10.3911504415599,-0.00535666107438087,0.0236842105263158,2.36842105263158,2,61.8884961483246,0.743935309973046,2.10526315789474,4.04100290934245,0,392.413204193115,392.192260742188,0.251787360020595
+3919,307174,3798798,307274,3798698,18,39,19.1135734072022,0.0465646527683335,8.48043793847073,0.196153846153846,26.1377771313328,-0.00924615130630864,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,392.408765157064,392.231964111328,0.21271765813106
+3920,307174,3798698,307274,3798598,19,39,13.2963988919668,0.0647856038515944,12.7485748462669,0.587606837606838,25.9778759376342,-0.00655420618990562,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,13.3600504738944,0,392.503322601318,392.299591064453,0.220713513512698
+3921,307174,3798598,307274,3798498,20,39,6.09418282548476,0.0197956011768761,8.79980601934516,0.303703703703704,16.2537764219477,0.0051670443283777,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,37.0469481150309,15.5867252349854,392.805180867513,392.578186035156,0.304801714675267
+3922,307174,3798498,307274,3798398,21,39,35.7894736842105,0.183559210912851,17.5119747517714,0.733193277310924,22.0429587144503,0.0117767580943971,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,7.27380523681641,0,393.293014526367,393.00439453125,0.310435838862218
+3923,307174,3798398,307274,3798298,22,39,0,NA,NA,NA,NA,0.0110967823014755,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,54.7634401321411,40.5787391662598,393.841115315755,393.592437744141,0.45191661461943
+3924,307174,3798298,307274,3798198,23,39,3.601108033241,0.0350922020862803,9.08765523149906,0.576923076923077,NA,0.00612105978423421,0,0,0,NA,NA,0,NA,NA,394.620847702026,393.811462402344,0.972417146865214
+3925,307174,3798198,307274,3798098,24,39,19.3905817174515,0.188958011233817,24.6783629941545,0.778571428571429,NA,0.0039481433447043,0,0,0,NA,NA,0,NA,NA,395.293162027995,394.02294921875,1.21202932811696
+3926,307174,3798098,307274,3797998,25,39,3.94736842105263,0.0404910024072465,9.78382879313327,0.555555555555556,NA,0.0131123455793242,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,20.1157512664795,15.5867252349854,395.541723251343,394.322052001953,1.14653716222182
+3927,307174,3797998,307274,3797898,26,39,0,NA,NA,NA,NA,0.0109414445620722,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,81.0460484822591,67.7420120239258,395.206411361694,394.307891845703,1.03667940921197
+3928,307174,3797898,307274,3797798,27,39,47.6454293628809,0.464296827603094,29.081143354047,0.85562015503876,NA,0.0110996591566212,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,394.59090423584,394.355743408203,0.304428668493835
+3929,307174,3797798,307274,3797698,28,39,48.4764542936288,0.472395028084543,32.2701382335719,0.833333333333333,NA,0.00794524426982058,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,8.69124739510672,0,394.725797653198,394.591491699219,0.172721649059212
+3930,307174,3797698,307274,3797598,29,39,2.89473684210526,0.0148467008826571,4.70404644952453,0.381944444444444,10.3911504415599,0.00840896784520139,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,28.7161076863607,21.4219055175781,394.707893371582,394.477325439453,0.253188984133745
+3931,307174,3797598,307274,3797498,30,39,69.5290858725762,0.677549440281259,33.4986900659526,0.881142098273572,NA,0.0373171764257276,0.315789473684211,31.5789473684211,3,92.9383676431626,0.723300970873786,26.5927977839335,7.10973447665834,0,393.436298370361,390.191772460938,2.05030054511114
+3932,307174,3797498,307274,3797398,31,39,52.0775623268698,0.507487230170823,29.6747163231947,0.892730496453901,NA,0.0283137413854619,0.135734072022161,13.5734072022161,3,86.6176706142954,0.80715811965812,12.4653739612188,22.2060548042764,0,394.420412699382,391.316192626953,4.66765268420232
+3933,307174,3797398,307274,3797298,32,39,0,NA,NA,NA,NA,-0.0754752160637534,0,0,0,NA,NA,0,NA,NA,399.484300613403,397.615417480469,1.5258753269413
+3934,307174,3797298,307274,3797198,33,39,21.3157894736842,0.109325706499566,13.0313594943152,0.398958333333333,20.7823006752878,-0.0250500554629405,0.0947368421052632,9.47368421052632,2,82.7339819977757,0.797480620155039,7.36842105263158,0.288643068737454,0,400.336255391439,400.248474121094,0.171143234516174
+3935,307174,3797198,307274,3797098,34,39,26.5927977839335,0.259142415406378,28.2421873160026,0.802083333333333,NA,0.0332204938489632,0.191135734072022,19.1135734072022,4,86.0156353145002,0.734348465979848,13.2963988919668,12.6209377344104,0,400.188619613647,399.942779541016,0.19336111718994
+3936,307174,3797098,307274,3796998,35,39,6.37119113573407,0.0310431018455557,8.34184110672131,0.365079365079365,34.8529780579234,0.0194010297638463,0.0941828254847645,9.41828254847645,5,71.9016298336531,0.625436871996505,5.81717451523546,19.7306304679197,0,400.042048136393,399.7509765625,0.299452374439502
+3937,307174,3796998,307274,3796898,36,39,19.9445983379501,0.0971784057773917,15.3196905213215,0.592171717171717,37.4658256128201,0.0217831877328679,0.174515235457064,17.4515235457064,4,83.4350617633114,0.702654057352044,11.9113573407202,24.9732810958983,0,400.290761947632,399.812347412109,0.522671513516306
+3938,307174,3796898,307274,3796798,37,39,44.7368421052632,0.229449013641064,26.3800660182269,0.707142857142857,14.6953058096335,0.028627100404705,0.252631578947368,25.2631578947368,2,93.1882372732946,0.844415329184409,23.9473684210526,4.18973674376806,0,400.903686523438,400.34814453125,0.603190331813383
+3939,307174,3796798,307274,3796698,38,39,19.1135734072022,0.0310431018455557,6.73594693849582,0.385671132125033,15.2451609482496,0.0195867297521177,0.0581717451523546,5.81717451523546,3,69.0072601690351,0.767738970588235,3.8781163434903,14.265708673568,5.19557523727417,401.390678405762,400.769104003906,0.575346078890554
+3940,307174,3796698,307274,3796598,39,39,33.2409972299169,0.107976006419324,14.887085495117,0.534590964590965,19.1735218024012,0.0278110406358497,0.18005540166205,18.005540166205,4,82.208626622124,0.784142549629275,11.9113573407202,11.0835950044485,0,401.537645339966,400.534942626953,0.754180827278746
+3941,307174,3796598,307274,3796498,40,39,13.0193905817175,0.0253743615085412,7.507220888443,0.374603174603175,29.138442663384,0.0471393688257146,0.379501385041551,37.9501385041551,5,88.9764065703759,0.780821428571428,24.0997229916898,21.7116078042636,0,401.783419291178,400.868804931641,0.973852688297842
+3942,307174,3796498,307274,3796398,41,39,13.2963988919668,0.0647856038515944,11.6055384199566,0.438405797101449,39.5683217016104,0.0521837191155098,0.448753462603878,44.8753462603878,1,97.2623278749726,0.713888233111868,44.8753462603878,16.8456757215806,0,401.708309173584,400.964385986328,0.886477270603944
+3943,307174,3796398,307274,3796298,42,39,25.2631578947368,0.129571207703189,19.5048963369849,0.655187391412261,11.6176592829322,0.037523249626898,0.326315789473684,32.6315789473684,4,90.7874467459882,0.769097222222222,17.8947368421053,17.5711055647942,0,400.570198059082,399.632843017578,1.17424559951025
+3944,307174,3796298,307274,3796198,43,39,59.5567867036011,0.290185517251933,25.0540719380302,0.804398586394043,10.3911503376439,0.0530871156757798,0.437673130193906,43.7673130193906,4,92.5833976828157,0.834431798878886,35.180055401662,4.01640003542357,0,398.026468276978,396.757568359375,1.44331887785955
+3945,307174,3796198,307274,3796098,44,39,20.2216066481994,0.0656854039050888,12.9703340792498,0.531432748538012,36.734625944074,0.0466989737759129,0.282548476454294,28.2548476454294,2,94.3569138188708,0.939067873494103,27.9778393351801,9.09738179749134,0,396.647842407227,396.19384765625,0.664614923082919
+3946,307174,3796098,307274,3795998,45,39,11.0803324099723,0.0215952012838648,6.69250908481664,0.32962962962963,27.0169908778742,0.0490897087806931,0.407202216066482,40.7202216066482,2,94.5361061851664,0.805597053816489,35.7340720221607,21.0025616340897,0,395.603321075439,395.015075683594,0.769929484153008
+3947,307174,3795998,307274,3795898,46,39,16.3157894736842,0.0334725619899905,8.8781240861428,0.40754008677608,16.528282590793,0.0171675164897016,0.105263157894737,10.5263157894737,1,88.7409251042043,0.933274802458297,10.5263157894737,31.8847815513611,15.5867252349854,394.812932332357,394.718200683594,0.173522176634487
+3948,307174,3795898,307274,3795798,47,39,25.7617728531856,0.125522107462464,18.5445929888963,0.654379157427938,15.5867255064659,0.055382044235721,0.443213296398892,44.3213296398892,2,96.3368688349395,0.914475242833452,43.4903047091413,22.9518711030483,0,394.818967819214,394.702087402344,0.156503764254551
+3949,307174,3795798,307274,3795698,48,39,0,NA,NA,NA,NA,0.0132274109203024,0.03601108033241,3.601108033241,4,51.0431039550417,0.596583652618135,1.93905817174515,47.6100782614488,7.34765291213989,395.236846923828,395.045959472656,0.328309176487599
+3950,307174,3795698,307274,3795598,49,39,37.3961218836565,0.0911047554163047,17.7290819870404,0.589500273472048,10.3911503896019,0.0262831478217459,0.105263157894737,10.5263157894737,5,75.7392535130297,0.716153127917834,5.26315789473684,6.74065220983405,0,395.869134902954,395.584564208984,0.386067101993687
+3951,307174,3795598,307274,3795498,50,39,17.8947368421053,0.061186403637617,15.8765631097742,0.521428571428571,15.5867255064659,0.0285643216108024,0.134210526315789,13.4210526315789,2,86.2636673798519,0.867239632463404,11.0526315789474,10.8678159339755,0,396.506548563639,396.321380615234,0.26375196785886
+3952,307174,3795498,307274,3795398,51,39,9.14127423822715,0.0445401026479712,13.3724877569165,0.487037037037037,21.4219054085159,0.0192957809190085,0.0304709141274238,3.04709141274238,4,46.8721754683778,0.518666666666667,1.66204986149584,10.0430953285911,0,396.893741607666,396.633483886719,0.380822430694562
+3953,307174,3795398,307274,3795298,52,39,11.0803324099723,0.0359920021397747,9.40438530102238,0.445555555555556,12.1230087792092,0.0325002160767991,0.191135734072022,19.1135734072022,8,76.2229633487012,0.621957432355938,8.31024930747922,17.3379842924035,0,398.004147847493,397.264038085938,0.935981028226533
+3954,307174,3795298,307274,3795198,53,39,47.6454293628809,0.232148413801547,19.5432712368012,0.35233918128655,15.5867256623399,0.0340190534334347,0.246537396121884,24.6537396121884,5,85.0934854582008,0.574292452830189,10.5263157894737,3.79866998115282,0,398.890659332275,398.412445068359,0.288451315446139
+3955,307174,3795198,307274,3795098,54,39,3.94736842105263,0.0202455012036233,5.85258050125953,0.435606060606061,51.9557516882196,0.0205159265126081,0.0605263157894737,6.05263157894737,3,71.1902848174467,0.763460939931528,3.42105263157895,24.2080733257791,10.3911504745483,398.944667816162,398.860656738281,0.097887601955571
+3956,307174,3795098,307274,3794998,55,39,17.1745152354571,0.167362809949952,26.6979366881982,0.747311827956989,NA,0.000203233827182016,0,0,0,NA,NA,0,NA,NA,398.775957743327,398.721496582031,0.0777563950975891
+3957,307174,3794998,307274,3794898,56,39,13.8504155124654,0.0449900026747184,8.93769640639434,0.2914653784219,17.3185838960732,0.00360460746270692,0.0526315789473684,5.26315789473684,5,53.2058428545886,0.526819923371648,1.93905817174515,4.6663088547556,0,398.755170822144,398.697845458984,0.0762435234020879
+3958,307174,3794898,307274,3794798,57,39,56.786703601108,0.276688516449518,22.7230353435865,0.654513888888889,15.5867255064659,0.0302890915711657,0.182825484764543,18.2825484764543,4,84.8349527538666,0.765895357406043,11.9113573407202,2.45050016316501,0,398.965148925781,398.831115722656,0.273762646179365
+3959,307174,3794798,307274,3794698,58,39,48.1578947368421,0.246995114684204,19.3575672250442,0.52304469273743,15.5867255064659,0.0292782946693095,0.110526315789474,11.0526315789474,8,68.485567299758,0.50912576048004,4.73684210526316,4.88368097941081,0,399.681261062622,399.19140625,0.668702279437526
+3960,307174,3794698,307274,3794598,59,39,44.5983379501385,0.434603425837779,35.7263318295756,0.773291925465839,NA,0.0193905754311854,0.0498614958448753,4.98614958448753,4,61.0070729474072,0.571212612028939,2.49307479224377,6.89652638965183,0,400.829518636068,400.129730224609,0.963175548251982
+3961,307174,3794598,307274,3794498,60,39,39.0581717451524,0.380615422628117,30.1324484700006,0.819148936170213,NA,0.0228658517608436,0.0831024930747922,8.31024930747922,3,75.0415940033875,0.732905851162217,4.15512465373961,8.72365325291952,0,402.29919052124,401.538208007812,0.886286059855264
+3962,307174,3794498,307274,3794398,61,39,63.98891966759,0.623561437071597,32.5316862260041,0.871572871572872,NA,0.0217796177277398,0.0664819944598338,6.64819944598338,5,61.8752429413504,0.63353115727003,3.32409972299169,6.94139569997787,0,402.579190572103,402.013671875,0.753101271134509
+3963,307174,3794398,307274,3794298,62,39,68.4210526315789,0.175461010431402,11.2305069917204,0.389934738955823,11.6900441298494,0.0142454248986293,0.068421052631579,6.8421052631579,4,67.9361975387352,0.633457351522668,3.94736842105263,5.13857911183284,0,401.890054702759,401.497375488281,0.527867565200858
+3964,307174,3794298,307274,3794198,63,39,90.3047091412742,0.880004452317491,36.1502257056921,0.91002044989775,NA,0.0114888225518341,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,401.455001831055,401.425872802734,0.100254375723903
+3965,307174,3794198,307274,3794098,64,39,38.5041551246537,0.187608311153576,16.9874393607317,0.689216382575758,36.7382645240838,0.0295077704244567,0.204986149584488,20.4986149584488,2,88.0882935443772,0.86454033771107,11.6343490304709,12.7464581180263,0,401.8102684021,401.465209960938,0.34809743789495
+3966,307174,3794098,307274,3793998,65,39,0.277008310249307,0.0026994001604831,0,0,NA,0.00601470600243971,0,0,0,NA,NA,0,NA,NA,402.266001383464,401.916687011719,0.297873551803683
+3967,307174,3793998,307274,3793898,66,39,16.3157894736842,0.0334725619899905,8.59279412575862,0.401901901901902,20.9223787282732,0.00615900829819494,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,7.64479287465413,5.19557523727417,402.204978942871,401.927642822266,0.263114528818303
+3968,307174,3793898,307274,3793798,67,39,36.5650969529086,0.178160410591885,15.4665054238156,0.598958333333333,22.0429587144503,0.0289011414047044,0.199445983379501,19.9445983379501,4,85.8938569664301,0.773778710187178,13.0193905817175,12.0314483576351,0,402.344286600749,401.965942382812,0.359965870164247
+3969,307174,3793798,307274,3793698,68,39,33.2409972299169,0.107976006419324,14.3382339184659,0.58421052631579,17.3185838960732,0.0206474895565916,0.074792243767313,7.4792243767313,4,73.9574384154472,0.648099150536137,4.98614958448753,20.4193059073554,0,402.794801712036,402.447967529297,0.311387346431795
+3970,307174,3793698,307274,3793598,69,39,0,NA,NA,NA,NA,0.00841026678194429,0.157894736842105,15.7894736842105,3,82.3399137215092,0.818239795918367,7.75623268698061,28.5810247555114,10.3911504745483,403.159656524658,403.079071044922,0.129720137294938
+3971,307174,3793598,307274,3793498,70,39,17.6315789473684,0.180859810752368,26.2879853063647,0.761194029850746,NA,0.0184912139827199,0.147368421052632,14.7368421052632,4,83.2589926780507,0.770268550337279,10.7894736842105,32.7138643179621,0,403.018938700358,402.779663085938,0.314646848496166
+3972,307174,3793498,307274,3793398,71,39,0.277008310249307,0.0026994001604831,0,0,NA,0.0316146792990424,0.227146814404432,22.7146814404432,3,85.7484140623393,0.732295142751205,9.69529085872576,31.1576890073171,0,401.989551544189,401.207794189453,0.827392915886132
+3973,307174,3793398,307274,3793298,72,39,0,NA,NA,NA,NA,0.0177022848673514,0.0831024930747922,8.31024930747922,3,79.8077240812108,0.844195079844627,7.4792243767313,51.1409926096598,27.9790287017822,400.894411722819,400.729095458984,0.32248574907371
+3974,307174,3793298,307274,3793198,73,39,0,NA,NA,NA,NA,0.0180470565854929,0.0664819944598338,6.64819944598338,3,70.6721006767911,0.63353115727003,3.8781163434903,70.8769352436066,30.2951488494873,400.639154434204,400.473480224609,0.173942521198371
+3975,307174,3793198,307274,3793098,74,39,0,NA,NA,NA,NA,0.0169815387127528,0.0210526315789474,2.10526315789474,3,49.0305203394943,0.591397849462366,1.57894736842105,75.5910043716431,68.3371200561523,400.46851348877,400.35205078125,0.151752491811488
+3976,307174,3793098,307274,3792998,75,39,15.7894736842105,0.0769329045737684,14.3934476656802,0.593112244897959,49.0149582505366,0.0382058646808375,0.263157894736842,26.3157894736842,4,90.0910728531977,0.840336134453782,22.9916897506925,24.1742321666918,0,400.431491851807,400.321350097656,0.115503290533679
+3977,307174,3792998,307274,3792898,76,39,15.7894736842105,0.0307731618295074,6.99445751656483,0.519036519036519,15.375464422617,0.0144952192723266,0.03601108033241,3.601108033241,3,58.3285012096996,0.654214559386973,1.93905817174515,15.159132370582,5.19557523727417,400.676948547363,400.517639160156,0.258905193321961
+3978,307174,3792898,307274,3792798,77,39,35.4570637119114,0.115174406847279,20.5552349515798,0.497093023255814,12.1230087272512,0.0324634845891627,0.166204986149584,16.6204986149584,7,76.1210959628158,0.734762330692563,6.64819944598338,8.25779004096985,0,401.128164291382,400.887237548828,0.254014221086261
+3979,307174,3792798,307274,3792698,78,39,9.73684210526316,0.0499389029689374,11.5166015242937,0.472222222222222,58.0882964146609,0.0280713712296251,0.171052631578947,17.1052631578947,3,86.3031490919246,0.850540806293019,13.1578947368421,11.7640604972839,0,401.577674865723,401.386810302734,0.389163041881818
+3980,307174,3792698,307274,3792598,79,39,19.1135734072022,0.093129305536667,15.9993313060991,0.671064814814815,16.4298513045218,0.0401145221105676,0.282548476454294,28.2548476454294,4,88.1955912951604,0.801970588855834,13.5734072022161,11.3866316804699,0,402.389602661133,401.960601806641,0.495963448836552
+3981,307174,3792598,307274,3792498,80,39,5.26315789473684,0.0512886030491789,8.4881388319431,0.701754385964912,NA,0.0265941903989719,0.174515235457064,17.4515235457064,4,81.5671913917231,0.812782184258694,8.58725761772853,33.241849172683,15.5867252349854,403.077748616536,402.690643310547,0.446531418763254
+3982,307174,3792498,307274,3792398,81,39,22.4376731301939,0.218651412999131,25.8240975361921,0.783950617283951,NA,0.0122216763625865,0.0775623268698061,7.75623268698061,3,79.6476764640163,0.879546212879546,7.20221606648199,4.63100498063224,0,403.381063461304,403.027801513672,0.544302259091888
+3983,307174,3792398,307274,3792298,82,39,0,NA,NA,NA,NA,0.00913068017303215,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,124.726299285889,119.498229980469,403.998774210612,403.477142333984,0.516434711991249
+3984,307174,3792298,307274,3792198,83,39,0,NA,NA,NA,NA,0.04394027074203,0.385041551246537,38.5041551246537,2,93.3994912387109,0.859154430020572,27.1468144044321,71.4476506349852,46.7601776123047,403.831287384033,403.649658203125,0.25431976596084
+3985,307174,3792198,307274,3792098,84,39,30.4709141274238,0.296934017653141,31.3608077710005,0.766666666666667,NA,0.040519588049843,0.307479224376731,30.7479224376731,3,92.1431065813057,0.7473,26.8698060941828,8.17568881232459,0,403.654838562012,403.605285644531,0.0954700313183803
+3986,307174,3792098,307274,3791998,85,39,32.409972299169,0.0789574546941307,11.3539103991017,0.484264482048527,11.6900441298494,0.0319793895790318,0.191135734072022,19.1135734072022,6,80.4813937709204,0.673044265821352,11.0803324099723,7.45214183088662,0,403.972923278809,403.763458251953,0.413716136999251
+3987,307174,3791998,307274,3791898,86,39,24.2105263157895,0.124172407382223,14.4047720432343,0.777777777777778,25.9778758441098,0.0393902383919148,0.305263157894737,30.5263157894737,6,85.5596972595839,0.725829725829726,16.0526315789474,8.26383546303058,0,404.775245666504,404.277862548828,0.474885856069107
+3988,307174,3791898,307274,3791798,87,39,13.5734072022161,0.066135303931836,13.5184969740139,0.442632850241546,20.7823006752878,0.0236364042790641,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,15.9454054832458,5.19557523727417,405.742418924967,405.224365234375,0.976420582508963
+3989,307174,3791798,307274,3791698,88,39,6.64819944598338,0.0647856038515944,9.88614074593758,0.729166666666667,NA,0.0215001239183472,0.038781163434903,3.8781163434903,5,45.0569722783578,0.531844380403458,1.66204986149584,23.2723707812173,5.19557523727417,405.939340591431,405.490814208984,0.70508496911835
+3990,307174,3791698,307274,3791598,89,39,16.0664819944598,0.15656520930802,30.0845451067558,0.597701149425287,NA,0.0386928651004435,0.307479224376731,30.7479224376731,3,93.2779503726666,0.82672,28.2548476454294,13.8433543411461,0,405.667371114095,405.420623779297,0.372805198488479
+3991,307174,3791598,307274,3791498,90,39,23.6842105263158,0.0404910024072465,7.45033491888354,0.501792992582466,17.8340210437308,0.0329922926352179,0.228947368421053,22.8947368421053,8,80.6246144566953,0.665308818672245,12.6315789473684,10.2549779661771,0,405.45313835144,405.279968261719,0.232308092151902
+3992,307174,3791498,307274,3791398,91,39,41.5512465373961,0.404910024072465,27.7001335957418,0.833333333333333,NA,0.0473899085657919,0.49584487534626,49.584487534626,3,95.2343204283818,0.80824009827031,44.5983379501385,5.61411585887717,0,405.201652526855,405.13134765625,0.144880012644474
+3993,307174,3791398,307274,3791298,92,39,17.1745152354571,0.167362809949952,17.6147465215703,0.806451612903226,NA,0.0268058509918094,0.138504155124654,13.8504155124654,6,76.3232535786869,0.699564970682807,9.14127423822715,10.6751547527313,0,405.174312591553,405.11279296875,0.146418275146209
+3994,307174,3791298,307274,3791198,93,39,55.6786703601108,0.542579432257103,34.1139521604149,0.812603648424544,NA,0.0437027676915859,0.39612188365651,39.612188365651,3,92.8290713315634,0.74086070453113,23.2686980609418,2.40456600789424,0,405.493751525879,405.17041015625,0.574317998184461
+3995,307174,3791198,307274,3791098,94,39,42.3684210526316,0.108650856459445,13.9237857324144,0.498495130741508,17.0056166948418,0.0270312161708333,0.234210526315789,23.4210526315789,4,85.2550484477212,0.761827573537358,12.6315789473684,4.63940123225866,0,405.720232009888,405.259857177734,0.774332425284058
+3996,307174,3791098,307274,3790998,95,39,24.6537396121884,0.060061653570749,10.0211885137407,0.473496479161549,29.6228946324148,0.0208232818968956,0.0997229916897507,9.97229916897507,2,81.1589536576896,0.759333333333333,6.92520775623269,2.40394275718265,0,405.51195526123,405.268798828125,0.395800565370413
+3997,307174,3790998,307274,3790898,96,39,22.7146814404432,0.0553377032899036,10.5720349274416,0.625606165171383,26.0191936184283,0.018307034318237,0.0886426592797784,8.86426592797784,5,67.4228860661889,0.683481412204817,3.8781163434903,6.33213326334953,0,405.841957092285,405.447662353516,0.50827669743836
+3998,307174,3790898,307274,3790798,97,39,57.8947368421053,0.188058211180323,18.2303711468786,0.58029786862334,12.9406814094014,0.0268376830043814,0.119113573407202,11.9113573407202,6,68.7136971923307,0.637360237596087,4.70914127423823,3.41534183191699,0,406.263605753581,405.851470947266,0.419996167467306
+3999,307174,3790798,307274,3790698,98,39,34.2105263157895,0.0877305052157008,16.4188048074034,0.674112654320988,15.1410157359867,0.0269808673995277,0.110526315789474,11.0526315789474,4,78.1867079056182,0.778314859571631,8.42105263157895,11.3897190888723,0,406.509159088135,406.311798095703,0.262047768256812
+4000,307174,3790698,307274,3790598,99,39,7.20221606648199,0.0350922020862803,7.8992096152488,0.432367149758454,66.5358268414395,0.0310550825287842,0.175438596491228,17.5438596491228,5,78.3687208732527,0.766775777414075,8.7719298245614,28.8375824928284,0,407.358594894409,406.736083984375,0.733409170205222
+4001,307274,3800598,307374,3800498,0,40,45.4293628808864,0.147567208773076,17.3162777865033,0.574610472541507,17.3185838960732,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.222511291504,382.950714111328,0.28550320308237
+4002,307274,3800498,307374,3800398,1,40,6.31578947368421,0.0323928019257972,10.9649188419512,0.388888888888889,25.9778758441098,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.629531860352,383.476165771484,0.227491491146089
+4003,307274,3800398,307374,3800298,2,40,37.6731301939058,0.367118421825702,26.1801509680813,0.868872549019608,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.986486434937,383.790893554688,0.239517901883212
+4004,307274,3800298,307374,3800198,3,40,49.3074792243767,0.480493228565992,29.4579552900249,0.838951310861423,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.324195861816,384.078216552734,0.288115693646479
+4005,307274,3800198,307374,3800098,4,40,25.207756232687,0.0409409024339937,8.2150612139913,0.504419191919192,13.6021924468728,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.673854827881,384.372711181641,0.2536685425019
+4006,307274,3800098,307374,3799998,5,40,65.2631578947368,0.334725619899905,26.709726375258,0.852367424242424,10.3911504415599,0.00886114053884357,0,0,0,NA,NA,0,NA,NA,385.032946268717,384.868988037109,0.233087892702601
+4007,307274,3799998,307374,3799898,6,40,95.0138504155125,0.925894255045704,37.5565261082007,0.902818270165209,NA,0.00741516138081934,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,1.29889380931854,0,385.834638595581,385.21435546875,0.752591060551822
+4008,307274,3799898,307374,3799798,7,40,34.6260387811634,0.168712510030194,16.7117139758721,0.806197568909433,10.3911504415599,0.0101901857594291,0.0193905817174515,1.93905817174515,2,53.6944186091776,0.872528248587571,1.66204986149584,1.48445006779262,0,387.20317586263,386.45703125,0.986309118502962
+4009,307274,3799798,307374,3799698,8,40,0,NA,NA,NA,NA,0.00822024420979025,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,70.140266418457,67.54248046875,388.982860565186,388.050598144531,1.02275074186946
+4010,307274,3799698,307374,3799598,9,40,22.1052631578947,0.11337480674029,14.4057548378233,0.665509259259259,10.3911504415599,0.011680476464762,0,0,0,NA,NA,0,NA,NA,390.16180674235,389.881500244141,0.286895028284569
+4011,307274,3799598,307374,3799498,10,40,77.2853185595568,0.753132644774785,34.3145865672721,0.893667861409797,NA,0.0197266754281105,0.0554016620498615,5.54016620498615,4,59.2457807369119,0.556049569577145,1.93905817174515,1.14671893119812,0,390.369455337524,390.232421875,0.196585803270279
+4012,307274,3799498,307374,3799398,11,40,68.6980609418283,0.669451239799809,32.9447402470515,0.877688172043011,NA,0.015099119599921,0.0470914127423823,4.70914127423823,3,63.6964073642372,0.622209302325581,2.21606648199446,3.36184280058917,0,390.709558486938,390.411315917969,0.356633518530913
+4013,307274,3799398,307374,3799298,12,40,55.1246537396122,0.537180631936137,28.5231402518001,0.898659966499162,NA,0.0125520651518777,0.0304709141274238,3.04709141274238,3,54.3022270004708,0.518666666666667,1.38504155124654,1.70299200578169,0,391.518323262533,390.966888427734,0.780556034711681
+4014,307274,3799298,307374,3799198,13,40,0,NA,NA,NA,NA,0.0157255321118244,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,90.4910202026367,88.4774551391602,392.868167877197,392.252868652344,0.834109096412068
+4015,307274,3799198,307374,3799098,14,40,0,NA,NA,NA,NA,0.0162595831922502,0,0,0,NA,NA,0,NA,NA,393.70160929362,393.340637207031,0.43659902521716
+4016,307274,3799098,307374,3798998,15,40,0,NA,NA,NA,NA,0.0153666568227369,0,0,0,NA,NA,0,NA,NA,393.277770996094,392.71826171875,0.510686140974367
+4017,307274,3798998,307374,3798898,16,40,29.9168975069252,0.0971784057773917,15.3971100142665,0.712206196581197,16.7243041674623,-0.0098389154444202,0,0,0,NA,NA,0,NA,NA,392.720858256022,392.655242919922,0.155179777456918
+4018,307274,3798898,307374,3798798,17,40,51.5789473684211,0.264541215727344,22.0092363590996,0.494415807560137,18.7329127343573,-0.0107431778107543,0,0,0,NA,NA,0,NA,NA,392.735763549805,392.662536621094,0.108559222115293
+4019,307274,3798798,307374,3798698,18,40,81.1634349030471,0.790924247021549,35.6652142827666,0.90386803185438,NA,0.00853014335748878,0.113573407202216,11.3573407202216,3,77.7890393493056,0.803804347826087,5.81717451523546,0,0,392.828275044759,392.651275634766,0.204702851967018
+4020,307274,3798698,307374,3798598,19,40,66.7590027700831,0.325277719338214,15.9125676044429,0.453819444444444,20.7823008831198,-0.00635070226691768,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,392.936637878418,392.683654785156,0.215780712923528
+4021,307274,3798598,307374,3798498,20,40,51.8005540166205,0.50478783001034,28.5172723256537,0.885918003565062,NA,-0.00583757146138606,0,0,0,NA,NA,0,NA,NA,393.190498352051,392.942047119141,0.361888344457261
+4022,307274,3798498,307374,3798398,21,40,65.7894736842105,0.337425020060388,21.9099628391173,0.784722222222222,18.7329127343573,0.0372675785442545,0.434210526315789,43.4210526315789,3,93.4841191182213,0.802325581395349,27.6315789473684,3.31774458451705,0,393.746379852295,393.351684570312,0.418198783055947
+4023,307274,3798398,307374,3798298,22,40,49.8614958448753,0.485892028886958,28.9976523497791,0.843518518518518,NA,-0.00883811820142675,0.0803324099722992,8.03324099722992,1,85.9543809702001,0.976864906434248,8.03324099722992,0,0,393.593627929688,393.496002197266,0.140018677838023
+4024,307274,3798298,307374,3798198,23,40,19.9445983379501,0.0242946014443479,5.47733022032439,0.350478603603604,15.8454299372567,-0.0527523638747653,0,0,0,NA,NA,0,NA,NA,393.510625839233,393.385406494141,0.185600738437732
+4025,307274,3798198,307374,3798098,24,40,38.781163434903,0.0629860037446057,11.3220412742117,0.443842356788027,15.2362334620625,-0.0372381882215276,0,0,0,NA,NA,0,NA,NA,393.521041870117,393.386383056641,0.259222528342155
+4026,307274,3798098,307374,3797998,25,40,45.5263157894737,0.116749056940894,12.4094364626635,0.550312022414671,11.0044048971005,-0.00979775953015441,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,14.6953058242798,14.6953058242798,393.639793395996,393.441314697266,0.358376295644176
+4027,307274,3797998,307374,3797898,26,40,14.9584487534626,0.0728838043330437,10.6456127299369,0.585714285714286,11.6176592829322,0.00318846819877423,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,16.3542416095734,7.34765291213989,393.842233657837,393.607727050781,0.323638688563419
+4028,307274,3797898,307374,3797798,27,40,74.792243767313,0.728838043330438,32.531628215106,0.910493827160494,NA,0.0212919373221475,0.0637119113573407,6.37119113573407,2,81.2280998045818,0.673652202498356,6.09418282548476,1.80715660426928,0,394.330614725749,393.991180419922,0.509007327182942
+4029,307274,3797798,307374,3797698,28,40,56.5096952908587,0.275338816369276,21.8426253581865,0.721787709497207,11.6176593526411,0.0217951553581631,0.07202216066482,7.20221606648199,5,64.289025335187,0.658318165271205,3.601108033241,9.8872567323538,0,394.947187423706,394.805694580078,0.196466266925238
+4030,307274,3797698,307374,3797598,29,40,12.1052631578947,0.0620862036911113,14.4196640313195,0.554738562091503,83.1292027011514,0.00428672925405695,0.0236842105263158,2.36842105263158,3,44.9258483839375,0.573225516621743,1.05263157894737,18.9794676568773,7.34765291213989,395.142812093099,394.985443115234,0.209094797359057
+4031,307274,3797598,307374,3797498,30,40,73.9612188365651,0.720739842848988,33.5229189978076,0.906367041198502,NA,0.0468196477770832,0.42382271468144,42.382271468144,5,89.461911074192,0.678825622775801,16.0664819944598,4.63454506755654,0,393.941337585449,390.302764892578,2.56852373457813
+4032,307274,3797498,307374,3797398,31,40,67.8670360110803,0.66135303931836,32.3744341571149,0.9,NA,0.0282698339462432,0.14404432132964,14.404432132964,2,87.4993729403145,0.737464092214828,11.9113573407202,18.0966472167235,0,394.355394999186,390.610168457031,5.36306677649446
+4033,307274,3797398,307374,3797298,32,40,5.81717451523546,0.0188958011233817,4.95953914786137,0.246913580246914,24.2460175237798,-0.0707499766154756,0,0,0,NA,NA,0,NA,NA,400.172069549561,399.135528564453,1.07638168847398
+4034,307274,3797298,307374,3797198,33,40,36.8421052631579,0.125972007489211,16.9702278551343,0.59546783625731,13.8548671168586,-0.00989488853946042,0.0578947368421053,5.78947368421053,2,80.2174158200035,0.750246467302005,5.52631578947368,0.23616251078519,0,400.111071268717,399.781005859375,0.283181268510458
+4035,307274,3797198,307374,3797098,34,40,17.7285318559557,0.0575872034236395,9.33961502580097,0.473976608187135,38.100884779193,0.0242239102656557,0.127423822714681,12.7423822714681,3,83.5496692346218,0.853072853072853,10.5263157894737,8.74037054310674,0,399.729961395264,399.207122802734,0.445789210509856
+4036,307274,3797098,307374,3796998,35,40,10.5263157894737,0.034192402032786,8.58984674835272,0.571836007130125,22.6372385574707,-0.00936648236755676,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,13.2192130770002,5.19557523727417,399.23760732015,398.710174560547,0.53409231109641
+4037,307274,3796998,307374,3796898,36,40,22.1606648199446,0.107976006419324,25.2519663443303,0.641666666666667,10.3911504415599,0.00824304406613065,0.0858725761772853,8.58725761772853,4,72.2077151563721,0.606181818181818,4.15512465373961,12.504954015055,0,399.14867401123,398.705413818359,0.575246362244971
+4038,307274,3796898,307374,3796798,37,40,23.6842105263158,0.0485892028886958,11.8069141440341,0.415497076023392,19.9990275007711,0.0146035332008691,0.0605263157894737,6.05263157894737,4,65.2341298059732,0.645191409897292,2.89473684210526,14.6643401850825,5.19557523727417,399.47681427002,399.049438476562,0.63319365000469
+4039,307274,3796798,307374,3796698,38,40,26.8698060941828,0.0523683631133722,8.89467311769114,0.353233574131407,23.1827833090234,0.0218902298741207,0.074792243767313,7.4792243767313,5,68.7379653157579,0.597827600612728,4.43213296398892,10.2093437336109,5.19557523727417,399.926597595215,399.373596191406,0.757431533109066
+4040,307274,3796698,307374,3796598,39,40,26.8698060941828,0.0523683631133722,11.8129503038202,0.496074074074074,13.5084954805035,0.0178805581192157,0.0664819944598338,6.64819944598338,5,68.0829528455465,0.689910979228487,4.98614958448753,14.6063842177391,5.19557523727417,399.883232116699,399.358489990234,0.690862123632128
+4041,307274,3796598,307374,3796498,40,40,25.207756232687,0.0614113536509906,14.5323943238,0.500166392608253,15.5867256623399,0.0204052588745366,0.074792243767313,7.4792243767313,5,67.2043929493747,0.572691825651024,3.601108033241,7.99284043135466,0,400.002240498861,399.461364746094,0.796435045865108
+4042,307274,3796498,307374,3796398,41,40,14.6814404432133,0.0476894028352015,10.6942175673885,0.369385342789598,17.4619170502947,0.0255709256858014,0.163434903047091,16.3434903047091,6,75.8088629951199,0.707018569017011,9.14127423822715,19.9740234714443,0,400.186643600464,399.598297119141,0.723027799640994
+4043,307274,3796398,307374,3796298,42,40,11.5789473684211,0.0296934017653141,7.63826972918367,0.406084656084656,22.595067017826,0.0176054940539633,0.105263157894737,10.5263157894737,6,72.5959880344424,0.699736611062335,6.05263157894737,17.028445994854,0,399.873987833659,399.313842773438,0.450406487214604
+4044,307274,3796298,307374,3796198,43,40,27.4238227146814,0.0890802052959424,17.3257225026112,0.648757659645945,13.8548672554132,0.0363014063162928,0.227146814404432,22.7146814404432,6,78.7701458154987,0.741218637992832,9.97229916897507,8.85681012200146,0,398.93260383606,397.340484619141,1.120518317843
+4045,307274,3796198,307374,3796098,44,40,24.3767313019391,0.0593868035306282,12.1109030250688,0.569026951058201,18.6060761595431,0.0245524855720626,0.110803324099723,11.0803324099723,8,64.5377005478988,0.513228251267029,3.601108033241,11.387686920166,0,397.808113098145,396.846649169922,1.03321806287456
+4046,307274,3796098,307374,3795998,45,40,4.43213296398892,0.0143968008559099,5.15885145956991,0.336574074074074,53.0654130403557,0.0123019460510694,0.0443213296398892,4.43213296398892,3,61.8687874600599,0.651207729468599,2.49307479224377,15.9567350149155,5.19557523727417,396.598114013672,395.205352783203,1.23173316823644
+4047,307274,3795998,307374,3795898,46,40,0.263157894736842,0.0026994001604831,0,0,NA,0.00221352730127843,0,0,0,NA,NA,0,NA,NA,395.0958887736,394.820220947266,0.559284014192233
+4048,307274,3795898,307374,3795798,47,40,10.2493074792244,0.0499389029689374,9.75785436932495,0.597222222222222,66.1288761433508,0.00863500926871765,0.0581717451523546,5.81717451523546,2,72.8965530088247,0.800919117647059,3.32409972299169,33.7390556335449,15.5867252349854,394.857660293579,394.797698974609,0.121139837022133
+4049,307274,3795798,307374,3795698,48,40,2.77008310249307,0.0134970008024155,3.99288570017571,0.364583333333333,11.6176593526411,0.017470191250919,0.07202216066482,7.20221606648199,5,66.0780953396471,0.632034947215144,4.15512465373961,33.3798920924847,10.3911504745483,395.100774129232,394.865905761719,0.280148561951859
+4050,307274,3795698,307374,3795598,49,40,7.20221606648199,0.0175461010431402,5.20372013102218,0.348484848484849,37.643802620909,0.0131100882877716,0.0581717451523546,5.81717451523546,5,57.0851872681333,0.601838235294118,2.21606648199446,16.1541908127921,5.19557523727417,395.667251586914,395.230682373047,0.448985760260384
+4051,307274,3795598,307374,3795498,50,40,8.94736842105263,0.0229449013641064,5.51093698287461,0.406822344322344,19.7576067048226,0.0187831429819265,0.0526315789473684,5.26315789473684,3,70.0844007384058,0.727598566308244,3.94736842105263,6.22362821102142,0,396.297213236491,396.034545898438,0.32908429310848
+4052,307274,3795498,307374,3795398,51,40,13.5734072022161,0.132270607863672,25.2899551378237,0.656462585034014,NA,0.0117483738175758,0,0,0,NA,NA,0,NA,NA,396.65189743042,396.238006591797,0.392450736942423
+4053,307274,3795398,307374,3795298,52,40,11.3573407202216,0.0368918021932691,11.0416830475633,0.437908496732026,19.535553133291,0.0166190451884096,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,15.1410155296326,14.6953058242798,397.49047088623,397.043579101562,0.732846911920931
+4054,307274,3795298,307374,3795198,53,40,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0140917255765724,0,0,0,NA,NA,0,NA,NA,398.791379928589,398.203430175781,0.635192996392781
+4055,307274,3795198,307374,3795098,54,40,0,NA,NA,NA,NA,0.0141683875095432,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,26.5047743320465,11.6176595687866,398.976957321167,398.877624511719,0.144513129956242
+4056,307274,3795098,307374,3794998,55,40,16.6204986149584,0.161964009628986,25.4917861567114,0.744444444444444,NA,0.0115345069877607,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,10.906587600708,0,398.739728291829,398.6455078125,0.120113390153046
+4057,307274,3794998,307374,3794898,56,40,32.409972299169,0.0631659637553046,7.0544266256236,0.292746331236897,24.8808531444528,0.0136502297889951,0.0554016620498615,5.54016620498615,3,65.1654190906652,0.726799735124397,2.49307479224377,7.30902166366577,0,398.674543380737,398.579956054688,0.111782933749768
+4058,307274,3794898,307374,3794798,57,40,46.814404432133,0.152066209040548,10.6614983404026,0.332663989290495,10.3911503722826,0.0210657741657911,0.14404432132964,14.404432132964,2,88.363230977277,0.868732046107414,13.2963988919668,0.341130834359389,0,398.824948628743,398.621398925781,0.249489166594275
+4059,307274,3794798,307374,3794698,58,40,22.1052631578947,0.0755832044935268,13.5883135503865,0.514793731112517,18.0938692761782,0.0194124957756254,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,3.70283656650119,0,399.482301712036,398.939147949219,0.63636770778854
+4060,307274,3794698,307374,3794598,59,40,41.5512465373961,0.134970008024155,19.347279318661,0.67037037037037,17.3185838960732,0.0221139923829025,0.0858725761772853,8.58725761772853,6,63.435705155782,0.474909090909091,2.49307479224377,5.27424855386057,0,400.625096638997,400.158020019531,0.726826581714743
+4061,307274,3794598,307374,3794498,60,40,21.8836565096953,0.213252612678165,29.2308608887329,0.69831223628692,NA,0.0207400985314846,0.0581717451523546,5.81717451523546,6,58.3563463851051,0.4359375,3.04709141274238,12.7081437792097,0,401.166343688965,400.772186279297,0.49078929406908
+4062,307274,3794498,307374,3794398,61,40,14.404432132964,0.140368808345121,18.1102149351989,0.775641025641026,NA,0.0222641812873504,0.0692520775623269,6.92520775623269,5,62.4346631789832,0.543377976190476,2.21606648199446,13.3269137573242,5.19557523727417,401.189013163249,400.820526123047,0.560715513755814
+4063,307274,3794398,307374,3794298,62,40,45.7894736842105,0.23484781396203,28.2420645929994,0.748059418104652,10.3911503376439,0.0219150041619478,0.107894736842105,10.7894736842105,5,73.1184691344439,0.707579838399384,5,8.32746495270148,0,401.319583892822,401.028137207031,0.409643608862647
+4064,307274,3794298,307374,3794198,63,40,65.6509695290859,0.639757838034495,34.5631668148062,0.831926863572433,NA,0.0174003308699798,0.03601108033241,3.601108033241,2,65.5172413793104,0.827107279693487,2.49307479224377,6.75141910406259,0,401.320343017578,401.080596923828,0.240307446095713
+4065,307274,3794198,307374,3794098,64,40,56.2326869806094,0.273989116289035,16.9919630909806,0.689932318104907,25.9778758441098,0.0170060832149986,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0,401.415636062622,400.99609375,0.4377098713219
+4066,307274,3794098,307374,3793998,65,40,2.77008310249307,0.0134970008024155,4.20615438237954,0.458333333333333,110.214793572251,0.0137212020065407,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,38.4273315429688,33.2679138183594,401.538724263509,401.220306396484,0.410238233211599
+4067,307274,3793998,307374,3793898,66,40,15,0.0512886030491789,12.1863507733366,0.403935185185185,17.3185838960732,0.0164069892232012,0.0236842105263158,2.36842105263158,3,50.0346252479596,0.573225516621743,1.57894736842105,20.3509407043457,11.6176595687866,401.537397384644,401.209350585938,0.37218259391442
+4068,307274,3793898,307374,3793798,67,40,13.0193905817175,0.0317179518856765,9.18287670233857,0.479807692307692,18.6060759899048,0.0213795110485836,0.0609418282548476,6.09418282548476,7,54.1581611551085,0.467551622418879,2.21606648199446,17.1010671745647,0,401.763168334961,401.368560791016,0.442954301319643
+4069,307274,3793798,307374,3793698,68,40,16.3434903047091,0.0398161523671258,9.49810383050384,0.492571548821549,23.3800882596988,0.0301056159473182,0.14404432132964,14.404432132964,5,76.7400369078818,0.671830115268536,6.37119113573407,26.7660935658675,5.19557523727417,402.292106628418,401.568054199219,0.507315256022356
+4070,307274,3793698,307374,3793598,69,40,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,0.0182588710376675,0.227146814404432,22.7146814404432,2,89.1977785220546,0.830453590409096,12.7423822714681,48.5536224551317,22.0429573059082,402.747953414917,402.388488769531,0.351585304554289
+4071,307274,3793598,307374,3793498,70,40,20.5263157894737,0.105276606258841,11.936138956882,0.393939393939394,10.3911503376439,0.0267685256333176,0.173684210526316,17.3684210526316,4,86.614554464383,0.842148989199668,15,40.4050063147689,0,402.594729105632,402.378967285156,0.333108650972253
+4072,307274,3793498,307374,3793398,71,40,16.6204986149584,0.0809820048144931,13.6485881051075,0.617788461538462,11.6176592829322,0.0177719182518009,0.132963988919668,13.2963988919668,3,81.3261043159496,0.831216395231045,9.14127423822715,16.3383308748404,0,401.805559158325,401.188629150391,0.673839338988241
+4073,307274,3793398,307374,3793298,72,40,0,NA,NA,NA,NA,0.0374024984604322,0.373961218836565,37.3961218836565,2,94.2470875251416,0.798708540182747,31.3019390581717,104.452493794759,60.5902976989746,401.031618754069,400.854736328125,0.319874869068075
+4074,307274,3793298,307374,3793198,73,40,0,NA,NA,NA,NA,0.0326994687452309,0.138504155124654,13.8504155124654,3,83.5876320110167,0.877094760733876,11.6343490304709,123.57128112793,83.1292037963867,401.11429977417,400.795562744141,0.401464608959647
+4075,307274,3793198,307374,3793098,74,40,0,NA,NA,NA,NA,0.0212330633184377,0.0342105263157895,3.42105263157895,2,70.4588795565893,0.827429609445958,3.15789473684211,80.1717722966121,64.2657165527344,400.963511149089,400.596313476562,0.483445756070444
+4076,307274,3793098,307374,3792998,75,40,16.8975069252078,0.164663409789469,18.4074029576326,0.699453551912568,NA,0.0539666565193248,0.45983379501385,45.983379501385,3,96.2929498815901,0.903200938495056,45.1523545706371,24.3740401583982,0,400.665800094604,400.541412353516,0.167440255893037
+4077,307274,3792998,307374,3792898,76,40,3.04709141274238,0.0148467008826571,5.35884782259295,0.363095238095238,20.7823008831198,0.0100696353797414,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,30.246426991054,25.977876663208,400.847844441732,400.662445068359,0.229275649395538
+4078,307274,3792898,307374,3792798,77,40,17.7285318559557,0.0345523220541837,9.60572972547392,0.38718954248366,14.5476105454427,0.0321281786202331,0.166204986149584,16.6204986149584,3,86.7164177446866,0.803954766164069,13.5734072022161,15.4370726585388,0,401.267837524414,401.04931640625,0.229677008333021
+4079,307274,3792798,307374,3792698,78,40,17.8947368421053,0.0917796054564255,11.2102508651174,0.364427860696517,85.6876208779637,0.0297259133333251,0.210526315789474,21.0526315789474,4,83.5527891078541,0.74131455399061,8.42105263157895,18.8149081230164,0,401.602264404297,401.393707275391,0.300358518825886
+4080,307274,3792698,307374,3792598,79,40,35.7340720221607,0.17411131035116,17.2983107947234,0.81519206043073,34.8529778487965,0.0512103173402725,0.407202216066482,40.7202216066482,5,89.6984129626833,0.805597053816489,21.3296398891967,9.30546226306837,0,402.38275718689,401.878326416016,0.545481326756963
+4081,307274,3792598,307374,3792498,80,40,2.21606648199446,0.0215952012838648,6.03059484748078,0.5,NA,0.0358213114876615,0.166204986149584,16.6204986149584,4,82.8450351609494,0.792422693585484,10.5263157894737,36.778799756368,0,402.938008626302,402.645782470703,0.558130183506182
+4082,307274,3792498,307374,3792398,81,40,20.2216066481994,0.197056211715266,26.7561967631371,0.771689497716895,NA,0.0271530757807371,0.149584487534626,14.9584487534626,2,90.2018895771101,0.797695352176806,14.6814404432133,13.9360490198489,0,404.377935409546,403.055358886719,1.0862989232679
+4083,307274,3792398,307374,3792298,82,40,0,NA,NA,NA,NA,0.00815730027839699,0,0,0,NA,NA,0,NA,NA,405.087066650391,404.621887207031,0.527155648542865
+4084,307274,3792298,307374,3792198,83,40,0,NA,NA,NA,NA,0.0205493455673239,0.0941828254847645,9.41828254847645,4,74.7607360381312,0.783147662734819,6.09418282548476,93.5704828150132,46.7601776123047,404.422105789185,403.826416015625,0.647095674255983
+4085,307274,3792198,307374,3792098,84,40,31.5789473684211,0.153865809147537,13.3922799259082,0.378318584070796,21.4219052194909,0.0482487040844364,0.493074792243767,49.3074792243767,3,93.6961018901025,0.808128622917601,35.4570637119114,11.2471408522531,0,403.908132553101,403.72265625,0.311042505127522
+4086,307274,3792098,307374,3791998,85,40,19.1135734072022,0.186258611073334,17.8660841980338,0.823671497584541,NA,0.0418710924423067,0.321329639889197,32.1329639889197,5,89.8718867304472,0.761438289601555,23.5457063711911,15.8663886621081,0,404.276730855306,403.866149902344,0.484225161967528
+4087,307274,3791998,307374,3791898,86,40,17.6315789473684,0.045214952688092,6.63305231475231,0.300318761384335,25.5321661775466,0.0498254564479411,0.394736842105263,39.4736842105263,4,91.8609840741695,0.783715415019763,25,11.9987967141469,0,405.241176605225,404.159729003906,1.3080881115684
+4088,307274,3791898,307374,3791798,87,40,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,0.0209727441100581,0.0415512465373961,4.15512465373961,3,67.472708805711,0.620599054125066,3.32409972299169,54.9785530090332,11.6176595687866,407.7140528361,405.772094726562,1.79887063107882
+4089,307274,3791798,307374,3791698,88,40,0,NA,NA,NA,NA,0.0244612308454728,0.0415512465373961,4.15512465373961,4,53.9950768485821,0.573173935890699,1.93905817174515,60.6642748514811,51.955753326416,408.079280853271,406.552429199219,1.23351587230767
+4090,307274,3791698,307374,3791598,89,40,16.0664819944598,0.15656520930802,25.6215897207481,0.623563218390805,NA,0.0296868174632726,0.177285318559557,17.7285318559557,6,78.9449923408193,0.717833092833093,8.58725761772853,25.4397658929229,0,406.881810506185,406.076507568359,0.976919752796724
+4091,307274,3791598,307374,3791498,90,40,41.3157894736842,0.141268608398616,19.4872905296929,0.639267916468913,12.4040507292139,0.0420600280796766,0.363157894736842,36.3157894736842,5,90.6113471215741,0.694674012855831,24.4736842105263,3.15664202234019,0,406.171264648438,405.447875976562,0.755099455646878
+4092,307274,3791498,307374,3791398,91,40,34.3490304709141,0.167362809949952,15.6124438245076,0.533333333333333,15.5867255064659,0.0596693070025578,0.601108033240997,60.1108033240997,2,98.0894038082256,0.882099147414741,59.8337950138504,5.34577169506231,0,405.671035766602,405.293212890625,0.577155457795359
+4093,307274,3791398,307374,3791298,92,40,45.983379501385,0.224050213320097,18.2994888058602,0.394444444444444,10.3911504415599,0.0542573184102265,0.418282548476454,41.8282548476454,1,96.9655662685266,0.857263194086299,41.8282548476454,1.98215320094532,0,405.781343460083,405.321685791016,0.631093732161404
+4094,307274,3791298,307374,3791198,93,40,54.5706371191136,0.531781831615171,41.0326873275163,0.818950930626058,NA,0.0705594542063273,0.614958448753463,61.4958448753463,1,98.4711305282964,0.786709762624683,61.4958448753463,2.65224519506231,0,406.719530741374,405.845916748047,0.949032250525634
+4095,307274,3791198,307374,3791098,94,40,60.5263157894737,0.620862036911113,38.3450534026642,0.817391304347826,NA,0.0707217287940071,0.752631578947368,75.2631578947368,2,98.7869157553622,0.752036700150281,74.4736842105263,2.62634093277938,0,407.546834945679,406.81005859375,0.802522152317133
+4096,307274,3791098,307374,3790998,95,40,60.1108033240997,0.292884917412417,26.7273406162158,0.738971280602637,10.3911503376439,0.0547533915670678,0.598337950138504,59.8337950138504,2,98.1042488981099,0.845170698232973,59.5567867036011,2.76077999009026,0,406.928454081217,405.934539794922,1.06257779763007
+4097,307274,3790998,307374,3790898,96,40,37.6731301939058,0.0917796054564255,22.1088359330117,0.608568218954248,13.1564825462828,0.0420502451260954,0.28808864265928,28.808864265928,6,86.6397451513043,0.69953598701596,12.7423822714681,3.11303423459713,0,406.850904464722,406.318023681641,0.506715471108048
+4098,307274,3790898,307374,3790798,97,40,37.6731301939058,0.061186403637617,10.4857512610571,0.52861573694907,15.5867256190415,0.0468570868362698,0.385041551246537,38.5041551246537,5,89.7464642549933,0.763123359580053,19.3905817174515,5.73919871213625,0,406.973398844401,406.668701171875,0.408019747349144
+4099,307274,3790798,307374,3790698,98,40,35.2631578947368,0.0602866035841226,12.0439485480199,0.460709198209198,18.9221905984593,0.0291402814068102,0.0763157894736842,7.63157894736842,7,57.7833305527928,0.53931017760805,2.10526315789474,6.10479455158628,0,406.82642364502,406.638305664062,0.2507590766186
+4100,307274,3790698,307374,3790598,99,40,12.4653739612188,0.0404910024072465,9.04116418407306,0.603143274853801,32.895173958525,0.0236898623665162,0.0906432748538012,9.06432748538012,4,71.0714940110322,0.692090032154341,5.55555555555556,12.8341870615559,0,406.995822906494,406.730377197266,0.272402410250761
+4101,307374,3800598,307474,3800498,0,41,53.9473684210526,0.27668851644942,27.9144420159664,0.808392509050404,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.465309143066,383.214752197266,0.288636747900302
+4102,307374,3800498,307474,3800398,1,41,1.25,0.0134970008024107,6.23469026493374,0.266666666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.866360134549,383.664154052734,0.293301735408628
+4103,307374,3800398,307474,3800298,2,41,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.269444783529,383.979553222656,0.319927187964939
+4104,307374,3800298,307474,3800198,3,41,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.695187038845,384.487670898438,0.309825742000755
+4105,307374,3800198,307474,3800098,4,41,13.9473684210526,0.0476894028351846,8.72695921922815,0.668116458704694,12.94068145587,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.922266642253,384.753662109375,0.207331476607489
+4106,307374,3800098,307474,3799998,5,41,74,0.399511223751358,20.7862826498298,0.543704967766401,10.3911503376439,0.0356353054587089,0.2875,28.75,1,92.574457886421,0.946018893387314,28.75,1.90072519882866,0,385.139641655816,385.016571044922,0.260580110341557
+4107,307374,3799998,307474,3799898,6,41,93.6842105263158,0.960986457131644,38.3990881348616,0.913857677902622,NA,-0.00285610730583549,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,386.203122456868,385.415954589844,0.861782398520171
+4108,307374,3799898,307474,3799798,7,41,70.2631578947368,0.720739842848733,35.3897317476427,0.903870162297129,NA,0.00217374366198591,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.899861650965149,7.10526315789474,0,0,387.460978190104,387.002807617188,0.91473956061664
+4109,307374,3799798,307474,3799698,8,41,36.0526315789474,0.369817821986054,27.0067551443162,0.862530413625304,NA,0.0127734183763287,0,0,0,NA,NA,0,NA,NA,389.039807637533,388.238098144531,0.900685271100289
+4110,307374,3799698,307474,3799598,9,41,9.25,0.0998778059378394,30.130981202288,0.576576576576577,NA,0.0105478486878019,0.035,3.5,6,41.6154719201132,0.430051813471503,1.25,13.9784387860979,0,390.001681857639,389.798248291016,0.348834940216463
+4111,307374,3799598,307474,3799498,10,41,78.6842105263158,0.807120647984162,35.8553330056077,0.915830546265329,NA,-0.00628343420678807,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,13.9665635426839,11.6176595687866,390.374557495117,390.210906982422,0.18865306253015
+4112,307374,3799498,307474,3799398,11,41,45.2631578947368,0.154765609200976,17.3415730763828,0.744604222326995,15.273487641261,0.00808794299582587,0.05,5,2,71.1008875303975,0.673321234119782,2.89473684210526,4.10176992416382,0,390.767649332682,390.592376708984,0.24175606514442
+4113,307374,3799398,307474,3799298,12,41,23.9473684210526,0.245645414603875,27.520905971767,0.791208791208791,NA,0.0012635355192132,0.0473684210526316,4.73684210526316,3,68.0816878993353,0.650092081031307,3.42105263157895,11.2215921348996,5.19557523727417,391.237162272135,390.941925048828,0.49504039284538
+4114,307374,3799298,307474,3799198,13,41,21.25,0.0764830045469942,12.797558147134,0.52093545751634,13.1717378724892,0.0119233388291832,0.02,2,1,68.0470115164975,1,2,2.8667973279953,0,391.886962890625,391.248687744141,0.934738604882402
+4115,307374,3799198,307474,3799098,14,41,7.63157894736842,0.0391413023269911,8.43632160893483,0.422839506172839,41.8880662648123,0.00951231325022227,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,36.369026184082,36.369026184082,392.48777601454,391.806518554688,1.00382710115692
+4116,307374,3799098,307474,3798998,15,41,9.47368421052632,0.0485892028886786,9.33007039019526,0.666666666666667,15.5867255064659,0.00767390193233089,0.0289473684210526,2.89473684210526,2,66.1021861153273,0.862691960252936,2.63157894736842,2.3616251078519,0,392.55653889974,392.205383300781,0.523468919078711
+4117,307374,3798998,307474,3798898,16,41,29.7368421052632,0.305032218134483,21.1704868187705,0.874631268436578,NA,0.012404977235402,0.0263157894736842,2.63157894736842,4,40.6397923913444,0.446985446985447,0.789473684210526,19.0556130409241,14.6953058242798,392.526814778646,392.391235351562,0.181810107848865
+4118,307374,3798898,307474,3798798,17,41,63.5,0.342823820381233,20.4279572572429,0.748537078412597,10.3911504415562,0.0138814144553601,0.125,12.5,4,83.3890601139854,0.771428571428571,10,14.4486483860016,0,392.752034505208,392.599822998047,0.160568809239916
+4119,307374,3798798,307474,3798698,18,41,87.1052631578947,0.893501453119591,39.4948961208995,0.892245720040282,NA,0.0479972666513181,0.431578947368421,43.1578947368421,3,95.3234869383425,0.784461613931813,38.1578947368421,1.7053027007638,0,392.981594509549,392.867919921875,0.151164155620839
+4120,307374,3798698,307474,3798598,19,41,100,1.02577206098322,38.731321195904,0.932456140350877,NA,-0.0279606568571915,0,0,0,NA,NA,0,NA,NA,393.085047403971,393.048919677734,0.07099582659617
+4121,307374,3798598,307474,3798498,20,41,97.3684210526316,0.499389029689197,21.6067768447583,0.589025500910747,10.3911503376439,-0.00121404979981889,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,0,0,393.287180582682,393.102172851562,0.356777065305599
+4122,307374,3798498,307474,3798398,21,41,99.25,1.07166186371141,39.6336727544585,0.92863140218304,NA,0.0575562356133014,0.7425,74.25,1,99.1551699664667,0.659586293137885,74.25,0.0174935193174214,0,393.736554463704,393.512084960938,0.375366122188408
+4123,307374,3798398,307474,3798298,22,41,48.1578947368421,0.164663409789411,16.2062322316827,0.755029239766082,13.1717378724892,0.00170410018262804,0.0605263157894737,6.05263157894737,3,69.4438515715367,0.763460939931528,2.89473684210526,0,0,393.509897867839,393.422393798828,0.158474560373069
+4124,307374,3798298,307474,3798198,23,41,30.5263157894737,0.0391413023269911,6.24292622629668,0.354477969348659,15.5025872647624,-0.0561313417014102,0,0,0,NA,NA,0,NA,NA,393.402816772461,393.372497558594,0.0454126616796827
+4125,307374,3798198,307474,3798098,24,41,75.2631578947368,0.772028445897894,33.741951017601,0.913170163170163,NA,-0.00813823748352374,0.0447368421052632,4.47368421052632,2,72.8666935568241,0.706887052341598,3.68421052631579,0,0,393.43162367079,393.378631591797,0.0851604796653162
+4126,307374,3798098,307474,3797998,25,41,79.25,0.285236616957614,14.4181154054642,0.446677384780279,17.3185840692604,0.0315075173057267,0.175,17.5,4,89.0477711054342,0.78319783197832,16,0.148445006779262,0,393.551973978678,393.447631835938,0.122295318425012
+4127,307374,3797998,307474,3797898,26,41,74.7368421052632,0.76662964557693,34.0057097908158,0.915492957746479,NA,0.025168390969032,0.168421052631579,16.8421052631579,2,91.4868625608452,0.76378842676311,16.5789473684211,0.487085171043873,0,393.767382303874,393.628204345703,0.140171741886119
+4128,307374,3797898,307474,3797798,27,41,30.5263157894737,0.0626260837231858,8.94420220318931,0.469713261648745,26.8413305807208,0.00115356097756224,0.0236842105263158,2.36842105263158,3,47.9123996989228,0.487870619946092,1.05263157894737,20.4039900567796,7.34765291213989,394.106268988715,393.932891845703,0.342962640359212
+4129,307374,3797798,307474,3797698,28,41,17.6315789473684,0.045214952688076,8.83557835861514,0.436388140161725,19.9836951982797,-0.000858634275745747,0.0236842105263158,2.36842105263158,3,55.1455442633031,0.487870619946092,1.84210526315789,29.7315094206068,14.6953058242798,394.691818237305,394.325500488281,0.386824307858504
+4130,307374,3797698,307474,3797598,29,41,17.5,0.0944790056168752,13.1570721252134,0.386473429951691,15.5867256623344,-0.00141871553343663,0.0275,2.75,2,65.3006717904942,0.588688946015424,2.25,11.5884198275479,0,395.107638888889,394.983856201172,0.171179911076567
+4131,307374,3797598,307474,3797498,30,41,72.1052631578947,0.739635643972108,33.9784971780295,0.904501216545012,NA,0.0403272567465472,0.344736842105263,34.4736842105263,4,88.5475636782894,0.680731293374334,15.2631578947368,6.64032449431092,0,393.687222798665,390.326232910156,2.49912668078169
+4132,307374,3797498,307474,3797398,31,41,31.5789473684211,0.161964009628929,21.7267257351037,0.736458333333333,10.3911503376439,0.027418791553799,0.213157894736842,21.3157894736842,5,87.8855703742556,0.726402824228911,17.3684210526316,9.23997522872171,0,392.943545871311,390.128784179688,4.23360080037083
+4133,307374,3797398,307474,3797298,32,41,33.6842105263158,0.172761610270857,26.7078323958191,0.573456790123457,51.9557516882196,-0.0569691324790352,0,0,0,NA,NA,0,NA,NA,399.20485941569,397.284973144531,1.86372685466745
+4134,307374,3797298,307474,3797198,33,41,72.75,0.785525446700305,37.3895546827141,0.867697594501718,NA,-0.00850100111452775,0.235,23.5,2,93.7403505515181,0.891067538126362,23.25,2.14612781240585,0,399.533504909939,399.17626953125,0.413622744497965
+4135,307374,3797198,307474,3797098,34,41,48.9473684210526,0.502088429849679,31.1515663703028,0.834229390681004,NA,0.0384813112598893,0.339473684210526,33.9473684210526,1,96.1266858750166,0.748749682122574,33.9473684210526,3.67198358949765,0,399.102986653646,398.581085205078,0.546856575040163
+4136,307374,3797098,307474,3796998,35,41,15.5263157894737,0.0398161523671117,7.96114584405291,0.542027243589744,22.8589159165067,0.047597320781277,0.378947368421053,37.8947368421053,2,93.8383605580175,0.865819209039548,32.1052631578947,19.8112270600266,0,398.408555772569,398.117004394531,0.479698833175524
+4137,307374,3796998,307474,3796898,36,41,3.68421052631579,0.018895801123375,6.15005496349135,0.428571428571429,40.5787395179233,0.0387058474311695,0.328947368421053,32.8947368421053,5,85.9491124193357,0.743975123088883,13.6842105263158,31.0022104988098,5.19557523727417,398.345118204753,398.071380615234,0.473023666611861
+4138,307374,3796898,307474,3796798,37,41,0.25,0.00269940016048215,0,0,NA,0.00460504733102425,0.07,7,3,72.2019259027628,0.6415770609319,3.5,64.4277102606637,36.369026184082,398.758707682292,398.373809814453,0.576465431668986
+4139,307374,3796798,307474,3796698,38,41,6.31578947368421,0.0215952012838572,6.28927499949043,0.409722222222222,31.8075708905931,0.0514641012694866,0.457894736842105,45.7894736842105,3,95.3490077632324,0.810362036112875,38.9473684210526,21.2674990440237,0,398.875178019206,398.548095703125,0.543732357773771
+4140,307374,3796698,307474,3796598,39,41,28.6842105263158,0.147117308746277,18.5386930261847,0.534789644012945,25.9778758441098,0.0138903683342697,0.0342105263157895,3.42105263157895,3,55.4527305313092,0.539812291855889,1.31578947368421,17.3620452147264,5.19557523727417,398.869168599447,398.607482910156,0.536940720174523
+4141,307374,3796598,307474,3796498,40,41,26.5789473684211,0.272639416208697,21.2386504513206,0.854785478547855,NA,0.0374487787665873,0.263157894736842,26.3157894736842,4,85.9231445111974,0.796428571428571,16.3157894736842,26.3413301420212,0,398.8236456977,398.598327636719,0.48678146279
+4142,307374,3796498,307474,3796398,41,41,35.5263157894737,0.36441902166509,30.8951293594114,0.793827160493827,NA,0.0659242544019626,0.557894736842105,55.7894736842105,3,93.7001921133657,0.781846748851825,32.1052631578947,10.6622197560544,0,399.185389200846,398.758575439453,0.530212087778008
+4143,307374,3796398,307474,3796298,42,41,21.25,0.0573622534102456,11.0510017456076,0.391239316239316,20.7823007792002,0.0319904825667618,0.17,17,5,81.8268515860197,0.777260301711046,8.75,14.4066097736359,0,399.40808444553,399.203948974609,0.299115677396404
+4144,307374,3796298,307474,3796198,43,41,25.2631578947368,0.0863808051354287,16.191219689711,0.662962962962963,23.3545977888412,0.029245059713637,0.176315789473684,17.6315789473684,6,76.4240882851578,0.740586002566833,6.31578947368421,15.5029898330347,0,399.046208699544,398.685729980469,0.231194972984982
+4145,307374,3796198,307474,3796098,44,41,36.5789473684211,0.125072207435673,17.4942622723413,0.690732038429407,20.2337146781911,0.0246332737313711,0.1,10,6,67.6801292346228,0.682539682539683,4.21052631578947,9.33494774918807,0,398.590115017361,398.373596191406,0.385534551180284
+4146,307374,3796098,307474,3795998,45,41,35,0.0448775276680157,8.75918141135563,0.468535107944433,11.731930285906,0.0113384784440744,0.0210526315789474,2.10526315789474,2,52.703639668815,0.591397849462366,1.05263157894737,6.80536490678787,5.19557523727417,397.66995493571,396.416381835938,1.0192608290398
+4147,307374,3795998,307474,3795898,46,41,8.75,0.0944790056168752,14.5946743095502,0.695238095238095,NA,-0.00699356733503009,0,0,0,NA,NA,0,NA,NA,395.558600531684,395.047393798828,0.985444115700594
+4148,307374,3795898,307474,3795798,47,41,23.9473684210526,0.245645414603875,25.3371693348525,0.804029304029304,NA,0.0287705967838089,0.242105263157895,24.2105263157895,6,82.0959274643494,0.734502032520325,11.5789473684211,23.0260421141334,0,394.777229309082,394.694305419922,0.148841784515894
+4149,307374,3795798,307474,3795698,48,41,38.6842105263158,0.0992029558977189,11.7468052444637,0.43591426071741,10.6977776519,0.0586445273762557,0.576315789473684,57.6315789473684,2,97.4034568770321,0.774388016075996,55.5263157894737,7.42467473304435,0,394.829996744792,394.719085693359,0.193026781036989
+4150,307374,3795698,307474,3795598,49,41,46.3157894736842,0.158364809414953,18.8524690927736,0.543836805555556,12.94068145587,0.0655759716672994,0.647368421052632,64.7368421052632,2,95.8266049081707,0.753406878650227,35.5263157894737,4.55814447635558,0,395.382652282715,395.0361328125,0.4458592878938
+4151,307374,3795598,307474,3795498,50,41,32.25,0.0696445241404394,9.57986303145039,0.498825449912406,15.5867255688133,0.0350771753262598,0.28,28,3,93.1118987503202,0.869361936193619,26.5,4.44729995727539,0,396.081681993273,395.8662109375,0.257784662695272
+4152,307374,3795498,307474,3795398,51,41,4.21052631578947,0.0215952012838572,5.98322642591768,0.518518518518519,68.3371225775169,0.0111238217701516,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,16.7722086906433,11.6176595687866,396.521191914876,396.179382324219,0.580622612844601
+4153,307374,3795398,307474,3795298,52,41,1.05263157894737,0.0107976006419286,3.67382645240773,0.416666666666667,NA,0.0145439046465885,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,23.4988468488057,10.3911504745483,398.214745415582,397.240997314453,1.26129371130629
+4154,307374,3795298,307474,3795198,53,41,0.263157894736842,0.00269940016048215,0,0,NA,0.0162072658404022,0.0315789473684211,3.15789473684211,2,64.5097418171392,0.696291560102302,2.36842105263158,25.1402668555578,7.34765291213989,399.459442138672,398.814849853516,0.552992850404549
+4155,307374,3795198,307474,3795098,54,41,25.5,0.13766940818459,17.1188086148172,0.56072695035461,11.6176593526379,0.0230741265141842,0.12,12,6,75.3923113064842,0.681263858093126,6.75,12.8915173808734,0,399.198277791341,398.876251220703,0.388562237708191
+4156,307374,3795098,307474,3794998,55,41,6.31578947368421,0.0647856038515715,22.9118964983439,0.465277777777778,NA,0.0165980358001099,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,12.7515151977539,5.19557523727417,398.668690999349,398.56591796875,0.18905286919241
+4157,307374,3794998,307474,3794898,56,41,37.6315789473684,0.193007111474474,20.8545207060996,0.61489898989899,10.3911504415562,0.0327018921800405,0.202631578947368,20.2631578947368,4,88.7988272043381,0.723354688410017,17.1052631578947,6.93574886817437,0,398.505785624186,398.451507568359,0.0862995232698481
+4158,307374,3794898,307474,3794798,57,41,69.7368421052632,0.357670521263885,18.7157247755043,0.505703422053232,14.6953058096309,0.0331750893403966,0.302631578947368,30.2631578947368,2,95.1389573441151,0.827648766328012,30,1.14043511929719,0,398.549940321181,398.468109130859,0.1496897142632
+4159,307374,3794798,307474,3794698,58,41,33,0.178160410591822,24.2839154220257,0.752163742690058,31.1734513246687,0.0136264891406609,0.005,0.5,1,30.8308651382582,1,0.5,0,0,398.931358337402,398.612609863281,0.521394321460323
+4160,307374,3794698,307474,3794598,59,41,27.8947368421053,0.0476894028351846,8.37818799832082,0.530033416875522,16.8728740476557,0.0180932261052811,0.0657894736842105,6.57894736842105,4,73.0577560424384,0.785915492957747,5.52631578947368,10.9366416931152,0,400.071190728082,399.583526611328,0.729068603804496
+4161,307374,3794598,307474,3794498,60,41,42.6315789473684,0.218651412999054,20.9010402323476,0.798808018782734,10.3911504415562,0.0159825144778695,0.0789473684210526,7.89473684210526,5,70.5949558778534,0.579008746355685,4.47368421052632,5.7281155427297,0,400.367426554362,399.956359863281,0.569758065536929
+4162,307374,3794498,307474,3794398,61,41,31.0526315789474,0.318529218936893,26.3238340849937,0.860169491525424,NA,0.0160951016157852,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,15.5867252349854,15.5867252349854,400.160817464193,399.694519042969,0.736073261340954
+4163,307374,3794398,307474,3794298,62,41,21.25,0.229449013640983,27.828208460465,0.782352941176471,NA,0.0211849882302522,0.055,5.5,4,71.9954190123877,0.595393713040772,4.25,8.14257840676741,5.19557523727417,400.479031880697,399.704193115234,0.718371722340479
+4164,307374,3794298,307474,3794198,63,41,58.9473684210526,0.604665635948001,35.5414079497079,0.830357142857143,NA,0.0108695756679337,0.0289473684210526,2.89473684210526,3,55.638725658509,0.519421860885276,1.84210526315789,6.282188762318,0,400.80958726671,400.626800537109,0.287946149968539
+4165,307374,3794198,307474,3794098,64,41,18.4210526315789,0.0269940016048215,5.79814630312839,0.414340448823207,14.3431685671411,0.0227523925953918,0.147368421052632,14.7368421052632,4,85.2641700560135,0.818633066055746,12.3684210526316,23.3615463376045,5.19557523727417,400.772397359212,400.633392333984,0.251433019005921
+4166,307374,3794098,307474,3793998,65,41,17.6315789473684,0.180859810752304,28.0339541538052,0.718905472636816,NA,0.0223563531901355,0.0973684210526316,9.73684210526316,7,63.9344805068453,0.582277876021603,4.21052631578947,21.4444514351922,10.3911504745483,400.938652886285,400.747741699219,0.278613740888997
+4167,307374,3793998,307474,3793898,66,41,15.25,0.0823317048947055,18.6834701723494,0.573671497584541,11.6176592829314,0.0187614905180499,0.05,5,4,66.3651946592893,0.66044142614601,3.5,24.4873568058014,10.3911504745483,401.204511006673,401.152954101562,0.135235066448266
+4168,307374,3793898,307474,3793798,67,41,6.05263157894737,0.0310431018455447,8.74913300944219,0.357142857142857,25.9778758441098,0.0213232214959518,0.136842105263158,13.6842105263158,2,88.7637196663733,0.895861879967114,13.1578947368421,23.1375000843635,5.19557523727417,401.233710394965,401.160369873047,0.158334454091758
+4169,307374,3793798,307474,3793698,68,41,3.94736842105263,0.0202455012036161,4.44465783288787,0.303571428571429,20.7823006752878,0.0210784824732974,0.0526315789473684,5.26315789473684,3,68.1224489547185,0.659498207885305,3.42105263157895,8.30134189128876,0,401.763282775879,401.3525390625,0.478354738612296
+4170,307374,3793698,307474,3793598,69,41,0,NA,NA,NA,NA,0.00918721245493783,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,99.2841663360596,58.0882949829102,402.301953633626,402.146087646484,0.299678230989628
+4171,307374,3793598,307474,3793498,70,41,3.5,0.0377916022467501,9.92121279396729,0.55952380952381,NA,0.0115282566177291,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,10.681995305148,0,402.398345947266,402.326568603516,0.186775774643422
+4172,307374,3793498,307474,3793398,71,41,4.73684210526316,0.0161964009628929,5.45523702653076,0.375420875420875,12.1230087965261,0.026524760769864,0.05,5,6,49.8533680313365,0.491833030852995,1.84210526315789,27.6793048256322,10.3911504745483,402.588806152344,401.936645507812,0.860338102669213
+4173,307374,3793398,307474,3793298,72,41,0,NA,NA,NA,NA,0.0261719254351766,0.0526315789473684,5.26315789473684,4,64.7972302655916,0.625448028673835,3.42105263157895,84.4922967910767,58.7812232971191,402.361863878038,401.363494873047,1.45327276507811
+4174,307374,3793298,307474,3793198,73,41,8.42105263157895,0.0431904025677144,8.18451419111192,0.480842911877395,11.6176592829313,0.0243067603176697,0.134210526315789,13.4210526315789,3,88.0617776744757,0.853963595709744,12.8947368421053,14.7118249313504,0,402.084500630697,401.354125976562,0.879232861306294
+4175,307374,3793198,307474,3793098,74,41,0,NA,NA,NA,NA,0.0216111796547193,0.025,2.5,3,51.4230928509252,0.526627218934911,1.25,66.1281044006348,22.0429573059082,401.449137369792,401.079742431641,0.643770561508473
+4176,307374,3793098,307474,3792998,75,41,29.4736842105263,0.302332817974001,24.9923230872151,0.822916666666667,NA,0.0434597682156125,0.310526315789474,31.0526315789474,4,90.3732125902415,0.783120496539916,20.5263157894737,16.7883896989337,0,400.867474873861,400.756134033203,0.153795558352082
+4177,307374,3792998,307474,3792898,76,41,2.10526315789474,0.0107976006419286,2.94861038191906,0.226190476190476,47.0479346325716,0.0341811799227894,0.268421052631579,26.8421052631579,3,92.176158196132,0.858080748515941,24.7368421052632,18.292634748945,0,400.800052218967,400.759460449219,0.13201491460709
+4178,307374,3792898,307474,3792798,77,41,0,NA,NA,NA,NA,0.0195764504971713,0.115789473684211,11.5789473684211,4,80.345258415328,0.831885456885457,9.47368421052632,71.054160378196,46.7601776123047,401.122614542643,400.833709716797,0.291399278314364
+4179,307374,3792798,307474,3792698,78,41,29.25,0.105276606258804,7.86007606943253,0.272946859903382,42.3458268006758,0.0536356529926161,0.4825,48.25,4,92.0174162506683,0.778695382290233,30,12.8522163129223,0,401.491689046224,401.323120117188,0.295445311869869
+4180,307374,3792698,307474,3792598,79,41,31.0526315789474,0.159264609468447,21.8967483428072,0.732566815900149,25.9778758441098,0.0649639173334244,0.618421052631579,61.8421052631579,2,97.8710217947327,0.779121828607336,59.7368421052632,7.27052227994229,0,402.639432271322,401.8134765625,0.844408206427852
+4181,307374,3792598,307474,3792498,80,41,0,NA,NA,NA,NA,0.0456224869152433,0.331578947368421,33.1578947368421,5,92.9925370984923,0.810542241171819,30.7894736842105,45.986041931879,20.7823009490967,404.152520073785,403.084716796875,1.20289895219
+4182,307374,3792498,307474,3792398,81,41,32.8947368421053,0.0843562550150671,10.0856941540934,0.528669898239824,10.3911503896001,0.0481076069544901,0.428947368421053,42.8947368421053,3,94.1358559256258,0.854070660522273,36.8421052631579,8.76665321303292,0,405.389142354329,404.520782470703,0.604454048743009
+4183,307374,3792398,307474,3792298,82,41,19.75,0.106626306339045,12.5217038471506,0.353632478632479,15.5867256623344,0.00368352126127775,0.0225,2.25,2,60.8730533773843,0.829497016197783,2,52.5928911632962,10.3911504745483,405.813317192925,405.426422119141,0.502886840691697
+4184,307374,3792298,307474,3792198,83,41,6.05263157894737,0.0310431018455447,8.74364328223384,0.472470238095238,10.3911503376439,0.0308931716008069,0.273684210526316,27.3684210526316,2,91.459289345353,0.852747423079904,20.5263157894737,53.5648056773039,7.34765291213989,405.406901041667,404.683990478516,0.733766776506783
+4185,307374,3792198,307474,3792098,84,41,22.8947368421053,0.117423906980973,13.6448228346315,0.396317829457364,10.3911503376439,0.0425200478884539,0.386842105263158,38.6842105263158,3,92.7393806205764,0.884806228760151,31.5789473684211,14.6825262121603,0,404.693720499674,404.266723632812,0.682151902412168
+4186,307374,3792098,307474,3791998,85,41,8.15789473684211,0.0836814049749466,11.1137905139365,0.768817204301075,NA,0.0421529970096584,0.286842105263158,28.6842105263158,5,85.7411667483478,0.72952216831813,12.1052631578947,32.7965233129099,0,405.078135172526,404.551116943359,0.420724072981311
+4187,307374,3791998,307474,3791898,86,41,6.5,0.0701844041725358,11.0086171107622,0.711538461538462,NA,0.0358026084407902,0.2275,22.75,4,84.1924935349652,0.79224100043949,10.75,37.892234645047,0,405.690678914388,405.074951171875,1.07670863613158
+4188,307374,3791898,307474,3791798,87,41,0,NA,NA,NA,NA,0.0227483726725232,0.05,5,7,51.5008897340223,0.528130671506352,2.89473684210526,66.9889958030299,39.5683212280273,408.343539767795,407.196960449219,1.28347865590402
+4189,307374,3791798,307474,3791698,88,41,0.789473684210526,0.00404910024072322,1.29889380519453,0.0833333333333333,23.2353187052757,0.0255929024791648,0.0736842105263158,7.36842105263158,3,79.5357936154966,0.880050505050505,6.84210526315789,19.0029708147049,5.19557523727417,408.771746317546,408.467010498047,0.356879798141799
+4190,307374,3791698,307474,3791598,89,41,28.4210526315789,0.145767608666036,15.8229789605563,0.497619047619048,58.0882968607784,0.0300389993252266,0.192105263157895,19.2105263157895,2,90.8887974405616,0.874287459283388,17.6315789473684,3.26630315388719,0,408.172827826606,407.800598144531,0.638432576206277
+4191,307374,3791598,307474,3791498,90,41,29,0.0626260837231858,10.3470680527985,0.364757541046201,22.27237212941,0.0423326928617098,0.36,36,6,88.4430140914376,0.721827651515152,23.5,5.84520302216212,0,407.263069152832,406.837219238281,0.584184543009721
+4192,307374,3791498,307474,3791398,91,41,36.5789473684211,0.187608311153509,19.3277899142719,0.511695906432749,21.4219052194905,0.0537955569658631,0.602631578947368,60.2631578947368,3,97.9846952642869,0.799618468601207,59.7368421052632,3.9373001656678,0,406.792005750868,406.458190917969,0.525836186897818
+4193,307374,3791398,307474,3791298,92,41,57.3684210526316,0.196156411661703,21.8434861259575,0.635615798251668,14.6725397935212,0.0686203488847241,0.757894736842105,75.7894736842105,2,98.7276391104261,0.611342852558961,74.2105263157895,2.89857240517934,0,406.907030741374,406.508392333984,0.65265720593784
+4194,307374,3791298,307474,3791198,93,41,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0145951851605021,0.552631578947368,55.2631578947368,1,98.1334860201423,0.851361516473597,55.2631578947368,0,0,407.435468885634,407.073150634766,0.61619028176091
+4195,307374,3791198,307474,3791098,94,41,35.5,0.0958287056971162,16.1696813571731,0.493016735679779,24.6789820519043,0.0644361044176912,0.66,66,1,98.7846583695088,0.845513963161022,66,4.78706605326046,0,408.138440450033,407.778015136719,0.445633103015714
+4196,307374,3791098,307474,3790998,95,41,51.3157894736842,0.263191515647009,27.2646118980037,0.804012345679012,10.3911503376439,0.0869548498199468,0.889473684210526,88.9473684210526,1,99.6738791833175,0.872568745808183,88.9473684210526,5.97080727159624,0,407.891292995877,407.449645996094,0.616020648043711
+4197,307374,3790998,307474,3790898,96,41,21.8421052631579,0.037341702220003,9.74586822855009,0.495454545454545,18.5933494406101,0.0238553356559829,0.0631578947368421,6.31578947368421,8,47.4223989758551,0.410112359550562,1.57894736842105,4.91734713315964,0,407.478912353516,407.197387695312,0.286365264378843
+4198,307374,3790898,307474,3790798,97,41,58.1578947368421,0.298283717733277,27.9632951199555,0.7600697292863,16.4298513045212,0.0365971856819287,0.244736842105263,24.4736842105263,9,75.8184046157502,0.62512069182654,6.57894736842105,2.71230124914518,0,407.568111843533,407.473205566406,0.150870223914583
+4199,307374,3790798,307474,3790698,98,41,26.75,0.144417908585795,18.8637020283395,0.503438511326861,36.3690265454468,0.0264976150574148,0.145,14.5,4,83.6526026130577,0.719298245614035,10.75,7.16999672199118,0,407.353029886882,407.011413574219,0.345216198891496
+4200,307374,3790698,307474,3790598,99,41,50.5263157894737,0.129571207703143,17.3857352522321,0.607679875303422,14.6953058096309,0.0450313067538243,0.363888888888889,36.3888888888889,3,93.5703053647054,0.776360746195027,28.8888888888889,1.90485196805182,0,407.135625203451,406.950744628906,0.260212651051534
+4201,307474,3800598,307574,3800498,0,42,54.8476454293629,0.178160410591885,13.9201304740363,0.636111111111111,17.3185838960732,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.698263168335,383.408081054688,0.350933377712569
+4202,307474,3800498,307574,3800398,1,42,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.243535359701,383.947021484375,0.390037619261125
+4203,307474,3800398,307574,3800298,2,42,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.72434425354,384.320281982422,0.398487368875421
+4204,307474,3800298,307574,3800198,3,42,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.207328796387,384.784118652344,0.465514428290086
+4205,307474,3800198,307574,3800098,4,42,13.5734072022161,0.132270607863672,14.4892212405234,0.802721088435374,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.410535812378,385.106079101562,0.45252356833525
+4206,307474,3800098,307574,3799998,5,42,43.9473684210526,0.450799826800678,31.7763072302548,0.852295409181637,NA,0.00695269501044861,0.0460526315789474,4.60526315789474,1,67.6942841910263,1,4.60526315789474,8.16447537285941,5.19557523727417,385.447252909342,385.138793945312,0.530931475211232
+4207,307474,3799998,307574,3799898,6,42,26.8698060941828,0.261841815566861,23.6897147911023,0.835051546391753,NA,0.00889073470550764,0.0498614958448753,4.98614958448753,4,61.6833410175775,0.571212612028939,2.77008310249307,30.1216079923842,7.34765291213989,386.055725097656,385.40478515625,0.987785374302087
+4208,307474,3799898,307574,3799798,7,42,24.9307479224377,0.12147300722174,17.1684243620126,0.533730158730159,47.047934632588,0.00716051500505243,0.0526315789473684,5.26315789473684,3,67.2084604434244,0.636015325670498,3.32409972299169,4.70158140282882,0,387.716478983561,386.668395996094,1.42109907459036
+4209,307474,3799798,307574,3799698,8,42,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0328201329839607,0.362880886426593,36.2880886426593,3,92.6994496374806,0.783281790067309,27.1468144044321,0,0,389.772722244263,388.934631347656,0.871153183899461
+4210,307474,3799698,307574,3799598,9,42,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0381723375961883,0.326315789473684,32.6315789473684,4,89.694567153857,0.775694444444444,17.1052631578947,0,0,390.439412434896,390.092590332031,0.344381002055136
+4211,307474,3799598,307574,3799498,10,42,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.00687645176089229,0.0637119113573407,6.37119113573407,1,83.5457007384199,0.821992110453649,6.37119113573407,0,0,390.583969116211,390.317962646484,0.245500621909478
+4212,307474,3799498,307574,3799398,11,42,92.5207756232687,0.901599653601356,36.4701087309457,0.923652694610778,NA,0.00218812511756825,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,390.72269821167,390.591827392578,0.119366529799692
+4213,307474,3799398,307574,3799298,12,42,88.0886426592798,0.858409251033626,35.4536749260132,0.926100628930818,NA,-0.0103152242795999,0.0249307479224377,2.49307479224377,2,58.3321631610904,0.743607954545455,1.93905817174515,0,0,390.82741800944,390.749725341797,0.137644945351639
+4214,307474,3799298,307574,3799198,13,42,82.1052631578947,0.842212850070728,38.3414587393008,0.855235042735043,NA,-0.0143166526158223,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,3.46371682484945,0,390.950183868408,390.749053955078,0.301462371664683
+4215,307474,3799198,307574,3799098,14,42,82.5484764542936,0.804421247823964,37.7105741569251,0.879753914988814,NA,-0.00276846106486255,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,6.92743364969889,0,391.299547831217,390.933776855469,0.499647877370187
+4216,307474,3799098,307574,3798998,15,42,79.7783933518006,0.777427246219133,34.5324299475039,0.899884259259259,NA,0.0486972668173411,0.371191135734072,37.1191135734072,2,93.3689238873952,0.856611540405864,29.0858725761773,3.32797232670571,0,392.013107299805,391.547790527344,0.377948325789539
+4217,307474,3798998,307574,3798898,16,42,6.64819944598338,0.0647856038515944,10.7971836149706,0.701388888888889,NA,0.0546313818441601,0.578947368421053,57.8947368421053,1,98.2541251036359,0.981683804627249,57.8947368421053,41.7894039792878,11.6176595687866,392.377146402995,392.290618896484,0.140221284695541
+4218,307474,3798898,307574,3798798,17,42,20,0.0512886030491789,8.00987610895242,0.414290935672515,30.3981729265893,0.0232040235523815,0.281578947368421,28.1578947368421,2,92.966299976341,0.942302947484295,26.8421052631579,29.2147017773067,10.3911504745483,392.583362579346,392.459594726562,0.138072823304655
+4219,307474,3798798,307574,3798698,18,42,75.3462603878116,0.367118421825702,30.2764058773662,0.685903250188964,10.3911504415599,0.000313242310210455,0.03601108033241,3.601108033241,3,58.9000212524148,0.596583652618135,1.93905817174515,2.39795780181885,0,392.765719095866,392.670013427734,0.148018051467385
+4220,307474,3798698,307574,3798598,19,42,72.5761772853186,0.235747614015524,21.6347710857196,0.66962481962482,10.3911504415599,-0.00592423418094057,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0,392.92094039917,392.824829101562,0.108849979268654
+4221,307474,3798598,307574,3798498,20,42,74.792243767313,0.182209510832609,15.5383507180194,0.596820175438596,10.3911503896019,0.00927651489178376,0.152354570637119,15.2354570637119,4,81.4913095943704,0.726797385620915,9.41828254847645,2.25095246921886,0,392.964279174805,392.893859863281,0.123809300163884
+4222,307474,3798498,307574,3798398,21,42,28.6842105263158,0.147117308746329,16.3872249449453,0.562339743589744,15.5867256623399,0.0508722604399449,0.557894736842105,55.7894736842105,1,98.1678776705731,0.844996374184191,55.7894736842105,6.09657242388096,0,393.235990524292,393.018127441406,0.32606618102283
+4223,307474,3798398,307574,3798298,22,42,24.6537396121884,0.0800822047609987,10.2171140717675,0.606909430438842,29.4529012251268,0.00984864496341613,0.0664819944598338,6.64819944598338,4,67.4868960156726,0.63353115727003,4.15512465373961,5.00701703627904,0,393.31861114502,393.208953857422,0.122064602248718
+4224,307474,3798298,307574,3798198,23,42,65.6509695290859,0.639757838034495,31.4400098676392,0.90365682137834,NA,-0.00916993127456234,0.0470914127423823,4.70914127423823,3,63.434931197565,0.622209302325581,2.49307479224377,0,0,393.464267730713,393.381408691406,0.0936242539425713
+4225,307474,3798198,307574,3798098,24,42,72.2991689750693,0.352271720943045,25.2596756010052,0.719126410549005,20.7823008831198,0.00255042588121549,0.0831024930747922,8.31024930747922,3,73.8602510230138,0.688390159689253,4.98614958448753,2.78214308420817,0,393.584233601888,393.505310058594,0.0824236129464468
+4226,307474,3798098,307574,3797998,25,42,91.5789473684211,0.939391255848119,37.7705649218222,0.906609195402299,NA,0.0316371476183887,0.213157894736842,21.3157894736842,5,86.7793394448034,0.717577108881457,16.5789473684211,0.0641429041638786,0,393.664960861206,393.593078613281,0.0681866233589972
+4227,307474,3797998,307574,3797898,26,42,98.3379501385042,0.958287056971501,37.3746598261351,0.930046948356808,NA,0.0380956726517158,0.218836565096953,21.8836565096953,3,85.9578274778496,0.698252279635258,12.7423822714681,0,0,393.770217895508,393.707397460938,0.0721732216189582
+4228,307474,3797898,307574,3797798,27,42,58.4487534626039,0.284786716930967,24.9080525346722,0.726442307692308,15.5867255064659,0.0122228413216826,0.0332409972299169,3.32409972299169,2,62.9077064702007,0.69576942524861,1.93905817174515,0,0,393.941683451335,393.842071533203,0.182167932775022
+4229,307474,3797798,307574,3797698,28,42,37.6731301939058,0.183559210912851,25.0800548104925,0.723662551440329,20.7823008831198,0.0364292426065,0.321329639889197,32.1329639889197,6,86.5905218739645,0.740388726919339,17.1745152354571,7.87205897939616,0,394.413230895996,394.092742919922,0.393530920375182
+4230,307474,3797698,307574,3797598,29,42,38.4210526315789,0.197056211715266,26.1590936213666,0.702622441520468,20.7823008831198,0.0653354899982285,0.744736842105263,74.4736842105263,2,98.3485532217493,0.749631811487481,71.3157894736842,8.57171216027897,0,395.068481445312,394.847473144531,0.379807410163968
+4231,307474,3797598,307574,3797498,30,42,73.4072022160665,0.715341042528022,32.917719155079,0.910062893081761,NA,0.0470468401341309,0.346260387811634,34.6260387811634,7,85.8988427010895,0.615900097065631,15.5124653739612,6.54285905456543,0,393.868190765381,390.581787109375,2.67594471296087
+4232,307474,3797498,307574,3797398,31,42,44.8753462603878,0.437302825998262,29.4535262759886,0.846707818930041,NA,0.0188312357384454,0.0997229916897507,9.97229916897507,5,68.5751333297657,0.666769230769231,3.8781163434903,20.2883936299218,5.19557523727417,392.862823486328,389.820220947266,4.00002214880871
+4233,307474,3797398,307574,3797298,32,42,2.77008310249307,0.026994001604831,11.1367855297307,0.333333333333333,NA,-0.0692642140937479,0,0,0,NA,NA,0,NA,NA,398.304750442505,397.108947753906,1.49542860684452
+4234,307474,3797298,307574,3797198,33,42,49.4736842105263,0.507487230170823,32.3344471576275,0.831560283687943,NA,0.00626307036697031,0.281578947368421,28.1578947368421,3,92.7238810815115,0.805272447759494,25,2.24386221894594,0,398.932947794596,398.735931396484,0.273977212478075
+4235,307474,3797198,307574,3797098,34,42,25.7617728531856,0.251044214924928,27.6497240795655,0.804659498207885,NA,0.0597030148271497,0.554016620498615,55.4016620498615,1,98.0916506430309,0.909343556946979,55.4016620498615,14.6134166955948,0,398.495531082153,397.858612060547,0.551154992079473
+4236,307474,3797098,307574,3796998,35,42,6.09418282548476,0.0593868035306282,9.80444768703095,0.681818181818182,NA,0.0455210495384157,0.349030470914127,34.9030470914127,5,86.9498621065833,0.771922326488897,18.2825484764543,40.102310403945,5.19557523727417,397.759124755859,397.352844238281,0.451492208500455
+4237,307474,3796998,307574,3796898,36,42,14.9584487534626,0.0728838043330438,11.1275469730331,0.657738095238095,20.7823008831198,0.0372222989130945,0.296398891966759,29.6398891966759,6,85.3826845283659,0.771714740320672,19.9445983379501,20.0613850522264,0,397.577201843262,396.926940917969,0.482543469238408
+4238,307474,3796898,307574,3796798,37,42,0,NA,NA,NA,NA,0.0338076592459784,0.257894736842105,25.7894736842105,2,92.8998020570233,0.816247582205029,23.6842105263158,84.6725617233588,64.2657165527344,397.536051432292,396.674133300781,0.803272191238678
+4239,307474,3796798,307574,3796698,38,42,30.1939058171745,0.294234617492658,25.2621024421856,0.802752293577982,NA,0.0393382638116705,0.337950138504155,33.7950138504155,3,89.2397589316078,0.829133455764024,13.5734072022161,9.55804659890347,0,398.043283462524,397.471649169922,0.483473466868351
+4240,307474,3796698,307574,3796598,39,42,27.4238227146814,0.133620307943914,15.3805056205752,0.512719298245614,10.3911504415599,0.0228826433938649,0.132963988919668,13.2963988919668,2,86.3365408804641,0.732759292449154,11.3573407202216,12.2952212194602,0,398.188888549805,397.959838867188,0.258496793229226
+4241,307474,3796598,307574,3796498,40,42,6.92520775623269,0.0224950013373592,4.89799194796626,0.354970760233918,39.5683219745072,0.0488517122854958,0.42382271468144,42.382271468144,3,91.7576367128047,0.765295647413085,20.4986149584488,28.0081810514911,0,398.398468017578,398.234252929688,0.268713040751581
+4242,307474,3796498,307574,3796398,41,42,27.4238227146814,0.133620307943914,17.7167461862031,0.652777777777778,11.6176593526411,0.0565892705916796,0.476454293628809,47.6454293628809,1,97.5070198991125,0.819237894947674,47.6454293628809,6.2989211221074,0,399.009887695312,398.613616943359,0.453870254360948
+4243,307474,3796398,307574,3796298,42,42,10.2631578947368,0.0526383031294205,9.4889790468624,0.333333333333333,41.5646013505757,0.0329044625725242,0.218421052631579,21.8421052631579,5,87.5520372400117,0.825923635447445,18.9473684210526,27.8458968530218,7.34765291213989,399.556955973307,399.364898681641,0.265132344693357
+4244,307474,3796298,307574,3796198,43,42,6.09418282548476,0.0296934017653141,7.41747949173616,0.551388888888889,31.6034499687999,0.0621951444003888,0.45983379501385,45.983379501385,3,93.4636328404867,0.824551701022289,31.5789473684211,32.7212304092315,0,399.388483047485,399.098815917969,0.325495327627517
+4245,307474,3796198,307574,3796098,44,42,21.606648199446,0.210553212517682,24.6976857935211,0.728632478632479,NA,0.0384513637286961,0.213296398891967,21.3296398891967,4,85.8913983306512,0.785030033140017,17.1745152354571,26.2183572719624,0,398.730908711751,398.400146484375,0.56504526124919
+4246,307474,3796098,307574,3795998,45,42,27.4238227146814,0.0445401026479712,11.5159530126134,0.520739530380053,15.2451608756231,0.0217100977381071,0.0332409972299169,3.32409972299169,3,55.1133669371738,0.513231080397775,1.66204986149584,5.40283914407094,0,397.517051696777,396.505523681641,1.10941733716797
+4247,307474,3795998,307574,3795898,46,42,1.31578947368421,0.0134970008024155,5.19636642516254,0.333333333333333,NA,0.0047470307259573,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.693548387096774,2.10526315789474,29.0363824367523,16.4298515319824,395.278086344401,394.934051513672,0.908025426356551
+4248,307474,3795898,307574,3795798,47,42,10.803324099723,0.105276606258841,16.0587917037941,0.717948717948718,NA,0.0421745698538951,0.390581717451524,39.0581717451524,2,92.931892047666,0.777396053558844,25.4847645429363,27.6592566307555,0,394.721612930298,394.665313720703,0.120524584539148
+4249,307474,3795798,307574,3795698,48,42,47.3684210526316,0.46159742744261,35.5600962732461,0.766081871345029,NA,0.0573259976045844,0.515235457063712,51.5235457063712,5,95.4817356659533,0.736146179401993,47.3684210526316,5.91117536124363,0,394.785578409831,394.694976806641,0.205486425247272
+4250,307474,3795698,307574,3795598,49,42,58.4487534626039,0.569573433861934,39.9895485402745,0.762243285939968,NA,0.0532210145330758,0.515235457063712,51.5235457063712,4,95.0681142174814,0.712159468438538,44.3213296398892,3.74941800999385,0,395.476907730103,395.062774658203,0.49280337073356
+4251,307474,3795598,307574,3795498,50,42,51.3157894736842,0.263191515647102,20.8719076894494,0.631123058542413,15.5867255064659,0.0357054370574923,0.331578947368421,33.1578947368421,4,90.9515318788256,0.745211979506928,17.3684210526316,3.87417414074852,0,396.185569763184,395.896057128906,0.434562803372712
+4252,307474,3795498,307574,3795398,51,42,12.1883656509695,0.0197956011768761,5.11175732007842,0.250359195402299,15.4301065998434,0.0200047755986065,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.943620178041543,6.64819944598338,11.1955880125364,0,396.970979690552,396.465942382812,0.560906176366734
+4253,307474,3795398,307574,3795298,52,42,16.0664819944598,0.15656520930802,25.212470579569,0.681034482758621,NA,0.0178306855626706,0.0470914127423823,4.70914127423823,3,63.2694592797943,0.706162790697674,2.49307479224377,12.5190280746011,5.19557523727417,398.443542480469,397.574493408203,1.128684840874
+4254,307474,3795298,307574,3795198,53,42,32.409972299169,0.0789574546941307,12.8425302205315,0.579191173336743,12.6099258777841,0.0285351061989544,0.196675900277008,19.6675900277008,3,85.5412579395956,0.810786206896552,12.7423822714681,5.79115877017169,0,399.324565887451,398.789642333984,0.428585394582171
+4255,307474,3795198,307574,3795098,54,42,35,0.119673407114751,11.1704644295335,0.477534562211982,22.5141592034498,0.0352452862951587,0.297368421052632,29.7368421052632,6,86.8089675365192,0.748843357567746,17.8947368421053,5.20640495604118,0,399.068664550781,398.780120849609,0.32435139983204
+4256,307474,3795098,307574,3794998,55,42,4.70914127423823,0.0152966009094042,5.66936114805411,0.340277777777778,50.2238935410829,0.0169562647874413,0.0443213296398892,4.43213296398892,4,56.6968137674853,0.607608695652174,2.21606648199446,10.4570195674896,0,398.620422363281,398.534881591797,0.179026493679017
+4257,307474,3794998,307574,3794898,56,42,45.983379501385,0.112025106660049,12.7495339134191,0.70567827385953,10.3911504415599,0.027211798697044,0.293628808864266,29.3628808864266,4,89.2916859517651,0.770228929268042,17.7285318559557,5.41917442375759,0,398.446022033691,398.411590576172,0.0513708299081504
+4258,307474,3794898,307574,3794798,57,42,25.7617728531856,0.0502088429849857,7.71405244553257,0.316565656565657,15.166135025346,0.0280446943074708,0.155124653739612,15.5124653739612,3,89.5661427578565,0.768159540307588,14.9584487534626,3.14513170719147,0,398.449760437012,398.41455078125,0.0621190649625993
+4259,307474,3794798,307574,3794698,58,42,37.6315789473684,0.0965035557372709,14.4985244843041,0.649669312169312,11.6176592829322,0.0187647917055169,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,398.678821563721,398.495819091797,0.264168406327688
+4260,307474,3794698,307574,3794598,59,42,37.3961218836565,0.0911047554163047,12.6958485582183,0.463723776223776,16.0082884054938,0.0299124876981149,0.213296398891967,21.3296398891967,4,83.493170717176,0.785030033140017,10.2493074792244,6.63224716310377,0,399.325973510742,398.923278808594,0.539129568114926
+4261,307474,3794598,307574,3794498,60,42,54.8476454293629,0.267240615887827,24.5380369308329,0.789012470508932,14.6953058096335,0.0155967517809719,0.0664819944598338,6.64819944598338,4,68.5256868530435,0.718100890207715,3.32409972299169,3.76785677671432,0,399.571487426758,399.313781738281,0.327797242584532
+4262,307474,3794498,307574,3794398,61,42,0,NA,NA,NA,NA,0.0143099003541977,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,77.9336318969727,77.9336318969727,399.339269002279,399.180419921875,0.252107032059528
+4263,307474,3794398,307574,3794298,62,42,0,NA,NA,NA,NA,0.0242866783368718,0.152631578947368,15.2631578947368,2,88.3807218095484,0.858385093167702,13.6842105263158,54.5182738797418,30.2951488494873,399.589738845825,399.246459960938,0.519309640252236
+4264,307474,3794298,307574,3794198,63,42,53.4626038781163,0.260492115486619,19.076054166516,0.789474951830443,16.4298513045218,0.0149695520392623,0.0498614958448753,4.98614958448753,2,72.7155299402978,0.844077313465069,4.15512465373961,36.1624127493964,25.977876663208,400.398900349935,400.104614257812,0.348899854429748
+4265,307474,3794198,307574,3794098,64,42,22.1606648199446,0.053988003209662,11.4071287649473,0.460637480798771,14.6782313146544,0.0261828165281949,0.149584487534626,14.9584487534626,3,83.7367125993873,0.822983433154706,10.2493074792244,15.4641151428223,0,400.482490539551,400.359649658203,0.160906528259485
+4266,307474,3794098,307574,3793998,65,42,0,NA,NA,NA,NA,0.0186495081279872,0.0332409972299169,3.32409972299169,4,53.9019501790898,0.391538850497219,1.93905817174515,56.4873736699422,39.5683212280273,400.865069071452,400.617370605469,0.371764006864192
+4267,307474,3793998,307574,3793898,66,42,15.7894736842105,0.0809820048144931,13.7476607860403,0.578787878787879,25.9778758441098,0.0177885687080178,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,27.1318135261536,14.6953058242798,401.454599380493,401.197509765625,0.332575142498529
+4268,307474,3793898,307574,3793798,67,42,10.5263157894737,0.0512886030491789,9.82154761421608,0.4375,20.7823006752878,0.0165137000764146,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,23.3157533009847,18.7329120635986,401.272481282552,401.179412841797,0.322266160594767
+4269,307474,3793798,307574,3793698,68,42,15.7894736842105,0.0512886030491789,13.3190424130208,0.530217717717718,17.8806677614438,0.0187948868170424,0.0332409972299169,3.32409972299169,5,40.3682847064815,0.452384965447497,1.38504155124654,10.3911503950755,0,402.367414474487,401.398010253906,0.84911226421265
+4270,307474,3793698,307574,3793598,69,42,8.31024930747922,0.0404910024072465,8.90735491275918,0.622222222222222,15.5867255064659,0.0230359272438635,0.038781163434903,3.8781163434903,3,64.6111086803567,0.687896253602305,3.04709141274238,5.13190238816397,0,403.134998321533,402.484893798828,0.61984977828291
+4271,307474,3793598,307574,3793498,70,42,0,NA,NA,NA,NA,0.0185755218880858,0.0315789473684211,3.15789473684211,2,65.0192097988806,0.635549872122762,2.36842105263158,111.058764775594,83.1292037963867,403.156857808431,402.538177490234,0.72162147061514
+4272,307474,3793498,307574,3793398,71,42,0,NA,NA,NA,NA,0.0252679166468047,0.03601108033241,3.601108033241,4,49.769493251061,0.654214559386973,1.66204986149584,121.865477928749,115.360496520996,403.901731491089,402.810546875,0.699956869422209
+4273,307474,3793398,307574,3793298,72,42,0,NA,NA,NA,NA,0.0291174886313814,0.0581717451523546,5.81717451523546,4,64.1085928467169,0.668198529411765,3.601108033241,80.7540548415411,72.3659896850586,403.879254659017,403.249359130859,0.722465232929382
+4274,307474,3793298,307574,3793198,73,42,9.41828254847645,0.0458898027282127,8.69571993374491,0.476388888888889,31.6034499687999,0.0368719367739948,0.210526315789474,21.0526315789474,5,85.0330371520613,0.640796019900498,13.2963988919668,19.8605780036826,0,402.872465133667,402.12646484375,0.741508589766483
+4275,307474,3793198,307574,3793098,74,42,0.263157894736842,0.0026994001604831,0,0,NA,0.0240965324930393,0.123684210526316,12.3684210526316,3,82.6690326478453,0.828828828828829,8.42105263157895,47.6335214249631,25.977876663208,401.62611134847,401.250274658203,0.659592597958223
+4276,307474,3793098,307574,3792998,75,42,38.781163434903,0.188958011233817,21.1031664635367,0.767448482965724,15.5867256623399,0.023870490523477,0.0609418282548476,6.09418282548476,4,64.9174914343889,0.655474579212216,3.04709141274238,2.69560933113098,0,400.894804000854,400.683258056641,0.25489119333173
+4277,307474,3792998,307574,3792898,76,42,20.4986149584488,0.0998778059378748,12.9534695403423,0.695386064030132,15.5867256623399,0.0719041223628085,0.565096952908587,56.5096952908587,2,97.5226103234461,0.884728501083979,55.6786703601108,15.8716737873414,0,400.687454223633,400.645080566406,0.0855683201542541
+4278,307474,3792898,307574,3792798,77,42,0,NA,NA,NA,NA,0.0347959807292488,0.25207756232687,25.207756232687,5,85.2702573121474,0.818427069044353,12.1883656509695,78.0220318469372,44.3910140991211,400.93639755249,400.7275390625,0.4468940130335
+4279,307474,3792798,307574,3792698,78,42,17.8947368421053,0.183559210912851,18.8647391149892,0.781862745098039,NA,0.0679591344546919,0.694736842105263,69.4736842105263,1,98.9199097507581,0.741901776384535,69.4736842105263,31.6410758621765,0,402.171254475911,401.355621337891,1.51166024386973
+4280,307474,3792698,307574,3792598,79,42,24.9307479224377,0.0607365036108698,12.0839482859637,0.503104967948718,15.1410156970182,0.0646934025299186,0.590027700831025,59.0027700831025,3,94.6110318135439,0.765936390936391,38.2271468144044,13.276353471156,0,403.857166290283,402.177642822266,1.6452389234153
+4281,307474,3792598,307574,3792498,80,42,17.7285318559557,0.0575872034236395,15.772943934055,0.48058748403576,12.1230087965286,0.0386099996477516,0.282548476454294,28.2548476454294,6,86.7831760538972,0.748654978163175,16.6204986149584,14.9189091336493,0,404.856198628743,404.044525146484,0.713287027116395
+4282,307474,3792498,307574,3792398,81,42,2.49307479224377,0.012147300722174,4.06829512335314,0.388888888888889,51.9557518752684,0.035031845658291,0.254847645429363,25.4847645429363,7,81.0240158929006,0.721778946414,12.7423822714681,27.1163927368496,5.19557523727417,405.830450057983,405.23876953125,0.988958036028614
+4283,307474,3792398,307574,3792298,82,42,18.4210526315789,0.188958011233817,18.6580113748215,0.819047619047619,NA,0.0141624672308497,0.068421052631579,6.8421052631579,4,65.6070985289893,0.659638969271049,2.36842105263158,48.5563012086428,5.19557523727417,406.750661214193,406.045440673828,0.721966220752396
+4284,307474,3792298,307574,3792198,83,42,71.4681440443213,0.34822262070232,22.5993446138035,0.808518518518519,10.3911503376439,-0.00620986002991042,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,5.91293446222941,5.19557523727417,406.37100982666,405.610168457031,0.860953193228253
+4285,307474,3792198,307574,3792098,84,42,45.1523545706371,0.220001113079373,17.0954247390134,0.626572327044025,37.8243585167531,0.0386031198111298,0.401662049861496,40.1662049861496,2,95.5407699171231,0.924318658280922,39.0581717451524,9.50826263427734,0,405.386341094971,405.076293945312,0.441174000848536
+4286,307474,3792098,307574,3791998,85,42,0,NA,NA,NA,NA,0.025891056047608,0.202216066481994,20.2216066481994,4,83.5471152461743,0.6474609375,8.58725761772853,38.7089389513617,5.19557523727417,405.240844726562,405.089691162109,0.214881866014856
+4287,307474,3791998,307574,3791898,86,42,0,NA,NA,NA,NA,0.0384896473421433,0.313157894736842,31.3157894736842,3,91.6458835570322,0.743862636582943,25.2631578947368,69.2357304196398,11.6176595687866,405.445964813232,405.132171630859,0.517884337229816
+4288,307474,3791898,307574,3791798,87,42,3.32409972299169,0.0161964009628986,5.03324011528215,0.407407407407407,20.7823008831198,0.0299834362180505,0.196675900277008,19.6675900277008,7,75.4130006059282,0.631531034482759,6.64819944598338,43.435042952148,0,407.153752644857,406.14013671875,1.38641674257397
+4289,307474,3791798,307574,3791698,88,42,27.9778393351801,0.0681598540521983,11.0842618243578,0.546125730994152,10.6977775913932,0.0364299270869723,0.277008310249307,27.7008310249307,4,85.2295023312366,0.692635163899532,11.3573407202216,12.7997514533997,0,408.276145935059,407.676544189453,0.588434555819721
+4290,307474,3791698,307574,3791598,89,42,45.983379501385,0.224050213320097,18.2404257514825,0.516975308641975,10.3911503376439,0.0462954086249944,0.470914127423823,47.0914127423823,3,91.4877782573676,0.728267233159928,20.4986149584488,3.46629118077895,0,408.373532613118,408.081237792969,0.449185912411114
+4291,307474,3791598,307574,3791498,90,42,34.4736842105263,0.117873807007762,13.2593419177977,0.496631070429697,17.1975384478003,0.0507116706029736,0.439473684210526,43.9473684210526,4,95.9628290951476,0.814645448448265,42.6315789473684,10.5580342429841,0,407.496257781982,407.155029296875,0.401812624417147
+4292,307474,3791498,307574,3791398,91,42,47.3684210526316,0.230798713721305,25.8624744953512,0.739305816135085,18.7329127343573,0.05950230102563,0.623268698060942,62.3268698060942,3,97.8118673308287,0.778799019607843,61.218836565097,3.666013607449,0,407.363794962565,407.078704833984,0.392285392822533
+4293,307474,3791398,307574,3791298,92,42,62.6038781163435,0.30503221813459,21.6157146328955,0.777158343012002,20.7823008831198,0.0627748911424445,0.686980609418283,68.6980609418283,1,98.8527710749899,0.710825450106805,68.6980609418283,3.4173589791021,0,407.785099029541,407.347991943359,0.592207509541013
+4294,307474,3791298,307574,3791198,93,42,54.2936288088643,0.264541215727344,22.9376572113592,0.508347725964306,11.6176592829322,0.0658314427273178,0.673130193905817,67.3130193905817,1,98.7841635095044,0.696763234525498,67.3130193905817,4.06177697162079,0,408.455899556478,407.939422607422,0.520747779233626
+4295,307474,3791198,307574,3791098,94,42,43.421052631579,0.111350256619928,16.6394583350305,0.55767017017017,13.2955651758042,0.0612345496751674,0.618421052631579,61.8421052631579,2,98.2138648621546,0.779121828607336,61.3157894736842,3.75413159715368,0,408.655303955078,408.332580566406,0.310352246371557
+4296,307474,3791098,307574,3790998,95,42,67.590027700831,0.329326819578938,17.998859800178,0.59375,15.5867255064659,0.0726449756006423,0.808864265927978,80.8864265927978,1,99.378383897982,0.95235078271429,80.8864265927978,2.26186695490798,0,408.321528116862,407.938751220703,0.487526623020953
+4297,307474,3790998,307574,3790898,96,42,36.01108033241,0.175461010431402,26.9358113963372,0.722381864623244,10.3911503376439,0.0239318723891647,0.119113573407202,11.9113573407202,4,77.8532290581505,0.779262753319357,8.03324099722992,3.44100636105205,0,407.631404876709,407.504455566406,0.246482553163426
+4298,307474,3790898,307574,3790798,97,42,41.2742382271468,0.0574586605588546,9.23329704182036,0.392302805180043,13.2011335424637,0.0330626432178606,0.221606648199446,22.1606648199446,8,78.6183189483217,0.620019046664328,8.03324099722992,4.68926347494125,0,407.502716064453,407.348541259766,0.149387295534484
+4299,307474,3790798,307574,3790698,98,42,29.7368421052632,0.152516109067295,25.909309136481,0.702178649237473,18.7329127343573,0.021322028068435,0.0947368421052632,9.47368421052632,6,66.1869071664718,0.631782945736434,2.89473684210526,7.95946288108826,0,407.477069854736,407.316314697266,0.163629898106759
+4300,307474,3790698,307574,3790598,99,42,44.5983379501385,0.108650856459445,17.1296694138641,0.702307513914657,14.1658842774638,0.0485427499862288,0.482456140350877,48.2456140350877,3,93.7798296693233,0.777542372881356,33.0409356725146,2.18684190403331,0,407.363819122314,407.198333740234,0.181400094334376
+4301,307574,3800598,307674,3800498,0,43,29.0858725761773,0.0708592542126814,12.6734931914461,0.511006717501816,15.5867255584239,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.914250691732,383.552703857422,0.505057791340627
+4302,307574,3800498,307674,3800398,1,43,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.646931966146,384.314453125,0.441109923805248
+4303,307574,3800398,307674,3800298,2,43,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.182879130046,384.934387207031,0.313021258510454
+4304,307574,3800298,307674,3800198,3,43,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.7513800727,385.502197265625,0.519546000432324
+4305,307574,3800198,307674,3800098,4,43,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.517252604167,386.153289794922,0.766410055582845
+4306,307574,3800098,307674,3799998,5,43,0,NA,NA,NA,NA,0.0126277769324684,0.0657894736842105,6.57894736842105,1,74.4129071744735,0.917659804983749,6.57894736842105,84.9767967224121,78.1066207885742,387.14562649197,386.294525146484,1.31404006100328
+4307,307574,3799998,307674,3799898,6,43,0,NA,NA,NA,NA,0.0144235326302589,0,0,0,NA,NA,0,NA,NA,388.059209187826,386.967193603516,1.3131441649314
+4308,307574,3799898,307674,3799798,7,43,26.5927977839335,0.129571207703189,21.759730518393,0.698607698607699,41.8880665741566,0.00407952242169503,0,0,0,NA,NA,0,NA,NA,388.870212131076,388.070098876953,1.00692940684435
+4309,307574,3799798,307674,3799698,8,43,93.0747922437673,0.906998453922322,37.0302093110834,0.920138888888889,NA,0.0236691644375272,0.290858725761773,29.0858725761773,4,91.7017968006661,0.798549107142857,26.3157894736842,0,0,390.253318786621,389.590393066406,0.757155461398229
+4310,307574,3799698,307674,3799598,9,43,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0546884225289288,0.673684210526316,67.3684210526316,2,96.6656531927472,0.699932795698925,47.6315789473684,0,0,390.870351155599,390.606964111328,0.33196809266974
+4311,307574,3799598,307674,3799498,10,43,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0537809467619063,0.614958448753463,61.4958448753463,4,94.4831850043163,0.792983004900427,50.1385041551247,0,0,391.043174743652,390.903869628906,0.234913110631885
+4312,307574,3799498,307674,3799398,11,43,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0292218175042392,0.166204986149584,16.6204986149584,4,88.2155170764735,0.700166112956811,14.9584487534626,0,0,390.985229492188,390.824279785156,0.249630057262469
+4313,307574,3799398,307674,3799298,12,43,89.4736842105263,0.871906251836042,36.6023606730875,0.895768833849329,NA,0.0180753907793373,0.0554016620498615,5.54016620498615,4,62.3916280661463,0.590199602686595,2.21606648199446,2.29343786239624,0,390.802100287543,390.729614257812,0.169073149293567
+4314,307574,3799298,307674,3799198,13,43,82.3684210526316,0.422456125115605,24.5846904214937,0.755503913894325,10.3911504415599,0.00581062384057747,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,5.62599077224731,0,390.726760864258,390.676300048828,0.0982090574466923
+4315,307574,3799198,307674,3799098,14,43,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.00914241416706965,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,0,0,390.983076307509,390.815887451172,0.351014766874426
+4316,307574,3799098,307674,3798998,15,43,63.7119113573407,0.310431018455557,21.0998577979413,0.749650593990217,15.5867255064659,0.0377958382747827,0.371191135734072,37.1191135734072,2,95.7035624367827,0.902235141185816,36.5650969529086,0.969323734738934,0,391.909863789876,391.346893310547,0.521877043683992
+4317,307574,3798998,307674,3798898,16,43,0,NA,NA,NA,NA,-0.030189375034011,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,25.977876663208,25.977876663208,392.480251736111,392.348205566406,0.24209484367478
+4318,307574,3798898,307674,3798798,17,43,6.31578947368421,0.0323928019257972,6.66372231392672,0.619791666666667,62.3469026493595,-0.0322488910778223,0,0,0,NA,NA,0,NA,NA,392.719843546549,392.523803710938,0.28159430875117
+4319,307574,3798798,307674,3798698,18,43,42.1052631578947,0.205154412196716,20.2740737071261,0.543251304996272,46.7601765193976,-0.000792999129297845,0,0,0,NA,NA,0,NA,NA,392.858947753906,392.727020263672,0.210946329280971
+4320,307574,3798698,307674,3798598,19,43,73.9612188365651,0.360369921424494,22.0229573816228,0.714969433719434,15.5867255064659,0.0127770961918936,0,0,0,NA,NA,0,NA,NA,392.931594848633,392.846649169922,0.129405059804012
+4321,307574,3798598,307674,3798498,20,43,73.9612188365651,0.720739842848988,34.7793926374062,0.866416978776529,NA,-0.00172229440382313,0.0526315789473684,5.26315789473684,3,64.3617106556214,0.708812260536398,3.04709141274238,7.29475686424657,0,392.991634792752,392.909912109375,0.157625953838518
+4322,307574,3798498,307674,3798398,21,43,1.57894736842105,0.0161964009628986,5.18752620759996,0.444444444444444,NA,0.0253109778449518,0.0552631578947368,5.52631578947368,1,82.4055252250565,0.933844011142061,5.52631578947368,14.2057986713591,5.19557523727417,393.114977518717,393.027801513672,0.160153719808121
+4323,307574,3798398,307674,3798298,22,43,27.4238227146814,0.133620307943914,11.6048040054655,0.409863945578231,15.5867256623399,0.0043679034199783,0,0,0,NA,NA,0,NA,NA,393.326032850477,393.207763671875,0.172136115617122
+4324,307574,3798298,307674,3798198,23,43,97.2299168975069,0.947489456329569,37.3650564862083,0.918803418803419,NA,0.0158745115802661,0.127423822714681,12.7423822714681,3,84.4964614577187,0.75022385022385,11.0803324099723,0.11294728776683,0,393.492388407389,393.420074462891,0.0699063365875665
+4325,307574,3798198,307674,3798098,24,43,82.8254847645429,0.807120647984447,35.5661732563364,0.899108138238573,NA,0.0108158076291853,0.10803324099723,10.803324099723,3,82.8315838324825,0.79302436693741,9.41828254847645,0,0,393.543775770399,393.508026123047,0.0600437008244978
+4326,307574,3798098,307674,3797998,25,43,80.7894736842105,0.828715849268312,35.8087943810743,0.906080347448426,NA,0.0236434438231682,0.1,10,2,83.0539672022018,0.805996472663139,8.1578947368421,0,0,393.605074564616,393.519348144531,0.0877604388131089
+4327,307574,3797998,307674,3797898,26,43,97.7839335180055,0.952888256650535,37.2856452892649,0.928706326723324,NA,0.0353450149508657,0.373961218836565,37.3961218836565,4,92.406081706663,0.844161450464062,32.409972299169,0.153942969993309,0,393.796775817871,393.695159912109,0.162310251656874
+4328,307574,3797898,307674,3797798,27,43,52.9085872576177,0.257792715326136,18.1582390610256,0.658061594202898,11.6176592829322,0.0225808295124862,0.160664819944598,16.0664819944598,3,81.7193490698154,0.737887788778878,5.81717451523546,8.8911793478604,0,394.055633544922,393.878112792969,0.26993432876533
+4329,307574,3797798,307674,3797698,28,43,0.554016620498615,0.0026994001604831,0,0,36.3690261817537,0.0304045972475641,0.299168975069252,29.9168975069252,3,91.2629190848227,0.758528428093646,24.9307479224377,29.7276761708436,0,394.494867960612,394.145294189453,0.380794768824348
+4330,307574,3797698,307674,3797598,29,43,0,NA,NA,NA,NA,0.0215541490113346,0.181578947368421,18.1578947368421,7,73.6881023921914,0.676862161515772,5.26315789473684,40.7354376834372,14.6953058242798,394.997406005859,394.910522460938,0.149891554138968
+4331,307574,3797598,307674,3797498,30,43,65.6509695290859,0.639757838034495,31.734190284178,0.90084388185654,NA,0.0501745746282659,0.440443213296399,44.0443213296399,7,89.473199238499,0.687864505628645,28.2548476454294,3.50918283702442,0,393.909332275391,391.305297851562,2.25215908772667
+4332,307574,3797498,307674,3797398,31,43,54.2936288088643,0.529082431454688,30.9496026961454,0.876700680272109,NA,0.0313761032396383,0.177285318559557,17.7285318559557,6,80.6501425505433,0.728685666185666,10.803324099723,16.4684173241258,0,392.821851942274,389.712463378906,3.3695226927213
+4333,307574,3797398,307674,3797298,32,43,11.9113573407202,0.116074206900773,22.2104669169599,0.686046511627907,NA,-0.0541840499041891,0,0,0,NA,NA,0,NA,NA,397.639773050944,396.022003173828,1.61881007247272
+4334,307574,3797298,307674,3797198,33,43,42.6315789473684,0.218651412999131,16.450178600303,0.403209109730849,25.9778758441098,0.00794012923939399,0.234210526315789,23.4210526315789,1,94.2341300741174,0.84395599645551,23.4210526315789,2.56649682762917,0,398.698852539062,398.622375488281,0.173482361346858
+4335,307574,3797198,307674,3797098,34,43,29.9168975069252,0.145767608666087,15.0303567018955,0.489779874213836,11.6176592829322,0.0530225798706788,0.529085872576177,52.9085872576177,2,97.6253473436426,0.844034562977733,52.6315789473684,11.4517544202155,0,398.147524515788,397.725036621094,0.526217137307855
+4336,307574,3797098,307674,3796998,35,43,3.04709141274238,0.0296934017653141,6.84051691234336,0.590909090909091,NA,0.0399447760406131,0.337950138504155,33.7950138504155,5,86.477781031789,0.753952176300195,12.1883656509695,39.2366901421156,0,397.335774739583,397.174346923828,0.316230918672565
+4337,307574,3796998,307674,3796898,36,43,18.005540166205,0.175461010431402,20.5929253593547,0.761538461538461,NA,0.0556208946713659,0.45983379501385,45.983379501385,3,95.5181179922949,0.812451818334171,42.9362880886427,17.7560800155961,0,396.995129903158,396.537933349609,0.312045617163635
+4338,307574,3796898,307674,3796798,37,43,0,NA,NA,NA,NA,0.0446444178222201,0.339473684210526,33.9473684210526,1,96.1266858750166,0.948461473255912,33.9473684210526,77.3709067411201,57.1513290405273,396.573004828559,396.284606933594,0.53398040889174
+4339,307574,3796798,307674,3796698,38,43,50.9695290858726,0.124172407382223,11.5331879632598,0.373073217726397,15.0743785731912,0.03860491653554,0.343490304709141,34.3490304709141,2,95.0861073085137,0.952611345522738,33.7950138504155,1.80222006767027,0,397.577507019043,396.806610107422,0.504909523677602
+4340,307574,3796698,307674,3796598,39,43,25.7617728531856,0.0502088429849857,6.58181242751385,0.243398692810458,19.3074567550741,0.0241208433701275,0.124653739612188,12.4653739612188,2,87.3121437818942,0.909810126582278,11.9113573407202,8.31614819632636,0,398.106028238932,397.954650878906,0.242756982377452
+4341,307574,3796598,307674,3796498,40,43,2.77008310249307,0.026994001604831,7.1274704691136,0.566666666666667,NA,0.0315586902155061,0.171745152354571,17.1745152354571,2,89.593624477116,0.865849126718692,16.0664819944598,40.3444734388782,26.4923400878906,398.552761501736,398.289306640625,0.390820295993858
+4342,307574,3796498,307674,3796398,41,43,1.10803324099723,0.0107976006419324,5.19557522077995,0.25,NA,0.0137684705993789,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,5.80882978439331,0,399.270192464193,398.884338378906,0.413112867253983
+4343,307574,3796398,307674,3796298,42,43,41.0526315789474,0.421106425035364,27.3986938014168,0.847222222222222,NA,0.0396793339985092,0.310526315789474,31.0526315789474,5,89.3949209257023,0.789897981023043,24.4736842105263,13.2276133723178,0,399.761789957682,399.636352539062,0.2775456576279
+4344,307574,3796298,307674,3796198,43,43,13.0193905817175,0.0634359037713529,17.4289339537581,0.550125313283208,25.9778759376342,0.0531779667506881,0.476454293628809,47.6454293628809,2,95.5375249384889,0.740907649425,39.3351800554017,12.0240239348522,0,399.535794576009,399.295837402344,0.454075510575581
+4345,307574,3796198,307674,3796098,44,43,18.8365650969529,0.0917796054564255,16.159711048424,0.651472868217054,15.5867255064659,0.038835865724461,0.299168975069252,29.9168975069252,3,90.5362888889819,0.831701631701632,19.1135734072022,7.78542259004381,0,398.603224012587,397.871643066406,0.993515929409196
+4346,307574,3796098,307674,3795998,45,43,27.7008310249307,0.0674850040120775,11.9126945444532,0.619634377967711,11.6900441558284,0.0230348989605123,0.0554016620498615,5.54016620498615,3,72.1801828547087,0.692649702014947,4.43213296398892,4.77085208892822,0,396.936889648438,395.840362548828,1.19021079499225
+4347,307574,3795998,307674,3795898,46,43,15.2631578947368,0.15656520930802,22.1588288234938,0.772988505747127,NA,0.00531503076205665,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,4.15646018981934,0,395.17424858941,394.900390625,0.617986762487625
+4348,307574,3795898,307674,3795798,47,43,13.0193905817175,0.0634359037713529,9.7833298663792,0.597619047619048,41.5646017662397,0.045207384513545,0.385041551246537,38.5041551246537,4,87.8769977100313,0.718308860041143,17.1745152354571,20.9277017133699,0,394.726806640625,394.676940917969,0.109636022856374
+4349,307574,3795798,307674,3795698,48,43,32.6869806094183,0.0796323047342515,11.3468581906558,0.658307057967499,15.4924865294149,0.0535981615173625,0.490304709141274,49.0304709141274,4,91.6286557083029,0.778004919558569,21.606648199446,9.92250923113634,0,394.862891303168,394.718536376953,0.350700176143742
+4350,307574,3795698,307674,3795598,49,43,35.7340720221607,0.0580371034503867,8.82769125161926,0.382138138943521,16.8614910742406,0.0453684703323818,0.50415512465374,50.415512465374,3,94.1307636241663,0.73069973310346,26.0387811634349,6.55906712615883,0,395.742968241374,395.076080322266,0.781884482835347
+4351,307574,3795598,307674,3795498,50,43,35,0.119673407114751,13.7969232822854,0.438373635343332,34.637167854496,0.0507087751833943,0.486842105263158,48.6842105263158,4,92.6390084782049,0.675213675213675,24.4736842105263,9.22593592308663,0,396.558817545573,396.354736328125,0.340436047500089
+4352,307574,3795498,307674,3795398,51,43,14.9584487534626,0.0485892028886958,7.28030183028669,0.461640211640212,13.8548671168586,0.0347674817237935,0.196675900277008,19.6675900277008,4,83.9060638578838,0.741075862068966,13.5734072022161,18.1584590320856,0,397.061920166016,396.748382568359,0.438216534745507
+4353,307574,3795398,307674,3795298,52,43,14.9584487534626,0.0291535217332175,6.48761994567894,0.434548784548785,17.7609535324974,0.0181461182146651,0.0914127423822715,9.14127423822715,6,62.5088535443564,0.551603432700994,2.21606648199446,13.6710434393449,0,397.885630289714,397.403472900391,0.660249553724413
+4354,307574,3795298,307674,3795198,53,43,21.0526315789474,0.0512886030491789,11.675111408568,0.494009866102889,22.2410957287373,0.0384037373623063,0.337950138504155,33.7950138504155,4,92.1951868391813,0.699274882144683,27.4238227146814,8.63957805711715,0,398.699358622233,398.369384765625,0.34398063134048
+4355,307574,3795198,307674,3795098,54,43,21.0526315789474,0.053988003209662,9.3275198086399,0.473696670653908,15.1410156580497,0.0339612926338496,0.194736842105263,19.4736842105263,3,88.0240518403961,0.732528908999497,15.5263157894737,4.99553873732283,0,398.907788594564,398.782104492188,0.136374043989912
+4356,307574,3795098,307674,3794998,55,43,26.3157894736842,0.0641107538114737,10.3227635243716,0.474043715846995,20.9973003027042,0.0178487853621911,0.0498614958448753,4.98614958448753,4,59.0690921108588,0.571212612028939,1.93905817174515,3.29463362693787,0,398.644721137153,398.546783447266,0.167922507274302
+4357,307574,3794998,307674,3794898,56,43,14.404432132964,0.140368808345121,18.9154300576218,0.740384615384615,NA,0.0249521928827333,0.191135734072022,19.1135734072022,1,92.8481599520577,0.785435299445262,19.1135734072022,3.33674211778503,0,398.466684977214,398.417053222656,0.0715213464835493
+4358,307574,3794898,307674,3794798,57,43,10.803324099723,0.105276606258841,23.2434304948831,0.645299145299145,NA,0.00602391792435155,0,0,0,NA,NA,0,NA,NA,398.422458224826,398.4111328125,0.0238908890530988
+4359,307574,3794798,307674,3794698,58,43,30.7894736842105,0.0789574546941307,14.4687451910716,0.64624270709797,23.2900865601502,0.0143941784541336,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,1.29889380931854,0,398.543614705404,398.438568115234,0.156884069567161
+4360,307574,3794698,307674,3794598,59,43,54.5706371191136,0.17726061053839,18.0073797388856,0.605344509838892,15.2734876412629,0.0213420345133781,0.038781163434903,3.8781163434903,5,43.5440870817858,0.427809798270893,1.10803324099723,8.28335302216666,0,398.907053629557,398.666870117188,0.353508411066767
+4361,307574,3794598,307674,3794498,60,43,13.0193905817175,0.0422906025142353,7.9440077480692,0.612698412698413,25.3705747459172,0.0309153506810098,0.202216066481994,20.2216066481994,2,92.1286714839537,0.941243489583333,19.9445983379501,26.247139904597,10.3911504745483,399.147692362467,398.957000732422,0.291268624377227
+4362,307574,3794498,307674,3794398,61,43,3.32409972299169,0.0323928019257972,6.99861275022847,0.611111111111111,NA,-0.0044696236478593,0,0,0,NA,NA,0,NA,NA,399.086697048611,399.020782470703,0.153910190649163
+4363,307574,3794398,307674,3794298,62,43,0,NA,NA,NA,NA,0.0214272555821241,0.139473684210526,13.9473684210526,4,82.7121518074216,0.79567832778842,11.5789473684211,45.0822746708708,23.2353191375732,399.243631998698,399.009765625,0.362102853263225
+4364,307574,3794298,307674,3794198,63,43,52.6315789473684,0.256443015245895,19.8610108767704,0.784242424242424,14.6953058096335,0.0155990063264913,0.0221606648199446,2.21606648199446,2,52.7777777777778,0.693201133144476,1.10803324099723,12.7903770804405,0,400.168229844835,399.636199951172,0.518993590352866
+4365,307574,3794198,307674,3794098,64,43,47.6454293628809,0.154765609201031,18.0706968679054,0.550702716329489,18.5450928413615,0.044523064352245,0.304709141274238,30.4709141274238,4,89.8286961818816,0.84099781777413,24.0997229916898,6.59472999139266,0,400.26611328125,400.055389404297,0.295870580458834
+4366,307574,3794098,307674,3793998,65,43,24.9307479224377,0.0404910024072465,9.31510117817255,0.44836244814315,13.6982482188958,0.019593628706759,0.0249307479224377,2.49307479224377,3,55.2231173947812,0.487215909090909,1.93905817174515,6.49022059970432,0,400.562649197049,400.139617919922,0.687062548002226
+4367,307574,3793998,307674,3793898,66,43,10.5263157894737,0.0215952012838648,5.77215675966229,0.289142857142857,21.8214157506186,0.0202200116639975,0.0526315789473684,5.26315789473684,6,51.6736186455258,0.455197132616487,1.57894736842105,29.6498387813568,5.19557523727417,401.021677652995,400.233947753906,0.928406708311584
+4368,307574,3793898,307674,3793798,67,43,3.601108033241,0.0175461010431402,5.35693858035695,0.425925925925926,37.4658256128201,0.015652371232146,0.0166204986149584,1.66204986149584,2,45.2018371240175,0.709456740442656,1.10803324099723,41.265697479248,25.977876663208,400.929070366753,400.215026855469,0.91472476735547
+4369,307574,3793798,307674,3793698,68,43,28.5318559556787,0.0556076433059519,12.3776291963745,0.438690476190476,18.15555915211,0.0292365360309156,0.074792243767313,7.4792243767313,6,64.4735277614544,0.597827600612728,3.8781163434903,8.1958911507218,0,402.744689941406,401.76220703125,1.03354802410494
+4370,307574,3793698,307674,3793598,69,43,32.1329639889197,0.31313041861604,31.5691048339935,0.721264367816092,NA,0.0334526887627891,0.163434903047091,16.3434903047091,5,81.1390824741028,0.74217634073497,11.3573407202216,10.4274444499258,0,403.723220825195,403.400329589844,0.349517533227717
+4371,307574,3793598,307674,3793498,70,43,0,NA,NA,NA,NA,0.0220032177104976,0.0236842105263158,2.36842105263158,3,47.9123996989228,0.487870619946092,1.05263157894737,48.0394944085015,31.6034507751465,403.976118299696,403.780334472656,0.20037783610374
+4372,307574,3793498,307674,3793398,71,43,0,NA,NA,NA,NA,0.0356398439113827,0.240997229916898,24.0997229916898,2,92.2773754599126,0.846997880857076,22.7146814404432,29.383464446013,5.19557523727417,403.73285929362,403.033355712891,0.558914346901853
+4373,307574,3793398,307674,3793298,72,43,4.15512465373961,0.0202455012036233,5.67087561407776,0.409722222222222,11.6176593526411,0.0451541856075431,0.351800554016621,35.180055401662,4,94.2192421967288,0.893143893143893,34.0720221606648,42.0884537471561,5.19557523727417,402.916120741102,402.533416748047,0.72510974964002
+4374,307574,3793298,307674,3793198,73,43,3.32409972299169,0.0323928019257972,7.35378010418478,0.569444444444444,NA,0.0500309722426469,0.484764542936288,48.4764542936288,2,94.9626662081623,0.813725490196079,36.8421052631579,39.2670027133397,0,402.624493916829,402.044250488281,0.577533937168763
+4375,307574,3793198,307674,3793098,74,43,3.68421052631579,0.0188958011233817,5.34446486537166,0.494444444444444,18.7329127343573,0.0389253547611205,0.323684210526316,32.3684210526316,4,86.7481613931598,0.688366980160876,11.5789473684211,31.4859804835746,0,401.605611165365,401.186248779297,0.734920716334032
+4376,307574,3793098,307674,3792998,75,43,33.7950138504155,0.0658653639157877,9.25444854664038,0.413993399339934,17.7456815783344,0.0311051650478123,0.146814404432133,14.6814404432133,5,83.6723297795583,0.690880548023405,11.3573407202216,4.17139022755173,0,400.870900472005,400.683410644531,0.267407404577443
+4377,307574,3792998,307674,3792898,76,43,40.4432132963989,0.394112423430533,28.8674791627091,0.839041095890411,NA,0.0487232405063583,0.398891966759003,39.8891966759003,4,90.754956080357,0.79835218544896,25.4847645429363,12.3122462497817,0,400.746765136719,400.653259277344,0.178715957267363
+4378,307574,3792898,307674,3792798,77,43,0,NA,NA,NA,NA,0.0461540922153789,0.42382271468144,42.382271468144,6,89.80707110424,0.580002737476047,18.2825484764543,60.0303537175546,5.19557523727417,401.884229024251,400.7568359375,1.88946213525791
+4379,307574,3792798,307674,3792698,78,43,0,NA,NA,NA,NA,0.0605709434909697,0.436842105263158,43.6842105263158,3,94.084093620615,0.831714617311099,37.6315789473684,74.4697448345552,7.34765291213989,404.865882025825,403.245147705078,1.93900960898129
+4380,307574,3792698,307674,3792598,79,43,13.2963988919668,0.0647856038515944,14.7102209903813,0.544186046511628,41.5646013505757,0.0333061505115038,0.171745152354571,17.1745152354571,2,91.4079253162264,0.742877492877493,16.8975069252078,6.68761459473641,0,406.023732503255,405.598999023438,0.739264564584042
+4381,307574,3792598,307674,3792498,80,43,25.207756232687,0.245645414603962,19.5814477047882,0.835164835164835,NA,0.0832096124624181,0.781163434903047,78.1163434903047,1,99.2698136948151,0.862049199904466,78.1163434903047,15.7286322438125,0,406.00043741862,405.497436523438,0.729390614783637
+4382,307574,3792498,307674,3792398,81,43,0,NA,NA,NA,NA,0.0174802574581217,0.0249307479224377,2.49307479224377,4,37.2825567342518,0.401751893939394,0.831024930747922,69.4975429111057,51.955753326416,407.073099772135,405.734893798828,1.13904065908532
+4383,307574,3792398,307674,3792298,82,43,3.15789473684211,0.0161964009628986,3.93449583590296,0.28030303030303,54.2433977502533,0.0283383220586984,0.147368421052632,14.7368421052632,6,75.6971703114895,0.721904034618811,8.68421052631579,23.1146101355553,0,408.194546169705,407.481353759766,0.896785989848862
+4384,307574,3792298,307674,3792198,83,43,9.97229916897507,0.0485892028886958,10.3944043870616,0.537037037037037,44.6940278475361,0.027770471706541,0.0914127423822715,9.14127423822715,4,74.1444859964026,0.755420054200542,5.81717451523546,12.9079852248683,0,407.616518656413,406.554107666016,1.00884667063216
+4385,307574,3792198,307674,3792098,84,43,10.5263157894737,0.102577206098358,23.9378513487421,0.653508771929825,NA,0.0529844565258636,0.445983379501385,44.5983379501385,2,96.4067544392351,0.902432432432432,43.7673130193906,13.5238283672688,0,406.223274230957,405.536743164062,0.862340618932589
+4386,307574,3792098,307674,3791998,85,43,14.1274238227147,0.0688347040923191,15.8159104890501,0.625,14.6953058096335,0.0244713672234216,0.193905817174515,19.3905817174515,6,80.6232035785268,0.626826474450311,8.03324099722992,29.2673634733473,0,405.83935546875,405.441833496094,0.597048469238212
+4387,307574,3791998,307674,3791898,86,43,6.8421052631579,0.0233948013908536,9.00150259153422,0.328703703703704,25.9778759930561,0.0358679371722055,0.326315789473684,32.6315789473684,3,92.4465113204771,0.670138888888889,26.3157894736842,22.512211853458,0,406.422653198242,405.51611328125,1.0858186578741
+4388,307574,3791898,307674,3791798,87,43,7.4792243767313,0.0364419021665219,8.44359785629166,0.590277777777778,36.738264700435,0.0451704701667635,0.354570637119114,35.4570637119114,3,91.6955635627574,0.840409659415351,28.5318559556787,51.9869474582374,0,407.322591145833,406.377319335938,1.02149336974634
+4389,307574,3791798,307674,3791698,88,43,14.6814404432133,0.0286136417011209,5.4904116251766,0.326666666666667,19.8711066193439,0.0362567481722465,0.285318559556787,28.5318559556787,3,90.4107001764591,0.803352189398701,23.2686980609418,22.0735342942395,0,407.892435709635,407.166168212891,0.662551641058477
+4390,307574,3791698,307674,3791598,89,43,28.808864265928,0.280737616690243,31.5388840320178,0.772435897435897,NA,0.0374143518008604,0.271468144044321,27.1468144044321,4,89.2567740166522,0.812824058071207,22.1606648199446,9.2505340527515,0,408.229804144965,408.076629638672,0.218839980530622
+4391,307574,3791598,307674,3791498,90,43,27.1052631578947,0.27803821652976,32.1034569244886,0.754045307443366,NA,0.0500094030555996,0.465789473684211,46.5789473684211,2,96.8131059670627,0.788192404453081,45.2631578947368,8.84371603949595,0,407.712069193522,407.426361083984,0.334145802620518
+4392,307574,3791498,307674,3791398,91,43,44.0443213296399,0.214602312758407,25.8588590190666,0.740248599439776,20.7823006752878,0.0414497699965678,0.382271468144044,38.2271468144044,3,91.6430017748925,0.794433767527938,27.1468144044321,3.15998090868411,0,407.813215467665,407.432861328125,0.645241577357712
+4393,307574,3791398,307674,3791298,92,43,24.6537396121884,0.0800822047609987,11.9902969962973,0.506065400843882,22.5141590648952,0.0219466186858087,0.296398891966759,29.6398891966759,2,92.6024127643995,0.837991106034026,23.2686980609418,4.15780147213802,0,408.582005818685,408.122375488281,0.520839257047068
+4394,307574,3791298,307674,3791198,93,43,33.7950138504155,0.0823317048947346,14.6866007781807,0.47707991242474,19.4266715841927,0.0718386353342149,0.6398891966759,63.98891966759,2,97.0740639273771,0.697180082098875,54.2936288088643,5.4848359859351,0,408.772179497613,408.622161865234,0.235533330508973
+4395,307574,3791198,307674,3791098,94,43,49.4736842105263,0.253743615085412,26.5001280417725,0.803658318825052,36.3690261817537,0.0485235384973318,0.494736842105263,49.4736842105263,3,92.5369201823747,0.755447796934866,26.3157894736842,2.85795915126801,0,408.820192972819,408.652099609375,0.215665553021061
+4396,307574,3791098,307674,3790998,95,43,78.6703601108033,0.3833148227886,23.0613978308151,0.766982323232323,15.5867255064659,0.048678362930949,0.57617728531856,57.617728531856,1,98.2365946331393,0.865869517488305,57.617728531856,1.13761125161098,0,408.217373318142,407.875793457031,0.575557085819092
+4397,307574,3790998,307674,3790898,96,43,28.808864265928,0.0561475233380485,8.91325408643705,0.352979797979798,14.7997421532752,0.0446535271720302,0.404432132963989,40.4432132963989,4,94.8227238916609,0.754742618238829,37.9501385041551,6.21498168331303,0,407.399528503418,407.010620117188,0.374338931969481
+4398,307574,3790898,307674,3790798,97,43,45.7063711911357,0.111350256619928,11.450619235372,0.481111111111111,12.9889380519499,0.0591086149265683,0.559556786703601,55.9556786703601,4,94.5660199594646,0.703329140461216,44.5983379501385,4.68901323091866,0,407.01905992296,406.772430419922,0.406432736465572
+4399,307574,3790798,307674,3790698,98,43,33.1578947368421,0.11337480674029,15.0183923994415,0.585669002335669,27.7097343376331,0.0382368508862112,0.352631578947368,35.2631578947368,4,93.1496098947694,0.82906837265094,31.0526315789474,6.20167023744156,0,406.983848571777,406.752777099609,0.403435971335837
+4400,307574,3790698,307674,3790598,99,43,29.9168975069252,0.0416478881903107,7.76895716408869,0.388789682539683,21.189768337353,0.0343513789798449,0.315789473684211,31.5789473684211,4,88.299237374982,0.700197238658777,20.1754385964912,5.49638003773159,0,406.958399454753,406.754119873047,0.352460241354868
+4401,307674,3800598,307774,3800498,0,44,32.6869806094183,0.106176406312335,15.6107895536683,0.724272486772487,14.6725397935234,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.683034896851,383.999389648438,0.475234011374816
+4402,307674,3800498,307774,3800398,1,44,75.2631578947368,0.772028445898167,34.3058759361783,0.91958041958042,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.700080871582,384.452362060547,0.301830844642533
+4403,307674,3800398,307774,3800298,2,44,62.3268698060942,0.607365036108698,31.862687645055,0.878518518518518,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.780944824219,384.390899658203,0.439919272304708
+4404,307674,3800298,307774,3800198,3,44,7.4792243767313,0.0364419021665219,6.50759989004133,0.436666666666667,14.6953058096335,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.172520955404,384.444763183594,0.882645698470454
+4405,307674,3800198,307774,3800098,4,44,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.811639785767,385.533813476562,1.06204958032326
+4406,307674,3800098,307774,3799998,5,44,0,NA,NA,NA,NA,0.0148503931023266,0,0,0,NA,NA,0,NA,NA,388.235967000326,387.594390869141,0.90291203345158
+4407,307674,3799998,307774,3799898,6,44,0,NA,NA,NA,NA,0.0224389775771934,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,92.3466186523438,88.4774551391602,389.190469741821,388.811218261719,0.545733915706139
+4408,307674,3799898,307774,3799798,7,44,17.1745152354571,0.167362809949952,26.2565066183987,0.755376344086022,NA,0.0236020251559869,0.0803324099722992,8.03324099722992,4,69.484333807256,0.652973596513714,3.601108033241,6.18625338324185,0,389.545562744141,389.360931396484,0.311525438973141
+4409,307674,3799798,307774,3799698,8,44,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0582284979029479,0.714681440443213,71.4681440443213,1,98.9839537105949,0.79682003658365,71.4681440443213,0,0,390.21866607666,389.512634277344,0.677096574637542
+4410,307674,3799698,307774,3799598,9,44,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0445082038640976,0.331578947368421,33.1578947368421,3,90.7201248832044,0.790943162672351,25.5263157894737,0,0,391.028587341309,390.774719238281,0.24329473193827
+4411,307674,3799598,307774,3799498,10,44,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0460344039192655,0.332409972299169,33.2409972299169,3,89.7040253997865,0.711408884997526,19.1135734072022,0,0,391.245290756226,391.158538818359,0.0900416449501246
+4412,307674,3799498,307774,3799398,11,44,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0540128665153257,0.559556786703601,55.9556786703601,3,95.8087370176651,0.87285534591195,51.5235457063712,0,0,391.284559249878,391.16748046875,0.10985381592431
+4413,307674,3799398,307774,3799298,12,44,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0414533715387497,0.315789473684211,31.5789473684211,3,89.4420026901436,0.858103061986557,26.8698060941828,0,0,391.092089335124,390.884429931641,0.228040468268135
+4414,307674,3799298,307774,3799198,13,44,99.4736842105263,1.02037326066261,38.6816935335899,0.931216931216931,NA,0.0399305469463702,0.376315789473684,37.6315789473684,7,88.4287568840615,0.712371565690727,26.3157894736842,0,0,390.72541809082,390.487060546875,0.24665429234374
+4415,307674,3799198,307774,3799098,14,44,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0442980837828765,0.293628808864266,29.3628808864266,6,84.1424214971488,0.629401498819423,14.404432132964,0,0,390.703468322754,390.385833740234,0.519560471108228
+4416,307674,3799098,307774,3798998,15,44,71.7451523545706,0.349572320782562,19.8292085356831,0.692460317460317,15.5867255064659,0.0342246187112998,0.271468144044321,27.1468144044321,3,88.1480380239785,0.828422053231939,13.2963988919668,0.234024271673086,0,391.804368972778,390.981903076172,0.706077557425903
+4417,307674,3798998,307774,3798898,16,44,75.9002770083102,0.73963564397237,34.2611198501802,0.90389294403893,NA,-0.000714371922077486,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,392.669138590495,392.442962646484,0.422160543113258
+4418,307674,3798898,307774,3798798,17,44,90.7894736842105,0.93129305536667,37.2913310441356,0.922222222222222,NA,0.0186557037467106,0.0842105263157895,8.42105263157895,4,71.64515553456,0.706012378426171,3.68421052631579,0.162361726164818,0,393.25918006897,392.881164550781,0.367433029989435
+4419,307674,3798798,307774,3798698,18,44,97.5069252077562,0.950188856490052,37.3546947829673,0.927083333333333,NA,0.0145295432344217,0.074792243767313,7.4792243767313,1,85.2413794174021,0.949728450076591,7.4792243767313,0,0,393.368957519531,393.081024169922,0.308711583127151
+4420,307674,3798698,307774,3798598,19,44,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,-0.00211276105183262,0,0,0,NA,NA,0,NA,NA,393.415864944458,393.088928222656,0.410620780758944
+4421,307674,3798598,307774,3798498,20,44,91.4127423822715,0.890802052959424,36.3654412198551,0.925252525252525,NA,0.0159141582572019,0.102493074792244,10.2493074792244,1,88.2023291177678,0.981734466707144,10.2493074792244,0,0,393.629198710124,393.157592773438,0.552230771396049
+4422,307674,3798498,307774,3798398,21,44,56.3157894736842,0.577671634343384,31.5639129876177,0.88785046728972,NA,0.0111187888004727,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,393.85124206543,393.267456054688,0.655800893018233
+4423,307674,3798398,307774,3798298,22,44,54.016620498615,0.263191515647102,21.6910059201324,0.846439847125291,25.9778758441098,0.0109747075051464,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,0,0,393.875704447428,393.408020019531,0.554741758543998
+4424,307674,3798298,307774,3798198,23,44,84.4875346260388,0.823317048947346,35.8131608256399,0.913114754098361,NA,0.00976599685514718,0.0470914127423823,4.70914127423823,2,70.1711717468407,0.832093023255814,3.04709141274238,1.65470316830803,0,393.722085952759,393.522644042969,0.28528130326927
+4425,307674,3798198,307774,3798098,24,44,91.4127423822715,0.890802052959424,36.0901053346744,0.926262626262626,NA,0.022943000869287,0.160664819944598,16.0664819944598,1,91.6954320870293,0.821287128712871,16.0664819944598,1.33586183909712,0,393.578275044759,393.488922119141,0.139381747214506
+4426,307674,3798098,307774,3797998,25,44,41.5789473684211,0.213252612678165,24.1448701642849,0.557869142351901,31.6034499687999,0.0516698832564496,0.397368421052632,39.7368421052632,3,92.0510821284338,0.826273390821812,23.6842105263158,11.583790270698,0,393.661268234253,393.501068115234,0.209063798636368
+4427,307674,3797998,307774,3797898,26,44,52.3545706371191,0.255093315165653,19.2009303168263,0.734010780885781,39.5683219745072,0.0598957832185394,0.50415512465374,50.415512465374,3,92.4224597860197,0.736684183478938,27.7008310249307,9.03747348733001,0,394.109378814697,393.775268554688,0.362498595960144
+4428,307674,3797898,307774,3797798,27,44,73.1301939058172,0.712641642367539,33.3734002154927,0.892676767676768,NA,0.0316947387463467,0.277008310249307,27.7008310249307,4,87.862620072948,0.792528735632184,17.1745152354571,4.74571249961853,0,394.513033548991,394.186462402344,0.357647513784868
+4429,307674,3797798,307774,3797698,28,44,34.9030470914127,0.0850311050552177,13.2399644186438,0.58894420736526,12.9889379999919,0.0118407625061857,0.0775623268698061,7.75623268698061,6,65.8788501919627,0.68682015348682,4.98614958448754,7.02921118055071,0,394.816272735596,394.530364990234,0.223333181372425
+4430,307674,3797698,307774,3797598,29,44,6.8421052631579,0.0116974006954268,4.82655571120028,0.171156004489338,18.2962095330078,0.043163699391095,0.336842105263158,33.6842105263158,4,91.3786663229938,0.851147898358199,27.8947368421053,24.1608018800616,5.19557523727417,394.956792195638,394.917816162109,0.0847089198234374
+4431,307674,3797598,307774,3797498,30,44,72.5761772853186,0.707242842046573,34.1988951558228,0.883587786259542,NA,0.0385984317726173,0.271468144044321,27.1468144044321,5,87.512748472676,0.69583909436571,17.1745152354571,4.24244758547569,0,394.020481109619,391.753723144531,2.06672668623176
+4432,307674,3797498,307774,3797398,31,44,19.1135734072022,0.0620862036911113,12.7218934069804,0.482105420784666,14.9924457085776,0.0224573206163506,0.0914127423822715,9.14127423822715,8,59.1149248184568,0.571985094850949,3.8781163434903,15.3654300371806,0,392.775349934896,389.42138671875,3.08053503272555
+4433,307674,3797398,307774,3797298,32,44,34.0720221606648,0.332026219739422,37.7993894142611,0.714092140921409,NA,-0.0672795148893683,0,0,0,NA,NA,0,NA,NA,398.35083770752,395.86376953125,2.21718304878337
+4434,307674,3797298,307774,3797198,33,44,54.4736842105263,0.558775833220002,33.2148938614441,0.837359098228664,NA,-0.00703453995336435,0.142105263157895,14.2105263157895,2,85.152871392478,0.736790025727291,7.89473684210526,0.96214356245818,0,398.941815694173,398.734344482422,0.482515787833903
+4435,307674,3797198,307774,3797098,34,44,19.3905817174515,0.0944790056169086,12.8761873417264,0.749588815789474,20.7823008831198,0.0468618015628008,0.373961218836565,37.3961218836565,3,94.4712545884354,0.850654723361393,35.4570637119114,13.8361402229027,0,398.245483398438,397.796356201172,0.497019505994404
+4436,307674,3797098,307774,3796998,35,44,0,NA,NA,NA,NA,0.0219506658622411,0.196675900277008,19.6675900277008,4,85.2583432633655,0.830703448275862,16.0664819944598,59.8119607844823,25.977876663208,397.592549641927,397.278411865234,0.314630799983165
+4437,307674,3796998,307774,3796898,36,44,7.75623268698061,0.0377916022467634,5.96982312338458,0.345679012345679,31.1734510129318,0.0260037684451984,0.243767313019391,24.3767313019391,3,87.4318169412906,0.789435617461095,14.9584487534626,19.6550015048547,0,397.29295539856,396.759552001953,0.301751168002248
+4438,307674,3796898,307774,3796798,37,44,0.263157894736842,0.0026994001604831,0,0,NA,0.0290951153858163,0.202631578947368,20.2631578947368,2,89.8892809952991,0.815569792273345,15.7894736842105,40.0633414379962,15.5867252349854,397.230730692546,396.673706054688,0.457991974603435
+4439,307674,3796798,307774,3796698,38,44,26.5927977839335,0.0863808051354593,7.72429250868692,0.329151732377539,37.8734140055229,0.0381547109120278,0.290858725761773,29.0858725761773,3,87.9136261235793,0.82093253968254,13.8504155124654,9.33000253041585,0,397.735664367676,397.354644775391,0.375263597749136
+4440,307674,3796698,307774,3796598,39,44,42.6592797783933,0.415707624714398,38.4356236838092,0.744588744588745,NA,0.0371368277556433,0.310249307479224,31.0249307479224,3,91.2532650798342,0.734442721380572,23.2686980609418,6.10834314141955,0,398.380712509155,397.967651367188,0.419853371257072
+4441,307674,3796598,307774,3796498,40,44,40.4432132963989,0.197056211715266,24.465371567424,0.666920634920635,11.6176592829322,0.0510578424424072,0.451523545706371,45.1523545706371,1,97.2878063612382,0.854141414141414,45.1523545706371,6.77635149282912,0,398.917694091797,398.664245605469,0.370911310762168
+4442,307674,3796498,307774,3796398,41,44,26.5927977839335,0.0518284830812756,9.06308015191587,0.423611111111111,21.0733671715793,0.062943805336444,0.520775623268698,52.0775623268698,1,97.8571254487222,0.886070692977211,52.0775623268698,10.6058764305521,0,399.143592834473,398.880828857422,0.224049963712506
+4443,307674,3796398,307774,3796298,42,44,26.3157894736842,0.134970008024155,19.4975517982503,0.450458190148912,15.5867256623399,0.0355003037309775,0.281578947368421,28.1578947368421,4,89.595994886705,0.70430260585701,18.6842105263158,14.2441991779292,0,399.016751607259,398.557250976562,0.499991069788355
+4444,307674,3796298,307774,3796198,43,44,32.9639889196676,0.321228619097489,34.1165679736384,0.781512605042017,NA,0.038026176200068,0.326869806094183,32.6869806094183,2,91.8990620153876,0.854217145494404,21.0526315789474,14.3601231777062,0,398.515182495117,397.924285888672,0.659847697752662
+4445,307674,3796198,307774,3796098,44,44,8.86426592797784,0.0863808051354593,13.5741690988985,0.708333333333333,NA,0.0224310479553673,0.149584487534626,14.9584487534626,4,80.0419158873341,0.797695352176806,9.14127423822715,27.5594950605322,0,397.800755818685,397.352233886719,0.670136946346825
+4446,307674,3796098,307774,3795998,45,44,18.5595567867036,0.0602866035841226,7.77407268152212,0.426484674329502,27.9788209148496,0.0291907816454027,0.193905817174515,19.3905817174515,4,81.9541160635318,0.78819880982315,9.69529085872576,8.80796055793762,0,396.465177536011,395.415222167969,1.0379383163536
+4447,307674,3795998,307774,3795898,46,44,10.2631578947368,0.0526383031294205,15.7536338740504,0.531702898550725,77.9336283116994,0.0341494119246674,0.278947368421053,27.8947368421053,2,92.6806300491007,0.854778920013758,23.6842105263158,13.7956299781799,0,395.114911397298,394.900268554688,0.368980901099834
+4448,307674,3795898,307774,3795798,47,44,14.9584487534626,0.0728838043330438,13.3574057495258,0.674942528735632,44.3910137562246,0.0451208995859148,0.277008310249307,27.7008310249307,2,91.0731937712913,0.90779054916986,20.2216066481994,21.2035924768448,0,394.772972106934,394.722015380859,0.117378944673339
+4449,307674,3795798,307774,3795698,48,44,56.2326869806094,0.273989116289035,27.2931485712392,0.774838187702265,20.7823006752878,0.0408606158978682,0.332409972299169,33.2409972299169,6,85.6232421701101,0.725151319045262,15.7894736842105,3.61499675512314,0,395.312428792318,394.851928710938,0.933247077293225
+4450,307674,3795698,307774,3795598,49,44,35.4570637119114,0.0691046441083674,12.3262846681656,0.528233579576863,14.1677241766636,0.0391644797498461,0.285318559556787,28.5318559556787,10,75.8671650734865,0.591577624135764,6.09418282548476,6.36422377188229,0,396.744243621826,396.154815673828,0.807211626592914
+4451,307674,3795598,307774,3795498,50,44,51.3157894736842,0.263191515647102,25.7498367012069,0.771380952380953,23.2353185658643,0.0383119804780443,0.263157894736842,26.3157894736842,5,86.848124423234,0.728571428571429,17.1052631578947,6.97378197193146,0,397.203414916992,396.793975830078,0.463338293751078
+4452,307674,3795498,307774,3795398,51,44,34.6260387811634,0.0843562550150969,16.6236277176853,0.576883802816901,17.7388032424607,0.0423622398738091,0.28808864265928,28.808864265928,6,85.0027586246215,0.714559187665161,16.8975069252078,4.83743226528168,0,397.348426818848,396.913757324219,0.42461800414145
+4453,307674,3795398,307774,3795298,52,44,38.781163434903,0.0944790056169086,19.1339768887687,0.606944444444445,17.5813820194395,0.0400831126279025,0.310249307479224,31.0249307479224,6,84.5998545831522,0.633961588929977,13.0193905817175,3.91123406801905,0,398.084289550781,397.349700927734,0.782948747761491
+4454,307674,3795298,307774,3795198,53,44,29.6398891966759,0.0577671634343384,15.1652628931186,0.495606060606061,16.7537614906373,0.0421387237120017,0.349030470914127,34.9030470914127,3,89.6304470634241,0.765214159620924,14.1274238227147,4.88634040999034,0,398.944360733032,398.225555419922,0.542556918756836
+4455,307674,3795198,307774,3795098,54,44,9.47368421052632,0.0323928019257972,9.97568518173422,0.351851851851852,30.999390561431,0.0401218051939826,0.305263157894737,30.5263157894737,2,94.5574911683071,0.794372294372294,28.9473684210526,10.5176465388002,0,399.16526222229,398.910400390625,0.351898235385696
+4456,307674,3795098,307774,3794998,55,44,45.983379501385,0.224050213320097,26.2195303373615,0.798129651390521,31.1734510129318,0.0293579393632741,0.168975069252078,16.8975069252078,7,70.3326859123895,0.670786163522013,3.601108033241,1.65357388824713,0,398.829427083333,398.632659912109,0.296487755963269
+4457,307674,3794998,307774,3794898,56,44,0,NA,NA,NA,NA,0.00931997823217168,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911504745483,10.3911504745483,398.544073104858,398.454895019531,0.11273592832474
+4458,307674,3794898,307774,3794798,57,44,16.3434903047091,0.0796323047342515,11.5465239000325,0.464912280701754,41.8880662648159,0.013769097327895,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0,398.427757263184,398.409393310547,0.0342613446202262
+4459,307674,3794798,307774,3794698,58,44,21.3157894736842,0.0546628532497828,14.0273223550697,0.502868357487923,18.6672222248954,-0.00732839995434915,0,0,0,NA,NA,0,NA,NA,398.427459716797,398.392486572266,0.0593094833987221
+4460,307674,3794698,307774,3794598,59,44,41.5512465373961,0.101227506018116,12.5197808778992,0.451310685685686,17.0964007481854,0.0281856798648627,0.232686980609418,23.2686980609418,1,94.0385002375449,0.938773532333487,23.2686980609418,11.7385551702409,0,398.529647827148,398.424682617188,0.160822554557732
+4461,307674,3794598,307774,3794498,60,44,14.9584487534626,0.145767608666088,16.1864714832694,0.783950617283951,NA,0.0131227149934217,0.155124653739612,15.5124653739612,4,81.0823532989222,0.755957410850093,8.03324099722992,16.780891094889,5.19557523727417,398.668991088867,398.498474121094,0.211413482569729
+4462,307674,3794498,307774,3794398,61,44,17.7285318559557,0.0863808051354593,13.1448707922726,0.596604938271605,10.3911503376439,0.0263336718083557,0.191135734072022,19.1135734072022,5,81.501178389266,0.765000566059096,9.14127423822715,17.3031243655993,0,398.79736328125,398.624053955078,0.182341605566142
+4463,307674,3794398,307774,3794298,62,44,37.1052631578947,0.380615422628117,28.9104086323262,0.775413711583924,NA,0.0344690083778819,0.231578947368421,23.1578947368421,4,88.1605985439338,0.767908559462525,17.8947368421053,14.8266581567851,0,398.986194610596,398.750854492188,0.267937650626673
+4464,307674,3794298,307774,3794198,63,44,45.4293628808864,0.442701626319229,31.0707388005354,0.832317073170732,NA,0.0158022810826984,0,0,0,NA,NA,0,NA,NA,399.440887451172,398.754486083984,0.720103252514009
+4465,307674,3794198,307774,3794098,64,44,29.6398891966759,0.288835817171692,29.0353178928231,0.725856697819315,NA,0.0447509520504921,0.357340720221607,35.7340720221607,2,94.8933348170685,0.860950110051357,33.7950138504155,12.1794850992602,0,399.415182113647,398.439727783203,0.839068745182528
+4466,307674,3794098,307774,3793998,65,44,11.3573407202216,0.0553377032899036,9.01051577141024,0.498538011695906,23.2353187052823,0.0140695386109953,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,33.8526518344879,25.977876663208,399.059776306152,398.450866699219,0.803136176790478
+4467,307674,3793998,307774,3793898,66,44,16.3157894736842,0.0334725619899905,6.86626097208859,0.451381461675579,17.8335807336058,0.0272390186807714,0.142105263157895,14.2105263157895,3,84.6290171066187,0.799459067220793,11.5789473684211,28.6149314332891,0,399.453470230103,398.952392578125,0.716993503396792
+4468,307674,3793898,307774,3793798,67,44,33.7950138504155,0.109775606526313,14.0220156200413,0.545533170533171,16.724304098185,0.0250195527273579,0.174515235457064,17.4515235457064,4,80.6946052909599,0.768730933496034,8.31024930747922,9.75275309880575,0,399.562299092611,399.027465820312,0.998732618510807
+4469,307674,3793798,307774,3793698,68,44,22.1606648199446,0.053988003209662,11.1837891930836,0.435952380952381,19.9049697821103,0.0240060303643523,0.0470914127423823,4.70914127423823,5,51.307854974803,0.496279069767442,1.93905817174515,25.7939696872936,0,401.741077423096,400.069763183594,1.412223163603
+4470,307674,3793698,307774,3793598,69,44,7.4792243767313,0.0242946014443479,6.20287318898509,0.495138888888889,41.6263749854254,0.0267334353092315,0.130193905817175,13.0193905817174,10,59.7774023646303,0.568869426751592,3.04709141274238,16.2060887762841,0,403.107347488403,402.319366455078,0.760968394857878
+4471,307674,3793598,307774,3793498,70,44,0,NA,NA,NA,NA,0.0217752653751679,0.0394736842105263,3.94736842105263,7,36.4471991238195,0.38480697384807,1.05263157894737,50.7115442911784,16.4298515319824,403.621393839518,402.971496582031,0.542968855662885
+4472,307674,3793498,307774,3793398,71,44,32.409972299169,0.315829818776523,26.9355546162394,0.799145299145299,NA,0.0370741276721644,0.243767313019391,24.3767313019391,4,86.1567052566324,0.814703343365764,11.3573407202216,3.60183515873822,0,403.649339675903,403.027984619141,0.458047096109442
+4473,307674,3793398,307774,3793298,72,44,19.3905817174515,0.0629860037446057,12.5757789319958,0.413782635094111,32.6347358218153,0.0487488789296141,0.315789473684211,31.5789473684211,2,91.5070867839631,0.865197908887229,24.0997229916898,10.9020144437489,0,403.020886739095,402.601470947266,0.5787692093273
+4474,307674,3793298,307774,3793198,73,44,21.8836565096953,0.106626306339083,15.8258386871505,0.666252072968491,46.7601769870196,0.0300022267443521,0.185595567867036,18.5595567867036,3,84.7247814689534,0.769114483400198,12.1883656509695,12.1398924429025,0,402.848642349243,402.178527832031,0.690886041489108
+4475,307674,3793198,307774,3793098,74,44,0.526315789473684,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0338057092336768,0.186842105263158,18.6842105263158,6,79.8180221913471,0.704854368932039,8.68421052631579,37.5460441213259,0,402.132621765137,401.513061523438,0.85961553216592
+4476,307674,3793098,307774,3792998,75,44,11.6343490304709,0.0377916022467634,5.77163413630936,0.276353276353276,15.8677675430672,0.035195780845565,0.210526315789474,21.0526315789474,3,87.588438477426,0.773134328358209,12.7423822714681,8.13483699999358,0,401.319995880127,400.864135742188,0.639307718779047
+4477,307674,3792998,307774,3792898,76,44,42.1052631578947,0.205154412196716,12.8070984356041,0.43598233995585,15.5867256623399,0.0869247693506552,0.842105263157895,84.2105263157895,1,99.5015292450824,0.823152995927865,84.2105263157895,8.93833013584739,0,401.756980895996,400.855987548828,1.44030503661881
+4478,307674,3792898,307774,3792798,77,44,0,NA,NA,NA,NA,0.0328388088600455,0.171745152354571,17.1745152354571,6,85.5918279278352,0.787594450637929,15.2354570637119,72.209179078379,29.3906116485596,404.662115097046,401.681091308594,2.37336475704787
+4479,307674,3792798,307774,3792698,78,44,8.94736842105263,0.0917796054564255,15.4957926079749,0.720588235294118,NA,0.0405382516480275,0.228947368421053,22.8947368421053,4,84.4343354453671,0.765716173070571,9.47368421052632,47.1388603243335,0,406.622179667155,405.714233398438,0.787989044414351
+4480,307674,3792698,307774,3792598,79,44,23.2686980609418,0.11337480674029,17.693903862106,0.684027777777778,14.6953058096335,0.0285513917174323,0.152354570637119,15.2354570637119,5,76.6881591008474,0.71437908496732,6.92520775623269,4.53891373547641,0,406.78528213501,406.47998046875,0.403646251826514
+4481,307674,3792598,307774,3792498,80,44,0.831024930747922,0.00404910024072465,1.29889380519499,0.0833333333333333,31.1734513246797,0.0622000493680983,0.590027700831025,59.0027700831025,3,97.636239819954,0.753617253617254,57.617728531856,45.6752844841827,0,406.912000020345,406.542144775391,0.366856463840943
+4482,307674,3792498,307774,3792398,81,44,0,NA,NA,NA,NA,0.028220703756626,0.146814404432133,14.6814404432133,5,76.1594839324504,0.678000570857714,7.20221606648199,87.436736916596,62.3469009399414,407.358192443848,406.830444335938,0.779078466415239
+4483,307674,3792398,307774,3792298,82,44,5,0.0256443015245895,6.49746711373125,0.523504273504273,72.179237564398,0.0266408361359457,0.105263157894737,10.5263157894737,4,73.2263524299886,0.683055311676909,4.47368421052632,20.4265783190727,0,408.820070902507,408.295104980469,0.609126373968252
+4484,307674,3792298,307774,3792198,83,44,27.7008310249307,0.0899800053494367,12.1228122963555,0.731189698101463,17.3185839999892,0.0374818145701938,0.307479224376731,30.7479224376731,3,89.8290746321708,0.76174,17.1745152354571,12.3860638249028,0,408.699371337891,408.179656982422,0.576806629987
+4485,307674,3792198,307774,3792098,84,44,13.5734072022161,0.022045101310612,5.25437682316124,0.407679974346641,15.5867255584239,0.0503970078881388,0.409972299168975,40.9972299168975,5,91.9271071647384,0.737331739514578,31.5789473684211,15.8025205425314,0,407.603321075439,406.446502685547,1.03198616033083
+4486,307674,3792098,307774,3791998,85,44,7.75623268698061,0.0377916022467634,9.83209122558552,0.528966131907308,90.7368196136137,0.0332615233721269,0.229916897506925,22.9916897506925,7,84.0743915196953,0.708486272206724,15.5124653739612,22.4570153535131,0,407.025886535645,406.341949462891,0.988883970012632
+4487,307674,3791998,307774,3791898,86,44,7.63157894736842,0.0782826046540099,12.9179799288167,0.724137931034483,NA,0.0324883498756351,0.257894736842105,25.7894736842105,4,90.8489005315082,0.777965828497743,22.8947368421053,16.5219256342674,0,408.058889389038,406.615509033203,1.21912057619511
+4488,307674,3791898,307774,3791798,87,44,11.3573407202216,0.0368918021932691,6.98100927313554,0.41690408357075,15.4902124701882,0.0391961803753094,0.299168975069252,29.9168975069252,6,87.956505376286,0.817066990980034,24.0997229916897,46.47107301818,5.19557523727417,408.80913289388,407.863952636719,0.732331798046603
+4489,307674,3791798,307774,3791698,88,44,44.0443213296399,0.143068208505604,16.824513183575,0.49273893954745,17.3185839999892,0.0385695083926362,0.285318559556787,28.5318559556787,5,88.8614599956725,0.818478944060339,23.2686980609418,3.25031786983453,0,408.800790786743,408.543121337891,0.437917412319559
+4490,307674,3791698,307774,3791598,89,44,49.0304709141274,0.238896914202754,19.3030110020254,0.355113636363636,16.4298513045218,0.035258462722381,0.296398891966759,29.6398891966759,3,92.4062506431811,0.77907878095549,25.7617728531856,2.81974394076338,0,408.278213500977,408.029876708984,0.359166977567267
+4491,307674,3791598,307774,3791498,90,44,32.6315789473684,0.0836814049749762,11.4192534709707,0.457440476190476,15.8933528901102,0.0360700222661475,0.25,25,4,91.2443669245586,0.780392156862745,22.6315789473684,6.8188940600345,0,407.905765533447,407.670715332031,0.303362862602359
+4492,307674,3791498,307774,3791398,91,44,65.0969529085873,0.634359037713529,35.3796954165906,0.846808510638298,NA,0.0588754720508941,0.667590027700831,66.7590027700831,1,98.7561244991023,0.826185185185185,66.7590027700831,1.91427006266424,0,408.727335611979,408.040985107422,0.780023187657137
+4493,307674,3791398,307774,3791298,92,44,55.4016620498615,0.53988003209662,32.9628500257722,0.879166666666667,NA,0.0411236324845878,0.493074792243767,49.3074792243767,1,97.6438321717104,0.898068330924975,49.3074792243767,2.5604655421182,0,409.247484207153,409.068237304688,0.276851101135894
+4494,307674,3791298,307774,3791198,93,44,72.8531855955679,0.709942242207056,38.0233332045574,0.871989860583017,NA,0.0698880741229281,0.700831024930748,70.0831024930748,1,98.9193346356796,0.837806688545085,70.0831024930748,0.349109798552019,0,409.154917399089,408.938781738281,0.238517037467872
+4495,307674,3791198,307774,3791098,94,44,62.8947368421053,0.322578319177731,20.9525052138295,0.684425036390102,20.7823008831198,0.060925130935778,0.678947368421053,67.8947368421053,2,97.3197230968371,0.793639480025795,60.2631578947368,2.06168084920839,0,408.915800094604,408.575012207031,0.322379526642831
+4496,307674,3791098,307774,3790998,95,44,73.4072022160665,0.178835260632005,10.3701907422062,0.357526350461133,13.455466363813,0.0627352910379459,0.684210526315789,68.4210526315789,1,98.8392163908112,0.746392496392496,68.4210526315789,1.6040650784728,0,408.158447265625,407.781280517578,0.532840326789635
+4497,307674,3790998,307774,3790898,96,44,20.4986149584488,0.0399511223751499,8.40700256116739,0.289814814814815,14.7162357313428,0.044082282070255,0.354570637119114,35.4570637119114,4,90.9238515134576,0.63427213616018,25.7617728531856,11.2012748271227,0,407.209348678589,406.728454589844,0.524177583674942
+4498,307674,3790898,307774,3790798,97,44,26.0387811634349,0.0507487230170823,10.3062428696766,0.511210826210826,13.8817182235183,0.0512469067419505,0.418282548476454,41.8282548476454,5,93.3370889608649,0.652466907340554,34.0720221606648,10.5327023101958,0,406.606218973796,406.46875,0.195513385847604
+4499,307674,3790798,307774,3790698,98,44,37.3684210526316,0.3833148227886,33.7694854407278,0.836854460093897,NA,0.0421405383362358,0.363157894736842,36.3157894736842,3,94.3192616666739,0.806834579561852,32.1052631578947,8.55428951373999,0,406.509925842285,406.427520751953,0.133178180146733
+4500,307674,3790698,307774,3790598,99,44,21.3296398891967,0.0519634530892997,9.88763756459646,0.55316027926322,18.0539678042093,0.0286997272827042,0.225146198830409,22.5146198830409,3,87.6038621200055,0.734295227524972,14.9122807017544,8.61137668807785,0,406.673160552979,406.507202148438,0.169260130814948
+4501,307774,3800598,307874,3800498,0,45,16.3157894736842,0.055787603316631,9.25326470566749,0.52457264957265,20.9955023285718,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.493542989095,384.069488525391,1.65847147558955
+4502,307774,3800498,307874,3800398,1,45,92.75,0.500738729769438,30.6324658286442,0.862800560661233,10.3911504415562,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.958319769965,383.658569335938,0.585916341350242
+4503,307774,3800398,307874,3800298,2,45,85.7894736842105,0.88000445231718,37.2601250132559,0.889570552147239,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.003504435221,383.669097900391,0.454666429137606
+4504,307774,3800298,307874,3800198,3,45,22.1052631578947,0.11337480674025,15.0873448227942,0.570833333333333,10.3911504415562,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.359381781684,384.097290039062,0.549238190508604
+4505,307774,3800198,307874,3800098,4,45,21.5789473684211,0.221350813159536,25.6140298908625,0.808943089430894,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.500282287598,384.694702148438,1.10784033502096
+4506,307774,3800098,307874,3799998,5,45,23,0.248344814764358,29.1046251688568,0.813405797101449,NA,0.0106343475999893,0,0,0,NA,NA,0,NA,NA,386.918501112196,386.027130126953,1.38761455650963
+4507,307774,3799998,307874,3799898,6,45,25.2631578947368,0.259142415406286,26.260757834503,0.824652777777778,NA,0.00636796796714311,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,76.4432487487793,75.6487197875977,388.133092244466,387.038909912109,1.30460367171322
+4508,307774,3799898,307874,3799798,7,45,30.2631578947368,0.310431018455447,38.9375762618286,0.749275362318841,NA,0.0181964772710145,0.0815789473684211,8.15789473684211,3,78.6513104527764,0.69512893982808,6.31578947368421,0.167599201202393,0,388.908626980252,388.296417236328,0.817592227388057
+4509,307774,3799798,307874,3799698,8,45,97.6315789473684,1.00147745953888,38.6066462488828,0.921383647798742,NA,0.0595237402000317,0.686842105263158,68.6842105263158,2,98.5829741124887,0.771442319258992,68.1578947368421,0.127684019534524,0,389.811777750651,389.201293945312,0.715792601292557
+4510,307774,3799698,307874,3799598,9,45,96.75,1.04466786210659,39.5753170704263,0.912575366063738,NA,0.0498414577962831,0.5,50,3,94.4497535613616,0.811320754716981,35.75,0.233800885677338,0,391.054297553168,390.760467529297,0.483092518897821
+4511,307774,3799598,307874,3799498,10,45,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0522719472793764,0.439473684210526,43.9473684210526,4,91.5861409402037,0.72776050240839,21.3157894736842,0,0,391.313046773275,391.226654052734,0.0804297143386332
+4512,307774,3799498,307874,3799398,11,45,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0524420380886448,0.523684210526316,52.3684210526316,6,92.2185736964478,0.766728054020872,33.421052631579,0,0,391.390065511068,391.327423095703,0.0887721141291242
+4513,307774,3799398,307874,3799298,12,45,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0538888993525976,0.621052631578947,62.1052631578947,5,95.1868831772499,0.694822373393802,48.9473684210526,0,0,391.204237196181,391.014312744141,0.272874230618257
+4514,307774,3799298,307874,3799198,13,45,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0938391019916162,0.8575,85.75,1,99.5794816088838,0.924193199047,85.75,0,0,390.683013916016,390.431457519531,0.414055292745187
+4515,307774,3799198,307874,3799098,14,45,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0417705300288569,0.215789473684211,21.5789473684211,2,89.0597328416603,0.788937745892155,11.5789473684211,0,0,390.282114664714,390.086761474609,0.547080850651062
+4516,307774,3799098,307874,3798998,15,45,95.5263157894737,0.48994112912751,21.0988307055184,0.609853760445683,15.5867255064659,0.0408176416540683,0.323684210526316,32.3684210526316,1,95.9030250324652,0.966847551080944,32.3684210526316,0,0,391.654342651367,390.630859375,1.00590261456922
+4517,307774,3798998,307874,3798898,16,45,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0244459478796527,0.155263157894737,15.5263157894737,2,89.0556367299595,0.791094007696536,14.2105263157895,0,0,392.954911973741,392.503509521484,0.617235352521285
+4518,307774,3798898,307874,3798798,17,45,87.75,0.947489456329234,38.4651596079724,0.886039886039886,NA,0.0236967664534586,0.0275,2.75,4,44.197155902927,0.451585261353899,1,0,0,393.582867940267,393.384704589844,0.20294739853878
+4519,307774,3798798,307874,3798698,18,45,98.9473684210526,1.01497446034129,38.6106376428809,0.930851063829787,NA,0.0155500614540774,0.0394736842105263,3.94736842105263,2,72.1272551186058,0.668742216687422,3.42105263157895,1.03911504745483,0,393.726698133681,393.639587402344,0.0966767907336273
+4520,307774,3798698,307874,3798598,19,45,100,1.02577206098322,38.731321195904,0.932456140350877,NA,0.0106392688985579,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,0,0,393.906122843424,393.730224609375,0.235532011131073
+4521,307774,3798598,307874,3798498,20,45,86.3157894736842,0.885403252638144,37.5215930370819,0.907520325203252,NA,0.0275031630977633,0.0789473684210526,7.89473684210526,2,79.2726597555226,0.867055393586006,5.78947368421053,1.49810628890991,0,394.337561713325,394.227722167969,0.28266464696177
+4522,307774,3798498,307874,3798398,21,45,73.25,0.790924247021269,37.0673822213548,0.892491467576792,NA,0.0236999667977943,0.02,2,2,58.1510768543717,0.795918367346939,1.75,8.44280976057053,5.19557523727417,394.792536417643,394.478942871094,0.362908068069289
+4523,307774,3798398,307874,3798298,22,45,48.4210526315789,0.248344814764358,27.4410468261724,0.811506140917906,15.5867256623344,0.0189174446896734,0.0605263157894737,6.05263157894737,3,69.5899296316903,0.70432617491441,3.42105263157895,10.9301342342211,0,394.776624891493,394.481994628906,0.409080282521565
+4524,307774,3798298,307874,3798198,23,45,26.8421052631579,0.0458898027281965,9.62198427074046,0.374244142101285,16.5851267364383,0.00730406257530137,0.0394736842105263,3.94736842105263,3,65.0516225645038,0.763387297633873,3.15789473684211,3.26081698735555,0,394.277338663737,393.924255371094,0.441493115486086
+4525,307774,3798198,307874,3798098,24,45,22.3684210526316,0.0573622534102456,9.3358859750427,0.486251686909582,16.0082884834278,0.0133055090367634,0.0263157894736842,2.63157894736842,2,58.9660910078803,0.762993762993763,1.57894736842105,13.5069089412689,0,393.986056857639,393.791900634766,0.332065143958215
+4526,307774,3798098,307874,3797998,25,45,55.75,0.200655411929173,15.8833275920293,0.677413830014986,22.51415913417,0.0241454364308447,0.105,10.5,5,74.2144831131116,0.63805177433315,4.75,7.73158758027213,0,394.071576436361,393.8125,0.376796720492447
+4527,307774,3797998,307874,3797898,26,45,65.7894736842105,0.674850040120537,40.224310660763,0.848,NA,0.0361131940799839,0.315789473684211,31.5789473684211,3,92.0052076607162,0.906139731827805,29.2105263157895,9.59753522078196,0,394.744369506836,394.213775634766,0.595862553542043
+4528,307774,3797898,307874,3797798,27,45,76.8421052631579,0.788224846860787,35.941506882015,0.90296803652968,NA,0.0257091004039562,0.186842105263158,18.6842105263158,3,89.3565135748672,0.783559870550162,16.5789473684211,0,0,395.148980034722,394.844940185547,0.4053147957843
+4529,307774,3797798,307874,3797698,28,45,23.9473684210526,0.245645414603875,25.9252774138289,0.820512820512821,NA,-0.0167520420294175,0.0473684210526316,4.73684210526316,5,50.4310542775341,0.572334765704931,1.57894736842105,12.0978065861596,0,395.140357971191,395.006958007812,0.240054247311372
+4530,307774,3797698,307874,3797598,29,45,16,0.172761610270857,24.2216700765099,0.744791666666667,NA,0.0181091802187075,0.18,18,2,91.8231194400454,0.923180334165546,17.75,34.5018086367183,0,395.074445936415,394.982147216797,0.204839381299419
+4531,307774,3797598,307874,3797498,30,45,78.9473684210526,0.809820048144644,36.9985611423284,0.894444444444444,NA,0.0482583960392635,0.478947368421053,47.8947368421053,3,93.469715452067,0.755117945028924,33.421052631579,2.81312429773939,0,394.349250793457,392.654144287109,2.1138015506473
+4532,307774,3797498,307874,3797398,31,45,8.68421052631579,0.0890802052959109,26.5565075874499,0.560606060606061,NA,0.0184413159295266,0.128947368421053,12.8947368421053,1,90.3490965751115,0.835994820889081,12.8947368421053,21.3812187155899,10.3911504745483,393.239793565538,389.141540527344,3.22568412721897
+4533,307774,3797398,307874,3797298,32,45,42.1052631578947,0.215952012838572,26.8688348725851,0.727455716586151,15.5867255064659,-0.072498580200083,0,0,0,NA,NA,0,NA,NA,397.466677347819,396.173583984375,1.63204111218347
+4534,307774,3797298,307874,3797198,33,45,57.5,0.206954012303631,16.6479611580272,0.581374643874644,12.1230087965261,-0.00555948119785171,0.0625,6.25,2,75.6907063307731,0.706666666666667,3.5,0.6234690284729,0,398.24358452691,397.922424316406,0.543207309413174
+4535,307774,3797198,307874,3797098,34,45,26.5789473684211,0.272639416208697,28.7387859144396,0.823432343234323,NA,0.0473271311799947,0.521052631578947,52.1052631578947,2,97.6348237820795,0.85208252238225,51.8421052631579,14.0790836546156,0,398.057014465332,397.916412353516,0.229475847566916
+4536,307774,3797098,307874,3796998,35,45,15.5263157894737,0.159264609468447,22.0537720973372,0.728813559322034,NA,0.0379887314583213,0.336842105263158,33.6842105263158,3,89.6125154457907,0.825260576333538,15.7894736842105,27.0661513544619,0,397.785129123264,397.660980224609,0.174326158721002
+4537,307774,3796998,307874,3796898,36,45,28.6842105263158,0.0980782058308513,12.2643654705547,0.332804232804233,19.6292435627336,0.061688737158348,0.478947368421053,47.8947368421053,4,92.4821964199554,0.806372328627521,26.3157894736842,9.85953919966142,0,397.6083984375,397.503326416016,0.162827260377503
+4538,307774,3796898,307874,3796798,37,45,10.25,0.036891802193256,9.18581316878884,0.548809523809524,21.9198793882362,0.0449473871615919,0.35,35,4,90.4993572440651,0.837740384615385,24.75,13.2840881756374,0,397.650414360894,397.519073486328,0.207526361020219
+4539,307774,3796798,307874,3796698,38,45,25.7894736842105,0.26454121572725,30.3558545565773,0.658163265306122,NA,0.0267758831788294,0.157894736842105,15.7894736842105,5,86.5968669928469,0.691706730769231,13.6842105263158,6.69903059005737,0,398.052978515625,397.734527587891,0.394495620069143
+4540,307774,3796698,307874,3796598,39,45,45.2631578947368,0.116074206900732,13.8711306809986,0.43983040756617,12.988937948033,0.0281549614941468,0.110526315789474,11.0526315789474,8,64.6467173326579,0.540795066255521,3.94736842105263,4.98616086869013,0,399.002497355143,398.451477050781,0.613987708734689
+4541,307774,3796598,307874,3796498,40,45,42.6315789473684,0.145767608666036,20.5672739393664,0.573258669810394,13.8548671861334,0.0352071275723191,0.152631578947368,15.2631578947368,8,68.4164833485141,0.539751552795031,3.94736842105263,3.99013045738483,0,399.439005533854,399.174743652344,0.396219990189136
+4542,307774,3796498,307874,3796398,41,45,45.7894736842105,0.234847813961947,23.1093877303796,0.681623931623932,15.5867255064659,0.062466504028692,0.544736842105263,54.4736842105263,3,95.0561897542972,0.760378349973726,41.5789473684211,5.41797968961191,0,399.203437805176,398.864044189453,0.400322361776491
+4543,307774,3796398,307874,3796298,42,45,32.5,0.0701844041725358,7.19612753285913,0.336944444444444,18.781628527638,0.0292527304300165,0.135,13.5,4,76.8937443084976,0.68922866554789,4.75,8.31372812942222,0,398.706882052951,398.482727050781,0.452315150989657
+4544,307774,3796298,307874,3796198,43,45,33.4210526315789,0.114274606793744,15.2793128733448,0.556265324558007,22.5869915223081,0.0506557473384371,0.378947368421053,37.8947368421053,6,91.1821966659992,0.731638418079096,30,8.72074468599426,0,398.031494140625,397.687469482422,0.438702821731013
+4545,307774,3796198,307874,3796098,44,45,0,NA,NA,NA,NA,0.0392682743666611,0.313157894736842,31.3157894736842,2,94.7703307975236,0.865190861359444,30.5263157894737,45.1308963839747,10.3911504745483,397.251966688368,396.890472412109,0.556452124525477
+4546,307774,3796098,307874,3795998,45,45,12.6315789473684,0.0259142415406286,9.05317042047887,0.423299663299663,13.6771205985482,0.0451922816930164,0.434210526315789,43.421052631579,2,96.7669834098472,0.802325581395349,42.8947368421053,12.443861730171,0,396.228108723958,395.422607421875,0.808330063033166
+4547,307774,3795998,307874,3795898,46,45,19.5,0.0526383031294019,10.2697930669927,0.546164021164021,15.1410156580484,0.0309673050671699,0.15,15,3,89.8680608535361,0.796380090497738,14.5,4.44714283148448,0,395.17421468099,394.901641845703,0.576842221082283
+4548,307774,3795898,307874,3795798,47,45,16.0526315789474,0.054887803263137,13.1320535773041,0.480687830687831,21.5999734440292,0.0441960618204719,0.321052631578947,32.1052631578947,2,92.175427351904,0.893367006910099,19.7368421052632,9.39453420091848,0,394.871757507324,394.791412353516,0.186932867219992
+4549,307774,3795798,307874,3795698,48,45,61.8421052631579,0.634359037713305,36.3331174451741,0.805673758865248,NA,0.0372412195300153,0.310526315789474,31.0526315789474,3,94.5616268274877,0.756010558607405,30,2.83930619288299,0,395.752763536241,394.958374023438,1.66859950017316
+4550,307774,3795698,307874,3795598,49,45,65.7894736842105,0.674850040120537,38.1459864892873,0.796,NA,0.0403894946189738,0.386842105263158,38.6842105263158,6,90.9879035653897,0.648355856215199,27.1052631578947,2.99084328307586,0,397.991381327311,396.931549072266,1.12518145417978
+4551,307774,3795598,307874,3795498,50,45,45.25,0.162863809682423,19.6192951297919,0.682050120772947,13.9894104574227,0.0367444668188546,0.2575,25.75,6,82.6188295470181,0.723359723359723,10.25,4.12548065648496,0,397.973314073351,397.603851318359,0.636708745889463
+4552,307774,3795498,307874,3795398,51,45,33.6842105263158,0.115174406847238,18.9650131875189,0.607889024555691,19.0504423168542,0.0291041521048005,0.165789473684211,16.5789473684211,5,81.7569839807552,0.749354746200172,10.7894736842105,2.09589616836063,0,398.083595275879,397.609191894531,0.670499221262254
+4553,307774,3795398,307874,3795298,52,45,40,0.136769608131095,22.487669402093,0.588662635237978,15.5867256623344,0.0461209414514566,0.463157894736842,46.3157894736842,5,92.7662265695257,0.598793363499246,30,4.73832216858864,0,399.003638373481,398.496429443359,0.633680116369466
+4554,307774,3795298,307874,3795198,53,45,43.421052631579,0.111350256619889,14.480695813421,0.553009259259259,15.562578589936,0.0513274981695423,0.531578947368421,53.1578947368421,4,95.5230752802748,0.766591760299626,46.3157894736842,4.9297146702757,0,399.724901835124,399.113739013672,0.74128681967541
+4555,307774,3795198,307874,3795098,54,45,25,0.134970008024107,15.0294993778908,0.445578231292517,20.7823006752878,0.0436607641281444,0.3525,35.25,5,90.3706885963617,0.724641585106702,23.75,5.83762228404377,0,400.128323872884,399.602600097656,0.726498056747468
+4556,307774,3795098,307874,3794998,55,45,41.8421052631579,0.214602312758331,27.4180056617511,0.741561356834054,20.7823006752878,0.0305773654730537,0.213157894736842,21.3157894736842,3,88.2865805885207,0.74405425492382,14.4736842105263,1.59256741441326,0,399.059658474392,398.797790527344,0.598917546249475
+4557,307774,3794998,307874,3794898,56,45,0,NA,NA,NA,NA,0.00605790377647186,0,0,0,NA,NA,0,NA,NA,398.599268595378,398.497741699219,0.143657002761015
+4558,307774,3794898,307874,3794798,57,45,25,0.256443015245804,27.0945068250402,0.821052631578947,NA,0.0170891959339267,0.0368421052631579,3.68421052631579,3,57.4990966424163,0.688524590163934,1.84210526315789,2.22667510168893,0,398.446851942274,398.41357421875,0.0545552674226942
+4559,307774,3794798,307874,3794698,58,45,3.25,0.0116974006954226,2.77341704865515,0.171717171717172,47.5757272035639,0.00121280510369616,0,0,0,NA,NA,0,NA,NA,398.401255289714,398.390014648438,0.0240060011201208
+4560,307774,3794698,307874,3794598,59,45,10.7894736842105,0.0221350813159536,4.6299422474219,0.371709401709402,21.4115381936043,-0.000908421201089177,0.0763157894736842,7.63157894736842,4,67.9253040949144,0.677517124325635,3.94736842105263,21.7137535851577,5.19557523727417,398.42035929362,398.400634765625,0.0435216142201408
+4561,307774,3794598,307874,3794498,60,45,15,0.0307731618294965,6.16253698965536,0.363222222222222,23.8522780864073,0.0314990770086297,0.234210526315789,23.4210526315789,3,89.2935951969992,0.720763362078281,17.3684210526316,11.6795148903065,0,398.504992167155,398.455627441406,0.0689657512557501
+4562,307774,3794498,307874,3794398,61,45,14.7368421052632,0.0503888029956668,11.0982679136064,0.558265582655827,15.4902124701838,0.0330618695487302,0.278947368421053,27.8947368421053,1,95.1692193166118,0.72407994802614,27.8947368421053,17.0120433366524,0,398.602037217882,398.571411132812,0.0766188002448563
+4563,307774,3794398,307874,3794298,62,45,6.5,0.0350922020862679,9.75378214731977,0.494444444444444,14.6953058096309,0.036188734882744,0.225,22.5,5,85.491262962282,0.743538369064316,11.5,29.3939938810137,5.19557523727417,398.735155741374,398.382080078125,0.363929426402577
+4564,307774,3794298,307874,3794198,63,45,38.6842105263158,0.0992029558977189,9.62064214246771,0.442315821256039,18.184513129844,0.0230664477925242,0.0710526315789474,7.10526315789474,4,74.9551902126487,0.72461954015416,5.78947368421053,9.69243310998987,0,398.414106580946,398.171295166016,0.42656648602671
+4565,307774,3794198,307874,3794098,64,45,26.5789473684211,0.136319708104348,14.6354730220098,0.707509157509158,16.4298513045212,0.0341786755942897,0.223684210526316,22.3684210526316,4,86.4748082280437,0.795263216971602,14.4736842105263,18.5116608563591,0,398.220308939616,398.091064453125,0.312133935834936
+4566,307774,3794098,307874,3793998,65,45,19.4736842105263,0.0665852039585596,10.8260611917877,0.619727047146402,10.3911503722814,0.0252858998623867,0.157894736842105,15.7894736842105,4,80.2221984197514,0.703125,6.57894736842105,31.7920301914215,5.19557523727417,398.296485053168,398.146057128906,0.280095211577823
+4567,307774,3793998,307874,3793898,66,45,27.75,0.0749083544533796,13.6291113459549,0.681234419515669,19.2452597195884,0.0266585372772533,0.1225,12.25,6,76.2759030183516,0.769366436033103,9.25,27.9289348174115,0,398.779268900553,398.550628662109,0.379550605517507
+4568,307774,3793898,307874,3793798,67,45,17.8947368421053,0.091779605456393,11.3297563479346,0.489316239316239,18.7329128064055,0.0172008317075348,0.0842105263157895,8.42105263157895,4,72.985076227825,0.769009725906278,5.78947368421053,24.065478682518,0,399.147128634983,398.931091308594,0.529860110519652
+4569,307774,3793798,307874,3793698,68,45,6.31578947368421,0.0323928019257858,7.74758017121149,0.552083333333333,20.7823006752878,0.0199945431437012,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,53.1748045285543,10.3911504745483,400.749170939128,399.833831787109,1.06704513822976
+4570,307774,3793698,307874,3793598,69,45,13.6842105263158,0.140368808345072,16.7851179465793,0.75,NA,0.0405647934889298,0.297368421052632,29.7368421052632,5,88.7329370398362,0.755819930968642,17.1052631578947,21.3954749782528,0,401.759251912435,401.363708496094,0.640841973242271
+4571,307774,3793598,307874,3793498,70,45,7.5,0.0202455012036161,5.69368973588068,0.401960784313726,20.1775276723045,0.0358222657971783,0.1925,19.25,4,84.8988552869581,0.726825714806046,13,21.6587494751076,0,402.605136447483,402.082702636719,0.871300407576606
+4572,307774,3793498,307874,3793398,71,45,0,NA,NA,NA,NA,0.0200315202719187,0.0263157894736842,2.63157894736842,2,59.1815130720322,0.762993762993763,1.84210526315789,17.4294302940369,10.3911504745483,403.697423299154,403.209259033203,0.479872543507377
+4573,307774,3793398,307874,3793298,72,45,0,NA,NA,NA,NA,0.0140920488572814,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,23.2353191375732,23.2353191375732,404.082061767578,403.832000732422,0.381417100049508
+4574,307774,3793298,307874,3793198,73,45,2.10526315789474,0.0215952012838572,5.94437605233417,0.541666666666667,NA,0.0284949586412327,0.105263157894737,10.5263157894737,5,77.6264628345482,0.766461808604039,8.15789473684211,25.6300821185112,0,403.961227416992,403.539245605469,0.50054563036295
+4575,307774,3793198,307874,3793098,74,45,5.25,0.0283437016850625,6.6933770646861,0.394736842105263,18.7329128064055,0.0395888770342572,0.28,28,5,89.5320241748016,0.807480748074807,22,18.7365747903075,0,403.228379991319,402.774139404297,0.773960596726312
+4576,307774,3793098,307874,3792998,75,45,10,0.0205154412196643,4.76172947913437,0.341666666666667,19.0413209269812,0.0365202122406213,0.210526315789474,21.0526315789474,6,80.9510828092478,0.696713615023474,10,15.4017567932606,0,402.443194071452,402.005004882812,0.614010346840862
+4577,307774,3792998,307874,3792898,76,45,6.05263157894737,0.0310431018455447,5.79130805136066,0.310606060606061,21.4219052194905,0.0487452401762742,0.447368421052632,44.7368421052632,3,94.4017978745863,0.809219534459151,38.6842105263158,19.5553010155173,0,403.448523627387,402.528198242188,1.53637405652062
+4578,307774,3792898,307874,3792798,77,45,0,NA,NA,NA,NA,0.0303273827139947,0.223684210526316,22.3684210526316,4,83.1823915764999,0.769671119093052,10.2631578947368,106.058505697811,78.1066207885742,406.307955423991,404.442077636719,1.52821430740743
+4579,307774,3792798,307874,3792698,78,45,0,NA,NA,NA,NA,0.0297932707408472,0.1275,12.75,4,79.9709456137446,0.802391068076277,9,137.4119422763,103.12922668457,407.421834309896,407.178253173828,0.443121812321587
+4580,307774,3792698,307874,3792598,79,45,0,NA,NA,NA,NA,0.0371241340106951,0.331578947368421,33.1578947368421,3,93.430810941278,0.849740398170753,29.4736842105263,66.0157945799449,5.19557523727417,407.836776733398,407.282287597656,0.758027082950032
+4581,307774,3792598,307874,3792498,80,45,0,NA,NA,NA,NA,0.0136838736409309,0.0868421052631579,8.68421052631579,5,67.3270798945559,0.655246024122105,3.68421052631579,44.6225347518921,11.6176595687866,407.982767740885,407.278472900391,1.04202266439184
+4582,307774,3792498,307874,3792398,81,45,9.47368421052632,0.0971784057773573,15.234795097554,0.680555555555555,NA,0.0338303488233674,0.202631578947368,20.2631578947368,5,79.6902944681005,0.714133178023685,8.42105263157895,24.5964109185454,0,408.44037882487,407.479370117188,0.972924055472731
+4583,307774,3792398,307874,3792298,82,45,7.75,0.0836814049749466,11.9090532096208,0.752688172043011,NA,0.0498331959705683,0.445,44.5,2,96.5161168353317,0.81379555847641,42.5,20.9424805480443,0,409.068237304688,408.964050292969,0.249608183979514
+4584,307774,3792298,307874,3792198,83,45,11.8421052631579,0.121473007221697,14.2157936990749,0.785185185185185,NA,0.0528732562718352,0.492105263157895,49.2105263157895,3,94.3369581810027,0.766689628320705,35.5263157894737,25.4968381693019,0,408.863614400228,408.328704833984,0.567873248847597
+4585,307774,3792198,307874,3792098,84,45,25.2631578947368,0.0518284830812572,11.549663838559,0.445369955714783,17.1164441183452,0.0574704399669396,0.6,60,1,98.4265117299858,0.747058823529412,60,7.35237089374609,0,408.21102142334,407.768463134766,0.464838475794296
+4586,307774,3792098,307874,3791998,85,45,11.0526315789474,0.0283437016850625,7.96726230272871,0.454695767195767,23.0784411655612,0.0560666819862825,0.560526315789474,56.0526315789474,4,91.9721386864742,0.712695820480252,31.8421052631579,15.0336299412687,0,408.206431070964,407.799835205078,0.500685366053103
+4587,307774,3791998,307874,3791898,86,45,2.5,0.0134970008024107,4.35702605472198,0.402777777777778,78.6233191098348,0.0435978366137715,0.35,35,6,88.2584816008213,0.633413461538462,15.25,35.0400195802961,0,409.044212341309,408.631164550781,0.509968461311416
+4588,307774,3791898,307874,3791798,87,45,23.1578947368421,0.0395912023537382,8.00403178134341,0.438657407407407,11.4614977246329,0.0585337821433266,0.547368421052632,54.7368421052632,4,96.3744080830373,0.760230755363259,51.578947368421,9.33872881073218,0,409.168178982205,408.992309570312,0.320247338836491
+4589,307774,3791798,307874,3791698,88,45,31.0526315789474,0.0530882031561489,8.78011249463652,0.430886367471733,20.1664430199173,0.0262495481367391,0.110526315789474,11.0526315789474,5,74.9307214146977,0.667472289357446,7.10526315789474,5.59663808913458,0,408.574569702148,408.029022216797,0.625600048714855
+4590,307774,3791698,307874,3791598,89,45,25,0.064110753811451,13.4125190382075,0.506636032455705,22.1735040971605,0.0232248030921925,0.163157894736842,16.3157894736842,6,74.1350178867311,0.6127416724901,4.73684210526316,7.07383311179376,0,407.96142578125,407.817169189453,0.263845687168492
+4591,307774,3791598,307874,3791498,90,45,29.75,0.0803071547743439,14.7708893715841,0.551508272800646,13.5901189200037,0.0194084676709099,0.115,11.5,7,72.1714344823793,0.507460524409677,4.25,7.03057755594668,0,407.915016174316,407.794403076172,0.193029327022197
+4592,307774,3791498,307874,3791398,91,45,45,0.230798713721224,29.5673778147312,0.706140350877193,20.7823006752878,0.0333225378662878,0.328947368421053,32.8947368421053,2,94.2000070055648,0.783363565690593,28.6842105263158,2.37926757049561,0,408.306901719835,408.006591796875,0.540830453173478
+4593,307774,3791398,307874,3791298,92,45,30.5263157894737,0.0782826046539823,13.5798500233275,0.496198668146504,18.4996776526226,0.0367283537838184,0.331578947368421,33.1578947368421,3,90.9364714608115,0.712546848674483,20.7894736842105,5.35716302432711,0,409.093119303385,408.681671142578,0.42151852667254
+4594,307774,3791298,307874,3791198,93,45,13.4210526315789,0.0458898027281965,11.1820650979639,0.415727321524423,26.0564347038546,0.0269914040710941,0.205263157894737,20.5263157894737,3,88.2999084136358,0.799404933294942,16.8421052631579,9.37624165339348,0,409.204291449653,408.981597900391,0.279960518726784
+4595,307774,3791198,307874,3791098,94,45,24.5,0.0881804052424168,14.0154145032069,0.583048433048433,14.6725397470502,0.033865085841353,0.4225,42.25,2,96.1755488175805,0.805749805749806,40.75,6.57864691943107,0,408.775955200195,408.353637695312,0.408745379336881
+4596,307774,3791098,307874,3790998,95,45,53.9473684210526,0.55337703289884,31.6965646282219,0.883739837398374,NA,0.0709388750981337,0.713157894736842,71.3157894736842,1,99.0042431178675,0.849317784466754,71.3157894736842,3.0047856872812,0,408.197136773003,407.754058837891,0.574239568741708
+4597,307774,3790998,307874,3790898,96,45,0,NA,NA,NA,NA,0.038150118622549,0.273684210526316,27.3684210526316,5,90.0367407150595,0.786483763465861,23.4210526315789,41.5900790691376,20.7823009490967,407.068761189779,406.721435546875,0.547084079042197
+4598,307774,3790898,307874,3790798,97,45,0.263157894736842,0.00269940016048215,0,0,NA,0.06322309675291,0.502631578947368,50.2631578947368,2,94.5977943265505,0.863689355214779,28.421052631579,48.9295937727883,0,406.571919759115,406.46923828125,0.168929710425153
+4599,307774,3790798,307874,3790698,98,45,1.5,0.0161964009628929,5.14509030281488,0.444444444444444,NA,0.0453037008069805,0.31,31,3,91.6858023139287,0.838969404186795,27,51.4124677681154,0,406.479159037272,406.427856445312,0.0990397759701893
+4600,307774,3790698,307874,3790598,99,45,19.2105263157895,0.0985281058575984,18.0580751378432,0.593965517241379,16.4298513045212,0.0424757141813744,0.338888888888889,33.8888888888889,5,89.2098057048531,0.760447165291456,25.2777777777778,11.4043951034546,0,406.634323120117,406.507446289062,0.152057532826702
+4601,307874,3800598,307974,3800498,0,46,5.81717451523546,0.0566874033701451,13.9185800639972,0.571428571428571,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.411487579346,383.051025390625,2.62728150976239
+4602,307874,3800498,307974,3800398,1,46,86.0526315789474,0.882703852477974,36.1571726507674,0.924566768603466,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.159411112467,382.866424560547,0.436081887777412
+4603,307874,3800398,307974,3800298,2,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.373313903809,382.919128417969,0.423180619507743
+4604,307874,3800298,307974,3800198,3,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.9382909139,383.5087890625,0.516369426476984
+4605,307874,3800198,307974,3800098,4,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.719537734985,384.281555175781,0.565272907622862
+4606,307874,3800098,307974,3799998,5,46,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0428225517971441,0.236842105263158,23.6842105263158,2,87.8987186353959,0.803448275862069,22.3684210526316,0,0,385.691757202148,385.106903076172,0.809734793999575
+4607,307874,3799998,307974,3799898,6,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0450451605091609,0.412742382271468,41.2742382271468,2,95.676352321947,0.925150321376737,40.1662049861496,0,0,386.745101928711,386.197998046875,0.622836444096926
+4608,307874,3799898,307974,3799798,7,46,54.5706371191136,0.265890915807586,25.7201139194519,0.780158039727418,31.1734510129318,0.0257870701123647,0.14404432132964,14.404432132964,2,88.0089635760358,0.763717682993346,13.0193905817175,0.799319267272949,0,387.916071573893,387.070281982422,1.14210657459382
+4609,307874,3799798,307974,3799698,8,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0901703047730581,0.842105263157895,84.2105263157895,1,99.5015292450824,0.657358929610238,84.2105263157895,0,0,389.490877151489,388.727569580078,0.994553350410911
+4610,307874,3799698,307974,3799598,9,46,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0740678863501863,0.981578947368421,98.1578947368421,1,99.9494972955673,0.308951303293593,98.1578947368421,0,0,391.004969278971,390.531280517578,0.563832241722185
+4611,307874,3799598,307974,3799498,10,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0843939524340002,0.980609418282548,98.0609418282548,1,99.9453410746656,0.307249466950962,98.0609418282548,0,0,391.361135482788,391.261108398438,0.113003418594747
+4612,307874,3799498,307974,3799398,11,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0735270336806939,0.975069252077562,97.5069252077562,1,99.9294255406158,0.457957957957959,97.5069252077562,0,0,391.464418411255,391.413391113281,0.0727456339302289
+4613,307874,3799398,307974,3799298,12,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0734232447504832,0.975069252077562,97.5069252077562,1,99.9294255406158,0.337504170837503,97.5069252077562,0,0,391.406153361003,391.300598144531,0.16291006751353
+4614,307874,3799298,307974,3799198,13,46,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0766561669965373,0.9,90,1,99.7075064537375,0.953632148377125,90,0,0,391.421716690063,391.125549316406,0.482567777683709
+4615,307874,3799198,307974,3799098,14,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0844825818432351,0.814404432132964,81.4404432132964,1,99.3994305406243,0.912310059107716,81.4404432132964,0,0,391.474670410156,391.007141113281,0.718697895297025
+4616,307874,3799098,307974,3798998,15,46,92.2437673130194,0.898900253440873,38.9446638135944,0.883383383383383,NA,0.0313950525283126,0.279778393351801,27.9778393351801,3,93.3189709944624,0.785210369740756,26.5927977839335,0.360089372880388,0,391.73650932312,391.372955322266,0.618099551710013
+4617,307874,3798998,307974,3798898,16,46,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.00410018138696473,0.0138504155124654,1.38504155124654,2,40.1094318411096,0.391573033707865,0.831024930747922,0,0,393.041849772135,392.628967285156,0.686489765562403
+4618,307874,3798898,307974,3798798,17,46,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0372766287222284,0.171052631578947,17.1052631578947,3,90.4470283165845,0.754459896052816,16.3157894736842,0,0,393.634155273438,393.378204345703,0.18880010099967
+4619,307874,3798798,307974,3798698,18,46,81.4404432132964,0.793623647182032,38.5028873276969,0.869614512471655,NA,0.0280576462317593,0.07202216066482,7.20221606648199,1,84.8544079576361,0.921150345831817,7.20221606648199,2.08107038644644,0,393.679494222005,393.508575439453,0.1245287779135
+4620,307874,3798698,307974,3798598,19,46,99.1689750692521,0.96638525745295,37.57698678192,0.925512104283054,NA,0.0149436086828455,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0,393.826189041138,393.600708007812,0.217619073108034
+4621,307874,3798598,307974,3798498,20,46,55.4016620498615,0.53988003209662,34.82308506416,0.833333333333333,NA,0.0120547365782901,0.0498614958448753,4.98614958448753,3,73.8888888888889,0.649173955296404,4.43213296398892,9.92113296190898,0,394.25143178304,393.946411132812,0.377323065373734
+4622,307874,3798498,307974,3798398,21,46,54.7368421052632,0.561475233380485,35.0509979862097,0.873397435897436,NA,0.0113777738363512,0.0342105263157895,3.42105263157895,3,65.7018478247087,0.654859218891916,2.89473684210526,0,0,394.841007232666,394.480133056641,0.532932566794891
+4623,307874,3798398,307974,3798298,22,46,52.9085872576177,0.171861810217424,14.6110421285487,0.596275252525253,12.1230088484866,0.0116580388612067,0.0664819944598338,6.64819944598338,5,66.3057406732975,0.63353115727003,3.601108033241,1.60504597425461,0,395.058962504069,394.919586181641,0.577627598065312
+4624,307874,3798298,307974,3798198,23,46,42.382271468144,0.103252056138479,17.5210376874582,0.6405058177117,15.5867256623399,0.0121717540777583,0.0415512465373961,4.15512465373961,4,54.9757267192753,0.478323699421965,1.93905817174515,5.54194691975911,0,394.7568359375,394.455871582031,0.641927540754842
+4625,307874,3798198,307974,3798098,24,46,25.207756232687,0.0818818048679874,11.9672577552002,0.485302390998594,45.3149842996787,0.00915042511602284,0,0,0,NA,NA,0,NA,NA,394.475746154785,394.292602539062,0.815806111062035
+4626,307874,3798098,307974,3797998,25,46,79.2105263157895,0.812519448305414,35.96827354968,0.910852713178295,NA,0.0338219957519055,0.223684210526316,22.3684210526316,7,79.9497168487049,0.718486923335952,11.8421052631579,0.554868311040542,0,394.457548141479,394.252410888672,0.683252606078712
+4627,307874,3797998,307974,3797898,26,46,68.4210526315789,0.333375919819663,17.2447689879762,0.442750677506775,15.5867255064659,0.0326731919015394,0.171745152354571,17.1745152354571,3,84.2587985320084,0.832311408398365,11.9113573407202,7.37112293704863,0,395.134185791016,394.566619873047,0.635831829514695
+4628,307874,3797898,307974,3797798,27,46,24.3767313019391,0.237547214122513,34.9065021658579,0.708333333333333,NA,0.0248069864272242,0.218836565096953,21.8836565096953,3,87.9781752461022,0.817122593718338,13.0193905817175,25.6146876117851,5.19557523727417,395.348187764486,394.883453369141,0.524163579382846
+4629,307874,3797798,307974,3797698,28,46,16.6204986149584,0.161964009628986,26.1109237025483,0.752777777777778,NA,0.0135818984642036,0.07202216066482,7.20221606648199,3,78.2260580047492,0.789734255551511,6.37119113573407,37.2742486733657,0,395.354690551758,394.775360107422,0.484615691712177
+4630,307874,3797698,307974,3797598,29,46,29.7368421052632,0.305032218134591,40.1616484335235,0.750737463126844,NA,0.00258155747440852,0.121052631578947,12.1052631578947,6,77.9043027388706,0.72286196837095,9.21052631578947,15.3087347590405,0,395.008336385091,394.405090332031,0.544900432102328
+4631,307874,3797598,307974,3797498,30,46,72.8531855955679,0.709942242207056,33.4886195822158,0.875792141951838,NA,0.0638650454881658,0.678670360110803,67.8670360110803,2,97.4375059717636,0.73499849420268,60.1108033240997,2.79695706854061,0,394.254650115967,392.627044677734,2.4549856106797
+4632,307874,3797498,307974,3797398,31,46,7.20221606648199,0.0233948013908536,8.12678271425808,0.411918328584995,43.2964600172923,0.0207901756064056,0.157894736842105,15.7894736842105,4,80.5458544527464,0.672831632653061,7.20221606648199,21.918595196908,5.19557523727417,392.950503031413,388.625671386719,3.39100075175694
+4633,307874,3797398,307974,3797298,32,46,39.612188365651,0.386014222949084,31.867865440134,0.791375291375291,NA,-0.0658028217836656,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,396.872234344482,396.106567382812,0.967026099737025
+4634,307874,3797298,307974,3797198,33,46,36.8421052631579,0.0944790056169086,11.1905771137201,0.461928571428571,17.1598191983486,0.0198629190811756,0.271052631578947,27.1052631578947,1,95.0211914913291,0.918431066445507,27.1052631578947,2.15497071534685,0,397.710556030273,397.248077392578,0.37749717725166
+4635,307874,3797198,307974,3797098,34,46,34.0720221606648,0.166013109869711,16.7270371510091,0.75254854368932,21.4219054085159,0.0401680904974367,0.401662049861496,40.1662049861496,2,93.3035574626114,0.754035639412998,27.1468144044321,17.0488661535855,0,397.957332611084,397.792053222656,0.139879827537894
+4636,307874,3797098,307974,3796998,35,46,17.4515235457064,0.0425155525276089,10.389462271802,0.476957070707071,20.5969496202749,0.019096311111745,0.174515235457064,17.4515235457064,6,77.0770682691987,0.669615619280049,8.86426592797784,16.1071732006376,0,398.002405802409,397.840606689453,0.139678841022718
+4637,307874,3796998,307974,3796898,36,46,26.8698060941828,0.0374059736524087,7.73856819895915,0.396361971361971,17.0711755918136,0.0218853902635369,0.166204986149584,16.6204986149584,5,78.3746044167812,0.723230258113979,7.4792243767313,6.99384376207987,0,397.935234069824,397.739166259766,0.239576320172566
+4638,307874,3796898,307974,3796798,37,46,25,0.0854810050819649,19.5124606233287,0.491505376344086,19.0504424761932,0.0206706310221642,0.2,20,7,81.1202583237098,0.748134328358209,9.47368421052632,6.53445314733606,0,398.069315592448,397.764923095703,0.357557433934485
+4639,307874,3796798,307974,3796698,38,46,36.5650969529086,0.0712641642367539,10.748529307875,0.561450095660622,17.6649556155611,0.0196253580985976,0.0526315789473684,5.26315789473684,4,59.5127043011512,0.490421455938697,2.21606648199446,4.9841352261995,0,398.693445205688,398.020385742188,0.669319536597396
+4640,307874,3796698,307974,3796598,39,46,57.617728531856,0.280737616690243,26.6954461255711,0.777201336675021,25.9778761038998,0.0257945009393565,0.174515235457064,17.4515235457064,6,78.5079174425017,0.570500305064063,8.86426592797784,3.86669137742784,0,399.518648147583,398.720947265625,0.58291259998795
+4641,307874,3796598,307974,3796498,40,46,53.7396121883656,0.261841815566861,26.2674720313953,0.734016565517768,23.2353187052823,0.00474942019651063,0.0692520775623269,6.92520775623269,6,56.6048738119855,0.462797619047619,1.93905817174515,8.40082550048828,0,400.044219970703,399.776733398438,0.412584955454108
+4642,307874,3796498,307974,3796398,41,46,54.8476454293629,0.267240615887827,28.1217911587352,0.789108187134503,10.3911504415599,0.0245572328043878,0.157894736842105,15.7894736842105,8,72.4167260528163,0.64859693877551,5.54016620498615,5.79737782896611,0,400.129484176636,399.570159912109,0.682154801335618
+4643,307874,3796398,307974,3796298,42,46,39.4736842105263,0.134970008024155,18.159832008811,0.696785866326096,12.1230088484866,0.0191163936561392,0.1,10,7,69.3356953655725,0.682539682539683,6.57894736842105,4.06277257517764,0,399.799285888672,398.779052734375,0.988416792906253
+4644,307874,3796298,307974,3796198,43,46,33.2409972299169,0.107976006419324,11.8493180731035,0.451497057805469,19.1232134708126,0.0362121271791542,0.321329639889197,32.1329639889197,5,90.6185959679809,0.775471331389699,27.1468144044321,10.8767895657441,0,398.131362915039,397.203979492188,1.02415401140032
+4645,307874,3796198,307974,3796098,44,46,19.6675900277008,0.0958287056971501,12.5098080033649,0.477053140096618,33.2679134937501,0.0282723029145156,0.21606648199446,21.606648199446,4,85.4855141282678,0.750422491934245,15.2354570637119,15.0198252629011,0,396.976404825846,396.825408935547,0.320034223486755
+4646,307874,3796098,307974,3795998,45,46,14.6814404432133,0.0238447014176007,6.39838121412973,0.441435185185185,19.9163715064632,0.0271356935192666,0.135734072022161,13.5734072022161,6,73.9529454239948,0.69696275946276,7.20221606648199,7.09156837268752,0,396.604686737061,396.039337158203,0.37403563219288
+4647,307874,3795998,307974,3795898,46,46,5.78947368421053,0.0296934017653141,7.24994485377527,0.3625,25.9778758441098,0.0278960518232596,0.0447368421052632,4.47368421052632,3,65.1317858373031,0.706887052341598,2.36842105263158,6.54465630475213,0,395.843879699707,395.333618164062,0.638213485478836
+4648,307874,3795898,307974,3795798,47,46,25.7617728531856,0.125522107462464,21.4813871607198,0.698275862068966,20.7823006752878,0.0155510497388504,0.0914127423822715,9.14127423822715,6,65.3092299938783,0.612748419150858,4.43213296398892,17.0524968956456,0,395.317728042603,394.991088867188,0.590682444021136
+4649,307874,3795798,307974,3795698,48,46,40.9972299168975,0.133170407917166,13.9285312058357,0.384357762017337,10.3911504415599,0.0288833616141749,0.14404432132964,14.404432132964,7,69.8645929552331,0.553688956765208,5.26315789473684,5.95635448052333,0,397.564112345378,395.715362548828,2.24375343999916
+4650,307874,3795698,307974,3795598,49,46,48.7534626038781,0.237547214122513,24.9081533598089,0.688946759259259,11.6176592829322,0.0369346630166577,0.293628808864266,29.3628808864266,9,80.9715161182599,0.533045888512473,11.0803324099723,5.28375246839703,0,399.115146636963,398.671569824219,0.671777662665904
+4651,307874,3795598,307974,3795498,50,46,44.7368421052632,0.152966009094042,18.590757165111,0.657959401709402,16.724304098185,0.0303498573470279,0.163157894736842,16.3157894736842,5,84.2592089792185,0.7233869089215,10,4.4144596053708,0,398.944282531738,398.566436767578,0.417777859502257
+4652,307874,3795498,307974,3795398,51,46,21.8836565096953,0.106626306339083,14.4674487267335,0.502558479532164,25.9778758441098,0.0305873291571543,0.243767313019391,24.3767313019391,3,91.4725002823384,0.839971069270432,22.1606648199446,6.35218632221222,0,398.784635543823,398.236877441406,0.518524651795921
+4653,307874,3795398,307974,3795298,52,46,3.601108033241,0.0175461010431402,5.29559361820796,0.394444444444444,57.1513268570416,0.0474499916977403,0.465373961218837,46.5373961218837,7,87.3798206020247,0.680210596690623,16.8975069252078,38.5222736880893,0,399.780398050944,399.232666015625,0.739352588962465
+4654,307874,3795298,307974,3795198,53,46,1.93905817174515,0.00629860037446057,2.09053802093278,0.194444444444444,36.3690261817537,0.0357357683374516,0.277008310249307,27.7008310249307,2,92.2344134998131,0.746424010217114,24.0997229916898,21.6453518104553,0,400.714017868042,399.903533935547,0.696110818509198
+4655,307874,3795198,307974,3795098,54,46,2.36842105263158,0.00809820048144931,2.44542330272134,0.222222222222222,22.5141590648952,0.0298286893289562,0.128947368421053,12.8947368421053,5,74.7826807459872,0.726658034815134,5.26315789473684,17.7173694591133,0,400.951845169067,400.166351318359,0.747550928201325
+4656,307874,3795098,307974,3794998,55,46,30.1939058171745,0.098078205830886,14.0648038509875,0.542118337850045,17.3185838960732,0.0226182091089999,0.0969529085872576,9.69529085872576,3,76.8643104080327,0.751798180664269,6.09418282548476,0.803712967463902,0,399.243372599284,398.907867431641,0.813327116944737
+4657,307874,3794998,307974,3794898,56,46,0,NA,NA,NA,NA,0.00629761368439799,0,0,0,NA,NA,0,NA,NA,398.670324325562,398.542572021484,0.159575220962757
+4658,307874,3794898,307974,3794798,57,46,1.93905817174515,0.00629860037446057,2.59778759307065,0.138888888888889,38.1008848138317,0.00652805150870603,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,31.1734504699707,31.1734504699707,398.521878560384,398.45361328125,0.0780250748105968
+4659,307874,3794798,307974,3794698,58,46,57.1052631578947,0.585769834824833,36.4691603742262,0.827188940092166,NA,0.0270800986063286,0.176315789473684,17.6315789473684,5,78.6279922292258,0.740586002566833,6.05263157894737,2.00788993266091,0,398.488647460938,398.425018310547,0.0821085695619988
+4660,307874,3794698,307974,3794598,59,46,26.8698060941828,0.0654604538917152,11.1714106185092,0.596840659340659,18.8579293233876,0.0418813854508633,0.434903047091413,43.4903047091413,1,97.1313051083973,0.901688453159041,43.4903047091413,7.43429117749451,0,398.516235351562,398.434814453125,0.0969981272628631
+4661,307874,3794598,307974,3794498,60,46,0,NA,NA,NA,NA,0.0244742469613834,0.14404432132964,14.404432132964,7,75.1713745509779,0.684956910657794,9.69529085872576,45.4674451901362,15.5867252349854,398.640142440796,398.496734619141,0.133580553151732
+4662,307874,3794498,307974,3794398,61,46,0,NA,NA,NA,NA,0.0195825514265909,0.0526315789473684,5.26315789473684,4,62.2754164151702,0.599616858237548,3.04709141274238,32.167704532021,15.5867252349854,398.684829711914,398.620971679688,0.102086005782666
+4663,307874,3794398,307974,3794298,62,46,0,NA,NA,NA,NA,0.0314823499967468,0.15,15,5,76.6574669158181,0.663865546218487,6.57894736842105,68.7385093956663,44.3910140991211,398.414539337158,398.190216064453,0.223606197417561
+4664,307874,3794298,307974,3794198,63,46,38.781163434903,0.377916022467634,28.6837357431412,0.858333333333333,NA,0.0190913962639502,0.0609418282548476,6.09418282548476,2,79.2550861890239,0.686795072011105,5.54016620498615,41.5510437922044,5.19557523727417,398.114883422852,398.022796630859,0.141056740345951
+4665,307874,3794198,307974,3794098,64,46,16.8975069252078,0.0823317048947346,13.6335054999798,0.700980392156863,16.4298513045218,0.0384067654051447,0.28808864265928,28.808864265928,3,90.2455052914774,0.872302794481783,22.1606648199446,22.6410799439137,5.19557523727417,398.061052322388,398.017608642578,0.0650799998116987
+4666,307874,3794098,307974,3793998,65,46,14.6814404432133,0.0715341042528022,11.2771459366364,0.630434782608696,55.2297218651029,0.0408085722038233,0.310249307479224,31.0249307479224,5,84.6849106677986,0.770328840112927,13.8504155124654,22.5400289254529,0,398.235020955404,398.133148193359,0.191184856398968
+4667,307874,3793998,307974,3793898,66,46,0.263157894736842,0.0026994001604831,0,0,NA,0.035640727543413,0.302631578947368,30.2631578947368,4,87.8318024647282,0.827648766328012,12.1052631578947,39.3437426981719,7.34765291213989,398.790348052979,398.402130126953,0.448265969877893
+4668,307874,3793898,307974,3793798,67,46,0,NA,NA,NA,NA,0.0144233459952344,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,77.0147079467773,70.6674652099609,399.493721008301,399.060974121094,0.55347658046697
+4669,307874,3793798,307974,3793698,68,46,0.277008310249307,0.0026994001604831,0,0,NA,0.015581197855976,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,37.4964170455933,25.977876663208,400.39365196228,399.961822509766,0.498921709540307
+4670,307874,3793698,307974,3793598,69,46,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,0.015851953891185,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,29.8745579719543,15.5867252349854,401.325420379639,400.671447753906,0.613079993526933
+4671,307874,3793598,307974,3793498,70,46,26.8421052631579,0.137669408184638,20.0106635533725,0.751656920077973,11.6176593526411,0.0251954650697754,0.0763157894736842,7.63157894736842,5,72.8084332824427,0.677517124325635,5.78947368421053,10.6706213128978,0,402.45511118571,401.835113525391,0.874893591078947
+4672,307874,3793498,307974,3793398,71,46,0,NA,NA,NA,NA,0.0191382840344695,0.0304709141274238,3.04709141274238,3,59.1111111111111,0.724952380952381,2.49307479224377,107.263637195934,58.0882949829102,403.607122421265,403.140869140625,0.513261608206458
+4673,307874,3793398,307974,3793298,72,46,0,NA,NA,NA,NA,0.0246310669945639,0.0470914127423823,4.70914127423823,4,57.7666935345723,0.664186046511628,2.77008310249307,141.695777444278,119.498229980469,404.224446614583,403.858154296875,0.272210282017761
+4674,307874,3793298,307974,3793198,73,46,0,NA,NA,NA,NA,0.0325412973585404,0.18005540166205,18.005540166205,4,83.050485866216,0.697799569480985,10.5263157894737,98.2156795208271,52.2148818969727,404.155548095703,403.792999267578,0.285146815959896
+4675,307874,3793198,307974,3793098,74,46,0,NA,NA,NA,NA,0.0390518285319367,0.286842105263158,28.6842105263158,4,91.5507104332738,0.857643246483226,25.7894736842105,60.8860005894932,25.977876663208,403.518371582031,403.323913574219,0.358398698982619
+4676,307874,3793098,307974,3792998,75,46,51.8005540166205,0.25239391500517,16.6463164435895,0.510810810810811,10.3911503376439,0.0309511212293617,0.171745152354571,17.1745152354571,5,80.2488650643384,0.809952929518147,11.9113573407202,4.73599400827962,0,403.225889205933,402.772521972656,0.429487957828638
+4677,307874,3792998,307974,3792898,76,46,11.6343490304709,0.11337480674029,13.4460989452305,0.785714285714286,NA,0.0315827560825458,0.213296398891967,21.3296398891967,4,83.0398625552894,0.775683512841756,11.6343490304709,23.4212706925033,0,403.894627888997,403.200622558594,1.16580086151186
+4678,307874,3792898,307974,3792798,77,46,0,NA,NA,NA,NA,0.00876345678799853,0.0664819944598338,6.64819944598338,4,70.2204145607076,0.661721068249258,4.70914127423823,117.133577664693,99.9388809204102,406.210634231567,405.187438964844,1.15762228700238
+4679,307874,3792798,307974,3792698,78,46,0,NA,NA,NA,NA,0.0390790397838971,0.336842105263158,33.6842105263158,5,93.4003861664453,0.708767627222563,30.2631578947368,128.023396015167,78.1066207885742,407.344057718913,406.863342285156,0.495577051232624
+4680,307874,3792698,307974,3792598,79,46,0,NA,NA,NA,NA,0.0292008500836852,0.157894736842105,15.7894736842105,4,79.036652469757,0.75765306122449,7.20221606648199,53.1399816546524,36.369026184082,407.985774993896,407.271697998047,0.731791714411903
+4681,307874,3792598,307974,3792498,80,46,22.1606648199446,0.0719840042795494,12.6008546587595,0.534090909090909,19.0504423895965,0.0428204253951856,0.307479224376731,30.7479224376731,6,82.1298330737726,0.66066,9.41828254847645,11.5993750116847,0,408.637112935384,408.235107421875,0.44468864781762
+4682,307874,3792498,307974,3792398,81,46,17.1745152354571,0.0418407024874881,8.12611279785597,0.433501683501683,22.1821019549048,0.0526414504439191,0.457063711911357,45.7063711911357,4,94.4470382685627,0.739477040816327,38.5041551246537,16.0092958565914,0,408.859313964844,408.285949707031,0.546028088663635
+4683,307874,3792398,307974,3792298,82,46,9.73684210526316,0.0332926019792916,8.33696029396343,0.365740740740741,13.9894104798798,0.0635853853752212,0.610526315789474,61.0526315789474,2,97.3565749424488,0.679795268709818,55,26.3391402487097,0,408.399617513021,407.526092529297,0.862644177215368
+4684,307874,3792298,307974,3792198,83,46,6.92520775623269,0.0337425020060388,8.14037896724241,0.456349206349206,23.2353185658643,0.0721033587768014,0.606648199445983,60.6648199445983,2,97.8270139329881,0.794376553438277,59.5567867036011,19.5199219385783,0,407.662994384766,407.311981201172,0.578667950520677
+4685,307874,3792198,307974,3792098,84,46,22.7146814404432,0.221350813159614,26.1840914675862,0.770325203252033,NA,0.0522385120997786,0.440443213296399,44.0443213296399,2,96.6773043592028,0.951037569510376,43.7673130193906,5.19996117645839,0,407.553636550903,407.282684326172,0.375613547908055
+4686,307874,3792098,307974,3791998,85,46,0,NA,NA,NA,NA,0.0479851170060698,0.376731301939058,37.6731301939058,5,90.3163879186047,0.747688172043011,22.1606648199446,29.5694779508254,7.34765291213989,407.804534912109,407.4091796875,0.386472945662773
+4687,307874,3791998,307974,3791898,86,46,25.2631578947368,0.129571207703189,15.6617118705222,0.756617038875103,31.6034499687999,0.057761566178095,0.55,55,2,97.9046433608126,0.754355898314767,54.7368421052632,12.1984926524915,0,408.286243438721,407.734100341797,0.566880527337267
+4688,307874,3791898,307974,3791798,87,46,12.1883656509695,0.0296934017653141,8.34816607833382,0.388842437755481,21.203863769933,0.0348667880204839,0.218836565096953,21.8836565096953,7,78.1358185877048,0.570238095238095,6.09418282548476,12.9838810148118,0,408.459060668945,408.066284179688,0.471671629495522
+4689,307874,3791798,307974,3791698,88,46,28.5318559556787,0.0926794055099198,10.9756901586518,0.375982042648709,24.2460175237798,0.0605850630043812,0.518005540166205,51.8005540166205,4,91.8992145398513,0.796126503222377,32.409972299169,11.9418159755156,0,408.012855529785,407.85107421875,0.262505342103856
+4690,307874,3791698,307974,3791598,89,46,0,NA,NA,NA,NA,0.0260714345445232,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.656190476190476,3.04709141274238,16.0590502999046,15.5867252349854,407.784550984701,407.737884521484,0.0990690198549914
+4691,307874,3791598,307974,3791498,90,46,17.8947368421053,0.0917796054564255,15.438553082151,0.48034188034188,21.4219052194909,0.0332565272132725,0.157894736842105,15.7894736842105,4,81.6249870933437,0.714543269230769,7.63157894736842,3.52561138470968,0,407.785564422607,407.730712890625,0.0986456734274114
+4692,307874,3791498,307974,3791398,91,46,36.01108033241,0.175461010431402,19.1886323022745,0.613888888888889,20.7823006752878,0.0319941197252714,0.188365650969529,18.8365650969529,2,88.8686859434721,0.792927409871799,14.1274238227147,1.02491993763868,0,408.050893147786,407.888397216797,0.317809738306757
+4693,307874,3791398,307974,3791298,92,46,31.5789473684211,0.0512886030491789,11.0820148153623,0.555862468444168,14.9390935166855,0.03407239454372,0.213296398891967,21.3296398891967,9,77.6906982549807,0.598099627174814,10.2493074792244,4.31445623992325,0,408.760417938232,408.312469482422,0.394680920265928
+4694,307874,3791298,307974,3791198,93,46,31.0249307479224,0.302332817974107,29.2070663299702,0.751488095238095,NA,0.0289950587173538,0.28808864265928,28.808864265928,3,91.7849494354624,0.804698391560374,25.7617728531856,5.54297656737841,0,408.824971516927,408.315948486328,0.415028059037286
+4695,307874,3791198,307974,3791098,94,46,19.2105263157895,0.0985281058576332,16.8104056433228,0.622251157407407,49.2895539135654,0.0434274346288643,0.492105263157895,49.2105263157895,2,94.473197403207,0.817904100152745,28.4210526315789,13.3106912750611,0,408.120952606201,407.476196289062,0.657279075885236
+4696,307874,3791098,307974,3790998,95,46,56.2326869806094,0.54797823257807,30.2800059273646,0.897372742200328,NA,0.06705073168083,0.634349030470914,63.4349030470914,1,98.5802481063074,0.910332836562345,63.4349030470914,2.21992405429157,0,407.528419494629,407.193145751953,0.450837298185647
+4697,307874,3790998,307974,3790898,96,46,2.49307479224377,0.012147300722174,3.10572045289703,0.25,72.7380523635074,0.021285309855882,0.191135734072022,19.1135734072022,3,89.3990929705215,0.867174232989924,17.7285318559557,64.6716163745825,11.6176595687866,407.214418411255,406.8212890625,0.287897024627305
+4698,307874,3790898,307974,3790798,97,46,4.43213296398892,0.0215952012838648,5.66496812325494,0.541666666666667,15.5867255064659,0.0373452830593066,0.257617728531856,25.7617728531856,5,85.6067939850547,0.748449019960439,18.005540166205,25.05391768999,0,406.926592508952,406.642486572266,0.267762106687274
+4699,307874,3790798,307974,3790698,98,46,2.10526315789474,0.0215952012838648,5.94195243056945,0.520833333333333,NA,0.0132904852777038,0.0394736842105263,3.94736842105263,2,71.4033730948885,0.763387297633873,3.42105263157895,62.7799039204915,40.5787391662598,406.839878082275,406.59912109375,0.313908459954403
+4700,307874,3790698,307974,3790598,99,46,11.9113573407202,0.0386914023002578,8.51524785668967,0.381032547699214,17.3185840692665,0.02815610039787,0.125730994152047,12.5730994152047,8,64.3924522954327,0.58695652173913,5.84795321637427,10.6384034267692,0,407.115695953369,406.662322998047,0.407925880960291
+4701,307974,3800598,308074,3800498,0,47,21.8836565096953,0.071084204226055,8.7957894291685,0.440740740740741,13.1717378724924,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.869463602702,382.253692626953,1.08392692408517
+4702,307974,3800498,308074,3800398,1,47,21.5789473684211,0.0553377032899036,9.06457756967558,0.447504276637341,28.7355648456388,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.458116319444,382.239898681641,0.410552956142322
+4703,307974,3800398,308074,3800298,2,47,49.0304709141274,0.119448457101377,15.9626972389845,0.520841496865204,12.9889379999919,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.718114217122,382.359375,0.460312517459622
+4704,307974,3800298,308074,3800198,3,47,79.5013850415512,0.193681961514663,16.5141353207741,0.690763663419913,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.128540039062,382.785888671875,0.560400038560604
+4705,307974,3800198,308074,3800098,4,47,73.4072022160665,0.238447014176007,21.2955362655896,0.597847847847848,12.1230088484866,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.820755004883,383.118865966797,0.915562779373826
+4706,307974,3800098,308074,3799998,5,47,71.5789473684211,0.183559210912851,10.7153668404048,0.381786616161616,10.3911503896019,0.075122874211765,0.651315789473684,65.1315789473684,3,96.1502306697044,0.871104515581938,63.8157894736842,3.08996286295881,0,384.89299858941,383.748504638672,1.4493592066156
+4707,307974,3799998,308074,3799898,6,47,73.4072022160665,0.715341042528022,33.1091067490088,0.915723270440251,NA,0.0739014642184131,0.797783933518006,79.7783933518006,1,99.3356347951183,0.817520093009149,79.7783933518006,2.64990335537328,0,385.920509338379,384.490661621094,1.52322483196378
+4708,307974,3799898,308074,3799798,7,47,58.7257617728532,0.572272834022418,31.3778175472044,0.869496855345912,NA,0.0319130934692573,0.152354570637119,15.2354570637119,5,80.8203781934318,0.639869281045752,9.69529085872576,9.73655304475264,0,386.712304009332,385.710510253906,1.32868100829871
+4709,307974,3799798,308074,3799698,8,47,55.9556786703601,0.545278832417587,30.988374233324,0.862211221122112,NA,0.0534758126457322,0.570637119113573,57.0637119113573,4,95.0235346587223,0.708110839720374,43.213296398892,4.87815038903246,0,388.323992411296,387.276519775391,1.57139821859855
+4710,307974,3799698,308074,3799598,9,47,67.8947368421053,0.69644524140464,33.1264939021243,0.904392764857881,NA,0.0633615544752071,0.839473684210526,83.9473684210526,1,99.505604707493,0.637819290888296,83.9473684210526,6.45479094944778,0,389.780459933811,388,2.14460391339067
+4711,307974,3799598,308074,3799498,10,47,63.98891966759,0.623561437071597,31.5253971619396,0.90981240981241,NA,0.0675967073073182,0.842105263157895,84.2105263157895,1,99.5015292450824,0.657358929610238,84.2105263157895,8.18571931123734,0,389.867914835612,388,2.32407840919546
+4712,307974,3799498,308074,3799398,11,47,62.8808864265928,0.612763836429664,31.1343862303754,0.911160058737151,NA,0.0729976383726683,0.955678670360111,95.5678670360111,1,99.8726354782749,0.480924079754602,95.5678670360111,7.9242086769878,0,389.789093017578,388,2.33746198688517
+4713,307974,3799398,308074,3799298,12,47,62.3268698060942,0.607365036108698,31.203717753464,0.907407407407407,NA,0.0738962828400971,0.894736842105263,89.4736842105263,1,99.6822873347675,0.377049180327869,89.4736842105263,7.64779947121446,0,389.743065728082,388,2.37460171773088
+4714,307974,3799298,308074,3799198,13,47,63.6842105263158,0.653254838836911,32.568994232544,0.911157024793388,NA,0.0768137077604862,0.855263157894737,85.5263157894737,1,99.5603354844149,0.582974936971675,85.5263157894737,8.04550703635583,0,390.191200256348,388,2.65920298803754
+4715,307974,3799198,308074,3799098,14,47,65.3739612188366,0.637058437874012,31.6864176618069,0.911723163841808,NA,0.0701207528948536,0.736842105263158,73.6842105263158,2,96.4129131131712,0.771543086172345,39.8891966759003,8.57997360444607,0,390.949035644531,388.802337646484,2.56301755686988
+4716,307974,3799098,308074,3798998,15,47,54.016620498615,0.263191515647102,18.5218717754894,0.742714025500911,10.3911503376439,0.054980837134729,0.61218836565097,61.218836565097,2,97.8273786880352,0.812239944521498,59.8337950138504,7.4976482110865,0,389.888066609701,388,2.47734327674374
+4717,307974,3798998,308074,3798898,16,47,50.1385041551247,0.488591429047441,33.5093849043339,0.839779005524862,NA,0.0490055615257933,0.578947368421053,57.8947368421053,5,95.4813937853513,0.731362467866324,52.0775623268698,8.03427545647872,0,389.985365125868,388,3.37772433298932
+4718,307974,3798898,308074,3798798,17,47,50,0.512886030491789,31.3361451563782,0.85,NA,0.0629170105657785,0.818421052631579,81.8421052631579,1,99.430180885378,0.586486620171143,81.8421052631579,10.7065993137298,0,390.423881530762,388,3.88852323659498
+4719,307974,3798798,308074,3798698,18,47,50.6925207756233,0.493990229368408,30.3327538621194,0.852459016393443,NA,0.0518132442052157,0.573407202216066,57.3407202216067,3,95.0971922319266,0.738185191431945,37.1191135734072,13.5969363088193,0,391.511515299479,388,3.73006788498755
+4720,307974,3798698,308074,3798598,19,47,51.2465373961219,0.499389029689374,29.1372627512863,0.892792792792793,NA,0.0559785729416045,0.609418282548476,60.9418282548476,4,94.7953893378511,0.787683791731534,52.3545706371191,20.0231239600615,0,391.459597269694,388,3.8246759143638
+4721,307974,3798598,308074,3798498,20,47,49.8614958448753,0.485892028886958,28.7227878471801,0.887962962962963,NA,0.0501476737375209,0.50415512465374,50.415512465374,3,94.7800840179772,0.724715282727981,42.1052631578947,17.6489492484501,0,391.390865749783,388,3.94360038351532
+4722,307974,3798498,308074,3798398,21,47,44.7368421052632,0.458898027282127,29.5575751199796,0.859803921568628,NA,0.0518752940289184,0.6,60,2,95.6752071045084,0.747058823529412,36.3157894736842,10.3099479173359,0,390.307217915853,388,4.59375430062572
+4723,307974,3798398,308074,3798298,22,47,49.584487534626,0.120798157181619,9.41878390723194,0.331530214424951,25.9778759740048,0.0485349919261937,0.487534626038781,48.7534626038781,4,94.4384102243339,0.72981288981289,41.5512465373961,12.1410252885385,0,389.745771620009,388,5.05086636606545
+4724,307974,3798298,308074,3798198,23,47,50.6925207756233,0.164663409789469,14.3418566050575,0.549158996274381,43.2964600172923,0.0446315414487988,0.429362880886427,42.9362880886427,3,93.4601922988327,0.784789644012945,31.5789473684211,10.5734070070328,0,390.122332255046,388,4.55763650887532
+4725,307974,3798198,308074,3798098,24,47,49.0304709141274,0.159264609468503,16.1609024079457,0.553922082459818,32.9053095584131,0.0464587754908597,0.45983379501385,45.983379501385,2,95.4748914013744,0.764052287581699,38.5041551246537,10.4764021017465,0,389.901865641276,388,4.39829625355256
+4726,307974,3798098,308074,3797998,25,47,55,0.282087316770484,26.0526847502611,0.705842911877395,46.7601769870196,0.0479220931212982,0.58421052631579,58.4210526315789,2,95.6096186607411,0.726961413807864,37.3684210526316,7.86122594008575,0,389.973439534505,388,4.28973154020942
+4727,307974,3797998,308074,3797898,26,47,46.814404432133,0.228099313560822,27.3716545077844,0.727136752136752,46.4706374105646,0.0411468900995228,0.393351800554017,39.3351800554017,4,90.9198775183154,0.752739726027397,22.7146814404432,7.83772996109976,0,390.907859802246,388,4.20128950532661
+4728,307974,3797898,308074,3797798,27,47,40.1662049861496,0.195706511635025,27.0296576480839,0.73372684046565,51.9557522077996,0.0398511721335295,0.46814404432133,46.814404432133,2,94.4231675585407,0.764973958333333,37.3961218836565,8.46815221549491,0,390.733856201172,388,4.80369354497207
+4729,307974,3797798,308074,3797698,28,47,48.1994459833795,0.23484781396203,26.8940512057194,0.742149758454106,51.9557522077996,0.0472996777105416,0.542936288088643,54.2936288088643,2,97.6690314154442,0.753563103563103,53.7396121883656,8.91437288206451,0,390.672607421875,388,5.35336833552119
+4730,307974,3797698,308074,3797598,29,47,46.3157894736842,0.237547214122513,27.3745453202302,0.753106754512829,46.7601769870196,0.0376579782275353,0.360526315789474,36.0526315789474,4,92.6465444548778,0.72477366255144,29.4736842105263,10.6738838940641,0,390.542277018229,388.240509033203,5.2957148148481
+4731,307974,3797598,308074,3797498,30,47,32.6869806094183,0.159264609468503,23.2280922856864,0.712419710478382,51.9557522077996,0.0317168422732927,0.321329639889197,32.1329639889197,4,92.311321168931,0.733372206025267,26.8698060941828,16.8286792779791,0,389.990432739258,388.066833496094,5.204716419337
+4732,307974,3797498,308074,3797398,31,47,21.8836565096953,0.106626306339083,13.7242825661259,0.749305555555556,11.6176593526411,0.0272774473277702,0.191135734072022,19.1135734072022,6,79.510311773258,0.7036963659006,10.2493074792244,13.0007323389468,0,393.819190131293,388.525665283203,4.09227824193283
+4733,307974,3797398,308074,3797298,32,47,13.0193905817175,0.0211453012571176,5.49624321403222,0.407239057239057,10.3911504069213,0.016800771714483,0.0443213296398892,4.43213296398892,3,60.2491415270706,0.564009661835749,1.93905817174515,8.51946651935577,0,396.474075317383,395.976928710938,0.6687477727952
+4734,307974,3797298,308074,3797198,33,47,33.1578947368421,0.0485892028886958,7.68470106388374,0.389731696874554,14.7748163194704,0.0302712199416419,0.25,25,1,94.5927206623699,0.92156862745098,25,3.23109186574032,0,397.268269856771,396.958953857422,0.446151061659628
+4735,307974,3797198,308074,3797098,34,47,12.7423822714681,0.124172407382223,26.8504199394307,0.673913043478261,NA,0.0232900776626444,0.265927977839335,26.5927977839335,1,94.7823367794258,0.897038174637999,26.5927977839335,20.1953626324733,0,397.854695638021,397.555450439453,0.295960269657385
+4736,307974,3797098,308074,3796998,35,47,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.03816032641119,0.285318559556787,28.5318559556787,5,91.3889379034665,0.833605698721978,26.3157894736842,59.9702175797768,5.19557523727417,398.165452745226,398.090972900391,0.140226592549262
+4737,307974,3796998,308074,3796898,36,47,19.9445983379501,0.0647856038515944,12.00277818953,0.555271039233303,12.9406814039161,0.0176692034814515,0.0858725761772853,8.58725761772853,4,74.082843354983,0.628060606060606,4.98614958448754,12.8852395088442,0,398.337809244792,398.203643798828,0.227605443584613
+4738,307974,3796898,308074,3796798,37,47,10.7894736842105,0.0553377032899036,14.5278513613155,0.371794871794872,10.3911504415599,0.0218025297509341,0.110526315789474,11.0526315789474,6,73.3042121964086,0.588299024918743,5.26315789473684,17.9797786417462,0,398.655053032769,398.347503662109,0.481714043322726
+4739,307974,3796798,308074,3796698,38,47,65.0969529085873,0.317179518856764,26.627380732266,0.785460992907801,31.1734510129318,0.0183236495464482,0.0415512465373961,4.15512465373961,2,73.4201733450948,0.810299527062533,3.8781163434903,2.42460177739461,0,399.496246337891,398.711456298828,0.660984646867308
+4740,307974,3796698,308074,3796598,39,47,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.00822327824406736,0,0,0,NA,NA,0,NA,NA,400.234586079915,399.827087402344,0.488709338703074
+4741,307974,3796598,308074,3796498,40,47,87.2576177285319,0.850311050552177,38.2644205367197,0.87989417989418,NA,-0.0169429593843977,0,0,0,NA,NA,0,NA,NA,400.714884440104,400.365417480469,0.556508987136367
+4742,307974,3796498,308074,3796398,41,47,86.4265927977839,0.842212850070728,35.1957684875458,0.919337606837607,NA,0.00651332392724655,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,7.14063517252604,0,401.265930175781,400.882080078125,0.570510881656508
+4743,307974,3796398,308074,3796298,42,47,17.1052631578947,0.0438652526078504,8.30852066883291,0.373694653299916,20.78230072205,0.0479845344963618,0.321052631578947,32.1052631578947,3,92.93292450308,0.920025255182574,30.2631578947368,21.2958982381664,0,401.003272162543,399.749237060547,1.1775963798265
+4744,307974,3796298,308074,3796198,43,47,4.43213296398892,0.0215952012838648,6.82811189549937,0.466666666666667,41.888066168147,0.0234874620369546,0.130193905817175,13.0193905817175,5,76.3123030101305,0.770063694267516,7.4792243767313,13.3169626580908,0,398.959966023763,397.244445800781,1.81626524580627
+4745,307974,3796198,308074,3796098,44,47,14.6814404432133,0.143068208505604,17.6999002097561,0.751572327044025,NA,0.0214931705520844,0.074792243767313,7.4792243767313,6,57.7976278126923,0.547556050689319,1.93905817174515,23.016106835118,5.19557523727417,397.130937364366,396.866638183594,0.687287562496327
+4746,307974,3796098,308074,3795998,45,47,39.8891966759003,0.194356811554783,26.2734924095368,0.762653760838879,10.3911503376439,0.0509823798642164,0.362880886426593,36.2880886426593,4,90.3770227018614,0.789849008550118,22.7146814404432,10.011240373131,0,396.708119710286,396.349395751953,0.496750606191481
+4747,307974,3795998,308074,3795898,46,47,0,NA,NA,NA,NA,0.037492886472089,0.25,25,2,90.4701305512817,0.882352941176471,15.5263157894737,73.1103873804996,37.8243598937988,395.725033230252,395.278198242188,0.699738939355963
+4748,307974,3795898,308074,3795798,47,47,23.8227146814404,0.0580371034503867,9.15472650476739,0.495535714285714,18.1845131298454,0.00554962194940866,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,4.76078987121582,0,395.42485555013,395.122985839844,0.496620676653281
+4749,307974,3795798,308074,3795698,48,47,45.1523545706371,0.0880004452317491,9.95974224526588,0.452222222222222,14.6146283639591,0.0351919985437247,0.246537396121884,24.6537396121884,7,79.0786191918011,0.691153348131706,11.6343490304709,6.33491888474882,0,396.456231011285,395.551666259766,1.60409427931154
+4750,307974,3795698,308074,3795598,49,47,42.9362880886427,0.20920351243744,27.5746613796462,0.71029072006161,20.7823006752878,0.0351348476844951,0.21606648199446,21.606648199446,6,79.8292763498273,0.759666103344088,11.6343490304709,8.44273314109215,0,397.329653422038,395.852966308594,1.98739383598866
+4751,307974,3795598,308074,3795498,50,47,47.8947368421053,0.245645414603962,23.8903341532575,0.653353057199211,20.7823006752878,0.0296043078027555,0.157894736842105,15.7894736842105,6,79.5900950145991,0.623197115384615,8.68421052631579,4.44785041014353,0,398.46396891276,397.480072021484,1.15146431002874
+4752,307974,3795498,308074,3795398,51,47,31.0249307479224,0.0604665635948215,9.76720492192387,0.397360669258866,22.9634234100649,0.0309744213912197,0.163434903047091,16.3434903047091,5,77.8368804474252,0.73045708349565,7.20221606648199,6.97300704859071,0,399.234275817871,398.663665771484,0.564196701653196
+4753,307974,3795398,308074,3795298,52,47,2.21606648199446,0.00719840042795494,3.1750737460322,0.203703703703704,24.2460175930571,0.0283134304590628,0.168975069252078,16.8975069252078,5,80.1411812932213,0.727547169811321,7.4792243767313,33.1618275017035,0,400.016998291016,399.500823974609,0.57754627678669
+4754,307974,3795298,308074,3795198,53,47,0,NA,NA,NA,NA,0.0172384754591589,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,83.6815147399902,82.1492538452148,401.067070007324,400.391632080078,0.525881500791212
+4755,307974,3795198,308074,3795098,54,47,0,NA,NA,NA,NA,0.0173919079086844,0,0,0,NA,NA,0,NA,NA,401.198473612467,400.519226074219,0.783094681973965
+4756,307974,3795098,308074,3794998,55,47,25.4847645429363,0.0827816049214818,16.3205247491851,0.62979310881232,17.3185839999892,0.0138296827988804,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,5.19557523727417,0,399.320054796007,398.962310791016,0.806523516875166
+4757,307974,3794998,308074,3794898,56,47,22.7146814404432,0.221350813159614,29.6539483851595,0.766260162601626,NA,0.00995646245471694,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.790116279069767,4.70914127423823,8.90246234220617,0,398.780695597331,398.650451660156,0.156521225455819
+4758,307974,3794898,308074,3794798,57,47,0,NA,NA,NA,NA,0.00468425026935174,0,0,0,NA,NA,0,NA,NA,398.643069797092,398.594177246094,0.0783597338084557
+4759,307974,3794798,308074,3794698,58,47,52.1052631578947,0.178160410591885,14.4526722774827,0.606248892433103,12.1230088484866,0.0539708580417745,0.571052631578947,57.1052631578947,2,96.1143176341347,0.786490919030553,47.8947368421053,2.52937736818867,0,398.662104288737,398.595916748047,0.0902667766259288
+4760,307974,3794698,308074,3794598,59,47,27.4238227146814,0.0668101539719568,9.04570078256442,0.561707811707812,22.3173101931988,0.0296543235892583,0.207756232686981,20.7756232686981,5,81.6390791060467,0.741815003178639,10.5263157894737,6.23444213231405,0,398.673475477431,398.632995605469,0.0668228212535339
+4761,307974,3794598,308074,3794498,60,47,0,NA,NA,NA,NA,-0.0104212366965142,0,0,0,NA,NA,0,NA,NA,398.714902242025,398.677612304688,0.0709711372082186
+4762,307974,3794498,308074,3794398,61,47,19.6675900277008,0.0638858037981001,8.61007233450416,0.463403880070547,13.8548671861359,0.0270420639890819,0.119113573407202,11.9113573407202,4,80.6988764432868,0.826563591893781,9.69529085872576,21.6501931700596,5.19557523727417,398.648027208116,398.477264404297,0.203665356692087
+4763,307974,3794398,308074,3794298,62,47,6.31578947368421,0.0647856038515944,12.7944555815531,0.666666666666667,NA,0.0214880845096655,0.0473684210526316,4.73684210526316,3,71.8804498699624,0.650092081031307,3.94736842105263,24.1571884685093,5.19557523727417,398.26426188151,398.028167724609,0.277929854780661
+4764,307974,3794298,308074,3794198,63,47,33.5180055401662,0.163313709709228,20.62722889587,0.684081527347781,15.5867255064659,0.0171494241440288,0.0332409972299169,3.32409972299169,2,65.5399298791045,0.817461655149166,2.77008310249307,12.0504109462102,0,397.980539957682,397.912506103516,0.113900852575783
+4765,307974,3794198,308074,3794098,64,47,37.3961218836565,0.364419021665219,27.7344946524645,0.802469135802469,NA,0.044702296879084,0.313019390581717,31.3019390581717,3,92.2571782449792,0.82161211258697,27.1468144044321,16.9938719842286,0,397.990030924479,397.909362792969,0.108024561136508
+4766,307974,3794098,308074,3793998,65,47,11.0803324099723,0.107976006419324,16.3403697600208,0.708333333333333,NA,0.0316395970204159,0.202216066481994,20.2216066481994,6,79.8522549068778,0.745388454861111,11.3573407202216,14.2630898135982,0,398.268178304036,398.127532958984,0.315381614596806
+4767,307974,3793998,308074,3793898,66,47,6.57894736842105,0.0674850040120775,10.2714413035675,0.713333333333333,NA,0.031936622190532,0.202631578947368,20.2631578947368,5,83.694933526024,0.760240729955349,9.47368421052632,34.0870138762833,0,399.088706970215,398.638397216797,0.658706456958035
+4768,307974,3793898,308074,3793798,67,47,7.75623268698061,0.0377916022467634,8.15091984978498,0.601851851851852,34.8529778487965,0.0310241252588949,0.221606648199446,22.1606648199446,4,83.6088483275422,0.791915192220941,9.41828254847645,21.5481523752213,0,400.189480251736,399.900360107422,0.520791832859325
+4769,307974,3793798,308074,3793698,68,47,0,NA,NA,NA,NA,0.0184715383744897,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.624154086413326,6.09418282548476,18.5043639269742,5.19557523727417,400.510874430339,400.115478515625,0.485774829405166
+4770,307974,3793698,308074,3793598,69,47,0,NA,NA,NA,NA,0.021108995816155,0.0443213296398892,4.43213296398892,3,64.3772896090086,0.476811594202899,2.21606648199446,89.2237505912781,44.6940307617188,401.601298014323,400.713348388672,0.788043903980273
+4771,307974,3793598,308074,3793498,70,47,4.73684210526316,0.0485892028886958,9.44756844884564,0.666666666666667,NA,0.0398362927944522,0.292105263157895,29.2105263157895,5,89.0671390405508,0.745724907063197,20.2631578947368,45.9835729169416,5.19557523727417,402.695878770616,402.319641113281,0.556783720574736
+4772,307974,3793498,308074,3793398,71,47,0,NA,NA,NA,NA,0.0280896286548495,0.132963988919668,13.2963988919668,6,74.9854939087799,0.732759292449154,9.14127423822715,101.254386266073,36.7382659912109,403.331166585286,403.089660644531,0.328639515732123
+4773,307974,3793398,308074,3793298,72,47,0,NA,NA,NA,NA,0.0318011526711552,0.185595567867036,18.5595567867036,5,80.5057675546592,0.758619687191116,8.58725761772853,137.620158409005,120.510467529297,403.626586914062,403.243591308594,0.551073105611557
+4774,307974,3793298,308074,3793198,73,47,0,NA,NA,NA,NA,0.0235926307109152,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,139.378095626831,129.889373779297,403.993334452311,403.543212890625,0.350251190881416
+4775,307974,3793198,308074,3793098,74,47,0,NA,NA,NA,NA,0.0324536832873587,0.155263157894737,15.5263157894737,7,74.2277818554715,0.698246900006108,6.05263157894737,73.0605880607993,37.8243598937988,403.668711344401,403.495239257812,0.327548572104212
+4776,307974,3793098,308074,3792998,75,47,14.1274238227147,0.0344173520461595,7.29111481982405,0.516129703629704,12.7660829978468,0.0409960218182335,0.277008310249307,27.7008310249307,2,90.6229629698675,0.869369944657301,14.1274238227147,17.7122515201569,0,403.443730672201,403.318786621094,0.253258357086968
+4777,307974,3792998,308074,3792898,76,47,0,NA,NA,NA,NA,0.0307029783382297,0.163434903047091,16.3434903047091,3,88.1030498599438,0.882807427606804,15.2354570637119,28.344365718001,5.19557523727417,404.332071940104,403.797882080078,0.959633789602939
+4778,307974,3792898,308074,3792798,77,47,0,NA,NA,NA,NA,0.0173348582347445,0.0526315789473684,5.26315789473684,3,66.058718457642,0.672413793103448,3.32409972299169,107.103869789525,83.1292037963867,405.95219930013,405.250335693359,0.694265650833299
+4779,307974,3792798,308074,3792698,78,47,3.15789473684211,0.0323928019257972,8.87143928865089,0.513888888888889,NA,0.0298264102854055,0.113157894736842,11.3157894736842,7,65.2986924249004,0.5928123969667,3.94736842105263,56.9829811273619,0,406.644619411892,406.395294189453,0.392232823716447
+4780,307974,3792698,308074,3792598,79,47,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0377533918554918,0.221606648199446,22.1606648199446,6,82.5037836660719,0.719537867776051,13.2963988919668,37.6143134951592,0,407.133989969889,406.802734375,0.412002910078945
+4781,307974,3792598,308074,3792498,80,47,30.1939058171745,0.0735586543731645,8.55308380592671,0.342412217412217,19.7576067048226,0.0616185598977044,0.628808864265928,62.8808864265928,1,98.5495872664447,0.777089728661656,62.8808864265928,7.26329205844896,0,407.647026909722,407.303344726562,0.541596314120971
+4782,307974,3792498,308074,3792398,81,47,1.38504155124654,0.0134970008024155,5.38293053963972,0.333333333333333,NA,0.0432045890749245,0.385041551246537,38.5041551246537,3,92.8953595972769,0.69910264595304,29.9168975069252,29.8233499904331,0,407.792409261068,407.473663330078,0.488121507341122
+4783,307974,3792398,308074,3792298,82,47,3.68421052631579,0.0377916022467634,8.01177701709378,0.630952380952381,NA,0.0681257616314963,0.492105263157895,49.2105263157895,3,93.2473746407874,0.869118571984785,33.9473684210526,38.1012731235933,0,407.436971028646,407.265533447266,0.340264275445539
+4784,307974,3792298,308074,3792198,83,47,1.38504155124654,0.0134970008024155,6.23469020258635,0.266666666666667,NA,0.0504177795991183,0.437673130193906,43.7673130193906,2,94.0293313303335,0.797638865296416,38.2271468144044,49.0199807535244,7.34765291213989,407.216913859049,407.170013427734,0.101927251385557
+4785,307974,3792198,308074,3792098,84,47,16.6204986149584,0.0404910024072465,8.51872483256669,0.459435998498498,15.1752860434992,0.032898631022214,0.3601108033241,36.01108033241,3,93.9223565936625,0.821962847279303,32.9639889196676,8.72305272175715,0,407.239626566569,407.184173583984,0.0890134892699771
+4786,307974,3792098,308074,3791998,85,47,8.31024930747922,0.0809820048144931,13.1192856152531,0.716666666666667,NA,0.0353310404036034,0.310249307479224,31.0249307479224,4,90.1276345009885,0.777506063859398,21.0526315789474,21.2323087113244,0,407.440314398872,407.358032226562,0.196032155326906
+4787,307974,3791998,308074,3791898,86,47,5,0.0256443015245895,6.35199133383703,0.360294117647059,36.7382645240838,0.0699163032685312,0.5,50,1,97.7602315628138,0.920454545454545,50,17.4723381971058,0,407.920285542806,407.612182617188,0.397255043422782
+4788,307974,3791898,308074,3791798,87,47,4.98614958448753,0.0161964009628986,6.30274429996707,0.267676767676768,18.0167381256233,0.0372510241766053,0.299168975069252,29.9168975069252,2,91.1656397032491,0.860970913144826,25.7617728531856,46.8430751473815,0,408.206481933594,408.070556640625,0.228649588636281
+4789,307974,3791798,308074,3791698,88,47,38.2271468144044,0.0620862036911113,9.03471395553063,0.488809239346874,13.5691507523574,0.0659348925355038,0.529085872576177,52.9085872576177,2,94.7358511100303,0.826038551013626,27.1468144044321,6.21637261475568,0,408.121775309245,407.914459228516,0.253771585621014
+4790,307974,3791698,308074,3791598,89,47,32.409972299169,0.0789574546941307,11.9064679131502,0.502761243386243,22.0811946103778,0.0287081874932654,0.18005540166205,18.005540166205,1,92.4630002378058,0.870485529777565,18.005540166205,6.44754087741558,0,407.975663926866,407.831359863281,0.294865411852153
+4791,307974,3791598,308074,3791498,90,47,17.3684210526316,0.0890802052959423,22.6184858032386,0.524183006535948,57.387004000763,0.0172306077189875,0.263157894736842,26.3157894736842,2,90.9654919450016,0.826587301587302,19.4736842105263,15.5643176174164,5.19557523727417,407.981257120768,407.823944091797,0.268122518171446
+4792,307974,3791498,308074,3791398,91,47,39.3351800554017,0.0766629645577201,10.1898987989379,0.44187675070028,15.0518737507161,0.0324969501107413,0.279778393351801,27.9778393351801,5,90.5702634635331,0.723841903952401,22.7146814404432,3.66043578988255,0,408.349609375,408.01806640625,0.478079672768351
+4793,307974,3791398,308074,3791298,92,47,26.3157894736842,0.0427405025409824,10.7341022706559,0.486983082706767,15.5867256103819,0.0352071614617061,0.321329639889197,32.1329639889197,6,88.7751876062983,0.712322643343052,22.9916897506925,10.7439648652899,0,408.918230692546,408.703826904297,0.295729952484808
+4794,307974,3791298,308074,3791198,93,47,36.2880886426593,0.0884053552558216,10.8095676089804,0.417983565107459,17.8987043785114,0.0311550241216099,0.25207756232687,25.207756232687,6,82.4032188778228,0.628600823045268,9.14127423822715,4.92760959562364,0,408.708699544271,408.042358398438,0.664305466550284
+4795,307974,3791198,308074,3791098,94,47,25.2631578947368,0.0647856038515944,10.6869689425372,0.635353535353535,13.5901189877205,0.0296871155979225,0.360526315789474,36.0526315789474,2,93.5746303882468,0.849876543209877,27.6315789473684,7.26155786096615,0,407.388145446777,406.724334716797,0.704641440273534
+4796,307974,3791098,308074,3790998,95,47,50.415512465374,0.491290829207925,32.1958333176134,0.81959706959707,NA,0.0624119816675274,0.573407202216066,57.3407202216066,3,96.4105251582739,0.80516107269354,50.6925207756233,3.74246178963334,0,406.898267957899,406.733489990234,0.295561750023289
+4797,307974,3790998,308074,3790898,96,47,40.7202216066482,0.132270607863672,13.581000630474,0.47962962962963,11.8258688975844,0.0655802280862669,0.623268698060942,62.3268698060942,2,96.7082868667868,0.772478991596639,56.2326869806094,6.26950892554389,0,407.031321207682,406.815643310547,0.216806533297748
+4798,307974,3790898,308074,3790798,97,47,28.2548476454294,0.0688347040923191,9.99868035734372,0.574904546728317,15.5867255584239,0.0586015703275707,0.6398891966759,63.98891966759,2,98.1612957523866,0.890469391397466,63.4349030470914,6.93328267258483,0,407.107947455512,407.001159667969,0.228854100145976
+4799,307974,3790798,308074,3790698,98,47,10,0.0512886030491789,14.7650509265127,0.448529411764706,34.8529778487965,0.0320382052103116,0.189473684210526,18.9473684210526,5,83.6081356283251,0.640556294099601,11.5789473684211,21.6546812123722,0,407.209846496582,406.934783935547,0.403543275359422
+4800,307974,3790698,308074,3790598,99,47,15.5124653739612,0.151166408987054,24.2077739996464,0.738095238095238,NA,0.0234107805955685,0.134502923976608,13.4502923976608,5,74.0195285197888,0.688929313929314,4.67836257309942,10.3523930155713,0,407.62318166097,407.326110839844,0.36113124563807
+4801,308074,3800598,308174,3800498,0,48,49.3074792243767,0.120123307141498,13.2148171632568,0.704954223469661,12.9889379999919,NA,NA,NA,NA,NA,NA,NA,NA,NA,381.989000320435,381.872802734375,0.130480444657205
+4802,308074,3800498,308174,3800398,1,48,48.4210526315789,0.248344814764445,19.9515949390574,0.784349593495935,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.093556722005,382.000671386719,0.193069320612627
+4803,308074,3800398,308174,3800298,2,48,71.7451523545706,0.349572320782562,27.5637844087888,0.707160894660895,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.47145652771,382.202514648438,0.311964181426488
+4804,308074,3800298,308174,3800198,3,48,58.1717451523546,0.188958011233817,15.9058226834044,0.524331542250368,11.8258688975844,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.943641662598,382.723327636719,0.262766322692069
+4805,308074,3800198,308174,3800098,4,48,3.601108033241,0.0116974006954268,3.41202049763993,0.227777777777778,30.1931865337041,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.247653961182,383.043121337891,0.257193074618378
+4806,308074,3800098,308174,3799998,5,48,5.26315789473684,0.053988003209662,11.8029037650915,0.633333333333333,NA,0.0139252448561341,0.0526315789473684,5.26315789473684,2,54.4135192072642,0.577777777777778,2.63157894736842,30.2747507095337,20.7823009490967,383.631258646647,383.464416503906,0.361704047255143
+4807,308074,3799998,308174,3799898,6,48,27.9778393351801,0.272639416208793,20.3853266769051,0.838283828382838,NA,0.00501916281980243,0.0249307479224377,2.49307479224377,2,56.0135633059638,0.743607954545455,1.66204986149584,32.0808809068468,23.2353191375732,384.211057662964,383.7880859375,0.71400321848464
+4808,308074,3799898,308174,3799798,7,48,22.7146814404432,0.0737836043865381,12.0653065417593,0.636436045038196,12.1230087792092,0.00553464879307779,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.5646018981934,41.5646018981934,385.484507242839,385.009674072266,0.878383761413115
+4809,308074,3799798,308174,3799698,8,48,51.5235457063712,0.502088429849857,30.9035683392972,0.859318996415771,NA,0.0223072451614153,0.149584487534626,14.9584487534626,5,82.8808060838939,0.848271514132605,13.0193905817175,25.0888162983788,0,387.030044555664,385.779541015625,1.06902375861076
+4810,308074,3799698,308174,3799598,9,48,26.3157894736842,0.26994001604831,27.5873601012797,0.76,NA,0.0322839964026475,0.35,35,1,96.2673090602228,0.853782581055308,35,28.4480232367838,10.3911504745483,388.142565409342,387.703918457031,0.546221621456002
+4811,308074,3799598,308174,3799498,10,48,53.7396121883656,0.523683631133722,29.5208863622221,0.901202749140893,NA,0.0309736191232224,0.282548476454294,28.2548476454294,1,95.1039981574685,0.885752262801443,28.2548476454294,30.6534926190096,10.3911504745483,389.226505279541,388,1.59987996762772
+4812,308074,3799498,308174,3799398,11,48,53.7396121883656,0.523683631133722,30.7275976658893,0.853951890034364,NA,0.0234250192476196,0.207756232686981,20.7756232686981,1,93.3670498726635,0.89481351981352,20.7756232686981,28.2010008366903,10.3911504745483,390.006458282471,388,2.06610116315696
+4813,308074,3799398,308174,3799298,12,48,38.2271468144044,0.093129305536667,11.762787948197,0.419622331691297,11.9008256382035,0.0249441896375882,0.202216066481994,20.2216066481994,3,86.587010391367,0.735595703125,13.5734072022161,20.7525017098205,0,390.429634094238,388,2.0782536331891
+4814,308074,3799298,308174,3799198,13,48,53.6842105263158,0.550677632738553,31.6140585089341,0.843137254901961,NA,0.0219229658641301,0.139473684210526,13.9473684210526,4,82.2905744053332,0.693517491682629,9.73684210526316,25.3181032684614,0,390.26583480835,388,1.91976525067011
+4815,308074,3799198,308174,3799098,14,48,63.4349030470914,0.61816263675063,31.0003697417245,0.909024745269287,NA,0.0315483596670468,0.329639889196676,32.9639889196676,2,92.0778151395556,0.83425160697888,19.3905817174515,14.7564003808158,0,389.823979695638,388,1.91335540795157
+4816,308074,3799098,308174,3798998,15,48,47.9224376731302,0.466996227763577,30.459189266447,0.84393063583815,NA,0.0262059416353197,0.260387811634349,26.0387811634349,3,91.2441224567419,0.822944533618691,22.4376731301939,24.3654210110928,0,389.844898223877,388,1.80628696443369
+4817,308074,3798998,308174,3798898,16,48,24.0997229916898,0.23484781396203,27.5622173963386,0.78544061302682,NA,0.0165620051762527,0.146814404432133,14.6814404432133,4,78.9656320644293,0.678000570857714,6.64819944598338,23.8558946915393,0,389.762296040853,388,1.84425258335968
+4818,308074,3798898,308174,3798798,17,48,34.7368421052632,0.356320821183769,30.8177895326002,0.765151515151515,NA,0.0207909817843565,0.0973684210526316,9.73684210526316,5,71.9062492512838,0.600439707498925,3.94736842105263,38.9104439116813,5.19557523727417,389.830596923828,388,2.07645562928227
+4819,308074,3798798,308174,3798698,18,48,55.4016620498615,0.53988003209662,30.164021749483,0.8825,NA,0.0309057307844079,0.357340720221607,35.7340720221607,2,93.0931073361075,0.847707263389582,26.3157894736842,22.4897982870886,0,390.417599995931,388,2.9709690868528
+4820,308074,3798698,308174,3798598,19,48,48.4764542936288,0.472395028084543,29.2497231067475,0.892380952380952,NA,0.0341640642652144,0.379501385041551,37.9501385041551,3,92.9692447757772,0.690571428571429,29.9168975069252,25.5253777747607,0,390.419033050537,388,3.2619465284448
+4821,308074,3798598,308174,3798498,20,48,48.1994459833795,0.15656520930802,15.3597034521448,0.588525780682643,15.2734876412629,0.00499009785032444,0.113573407202216,11.3573407202216,4,76.4630797971566,0.656657608695652,5.81717451523546,24.3286992515006,10.3911504745483,390.962997436523,388,3.46364265403922
+4822,308074,3798498,308174,3798398,21,48,39.7368421052632,0.203804712116474,23.237113935368,0.73766420361248,10.3911503376439,0.00611777302467185,0.0236842105263158,2.36842105263158,2,56.6643481405042,0.658580413297394,1.57894736842105,6.72554604212443,0,392.781896591187,390.399688720703,2.48995388917598
+4823,308074,3798398,308174,3798298,22,48,52.6315789473684,0.256443015245895,22.8051226604317,0.77202974212941,20.7823008831198,0.0142973300713201,0.0831024930747922,8.31024930747922,2,78.552212928781,0.777421542635181,4.98614958448754,10.6513673941294,0,392.721308390299,390.615142822266,2.20989625723684
+4824,308074,3798298,308174,3798198,23,48,82.2714681440443,0.801721847663481,36.5141860552487,0.891133557800225,NA,0.0180194694064722,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.818007662835249,5.26315789473684,0.273451328277588,0,392.558967590332,390.861877441406,1.92311656482694
+4825,308074,3798198,308174,3798098,24,48,70.9141274238227,0.691046441083674,33.9326288703875,0.865885416666667,NA,0.0246183100728324,0.07202216066482,7.20221606648199,4,66.8352061663435,0.658318165271205,2.49307479224377,3.38742168133075,0,392.558670043945,391.179901123047,1.30250172246937
+4826,308074,3798098,308174,3797998,25,48,63.1578947368421,0.647856038515944,33.3134421926158,0.878472222222222,NA,0.0108887692809958,0.0473684210526316,4.73684210526316,6,47.8356082755429,0.455698792715367,1.57894736842105,1.73185841242472,0,392.381782531738,391.170593261719,1.73241021727475
+4827,308074,3797998,308174,3797898,26,48,60.9418282548476,0.197956011768761,12.7178926133485,0.367054263565891,17.3185840692665,0.00745455181733073,0.038781163434903,3.8781163434903,4,55.2675078003646,0.635878962536023,2.49307479224377,2.22667510168893,0,392.864038467407,391.695556640625,1.88373751293449
+4828,308074,3797898,308174,3797798,27,48,68.9750692520776,0.336075319980146,28.3078392412574,0.705841952165482,25.9778761038998,0.0035250015958945,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0,393.69053141276,392.497955322266,2.09556482488115
+4829,308074,3797798,308174,3797698,28,48,68.9750692520776,0.336075319980146,28.0061692280203,0.801123903508772,25.9778759376342,0.0132427062488411,0.0554016620498615,5.54016620498615,2,72.2305028273429,0.795099801343298,3.32409972299169,4.06561076641083,0,393.752603530884,393.100067138672,1.8627120315791
+4830,308074,3797698,308174,3797598,29,48,59.4736842105263,0.203354812089727,16.9854199395629,0.487263084680925,12.1230088484866,0.0181338651963942,0.131578947368421,13.1578947368421,2,88.3911322314506,0.783244206773619,12.3684210526316,8.22446613311768,0,393.84312693278,393.14794921875,1.97787381280537
+4831,308074,3797598,308174,3797498,30,48,39.8891966759003,0.194356811554783,18.8883238522093,0.737433862433863,30.2951490982217,0.0209324627711721,0.121883656509695,12.1883656509695,4,76.9937978602495,0.75377270014494,7.4792243767313,8.16407410664992,0,394.554056167603,393.527221679688,1.94096438104178
+4832,308074,3797498,308174,3797398,31,48,53.4626038781163,0.260492115486619,27.4847125108961,0.77305466633834,23.2353187052823,0.0165946827512112,0.166204986149584,16.6204986149584,3,84.6426977941745,0.827018911321237,10.803324099723,2.7406903107961,0,395.476366678874,394.970703125,0.713049187701072
+4833,308074,3797398,308174,3797298,32,48,36.5650969529086,0.0890802052959424,12.3709344173217,0.472140308722878,22.3553943720221,0.0344877335454313,0.285318559556787,28.5318559556787,3,93.4651111355743,0.841169076052797,27.4238227146814,3.73787576249502,0,396.241250991821,395.913635253906,0.395962253115482
+4834,308074,3797298,308174,3797198,33,48,43.9473684210526,0.112699956700169,14.9143708317292,0.627463312368973,20.0727712146132,0.0211476075813775,0.0605263157894737,6.05263157894737,5,67.7454820969376,0.586056644880174,4.21052631578947,2.04762027574622,0,396.876284281413,396.596801757812,0.443721799778547
+4835,308074,3797198,308174,3797098,34,48,13.5734072022161,0.066135303931836,12.5824036249282,0.632876016260163,10.3911504415599,0.0360986535774941,0.32409972299169,32.409972299169,1,95.7969409923339,0.895317816269719,32.409972299169,24.2705467705034,0,397.612575531006,397.212768554688,0.461628907331427
+4836,308074,3797098,308174,3796998,35,48,0,NA,NA,NA,NA,0.0547304707187501,0.415512465373961,41.5512465373961,2,96.1944775232403,0.850685049547609,40.7202216066482,77.0097597249349,32.8597030639648,398.27161916097,398.121429443359,0.276567026460094
+4837,308074,3796998,308174,3796898,36,48,0,NA,NA,NA,NA,0.0565271279840765,0.53185595567867,53.185595567867,2,94.912191410988,0.837992819626355,32.6869806094183,48.7481000224749,15.5867252349854,398.585159301758,398.381896972656,0.182920768118398
+4838,308074,3796898,308174,3796798,37,48,2.36842105263158,0.00809820048144931,2.60097475864467,0.237037037037037,37.8370911042674,0.0509884074877176,0.336842105263158,33.6842105263158,3,92.2720507336935,0.799373254308877,28.6842105263158,24.1118313036859,0,398.950541178385,398.768951416016,0.365421162155569
+4839,308074,3796798,308174,3796698,38,48,45.7063711911357,0.148467008826571,18.3189313430846,0.571703797113633,20.9256337644932,0.0143559564993996,0.138504155124654,13.8504155124654,1,90.6277457305062,0.918063173822584,13.8504155124654,3.16038669586182,0,399.705005645752,399.152526855469,0.485103904095049
+4840,308074,3796698,308174,3796598,39,48,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,-0.00842584605195756,0,0,0,NA,NA,0,NA,NA,400.614492416382,400.26220703125,0.458839189210108
+4841,308074,3796598,308174,3796498,40,48,97.2299168975069,0.947489456329569,37.4978570287168,0.925925925925926,NA,-0.00509409593697629,0,0,0,NA,NA,0,NA,NA,401.386215209961,401.0947265625,0.48133067904206
+4842,308074,3796498,308174,3796398,41,48,98.8919667590028,0.963685857292467,37.444364190786,0.930905695611578,NA,0.0152851099605226,0.03601108033241,3.601108033241,2,64.1225578072574,0.769476372924649,1.93905817174515,0,0,401.712799072266,401.542358398438,0.262212752701724
+4843,308074,3796398,308174,3796298,42,48,78.9473684210526,0.404910024072465,19.6857168565568,0.585022522522523,10.3911504415599,0.0108634239239683,0.0815789473684211,8.1578947368421,4,68.692097724928,0.673352435530086,3.15789473684211,3.1562824403086,0,401.7978515625,401.421905517578,0.464093746040799
+4844,308074,3796298,308174,3796198,43,48,0,NA,NA,NA,NA,0.0157200606584428,0.0609418282548476,6.09418282548476,2,78.4815279838818,0.812077043206663,5.54016620498615,84.9599285992709,18.7329120635986,399.999557495117,399.100769042969,1.23923670816111
+4845,308074,3796198,308174,3796098,44,48,3.8781163434903,0.0377916022467634,12.9302206060642,0.488095238095238,NA,0.000894715115663381,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,9.74466521399362,5.19557523727417,398.543802897135,397.847930908203,0.968026470228451
+4846,308074,3796098,308174,3795998,45,48,25.207756232687,0.122822707301981,12.2902905506403,0.357407407407407,10.3911504415599,0.0292515169319289,0.0554016620498615,5.54016620498615,6,52.4637536905992,0.521899536467695,2.49307479224377,20.7377298355103,0,396.635936737061,395.486541748047,1.23755870871074
+4847,308074,3795998,308174,3795898,46,48,0,NA,NA,NA,NA,0.0474318706114948,0.318421052631579,31.8421052631579,1,95.8247993978455,0.933309933309933,31.8421052631579,82.6487072085546,46.7601776123047,395.110679626465,394.901885986328,0.421671687958859
+4848,308074,3795898,308174,3795798,47,48,36.5650969529086,0.356320821183769,27.4016088598418,0.820707070707071,NA,0.00441006428981813,0,0,0,NA,NA,0,NA,NA,394.959377288818,394.82763671875,0.189905641561666
+4849,308074,3795798,308174,3795698,48,48,70.6371191135734,0.688347040923191,32.5517934422946,0.892156862745098,NA,0.0205010291531349,0.135734072022161,13.5734072022161,4,78.0364976156744,0.80715811965812,7.4792243767313,4.85308889466889,0,395.16039276123,394.936737060547,0.359972245663168
+4850,308074,3795698,308174,3795598,49,48,43.213296398892,0.210553212517682,20.7771071559167,0.533991228070175,25.9778760103754,0.0137282891847258,0.105263157894737,10.5263157894737,2,84.0960296911692,0.858076563958917,9.41828254847645,8.65850084706357,0,395.280164718628,394.997039794922,0.529539113851363
+4851,308074,3795598,308174,3795498,50,48,12.6315789473684,0.0215952012838648,6.13364804527589,0.346527777777778,16.3040848557135,0.021603016458271,0.0447368421052632,4.47368421052632,3,62.1632673016793,0.706887052341598,2.36842105263158,15.8511247634888,0,396.439165751139,395.494781494141,1.43366033411867
+4852,308074,3795498,308174,3795398,51,48,17.7285318559557,0.0575872034236395,11.7064919175679,0.407881136950904,15.4902123772429,0.0263240667603558,0.163434903047091,16.3434903047091,5,81.561562332268,0.73045708349565,11.9113573407202,10.3814662998006,0,398.337024688721,396.474151611328,1.29902802592446
+4853,308074,3795398,308174,3795298,52,48,0,NA,NA,NA,NA,0.0261377549292958,0.0914127423822715,9.14127423822715,5,66.943692797054,0.592366757000903,3.8781163434903,59.6425766222405,41.5646018981934,399.713483174642,398.238006591797,1.2409302903712
+4854,308074,3795298,308174,3795198,53,48,1.66204986149584,0.0161964009628986,5.52275875418425,0.416666666666667,NA,0.0152663299122348,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,58.9032945632935,46.4706382751465,400.953266143799,400.513122558594,0.642675262778229
+4855,308074,3795198,308174,3795098,54,48,0,NA,NA,NA,NA,0.0128871643949137,0,0,0,NA,NA,0,NA,NA,400.480058670044,399.201629638672,1.07079351556714
+4856,308074,3795098,308174,3794998,55,48,36.01108033241,0.116974006954268,17.2375385147857,0.657151787655701,14.9924457085776,0.0273799641650245,0.210526315789474,21.0526315789474,3,90.0457745695349,0.848756218905473,19.1135734072022,7.93218818463777,0,398.865631103516,398.453582763672,0.622789753208858
+4857,308074,3794998,308174,3794898,56,48,9.69529085872576,0.0314930018723029,5.60558092549048,0.387419165196943,34.6371680138339,0.0205072768777818,0.127423822714681,12.7423822714681,6,72.3246692068682,0.720838420838421,7.4792243767313,9.60547496961511,0,398.607055664062,398.332855224609,0.300854758920542
+4858,308074,3794898,308174,3794798,57,48,26.3157894736842,0.256443015245895,26.3436838101116,0.726315789473684,NA,0.0196438708178832,0.160664819944598,16.0664819944598,2,86.1447460553739,0.785544554455445,9.14127423822715,3.91073224462312,0,398.599617004395,398.394409179688,0.1828441248236
+4859,308074,3794798,308174,3794698,58,48,8.94736842105263,0.0458898027282127,13.04297164774,0.521739130434783,25.9778761038998,0.0232827696675246,0.134210526315789,13.4210526315789,5,74.640791539383,0.64154700765119,6.05263157894737,8.89332850774129,0,398.654844284058,398.532287597656,0.103414581040169
+4860,308074,3794698,308174,3794598,59,48,13.0193905817175,0.0317179518856764,5.988610870822,0.330409356725146,23.829406987798,0.0235632002441786,0.182825484764543,18.2825484764543,5,79.083692835749,0.765895357406043,8.31024930747922,14.7875908649329,0,398.654324849447,398.457977294922,0.163823711255366
+4861,308074,3794598,308174,3794498,60,48,1.10803324099723,0.0053988003209662,2.59778758441098,0.166666666666667,10.3911503376439,0.000694175031461167,0.0498614958448753,4.98614958448753,1,80.6758725138067,0.72713529856387,4.98614958448753,14.0251213709513,5.19557523727417,398.536149978638,398.347473144531,0.193478093879762
+4862,308074,3794498,308174,3794398,61,48,21.3296398891967,0.0519634530892997,8.82458896709171,0.502483130904184,17.0531639967223,0.0109676447972437,0.0637119113573407,6.37119113573407,4,66.8270919166365,0.732988165680473,4.15512465373961,21.1884453607642,7.34765291213989,398.38685353597,398.235626220703,0.234142849327373
+4863,308074,3794398,308174,3794298,62,48,5,0.0256443015245895,5.94878479103805,0.591856060606061,56.1987384192301,0.0225863711472477,0.0631578947368421,6.31578947368421,5,65.4755530986231,0.634831460674157,3.15789473684211,45.8001869916916,10.3911504745483,398.044765472412,397.898040771484,0.186422617914404
+4864,308074,3794298,308174,3794198,63,48,34.9030470914127,0.340124420220871,29.6040726495413,0.779100529100529,NA,0.00407608654135795,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.937359014402221,6.09418282548476,29.8308927362615,15.5867252349854,397.863807678223,397.818878173828,0.067316531277338
+4865,308074,3794198,308174,3794098,64,48,26.8698060941828,0.261841815566861,27.5895273250412,0.77319587628866,NA,0.0359469931610567,0.318559556786704,31.8559556786704,4,91.1848400187844,0.781289086929331,24.3767313019391,30.8641549068948,0,397.879089355469,397.817657470703,0.0859568585469013
+4866,308074,3794098,308174,3793998,65,48,0,NA,NA,NA,NA,0.0230797699259307,0.0692520775623269,6.92520775623269,4,68.8403070719093,0.570238095238095,3.601108033241,75.6637455749512,52.9846801757812,398.126614888509,397.966674804688,0.311625523328188
+4867,308074,3793998,308174,3793898,66,48,2.36842105263158,0.0242946014443479,6.66837228163207,0.537037037037037,NA,0.0225294170062529,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,25.6751599311829,15.5867252349854,399.352691650391,398.373382568359,0.875668692724642
+4868,308074,3793898,308174,3793798,67,48,0.277008310249307,0.0026994001604831,0,0,NA,0.0251898728670627,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,16.4759631838117,10.3911504745483,400.472534179688,399.977569580078,0.531085254151369
+4869,308074,3793798,308174,3793698,68,48,0,NA,NA,NA,NA,0.0236339986164602,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,100.971559797015,80.8241806030273,401.159645080566,400.674133300781,0.437417492202438
+4870,308074,3793698,308174,3793598,69,48,0,NA,NA,NA,NA,0.0219916762057576,0.038781163434903,3.8781163434903,6,38.8666891304194,0.375792507204611,1.10803324099723,95.4199115208217,52.9846801757812,401.779644012451,401.265350341797,0.507249567833899
+4871,308074,3793598,308174,3793498,70,48,7.36842105263158,0.0377916022467634,8.62490777268328,0.609375,15.5867255064659,0.027953743678173,0.118421052631579,11.8421052631579,6,74.8331345496869,0.656716417910448,5.26315789473684,51.7387538592021,5.19557523727417,402.33625793457,401.890075683594,0.566418558744889
+4872,308074,3793498,308174,3793398,71,48,0,NA,NA,NA,NA,0.0201525353479604,0.132963988919668,13.2963988919668,2,84.1603496020935,0.845281695628458,8.03324099722992,63.0478377342224,31.1734504699707,402.428955078125,401.246978759766,1.07620656082662
+4873,308074,3793398,308174,3793298,72,48,0,NA,NA,NA,NA,0.0229579958708543,0.0914127423822715,9.14127423822715,4,72.3351721830413,0.714656729900632,4.15512465373961,100.179286147609,59.2386741638184,402.421246846517,400.956817626953,1.17706327058418
+4874,308074,3793298,308174,3793198,73,48,0,NA,NA,NA,NA,0.020195744229709,0.0526315789473684,5.26315789473684,2,74.9231842567891,0.89080459770115,4.70914127423823,124.478572644685,102.472763061523,403.485280990601,402.591888427734,0.98092550790804
+4875,308074,3793198,308174,3793098,74,48,0,NA,NA,NA,NA,0.0373999583091637,0.234210526315789,23.4210526315789,3,86.7274827890679,0.802891784996434,10.5263157894737,111.77857015374,62.5630111694336,403.146957397461,401.506866455078,1.10483800223192
+4876,308074,3793098,308174,3792998,75,48,0,NA,NA,NA,NA,0.0308081618534131,0.163434903047091,16.3434903047091,1,91.8133927298019,0.906245942085443,16.3434903047091,88.0629894450559,56.1987419128418,403.196395874023,402.360931396484,0.471587721539998
+4877,308074,3792998,308174,3792898,76,48,0,NA,NA,NA,NA,0.0228679217249927,0.102493074792244,10.2493074792244,2,86.5209471766849,0.835610200364299,9.97229916897507,139.63394288759,113.947868347168,404.557813008626,403.475769042969,1.22292713076676
+4878,308074,3792898,308174,3792798,77,48,0,NA,NA,NA,NA,0.0303878991440883,0.0914127423822715,9.14127423822715,5,70.4947400827579,0.653511743450768,5.54016620498615,102.398529515122,77.2377777099609,405.792707443237,405.236145019531,0.531505952454616
+4879,308074,3792798,308174,3792698,78,48,2.89473684210526,0.0148467008826571,3.81913698062223,0.258333333333333,30.2951489556501,0.0317548571802418,0.207894736842105,20.7894736842105,2,90.9546220600092,0.846701471286189,18.4210526315789,55.7064591359489,0,406.139373779297,405.744293212891,0.496318177771391
+4880,308074,3792698,308174,3792598,79,48,18.005540166205,0.0584870034771339,7.34747832172574,0.356481481481482,38.3470434662477,0.0567484429116436,0.437673130193906,43.7673130193906,6,90.6849473224227,0.834431798878886,34.9030470914127,8.28797265849536,0,406.646244049072,406.021392822266,0.588340734754783
+4881,308074,3792598,308174,3792498,80,48,8.86426592797784,0.0215952012838648,5.18484657677483,0.310277777777778,32.413135088512,0.0463259213478991,0.434903047091413,43.4903047091413,1,97.1313051083973,0.797232434640523,43.4903047091413,15.5887266389883,0,406.98952738444,406.458190917969,0.577887566355009
+4882,308074,3792498,308174,3792398,81,48,0,NA,NA,NA,NA,0.0467389120917927,0.440443213296399,44.0443213296399,3,91.7473108412294,0.767428455174285,27.9778393351801,50.8426654023944,16.4298515319824,407.271286010742,406.701690673828,0.358878684663942
+4883,308074,3792398,308174,3792298,82,48,0,NA,NA,NA,NA,0.0397268549278746,0.213157894736842,21.3157894736842,9,73.1203752132992,0.594017094017094,5.78947368421053,68.0094784395194,34.8529777526855,407.22056833903,407.087707519531,0.148813838310269
+4884,308074,3792298,308174,3792198,83,48,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0169304582830344,0.10803324099723,10.803324099723,3,83.9015132556722,0.689536550406116,9.41828254847645,25.3360408391708,11.6176595687866,407.152433395386,407.1015625,0.0928150648864026
+4885,308074,3792198,308174,3792098,84,48,3.601108033241,0.00701844041725606,2.14220502737733,0.166666666666667,24.5255311694975,0.0193554435073336,0.0609418282548476,6.09418282548476,5,61.9833051347794,0.624154086413326,3.04709141274238,30.1960126053203,5.19557523727417,407.238529205322,407.150939941406,0.15540875080699
+4886,308074,3792098,308174,3791998,85,48,8.03324099722992,0.0260942015513367,5.30407559013151,0.40448343079922,20.4536801092912,0.0419963236573567,0.332409972299169,33.2409972299169,3,91.1109788860871,0.773249838212341,21.8836565096953,37.2833404858907,0,407.643399556478,407.405364990234,0.429632941529533
+4887,308074,3791998,308174,3791898,86,48,0,NA,NA,NA,NA,0.0237254328442328,0.163157894736842,16.3157894736842,4,81.1349954616041,0.82296762170976,9.73684210526316,48.7002142014042,15.5867252349854,408.421028137207,407.844696044922,0.497545915892876
+4888,308074,3791898,308174,3791798,87,48,44.3213296398892,0.215952012838648,14.5133353226479,0.405136268343815,26.4923391803511,0.0653972117684348,0.689750692520776,68.9750692520776,1,98.8662440222416,0.88241492949111,68.9750692520776,4.22718386477735,0,408.74940999349,408.459045410156,0.272865009696242
+4889,308074,3791798,308174,3791698,88,48,42.6592797783933,0.207853812357199,18.3185215232575,0.487777777777778,10.3911504415599,0.0341223776552918,0.263157894736842,26.3157894736842,8,81.3495792871358,0.664705882352941,11.3573407202216,4.1544907921239,0,408.846921920776,408.423004150391,0.402443265718607
+4890,308074,3791698,308174,3791598,89,48,55.6786703601108,0.271289716128552,21.4351581024508,0.601374570446735,10.3911504415599,0.043649701520264,0.354570637119114,35.4570637119114,4,89.8022360454083,0.667520123781982,21.606648199446,2.340316593647,0,408.755139668783,408.272644042969,0.464759321827241
+4891,308074,3791598,308174,3791498,90,48,2.89473684210526,0.0148467008826571,3.11484562001521,0.3,57.1513274285795,0.0257725515700593,0.134210526315789,13.4210526315789,6,73.5745559528935,0.61499493414387,5.26315789473684,36.3191458571191,5.19557523727417,408.568412780762,408.208282470703,0.351064392184875
+4892,308074,3791498,308174,3791398,91,48,0,NA,NA,NA,NA,0.00597883185753573,0.0332409972299169,3.32409972299169,3,52.9815828816284,0.574077195348053,1.38504155124654,81.3572826385498,52.9846801757812,408.731381734212,408.436187744141,0.361128452432605
+4893,308074,3791398,308174,3791298,92,48,3.32409972299169,0.0323928019257972,10.4960473335815,0.444444444444444,NA,0.0239643766620467,0.0831024930747922,8.31024930747922,5,69.7079120396233,0.666132313952771,3.8781163434903,22.7096607844035,0,409.247495651245,408.977081298828,0.353014881376751
+4894,308074,3791298,308174,3791198,93,48,39.8891966759003,0.0971784057773917,15.0272903343394,0.457124381466487,16.8856192986714,0.0359990269445458,0.21606648199446,21.606648199446,5,85.2026176376561,0.76890971475393,15.5124653739612,4.5227811947847,0,408.639976501465,407.429107666016,1.1011616449079
+4895,308074,3791198,308174,3791098,94,48,14.2105263157895,0.0291535217332175,6.24067427165028,0.354025974025974,18.2941930755499,0.0540288533398875,0.521052631578947,52.1052631578947,2,96.9450359134307,0.778123783573375,49.2105263157895,11.5130445210621,0,406.957109451294,406.577056884766,0.610256630832812
+4896,308074,3791098,308174,3790998,95,48,48.7534626038781,0.475094428245026,29.0521573052994,0.888257575757576,NA,0.0542738469655515,0.562326869806094,56.2326869806094,1,98.1470079330398,0.890910922338247,56.2326869806094,1.51625416431521,0,406.515004475911,406.387176513672,0.189963630785635
+4897,308074,3790998,308174,3790898,96,48,0,NA,NA,NA,NA,0.0423808157433681,0.343490304709141,34.3490304709141,3,91.0627498990104,0.823984997655884,19.9445983379501,38.3127317890044,5.19557523727417,406.563245773315,406.286773681641,0.323791145591363
+4898,308074,3790898,308174,3790798,97,48,33.2409972299169,0.323928019257972,31.9899330042243,0.790277777777778,NA,0.0436303442913207,0.382271468144044,38.2271468144044,1,96.5700699531021,0.820129546586946,38.2271468144044,6.53858656468599,0,406.508496602376,406.277404785156,0.324200679278904
+4899,308074,3790798,308174,3790698,98,48,6.8421052631579,0.0140368808345121,5.34469704291341,0.327407407407407,33.4710410105939,0.0195820930936239,0.263157894736842,26.3157894736842,9,80.4327441689393,0.660714285714286,11.0526315789474,18.5601783800125,0,406.766305923462,406.383239746094,0.444923017292263
+4900,308074,3790698,308174,3790598,99,48,30.7479224376731,0.0998778059378748,15.9981960967405,0.468458600157286,12.4040506599365,0.033430442868593,0.192982456140351,19.2982456140351,4,86.8287069223704,0.709073724007562,15.7894736842105,6.65661173878294,0,407.421689987183,406.933349609375,0.462752137067655
+4901,308174,3800598,308274,3800498,0,49,40.2631578947368,0.206504112276884,19.6899795158202,0.777783569641368,21.4219052194905,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.020787556966,381.896484375,0.222522218434538
+4902,308174,3800498,308274,3800398,1,49,43.75,0.472395028084376,30.1044356962264,0.817142857142857,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.381483289931,382.101654052734,0.434210442082819
+4903,308174,3800398,308274,3800298,2,49,39.7368421052632,0.135869808077601,17.709503496684,0.53866146848603,10.7999867220146,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.908592224121,382.524230957031,0.456185444015838
+4904,308174,3800298,308274,3800198,3,49,38.6842105263158,0.198405911795438,14.6864002837674,0.392694063926941,11.6176592829313,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.375091552734,383.09912109375,0.423631792585982
+4905,308174,3800198,308274,3800098,4,49,27.3684210526316,0.0935792055633811,11.1676232020873,0.696830584085486,19.0504423895928,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.677154541016,383.366729736328,0.357050995428929
+4906,308174,3800098,308274,3799998,5,49,21.5,0.232148413801465,18.8169345512005,0.858527131782946,NA,0.0105029787148169,0,0,0,NA,NA,0,NA,NA,384.008860270182,383.755828857422,0.385849886181914
+4907,308174,3799998,308274,3799898,6,49,14.4736842105263,0.148467008826518,19.3684551729675,0.733333333333333,NA,0.0121365876871718,0.0315789473684211,3.15789473684211,5,46.3096159973508,0.574808184143223,2.10526315789474,28.8433180252711,7.34765291213989,384.674171447754,384.212524414062,0.503078813442199
+4908,308174,3799898,308274,3799798,7,49,48.4210526315789,0.248344814764358,18.1767124770525,0.513736263736264,21.4219052194905,0.00220159783847952,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,3.36264696121216,0,385.287784152561,385.082885742188,0.282880410833796
+4909,308174,3799798,308274,3799698,8,49,40,0.205154412196643,16.0419612882962,0.556674123788218,40.578739444748,0.0113027673835045,0.0736842105263158,7.36842105263158,1,85.4871759445382,0.928030303030303,7.36842105263158,11.6900440795081,5.19557523727417,385.769251505534,385.446960449219,0.746905470981347
+4910,308174,3799698,308274,3799598,9,49,10.75,0.0165820295572475,3.80904257367084,0.255952380952381,20.4241750408071,0.00236193602077947,0.02,2,3,48.963481806847,0.591836734693878,1.5,7.29119282960892,0,387.40439860026,386.065643310547,1.89617869101412
+4911,308174,3799598,308274,3799498,10,49,16.5789473684211,0.0566874033701251,10.6332278389628,0.601958525345622,23.1812101864624,0.0356686780740826,0.268421052631579,26.8421052631579,4,91.3878666031835,0.828203011361403,23.6842105263158,9.14576148051842,0,391.07689666748,389.467926025391,1.89027116771017
+4912,308174,3799498,308274,3799398,11,49,32.8947368421053,0.337425020060268,32.7334612056352,0.770666666666667,NA,0.050212047463528,0.571052631578947,57.1052631578947,2,97.7518513225814,0.826884528943692,56.3157894736842,10.1270468092184,0,392.239323933919,391.540740966797,0.774704855947886
+4913,308174,3799398,308274,3799298,12,49,20.7894736842105,0.106626306339045,20.1208779245601,0.682425213675214,51.1704814635735,0.0283583135161543,0.2,20,1,93.3162351653592,0.925373134328358,20,9.86551085898751,0,392.714131673177,392.176513671875,0.99313770206111
+4914,308174,3799298,308274,3799198,13,49,3.25,0.0116974006954226,5.19557516882196,0.155555555555556,14.6953058096309,0.0516106036847214,0.44,44,2,96.6752875427636,0.868131868131868,43.25,33.7524753565138,0,391.859380086263,391.495635986328,0.574465613260487
+4915,308174,3799198,308274,3799098,14,49,16.8421052631579,0.0431904025677144,6.75768275846073,0.286877394636015,13.1488391360398,0.00450028505736937,0.0921052631578947,9.21052631578947,4,73.6436590429872,0.639180409795102,4.73684210526316,14.3757022721427,0,391.688178168403,391.562744140625,0.213016279662203
+4916,308174,3799098,308274,3798998,15,49,6.31578947368421,0.0323928019257858,9.93283060308373,0.435185185185185,10.3911504415562,-0.0245829341828204,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.693548387096774,2.10526315789474,1.29889380931854,0,391.92601776123,391.733062744141,0.354026944451422
+4917,308174,3798998,308274,3798898,16,49,0.263157894736842,0.00269940016048215,0,0,NA,0.00685929180137081,0.0368421052631579,3.68421052631579,2,65.5921238233101,0.740437158469945,2.36842105263158,51.5461322239467,44.0859146118164,392.172475179036,391.891052246094,0.523042485416408
+4918,308174,3798898,308274,3798798,17,49,60,0.647856038515715,34.7184009152984,0.875,NA,-0.0190493751114991,0.0575,5.75,2,74.8253295014936,0.705275567344533,4,3.17709315341452,0,392.649520874023,392.039855957031,0.980485553124647
+4919,308174,3798798,308274,3798698,18,49,91.0526315789474,0.933992455526823,38.5359184436665,0.916184971098266,NA,0.000845062831726146,0.105263157894737,10.5263157894737,3,80.9155885533577,0.783143107989464,8.42105263157895,0,0,394.109758165148,393.427947998047,0.784675174825463
+4920,308174,3798698,308274,3798598,19,49,84.4736842105263,0.866507451514769,39.2808519292923,0.89356178608515,NA,0.0264914310999493,0.25,25,4,87.1080132689396,0.796078431372549,17.8947368421053,0.273451328277588,0,394.518091837565,394.444946289062,0.173865509873189
+4921,308174,3798598,308274,3798498,20,49,61.0526315789474,0.313130418615929,27.929332687027,0.803993055555556,20.7823008831125,0.0206352034991488,0.128947368421053,12.8947368421053,4,84.1115476372633,0.808660624370594,11.3157894736842,3.81095967000845,0,394.280860053168,394.154205322266,0.158682064907835
+4922,308174,3798498,308274,3798398,21,49,71.5,0.257342815299298,16.0486451277425,0.498427906516142,12.1230087792074,0.0327445781639108,0.19,19,6,84.4687444398322,0.677538234752165,14,4.40458671670211,0,394.070208231608,393.878265380859,0.203094453561119
+4923,308174,3798398,308274,3798298,22,49,47.6315789473684,0.122147857261817,15.5951984178278,0.41768648018648,12.9889380519453,0.0399222080399723,0.334210526315789,33.4210526315789,5,89.8410847366818,0.746419588316822,18.1578947368421,7.94227966924352,0,393.814147949219,393.685607910156,0.17882294737728
+4924,308174,3798298,308274,3798198,23,49,50.5263157894737,0.129571207703143,13.0794177806523,0.450226996986419,10.3911503896001,0.0352866628492177,0.307894736842105,30.7894736842105,3,90.9635860274179,0.795537699978478,20,6.65869014691084,0,393.549639383952,393.370513916016,0.268179693143269
+4925,308174,3798198,308274,3798098,24,49,41.5789473684211,0.21325261267809,25.0738775255517,0.715732473544974,15.5867256623344,0.0248223735748692,0.197368421052632,19.7368421052632,4,85.8244654378869,0.801788375558868,13.1578947368421,4.79673800150553,0,393.297020806207,393.118194580078,0.264467483325852
+4926,308174,3798098,308274,3797998,25,49,45,0.161964009628929,19.4805773765995,0.499046840958606,22.5141592900385,0.0178546786028892,0.2125,21.25,5,88.6854635627108,0.772942289498581,18.5,6.3001586745767,0,393.358014424642,393.063110351562,0.418117770826567
+4927,308174,3797998,308274,3797898,26,49,66.3157894736842,0.2267496134805,25.0509343575114,0.674130190796858,17.3185840692604,0.0199242531453245,0.171052631578947,17.1052631578947,4,87.5624520019307,0.743784239359461,14.7368421052632,6.08050701434796,0,393.861930847168,393.368041992188,0.503102619392148
+4928,308174,3797898,308274,3797798,27,49,69.2105263157895,0.236647414068935,26.1593186026869,0.675372173834204,17.3185840692604,0.0248573824064734,0.165789473684211,16.5789473684211,1,92.1272104089021,0.825638084313163,16.5789473684211,6.43847787947882,0,394.290066189236,393.988220214844,0.305690870767271
+4929,308174,3797798,308274,3797698,28,49,64.2105263157895,0.219551213052548,27.051493892849,0.647750814525476,17.3185840692604,0.0261169529762379,0.202631578947368,20.2631578947368,2,89.8301904832583,0.824791302659678,15.7894736842105,5.88669744714514,0,394.458206176758,394.221984863281,0.341282469115885
+4930,308174,3797698,308274,3797598,29,49,45.75,0.0987980458736466,12.8711916102423,0.383904908036586,16.7944658612153,0.029868746809243,0.2075,20.75,4,83.2103386730595,0.69098049314363,7.75,7.12850894698177,0,394.881557888455,394.481750488281,0.505200134624247
+4931,308174,3797598,308274,3797498,30,49,40,0.136769608131095,17.5794302869132,0.59653371320038,20.7823007792002,0.040682480462764,0.368421052631579,36.8421052631579,4,87.9944285788659,0.771158854166667,14.2105263157895,6.95387685639518,0,395.497723897298,395.105987548828,0.436079117626833
+4932,308174,3797498,308274,3797398,31,49,47.8947368421053,0.245645414603875,22.7829573558081,0.666227409638554,30.2951490982138,0.0419392531124973,0.434210526315789,43.421052631579,3,93.6145750368367,0.773255813953488,29.7368421052632,6.43046288056807,0,396.023990207248,395.722808837891,0.405591064496779
+4933,308174,3797398,308274,3797298,32,49,42.1052631578947,0.431904025677144,28.8617230031838,0.857291666666667,NA,0.019275935214261,0.186842105263158,18.6842105263158,2,91.8756448926425,0.773721682847896,18.1578947368421,0.731771160179461,0,396.498446146647,396.181915283203,0.37945645413436
+4934,308174,3797298,308274,3797198,33,49,36.5,0.0985281058575984,14.9219529369037,0.450592133854846,17.4988737713151,0.010868160742848,0.05,5,1,81.7256002368443,0.898132427843803,5,0,0,396.992723253038,396.719329833984,0.353532211206885
+4935,308174,3797198,308274,3797098,34,49,10,0.102577206098322,25.9938131595402,0.600877192982456,NA,0.0656107532773412,0.507894736842105,50.7894736842105,3,95.0033063888705,0.846742150389866,38.1578947368421,31.2447504997253,0,397.695401509603,397.220123291016,0.543049937248429
+4936,308174,3797098,308274,3796998,35,49,1.57894736842105,0.0161964009628929,4.73848231234961,0.5,NA,0.0265333920163884,0.194736842105263,19.4736842105263,5,79.4262344852979,0.71342383107089,7.63157894736842,48.8908631866043,5.19557523727417,398.499335394965,398.309661865234,0.28575289367643
+4937,308174,3796998,308274,3796898,36,49,0,NA,NA,NA,NA,0.0302569250890979,0.292105263157895,29.2105263157895,3,93.269089126385,0.802230483271375,26.8421052631579,42.6046405740686,10.3911504745483,398.708101908366,398.640380859375,0.116092514094307
+4938,308174,3796898,308274,3796798,37,49,11.5,0.124172407382179,13.8093067657304,0.793478260869565,NA,0.0272573242240469,0.145,14.5,5,77.4913605603955,0.730994152046784,6.75,13.9609510487524,0,398.922054714627,398.794921875,0.233808611621707
+4939,308174,3796798,308274,3796698,38,49,23.9473684210526,0.0614113536509689,9.10974315799163,0.395833333333333,28.6404466424038,0.0111197816984618,0.152631578947368,15.2631578947368,2,86.1736483937329,0.822981366459627,8.68421052631579,5.82459031302353,0,399.540509541829,399.118865966797,0.483230097146932
+4940,308174,3796698,308274,3796598,39,49,71.0526315789474,0.36441902166509,18.0783033140506,0.536069651741294,25.9778761038906,0.00691789767385528,0.139473684210526,13.9473684210526,5,79.7912089984492,0.782908223275196,9.21052631578947,8.0025617761432,0,400.397659301758,400.065185546875,0.472467067442272
+4941,308174,3796598,308274,3796498,40,49,53.6842105263158,0.550677632738358,32.5857311338235,0.84640522875817,NA,0.0303580340896588,0.226315789473684,22.6315789473684,5,86.4080548255092,0.771908763505402,16.5789473684211,4.31086318437443,0,400.973164876302,400.430145263672,0.714526558457037
+4942,308174,3796498,308274,3796398,41,49,51.8421052631579,0.531781831614983,29.8498392617514,0.899323181049069,NA,0.0348956781309234,0.221052631578947,22.1052631578947,3,88.8051758579426,0.793216034826773,17.6315789473684,6.76087431680588,0,401.278630574544,400.810791015625,0.679824121873853
+4943,308174,3796398,308274,3796298,42,49,57,0.61546323658993,33.1612833961168,0.892543859649123,NA,0.0331048794005983,0.3225,32.25,3,94.3776216235217,0.861819894794693,31,5.26701932729677,0,400.74068874783,399.847351074219,1.2525963717378
+4944,308174,3796298,308274,3796198,43,49,0,NA,NA,NA,NA,0.0242321890141044,0.218421052631579,21.8421052631579,3,91.0505487745551,0.869442726585584,20.5263157894737,78.8566180769219,16.4298515319824,399.331759134928,398.812591552734,0.772829869682349
+4945,308174,3796198,308274,3796098,44,49,0,NA,NA,NA,NA,-0.00935265838092355,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,68.6831378936768,41.5646018981934,398.450680202908,397.864044189453,0.832295653225854
+4946,308174,3796098,308274,3795998,45,49,16.0526315789474,0.0274439016315685,6.88088930717571,0.40540293040293,16.1555149148962,0.0123879321061969,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,12.9760274205889,7.34765291213989,396.666282653809,395.508087158203,1.2453378813414
+4947,308174,3795998,308274,3795898,46,49,0,NA,NA,NA,NA,0.0194634826823312,0.015,1.5,2,49.3585217812156,0.709934735315446,1.25,58.2557818094889,47.9008369445801,395.064714219835,394.886810302734,0.347153446132236
+4948,308174,3795898,308274,3795798,47,49,2.63157894736842,0.0269940016048215,7.1665406725541,0.533333333333333,NA,0.0252975800631248,0.165789473684211,16.5789473684211,3,89.6701348592395,0.83653570404359,15.7894736842105,58.3475307888455,36.7382659912109,394.849955240885,394.807159423828,0.107437750287881
+4949,308174,3795798,308274,3795698,48,49,43.1578947368421,0.221350813159536,28.5172520568294,0.747708104143748,11.6176592829313,0.00714880454834201,0.110526315789474,11.0526315789474,2,82.9266003588486,0.841653471122593,7.63157894736842,11.569273971376,0,394.942081027561,394.867584228516,0.169376529385843
+4950,308174,3795698,308274,3795598,49,49,16.0526315789474,0.054887803263137,8.44665481253164,0.535714285714286,34.4112031155707,0.0261079506791822,0.157894736842105,15.7894736842105,1,91.7992580895076,0.942908653846154,15.7894736842105,27.7044236818949,14.6953058242798,395.213854471842,394.990783691406,0.377457185179066
+4951,308174,3795598,308274,3795498,50,49,0,NA,NA,NA,NA,0.0213276696444518,0.0325,3.25,4,49.3286888608125,0.540625897215045,1.5,55.4520298884465,41.5646018981934,395.801045735677,395.494323730469,0.428671741936415
+4952,308174,3795498,308274,3795398,51,49,9.73684210526316,0.0998778059378394,17.3100272547794,0.702702702702703,NA,0.0247219652274094,0.144736842105263,14.4736842105263,3,87.4964626134485,0.852307692307692,13.4210526315789,22.0462015151978,0,396.881215413411,396.157989501953,0.790158847692685
+4953,308174,3795398,308274,3795298,52,49,0,NA,NA,NA,NA,0.0211571233175499,0.0342105263157895,3.42105263157895,4,49.4096621895141,0.482288828337875,1.05263157894737,54.2942886352539,31.6034507751465,397.912974039714,397.338287353516,1.12324797084709
+4954,308174,3795298,308274,3795198,53,49,0,NA,NA,NA,NA,0.0137346028809445,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,115.360496520996,115.360496520996,399.251223246257,398.131561279297,1.56256921957135
+4955,308174,3795198,308274,3795098,54,49,0,NA,NA,NA,NA,0.018559970529941,0.02,2,4,32.7240927147903,0.387755102040816,0.75,69.9137394428253,25.977876663208,399.006670633952,398.124969482422,1.33033085505187
+4956,308174,3795098,308274,3794998,55,49,59.4736842105263,0.305032218134483,27.6429092165698,0.825427584463729,20.7823006752878,0.020761128433208,0.0657894736842105,6.57894736842105,3,73.2687709550277,0.652112676056338,3.94736842105263,3.92638395309448,0,398.187459309896,397.978881835938,0.41263682177188
+4957,308174,3794998,308274,3794898,56,49,31.3157894736842,0.107076206365792,11.2687670148754,0.645189003436426,21.5999733054795,0.0313218256746615,0.213157894736842,21.3157894736842,4,88.1686762383312,0.682274247491639,15.7894736842105,12.5969567181152,0,398.062637329102,397.926239013672,0.268014261050134
+4958,308174,3794898,308274,3794798,57,49,18.6842105263158,0.0958287056971162,16.0351116446057,0.675816993464052,18.7329127343552,0.0106527042526929,0.0236842105263158,2.36842105263158,2,61.8884961483246,0.743935309973046,2.10526315789474,10.3255417082045,5.19557523727417,398.115122477214,397.943756103516,0.314435595219753
+4959,308174,3794798,308274,3794698,58,49,9,0.0323928019257858,8.53375094530649,0.44549114331723,23.6517376566125,0.0203457509226064,0.19,19,3,85.6567735341795,0.834162520729685,10,14.979434929396,0,398.265464782715,398.020904541016,0.372038660977266
+4960,308174,3794698,308274,3794598,59,49,0,NA,NA,NA,NA,0.0405230864647341,0.328947368421053,32.8947368421053,5,86.7102722391262,0.724280901788028,20.5263157894737,34.827092590332,15.5867252349854,398.244405110677,398.073791503906,0.292326249842172
+4961,308174,3794598,308274,3794498,60,49,33.4210526315789,0.342823820381233,24.8523933263531,0.86745406824147,NA,0.0353918838718911,0.234210526315789,23.4210526315789,3,91.360339512213,0.786466100412803,21.0526315789474,6.33916640549563,0,398.153284708659,398.059875488281,0.190173448830239
+4962,308174,3794498,308274,3794398,61,49,4.47368421052632,0.0458898027281965,8.7592855889399,0.676470588235294,NA,0.0164852213320142,0.0263157894736842,2.63157894736842,3,50.8400314805912,0.604989604989605,1.31578947368421,37.9049476623535,15.5867252349854,398.085245768229,397.984252929688,0.162434480831298
+4963,308174,3794398,308274,3794298,62,49,0,NA,NA,NA,NA,0.0315548474209299,0.2175,21.75,2,92.4279988766051,0.818612800164897,20.25,49.6168871473992,27.9790287017822,397.930951436361,397.867156982422,0.0966236400319358
+4964,308174,3794298,308274,3794198,63,49,27.8947368421053,0.0572272834022215,10.7517041614114,0.601814038999394,13.7537972606401,0.00969534691846907,0.0368421052631579,3.68421052631579,2,72.5157854862241,0.740437158469945,3.42105263157895,46.2580688340323,11.6176595687866,397.830183241102,397.814880371094,0.0332978168819276
+4965,308174,3794198,308274,3794098,64,49,38.4210526315789,0.131370807810131,14.4387888027015,0.675335397316821,20.1880209813102,0.0253840015688088,0.126315789473684,12.6315789473684,3,85.6802238542374,0.91625036732295,11.8421052631579,9.40063664317131,0,397.832173665365,397.809997558594,0.045250448902048
+4966,308174,3794098,308274,3793998,65,49,0,NA,NA,NA,NA,0.0257058953288115,0.0815789473684211,8.15789473684211,3,81.7160778059924,0.738681948424069,7.36842105263158,47.6784444009104,31.1734504699707,398.023325602214,397.909637451172,0.214206645563354
+4967,308174,3793998,308274,3793898,66,49,11.25,0.121473007221697,15.2771083123784,0.774074074074074,NA,0.0244421345132105,0.08,8,3,76.6225483438365,0.790969899665552,4,34.1600416898727,16.4298515319824,399.060139973958,398.221130371094,0.903538034463118
+4968,308174,3793898,308274,3793798,67,49,0.789473684210526,0.00809820048144644,3.46371681385208,0.222222222222222,NA,0.0224759151607654,0.0210526315789474,2.10526315789474,4,32.7688970276549,0.387096774193548,0.789473684210526,36.1308223009109,10.3911504745483,400.233110215929,399.375854492188,0.93544367843765
+4969,308174,3793798,308274,3793698,68,49,0,NA,NA,NA,NA,0.0210511879335495,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,88.9969650268555,46.7601776123047,400.467956542969,399.922607421875,0.79895411985715
+4970,308174,3793698,308274,3793598,69,49,0,NA,NA,NA,NA,0.0280768265995185,0.102631578947368,10.2631578947368,7,69.1402403076727,0.691405368824724,6.57894736842105,76.3423685416197,15.5867252349854,401.178159077962,400.787078857422,0.745754403796702
+4971,308174,3793598,308274,3793498,70,49,19,0.102577206098322,22.9265252199372,0.643790849673203,15.5867255064659,0.0238298970636538,0.04,4,4,57.5609837879662,0.652777777777778,2.5,25.4418185651302,5.19557523727417,400.968970404731,400.205413818359,0.966137623110283
+4972,308174,3793498,308274,3793398,71,49,0,NA,NA,NA,NA,0.0401647605102641,0.255263157894737,25.5263157894737,4,87.0844035849908,0.799358271394338,15.5263157894737,54.216596460834,7.34765291213989,400.23735555013,399.436492919922,1.04540620260732
+4973,308174,3793398,308274,3793298,72,49,1.84210526315789,0.018895801123375,5.51544991610526,0.5,NA,0.0328446686682199,0.242105263157895,24.2105263157895,4,88.2569664353235,0.790819783197832,17.3684210526316,37.4155325060305,10.3911504745483,400.256283230252,399.380187988281,1.40089985678909
+4974,308174,3793298,308274,3793198,73,49,0,NA,NA,NA,NA,0.0234137442357008,0.126315789473684,12.6315789473684,5,76.2317423919144,0.706876285630326,6.05263157894737,89.7397247950236,67.7420120239258,400.628562927246,399.519561767578,1.83291481493622
+4975,308174,3793198,308274,3793098,74,49,0,NA,NA,NA,NA,0.0222118165382835,0.18,18,1,92.8577757686571,0.91357787593624,18,104.126552263896,88.3247756958008,400.560824924045,399.541015625,1.61080662565021
+4976,308174,3793098,308274,3792998,75,49,0,NA,NA,NA,NA,0.0220530163669058,0.0763157894736842,7.63157894736842,2,83.0719269378516,0.90786203552161,7.36842105263158,93.7684357741783,75.6487197875977,402.42797088623,400.421600341797,1.67766258841689
+4977,308174,3792998,308274,3792898,76,49,0,NA,NA,NA,NA,0.0196308136647866,0.0342105263157895,3.42105263157895,4,50.9714025806726,0.597335755373903,1.84210526315789,106.247182992788,72.7380523681641,403.712748209635,401.965942382812,1.63588589341417
+4978,308174,3792898,308274,3792798,77,49,0,NA,NA,NA,NA,0.0263517725083818,0.0894736842105263,8.94736842105263,6,65.4269893044679,0.62737407101569,4.21052631578947,105.5235117744,77.2377777099609,404.574363708496,403.879913330078,1.16742818390695
+4979,308174,3792798,308274,3792698,78,49,7.25,0.0391413023269911,9.96241844579293,0.564950980392157,10.3911504415562,0.038009594364994,0.3525,35.25,6,88.7432533833336,0.712669480111341,23.75,50.1251794192808,0,404.414347330729,402.963012695312,1.79934378481347
+4980,308174,3792698,308274,3792598,79,49,52.6315789473684,0.269940016048215,17.0051384791222,0.399916247906198,10.3911504415562,0.0659247431789194,0.660526315789474,66.0526315789474,2,98.299063429866,0.818241794491176,65.2631578947368,4.04746934237233,0,404.471837361654,402.819580078125,2.23521488653529
+4981,308174,3792598,308274,3792498,80,49,35,0.119673407114709,13.1143233588934,0.512357026143791,26.7698786358971,0.0575559968606716,0.58421052631579,58.4210526315789,2,97.4506948371625,0.657249434354553,53.4210526315789,7.48074692434019,0,405.37299601237,404.422027587891,1.88182455157053
+4982,308174,3792498,308274,3792398,81,49,21.5789473684211,0.0442701626319072,8.40355870366023,0.447152194211018,15.4733940508226,0.0618762827064768,0.628947368421053,62.8947368421053,1,98.5890492401195,0.698541894743523,62.8947368421053,10.6848910503308,0,405.974433898926,404.383911132812,1.69902235194714
+4983,308174,3792398,308274,3792298,82,49,8.25,0.0890802052959109,12.7825720339689,0.702020202020202,NA,0.0318757785852358,0.185,18.5,4,82.0288421670421,0.764039641340255,7,26.6505196287825,0,406.80167304145,406.496765136719,0.656235032134602
+4984,308174,3792298,308274,3792198,83,49,27.6315789473684,0.141718508425313,17.2467435919165,0.605263157894737,16.4298513045212,0.0473162537314764,0.442105263157895,44.2105263157895,4,95.5891962063818,0.676202069385271,41.3157894736842,9.19755491472426,0,406.731127421061,406.456390380859,0.472475083645458
+4985,308174,3792198,308274,3792098,84,49,4.73684210526316,0.0121473007221697,4.71825424253848,0.233333333333333,37.6679201817838,0.0217281488815484,0.15,15,4,82.5741139504415,0.687875150060024,7.89473684210526,11.2408875582511,0,406.74956258138,406.4365234375,0.524964713834957
+4986,308174,3792098,308274,3791998,85,49,14.4736842105263,0.148467008826518,25.9691226536184,0.715151515151515,NA,0.0317182480752595,0.197368421052632,19.7368421052632,1,93.2358951176047,0.858420268256334,19.7368421052632,5.59401233037313,0,407.164462619358,406.647491455078,0.770866692565251
+4987,308174,3791998,308274,3791898,86,49,0.25,0.00269940016048215,0,0,NA,0.0389816261829401,0.28,28,6,86.5897650050633,0.745599559955995,19.5,40.0444241804736,0,408.286422729492,407.504699707031,0.707861843031941
+4988,308174,3791898,308274,3791798,87,49,55.5263157894737,0.569573433861733,34.9866018085224,0.84044233807267,NA,0.0745930889694902,0.805263157894737,80.5263157894737,1,99.3815462475885,0.724108857557731,80.5263157894737,4.392890439314,0,408.707322862413,408.4208984375,0.438863227789538
+4989,308174,3791798,308274,3791698,88,49,39.7368421052632,0.0815218848465609,12.3411388704122,0.45811086664222,15.755350666077,0.0517411807616315,0.563157894736842,56.3157894736842,2,97.9236578670595,0.695162559786886,55.7894736842105,3.88955888792733,0,408.853609720866,408.575256347656,0.459592392960707
+4990,308174,3791698,308274,3791598,89,49,22.6315789473684,0.0386914023002441,9.66766026532993,0.538916188916189,12.9889379740111,0.0312887345980638,0.271052631578947,27.1052631578947,4,87.3213590094119,0.695970338569617,12.8947368421053,5.00734659306054,0,408.856289333767,408.534240722656,0.433279778741422
+4991,308174,3791598,308274,3791498,90,49,0,NA,NA,NA,NA,0.0178725796847357,0.0475,4.75,5,53.3380294026058,0.529369173680876,1.5,41.6143797071357,5.19557523727417,408.789555867513,408.63671875,0.232112184090308
+4992,308174,3791498,308274,3791398,91,49,0,NA,NA,NA,NA,0.0194650013881121,0.121052631578947,12.1052631578947,2,88.5462897426971,0.839551665898971,11.8421052631579,73.2630422011666,51.955753326416,408.749328613281,408.402648925781,0.413495663356675
+4993,308174,3791398,308274,3791298,92,49,0.789473684210526,0.00809820048144644,3.39810794893163,0.277777777777778,NA,0.0216549816762381,0.0473684210526316,4.73684210526316,4,61.9566405039358,0.611213423368119,2.89473684210526,63.2839929262797,14.6953058242798,408.573046366374,407.958190917969,0.684136189329995
+4994,308174,3791298,308274,3791198,93,49,37.8947368421053,0.129571207703143,11.8151976203782,0.42391975308642,20.7823006752878,0.0426857530075052,0.339473684210526,33.9473684210526,8,86.9779433571955,0.697211155378486,23.1578947368421,6.01774349508359,0,408.260867648655,407.723358154297,0.848541650797243
+4995,308174,3791198,308274,3791098,94,49,16,0.0431904025677144,9.94757476931855,0.542569444444444,18.6060760418607,0.0463023809728475,0.3975,39.75,6,92.9727349318025,0.664639345194111,32.75,16.5810830458155,0,407.216354370117,406.571502685547,0.831182189406916
+4996,308174,3791098,308274,3790998,95,49,18.1578947368421,0.0931293055366341,10.3161573408318,0.505050505050505,25.9778761038906,0.0336022777663617,0.234210526315789,23.4210526315789,5,90.5878605496841,0.761827573537358,21.3157894736842,5.67657084947222,0,406.40865749783,406.297637939453,0.146449404165261
+4997,308174,3790998,308274,3790898,96,49,24.7368421052632,0.126871807542661,19.2204944359649,0.696608946608947,20.7823006752878,0.0493970739361095,0.45,45,4,90.0049149375902,0.728715728715729,16.5789473684211,9.64890684718974,0,406.272618611654,406.193695068359,0.083739535988415
+4998,308174,3790898,308274,3790798,97,49,14.7368421052632,0.0755832044935001,10.2482245962552,0.362121212121212,25.9778758441098,0.0301855886443886,0.160526315789474,16.0526315789474,5,78.0875002730986,0.730289229313302,7.36842105263158,14.4968233812051,0,406.219736735026,406.1904296875,0.0751877262549209
+4999,308174,3790798,308274,3790698,98,49,40.5,0.218651412999054,20.7383647406595,0.635733952848047,15.5867256623344,0.0622855386140691,0.43,43,5,91.755395597314,0.856107144833693,36.75,4.24791508497194,0,406.509938557943,406.290130615234,0.255814368146156
+5000,308174,3790698,308274,3790598,99,49,0,NA,NA,NA,NA,0.0454404048354061,0.316666666666667,31.6666666666667,3,91.2606596656796,0.744257636751125,24.1666666666667,35.0061318079631,5.19557523727417,406.951733907064,406.713256835938,0.260517647882353
+5001,308274,3800598,308374,3800498,0,50,30.7479224376731,0.149816708906812,18.7322901659853,0.727020202020202,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.395334243774,381.971893310547,0.43872793261325
+5002,308274,3800498,308374,3800398,1,50,27.8947368421053,0.286136417011209,25.7748569646192,0.775157232704403,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.008255004883,382.608306884766,0.550072611814683
+5003,308274,3800398,308374,3800298,2,50,31.5789473684211,0.307731618295074,27.8959699739095,0.846491228070175,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.592067718506,383.101776123047,0.451382186408203
+5004,308274,3800298,308374,3800198,3,50,22.7146814404432,0.221350813159614,24.9140546970747,0.808943089430894,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.927602132161,383.604949951172,0.368480717748834
+5005,308274,3800198,308374,3800098,4,50,8.86426592797784,0.0431904025677296,10.3292342317203,0.581890331890332,83.7761331483131,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.178499221802,383.861236572266,0.373161496866186
+5006,308274,3800098,308374,3799998,5,50,20.5263157894737,0.0350922020862803,9.95931880376396,0.483531746031746,10.5955685587681,0.00986398243280985,0.0460526315789474,4.60526315789474,3,40.1941872793875,0.475862068965517,1.97368421052632,7.42225020272391,0,384.461713155111,384.122802734375,0.508613543391261
+5007,308274,3799998,308374,3799898,6,50,20.4986149584488,0.0249694514844687,8.8716501621096,0.248263888888889,13.1841377807047,0.00668978359461515,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,12.1230087280273,10.3911504745483,385.143989562988,384.639923095703,0.511489286545071
+5008,308274,3799898,308374,3799798,7,50,28.2548476454294,0.0458898027282127,13.973821418625,0.419777736883,12.1230088484866,0.0180756118959562,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,8.79227089881897,0,385.569755554199,385.276519775391,0.347326229591848
+5009,308274,3799798,308374,3799698,8,50,34.6260387811634,0.112475006686796,22.2002819749886,0.542819063652397,10.3911504415599,0.0112849565609049,0.0166204986149584,1.66204986149584,4,23.9080491887284,0.27364185110664,0.831024930747922,2.09053802490234,0,385.992734909058,385.511627197266,0.570457057282079
+5010,308274,3799698,308374,3799598,9,50,45.2631578947368,0.464296827603094,29.7547231687275,0.813953488372093,NA,0.014416223488431,0.0394736842105263,3.94736842105263,4,53.9682478787188,0.668742216687422,1.57894736842105,2.91444530487061,0,387.044278462728,386.227935791016,1.1873272710916
+5011,308274,3799598,308374,3799498,10,50,22.9916897506925,0.0560125533300244,6.14599760430878,0.246308016877637,15.9065278305254,0.0191040626960933,0.0637119113573407,6.37119113573407,2,78.5152726897717,0.881328073635766,5.81717451523546,7.78855321718299,0,389.628301620483,388.042755126953,1.68056417440947
+5012,308274,3799498,308374,3799398,11,50,72.0221606648199,0.350922020862803,18.382686306452,0.589602248162559,18.73291280641,0.0286843142457051,0.0997229916897507,9.97229916897507,4,78.0328488712265,0.814871794871795,8.31024930747922,12.7116994990243,0,391.093271255493,390.03515625,1.20934689367238
+5013,308274,3799398,308374,3799298,12,50,49.584487534626,0.483192628726475,29.6026427262284,0.887337057728119,NA,0.00431028660316258,0,0,0,NA,NA,0,NA,NA,392.189483642578,390.796264648438,1.46173254756444
+5014,308274,3799298,308374,3799198,13,50,38.1578947368421,0.39141302327005,28.7148564140807,0.873563218390805,NA,0.0371728962198464,0.334210526315789,33.4210526315789,3,93.5777830913176,0.869958763239396,31.3157894736842,32.7870884692575,0,391.443113327026,391.062774658203,0.559423674848672
+5015,308274,3799198,308374,3799098,14,50,34.6260387811634,0.337425020060388,25.6775849704669,0.862666666666667,NA,-0.00300735989249333,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,42.5056686401367,37.8243598937988,391.572601318359,391.286560058594,0.330520729203847
+5016,308274,3799098,308374,3798998,15,50,7.20221606648199,0.0350922020862803,7.25182061660909,0.613541666666667,62.3469020258635,0.0172995021965616,0.0332409972299169,3.32409972299169,3,54.4849566669172,0.513231080397775,1.66204986149584,29.0467877785365,0,392.018478393555,391.691436767578,0.293154411226651
+5017,308274,3798998,308374,3798898,16,50,0,NA,NA,NA,NA,0.000666399311190727,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,59.2386741638184,59.2386741638184,392.264183044434,392.013305664062,0.254257508097633
+5018,308274,3798898,308374,3798798,17,50,47.8947368421053,0.491290829207925,29.9717782588277,0.86996336996337,NA,-0.0186544377238821,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,3.46371682484945,0,392.638628005981,392.212432861328,0.493252360099296
+5019,308274,3798798,308374,3798698,18,50,63.98891966759,0.623561437071597,34.6230866899153,0.874458874458874,NA,0.0551198423529557,0.534626038781163,53.4626038781163,2,97.4736462819393,0.873952513966481,52.9085872576177,0.894894510970832,0,393.625307718913,392.966522216797,0.764026947352271
+5020,308274,3798698,308374,3798598,19,50,95.0138504155125,0.462947127522852,21.5442687363102,0.693345771144279,11.6176593526411,0.0560262346184887,0.609418282548476,60.9418282548476,5,94.6396766899414,0.800172980453209,52.6315789473684,0.0944650043140758,0,394.03889465332,393.528137207031,0.48320480439341
+5021,308274,3798598,308374,3798498,20,50,39.3351800554017,0.0766629645577201,11.1756466636684,0.480785907859079,15.3891240601666,0.0336666064162112,0.282548476454294,28.2548476454294,4,91.2433826992092,0.809587104669072,25.207756232687,3.6129711562512,0,394.046376546224,393.701721191406,0.387495085936522
+5022,308274,3798498,308374,3798398,21,50,28.1578947368421,0.041262259595956,11.2859377676874,0.368732492997199,13.08180401865,0.0171593556133494,0.0868421052631579,8.68421052631579,7,60.3646275131421,0.493008859003095,2.63157894736842,8.16340424797752,0,393.802381515503,393.615447998047,0.245196238093484
+5023,308274,3798398,308374,3798298,22,50,59.5567867036011,0.580371034503867,34.0599655847499,0.86046511627907,NA,0.0142937758917222,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,8.17568641238742,0,393.812876383464,393.663513183594,0.133549837669399
+5024,308274,3798298,308374,3798198,23,50,21.0526315789474,0.205154412196716,24.4449433917713,0.743421052631579,NA,0.0088460881435867,0,0,0,NA,NA,0,NA,NA,393.864957809448,393.589233398438,0.194295083152738
+5025,308274,3798198,308374,3798098,24,50,0,NA,NA,NA,NA,0.0125807821912284,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,33.2679138183594,33.2679138183594,393.792780558268,393.489685058594,0.377077902440521
+5026,308274,3798098,308374,3797998,25,50,0,NA,NA,NA,NA,0.0216396551790024,0.0184210526315789,1.84210526315789,3,38.9311331818969,0.490616621983914,0.789473684210526,65.6475546700614,31.1734504699707,394.106332778931,393.537048339844,0.452208385435171
+5027,308274,3797998,308374,3797898,26,50,13.2963988919668,0.0647856038515944,10.6717434233593,0.682173913043478,46.7601769870196,0.0352441784690348,0.0803324099722992,8.03324099722992,5,69.0779935124938,0.583568315816457,4.70914127423823,22.1233821079649,0,394.530683517456,394.093994140625,0.342635047359871
+5028,308274,3797898,308374,3797798,27,50,8.86426592797784,0.0431904025677296,10.1272609052993,0.432950191570881,21.4219052194909,0.0325999448686618,0.0332409972299169,3.32409972299169,5,48.4233840907582,0.391538850497219,1.93905817174515,25.3473840157191,7.34765291213989,394.73334757487,394.517608642578,0.203670255479314
+5029,308274,3797798,308374,3797698,28,50,1.38504155124654,0.0134970008024155,6.23469020258635,0.266666666666667,NA,0.0401898221644235,0.119113573407202,11.9113573407202,7,64.4582069466101,0.558525506638714,2.77008310249307,39.5442167326461,10.3911504745483,394.91512298584,394.673889160156,0.259325730587928
+5030,308274,3797698,308374,3797598,29,50,8.94736842105263,0.0229449013641064,5.63781175210548,0.441666666666667,10.3911503896019,0.0104492350891202,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,7.27380533218384,0,395.23442586263,394.979766845703,0.257519805806063
+5031,308274,3797598,308374,3797498,30,50,1.93905817174515,0.00944790056169086,3.89668137661647,0.138888888888889,57.1513268570416,0.0287596689358755,0.0692520775623269,6.92520775623269,6,58.0647537033583,0.489657738095238,1.93905817174515,37.2509400939941,20.7823009490967,395.764984130859,395.440185546875,0.370004848749052
+5032,308274,3797498,308374,3797398,31,50,13.5734072022161,0.132270607863672,25.1950999615593,0.697278911564626,NA,0.01794639059378,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,39.242328008016,20.7823009490967,396.309562683105,396.040832519531,0.287047275022497
+5033,308274,3797398,308374,3797298,32,50,15.5124653739612,0.0755832044935268,11.9887589002718,0.660507246376812,15.5867255064659,-0.0146646552313032,0,0,0,NA,NA,0,NA,NA,396.697750091553,396.487121582031,0.222416830012679
+5034,308274,3797298,308374,3797198,33,50,23.4210526315789,0.0480493228565992,9.73527566641845,0.309384137426901,14.6816461720838,0.00839534849644559,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,5.7335946559906,0,397.156272888184,396.934906005859,0.337456651674741
+5035,308274,3797198,308374,3797098,34,50,30.1939058171745,0.294234617492658,32.4692497543577,0.779816513761468,NA,0.0250033572400176,0.155124653739612,15.5124653739612,3,82.9837380819158,0.853574446510056,9.69529085872576,23.633677312306,0,397.924642562866,397.410125732422,0.489879148394832
+5036,308274,3797098,308374,3796998,35,50,31.3019390581717,0.152516109067295,15.2273287675096,0.533080808080808,15.5867256623399,0.0154061844859674,0.174515235457064,17.4515235457064,6,76.4655287840733,0.669615619280049,6.64819944598338,20.6731021593487,0,398.593182881673,398.448883056641,0.252278013744779
+5037,308274,3796998,308374,3796898,36,50,21.0526315789474,0.034192402032786,6.56674307474392,0.337612917795845,13.0955387054011,0.0126835622893981,0.0415512465373961,4.15512465373961,2,71.5038160830404,0.762874408828166,3.601108033241,10.9932103792826,5.19557523727417,398.846120834351,398.713409423828,0.17714863449364
+5038,308274,3796898,308374,3796798,37,50,26.8421052631579,0.0550677632738553,15.632484142201,0.478091787439614,12.8833074216968,0.0167838352904494,0.0947368421052632,9.47368421052632,9,57.6876559345949,0.466085271317829,2.36842105263158,19.4071418311861,5.19557523727417,399.324577331543,398.990417480469,0.460730931211506
+5039,308274,3796798,308374,3796698,38,50,18.2825484764543,0.0356320821183769,7.18819275972424,0.566610334110334,18.7040707948078,0.0230690961195913,0.0914127423822715,9.14127423822715,5,68.5738504542665,0.653511743450768,4.15512465373961,6.55749000202526,0,399.837776184082,399.425720214844,0.411014179330989
+5040,308274,3796698,308374,3796598,39,50,28.5318559556787,0.0695095541324399,14.41429206513,0.496086502782931,10.3911503896019,0.0193887772815151,0.110803324099723,11.0803324099723,4,78.7738268746736,0.71465104384619,7.75623268698061,8.13010354042053,0,400.072952270508,399.984649658203,0.157969994299776
+5041,308274,3796598,308374,3796498,40,50,16.8975069252078,0.0823317048947346,16.1641866335219,0.660615079365079,20.7823008831198,0.0186566033964452,0.0415512465373961,4.15512465373961,4,57.5757575757576,0.668024172359432,2.49307479224377,8.82417637507121,0,400.014371236165,399.783660888672,0.35482991826844
+5042,308274,3796498,308374,3796398,41,50,2.49307479224377,0.00809820048144931,2.7068487700739,0.194444444444444,25.9778759307065,0.035216992598923,0.279778393351801,27.9778393351801,1,95.0523852144501,0.938631534211645,27.9778393351801,18.6050505118795,0,399.798709869385,399.405975341797,0.634251415491209
+5043,308274,3796398,308374,3796298,42,50,14.7368421052632,0.0377916022467634,8.00206123991365,0.255555555555556,17.6721662535524,0.0195035712181164,0.068421052631579,6.8421052631579,1,84.7352110985031,0.973818382251619,6.8421052631579,12.0430359656994,0,399.406084696452,399.190582275391,0.469294479609299
+5044,308274,3796298,308374,3796198,43,50,22.4376731301939,0.0728838043330438,19.0847779704669,0.595362111491144,20.7823008831198,0.00687572447452535,0.0526315789473684,5.26315789473684,3,64.9970536749767,0.636015325670498,2.49307479224377,17.3968545763116,5.19557523727417,398.926126480103,398.553497314453,0.381123224159478
+5045,308274,3796198,308374,3796098,44,50,21.0526315789474,0.0683848040655719,15.1792431471027,0.611653319986653,25.9778761038998,0.00630280354739638,0,0,0,NA,NA,0,NA,NA,398.014045715332,397.576416015625,0.681456869572404
+5046,308274,3796098,308374,3795998,45,50,1.93905817174515,0.00944790056169086,2.76137936290536,0.208333333333333,112.39747683846,0.0129831875365501,0,0,0,NA,NA,0,NA,NA,396.948280334473,395.744323730469,0.799477895649248
+5047,308274,3795998,308374,3795898,46,50,8.15789473684211,0.0278938016583254,8.95104768739834,0.384126984126984,39.736230074216,0.00781024447223899,0,0,0,NA,NA,0,NA,NA,395.769816080729,395.091217041016,0.885123046449607
+5048,308274,3795898,308374,3795798,47,50,6.09418282548476,0.0197956011768761,5.38361694522393,0.328976034858388,32.9053095584131,0.0130718780723091,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,46.7601776123047,46.7601776123047,395.441097259521,394.975402832031,0.688769755704357
+5049,308274,3795798,308374,3795698,48,50,12.7423822714681,0.0310431018455557,9.79382707763416,0.444523556365662,19.4834070545437,0.0210643018580674,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,9.39888393878937,5.19557523727417,395.668889363607,395.040130615234,0.822685389471876
+5050,308274,3795698,308374,3795598,49,50,26.3157894736842,0.0641107538114737,9.81991577947574,0.468493150684932,24.7509217100969,0.0255234151486711,0.0997229916897507,9.97229916897507,2,86.2554273495948,0.814871794871795,9.69529085872576,6.56355698903402,0,396.226354598999,395.388854980469,0.863371991024713
+5051,308274,3795598,308374,3795498,50,50,11.8421052631579,0.12147300722174,26.4661997937758,0.662962962962963,NA,0.0194423802276441,0.0605263157894737,6.05263157894737,2,80.0885491969721,0.881730469965764,5.78947368421053,6.4186166887698,0,396.457046508789,395.958740234375,0.833495611109251
+5052,308274,3795498,308374,3795398,51,50,8.86426592797784,0.0287936017118198,5.92180666913099,0.40628507295174,27.4169669921336,0.0185432244303642,0.0221606648199446,2.21606648199446,4,34.6192969379535,0.386402266288952,0.831024930747922,9.55646616220474,7.34765291213989,397.404968261719,396.264678955078,0.909112787391258
+5053,308274,3795398,308374,3795298,52,50,16.0664819944598,0.07828260465401,16.5432170102822,0.663425925925926,46.7601769870196,0.00457194446590265,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,10.3911504745483,10.3911504745483,397.866251627604,397.534912109375,0.259706159046344
+5054,308274,3795298,308374,3795198,53,50,2.77008310249307,0.0134970008024155,3.74560967043276,0.231481481481481,51.1704814635886,0.0132906627017055,0.0277008310249307,2.77008310249307,5,35.1391214900534,0.367083059390752,1.10803324099723,44.5914138793945,10.3911504745483,397.969436645508,397.884124755859,0.207332278809733
+5055,308274,3795198,308374,3795098,54,50,0,NA,NA,NA,NA,0.012381845597625,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,52.2742144266764,41.8880653381348,397.928289413452,397.798645019531,0.224851329384603
+5056,308274,3795098,308374,3794998,55,50,24.3767313019391,0.0593868035306282,9.46516676104751,0.581898613103778,19.0376970996137,0.0122584254162691,0.038781163434903,3.8781163434903,3,63.6884169223432,0.739913544668588,3.04709141274238,5.98567015784127,0,397.827021280924,397.749938964844,0.122354346819834
+5057,308274,3794998,308374,3794898,56,50,47.9224376731302,0.116749056940894,13.006212097713,0.755401937828985,25.9778759480258,0.029963565309674,0.21606648199446,21.606648199446,4,83.6307498576248,0.796640548983459,13.5734072022161,4.37725723706759,0,397.777219772339,397.722290039062,0.0875840804566312
+5058,308274,3794898,308374,3794798,57,50,72.2991689750693,0.23484781396203,20.074239831181,0.698075526506899,14.8857413712661,0.0397999391572936,0.409972299168975,40.9972299168975,4,90.8808787747182,0.749839751918646,19.1135734072022,2.24923008841437,0,397.785720825195,397.719421386719,0.107203420269294
+5059,308274,3794798,308374,3794698,58,50,43.6842105263158,0.112025106660049,15.5163155103891,0.651399314243351,18.2854206910798,0.0189532316979676,0.0631578947368421,6.31578947368421,7,50.5973703823002,0.410112359550562,1.31578947368421,5.47854695717494,0,397.839265823364,397.731994628906,0.137014314401052
+5060,308274,3794698,308374,3794598,59,50,40.4432132963989,0.197056211715266,23.2048152803309,0.719572368421053,41.8880665741566,0.0160336131073191,0.0526315789473684,5.26315789473684,2,72.6112499709987,0.818007662835249,4.15512465373961,8.83009004592896,0,397.891024271647,397.787139892578,0.136051581422935
+5061,308274,3794598,308374,3794498,60,50,52.0775623268698,0.253743615085412,26.029883306126,0.768292020004349,31.1734513246797,0.0158899048914252,0.0526315789473684,5.26315789473684,4,60.3698139375397,0.490421455938697,1.93905817174515,13.7522137792487,10.3911504745483,397.932622909546,397.842071533203,0.0892869047121109
+5062,308274,3794498,308374,3794398,61,50,51.2465373961219,0.249694514844687,25.801155591392,0.771325896325896,31.1734513246797,0.00887541203366326,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824,397.944869995117,397.906402587891,0.0492808552048642
+5063,308274,3794398,308374,3794298,62,50,51.3157894736842,0.263191515647102,27.2610312712704,0.780172413793103,36.3690265454597,0.0045616336318502,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.9164962768555,15.5867252349854,397.884563446045,397.84423828125,0.046844358833419
+5064,308274,3794298,308374,3794198,63,50,50.415512465374,0.163763609735975,16.7101900425999,0.759321154673693,28.4495562667926,0.0206399834907512,0.0914127423822715,9.14127423822715,1,87.180691871343,0.95923667570009,9.14127423822715,0,0,397.825770060221,397.8154296875,0.0218525209537013
+5065,308274,3794198,308374,3794098,64,50,49.584487534626,0.161064209575492,12.8106886569607,0.624544385655497,24.7936887948502,0.0330157735800355,0.227146814404432,22.7146814404432,2,92.0591649671157,0.785836114200964,20.7756232686981,1.28258734796105,0,397.82431602478,397.809997558594,0.0309781549433194
+5066,308274,3794098,308374,3793998,65,50,14.6814404432133,0.143068208505604,27.1446010546042,0.707547169811321,NA,0.0152933194021545,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,8.74333591461182,5.19557523727417,397.956390380859,397.880584716797,0.146298027962089
+5067,308274,3793998,308374,3793898,66,50,47.1052631578947,0.161064209575492,16.9658276014525,0.66254976720093,14.0680686946012,0.00683078857296814,0.0184210526315789,1.84210526315789,3,38.9311331818969,0.490616621983914,0.789473684210526,6.98746497290475,0,398.397813796997,398.099151611328,0.43211813551869
+5068,308274,3793898,308374,3793798,67,50,51.8005540166205,0.126196957502585,15.2831226034662,0.40822357311719,12.9889380519499,0.00711181683634254,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,5.7335946559906,5.19557523727417,398.947580973307,398.598663330078,0.572154841990256
+5069,308274,3793798,308374,3793698,68,50,46.5373961218837,0.0906998453922322,14.6980457301346,0.412640018096319,13.5084955740279,0.00575816786450229,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,13.9107152620951,10.3911504745483,399.439775466919,399.192596435547,0.440305244707222
+5070,308274,3793698,308374,3793598,69,50,65.0969529085873,0.211453012571176,25.7238849426783,0.731544719840932,10.3911504415599,0.00738096846266936,0.0304709141274238,3.04709141274238,3,51.8993947741048,0.449904761904762,1.38504155124654,6.8081937269731,5.19557523727417,399.765584945679,399.212097167969,0.776903364239494
+5071,308274,3793598,308374,3793498,70,50,44.2105263157895,0.0647856038515944,11.096272913847,0.470777360489191,11.8756004823722,0.020743414543808,0.107894736842105,10.7894736842105,3,81.3424520827848,0.821298790132957,8.94736842105263,5.74671048652835,0,399.726488749186,399.120513916016,0.691122479012163
+5072,308274,3793498,308374,3793398,71,50,66.7590027700831,0.162638859669107,19.8920697185863,0.612766089033778,10.3911504415599,0.0106027207428677,0.0526315789473684,5.26315789473684,5,52.2097953971984,0.526819923371648,1.38504155124654,3.50795043142218,0,399.320281982422,399.002227783203,0.482984727647474
+5073,308274,3793398,308374,3793298,72,50,45.4293628808864,0.147567208773076,16.1362151273957,0.7508290054373,10.7999866759763,0.0175290723471189,0.03601108033241,3.601108033241,2,65.218991644703,0.654214559386973,2.21606648199446,5.12700447669396,0,398.995732625326,398.665924072266,0.421353090506771
+5074,308274,3793298,308374,3793198,73,50,25.207756232687,0.0818818048679874,13.1190074135645,0.711649831649832,23.6517377951689,0.0148762845858975,0.0332409972299169,3.32409972299169,4,51.331396108696,0.452384965447497,1.66204986149584,3.89668142795563,0,399.063259124756,398.645233154297,0.523743555766642
+5075,308274,3793198,308374,3793098,74,50,29.4736842105263,0.100777605991369,16.5462653850273,0.672723377300842,19.3627655412626,0.0162956895137098,0.121052631578947,12.1052631578947,2,86.4134100332458,0.693689543988945,10.5263157894737,3.12302430816319,0,399.363273620605,398.856658935547,0.726555003583705
+5076,308274,3793098,308374,3792998,75,50,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0133329223157932,0,0,0,NA,NA,0,NA,NA,400.979829788208,400.125427246094,0.933279920460097
+5077,308274,3792998,308374,3792898,76,50,8.03324099722992,0.0782826046540099,18.1490137161435,0.597701149425287,NA,0.0264198921946228,0.127423822714681,12.7423822714681,4,74.8874117851735,0.647374847374847,4.15512465373961,27.2549864312877,0,401.602343241374,400.952819824219,0.916055210252768
+5078,308274,3792898,308374,3792798,77,50,0,NA,NA,NA,NA,0.025845248433226,0.152354570637119,15.2354570637119,5,77.5711635544747,0.664705882352941,7.4792243767313,64.3366798054088,29.3906116485596,402.260885238647,401.588043212891,1.10067020897326
+5079,308274,3792798,308374,3792698,78,50,4.73684210526316,0.012147300722174,4.09355265807909,0.290277777777778,12.9889379220549,0.038577891528104,0.234210526315789,23.4210526315789,3,91.1634970927149,0.786466100412803,20.5263157894737,56.1690088657851,0,402.235122680664,401.473846435547,0.882222351068485
+5080,308274,3792698,308374,3792598,79,50,44.3213296398892,0.107976006419324,18.6508718074456,0.461198892898434,12.9889379999919,0.0454318318921535,0.462603878116344,46.2603878116343,3,91.5509663685472,0.740209532735306,19.3905817174515,4.58491752533142,0,401.925363540649,401.374542236328,0.742580004416903
+5081,308274,3792598,308374,3792498,80,50,43.213296398892,0.421106425035364,34.50984380867,0.746794871794872,NA,0.0421315607836077,0.404432132963989,40.4432132963989,4,90.6079260053749,0.754742618238829,20.2216066481994,4.16235143517795,0,402.255798339844,401.691986083984,1.00347224778989
+5082,308274,3792498,308374,3792398,81,50,39.8891966759003,0.194356811554783,24.9949335547062,0.724263488910957,10.3911504415599,0.0521946012649048,0.490304709141274,49.0304709141274,2,95.8190299785397,0.820003988831272,43.7673130193906,7.24054158474766,0,403.268665313721,402.150268554688,1.38175501531084
+5083,308274,3792398,308374,3792298,82,50,46.0526315789474,0.118098757021136,16.2952427386651,0.474180242272348,13.1997194433985,0.0482635177331854,0.418421052631579,41.8421052631579,4,93.4897653272625,0.770346494762289,32.8947368421053,2.70601836090568,0,404.936134338379,403.99658203125,1.41504964002793
+5084,308274,3792298,308374,3792198,83,50,26.0387811634349,0.126871807542706,25.9764586746024,0.675125313283208,11.6176593526411,0.0554946142344263,0.479224376731302,47.9224376731302,4,96.718020650317,0.765240445541253,47.0914127423823,14.044769777728,0,405.514196395874,404.559600830078,0.985503115878653
+5085,308274,3792198,308374,3792098,84,50,24.3767313019391,0.0475094428245026,8.0269995070659,0.438544600938967,14.7997421221004,0.0171928581271793,0.0997229916897507,9.97229916897507,3,81.8067671975225,0.833384615384615,8.86426592797784,4.07602123419444,0,405.588790893555,404.955505371094,0.789837290880481
+5086,308274,3792098,308374,3791998,85,50,21.0526315789474,0.0683848040655719,8.59014589550255,0.443639291465378,45.9461410458156,0.0347229244946189,0.229916897506925,22.9916897506925,2,89.623924695161,0.91166250672931,17.1745152354571,2.69049913911934,0,406.564325968424,405.982147216797,0.922147714676199
+5087,308274,3791998,308374,3791898,86,50,33.6842105263158,0.345523220541837,28.8208490524317,0.779947916666667,NA,0.0531813198044945,0.457894736842105,45.7894736842105,4,90.6509822988756,0.781629011281493,32.1052631578947,9.80056341489156,0,407.614780426025,407.244995117188,0.411016220990198
+5088,308274,3791898,308374,3791798,87,50,51.5235457063712,0.125522107462464,14.099379282643,0.650206270627063,15.5867255064659,0.0728426002187866,0.778393351800554,77.8393351800554,2,99.0679971308761,0.709422348484848,77.5623268698061,4.24609126060459,0,407.894457499186,407.427154541016,0.445266805189359
+5089,308274,3791798,308374,3791698,88,50,44.3213296398892,0.0617005750967566,12.9356650695151,0.568268262902409,12.9134876240369,0.0596906428168582,0.6398891966759,63.98891966759,4,94.7574371585801,0.677851151169017,40.7202216066482,3.39557972408476,0,407.805736541748,407.211334228516,0.617157179519777
+5090,308274,3791698,308374,3791598,89,50,30.4709141274238,0.0989780058843804,17.9444089136771,0.56612876734828,21.2087039000505,0.0403304699582816,0.373961218836565,37.3961218836565,2,93.4812538678984,0.870134542053385,30.7479224376731,5.05396646570276,0,407.87806447347,407.180267333984,0.725976778921686
+5091,308274,3791598,308374,3791498,90,50,13.4210526315789,0.0458898027282127,9.93608129139141,0.534722222222222,17.3185839999892,0.0238093567651528,0.25,25,1,94.5927206623699,0.843137254901961,25,17.3441065587496,0,407.609714508057,406.660125732422,0.975911706054432
+5092,308274,3791498,308374,3791398,91,50,19.6675900277008,0.1916574113943,23.1409984392511,0.767605633802817,NA,0.0335073018113362,0.271468144044321,27.1468144044321,3,88.1665718388306,0.836221050812306,14.1274238227147,19.1353284631457,0,407.493515014648,406.741363525391,0.883102123605818
+5093,308274,3791398,308374,3791298,92,50,19.1135734072022,0.186258611073334,25.4239837149935,0.77536231884058,NA,0.0315768829843858,0.315789473684211,31.5789473684211,2,93.6390034386297,0.858103061986557,28.808864265928,16.7612709371667,0,407.30583190918,406.580444335938,0.816397435378498
+5094,308274,3791298,308374,3791198,93,50,33.5180055401662,0.108875806472818,15.3404791117106,0.745679012345679,12.9406814558741,0.0482936865305507,0.454293628808864,45.4293628808864,3,93.539379052361,0.702675900090765,26.0387811634349,11.0241342027013,0,407.159996032715,406.671875,0.619676045348308
+5095,308274,3791198,308374,3791098,94,50,35,0.119673407114751,20.4122761851634,0.63961038961039,10.3911504415599,0.0371116108930054,0.421052631578947,42.1052631578947,3,94.4754035237286,0.747371675943104,35,8.08009510934353,0,406.664463043213,406.314331054688,0.45754407222498
+5096,308274,3791098,308374,3790998,95,50,9.14127423822715,0.0445401026479712,10.6097868652453,0.581884057971015,10.3911504415599,0.021868220561086,0.119113573407202,11.9113573407202,2,86.2333825788048,0.779262753319357,10.5263157894737,8.78238115754238,0,406.303614298503,406.260589599609,0.111518369603527
+5097,308274,3790998,308374,3790898,96,50,18.5595567867036,0.045214952688092,10.2351055183586,0.383376447400838,20.7823008051828,0.0338087475322828,0.265927977839335,26.5927977839335,6,81.0733365538172,0.627753400614304,9.97229916897507,10.6194021602472,0,406.297298431396,406.218231201172,0.0976461378538961
+5098,308274,3790898,308374,3790798,97,50,16.3434903047091,0.0796323047342515,15.2960439544884,0.605345911949686,25.9778760103754,0.0340093500108247,0.277008310249307,27.7008310249307,4,88.1798465727108,0.792528735632184,14.9584487534626,15.4022289180756,0,406.359687805176,406.221435546875,0.195911973771679
+5099,308274,3790798,308374,3790698,98,50,31.3157894736842,0.160614309548745,16.7660917204496,0.512452107279693,25.9778761038998,0.0464309480423445,0.421052631578947,42.1052631578947,4,92.1416548505966,0.735621521335807,29.4736842105263,8.89582522809505,0,406.57710647583,406.309783935547,0.306277134801168
+5100,308274,3790698,308374,3790598,99,50,32.6869806094183,0.106176406312335,20.1498787052015,0.672641213038932,15.867767586882,0.0431133233730621,0.385964912280702,38.5964912280702,4,89.4161020448027,0.716182572614108,15.7894736842105,8.98159534642191,0,406.982288360596,406.700714111328,0.360481047153033
+5101,308374,3800598,308474,3800498,0,51,49.0304709141274,0.0955587656811018,12.3942927507942,0.695802043422733,12.4693804675223,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.861338297526,382.451538085938,0.478700063372694
+5102,308374,3800498,308474,3800398,1,51,23.9473684210526,0.245645414603962,26.2286642274878,0.820512820512821,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.603040907118,383.335906982422,0.483117543197911
+5103,308374,3800398,308474,3800298,2,51,17.1745152354571,0.167362809949952,24.8903557650994,0.736559139784946,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.193143208822,383.845764160156,0.414959673504757
+5104,308374,3800298,308474,3800198,3,51,16.0664819944598,0.15656520930802,25.0848069072285,0.632183908045977,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.61041937934,384.235443115234,0.605211278105814
+5105,308374,3800198,308474,3800098,4,51,6.92520775623269,0.0224950013373592,4.93608467706329,0.398412698412698,30.2592653332957,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.129956563314,384.532684326172,0.801425393247281
+5106,308374,3800098,308474,3799998,5,51,48.9473684210526,0.125522107462464,13.5010482072257,0.607308816511572,16.8856193376399,0.0240255660779487,0.243421052631579,24.3421052631579,2,88.5801475467092,0.934996436208125,23.6842105263158,0.280841904717523,0,385.627275254991,385.021881103516,1.01110621163145
+5107,308374,3799998,308474,3799898,6,51,86.4265927977839,0.842212850070728,35.7326597225902,0.88034188034188,NA,-0.000290310510722508,0.0581717451523546,5.81717451523546,2,75.9416669556662,0.701378676470588,4.70914127423823,0.989633378528413,0,386.195899963379,385.450836181641,1.2133379846167
+5108,308374,3799898,308474,3799798,7,51,25.207756232687,0.0614113536509906,12.3760172652173,0.465604594680682,10.3911503896019,-0.0202924566752331,0,0,0,NA,NA,0,NA,NA,386.619937472873,385.945587158203,1.38061072345798
+5109,308374,3799798,308474,3799698,8,51,23.8227146814404,0.0464296827603094,9.74099188313884,0.399404761904762,14.5476106181839,0.0100751230288816,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,27.0194827715556,16.4298515319824,387.330833435059,386.341735839844,1.65998698655846
+5110,308374,3799698,308474,3799598,9,51,14.4736842105263,0.0296934017653141,7.03278025938305,0.392663476874003,22.9465307267956,0.0229375410488788,0.0842105263157895,8.42105263157895,5,67.2109548687679,0.580017683465959,3.15789473684211,19.4634409993887,5.19557523727417,388.193912082248,387.299163818359,1.30454306354523
+5111,308374,3799598,308474,3799498,10,51,4.98614958448753,0.0242946014443479,7.13743192498705,0.359375,41.5646017662397,0.0171106003258388,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,16.3732721805573,10.3911504745483,388.978271484375,388.339996337891,0.717399482362595
+5112,308374,3799498,308474,3799398,11,51,14.404432132964,0.0280737616690243,7.28675361965218,0.477539682539683,11.9208690501484,0.0247832225627828,0.0498614958448753,4.98614958448753,8,38.6623463065214,0.337328582226541,1.10803324099723,13.7165345615811,0,390.063850402832,389.737243652344,0.464221455690502
+5113,308374,3799398,308474,3799298,12,51,35.7340720221607,0.0580371034503867,13.9873161204894,0.383976231270124,12.3832751188543,0.0271283522015034,0.0609418282548476,6.09418282548476,6,58.3391291061252,0.43623112961999,2.49307479224377,6.29379738460888,0,390.687720404731,390.486236572266,0.327622294599243
+5114,308374,3799298,308474,3799198,13,51,52.1052631578947,0.0890802052959424,10.1294320609661,0.322117340452581,13.1933562037968,0.0271444655790171,0.121052631578947,12.1052631578947,10,64.6364074391191,0.547827422078919,4.73684210526316,6.30011744084566,0,391.016799926758,390.857421875,0.179180465850534
+5115,308374,3799198,308474,3799098,14,51,50.9695290858726,0.0709556613612701,10.3114751767302,0.426893054824825,12.3631341274247,0.00889485525495777,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,2.59778761863708,0,391.277106391059,391.160949707031,0.211154750366223
+5116,308374,3799098,308474,3798998,15,51,55.1246537396122,0.179060210645379,26.0293663494301,0.595636638493781,14.6725398628007,0.0101157376975254,0.0304709141274238,3.04709141274238,3,53.9619458784717,0.587428571428571,1.38504155124654,5.19557523727417,0,391.618863423665,391.404937744141,0.243258297358644
+5117,308374,3798998,308474,3798898,16,51,30.4709141274238,0.0742335044132853,18.522419179849,0.577872744539411,14.2878318051869,0.0109278021806501,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,7.7933627764384,5.19557523727417,391.879557291667,391.786743164062,0.170117902588775
+5118,308374,3798898,308474,3798798,17,51,47.8947368421053,0.245645414603962,18.7996813532498,0.58047619047619,41.5646017662397,0.0168334833195906,0.05,5,5,65.2648902769614,0.56442831215971,3.68421052631579,5.74247781853927,0,392.084093729655,391.890869140625,0.302291204898869
+5119,308374,3798798,308474,3798698,18,51,54.016620498615,0.526383031294205,30.3157837505676,0.894017094017094,NA,0.0145979816324372,0.0443213296398892,4.43213296398892,6,51.0774262662925,0.389613526570048,2.21606648199446,6.30425050854683,0,392.629591200087,392.230865478516,0.623932897370728
+5120,308374,3798698,308474,3798598,19,51,27.9778393351801,0.136319708104397,15.1149325581871,0.671455938697318,14.6953058096335,0.0308011846461852,0.18005540166205,18.005540166205,3,89.1361428817406,0.773349677110739,16.3434903047091,4.56175817342905,0,393.180956522624,392.738067626953,0.445074190543012
+5121,308374,3798598,308474,3798498,20,51,31.0249307479224,0.151166408987054,12.5717152387065,0.651246105919003,14.6953058096335,0.0258720008548513,0.155124653739612,15.5124653739612,3,89.0829755934431,0.853574446510056,14.9584487534626,4.13177272251674,0,393.297617594401,393.124664306641,0.335362118630609
+5122,308374,3798498,308474,3798398,21,51,48.6842105263158,0.249694514844687,21.8203863894556,0.717930469289165,10.3911503376439,0.0286000905239091,0.171052631578947,17.1052631578947,4,83.0091391796381,0.807838179519595,10.7894736842105,8.80440216798049,0,393.356267293294,393.173706054688,0.248289019467191
+5123,308374,3798398,308474,3798298,22,51,23.2686980609418,0.11337480674029,25.0231436259819,0.613636363636364,11.6176593526411,0.0283884985320505,0.135734072022161,13.5734072022161,2,88.7813936325183,0.7933836996337,13.0193905817175,9.33830843166429,0,393.498575846354,393.293548583984,0.28793854564446
+5124,308374,3798298,308474,3798198,23,51,2.49307479224377,0.012147300722174,4.40813924072632,0.297619047619048,67.7420122779756,0.036889867137323,0.121883656509695,12.1883656509695,3,81.022923866077,0.830718731349646,7.20221606648199,30.0241718834097,0,393.831077575684,393.559051513672,0.285289822683696
+5125,308374,3798198,308474,3798098,24,51,9.97229916897507,0.0971784057773917,23.3628122684668,0.578703703703704,NA,0.0389333680288871,0.202216066481994,20.2216066481994,5,79.1301778648146,0.696424696180556,8.03324099722992,38.5942976638062,0,394.144836425781,393.98828125,0.258068229299798
+5126,308374,3798098,308474,3797998,25,51,26.5789473684211,0.272639416208793,27.8294760209982,0.826732673267327,NA,0.0254895709435866,0.0578947368421053,5.78947368421053,5,57.7932130122862,0.531712126191259,2.36842105263158,22.0719003894112,5.19557523727417,394.317662556966,394.068481445312,0.378369934422652
+5127,308374,3797998,308474,3797898,26,51,34.3490304709141,0.167362809949952,15.3707146016826,0.739431739431739,15.5867256623399,0.033575371009526,0.171745152354571,17.1745152354571,6,74.487080188988,0.575188901275858,4.98614958448753,8.08486293208215,0,394.510365804036,394.062469482422,0.416725278385491
+5128,308374,3797898,308474,3797798,27,51,0.277008310249307,0.0026994001604831,0,0,NA,-0.00149323985650959,0.0914127423822715,9.14127423822715,1,87.180691871343,0.877710027100271,9.14127423822715,62.3299511996183,39.5683212280273,394.76321750217,394.576141357422,0.2598476536417
+5129,308374,3797798,308474,3797698,28,51,9.41828254847645,0.0917796054564255,14.885413933321,0.705882352941177,NA,-0.00184257100952191,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,12.9750751389398,0,395.007194519043,394.859039306641,0.224048429274587
+5130,308374,3797698,308474,3797598,29,51,18.6842105263158,0.0958287056971501,14.5404773757436,0.623655913978495,10.3911503376439,0.0159665083924617,0.068421052631579,6.8421052631579,6,66.0253803780321,0.581094116025906,3.42105263157895,45.0545799732208,0,395.348809136285,395.202331542969,0.202672110216621
+5131,308374,3797598,308474,3797498,30,51,27.4238227146814,0.0890802052959424,16.1013086175444,0.434314954051796,20.7823007792038,0.0199702587468945,0.0526315789473684,5.26315789473684,6,50.1536203215364,0.417624521072797,1.66204986149584,11.7936795134293,5.19557523727417,395.802886962891,395.488677978516,0.368725579401661
+5132,308374,3797498,308474,3797398,31,51,29.9168975069252,0.0416478881903107,10.0886426252329,0.42512589451365,12.8409109404711,0.0264917400285679,0.182825484764543,18.2825484764543,6,79.335850545054,0.595637435519528,8.58725761772853,7.19124114874637,0,396.346255832248,396.142700195312,0.277520816088114
+5133,308374,3797398,308474,3797298,32,51,20.7756232686981,0.0506137530090582,15.0491715952257,0.441577182899778,13.1997194624954,0.0242677305685904,0.110803324099723,11.0803324099723,7,68.9651095861528,0.580369182126749,6.37119113573407,7.656043446064,0,396.757469177246,396.581085205078,0.227364311395288
+5134,308374,3797298,308474,3797198,33,51,0.789473684210526,0.00404910024072465,1.29889379220549,0.0833333333333333,20.7823008831198,0.0179626173455051,0.0657894736842105,6.57894736842105,3,72.5994365696236,0.785915492957747,5,72.0094129180908,10.3911504745483,397.224487304688,397.032012939453,0.332554988304705
+5135,308374,3797198,308474,3797098,34,51,0,NA,NA,NA,NA,0.00831062109083931,0.0498614958448753,4.98614958448753,3,65.5382039415795,0.610193283662671,2.49307479224377,57.6031841701931,34.8529777526855,397.828287760417,397.503509521484,0.402082860405224
+5136,308374,3797098,308474,3796998,35,51,0.277008310249307,0.0026994001604831,0,0,NA,0.0404085102227856,0.329639889196676,32.9639889196676,2,93.9968653938865,0.83425160697888,29.3628808864266,38.3737903723196,11.6176595687866,398.478349473741,398.286651611328,0.348389158983632
+5137,308374,3796998,308474,3796898,36,51,13.5734072022161,0.066135303931836,9.5756389364558,0.515700483091787,66.1288761433508,0.0153984778763088,0.10803324099723,10.803324099723,5,78.1176022887457,0.775776397515528,8.86426592797784,11.5603599181542,0,398.934257507324,398.742523193359,0.308544863310432
+5138,308374,3796898,308474,3796798,37,51,10,0.102577206098358,16.4258414377256,0.710526315789474,NA,0.0109504239009192,0.0842105263157895,8.42105263157895,4,72.9278133007804,0.769009725906278,3.94736842105263,20.3837560117245,10.3911504745483,399.77981906467,399.184265136719,0.867846382164663
+5139,308374,3796798,308474,3796698,38,51,8.03324099722992,0.039141302327005,8.01190368751581,0.551666666666667,15.5867256623399,0.0301761414780621,0.196675900277008,19.6675900277008,5,87.8129234693637,0.780910344827586,17.1745152354571,26.2440820613378,7.34765291213989,400.527587890625,400.078186035156,0.692665755392239
+5140,308374,3796698,308474,3796598,39,51,0,NA,NA,NA,NA,0.0305453524719234,0.149584487534626,14.9584487534626,2,86.6243669280515,0.810339392665756,11.6343490304709,88.9373120908384,67.54248046875,400.31502532959,400.083190917969,0.38699882609308
+5141,308374,3796598,308474,3796498,40,51,0,NA,NA,NA,NA,0.0282818313512772,0.0221606648199446,2.21606648199446,6,15.913301703153,0.181869688385269,0.554016620498615,56.9337611198425,32.8597030639648,399.948187934028,399.792175292969,0.312550903104757
+5142,308374,3796498,308474,3796398,41,51,22.4376731301939,0.109325706499566,10.95049062668,0.3875,25.9778758441098,0.0257557144920971,0.0554016620498615,5.54016620498615,3,69.4489674050004,0.829249834452748,4.43213296398892,2.92059926986694,0,399.503705342611,399.366973876953,0.1976740057068
+5143,308374,3796398,308474,3796298,42,51,32.3684210526316,0.332026219739422,28.3367516563825,0.779132791327913,NA,0.0189933886727981,0.0868421052631579,8.68421052631579,3,81.8283047750199,0.817483189241114,7.89473684210526,5.81863763115623,0,399.270745171441,399.175506591797,0.129426556421926
+5144,308374,3796298,308474,3796198,43,51,17.4515235457064,0.0425155525276089,8.80452762417888,0.564642857142857,13.3041024578245,0.0370303125862827,0.263157894736842,26.3157894736842,3,86.8847789108439,0.816386554621849,9.97229916897507,17.9552916326021,0,398.804524739583,398.410888671875,0.443859183492512
+5145,308374,3796198,308474,3796098,44,51,34.0720221606648,0.166013109869711,20.4148622246526,0.766983949234789,40.5787394447539,0.0274167055675439,0.135734072022161,13.5734072022161,6,74.2372029639494,0.724511599511599,8.86426592797784,10.2398890670465,0,397.901858859592,397.678070068359,0.456162661573857
+5146,308374,3796098,308474,3795998,45,51,31.5789473684211,0.0769329045737684,14.0802316926219,0.462979728604729,21.39555519989,0.00312267743702301,0,0,0,NA,NA,0,NA,NA,397.479695638021,397.094482421875,0.33305173338163
+5147,308374,3795998,308474,3795898,46,51,22.3684210526316,0.0764830045470212,12.7042393786855,0.59556530214425,22.0263764609654,-0.00733770702359164,0,0,0,NA,NA,0,NA,NA,397.185672336155,396.79931640625,0.576371888707133
+5148,308374,3795898,308474,3795798,47,51,21.8836565096953,0.071084204226055,13.1928181759062,0.686207311207311,15.5867255757432,0.0246044335886594,0.0914127423822715,9.14127423822715,1,87.180691871343,0.898091689250226,9.14127423822715,4.04857748205012,0,396.930816650391,396.317138671875,0.790151193987513
+5149,308374,3795798,308474,3795698,48,51,39.0581717451524,0.190307711314059,21.178549106311,0.700280112044818,15.5867255064659,0.0115376813780819,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,3.13580703735352,0,397.206949869792,396.390899658203,0.882688022389495
+5150,308374,3795698,308474,3795598,49,51,28.808864265928,0.0935792055634142,14.5483131952681,0.557047265908025,22.5141590648952,0.0195631663841205,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,8.15204246838888,5.19557523727417,397.955721537272,397.157196044922,1.06887866179127
+5151,308374,3795598,308474,3795498,50,51,18.1578947368421,0.186258611073334,22.8882688443905,0.71256038647343,NA,0.0174958993657607,0.0210526315789474,2.10526315789474,5,25.6037101023973,0.28494623655914,0.789473684210527,14.7101550102234,5.19557523727417,398.328470865885,397.332092285156,1.10774861922644
+5152,308374,3795498,308474,3795398,51,51,0,NA,NA,NA,NA,0.0181155822578239,0.0304709141274238,3.04709141274238,2,60.6808426873174,0.724952380952381,1.93905817174515,65.1606549349698,57.1513290405273,398.524129231771,398.246826171875,0.459975926639938
+5153,308374,3795398,308474,3795298,52,51,13.0193905817175,0.0634359037713529,10.2313644942818,0.6,25.9778761038998,-0.0214751267038515,0,0,0,NA,NA,0,NA,NA,398.202643500434,398.029296875,0.273888950879199
+5154,308374,3795298,308474,3795198,53,51,4.43213296398892,0.0431904025677296,8.06924643670237,0.65625,NA,-0.0211037455754653,0,0,0,NA,NA,0,NA,NA,397.991032918294,397.886993408203,0.139111414922456
+5155,308374,3795198,308474,3795098,54,51,1.31578947368421,0.0134970008024155,4.40481631604598,0.433333333333333,NA,0.00271557784027257,0,0,0,NA,NA,0,NA,NA,397.829076131185,397.786712646484,0.0598208563462186
+5156,308374,3795098,308474,3794998,55,51,14.9584487534626,0.0242946014443479,7.74732237676076,0.321436588103255,18.7533023867364,0.00974276859510345,0,0,0,NA,NA,0,NA,NA,397.753248426649,397.736785888672,0.0333870508777569
+5157,308374,3794998,308474,3794898,56,51,42.1052631578947,0.136769608131144,19.3489969709949,0.734576062048299,21.9198792670069,0.0217351436302507,0.0332409972299169,3.32409972299169,3,64.0714850042463,0.574077195348053,2.77008310249307,5.40283914407094,0,397.708704630534,397.686859130859,0.0261916398732713
+5158,308374,3794898,308474,3794798,57,51,64.819944598338,0.315829818776523,19.9762306789789,0.712087087087087,25.9778760103754,0.0322184733328901,0.127423822714681,12.7423822714681,6,73.5266199468893,0.676760276760277,6.92520775623269,2.69135620283044,0,397.678833007812,397.651611328125,0.0402433862114876
+5159,308374,3794798,308474,3794698,58,51,78.6842105263158,0.807120647984447,40.8587321931658,0.853957636566332,NA,0.032869875447604,0.171052631578947,17.1052631578947,5,79.906645360357,0.786486866132884,10,1.73570392315204,0,397.666376749674,397.618041992188,0.0858925292336893
+5160,308374,3794698,308474,3794598,59,51,95.2908587257618,0.928593655206187,37.7588750761673,0.914728682170543,NA,0.0382264870721357,0.263157894736842,26.3157894736842,4,87.8151260504202,0.680672268907563,13.5734072022161,0,0,397.691728379991,397.618469238281,0.117797437542553
+5161,308374,3794598,308474,3794498,60,51,91.1357340720222,0.888102652798941,38.3470683137754,0.893110435663627,NA,0.0317868574135782,0.152354570637119,15.2354570637119,5,79.6920552582353,0.788888888888889,11.6343490304709,0.472325021570379,0,397.801856994629,397.677673339844,0.156742709316214
+5162,308374,3794498,308474,3794398,61,51,99.4459833795014,0.969084657613434,37.5768148880699,0.930826369545033,NA,0.0288437096331668,0.102493074792244,10.2493074792244,2,86.1678004535147,0.908672333535722,9.97229916897507,0.140420952358761,0,397.907436794705,397.786071777344,0.188098147002268
+5163,308374,3794398,308474,3794298,62,51,98.4210526315789,1.00957566002068,38.3884756254967,0.931818181818182,NA,0.0249762717835294,0.0605263157894737,6.05263157894737,2,76.883313776865,0.645191409897292,4.73684210526316,0.903578302134638,0,397.86696879069,397.828125,0.0641610507722423
+5164,308374,3794298,308474,3794198,63,51,87.8116343490305,0.855709850873143,35.5118790357063,0.916403785488959,NA,0.0242126118579597,0.0664819944598338,6.64819944598338,3,76.6872499839571,0.774480712166172,5.81717451523546,0,0,397.840955946181,397.820587158203,0.051911529702364
+5165,308374,3794198,308474,3794098,64,51,17.7285318559557,0.0345523220541837,7.47202598004189,0.44345021761565,14.7162356793848,0.0151599431184293,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,41.8880653381348,41.8880653381348,397.862475077311,397.820983886719,0.0780580528116901
+5166,308374,3794098,308474,3793998,65,51,18.2825484764543,0.178160410591885,22.3022140424865,0.696969696969697,NA,0.02513300347652,0.0941828254847645,9.41828254847645,4,69.7807252477589,0.625436871996505,3.04709141274238,7.44481637898613,0,397.954230414497,397.890777587891,0.10324392344456
+5167,308374,3793998,308474,3793898,66,51,56.0526315789474,0.28748611709145,22.1350145259834,0.540873015873016,10.3911503376439,0.016737200361891,0.05,5,5,57.6522994791116,0.528130671506352,2.63157894736842,5.17169934824893,0,398.216387430827,398.042541503906,0.222874942328551
+5168,308374,3793898,308474,3793798,67,51,84.2105263157895,0.820617648786863,36.010217041591,0.887609649122807,NA,0.0147703554497956,0.0941828254847645,9.41828254847645,4,76.723618291378,0.664864569681083,6.92520775623269,4.45123118512771,0,398.493299696181,398.285278320312,0.318427422752262
+5169,308374,3793798,308474,3793698,68,51,74.792243767313,0.364419021665219,19.0389497049083,0.530783582089552,15.5867256623399,0.0089665308163064,0.0554016620498615,5.54016620498615,3,65.8639399280566,0.521899536467695,2.49307479224377,9.67072479724884,0,398.78498840332,398.381378173828,0.60465924339695
+5170,308374,3793698,308474,3793598,69,51,73.4072022160665,0.238447014176007,14.808525594738,0.462456597222222,12.1230087792092,0.0192507727778096,0.0581717451523546,5.81717451523546,3,77.7710689425904,0.535477941176471,5.26315789473684,5.45894014267694,0,398.654507954915,398.409545898438,0.53118865265672
+5171,308374,3793598,308474,3793498,70,51,94.7368421052632,0.971784057773917,37.7959623098536,0.927777777777778,NA,0.0178018012492765,0.0447368421052632,4.47368421052632,4,65.8523727001939,0.497520661157025,3.15789473684211,1.3490810955272,0,398.910244411892,398.493530273438,0.508258889173426
+5172,308374,3793498,308474,3793398,71,51,91.9667590027701,0.448100426640195,23.3947475330377,0.791047823202164,11.6176592829322,0.0246691374792498,0.0969529085872576,9.69529085872576,6,74.4475731297265,0.522688808969748,6.37119113573407,0.148445006779262,0,399.379300435384,398.982269287109,0.509633427790511
+5173,308374,3793398,308474,3793298,72,51,58.4487534626039,0.189857811287311,15.5193473218612,0.602820844099914,12.1230087965286,0.038307249541404,0.271468144044321,27.1468144044321,3,87.8524565628549,0.766030072589008,16.0664819944598,1.84646646343932,0,398.625684950087,398.519561767578,0.271270862732874
+5174,308374,3793298,308474,3793198,73,51,50.6925207756233,0.493990229368408,33.2405399918121,0.847905282331512,NA,0.0277733105500472,0.124653739612188,12.4653739612188,4,80.500675968163,0.684335443037975,9.14127423822715,0.692743364969889,0,398.584897359212,398.5087890625,0.172167865972749
+5175,308374,3793198,308474,3793098,74,51,58.1578947368421,0.149141858866691,14.8371191847269,0.54602613977614,11.004404862246,0.0564757388463477,0.489473684210526,48.9473684210526,3,95.3020807030014,0.800707264444977,43.4210526315789,4.23106014087636,0,399.062527126736,398.758178710938,0.826616590168982
+5176,308374,3793098,308474,3792998,75,51,17.7285318559557,0.0863808051354593,10.7254196136012,0.626775271512114,23.2353185658643,0.0156983026735414,0.0498614958448753,4.98614958448753,3,66.6877595910009,0.649173955296404,3.32409972299169,23.9185908635457,0,401.019409179688,400.417633056641,0.942651604730889
+5177,308374,3792998,308474,3792898,76,51,38.2271468144044,0.093129305536667,14.6692428663911,0.490420527185233,16.0870138346576,0.0326055887220053,0.277008310249307,27.7008310249307,3,88.2763264298699,0.792528735632184,16.3434903047091,4.53341254234314,0,401.203728569878,401.106109619141,0.281611500333338
+5178,308374,3792898,308474,3792798,77,51,66.2049861495845,0.645156638355461,32.591147181825,0.872384937238494,NA,0.0445217588428105,0.465373961218837,46.5373961218837,2,96.8166492949438,0.806919605549056,45.7063711911357,1.26927794445129,0,401.264895121257,401.198181152344,0.276030015801875
+5179,308374,3792798,308474,3792698,78,51,88.4210526315789,0.906998453922322,37.2818588902331,0.900297619047619,NA,0.0585178332875856,0.694736842105263,69.4736842105263,1,98.9199097507581,0.854406130268199,69.4736842105263,0.536140868158052,0,401.197906494141,401.105621337891,0.217399299563183
+5180,308374,3792698,308474,3792598,79,51,79.5013850415512,0.77472784605865,35.4013459339059,0.868757259001161,NA,0.0465041629141622,0.46814404432133,46.814404432133,5,91.4949888017003,0.752921340811966,31.5789473684211,0.983777559720553,0,401.224505106608,401.101226806641,0.221894942621923
+5181,308374,3792598,308474,3792498,80,51,78.6703601108033,0.766629645577201,36.6487374256758,0.875,NA,0.0425832151065285,0.443213296398892,44.3213296398892,2,93.7673880249136,0.859495041797814,22.4376731301939,1.93719796538353,0,401.544952392578,401.279724121094,0.400387410427087
+5182,308374,3792498,308474,3792398,81,51,72.2991689750693,0.70454344188609,35.2264685761057,0.867177522349936,NA,0.0480654012243982,0.529085872576177,52.9085872576177,1,97.9178236108022,0.814041209704221,52.9085872576177,1.89947040168403,0,402.239158630371,401.695648193359,0.781443951883835
+5183,308374,3792398,308474,3792298,82,51,68.6842105263158,0.70454344188609,34.4027561398115,0.869731800766283,NA,0.0633418496234012,0.728947368421053,72.8947368421053,1,99.0739697285716,0.787154592979836,72.8947368421053,2.09793087721732,0,403.027092827691,402.508453369141,0.933414049139663
+5184,308374,3792298,308474,3792198,83,51,69.8060941828255,0.340124420220871,17.20687963431,0.532,10.3911504415599,0.0829044105614074,0.897506925207756,89.7506925207756,1,99.6913580246914,0.936230347995054,89.7506925207756,1.7521989227813,0,403.370274861654,402.519561767578,1.09061508288119
+5185,308374,3792198,308474,3792098,84,51,25.4847645429363,0.0413908024607409,6.7447533558098,0.440484734228106,18.3019010573132,0.0229868116412917,0.21606648199446,21.606648199446,3,85.1835334250824,0.796640548983459,11.6343490304709,2.84566646967179,0,404.329968770345,403.255004882812,1.29954641660742
+5186,308374,3792098,308474,3791998,85,51,16.6204986149584,0.0404910024072465,8.37108417671186,0.439885361552028,24.1608874085289,0.0262607742242281,0.188365650969529,18.8365650969529,4,84.1893384705788,0.761866521352568,9.69529085872576,7.50754160039565,0,405.939568413628,405.629333496094,0.894708914387604
+5187,308374,3791998,308474,3791898,86,51,47.3684210526316,0.485892028886958,33.2744356621937,0.775,NA,0.0810171463649328,0.842105263157895,84.2105263157895,2,97.1453278855655,0.748344370860927,68.9473684210526,4.30470019727945,0,407.406150817871,407.067626953125,0.448338277083086
+5188,308374,3791898,308474,3791798,87,51,50.9695290858726,0.248344814764445,19.657205295685,0.556698950766747,10.3911503376439,0.0629288594824084,0.642659279778393,64.2659279778393,1,98.6254938212924,0.780260307571119,64.2659279778393,2.58046652325268,0,407.397206624349,407.268218994141,0.232116628789949
+5189,308374,3791798,308474,3791698,88,51,57.8947368421053,0.564174633540968,36.3155574686298,0.812599681020734,NA,0.0668574336837523,0.736842105263158,73.6842105263158,1,99.0835291943254,0.832464929859719,73.6842105263158,2.82045830102791,0,407.151212056478,406.888671875,0.196601341506679
+5190,308374,3791698,308474,3791598,89,51,38.5041551246537,0.187608311153576,15.5585620509456,0.527369281045752,22.0429587144503,0.0432954202577426,0.385041551246537,38.5041551246537,4,92.8033449402584,0.820742001844364,33.7950138504155,3.66570405822864,0,406.757534450955,406.474365234375,0.416578438985942
+5191,308374,3791598,308474,3791498,90,51,10,0.034192402032786,6.14220778586358,0.435185185185185,24.588993081274,0.0436331533805443,0.355263157894737,35.5263157894737,4,89.2811934552875,0.7982412477186,19.4736842105263,24.1941546899301,0,406.398165384928,406.209838867188,0.340735585609405
+5192,308374,3791498,308474,3791398,91,51,0,NA,NA,NA,NA,0.0389391302523817,0.340720221606648,34.0720221606648,4,88.5747122396016,0.76873798846893,16.6204986149584,55.260334263003,15.5867252349854,406.303192138672,406.177612304688,0.314439629077903
+5193,308374,3791398,308474,3791298,92,51,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.0258222077967544,0.10803324099723,10.803324099723,3,78.0522000000215,0.79302436693741,5.26315789473684,63.3777305407402,16.4298515319824,406.294924418132,406.177001953125,0.264797271178827
+5194,308374,3791298,308474,3791198,93,51,0,NA,NA,NA,NA,0.0259028344774371,0.18005540166205,18.005540166205,5,82.6798400860378,0.762556804592203,13.2963988919668,43.046882042518,10.3911504745483,406.283827039931,406.150909423828,0.317466154794933
+5195,308374,3791198,308474,3791098,94,51,10,0.0512886030491789,9.20578412462746,0.660119047619048,37.4658256128201,0.0507218506191221,0.465789473684211,46.5789473684211,3,93.9691462258787,0.828264111718715,36.3157894736842,21.6377328156078,0,406.204991658529,406.142364501953,0.144304924624268
+5196,308374,3791098,308474,3790998,95,51,13.5734072022161,0.044090202621224,7.46290019140678,0.314814814814815,12.9406813574434,0.0205310059421226,0.0831024930747922,8.31024930747922,2,82.9975712063962,0.821937234108145,7.75623268698061,3.65822281837463,0,406.280524359809,406.211547851562,0.117314471526863
+5197,308374,3790998,308474,3790898,96,51,6.37119113573407,0.0620862036911113,18.2343531651511,0.543478260869565,NA,0.0158018328099824,0.0470914127423823,4.70914127423823,2,72.9691949950667,0.706162790697674,3.8781163434903,19.1127851149615,0,406.564491271973,406.361145019531,0.309101743111245
+5198,308374,3790898,308474,3790798,97,51,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,-0.000251836311567118,0.0609418282548476,6.09418282548476,4,64.0017734051614,0.655474579212216,3.32409972299169,38.5036040436138,5.19557523727417,406.897223578559,406.528869628906,0.465143926858627
+5199,308374,3790798,308474,3790698,98,51,19.2105263157895,0.197056211715266,25.2771712199691,0.780821917808219,NA,0.0301897938215629,0.242105263157895,24.2105263157895,4,90.1243736710573,0.814955962059621,20.7894736842105,6.46700765775598,0,407.247622172038,406.790313720703,0.710892901584369
+5200,308374,3790698,308474,3790598,99,51,9.69529085872576,0.0944790056169086,19.3775865638554,0.614285714285714,NA,0.0317512883586609,0.181286549707602,18.1286549707602,5,80.973214929243,0.705952380952381,11.1111111111111,14.6591827484869,0,407.860778808594,407.516235351562,0.641696103633181
+5201,308474,3800598,308574,3800498,0,52,44.0443213296399,0.0858409251033626,11.4317874283132,0.541755288736421,15.2301576900825,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.938800811768,382.653717041016,0.333279793187185
+5202,308474,3800498,308574,3800398,1,52,61.0526315789474,0.208753612410693,15.6140377390424,0.722825267601387,10.7999867220173,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.527417500814,383.266693115234,0.437199854763872
+5203,308474,3800398,308574,3800298,2,52,75.0692520775623,0.731537443490921,34.464629261051,0.886223862238622,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.324380874634,383.790863037109,0.484691559005218
+5204,308474,3800298,308574,3800198,3,52,44.5983379501385,0.21730171291889,18.1913110017147,0.636538461538461,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.196988423665,384.777160644531,0.620984342068976
+5205,308474,3800198,308574,3800098,4,52,20.7756232686981,0.0506137530090582,11.6555054196836,0.460873171558655,14.4164476873965,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.12034034729,385.576690673828,0.694623403943364
+5206,308474,3800098,308574,3799998,5,52,52.3684210526316,0.179060210645379,14.6978926979956,0.535485747527632,12.9406813574434,0.0231709097470708,0.177631578947368,17.7631578947368,3,75.8218297161515,0.717209302325581,10.5263157894737,6.15667994817098,0,387.098243713379,386.422424316406,0.923306870365416
+5207,308474,3799998,308574,3799898,6,52,49.3074792243767,0.240246614282996,19.494596594144,0.365348399246704,18.7329127343573,0.0257181143323656,0.265927977839335,26.5927977839335,3,90.7790560551582,0.762395787626152,19.6675900277008,7.03651136159897,0,388.157163619995,387.155456542969,0.812302604671651
+5208,308474,3799898,308574,3799798,7,52,11.0803324099723,0.0359920021397747,7.20616753409919,0.365440115440115,41.6724232335421,-0.0218753208846616,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,24.0940634012222,10.3911504745483,388.823117574056,388.0712890625,0.808857587887501
+5209,308474,3799798,308574,3799698,8,52,0,NA,NA,NA,NA,0.018688490643157,0.149584487534626,14.9584487534626,2,85.3108391435897,0.848271514132605,8.03324099722992,67.1718486503319,31.1734504699707,389.733633041382,389.004608154297,1.10629082455657
+5210,308474,3799698,308574,3799598,9,52,0,NA,NA,NA,NA,0.0115160861655424,0.0552631578947368,5.52631578947368,3,67.032352024655,0.636142061281337,2.63157894736842,61.7418823242188,16.4298515319824,390.378997802734,389.352416992188,1.15653656919546
+5211,308474,3799598,308574,3799498,10,52,45.983379501385,0.224050213320097,25.2596088874304,0.759718082463984,20.7823006752878,0.0230544812313327,0.0332409972299169,3.32409972299169,6,34.6192969379535,0.330692735546941,0.831024930747922,5.98034922281901,0,389.75687789917,389.296539306641,0.381872138666917
+5212,308474,3799498,308574,3799398,11,52,11.0803324099723,0.107976006419324,18.7993560626836,0.658333333333333,NA,0.021994908428718,0.10803324099723,10.803324099723,4,79.6838347115673,0.724032489249881,8.58725761772853,25.6629112439278,10.3911504745483,390.035673141479,389.801239013672,0.301005318676464
+5213,308474,3799398,308574,3799298,12,52,39.0581717451524,0.0951538556570293,15.3227824387632,0.503472222222222,11.6900441558284,0.024124904255007,0.141274238227147,14.1274238227147,5,82.9328148945388,0.678754171301446,11.0803324099723,8.15282378477209,0,390.533091227214,390.216461181641,0.291169300515682
+5214,308474,3799298,308574,3799198,13,52,41.5789473684211,0.213252612678165,19.7645825777246,0.633731046482724,20.7823006752878,0.0191881984225658,0.0789473684210526,7.89473684210526,7,59.8874732040336,0.579008746355685,2.63157894736842,5.25993644396464,0,390.896036148071,390.697937011719,0.213087698967959
+5215,308474,3799198,308574,3799098,14,52,33.2409972299169,0.053988003209662,10.7437842668006,0.421969207579673,11.2570796103846,-0.0163901857857207,0,0,0,NA,NA,0,NA,NA,391.191075642904,391.109954833984,0.155848971368621
+5216,308474,3799098,308574,3798998,15,52,65.3739612188366,0.212352812624671,13.6045638786096,0.411014911014911,13.8548672554132,-0.00423516764906071,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,391.505537033081,391.3369140625,0.19647171220964
+5217,308474,3798998,308574,3798898,16,52,63.98891966759,0.311780718535798,19.0253065421144,0.575442477876106,10.3911504415599,0.00184928465269043,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.952574881765633,4.15512465373961,9.05718819300334,0,391.774294535319,391.721038818359,0.101420619673065
+5218,308474,3798898,308574,3798798,17,52,32.3684210526316,0.0830065549348554,14.0200343154697,0.537804141628373,14.7881199788088,0.0167890039960615,0.152631578947368,15.2631578947368,2,87.5311910289092,0.846583850931677,12.8947368421053,6.63462906870349,0,391.913686752319,391.814544677734,0.128899807093714
+5219,308474,3798798,308574,3798698,18,52,43.7673130193906,0.213252612678165,23.2090944368784,0.63232496194825,15.5867256623399,0.0207418182203822,0.152354570637119,15.2354570637119,2,89.6864079295276,0.838562091503268,14.6814404432133,0,0,392.255831400553,392.05615234375,0.322153549512758
+5220,308474,3798698,308574,3798598,19,52,6.64819944598338,0.0647856038515944,15.9535872582896,0.625,NA,0.0178307697688548,0.0637119113573407,6.37119113573407,1,83.5457007384199,0.910996055226825,6.37119113573407,1.80715660426928,0,392.848598480225,392.534606933594,0.293482683004102
+5221,308474,3798598,308574,3798498,20,52,0,NA,NA,NA,NA,0.0140746391645931,0.03601108033241,3.601108033241,2,64.6953405017921,0.769476372924649,2.49307479224377,88.0795616736779,78.1066207885742,393.059946695964,392.990936279297,0.109606673255102
+5222,308474,3798498,308574,3798398,21,52,0,NA,NA,NA,NA,0.0147149203565804,0.0736842105263158,7.36842105263158,2,82.8440191260091,0.880050505050505,7.10526315789474,65.872472354344,51.955753326416,393.20112991333,393.099304199219,0.13265933228325
+5223,308474,3798398,308574,3798298,22,52,0,NA,NA,NA,NA,0.0157818632955669,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,67.4292678833008,57.1513290405273,393.118372599284,393.000915527344,0.18421320088651
+5224,308474,3798298,308574,3798198,23,52,0,NA,NA,NA,NA,0.0148400421067359,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,63.3599422999791,44.6940307617188,393.096130371094,392.502014160156,0.5646891969043
+5225,308474,3798198,308574,3798098,24,52,0,NA,NA,NA,NA,0.0301601496914342,0.265927977839335,26.5927977839335,3,87.7740884635221,0.833677051338306,14.6814404432133,52.8871089617411,31.1734504699707,393.070134480794,392.013946533203,0.982738620593504
+5226,308474,3798098,308574,3797998,25,52,0,NA,NA,NA,NA,0.028640235298582,0.184210526315789,18.4210526315789,5,81.2469335555348,0.730920535011802,8.1578947368421,48.9187935692923,20.7823009490967,392.695177078247,391.924621582031,1.06147130791935
+5227,308474,3797998,308574,3797898,26,52,0,NA,NA,NA,NA,0.0324480729313842,0.227146814404432,22.7146814404432,4,86.4972961777182,0.794759609442591,11.6343490304709,57.2885915709705,25.977876663208,393.032455444336,392.181732177734,0.976876941886727
+5228,308474,3797898,308574,3797798,27,52,24.0997229916898,0.23484781396203,25.1061894882239,0.754789272030651,NA,0.00808199550695379,0.074792243767313,7.4792243767313,3,72.9595961718928,0.723506475421251,4.43213296398892,21.1584763173704,0,393.732899983724,392.546356201172,1.06054656926882
+5229,308474,3797798,308574,3797698,28,52,6.92520775623269,0.0337425020060388,8.69879368176121,0.520502645502645,25.9778759376342,0.0277690162086419,0.227146814404432,22.7146814404432,1,93.8988944698773,0.892918057100482,22.7146814404432,23.9952954897066,0,394.615560531616,394.170776367188,0.41497300978941
+5230,308474,3797698,308574,3797598,29,52,0,NA,NA,NA,NA,0.0187684272318955,0.178947368421053,17.8947368421053,2,90.4055176771184,0.754363283775049,15.7894736842105,83.2072144676657,59.2386741638184,395.184211730957,394.864562988281,0.405605594219879
+5231,308474,3797598,308574,3797498,30,52,0,NA,NA,NA,NA,0.0208040127013758,0.124653739612188,12.4653739612188,4,76.9317195601029,0.759493670886076,6.37119113573407,57.0994103325738,36.369026184082,395.754629135132,395.445648193359,0.383646381077479
+5232,308474,3797498,308574,3797398,31,52,7.20221606648199,0.0701844041725607,11.6226921692893,0.698717948717949,NA,0.002215054592588,0.0332409972299169,3.32409972299169,5,44.9312753019314,0.513231080397775,1.93905817174515,18.6970467567444,0,396.382359822591,396.099456787109,0.381284822742338
+5233,308474,3797398,308574,3797298,32,52,0,NA,NA,NA,NA,0.0326460319742676,0.318559556786704,31.8559556786704,1,95.7124492463522,0.880061757348343,31.8559556786704,40.6122896774955,15.5867252349854,396.859991073608,396.644897460938,0.266393720461983
+5234,308474,3797298,308574,3797198,33,52,0.526315789473684,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0299530147630896,0.218421052631579,21.8421052631579,3,88.0924696349559,0.860738908357956,17.6315789473684,66.2661692090781,5.19557523727417,397.24614461263,397.084381103516,0.229024398503395
+5235,308474,3797198,308574,3797098,34,52,0,NA,NA,NA,NA,0.00636688511900713,0,0,0,NA,NA,0,NA,NA,397.688890457153,397.419677734375,0.374205817614919
+5236,308474,3797098,308574,3796998,35,52,6.92520775623269,0.0337425020060388,9.22402882422503,0.523897058823529,16.4298514359663,0.0127221045152905,0.0664819944598338,6.64819944598338,2,76.9923981871606,0.830860534124629,5.26315789473684,46.7354026635488,18.7329120635986,398.560997009277,398.113220214844,0.603417351045899
+5237,308474,3796998,308574,3796898,36,52,3.04709141274238,0.00593868035306282,1.93394440234612,0.172222222222222,34.6769428661607,0.0199100125868719,0.138504155124654,13.8504155124654,9,67.8337263621892,0.563003593720446,6.37119113573407,23.2936450958252,0,399.439973831177,398.88916015625,0.576094538516135
+5238,308474,3796898,308574,3796798,37,52,20,0.0410308824393431,7.45630268978974,0.451338383838384,26.0580573931566,0.0388599748492676,0.313157894736842,31.3157894736842,5,89.6099514787429,0.797786292039166,17.8947368421053,16.1430085927498,0,400.718823750814,399.820159912109,1.34045326543325
+5239,308474,3796798,308574,3796698,38,52,19.3905817174515,0.188958011233817,22.0033583475637,0.766666666666667,NA,0.0380126814204113,0.321329639889197,32.1329639889197,4,89.1863453986246,0.782487852283771,20.4986149584488,26.5062837600708,0,401.968437194824,401.161376953125,0.901630569596161
+5240,308474,3796698,308574,3796598,39,52,0,NA,NA,NA,NA,0.0545856792813843,0.43213296398892,43.213296398892,3,94.2339951615677,0.79751848389564,37.9501385041551,95.8233307080391,67.7420120239258,401.07861328125,400.536529541016,0.687160853884845
+5241,308474,3796598,308574,3796498,40,52,4.43213296398892,0.0431904025677296,8.05520163868309,0.666666666666667,NA,0.0278355728872275,0.102493074792244,10.2493074792244,2,81.6465984564647,0.853875733657154,6.92520775623269,24.2616104821901,0,400.128616333008,399.777648925781,0.569789428079941
+5242,308474,3796498,308574,3796398,41,52,44.0443213296399,0.143068208505604,18.1252812126908,0.735133684409047,11.8258688283071,0.0393806279905707,0.321329639889197,32.1329639889197,5,85.7549762762342,0.698289601554908,10.803324099723,6.62211049014124,0,399.51748085022,399.37939453125,0.191953465888774
+5243,308474,3796398,308574,3796298,42,52,73.6842105263158,0.755832044935269,38.4330174930682,0.84047619047619,NA,0.0404151996966328,0.318421052631579,31.8421052631579,4,88.3007868321831,0.73990873990874,21.0526315789474,3.16826366393034,0,399.378616333008,399.329528808594,0.093206180587238
+5244,308474,3796298,308574,3796198,43,52,36.5650969529086,0.178160410591885,19.6986614251904,0.605371900826446,15.5867256623399,0.0316874890911833,0.188365650969529,18.8365650969529,3,84.3356242840779,0.772220150858978,9.97229916897507,15.5386192377876,0,398.997745513916,398.202545166016,0.609150840659414
+5245,308474,3796198,308574,3796098,44,52,32.1329639889197,0.104376806205347,12.3793050943292,0.463322545846818,20.7823008831198,0.0420215146243355,0.318559556786704,31.8559556786704,5,87.8930477156014,0.767178705440901,19.3905817174515,8.51773817642875,0,398.173980712891,397.773193359375,0.800776618602038
+5246,308474,3796098,308574,3795998,45,52,12.7423822714681,0.0248344814764445,6.45530954869222,0.373611111111111,28.5823256437233,0.0171940032718606,0.07202216066482,7.20221606648199,1,84.8544079576361,0.947433563887878,7.20221606648199,26.1853580108056,14.6953058242798,398.116264343262,397.623168945312,0.725338715879666
+5247,308474,3795998,308574,3795898,46,52,10.7894736842105,0.0276688516449518,7.40324039356171,0.314630681818182,15.5625785570777,0.0268137432846503,0.207894736842105,20.7894736842105,6,84.1037775430224,0.819648789748457,16.3157894736842,22.4879681369926,0,397.806536356608,397.548889160156,0.457257293897797
+5248,308474,3795898,308574,3795798,47,52,0,NA,NA,NA,NA,0.0191859301610148,0.0858725761772853,8.58725761772853,3,74.9008824729678,0.737454545454545,4.43213296398892,49.5965151632986,31.6034507751465,397.781007766724,397.541687011719,0.317502158460132
+5249,308474,3795798,308574,3795698,48,52,18.2825484764543,0.0356320821183769,9.88426816273891,0.365873015873016,14.8599301393339,0.0176641508759155,0.0498614958448753,4.98614958448753,4,56.6574422123376,0.493251268761473,1.66204986149584,10.7516298029158,0,398.071403503418,397.662994384766,0.441840750398502
+5250,308474,3795698,308574,3795598,49,52,36.01108033241,0.0877305052157008,12.3807559800447,0.554339477726575,15.5867255064659,0.024780172533759,0.0581717451523546,5.81717451523546,5,57.806215913227,0.635018382352941,2.49307479224377,10.6834669340224,5.19557523727417,398.882549285889,398.3662109375,0.540872855042865
+5251,308474,3795598,308574,3795498,50,52,20.5263157894737,0.0350922020862803,7.05408591287134,0.419967144563919,19.3037517501693,0.0156980134051082,0.068421052631579,6.8421052631579,4,65.7206435985732,0.71200220476781,2.89473684210526,14.5852557145632,0,399.436485290527,399.028442382812,0.425585839005436
+5252,308474,3795498,308574,3795398,51,52,12.7423822714681,0.0413908024607409,8.60739773652484,0.613692480359147,38.5034634607277,0.016310566183058,0.0304709141274238,3.04709141274238,3,53.557295055248,0.656190476190476,1.93905817174515,18.6464509530501,0,399.136377334595,398.705200195312,0.539358254509345
+5253,308474,3795398,308574,3795298,52,52,16.6204986149584,0.161964009628986,25.4386817916314,0.691666666666667,NA,0.0157959233619196,0.110803324099723,11.0803324099723,3,81.9130484552657,0.81536244013577,9.41828254847645,22.1736036658287,5.19557523727417,398.426801045736,398.235015869141,0.312846865217812
+5254,308474,3795298,308574,3795198,53,52,0,NA,NA,NA,NA,0.0100189995541655,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,62.3469009399414,62.3469009399414,398.070556640625,397.946655273438,0.153621631716111
+5255,308474,3795198,308574,3795098,54,52,21.0526315789474,0.215952012838648,34.6673457764378,0.708333333333333,NA,0.0324637779867484,0.223684210526316,22.3684210526316,2,93.0938128638563,0.9317544056572,22.1052631578947,27.8814485998715,0,397.854024887085,397.800079345703,0.0698413205953334
+5256,308474,3795098,308574,3794998,55,52,14.6814404432133,0.0357670521264011,9.47077274825935,0.445504385964912,18.1845130908769,0.016531377667483,0.0304709141274238,3.04709141274238,4,45.2211802077849,0.449904761904762,1.10803324099723,12.6903148997914,5.19557523727417,397.771054585775,397.744262695312,0.032592244291911
+5257,308474,3794998,308574,3794898,56,52,22.7146814404432,0.0553377032899036,9.98280413966985,0.638115662931839,22.5027574444583,0.0210867640994479,0.0443213296398892,4.43213296398892,3,65.9442060956153,0.607608695652174,3.32409972299169,7.63263949751854,0,397.735874176025,397.687042236328,0.052172112848775
+5258,308474,3794898,308574,3794798,57,52,40.1662049861496,0.195706511635025,21.0146658014724,0.692751377410468,36.3690265454597,0.0156514580309787,0.038781163434903,3.8781163434903,5,50.1005562779941,0.375792507204611,1.93905817174515,6.68002527100699,0,397.708414713542,397.639282226562,0.13369878211659
+5259,308474,3794798,308574,3794698,58,52,58.1578947368421,0.298283717733383,28.1069577362428,0.798395445134576,31.1734513246797,0.0327505343104253,0.260526315789474,26.0526315789474,4,90.3644149244663,0.810068375384861,21.5789473684211,6.23394731560139,0,397.623992919922,397.436279296875,0.25780394592914
+5260,308474,3794698,308574,3794598,59,52,53.4626038781163,0.260492115486619,28.0153927605506,0.760298417612659,31.1734513246797,0.0516667844303735,0.501385041551247,50.1385041551247,5,92.7849333009728,0.814411276948591,39.612188365651,5.62324756811996,0,397.627779642741,397.420471191406,0.374943191437277
+5261,308474,3794598,308574,3794498,60,52,53.7396121883656,0.261841815566861,26.4686568558261,0.77425799086758,31.1734513246797,0.0538556624262451,0.451523545706371,45.1523545706371,3,92.8546272338663,0.799444444444445,35.180055401662,8.20886212623924,0,397.747890472412,397.465728759766,0.558497419322168
+5262,308474,3794498,308574,3794398,61,52,60.6648199445983,0.2955843175729,26.893626349787,0.762464387464387,31.1734513246797,0.0536546258004879,0.445983379501385,44.5983379501385,5,94.1221893182907,0.884138513513513,42.1052631578947,7.63646069224577,0,397.899747212728,397.402618408203,0.817321793853821
+5263,308474,3794398,308574,3794298,62,52,57.8947368421053,0.296934017653141,23.7501683267164,0.805161943319838,31.1734513246797,0.0617524666771428,0.502631578947368,50.2631578947368,3,94.5616513809463,0.795534032822169,42.8947368421053,7.09164110902716,0,398.033222198486,397.522583007812,0.560307451609019
+5264,308474,3794298,308574,3794198,63,52,42.6592797783933,0.138569208238133,16.0995573882796,0.63363230001161,17.3185840692665,0.0546127879781548,0.42382271468144,42.382271468144,4,92.9424547325121,0.888824254037777,37.6731301939058,8.5566937097537,0,398.249827067057,397.915252685547,0.583764460447365
+5265,308474,3794198,308574,3794098,64,52,16.0664819944598,0.031313041861604,8.13021455666798,0.416857142857143,15.7553507492099,0.0459246417736127,0.271468144044321,27.1468144044321,3,90.6339295060678,0.91421102661597,24.6537396121884,8.02118041077439,0,398.277044296265,397.958190917969,0.529038775537087
+5266,308474,3794098,308574,3793998,65,52,39.8891966759003,0.129571207703189,15.2064335906425,0.463537180591444,29.4415927445598,0.0699291375742701,0.493074792243767,49.3074792243767,4,92.2223335193896,0.826116564519076,39.3351800554017,10.026553263825,0,398.30406443278,398.005126953125,0.576331826688764
+5267,308474,3793998,308574,3793898,66,52,46.5789473684211,0.238896914202755,27.6596475977805,0.562430601821008,31.1734513246797,0.0525649132186357,0.397368421052632,39.7368421052632,3,92.297474960184,0.856226254473224,31.3157894736842,9.0706842087752,0,398.438943862915,398.092651367188,0.6255608111584
+5268,308474,3793898,308574,3793798,67,52,36.01108033241,0.175461010431402,17.2293509596775,0.498677248677249,37.4658256128201,0.038922655832076,0.354570637119114,35.4570637119114,2,92.1816974283922,0.853708854464072,29.9168975069252,12.3673321530223,0,398.687652587891,398.254974365234,0.905611557766321
+5269,308474,3793798,308574,3793698,68,52,39.8891966759003,0.388713623109567,29.4897360396243,0.773148148148148,NA,0.0299655140282329,0.307479224376731,30.7479224376731,2,91.3719227743811,0.8556,23.8227146814404,15.0023430746955,5.19557523727417,398.930665969849,398.334167480469,1.33098755955851
+5270,308474,3793698,308574,3793598,69,52,41.5512465373961,0.404910024072465,28.4324292362743,0.801111111111111,NA,0.028027346285377,0.274238227146814,27.4238227146814,5,87.1610068144265,0.814220773651257,21.0526315789474,12.1591827122852,5.19557523727417,399.093210220337,398.330688476562,1.80180482234662
+5271,308474,3793598,308574,3793498,70,52,44.4736842105263,0.456198627121644,31.178293216813,0.825443786982249,NA,0.028345629560078,0.218421052631579,21.8421052631579,4,87.1869126702363,0.791108362536934,17.1052631578947,9.76709795572672,5.19557523727417,399.489168802897,398.467987060547,2.00199170912754
+5272,308474,3793498,308574,3793398,71,52,42.382271468144,0.413008224553915,27.7736345097345,0.828976034858388,NA,0.0451242753143785,0.415512465373961,41.5512465373961,2,93.657393233408,0.757363205514864,25.207756232687,7.77764429410299,0,399.573287963867,398.679077148438,2.02081020790292
+5273,308474,3793398,308574,3793298,72,52,36.2880886426593,0.0884053552558216,12.1265508991411,0.372194854953476,12.5432280736387,0.0569622938657122,0.529085872576177,52.9085872576177,2,95.0307458560766,0.784047856430708,34.3490304709141,7.69802849704682,0,399.504773457845,398.563903808594,1.73695735117397
+5274,308474,3793298,308574,3793198,73,52,51.8005540166205,0.168262610003447,18.9567112438718,0.498692704388907,17.3185840692665,0.0595751481783419,0.506925207756233,50.6925207756233,3,92.7210448666022,0.759989362409414,27.9778393351801,5.15862508158866,0,399.701976776123,398.567169189453,1.87395090267599
+5275,308474,3793198,308574,3793098,74,52,28.9473684210526,0.0989780058843804,11.1399994336909,0.480149447693307,25.9778761038998,0.0435999615524787,0.413157894736842,41.3157894736842,4,91.8236916943033,0.798829098156452,33.9473684210526,6.34844675489292,0,401.295392354329,398.920349121094,2.39334842681426
+5276,308474,3793098,308574,3792998,75,52,0,NA,NA,NA,NA,0.0153614845609036,0.0332409972299169,3.32409972299169,2,69.8975569145289,0.634923310298331,3.04709141274238,35.3824995358785,26.4923400878906,403.306253433228,400.152740478516,2.28231024274326
+5277,308474,3792998,308574,3792898,76,52,13.0193905817175,0.0634359037713529,11.8123953587574,0.62281746031746,11.6176593526411,0.0282499198849583,0.166204986149584,16.6204986149584,6,76.6245092296019,0.700166112956811,9.14127423822715,10.6709147612254,0,403.799077351888,401.749114990234,2.23209003771205
+5278,308474,3792898,308574,3792798,77,52,24.6537396121884,0.240246614282996,28.4846376773896,0.741573033707865,NA,0.0443036711371596,0.43213296398892,43.213296398892,4,90.5652122172427,0.742296252230815,26.5927977839335,10.7880042638534,0,403.076543807983,401.374084472656,2.79525023641425
+5279,308474,3792798,308574,3792698,78,52,43.6842105263158,0.224050213320097,21.9519146366322,0.73937908496732,20.7823008831198,0.0557004265995745,0.576315789473684,57.6315789473684,3,92.9766001056235,0.728108634758251,36.0526315789474,6.25122246023727,0,403.035451253255,401.116394042969,3.22966154468981
+5280,308474,3792698,308574,3792598,79,52,37.9501385041551,0.123272607328728,17.2942138281719,0.750923984781427,15.5867255930625,0.0415764977323737,0.434903047091413,43.4903047091413,5,88.0272348295635,0.662054057734205,13.8504155124654,5.77522800530598,0,403.382566452026,401.102508544922,3.35739741220867
+5281,308474,3792598,308574,3792498,80,52,44.5983379501385,0.21730171291889,26.0081991813542,0.752363377363377,20.7823008831198,0.0467540375600574,0.476454293628809,47.6454293628809,4,92.041584337904,0.765009263431976,34.0720221606648,5.54102434391199,0,403.462018330892,401.281372070312,3.08973635004711
+5282,308474,3792498,308574,3792398,81,52,51.2465373961219,0.249694514844687,25.7260348070343,0.739927905004241,20.7823008831198,0.0493970433914943,0.457063711911357,45.7063711911357,3,93.6265450199936,0.824298469387755,34.0720221606648,3.73678976694743,0,403.754384994507,401.780395507812,2.65579347930003
+5283,308474,3792398,308574,3792298,82,52,41.5789473684211,0.14216840845211,15.2634790360147,0.496752274904215,14.6725398628007,0.0520478719584629,0.502631578947368,50.2631578947368,2,94.6515842908731,0.863689355214779,35,5.75511583358205,0,403.783681233724,402.523529052734,1.9243168523729
+5284,308474,3792298,308574,3792198,83,52,25.4847645429363,0.124172407382223,15.2255003119701,0.622266845158411,29.390611619267,0.0380048507577158,0.332409972299169,33.2409972299169,3,93.7602182216531,0.903802961665842,31.8559556786704,5.67531046867371,0,404.165510177612,402.723968505859,1.65754539591847
+5285,308474,3792198,308574,3792098,84,52,31.8559556786704,0.155215509227778,20.4835164453365,0.766540404040404,25.9778758441098,0.0301742940840255,0.254847645429363,25.4847645429363,2,90.787513946347,0.844523528878411,19.9445983379501,0.960051946018053,0,404.987031936646,403.742126464844,0.976270912669348
+5286,308474,3792098,308574,3791998,85,52,3.8781163434903,0.0377916022467634,9.60582894476177,0.595238095238095,NA,0.0214049024199939,0.110803324099723,11.0803324099723,3,77.9249332475472,0.76500674199098,6.92520775623269,23.3403133392334,0,406.189875284831,405.470092773438,0.86700488828205
+5287,308474,3791998,308574,3791898,86,52,32.8947368421053,0.0674850040120775,10.7892543304406,0.450943486590038,14.5476105766175,0.057854406589008,0.573684210526316,57.3684210526316,3,96.1621577471619,0.722678343367999,43.6842105263158,5.53558038134094,0,407.407794952393,406.946319580078,0.481411489945954
+5288,308474,3791898,308574,3791798,87,52,58.1717451523546,0.283437016850726,18.0923082168207,0.504407051282051,31.6034499687999,0.0727316281110709,0.795013850415512,79.5013850415512,2,98.2059827656733,0.765115115115115,73.9612188365651,2.64742137829186,0,407.693354288737,407.34521484375,0.366386934203708
+5289,308474,3791798,308574,3791698,88,52,65.6509695290859,0.639757838034495,32.4039033935264,0.89451476793249,NA,0.0681453076851686,0.739612188365651,73.9612188365651,4,98.2855076305203,0.777699919310316,72.8531855955679,2.24377115121048,0,407.400918960571,406.95263671875,0.471050328991188
+5290,308474,3791698,308574,3791598,89,52,46.5373961218837,0.453499226961161,33.6341641246636,0.811507936507936,NA,0.0722812858392121,0.714681440443213,71.4681440443213,3,98.3158165069635,0.854871454702607,70.6371191135734,4.05026134409646,0,406.668401082357,406.435119628906,0.403687698175726
+5291,308474,3791598,308574,3791498,90,52,15.5263157894737,0.159264609468503,20.1477629159612,0.748587570621469,NA,0.0581120554296113,0.547368421052632,54.7368421052632,3,94.4141088115353,0.80019229613605,39.7368421052632,26.0669486706073,0,406.256357192993,406.177703857422,0.121701944426782
+5292,308474,3791498,308574,3791398,91,52,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0265152591895044,0.0775623268698061,7.75623268698061,6,60.0025615205812,0.494094094094094,2.21606648199446,54.5458910976137,5.19557523727417,406.165166219076,406.140014648438,0.0457440559848293
+5293,308474,3791398,308574,3791298,92,52,1.10803324099723,0.0053988003209662,2.59778761038998,0.166666666666667,67.5424778701394,0.0291124042115494,0.0886426592797784,8.86426592797784,7,61.9338086892518,0.599076455459434,3.04709141274238,60.0485129356384,18.7329120635986,406.145757675171,406.100311279297,0.0463862378444476
+5294,308474,3791298,308574,3791198,93,52,14.9584487534626,0.145767608666088,18.2654850920214,0.765432098765432,NA,0.0275546876108822,0.138504155124654,13.8504155124654,5,78.0482597400558,0.740533383771515,7.75623268698061,10.8731214237213,0,406.108250935872,406.077819824219,0.0457900276822633
+5295,308474,3791198,308574,3791098,94,52,6.05263157894737,0.0155215509227778,5.23121016478867,0.337436868686869,23.8627974456754,0.0272822010333154,0.205263157894737,20.5263157894737,4,85.3653900741796,0.835876763604952,12.6315789473684,20.7943373643435,0,406.156524658203,406.112396240234,0.0943645326670685
+5296,308474,3791098,308574,3790998,95,52,28.808864265928,0.140368808345121,15.7661851763635,0.625757575757576,36.3690261817537,0.051018966375626,0.445983379501385,44.5983379501385,5,92.7689966857122,0.83535472972973,38.781163434903,10.5472395967993,0,406.44221496582,406.222930908203,0.241898611367949
+5297,308474,3790998,308574,3790898,96,52,21.606648199446,0.0701844041725607,12.2241369625336,0.6451536643026,12.1230087792092,0.0184848655055621,0.0443213296398892,4.43213296398892,4,65.3969942096935,0.651207729468599,3.601108033241,15.003681987524,0,406.83670425415,406.466522216797,0.387344239588773
+5298,308474,3790898,308574,3790798,97,52,34.9030470914127,0.0850311050552177,13.3565460875147,0.441972396925227,12.9889379740129,0.0425795311051153,0.382271468144044,38.2271468144044,3,94.7177104599725,0.710922485586163,35.4570637119114,5.70521715758503,0,407.480860392253,407.247985839844,0.478759354677514
+5299,308474,3790798,308574,3790698,98,52,22.3684210526316,0.229449013641064,26.4517039337197,0.811764705882353,NA,0.0374055228804201,0.352631578947368,35.2631578947368,3,93.5389270424978,0.816406770625083,30,8.61262662731,0,408.245450973511,407.668212890625,0.611779856243719
+5300,308474,3790698,308574,3790598,99,52,19.3905817174515,0.0629860037446057,10.2596483827825,0.517410572966128,26.8183145368847,0.0310257822136025,0.210526315789474,21.0526315789474,3,91.5185090815661,0.760629921259843,20.1754385964912,8.34608856174681,0,408.581893920898,408.228759765625,0.41210217239808
+5301,308574,3800598,308674,3800498,0,53,26.3157894736842,0.134970008024107,20.7190867553874,0.488715277777778,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,382.847363789876,382.558319091797,0.322018751117504
+5302,308574,3800498,308674,3800398,1,53,29.75,0.160614309548688,19.4901242883181,0.702804252199413,18.7329127343552,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.37215508355,383.17822265625,0.328747266821912
+5303,308574,3800398,308674,3800298,2,53,27.3684210526316,0.140368808345072,15.6673396508993,0.737091222030981,36.7382645240773,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.001032511393,383.643920898438,0.40707901106905
+5304,308574,3800298,308674,3800198,3,53,32.3684210526316,0.110675406579768,16.1509303486672,0.627339598071305,10.7999866527397,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.674096001519,384.276397705078,0.669685712212609
+5305,308574,3800198,308674,3800098,4,53,24.7368421052632,0.126871807542661,25.511441608261,0.601037851037851,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.41042582194,385.234527587891,1.13508869236535
+5306,308574,3800098,308674,3799998,5,53,42.75,0.0659424896346353,11.5263779666059,0.45285722476125,10.9167970681287,0.0157546019399888,0.0625,6.25,2,62.5159097489091,0.835897435897436,5,4.37166795730591,0,387.722510443793,387.426696777344,0.550263548821443
+5307,308574,3799998,308674,3799898,6,53,50,0.256443015245804,27.6300238765709,0.742340865628537,20.7823008831125,0.028928682221067,0.223684210526316,22.3684210526316,5,85.4546974457317,0.761140419800202,13.9473684210526,6.10830051197725,0,388.584019978841,388.244812011719,0.436636678152318
+5308,308574,3799898,308674,3799798,7,53,19.7368421052632,0.0674850040120537,13.5594589923504,0.581196581196581,22.5141592900385,0.0223740003882995,0.171052631578947,17.1052631578947,3,86.2352861891085,0.850540806293019,13.1578947368421,36.6834009023813,5.19557523727417,389.180263943142,388.961151123047,0.390879245926703
+5309,308574,3799798,308674,3799698,8,53,12.6315789473684,0.129571207703143,25.7006350140405,0.659722222222222,NA,0.0200185346014989,0.136842105263158,13.6842105263158,6,78.19630159666,0.739654699917786,10,36.6102427152487,0,390.085161844889,389.423156738281,0.644439314692404
+5310,308574,3799698,308674,3799598,9,53,7.5,0.0404910024072322,10.1460545491562,0.577777777777778,26.4923391803507,0.0212250997834417,0.18,18,3,89.2522509348098,0.846360668331093,16.5,59.6835644774967,16.4298515319824,390.585215250651,390.318542480469,0.475115368050611
+5311,308574,3799598,308674,3799498,10,53,27.8947368421053,0.0476894028351846,9.9594226488262,0.415807514245014,13.9335218410601,0.0178958680005867,0.0421052631578947,4.21052631578947,5,48.4869017498834,0.478021978021978,1.31578947368421,10.715873837471,0,389.92778523763,389.793487548828,0.247338244360679
+5312,308574,3799498,308674,3799398,11,53,11.5789473684211,0.0197956011768691,6.53078266381423,0.295088566827697,16.6570730176443,0.0292313411834153,0.178947368421053,17.8947368421053,4,86.3434548902384,0.866946778711485,15.2631578947368,30.3878000133178,5.19557523727417,389.88250986735,389.779998779297,0.136820179942604
+5313,308574,3799398,308674,3799298,12,53,37.6315789473684,0.0772028445897894,9.8183502203515,0.515432098765432,20.4394438183727,0.0318506166388033,0.223684210526316,22.3684210526316,6,84.2732971747454,0.803793916264452,11.8421052631579,11.5790902642643,0,390.319769965278,390.093353271484,0.386333091207594
+5314,308574,3799298,308674,3799198,13,53,33,0.178160410591822,16.8696648815077,0.664650537634409,44.3910140906781,0.0176076362265587,0.1125,11.25,5,71.2595752288814,0.673832468495182,4.75,17.1781249788072,0,390.897229512533,390.674591064453,0.246413343385972
+5315,308574,3799198,308674,3799098,14,53,14.4736842105263,0.0494890029421727,9.4284847570621,0.398148148148148,39.8327431168368,-0.0021137483332974,0.147368421052632,14.7368421052632,3,84.091888174566,0.879088710703831,8.94736842105263,26.9201272640909,0,391.202846950955,391.117767333984,0.140683826268737
+5316,308574,3799098,308674,3798998,15,53,30.5263157894737,0.0626260837231858,12.2232865193491,0.549533396069996,12.9599840248526,0.0124164286717802,0.05,5,3,67.9771658891886,0.70961887477314,3.15789473684211,1.36725664138794,0,391.471346537272,391.337982177734,0.179723957707564
+5317,308574,3798998,308674,3798898,16,53,24.7368421052632,0.0507487230170644,8.31376230171386,0.555091533180778,11.4302654129732,0.0137670889639821,0.0631578947368421,6.31578947368421,4,65.5778413579822,0.662921348314607,3.15789473684211,12.0755565961202,5.19557523727417,391.740668402778,391.692840576172,0.093156981786185
+5318,308574,3798898,308674,3798798,17,53,8.75,0.0236197514042188,6.45144234351102,0.405769230769231,33.9008051251469,0.00815684247082572,0.0825,8.25,5,70.4157429621064,0.737612271672217,4.75,17.9102003213131,0,391.843823750814,391.751678466797,0.110704199043498
+5319,308574,3798798,308674,3798698,18,53,50,0.128221507622902,10.7418191452098,0.38072625698324,21.6363226478152,0.0403446535534673,0.328947368421053,32.8947368421053,6,89.7437316666759,0.71771616135441,21.5789473684211,3.49388866424561,0,392.062221950955,391.787750244141,0.329805093951407
+5320,308574,3798698,308674,3798598,19,53,14.7368421052632,0.0755832044935001,15.8776317182269,0.487908496732026,25.9778758441098,0.0245687210233116,0.128947368421053,12.8947368421053,3,79.9797105854339,0.740325133074378,6.84210526315789,12.7019227767477,0,392.622245788574,392.297027587891,0.357885085451013
+5321,308574,3798598,308674,3798498,20,53,2.36842105263158,0.0121473007221697,5.62853982250963,0.25,25.9778758441098,0.00439095477567877,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,32.0369064331055,15.5867252349854,393.122158474392,392.987976074219,0.234637219763596
+5322,308574,3798498,308674,3798398,21,53,9,0.0485892028886786,8.87910474223765,0.64969696969697,18.7329127343552,0.0239199849549186,0.0925,9.25,2,85.6001008169973,0.801291604570293,8.75,9.63030735222069,0,393.32704671224,393.277038574219,0.122998571662002
+5323,308574,3798398,308674,3798298,22,53,1.31578947368421,0.00674850040120537,2.99794777966035,0.222222222222222,110.459443730189,0.024442239439936,0.171052631578947,17.1052631578947,6,86.1495356701183,0.765135552746172,15,50.2376393831693,5.19557523727417,393.075432671441,392.944732666016,0.257852780083218
+5324,308574,3798298,308674,3798198,23,53,0,NA,NA,NA,NA,0.0260671424601553,0.2,20,3,87.8242217175971,0.794776119402985,13.6842105263158,56.5220046043396,18.7329120635986,392.471280415853,392.173156738281,0.378935355543535
+5325,308574,3798198,308674,3798098,24,53,11.5789473684211,0.118773607061214,17.9036009786161,0.723484848484849,NA,0.0252946052926793,0.234210526315789,23.4210526315789,5,82.8192647927624,0.737189046661912,10.2631578947368,29.9200313385953,0,391.958669026693,391.745574951172,0.366261927673937
+5326,308574,3798098,308674,3797998,25,53,28.75,0.310431018455447,31.3021920902429,0.727536231884058,NA,0.00583290817565285,0.0175,1.75,3,40.4564802599773,0.491094147582697,1,19.4531259536743,11.6176595687866,391.853981018066,391.732757568359,0.201446629416505
+5327,308574,3797998,308674,3797898,26,53,8.94736842105263,0.0458898027281965,10.2080662638216,0.525641025641026,16.4298513045212,0.0449409055422094,0.334210526315789,33.421052631579,4,88.3100519546628,0.798436083021063,18.4210526315789,22.4846955434544,0,392.413711547852,392.056274414062,0.330551320697838
+5328,308574,3797898,308674,3797798,27,53,35.2631578947368,0.120573207168203,12.018656902852,0.640196377696378,27.7097343376294,0.0224690934564071,0.123684210526316,12.3684210526316,3,81.6905564149138,0.771771771771772,7.63157894736842,19.4320839415205,0,393.020748562283,392.747985839844,0.57721836176424
+5329,308574,3797798,308674,3797698,28,53,18.6842105263158,0.0638858037980775,12.8136866642205,0.571641124832614,19.0504423895928,0.0372043998442103,0.286842105263158,28.6842105263158,2,91.924070358304,0.843407571131549,22.8947368421053,22.4901645642902,0,394.071551005046,393.458709716797,0.620336591040796
+5330,308574,3797698,308674,3797598,29,53,0,NA,NA,NA,NA,0.0118758455978241,0.0375,3.75,3,63.7055076747118,0.716646989374262,2.75,109.671356709798,90.73681640625,395.114732530382,394.660095214844,0.679376892428811
+5331,308574,3797598,308674,3797498,30,53,2.10526315789474,0.0215952012838572,6.86130773146804,0.4375,NA,0.0141271305571488,0.0921052631578947,9.21052631578947,6,65.290981613,0.620189905047476,2.63157894736842,43.9134703772409,7.34765291213989,396.076972961426,395.639831542969,0.467971220209547
+5332,308574,3797498,308674,3797398,31,53,12.1052631578947,0.0620862036910894,18.6981531538573,0.507706093189964,11.6176593526379,0.018247923762369,0.107894736842105,10.7894736842105,1,88.9454279930292,0.675088709332649,10.7894736842105,8.48292325182659,0,396.710361056858,396.523956298828,0.352824927870652
+5333,308574,3797398,308674,3797298,32,53,6.05263157894737,0.0310431018455447,10.3764831926405,0.352777777777778,69.3176191804721,0.0151465905149388,0.110526315789474,11.0526315789474,5,75.331465739753,0.76248020668389,7.89473684210526,24.5539751506987,5.19557523727417,397.233606974284,396.967132568359,0.35444315749865
+5334,308574,3797298,308674,3797198,33,53,13.5,0.145767608666036,23.0909763394886,0.725308641975309,NA,0.0394976025913365,0.255,25.5,1,94.8405521791929,0.933986137088789,25.5,52.4205030179491,36.369026184082,397.513661702474,397.362274169922,0.26908157227321
+5335,308574,3797198,308674,3797098,34,53,40.5263157894737,0.415707624714251,26.8841433967841,0.87012987012987,NA,0.023803065229286,0.163157894736842,16.3157894736842,3,83.2680910271331,0.78977405078034,8.15789473684211,1.92739081382751,0,397.808497111003,397.513244628906,0.394699378518952
+5336,308574,3797098,308674,3796998,35,53,2.36842105263158,0.0121473007221697,3.09057439580814,0.239583333333333,41.8880661681468,0.0260015032203491,0.0947368421052632,9.47368421052632,5,68.2988542491817,0.668604651162791,3.15789473684211,25.2110690275828,0,398.679161919488,398.374603271484,0.672553840460796
+5337,308574,3796998,308674,3796898,36,53,32.6315789473684,0.0478179456999695,6.77044243472404,0.371264367816092,17.7121104435149,0.0256429258417101,0.197368421052632,19.7368421052632,5,83.2325139427449,0.716840536512668,10,4.60568715413411,0,399.990600585938,399.166473388672,1.12620367759641
+5338,308574,3796898,308674,3796798,37,53,44.75,0.483192628726304,32.256300944552,0.815642458100559,NA,0.0468584657650445,0.4175,41.75,3,94.5828630220994,0.749177860765844,37.25,4.3972393167233,0,402.389736599392,400.814544677734,1.62066303224472
+5339,308574,3796798,308674,3796698,38,53,2.63157894736842,0.0269940016048215,6.49239324651452,0.566666666666667,NA,0.0248902764867221,0.194736842105263,19.4736842105263,6,84.7094836896453,0.665661136249371,14.2105263157895,38.9460334971144,0,402.6788965861,402.072631835938,0.727940816692267
+5340,308574,3796698,308674,3796598,39,53,0,NA,NA,NA,NA,0.0269216614414434,0.163157894736842,16.3157894736842,5,78.5285157345106,0.71232238527836,5.78947368421053,79.3048837723271,51.955753326416,401.601826985677,400.872711181641,0.676868894746116
+5341,308574,3796598,308674,3796498,40,53,13.4210526315789,0.13766940818459,23.7599609816039,0.660130718954248,NA,0.0507640767421866,0.389473684210526,38.9473684210526,4,92.3410149460962,0.788459091487467,24.2105263157895,23.5361393561234,0,400.364244249132,399.83984375,0.967588616051827
+5342,308574,3796498,308674,3796398,41,53,36.5789473684211,0.0938041555767546,11.1599186100536,0.387596899224806,24.7792088096845,0.0713274195845962,0.5,50,4,92.3362696747579,0.778409090909091,30,5.44492802368967,0,399.969523111979,399.558135986328,0.820429173105187
+5343,308574,3796398,308674,3796298,42,53,51.5,0.278038216529661,21.0339135674085,0.676275510204082,47.0479341735638,0.0624403242209064,0.4725,47.25,7,87.6607511400432,0.70209884901828,22.25,9.61466465551386,0,399.780449761285,399.482208251953,0.655176224521263
+5344,308574,3796298,308674,3796198,43,53,47.1052631578947,0.161064209575435,15.8335271958393,0.479419703103914,11.6176592829313,0.0270148801665575,0.157894736842105,15.7894736842105,4,80.7921852338748,0.794471153846154,10.5263157894737,8.89613813559214,0,399.840596516927,399.452239990234,0.785132521591401
+5345,308574,3796198,308674,3796098,44,53,41.3157894736842,0.423805825195697,33.6678349086805,0.812101910828026,NA,0.03925433875564,0.357894736842105,35.7894736842105,2,92.6654652292916,0.836726599682708,20.7894736842105,15.1286356869866,0,400.279181586372,399.781677246094,1.04520975648275
+5346,308574,3796098,308674,3795998,45,53,23.1578947368421,0.0475094428244858,6.97175442594766,0.421440954164066,17.2550780273731,0.0117598093655895,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,8.93564388487074,0,399.956782023112,399.066772460938,1.15290008988458
+5347,308574,3795998,308674,3795898,46,53,22.5,0.0809820048144644,12.1197863766834,0.721212121212121,22.9405622515495,0.0175346397390967,0.01,1,1,52.6315789473684,0.747474747474748,1,7.33911573886871,5.19557523727417,398.863817003038,398.355377197266,0.901649949546886
+5348,308574,3795898,308674,3795798,47,53,3.68421052631579,0.0377916022467501,7.57758713483955,0.654761904761905,NA,0.0157916875303176,0,0,0,NA,NA,0,NA,NA,398.222831726074,398.039672851562,0.265770319735112
+5349,308574,3795798,308674,3795698,48,53,5.78947368421053,0.0148467008826518,4.96098931778292,0.258796296296296,19.6120227782792,0.0191035171833631,0.0868421052631579,8.68421052631579,4,73.2979084103375,0.695805315401857,5.78947368421053,16.9888725136266,5.19557523727417,398.149651421441,398.074371337891,0.159451564116199
+5350,308574,3795698,308674,3795598,49,53,31.3157894736842,0.160614309548688,19.3804410447342,0.722474747474747,36.3690261817537,0.0163984352112349,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,15.2851598262787,10.3911504745483,398.582951863607,398.198303222656,0.585598510512544
+5351,308574,3795598,308674,3795498,50,53,30.5,0.0470466885112603,11.3602306987801,0.496373836891078,15.5453628260511,0.00301225593168056,0,0,0,NA,NA,0,NA,NA,399.406287299262,398.765380859375,0.592311249579218
+5352,308574,3795498,308674,3795398,51,53,23.4210526315789,0.0800822047609704,13.1869491765572,0.633333333333333,21.5999733054795,-0.00314907160367703,0,0,0,NA,NA,0,NA,NA,399.025535583496,398.576721191406,0.55598924221529
+5353,308574,3795398,308674,3795298,52,53,29.2105263157895,0.299633417813518,34.2628455705506,0.798798798798799,NA,0.0299666949095378,0.271052631578947,27.1052631578947,1,95.0211914913291,0.933261781637233,27.1052631578947,22.3635082522642,0,398.320153130425,398.134033203125,0.301756766689285
+5354,308574,3795298,308674,3795198,53,53,0,NA,NA,NA,NA,0.0290503994586815,0.157894736842105,15.7894736842105,4,83.6590257026355,0.840144230769231,10.7894736842105,35.5357194423676,10.3911504745483,397.982869466146,397.884521484375,0.133353405550893
+5355,308574,3795198,308674,3795098,54,53,15,0.0809820048144644,12.3235963563644,0.699935815147625,68.3371225775169,0.0310336200260281,0.225,22.5,4,89.0303558885782,0.823682628731717,19.5,24.1685550424788,0,397.829317728678,397.801666259766,0.0459730421318832
+5356,308574,3795098,308674,3794998,55,53,30,0.102577206098322,15.9456704317257,0.437282463186078,12.4040506599364,0.0173783198169411,0.0236842105263158,2.36842105263158,3,44.9258483839375,0.573225516621743,1.05263157894737,18.6805024676853,10.3911504745483,397.794233534071,397.78271484375,0.0221481110675124
+5357,308574,3794998,308674,3794898,56,53,37.8947368421053,0.129571207703143,23.2616474653809,0.70407113462669,19.0504422856805,0.0222933280271437,0.0289473684210526,2.89473684210526,4,44.806450952841,0.519421860885276,1.31578947368421,13.8349985209378,5.19557523727417,397.861101786296,397.789489746094,0.137042417123335
+5358,308574,3794898,308674,3794798,57,53,24.2105263157895,0.248344814764358,26.4803801635515,0.735507246376812,NA,0.0234774263129351,0.0736842105263158,7.36842105263158,5,68.7697133644278,0.640151515151515,4.21052631578947,11.6233656065805,0,398.106299506293,397.88037109375,0.381157756897122
+5359,308574,3794798,308674,3794698,58,53,4,0.0107976006419286,3.21577569855465,0.333333333333333,20.7823007792002,0.0193806923197917,0.06,6,5,58.9911742446384,0.468085106382979,1.75,19.5230722228686,5.19557523727417,398.329849243164,398.030487060547,0.598931333247705
+5360,308574,3794698,308674,3794598,59,53,25.2631578947368,0.0863808051354287,11.6497418124274,0.437254901960784,16.4043981366575,0.0208447801241786,0.0868421052631579,8.68421052631579,5,71.2316617416642,0.594407087202476,3.68421052631579,9.24641454581058,0,398.777703179253,398.115600585938,1.08509184137297
+5361,308574,3794598,308674,3794498,60,53,10.7894736842105,0.110675406579768,29.6207870966236,0.589430894308943,NA,0.0262679831830993,0.160526315789474,16.0526315789474,5,77.9752942736666,0.662861536641628,9.21052631578947,19.187961257872,0,399.66512298584,398.676727294922,1.2557206063017
+5362,308574,3794498,308674,3794398,61,53,12.6315789473684,0.129571207703143,23.8050246349669,0.690972222222222,NA,0.0197981543192614,0.118421052631579,11.8421052631579,5,77.810064954748,0.597014925373134,7.63157894736842,16.1035345077515,5.19557523727417,399.891350640191,399.345794677734,1.00894417928857
+5363,308574,3794398,308674,3794298,62,53,13.5,0.0485892028886786,11.404392723093,0.61540404040404,13.8548671861334,0.0145310244535222,0.08,8,4,71.1758452966439,0.561036789297659,3.25,14.7139556258917,0,399.636189778646,399.0302734375,0.942462037647379
+5364,308574,3794298,308674,3794198,63,53,17.8947368421053,0.091779605456393,15.7033332210356,0.55859375,16.4298513045212,0.0198737628597814,0.0815789473684211,8.15789473684211,4,68.1189639405526,0.651575931232092,2.36842105263158,27.9822079135526,10.3911504745483,399.456159803602,399.185729980469,0.52609018157795
+5365,308574,3794198,308674,3794098,64,53,20.5263157894737,0.0421106425035215,9.22103782284306,0.476388888888889,20.0982099166033,0.0185912776268244,0.0263157894736842,2.63157894736842,3,49.1742985061262,0.446985446985447,1.05263157894737,12.3802383899689,5.19557523727417,399.344375610352,399.044738769531,0.571577846704339
+5366,308574,3794098,308674,3793998,65,53,20.5263157894737,0.105276606258804,18.1955366090501,0.635185185185185,11.6176593526378,0.0150241226576327,0.0421052631578947,4.21052631578947,2,71.8078657209086,0.652014652014652,3.42105263157895,26.9403375685215,5.19557523727417,399.9388800727,399.508605957031,0.976567611955778
+5367,308574,3793998,308674,3793898,66,53,23.25,0.0836814049749466,13.8567087657043,0.543712316968131,31.2114004321457,0.0137566880429949,0.055,5.5,4,63.6296938662642,0.595393713040772,2.5,11.6139094829559,5.19557523727417,400.274408976237,399.196716308594,1.29773516430643
+5368,308574,3793898,308674,3793798,67,53,9.73684210526316,0.0998778059378394,24.5158800450381,0.612612612612613,NA,0.00777325230247746,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,18.3131289482117,15.5867252349854,401.185902913411,400.085205078125,1.31188546869811
+5369,308574,3793798,308674,3793698,68,53,16.0526315789474,0.0823317048947055,15.179984421622,0.508406432748538,67.7420129474311,0.0112101899558375,0,0,0,NA,NA,0,NA,NA,402.222190856934,400.501403808594,1.53847632093516
+5370,308574,3793698,308674,3793598,69,53,20.7894736842105,0.21325261267809,24.1827093433638,0.795358649789029,NA,0.0173848150306424,0.0263157894736842,2.63157894736842,4,41.7194000360487,0.446985446985447,1.05263157894737,36.3384489536285,7.34765291213989,403.09114074707,402.508148193359,1.09135517183084
+5371,308574,3793598,308674,3793498,70,53,14.5,0.0521884031026548,11.5633986048968,0.425170068027211,31.1734513246687,0.0197326727754717,0.0375,3.75,4,54.7821620301482,0.574970484061393,1.75,31.5334022521973,10.3911504745483,403.485354953342,403.1484375,1.08488990132027
+5372,308574,3793498,308674,3793398,71,53,35,0.0897550553360314,12.2456662374283,0.440760815760816,22.3963590422282,0.034882506721375,0.271052631578947,27.1052631578947,3,88.6996244137465,0.844277490486877,13.1578947368421,10.4370752445702,0,403.713628133138,402.907135009766,1.4653716473285
+5373,308574,3793398,308674,3793298,72,53,30.7894736842105,0.0789574546941028,9.0007632256065,0.428349673202614,12.9889379740111,0.0232113141604044,0.110526315789474,11.0526315789474,2,86.1024033942064,0.841653471122593,10.2631578947368,3.96651181720552,0,403.231699625651,402.387542724609,1.44080500130328
+5374,308574,3793298,308674,3793198,73,53,17.3684210526316,0.0890802052959109,15.6219523974822,0.565173527037934,10.3911504415562,0.0255547905184741,0.186842105263158,18.6842105263158,3,89.916194762082,0.832750809061489,17.3684210526316,7.43111018731561,0,403.166898091634,402.704772949219,1.10716555817327
+5375,308574,3793198,308674,3793098,74,53,28.75,0.155215509227723,21.0494157280767,0.572375127420999,18.7329127343552,0.023386719839732,0.1025,10.25,5,74.3819975618984,0.612450042388277,5,4.25063997361718,0,404.064185248481,403.495513916016,1.18214748085341
+5376,308574,3793098,308674,3792998,75,53,33.6842105263158,0.0863808051354287,12.958677861364,0.684261009876626,15.9275625039878,0.0339765941827385,0.268421052631579,26.8421052631579,4,86.0999632040002,0.768447537052325,16.0526315789474,5.5073574851541,0,405.255241394043,404.680847167969,1.22056411863869
+5377,308574,3792998,308674,3792898,76,53,0,NA,NA,NA,NA,0.0370502145483873,0.276315789473684,27.6315789473684,4,89.3225848758157,0.802597402597403,21.0526315789474,51.0922893160865,5.19557523727417,406.972896999783,406.126892089844,1.71047526128603
+5378,308574,3792898,308674,3792798,77,53,0,NA,NA,NA,NA,0.0339551995525414,0.247368421052632,24.7368421052632,1,94.5353485957133,0.928821178821179,24.7368421052632,51.2020004353625,36.369026184082,408.418062845866,407.094177246094,1.66084276998945
+5379,308574,3792798,308674,3792698,78,53,0.5,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0357850926865285,0.2275,22.75,2,92.3292298087621,0.9121019617244,21.5,26.2493683060447,0,408.812900119358,408.368957519531,1.22510907175969
+5380,308574,3792698,308674,3792598,79,53,24.7368421052632,0.0845812050284406,12.8204596149893,0.553966335392605,12.9406813574429,0.0315191619579357,0.228947368421053,22.8947368421053,3,91.3830877198026,0.790818011670153,21.0526315789474,9.78188594182332,0,408.83051554362,408.150390625,1.09481839425743
+5381,308574,3792598,308674,3792498,80,53,10.5263157894737,0.0539880032096429,9.71913356041247,0.598484848484848,58.0882964146568,0.0362310326886425,0.297368421052632,29.7368421052632,6,82.791989724382,0.623265036351619,9.73684210526316,18.6259489186042,0,408.336446126302,407.898468017578,0.925226346667155
+5382,308574,3792498,308674,3792398,81,53,14.7368421052632,0.151166408987,20.8004938353388,0.651785714285714,NA,0.0538094884863025,0.605263157894737,60.5263157894737,5,94.5142913832499,0.722455322455323,48.9473684210526,15.6415844585585,0,408.027684529622,407.568389892578,0.924118077870121
+5383,308574,3792398,308674,3792298,82,53,39.25,0.211902912597849,15.6198161543122,0.414529914529915,22.0429587144464,0.0563787999036867,0.425,42.5,3,95.5118696201112,0.938880400055563,41.25,1.94202055931091,0,407.475189208984,407.029022216797,1.15739702707375
+5384,308574,3792298,308674,3792198,83,53,40.5263157894737,0.0831415249428501,11.8118307599752,0.425465057817999,18.0976513161401,0.0594075947215683,0.421052631578947,42.1052631578947,3,92.5635104472664,0.853123067408782,35.2631578947368,1.26085008978844,0,406.801040649414,406.261749267578,0.833967270102534
+5385,308574,3792198,308674,3792098,84,53,50,0.256443015245804,27.2954026582961,0.771484375,25.9778758441098,0.0650031293656579,0.671052631578947,67.1052631578947,1,98.8064194597879,0.758326359832636,67.1052631578947,1.62648862389957,0,405.766682942708,405.400054931641,0.477804578791258
+5386,308574,3792098,308674,3791998,85,53,3.15789473684211,0.0107976006419286,3.91235788102036,0.206018518518519,49.0654034724892,0.0276734092208483,0.178947368421053,17.8947368421053,3,86.454128192692,0.754363283775049,11.8421052631579,23.8583346114439,0,405.904968261719,405.605041503906,0.734591543906456
+5387,308574,3791998,308674,3791898,86,53,58.25,0.62896023739234,34.62578788333,0.881258941344778,NA,0.0886947481473908,0.83,83,1,99.48609157949,0.756074678675298,83,5.22725106147398,0,407.474611918132,406.792694091797,0.793554041525578
+5388,308574,3791898,308674,3791798,87,53,74.7368421052632,0.76662964557693,36.1262884117433,0.887323943661972,NA,0.0716337599675171,0.776315789473684,77.6315789473684,2,98.6285395402199,0.710015898251192,75.5263157894737,1.98666791915894,0,408.275512695312,408.122680664062,0.332669826599351
+5389,308574,3791798,308674,3791698,88,53,93.9473684210526,0.963685857292127,38.2034732430081,0.916433239962652,NA,0.0548591224421551,0.547368421052632,54.7368421052632,4,96.8341177099375,0.86298900306472,53.4210526315789,0.260133798305805,0,407.789721171061,407.319610595703,0.44708535690409
+5390,308574,3791698,308674,3791598,89,53,36.0526315789474,0.123272607328685,15.7780172631513,0.595744961485702,19.6125263252709,0.0440125609182264,0.368421052631579,36.8421052631579,5,92.5170290648355,0.826822916666667,32.3684210526316,4.70713305473328,0,406.983259412977,406.584259033203,0.546243955251243
+5391,308574,3791598,308674,3791498,90,53,20.5,0.0442701626319072,8.85695980523003,0.430519841269841,17.2443650649894,0.0364604265158596,0.3225,32.25,8,83.7485748332655,0.635706995367826,14,11.6591146528259,0,406.334576924642,406.181365966797,0.212397580300547
+5392,308574,3791498,308674,3791398,91,53,26.3157894736842,0.0674850040120537,8.31810275770506,0.382101588830043,15.586725558422,0.033265396423935,0.234210526315789,23.4210526315789,4,88.6498431373726,0.753614731245542,17.8947368421053,7.79791183150216,0,406.148712158203,406.043273925781,0.139957284779569
+5393,308574,3791398,308674,3791298,92,53,8.94736842105263,0.0458898027281965,10.608794695154,0.313131313131313,30.2951490982138,0.0296633074846365,0.176315789473684,17.6315789473684,4,87.2525805633207,0.761339122361487,14.2105263157895,16.8662866834384,5.19557523727417,406.035921732585,405.895965576172,0.17246826458618
+5394,308574,3791298,308674,3791198,93,53,7.63157894736842,0.0391413023269911,9.26622312945862,0.555701754385965,16.4298513045212,0.0398046044030228,0.273684210526316,27.3684210526316,5,87.2838243010883,0.779121134619856,12.6315789473684,22.6240514058333,0,405.97663031684,405.891784667969,0.128234703776077
+5395,308574,3791198,308674,3791098,94,53,24.5,0.26454121572725,27.3605287538983,0.821428571428572,NA,0.0279611493957054,0.2375,23.75,3,90.1020598361595,0.799421407907425,19,12.7648433434336,0,406.184199015299,405.997711181641,0.20002960079825
+5396,308574,3791098,308674,3790998,95,53,59.4736842105263,0.610064436268965,33.3888944898463,0.871681415929204,NA,0.0345593355063772,0.257894736842105,25.7894736842105,6,82.2521469774695,0.678433268858801,8.94736842105263,3.15407936913627,0,406.621117485894,406.406341552734,0.373542024725982
+5397,308574,3790998,308674,3790898,96,53,35,0.179510110672063,20.470557038949,0.573162729658793,20.7823006752878,0.021121733819717,0.0421052631578947,4.21052631578947,6,43.4253450179364,0.391025641025641,1.05263157894737,5.65480348467827,0,407.170801798503,406.978302001953,0.312270810505605
+5398,308574,3790898,308674,3790798,97,53,31.0526315789474,0.0637058437873787,10.0276105488817,0.416666666666667,15.5867255895957,0.0321164012026106,0.157894736842105,15.7894736842105,7,72.0128445618966,0.623197115384615,5.26315789473684,8.2499393304189,0,407.801144070095,407.4169921875,0.647578392859907
+5399,308574,3790798,308674,3790698,98,53,30,0.161964009628929,18.6147179505385,0.737472766884532,47.0479341735638,0.0406470826576697,0.3,30,5,88.4232506777735,0.724770642201835,18,5.73307178815206,0,408.792488098145,408.476959228516,0.508890459547399
+5400,308574,3790698,308674,3790598,99,53,35.5263157894737,0.121473007221697,20.0523351486301,0.624579124579125,10.7999867220146,0.044819717534478,0.333333333333333,33.3333333333333,4,89.340759277232,0.759174311926605,21.9444444444444,5.53999228080114,0,409.335199991862,409.035186767578,0.354783438326776
+5401,308674,3800598,308774,3800498,0,54,27.7008310249307,0.053988003209662,11.6097642550347,0.524472334682861,17.4237031598303,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.10555267334,382.600921630859,0.491004111260468
+5402,308674,3800498,308774,3800398,1,54,44.7368421052632,0.229449013641064,26.4642401631947,0.755001942501943,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.68557993571,383.477355957031,0.324580962887947
+5403,308674,3800398,308774,3800298,2,54,36.01108033241,0.116974006954268,14.0802446235992,0.4997150997151,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.06499671936,383.697204589844,0.302532566195264
+5404,308674,3800298,308774,3800198,3,54,36.2880886426593,0.353621421023286,34.6425702889082,0.774809160305344,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.614555358887,384.283508300781,0.697251262987369
+5405,308674,3800198,308774,3800098,4,54,11.9113573407202,0.0580371034503867,10.0608938462724,0.656828703703704,18.7329128064101,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.684761047363,385.594299316406,1.18470676648276
+5406,308674,3800098,308774,3799998,5,54,26.0526315789474,0.0668101539719568,10.044358393441,0.409060846560847,19.9575787826008,0.0207626709287931,0.151315789473684,15.1315789473684,4,64.7777221971966,0.574504737295435,6.57894736842105,16.7240334593731,7.34765291213989,387.989458719889,387.613250732422,0.643931854800469
+5407,308674,3799998,308774,3799898,6,54,28.5318559556787,0.0926794055099198,18.0171644604514,0.541436597888211,20.7823006752878,0.021662452031485,0.110803324099723,11.0803324099723,6,72.6026253802905,0.647510112986469,6.64819944598338,13.6571338295937,0,388.929777145386,388.472381591797,0.480705407699347
+5408,308674,3799898,308774,3799798,7,54,28.5318559556787,0.13901910826488,24.0636469963049,0.722095092804475,57.1513268570416,0.0205040830888088,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,2.22667510168893,0,389.558227539062,389.197448730469,0.550251480880728
+5409,308674,3799798,308774,3799698,8,54,2.21606648199446,0.0107976006419324,2.75772495805335,0.25,23.2353185658643,0.0121716497573354,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,13.5084953308105,10.3911504745483,390.423448562622,389.829010009766,0.483685531928982
+5410,308674,3799698,308774,3799598,9,54,10,0.0256443015245895,6.83761879281064,0.286973180076628,18.1845131688139,0.00713502349109675,0.0184210526315789,1.84210526315789,2,48.9196885878706,0.745308310991957,1.05263157894737,11.7552725246974,0,390.664843241374,390.396667480469,0.337700571928577
+5411,308674,3799598,308774,3799498,10,54,64.5429362880887,0.314480118696281,27.8261754578073,0.798305380852551,20.7823006752878,0.0427763467132813,0.368421052631579,36.8421052631579,4,93.1529157844505,0.803719008264463,33.2409972299169,0.406825789831635,0,389.965631484985,389.797790527344,0.281234299958862
+5412,308674,3799498,308774,3799398,11,54,11.9113573407202,0.0580371034503867,14.4591983843108,0.558621933621934,51.9557516882196,0.0144890802403702,0.0166204986149584,1.66204986149584,3,37.6984126984127,0.418913480885312,1.10803324099723,9.8839008808136,7.34765291213989,389.936964035034,389.802093505859,0.170630496691167
+5413,308674,3799398,308774,3799298,12,54,30.4709141274238,0.0742335044132853,9.90611893870191,0.493839552826327,28.7049140978413,0.0221341113803213,0.224376731301939,22.4376731301939,4,87.7884245633213,0.829885912698413,18.005540166205,9.28266678916084,0,390.332420349121,390.128845214844,0.295288659368984
+5414,308674,3799298,308774,3799198,13,54,59.7368421052632,0.306381918214832,19.1673832581756,0.571924603174603,14.6953058096335,0.0231703357265934,0.144736842105263,14.4736842105263,4,80.5856726108874,0.753846153846154,9.21052631578947,9.81692838668823,0,390.824758529663,390.581268310547,0.273074624211245
+5415,308674,3799198,308774,3799098,14,54,36.2880886426593,0.176810710511643,14.2543762259744,0.560763888888889,29.390611619267,0.0333553150873672,0.238227146814404,23.8227146814404,4,84.3389794029378,0.811241830065359,13.0193905817175,11.3133190232654,0,391.153541564941,390.933288574219,0.215101133658582
+5416,308674,3799098,308774,3798998,15,54,48.1994459833795,0.117423906981015,12.778657069353,0.635362554112554,10.3911503376439,0.018038843254645,0.0941828254847645,9.41828254847645,5,75.5398640035456,0.74371996505024,7.4792243767313,0.611244145561667,0,391.357484817505,391.172149658203,0.195699341213745
+5417,308674,3798998,308774,3798898,16,54,52.6315789473684,0.256443015245895,23.6688421307661,0.825888849861453,11.6176592829322,0.00694297107548561,0.0277008310249307,2.77008310249307,4,40.6969603094515,0.446197676966908,0.831024930747922,11.430265378952,0,391.696924845378,391.399566650391,0.210878289736672
+5418,308674,3798898,308774,3798798,17,54,25.5263157894737,0.0523683631133722,8.8730581250076,0.482103244996327,25.0666818816902,0.0472246411776053,0.442105263157895,44.2105263157895,5,94.1760603888154,0.855447352404139,41.0526315789474,12.5381081104279,0,391.735231399536,391.577575683594,0.156675560970392
+5419,308674,3798798,308774,3798698,18,54,26.3157894736842,0.0512886030491789,9.29817581085833,0.394216133942161,21.1195511399926,0.025518412779987,0.160664819944598,16.0664819944598,5,79.4420154038775,0.74980198019802,10.5263157894737,8.86310819099689,0,391.766156514486,391.53173828125,0.354255197926958
+5420,308674,3798698,308774,3798598,19,54,21.3296398891967,0.0692846041190663,15.352955593403,0.528993640104751,19.6125262386808,0.0553423499525976,0.426592797783933,42.6592797783933,6,89.7405419589551,0.808965364196582,31.5789473684211,28.0081868233619,0,392.557720184326,392.230651855469,0.3746271957364
+5421,308674,3798598,308774,3798498,20,54,7.20221606648199,0.0350922020862803,9.24558758218195,0.540509259259259,32.8597028719326,0.0209637240581605,0.03601108033241,3.601108033241,6,38.5389536007533,0.423690932311622,1.38504155124654,18.3162414477422,5.19557523727417,392.910641988118,392.762969970703,0.240606189299962
+5422,308674,3798498,308774,3798398,21,54,30.2631578947368,0.155215509227778,17.8889524683663,0.725925925925926,22.0429587144503,0.0316700469410391,0.181578947368421,18.1578947368421,5,86.2001084440396,0.868725253115782,16.0526315789474,10.6774695368781,0,392.970058441162,392.549774169922,0.371790376922981
+5423,308674,3798398,308774,3798298,22,54,27.7008310249307,0.0899800053494367,6.96221019199036,0.277210884353741,31.1734512207637,0.0311377866612796,0.282548476454294,28.2548476454294,5,85.7989557734866,0.801970588855834,13.2963988919668,26.7957154442282,0,392.749267578125,392.335723876953,0.474796654617765
+5424,308674,3798298,308774,3798198,23,54,0,NA,NA,NA,NA,0.0314926301170924,0.263157894736842,26.3157894736842,2,93.1259281984656,0.872268907563025,25.207756232687,84.0764264156944,49.28955078125,392.181861877441,391.653045654297,0.481171204596092
+5425,308674,3798198,308774,3798098,24,54,0,NA,NA,NA,NA,0.0345796252112704,0.315789473684211,31.5789473684211,1,95.6693719888599,0.865197908887229,31.5789473684211,65.2837988870186,27.9790287017822,391.680549621582,391.533538818359,0.237431547151511
+5426,308674,3798098,308774,3797998,25,54,42.1052631578947,0.431904025677296,31.8401303039022,0.823958333333333,NA,-0.0148429840711048,0,0,0,NA,NA,0,NA,NA,391.885467529297,391.607940673828,0.32392786067962
+5427,308674,3797998,308774,3797898,26,54,39.3351800554017,0.1277716075962,12.4346769494771,0.476543209876543,12.1230087965286,0.0268085986006509,0.193905817174515,19.3905817174515,5,84.718292422038,0.808370351744755,15.2354570637119,5.96641073226929,0,392.57056427002,392.351196289062,0.28393596002008
+5428,308674,3797898,308774,3797798,27,54,38.781163434903,0.0944790056169086,13.0748103491337,0.654245897000566,10.3911504415599,0.0159169529640199,0.0637119113573407,6.37119113573407,4,68.3168169433876,0.584648257725181,3.601108033241,7.26817873249883,0,393.055931091309,392.822937011719,0.354916729512831
+5429,308674,3797798,308774,3797698,28,54,24.9307479224377,0.0485892028886958,9.10458366625427,0.481878306878307,18.7040707116751,0.0437144167482072,0.299168975069252,29.9168975069252,2,94.8272692303,0.882922874227222,29.6398891966759,21.6587675898163,5.19557523727417,393.835601806641,393.321166992188,0.537755819449233
+5430,308674,3797698,308774,3797598,29,54,0,NA,NA,NA,NA,0.0202814984450637,0.0394736842105263,3.94736842105263,3,68.5658607851767,0.716064757160648,3.42105263157895,53.2743303934733,36.369026184082,394.693387349447,394.133911132812,0.807521540781501
+5431,308674,3797598,308774,3797498,30,54,0,NA,NA,NA,NA,0.0360269587925515,0.193905817174515,19.3905817174515,4,84.8485006282677,0.768027267901545,11.9113573407202,96.4553511483329,72.7380523681641,395.975526809692,395.129913330078,0.713527548941586
+5432,308674,3797498,308774,3797398,31,54,1.66204986149584,0.00809820048144931,3.55866887094936,0.229166666666667,67.5424778701394,0.0298179173274507,0.240997229916898,24.0997229916898,2,89.8261596463943,0.804497292206263,17.1745152354571,60.0337395942074,33.2679138183594,396.812978108724,396.593444824219,0.351366423432588
+5433,308674,3797398,308774,3797298,32,54,22.1606648199446,0.107976006419324,12.7798389521449,0.727902272019919,25.9778761038998,-0.0124076233951314,0.0249307479224377,2.49307479224377,2,58.3321631610904,0.743607954545455,1.93905817174515,4.07823509640164,0,397.478109359741,397.121520996094,0.412543720916885
+5434,308674,3797298,308774,3797198,33,54,0.789473684210526,0.00404910024072465,1.29889379220549,0.0833333333333333,78.1066221466592,0.0156367867131178,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.952677459526775,3.94736842105263,58.6024777730306,44.3910140991211,398.000737508138,397.699493408203,0.457547746280765
+5435,308674,3797198,308774,3797098,34,54,0,NA,NA,NA,NA,0.0189145704587801,0.038781163434903,3.8781163434903,4,55.4289740244878,0.531844380403458,2.21606648199446,38.7761916433062,11.6176595687866,398.602172851562,397.992797851562,0.778433558112071
+5436,308674,3797098,308774,3796998,35,54,0,NA,NA,NA,NA,0.0218737448282565,0.0664819944598338,6.64819944598338,6,57.7711045757067,0.520771513353116,2.77008310249307,42.5065327088038,14.6953058242798,399.704633076986,398.611480712891,1.26997731614423
+5437,308674,3796998,308774,3796898,36,54,30.1939058171745,0.098078205830886,13.7562770741947,0.716767860756932,10.7999867220173,0.0467971934129592,0.445983379501385,44.5983379501385,3,96.149620416346,0.847550675675676,43.4903047091413,8.21572895227752,0,401.426080703735,399.730010986328,1.63374678007547
+5438,308674,3796898,308774,3796798,37,54,0,NA,NA,NA,NA,0.0435834999649447,0.407894736842105,40.7894736842105,3,90.7838154754688,0.780740740740741,21.5789473684211,49.8887621356595,10.3911504745483,403.436101277669,402.407409667969,0.898106253195877
+5439,308674,3796798,308774,3796698,38,54,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0270084032012986,0.204986149584488,20.4986149584488,3,86.3733299571154,0.816161886893594,10.803324099723,37.1438485480644,16.4298515319824,403.50626373291,402.829223632812,0.760259678232723
+5440,308674,3796698,308774,3796598,39,54,26.0387811634349,0.253743615085412,22.9264745453855,0.803191489361702,NA,0.0495246988894525,0.429362880886427,42.9362880886427,3,94.4561008112146,0.735598705501618,38.2271468144044,18.7203681330527,0,402.192213058472,401.663879394531,0.783996904195775
+5441,308674,3796598,308774,3796498,40,54,0,NA,NA,NA,NA,0.0441400124719442,0.357340720221607,35.7340720221607,8,92.439872076922,0.721900220102714,31.3019390581717,45.8853995670644,14.6953058242798,402.307057698568,401.22021484375,1.27279383068113
+5442,308674,3796498,308774,3796398,41,54,29.6398891966759,0.072208954292923,12.4651088839201,0.41896186440678,26.2819159317364,0.0310582976158116,0.249307479224377,24.9307479224377,4,85.225857262658,0.751781989869588,11.3573407202216,12.2383455912272,0,402.262784957886,400.865142822266,1.39820763248054
+5443,308674,3796398,308774,3796298,42,54,33.9473684210526,0.116074206900773,14.6099610397215,0.478793537617067,25.1500675992931,0.0432873147650849,0.313157894736842,31.3157894736842,5,85.4138116326817,0.716900808854832,15.5263157894737,11.1969583455254,0,401.775657653809,400.288818359375,1.18875979244091
+5444,308674,3796298,308774,3796198,43,54,39.612188365651,0.128671407649695,12.3315761294054,0.422056384742952,33.3479915366704,0.0214184098874997,0.163434903047091,16.3434903047091,3,86.8589306118393,0.871088170367485,14.404432132964,11.8487276707665,0,401.705678939819,400.425872802734,0.91198593372152
+5445,308674,3796198,308774,3796098,44,54,0,NA,NA,NA,NA,0.0291174969078336,0.210526315789474,21.0526315789474,4,88.6902201756598,0.839303482587065,18.8365650969529,57.8602669991945,11.6176595687866,401.405601501465,400.967041015625,0.574084052682831
+5446,308674,3796098,308774,3795998,45,54,1.10803324099723,0.0107976006419324,3.67382645240838,0.416666666666667,NA,0.00747772116563363,0,0,0,NA,NA,0,NA,NA,400.709766387939,400.113403320312,0.721464382906847
+5447,308674,3795998,308774,3795898,46,54,0,NA,NA,NA,NA,0.00729012245566609,0,0,0,NA,NA,0,NA,NA,399.328600565592,398.644622802734,0.94329823585603
+5448,308674,3795898,308774,3795798,47,54,5.54016620498615,0.026994001604831,5.95331970392318,0.402777777777778,27.9790285905554,0.0132341640668644,0.0221606648199446,2.21606648199446,1,68.2360309929322,0.897733711048159,2.21606648199446,21.1061366796494,11.6176595687866,398.335264205933,398.122985839844,0.3218998486165
+5449,308674,3795798,308774,3795698,48,54,34.9030470914127,0.0850311050552177,11.6372723820334,0.490572033898305,16.9779290062787,0.0146644953625416,0.10803324099723,10.803324099723,4,80.7789944594394,0.655040611562351,8.58725761772853,7.41511840086717,0,398.045084635417,397.983947753906,0.085589727431083
+5450,308674,3795698,308774,3795598,49,54,38.2271468144044,0.0745034444293336,9.7255880595531,0.559504009504009,17.9170872233935,0.0255165503095414,0.141274238227147,14.1274238227147,3,84.2601706538837,0.825991842788283,10.803324099723,12.1947091420492,5.19557523727417,398.093208312988,397.974426269531,0.173045572294456
+5451,308674,3795598,308774,3795498,50,54,33.6842105263158,0.0863808051354593,11.6398721716724,0.583834478808706,24.6065972049871,0.00481196250456495,0.0789473684210526,7.89473684210526,1,86.162631131474,0.911370262390671,7.89473684210526,23.4302027861277,7.34765291213989,398.338706970215,398.033905029297,0.478969362923866
+5452,308674,3795498,308774,3795398,51,54,42.9362880886427,0.139469008291627,15.6160235760335,0.693857372389074,31.5164267334628,-0.010340003398556,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,17.6860549109323,14.6953058242798,398.389656066895,398.15478515625,0.335958545731748
+5453,308674,3795398,308774,3795298,52,54,48.4764542936288,0.118098757021136,13.9683044050624,0.68231712962963,16.6627644264213,0.00151199205631649,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,3.8966813882192,0,398.181968688965,398.096893310547,0.15371828662699
+5454,308674,3795298,308774,3795198,53,54,27.9778393351801,0.0545278832417587,11.0841025466219,0.465151515151515,18.7040707428498,0.0135338406050381,0.0554016620498615,5.54016620498615,5,54.7399208910722,0.521899536467695,1.93905817174515,8.22720539569855,0,397.985673904419,397.880889892578,0.127852329179814
+5455,308674,3795198,308774,3795098,54,54,27.6315789473684,0.141718508425363,16.0048325674855,0.510833333333333,10.3911504415599,0.0226782172323223,0.110526315789474,11.0526315789474,4,81.9075853184489,0.730810900908409,9.21052631578947,9.83389208430336,0,397.828290939331,397.799987792969,0.0438038163020769
+5456,308674,3795098,308774,3794998,55,54,26.0387811634349,0.126871807542706,26.2063458734613,0.661542338709677,10.3911503376439,0.0146106993973079,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,397.817545572917,397.799987792969,0.038563655666301
+5457,308674,3794998,308774,3794898,56,54,36.2880886426593,0.117873807007762,26.5762934366908,0.656283943517986,19.0504422856805,0.0183672042811424,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,398.007488250732,397.853118896484,0.288058485484686
+5458,308674,3794898,308774,3794798,57,54,24.3767313019391,0.118773607061256,14.9357677753317,0.468954248366013,49.2895539135654,0.0255414556930473,0.0858725761772853,8.58725761772853,4,73.7725878670287,0.737454545454545,5.54016620498615,10.3119322869085,0,398.816808064779,398.353759765625,0.836434650926508
+5459,308674,3794798,308774,3794698,58,54,5,0.0512886030491789,10.099148468202,0.657894736842105,NA,0.0240397111311291,0.0368421052631579,3.68421052631579,6,42.7749211030137,0.377049180327869,1.31578947368421,24.1972571781703,5.19557523727417,399.704471588135,398.871673583984,0.944764995143512
+5460,308674,3794698,308774,3794598,59,54,27.4238227146814,0.133620307943914,16.3635486576561,0.345238095238095,10.3911504415599,0.0190966458613626,0.0221606648199446,2.21606648199446,5,25.6397267923517,0.28413597733711,0.831024930747922,5.19557523727417,0,400.454889933268,399.351501464844,0.959035399557886
+5461,308674,3794598,308774,3794498,60,54,0,NA,NA,NA,NA,0.0221073123191577,0.0526315789473684,5.26315789473684,4,67.0511815204841,0.636015325670498,3.8781163434903,24.705403076975,15.5867252349854,400.876577377319,400.261901855469,0.637308498238526
+5462,308674,3794498,308774,3794398,61,54,0,NA,NA,NA,NA,0.0160450295579344,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,75.3358421325684,72.7380523681641,400.899917602539,400.506378173828,0.469818062611699
+5463,308674,3794398,308774,3794298,62,54,0,NA,NA,NA,NA,0.017412738850678,0,0,0,NA,NA,0,NA,NA,400.422569274902,400.025909423828,0.373492305657529
+5464,308674,3794298,308774,3794198,63,54,9.14127423822715,0.0890802052959424,26.8407997971224,0.575757575757576,NA,0.0217198929397523,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,35.6549873352051,0,399.927121480306,399.663024902344,0.278672963941722
+5465,308674,3794198,308774,3794098,64,54,19.1135734072022,0.0620862036911113,13.6535232373485,0.429824561403509,15.5867255064659,0.0259424093133613,0.110803324099723,11.0803324099723,3,79.8871929238729,0.74822150927605,6.64819944598338,4.13417468070984,0,400.003698348999,399.6376953125,0.388287268221802
+5466,308674,3794098,308774,3793998,65,54,8.58725761772853,0.0836814049749762,12.2584058157862,0.747311827956989,NA,0.0216120296324619,0.07202216066482,7.20221606648199,4,66.5550246289123,0.632034947215144,3.601108033241,16.8478581905365,0,400.747517903646,400.327026367188,0.642018184888266
+5467,308674,3793998,308774,3793898,66,54,1.57894736842105,0.0161964009628986,4.94618443365013,0.444444444444444,NA,0.0247927213783106,0.0710526315789474,7.10526315789474,6,59.8182427830431,0.524342842084459,2.63157894736842,23.2756138730932,0,401.535146713257,401.128479003906,0.700963037833221
+5468,308674,3793898,308774,3793798,67,54,0,NA,NA,NA,NA,0.0179714032155089,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,37.4126996994019,15.5867252349854,402.404561360677,401.715637207031,0.758609407571004
+5469,308674,3793798,308774,3793698,68,54,16.0664819944598,0.0260942015513367,6.36468281941006,0.390659041394336,20.5574676854724,0.0194670337477571,0.0249307479224377,2.49307479224377,3,46.5128690491175,0.572679924242424,1.38504155124654,7.63563251495361,0,403.124816894531,402.631256103516,0.374421843043032
+5470,308674,3793698,308774,3793598,69,54,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.024720016468609,0.0831024930747922,8.31024930747922,8,62.3917376429085,0.599358776743326,5.26315789473684,40.4876409848531,10.3911504745483,403.50316619873,403.333465576172,0.178730288386244
+5471,308674,3793598,308774,3793498,70,54,0.526315789473684,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0255261902906089,0.0789473684210526,7.89473684210526,5,67.0080938733285,0.579008746355685,4.21052631578947,66.5710238774618,15.5867252349854,403.791384379069,403.591247558594,0.271130446382676
+5472,308674,3793498,308774,3793398,71,54,25.207756232687,0.122822707301981,15.6696312626148,0.626068376068376,20.7823006752878,0.0167414683624818,0.0969529085872576,9.69529085872576,4,72.5565944009493,0.713613285381849,4.70914127423823,11.7367293357849,0,404.375650405884,403.830078125,0.4366070451444
+5473,308674,3793398,308774,3793298,72,54,13.2963988919668,0.0647856038515944,12.9821489252275,0.635416666666667,10.3911503376439,0.0155313685494261,0.038781163434903,3.8781163434903,2,69.2202518747971,0.843948126801153,3.32409972299169,25.0040604046413,10.3911504745483,404.50824991862,404.072662353516,0.524397646565169
+5474,308674,3793298,308774,3793198,73,54,0,NA,NA,NA,NA,0.0168834235908616,0.124653739612188,12.4653739612188,1,89.820262380557,0.909810126582278,12.4653739612188,68.3787672254774,47.9008369445801,404.381900787354,403.745269775391,0.980873353658542
+5475,308674,3793198,308774,3793098,74,54,1.57894736842105,0.00809820048144931,3.89668137661647,0.208333333333333,10.3911503376439,0.029380128381155,0.1,10,5,72.6385330196894,0.647266313932981,4.21052631578947,27.7086368485501,5.19557523727417,406.353927612305,404.296783447266,2.207421005823
+5476,308674,3793098,308774,3792998,75,54,23.5457063711911,0.114724506820532,18.4686130248743,0.713199168556311,10.3911503376439,0.0307258870378069,0.0803324099722992,8.03324099722992,5,65.58637235217,0.676108690079467,3.04709141274238,12.7069499410432,0,407.166032791138,405.722503662109,1.42091142450332
+5477,308674,3792998,308774,3792898,76,54,0,NA,NA,NA,NA,0.0190443724608576,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,80.7876377105713,78.1066207885742,408.570485432943,408.078125,0.738957336749768
+5478,308674,3792898,308774,3792798,77,54,0,NA,NA,NA,NA,0.0152537117663294,0.0415512465373961,4.15512465373961,3,58.4815029285393,0.620599054125066,1.66204986149584,133.86100209554,114.774002075195,409.114133834839,408.615051269531,0.554900964279925
+5479,308674,3792798,308774,3792698,78,54,0,NA,NA,NA,NA,0.0118683371808545,0,0,0,NA,NA,0,NA,NA,409.4461034139,409.1376953125,0.442603725148758
+5480,308674,3792698,308774,3792598,79,54,33.5180055401662,0.0653254838836911,11.6591690649206,0.441891710624105,18.3475027705925,0.0246001214589624,0.0886426592797784,8.86426592797784,6,66.4674965875326,0.62017769464578,4.98614958448753,2.01559314131737,0,409.584136962891,409.363525390625,0.256384098634666
+5481,308674,3792598,308774,3792498,80,54,25.207756232687,0.0818818048679874,13.1883368356835,0.518909754825248,24.2460174545025,0.0245092748433142,0.193905817174515,19.3905817174515,5,82.3575956707265,0.697426871175928,9.14127423822715,18.2923613480159,0,409.394872029622,408.797515869141,0.500780466619854
+5482,308674,3792498,308774,3792398,81,54,0,NA,NA,NA,NA,0.0282844631046097,0.229916897506925,22.9916897506925,5,87.8257671082555,0.734987520187931,18.005540166205,57.1595468291317,14.6953058242798,409.151502609253,408.411895751953,0.684936604229281
+5483,308674,3792398,308774,3792298,82,54,17.8947368421053,0.183559210912851,17.824391739461,0.833333333333333,NA,0.0616527154632135,0.542105263157895,54.2105263157895,3,97.3655379991374,0.840340926142673,53.4210526315789,25.8629906339553,0,408.325014750163,407.542755126953,0.937245817742046
+5484,308674,3792298,308774,3792198,83,54,27.9778393351801,0.0681598540521983,10.9892532007293,0.459498972656867,15.9018900682145,0.0705057610460967,0.554016620498615,55.4016620498615,4,96.2211135181153,0.836818402504562,52.9085872576177,8.64345290899277,0,407.257833480835,406.490753173828,0.668480374977943
+5485,308674,3792198,308774,3792098,84,54,60.9418282548476,0.296934017653141,26.9565353262782,0.819663413413413,25.9778758441098,0.0685696863644135,0.670360110803324,67.0360110803324,3,94.6306613192503,0.818788577377854,46.814404432133,1.40578329267581,0,405.973600387573,405.641906738281,0.511193962451335
+5486,308674,3792098,308774,3791998,85,54,26.0387811634349,0.0507487230170823,6.25539867480424,0.263529411764706,23.6883848174313,0.0477664757286485,0.393351800554017,39.3351800554017,2,95.8850778649051,0.860519845451352,38.5041551246537,5.36387069460372,0,405.988698323568,405.717071533203,0.44612727910288
+5487,308674,3791998,308774,3791898,86,54,45.2631578947368,0.154765609201031,15.2543354797472,0.578437025505007,24.3893504397919,0.0674407370181717,0.631578947368421,63.1578947368421,4,93.6073259419343,0.76423798918231,46.3157894736842,4.40758957068125,0,407.074361801147,406.182647705078,0.801533038527477
+5488,308674,3791898,308774,3791798,87,54,74.792243767313,0.364419021665219,22.9204147143844,0.822137791286727,20.7823008831198,0.0661322121402646,0.778393351800554,77.8393351800554,2,97.9726819033146,0.735061553030303,69.2520775623269,1.58178042517014,0,408.238337198893,407.641723632812,0.573301386632179
+5489,308674,3791798,308774,3791698,88,54,80.3324099722992,0.7828260465401,37.5385966955479,0.858620689655172,NA,0.059192023917883,0.722991689750693,72.2991689750693,1,99.0218306937704,0.726850715746421,72.2991689750693,1.37269521033627,0,408.004718780518,407.499237060547,0.476317151407215
+5490,308674,3791698,308774,3791598,89,54,49.8614958448753,0.242946014443479,19.5118946442074,0.814942528735632,22.0429587144503,0.0421108592098767,0.39612188365651,39.612188365651,7,88.4490046288482,0.639733174592058,17.7285318559557,4.08810043668413,0,407.192827860514,406.825347900391,0.535190492611409
+5491,308674,3791598,308774,3791498,90,54,15.2631578947368,0.0782826046540099,17.2559455674515,0.615186615186615,52.2148842320149,0.0381105632757872,0.315789473684211,31.5789473684211,4,93.8565534868632,0.738532110091743,29.4736842105263,13.1965961416562,0,406.297748565674,406.012817382812,0.396755629753855
+5492,308674,3791498,308774,3791398,91,54,24.0997229916898,0.0587119534905075,11.8331670445567,0.477791701475912,25.4788060000927,0.0411078060250452,0.326869806094183,32.6869806094183,6,84.9880999821735,0.777854697896235,16.3434903047091,8.9979504649922,0,405.913681030273,405.814483642578,0.157779177503157
+5493,308674,3791398,308774,3791298,92,54,24.6537396121884,0.120123307141498,21.2039506567774,0.662373145979703,46.7601765193976,0.0376908447979782,0.285318559556787,28.5318559556787,6,89.1298775829592,0.833605698721978,24.6537396121884,15.5967798464507,0,405.781457901001,405.710296630859,0.103539812106508
+5494,308674,3791298,308774,3791198,93,54,2.77008310249307,0.00899800053494367,4.32964600865697,0.203703703703704,36.369026302989,0.0262255924467039,0.14404432132964,14.404432132964,5,82.3145390796851,0.658703319879277,11.0803324099723,21.0133086901445,0,405.811322530111,405.727020263672,0.115328907722414
+5495,308674,3791198,308774,3791098,94,54,21.5789473684211,0.221350813159614,21.4455614418228,0.813008130081301,NA,0.0279229371225435,0.213157894736842,21.3157894736842,7,83.1558467040009,0.717577108881457,13.9473684210526,13.2217447257336,0,406.168128967285,405.902282714844,0.297433395905813
+5496,308674,3791098,308774,3790998,95,54,66.2049861495845,0.645156638355461,32.3193311989712,0.876569037656904,NA,0.0472022211246858,0.49584487534626,49.584487534626,3,93.2319686835157,0.80824009827031,39.8891966759003,1.68411849730508,0,406.750495910645,406.456634521484,0.475920067966512
+5497,308674,3790998,308774,3790898,96,54,47.3684210526316,0.230798713721305,25.3162509916585,0.784356725146199,20.7823008831198,0.0389577184381012,0.343490304709141,34.3490304709141,2,95.559249005511,0.89845288326301,34.0720221606648,4.42904525418435,0,407.46181678772,407.075408935547,0.409665787773255
+5498,308674,3790898,308774,3790798,97,54,34.0720221606648,0.332026219739422,34.6964091853945,0.779132791327913,NA,0.00956085800461554,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,7.8352490067482,0,408.150232950846,407.670623779297,0.571859453373819
+5499,308674,3790798,308774,3790698,98,54,40.7894736842105,0.20920351243744,23.3509637746475,0.762219041560645,36.3690261817537,0.0318167787738754,0.271052631578947,27.1052631578947,6,83.2136900576682,0.688554980973754,8.94736842105263,7.55018689331499,0,408.973913192749,408.552398681641,0.450455338611216
+5500,308674,3790698,308774,3790598,99,54,0,NA,NA,NA,NA,0.0270564669890572,0.111111111111111,11.1111111111111,5,74.0506457945007,0.678571428571429,5.84795321637427,34.7418571773328,15.5867252349854,409.455251693726,409.302856445312,0.193066204700134
+5501,308774,3800598,308874,3800498,0,55,28.5318559556787,0.0556076433059519,9.16146188161769,0.332207207207207,18.8319915789493,NA,NA,NA,NA,NA,NA,NA,NA,NA,383.492124557495,382.5888671875,0.822334616862061
+5502,308774,3800498,308874,3800398,1,55,40.2631578947368,0.206504112276957,27.9907612902707,0.715049533799534,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.451484680176,383.808532714844,0.657742006849193
+5503,308774,3800398,308874,3800298,2,55,27.1468144044321,0.066135303931836,9.67920458744575,0.400628306878307,20.7823008051828,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.806745529175,384.175903320312,0.843378158893525
+5504,308774,3800298,308874,3800198,3,55,38.781163434903,0.188958011233817,21.5760448492125,0.691512583461736,31.1734513246797,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.050127665202,384.582977294922,0.841760816253199
+5505,308774,3800198,308874,3800098,4,55,15.2354570637119,0.0742335044132853,15.3614987073708,0.571428571428571,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.067565917969,385.186676025391,1.16258339259506
+5506,308774,3800098,308874,3799998,5,55,23.6842105263158,0.12147300722174,19.6021854720148,0.564922480620155,15.5867255064659,0.0216534785616348,0.0855263157894737,8.55263157894737,2,71.4161278742789,0.635491606714628,7.23684210526316,15.2001584859995,10.3911504745483,388.339134216309,387.704040527344,1.07603955861347
+5507,308774,3799998,308874,3799898,6,55,21.606648199446,0.105276606258841,18.3973308738668,0.58270202020202,10.3911504415599,0.0176317049317782,0.0692520775623269,6.92520775623269,4,69.7836861114081,0.597098214285714,3.8781163434903,7.73851165771484,0,389.319723129272,388.670593261719,0.445714176922844
+5508,308774,3799898,308874,3799798,7,55,25.4847645429363,0.124172407382223,23.9237079721105,0.672096908939014,57.1513268570416,0.0203150260074992,0.0470914127423823,4.70914127423823,6,47.7548785431902,0.454302325581395,1.93905817174515,4.27870901893167,0,389.835324605306,389.485198974609,0.376051953260781
+5509,308774,3799798,308874,3799698,8,55,12.4653739612188,0.0404910024072465,11.0189504846662,0.287037037037037,12.1230088484866,0.011584145641975,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,31.8732290267944,10.3911504745483,390.39888381958,389.904663085938,0.400017230735463
+5510,308774,3799698,308874,3799598,9,55,25.5263157894737,0.261841815566861,35.9319817628632,0.639175257731959,NA,0.0112346443366206,0.0421052631578947,4.21052631578947,3,66.1150507132842,0.521520146520146,2.89473684210526,6.38090726733208,5.19557523727417,390.575154622396,390.285217285156,0.297547800560805
+5511,308774,3799598,308874,3799498,10,55,43.213296398892,0.140368808345121,19.5044208859639,0.641131815044858,13.8548671861359,0.0300190243316967,0.188365650969529,18.8365650969529,4,87.7372781923085,0.834341927897439,16.8975069252078,1.82062332069173,0,390.028968811035,389.913391113281,0.21573988304507
+5512,308774,3799498,308874,3799398,11,55,25.7617728531856,0.125522107462464,20.791512256995,0.616239316239316,15.5867256623399,0.0185007320561703,0.0914127423822715,9.14127423822715,4,72.436112587518,0.653511743450768,4.43213296398892,10.1099498199694,0,390.125102996826,389.933319091797,0.190044777138867
+5513,308774,3799398,308874,3799298,12,55,51.8005540166205,0.50478783001034,40.2252318381685,0.788770053475936,NA,0.0346254311379075,0.243767313019391,24.3767313019391,7,84.3926071833425,0.781013042159539,18.005540166205,9.96144116466696,0,390.39032236735,390.290954589844,0.118110028617924
+5514,308774,3799298,308874,3799198,13,55,43.1578947368421,0.147567208773076,13.8091552946759,0.443281499202552,30.7756947106005,0.0641918819982828,0.431578947368421,43.1578947368421,5,92.0913974197833,0.848540593573706,23.9473684210526,11.2027119194589,0,390.505332946777,390.400299072266,0.148375017882993
+5515,308774,3799198,308874,3799098,14,55,19.3905817174515,0.0629860037446057,10.7079900270008,0.660045151980636,19.7174933050784,0.046983829875289,0.332409972299169,33.2409972299169,4,88.5984773249931,0.828219574403289,21.606648199446,11.3971357146899,0,390.612126668294,390.389343261719,0.322228554899868
+5516,308774,3799098,308874,3798998,15,55,35.7340720221607,0.08705565517558,12.1072015328005,0.487731481481481,16.0082884054938,0.0348437845482332,0.240997229916898,24.0997229916898,5,83.8109186694228,0.778996939015776,9.97229916897507,10.990663983356,0,390.820280075073,390.215209960938,0.551640664634241
+5517,308774,3798998,308874,3798898,16,55,61.7728531855956,0.300983117893866,19.6191206216335,0.736599511599512,18.7329128064101,0.0147985120205895,0.116343490304709,11.6343490304709,4,73.9938535826315,0.697161022561703,4.43213296398892,9.33437353088742,0,390.981572469076,390.139038085938,0.847228113763984
+5518,308774,3798898,308874,3798798,17,55,41.8421052631579,0.214602312758407,16.4078744887983,0.642532467532468,42.8438104389818,0.0266487013331483,0.257894736842105,25.7894736842105,4,89.5571177821524,0.885154738878143,22.3684210526316,4.81247435783853,0,390.837154388428,390.133819580078,0.778837942188498
+5519,308774,3798798,308874,3798698,18,55,30.4709141274238,0.0742335044132853,10.1844544475437,0.439546783625731,20.4032887378547,0.0148648367699491,0.0609418282548476,6.09418282548476,5,67.906998768027,0.592833593614437,4.43213296398892,10.6610095284202,0,391.328155517578,390.449188232422,0.783018204566245
+5520,308774,3798698,308874,3798598,19,55,24.9307479224377,0.0485892028886958,9.46099539240615,0.485807231983703,15.5867255792071,0.0586369417426309,0.401662049861496,40.1662049861496,4,89.2585636640084,0.823410202655486,20.4986149584488,22.8605796813965,0,392.212989807129,391.430877685547,0.517069181504865
+5521,308774,3798598,308874,3798498,20,55,1.93905817174515,0.0188958011233817,5.84077085060525,0.452380952380952,NA,0.0276846378078706,0.146814404432133,14.6814404432133,4,82.7788981397362,0.793920365348937,11.9113573407202,32.6833099239277,7.34765291213989,392.324818929036,391.938842773438,0.401547381268206
+5522,308774,3798498,308874,3798398,21,55,23.1578947368421,0.237547214122513,21.7515084782419,0.816287878787879,NA,0.0382271883246798,0.321052631578947,32.1052631578947,3,92.065084085678,0.860044196569504,25.7894736842105,32.0142302903973,0,392.111545562744,391.648742675781,0.485483639088069
+5523,308774,3798398,308874,3798298,22,55,28.2548476454294,0.0917796054564255,8.95118163138392,0.415062478892266,22.0088096205761,0.0285414675362671,0.240997229916898,24.0997229916898,2,89.3510681767519,0.829997645396751,15.2354570637119,21.2432506057038,0,391.70361328125,391.13720703125,0.600748697146856
+5524,308774,3798298,308874,3798198,23,55,7.20221606648199,0.0233948013908536,7.19740806014191,0.298148148148148,15.5867255064659,0.0311757008054286,0.263157894736842,26.3157894736842,2,90.5774889837989,0.832352941176471,17.4515235457064,31.7853264256528,11.6176595687866,391.143453598022,390.431610107422,0.708191336970537
+5525,308774,3798198,308874,3798098,24,55,0,NA,NA,NA,NA,0.0236981565934423,0.160664819944598,16.0664819944598,2,89.4197917686956,0.880858085808581,15.2354570637119,55.2636297817888,26.4923400878906,391.001091003418,390.456420898438,0.558784086015245
+5526,308774,3798098,308874,3797998,25,55,30.5263157894737,0.104376806205347,18.4219990326039,0.679553250112461,23.3231170213403,0.00157075117410721,0.0394736842105263,3.94736842105263,2,70.3639605317453,0.858032378580324,3.42105263157895,12.274676322937,0,391.600246429443,390.972015380859,0.536264403797307
+5527,308774,3797998,308874,3797898,26,55,18.5595567867036,0.045214952688092,9.24648250675445,0.382103174603175,17.2639454072678,0.0321103613817404,0.299168975069252,29.9168975069252,5,89.2944327227392,0.802432350258437,24.6537396121884,24.5422064286691,0,392.271516799927,391.795013427734,0.42710653005149
+5528,308774,3797898,308874,3797798,27,55,43.7673130193906,0.14216840845211,13.9035147136627,0.511861274190041,12.1230088484866,0.0254480583690034,0.163434903047091,16.3434903047091,4,81.0589119906576,0.613264511102454,8.03324099722992,14.6477875305434,0,392.710019429525,392.19921875,0.449015982052792
+5529,308774,3797798,308874,3797698,28,55,10.5263157894737,0.0256443015245895,7.52470880514399,0.434722222222222,15.5867255064659,0.0407023001486407,0.271468144044321,27.1468144044321,4,90.1392167158672,0.836221050812306,23.5457063711911,17.0742425091413,0,393.092626571655,392.745819091797,0.420669133420101
+5530,308774,3797698,308874,3797598,29,55,29.7368421052632,0.152516109067295,14.6448612211486,0.497747747747748,41.5646013505757,0.0311047598578482,0.257894736842105,25.7894736842105,3,91.0356155255152,0.793278529980658,21.5789473684211,15.4481537974611,0,393.437698364258,393.0009765625,0.705814172802634
+5531,308774,3797598,308874,3797498,30,55,9.97229916897507,0.0971784057773917,15.9758065173881,0.694444444444445,NA,0.0102408543513657,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,60.4299793243408,46.4706382751465,394.842603683472,393.331848144531,1.37381706889399
+5532,308774,3797498,308874,3797398,31,55,0,NA,NA,NA,NA,0.0361989625817033,0.293628808864266,29.3628808864266,2,91.0180123366751,0.814700749409712,15.2354570637119,64.2945399194394,25.977876663208,396.69265238444,396.006469726562,0.822230100490767
+5533,308774,3797398,308874,3797298,32,55,54.5706371191136,0.531781831615171,33.0226359102623,0.835871404399323,NA,0.0222535231646097,0.146814404432133,14.6814404432133,2,89.048056976964,0.896960182674468,14.1274238227147,3.37361576872052,0,397.796222686768,397.264373779297,0.549423617534618
+5534,308774,3797298,308874,3797198,33,55,7.89473684210526,0.026994001604831,9.1583884431323,0.294444444444444,25.2345043493418,0.0282302681640814,0.255263157894737,25.5263157894737,1,94.704791652367,0.891962146135413,25.5263157894737,34.8533634500405,0,398.455619812012,398.26708984375,0.328285949667085
+5535,308774,3797198,308874,3797098,34,55,3.04709141274238,0.0148467008826571,5.01492622823279,0.350694444444444,20.7823006752878,0.0104982020276109,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,19.1273211479187,0,399.212484359741,398.643463134766,0.708850102152297
+5536,308774,3797098,308874,3796998,35,55,0,NA,NA,NA,NA,0.0152531156443935,0.0193905817174515,1.93905817174515,3,41.9073627842675,0.362641242937853,1.10803324099723,41.4314299992153,20.7823009490967,400.666564941406,400.098449707031,0.931090053112305
+5537,308774,3796998,308874,3796898,36,55,33.5180055401662,0.108875806472818,14.977783409717,0.688013507119198,17.3185839653505,0.0331022713755696,0.268698060941828,26.8698060941828,5,85.521396341374,0.74066091954023,17.4515235457064,6.59720173078714,0,402.538112640381,401.525085449219,1.24210392433494
+5538,308774,3796898,308874,3796798,37,55,0,NA,NA,NA,NA,0.0118335631279287,0.139473684210526,13.9473684210526,2,85.8092275180068,0.859528850354538,10.2631578947368,70.8390800907927,44.3910140991211,404.167541503906,403.571716308594,0.667782862214611
+5539,308774,3796798,308874,3796698,38,55,0,NA,NA,NA,NA,0.0227090194000646,0.182825484764543,18.2825484764543,1,92.5625648410704,0.882947678703021,18.2825484764543,84.0396991498543,44.0859146118164,404.582201004028,403.936950683594,0.486701132598973
+5540,308774,3796698,308874,3796598,39,55,1.10803324099723,0.0107976006419324,3.67382645240838,0.416666666666667,NA,0.0383457121222571,0.301939058171745,30.1939058171745,5,88.3508712643358,0.723672548545645,18.005540166205,48.7289136877847,5.19557523727417,404.345035552979,403.135528564453,1.06940839429805
+5541,308774,3796598,308874,3796498,40,55,0,NA,NA,NA,NA,0.0131107492601475,0.0969529085872576,9.69529085872576,5,67.6890523130881,0.579966151893379,2.77008310249307,61.8063334873744,39.5683212280273,404.739351908366,403.478210449219,1.01318059006999
+5542,308774,3796498,308874,3796398,41,55,28.2548476454294,0.0917796054564255,10.900020670382,0.555952380952381,19.8362613943883,0.0287251589131989,0.191135734072022,19.1135734072022,6,76.9775518673474,0.7036963659006,6.37119113573407,26.8766287306081,0,404.307483673096,403.376983642578,0.933495206803878
+5543,308774,3796398,308874,3796298,42,55,53.4210526315789,0.273989116289035,27.0316481966615,0.729885057471264,10.3911503376439,0.0214732367651442,0.128947368421053,12.8947368421053,7,74.35907013867,0.617321248741188,6.31578947368421,2.74073927743094,0,403.131523132324,402.518402099609,0.762392991335421
+5544,308774,3796298,308874,3796198,43,55,38.781163434903,0.188958011233817,18.056861177448,0.697074764865296,36.7382645240838,0.0409372085133552,0.346260387811634,34.6260387811634,3,95.1263307645158,0.797842156350332,33.7950138504155,17.232276309967,0,402.414400100708,402.129272460938,0.418971611270581
+5545,308774,3796198,308874,3796098,44,55,10.5263157894737,0.102577206098358,12.9898105720489,0.745614035087719,NA,0.0419268140408815,0.340720221606648,34.0720221606648,4,90.3126597017671,0.789143460074613,26.3157894736842,38.2916331678871,7.34765291213989,401.728436787923,401.244110107422,0.837444916684255
+5546,308774,3796098,308874,3795998,45,55,6.92520775623269,0.0168712510030194,4.76142941381653,0.361111111111111,16.199980052933,0.00850129205852891,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,6.92743364969889,5.19557523727417,399.8470287323,399.00244140625,1.00110884795131
+5547,308774,3795998,308874,3795898,46,55,21.0526315789474,0.107976006419324,19.6879166909048,0.560049019607843,14.6953058096335,0.00875865293324559,0.0368421052631579,3.68421052631579,5,49.9027354994108,0.532786885245902,2.10526315789474,10.5414206300463,5.19557523727417,398.848050435384,398.577484130859,0.490471708908866
+5548,308774,3795898,308874,3795798,47,55,1.10803324099723,0.0107976006419324,5.19557522077996,0.25,NA,0.0134739105925692,0,0,0,NA,NA,0,NA,NA,398.331647872925,398.155364990234,0.19057611827637
+5549,308774,3795798,308874,3795698,48,55,28.808864265928,0.0935792055634142,15.2833077409387,0.629818594104308,29.4415927965178,0.0148288220256104,0.0277008310249307,2.77008310249307,4,45.7365757207837,0.525312294543064,1.66204986149584,5.83778357505798,0,398.080851236979,397.987152099609,0.127699059540474
+5550,308774,3795698,308874,3795598,49,55,48.4764542936288,0.236197514042271,16.7136623116201,0.508397932816537,18.7329127343573,0.0248392312009893,0.105263157894737,10.5263157894737,6,66.9601733512536,0.627450980392157,3.601108033241,6.76590792756332,0,398.025428771973,397.964385986328,0.105099779053487
+5551,308774,3795598,308874,3795498,50,55,38.9473684210526,0.19975561187575,13.767715541966,0.424603174603175,21.4219052194909,0.0128969337541141,0.05,5,3,65.929818495282,0.673321234119782,2.63157894736842,13.9001663609555,0,398.16298421224,398.016998291016,0.230919863943318
+5552,308774,3795498,308874,3795398,51,55,49.0304709141274,0.159264609468503,15.9537107624729,0.543413402161997,22.5141592900465,0.00129387959497052,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989,398.414609909058,398.154357910156,0.282949828750708
+5553,308774,3795398,308874,3795298,52,55,54.2936288088643,0.176360810484896,18.2852635264098,0.588671321594819,17.3185838960732,0.00421100941808502,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,8.86940169334412,7.34765291213989,398.431991577148,398.233978271484,0.265610906301837
+5554,308774,3795298,308874,3795198,53,55,20.7756232686981,0.0404910024072465,7.33029912256047,0.436965562053281,29.8327018139145,0.00562777181811501,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,398.147434234619,397.954010009766,0.213435328934148
+5555,308774,3795198,308874,3795098,54,55,11.0526315789474,0.0377916022467634,9.28853446472472,0.44281045751634,36.3690261817537,0.02569042805894,0.186842105263158,18.6842105263158,3,85.8049055201604,0.842588996763754,10,22.8269011873594,0,397.883787155151,397.815856933594,0.0920878364645135
+5556,308774,3795098,308874,3794998,55,55,26.8698060941828,0.13092090778343,23.6608256922483,0.656524678837052,10.3911503376439,0.0277296154263769,0.110803324099723,11.0803324099723,6,65.0730978472172,0.59715441484168,2.49307479224377,6.19576255083084,0,397.83854675293,397.809997558594,0.0442891080987422
+5557,308774,3794998,308874,3794898,56,55,34.3490304709141,0.0836814049749762,18.8682309500694,0.633895200883421,18.3952945403908,0.0252932874988355,0.0969529085872576,9.69529085872576,6,67.2722824499249,0.599058599534589,4.15512465373961,7.65963441303798,0,398.052795410156,397.893676757812,0.476117872386013
+5558,308774,3794898,308874,3794798,57,55,32.1329639889197,0.104376806205347,17.7789210271784,0.626509601509601,27.7097342337171,0.0262191357445586,0.155124653739612,15.5124653739612,5,75.732849189224,0.65834037519013,6.09418282548476,5.66658950703485,0,399.33408610026,398.488555908203,1.08537144621842
+5559,308774,3794798,308874,3794698,58,55,51.8421052631579,0.265890915807586,25.1924973057835,0.773516527279968,10.3911503376439,0.0240346476209341,0.115789473684211,11.5789473684211,6,72.4890378860278,0.633204633204633,6.57894736842105,1.89924958619204,0,400.947959899902,400.113952636719,0.682541692478519
+5560,308774,3794698,308874,3794598,59,55,29.9168975069252,0.145767608666088,19.1695321323863,0.623263888888889,31.1734510129318,0.0249193518868695,0.0609418282548476,6.09418282548476,7,52.0055082396463,0.467551622418879,2.21606648199446,4.32190693508495,0,401.554211934408,400.964202880859,0.525113942843073
+5561,308774,3794598,308874,3794498,60,55,8.58725761772853,0.0278938016583254,8.3002954079792,0.385606060606061,41.166942586793,0.0133580032391011,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483,401.903017044067,401.607147216797,0.364969193101103
+5562,308774,3794498,308874,3794398,61,55,3.601108033241,0.0175461010431402,4.71462893377953,0.236111111111111,82.1492571798315,0.0236520997623151,0.10803324099723,10.803324099723,3,76.9005739390177,0.758528428093646,4.98614958448754,27.589969476064,5.19557523727417,401.393648783366,401.088256835938,0.463245449090574
+5563,308774,3794398,308874,3794298,62,55,0,NA,NA,NA,NA,0.0231282496266909,0.0578947368421053,5.78947368421053,3,76.923061044468,0.750246467302005,5.26315789473684,100.488933910023,83.2914047241211,400.721014022827,400.170257568359,0.559011998364597
+5564,308774,3794298,308874,3794198,63,55,11.0803324099723,0.107976006419324,25.2468830158791,0.616666666666667,NA,0.0128732022141746,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,49.6314086914062,47.0479354858398,400.090965270996,399.948699951172,0.244438036025564
+5565,308774,3794198,308874,3794098,64,55,20.4986149584488,0.0998778059378748,22.1978396086655,0.577651515151515,15.5867255064659,0.028499576136395,0.141274238227147,14.1274238227147,5,75.56812675342,0.651983685576567,6.37119113573407,7.34150006724339,0,400.285041809082,399.943084716797,0.475268301155561
+5566,308774,3794098,308874,3793998,65,55,1.66204986149584,0.0161964009628986,5.14509030281621,0.444444444444444,NA,0.0180183369748665,0.0138504155124654,1.38504155124654,2,40.1094318411096,0.391573033707865,0.831024930747922,12.5973014831543,5.19557523727417,401.306442260742,400.628448486328,0.941577070413096
+5567,308774,3793998,308874,3793898,66,55,0.526315789473684,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0211471267809621,0.0315789473684211,3.15789473684211,4,56.217215646736,0.574808184143223,2.36842105263158,37.7876536846161,11.6176595687866,402.4196434021,401.941650390625,0.504794137159714
+5568,308774,3793898,308874,3793798,67,55,0,NA,NA,NA,NA,0.0202441793320396,0.0914127423822715,9.14127423822715,3,78.9385133449054,0.714656729900632,6.92520775623269,32.9066749630552,10.3911504745483,403.087898254395,402.713256835938,0.359426057507537
+5569,308774,3793798,308874,3793698,68,55,18.5595567867036,0.0301433017920613,7.42926101885858,0.365329218106996,13.2492043339357,0.0275063929880048,0.102493074792244,10.2493074792244,4,71.8363722207127,0.726017000607164,3.32409972299169,9.06378774385194,0,403.339065551758,403.218414306641,0.099255440826583
+5570,308774,3793698,308874,3793598,69,55,13.2963988919668,0.0431904025677296,10.1940303234794,0.357142857142857,44.2451854222172,0.0319806985354159,0.243767313019391,24.3767313019391,7,84.5823172552752,0.696787289143977,17.4515235457064,18.3638515960086,0,403.40460395813,403.315307617188,0.118456820290322
+5571,308774,3793598,308874,3793498,70,55,1.57894736842105,0.0161964009628986,5.14509027874646,0.444444444444444,NA,0.0205350927381101,0.0394736842105263,3.94736842105263,4,63.7201608278239,0.479452054794521,2.89473684210526,58.182208887736,25.977876663208,403.651031494141,403.460479736328,0.296464056039635
+5572,308774,3793498,308874,3793398,71,55,0,NA,NA,NA,NA,0.0253132777764114,0.0831024930747922,8.31024930747922,7,62.4943603162606,0.599358776743326,4.70914127423823,58.3474429130554,11.6176595687866,404.45156288147,403.961364746094,0.529527513400553
+5573,308774,3793398,308874,3793298,72,55,17.4515235457064,0.0566874033701451,11.2719387718697,0.548236331569665,18.3008871078313,0.0177879294819239,0.0221606648199446,2.21606648199446,3,44.9714579590004,0.590934844192635,1.38504155124654,15.3916298151016,5.19557523727417,405.169499715169,404.672668457031,0.440551529500783
+5574,308774,3793298,308874,3793198,73,55,18.8365650969529,0.061186403637617,11.4519826502276,0.498148148148148,31.173451213836,0.0196055352880598,0.0886426592797784,8.86426592797784,7,59.1130550588436,0.535772737900397,3.32409972299169,19.1816117018461,5.19557523727417,405.813026428223,405.188598632812,0.78232384292566
+5575,308774,3793198,308874,3793098,74,55,0,NA,NA,NA,NA,0.024129735111733,0.110526315789474,11.0526315789474,3,82.7639000178606,0.857488124010334,9.73684210526316,59.6781790597098,36.369026184082,407.501670837402,406.810852050781,1.00389113084538
+5576,308774,3793098,308874,3792998,75,55,11.6343490304709,0.0566874033701451,12.5419319332563,0.615079365079365,15.5867255064659,0.0288632860566216,0.127423822714681,12.7423822714681,5,77.8507177972496,0.706145706145706,8.03324099722992,11.5099489481553,0,407.530818939209,407.256378173828,0.519245218899658
+5577,308774,3792998,308874,3792898,76,55,6.64819944598338,0.0323928019257972,7.26141412524899,0.55952380952381,10.3911503376439,0.0211524510539831,0.0831024930747922,8.31024930747922,5,68.6151026108276,0.666132313952771,4.70914127423823,27.5082573095957,0,407.866259256999,407.380554199219,0.539069683064144
+5578,308774,3792898,308874,3792798,77,55,1.38504155124654,0.00674850040120775,2.10165431518289,0.166666666666667,20.7823006752878,0.0213443214804437,0.0249307479224377,2.49307479224377,2,61.9755545773026,0.743607954545455,2.21606648199446,67.7502068413629,59.2386741638184,407.909255981445,407.542846679688,0.618112801641068
+5579,308774,3792798,308874,3792698,78,55,0.263157894736842,0.0026994001604831,0,0,NA,0.0240625364403394,0.113157894736842,11.3157894736842,6,68.4221443178154,0.624134520276953,3.68421052631579,43.3929626109988,11.6176595687866,408.626742045085,408.198120117188,0.925204863912323
+5580,308774,3792698,308874,3792598,79,55,22.7146814404432,0.0737836043865381,13.3973754186589,0.617191592083988,19.6125261510511,0.0509764367856093,0.473684210526316,47.3684210526316,3,96.477342654102,0.722539682539682,45.7063711911357,7.02765513581839,0,409.680179595947,409.456329345703,0.31070688447734
+5581,308774,3792598,308874,3792498,80,55,13.8504155124654,0.0674850040120775,13.5418850751481,0.633928571428571,15.5867255064659,0.0234781971267087,0.0775623268698061,7.75623268698061,3,74.2039114045012,0.783183183183183,5.81717451523546,10.7668028218406,0,409.923998514811,409.765075683594,0.191503401894602
+5582,308774,3792498,308874,3792398,81,55,2.21606648199446,0.0215952012838648,5.94437605233464,0.541666666666667,NA,0.0352162899194063,0.188365650969529,18.8365650969529,7,78.4135978756968,0.616915708262827,7.75623268698061,37.2433177162619,0,409.992053985596,409.76123046875,0.286977709371489
+5583,308774,3792398,308874,3792298,82,55,1.31578947368421,0.0134970008024155,4.40481631604598,0.433333333333333,NA,0.0273345854348008,0.134210526315789,13.4210526315789,7,71.950123252811,0.64154700765119,5.26315789473684,36.8942330865299,0,409.364407857259,408.775634765625,0.727958545387491
+5584,308774,3792298,308874,3792198,83,55,0.277008310249307,0.0026994001604831,0,0,NA,0.0273797033610044,0.0526315789473684,5.26315789473684,3,71.126285977523,0.563218390804598,3.8781163434903,24.5987772690622,15.5867252349854,407.775415420532,406.945587158203,1.09293291382961
+5585,308774,3792198,308874,3792098,84,55,50.415512465374,0.245645414603962,27.5109449731099,0.760542929292929,25.9778758441098,0.0576828948732909,0.581717451523546,58.1717451523546,3,93.5139306980299,0.798224962314324,29.3628808864266,1.51678969746544,0,405.868322372437,405.378509521484,0.668831703096109
+5586,308774,3792098,308874,3791998,85,55,75.0692520775623,0.36576872174546,17.6613510421898,0.538723667905824,15.5867255064659,0.0547627454463227,0.520775623268698,52.0775623268698,2,96.2198356980124,0.898063251611189,49.0304709141274,0.383763691212269,0,405.621597290039,405.493011474609,0.235356026923299
+5587,308774,3791998,308874,3791898,86,55,53.4210526315789,0.273989116289035,22.1530627471517,0.804088419405321,11.6176592829322,0.063598404107018,0.678947368421053,67.8947368421052,2,98.4624437716444,0.748498116281438,67.1052631578947,3.47657643732174,0,406.314649581909,405.638244628906,0.694282911303895
+5588,308774,3791898,308874,3791798,87,55,48.1994459833795,0.15656520930802,13.7016202404343,0.445783132530121,22.5141592034498,0.0615467935159784,0.6398891966759,63.98891966759,2,97.4498862520097,0.697180082098875,59.5567867036011,5.79893745281996,0,406.986417134603,406.101593017578,0.983330907179886
+5589,308774,3791798,308874,3791698,88,55,57.617728531856,0.561475233380485,38.8252204246571,0.776442307692308,NA,0.0623525695003301,0.673130193905817,67.3130193905817,2,97.9570827754257,0.743933398043754,64.819944598338,2.99242505909484,0,407.63027381897,406.957611083984,0.479907819859143
+5590,308774,3791698,308874,3791598,89,55,42.1052631578947,0.410308824393431,29.5899344017042,0.8125,NA,0.0353534536583251,0.235457063711911,23.5457063711911,5,86.6707240873115,0.68816585084941,16.0664819944598,3.30205775429221,0,407.049051920573,406.618377685547,0.600368868923353
+5591,308774,3791598,308874,3791498,90,55,1.05263157894737,0.0107976006419324,5.19557516882196,0.25,NA,0.0236796867685227,0.15,15,3,86.1310359595198,0.699879951980792,11.8421052631579,33.9348739155552,5.19557523727417,406.282339096069,406.016296386719,0.328745613341157
+5592,308774,3791498,308874,3791398,91,55,9.41828254847645,0.0917796054564255,15.2693794085086,0.686274509803921,NA,0.0487743187789059,0.407202216066482,40.7202216066482,3,92.7302676291367,0.836952367717055,23.8227146814404,29.7996700410129,0,405.928126017253,405.812561035156,0.172591087198519
+5593,308774,3791398,308874,3791298,92,55,30.7479224376731,0.0998778059378748,13.4937129905001,0.322327044025157,22.5141592034498,0.0419620837427907,0.310249307479224,31.0249307479224,5,90.8427971494941,0.806214958845282,27.1468144044321,7.59587266189711,0,405.743701934814,405.701507568359,0.0621720128392963
+5594,308774,3791298,308874,3791198,93,55,11.0803324099723,0.026994001604831,7.25701634154561,0.345854377104377,38.944312759779,0.0531630019952464,0.409972299168975,40.9972299168975,3,92.9008793841339,0.849903851151188,22.1606648199446,17.3061439765466,0,405.755790710449,405.711700439453,0.0849742240064927
+5595,308774,3791198,308874,3791098,94,55,5.78947368421053,0.0296934017653141,8.96847080565146,0.3375,80.6570173213972,0.0237030525771747,0.1,10,7,65.7211592239888,0.506172839506173,3.68421052631579,19.580267253675,5.19557523727417,406.078742980957,405.863220214844,0.304045036168393
+5596,308774,3791098,308874,3790998,95,55,53.185595567867,0.518284830812756,32.5953742088053,0.846354166666667,NA,0.0516328908702348,0.529085872576177,52.9085872576177,3,95.1750136798666,0.796045197740113,45.7063711911357,3.74221257514354,0,406.91542561849,406.446105957031,0.618203562670187
+5597,308774,3790998,308874,3790898,96,55,23.8227146814404,0.116074206900773,19.9765632894557,0.496180555555556,20.7823008831198,0.0659387867479815,0.501385041551247,50.1385041551247,2,97.1536591585926,0.898225538971808,49.584487534626,9.58625804785207,0,407.424335479736,407.199737548828,0.297424868154432
+5598,308774,3790898,308874,3790798,97,55,47.3684210526316,0.115399356860653,12.8581058518319,0.349206349206349,11.004404862246,0.0379458316619146,0.310249307479224,31.0249307479224,3,90.4996179241187,0.813392182591753,22.1606648199446,4.56136807373592,0,407.986427307129,407.515777587891,0.653880471792624
+5599,308774,3790798,308874,3790698,98,55,10.7894736842105,0.0158107723685439,5.36739058531714,0.281084656084656,13.4804970063833,0.0400987403198853,0.3,30,2,94.5144580134059,0.868238557558946,29.2105263157895,19.920630513576,0,408.59476852417,407.9482421875,0.5651414264212
+5600,308774,3790698,308874,3790598,99,55,14.1274238227147,0.0688347040923191,19.8229018058297,0.483108108108108,10.3911504415599,0.0248773805077589,0.149122807017544,14.9122807017544,2,85.3171090482519,0.851404194809812,10.8187134502924,32.449668267194,0,408.716361999512,408.322479248047,0.448018198129395
+5601,308874,3800598,308974,3800498,0,56,6.64819944598338,0.0215952012838648,6.04819207523416,0.395601851851852,42.5348228663258,NA,NA,NA,NA,NA,NA,NA,NA,NA,384.436197916667,383.496429443359,1.06339016537452
+5602,308874,3800498,308974,3800398,1,56,21.5789473684211,0.221350813159614,29.2534861863171,0.703252032520325,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.743781195747,384.850463867188,1.16666247363833
+5603,308874,3800398,308974,3800298,2,56,10.5263157894737,0.0256443015245895,5.8956578164204,0.345436507936508,12.9889379610234,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.754020690918,385.318542480469,0.931080041856471
+5604,308874,3800298,308974,3800198,3,56,34.0720221606648,0.0664052439478843,10.944785458607,0.488951048951049,17.2782028106162,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.720716688368,386.232940673828,0.772256178893739
+5605,308874,3800198,308974,3800098,4,56,33.7950138504155,0.109775606526313,22.3073615400697,0.648902942109796,19.0504424761932,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.237597147624,385.873321533203,0.760647957298579
+5606,308874,3800098,308974,3799998,5,56,28.6842105263158,0.098078205830886,14.7641871988845,0.602163961714523,15.5867255064659,0.0197130105241405,0,0,0,NA,NA,0,NA,NA,388.031524658203,387.412017822266,1.09904421942839
+5607,308874,3799998,308974,3799898,6,56,9.14127423822715,0.0890802052959424,15.7419127049874,0.702020202020202,NA,0.0176303600444983,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,9.34917036692301,0,389.03978729248,388.518859863281,0.598924783808343
+5608,308874,3799898,308974,3799798,7,56,24.9307479224377,0.12147300722174,20.2162438643337,0.71704382183908,57.1513268570416,0.0164858625118901,0.0470914127423823,4.70914127423823,3,67.6377563353149,0.706162790697674,3.601108033241,3.36184280058917,0,389.348822699653,389.085662841797,0.390298930139755
+5609,308874,3799798,308974,3799698,8,56,5.54016620498615,0.0179960010698873,3.82115615651946,0.277777777777778,32.9838684504462,0.0175832003516508,0.0692520775623269,6.92520775623269,5,63.71050619433,0.650818452380952,3.04709141274238,13.2398520851135,0,389.948590596517,389.564208984375,0.44255924529969
+5610,308874,3799698,308974,3799598,9,56,7.63157894736842,0.0782826046540099,20.8282570559765,0.568965517241379,NA,0.00825375706259173,0.0578947368421053,5.78947368421053,3,74.3135629914678,0.594150509365758,4.47368421052632,14.7139775536277,10.3911504745483,390.179226345486,389.963317871094,0.360932834851112
+5611,308874,3799598,308974,3799498,10,56,67.3130193905817,0.327977119498697,26.5429873096803,0.805759803921569,20.7823006752878,0.034414859237072,0.296398891966759,29.6398891966759,2,94.1040200335417,0.896903431112562,28.5318559556787,1.2805214195608,0,389.903770446777,389.809326171875,0.209322383508761
+5612,308874,3799498,308974,3799398,11,56,17.4515235457064,0.0566874033701451,10.7174958886884,0.397417153996101,19.0504422856805,0.0135813817196272,0.0332409972299169,3.32409972299169,4,47.8180922982314,0.513231080397775,1.38504155124654,16.3764875729879,0,390.199986775716,389.997161865234,0.218617343946881
+5613,308874,3799398,308974,3799298,12,56,47.3684210526316,0.46159742744261,37.0786473875353,0.756335282651072,NA,0.0180646107812279,0.163434903047091,16.3434903047091,6,74.2412958213249,0.660141540059732,5.81717451523546,6.82042230185816,0,390.426947699653,390.363311767578,0.0868909612929618
+5614,308874,3799298,308974,3799198,13,56,24.7368421052632,0.0845812050284705,16.9924287832198,0.485688528284877,19.8681150835807,0.0123649409124674,0.0657894736842105,6.57894736842105,8,48.7468213537443,0.411267605633803,1.84210526315789,9.27202476501465,0,390.410753885905,390.369049072266,0.044466580405441
+5615,308874,3799198,308974,3799098,14,56,19.1135734072022,0.186258611073334,26.1664793820045,0.666666666666667,NA,0.00405298612549511,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0,390.284101698134,390.176971435547,0.158335687193736
+5616,308874,3799098,308974,3798998,15,56,17.4515235457064,0.0566874033701451,7.91184648740741,0.338122605363985,38.7899841580645,0.0539250577331332,0.421052631578947,42.1052631578947,3,92.4871535825809,0.777126099706745,29.3628808864266,15.7195405709116,0,390.002423604329,389.820709228516,0.26444795818734
+5617,308874,3798998,308974,3798898,16,56,24.3767313019391,0.118773607061256,13.8736836385401,0.375478927203065,46.7601765193976,0.063278387276202,0.487534626038781,48.7534626038781,3,91.8000582993047,0.807866943866944,21.8836565096953,13.8285690302199,0,389.850806342231,389.748748779297,0.211480457202874
+5618,308874,3798898,308974,3798798,17,56,26.0526315789474,0.267240615887827,26.3241313627393,0.814814814814815,NA,0.0105768121868191,0.0263157894736842,2.63157894736842,4,41.7194000360487,0.446985446985447,1.05263157894737,13.5084956169128,0,389.893496195475,389.758270263672,0.221197045467751
+5619,308874,3798798,308974,3798698,18,56,6.37119113573407,0.0620862036911113,25.5463726927778,0.405797101449275,NA,0.0112531864024806,0.0221606648199446,2.21606648199446,2,53.6717642846206,0.590934844192635,1.38504155124654,13.9073945879936,0,390.207041422526,389.965606689453,0.533525348075724
+5620,308874,3798698,308974,3798598,19,56,25.4847645429363,0.124172407382223,25.0606020492306,0.655208333333333,20.7823006752878,0.0707908415950195,0.481994459833795,48.1994459833795,6,90.8674823326286,0.753427624235761,36.01108033241,26.732036818033,0,391.296801249186,390.426727294922,0.808352323135055
+5621,308874,3798598,308974,3798498,20,56,0,NA,NA,NA,NA,0.0193787135891988,0.0692520775623269,6.92520775623269,6,56.9697010225111,0.543377976190476,2.49307479224377,69.8223022460938,39.5683212280273,391.768547905816,391.649719238281,0.212624008534321
+5622,308874,3798498,308974,3798398,21,56,0,NA,NA,NA,NA,0.0273510484481736,0.231578947368421,23.1578947368421,2,93.3649679604528,0.917110199808045,22.8947368421053,87.1150037592108,59.2386741638184,391.5556640625,391.379364013672,0.2254961235904
+5623,308874,3798398,308974,3798298,22,56,0,NA,NA,NA,NA,0.0675476772308065,0.529085872576177,52.9085872576177,1,97.9178236108022,0.820039880358923,52.9085872576177,59.0578038879714,18.7329120635986,391.158701578776,390.926483154297,0.348851488514348
+5624,308874,3798298,308974,3798198,23,56,34.3490304709141,0.334725619899905,25.2617183809861,0.81989247311828,NA,0.0325218362912013,0.257617728531856,25.7617728531856,4,84.192910770224,0.764678115446862,10.2493074792244,24.4154571461421,0,390.450836181641,390.236236572266,0.367890556748539
+5625,308874,3798198,308974,3798098,24,56,11.9113573407202,0.116074206900773,20.6949774944682,0.697674418604651,NA,0.0415547184500691,0.349030470914127,34.9030470914127,3,89.9941216241851,0.792046827092818,20.7756232686981,17.5098209646013,0,390.371456570095,390.238983154297,0.308744946839228
+5626,308874,3798098,308974,3797998,25,56,19.7368421052632,0.101227506018116,14.6362714550464,0.583920187793427,36.7382643477325,0.0307091139348478,0.281578947368421,28.1578947368421,5,84.0129173706106,0.761999658372715,11.8421052631579,23.8709921836853,0,391.226811726888,390.753082275391,0.475548974537049
+5627,308874,3797998,308974,3797898,26,56,20.7756232686981,0.0404910024072465,7.58558752129843,0.387745571658615,14.5886864322936,0.019227612284851,0.0914127423822715,9.14127423822715,7,61.801882281902,0.592366757000903,3.8781163434903,10.5605348529238,0,391.74934387207,391.577056884766,0.238164291192996
+5628,308874,3797898,308974,3797798,27,56,59.0027700831025,0.574972234182901,38.2925434824239,0.833333333333333,NA,0.0222542915132314,0.174515235457064,17.4515235457064,3,89.2778880102382,0.680628431970714,15.5124653739612,2.11916654828995,0,392.251098632812,391.991485595703,0.426587781287301
+5629,308874,3797798,308974,3797698,28,56,17.7285318559557,0.0575872034236395,13.0540682270406,0.571503267973856,22.5141590648952,0.0358956249968028,0.277008310249307,27.7008310249307,4,90.1780870869675,0.792528735632184,22.1606648199446,21.0860037136078,0,392.757288614909,392.602691650391,0.195725305069451
+5630,308874,3797698,308974,3797598,29,56,31.5789473684211,0.0809820048144931,12.1418731610817,0.565207506613757,23.2164495811632,0.00225481246640668,0.107894736842105,10.7894736842105,2,86.9087282389792,0.93501774186653,10.5263157894737,8.89884430024682,0,393.051835801866,392.939331054688,0.258114873225845
+5631,308874,3797598,308974,3797498,30,56,18.2825484764543,0.0890802052959424,12.7779858557089,0.581719128329298,10.3911504415599,0.0059630118360315,0.135734072022161,13.5734072022161,2,84.4780024422277,0.83470695970696,8.86426592797784,29.8345092656661,0,394.363522847493,393.280639648438,1.45364327700336
+5632,308874,3797498,308974,3797398,31,56,0,NA,NA,NA,NA,0.0496082892121023,0.418282548476454,41.8282548476454,3,93.1603957728448,0.807615609420663,27.4238227146814,61.4548338327976,32.8597030639648,396.775010850694,396.370300292969,0.813439843252109
+5633,308874,3797398,308974,3797298,32,56,16.6204986149584,0.0323928019257972,5.37513280776397,0.369007936507937,25.1261548183374,0.0139382875499691,0.0470914127423823,4.70914127423823,3,66.4400025562473,0.706162790697674,3.32409972299169,21.917959802291,7.34765291213989,397.996988932292,397.378662109375,0.59627730556764
+5634,308874,3797298,308974,3797198,33,56,15.5263157894737,0.0398161523671258,5.97714564723603,0.386616161616162,15.5867256623399,0.0273289353505166,0.121052631578947,12.1052631578947,4,78.664295325746,0.810379241516966,7.89473684210526,24.7280817239181,5.19557523727417,398.64003499349,398.400665283203,0.403440495833283
+5635,308874,3797198,308974,3797098,34,56,42.9362880886427,0.10460175621872,12.596166368941,0.515755476962374,20.7823008051828,-0.0175532388500345,0.0609418282548476,6.09418282548476,3,70.4696595813849,0.749436057608884,4.15512465373961,3.64025937427174,0,399.441874186198,399.056793212891,0.512679672845191
+5636,308874,3797098,308974,3796998,35,56,28.5318559556787,0.27803821652976,26.2443995440093,0.843042071197411,NA,-0.0359145738556148,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.5867255528768,10.3911504745483,400.38289727105,400.054260253906,0.558958150470848
+5637,308874,3796998,308974,3796898,36,56,38.2271468144044,0.124172407382223,15.5367131838895,0.672770414007527,12.4040506599365,-0.0132513590311178,0.124653739612188,12.4653739612188,2,83.3011165967055,0.879746835443038,6.37119113573407,6.45324178271823,0,401.45073445638,400.705230712891,1.11020155069001
+5638,308874,3796898,308974,3796798,37,56,7.63157894736842,0.039141302327005,8.36695162696648,0.615319865319865,11.6176592829322,0.0122056410256655,0.152631578947368,15.2631578947368,3,82.0924380705716,0.822981366459627,9.73684210526316,34.2132893595202,0,403.869354248047,402.493988037109,1.45487415499717
+5639,308874,3796798,308974,3796698,38,56,0,NA,NA,NA,NA,0.0235838972101524,0.163434903047091,16.3434903047091,3,83.836546394139,0.800772626931567,7.75623268698061,93.0929497541007,55.2297248840332,404.939954121908,404.740875244141,0.277010699207046
+5640,308874,3796698,308974,3796598,39,56,0,NA,NA,NA,NA,0.0361810863481339,0.290858725761773,29.0858725761773,3,90.3646227012873,0.813471395502645,21.606648199446,65.9759811038063,33.2679138183594,405.164477030436,404.956695556641,0.261241965139019
+5641,308874,3796598,308974,3796498,40,56,16.6204986149584,0.0809820048144931,11.8794300449921,0.720965309200603,16.4298513045218,0.0212797448104156,0.163434903047091,16.3434903047091,6,75.2508245952447,0.683580054538372,7.20221606648199,33.6994769856081,0,405.47792561849,405.395568847656,0.153204514388832
+5642,308874,3796498,308974,3796398,41,56,5.54016620498615,0.026994001604831,7.07655252808244,0.558080808080808,20.7823006752878,0.0477780777734635,0.38781163434903,38.781163434903,6,87.2521753190279,0.668198529411765,14.1274238227147,30.4107568877084,0,405.070752461751,404.254760742188,0.632306036077766
+5643,308874,3796398,308974,3796298,42,56,31.5789473684211,0.053988003209662,8.01616189681313,0.365445665445665,15.1296327046953,0.0194727581449163,0.0526315789473684,5.26315789473684,4,59.8985466888844,0.591397849462366,1.84210526315789,8.0785849571228,0,403.81935289171,403.397094726562,0.765822106097958
+5644,308874,3796298,308974,3796198,43,56,47.6454293628809,0.464296827603094,35.0342616149646,0.718023255813954,NA,0.0322027140074646,0.204986149584488,20.4986149584488,11,69.1114471739543,0.583945322969713,4.43213296398892,7.40991094305709,0,403.096923828125,402.616271972656,0.491983073710906
+5645,308874,3796198,308974,3796098,44,56,26.3157894736842,0.128221507622947,16.4599171037453,0.728472222222222,15.5867256623399,0.0205071137026804,0.152354570637119,15.2354570637119,4,80.2129706601995,0.71437908496732,8.31024930747922,26.1447316083041,0,402.101084391276,401.067077636719,1.33374998177377
+5646,308874,3796098,308974,3795998,45,56,13.8504155124654,0.134970008024155,14.5134338874765,0.78,NA,0.0265537706557923,0.177285318559557,17.7285318559557,3,87.8960295188112,0.90232683982684,16.3434903047091,44.0535583421588,0,399.341433207194,398.598724365234,1.22404388885118
+5647,308874,3795998,308974,3795898,46,56,7.36842105263158,0.0755832044935268,15.9575073005524,0.517857142857143,NA,0.0202637007869749,0.0263157894736842,2.63157894736842,3,51.8673950562613,0.604989604989605,1.57894736842105,33.4262692451477,10.3911504745483,398.519734700521,398.387512207031,0.228757841367158
+5648,308874,3795898,308974,3795798,47,56,4.98614958448753,0.0161964009628986,5.02116697541413,0.426851851851852,40.6402801471464,0.011665340454219,0.0110803324099723,1.10803324099723,2,36.243052657801,0.241596638655462,0.831024930747922,27.7108707427979,18.7329120635986,398.380233764648,398.314392089844,0.0707399702224898
+5649,308874,3795798,308974,3795698,48,56,21.0526315789474,0.102577206098358,12.7148304352283,0.768279569892473,36.3690265454597,0.0261740467958236,0.0914127423822715,9.14127423822715,2,83.2726026827489,0.938855013550135,8.58725761772853,0.380097822709517,0,398.270151774089,398.148406982422,0.155808316485166
+5650,308874,3795698,308974,3795598,49,56,26.5927977839335,0.0647856038515944,9.14305926349856,0.456547619047619,19.4110221489566,0.0191094114485836,0.10803324099723,10.803324099723,4,72.9252202073772,0.706784519827998,4.43213296398892,5.85984673866859,0,398.326932271322,398.149047851562,0.289132563951365
+5651,308874,3795598,308974,3795498,50,56,13.6842105263158,0.0350922020862803,6.16436408834383,0.300724637681159,26.7523640430577,0.0118533371960343,0.0394736842105263,3.94736842105263,5,51.8935062648345,0.574097135740971,2.36842105263158,13.3017546335856,0,398.681250678168,398.344757080078,0.449361801601725
+5652,308874,3795498,308974,3795398,51,56,34.9030470914127,0.170062210110435,19.4447704998147,0.779346405228758,25.9778760103754,0.021791531859076,0.191135734072022,19.1135734072022,3,85.2274144266463,0.81608739952451,13.2963988919668,6.39475021500518,0,399.064654032389,398.67919921875,0.478604482626878
+5653,308874,3795398,308974,3795298,52,56,38.5041551246537,0.187608311153576,19.1972023323972,0.709900353584057,20.7823006752878,0.0226700972832438,0.10803324099723,10.803324099723,2,85.0450341935141,0.879264214046823,9.97229916897507,8.92795310876308,0,399.023593478733,398.748077392578,0.483308024225342
+5654,308874,3795298,308974,3795198,53,56,36.2880886426593,0.0505173458604695,8.69870447502335,0.34729381443299,12.4669246506635,0.031698032302473,0.293628808864266,29.3628808864266,3,90.38057352254,0.822112719433323,14.9584487534626,9.33033416406164,0,398.450764973958,398.187316894531,0.374477758752062
+5655,308874,3795198,308974,3795098,54,56,48.1578947368421,0.0987980458736815,19.5060140470552,0.647527722801308,12.8066307451783,0.0285310413598046,0.197368421052632,19.7368421052632,6,83.1869259334548,0.660208643815201,12.3684210526316,4.7561580212911,0,398.049212137858,397.901062011719,0.20668640486808
+5656,308874,3795098,308974,3794998,55,56,24.9307479224377,0.0607365036108698,12.2855275404878,0.396621148459384,16.666043836309,0.0241471756440897,0.135734072022161,13.5734072022161,5,82.5457919928818,0.655639499389499,10.803324099723,2.78324443466809,0,397.90717569987,397.86767578125,0.0758209290989372
+5657,308874,3794998,308974,3794898,56,56,14.6814404432133,0.0357670521264011,9.14931376776347,0.368421052631579,35.0701323895482,0.026447634045187,0.116343490304709,11.6343490304709,5,78.5707599015755,0.633405448364166,7.75623268698061,9.98647160757156,0,398.099550882975,397.914367675781,0.724437280161387
+5658,308874,3794898,308974,3794798,57,56,35.7340720221607,0.17411131035116,27.5739825140109,0.67792624042624,41.5646013505757,0.0376874581840369,0.335180055401662,33.5180055401662,6,83.7970393519535,0.651306818181818,11.9113573407202,5.50646785074029,0,400.33191257053,399.793823242188,1.31619745768029
+5659,308874,3794798,308974,3794698,58,56,22.6315789473684,0.116074206900773,17.1858729650899,0.7,20.7823006752878,0.0379715659293747,0.318421052631579,31.8421052631579,5,89.9740415135674,0.713232713232713,23.1578947368421,7.64529697560082,0,401.519671122233,401.149627685547,0.472917546614942
+5660,308874,3794698,308974,3794598,59,56,19.3905817174515,0.0944790056169086,13.8674573594207,0.450980392156863,57.1513268570416,0.0214580605909827,0.0664819944598338,6.64819944598338,5,63.0279992163905,0.605341246290801,3.32409972299169,10.206905523936,0,401.94586859809,401.803680419922,0.261470237783313
+5661,308874,3794598,308974,3794498,60,56,9.41828254847645,0.0305932018188085,7.45612124194173,0.509523809523809,56.2922630275991,0.0183511054058618,0.0803324099722992,8.03324099722992,3,75.3346914103167,0.699243783645219,5.26315789473684,13.5601381762274,0,402.17391204834,401.981597900391,0.1837908961493
+5662,308874,3794498,308974,3794398,61,56,12.7423822714681,0.0310431018455557,7.07677138817599,0.39170692431562,23.1837707035411,0.0367574654214814,0.285318559556787,28.5318559556787,3,89.3651320947177,0.712591661428871,15.2354570637119,11.3072423888642,0,401.832580566406,401.082550048828,0.733014645532833
+5663,308874,3794398,308974,3794298,62,56,0,NA,NA,NA,NA,0.0137104043922399,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,69.7059555053711,69.7059555053711,400.839022318522,400.538848876953,0.409701134208876
+5664,308874,3794298,308974,3794198,63,56,8.58725761772853,0.0836814049749762,21.4812463260891,0.56989247311828,NA,0.0183529013535975,0.0277008310249307,2.77008310249307,3,51.9403568215295,0.60442691211922,1.66204986149584,63.6149433135986,47.9008369445801,400.662858751085,400.384368896484,0.324651434511062
+5665,308874,3794198,308974,3794098,64,56,24.9307479224377,0.0809820048144931,14.8984896501326,0.56986531986532,12.1230087272512,0.0194561476425993,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,5.91293446222941,0,401.001925150553,400.580291748047,0.586287979717955
+5666,308874,3794098,308974,3793998,65,56,30.1939058171745,0.294234617492658,28.38247908584,0.828746177370031,NA,0.0183828919234908,0.0415512465373961,4.15512465373961,4,56.3086230118446,0.668024172359432,2.21606648199446,5.76718600591024,0,402.157314724392,401.768493652344,0.676608854906525
+5667,308874,3793998,308974,3793898,66,56,5.78947368421053,0.0148467008826571,3.5040073660568,0.218954248366013,18.1845131792055,0.0207210814415846,0.0236842105263158,2.36842105263158,4,35.6939146200956,0.40251572327044,0.789473684210526,13.8651801215278,5.19557523727417,402.830439249674,402.460144042969,0.36070582845124
+5668,308874,3793898,308974,3793798,67,56,9.69529085872576,0.0472395028084543,6.20982296012549,0.379901960784314,93.6645640320503,0.0203422510438389,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,28.6847602980477,5.19557523727417,403.184831407335,403.009735107422,0.230870939289605
+5669,308874,3793798,308974,3793698,68,56,12.7423822714681,0.0310431018455557,5.45249745624774,0.385802469135802,18.7977676763125,0.0254646656892652,0.0858725761772853,8.58725761772853,5,68.1905165957348,0.649939393939394,4.15512465373961,10.7672655966974,0,403.372217814128,403.31298828125,0.0750061709555784
+5670,308874,3793698,308974,3793598,69,56,25.207756232687,0.122822707301981,19.9766082248126,0.705357142857143,25.9778758441098,0.0191571557260837,0.0609418282548476,6.09418282548476,3,72.9622030257179,0.686795072011105,4.70914127423823,10.0327986587178,0,403.350672403971,403.298156738281,0.113423877956899
+5671,308874,3793598,308974,3793498,70,56,26.8421052631579,0.0917796054564255,9.41388777925981,0.342214663643235,29.5646720707678,0.0177253269274508,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,13.8907908201218,5.19557523727417,403.681627061632,403.447906494141,0.42375725506577
+5672,308874,3793498,308974,3793398,71,56,1.10803324099723,0.0107976006419324,5.19557522077996,0.25,NA,0.0196635554181193,0.0581717451523546,5.81717451523546,6,52.115196963003,0.568658088235294,1.66204986149584,39.877334912618,14.6953058242798,404.584943135579,403.994323730469,0.539336367499855
+5673,308874,3793398,308974,3793298,72,56,72.2991689750693,0.70454344188609,34.4096554721386,0.88250319284802,NA,0.0203437925969804,0.105263157894737,10.5263157894737,4,76.3829729207296,0.733893557422969,5.54016620498615,2.82342346091019,0,405.374237060547,405.145965576172,0.37551924343848
+5674,308874,3793298,308974,3793198,73,56,67.3130193905817,0.655954238997394,33.0319018846624,0.883401920438957,NA,0.0249781927959702,0.0664819944598338,6.64819944598338,5,68.0829528455465,0.689910979228487,4.98614958448753,10.0289886196454,0,406.104426066081,405.700408935547,0.566818158873622
+5675,308874,3793198,308974,3793098,74,56,5.26315789473684,0.053988003209662,25.9778758441098,0.316666666666667,NA,0.0150376716495406,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,32.4723448753357,25.977876663208,407.08935546875,406.837951660156,0.343276748680098
+5676,308874,3793098,308974,3792998,75,56,0,NA,NA,NA,NA,0.0176664458334941,0,0,0,NA,NA,0,NA,NA,407.222661336263,407.145568847656,0.126617151598176
+5677,308874,3792998,308974,3792898,76,56,2.49307479224377,0.012147300722174,2.97218804259788,0.270833333333333,23.2353185658643,0.0218346523060494,0.0581717451523546,5.81717451523546,4,64.3437477533576,0.601838235294118,3.04709141274238,19.2057060514178,10.3911504745483,407.493469238281,407.375885009766,0.23455573228349
+5678,308874,3792898,308974,3792798,77,56,9.97229916897507,0.0323928019257972,7.975919035309,0.388888888888889,36.5989236271888,0.0268856613553991,0.14404432132964,14.404432132964,4,76.6849751917791,0.698083706047053,5.26315789473684,28.7094062475058,10.3911504745483,408.08683013916,407.598358154297,0.620689176864326
+5679,308874,3792798,308974,3792698,78,56,6.05263157894737,0.0620862036911113,19.8991125067655,0.507246376811594,NA,0.0292617094341518,0.0631578947368421,6.31578947368421,6,61.4200309205746,0.662921348314607,3.42105263157895,56.5563050905863,16.4298515319824,409.543738471137,408.691162109375,1.03694240666297
+5680,308874,3792698,308974,3792598,79,56,18.2825484764543,0.0593868035306282,12.6939134996603,0.602240896358543,14.6953058096335,0.0286625860080122,0.146814404432133,14.6814404432133,1,91.0563849165273,0.845440274011703,14.6814404432133,6.84146886501672,0,410.154698689779,409.757934570312,0.459310424531531
+5681,308874,3792598,308974,3792498,80,56,16.0664819944598,0.07828260465401,18.619943899204,0.592361111111111,20.7823008831198,0.0338916207257067,0.243767313019391,24.3767313019391,3,91.5988409877696,0.831548493968876,22.7146814404432,16.7085117264227,0,410.246575249566,409.980133056641,0.350148452975356
+5682,308874,3792498,308974,3792398,81,56,5.54016620498615,0.053988003209662,20.0560507141047,0.458333333333333,NA,0.0201316194871548,0.07202216066482,7.20221606648199,3,73.3782152082906,0.76345103749545,4.98614958448753,33.8166196529682,10.3911504745483,409.971165974935,409.459045410156,0.382782371716213
+5683,308874,3792398,308974,3792298,82,56,7.63157894736842,0.039141302327005,10.41354323897,0.276785714285714,10.3911503376439,0.0227123469536548,0.105263157894737,10.5263157894737,3,78.180912441832,0.733099209833187,5.26315789473684,55.3534028053284,41.8880653381348,409.436655680339,408.774108886719,0.707077542487861
+5684,308874,3792298,308974,3792198,83,56,1.66204986149584,0.0161964009628986,4.73848229777405,0.5,NA,0.0228983141361994,0.0803324099722992,8.03324099722992,2,77.799355361589,0.838054345039733,5.81717451523546,53.7098680693528,20.7823009490967,407.701482137044,406.227996826172,1.3320598441728
+5685,308874,3792198,308974,3792098,84,56,51.5235457063712,0.251044214924928,27.8638855142061,0.767140539617486,25.9778758441098,0.0284419565395387,0.293628808864266,29.3628808864266,3,89.5857002350499,0.799876809362489,22.1606648199446,1.31499161810245,0,405.692120869954,405.374237060547,0.524357180033528
+5686,308874,3792098,308974,3791998,85,56,22.1606648199446,0.215952012838648,20.921591356831,0.7625,NA,0.0297561775482375,0.232686980609418,23.2686980609418,2,93.2114550465882,0.912533617619267,22.9916897506925,3.55600387709481,0,405.418229844835,405.367156982422,0.104821821325125
+5687,308874,3791998,308974,3791898,86,56,27.8947368421053,0.286136417011209,28.5669212450263,0.734276729559748,NA,0.035782216545608,0.334210526315789,33.4210526315789,3,90.8584707244359,0.824444330373184,23.9473684210526,5.93527657215989,0,405.586283365885,405.461883544922,0.254552831199025
+5688,308874,3791898,308974,3791798,87,56,26.0387811634349,0.126871807542706,16.6820964183877,0.654970760233918,14.6953058096335,0.0380569554025219,0.437673130193906,43.7673130193906,1,97.1580064448117,0.871224732461356,43.7673130193906,5.70718205729617,0,405.968037923177,405.629943847656,0.622946319112668
+5689,308874,3791798,308974,3791698,88,56,17.1745152354571,0.0557876033166508,12.5962749152332,0.598597081930415,16.4043981678328,0.0352563095558024,0.282548476454294,28.2548476454294,4,88.0574215375655,0.702955883283752,16.6204986149584,7.19682502279095,0,406.665959676107,406.034423828125,0.898465486070155
+5690,308874,3791698,308974,3791598,89,56,29.9168975069252,0.0971784057773917,12.4013920050752,0.466481481481481,12.1230087272512,0.0241080088974406,0.0609418282548476,6.09418282548476,2,76.0957836113912,0.780756550407774,4.98614958448754,5.58778236129067,0,406.43499077691,406.155426025391,0.614486424323176
+5691,308874,3791598,308974,3791498,90,56,26.0526315789474,0.133620307943914,21.5066192617018,0.533081501831502,14.6953058096335,0.0358119024652344,0.215789473684211,21.5789473684211,1,93.7669926209779,0.832909048831289,21.5789473684211,9.94470261945957,0,406.15141805013,405.998260498047,0.174047302992738
+5692,308874,3791498,308974,3791398,91,56,26.5927977839335,0.259142415406378,26.6103243663242,0.826388888888889,NA,0.0343226562490146,0.274238227146814,27.4238227146814,3,91.577327142739,0.860665580238442,24.6537396121884,16.9732301500108,0,405.981129964193,405.883605957031,0.142685662990773
+5693,308874,3791398,308974,3791298,92,56,14.1274238227147,0.137669408184638,15.7626494286992,0.787581699346405,NA,0.0407964345589754,0.340720221606648,34.0720221606648,3,90.9723660671606,0.836756227154539,23.8227146814404,21.8212881204559,0,405.805313110352,405.74951171875,0.0715819345821334
+5694,308874,3791298,308974,3791198,93,56,15.7894736842105,0.153865809147537,22.8896315264328,0.701754385964912,NA,0.0280345672415182,0.202216066481994,20.2216066481994,3,90.206521340006,0.843315972222222,18.8365650969529,9.07415069945871,0,405.839952256944,405.758026123047,0.150730272698931
+5695,308874,3791198,308974,3791098,94,56,20,0.0683848040655719,11.3202362003091,0.526909722222222,50.9843333246622,0.0091281169371972,0.142105263157895,14.2105263157895,1,91.0631654736186,0.862128108714295,14.2105263157895,5.18527279076753,0,406.170880635579,405.90673828125,0.302748706315828
+5696,308874,3791098,308974,3790998,95,56,53.185595567867,0.259142415406378,21.9113108716914,0.713148742643125,25.9778758441098,0.0340243271565167,0.415512465373961,41.5512465373961,3,95.7467011337388,0.744920292977165,39.8891966759003,2.14602948824565,0,406.625905354818,406.420562744141,0.294394533021747
+5697,308874,3790998,308974,3790898,96,56,28.5318559556787,0.0695095541324399,11.3135442288835,0.420527670527671,11.4671892316203,0.0288152139521389,0.124653739612188,12.4653739612188,9,62.0199580822252,0.473892405063291,2.77008310249307,11.2095478163825,0,406.897188822428,406.659698486328,0.342532381217664
+5698,308874,3790898,308974,3790798,97,56,19.3905817174515,0.0472395028084543,11.2336663606142,0.535119047619048,22.5814828099787,0.0328030577535108,0.263157894736842,26.3157894736842,5,87.2958994753945,0.752521008403361,19.6675900277008,16.0452441817836,0,407.043619791667,406.769897460938,0.514260750569264
+5699,308874,3790798,308974,3790698,98,56,12.8947368421053,0.066135303931836,12.8603350932845,0.647970085470085,36.7382643477325,0.0222707022004071,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,32.7700204849243,10.3911504745483,407.388341267904,406.824798583984,0.800982494761721
+5700,308874,3790698,308974,3790598,99,56,21.3296398891967,0.207853812357199,23.9067844755914,0.742424242424242,NA,0.0238864180170359,0.116959064327485,11.6959064327485,3,78.8783022468998,0.678857368785213,6.4327485380117,12.0680176615715,0,407.974049886068,407.451507568359,0.599983662229558
+5701,308974,3800598,309074,3800498,0,57,23.1578947368421,0.118773607061214,22.3366199098524,0.671756383712905,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.454437255859,384.356506347656,0.894926343337945
+5702,308974,3800498,309074,3800398,1,57,14,0.0755832044935001,13.0052032123874,0.5,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.45768737793,386.061614990234,0.42403860535181
+5703,308974,3800398,309074,3800298,2,57,20,0.205154412196643,25.732127951183,0.802631578947368,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.897117614746,386.596405029297,0.274289476203832
+5704,308974,3800298,309074,3800198,3,57,35.5263157894737,0.0911047554162725,12.3647995413452,0.586920827710301,23.3800884935015,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.07945505778,386.704620361328,0.344079060337001
+5705,308974,3800198,309074,3800098,4,57,33.1578947368421,0.170062210110375,18.1285323636257,0.736508364813815,46.7601769870031,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.722858428955,386.215240478516,0.665082907146491
+5706,308974,3800098,309074,3799998,5,57,52.75,0.569573433861733,38.0048602018408,0.800157977883096,NA,0.013607202170715,0.025,2.5,1,54.2921731574445,1,2.5,27.4053859710693,25.977876663208,387.604428609212,387.172821044922,0.671017102201329
+5707,308974,3799998,309074,3799898,6,57,50.2631578947368,0.51558543065209,31.9440557683819,0.842931937172775,NA,0.00247524216414795,0,0,0,NA,NA,0,NA,NA,388.414934158325,387.8759765625,0.473011333638309
+5708,308974,3799898,309074,3799798,7,57,53.1578947368421,0.272639416208697,29.1549118300543,0.742770655270655,10.3911504415562,0.00718163492448711,0.0368421052631579,3.68421052631579,3,57.206714896318,0.636612021857924,1.84210526315789,9.67286028180804,0,388.962468465169,388.741790771484,0.312045261180985
+5709,308974,3799798,309074,3799698,8,57,36.3157894736842,0.186258611073268,13.8720546810552,0.434914841849148,10.3911504415562,0.00432905473866604,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,13.586265484492,0,389.372539520264,388.979766845703,0.399584425575956
+5710,308974,3799698,309074,3799598,9,57,34.25,0.369817821986054,29.7240558765695,0.840632603406326,NA,0.000953291253008501,0.045,4.5,3,65.8644082722349,0.689742098119062,3,7.43864117728339,0,389.648048400879,389.324829101562,0.30063982237559
+5711,308974,3799598,309074,3799498,10,57,26.3157894736842,0.0674850040120537,8.92208811436715,0.491466388018112,22.3334053111454,0.0142228245656282,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,1.29889380931854,0,389.716955184937,389.651977539062,0.101531287691125
+5712,308974,3799498,309074,3799398,11,57,51.0526315789474,0.174561210377846,13.9630367990572,0.468936678614098,21.1479004856402,0.013636741379148,0.0605263157894737,6.05263157894737,3,67.7714113170726,0.615624027388733,2.36842105263158,1.44893604776134,0,389.953769683838,389.798553466797,0.231199000667297
+5713,308974,3799398,309074,3799298,12,57,58.421052631579,0.299633417813518,23.0953944462198,0.753612887941246,15.5867255064659,0.0202339766504768,0.110526315789474,11.0526315789474,4,72.791081934307,0.667472289357446,3.68421052631579,6.32008377710978,0,390.268333435059,390.060150146484,0.217394955653423
+5714,308974,3799298,309074,3799198,13,57,43.75,0.236197514042188,19.5079022040871,0.709184142752024,14.6953058096309,0.012481673835432,0.03,3,3,53.6515440961723,0.575500303214069,1.5,3.75382312138875,0,390.252828598022,390.011596679688,0.208504626063709
+5715,308974,3799198,309074,3799098,14,57,39.2105263157895,0.40221062391184,29.3133114089277,0.833333333333333,NA,0.0188595293509503,0.068421052631579,6.8421052631579,4,71.8313098195607,0.581094116025906,4.21052631578947,1.19897890090942,0,390.099215189616,389.930145263672,0.210501103802384
+5716,308974,3799098,309074,3798998,15,57,39.2105263157895,0.40221062391184,35.3866674311202,0.806487695749441,NA,0.0298272972385492,0.273684210526316,27.3684210526316,4,85.4221287237181,0.793846392311865,12.1052631578947,11.8832925833189,0,389.862047195435,389.767456054688,0.128078311029084
+5717,308974,3798998,309074,3798898,16,57,37.1052631578947,0.380615422627983,27.5296424300529,0.871158392434988,NA,0.029583060037265,0.313157894736842,31.3157894736842,4,89.5360552054459,0.78430537817511,15.5263157894737,16.0753004090125,0,389.769869486491,389.724761962891,0.101671701822402
+5718,308974,3798898,309074,3798798,17,57,30.5,0.329326819578822,26.921526706304,0.822404371584699,NA,0.0119686100829858,0.11,11,2,82.8449168720239,0.817795323413301,7,8.44948792457581,0,389.926340103149,389.7431640625,0.318421721544505
+5719,308974,3798798,309074,3798698,18,57,1.57894736842105,0.0161964009628929,4.73848229777347,0.5,NA,0.0112690253660395,0.0736842105263158,7.36842105263158,2,80.1553974765362,0.784090909090909,6.31578947368421,22.3960965360914,10.3911504745483,390.328328450521,390.023376464844,0.562861159484887
+5720,308974,3798698,309074,3798598,19,57,24.2105263157895,0.0413908024607263,8.13446265925054,0.351413066838599,13.1933561691548,0.0355339038786233,0.155263157894737,15.5263157894737,4,85.1023388531962,0.825911673080447,13.4210526315789,13.6826861106743,0,391.268320083618,390.428588867188,0.560363647471766
+5721,308974,3798598,309074,3798498,20,57,24.7368421052632,0.253743615085322,27.1664602363813,0.794326241134752,NA,0.012393537982452,0.1,10,4,73.3747557156805,0.62962962962963,4.73684210526316,11.3030176413687,0,391.625239054362,391.526824951172,0.13671592386286
+5722,308974,3798498,309074,3798398,21,57,25,0.269940016048215,29.4518862008088,0.8,NA,0.000732038884380017,0.0875,8.75,6,66.4333137043215,0.622106754841757,4.25,20.2578692299979,5.19557523727417,391.560211181641,391.386535644531,0.151889804413486
+5723,308974,3798398,309074,3798298,22,57,19.4736842105263,0.199755611875679,27.9243057967511,0.759009009009009,NA,0.0236290133129315,0.144736842105263,14.4736842105263,7,70.9230335948561,0.593846153846154,4.73684210526316,32.0996671069752,7.34765291213989,391.27224222819,391.082366943359,0.209446943932232
+5724,308974,3798298,309074,3798198,23,57,17.3684210526316,0.0890802052959109,13.9516936268041,0.4609375,20.7823008831125,0.026967756059419,0.2,20,4,81.4822575149047,0.710820895522388,8.15789473684211,34.9083243859442,0,390.968454360962,390.43359375,0.388802585540239
+5725,308974,3798198,309074,3798098,24,57,22.6315789473684,0.0773828046004882,11.8939164777468,0.423230192217534,20.7823008831125,0.0178994266449177,0.1,10,3,79.3340543957438,0.805996472663139,7.89473684210526,35.8900822087338,10.3911504745483,390.949091593424,390.276336669922,0.609317553835569
+5726,308974,3798098,309074,3797998,25,57,7.25,0.0260942015513274,6.38602954522055,0.468364197530864,25.7846102832026,0.0281276713634955,0.2,20,4,86.2645220198315,0.762323943661972,11.25,28.9723423242569,0,391.641584396362,391.176788330078,0.501128670655581
+5727,308974,3797998,309074,3797898,26,57,0,NA,NA,NA,NA,0.0289858702545691,0.207894736842105,20.7894736842105,5,79.7839712655709,0.702420503084955,7.36842105263158,44.0881441333626,15.5867252349854,391.941263198853,391.635406494141,0.340814242271269
+5728,308974,3797898,309074,3797798,27,57,13.6842105263158,0.0701844041725358,11.6648993185391,0.704901960784314,25.9778761038906,0.0186760841612723,0.134210526315789,13.421052631579,3,84.5039952978654,0.800859448695105,10.2631578947368,8.09721281014237,0,392.412740071615,392.036529541016,0.447182797651337
+5729,308974,3797798,309074,3797698,28,57,23.1578947368421,0.0593868035306072,11.00103398189,0.62752109002109,19.4834069610166,0.0304819071009038,0.205263157894737,20.5263157894737,4,85.2626040912054,0.772051060562434,11.0526315789474,10.0832638190343,0,392.969486236572,392.641540527344,0.370077612683055
+5730,308974,3797698,309074,3797598,29,57,18.5,0.0998778059378395,17.0606527062537,0.63755980861244,20.7823008831125,0.00214706236227357,0.095,9.5,2,83.0657416222512,0.859686047531351,8.25,33.8899572773984,10.3911504745483,393.519683837891,393.126342773438,0.664559450904468
+5731,308974,3797598,309074,3797498,30,57,25.5263157894737,0.0872806051889228,13.3420989857852,0.559100748240187,21.3443846445704,0.0183474418607818,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,19.5692540804545,11.6176595687866,395.112752914429,393.744659423828,1.23349350756238
+5732,308974,3797498,309074,3797398,31,57,0.526315789473684,0.00539880032096429,2.59778761038906,0.166666666666667,NA,0.0381901138338172,0.307894736842105,30.7894736842105,4,90.7681040513265,0.843245569983499,26.0526315789474,47.6544833713108,0,397.037551879883,396.243896484375,0.900239624965573
+5733,308974,3797398,309074,3797298,32,57,11.0526315789474,0.0283437016850625,6.07475264850913,0.442418981481482,30.9674432367472,0.00103593886307689,0,0,0,NA,NA,0,NA,NA,398.146171569824,397.428375244141,0.572760503596365
+5734,308974,3797298,309074,3797198,33,57,3.25,0.017546101043134,4.75389245551747,0.378787878787879,105.202379310672,-0.0274355513821502,0.08,8,1,86.6550847056172,0.895484949832776,8,44.3428198099136,33.2679138183594,398.750798543294,398.537902832031,0.223795557415544
+5735,308974,3797198,309074,3797098,34,57,86.8421052631579,0.890802052959109,36.4800681511718,0.922222222222222,NA,-0.2307916744171,0,0,0,NA,NA,0,NA,NA,399.236196517944,398.786743164062,0.490243557140821
+5736,308974,3797098,309074,3796998,35,57,80.2631578947368,0.823317048947055,36.7555107954017,0.897814207650273,NA,-0.135684892272816,0.0763157894736842,7.63157894736842,1,85.8336389547059,0.930896526641207,7.63157894736842,11.0155656091098,0,400.13954671224,399.644500732422,0.583954853827794
+5737,308974,3796998,309074,3796898,36,57,84.4736842105263,0.866507451514769,36.3632711016769,0.906022845275182,NA,-0.0300782446895985,0.0605263157894737,6.05263157894737,1,83.4283422491937,0.852163087457205,6.05263157894737,8.02989717151808,0,401.284883499146,400.2568359375,1.22760000085801
+5738,308974,3796898,309074,3796798,37,57,28.5,0.0769329045737412,8.49112508363628,0.475935093509351,16.8856193506275,0.049057733327063,0.4475,44.75,1,97.3954200762954,0.890637175158234,44.75,8.13289370616721,0,403.922409057617,402.492523193359,1.4352852149626
+5739,308974,3796798,309074,3796698,38,57,0,NA,NA,NA,NA,0.0419189287537225,0.310526315789474,31.0526315789474,3,93.6118953352765,0.85767282585432,29.4736842105263,45.0634720689159,18.7329120635986,405.139440536499,404.649322509766,0.344500228903587
+5740,308974,3796698,309074,3796598,39,57,36.8421052631579,0.18895801123375,16.18975718614,0.48731884057971,36.7382645240773,0.022907405822403,0.115789473684211,11.5789473684211,3,82.4598619361767,0.740186615186615,9.21052631578947,12.9246235652403,0,405.178686141968,405.090606689453,0.147935274463138
+5741,308974,3796598,309074,3796498,40,57,32.6315789473684,0.0669451239799572,10.199383735953,0.446029616378454,17.7678483035902,0.0260106278786368,0.144736842105263,14.4736842105263,7,72.681611015884,0.606153846153846,5.78947368421053,4.10112387050282,0,405.606786092122,405.336364746094,0.36537581629119
+5742,308974,3796498,309074,3796398,41,57,27.8947368421053,0.143068208505554,17.6571746297792,0.750703828828829,20.7823006752878,0.0281377355628042,0.168421052631579,16.8421052631579,3,86.5742246167388,0.881894213381555,13.4210526315789,7.30141285806894,0,405.678182601929,405.104156494141,0.547189689029618
+5743,308974,3796398,309074,3796298,42,57,28.5,0.0769329045737412,13.8004903283984,0.591828160578161,16.5066072154315,0.0304537670315585,0.215,21.5,4,87.9665437131299,0.79184879896757,14.25,11.505511073179,0,404.42534383138,403.652801513672,1.05416784242738
+5744,308974,3796298,309074,3796198,43,57,81.0526315789474,0.831415249428501,37.7384151383789,0.866883116883117,NA,0.0332004541620623,0.134210526315789,13.4210526315789,7,70.1369183654332,0.668099081158509,4.47368421052632,3.33278595232496,0,403.753313064575,403.325866699219,0.53144271193148
+5745,308974,3796198,309074,3796098,44,57,89.2105263157895,0.915096654403448,37.8249873787007,0.902654867256637,NA,0.0280063636869224,0.0947368421052632,9.47368421052632,4,73.3135500521919,0.687015503875969,5,0,0,403.111221313477,402.000701904297,1.08861851844403
+5746,308974,3796098,309074,3795998,45,57,22.3684210526316,0.0458898027281965,7.30223995375739,0.248444444444444,15.0382140923814,0.0329453972106613,0.186842105263158,18.6842105263158,4,86.9298453574441,0.862265372168285,16.5789473684211,26.056971617148,0,399.897024154663,398.471282958984,1.95641084796278
+5747,308974,3795998,309074,3795898,46,57,1.5,0.0161964009628929,7.79336275323294,0.277777777777778,NA,0.0132766115184086,0.03,3,5,42.6662458924213,0.393571861734384,1.25,50.3385403951009,41.5646018981934,398.403071085612,398.361389160156,0.0845173790415506
+5748,308974,3795898,309074,3795798,47,57,13.1578947368421,0.134970008024107,25.8317430905601,0.683333333333333,NA,0.0040634371489049,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,50.2238947550456,46.7601776123047,398.465717315674,398.383056640625,0.114027493967799
+5749,308974,3795798,309074,3795698,48,57,22.8947368421053,0.117423906980973,13.8722769585323,0.518574297188755,26.4923391803507,0.0296900457506964,0.126315789473684,12.6315789473684,3,82.5461129681383,0.846459006758742,10,2.29761030276616,0,398.624198913574,398.396697998047,0.300576250757036
+5750,308974,3795698,309074,3795598,49,57,38.6842105263158,0.132270607863625,20.3023326734187,0.612972435350952,15.867767439151,0.0341277362784336,0.165789473684211,16.5789473684211,5,79.3182315501966,0.749354746200172,9.21052631578947,2.4599339167277,0,398.953550338745,398.44775390625,0.478847785897963
+5751,308974,3795598,309074,3795498,50,57,5.5,0.00989780058843454,3.4105377160625,0.294444444444444,18.8743914344272,0.0182107554361573,0.04,4,5,48.8590914048244,0.479166666666667,1.25,14.2980591952801,5.19557523727417,399.384292602539,398.956146240234,0.480198929585581
+5752,308974,3795498,309074,3795398,51,57,1.57894736842105,0.0161964009628929,7.17094961417602,0.305555555555556,NA,0.0248669409076492,0.0605263157894737,6.05263157894737,8,46.7396223944786,0.438219732337379,1.57894736842105,28.3284416406051,5.19557523727417,399.723083496094,399.442993164062,0.399418434712954
+5753,308974,3795398,309074,3795298,52,57,32.3684210526316,0.166013109869652,16.0062399187853,0.555555555555556,36.3690261817537,0.029710953553015,0.126315789473684,12.6315789473684,7,68.0356118761043,0.581251836614752,3.42105263157895,17.241420785586,0,399.590016682943,399.083374023438,0.49091485422331
+5754,308974,3795298,309074,3795198,53,57,48.4210526315789,0.165563209842905,13.6601489102181,0.441230158730159,20.4895333228597,0.0197830077923802,0.05,5,5,58.5340786455186,0.491833030852995,2.63157894736842,7.60972033048931,0,398.842157363892,398.437774658203,0.399052565869378
+5755,308974,3795198,309074,3795098,54,57,51,0.275338816369179,31.5887744869594,0.698784722222222,16.4298514359611,0.0219554156408685,0.0725,7.25,11,43.7607302334503,0.403567127372828,1.5,4.52241512824749,0,398.371334075928,398.065582275391,0.290323043908791
+5756,308974,3795098,309074,3794998,55,57,37.8947368421053,0.129571207703143,25.3783123230213,0.640316859066859,12.1230087272512,0.0230412267285589,0.0973684210526316,9.73684210526316,5,70.2029309756643,0.673087033408211,4.47368421052632,2.62794676342526,0,398.031491597493,397.943054199219,0.149517053140367
+5757,308974,3794998,309074,3794898,56,57,15.2631578947368,0.0782826046539823,21.0752092240984,0.552020202020202,62.3469020258635,0.0208758403426863,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,14.4342788696289,0,398.056047439575,397.880126953125,0.590464009638667
+5758,308974,3794898,309074,3794798,57,57,39.7368421052632,0.135869808077601,22.9277649171398,0.655473800170439,19.0504422856805,0.0295241369349625,0.110526315789474,11.0526315789474,8,64.3587399230091,0.635802983581965,3.68421052631579,3.08733665375482,0,400.255533854167,399.454345703125,1.42979361626839
+5759,308974,3794798,309074,3794698,58,57,6,0.0215952012838572,4.39888901906065,0.38562091503268,32.3594388109087,0.0247891911292754,0.08,8,6,68.3157295351421,0.707357859531773,5.25,9.57210102677345,0,401.563486099243,401.248779296875,0.359480490272362
+5760,308974,3794698,309074,3794598,59,57,19.4736842105263,0.199755611875679,25.8515914900514,0.779279279279279,NA,0.0277286886338085,0.123684210526316,12.3684210526316,2,87.1444161154673,0.786036036036036,11.3157894736842,22.3815876778136,10.3911504745483,401.909754435221,401.692443847656,0.266688466020368
+5761,308974,3794598,309074,3794498,60,57,4.47368421052632,0.0229449013640983,6.76355931777274,0.478571428571429,79.1366434032164,0.0262404643335015,0.1,10,6,67.1616349944523,0.62962962962963,3.15789473684211,26.5005198654376,0,402.088634490967,401.42431640625,0.499183120843535
+5762,308974,3794498,309074,3794398,61,57,19.4736842105263,0.0221950679861865,5.80067381689997,0.231095828258949,13.6514078767464,0.0341725274790262,0.252631578947368,25.2631578947368,6,82.5326589609682,0.64993449066492,9.73684210526316,10.504311606288,0,401.376200358073,400.868286132812,0.650285844923825
+5763,308974,3794398,309074,3794298,62,57,0.75,0.00404910024072322,1.29889380519453,0.0833333333333333,51.9557522077812,0.0173662843371858,0.0675,6.75,5,64.8516317057343,0.600972629216285,3.5,20.5120248971162,7.34765291213989,400.866220474243,400.65087890625,0.274103567245372
+5764,308974,3794298,309074,3794198,63,57,6.31578947368421,0.0647856038515715,25.5041577180765,0.416666666666667,NA,0.0137826945559745,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,54.2948280334473,49.28955078125,401.053090413411,400.7890625,0.339328462032608
+5765,308974,3794198,309074,3794098,64,57,31.3157894736842,0.160614309548688,28.1254719150973,0.666008141762452,10.3911503376439,0.020017580927417,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,14.5155146598816,7.34765291213989,401.484750747681,401.039611816406,0.38818496418378
+5766,308974,3794098,309074,3793998,65,57,9.21052631578947,0.0472395028084376,8.94525489735387,0.644886363636364,62.563010136087,0.0147110910206289,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,21.3660284996033,7.34765291213989,402.221064249674,401.949584960938,0.466778688878425
+5767,308974,3793998,309074,3793898,66,57,16,0.0246802300386939,5.98971016615633,0.311904761904762,17.0711757254138,0.016765272578923,0.0375,3.75,3,61.9676316777521,0.669421487603306,2.5,12.2307416598002,5.19557523727417,402.810758590698,402.492218017578,0.311950179497597
+5768,308974,3793898,309074,3793798,67,57,39.2105263157895,0.20110531195592,28.294600327579,0.747300084941148,31.1734513246687,0.0140412163250738,0.0263157894736842,2.63157894736842,3,55.4123115952091,0.525987525987526,1.84210526315789,5.1064332485199,0,403.18815612793,403.016418457031,0.205690909665579
+5769,308974,3793798,309074,3793698,68,57,9.73684210526316,0.0199755611875679,5.73299839436335,0.305672514619883,25.4399045209963,0.0182630399756542,0.0289473684210526,2.89473684210526,2,62.6104325016174,0.65672990063234,2.10526315789474,9.79344255273992,0,403.528938293457,403.353546142578,0.276441003664704
+5770,308974,3793698,309074,3793598,69,57,17.6315789473684,0.045214952688076,10.6041862330323,0.497551406926407,13.6021925074861,0.0212170466767642,0.107894736842105,10.7894736842105,3,83.242971163432,0.707579838399384,8.94736842105263,14.0195037678974,5.19557523727417,403.846513748169,403.42626953125,0.610853060356886
+5771,308974,3793598,309074,3793498,70,57,19.25,0.0519634530892813,11.1821815846305,0.523081374643875,10.3911504415562,0.0135580310657929,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.8606809616089,5.19557523727417,404.30357615153,403.639862060547,0.740665899375932
+5772,308974,3793498,309074,3793398,71,57,16.5789473684211,0.0850311050551876,15.1098970101328,0.639042867701404,15.5867255064659,0.00903970427660313,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483,404.866153717041,404.269866943359,0.591281355506147
+5773,308974,3793398,309074,3793298,72,57,18.1578947368421,0.0620862036910894,10.244097227725,0.567806267806268,15.5867255064659,0.0156364526168928,0.0447368421052632,4.47368421052632,3,67.915568560165,0.706887052341598,3.42105263157895,14.935122349683,5.19557523727417,405.564300537109,405.236968994141,0.585454546224541
+5774,308974,3793298,309074,3793198,73,57,4.73684210526316,0.0242946014443393,6.86263915996344,0.433333333333333,58.0882968607784,0.0190783051997546,0.0473684210526316,4.73684210526316,5,52.390664143755,0.494577450378555,1.57894736842105,20.1230858167013,5.19557523727417,406.41886138916,405.693572998047,0.615359683969315
+5775,308974,3793198,309074,3793098,74,57,4.25,0.0458898027281965,22.0047889503048,0.313725490196078,NA,0.0227110886915398,0.11,11,3,84.274758125202,0.696325539022168,9,22.7966604883021,10.3911504745483,407.118637084961,406.906463623047,0.225791393113067
+5776,308974,3793098,309074,3792998,75,57,0,NA,NA,NA,NA,0.0177809152148065,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,97.9313583374023,95.5194931030273,407.251710891724,407.199249267578,0.0798996911404284
+5777,308974,3792998,309074,3792898,76,57,0,NA,NA,NA,NA,0.0192057877500223,0.068421052631579,6.84210526315789,3,73.6429427569107,0.790547058012953,5.26315789473684,79.3519429426927,44.3910140991211,407.437548319499,407.321655273438,0.231568252945776
+5778,308974,3792898,309074,3792798,77,57,6.8421052631579,0.0350922020862679,8.71663461330181,0.529448621553885,31.1734513246687,0.0307830224966701,0.171052631578947,17.1052631578947,5,85.1465642098568,0.754459896052816,13.9473684210526,11.733511029757,0,408.266567230225,407.737915039062,0.68232978261905
+5779,308974,3792798,309074,3792698,78,57,0.5,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0223620847049096,0.1225,12.25,2,87.4064067164286,0.769366436033103,10.75,18.5579354519747,5.19557523727417,409.607538859049,409.106353759766,0.809454652364089
+5780,308974,3792698,309074,3792598,79,57,12.3684210526316,0.126871807542661,23.5421722186309,0.673758865248227,NA,0.0198726936269515,0.0815789473684211,8.15789473684211,5,64.5468241544221,0.564469914040115,2.36842105263158,10.5958517751386,0,410.143203735352,409.213958740234,0.577138129458572
+5781,308974,3792598,309074,3792498,80,57,3.15789473684211,0.0161964009628929,7.08487523021176,0.151515151515152,25.9778758441098,0.0238158974828174,0.115789473684211,11.5789473684211,3,83.552760105708,0.679054054054054,9.21052631578947,19.0772181315856,5.19557523727417,410.457178751628,410.051666259766,0.332528931677759
+5782,308974,3792498,309074,3792398,81,57,6.31578947368421,0.0323928019257858,9.03909938365029,0.257246376811594,20.7823006752878,0.0337438351567279,0.268421052631579,26.8421052631579,4,91.8511826865544,0.746039234186421,23.9473684210526,28.7137441588383,0,409.934700012207,409.396270751953,0.510950113521917
+5783,308974,3792398,309074,3792298,82,57,4.75,0.0256443015245804,10.8683902257419,0.367063492063492,20.7823006752878,0.031546202611944,0.205,20.5,5,85.8909390176405,0.757102580785079,14.75,23.8151170625919,0,409.005564371745,408.111968994141,0.858173287519898
+5784,308974,3792298,309074,3792198,83,57,4.73684210526316,0.0242946014443393,6.04856863317396,0.473214285714286,74.3893162992347,0.0130907998306563,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,11.0044050216675,10.3911504745483,407.284442901611,405.903656005859,1.20059508026451
+5785,308974,3792198,309074,3792098,84,57,49.2105263157895,0.252393915005081,28.3304852180718,0.793233580508474,25.9778758441098,0.0374562777357488,0.268421052631579,26.8421052631579,5,85.2473045269731,0.753508668475056,12.1052631578947,4.05927025570589,0,405.489583969116,405.236877441406,0.421999464191374
+5786,308974,3792098,309074,3791998,85,57,24.7368421052632,0.0845812050284406,14.8950792984975,0.671068427370948,15.8677675430633,0.0132059456737663,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,5.62599077224731,0,405.295842488607,405.237274169922,0.0767952567389499
+5787,308974,3791998,309074,3791898,86,57,0,NA,NA,NA,NA,0.011290029863485,0.015,1.5,2,46.1375166841518,0.564902102973169,1,39.8671337763468,29.3906116485596,405.428922653198,405.330535888672,0.135897981050577
+5788,308974,3791898,309074,3791798,87,57,11.8421052631579,0.121473007221697,18.7957042271685,0.685185185185185,NA,0.00920133931569198,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,5.9243578116099,0,405.651992797852,405.544555664062,0.235943708836421
+5789,308974,3791798,309074,3791698,88,57,0,NA,NA,NA,NA,0.00707029659908202,0.0157894736842105,1.57894736842105,1,62.3749377455957,1,1.57894736842105,22.3818928400675,16.4298515319824,405.877599716187,405.752410888672,0.188685723555551
+5790,308974,3791698,309074,3791598,89,57,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0142282046683249,0.0657894736842105,6.57894736842105,2,76.0314801779626,0.812676056338028,4.21052631578947,28.069907207489,0,405.896448771159,405.851043701172,0.157193171350492
+5791,308974,3791598,309074,3791498,90,57,5.25,0.0283437016850625,6.57231303668853,0.55952380952381,64.2657162255263,0.0150867408962949,0.0325,3.25,5,43.1106450527068,0.425782371518806,1,22.5537570073054,10.3911504745483,405.975870132446,405.933868408203,0.0784363029559438
+5792,308974,3791498,309074,3791398,91,57,15.7894736842105,0.0809820048144644,15.0152616442552,0.686503522432332,20.7823006752878,0.00914885618937517,0.0421052631578947,4.21052631578947,5,49.7360608351484,0.478021978021978,1.57894736842105,26.8354817926884,5.19557523727417,405.947057088216,405.892852783203,0.098512121390427
+5793,308974,3791398,309074,3791298,92,57,34.2105263157895,0.350922020862679,25.7005468995632,0.82948717948718,NA,0.017099024996117,0.105263157894737,10.5263157894737,6,68.6964955056531,0.699736611062335,3.94736842105263,15.106183218956,0,405.957530975342,405.839416503906,0.200275563991032
+5794,308974,3791298,309074,3791198,93,57,45.2631578947368,0.154765609200976,13.9931421540568,0.64409883155377,22.5141590648952,0.0302296546980199,0.218421052631579,21.8421052631579,5,86.0180918230996,0.677958725577773,10.7894736842105,3.32721204068287,0,406.139030456543,405.885803222656,0.353424430841327
+5795,308974,3791198,309074,3791098,94,57,42,0.151166408987,20.5969092229224,0.739263813162222,17.3185838960732,0.0327099119576997,0.19,19,7,79.3674795856227,0.631472268288189,6.5,4.58957719175439,0,406.655935287476,406.204010009766,0.484168696024892
+5796,308974,3791098,309074,3790998,95,57,56.0526315789474,0.191657411394232,17.3530434307038,0.741807350063906,20.7823007445627,0.0345863657461259,0.239473684210526,23.9473684210526,9,77.5849393445598,0.569823572130377,9.21052631578947,2.27116702677129,0,406.886436462402,406.648162841797,0.271784365875389
+5797,308974,3790998,309074,3790898,96,57,15,0.0384664522868706,7.07990762725593,0.438825757575758,27.944051239325,0.0263549511110461,0.176315789473684,17.6315789473684,4,84.8473314323081,0.740586002566833,12.3684210526316,15.7940880149158,0,406.659755706787,406.551605224609,0.143028348152654
+5798,308974,3790898,309074,3790798,97,57,20.7894736842105,0.106626306339045,11.108474637073,0.673941798941799,14.6953058096309,0.0369821135164353,0.286842105263158,28.6842105263158,3,89.7913692188701,0.829171895779871,19.4736842105263,13.3471428407442,0,406.579554239909,406.528350830078,0.0935191862396474
+5799,308974,3790798,309074,3790698,98,57,0,NA,NA,NA,NA,0.0220889053177643,0.075,7.5,5,66.1192604030357,0.624931053502482,3.5,56.7952833175659,26.4923400878906,406.6819190979,406.527709960938,0.235453345303245
+5800,308974,3790698,309074,3790598,99,57,27.3684210526316,0.140368808345072,15.1302407351683,0.604166666666667,31.1734510129318,0.0398995997098155,0.333333333333333,33.3333333333333,3,90.6388934403333,0.738532110091743,22.2222222222222,6.60729268391927,0,407.050394058228,406.745635986328,0.388688591335937
+5801,309074,3800598,309174,3800498,0,58,31.5789473684211,0.0615463236590147,11.0412582608771,0.595597147950089,18.15555915211,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.345893859863,385.612884521484,0.700899955852189
+5802,309074,3800498,309174,3800398,1,58,24.2105263157895,0.124172407382223,20.3674906402997,0.533130081300813,25.9778761038998,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.693437364366,386.57177734375,0.213428161550857
+5803,309074,3800398,309174,3800298,2,58,32.1329639889197,0.104376806205347,15.1905960322663,0.524864024864025,24.2460176969731,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.931142171224,386.808349609375,0.198622114267652
+5804,309074,3800298,309174,3800198,3,58,31.3019390581717,0.101677406044863,16.6305726721766,0.633327098141913,17.8806678490735,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.35152859158,387.162719726562,0.360416422927989
+5805,309074,3800198,309174,3800098,4,58,61.7728531855956,0.300983117893866,26.0570956678546,0.82875343119704,20.7823008831198,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.766293843587,387.478668212891,0.562277193894304
+5806,309074,3800098,309174,3799998,5,58,55.2631578947368,0.188958011233817,22.6333786740981,0.784705387205387,16.7243041674623,0.0157903055627891,0.0855263157894737,8.55263157894737,2,71.4161278742789,0.635491606714628,7.23684210526316,9.75737560712374,5.19557523727417,388.089484320747,387.627197265625,0.498715841979395
+5807,309074,3799998,309174,3799898,6,58,39.3351800554017,0.1916574113943,24.6907571131948,0.734752415458937,15.5867256623399,0.0219943001967317,0.155124653739612,15.5124653739612,4,84.2885224732091,0.792563799222579,12.7423822714681,5.71707097121647,0,388.483205159505,388.236511230469,0.219724487525729
+5808,309074,3799898,309174,3799798,7,58,38.5041551246537,0.187608311153576,26.3684579774452,0.716215042556887,25.9778761038998,0.0201480203208035,0.182825484764543,18.2825484764543,3,86.2944231581821,0.808459837877671,13.0193905817175,6.46018571564646,0,388.721045600043,388.657592773438,0.119870871294417
+5809,309074,3799798,309174,3799698,8,58,26.5927977839335,0.0647856038515944,13.6613238356773,0.525808759487371,19.4834069480298,0.0240677272242838,0.193905817174515,19.3905817174515,4,86.4831444887157,0.768027267901545,11.9113573407202,4.33564916338239,0,388.957310994466,388.778350830078,0.264491771326777
+5810,309074,3799698,309174,3799598,9,58,20,0.102577206098358,25.5128733624055,0.609027777777778,21.4219054085159,0.020684801585448,0.144736842105263,14.4736842105263,2,90.2444511864912,0.790769230769231,14.2105263157895,6.33524782007391,0,389.519541422526,389.292327880859,0.369007608699101
+5811,309074,3799598,309174,3799498,10,58,7.4792243767313,0.0182209510832609,5.23553607388162,0.311631944444444,30.2562569473549,0.0183703094124897,0.0609418282548476,6.09418282548476,4,66.401433406757,0.592833593614437,3.601108033241,33.0490267276764,5.19557523727417,389.82837677002,389.663452148438,0.184870544806288
+5812,309074,3799498,309174,3799398,11,58,16.0664819944598,0.039141302327005,9.44730038250837,0.46412037037037,14.2878318051869,0.0137147169166849,0.0692520775623269,6.92520775623269,7,62.7714821508643,0.4359375,3.8781163434903,8.27726356506348,5.19557523727417,389.902725219727,389.845581054688,0.0762329087536648
+5813,309074,3799398,309174,3799298,12,58,37.6731301939058,0.367118421825702,29.6551616276807,0.786764705882353,NA,0.0158919583412768,0.0969529085872576,9.69529085872576,2,80.108117033544,0.618151047175799,6.09418282548476,7.86758533205305,5.19557523727417,389.930202907986,389.851318359375,0.119003159731268
+5814,309074,3799298,309174,3799198,13,58,6.05263157894737,0.0124172407382223,4.3016995016809,0.29265873015873,15.923975856863,0.040237184543711,0.313157894736842,31.3157894736842,4,90.658607937374,0.831488576699305,25.7894736842105,15.5924291570647,0,389.880093892415,389.807159423828,0.151046521418723
+5815,309074,3799198,309174,3799098,14,58,6.92520775623269,0.0674850040120775,16.7208055470917,0.573333333333333,NA,0.0265788931226734,0.28808864265928,28.808864265928,3,93.6236696842842,0.759628789612768,27.4238227146814,26.075100009258,0,389.855902777778,389.80859375,0.0892233525882508
+5816,309074,3799098,309174,3798998,15,58,10.2493074792244,0.0249694514844687,6.25802624189051,0.464583333333333,33.3187652874871,0.0444627133469933,0.299168975069252,29.9168975069252,6,87.327036250808,0.780480389176041,24.3767313019391,11.8728283952784,0,389.886795043945,389.8388671875,0.0947852420529194
+5817,309074,3798998,309174,3798898,16,58,3.601108033241,0.0116974006954268,4.26341279355229,0.325925925925926,59.7845106565204,0.0271351819228433,0.199445983379501,19.9445983379501,5,86.7107602801323,0.763943001934447,16.8975069252078,27.3245433701409,10.3911504745483,390.035732693142,389.869476318359,0.337274357815144
+5818,309074,3798898,309174,3798798,17,58,23.9473684210526,0.122822707301981,15.7153856335363,0.654367469879518,15.5867255064659,0.00791445147009366,0.0578947368421053,5.78947368421053,3,74.1547953951066,0.719027275714755,4.73684210526316,10.9612970785661,0,390.823933919271,390.282379150391,0.723206395654326
+5819,309074,3798798,309174,3798698,18,58,19.1135734072022,0.093129305536667,17.8797302386853,0.5071044546851,20.7823008831198,0.0151502734805242,0.0997229916897507,9.97229916897507,3,79.8338303966126,0.796358974358974,7.20221606648199,7.92279312345717,0,391.429066975911,390.998413085938,0.517401648699539
+5820,309074,3798698,309174,3798598,19,58,39.8891966759003,0.0971784057773917,17.8200460387755,0.564706201802976,17.0964007481854,0.0161050481098687,0.0304709141274238,3.04709141274238,5,38.4585247833076,0.381142857142857,1.10803324099723,0.944650043140758,0,391.805015563965,391.544189453125,0.29429915240646
+5821,309074,3798598,309174,3798498,20,58,42.382271468144,0.103252056138479,15.1800150867398,0.63418911335578,13.3793375094594,0.0118977016150752,0.130193905817175,13.0193905817174,7,69.0309183204914,0.611982484076433,5.26315789473684,9.26843824792416,0,391.840091281467,391.776672363281,0.113536423791856
+5822,309074,3798498,309174,3798398,21,58,34.7368421052632,0.0712641642367539,8.96087361771688,0.318275862068966,18.170831135961,0.0375050057855429,0.347368421052632,34.7368421052632,5,89.6721562998198,0.739325391513854,16.3157894736842,7.49750579848434,0,391.625902811686,391.489532470703,0.157952624537616
+5823,309074,3798398,309174,3798298,22,58,25.207756232687,0.0614113536509906,9.94058349675742,0.506991489413364,23.893960765169,0.0318881815313581,0.232686980609418,23.2686980609418,6,84.9033966733648,0.755094129333947,18.2825484764543,10.5802015009381,0,391.387000189887,391.312774658203,0.11007579657667
+5824,309074,3798298,309174,3798198,23,58,22.4376731301939,0.0437302825998263,8.26407110964552,0.385780885780886,17.5642295441177,0.0440308459884033,0.368421052631579,36.8421052631579,3,92.7134802135949,0.810261707988981,25.4847645429363,12.2289080512255,0,391.339055379232,391.277770996094,0.124275861776506
+5825,309074,3798198,309174,3798098,24,58,37.9501385041551,0.184908910993092,19.3093333168518,0.481481481481481,62.3469020258635,-0.00307630554699469,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,391.622229682075,391.387359619141,0.413096881994719
+5826,309074,3798098,309174,3797998,25,58,40.5263157894737,0.103926906178599,11.8937648412514,0.542744252873563,22.0088096554306,-0.00309147346048887,0,0,0,NA,NA,0,NA,NA,392.366333007812,391.905914306641,0.624377568062219
+5827,309074,3797998,309174,3797898,26,58,4.98614958448753,0.0242946014443479,10.088637460923,0.336309523809524,25.9778759376342,0.00576113842051923,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,61.9343616261202,53.4917221069336,392.69046274821,392.399597167969,0.478933108982436
+5828,309074,3797898,309174,3797798,27,58,15.7894736842105,0.153865809147537,25.2691477020176,0.748538011695906,NA,0.00911686061040465,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0,392.921312120226,392.586639404297,0.40081187970914
+5829,309074,3797798,309174,3797698,28,58,8.58725761772853,0.0418407024874881,10.5284493013991,0.302777777777778,15.5867256623399,0.0462115847973548,0.313019390581717,31.3019390581717,3,93.5493052606362,0.835883143580013,29.0858725761773,40.535573908713,0,393.481086730957,393.103332519531,0.502023253234617
+5830,309074,3797698,309174,3797598,29,58,0,NA,NA,NA,NA,0.0280364470458536,0.194736842105263,19.4736842105263,3,86.4227934797406,0.81850175967823,13.1578947368421,65.6852484007139,31.6034507751465,394.424953884549,393.651824951172,1.02886127933755
+5831,309074,3797598,309174,3797498,30,58,2.77008310249307,0.026994001604831,11.3665910257789,0.316666666666667,NA,0.037224249995454,0.28808864265928,28.808864265928,1,95.2049817565958,0.954930398052394,28.808864265928,44.6011067995658,14.6953058242798,395.816118876139,395.110382080078,1.07264275080657
+5832,309074,3797498,309174,3797398,31,58,22.7146814404432,0.110675406579807,16.349834977381,0.509502923976608,20.7823006752878,0.0093789663769813,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,13.6694237391154,11.6176595687866,397.336585150825,397.088256835938,0.557422060509222
+5833,309074,3797398,309174,3797298,32,58,23.2686980609418,0.0566874033701451,12.8919486501365,0.564404761904762,10.3911504415599,0.013872444967709,0.260387811634349,26.0387811634349,1,94.6683312894905,0.903424291064741,26.0387811634349,11.7618740923861,0,398.063364664714,397.655334472656,0.469930918977506
+5834,309074,3797298,309174,3797198,33,58,0.263157894736842,0.0026994001604831,0,0,NA,-0.0437943227139936,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,46.7601776123047,46.7601776123047,398.702799479167,398.49267578125,0.432030861045941
+5835,309074,3797198,309174,3797098,34,58,8.31024930747922,0.026994001604831,8.41812555140471,0.238683127572016,36.3690264761824,-0.0801623094821454,0,0,0,NA,NA,0,NA,NA,398.990931193034,398.792205810547,0.284795225572866
+5836,309074,3797098,309174,3796998,35,58,18.005540166205,0.0877305052157008,10.897694239322,0.529371584699454,62.5630100627465,-0.0763786953409642,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,23.9571228027344,21.4219055175781,399.519487169054,399.089996337891,0.933707692620056
+5837,309074,3796998,309174,3796898,36,58,12.1883656509695,0.0237547214122513,8.50296284633158,0.301400966183575,15.5867255688155,-0.00875023628453307,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824,401.828921000163,399.651489257812,2.29742982691247
+5838,309074,3796898,309174,3796798,37,58,16.0526315789474,0.0329326819578938,9.02560824527665,0.441369047619048,15.8060854054244,0.0209541530052918,0.0473684210526316,4.73684210526316,7,43.0880784305841,0.416820135052179,1.31578947368421,9.06749494870504,5.19557523727417,404.922922770182,403.39306640625,1.12405181889094
+5839,309074,3796798,309174,3796698,38,58,0,NA,NA,NA,NA,0.0337590209446691,0.260387811634349,26.0387811634349,1,94.6683312894905,0.927568218298555,26.0387811634349,38.399124774527,21.4219055175781,405.312978108724,405.142852783203,0.164941603028448
+5840,309074,3796698,309174,3796598,39,58,45.4293628808864,0.147567208773076,14.4590597621852,0.542575757575758,13.8548671861359,0.0226135429997928,0.130193905817175,13.0193905817174,3,82.0578533292264,0.841918789808917,6.37119113573407,5.43702468466251,0,405.356755574544,405.224060058594,0.224743965657315
+5841,309074,3796598,309174,3796498,40,58,27.1468144044321,0.088180405242448,19.9314315510498,0.564213358657803,17.3185838960732,0.0232746231680787,0.0803324099722992,8.03324099722992,3,78.7345964293791,0.699243783645219,6.64819944598338,6.42931824717028,0,405.992645263672,405.485504150391,0.622705336384182
+5842,309074,3796498,309174,3796398,41,58,4.15512465373961,0.0404910024072465,9.06158778642636,0.611111111111111,NA,0.0175065792753286,0.0415512465373961,4.15512465373961,5,49.7429586904867,0.478323699421965,1.93905817174515,16.9673456509908,5.19557523727417,406.373301188151,406.1337890625,0.359834282821467
+5843,309074,3796398,309174,3796298,42,58,19.2105263157895,0.0656854039050888,10.8949129188093,0.617917917917918,26.3434756064301,0.0258078011832128,0.142105263157895,14.2105263157895,5,77.216407468712,0.674120984233789,5.78947368421053,11.9033495143608,0,405.616807725694,404.754913330078,1.00085714080523
+5844,309074,3796298,309174,3796198,43,58,15.7894736842105,0.0512886030491789,14.9427432014755,0.465608465608466,42.8987033166164,0.035659982151714,0.199445983379501,19.9445983379501,9,79.8801675619593,0.655750211154402,13.5734072022161,15.2839449577861,0,404.455813090007,403.386840820312,0.890418936256637
+5845,309074,3796198,309174,3796098,44,58,25.7617728531856,0.125522107462464,22.0883137747162,0.633351293103448,52.2148847438463,0.0344068611163576,0.229916897506925,22.9916897506925,4,85.7386163426705,0.83215876278569,17.1745152354571,20.7809125888779,0,402.758483886719,401.232421875,1.7562122620824
+5846,309074,3796098,309174,3795998,45,58,2.77008310249307,0.0134970008024155,5.43557220333286,0.28125,93.6645642165054,0.0194081877838108,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.810299527062533,4.15512465373961,26.7149297078451,15.5867252349854,399.940658569336,398.4931640625,1.8351802505985
+5847,309074,3795998,309174,3795898,46,58,29.7368421052632,0.152516109067295,24.0344531588072,0.551984126984127,11.6176593526411,0.0368036442231019,0.276315789473684,27.6315789473684,4,88.5836726524439,0.751418951418952,15.7894736842105,9.23742393766131,0,398.376224093967,398.302215576172,0.12513371576779
+5848,309074,3795898,309174,3795798,47,58,30.7479224376731,0.0749083544534061,9.69200456757919,0.381944444444444,19.6509515073103,0.0216875041623201,0.132963988919668,13.2963988919668,1,90.3199234519404,0.817151094833632,13.2963988919668,8.69598467151324,0,398.470336914062,398.309020996094,0.187593862341899
+5849,309074,3795798,309174,3795698,48,58,9.14127423822715,0.0296934017653141,4.52952000306956,0.229390681003584,44.4945700672214,0.0252693730864566,0.0609418282548476,6.09418282548476,2,74.6783449375262,0.812077043206663,4.43213296398892,36.247933474454,30.2951488494873,398.879489474826,398.668579101562,0.319126017244262
+5850,309074,3795698,309174,3795598,49,58,5.54016620498615,0.0179960010698873,5.37842594936716,0.222222222222222,38.5272877268464,0.0240188951084845,0.0581717451523546,5.81717451523546,6,50.6127366757121,0.535477941176471,1.38504155124654,23.429462932405,5.19557523727417,399.405555725098,399.127593994141,0.423063952832745
+5851,309074,3795598,309174,3795498,50,58,11.0526315789474,0.0283437016850726,4.76650644833364,0.284722222222222,16.1999800139645,0.0262919850832029,0.107894736842105,10.7894736842105,5,71.2285492711128,0.658843144799282,4.73684210526316,26.4166339548623,5.19557523727417,400.1538933648,399.789245605469,0.558201385928589
+5852,309074,3795498,309174,3795398,51,58,1.10803324099723,0.0107976006419324,3.97663196826998,0.333333333333333,NA,0.0172463819624661,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,50.4618960486518,21.4219055175781,400.527137756348,400.131744384766,0.586566059821979
+5853,309074,3795398,309174,3795298,52,58,36.8421052631579,0.359020221344253,26.9634487597092,0.847117794486215,NA,0.02821668028529,0.10803324099723,10.803324099723,5,72.5135418008591,0.689536550406116,4.15512465373961,17.6883259675442,5.19557523727417,400.116187201606,399.359100341797,0.906511198600805
+5854,309074,3795298,309174,3795198,53,58,2.77008310249307,0.0134970008024155,5.02026951986497,0.291666666666667,51.9557516882196,0.018508174417183,0.135734072022161,13.5734072022161,1,90.4761904761905,0.88980463980464,13.5734072022161,29.1048026182214,5.19557523727417,399.042373657227,398.765197753906,0.52532337436066
+5855,309074,3795198,309174,3795098,54,58,2.10526315789474,0.0107976006419324,4.06027315511085,0.291666666666667,15.5867255064659,0.0176411229846149,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,21.1300455729167,18.7329120635986,398.706899007161,398.372192382812,0.405143103164351
+5856,309074,3795098,309174,3794998,55,58,39.3351800554017,0.1277716075962,18.5720812423923,0.680414173701609,19.0504422856805,0.0276020926834855,0.0637119113573407,6.37119113573407,6,62.1253523525181,0.614316239316239,4.15512465373961,3.77726216938185,0,398.124386257595,398.014709472656,0.240997209344085
+5857,309074,3794998,309174,3794898,56,58,8.58725761772853,0.020920351243744,8.66987930514926,0.319978632478632,38.9668141558497,0.0290951517044078,0.130193905817175,13.0193905817175,6,73.6304486485968,0.640724522292994,5.26315789473684,11.7209817805189,0,398.034243265788,397.760131835938,0.491215354025061
+5858,309074,3794898,309174,3794798,57,58,40.7202216066482,0.132270607863672,18.8117575193066,0.671004159239453,20.7823006752878,0.0296342732011016,0.163434903047091,16.3434903047091,8,74.4812026459462,0.601545253863135,7.20221606648199,6.28363105806254,0,399.611284044054,398.728118896484,1.43039147957537
+5859,309074,3794798,309174,3794698,58,58,3.94736842105263,0.0134970008024155,4.62067806304557,0.37037037037037,25.289159675752,0.0200477349641771,0.05,5,5,57.0590154937283,0.56442831215971,2.63157894736842,22.7808165550232,0,401.399770100911,401.121826171875,0.45028320119981
+5860,309074,3794698,309174,3794598,59,58,10.5263157894737,0.102577206098358,20.4273420176753,0.671052631578947,NA,0.023234031011671,0.0858725761772853,8.58725761772853,6,61.3124355019251,0.606181818181818,2.49307479224377,18.4981716371352,0,401.646697998047,401.546752929688,0.180644492397027
+5861,309074,3794598,309174,3794498,60,58,2.49307479224377,0.0242946014443479,9.06470809569469,0.37037037037037,NA,0.0152102543284663,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,22.8590982755025,11.6176595687866,401.530924479167,401.327728271484,0.225338082819996
+5862,309074,3794498,309174,3794398,61,58,4.15512465373961,0.0202455012036233,9.09225654543843,0.154761904761905,94.0958692651761,0.0157004357135616,0.03601108033241,3.601108033241,2,64.1225578072574,0.654214559386973,1.93905817174515,14.8780381129338,10.3911504745483,401.442060682509,401.332794189453,0.14669811206197
+5863,309074,3794398,309174,3794298,62,58,10.2631578947368,0.0350922020862803,7.9587872304328,0.537445533769063,30.162752193571,0.0221951919977935,0.0973684210526316,9.73684210526316,3,82.3583518216148,0.691248864885533,7.89473684210526,27.9161367931881,5.19557523727417,401.250658671061,401.070098876953,0.247476727598765
+5864,309074,3794298,309174,3794198,63,58,18.5595567867036,0.0602866035841226,15.0979069234437,0.529885057471264,18.0938692761782,0.0168293284830453,0.0221606648199446,2.21606648199446,4,36.1211634414231,0.386402266288952,1.10803324099723,10.3596735596657,5.19557523727417,401.32964070638,401.128814697266,0.189240600605259
+5865,309074,3794198,309174,3794098,64,58,22.9916897506925,0.0560125533300244,10.5737982660368,0.39453125,23.4520276732404,0.0245426270499754,0.0914127423822715,9.14127423822715,3,76.5165739996421,0.796183378500452,5.54016620498615,23.4676594878688,5.19557523727417,401.515754699707,401.397888183594,0.178444576528054
+5866,309074,3794098,309174,3793998,65,58,7.75623268698061,0.0377916022467634,7.34670210110446,0.548611111111111,25.9778758441098,0.0121631630821479,0.0332409972299169,3.32409972299169,2,63.2835584769182,0.513231080397775,2.21606648199446,10.8799631992976,5.19557523727417,401.968512641059,401.683990478516,0.416120669037784
+5867,309074,3793998,309174,3793898,66,58,7.36842105263158,0.0377916022467634,10.2180885666286,0.54957264957265,20.7823008831198,0.0154142616006108,0.0210526315789474,2.10526315789474,1,68.1401783345986,1,2.10526315789474,30.5240042209625,25.977876663208,402.541877746582,402.200805664062,0.389463524905901
+5868,309074,3793898,309174,3793798,67,58,88.9196675900277,0.866507451515076,35.51385747136,0.924714434060228,NA,0.0252731250690188,0.0886426592797784,8.86426592797784,4,73.6711945225362,0.767886368950199,6.37119113573407,1.66301281750202,0,403.161102294922,402.680603027344,0.489094226940606
+5869,309074,3793798,309174,3793698,68,58,7.20221606648199,0.0701844041725607,18.5448915309834,0.564102564102564,NA,0.0185373616024305,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,22.0811942815781,5.19557523727417,404.094935099284,403.517395019531,0.744733421956512
+5870,309074,3793698,309174,3793598,69,58,0,NA,NA,NA,NA,0.0147079700621656,0,0,0,NA,NA,0,NA,NA,405.22696685791,404.406921386719,0.847826828572226
+5871,309074,3793598,309174,3793498,70,58,0,NA,NA,NA,NA,0.0174181405550036,0,0,0,NA,NA,0,NA,NA,405.626732720269,405.207214355469,0.6281454112603
+5872,309074,3793498,309174,3793398,71,58,0,NA,NA,NA,NA,0.0149279923445793,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,97.3470458984375,72.7380523681641,405.997650146484,405.421173095703,0.643649324418025
+5873,309074,3793398,309174,3793298,72,58,3.8781163434903,0.0377916022467634,8.8893156085877,0.607142857142857,NA,0.0154171715023759,0.0277008310249307,2.77008310249307,1,72.175958031556,0.762656147271532,2.77008310249307,15.5921648025513,10.3911504745483,406.424892849392,405.896606445312,0.613841916457015
+5874,309074,3793298,309174,3793198,73,58,18.005540166205,0.0438652526078504,8.47281520103483,0.487466124661247,15.1410156580497,0.0167729323775423,0.0831024930747922,8.31024930747922,5,63.8246321490846,0.554843085270362,2.77008310249307,11.3183484713236,0,407.021443684896,406.681243896484,0.334984280700544
+5875,309074,3793198,309174,3793098,74,58,0.789473684210526,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0198642294568249,0.0421052631578947,4.21052631578947,2,70.7997102898379,0.739010989010989,3.15789473684211,38.4289288520813,16.4298515319824,407.242404513889,407.171203613281,0.0977144683431687
+5876,309074,3793098,309174,3792998,75,58,0,NA,NA,NA,NA,0.0157372402523718,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,72.4883190155029,20.7823009490967,407.253748575846,407.211700439453,0.112472722851722
+5877,309074,3792998,309174,3792898,76,58,0,NA,NA,NA,NA,0.0151273996477743,0.0249307479224377,2.49307479224377,2,63.2654294198794,0.572679924242424,2.21606648199446,59.9430160522461,54.2434005737305,407.615498860677,407.328338623047,0.376335731089073
+5878,309074,3792898,309174,3792798,77,58,1.93905817174515,0.00944790056169086,4.57085607888173,0.216666666666667,46.7601769870196,0.0255161050108226,0.146814404432133,14.6814404432133,3,85.8599205395769,0.793920365348937,12.7423822714681,15.0310981318636,0,408.161893208822,407.755310058594,0.436303251397042
+5879,309074,3792798,309174,3792698,78,58,8.68421052631579,0.0890802052959424,13.8553958646921,0.666666666666667,NA,0.0186051806732154,0.105263157894737,10.5263157894737,5,76.4260918859865,0.699736611062335,7.63157894736842,16.6710149049759,0,408.765062120226,408.489379882812,0.375662161479298
+5880,309074,3792698,309174,3792598,79,58,7.75623268698061,0.0188958011233817,5.27059026258777,0.308333333333333,33.1154240977165,0.0214953478014579,0.074792243767313,7.4792243767313,3,76.7064809697868,0.748642250382955,6.09418282548476,20.4786715330901,10.3911504745483,409.403678894043,408.936431884766,0.612341920608107
+5881,309074,3792598,309174,3792498,80,58,5.81717451523546,0.0566874033701451,26.3107597362118,0.357142857142857,NA,0.0142614252255343,0.038781163434903,3.8781163434903,3,61.3817294149549,0.739913544668588,2.77008310249307,29.705835546766,10.3911504745483,409.697458902995,409.223297119141,0.523988670008967
+5882,309074,3792498,309174,3792398,81,58,10.5263157894737,0.102577206098358,24.9361107571742,0.640350877192982,NA,0.0225423654350143,0.0858725761772853,8.58725761772853,4,72.8800880040664,0.715575757575758,4.15512465373961,58.9190276053644,10.3911504745483,409.687660217285,408.812133789062,0.849050611110964
+5883,309074,3792398,309174,3792298,82,58,12.8947368421053,0.132270607863672,24.5293562631215,0.697278911564626,NA,0.0246474480184391,0.136842105263158,13.6842105263158,3,81.1621281785084,0.778706494930118,6.8421052631579,29.8745574400975,10.3911504745483,408.282938639323,407.830505371094,1.14549496587356
+5884,309074,3792298,309174,3792198,83,58,22.4376731301939,0.109325706499566,21.7746784221625,0.651055705300988,23.2353185658643,0.0223823695543056,0.038781163434903,3.8781163434903,3,61.3379482254554,0.635878962536023,2.21606648199446,5.89806236539568,0,406.302647908529,405.482788085938,1.19389131130079
+5885,309074,3792198,309174,3792098,84,58,32.6869806094183,0.0796323047342515,12.5713412295943,0.634862588652482,18.9710599757867,0.0233749905604369,0.0609418282548476,6.09418282548476,5,60.6498831973592,0.624154086413326,3.04709141274238,0.23616251078519,0,405.262794494629,405.151336669922,0.215319614360128
+5886,309074,3792098,309174,3791998,85,58,50.415512465374,0.491290829207925,35.1232211042313,0.794871794871795,NA,0.0239148579419841,0.0941828254847645,9.41828254847645,4,73.2218831174223,0.724006116207951,5.54016620498615,2.08591367216671,0,405.249959309896,405.185882568359,0.117661695784816
+5887,309074,3791998,309174,3791898,86,58,39.7368421052632,0.135869808077649,15.3914192001177,0.584409310496267,32.1155886546747,0.0359676199527856,0.336842105263158,33.6842105263158,3,90.7185571366636,0.805845084815042,23.1578947368421,11.8807551376522,0,405.553817749023,405.364318847656,0.332763052624683
+5888,309074,3791898,309174,3791798,87,58,47.0914127423823,0.229449013641064,22.5218545714519,0.792717086834734,31.1734513246797,0.0267027575017012,0.196675900277008,19.6675900277008,5,84.4271051466226,0.671365517241379,11.6343490304709,3.46796560287476,0,406.102508544922,405.822235107422,0.437688366612427
+5889,309074,3791798,309174,3791698,88,58,38.781163434903,0.188958011233817,15.9944742163714,0.579656862745098,31.6034502677644,0.0216079368743078,0.191135734072022,19.1135734072022,3,90.0094229999106,0.856956866296841,18.005540166205,2.4095420975616,0,406.140767415365,405.973480224609,0.253827237701651
+5890,309074,3791698,309174,3791598,89,58,32.1329639889197,0.15656520930802,14.1683746028919,0.526302851524091,15.5867255064659,0.0227897122294811,0.199445983379501,19.9445983379501,2,90.6251994251541,0.852464376209029,18.5595567867036,4.51316556665632,0,406.144995795356,405.981170654297,0.208156099682792
+5891,309074,3791598,309174,3791498,90,58,25,0.0854810050819649,12.2600298670069,0.641175314465409,12.1230087792092,0.0239468071460004,0.202631578947368,20.2631578947368,3,86.9529795351073,0.824791302659678,11.0526315789474,8.07458508479131,0,406.103721618652,406.004150390625,0.229585431901986
+5892,309074,3791498,309174,3791398,91,58,33.5180055401662,0.108875806472818,20.9068263829484,0.67143820065276,13.8548672554132,0.0324291709739832,0.349030470914127,34.9030470914127,4,89.7610752983288,0.745089659017003,21.606648199446,9.67999454907009,0,406.347646077474,406.071502685547,0.488630230541199
+5893,309074,3791398,309174,3791298,92,58,32.409972299169,0.105276606258841,14.1646016989151,0.637345679012346,17.3185840692665,0.0276080012823574,0.25207756232687,25.207756232687,5,86.5994139920527,0.694627343392776,15.5124653739612,8.27495845857557,0,406.458442687988,406.315185546875,0.453419046232914
+5894,309074,3791298,309174,3791198,93,58,24.0997229916898,0.23484781396203,28.7574329246515,0.777777777777778,NA,0.0351137747073712,0.335180055401662,33.5180055401662,4,87.4800687605785,0.699166666666667,13.8504155124654,14.4827760861925,0,406.806145562066,406.3955078125,0.564139399912218
+5895,309074,3791198,309174,3791098,94,58,29.2105263157895,0.0998778059378748,17.1865969390243,0.462215640297832,22.5141592900465,0.0371040171763046,0.321052631578947,32.1052631578947,5,93.3255970720529,0.813392262092672,30.2631578947368,8.2402280315024,0,407.251480102539,406.881927490234,0.350131226484488
+5896,309074,3791098,309174,3790998,95,58,32.409972299169,0.0789574546941307,11.0330856850236,0.5965153781081,14.4986132485935,0.036715472118054,0.25207756232687,25.207756232687,8,76.3817008978029,0.645107453132145,6.64819944598338,11.477550134554,0,407.096377902561,406.942840576172,0.293390478595255
+5897,309074,3790998,309174,3790898,96,58,15.7894736842105,0.0769329045737684,13.4973432640021,0.569230769230769,15.5867255064659,0.0348070487267361,0.313019390581717,31.3019390581717,1,95.625724167062,0.843018659076534,31.3019390581717,28.4713650593715,10.3911504745483,406.642537434896,406.488159179688,0.189747109350622
+5898,309074,3790898,309174,3790798,97,58,39.0581717451524,0.380615422628117,25.5578704587228,0.868794326241135,NA,0.0368393782540444,0.354570637119114,35.4570637119114,3,90.7423202774081,0.773913684171748,21.0526315789474,11.5857201851904,0,406.517340766059,406.466857910156,0.046329656033778
+5899,309074,3790798,309174,3790698,98,58,33.1578947368421,0.170062210110435,13.0079677157792,0.516801075268817,25.9778758441098,0.0320796725415819,0.302631578947368,30.2631578947368,2,94.8368113262724,0.862119013062409,29.7368421052632,3.82026324479476,0,406.624102274577,406.520080566406,0.116907181778289
+5900,309074,3790698,309174,3790598,99,58,45.4293628808864,0.221350813159614,16.4380505162506,0.686305732484076,20.7823008831198,0.038282844125658,0.394736842105263,39.4736842105263,2,94.0311453117545,0.852244609402616,31.8713450292398,3.33692482842339,0,406.934794108073,406.765991210938,0.182936702856425
+5901,309174,3800598,309274,3800498,0,59,36.5650969529086,0.0890802052959424,15.1006399302094,0.610636750009572,13.602192394699,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.423234939575,386.709014892578,0.569863797781054
+5902,309174,3800498,309274,3800398,1,59,8.94736842105263,0.0917796054564255,15.6833777457403,0.686274509803921,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.190790812174,386.894561767578,0.423721388799961
+5903,309174,3800398,309274,3800298,2,59,16.6204986149584,0.0809820048144931,11.3093780842474,0.36864406779661,55.229721865103,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.415399551392,386.93798828125,0.540986134951722
+5904,309174,3800298,309274,3800198,3,59,3.32409972299169,0.0323928019257972,7.58205061542473,0.569444444444444,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.93696085612,387.396575927734,0.523677867588319
+5905,309174,3800198,309274,3800098,4,59,60.1108033240997,0.585769834824833,30.9410413915929,0.901689708141321,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.415868759155,387.947021484375,0.436337877570538
+5906,309174,3800098,309274,3799998,5,59,60.5263157894737,0.620862036911113,34.1149285414285,0.844927536231884,NA,0.0149396529561278,0,0,0,NA,NA,0,NA,NA,388.642011006673,388.371124267578,0.2683830450014
+5907,309174,3799998,309274,3799898,6,59,6.37119113573407,0.0620862036911113,14.8314005693668,0.601449275362319,NA,0.0121819373821066,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,44.2672761281331,30.2951488494873,388.702886581421,388.557281494141,0.129047924261517
+5908,309174,3799898,309274,3799798,7,59,24.9307479224377,0.12147300722174,13.0989872613023,0.408239700374532,36.3690261817537,0.0182615782633394,0.0470914127423823,4.70914127423823,2,69.8426179170505,0.748139534883721,2.77008310249307,17.5076775831335,5.19557523727417,388.815312703451,388.709503173828,0.12861229005529
+5909,309174,3799798,309274,3799698,8,59,0,NA,NA,NA,NA,0.0184525458045498,0.0304709141274238,3.04709141274238,5,39.8476007570407,0.518666666666667,1.66204986149584,44.5797681808472,10.3911504745483,389.066556930542,388.787384033203,0.381636715616957
+5910,309174,3799698,309274,3799598,9,59,0,NA,NA,NA,NA,0.0114734133561605,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,98.4263916015625,92.941276550293,389.889386494954,389.632263183594,0.43093982188431
+5911,309174,3799598,309274,3799498,10,59,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0224453087596323,0.160664819944598,16.0664819944598,1,91.6954320870293,0.797458745874587,16.0664819944598,34.6081446285906,15.5867252349854,390.100708007812,389.910064697266,0.129031239278062
+5912,309174,3799498,309274,3799398,11,59,11.0803324099723,0.0179960010698873,4.48977020209512,0.294312169312169,23.9421722646571,0.00365215871082232,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,19.4276967729841,11.6176595687866,390.006925582886,389.949798583984,0.0846547170027034
+5913,309174,3799398,309274,3799298,12,59,49.8614958448753,0.485892028886958,36.0705232877353,0.762962962962963,NA,0.0129342955622033,0.174515235457064,17.4515235457064,2,91.0487294324127,0.922910311165345,17.1745152354571,8.50625454433381,0,389.866388956706,389.806335449219,0.0993743785276514
+5914,309174,3799298,309274,3799198,13,59,37.8947368421053,0.194356811554783,13.8916234836876,0.398018648018648,31.1734510129318,0.0494666683192439,0.347368421052632,34.7368421052632,4,92.0771605077831,0.860125819836702,29.4736842105263,14.1198931246093,0,389.740070343018,389.697601318359,0.0632593529129832
+5915,309174,3799198,309274,3799098,14,59,21.0526315789474,0.205154412196716,20.4050101008327,0.780701754385965,NA,0.0308385052632523,0.246537396121884,24.6537396121884,1,94.3666890443773,0.966611172770995,24.6537396121884,15.2445930416664,0,389.748756408691,389.692596435547,0.0776077869942449
+5916,309174,3799098,309274,3798998,15,59,21.0526315789474,0.102577206098358,15.7538477966911,0.51830985915493,64.2657156584728,0.0164579244190166,0.102493074792244,10.2493074792244,3,76.2839924147918,0.707751467314309,4.70914127423823,13.9080864932086,0,389.983489990234,389.778839111328,0.23381802499013
+5917,309174,3798998,309274,3798898,16,59,17.1745152354571,0.0557876033166508,8.45472312984314,0.403508771929825,46.6462340426806,0.0551542731974876,0.404432132963989,40.4432132963989,2,93.0931520299244,0.861649682083442,23.5457063711911,19.9915505370049,0,390.418838500977,390.12353515625,0.478218710628035
+5918,309174,3798898,309274,3798798,17,59,22.8947368421053,0.117423906981015,12.9882233543464,0.407945736434109,41.5646013505757,0.00623675538848291,0.0342105263157895,3.42105263157895,4,53.1983561925185,0.597335755373903,2.10526315789474,11.2848164485051,5.19557523727417,391.285495758057,390.578857421875,0.633154477774088
+5919,309174,3798798,309274,3798698,18,59,0.277008310249307,0.0026994001604831,0,0,NA,0.00636910367537896,0,0,0,NA,NA,0,NA,NA,391.846834818522,391.499237060547,0.391287825610892
+5920,309174,3798698,309274,3798598,19,59,51.2465373961219,0.0998778059378748,14.5240804382282,0.567575946379685,14.5476104727015,0.0162246881540885,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,4.18107604980469,0,392.036796569824,391.793548583984,0.251639002709461
+5921,309174,3798598,309274,3798498,20,59,54.5706371191136,0.17726061053839,21.6312322299471,0.635737719071052,20.7823006752878,0.0175573532858915,0.0886426592797784,8.86426592797784,7,63.1721969516896,0.577975216273089,4.70914127423823,6.60004985332489,0,392.024485270182,391.820404052734,0.272185987098955
+5922,309174,3798498,309274,3798398,21,59,33.9473684210526,0.08705565517558,13.7414425592399,0.460053294573643,17.6721661056442,0.0352215462868452,0.242105263157895,24.2105263157895,9,78.856459999921,0.710365853658537,13.9473684210526,7.37341419510219,0,391.877756118774,391.544860839844,0.368259336275768
+5923,309174,3798398,309274,3798298,22,59,37.1191135734072,0.120573207168245,15.55373668125,0.622474747474747,20.3532257406785,0.0426804224576432,0.310249307479224,31.0249307479224,5,86.232726388733,0.784683287605869,15.7894736842105,9.78323501774243,0,391.545964558919,391.397796630859,0.229132139877335
+5924,309174,3798298,309274,3798198,23,59,43.213296398892,0.421106425035364,29.4971020893571,0.856837606837607,NA,0.0563368321258711,0.43213296398892,43.213296398892,2,93.9478224243041,0.82819750148721,31.5789473684211,9.98176542612222,0,391.516986846924,391.384307861328,0.191758000775411
+5925,309174,3798198,309274,3798098,24,59,26.5927977839335,0.0863808051354593,13.5780813512256,0.592592592592593,28.0100613308705,-0.00651462517507601,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,391.901245117188,391.585235595703,0.580453961896819
+5926,309174,3798098,309274,3797998,25,59,76.0526315789474,0.390063323189808,19.5719627203822,0.583187134502924,20.7823006752878,0.0186651332752789,0.0342105263157895,3.42105263157895,2,67.7320235179672,0.827429609445958,2.89473684210526,2.79761739877554,0,393.335348129272,392.401458740234,0.896490817879585
+5927,309174,3797998,309274,3797898,26,59,76.4542936288089,0.372517222146668,22.5661813924451,0.727644230769231,25.9778759376342,0.00898843081350981,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,393.504953384399,393.012786865234,0.570734133820143
+5928,309174,3797898,309274,3797798,27,59,35.4570637119114,0.172761610270919,24.6608767611876,0.736842105263158,31.1734513246797,0.00614076996421532,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,15.5867252349854,15.5867252349854,393.331286112467,393.057708740234,0.445186429716875
+5929,309174,3797798,309274,3797698,28,59,22.1606648199446,0.053988003209662,9.83184719673289,0.48265814645125,23.3800882596988,0.0205474020838116,0.0304709141274238,3.04709141274238,4,44.9943043093668,0.449904761904762,1.38504155124654,16.673339323564,5.19557523727417,394.16365814209,393.414642333984,1.16603013361046
+5930,309174,3797698,309274,3797598,29,59,17.3684210526316,0.0593868035306282,16.7042613849781,0.419013846673421,31.735535173764,0.0178664758386156,0.05,5,6,47.5945554599921,0.455535390199637,1.31578947368421,10.2309661915428,0,395.592557271322,394.578308105469,1.07671508979917
+5931,309174,3797598,309274,3797498,30,59,13.2963988919668,0.0647856038515944,20.0060309337608,0.502913752913753,25.9778761038998,0.0186399980733581,0.038781163434903,3.8781163434903,7,32.6846510639925,0.375792507204611,1.10803324099723,14.9335543768747,5.19557523727417,396.596410751343,395.710205078125,0.88270969326306
+5932,309174,3797498,309274,3797398,31,59,18.8365650969529,0.0917796054564255,20.2912123482741,0.641320365458297,26.4923394249063,0.0186461807444324,0.0526315789473684,5.26315789473684,5,55.010094792363,0.526819923371648,1.93905817174515,11.433699858816,5.19557523727417,397.590751647949,397.087646484375,0.703384357929189
+5933,309174,3797398,309274,3797298,32,59,34.6260387811634,0.112475006686796,16.5506914492346,0.537963908750426,20.7823008831198,-0.00644240507059405,0.074792243767313,7.4792243767313,3,75.5712978829542,0.773778025344659,5.81717451523546,14.2465455443771,0,398.324453353882,397.669982910156,0.983975530536302
+5934,309174,3797298,309274,3797198,33,59,18.9473684210526,0.0971784057773917,13.5172847566947,0.722222222222222,31.1734513246797,-0.0778419010365676,0,0,0,NA,NA,0,NA,NA,399.999008178711,398.527038574219,1.424532396176
+5935,309174,3797198,309274,3797098,34,59,36.5650969529086,0.118773607061256,16.6601042786552,0.663001543209877,24.2460175584185,-0.120924878070889,0,0,0,NA,NA,0,NA,NA,400.606248855591,399.051055908203,1.7431678819236
+5936,309174,3797098,309274,3796998,35,59,37.1191135734072,0.0723439243009471,12.3099325286719,0.540833333333333,21.6457554404178,-0.124539680481009,0,0,0,NA,NA,0,NA,NA,402.107592264811,399.553741455078,2.02646674975442
+5937,309174,3796998,309274,3796898,36,59,43.213296398892,0.105276606258841,16.9911285908128,0.593150252525253,19.4834069999878,-0.0758658598161495,0,0,0,NA,NA,0,NA,NA,403.9123878479,402.207183837891,1.38538177488042
+5938,309174,3796898,309274,3796798,37,59,16.0526315789474,0.0823317048947346,16.0411247251142,0.493452380952381,25.9778761038998,0.0229714423362709,0.144736842105263,14.4736842105263,6,82.6400594506887,0.655384615384615,11.3157894736842,33.5481360955672,5.19557523727417,405.15579477946,404.742950439453,0.464494141319075
+5939,309174,3796798,309274,3796698,38,59,6.37119113573407,0.0310431018455557,7.05982946796117,0.587301587301587,51.9557516882196,0.0152664815439776,0.0332409972299169,3.32409972299169,2,62.82350128823,0.574077195348053,1.93905817174515,39.9513691266378,30.2951488494873,405.368183135986,405.18017578125,0.224411987161423
+5940,309174,3796698,309274,3796598,39,59,19.6675900277008,0.03833148227886,8.77246940850885,0.422407407407407,19.194674248224,0.0195988509910832,0.0609418282548476,6.09418282548476,4,61.2872437397141,0.592833593614437,1.93905817174515,22.7381142269481,10.3911504745483,405.897817611694,405.321807861328,0.687677905431172
+5941,309174,3796598,309274,3796498,40,59,34.3490304709141,0.0557876033166508,11.2760553207785,0.523529014464613,16.6658563049912,0.0187828732329392,0.0443213296398892,4.43213296398892,3,62.5809304661148,0.738405797101449,3.04709141274238,12.6161201894283,5.19557523727417,406.731135050456,406.177490234375,0.633604601111936
+5942,309174,3796498,309274,3796398,41,59,23.5457063711911,0.0458898027282127,10.5342791472002,0.495804474899303,19.1946742657159,0.0156049101795038,0.074792243767313,7.4792243767313,4,66.2275531605453,0.622963375574433,2.77008310249307,12.6416213953937,5.19557523727417,406.7799949646,406.504211425781,0.349698589522359
+5943,309174,3796398,309274,3796298,42,59,3.68421052631579,0.0125972007489211,3.48892640001709,0.242424242424242,43.6974652124113,0.0247865056280142,0.144736842105263,14.4736842105263,3,86.9727677072238,0.790769230769231,12.6315789473684,40.4007616736672,10.3911504745483,405.724278767904,403.6787109375,1.77978066519876
+5944,309174,3796298,309274,3796198,43,59,8.86426592797784,0.0863808051354593,22.5609053601283,0.578125,NA,0.0243651238334197,0.14404432132964,14.404432132964,6,79.0027107388503,0.684956910657794,9.97229916897507,50.8058309738453,5.19557523727417,402.696168899536,399.809936523438,2.43096214893142
+5945,309174,3796198,309274,3796098,44,59,6.09418282548476,0.0197956011768761,9.06946893504886,0.160818713450292,24.2460175584185,0.0202773542074898,0.03601108033241,3.601108033241,6,35.3927894783896,0.366060025542784,0.831024930747922,36.6682024735671,5.19557523727417,400.116376241048,399.192993164062,1.71400680992175
+5946,309174,3796098,309274,3795998,45,59,1.66204986149584,0.00323928019257972,0.519557516882196,0.0333333333333333,26.5285695855806,0.0239873596489168,0.0914127423822715,9.14127423822715,1,87.180691871343,1,9.14127423822715,30.5054399316961,15.5867252349854,398.785852432251,398.368255615234,0.674239217325559
+5947,309174,3795998,309274,3795898,46,59,11.0526315789474,0.0566874033701451,10.8006542848719,0.608796296296296,23.2353185658643,0.0184524950128674,0.105263157894737,10.5263157894737,6,69.4989527146946,0.59964881474978,4.47368421052632,10.634658741951,0,398.251815795898,398.162536621094,0.12806644418973
+5948,309174,3795898,309274,3795798,47,59,23.5457063711911,0.0764830045470212,11.2867537815703,0.461397058823529,27.7097342337171,0.0131847366660534,0.0664819944598338,6.64819944598338,2,78.2798268496208,0.830860534124629,5.81717451523546,8.52326118946075,0,398.236499786377,398.136901855469,0.139750844774719
+5949,309174,3795798,309274,3795698,48,59,22.9916897506925,0.0746834044400325,12.2553289182205,0.542680776014109,29.5646722439611,0.0246813881009513,0.113573407202216,11.3573407202216,7,68.8552117058431,0.623958333333333,4.70914127423823,5.50345151017352,0,398.443033854167,398.217620849609,0.319334180403789
+5950,309174,3795698,309274,3795598,49,59,34.3490304709141,0.111575206633302,11.2626490831813,0.442177522349936,14.6725397935234,0.0440563374490656,0.412742382271468,41.2742382271468,2,96.0524608554313,0.887725482065105,40.1662049861496,9.30880577292218,0,398.809272766113,398.375366210938,0.595966682445806
+5951,309174,3795598,309274,3795498,50,59,23.9473684210526,0.122822707301981,25.3032879380708,0.668137254901961,15.5867255064659,0.023049483512159,0.0447368421052632,4.47368421052632,5,52.4925783018536,0.623140495867769,2.36842105263158,14.5392871183508,5.19557523727417,399.943161010742,399.053619384766,0.992962098312196
+5952,309174,3795498,309274,3795398,51,59,0,NA,NA,NA,NA,0.0169308042050764,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,91.9191131591797,91.9191131591797,400.75777053833,399.904693603516,0.687266537426323
+5953,309174,3795398,309274,3795298,52,59,24.9307479224377,0.242946014443479,26.0144850833512,0.812962962962963,NA,0.0268280978990658,0.0554016620498615,5.54016620498615,5,58.5680402735416,0.590199602686595,2.49307479224377,3.11734511852264,0,400.780690511068,400.438507080078,0.681179496999651
+5954,309174,3795298,309274,3795198,53,59,0,NA,NA,NA,NA,0.017390151576614,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,96.2585601806641,93.6645584106445,400.146381378174,399.479736328125,0.703281347129075
+5955,309174,3795198,309274,3795098,54,59,0,NA,NA,NA,NA,0.0188346544894892,0,0,0,NA,NA,0,NA,NA,399.162685394287,398.487579345703,0.717410802769389
+5956,309174,3795098,309274,3794998,55,59,16.0664819944598,0.0521884031026733,12.7611232079165,0.413595583160801,17.3185838960732,0.0127086058647438,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,23.5876214504242,5.19557523727417,398.179964701335,398.030364990234,0.33379404085356
+5957,309174,3794998,309274,3794898,56,59,16.6204986149584,0.026994001604831,5.82394560495409,0.268813131313131,23.189549253542,0.0287646880810158,0.0969529085872576,9.69529085872576,7,69.9055557173305,0.560873704252168,6.09418282548476,7.76237760271345,0,398.157985687256,397.76708984375,0.54675616892026
+5958,309174,3794898,309274,3794798,57,59,35.4570637119114,0.0863808051354593,13.1497586150526,0.534150843881857,16.8856193246504,0.0280924507548014,0.135734072022161,13.5734072022161,5,78.6712468108341,0.683188339438339,8.03324099722992,4.04359563516111,0,399.859817504883,399.003479003906,1.13082223258768
+5959,309174,3794798,309274,3794698,58,59,3.42105263157895,0.0175461010431402,8.22632735063477,0.261111111111111,25.9778758441098,0.0157137269275106,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,26.121755361557,5.19557523727417,401.26061630249,400.784606933594,0.491061345951476
+5960,309174,3794698,309274,3794598,59,59,3.04709141274238,0.0296934017653141,14.1697504604235,0.303030303030303,NA,0.0203675934546653,0.0692520775623269,6.92520775623269,7,55.3549220624944,0.516517857142857,2.21606648199446,41.230252532959,11.6176595687866,401.665194193522,401.470733642578,0.299735264373343
+5961,309174,3794598,309274,3794498,60,59,11.0803324099723,0.0359920021397747,8.28746714290779,0.201754385964912,48.7797143125228,0.0208835475256978,0.0914127423822715,9.14127423822715,5,66.9645743352637,0.612748419150858,3.32409972299169,17.7405270663175,10.3911504745483,401.776161193848,401.613464355469,0.22795825529025
+5962,309174,3794498,309274,3794398,61,59,6.37119113573407,0.0124172407382223,3.19213306418876,0.291111111111111,29.181220882059,0.012987201850126,0.0941828254847645,9.41828254847645,6,71.8786804119044,0.74371996505024,7.20221606648199,38.277270821964,16.4298515319824,401.64938100179,401.501586914062,0.168172483605075
+5963,309174,3794398,309274,3794298,62,59,11.8421052631579,0.0404910024072465,11.4192983917276,0.429920116194626,55.5922237044631,0.00931370648653874,0.0210526315789474,2.10526315789474,3,49.0305203394943,0.591397849462366,1.57894736842105,21.0117098093033,10.3911504745483,401.535966873169,401.404296875,0.158294945654279
+5964,309174,3794298,309274,3794198,63,59,11.0803324099723,0.026994001604831,7.02756636796875,0.241666666666667,40.1933230669309,0.0189340810810743,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.862476190476191,3.04709141274238,17.4760257114064,5.19557523727417,401.457717895508,401.388641357422,0.0925418039127134
+5965,309174,3794198,309274,3794098,64,59,18.5595567867036,0.0602866035841226,13.927757222349,0.614953886693017,23.580590995813,0.0164122029165805,0.0470914127423823,4.70914127423823,3,68.5348087309151,0.790116279069767,3.8781163434903,30.9944218186771,7.34765291213989,401.430171966553,401.387298583984,0.0864393999704805
+5966,309174,3794098,309274,3793998,65,59,11.9113573407202,0.116074206900773,23.1341671110943,0.647286821705426,NA,0.0100854187537437,0,0,0,NA,NA,0,NA,NA,401.72067006429,401.513519287109,0.289338156786788
+5967,309174,3793998,309274,3793898,66,59,22.1052631578947,0.0755832044935269,9.91326473847155,0.606644880174292,36.4649455528172,0.00336616990670767,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,12.1230087280273,10.3911504745483,402.221551895142,401.873016357422,0.318149433204187
+5968,309174,3793898,309274,3793798,67,59,8.86426592797784,0.0431904025677296,8.31069086099934,0.488095238095238,65.7194057438652,0.0203466187761722,0.0526315789473684,5.26315789473684,4,62.1807510208655,0.636015325670498,2.77008310249307,22.4441388029801,5.19557523727417,402.944844563802,402.546051025391,0.684568937129668
+5969,309174,3793798,309274,3793698,68,59,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0173067610740366,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,35.3420314788818,32.8597030639648,404.273992538452,403.651489257812,0.732173428428219
+5970,309174,3793698,309274,3793598,69,59,0,NA,NA,NA,NA,0.0134066658087995,0,0,0,NA,NA,0,NA,NA,405.524227142334,404.929443359375,0.597755316886804
+5971,309174,3793598,309274,3793498,70,59,0,NA,NA,NA,NA,0.0127191823707682,0,0,0,NA,NA,0,NA,NA,406.074907938639,405.906280517578,0.266157021805769
+5972,309174,3793498,309274,3793398,71,59,0.277008310249307,0.0026994001604831,0,0,NA,0.00406814126027533,0,0,0,NA,NA,0,NA,NA,406.436248779297,406.209777832031,0.316989066701962
+5973,309174,3793398,309274,3793298,72,59,0,NA,NA,NA,NA,0.0129635164801211,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,113.172676086426,112.397483825684,406.975763956706,406.719818115234,0.328639039151244
+5974,309174,3793298,309274,3793198,73,59,0,NA,NA,NA,NA,0.0132237329977175,0,0,0,NA,NA,0,NA,NA,407.265645980835,407.019073486328,0.290690110549863
+5975,309174,3793198,309274,3793098,74,59,0,NA,NA,NA,NA,0.0208679764621162,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,62.746997833252,44.0859146118164,407.570648193359,407.239685058594,0.56924084401442
+5976,309174,3793098,309274,3792998,75,59,1.10803324099723,0.0107976006419324,3.67382645240838,0.416666666666667,NA,0.0176708026765104,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,23.3785049438477,11.6176595687866,407.468637466431,407.274719238281,0.345939637651181
+5977,309174,3792998,309274,3792898,76,59,23.5457063711911,0.114724506820532,26.9156730014405,0.613095238095238,15.5867256623399,0.0247621510216251,0.240997229916898,24.0997229916898,2,89.5638093354225,0.753496585825288,12.7423822714681,9.9298205101627,0,407.601633707682,407.412445068359,0.417756361383446
+5978,309174,3792898,309274,3792798,77,59,12.7423822714681,0.0206954012303704,6.0212795770896,0.35525863025863,20.3791187098766,0.0257967588456426,0.196675900277008,19.6675900277008,4,83.1118700646733,0.671365517241379,10.803324099723,13.3602147505317,0,408.116809844971,407.666229248047,0.405243268252754
+5979,309174,3792798,309274,3792698,78,59,15.7894736842105,0.053988003209662,12.2177081344332,0.505668934240363,25.3705747459172,0.0362218531157276,0.334210526315789,33.421052631579,3,93.3978037662249,0.791934021183033,28.6842105263158,14.607325125867,0,408.551389058431,408.326416015625,0.222104262021179
+5980,309174,3792698,309274,3792598,79,59,25.7617728531856,0.0627610537312321,13.731403490938,0.556547619047619,18.1845130908769,0.0243519144915755,0.138504155124654,13.8504155124654,8,69.4631683137124,0.590315869112919,4.15512465373961,14.0677327919006,0,408.515592575073,408.081329345703,0.474231821615225
+5981,309174,3792598,309274,3792498,80,59,14.6814404432133,0.0715341042528022,18.2644246170041,0.584722222222222,15.5867256623399,0.0319789690340429,0.207756232686981,20.7756232686981,6,80.7888790189146,0.636628522992159,8.31024930747922,15.2971591758728,0,408.521713256836,407.86181640625,0.886915472978821
+5982,309174,3792498,309274,3792398,81,59,11.3573407202216,0.0553377032899036,14.861331928444,0.475274725274725,67.5424778701394,0.0270085781973303,0.213296398891967,21.3296398891967,4,82.9729360169118,0.691564830157415,9.14127423822715,16.4895338888292,0,407.60689163208,406.480133056641,1.28741727844285
+5983,309174,3792398,309274,3792298,82,59,3.42105263157895,0.0175461010431402,5.92116441999925,0.310606060606061,59.2386713084742,0.0246072419381993,0.105263157894737,10.5263157894737,7,63.7703155677383,0.516242317822651,2.63157894736842,23.2301807999611,0,407.179860432943,405.867279052734,1.40364780562224
+5984,309174,3792298,309274,3792198,83,59,23.8227146814404,0.116074206900773,23.1847700838309,0.66261673337145,11.6176593526411,0.0184914952761294,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,8.55822219848633,5.19557523727417,405.679412841797,405.403625488281,0.578265450903065
+5985,309174,3792198,309274,3792098,84,59,39.0581717451524,0.0951538556570293,13.1036793132682,0.728688141923436,21.2038635743158,0.016413472053261,0.03601108033241,3.601108033241,2,67.8273020257022,0.827107279693487,3.04709141274238,7.38256711226243,0,405.187734603882,405.125457763672,0.130488656588131
+5986,309174,3792098,309274,3791998,85,59,7.4792243767313,0.0364419021665219,11.4362601512939,0.466666666666667,80.6570173213972,0.0249392602665587,0.166204986149584,16.6204986149584,2,90.2581112978323,0.884679274214158,16.0664819944598,8.13502438863119,0,405.278363545736,405.158081054688,0.2250008378756
+5987,309174,3791998,309274,3791898,86,59,22.6315789473684,0.116074206900773,21.5862532715815,0.520299145299145,52.2148847438463,0.0370108313719883,0.334210526315789,33.4210526315789,2,92.5471386364063,0.817942268535154,20.7894736842105,14.1464565081859,0,406.008972167969,405.483978271484,0.609483701282249
+5988,309174,3791898,309274,3791798,87,59,33.5180055401662,0.0816568548546138,18.4906505647614,0.562460298326981,16.8856194025874,0.0320693160291011,0.260387811634349,26.0387811634349,8,85.0787547563312,0.702224897449616,17.7285318559557,6.76887341255837,0,406.664738972982,406.143218994141,0.388338351653662
+5989,309174,3791798,309274,3791698,88,59,22.4376731301939,0.0546628532497828,12.1908553550586,0.532638888888889,16.8856193506294,0.0306338568754095,0.254847645429363,25.4847645429363,5,86.2544699719376,0.754510835071176,15.2354570637119,10.314066124999,0,406.600595474243,406.314819335938,0.339551435818108
+5990,309174,3791698,309274,3791598,89,59,34.6260387811634,0.0843562550150969,13.8842440700869,0.531859551449104,15.1752860086447,0.0427158009161932,0.279778393351801,27.9778393351801,3,89.0986024717568,0.777539311517212,17.7285318559557,9.12180930789154,0,406.235529581706,406.084411621094,0.157508876357221
+5991,309174,3791598,309274,3791498,90,59,7.36842105263158,0.0377916022467634,8.80426627935834,0.545833333333333,10.3911504415599,0.0205728446318397,0.0973684210526316,9.73684210526316,3,79.7975541103406,0.836543516704105,7.10526315789474,21.3367013158025,10.3911504745483,406.321105957031,406.055633544922,0.325742432214122
+5992,309174,3791498,309274,3791398,91,59,0,NA,NA,NA,NA,0.0292676346567366,0.157894736842105,15.7894736842105,6,75.7537260332312,0.600127551020408,5.81717451523546,50.04080759015,15.5867252349854,406.795227050781,406.550384521484,0.357754473227224
+5993,309174,3791398,309274,3791298,92,59,29.3628808864266,0.286136417011209,29.9714735896288,0.723270440251572,NA,0.034459754997649,0.207756232686981,20.7756232686981,6,79.2771921270095,0.646190930281839,9.69529085872576,19.2832828013102,0,407.249040603638,406.8388671875,0.47190758430838
+5994,309174,3791298,309274,3791198,93,59,6.09418282548476,0.0593868035306282,14.6114541137388,0.606060606060606,NA,0.0258256495218621,0.163434903047091,16.3434903047091,5,77.0820873842674,0.695299311777691,5.26315789473684,20.7996619838779,0,407.499109903971,407.268768310547,0.25971109372904
+5995,309174,3791198,309274,3791098,94,59,0,NA,NA,NA,NA,0.0243484164534637,0.197368421052632,19.7368421052632,5,82.971094149249,0.660208643815201,8.1578947368421,43.8932910410563,20.7823009490967,407.469316482544,407.341766357422,0.121926994142668
+5996,309174,3791098,309274,3790998,95,59,22.1606648199446,0.215952012838648,25.9012552281284,0.772916666666667,NA,0.0149515441371074,0.038781163434903,3.8781163434903,6,41.7348886538472,0.427809798270893,1.66204986149584,15.8432388646262,0,407.114397684733,406.886688232422,0.357650282136112
+5997,309174,3790998,309274,3790898,96,59,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0217693846263445,0.141274238227147,14.1274238227147,3,80.8429968082455,0.825991842788283,8.58725761772853,22.6260912839104,0,406.564126968384,406.426666259766,0.201815332476642
+5998,309174,3790898,309274,3790798,97,59,3.32409972299169,0.0107976006419324,3.80556811321186,0.342592592592593,15.758213285213,0.0146643255306157,0.074792243767313,7.4792243767313,3,72.0712100988333,0.748642250382955,3.601108033241,21.6429314436736,5.19557523727417,406.468132019043,406.412750244141,0.0847001435812673
+5999,309174,3790798,309274,3790698,98,59,43.6842105263158,0.149366808880065,16.2706609773941,0.727305366591081,19.416042096036,0.0265680125841754,0.192105263157895,19.2105263157895,4,82.2198777092426,0.748574918566775,8.68421052631579,2.54999025553873,0,406.718534469604,406.555786132812,0.205863221106621
+6000,309174,3790698,309274,3790598,99,59,34.6260387811634,0.112475006686796,15.3598735570494,0.551618779011693,16.7243040981849,0.0292426691695143,0.286549707602339,28.6549707602339,2,90.951721315953,0.753120342771982,16.9590643274854,4.36215687284664,0,407.04838180542,406.835998535156,0.167437392967924
+6001,309274,3800598,309374,3800498,0,60,25.207756232687,0.0818818048679874,15.7236246738748,0.651272414063112,12.1230087272512,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.367833455404,387.828521728516,0.496854218461795
+6002,309274,3800498,309374,3800398,1,60,32.8947368421053,0.168712510030194,14.866234929203,0.383736559139785,37.824358195589,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.204237196181,387.779357910156,0.620351214303603
+6003,309274,3800398,309374,3800298,2,60,45.1523545706371,0.440002226158746,29.4136859629374,0.874233128834356,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.292823791504,387.905578613281,0.500399662254584
+6004,309274,3800298,309374,3800198,3,60,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.734995524089,388.3232421875,0.542758473829786
+6005,309274,3800198,309374,3800098,4,60,30.4709141274238,0.148467008826571,19.4356233101193,0.63047138047138,25.9778758441098,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.100565592448,388.627197265625,0.45129263372511
+6006,309274,3800098,309374,3799998,5,60,27.3684210526316,0.0935792055634142,16.1889338984968,0.620164609053498,10.3911503722826,0.0159272114184013,0.0394736842105263,3.94736842105263,1,64.398586025552,1,3.94736842105263,13.5691506067912,10.3911504745483,389.092783610026,388.941925048828,0.341268003723619
+6007,309274,3799998,309374,3799898,6,60,22.7146814404432,0.110675406579807,18.4178565335644,0.647885101010101,31.1734513246797,0.00630264083716671,0.0304709141274238,3.04709141274238,3,54.1555710798866,0.587428571428571,1.66204986149584,25.0377285697243,15.5867252349854,388.945988972982,388.795745849609,0.300425165059831
+6008,309274,3799898,309374,3799798,7,60,53.4626038781163,0.13024605774331,13.1342894837158,0.547980315449578,12.5432281255967,0.0184630042327838,0.155124653739612,15.5124653739612,3,88.6514871470416,0.902382964340037,14.9584487534626,9.72501601491656,0,389.089623345269,388.932098388672,0.259152094921168
+6009,309274,3799798,309374,3799698,8,60,13.0193905817175,0.0634359037713529,6.94495254358207,0.394927536231884,20.7823008831198,0.013424867258908,0.0526315789473684,5.26315789473684,5,63.4743845944387,0.636015325670498,3.8781163434903,9.87636661529541,0,389.505816141764,389.080047607422,0.347268222151592
+6010,309274,3799698,309374,3799598,9,60,0,NA,NA,NA,NA,0.0122701332409059,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,47.4214537484305,32.8597030639648,389.936235215929,389.775054931641,0.214395373972912
+6011,309274,3799598,309374,3799498,10,60,12.1883656509695,0.118773607061256,16.228110797036,0.700757575757576,NA,0.0167783636246583,0.105263157894737,10.5263157894737,3,81.6281577340688,0.751633986928105,8.31024930747922,14.8874825050956,5.19557523727417,390.081217447917,390.037322998047,0.078114829145884
+6012,309274,3799498,309374,3799398,11,60,13.2963988919668,0.0431904025677296,8.80960765034446,0.585069444444444,20.7823007445652,0.00022546157620467,0,0,0,NA,NA,0,NA,NA,390.098434448242,389.985321044922,0.15426199196485
+6013,309274,3799398,309374,3799298,12,60,21.0526315789474,0.205154412196716,24.5713358894689,0.736842105263158,NA,0.00278747915326374,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,10.8056782881419,7.34765291213989,389.991841634115,389.861602783203,0.230172300621015
+6014,309274,3799298,309374,3799198,13,60,12.6315789473684,0.0647856038515944,11.7971761710469,0.573710073710074,36.3690261817537,0.0550671826071553,0.347368421052632,34.7368421052632,4,91.7242904019606,0.872841654397002,30,30.5612856583162,0,389.816678365072,389.704681396484,0.163922059242042
+6015,309274,3799198,309374,3799098,14,60,33.7950138504155,0.164663409789469,16.9306106568865,0.672321428571429,41.5646013505757,0.048341292584432,0.335180055401662,33.5180055401662,1,95.959595959596,0.924791666666667,33.5180055401662,13.1998703223615,0,389.701819525825,389.690399169922,0.042250924169684
+6016,309274,3799098,309374,3798998,15,60,12.4653739612188,0.0607365036108698,10.3574282017246,0.692901234567901,31.1734513246797,0.0213242685709888,0.07202216066482,7.20221606648199,3,78.8409858683949,0.737167819439388,6.37119113573407,45.2224582708799,7.34765291213989,389.79557800293,389.717163085938,0.120702904749472
+6017,309274,3798998,309374,3798898,16,60,14.6814404432133,0.143068208505604,15.6771864642829,0.79559748427673,NA,0.0251285093558347,0.199445983379501,19.9445983379501,3,86.8486929644081,0.793450126692641,11.6343490304709,28.9045474992858,0,390.051350911458,389.881378173828,0.404354232748126
+6018,309274,3798898,309374,3798798,17,60,2.10526315789474,0.0215952012838648,6.21144090579406,0.5,NA,0.0326709010510776,0.213157894736842,21.3157894736842,1,93.6953594112267,0.947045707915273,21.3157894736842,51.1316315450786,15.5867252349854,390.918034871419,390.180084228516,0.861120853048247
+6019,309274,3798798,309374,3798698,18,60,0.277008310249307,0.0026994001604831,0,0,NA,0.0259197838385164,0.202216066481994,20.2216066481994,3,90.2933403514941,0.833523220486111,18.8365650969529,62.6811285672122,37.8243598937988,392.115868462457,391.595703125,0.596465560406224
+6020,309274,3798698,309374,3798598,19,60,44.8753462603878,0.0624718322854661,9.66874933976956,0.505023423510818,14.5898091923543,0.0219298767601245,0.0664819944598338,6.64819944598338,4,67.5686207136546,0.605341246290801,3.601108033241,3.26119657357534,0,392.496383666992,392.054901123047,0.366729495658937
+6021,309274,3798598,309374,3798498,20,60,48.1994459833795,0.117423906981015,10.7114113185052,0.350029036004646,22.2410957074601,0.0319889696571973,0.254847645429363,25.4847645429363,6,81.2988197125206,0.738144890742588,9.14127423822715,8.66682235054348,0,392.633290608724,392.432464599609,0.288385297608764
+6022,309274,3798498,309374,3798398,21,60,18.1578947368421,0.093129305536667,16.2427990466663,0.494708994708995,15.5867256623399,0.0127171509716151,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.931345980126468,2.89473684210526,11.3358003442938,5.19557523727417,392.611760457357,392.135162353516,0.436864260802367
+6023,309274,3798398,309374,3798298,22,60,25.7617728531856,0.251044214924928,30.5952874489217,0.781362007168459,NA,0.0258378955405631,0.124653739612188,12.4653739612188,4,74.5651804159355,0.729430379746835,5.81717451523546,4.08283723195394,0,392.152299669054,391.771118164062,0.595497933094802
+6024,309274,3798298,309374,3798198,23,60,14.6814404432133,0.0715341042528022,12.8307382298072,0.410130718954248,18.7329128064101,0.0382971227397353,0.285318559556787,28.5318559556787,3,89.7355320356839,0.735281793421328,18.2825484764543,10.6833530166774,0,392.007479349772,391.740692138672,0.504737946483858
+6025,309274,3798198,309374,3798098,24,60,35.1800554016621,0.171411910190677,16.3787772663063,0.730436720142603,29.390611619267,-0.00339897445567827,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,5.55801097551982,0,392.749698215061,392.080474853516,0.889278314069339
+6026,309274,3798098,309374,3797998,25,60,28.4210526315789,0.0485892028886958,7.15807520972634,0.447916666666667,23.2234693790553,0.010375339948874,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,0,0,393.796104431152,393.201385498047,0.555044336943935
+6027,309274,3797998,309374,3797898,26,60,70.6371191135734,0.688347040923191,36.0530305387814,0.879084967320261,NA,0.000471100147332741,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.894493804068272,8.86426592797784,3.98230059444904,0,394.267445882161,393.975402832031,0.388842868123031
+6028,309274,3797898,309374,3797798,27,60,81.1634349030471,0.790924247021549,34.9257196295478,0.910125142207054,NA,0.0195647434234652,0.0886426592797784,8.86426592797784,4,72.3168678256661,0.746785129763853,5.26315789473684,2.47482144832611,0,394.645372178819,393.890594482422,1.24999932609819
+6029,309274,3797798,309374,3797698,28,60,27.4238227146814,0.0668101539719568,12.6200204383131,0.466969373219373,18.1845131688139,0.017656519686984,0.0581717451523546,5.81717451523546,3,68.0084633833326,0.734558823529412,3.8781163434903,4.75916374297369,0,396.464866638184,394.724060058594,1.87463959962889
+6030,309274,3797698,309374,3797598,29,60,67.1052631578947,0.688347040923191,35.2778070310465,0.869281045751634,NA,0.0214056784068816,0.0842105263157895,8.42105263157895,6,64.0102316470155,0.601016799292661,3.42105263157895,8.93864381313324,0,397.969363742405,397.014312744141,1.77930595485378
+6031,309274,3797598,309374,3797498,30,60,21.0526315789474,0.205154412196716,19.0157505805254,0.824561403508772,NA,0.0129535570773149,0.0470914127423823,4.70914127423823,2,70.2737097001904,0.832093023255814,3.32409972299169,32.5980833838968,5.19557523727417,398.425038655599,397.407135009766,1.45913974341563
+6032,309274,3797498,309374,3797398,31,60,0,NA,NA,NA,NA,0.00794131109968906,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.82907196969697,2.49307479224377,33.4522370232476,27.9790287017822,398.891296386719,398.144714355469,1.0669131790093
+6033,309274,3797398,309374,3797298,32,60,0,NA,NA,NA,NA,-0.0264483362462667,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,42.6363849639893,40.5787391662598,400.23424021403,399.040405273438,1.29025819609393
+6034,309274,3797298,309374,3797198,33,60,4.73684210526316,0.0242946014443479,5.46527019269294,0.541666666666667,25.9778761038998,-0.0976798701225657,0,0,0,NA,NA,0,NA,NA,401.544436984592,400.844055175781,0.864642872057371
+6035,309274,3797198,309374,3797098,34,60,20.2216066481994,0.0985281058576332,14.9994953508492,0.626245210727969,18.7329127343573,-0.122433638726451,0,0,0,NA,NA,0,NA,NA,402.778485616048,401.918243408203,0.887426289866671
+6036,309274,3797098,309374,3796998,35,60,7.75623268698061,0.0251944014978423,6.39722200204801,0.456349206349206,32.9053094025391,-0.0528173992631846,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,39.9442460677203,30.2951488494873,403.937510172526,403.547180175781,0.668005180100213
+6037,309274,3796998,309374,3796898,36,60,22.7146814404432,0.0737836043865381,17.274588518403,0.547294843863471,17.3185838960732,-0.00961630524378913,0.0664819944598338,6.64819944598338,2,75.9106160041372,0.830860534124629,4.43213296398892,15.630957643191,5.19557523727417,404.763720194499,404.074127197266,0.540807323916668
+6038,309274,3796898,309374,3796798,37,60,4.73684210526316,0.0242946014443479,7.52347179506387,0.4625,10.3911504415599,0.0280884682824092,0.294736842105263,29.4736842105263,2,93.0222275238709,0.908748337520319,26.5789473684211,54.0589171307428,11.6176595687866,405.381144205729,405.179016113281,0.349400804083785
+6039,309274,3796798,309374,3796698,38,60,9.14127423822715,0.0178160410591885,5.1919781807481,0.352941176470588,13.5084955740279,0.0201637662621957,0.0554016620498615,5.54016620498615,6,51.2146926592718,0.487749503358244,1.93905817174515,35.1701101303101,10.3911504745483,405.886637369792,405.448089599609,0.456922163535269
+6040,309274,3796698,309374,3796598,39,60,20.7756232686981,0.101227506018116,20.2492448257053,0.654860069965018,16.4298513045218,0.0166505560050017,0.0692520775623269,6.92520775623269,2,77.5817010222248,0.838839285714286,5.54016620498615,14.2785798072815,0,407.01047261556,406.023162841797,1.037990349477
+6041,309274,3796598,309374,3796498,40,60,49.0304709141274,0.159264609468503,19.9773189296938,0.580829690974618,15.5867255064659,0.0119982268062254,0.0221606648199446,2.21606648199446,2,53.6717642846206,0.590934844192635,1.38504155124654,6.91679239273071,0,407.806664360894,407.453979492188,0.588287798700682
+6042,309274,3796498,309374,3796398,41,60,36.01108033241,0.175461010431402,17.1114190987665,0.653116531165312,25.9778758441098,0.0234153062884512,0.127423822714681,12.7423822714681,4,81.6075461458208,0.706145706145706,9.41828254847645,6.0940900263579,0,407.412239074707,406.996459960938,0.561653117574415
+6043,309274,3796398,309374,3796298,42,60,0.526315789473684,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0201257517071913,0.157894736842105,15.7894736842105,3,85.4904030292537,0.794471153846154,9.73684210526316,49.1444777727127,5.19557523727417,405.270141601562,402.479583740234,3.3235661304769
+6044,309274,3796298,309374,3796198,43,60,14.404432132964,0.140368808345121,17.7558942178715,0.753205128205128,NA,0.02584521672295,0.191135734072022,19.1135734072022,3,86.9377541971934,0.867174232989924,15.2354570637119,12.4250943073328,0,400.30685933431,399.448425292969,2.1648361371713
+6045,309274,3796198,309374,3796098,44,60,6.09418282548476,0.0593868035306282,10.4397438572751,0.696969696969697,NA,0.0186553069073036,0.0415512465373961,4.15512465373961,5,46.536582486703,0.383473462953232,1.38504155124654,61.4624791463216,31.1734504699707,399.311442057292,399.104370117188,0.452352978487832
+6046,309274,3796098,309374,3795998,45,60,9.14127423822715,0.0445401026479712,8.38991466070162,0.447222222222222,36.7382645240838,0.019837951478732,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,30.8413131713867,18.7329120635986,398.659599304199,398.3671875,0.434885599727541
+6047,309274,3795998,309374,3795898,46,60,7.63157894736842,0.0782826046540099,23.9720277411347,0.5,NA,0.0108936948987321,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,60.568537902832,42.8438110351562,398.230818006727,398.152069091797,0.154355573776579
+6048,309274,3795898,309374,3795798,47,60,14.404432132964,0.0467896027817071,12.5736387472243,0.549272486772487,23.0230919121596,0.01738106383548,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,44.4625571114676,36.369026184082,398.132255554199,398.119995117188,0.0411094256502211
+6049,309274,3795798,309374,3795698,48,60,25.7617728531856,0.0836814049749762,15.0282028180574,0.675798212005109,22.9405623069772,0.0260360602084029,0.166204986149584,16.6204986149584,7,77.8840992251972,0.723230258113979,11.3573407202216,7.81543771425883,0,398.212744818793,398.163482666016,0.0983757160812387
+6050,309274,3795698,309374,3795598,49,60,21.8836565096953,0.071084204226055,16.1010386782372,0.590190816935003,13.8548672554132,0.041986471213153,0.407202216066482,40.7202216066482,5,89.6272518319038,0.655091547093771,18.5595567867036,14.8186608690794,0,398.43049621582,398.293121337891,0.208752698622319
+6051,309274,3795598,309374,3795498,50,60,19.2105263157895,0.0394112423430533,10.5947690872206,0.456818181818182,19.0413210516806,0.0281438770406423,0.176315789473684,17.6315789473684,3,86.1523736331931,0.771715682258813,10,8.87089818271238,0,398.822150336372,398.585174560547,0.427579689516573
+6052,309274,3795498,309374,3795398,51,60,19.1135734072022,0.093129305536667,22.2278559954592,0.616724738675958,25.9778761038998,0.0121184129784977,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483,399.223991394043,398.706604003906,1.01183515982945
+6053,309274,3795398,309374,3795298,52,60,28.808864265928,0.0561475233380485,9.74441336935056,0.548486279802069,15.0422149349001,0.0185084779859255,0.038781163434903,3.8781163434903,4,59.5407212395488,0.583861671469741,2.77008310249307,4.01856480325971,0,399.144022623698,398.708648681641,0.995134591225258
+6054,309274,3795298,309374,3795198,53,60,17.7285318559557,0.0575872034236395,11.613719765254,0.411240310077519,27.7097345108264,0.0295206690677945,0.166204986149584,16.6204986149584,4,82.3076820955564,0.723230258113979,8.86426592797784,17.139387456576,5.19557523727417,399.453305562337,398.770935058594,0.883343757434786
+6055,309274,3795198,309374,3795098,54,60,15.7894736842105,0.0809820048144931,18.1172238237732,0.625,10.3911504415599,0.0194799831956659,0.0236842105263158,2.36842105263158,4,42.140666859623,0.40251572327044,1.31578947368421,11.5457226435343,5.19557523727417,398.680333455404,398.235778808594,0.70266046201713
+6056,309274,3795098,309374,3794998,55,60,13.0193905817175,0.0422906025142353,14.8014123442924,0.408796296296296,15.5867256311651,0.0265464276031667,0.138504155124654,13.8504155124654,6,73.5139885852932,0.726877246075279,6.64819944598338,28.6639627742767,5.19557523727417,398.07711452908,398.011474609375,0.147832230986977
+6057,309274,3794998,309374,3794898,56,60,16.8975069252078,0.0274439016315782,5.15008732745926,0.271759259259259,24.2460176969731,0.0240544890328646,0.0914127423822715,9.14127423822715,5,68.4408485009499,0.694275067750677,4.98614958448753,10.8868125135248,0,398.125963846842,398.000213623047,0.465748187841238
+6058,309274,3794898,309374,3794798,57,60,14.6814404432133,0.0286136417011209,7.39602489527551,0.429074074074074,35.3299114181709,0.0202736106125145,0.102493074792244,10.2493074792244,4,76.1288772478629,0.671220400728597,5.54016620498615,10.8028538807018,0,399.521464029948,398.509063720703,1.56849125212009
+6059,309274,3794798,309374,3794698,58,60,16.8421052631579,0.0863808051354593,25.3174749414902,0.547949735449735,20.7823008831198,0.0175260619626849,0.0578947368421053,5.78947368421053,6,61.2868582065495,0.562931317778508,3.15789473684211,11.0706028504805,5.19557523727417,401.394231160482,400.862731933594,0.745203894209062
+6060,309274,3794698,309374,3794598,59,60,28.808864265928,0.0701844041725607,11.2514162642684,0.351435023310023,13.6021925074905,0.0178552783028496,0.0554016620498615,5.54016620498615,2,72.8230226524091,0.795099801343298,3.8781163434903,17.5000113725662,0,401.99602593316,401.469482421875,0.771816208891278
+6061,309274,3794598,309374,3794498,60,60,6.37119113573407,0.0124172407382223,3.58812831728656,0.204444444444444,32.938334892237,0.0232868306976492,0.0775623268698061,7.75623268698061,7,67.0828553482954,0.518184851518185,4.98614958448754,13.5026459012713,5.19557523727417,402.338973999023,401.8857421875,0.654289121088654
+6062,309274,3794498,309374,3794398,61,60,8.58725761772853,0.0278938016583254,9.3181235962361,0.226337448559671,31.1734513246797,0.0176700264670529,0.0831024930747922,8.31024930747922,3,79.8991895741846,0.755163696898699,7.20221606648199,11.7861396789551,0,402.328847249349,401.855377197266,0.686628758609659
+6063,309274,3794398,309374,3794298,62,60,21.0526315789474,0.215952012838648,31.0177884395632,0.679166666666667,NA,0.0116646280418817,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,48.8205604553223,46.4706382751465,402.076975504557,401.770385742188,0.599747285911053
+6064,309274,3794298,309374,3794198,63,60,14.404432132964,0.0350922020862803,7.88461703699396,0.440025252525252,16.7002682046899,0.01560834181827,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483,401.670081244575,401.444641113281,0.395750809348078
+6065,309274,3794198,309374,3794098,64,60,24.0997229916898,0.07828260465401,11.2632060381089,0.551574074074074,10.7999867452537,0.00810043801380086,0,0,0,NA,NA,0,NA,NA,401.459762573242,401.390808105469,0.130394516753097
+6066,309274,3794098,309374,3793998,65,60,6.09418282548476,0.0296934017653141,7.48914701801138,0.391666666666667,10.3911503376439,0.0105703253767561,0,0,0,NA,NA,0,NA,NA,401.713338216146,401.518493652344,0.326410388421882
+6067,309274,3793998,309374,3793898,66,60,13.1578947368421,0.0449900026747184,9.18382547331051,0.624501424501424,13.8548671168586,0.00497607150324544,0.0157894736842105,1.57894736842105,4,20.982045994374,0.274255156608098,0.526315789473684,15.7993314266205,7.34765291213989,402.289115905762,401.924072265625,0.441739027647186
+6068,309274,3793898,309374,3793798,67,60,7.75623268698061,0.0377916022467634,8.41229983561547,0.596296296296296,15.5867255064659,0.00896448370301773,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,20.7823009490967,20.7823009490967,403.101335313585,402.769927978516,0.480726440864821
+6069,309274,3793798,309374,3793698,68,60,11.0803324099723,0.026994001604831,5.42171118176088,0.418981481481481,24.0495738240495,-0.000330137011897678,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,29.0518050193787,25.977876663208,403.814058939616,403.436859130859,0.565257557983746
+6070,309274,3793698,309374,3793598,69,60,17.4515235457064,0.0425155525276089,7.97407389228746,0.658394607843137,18.3444143048646,-0.00464427015224392,0,0,0,NA,NA,0,NA,NA,404.820152282715,404.258514404297,0.644903915391673
+6071,309274,3793598,309374,3793498,70,60,6.05263157894737,0.0310431018455557,7.51932188358575,0.565277777777778,44.6940277025763,0.015071648102601,0.0210526315789474,2.10526315789474,2,58.2306946168411,0.795698924731183,1.84210526315789,42.0861710309982,10.3911504745483,405.835113525391,405.28173828125,0.799053466241937
+6072,309274,3793498,309374,3793398,71,60,9.97229916897507,0.0971784057773917,13.4374756658577,0.75,NA,0.0108082700327508,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,34.0986480712891,25.977876663208,406.906349182129,406.458892822266,0.592278108495352
+6073,309274,3793398,309374,3793298,72,60,0,NA,NA,NA,NA,0.0137213387677654,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,114.302658081055,114.302658081055,407.442864312066,407.132568359375,0.477720797558873
+6074,309274,3793298,309374,3793198,73,60,0,NA,NA,NA,NA,0.0129679197115935,0,0,0,NA,NA,0,NA,NA,408.042358398438,407.352264404297,1.16148481792432
+6075,309274,3793198,309374,3793098,74,60,0,NA,NA,NA,NA,0.0172393454545511,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,83.1292037963867,83.1292037963867,409.201717800564,408.138488769531,1.30089137360534
+6076,309274,3793098,309374,3792998,75,60,29.6398891966759,0.288835817171692,23.500550278831,0.806853582554517,NA,0.0209934495646559,0.0249307479224377,2.49307479224377,3,50.1050088594493,0.572679924242424,1.66204986149584,9.94209416707357,0,408.461563110352,407.818634033203,0.960034625692497
+6077,309274,3792998,309374,3792898,76,60,2.49307479224377,0.0242946014443479,6.75926781682385,0.5,NA,0.0157768378255979,0.0526315789473684,5.26315789473684,2,73.5900382740298,0.854406130268199,4.43213296398892,30.0088708777177,18.7329120635986,408.650363498264,408.084655761719,0.656486847419053
+6078,309274,3792898,309374,3792798,77,60,6.64819944598338,0.0215952012838648,6.33120348496667,0.343790849673203,39.832743151481,0.0275842923632269,0.119113573407202,11.9113573407202,3,80.7157540711648,0.810796645702306,7.20221606648199,18.0737958287084,0,408.601252237956,408.253753662109,0.37351390357729
+6079,309274,3792798,309374,3792698,78,60,3.42105263157895,0.0175461010431402,3.63058797424974,0.291666666666667,64.2657162255477,0.0133187287717623,0.0368421052631579,3.68421052631579,2,66.5867784271973,0.740437158469945,2.63157894736842,41.9606235708509,0,408.448167588976,408.322998046875,0.2532159925537
+6080,309274,3792698,309374,3792598,79,60,8.03324099722992,0.039141302327005,8.08207979910925,0.562770562770563,62.7783741444511,0.0236697588909836,0.113573407202216,11.3573407202216,4,77.0433265342167,0.803804347826087,7.75623268698061,17.1611039812972,0,407.944653828939,407.680603027344,0.349049232596225
+6081,309274,3792598,309374,3792498,80,60,0,NA,NA,NA,NA,0.0187087224445234,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.927203065134099,5.26315789473684,63.7543865003084,52.9846801757812,407.501258002387,407.271301269531,0.43413681045795
+6082,309274,3792498,309374,3792398,81,60,10.5263157894737,0.0256443015245895,6.51828054733918,0.530952380952381,11.4671892316203,0.0208677981897389,0.0415512465373961,4.15512465373961,4,56.130703978239,0.620599054125066,2.49307479224377,7.7636487642924,0,406.605125427246,406.068420410156,0.626944979767854
+6083,309274,3792398,309374,3792298,82,60,0,NA,NA,NA,NA,0.00820745909477649,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,20.7118567625682,7.34765291213989,405.874766031901,405.76953125,0.243493105747128
+6084,309274,3792298,309374,3792198,83,60,19.6675900277008,0.0958287056971501,16.6290814061982,0.691269841269841,36.3690261817537,0.0150509389658965,0,0,0,NA,NA,0,NA,NA,405.616078694661,405.406860351562,0.200866138500899
+6085,309274,3792198,309374,3792098,84,60,47.0914127423823,0.229449013641064,27.5776275065836,0.765319426336376,21.4219052194909,0.0322733148071435,0.102493074792244,10.2493074792244,5,67.381692703644,0.671220400728597,3.601108033241,2.3630637607059,0,405.245221455892,405.159362792969,0.128751563025965
+6086,309274,3792098,309374,3791998,85,60,3.32409972299169,0.0161964009628986,7.32166076562451,0.25,41.5646017662397,0.0170773628676381,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,20.7823009490967,20.7823009490967,405.402845594618,405.220275878906,0.42002264690439
+6087,309274,3791998,309374,3791898,86,60,7.63157894736842,0.0260942015513367,5.09576785527364,0.421082621082621,13.8548671168586,0.0204245745768084,0.0578947368421053,5.78947368421053,3,72.8303872827983,0.719027275714755,4.47368421052632,45.3097104592757,14.6953058242798,406.525802612305,405.742492675781,0.762234071923601
+6088,309274,3791898,309374,3791798,87,60,21.606648199446,0.0701844041725607,8.54207349028656,0.403886280646844,23.3318318509613,0.0203885368686708,0.0969529085872576,9.69529085872576,5,71.522234720781,0.732705733023059,6.09418282548476,11.178961794717,0,407.143466525608,406.887390136719,0.278403792499675
+6089,309274,3791798,309374,3791698,88,60,11.0803324099723,0.0359920021397747,8.57741958973108,0.472934472934473,51.9557519653289,0.0239243970085368,0.0664819944598338,6.64819944598338,5,60.0719755695684,0.605341246290801,2.21606648199446,14.8981699943542,0,406.821207682292,406.618865966797,0.288257258519545
+6090,309274,3791698,309374,3791598,89,60,26.3157894736842,0.0512886030491789,9.1271423261723,0.386739911553344,22.3866982882503,0.0507100212647821,0.404432132963989,40.4432132963989,3,91.8287748620003,0.81134047556833,25.7617728531856,7.20634430728547,0,406.156158447266,405.956573486328,0.36256902785138
+6091,309274,3791598,309374,3791498,90,60,8.68421052631579,0.0296934017653141,8.40756799199018,0.405050505050505,30.8448304020505,0.0267740728253772,0.147368421052632,14.7368421052632,5,84.2831021534274,0.697721776759577,11.8421052631579,14.9818060398102,0,405.933171590169,405.837310791016,0.191449662848049
+6092,309274,3791498,309374,3791398,91,60,17.4515235457064,0.0850311050552177,14.3038457371383,0.70997920997921,14.6953058096335,0.0361218022529572,0.310249307479224,31.0249307479224,4,91.6876238659413,0.734442721380572,25.207756232687,20.0599039793015,0,406.144863552517,405.885009765625,0.474934581488114
+6093,309274,3791398,309374,3791298,92,60,31.5789473684211,0.102577206098358,14.8978114142698,0.687179487179487,17.3185838960732,0.0318378127181088,0.199445983379501,19.9445983379501,7,80.859655284963,0.675421627659864,11.0803324099723,10.7101023064719,0,406.615203857422,406.04052734375,0.782120605210792
+6094,309274,3791298,309374,3791198,93,60,13.2963988919668,0.0323928019257972,7.61067609322763,0.441414141414141,21.2825889398362,0.0212971465327146,0.0775623268698061,7.75623268698061,4,70.5120865603046,0.783183183183183,4.43213296398892,14.1853101934705,5.19557523727417,407.053785536024,406.492095947266,0.651974727639634
+6095,309274,3791198,309374,3791098,94,60,22.3684210526316,0.114724506820532,15.5785948231726,0.543498168498168,10.3911504415599,0.0201846224217087,0.105263157894737,10.5263157894737,5,80.2863635794535,0.79982440737489,9.21052631578947,6.70405657291412,0,407.394154866536,407.192901611328,0.215058416660849
+6096,309274,3791098,309374,3790998,95,60,44.0443213296399,0.214602312758407,20.8436894981471,0.809173400025651,11.6176592829322,0.0242391086473851,0.155124653739612,15.5124653739612,4,82.9101036646644,0.694946763562616,10.5263157894737,5.86333483457565,0,407.236877441406,407.016937255859,0.28180534296125
+6097,309274,3790998,309374,3790898,96,60,7.20221606648199,0.0701844041725607,13.017242777978,0.641025641025641,NA,0.0400027170721048,0.329639889196676,32.9639889196676,4,86.2071575156593,0.758283593510866,12.4653739612188,16.4398166311889,0,406.61890411377,406.434692382812,0.285571469062852
+6098,309274,3790898,309374,3790798,97,60,31.8559556786704,0.155215509227778,17.4044024499118,0.725937183383992,20.7823006752878,0.0272998136104011,0.155124653739612,15.5124653739612,4,81.6795506006262,0.719351022477607,8.86426592797784,5.82821084771837,0,406.463273790148,406.41455078125,0.098657435309723
+6099,309274,3790798,309374,3790698,98,60,38.4210526315789,0.394112423430533,38.5254845617916,0.724885844748858,NA,0.0391609982445707,0.336842105263158,33.6842105263158,5,86.8779509403069,0.728183118741059,12.8947368421053,5.75712237507105,0,406.789232889811,406.580932617188,0.216720768140235
+6100,309274,3790698,309374,3790598,99,60,60.387811634349,0.294234617492658,21.2866969461246,0.662322274881517,10.3911503376439,0.0493346639664276,0.476608187134503,47.6608187134503,4,91.6076330672219,0.745251396648045,33.6257309941521,4.00304818007112,0,406.979708353678,406.826751708984,0.207347723002987
+6101,309374,3800598,309474,3800498,0,61,30,0.153865809147482,26.9014073995781,0.725961538461539,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.678592681885,388.418609619141,0.179732096515336
+6102,309374,3800498,309474,3800398,1,61,30.5,0.329326819578822,26.1819613923128,0.842896174863388,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.725084940592,388.583251953125,0.13433022721162
+6103,309374,3800398,309474,3800298,2,61,27.3684210526316,0.140368808345072,17.6031516773067,0.678810480015299,41.888066574142,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.879837036133,388.604583740234,0.314540572162221
+6104,309374,3800298,309474,3800198,3,61,8.68421052631579,0.0222700513239777,5.43972801499021,0.340277777777778,46.7601769870031,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.376576741536,388.891906738281,0.446145262063001
+6105,309374,3800198,309474,3800098,4,61,49.7368421052632,0.170062210110375,15.6856778628234,0.45952380952381,17.7388033463717,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.757926940918,389.361053466797,0.357014632092124
+6106,309374,3800098,309474,3799998,5,61,18,0.0323928019257858,7.01474051030842,0.390508021390374,27.7097343722669,-0.0221351436684927,0,0,0,NA,NA,0,NA,NA,389.687835693359,389.40185546875,0.35131853891457
+6107,309374,3799998,309474,3799898,6,61,33.4210526315789,0.0685647640762466,11.6496324225914,0.4,13.5084955116757,-0.00612065262359561,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210526,3.82239643732707,0,389.64582824707,389.276977539062,0.353858087748989
+6108,309374,3799898,309474,3799798,7,61,34.4736842105263,0.0884053552557903,16.060135204739,0.538762019230769,11.0044048102876,0.0274380317639282,0.239473684210526,23.9473684210526,3,88.9847007813789,0.732154299628348,14.4736842105263,9.21645476267888,0,389.483001708984,389.167846679688,0.346016381700293
+6109,309374,3799798,309474,3799698,8,61,0.526315789473684,0.00539880032096429,3.67382645240773,0.0833333333333333,NA,0.0179374257195975,0.118421052631579,11.8421052631579,3,80.6914923406494,0.835820895522388,6.31578947368421,35.9139161003961,10.3911504745483,389.603271484375,389.424041748047,0.147206291857172
+6110,309374,3799698,309474,3799598,9,61,0,NA,NA,NA,NA,0.0295049213097082,0.24,24,2,90.2841623403262,0.869951040391677,14.5,54.7801791230837,11.6176595687866,389.847236633301,389.735076904297,0.156289752739351
+6111,309374,3799598,309474,3799498,10,61,21.5789473684211,0.055337703289884,12.3690106309651,0.634032287157287,20.7823008051782,0.0140187711329226,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.80882978439331,0,390.010709762573,389.91943359375,0.137107790439839
+6112,309374,3799498,309474,3799398,11,61,17.8947368421053,0.183559210912786,38.7773995964344,0.593137254901961,NA,0.00230203558551837,0,0,0,NA,NA,0,NA,NA,390.54514503479,390.198303222656,0.515184085816487
+6113,309374,3799398,309474,3799298,12,61,11.5789473684211,0.118773607061214,16.4261701429382,0.746212121212121,NA,0.0107240220316816,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,0,0,390.74978129069,390.203979492188,0.528489611264157
+6114,309374,3799298,309474,3799198,13,61,0,NA,NA,NA,NA,0.0105844644955141,0.01,1,1,52.6315789473684,0.747474747474748,1,32.5666356086731,27.9790287017822,390.222969055176,389.832000732422,0.468764562157484
+6115,309374,3799198,309474,3799098,14,61,4.73684210526316,0.0161964009628929,4.04588316187314,0.302350427350427,62.7769012806853,0.0490552070607679,0.326315789473684,32.6315789473684,2,94.8037848736434,0.920833333333333,31.8421052631579,32.8060551535699,5.19557523727417,389.839075724284,389.724182128906,0.166787702701914
+6116,309374,3799098,309474,3798998,15,61,17.3684210526316,0.0445401026479554,8.19630154117992,0.340277777777778,14.5620315720247,0.0238867150462571,0.136842105263158,13.6842105263158,2,89.6431043117188,0.843792819950671,13.4210526315789,24.5228504400987,10.3911504745483,389.890790939331,389.727355957031,0.215140616120431
+6117,309374,3798998,309474,3798898,16,61,17.3684210526316,0.0890802052959109,11.7341832661939,0.459635416666667,11.6176592829313,0.0377079446294566,0.297368421052632,29.7368421052632,1,95.4913966023853,0.874421678783873,29.7368421052632,25.2906349612548,0,390.123611450195,389.906463623047,0.290433186395443
+6118,309374,3798898,309474,3798798,17,61,0.5,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0428618842348078,0.2975,29.75,2,94.2597554893528,0.894556478186371,28.5,52.48927409709,20.7823009490967,390.699342727661,390.182434082031,0.539805748156923
+6119,309374,3798798,309474,3798698,18,61,21.5789473684211,0.221350813159536,19.0777013433118,0.843495934959349,NA,0.0427497506899894,0.294736842105263,29.4736842105263,2,94.9020352185755,0.88769026156347,29.2105263157895,20.3259095847607,0,391.716484069824,391.240570068359,0.622291882957876
+6120,309374,3798698,309474,3798598,19,61,35.7894736842105,0.0611864036375953,11.492304420541,0.580953088306029,15.8677674651291,0.0137355543550496,0.0421052631578947,4.21052631578947,4,60.3869276275906,0.652014652014652,2.89473684210526,6.19068866968155,0,392.460599899292,392.113006591797,0.329517336611003
+6121,309374,3798598,309474,3798498,20,61,32.1052631578947,0.0658653639157644,12.3785876023846,0.445416666666667,16.6258405402303,0.019449748952703,0.131578947368421,13.1578947368421,6,74.8293648936993,0.756149732620321,6.05263157894737,9.52430587768555,0,392.751790364583,392.658630371094,0.147664464071082
+6122,309374,3798498,309474,3798398,21,61,20.5,0.110675406579768,19.2233674592853,0.503650793650794,15.5867255064659,0.00872794425396933,0.005,0.5,1,30.8308651382582,1,0.5,13.1564826965332,11.6176595687866,392.973163604736,392.813171386719,0.152638246474787
+6123,309374,3798398,309474,3798298,22,61,1.57894736842105,0.0161964009628929,4.73848229777347,0.5,NA,0.00863635413695468,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,18.7329120635986,18.7329120635986,392.925674438477,392.540466308594,0.302578866468423
+6124,309374,3798298,309474,3798198,23,61,16.0526315789474,0.164663409789411,20.2707329467608,0.734972677595628,NA,0.024165735395371,0.131578947368421,13.1578947368421,4,81.0735223848471,0.674866310160428,8.15789473684211,11.9132783222198,0,392.953977584839,392.524871826172,0.446994398524096
+6125,309374,3798198,309474,3798098,24,61,67.1052631578947,0.344173520461474,20.6287513535709,0.732681755829904,15.5867255064659,-0.0164124672184387,0.0421052631578947,4.21052631578947,1,79.0554595032226,0.956501831501832,4.21052631578947,9.61361667513847,0,393.455205281576,392.883239746094,0.462778610834097
+6126,309374,3798098,309474,3797998,25,61,69.5,0.250144414871346,16.3290082895378,0.637037037037037,22.5141590648952,-0.0060349692174168,0,0,0,NA,NA,0,NA,NA,394.142265319824,393.687042236328,0.530691010339764
+6127,309374,3797998,309474,3797898,26,61,66.3157894736842,0.680248840441501,35.9541706940322,0.881613756613757,NA,-0.0120139502393278,0,0,0,NA,NA,0,NA,NA,394.965255737305,394.412414550781,0.569413896094716
+6128,309374,3797898,309474,3797798,27,61,51.0526315789474,0.523683631133537,33.6141610954233,0.867697594501718,NA,0.00571908326585943,0.0315789473684211,3.15789473684211,2,68.4650420918366,0.817774936061381,2.89473684210526,6.67380885283152,0,396.154574076335,395.123229980469,1.56708902808855
+6129,309374,3797798,309474,3797698,28,61,22.3684210526316,0.0764830045469942,10.8941630800065,0.557850918145036,25.9778758441098,0.0202337425636343,0.05,5,3,71.161901527999,0.673321234119782,3.94736842105263,10.7955051974246,0,398.922332763672,396.993957519531,1.67115971529918
+6130,309374,3797698,309474,3797598,29,61,95.5,1.03117086130418,38.974057956471,0.921029668411867,NA,0.018386702791322,0.0525,5.25,4,63.482066847244,0.736147757255937,2.5,0,0,400.078392028809,399.381561279297,0.657574498986547
+6131,309374,3797598,309474,3797498,30,61,78.4210526315789,0.80442124782368,35.9507952991783,0.880313199105145,NA,0.00427224979058864,0.0342105263157895,3.42105263157895,3,60.5915358120313,0.654859218891916,2.36842105263158,6.09186818049504,0,399.998296737671,399.662811279297,0.410375625995206
+6132,309374,3797498,309474,3797398,31,61,5.52631578947368,0.0283437016850625,7.53437528499876,0.503205128205128,10.3911503376439,-0.00849325087067547,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707,399.764846801758,399.539337158203,0.169848514111886
+6133,309374,3797398,309474,3797298,32,61,7.89473684210526,0.0404910024072322,8.76182329098833,0.392857142857143,49.2895539135637,-0.0382952199343938,0,0,0,NA,NA,0,NA,NA,400.149457931519,399.748779296875,0.582131829876864
+6134,309374,3797298,309474,3797198,33,61,4.5,0.0161964009628929,4.23763428195513,0.231481481481482,43.6065918798498,-0.0648247416151571,0,0,0,NA,NA,0,NA,NA,401.146405537923,400.218780517578,1.08328618543704
+6135,309374,3797198,309474,3797098,34,61,9.21052631578947,0.0472395028084376,8.82363406381211,0.487903225806452,31.1734513246687,-0.0305437776551116,0.0578947368421053,5.78947368421053,3,66.8448287352654,0.719027275714755,2.63157894736842,34.8518334302035,18.7329120635986,402.733991622925,401.766815185547,0.817000451446274
+6136,309374,3797098,309474,3796998,35,61,10.7894736842105,0.055337703289884,10.910715831594,0.414529914529915,59.2386713084728,-0.0152284066623045,0,0,0,NA,NA,0,NA,NA,403.900622049967,403.401458740234,0.711228114174083
+6137,309374,3796998,309474,3796898,36,61,11.8421052631579,0.0303682518054242,7.29213497593732,0.386416245791246,26.192875425956,-0.0155931452418085,0.1,10,3,82.921720474979,0.894179894179894,9.21052631578947,31.8193027094791,5.19557523727417,405.029092788696,404.487854003906,0.579251758372291
+6138,309374,3796898,309474,3796798,37,61,35.5,0.383314822788465,30.4280672882929,0.812206572769953,NA,-0.0889208188971679,0.0375,3.75,3,64.9626786721516,0.763872491145218,3,31.2389762560527,7.34765291213989,405.699221293132,405.305419921875,0.420141465717226
+6139,309374,3796798,309474,3796698,38,61,5.52631578947368,0.018895801123375,5.33712602134815,0.327546296296296,23.7595592624695,-0.0468646466679945,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,17.7619332207574,11.6176595687866,406.355136871338,405.819702148438,0.537590644277324
+6140,309374,3796698,309474,3796598,39,61,31.0526315789474,0.159264609468447,14.925555134808,0.468390804597701,16.4298513045212,-0.00994085128144625,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,30.6707703272502,14.6953058242798,407.542602539062,406.826263427734,0.633358115245142
+6141,309374,3796598,309474,3796498,40,61,23.9473684210526,0.0614113536509689,9.93036245072377,0.625449060743178,15.5867255844001,0.0188332561516865,0.102631578947368,10.2631578947368,8,61.8886768590472,0.537108053237086,2.63157894736842,10.2416578561832,0,408.212979634603,408.069396972656,0.193067666473503
+6142,309374,3796498,309474,3796398,41,61,22.6315789473684,0.116074206900732,13.8995338287607,0.508366800535475,21.4219052194905,0.0347685561987179,0.223684210526316,22.3684210526316,2,92.8748728006473,0.880570209900101,21.8421052631579,5.30867614185109,0,408.042781829834,407.454010009766,0.360402180275447
+6143,309374,3796398,309474,3796298,42,61,0,NA,NA,NA,NA,0.0338244684972233,0.27,27,3,88.1994392369062,0.796276782578152,15.25,47.9215943018595,11.6176595687866,407.565391540527,406.716949462891,1.13908676394216
+6144,309374,3796298,309474,3796198,43,61,40.2631578947368,0.13766940818459,10.6275666887421,0.446428571428571,14.9924457085759,0.00268784707238267,0.0526315789473684,5.26315789473684,3,72.1023275039235,0.795698924731183,4.47368421052632,0.886940169334412,0,404.868534088135,400.527099609375,3.16292493340993
+6145,309374,3796198,309474,3796098,44,61,48.6842105263158,0.124847257422299,12.7326336572841,0.509627525252525,15.5867256623344,-0.0179072067348323,0.0868421052631579,8.68421052631579,2,81.4406525971806,0.817483189241114,6.84210526315789,0,0,402.174336751302,399.699340820312,2.79132215350771
+6146,309374,3796098,309474,3795998,45,61,47.6315789473684,0.122147857261817,10.9478555838152,0.366750904010519,13.6021924295519,0.0148667614402113,0.05,5,2,77.9382286686901,0.745916515426497,4.73684210526316,1.36725666648463,0,399.735609054565,398.678894042969,1.75600525377024
+6147,309374,3795998,309474,3795898,46,61,10.75,0.0386914023002441,10.2700464267475,0.454011556313347,35.1804667418422,0.0293499497536232,0.2175,21.75,5,84.6299115907783,0.802123054725343,13,12.421024651363,0,398.362711588542,398.212249755859,0.276054509001206
+6148,309374,3795898,309474,3795798,47,61,24.7368421052632,0.0507487230170644,8.10637142803874,0.378162578162578,15.7553506923649,0.0268610779411718,0.176315789473684,17.6315789473684,3,85.653795345408,0.854728161437427,13.4210526315789,15.043103645097,0,398.234395980835,398.157867431641,0.102598322976957
+6149,309374,3795798,309474,3795698,48,61,9.73684210526316,0.0332926019792798,6.19941005964817,0.433853586027499,12.9406813574429,0.0304344695229343,0.144736842105263,14.4736842105263,7,73.2590264704724,0.618461538461538,7.36842105263158,16.2229031476108,0,398.316627502441,398.205505371094,0.128582596816641
+6150,309374,3795698,309474,3795598,49,61,0,NA,NA,NA,NA,0.0208655292064481,0.0289473684210526,2.89473684210526,6,31.0506569467344,0.313459801264679,0.789473684210526,42.1322805231268,18.7329120635986,398.530807495117,398.340850830078,0.166479157459224
+6151,309374,3795598,309474,3795498,50,61,4.75,0.0256443015245804,5.46972261045323,0.296296296296296,53.4917207166477,0.026462137596809,0.1525,15.25,2,90.5602871403706,0.922079367729727,15,42.1504813804001,10.3911504745483,398.685012817383,398.595031738281,0.1069507857361
+6152,309374,3795498,309474,3795398,51,61,4.21052631578947,0.0431904025677144,10.8760134671775,0.604166666666667,NA,0.0139481909248341,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,54.5535411834717,51.955753326416,398.629405975342,398.555145263672,0.129853568494167
+6153,309374,3795398,309474,3795298,52,61,29.4736842105263,0.151166408987,17.0834869384206,0.655339805825243,20.7823006752878,0.0322011326653362,0.239473684210526,23.9473684210526,2,92.5703266465818,0.780853517877739,22.3684210526316,7.55435020321018,0,398.571764628092,398.533203125,0.105255406343072
+6154,309374,3795298,309474,3795198,53,61,22.8947368421053,0.234847813961947,23.5589396169334,0.791187739463601,NA,0.0289774526271254,0.178947368421053,17.8947368421053,3,85.1227508828263,0.815772462831286,12.1052631578947,11.6582155508154,0,398.657180786133,398.558959960938,0.203331543833464
+6155,309374,3795198,309474,3795098,54,61,3.25,0.0350922020862679,7.59886333634673,0.602564102564103,NA,0.0186056121984802,0.075,7.5,6,69.5163024803131,0.558742415885273,4.75,31.3242026964823,5.19557523727417,398.501209259033,398.288787841797,0.254504412910983
+6156,309374,3795098,309474,3794998,55,61,2.89473684210526,0.0296934017653036,14.1697506021221,0.303030303030303,NA,0.0206862583117886,0.0263157894736842,2.63157894736842,3,52.8544892788092,0.525987525987526,1.57894736842105,85.2311828613281,62.3469009399414,398.142562866211,398.042907714844,0.149314717182822
+6157,309374,3794998,309474,3794898,56,61,28.1578947368421,0.0722089542928974,14.6131088879523,0.36864190661659,24.6789820519043,0.024930240386541,0.0342105263157895,3.42105263157895,3,60.5915358120313,0.654859218891916,2.36842105263158,16.5311494240394,10.3911504745483,398.553256988525,398.043304443359,1.0311648219121
+6158,309374,3794898,309474,3794798,57,61,31.8421052631579,0.16331370970917,20.0822939428643,0.717872191011236,37.824358195588,0.023862097165779,0.1,10,4,76.8000672676346,0.753086419753086,6.57894736842105,11.6011294063769,0,401.101486206055,400.351867675781,1.49946014631353
+6159,309374,3794798,309474,3794698,58,61,0,NA,NA,NA,NA,0.0176759281623345,0.015,1.5,1,62.2896536353828,0.709934735315446,1.5,89.1907068888346,83.1292037963867,402.629211425781,401.358825683594,1.0288145192269
+6160,309374,3794698,309474,3794598,59,61,14.7368421052632,0.0755832044935001,11.5326529995759,0.704233750745379,25.9778761038906,0.0233438786232574,0.0815789473684211,8.15789473684211,4,73.156013210359,0.760458452722063,5.52631578947368,41.8674824468551,5.19557523727417,403.240249633789,402.578216552734,0.683327547119219
+6161,309374,3794598,309474,3794498,60,61,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0133231167654374,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,11.0044050216675,10.3911504745483,403.371156692505,402.957305908203,0.471596983342644
+6162,309374,3794498,309474,3794398,61,61,0.263157894736842,0.00269940016048215,0,0,NA,0.0224343856745691,0.0894736842105263,8.94736842105263,4,75.1650062148097,0.725433526011561,5,44.8555518599117,5.19557523727417,403.248016357422,402.909759521484,0.380104288203718
+6163,309374,3794398,309474,3794298,62,61,47,0.253743615085322,15.0280876076246,0.432263814616756,18.7329127343552,-0.00291069021347766,0.0125,1.25,2,39.3019726242331,0.594936708860759,0.75,11.941406917572,5.19557523727417,402.802827835083,402.398223876953,0.471344576013237
+6164,309374,3794298,309474,3794198,63,61,0,NA,NA,NA,NA,-0.00634962446691038,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.795698924731183,2.10526315789474,13.3275929689407,10.3911504745483,402.10075378418,401.674346923828,0.456020774572308
+6165,309374,3794198,309474,3794098,64,61,21.0526315789474,0.0539880032096429,12.6201919354739,0.528781604868561,25.6387071151732,0.00459101724108654,0,0,0,NA,NA,0,NA,NA,401.853467941284,401.580047607422,0.353356224312806
+6166,309374,3794098,309474,3793998,65,61,25.2631578947368,0.0431904025677144,8.49677378509285,0.415784994553377,15.5867255670814,0.0105916845192712,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,5.19557523727417,5.19557523727417,402.223337809245,401.743041992188,0.462354915979915
+6167,309374,3793998,309474,3793898,66,61,11,0.0237547214122429,3.50607602631961,0.166666666666667,29.8311263728446,0.0119479114306796,0.0075,0.75,1,44.4894453484604,1,0.75,26.1493644714355,25.977876663208,402.726625442505,402.291442871094,0.35524098399237
+6168,309374,3793898,309474,3793798,67,61,27.8947368421053,0.0572272834022215,9.18170944188776,0.421463545870326,21.9900409933581,0.0118372831696362,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,11.4671890735626,7.34765291213989,403.290181477865,403.060943603516,0.41059416030676
+6169,309374,3793798,309474,3793698,68,61,32.3684210526316,0.166013109869652,22.2437029651554,0.683114035087719,22.0429587144464,0.0018273022162918,0,0,0,NA,NA,0,NA,NA,403.88462638855,403.454559326172,0.393136181870505
+6170,309374,3793698,309474,3793598,69,61,4.21052631578947,0.0107976006419286,3.95811300234973,0.322916666666667,20.9112053929909,0.00153074177806526,0,0,0,NA,NA,0,NA,NA,404.679487228394,404.215789794922,0.628288144285073
+6171,309374,3793598,309474,3793498,70,61,0,NA,NA,NA,NA,0.020584556856702,0.0125,1.25,4,12.7705624799624,0.189873417721519,0.5,23.4933544158936,15.5867252349854,406.153800964355,405.542358398438,0.982142790200733
+6172,309374,3793498,309474,3793398,71,61,0,NA,NA,NA,NA,0.0144121285406934,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,44.0859146118164,44.0859146118164,407.458452224731,406.880950927734,0.682147342118746
+6173,309374,3793398,309474,3793298,72,61,0,NA,NA,NA,NA,0.0181972442328084,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,87.09845606486,68.3371200561523,408.387321472168,407.822174072266,0.761690495252476
+6174,309374,3793298,309474,3793198,73,61,0,NA,NA,NA,NA,0.0154146929658102,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,161.397689819336,161.397689819336,409.882888793945,408.609771728516,1.23742827385732
+6175,309374,3793198,309474,3793098,74,61,0,NA,NA,NA,NA,0.0187309726166131,0.07,7,1,85.3702908942512,0.85663082437276,7,56.6297348567418,36.369026184082,410.67797088623,410.310943603516,0.584330825163709
+6176,309374,3793098,309474,3792998,75,61,32.6315789473684,0.334725619899786,28.447696285586,0.78494623655914,NA,0.0261661937107228,0.0868421052631579,8.68421052631579,5,69.4687388215933,0.73636460668161,5.26315789473684,17.3379659363718,0,409.846738815308,409.243469238281,0.794219454248366
+6177,309374,3792998,309474,3792898,76,61,15.5263157894737,0.159264609468447,21.888156533421,0.717514124293785,NA,0.0215159167991882,0.0736842105263158,7.36842105263158,5,66.579106510126,0.664141414141414,4.21052631578947,10.753946185112,0,409.40872446696,408.969909667969,0.630392853187907
+6178,309374,3792898,309474,3792798,77,61,11.5789473684211,0.0593868035306072,11.9448913326156,0.470833333333333,31.6034499687996,0.0368381356619609,0.234210526315789,23.4210526315789,4,86.636167816565,0.786466100412803,15,15.6003398520223,0,408.920049667358,408.696319580078,0.268904359502133
+6179,309374,3792798,309474,3792698,78,61,0,NA,NA,NA,NA,0.0217023282952732,0.0575,5.75,6,60.3702684635674,0.646330680813439,3.75,41.3401425403097,15.5867252349854,408.607444763184,408.365203857422,0.276496669509418
+6180,309374,3792698,309474,3792598,79,61,7.10526315789474,0.036441902166509,8.83161646109143,0.4,16.4298514359611,0.0244759202142967,0.107894736842105,10.7894736842105,4,78.4029987367548,0.772562096532854,6.31578947368421,15.5578186221239,5.19557523727417,408.178321838379,407.722534179688,0.331635232896254
+6181,309374,3792598,309474,3792498,80,61,0,NA,NA,NA,NA,0.0118067191780842,0,0,0,NA,NA,0,NA,NA,407.575042724609,407.165466308594,0.493297037661899
+6182,309374,3792498,309474,3792398,81,61,0,NA,NA,NA,NA,0.0159145245399007,0.0421052631578947,4.21052631578947,4,58.793110575086,0.652014652014652,2.36842105263158,59.5848860740662,36.369026184082,406.68332862854,406.104888916016,0.592280939845515
+6183,309374,3792398,309474,3792298,82,61,0,NA,NA,NA,NA,0.00596540564649586,0.0125,1.25,3,24.9500758608227,0.392405063291139,0.5,38.9385734558105,31.1734504699707,406.157770792643,405.833526611328,0.439640769750666
+6184,309374,3792298,309474,3792198,83,61,27.1052631578947,0.0926794055098871,15.2739489890124,0.610120816003169,22.637238557467,0.0105549646903551,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.872654155495979,1.84210526315789,2.22667510168893,0,405.782312393188,405.481323242188,0.360173530813046
+6185,309374,3792198,309474,3792098,84,61,46.8421052631579,0.240246614282911,27.8030476399737,0.750339622641509,31.1734510129318,0.030842478847377,0.0736842105263158,7.36842105263158,5,62.4613674333427,0.640151515151515,2.10526315789474,2.59778760160719,0,405.329702377319,405.224304199219,0.153831173691863
+6186,309374,3792098,309474,3791998,85,61,5.78947368421053,0.0148467008826518,4.87094868390896,0.323076923076923,12.9889380519453,0.0170238614914285,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,15.5867252349854,15.5867252349854,405.444295247396,405.252136230469,0.386270314871821
+6187,309374,3791998,309474,3791898,86,61,26.5,0.143068208505554,13.3599698976779,0.634158415841584,10.3911504415562,0.0154921031299091,0.0775,7.75,6,64.7847661091997,0.653116531165312,4.5,8.033852623355,0,406.443115234375,405.666717529297,0.741601705170542
+6188,309374,3791898,309474,3791798,87,61,17.6315789473684,0.180859810752304,19.154588713574,0.808457711442786,NA,0.0176576630563767,0.0736842105263158,7.36842105263158,4,68.2762300588377,0.688131313131313,2.89473684210526,9.962191258158,0,406.885765075684,406.305694580078,0.540158432484914
+6189,309374,3791798,309474,3791698,88,61,22.3684210526316,0.114724506820491,17.5422887036478,0.358134920634921,49.2895543078832,0.0326546798871469,0.181578947368421,18.1578947368421,5,84.0523272808297,0.757646621136829,13.4210526315789,11.6474916140238,0,406.489952087402,406.084075927734,0.44996622251714
+6190,309374,3791698,309474,3791598,89,61,22.1052631578947,0.11337480674025,14.9447211445263,0.546875,65.7194052180849,0.0335812565920366,0.221052631578947,22.1052631578947,5,85.7899871704776,0.707056049337929,15.5263157894737,12.2290735585349,0,406.046714782715,405.910583496094,0.235906410637595
+6191,309374,3791598,309474,3791498,90,61,3.75,0.0404910024072322,8.61008043494369,0.577777777777778,NA,0.0477427560225169,0.36,36,6,89.0490344072176,0.763257575757576,23.75,32.8790997531679,5.19557523727417,405.794729232788,405.734893798828,0.0877981374230986
+6192,309374,3791498,309474,3791398,91,61,5.26315789473684,0.0539880032096429,10.123515026898,0.666666666666667,NA,0.0477422043214718,0.434210526315789,43.4210526315789,2,93.6907492550035,0.813953488372093,27.6315789473684,27.7241389997078,0,405.777992248535,405.731658935547,0.0982816316298068
+6193,309374,3791398,309474,3791298,92,61,9.47368421052632,0.0242946014443393,6.73819018730511,0.372549019607843,20.7823008831125,0.0316104599836858,0.242105263157895,24.2105263157895,5,85.6133624065892,0.766683604336043,13.1578947368421,14.0264475760253,0,405.964031219482,405.818420410156,0.234407830959819
+6194,309374,3791298,309474,3791198,93,61,25,0.064110753811451,12.4532877213664,0.517761403363319,21.5688475601944,0.0238027050125789,0.144736842105263,14.4736842105263,4,84.2376780314129,0.716923076923077,10.5263157894737,14.2172744750977,0,406.412958780924,406.189270019531,0.503488756422498
+6195,309374,3791198,309474,3791098,94,61,21.75,0.117423906980973,22.4520723012534,0.675225225225225,31.1734513246687,0.0200919022638573,0.165,16.5,2,91.1361209907473,0.802134860713356,16,7.3712564164942,0,407.218528747559,407.043151855469,0.259353374643589
+6196,309374,3791098,309474,3790998,95,61,43.6842105263158,0.0746834044400061,9.78153938399078,0.406564025265576,11.257079567085,0.0322926370879271,0.218421052631579,21.8421052631579,5,82.1386835158994,0.686662543805401,10,4.13207660238427,0,407.224065144857,407.045776367188,0.224134133494273
+6197,309374,3790998,309474,3790898,96,61,13.1578947368421,0.0449900026747025,9.47220635658543,0.556476066709985,45.2439615146916,0.0319491945381359,0.215789473684211,21.5789473684211,5,88.5546397509193,0.797732006479982,18.6842105263158,13.8699126010988,0,406.736654281616,406.502014160156,0.280207542172958
+6198,309374,3790898,309474,3790798,97,61,37.3684210526316,0.191657411394232,15.3913669240002,0.658700980392157,10.3911503376439,0.0227289535206326,0.121052631578947,12.1052631578947,4,80.6374510340957,0.781206817134961,9.47368421052632,1.97417273728744,0,406.619580586751,406.486328125,0.196396663129094
+6199,309374,3790798,309474,3790698,98,61,7.25,0.0782826046539823,15.417848684836,0.672413793103448,NA,0.0188645292552883,0.0225,2.25,2,58.170578221586,0.744245524296675,1.75,39.2176890903049,31.1734504699707,406.694608688354,406.613555908203,0.121756934060102
+6200,309374,3790698,309474,3790598,99,61,18.6842105263158,0.0638858037980775,12.901023337956,0.344276094276094,38.1008849523729,0.0110743258115639,0.0333333333333333,3.33333333333333,2,63.0533837152019,0.695740365111562,2.22222222222222,6.49446904659271,0,406.635269165039,406.525543212891,0.140688291903049
+6201,309474,3800598,309574,3800498,0,62,27.4238227146814,0.0534481231775654,10.9643060874217,0.64273244871071,13.7537972695611,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.517471313477,388.179840087891,0.257312196522191
+6202,309474,3800498,309574,3800398,1,62,8.15789473684211,0.0836814049749762,13.0206934506464,0.71505376344086,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.825063069661,388.718627929688,0.174587913574548
+6203,309474,3800398,309574,3800298,2,62,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.046122233073,388.762817382812,0.325442336862203
+6204,309474,3800298,309574,3800198,3,62,20.4986149584488,0.19975561187575,28.9616042702567,0.768018018018018,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.373168945312,389.186462402344,0.387552087447231
+6205,309474,3800198,309574,3800098,4,62,49.8614958448753,0.485892028886958,38.3279488220625,0.731481481481482,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.01781463623,389.540893554688,0.455150304723745
+6206,309474,3800098,309574,3799998,5,62,37.6315789473684,0.0965035557372709,13.2008438135018,0.66723729543497,22.7115235390325,-0.0175193275385697,0,0,0,NA,NA,0,NA,NA,389.914265950521,389.777557373047,0.256801512239525
+6207,309474,3799998,309574,3799898,6,62,87.8116343490305,0.855709850873143,35.857522622757,0.907465825446898,NA,-0.0105755847009247,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,6.27161407470703,5.19557523727417,390.050796508789,389.899139404297,0.244037914778109
+6208,309474,3799898,309574,3799798,7,62,11.9113573407202,0.116074206900773,15.1152776921974,0.763565891472868,NA,0.025645449396761,0.210526315789474,21.0526315789474,2,92.2762239241964,0.858208955223881,20.4986149584488,26.9562981128693,10.3911504745483,390.055836995443,389.773986816406,0.335097747639264
+6209,309474,3799798,309574,3799698,8,62,3.04709141274238,0.0148467008826571,4.87170344117419,0.433333333333333,20.7823006752878,0.0215082492071402,0.116343490304709,11.6343490304709,2,83.7019023480108,0.872488851604927,9.41828254847645,57.2025146484375,46.7601776123047,389.818028767904,389.670928955078,0.309947204998193
+6210,309474,3799698,309574,3799598,9,62,3.42105263157895,0.0350922020862803,9.08765530184472,0.576923076923077,NA,0.0249335370108479,0.186842105263158,18.6842105263158,4,84.2328311632678,0.763883495145631,13.4210526315789,51.4253741385232,10.3911504745483,389.852179633247,389.716247558594,0.204533590381654
+6211,309474,3799598,309574,3799498,10,62,8.58725761772853,0.0418407024874881,15.0413610224031,0.457539682539683,41.5646013505757,0.00954765472989465,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648,390.063901265462,389.881805419922,0.277198394254962
+6212,309474,3799498,309574,3799398,11,62,18.5595567867036,0.180859810752368,36.8125166381433,0.63681592039801,NA,0.0495087809077402,0.390581717451524,39.0581717451524,3,90.1052445018735,0.834637068357999,19.6675900277008,34.0026952797639,0,391.175699869792,390.515563964844,0.660976135137534
+6213,309474,3799398,309574,3799298,12,62,0,NA,NA,NA,NA,0.0869217736109926,0.836565096952909,83.6565096952909,1,99.4815158803776,0.924726698638706,83.6565096952909,73.222961615253,11.6176595687866,391.471038818359,391.240783691406,0.394116151113282
+6214,309474,3799298,309574,3799198,13,62,5.78947368421053,0.0593868035306282,11.930454949039,0.643939393939394,NA,0.0321633321946521,0.260526315789474,26.0526315789474,2,91.5795877115843,0.855651965292495,20.2631578947368,26.2345312002933,0,390.889366149902,390.331024169922,0.694186154122635
+6215,309474,3799198,309574,3799098,14,62,44.3213296398892,0.431904025677296,33.9784768587308,0.791666666666667,NA,0.022186649461783,0.163434903047091,16.3434903047091,3,82.0125107568792,0.812491884170887,8.58725761772853,8.39256255909548,0,390.168158637153,390.002716064453,0.366537969271711
+6216,309474,3799098,309574,3798998,15,62,11.6343490304709,0.0226749613480581,7.5336241375284,0.31037037037037,23.425813332019,0.0144842438616015,0.0526315789473684,5.26315789473684,3,72.125435026108,0.599616858237548,4.15512465373961,9.12371941616661,0,390.342135111491,390.018432617188,0.374234546929549
+6217,309474,3798998,309574,3798898,16,62,14.404432132964,0.0467896027817071,14.361034537183,0.384259259259259,12.1230088484866,0.0137203022781769,0.038781163434903,3.8781163434903,3,61.1623092147322,0.583861671469741,2.21606648199446,5.19557523727417,0,390.618292914497,390.438446044922,0.322176691361131
+6218,309474,3798898,309574,3798798,17,62,9.47368421052632,0.0194356811554783,5.22126562184089,0.323188405797101,15.0382141826164,0.0440103410056748,0.3,30,3,93.9397710483749,0.86130374479889,28.9473684210526,25.4299225179773,0,391.143135070801,390.832458496094,0.35135899412733
+6219,309474,3798798,309574,3798698,18,62,52.0775623268698,0.507487230170823,33.9465354569125,0.811170212765957,NA,0.0306425649894492,0.207756232686981,20.7756232686981,2,91.938655003059,0.91393833439288,20.2216066481994,6.90170773824056,0,391.717895507812,391.388305664062,0.435237729859169
+6220,309474,3798698,309574,3798598,19,62,46.2603878116344,0.150266608933559,25.2872975260279,0.664824717765894,17.3185838960732,0.0262360493393732,0.0526315789473684,5.26315789473684,4,63.7492414524587,0.599616858237548,3.32409972299169,2.02742654398868,0,392.309717814128,391.998413085938,0.326181022667524
+6221,309474,3798598,309574,3798498,20,62,52.6315789473684,0.17096201016393,27.3113865610472,0.701095738595739,12.1230087272512,0.0190275928547058,0.0941828254847645,9.41828254847645,6,62.4371556939187,0.546581476627348,2.77008310249307,7.64898692860323,0,392.70906914605,392.604339599609,0.200768612743306
+6222,309474,3798498,309574,3798398,21,62,48.6842105263158,0.166463009896458,17.9710696565105,0.630645413345835,10.3911503376439,0.0365664768586277,0.305263157894737,30.5263157894737,4,88.1988119681593,0.766955266955267,17.3684210526316,3.60345247696186,0,392.964207967122,392.83544921875,0.122786728945546
+6223,309474,3798398,309574,3798298,22,62,30.7479224376731,0.0499389029689374,9.95446557845849,0.389260613398544,13.9107153422539,0.0174417337371461,0.0914127423822715,9.14127423822715,7,65.0564640143225,0.592366757000903,4.70914127423823,5.08752434181445,0,393.07556491428,392.992492675781,0.11685389234828
+6224,309474,3798298,309574,3798198,23,62,43.4903047091413,0.141268608398616,16.9465261198059,0.750515770477011,12.1230088484866,0.0375409256163024,0.326869806094183,32.6869806094183,6,84.917297518983,0.777854697896235,14.1274238227147,7.37116853665497,0,393.147768656413,393.023529052734,0.157461420429999
+6225,309474,3798198,309574,3798098,24,62,24.9307479224377,0.0809820048144931,14.2960365818635,0.637860082304527,25.9778759307065,0.0142509950027969,0.188365650969529,18.8365650969529,4,85.4570769232123,0.844695557403849,11.6343490304709,12.0739808152704,0,393.403628879123,393.217956542969,0.286345762890483
+6226,309474,3798098,309574,3797998,25,62,45,0.115399356860653,13.9673485905377,0.566967140116916,15.5867255844029,-0.00378077327679995,0,0,0,NA,NA,0,NA,NA,394.038485209147,393.637939453125,0.479002733788332
+6227,309474,3797998,309574,3797898,26,62,60.387811634349,0.196156411661772,19.4463508981577,0.767423170888517,15.5867255930625,-0.00119469988075507,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,3.89668142795563,0,394.910242716471,394.56298828125,0.570967500363252
+6228,309474,3797898,309574,3797798,27,62,38.2271468144044,0.186258611073334,21.5901590228007,0.769763915962746,25.9778761038998,0.00616139935717661,0.0692520775623269,6.92520775623269,1,84.4444444444445,0.785119047619048,6.92520775623269,11.1786672592163,0,396.459367540148,395.711029052734,1.42253807991321
+6229,309474,3797798,309574,3797698,28,62,15.7894736842105,0.0512886030491789,7.78526064439562,0.446527777777778,32.8087964465094,0.0112269895965563,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,12.988938331604,0,399.215159098307,398.130950927734,1.31394354237058
+6230,309474,3797698,309574,3797598,29,62,41.0526315789474,0.140368808345121,18.0980947928314,0.60252729933581,22.5141592900465,0.00244429125347156,0,0,0,NA,NA,0,NA,NA,400.284695095486,400.092803955078,0.272696346322183
+6231,309474,3797598,309574,3797498,30,62,4.70914127423823,0.0458898027282127,8.28685340472376,0.666666666666667,NA,0.0221293888153026,0.102493074792244,10.2493074792244,2,82.0994963477636,0.762548067192876,8.03324099722992,44.0601194742564,25.977876663208,400.18994140625,399.933990478516,0.242003661010654
+6232,309474,3797498,309574,3797398,31,62,16.8975069252078,0.0548878032631564,9.53260181481624,0.392094017094017,14.0680686315929,0.00930609016731953,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.933639705882353,5.81717451523546,38.3603810809907,25.977876663208,399.784969753689,399.718597412109,0.125918733835903
+6233,309474,3797398,309574,3797298,32,62,26.8698060941828,0.0872806051889536,12.1003086439419,0.453051643192488,26.5273584470385,-0.0268447023065109,0.0858725761772853,8.58725761772853,2,83.9264807260096,0.934363636363636,8.31024930747922,7.86643905024375,0,399.787371317546,399.702331542969,0.154214634943777
+6234,309474,3797298,309574,3797198,33,62,11.5789473684211,0.118773607061256,13.7291774052731,0.795454545454545,NA,-0.00625884565630067,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,400.518856472439,400.008239746094,1.02462673962193
+6235,309474,3797198,309574,3797098,34,62,31.0249307479224,0.151166408987054,18.3454198481857,0.744629842731108,27.9790285905554,0.0313678017847751,0.268698060941828,26.8698060941828,4,87.3598475429499,0.77209595959596,16.3434903047091,15.191130495563,0,402.619433085124,401.704132080078,1.04570805709671
+6236,309474,3797098,309574,3796998,35,62,9.14127423822715,0.0445401026479712,8.88598215771313,0.561904761904762,40.5787394447539,0.00525785225933389,0.0997229916897507,9.97229916897507,3,76.3854035609071,0.740820512820513,4.70914127423823,28.6772139999602,0,403.773888481988,403.414093017578,0.559188559572271
+6237,309474,3796998,309574,3796898,36,62,24.6537396121884,0.0800822047609987,15.3374560382974,0.536423054070113,17.0714491196784,-0.0807250994523675,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,29.7838908831278,21.4219055175781,405.020818074544,404.343872070312,0.821068488299257
+6238,309474,3796898,309574,3796798,37,62,64.7368421052632,0.664052439478843,37.079985978145,0.819783197831978,NA,-0.140472149167602,0,0,0,NA,NA,0,NA,NA,406.105695936415,405.869415283203,0.429948480197209
+6239,309474,3796798,309574,3796698,38,62,18.8365650969529,0.183559210912851,21.9386846077972,0.720588235294118,NA,-0.0805742501464129,0,0,0,NA,NA,0,NA,NA,406.612724304199,406.390838623047,0.310085358341485
+6240,309474,3796698,309574,3796598,39,62,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,-0.00147198612511378,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,54.9151178995768,44.6940307617188,407.549608866374,407.000732421875,0.596535068815085
+6241,309474,3796598,309574,3796498,40,62,0,NA,NA,NA,NA,0.0129393350250181,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,38.3635206222534,23.2353191375732,408.136172824436,408.014282226562,0.190623815311824
+6242,309474,3796498,309574,3796398,41,62,0,NA,NA,NA,NA,0.0190108794454708,0,0,0,NA,NA,0,NA,NA,408.219930013021,408.12158203125,0.11546168775044
+6243,309474,3796398,309574,3796298,42,62,26.5789473684211,0.136319708104397,14.7537618449902,0.707240948813983,10.3911503376439,-0.0210038704464176,0,0,0,NA,NA,0,NA,NA,407.990125868056,407.843994140625,0.242151760426978
+6244,309474,3796298,309574,3796198,43,62,39.8891966759003,0.194356811554783,19.2130759817128,0.802564102564103,22.0429587144503,-0.0132627392103789,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0,407.139994303385,405.990600585938,1.02012806748978
+6245,309474,3796198,309574,3796098,44,62,63.7119113573407,0.620862036911113,36.1544580269918,0.85,NA,-0.0118885352174684,0,0,0,NA,NA,0,NA,NA,404.759141710069,403.630920410156,1.61848217425132
+6246,309474,3796098,309574,3795998,45,62,61.218836565097,0.198855811822255,19.1611868881038,0.525551994301994,14.0680686315929,0.00735006915355952,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.955484308527036,8.31024930747922,19.0504425684611,10.3911504745483,401.475896199544,398.894500732422,2.44662873121107
+6247,309474,3795998,309574,3795898,46,62,6.8421052631579,0.0350922020862803,10.3374283651211,0.480936819172113,90.7368202294606,0.0147355553079478,0.0868421052631579,8.68421052631579,3,74.7138100674934,0.695805315401857,5,26.6409135731784,0,398.602579752604,398.419342041016,0.428128624754122
+6248,309474,3795898,309574,3795798,47,62,7.20221606648199,0.0140368808345121,3.89239251991557,0.349206349206349,15.5867255064659,0.0302064929688399,0.204986149584488,20.4986149584488,5,86.5322343827332,0.796810506566604,17.1745152354571,27.9392166588758,5.19557523727417,398.489087422689,398.350128173828,0.231674038096663
+6249,309474,3795798,309574,3795698,48,62,1.66204986149584,0.00809820048144931,3.40054810738838,0.25,95.3780818300856,0.0390397755977687,0.346260387811634,34.6260387811634,3,91.2557037418411,0.831535130291944,24.0997229916897,33.8981500434875,0,398.41443210178,398.374420166016,0.0663986158695434
+6250,309474,3795698,309574,3795598,49,62,17.7285318559557,0.0575872034236395,7.71864766990145,0.501052631578947,18.1362565262654,0.0111072825993411,0.0498614958448753,4.98614958448753,4,60.2522874067609,0.649173955296404,2.49307479224377,21.6380063692729,5.19557523727417,398.633987426758,398.442169189453,0.225837292015897
+6251,309474,3795598,309574,3795498,50,62,33.1578947368421,0.0680248840441742,10.2666843984461,0.572880952380952,12.8833073940722,0.010987041037046,0.0368421052631579,3.68421052631579,4,53.860263532831,0.532786885245902,1.84210526315789,18.3959885665349,5.19557523727417,398.987050374349,398.821502685547,0.273015783882962
+6252,309474,3795498,309574,3795398,51,62,15.7894736842105,0.0512886030491789,10.3549796360891,0.336666666666667,29.5201516712316,0.0203740313363823,0.0692520775623269,6.92520775623269,3,75.2406631989619,0.811979166666667,5.54016620498615,12.1756087112427,5.19557523727417,398.970695495605,398.717681884766,0.341677575491116
+6253,309474,3795398,309574,3795298,52,62,27.4238227146814,0.133620307943914,13.3694773331335,0.403061224489796,20.7823006752878,0.0381287392185307,0.285318559556787,28.5318559556787,3,90.3379422242031,0.818478944060339,23.2686980609418,9.6057384407636,0,398.778618706597,398.63818359375,0.294917312588876
+6254,309474,3795298,309574,3795198,53,62,4.98614958448753,0.0485892028886958,9.71537800761059,0.648148148148148,NA,0.0178979114506625,0.0554016620498615,5.54016620498615,2,75.3968253968254,0.760949768233847,4.43213296398892,23.4938391685486,5.19557523727417,398.828369140625,398.682952880859,0.308549906714646
+6255,309474,3795198,309574,3795098,54,62,0,NA,NA,NA,NA,0.0136147927049598,0.0157894736842105,1.57894736842105,4,20.982045994374,0.274255156608098,0.526315789473684,90.0994876225789,29.3906116485596,398.680096944173,398.396942138672,0.366950056185013
+6256,309474,3795098,309574,3794998,55,62,0,NA,NA,NA,NA,0.0208295082423186,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,98.8067944844564,98.5791015625,398.254818386502,398.137451171875,0.202231313897856
+6257,309474,3794998,309574,3794898,56,62,27.4238227146814,0.0534481231775654,14.1821432853568,0.364912280701754,15.5867255999903,0.0259877568082617,0.07202216066482,7.20221606648199,6,60.0245885089053,0.474335638878777,2.21606648199446,8.4834842131688,0,398.458264668783,398.013732910156,1.00190462215316
+6258,309474,3794898,309574,3794798,57,62,30.4709141274238,0.148467008826571,15.8478431851933,0.446759259259259,36.7382643477325,0.029924784199118,0.171745152354571,17.1745152354571,7,77.1804929122347,0.66462281679673,8.86426592797784,7.63636219116949,0,401.479336208767,400.030700683594,1.88532209676057
+6259,309474,3794798,309574,3794698,58,62,0,NA,NA,NA,NA,0.0112057711019492,0.0263157894736842,2.63157894736842,4,44.7900895640262,0.446985446985447,1.31578947368421,90.7470764160156,84.5778350830078,403.594469706217,402.511199951172,0.799496364380787
+6260,309474,3794698,309574,3794598,59,62,19.6675900277008,0.1916574113943,27.1336986013817,0.769953051643192,NA,0.0138013393312133,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,40.156907081604,21.4219055175781,403.964901394314,403.771697998047,0.244616696405242
+6261,309474,3794598,309574,3794498,60,62,3.32409972299169,0.0323928019257972,15.5867256623399,0.305555555555556,NA,0.0165293399269378,0.0277008310249307,2.77008310249308,2,64.2512077294686,0.841770764847688,2.49307479224377,71.5871162414551,21.4219055175781,403.932739257812,403.740814208984,0.227816076763055
+6262,309474,3794498,309574,3794398,61,62,13.0193905817175,0.126871807542706,15.2910032061512,0.787234042553192,NA,0.0247214735111375,0.110803324099723,11.0803324099723,3,79.0427298650409,0.78179197470591,7.4792243767313,16.5466623544693,0,403.677554660373,403.552032470703,0.21140877388809
+6263,309474,3794398,309574,3794298,62,62,22.6315789473684,0.232148413801547,22.9591061551769,0.75,NA,0.0182112918519363,0.0578947368421053,5.78947368421053,3,70.3748154268552,0.687808084127506,3.15789473684211,12.6456489562988,0,403.267990112305,402.745239257812,0.488040748386141
+6264,309474,3794298,309574,3794198,63,62,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0185309304909215,0.0664819944598338,6.64819944598338,3,76.6872499839571,0.774480712166172,5.81717451523546,34.2068265676498,14.6953058242798,402.556355794271,402.266448974609,0.415731823244772
+6265,309474,3794198,309574,3794098,64,62,26.0387811634349,0.0634359037713529,13.6972801852197,0.633095711759505,20.7823007272458,0.0117417256382814,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,10.4749227762222,5.19557523727417,402.356313069661,402.153961181641,0.290166565286389
+6266,309474,3794098,309574,3793998,65,62,22.1606648199446,0.0308502875483783,7.0065435813725,0.385487528344671,18.3009342832512,0.0105309229675639,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,10.3911503156026,5.19557523727417,402.671366373698,402.559600830078,0.177690722537761
+6267,309474,3793998,309574,3793898,66,62,18.4210526315789,0.0377916022467634,8.73294149561083,0.336009070294785,14.7669703445042,0.0127301194797455,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.794037940379404,2.89473684210526,11.8310933113098,7.34765291213989,402.885940551758,402.708404541016,0.197818602483827
+6268,309474,3793898,309574,3793798,67,62,19.9445983379501,0.0647856038515944,15.4371391405685,0.524909781576448,33.3442043411256,0.0185717853653242,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,8.87125682830811,0,403.517778184679,403.229797363281,0.516801827708625
+6269,309474,3793798,309574,3793698,68,62,7.20221606648199,0.0350922020862803,8.81590305381899,0.536111111111111,85.2137689171936,0.0228345959421203,0.0997229916897507,9.97229916897507,3,80.3407499400926,0.814871794871795,8.31024930747922,33.9453048838509,7.34765291213989,404.34986114502,403.960357666016,0.530093025469982
+6270,309474,3793698,309574,3793598,69,62,2.77008310249307,0.0134970008024155,6.18520857884728,0.253968253968254,67.5424771946855,0.0179287399344873,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,31.9824091593424,25.977876663208,405.095842997233,404.569000244141,0.423161333842476
+6271,309474,3793598,309574,3793498,70,62,2.63157894736842,0.0134970008024155,3.26677970017817,0.25,16.4298513045218,0.0133153846906937,0.0263157894736842,2.63157894736842,3,51.8673950562613,0.604989604989605,1.57894736842105,41.1265483856201,33.2679138183594,405.655032687717,405.306518554688,0.631644517687477
+6272,309474,3793498,309574,3793398,71,62,0.277008310249307,0.0026994001604831,0,0,NA,0.0151196182646181,0.0304709141274238,3.04709141274238,2,66.19517193391,0.862476190476191,2.77008310249307,55.6593548167836,44.0859146118164,407.017316182454,405.791381835938,1.12602890794436
+6273,309474,3793398,309574,3793298,72,62,0,NA,NA,NA,NA,0.0171675334876608,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,38.9947786331177,30.2951488494873,408.418918185764,408.183868408203,0.73635258534268
+6274,309474,3793298,309574,3793198,73,62,3.04709141274238,0.0296934017653141,10.1866029439281,0.424242424242424,NA,0.0126383248369927,0,0,0,NA,NA,0,NA,NA,410.281959533691,409.125152587891,1.08126673386329
+6275,309474,3793198,309574,3793098,74,62,0,NA,NA,NA,NA,0.0127955012089698,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,79.9688014984131,69.7059555053711,410.872355143229,410.318786621094,0.563535111929019
+6276,309474,3793098,309574,3792998,75,62,26.0387811634349,0.126871807542706,14.3941088296117,0.72903311965812,22.0429587144503,0.0240025222877312,0.0581717451523546,5.81717451523546,4,65.5896745542702,0.601838235294118,3.32409972299169,8.53032019024804,0,409.960037231445,409.508361816406,0.587770650091323
+6277,309474,3792998,309574,3792898,76,62,0,NA,NA,NA,NA,0.0286468345074256,0.191135734072022,19.1135734072022,5,81.8775202607602,0.744565832672931,11.9113573407202,52.2173810488936,25.977876663208,409.517534044054,409.242309570312,0.48711417180006
+6278,309474,3792898,309574,3792798,77,62,13.0193905817175,0.126871807542706,17.7039173821664,0.634751773049645,NA,0.0364893343053897,0.274238227146814,27.4238227146814,6,82.8541092489017,0.705849558281156,11.9113573407202,19.3122730784946,0,408.669639587402,408.123077392578,0.698247178574795
+6279,309474,3792798,309574,3792698,78,62,14.4736842105263,0.148467008826571,25.5131051830758,0.706060606060606,NA,0.0268391324020788,0.163157894736842,16.3157894736842,7,79.5620526577213,0.70125786163522,9.21052631578947,15.2859830394868,5.19557523727417,408.224361843533,407.925231933594,0.415598322152401
+6280,309474,3792698,309574,3792598,79,62,11.3573407202216,0.0368918021932691,9.35743309526807,0.434606481481481,45.6193675849141,0.0238379523505909,0.110803324099723,11.0803324099723,4,74.1789902227718,0.74822150927605,6.09418282548476,17.4072650551796,0,408.058161417643,407.905792236328,0.285351783322473
+6281,309474,3792598,309574,3792498,80,62,25.4847645429363,0.124172407382223,18.5256325416281,0.735209601081812,10.3911504415599,0.020231521960454,0.124653739612188,12.4653739612188,4,75.4002058545143,0.714398734177215,6.37119113573407,13.5813895331489,0,407.807434082031,407.67724609375,0.249291305770641
+6282,309474,3792498,309574,3792398,81,62,13.8504155124654,0.134970008024155,21.5328615734184,0.723333333333333,NA,0.019765371499229,0.135734072022161,13.5734072022161,3,87.0300442638466,0.76583485958486,12.4653739612188,12.8208608238065,0,407.294738769531,406.976135253906,0.38947805695366
+6283,309474,3792398,309574,3792298,82,62,11.3157894736842,0.0386914023002578,6.8539421539807,0.381091617933723,41.564601523769,0.0228136281932979,0.128947368421053,12.8947368421053,5,83.1176623065194,0.712990936555891,10.7894736842105,13.8177131827997,5.19557523727417,406.99124484592,406.829345703125,0.340966220032898
+6284,309474,3792298,309574,3792198,83,62,28.808864265928,0.140368808345121,17.2006705137512,0.685897435897436,14.6953058096335,0.0282706852605236,0.174515235457064,17.4515235457064,4,85.4366623455561,0.724679682733374,12.7423822714681,8.58173297700428,0,406.295221964518,405.79150390625,0.670070329551261
+6285,309474,3792198,309574,3792098,84,62,37.6731301939058,0.122372807275234,15.6861851555859,0.659451659451659,22.9405620943639,0.0229968826119692,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,2.59778761863708,0,405.333241780599,405.196868896484,0.261105656165627
+6286,309474,3792098,309574,3791998,85,62,21.8836565096953,0.071084204226055,12.9721692913326,0.569312169312169,36.369026302989,0.0259090385249322,0.227146814404432,22.7146814404432,1,93.8988944698773,0.892918057100482,22.7146814404432,13.680162325138,0,405.302964952257,405.186676025391,0.208129690514415
+6287,309474,3791998,309574,3791898,86,62,39.7368421052632,0.407609424232948,35.2725722519296,0.788079470198675,NA,0.0326370986210685,0.294736842105263,29.4736842105263,4,92.8649436656119,0.824516033692922,27.6315789473684,6.79367683189256,0,405.69276936849,405.380706787109,0.421702387471907
+6288,309474,3791898,309574,3791798,87,62,33.5180055401662,0.163313709709228,20.0305420045292,0.509793447293447,15.5867255064659,0.0272904427926388,0.274238227146814,27.4238227146814,2,93.7255105519596,0.790998370357664,26.3157894736842,10.7042204827973,0,405.882788764106,405.691955566406,0.357398940297841
+6289,309474,3791798,309574,3791698,88,62,36.5650969529086,0.178160410591885,21.8127357784066,0.63239247311828,25.9778761038998,0.0408283798463438,0.365650969529086,36.5650969529086,1,96.3681237134493,0.9018826215369,36.5650969529086,13.8988903363546,0,406.012255350749,405.822875976562,0.181639333129775
+6290,309474,3791698,309574,3791598,89,62,60.1108033240997,0.585769834824833,38.1420835951716,0.819508448540707,NA,0.0408853662975514,0.349030470914127,34.9030470914127,3,95.4747108975922,0.745089659017003,34.3490304709141,5.05040238017128,0,406.017306857639,405.949859619141,0.0922153946365197
+6291,309474,3791598,309574,3791498,90,62,39.4736842105263,0.134970008024155,16.7634309705532,0.567143894594875,24.0834256519396,0.0218898317484816,0.128947368421053,12.8947368421053,5,81.6173774263514,0.671989641778162,10,6.87020857480108,0,405.862681070964,405.77734375,0.104382252705742
+6292,309474,3791498,309574,3791398,91,62,40.7202216066482,0.132270607863672,16.5667366927055,0.750124643874644,24.9441717289865,0.0284686396480538,0.246537396121884,24.6537396121884,5,87.8849732077049,0.774625416204218,19.3905817174515,8.05830368834935,0,405.871419270833,405.781066894531,0.167517379164491
+6293,309474,3791398,309574,3791298,92,62,55.6786703601108,0.271289716128552,27.1520112186609,0.818833943833944,25.9778760103754,0.0421694736825804,0.476454293628809,47.6454293628809,2,94.1746808795095,0.807187087944186,24.3767313019391,6.80646088511445,0,406.260548909505,405.902587890625,0.481292549897139
+6294,309474,3791298,309574,3791198,93,62,40.1662049861496,0.195706511635025,23.1870130966485,0.745825253178194,15.5867255064659,0.0436872016277985,0.382271468144044,38.2271468144044,4,94.1461770713791,0.80085771229269,35.4570637119114,6.66843414306641,0,406.975141737196,406.536499023438,0.670686128539619
+6295,309474,3791198,309574,3791098,94,62,24.7368421052632,0.126871807542706,18.6760885575493,0.689880952380952,20.7823006752878,0.0435196030958507,0.376315789473684,37.6315789473684,3,95.293572079337,0.822527136277257,36.3157894736842,17.5108697697833,0,407.274536132812,407.011077880859,0.337224576573991
+6296,309474,3791098,309574,3790998,95,62,39.612188365651,0.193007111474542,15.9760037187089,0.563293650793651,31.1734510129318,0.0439767299474806,0.426592797783933,42.6592797783933,2,93.6632761512269,0.784315733770335,25.4847645429363,11.4812766669633,0,407.314202202691,407.220153808594,0.292637263820562
+6297,309474,3790998,309574,3790898,96,62,10.5263157894737,0.0512886030491789,11.9801339454831,0.313063063063063,25.9778758441098,0.0213096905257232,0.0609418282548476,6.09418282548476,2,73.7293580723472,0.812077043206663,3.04709141274238,3.18316568027843,0,407.150382995605,406.928802490234,0.351281765221367
+6298,309474,3790898,309574,3790798,97,62,0,NA,NA,NA,NA,0.0230675861724967,0.0526315789473684,5.26315789473684,5,56.4829675683094,0.490421455938697,1.66204986149584,44.4672910288761,14.6953058242798,407.08309258355,406.900268554688,0.336409618429587
+6299,309474,3790798,309574,3790698,98,62,0,NA,NA,NA,NA,0.0184296908567328,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,100.587163925171,95.3780822753906,406.79934946696,406.662261962891,0.192689526241084
+6300,309474,3790698,309574,3790598,99,62,11.6343490304709,0.11337480674029,18.2748122226449,0.670634920634921,NA,0.0200272833111346,0.0116959064327485,1.16959064327485,2,34.6720800441695,0.494082840236686,0.877192982456141,12.609925866127,5.19557523727417,406.52899424235,406.471313476562,0.0993278359602601
+6301,309574,3800598,309674,3800498,0,63,17.4515235457064,0.0425155525276089,12.1205985614649,0.360628485628486,10.3911503896019,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.179893493652,387.913146972656,0.315140156539857
+6302,309574,3800498,309674,3800398,1,63,26.5789473684211,0.136319708104397,15.5802087913238,0.547395833333333,67.5424771946855,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.405398050944,388.201202392578,0.253535753830615
+6303,309574,3800398,309674,3800298,2,63,25.207756232687,0.122822707301981,14.8524312459049,0.773134689922481,11.6176593526411,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.385841369629,388.154571533203,0.345373006409285
+6304,309574,3800298,309674,3800198,3,63,29.9168975069252,0.291535217332175,39.1198972455898,0.699074074074074,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.625714619954,388.174713134766,0.544682736027455
+6305,309574,3800198,309674,3800098,4,63,26.5927977839335,0.0863808051354593,15.9402173200812,0.517090395480226,23.580590995813,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.080158233643,388.357604980469,0.668115364440015
+6306,309574,3800098,309674,3799998,5,63,40.7894736842105,0.139469008291627,17.9121496513813,0.505026455026455,15.586725606918,-0.0234240586570721,0,0,0,NA,NA,0,NA,NA,389.359227498372,388.832153320312,0.474317679613947
+6307,309574,3799998,309674,3799898,6,63,98.8919667590028,0.963685857292467,37.4456332566898,0.930438842203548,NA,-0.0224914228979854,0,0,0,NA,NA,0,NA,NA,389.923458099365,389.275939941406,0.499203993281611
+6308,309574,3799898,309674,3799798,7,63,74.5152354570637,0.726138643169954,35.4817395946228,0.885377942998761,NA,0.0176414095681882,0.119113573407202,11.9113573407202,1,89.4584842426695,0.984233053808526,11.9113573407202,12.4872422551,0,390.389452616374,390.235046386719,0.18619988573755
+6309,309574,3799798,309674,3799698,8,63,8.58725761772853,0.0278938016583254,7.90330485965314,0.497883597883598,25.7638160241037,0.0153627956327773,0.0775623268698061,7.75623268698061,3,77.7670067078553,0.807273940607274,6.64819944598338,26.4006512505668,10.3911504745483,390.321662902832,390.045501708984,0.200221539139837
+6310,309574,3799698,309674,3799598,9,63,15,0.0769329045737684,17.3825145302371,0.627076411960133,15.5867256623399,0.0111155794973265,0.0184210526315789,1.84210526315789,2,49.719331540751,0.490616621983914,1.05263157894737,29.3091867991856,10.3911504745483,390.340390523275,390.069122314453,0.25863404880321
+6311,309574,3799598,309674,3799498,10,63,40.4432132963989,0.0985281058576332,18.1798090519768,0.594446457326892,15.5867255844029,0.0182168099415833,0.0277008310249307,2.77008310249307,4,41.7780866361615,0.446197676966908,1.10803324099723,7.82687172889709,5.19557523727417,390.557876586914,390.097900390625,0.38677327981044
+6312,309574,3799498,309674,3799398,11,63,13.0193905817175,0.126871807542706,23.8117154578101,0.687943262411348,NA,0.0493672438530371,0.443213296398892,44.3213296398892,2,94.0164447163442,0.871712864250178,26.5927977839335,30.2106913864613,0,391.252172470093,390.739105224609,0.509571365258165
+6313,309574,3799398,309674,3799298,12,63,0,NA,NA,NA,NA,0.0265407307081475,0.357340720221607,35.7340720221607,1,96.2619070998962,0.947028613352898,35.7340720221607,113.6163678428,88.3247756958008,392.031542460124,391.675506591797,0.515156794776949
+6314,309574,3799298,309674,3799198,13,63,0,NA,NA,NA,NA,0.0431839627161696,0.423684210526316,42.3684210526316,1,97.1000219636963,0.900345551030483,42.3684210526316,51.4867843248829,18.7329120635986,391.961910247803,391.218139648438,0.760667245922205
+6315,309574,3799198,309674,3799098,14,63,33.2409972299169,0.323928019257972,34.6367690413543,0.779166666666667,NA,0.0294626682953699,0.202216066481994,20.2216066481994,4,82.429298653709,0.774766710069444,10.5263157894737,13.5351444074552,0,390.921216328939,390.415313720703,0.637333996470915
+6316,309574,3799098,309674,3798998,15,63,32.9639889196676,0.321228619097489,31.4683448150844,0.764705882352941,NA,0.00402497229628443,0.0443213296398892,4.43213296398892,2,70.0874262467545,0.8256038647343,3.32409972299169,7.79336279630661,0,390.892763137817,390.414337158203,0.369536272943608
+6317,309574,3798998,309674,3798898,16,63,24.6537396121884,0.060061653570749,6.10591901363673,0.242647058823529,16.8132345214631,-0.00377376277465701,0,0,0,NA,NA,0,NA,NA,391.053199768066,390.781341552734,0.314379132596303
+6318,309574,3798898,309674,3798798,17,63,19.4736842105263,0.0998778059378748,12.1565616827612,0.492566510172144,57.3870034362763,0.0327313386799753,0.265789473684211,26.5789473684211,1,94.9188630316506,0.90217628071843,26.5789473684211,27.722908742357,0,391.333572387695,391.029876708984,0.200770112492184
+6319,309574,3798798,309674,3798698,18,63,42.9362880886427,0.20920351243744,15.7558690336797,0.489651416122004,10.3911504415599,0.0177583611043789,0.149584487534626,14.9584487534626,1,91.1912638540493,0.898847676088403,14.9584487534626,7.8778610141189,0,391.767333984375,391.498291015625,0.419116362899842
+6320,309574,3798698,309674,3798598,19,63,42.382271468144,0.103252056138479,16.6932177741048,0.477219778429456,15.1410156580497,0.0194380700542595,0.038781163434903,3.8781163434903,5,43.7225426949378,0.375792507204611,1.10803324099723,4.9145097051348,0,392.502660751343,392.066375732422,0.390746928995196
+6321,309574,3798598,309674,3798498,20,63,53.7396121883656,0.174561210377907,26.2470816484214,0.715728985146461,12.1230087272512,0.0160531093711861,0.0886426592797784,8.86426592797784,6,61.9657023789709,0.577975216273089,2.77008310249307,8.95083793997765,0,392.851974487305,392.733062744141,0.170988886163058
+6322,309574,3798498,309674,3798398,21,63,55.2631578947368,0.283437016850726,31.3496509056641,0.692808415351768,15.5867255064659,0.023983784653683,0.194736842105263,19.4736842105263,2,89.7682913227306,0.837606837606838,16.3157894736842,5.56394834131808,0,392.917165756226,392.86328125,0.0811713845735838
+6323,309574,3798398,309674,3798298,22,63,55.4016620498615,0.26994001604831,26.5929090440442,0.733849168806596,14.6953058096335,0.0146704393021907,0.0886426592797784,8.86426592797784,6,67.8213847023032,0.556873977086743,4.43213296398892,7.63670073449612,0,392.840609232585,392.784851074219,0.0865217438588845
+6324,309574,3798298,309674,3798198,23,63,38.5041551246537,0.125072207435717,18.5794300542148,0.642601586530678,17.3185839653505,0.0239202497787245,0.121883656509695,12.1883656509695,5,73.9315621910544,0.707605081422116,6.64819944598338,9.06930268894542,0,392.910972595215,392.791809082031,0.142191391962439
+6325,309574,3798198,309674,3798098,24,63,42.9362880886427,0.139469008291627,12.5974199864514,0.516493340631272,17.7388032424607,0.0250875794137398,0.196675900277008,19.6675900277008,7,79.4539306857671,0.721158620689655,11.3573407202216,6.6059411814515,0,393.216562906901,393.009918212891,0.299237418474627
+6326,309574,3798098,309674,3797998,25,63,53.4210526315789,0.273989116289035,23.6562723732738,0.749819804834775,18.7329128064101,-0.00045287220418686,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,16.4298515319824,16.4298515319824,393.956153869629,393.537445068359,0.518995610283974
+6327,309574,3797998,309674,3797898,26,63,90.0277008310249,0.438652526078504,28.7836212533027,0.875033150636492,10.3911503376439,-0.026933662772966,0,0,0,NA,NA,0,NA,NA,394.871446609497,394.557800292969,0.394937656444415
+6328,309574,3797898,309674,3797798,27,63,58.4487534626039,0.284786716930967,23.2868093404273,0.823064182194617,20.7823006752878,-0.0197196221699409,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,12.8710619319569,5.19557523727417,395.649960835775,395.226196289062,0.854527215104789
+6329,309574,3797798,309674,3797698,28,63,43.7673130193906,0.106626306339083,10.1067284747088,0.444509421702404,19.4834068830824,0.0236785527802597,0.0277008310249307,2.77008310249307,4,40.5351910106461,0.446197676966908,1.10803324099723,3.02820310592651,0,397.677478790283,395.508361816406,1.97417227773176
+6330,309574,3797698,309674,3797598,29,63,41.0526315789474,0.421106425035364,27.0226267490009,0.871794871794872,NA,0.0134726068590872,0,0,0,NA,NA,0,NA,NA,399.569236755371,398.681030273438,0.821494744832452
+6331,309574,3797598,309674,3797498,30,63,0,NA,NA,NA,NA,0.0257410354193312,0.0554016620498615,5.54016620498615,3,67.2425414664435,0.658499668905496,3.04709141274238,66.1802854537964,49.0149574279785,400.00107383728,399.784454345703,0.20569429931188
+6332,309574,3797498,309674,3797398,31,63,0,NA,NA,NA,NA,0.0268956510679073,0.0775623268698061,7.75623268698061,4,68.1549019794219,0.638638638638639,3.32409972299169,53.0774211202349,11.6176595687866,399.813743591309,399.732727050781,0.105926878839073
+6333,309574,3797398,309674,3797298,32,63,4.15512465373961,0.0404910024072465,8.90508071642798,0.577777777777778,NA,0.0179898027939963,0.119113573407202,11.9113573407202,3,83.320924579714,0.779262753319357,9.69529085872576,27.0983786693839,5.19557523727417,399.870843887329,399.713348388672,0.233147012642113
+6334,309574,3797298,309674,3797198,33,63,4.21052631578947,0.0431904025677296,8.00060800783103,0.666666666666667,NA,0.0122838102897731,0.0236842105263158,2.36842105263158,3,53.9211901422254,0.573225516621743,1.84210526315789,12.7747591336568,5.19557523727417,400.634511311849,400.032012939453,0.926657068684458
+6335,309574,3797198,309674,3797098,34,63,20.2216066481994,0.197056211715266,19.019819475475,0.821917808219178,NA,0.0129728143478626,0.0969529085872576,9.69529085872576,4,76.773977310221,0.751798180664269,6.64819944598338,23.1360984529768,0,402.89105796814,401.327423095703,1.24675265891904
+6336,309574,3797098,309674,3796998,35,63,5.81717451523546,0.0283437016850726,7.85595675089531,0.388888888888889,10.3911504415599,-0.000625298571991918,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,52.3423051834106,40.5787391662598,404.229220072428,403.868957519531,0.541700329689831
+6337,309574,3796998,309674,3796898,36,63,16.8975069252078,0.0274439016315782,5.04929197134634,0.229847494553377,18.5933495608362,-0.0930887523458411,0,0,0,NA,NA,0,NA,NA,405.171957015991,404.575134277344,0.66936426682902
+6338,309574,3796898,309674,3796798,37,63,21.3157894736842,0.0242946014443479,6.6752318780221,0.43885949441505,13.2722150763457,-0.0978690277746768,0,0,0,NA,NA,0,NA,NA,406.007672627767,405.463348388672,0.507254572081194
+6339,309574,3796798,309674,3796698,38,63,12.7423822714681,0.124172407382223,16.1366539796453,0.695652173913043,NA,-0.0674416118919323,0.0526315789473684,5.26315789473684,1,81.3394503136629,0.89080459770115,5.26315789473684,37.5580442328202,22.0429573059082,406.239553451538,405.882934570312,0.405641658638156
+6340,309574,3796698,309674,3796598,39,63,1.10803324099723,0.0107976006419324,3.67382645240838,0.416666666666667,NA,0.00998107407909815,0.110803324099723,11.0803324099723,2,86.0601544838661,0.89928860371042,10.5263157894737,52.1957818031311,37.8243598937988,406.654766082764,405.973419189453,0.721997462420779
+6341,309574,3796598,309674,3796498,40,63,0,NA,NA,NA,NA,0.0160007930469702,0.0609418282548476,6.09418282548476,6,57.1553353487274,0.498872115217769,2.77008310249307,69.9464354081587,47.9008369445801,407.627291361491,406.896942138672,0.636063984278171
+6342,309574,3796498,309674,3796398,41,63,5.26315789473684,0.0256443015245895,6.61055200090825,0.377450980392157,25.9778758441098,0.0141467019873699,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,15.1564764022827,11.6176595687866,407.906131744385,407.510528564453,0.407297764286657
+6343,309574,3796398,309674,3796298,42,63,21.3157894736842,0.218651412999131,19.2753438304981,0.796296296296296,NA,0.017540248697256,0.0605263157894737,6.05263157894737,3,76.2084059871792,0.615624027388733,5,20.7482993499092,5.19557523727417,407.46058400472,407.055969238281,0.526521227063275
+6344,309574,3796298,309674,3796198,43,63,28.808864265928,0.0701844041725607,11.0801851892828,0.421418539325843,24.4594065732268,0.0302889478595094,0.213296398891967,21.3296398891967,3,85.7855591577002,0.756990472245236,10.5263157894737,12.1150991204497,0,406.707136154175,405.734741210938,0.806894242506875
+6345,309574,3796198,309674,3796098,44,63,19.3905817174515,0.188958011233817,28.4106380520865,0.75,NA,0.038974757592567,0.318559556786704,31.8559556786704,4,88.2386526693245,0.767178705440901,19.6675900277008,33.7813618369724,5.19557523727417,404.532035827637,402.308441162109,2.42714520623878
+6346,309574,3796098,309674,3795998,45,63,24.3767313019391,0.118773607061256,12.7736324453658,0.364942528735632,10.3911503376439,0.0188297897064865,0.124653739612188,12.4653739612188,1,89.820262380557,0.924841772151899,12.4653739612188,32.9496479246351,14.6953058242798,401.01971244812,399.676147460938,1.72139048119131
+6347,309574,3795998,309674,3795898,46,63,15,0.153865809147537,16.8366170920366,0.801169590643275,NA,0.0223534910746247,0.189473684210526,18.9473684210526,4,83.0258207797985,0.73770324164025,10,39.7502578629388,10.3911504745483,398.954343159993,398.601379394531,0.597142677784543
+6348,309574,3795898,309674,3795798,47,63,22.1606648199446,0.107976006419324,14.4805578903258,0.597587719298246,11.6176592829322,0.0196570273081387,0.113573407202216,11.3573407202216,3,81.0750902129264,0.754755434782609,7.75623268698061,48.3855349726793,7.34765291213989,398.487188339233,398.293792724609,0.221059261992
+6349,309574,3795798,309674,3795698,48,63,56.2326869806094,0.54797823257807,31.4074282156293,0.879310344827586,NA,0.0251354474024176,0.18005540166205,18.005540166205,3,85.2804554612189,0.881278402296101,14.6814404432133,9.71654872160691,0,398.362546284993,398.291778564453,0.0686055616316683
+6350,309574,3795698,309674,3795598,49,63,50.415512465374,0.163763609735975,15.4239980850234,0.587005782153461,16.724304098185,0.00945337853351559,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,18.7040705680847,0,398.653001785278,398.424621582031,0.338678283129912
+6351,309574,3795598,309674,3795498,50,63,25.5263157894737,0.0654604538917152,9.95070653456034,0.453993055555556,34.2736678022659,0.0216605765632314,0.110526315789474,11.0526315789474,3,81.1036529514746,0.841653471122593,9.21052631578947,16.1423947470529,0,399.24866994222,399.005706787109,0.343558583842565
+6352,309574,3795498,309674,3795398,51,63,65.9279778393352,0.642457238194978,36.5723096480059,0.833333333333333,NA,0.0136807182823109,0.0443213296398892,4.43213296398892,4,58.3657990695432,0.607608695652174,2.77008310249307,4.16569113731384,0,399.559881210327,399.240753173828,0.34864277309858
+6353,309574,3795398,309674,3795298,52,63,46.814404432133,0.114049656780411,13.055012014179,0.577480561189993,12.9889379220549,0.0284127365344915,0.152354570637119,15.2354570637119,5,76.5811734841043,0.652287581699346,6.09418282548476,5.5581207708879,0,399.508750915527,399.073120117188,0.383927951097009
+6354,309574,3795298,309674,3795198,53,63,0,NA,NA,NA,NA,0.0198147399619465,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.936696282440963,8.86426592797784,36.6502412557602,25.977876663208,399.403566360474,399.060791015625,0.370355109309189
+6355,309574,3795198,309674,3795098,54,63,0,NA,NA,NA,NA,0.00818387779828826,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,143.84056854248,142.949157714844,398.972160339355,398.628692626953,0.366647658344202
+6356,309574,3795098,309674,3794998,55,63,0,NA,NA,NA,NA,0.0122840875489079,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,99.3509216308594,98.8525619506836,398.457140604655,398.309814453125,0.195620876245021
+6357,309574,3794998,309674,3794898,56,63,16.8975069252078,0.0274439016315782,6.53828954981551,0.363888888888889,20.9384622865976,0.0220571289620513,0.038781163434903,3.8781163434903,3,60.5372063498304,0.635878962536023,2.49307479224377,27.9214319161006,7.34765291213989,398.850131988525,398.329010009766,1.18520801001611
+6358,309574,3794898,309674,3794798,57,63,36.8421052631579,0.179510110672126,28.310147625726,0.720281722400366,31.1734510129318,0.029222877059097,0.141274238227147,14.1274238227147,1,90.7748213352599,0.852762328513163,14.1274238227147,9.96529713798972,0,402.120625813802,400.5537109375,1.83936693125155
+6359,309574,3794798,309674,3794698,58,63,0,NA,NA,NA,NA,0.0214141197459723,0.0763157894736842,7.63157894736842,4,68.0612578890732,0.700551615445232,3.15789473684211,65.9232467125202,26.4923400878906,404.113388061523,403.534088134766,0.724861492413205
+6360,309574,3794698,309674,3794598,59,63,11.3573407202216,0.110675406579807,26.8709622717516,0.638211382113821,NA,0.0277578141333902,0.0831024930747922,8.31024930747922,8,55.6292882592692,0.510327393797398,2.49307479224377,46.6786362806956,0,404.368840535482,404.163513183594,0.262422917864933
+6361,309574,3794598,309674,3794498,60,63,3.8781163434903,0.00755832044935269,2.75129078641052,0.2,15.5867256207735,0.0208886836625931,0.0914127423822715,9.14127423822715,5,71.5524676173491,0.633130081300813,4.70914127423823,27.3655397675254,0,404.1175365448,403.958374023438,0.188206602950281
+6362,309574,3794498,309674,3794398,61,63,0.277008310249307,0.0026994001604831,0,0,NA,0.0176358459230992,0.074792243767313,7.4792243767313,3,76.1851832165728,0.798913800306364,6.09418282548476,60.1101565890842,44.0859146118164,403.882578531901,403.721252441406,0.140579972163676
+6363,309574,3794398,309674,3794298,62,63,18.1578947368421,0.186258611073334,26.4524120795152,0.707729468599034,NA,0.0199436902877335,0.0815789473684211,8.1578947368421,5,64.8209731014546,0.564469914040115,2.89473684210526,17.0431068174301,0,403.648258209229,403.085632324219,0.343409786190048
+6364,309574,3794298,309674,3794198,63,63,9.69529085872576,0.0944790056169086,23.5561007110732,0.585714285714286,NA,0.0226756229963143,0.138504155124654,13.8504155124654,3,80.1377213603411,0.767845659163987,7.20221606648199,45.6484934234619,11.6176595687866,402.945449829102,402.679046630859,0.417806294332394
+6365,309574,3794198,309674,3794098,64,63,21.8836565096953,0.0533131531695413,11.31934186103,0.583823529411765,23.3800883116568,0.0248158001281166,0.119113573407202,11.9113573407202,6,67.2454229886824,0.621593291404612,4.15512465373961,16.9380162150361,0,402.610612869263,402.490966796875,0.133890178848044
+6366,309574,3794098,309674,3793998,65,63,2.21606648199446,0.0107976006419324,3.44919813420478,0.202380952380952,47.9008362727036,0.0223177758693196,0.038781163434903,3.8781163434903,5,46.3847375199922,0.479827089337176,1.66204986149584,36.391368831907,5.19557523727417,402.751406351725,402.671569824219,0.12627903383839
+6367,309574,3793998,309674,3793898,66,63,2.10526315789474,0.0215952012838648,8.27335686384909,0.395833333333333,NA,0.0192951209541781,0.05,5,6,58.0251177741065,0.491833030852995,2.89473684210526,46.1155126471268,18.7329120635986,402.943164825439,402.792358398438,0.268618457038835
+6368,309574,3793898,309674,3793798,67,63,7.20221606648199,0.0350922020862803,8.04948997351845,0.56917211328976,67.5424771946855,0.0212802639600084,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,72.1537551879883,69.7059555053711,403.983411153158,403.253448486328,1.1747110877858
+6369,309574,3793798,309674,3793698,68,63,12.7423822714681,0.124172407382223,21.832555463135,0.655797101449275,NA,0.0186192906750115,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,16.2063039779663,14.6953058242798,405.423131942749,404.111022949219,1.24910820377696
+6370,309574,3793698,309674,3793598,69,63,10.2493074792244,0.0499389029689374,9.05739862868057,0.653021442495127,31.6034499687999,0.018329053372959,0.0249307479224377,2.49307479224377,2,56.7440577704869,0.658143939393939,1.66204986149584,6.25110085805257,0,405.718214035034,405.189331054688,0.883208627345183
+6371,309574,3793598,309674,3793498,70,63,1.57894736842105,0.00809820048144931,3.46371677921464,0.222222222222222,31.1734510129318,0.0105903808910625,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,47.0985527038574,40.5787391662598,405.706665039062,405.337646484375,0.860527939201458
+6372,309574,3793498,309674,3793398,71,63,15.2354570637119,0.148467008826571,18.5413502859294,0.775757575757576,NA,0.0148640634916343,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,12.0293060302734,0,407.01854133606,405.853576660156,1.20378598855174
+6373,309574,3793398,309674,3793298,72,63,0,NA,NA,NA,NA,0.0106435667788437,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,84.3933486938477,82.1492538452148,408.472262064616,407.929656982422,0.76871787462938
+6374,309574,3793298,309674,3793198,73,63,0,NA,NA,NA,NA,0.0128424796279019,0,0,0,NA,NA,0,NA,NA,409.300355911255,408.640838623047,0.881355422481247
+6375,309574,3793198,309674,3793098,74,63,0,NA,NA,NA,NA,0.02057227007769,0.0342105263157895,3.42105263157895,2,64.2589088290837,0.654859218891916,1.84210526315789,75.0736488929162,62.3469009399414,409.609662373861,408.561553955078,1.02052772923645
+6376,309574,3793098,309674,3792998,75,63,24.3767313019391,0.237547214122513,26.2680557895303,0.761363636363636,NA,0.025494188083398,0.102493074792244,10.2493074792244,4,76.0447286901824,0.817344667071443,6.64819944598338,11.9967204944508,0,409.019943237305,408.174926757812,0.913504645790652
+6377,309574,3792998,309674,3792898,76,63,0,NA,NA,NA,NA,0.0253444227617219,0.0498614958448753,4.98614958448753,6,50.6362639676318,0.493251268761473,2.21606648199446,36.4884237713284,23.2353191375732,408.483619689941,407.933349609375,0.618357250325432
+6378,309574,3792898,309674,3792798,77,63,0,NA,NA,NA,NA,0.0268649924585178,0.0886426592797784,8.86426592797784,8,58.912866046342,0.535772737900397,3.04709141274238,54.5992245078087,25.977876663208,407.958585739136,407.786865234375,0.307054412159674
+6379,309574,3792798,309674,3792698,78,63,0,NA,NA,NA,NA,0.0227652606614425,0.0605263157894737,6.05263157894737,5,57.9819738000299,0.615624027388733,2.10526315789474,55.4265640922215,41.5646018981934,407.769889831543,407.676605224609,0.161387592800276
+6380,309574,3792698,309674,3792598,79,63,15.7894736842105,0.0512886030491789,11.027956495189,0.46031746031746,11.8258688283071,0.0242378182064841,0.0609418282548476,6.09418282548476,6,53.2423189653641,0.498872115217769,1.93905817174515,16.1066891713576,0,407.630632400513,407.523956298828,0.16430110843929
+6381,309574,3792598,309674,3792498,80,63,18.2825484764543,0.0890802052959424,18.0582845051907,0.612637362637363,22.0429587144503,0.0118374489958868,0.0304709141274238,3.04709141274238,3,54.4858695954154,0.656190476190476,1.93905817174515,10.6128661415794,5.19557523727417,407.704190572103,407.527252197266,0.194617545028409
+6382,309574,3792498,309674,3792398,81,63,1.10803324099723,0.0053988003209662,1.69905397446611,0.138888888888889,33.2679134937501,0.0149390097693039,0.0249307479224377,2.49307479224377,4,38.5697916232197,0.401751893939394,1.10803324099723,32.8934883541531,7.34765291213989,407.543731689453,407.308868408203,0.160817976108363
+6383,309574,3792398,309674,3792298,82,63,15.2631578947368,0.039141302327005,8.11725806595851,0.365476190476191,19.4746128182759,0.0249626340964153,0.126315789473684,12.6315789473684,6,71.7029179587712,0.497502203937702,3.42105263157895,7.09984719753265,0,407.333936055501,407.050415039062,0.240559979416538
+6384,309574,3792298,309674,3792198,83,63,22.7146814404432,0.221350813159614,26.5755054274256,0.800813008130081,NA,0.0300585572176337,0.168975069252078,16.8975069252078,2,87.2024008770567,0.818364779874214,11.6343490304709,1.7089605565931,0,406.471878051758,405.66748046875,0.818563581370576
+6385,309574,3792198,309674,3792098,84,63,59.0027700831025,0.28748611709145,27.0435476134003,0.808215802244465,25.9778758441098,0.0403086185559161,0.332409972299169,33.2409972299169,4,92.3792922152662,0.814477140355552,28.5318559556787,2.52912866274516,0,405.167503356934,404.663238525391,0.4152159161777
+6386,309574,3792098,309674,3791998,85,63,22.4376731301939,0.109325706499566,20.9788687979708,0.682387057387057,39.5683217016104,0.0432631456540327,0.371191135734072,37.1191135734072,3,94.1783266889789,0.850093883151585,34.3490304709141,13.2917106329505,0,405.03328704834,404.728820800781,0.285917059004972
+6387,309574,3791998,309674,3791898,86,63,15.2631578947368,0.0521884031026733,7.34894404098377,0.307070707070707,12.1230087272512,0.037616096523791,0.265789473684211,26.5789473684211,3,88.7690927831579,0.864551773302442,19.4736842105263,13.7251697341994,0,405.353105545044,405.150329589844,0.201348925459234
+6388,309574,3791898,309674,3791798,87,63,32.9639889196676,0.321228619097489,25.8852186019592,0.826330532212885,NA,0.0568260077674586,0.481994459833795,48.1994459833795,4,93.8445798930467,0.80153930731171,38.5041551246537,15.0913883570967,0,405.60299428304,405.472015380859,0.169612002283295
+6389,309574,3791798,309674,3791698,88,63,42.1052631578947,0.136769608131144,11.6356018340305,0.456439393939394,20.7823008831198,0.0268216137663839,0.14404432132964,14.404432132964,4,84.4839005119075,0.842478455328897,12.7423822714681,8.37459534865159,0,405.895126342773,405.726409912109,0.172936264191965
+6390,309574,3791698,309674,3791598,89,63,61.4958448753463,0.299633417813624,24.6444977772467,0.648148148148148,10.3911503376439,0.0326551376132345,0.315789473684211,31.5789473684211,2,94.5417288728542,0.893577296489918,30.7479224376731,4.39821475012261,0,406.045193990072,405.98193359375,0.0535805977976632
+6391,309574,3791598,309674,3791498,90,63,25.7894736842105,0.132270607863672,16.6720941622806,0.565602836879433,62.3469020258635,0.0367073949404968,0.205263157894737,20.5263157894737,7,76.8235382461931,0.6535176120549,5.52631578947368,22.5929430876023,0,406.000534057617,405.925476074219,0.069502846252937
+6392,309574,3791498,309674,3791398,91,63,51.8005540166205,0.50478783001034,31.6283557266582,0.822638146167558,NA,0.0364471824990954,0.274238227146814,27.4238227146814,7,80.3569037674331,0.667145552791835,8.31024930747922,11.4116967422794,0,406.032068888346,405.921936035156,0.217149332992743
+6393,309574,3791398,309674,3791298,92,63,49.0304709141274,0.477793828405509,33.96652633581,0.857815442561205,NA,0.0430786641336554,0.332409972299169,33.2409972299169,6,91.5643753520929,0.738893753092999,27.9778393351801,13.8155892252922,0,407.004709243774,406.263336181641,0.908514166119701
+6394,309574,3791298,309674,3791198,93,63,12.7423822714681,0.0620862036911113,7.96791398819168,0.368518518518519,25.9778758441098,0.0530524232052009,0.443213296398892,44.3213296398892,5,89.1987874548279,0.767861373405083,16.8975069252078,22.6163271933794,0,408.172958374023,407.321929931641,0.788623020532831
+6395,309574,3791198,309674,3791098,94,63,10.7894736842105,0.110675406579807,14.5097576034894,0.74390243902439,NA,0.0276021714383157,0.165789473684211,16.5789473684211,7,77.8098825079318,0.651276168626326,10,28.077985657586,0,408.219957351685,407.620666503906,0.541033392718964
+6396,309574,3791098,309674,3790998,95,63,37.1191135734072,0.180859810752368,13.719456289903,0.43609022556391,25.9778758441098,0.0367651174117308,0.290858725761773,29.0858725761773,5,89.8624456717758,0.776165674603175,24.0997229916898,4.29770021892729,0,408.107841491699,407.67724609375,0.369543006744807
+6397,309574,3790998,309674,3790898,96,63,8.58725761772853,0.0836814049749762,23.3956039666833,0.553763440860215,NA,0.0350845695414482,0.218836565096953,21.8836565096953,4,90.8207887828181,0.844554204660588,20.7756232686981,8.39677660978293,0,407.944107055664,407.470703125,0.508659374075119
+6398,309574,3790898,309674,3790798,97,63,0.277008310249307,0.0026994001604831,0,0,NA,0.0177011351660241,0.0221606648199446,2.21606648199446,3,44.9714579590004,0.590934844192635,1.38504155124654,26.2337083816528,11.6176595687866,407.582077026367,407.352569580078,0.395344737244774
+6399,309574,3790798,309674,3790698,98,63,0,NA,NA,NA,NA,0.024383830336635,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210527,109.410128275553,102.076858520508,406.860860824585,406.602874755859,0.363446029100044
+6400,309574,3790698,309674,3790598,99,63,0,NA,NA,NA,NA,0.0216159740177307,0.0263157894736842,2.63157894736842,1,70.4776621718293,0.828828828828829,2.63157894736842,95.1470209757487,90.73681640625,406.514904022217,406.475158691406,0.0731218453820961
+6401,309674,3800598,309774,3800498,0,64,19.3905817174515,0.0377916022467634,8.88003841034879,0.413477574938021,13.464247198953,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.916430155436,387.577056884766,0.274975779230967
+6402,309674,3800498,309774,3800398,1,64,35,0.359020221344253,27.8721627461475,0.862155388471178,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.154910617405,388.059143066406,0.11541145761934
+6403,309674,3800398,309774,3800298,2,64,3.601108033241,0.0350922020862803,9.08765530184472,0.576923076923077,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.036150614421,387.904205322266,0.173160043197864
+6404,309674,3800298,309774,3800198,3,64,7.75623268698061,0.0188958011233817,5.61834996596573,0.352272727272727,12.9889379220549,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.01461452908,387.894866943359,0.208825529496021
+6405,309674,3800198,309774,3800098,4,64,0.277008310249307,0.0026994001604831,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.212320963542,388.015716552734,0.306021948939134
+6406,309674,3800098,309774,3799998,5,64,19.4736842105263,0.0499389029689374,8.92108239688106,0.372727272727273,24.6789820519043,-0.0199150630537349,0,0,0,NA,NA,0,NA,NA,388.732252332899,388.542938232422,0.395035306755042
+6407,309674,3799998,309774,3799898,6,64,91.6897506925208,0.446750726559953,18.3027727194154,0.455808080808081,10.3911504415599,-0.0229413813187088,0,0,0,NA,NA,0,NA,NA,389.444895426432,388.993682861328,0.56278257290781
+6408,309674,3799898,309774,3799798,7,64,60.9418282548476,0.593868035306282,33.1098467171772,0.887121212121212,NA,0.0267692306636861,0.199445983379501,19.9445983379501,4,82.6370148969296,0.754107293681715,6.92520775623269,4.27255422539181,0,390.055996365017,389.785614013672,0.407224550186589
+6409,309674,3799798,309774,3799698,8,64,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,0.0144777441817602,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.914535984848485,2.49307479224377,10.138858212365,0,390.195381164551,389.912689208984,0.304287846078653
+6410,309674,3799698,309774,3799598,9,64,0,NA,NA,NA,NA,0.00883755849056701,0.0315789473684211,3.15789473684211,2,62.3749377455957,0.635549872122762,1.57894736842105,41.1151844660441,25.977876663208,390.393842909071,390.271514892578,0.148668443360341
+6411,309674,3799598,309774,3799498,10,64,27.9778393351801,0.0681598540521983,14.0893230425952,0.582509157509158,23.3800882596988,0.019265513456018,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,5.19557523727417,5.19557523727417,390.699582417806,390.407409667969,0.270650607212413
+6412,309674,3799498,309774,3799398,11,64,8.03324099722992,0.0782826046540099,10.8930973503579,0.752873563218391,NA,0.0127553816537203,0.0664819944598338,6.64819944598338,2,75.5128726878084,0.802670623145401,4.15512465373961,5.35257818301519,0,391.304629007975,390.763977050781,0.642169428860082
+6413,309674,3799398,309774,3799298,12,64,0,NA,NA,NA,NA,-0.0130458325651302,0,0,0,NA,NA,0,NA,NA,392.432291666667,391.958892822266,0.734736805819564
+6414,309674,3799298,309774,3799198,13,64,0,NA,NA,NA,NA,-0.000827216213369148,0.134210526315789,13.4210526315789,4,79.2355432827699,0.761031338434126,6.57894736842105,79.612096973494,49.0149574279785,392.450528462728,391.737518310547,0.641085335178128
+6415,309674,3799198,309774,3799098,14,64,0,NA,NA,NA,NA,0.0197316734945597,0.0581717451523546,5.81717451523546,5,58.0122343960789,0.601838235294118,2.21606648199446,49.6959787096296,25.977876663208,391.555280897352,391.363342285156,0.380316338300631
+6416,309674,3799098,309774,3798998,15,64,50.9695290858726,0.496689629528891,28.6131728729372,0.886775362318841,NA,-0.0082766366802671,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,38.4445486068726,32.8597030639648,391.397254943848,391.253997802734,0.180149930463965
+6417,309674,3798998,309774,3798898,16,64,94.7368421052632,0.923194854885221,36.6641123837218,0.922027290448343,NA,-0.0156415646193646,0,0,0,NA,NA,0,NA,NA,391.400302463108,391.325164794922,0.119180580795383
+6418,309674,3798898,309774,3798798,17,64,70.7894736842105,0.363069321584977,18.224236335106,0.565058479532164,10.3911503376439,0.0115494881284432,0.0815789473684211,8.1578947368421,2,80.0068938964355,0.869340974212034,6.57894736842105,3.9566314758793,0,391.510335286458,391.431762695312,0.116339103145331
+6419,309674,3798798,309774,3798698,18,64,26.0387811634349,0.0845812050284705,11.3151050127703,0.386237373737374,33.7457482858267,0.0295972058019769,0.191135734072022,19.1135734072022,6,81.4519660049114,0.754783199366014,10.2493074792244,14.9381466395613,0,391.751495361328,391.552703857422,0.391961423536087
+6420,309674,3798698,309774,3798598,19,64,31.5789473684211,0.034192402032786,8.30115489089407,0.433660680882903,13.0439196816676,0.0156938271698448,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,6.5526796068464,5.19557523727417,392.67076365153,392.271942138672,0.425670199303661
+6421,309674,3798598,309774,3798498,20,64,22.1606648199446,0.053988003209662,8.43098192140716,0.536574074074074,26.1377771053538,0.0160672508244315,0.0914127423822715,9.14127423822715,3,78.0745609377388,0.755420054200542,6.37119113573407,14.9880579601635,5.19557523727417,393.015930175781,392.917419433594,0.102262404342383
+6422,309674,3798498,309774,3798398,21,64,8.94736842105263,0.0229449013641064,4.80331739086266,0.335371376811594,45.4612828570871,0.0493497855678709,0.465789473684211,46.5789473684211,3,92.6174796216171,0.771018815624953,25.5263157894737,26.7039891771004,0,392.923393249512,392.836944580078,0.0955001812586796
+6423,309674,3798398,309774,3798298,22,64,64.2659279778393,0.31313041861604,21.7202927227527,0.613915343915344,10.3911503376439,0.011391187792046,0.110803324099723,11.0803324099723,7,67.2225618352176,0.647510112986469,5.81717451523546,4.05602618455887,0,392.828776041667,392.786071777344,0.0850000348537235
+6424,309674,3798298,309774,3798198,23,64,41.5512465373961,0.101227506018116,14.1842792450261,0.627258355916892,19.2605521147482,0.0207508378041798,0.127423822714681,12.7423822714681,3,80.5267374481922,0.735531135531136,7.75623268698061,7.90952740544858,0,392.893374125163,392.793060302734,0.152587157561838
+6425,309674,3798198,309774,3798098,24,64,28.808864265928,0.0701844041725607,12.4872218465511,0.458203933747412,17.1922465349934,0.0228507642395144,0.188365650969529,18.8365650969529,6,78.1202734062736,0.730805632833338,11.0803324099723,9.41848147616667,0,393.20351155599,393.015838623047,0.321277101469008
+6426,309674,3798098,309774,3797998,25,64,29.2105263157895,0.149816708906812,14.8065207979545,0.507716049382716,44.0859174289005,0.00969204933554513,0.0394736842105263,3.94736842105263,1,78.1912368413851,0.905354919053549,3.94736842105263,7.72656011581421,0,393.915949503581,393.482727050781,0.458625362135578
+6427,309674,3797998,309774,3797898,26,64,65.6509695290859,0.319878919017248,17.858900305996,0.57977207977208,15.5867255064659,0.0260562875423464,0.25207756232687,25.207756232687,2,93.6974248416494,0.925720164609053,24.9307479224377,6.47184747130006,0,394.657135009766,394.337951660156,0.43469838858957
+6428,309674,3797898,309774,3797798,27,64,35.1800554016621,0.171411910190677,20.8606558128577,0.792626024768882,37.824358195589,0.0222381067693312,0.224376731301939,22.4376731301939,3,87.9955887470798,0.767212301587302,16.3434903047091,10.7233430073585,0,395.117892795139,394.931121826172,0.281202971006395
+6429,309674,3797798,309774,3797698,28,64,42.9362880886427,0.0697345041458135,11.5926897583962,0.501654218320885,13.8548671514972,0.0139151869467176,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,0,0,395.538037618001,395.008636474609,1.03465716784147
+6430,309674,3797698,309774,3797598,29,64,22.3684210526316,0.229449013641064,24.764105653653,0.796078431372549,NA,0.00425919287400144,0,0,0,NA,NA,0,NA,NA,398.098904079861,396.568481445312,2.03658506810647
+6431,309674,3797598,309774,3797498,30,64,11.9113573407202,0.0580371034503867,9.04522527134615,0.558760683760684,25.9778761038998,0.0107972758610319,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,36.6140524546305,30.2951488494873,399.528676350911,398.827697753906,0.738036904686776
+6432,309674,3797498,309774,3797398,31,64,0,NA,NA,NA,NA,0.0230833352289461,0.0193905817174515,1.93905817174515,3,42.9746115819409,0.617584745762712,1.38504155124654,81.1654984610421,55.9580574035645,399.745351155599,399.462005615234,0.294689199454563
+6433,309674,3797398,309774,3797298,32,64,0,NA,NA,NA,NA,0.0011901917206762,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,121.291931152344,121.291931152344,400.235275268555,399.958312988281,0.402099127114621
+6434,309674,3797298,309774,3797198,33,64,0,NA,NA,NA,NA,0.0102652852455465,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,83.1292037963867,83.1292037963867,400.997965494792,400.516052246094,0.848069294929819
+6435,309674,3797198,309774,3797098,34,64,0,NA,NA,NA,NA,0.0182522924231287,0.152354570637119,15.2354570637119,3,88.4972210857421,0.900653594771242,14.6814404432133,55.531722016768,29.3906116485596,402.856213887533,402.180847167969,0.918146682888264
+6436,309674,3797098,309774,3796998,35,64,0,NA,NA,NA,NA,-0.0269956261881892,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,58.4395414499136,49.0149574279785,404.027381049262,403.612426757812,0.73814997820117
+6437,309674,3796998,309774,3796898,36,64,9.97229916897507,0.012147300722174,3.31148425235739,0.225490196078431,20.7235618986413,-0.116402720808699,0,0,0,NA,NA,0,NA,NA,404.775939941406,404.372253417969,0.535203515157524
+6438,309674,3796898,309774,3796798,37,64,7.36842105263158,0.0188958011233817,4.69699270835309,0.354001322751323,35.6176617770608,-0.128420283270565,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,42.5078287124634,37.4658241271973,405.210632324219,404.813018798828,0.504427357245371
+6439,309674,3796798,309774,3796698,38,64,0,NA,NA,NA,NA,-0.022727992374339,0.157894736842105,15.7894736842105,2,86.1325696349969,0.854591836734694,9.69529085872576,93.201637602689,51.4335708618164,405.579803466797,405.334716796875,0.366271248358367
+6440,309674,3796698,309774,3796598,39,64,0,NA,NA,NA,NA,0.00265968149644645,0.0304709141274238,3.04709141274238,4,42.2911813465303,0.449904761904762,0.831024930747922,97.2655584161932,82.1492538452148,406.161582946777,405.740325927734,0.445645806592435
+6441,309674,3796598,309774,3796498,40,64,0,NA,NA,NA,NA,0.0131498113423076,0.0470914127423823,4.70914127423823,5,57.5082739546951,0.454302325581395,1.93905817174515,88.7780001023236,49.28955078125,406.796332465278,406.446044921875,0.536447890561177
+6442,309674,3796498,309774,3796398,41,64,0,NA,NA,NA,NA,0.0194066959949039,0.0443213296398892,4.43213296398892,6,43.3229037140825,0.389613526570048,1.38504155124654,56.0314568281174,21.4219055175781,407.043462117513,406.546966552734,0.54233594346584
+6443,309674,3796398,309774,3796298,42,64,0,NA,NA,NA,NA,0.0216249414728449,0.1,10,4,75.949893234015,0.753086419753086,6.8421052631579,78.1169772901033,41.8880653381348,406.725328233507,406.269836425781,0.657311204943631
+6444,309674,3796298,309774,3796198,43,64,21.3296398891967,0.0692846041190663,10.9201872256104,0.55787037037037,17.8806677614438,0.0224919314662498,0.0470914127423823,4.70914127423823,7,51.0580187344217,0.370348837209302,2.49307479224377,26.0108684651992,5.19557523727417,405.799527486165,404.995330810547,0.924160509703685
+6445,309674,3796198,309774,3796098,44,64,12.7423822714681,0.0620862036911113,12.1151453987161,0.565789473684211,25.9778758441098,0.034181003215003,0.274238227146814,27.4238227146814,3,87.981194355755,0.783257569259799,14.9584487534626,33.8368840795575,0,403.752298990885,402.555114746094,2.07761395386226
+6446,309674,3796098,309774,3795998,45,64,35.7340720221607,0.17411131035116,22.9252884726885,0.612041467304625,15.5867255064659,0.0152446578424153,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,6.72934034135607,0,400.358210245768,399.310485839844,1.44879540531087
+6447,309674,3795998,309774,3795898,46,64,0,NA,NA,NA,NA,0.0329955927899152,0.284210526315789,28.4210526315789,3,90.3031275611494,0.842383107088989,15.2631578947368,46.8380773685597,25.977876663208,398.673923068576,398.421173095703,0.527647599145467
+6448,309674,3795898,309774,3795798,47,64,18.8365650969529,0.061186403637617,12.1368013443414,0.515565796210957,14.6725397935234,0.0301113128710481,0.171745152354571,17.1745152354571,1,92.1499865944243,0.910566084479128,17.1745152354571,34.2188009446667,18.7329120635986,398.298042297363,398.251312255859,0.106157957424558
+6449,309674,3795798,309774,3795698,48,64,7.4792243767313,0.0364419021665219,9.71852999692539,0.49702380952381,73.842997873691,0.0511053044633362,0.318559556786704,31.8559556786704,3,90.2173073365879,0.887116948092558,25.4847645429363,17.7994691724363,0,398.351748996311,398.281555175781,0.150788261718024
+6450,309674,3795698,309774,3795598,49,64,33.2409972299169,0.0809820048144931,11.2685166380764,0.520874243168058,13.602192394699,0.0260096916509179,0.0831024930747922,8.31024930747922,3,74.2784877729464,0.621616622479808,4.43213296398892,9.56396630605062,0,398.894948323568,398.503173828125,0.409404844453554
+6451,309674,3795598,309774,3795498,50,64,7.36842105263158,0.0251944014978423,6.35216938666974,0.483262108262108,49.0424562698515,0.0159631638232991,0.0368421052631579,3.68421052631579,3,63.5989523978357,0.740437158469945,2.89473684210526,22.9858533314296,10.3911504745483,399.39054022895,399.25927734375,0.263964387025681
+6452,309674,3795498,309774,3795398,51,64,36.8421052631579,0.359020221344253,27.1107833329497,0.785714285714286,NA,0.0224497004565615,0.102493074792244,10.2493074792244,5,69.3533231319691,0.634689334142886,4.43213296398892,8.51336614505665,0,399.748865763346,399.488739013672,0.259670992129463
+6453,309674,3795398,309774,3795298,52,64,34.6260387811634,0.112475006686796,13.1888577294072,0.570976824777994,17.5317854108076,0.0293845115249642,0.121883656509695,12.1883656509695,5,73.3290350420615,0.738383493903998,6.64819944598338,12.9223440452056,0,399.675014919705,399.194854736328,0.461791350748682
+6454,309674,3795298,309774,3795198,53,64,0,NA,NA,NA,NA,0.0272730653945513,0.193905817174515,19.3905817174515,3,84.6338369791171,0.838627664627162,11.3573407202216,50.5370101656233,25.977876663208,399.199434916178,398.904052734375,0.449094334531656
+6455,309674,3795198,309774,3795098,54,64,0,NA,NA,NA,NA,0.0101137436777782,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,111.638540649414,102.340965270996,398.838162740072,398.633056640625,0.220414311429105
+6456,309674,3795098,309774,3794998,55,64,0,NA,NA,NA,NA,0.00714478796381675,0,0,0,NA,NA,0,NA,NA,398.583028157552,398.506469726562,0.120831952395721
+6457,309674,3794998,309774,3794898,56,64,40.9972299168975,0.133170407917166,17.1801357754928,0.560638500333048,20.7823006752878,0.024123970609593,0.0775623268698061,7.75623268698061,3,77.2797568461312,0.662729396062729,5.81717451523546,13.1314133575984,0,399.449879964193,398.548736572266,1.6232660472903
+6458,309674,3794898,309774,3794798,57,64,45.1523545706371,0.146667408719582,17.2645272711276,0.624145495357617,15.5867255757432,0.0280521152672815,0.110803324099723,11.0803324099723,3,82.6528775906283,0.73143627656112,8.86426592797784,6.28210743665695,0,403.411282009549,402.105712890625,1.78067898014796
+6459,309674,3794798,309774,3794698,58,64,0,NA,NA,NA,NA,-0.0139345850833898,0,0,0,NA,NA,0,NA,NA,404.472379048665,404.226684570312,0.344803073663465
+6460,309674,3794698,309774,3794598,59,64,10.2493074792244,0.0499389029689374,11.3306159733189,0.606818181818182,10.3911504415599,0.00550211925925255,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,33.7942396799723,16.4298515319824,404.581183539497,404.43310546875,0.175394642872077
+6461,309674,3794598,309774,3794498,60,64,11.6343490304709,0.0566874033701451,14.4767862486591,0.45959595959596,25.9778759376342,0.021132226068758,0.102493074792244,10.2493074792244,3,82.5330588194886,0.74428253390002,8.31024930747922,18.7192985560443,0,404.167892456055,403.860473632812,0.291110010632185
+6462,309674,3794498,309774,3794398,61,64,0,NA,NA,NA,NA,0.0140133933896209,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,57.6168568929036,49.28955078125,403.818088107639,403.723754882812,0.199132067839804
+6463,309674,3794398,309774,3794298,62,64,13.1578947368421,0.134970008024155,24.4689916196706,0.69,NA,0.0166736271482621,0.0815789473684211,8.1578947368421,7,57.9804105120836,0.477363896848138,2.10526315789474,26.6401569458746,0,403.584637959798,403.196472167969,0.371481614624121
+6464,309674,3794298,309774,3794198,63,64,10.2493074792244,0.0499389029689374,13.7821730392638,0.460648148148148,16.4298514359663,0.0166210822633961,0.0692520775623269,6.92520775623269,3,74.349780496857,0.650818452380952,4.43213296398892,33.6419139480591,14.6953058242798,402.921749538845,402.657867431641,0.431647466821362
+6465,309674,3794198,309774,3794098,64,64,29.6398891966759,0.072208954292923,12.9278211545352,0.63278037173386,12.7660830498048,0.0142794108559683,0.0664819944598338,6.64819944598338,4,65.2984323217086,0.63353115727003,2.77008310249307,16.2795263727506,0,402.59188079834,402.524139404297,0.118071123264403
+6466,309674,3794098,309774,3793998,65,64,22.9916897506925,0.224050213320097,22.3617989306522,0.819277108433735,NA,0.0116947240340801,0.0277008310249307,2.77008310249307,2,60.7721260804076,0.841770764847688,2.21606648199446,65.4009654998779,51.955753326416,402.755520290799,402.597259521484,0.250737409997023
+6467,309674,3793998,309774,3793898,66,64,0,NA,NA,NA,NA,0.0194165764824184,0.0368421052631579,3.68421052631579,3,59.9157247722398,0.740437158469945,1.84210526315789,85.1255711146763,70.6674652099609,403.417599995931,402.940490722656,0.812057354899359
+6468,309674,3793898,309774,3793798,67,64,0,NA,NA,NA,NA,0.0176315151977148,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,112.815063476562,112.157051086426,405.37853664822,404.101654052734,1.88063044686048
+6469,309674,3793798,309774,3793698,68,64,0,NA,NA,NA,NA,0.0112854443761227,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,105.643363952637,103.911506652832,407.228627522786,406.475402832031,0.912220831901618
+6470,309674,3793698,309774,3793598,69,64,0,NA,NA,NA,NA,0.0146188172798965,0,0,0,NA,NA,0,NA,NA,407.845530192057,407.211547851562,0.941938509220634
+6471,309674,3793598,309774,3793498,70,64,0,NA,NA,NA,NA,0.0155115926734078,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,106.907032775879,98.8525619506836,408.280897352431,407.364715576172,1.37418022610797
+6472,309674,3793498,309774,3793398,71,64,0,NA,NA,NA,NA,0.01861061517522,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,74.3893203735352,74.3893203735352,408.904276529948,407.861663818359,1.18073361482828
+6473,309674,3793398,309774,3793298,72,64,0,NA,NA,NA,NA,0.0189218549454693,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,102.248905181885,99.9388809204102,409.485307481554,409.053863525391,0.70654179215031
+6474,309674,3793298,309774,3793198,73,64,0,NA,NA,NA,NA,0.0154114379331475,0,0,0,NA,NA,0,NA,NA,409.047704060872,408.559417724609,0.604628997369603
+6475,309674,3793198,309774,3793098,74,64,22.1052631578947,0.0755832044935268,10.4379437906701,0.493722943722944,22.5141591514918,0.018240539792245,0.0894736842105263,8.94736842105263,4,75.1314034100946,0.705821635012386,6.31578947368421,21.2389693119947,5.19557523727417,408.308281792535,407.932861328125,0.529475580632542
+6476,309674,3793098,309774,3792998,75,64,22.4376731301939,0.109325706499566,13.1311633425288,0.576315789473684,41.5646013505757,0.0140615107982467,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,407.963035583496,407.788635253906,0.33335565430702
+6477,309674,3792998,309774,3792898,76,64,0,NA,NA,NA,NA,0.0290258665620078,0.0858725761772853,8.58725761772853,3,76.2073633883307,0.824969696969697,4.43213296398892,34.9458015195785,20.7823009490967,407.97711859809,407.874450683594,0.200245774353374
+6478,309674,3792898,309774,3792798,77,64,3.601108033241,0.0350922020862803,6.99667432749438,0.653846153846154,NA,0.0281897506622115,0.18005540166205,18.005540166205,2,86.978451386611,0.859692657259029,9.69529085872576,22.5165432856633,0,407.939442952474,407.849243164062,0.0946502666054234
+6479,309674,3792798,309774,3792698,78,64,1.05263157894737,0.0107976006419324,3.67382645240838,0.416666666666667,NA,0.0160736962902439,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,74.9316482543945,74.9316482543945,407.886705186632,407.685974121094,0.195210568208412
+6480,309674,3792698,309774,3792598,79,64,7.4792243767313,0.0182209510832609,6.45417939307618,0.310515873015873,26.5584868814423,0.0204786650781324,0.0415512465373961,4.15512465373961,5,48.4779170749272,0.525748817656332,1.93905817174515,23.1739683151245,10.3911504745483,407.699882507324,407.587615966797,0.206648745669592
+6481,309674,3792598,309774,3792498,80,64,12.1883656509695,0.0593868035306282,11.5308279432713,0.62156862745098,11.6176593526411,0.035151309073349,0.274238227146814,27.4238227146814,3,90.6933199335391,0.767775967064071,19.9445983379501,17.3308240861604,0,407.395368787977,407.280883789062,0.197796216907657
+6482,309674,3792498,309774,3792398,81,64,4.43213296398892,0.0215952012838648,6.08687182830696,0.520833333333333,20.7823006752878,0.0330544402826883,0.232686980609418,23.2686980609418,6,85.1834567491941,0.728854214619727,13.8504155124654,18.5815455743245,0,407.33794148763,407.103240966797,0.246797132728584
+6483,309674,3792398,309774,3792298,82,64,29.4736842105263,0.0755832044935268,10.5800579990918,0.543643112396835,16.8856193506294,0.042220733185231,0.313157894736842,31.3157894736842,7,81.7467252462947,0.642755782602526,8.42105263157895,8.54108082346556,0,407.173970540365,406.917877197266,0.360086089146062
+6484,309674,3792298,309774,3792198,83,64,25.4847645429363,0.0620862036911113,7.47438615322939,0.289567183462532,18.1845132207719,0.0337785953740127,0.210526315789474,21.0526315789474,4,81.9010250462887,0.744776119402985,7.4792243767313,4.61453361260264,0,406.258107503255,405.488983154297,0.844208983262065
+6485,309674,3792198,309774,3792098,84,64,50.1385041551247,0.244295714523721,25.267479839829,0.771427781464278,31.1734510129318,0.0380919585602649,0.274238227146814,27.4238227146814,6,83.1066945021331,0.744553563770478,11.6343490304709,1.99764594164762,0,405.027890523275,404.612640380859,0.456515103893805
+6486,309674,3792098,309774,3791998,85,64,9.14127423822715,0.0296934017653141,7.32667994490236,0.283730158730159,26.4512972445102,0.0250546799434434,0.0193905817174515,1.93905817174515,3,44.9485943648455,0.490112994350283,1.38504155124654,16.4967099598476,10.3911504745483,404.850541856554,404.592864990234,0.270038292008013
+6487,309674,3791998,309774,3791898,86,64,0,NA,NA,NA,NA,0.0173614921820684,0.0473684210526316,4.73684210526316,2,76.4701262567725,0.844485369347248,4.47368421052632,68.3152609931098,51.955753326416,405.250699361165,405.123413085938,0.174453589140656
+6488,309674,3791898,309774,3791798,87,64,17.7285318559557,0.0575872034236395,10.1533125040137,0.446947496947497,22.5141591861305,0.0354910226028362,0.193905817174515,19.3905817174515,4,81.9997281778355,0.798284580783952,12.4653739612188,10.1503284522465,0,405.535864935981,405.438171386719,0.190382337052874
+6489,309674,3791798,309774,3791698,88,64,15.2354570637119,0.0494890029421902,17.6357993135885,0.431763285024155,25.9778761038998,0.0201878348180443,0.07202216066482,7.20221606648199,2,78.7018832777631,0.816017473607572,5.81717451523546,17.2708043501927,0,405.831738789876,405.659332275391,0.15972345952438
+6490,309674,3791698,309774,3791598,89,64,26.5927977839335,0.0518284830812756,7.30593101568588,0.36712962962963,15.5867255064659,0.0193167245587703,0.110803324099723,11.0803324099723,2,87.3811231454204,0.81536244013577,10.803324099723,14.0530569195747,0,406.060635036892,405.968872070312,0.171197178246267
+6491,309674,3791598,309774,3791498,90,64,4.47368421052632,0.0229449013641064,10.947819105732,0.292857142857143,10.3911503376439,0.0295006863679048,0.165789473684211,16.5789473684211,3,83.4920196229535,0.694866647548036,7.63157894736842,37.2050586427961,10.3911504745483,406.130307515462,406.036041259766,0.126794923976278
+6492,309674,3791498,309774,3791398,91,64,13.2963988919668,0.0431904025677296,10.2031650216427,0.517817817817818,42.1150226624931,0.0334290145454013,0.249307479224377,24.9307479224377,2,89.8631173708673,0.834521326579725,13.8504155124654,33.9300246662564,10.3911504745483,406.126163058811,406.030853271484,0.197122497823263
+6493,309674,3791398,309774,3791298,92,64,32.6869806094183,0.159264609468503,19.6671804174541,0.724031279178338,20.7823008831198,0.0503291590458525,0.481994459833795,48.1994459833795,2,97.2403917428557,0.843637030003165,47.9224376731302,16.8909059009333,0,407.080716451009,406.317443847656,0.937634094324212
+6494,309674,3791298,309774,3791198,93,64,13.2963988919668,0.129571207703189,27.7358013882175,0.680555555555555,NA,0.0355533347921004,0.318559556786704,31.8559556786704,2,95.212068029844,0.865951375859913,31.5789473684211,52.158132951156,25.977876663208,408.349093967014,408.119079589844,0.420898942501794
+6495,309674,3791198,309774,3791098,94,64,16.8421052631579,0.172761610270919,25.2894948036416,0.7578125,NA,0.0101869078477887,0.0236842105263158,2.36842105263158,3,51.3270011451042,0.487870619946092,1.57894736842105,50.9313853581746,5.19557523727417,408.312983194987,407.851470947266,0.447612993405504
+6496,309674,3791098,309774,3790998,95,64,43.4903047091413,0.423805825195847,36.0820770577521,0.836518046709129,NA,0.035625131391866,0.301939058171745,30.1939058171745,6,89.0910784624898,0.760031423737008,24.9307479224377,3.02933843420186,0,408.003757052951,407.7900390625,0.355342085239809
+6497,309674,3790998,309774,3790898,96,64,21.0526315789474,0.102577206098358,17.2922161775937,0.594444444444444,20.7823008831198,0.0257288515466601,0.146814404432133,14.6814404432133,2,85.3740937642562,0.858320251177394,8.58725761772853,2.89611203715486,0,407.758697509766,407.170562744141,0.523248802787573
+6498,309674,3790898,309774,3790798,97,64,22.7146814404432,0.110675406579807,19.6927104043393,0.674494949494949,23.2353187052823,0.0262135344073159,0.121883656509695,12.1883656509695,6,68.1415064165012,0.615269843976468,3.8781163434903,12.0874018777501,0,407.226165771484,406.827056884766,0.54758519463465
+6499,309674,3790798,309774,3790698,98,64,14.2105263157895,0.0728838043330438,13.2212510142108,0.447115384615385,10.3911503376439,0.00588442015076261,0.0763157894736842,7.63157894736842,5,66.0310779700029,0.608413650966843,3.94736842105263,42.3647999599062,0,406.693789164225,406.538970947266,0.249310143542175
+6500,309674,3790698,309774,3790598,99,64,23.2686980609418,0.11337480674029,17.7872596215022,0.702441077441077,14.6953058096335,0.013794646885182,0.0614035087719298,6.14035087719298,3,69.0349612392326,0.70035046728972,3.50877192982456,13.2508621897016,0,406.562517801921,406.518249511719,0.0680603109666313
+6501,309774,3800598,309874,3800498,0,65,39.2105263157895,0.080442124782368,15.1053843019997,0.536056746401574,11.2519815151712,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.656316757202,387.348022460938,0.312217433578241
+6502,309774,3800498,309874,3800398,1,65,47.5,0.128221507622902,16.529567391451,0.561163960417692,14.9010862778274,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.963544209798,387.852630615234,0.143112722518761
+6503,309774,3800398,309874,3800298,2,65,35,0.0897550553360314,19.7568160528862,0.564819283569284,11.9966714570946,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.846307754517,387.756622314453,0.104159896922456
+6504,309774,3800298,309874,3800198,3,65,36.5789473684211,0.0750433244614037,12.8899011944092,0.634492217681873,13.9990990761084,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.811045328776,387.753295898438,0.0780319417721374
+6505,309774,3800198,309874,3800098,4,65,29.4736842105263,0.0755832044935001,13.1241142611667,0.506868082986371,15.5867255844001,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.994174957275,387.838714599609,0.184753872544082
+6506,309774,3800098,309874,3799998,5,65,36,0.0971784057773573,16.6487581114563,0.690543175959843,12.5432281255936,-0.00646563550635619,0,0,0,NA,NA,0,NA,NA,388.375551859538,388.195465087891,0.338017838058661
+6507,309774,3799998,309874,3799898,6,65,52.6315789473684,0.0899800053494049,12.4287525030774,0.400901374859708,16.1110901743378,-0.00903104083952616,0.0210526315789474,2.10526315789474,2,53.5963703730863,0.591397849462366,1.31578947368421,12.8381550908089,5.19557523727417,389.054698944092,388.616943359375,0.41482973857429
+6508,309774,3799898,309874,3799798,7,65,42.6315789473684,0.145767608666036,24.9565310675017,0.692464573136079,13.8548672554083,0.00616198295839527,0.0342105263157895,3.42105263157895,2,69.5073604029095,0.597335755373903,2.89473684210526,10.7025939134451,5.19557523727417,389.475634256999,389.273773193359,0.23060011078263
+6509,309774,3799798,309874,3799698,8,65,20.7894736842105,0.0304646589540128,9.07081837684973,0.381577428419534,14.5440787917634,0.0107178046687247,0.0236842105263158,2.36842105263158,2,59.10066639958,0.658580413297394,1.84210526315789,13.0499636332194,5.19557523727417,389.689121246338,389.469879150391,0.251724586631679
+6510,309774,3799698,309874,3799598,9,65,46.5,0.167362809949893,24.2208782249033,0.70541057171492,15.5867256623344,0.00366420162636913,0.025,2.5,4,44.7288488947304,0.447731755424063,1.25,9.04768567085266,5.19557523727417,390.006711324056,389.754302978516,0.300957379922269
+6511,309774,3799598,309874,3799498,10,65,33.9473684210526,0.0870556551755493,14.9005848185701,0.554403567447046,17.3859075891947,0.00866625287660434,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,12.0804438591003,10.3911504745483,390.33215713501,390.064117431641,0.257817242420588
+6512,309774,3799498,309874,3799398,11,65,27.1052631578947,0.0926794055098871,13.5308017547601,0.636008230452675,12.1230087792074,0.0146430782972617,0.134210526315789,13.4210526315789,3,82.0511155288673,0.853963595709744,9.73684210526316,25.1534387364107,0,390.977254867554,390.500640869141,0.533347195465743
+6513,309774,3799398,309874,3799298,12,65,30.5263157894737,0.0782826046539823,14.6707632022662,0.504603174603175,10.6977776693266,-0.0312154517849099,0.0657894736842105,6.57894736842105,2,77.1235383069601,0.785915492957747,5.26315789473684,27.6255658340454,14.6953058242798,391.665565490723,391.246185302734,0.493379117645746
+6514,309774,3799298,309874,3799198,13,65,31.25,0.112475006686756,21.6478985972155,0.679121963250709,12.1230088484823,-0.0207980004654019,0.085,8.5,1,87.210675248157,0.921935987509758,8.5,24.4372091573827,14.6953058242798,391.63875579834,391.227569580078,0.53848287992244
+6515,309774,3799198,309874,3799098,14,65,27.3684210526316,0.0561475233380287,14.0466896256498,0.536352633721055,15.5867256623344,0.0161019840549814,0.131578947368421,13.1578947368421,4,83.2437222788847,0.76969696969697,9.73684210526316,15.5864083385468,5.19557523727417,391.306800842285,391.208770751953,0.14920422277753
+6516,309774,3799098,309874,3798998,15,65,30,0.0769329045737412,12.2195949950041,0.621016081871345,11.6900442467508,0.0232089371209057,0.142105263157895,14.2105263157895,2,87.5254358939592,0.862128108714295,12.6315789473684,24.9383493706032,5.19557523727417,391.31739616394,391.263610839844,0.0964170132168384
+6517,309774,3798998,309874,3798898,16,65,41.0526315789474,0.105276606258804,13.7846753362481,0.522865013774105,11.004404897097,0.0113489768326824,0.0552631578947368,5.52631578947368,3,66.9514689346842,0.735376044568245,3.15789473684211,14.9303080240885,5.19557523727417,391.465960184733,391.376098632812,0.188653759202886
+6518,309774,3798898,309874,3798798,17,65,43.5,0.117423906980973,13.8718264826176,0.547576121794872,23.1605128329755,0.0166026384431615,0.0675,6.75,4,67.379215607908,0.65085105056425,2.5,8.00346249121207,0,391.756315231323,391.559814453125,0.269235971503187
+6519,309774,3798798,309874,3798698,18,65,47.6315789473684,0.122147857261817,14.0817328117648,0.501041666666667,23.3800883895892,0.013518474886874,0.0921052631578947,9.21052631578947,3,76.0643200131131,0.620189905047476,4.47368421052632,5.17968002046858,0,391.960233052572,391.754821777344,0.375952719040069
+6520,309774,3798698,309874,3798598,19,65,32.3684210526316,0.0664052439478608,9.49023575760217,0.540201333058476,29.095220945403,0.00631345798266059,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,9.56457124437605,5.19557523727417,392.732290267944,392.260894775391,0.507800355333501
+6521,309774,3798598,309874,3798498,20,65,54.2105263157895,0.185358811019774,16.7477664868563,0.739634478996181,21.1479005242004,0.017328744881333,0.202631578947368,20.2631578947368,2,88.3239321327481,0.79712677150068,11.0526315789474,8.25001159890906,0,392.945373535156,392.900054931641,0.116693569181803
+6522,309774,3798498,309874,3798398,21,65,39.25,0.105951456298924,13.9111299401669,0.698473942078593,12.9889379740111,0.0220952135952848,0.125,12.5,5,78.6363980989315,0.784873949579832,7.75,10.7707469272614,0,393.031532287598,392.916534423828,0.225683512593295
+6523,309774,3798398,309874,3798298,22,65,60.5263157894737,0.155215509227723,16.3450208358686,0.73971500947627,11.6900442467508,0.000443857645400146,0.0236842105263158,2.36842105263158,3,47.6543207308807,0.487870619946092,1.31578947368421,9.85109647115072,5.19557523727417,393.224299112956,392.93115234375,0.384192470521386
+6524,309774,3798298,309874,3798198,23,65,65.2631578947368,0.167362809949893,14.8032515303026,0.654033768617102,12.7660830887694,0.00197825128062074,0.0263157894736842,2.63157894736842,2,64.8660180539262,0.762993762993763,2.36842105263158,4.06731820106506,0,393.311977386475,393.039123535156,0.368667760719885
+6525,309774,3798198,309874,3798098,24,65,45,0.230798713721224,23.4746356993496,0.774029982363316,10.3911504415562,0.0148454726803098,0.0842105263157895,8.42105263157895,5,65.1129051195105,0.601016799292661,2.63157894736842,12.2336295247078,0,393.526156107585,393.193115234375,0.32865278091478
+6526,309774,3798098,309874,3797998,25,65,35,0.125972007489167,19.0075246676629,0.467299928101322,25.2345045629799,0.0123689062741505,0.1025,10.25,5,71.5154868429849,0.596302127487788,4,11.4182055054641,0,393.954452514648,393.691864013672,0.23835619132972
+6527,309774,3797998,309874,3797898,26,65,44.7368421052632,0.229449013640983,19.1217252644029,0.494047619047619,21.4219054085088,0.000392462870858205,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,21.6254267692566,10.3911504745483,394.356853485107,394.1611328125,0.251012884704644
+6528,309774,3797898,309874,3797798,27,65,22.8947368421053,0.117423906980973,18.0331520553774,0.7254662004662,49.2895543078832,0.0111115032127839,0.0184210526315789,1.84210526315789,3,37.0208748079497,0.490616621983914,0.789473684210526,12.0903114591326,0,394.751561482747,394.641723632812,0.237191863884569
+6529,309774,3797798,309874,3797698,28,65,41.8421052631579,0.0858409251033323,9.37258115001522,0.297436559139785,12.1128125472212,0.00366217899921283,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,0,0,395.262916564941,394.947814941406,0.49351081897793
+6530,309774,3797698,309874,3797598,29,65,13.5,0.0485892028886787,11.6277065339857,0.445162835249042,41.5646015930378,-0.00291864832449392,0.015,1.5,1,62.2896536353828,0.854967367657723,1.5,17.8009791374207,14.6953058242798,396.754826863607,395.929443359375,1.26436411576
+6531,309774,3797598,309874,3797498,30,65,51.0526315789474,0.523683631133537,29.5011896684603,0.888316151202749,NA,0.00611994880511917,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,398.223602294922,397.518493652344,0.766671430654912
+6532,309774,3797498,309874,3797398,31,65,0.263157894736842,0.00269940016048215,0,0,NA,0.0219735368980956,0.0710526315789474,7.10526315789474,6,57.2585196633559,0.574412016601884,1.84210526315789,54.0136137538486,7.34765291213989,399.252774556478,398.517639160156,0.80224572542824
+6533,309774,3797398,309874,3797298,32,65,0,NA,NA,NA,NA,0.0094445015440502,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,77.2377777099609,77.2377777099609,400.340084075928,399.807434082031,0.529551693280218
+6534,309774,3797298,309874,3797198,33,65,22,0.0791824047074763,8.95353098764184,0.333333333333333,15.5867255930595,-0.00244480814217241,0.09,9,3,83.8279969262324,0.835164835164835,8.5,34.3869133260515,11.6176595687866,401.119102478027,400.859680175781,0.587591952904067
+6535,309774,3797198,309874,3797098,34,65,25.5263157894737,0.130920907783384,18.9489683105214,0.342013888888889,36.3690261817537,-0.0100739022128293,0.115789473684211,11.5789473684211,1,89.5165340769437,0.938867438867439,11.5789473684211,19.7431855960326,0,402.471939086914,401.580902099609,0.745995442445845
+6536,309774,3797098,309874,3796998,35,65,8.42105263157895,0.0431904025677144,9.24798856705932,0.604588394062078,36.3690261817537,-0.0243065328761555,0.0315789473684211,3.15789473684211,2,63.786442286923,0.574808184143223,2.10526315789474,37.0671512285868,30.2951488494873,403.31529490153,403.068756103516,0.485855494943034
+6537,309774,3796998,309874,3796898,36,65,14.2105263157895,0.036441902166509,10.5235120570483,0.422416472416472,23.3247780246615,-0.122700125309884,0,0,0,NA,NA,0,NA,NA,403.884366989136,403.199890136719,0.649751461216467
+6538,309774,3796898,309874,3796798,37,65,35.75,0.386014222948947,30.932724678316,0.81002331002331,NA,-0.0967480577144488,0,0,0,NA,NA,0,NA,NA,404.65426381429,404.154846191406,0.525976290136338
+6539,309774,3796798,309874,3796698,38,65,0.263157894736842,0.00269940016048215,0,0,NA,-0.0224704552305435,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,57.2341995239258,55.2297248840332,405.237859725952,404.999694824219,0.303047396983032
+6540,309774,3796698,309874,3796598,39,65,10.7894736842105,0.110675406579768,21.5268164479076,0.646341463414634,NA,0.0109239471107829,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,88.3247756958008,88.3247756958008,405.842706680298,405.592437744141,0.330834894321862
+6541,309774,3796598,309874,3796498,40,65,11.8421052631579,0.121473007221697,24.952889817612,0.677777777777778,NA,0.00620398583900839,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,21.9135796001979,5.19557523727417,406.348795572917,405.954467773438,0.425675515004253
+6542,309774,3796498,309874,3796398,41,65,12.1052631578947,0.124172407382179,25.5436114653631,0.670289855072464,NA,0.00613365255444478,0.0578947368421053,5.78947368421053,4,71.644056848932,0.500492934604009,4.21052631578947,24.2865953445435,5.19557523727417,406.257215499878,405.764312744141,0.51217911279792
+6543,309774,3796398,309874,3796298,42,65,9,0.0485892028886786,11.8455425306448,0.604166666666667,15.5867255064659,0.030807177179031,0.2325,23.25,5,86.6766732944112,0.72528550684824,12.75,47.5055067769943,7.34765291213989,405.671836853027,405.355987548828,0.494111595671067
+6544,309774,3796298,309874,3796198,43,65,21.5789473684211,0.110675406579768,21.6385402336505,0.479166666666667,11.6176592829313,0.0202960264916424,0.0868421052631579,8.68421052631579,6,64.8034261879263,0.614686732842352,3.42105263157895,14.4265352162448,0,405.210826873779,404.206237792969,0.842938644260569
+6545,309774,3796198,309874,3796098,44,65,36.0526315789474,0.0924544554965135,15.5219131230541,0.59108024691358,18.971059980807,0.0206997987987339,0.118421052631579,11.8421052631579,6,68.3907102315662,0.626865671641791,2.89473684210526,8.88453115887112,5.19557523727417,403.286532084147,401.809478759766,2.32473640149591
+6546,309774,3796098,309874,3795998,45,65,30.7894736842105,0.0789574546941028,11.085776375394,0.525074718706048,18.7069835121683,0.0262301886574469,0.0789473684210526,7.89473684210526,4,68.9533761208156,0.62332361516035,2.63157894736842,6.18529364267985,0,400.182390213013,399.218841552734,1.21126123670048
+6547,309774,3795998,309874,3795898,46,65,3,0.0161964009628929,5.11151586703442,0.227272727272727,30.2951489556473,0.0338245989001007,0.18,18,4,86.5063093934703,0.875168043019013,15.5,38.6470980710453,5.19557523727417,398.639472961426,398.401458740234,0.51084724813786
+6548,309774,3795898,309874,3795798,47,65,21.5789473684211,0.073783604386512,16.1002490230258,0.374946581196581,16.6354546863413,0.0264180722663025,0.107894736842105,10.7894736842105,6,78.8005710395682,0.593860886665812,8.15789473684211,22.8764162528806,5.19557523727417,398.349540710449,398.261474609375,0.133245981043148
+6549,309774,3795798,309874,3795698,48,65,17.3684210526316,0.0593868035306072,14.4430610471489,0.580285425056667,20.7823008831125,0.0188801274374878,0.0710526315789474,7.10526315789474,2,82.9281501755489,0.774688714671586,6.84210526315789,17.4534553598475,5.19557523727417,398.532872517904,398.338806152344,0.19115865355143
+6550,309774,3795698,309874,3795598,49,65,0,NA,NA,NA,NA,0.023164176181308,0.0342105263157895,3.42105263157895,2,68.3053913709012,0.769906145927944,2.89473684210526,21.088817009559,15.5867252349854,398.763010025024,398.663299560547,0.154748736736723
+6551,309774,3795598,309874,3795498,50,65,0,NA,NA,NA,NA,0.0195917499977077,0.03,3,5,48.4644261558569,0.514857489387508,2,33.3121937115987,15.5867252349854,398.996788024902,398.824340820312,0.276969199808771
+6552,309774,3795498,309874,3795398,51,65,0,NA,NA,NA,NA,0.0122220186300135,0,0,0,NA,NA,0,NA,NA,399.25509262085,399.012817382812,0.295850133555079
+6553,309774,3795398,309874,3795298,52,65,17.3684210526316,0.0445401026479554,10.4567541543868,0.501190476190476,12.988937948033,0.0289527003219088,0.110526315789474,11.0526315789474,7,71.675284717213,0.651637636469706,7.36842105263158,13.4472907157171,0,398.980303446452,398.754943847656,0.344489310280477
+6554,309774,3795298,309874,3795198,53,65,7.10526315789474,0.0242946014443393,5.13388743379775,0.36952861952862,35.7239271034663,0.00774435407725641,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,26.9295495351156,25.977876663208,398.782363891602,398.672912597656,0.15055657155956
+6555,309774,3795198,309874,3795098,54,65,3,0.0323928019257858,7.25170551875093,0.583333333333333,NA,0.00318816840928776,0,0,0,NA,NA,0,NA,NA,398.771575927734,398.660186767578,0.134027963970761
+6556,309774,3795098,309874,3794998,55,65,0,NA,NA,NA,NA,0.0103838923147524,0,0,0,NA,NA,0,NA,NA,398.709635416667,398.656799316406,0.0895516929613811
+6557,309774,3794998,309874,3794898,56,65,31.5789473684211,0.0809820048144644,16.5653494729032,0.391844672995781,16.6660437843503,0.0302659062056256,0.128947368421053,12.8947368421053,4,79.8546116282189,0.726658034815134,6.84210526315789,11.5826032988879,0,399.623750686646,398.795684814453,1.22824266149436
+6558,309774,3794898,309874,3794798,57,65,44.2105263157895,0.151166408987,17.5160299128165,0.665921021235982,17.3185839999855,0.0222670895595672,0.0947368421052632,9.47368421052632,2,80.6380182018747,0.779069767441861,5.78947368421053,5.04510810640123,0,402.417622884115,401.100372314453,1.96668847220898
+6559,309774,3794798,309874,3794698,58,65,5.5,0.0296934017653036,5.97592780557806,0.461988304093567,16.4298513045212,0.0218517110482207,0.2425,24.25,3,89.8603996566444,0.848260688137779,19.75,31.1098361949331,0,404.410942077637,404.051300048828,0.483238797326522
+6560,309774,3794698,309874,3794598,59,65,7.63157894736842,0.0782826046539823,14.3067733641709,0.67816091954023,NA,0.0256088152737711,0.205263157894737,20.5263157894737,4,89.4908357194169,0.890584509069968,18.9473684210526,59.0628995406322,0,404.312225341797,404.044372558594,0.301995837343388
+6561,309774,3794598,309874,3794498,60,65,2.63157894736842,0.0134970008024107,5.671283402293,0.277777777777778,15.5867256623344,0.0213874686298177,0.0894736842105263,8.94736842105263,5,67.4605299361261,0.588150289017341,2.89473684210526,42.8615191263311,0,403.841079711914,403.453460693359,0.360320774691047
+6562,309774,3794498,309874,3794398,61,65,0,NA,NA,NA,NA,0.0287878066289283,0.142105263157895,14.2105263157895,4,84.6638817178836,0.774391450623392,11.8421052631579,87.8785612318251,55.9580574035645,403.453804016113,403.207397460938,0.280738288700475
+6563,309774,3794398,309874,3794298,62,65,2.5,0.0269940016048215,6.09178977307082,0.6,NA,0.0261827726310003,0.08,8,5,70.4404633261693,0.623745819397993,4.5,31.9102627187967,0,403.156606674194,402.830169677734,0.320426783890094
+6564,309774,3794298,309874,3794198,63,65,8.68421052631579,0.0890802052959109,24.632520469354,0.555555555555556,NA,0.0156219551347404,0.0289473684210526,2.89473684210526,2,66.7940384779939,0.794037940379404,2.63157894736842,36.3690263574774,20.7823009490967,402.662625630697,402.536193847656,0.240096571450196
+6565,309774,3794198,309874,3794098,64,65,65,0.333375919819545,26.4277921992656,0.779328983560417,11.6176592829313,0.0135825965597561,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5.19557523727417,5.19557523727417,402.459274291992,402.404998779297,0.0844469122699974
+6566,309774,3794098,309874,3793998,65,65,72.3684210526316,0.742335044132591,39.9056841795754,0.846060606060606,NA,0.0129042715971848,0.0263157894736842,2.63157894736842,1,72.0745708707785,0.841995841995842,2.63157894736842,6.48340697288513,0,402.565656026204,402.438507080078,0.233936146407519
+6567,309774,3793998,309874,3793898,66,65,2.75,0.0296934017653036,11.6760019841055,0.393939393939394,NA,0.0169836787492955,0.0025,0.25,1,0,NA,0.25,15.5867252349854,15.5867252349854,404.049600601196,402.730010986328,1.83248010383049
+6568,309774,3793898,309874,3793798,67,65,0,NA,NA,NA,NA,0.00953340440459406,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,59.2386741638184,59.2386741638184,407.359143575033,406.042144775391,1.21714614214003
+6569,309774,3793798,309874,3793698,68,65,0,NA,NA,NA,NA,0.014791361683226,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,121.341455078125,89.3880615234375,408.025312423706,407.367095947266,0.445387817912669
+6570,309774,3793698,309874,3793598,69,65,0,NA,NA,NA,NA,0.0104730409487322,0,0,0,NA,NA,0,NA,NA,408.456380844116,408.166656494141,0.244812065198099
+6571,309774,3793598,309874,3793498,70,65,0,NA,NA,NA,NA,0.00887135399428189,0.005,0.5,1,30.8308651382582,1,0.5,34.1708583831787,31.6034507751465,408.91911315918,408.725799560547,0.380554883375143
+6572,309774,3793498,309874,3793398,71,65,0.789473684210526,0.00809820048144644,3.46371677921464,0.222222222222222,NA,0.0116268598450455,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,77.9336318969727,77.9336318969727,409.582920074463,409.226684570312,0.382586048625839
+6573,309774,3793398,309874,3793298,72,65,0,NA,NA,NA,NA,0.00874673386906579,0,0,0,NA,NA,0,NA,NA,409.750394185384,409.395782470703,0.375084194859996
+6574,309774,3793298,309874,3793198,73,65,0,NA,NA,NA,NA,0.0165239020368302,0,0,0,NA,NA,0,NA,NA,409.108009338379,408.289978027344,0.724581595017253
+6575,309774,3793198,309874,3793098,74,65,0,NA,NA,NA,NA,0.0175438439420395,0.0375,3.75,3,64.2094167349546,0.669421487603306,2.5,72.8872673034668,57.3870010375977,407.914840698242,407.677398681641,0.485561657962541
+6576,309774,3793098,309874,3792998,75,65,1.57894736842105,0.0161964009628929,4.73848229777347,0.5,NA,0.0169277220717241,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.4898055394491,11.6176595687866,407.718244552612,407.642639160156,0.142270804886658
+6577,309774,3792998,309874,3792898,76,65,7.89473684210526,0.0404910024072322,8.79024968024949,0.472222222222222,15.5867256623344,0.028053646187733,0.142105263157895,14.2105263157895,6,75.4405536927627,0.686654792532489,7.63157894736842,23.262293294624,5.19557523727417,408.056823730469,407.896636962891,0.222366217439121
+6578,309774,3792898,309874,3792798,77,65,17.8947368421053,0.0458898027281965,10.8124714513324,0.412944664031621,16.0082884834278,0.021423409357598,0.0736842105263158,7.36842105263158,3,72.7835642503986,0.592171717171717,3.68421052631579,10.5947527715138,5.19557523727417,408.128135681152,407.95751953125,0.155419269319802
+6579,309774,3792798,309874,3792698,78,65,19.25,0.0692846041190418,12.8010752218993,0.393976393976394,12.1230088484823,0.0211117184205796,0.095,9.5,4,73.6589293559496,0.596597386652635,4.25,11.0880242899845,0,408.098622639974,408.037261962891,0.141698611572405
+6580,309774,3792698,309874,3792598,79,65,8.15789473684211,0.0836814049749466,19.1147858201732,0.639784946236559,NA,0.0299393780954185,0.0921052631578947,9.21052631578947,5,70.3917416889505,0.658170914542729,5.52631578947368,44.7241701398577,15.5867252349854,407.781023025513,407.432525634766,0.38996174089559
+6581,309774,3792598,309874,3792498,80,65,10.2631578947368,0.0526383031294019,15.0097966839208,0.500862068965517,15.5867256623344,0.0280162836771955,0.128947368421053,12.8947368421053,4,79.4717129589837,0.699323838296648,7.63157894736842,38.0925885317277,7.34765291213989,407.294497172038,407.177642822266,0.339574322201357
+6582,309774,3792498,309874,3792398,81,65,15.7894736842105,0.0809820048144644,17.2428770158024,0.592198581560284,10.3911504415562,0.0285688601905636,0.139473684210526,13.9473684210526,5,77.9533003309894,0.744597909735524,8.15789473684211,20.6967384050477,5.19557523727417,407.239072799683,407.065155029297,0.339995460229536
+6583,309774,3792398,309874,3792298,82,65,31.25,0.112475006686756,18.2339416571682,0.554232804232804,15.5867256623344,0.0292591282655849,0.18,18,4,86.1403296190007,0.788745918955252,14,14.0854598548677,5.19557523727417,407.216435750326,406.894378662109,0.552152998122492
+6584,309774,3792298,309874,3792198,83,65,29.4736842105263,0.0755832044935001,11.9239622239858,0.563222414408478,16.3732723524053,0.0219356037724203,0.0552631578947368,5.52631578947368,3,66.2704511721221,0.702298050139276,2.63157894736842,7.91706689198812,0,406.136329650879,405.461334228516,0.923509000459009
+6585,309774,3792198,309874,3792098,84,65,30.5263157894737,0.0626260837231858,9.44484547017401,0.593835978835979,25.0247607652221,0.0249805777747641,0.0921052631578947,9.21052631578947,3,83.4275108472414,0.84807596201899,8.68421052631579,2.86507220949445,0,404.833854675293,404.45458984375,0.490444227610109
+6586,309774,3792098,309874,3791998,85,65,22.6315789473684,0.0580371034503662,11.5946540042796,0.472348484848485,23.7407425571951,0.0228191842217807,0.0605263157894737,6.05263157894737,3,71.429039747666,0.70432617491441,3.68421052631579,7.32219497017238,0,404.979598999023,404.742248535156,0.326321253693133
+6587,309774,3791998,309874,3791898,86,65,28.25,0.0762580545336207,18.3278245143267,0.565806923544612,16.8856194675289,0.0210480807724252,0.0725,7.25,7,56.5012378703089,0.380627401502552,1.5,8.40123117381129,0,405.340063095093,405.149780273438,0.181895136569615
+6588,309774,3791898,309874,3791798,87,65,30.7894736842105,0.0789574546941028,14.1671786872771,0.430190058479532,14.2878318571398,0.019882416093146,0.0947368421052632,9.47368421052632,5,68.1808280433477,0.594961240310077,3.42105263157895,16.0625405708949,5.19557523727417,405.544680277507,405.440032958984,0.1491431840722
+6589,309774,3791798,309874,3791698,88,65,35.7894736842105,0.0611864036375953,12.6934656574864,0.515226964769648,17.0836200401296,0.0163736683317678,0.0763157894736842,7.63157894736842,4,70.9779273772032,0.700551615445232,4.47368421052632,9.41627127548744,0,405.811601638794,405.654418945312,0.235658544821916
+6590,309774,3791698,309874,3791598,89,65,28.6842105263158,0.0588469234985108,13.9777991261546,0.453097100032584,21.0016606262003,0.027137476410127,0.0605263157894737,6.05263157894737,10,43.928465989749,0.319950202303143,1.84210526315789,8.54523640093596,0,406.306861877441,405.989868164062,0.317465390896102
+6591,309774,3791598,309874,3791498,90,65,35,0.0629860037445834,13.8723716549104,0.492766325025235,18.325034143813,0.0321449324434434,0.1775,17.75,6,77.8017891573715,0.610942249240122,8,7.01716747418256,0,406.487045288086,406.186767578125,0.26202926541271
+6592,309774,3791498,309874,3791398,91,65,12.8947368421053,0.0165338259829532,5.12064558604634,0.342071123321123,19.8766803150584,0.0489433231861576,0.392105263157895,39.2105263157895,4,93.4307213246425,0.716791145362574,33.6842105263158,22.0906737154762,0,406.42182413737,406.183013916016,0.23688277767411
+6593,309774,3791398,309874,3791298,92,65,6.05263157894737,0.0206954012303631,7.64251329857212,0.359126984126984,17.3185839999855,0.0460990381165175,0.402631578947368,40.2631578947368,3,92.6327411170428,0.7855362377914,27.1052631578947,28.7545700727725,5.19557523727417,406.946197509766,406.555999755859,0.566536607234038
+6594,309774,3791298,309874,3791198,93,65,6.8421052631579,0.0140368808345072,5.80416769643385,0.295132275132275,24.111634778432,0.0300285536329427,0.160526315789474,16.0526315789474,6,73.9364291033904,0.662861536641628,4.47368421052632,13.1603191954191,5.19557523727417,407.860463460286,407.506988525391,0.358616111673129
+6595,309774,3791198,309874,3791098,94,65,30.25,0.081656854854585,14.9653812961168,0.356013808139535,18.1845132727234,0.0363242326961154,0.3025,30.25,5,86.6705390209907,0.622026718800912,14.25,9.20866847629389,0,407.61771774292,407.181488037109,0.381269325486013
+6596,309774,3791098,309874,3790998,95,65,45,0.230798713721224,19.0017784137663,0.706629341123012,25.9778758441098,0.0460970047843722,0.421052631578947,42.1052631578947,6,91.0049309280157,0.788497217068646,25.2631578947368,4.82492435872555,0,407.316998799642,407.013732910156,0.388554220214063
+6597,309774,3790998,309874,3790898,96,65,55,0.564174633540769,35.5985980756841,0.814992025518341,NA,0.0414711817973607,0.368421052631579,36.8421052631579,5,86.7534248820007,0.696940104166667,14.7368421052632,2.64627745832716,0,406.973604202271,406.712799072266,0.386794837096933
+6598,309774,3790898,309874,3790798,97,65,18.6842105263158,0.0638858037980775,10.9152491175806,0.394444444444444,12.1230088484823,0.0276729187897505,0.0973684210526316,9.73684210526316,4,74.2998763098311,0.618601538976246,4.73684210526316,5.59274565206992,0,406.675969441732,406.578948974609,0.203724168302579
+6599,309774,3790798,309874,3790698,98,65,67.25,0.363069321584849,29.7204502402315,0.750911261940674,10.3911504415562,0.0406463781095226,0.375,37.5,5,91.0743470103273,0.796363636363636,25.75,1.08215660095215,0,406.568912506104,406.540252685547,0.0790728294067664
+6600,309774,3790698,309874,3790598,99,65,47.1052631578947,0.120798157181576,16.3819546462901,0.464704706822777,15.5867256623344,0.0301952307613748,0.3,30,4,90.7974854883884,0.772893772893773,25.2777777777778,3.27029371261597,0,406.744649887085,406.550659179688,0.204066366075033
+6601,309874,3800598,309974,3800498,0,66,13.0193905817175,0.126871807542706,27.6162561295495,0.627659574468085,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.329572041829,386.878845214844,0.551782044576736
+6602,309874,3800498,309974,3800398,1,66,40,0.102577206098358,12.0224345700768,0.461585858585859,16.8856192986714,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.751115587023,387.693634033203,0.157525836845849
+6603,309874,3800398,309974,3800298,2,66,39.8891966759003,0.0647856038515944,7.96340692867597,0.4412436329103,17.0214439971291,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.75395711263,387.740112304688,0.0329670520039772
+6604,309874,3800298,309974,3800198,3,66,30.1939058171745,0.0735586543731645,9.61019324508672,0.543790849673203,13.9088196829791,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.774373372396,387.749298095703,0.0548131986991434
+6605,309874,3800198,309974,3800098,4,66,3.04709141274238,0.0296934017653141,7.8689916156403,0.560606060606061,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.951047261556,387.837646484375,0.158189850250708
+6606,309874,3800098,309974,3799998,5,66,6.31578947368421,0.0215952012838648,9.91007866185807,0.201940035273369,15.8677674391512,-0.00768966967198319,0,0,0,NA,NA,0,NA,NA,388.359432644314,388.179962158203,0.32430550342243
+6607,309874,3799998,309974,3799898,6,66,3.8781163434903,0.0377916022467634,18.1845132727298,0.30952380952381,NA,0.0239593014763799,0.135734072022161,13.5734072022161,2,83.6496154419497,0.7933836996337,10.2493074792244,56.4062635071424,20.7823009490967,388.971995035807,388.69580078125,0.312157551904453
+6608,309874,3799898,309974,3799798,7,66,4.70914127423823,0.0152966009094042,5.76110837428922,0.292592592592593,22.9405623069772,0.0193515281717633,0.0581717451523546,5.81717451523546,3,69.6804635237244,0.568658088235294,3.32409972299169,21.8993372917175,5.19557523727417,389.33543226454,389.228271484375,0.201832685394037
+6609,309874,3799798,309974,3799698,8,66,27.1468144044321,0.132270607863672,14.2037630084935,0.725357018460467,47.047934173564,-4.02206602665403e-05,0.0470914127423823,4.70914127423823,2,73.6229696528195,0.832093023255814,4.15512465373961,14.8489375394933,10.3911504745483,389.653978983561,389.470062255859,0.26667485740382
+6610,309874,3799698,309974,3799598,9,66,2.36842105263158,0.0242946014443479,11.1450750159131,0.314814814814815,NA,0.0107570916636608,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,32.7890954017639,25.977876663208,389.934702555339,389.752960205078,0.252418218805367
+6611,309874,3799598,309974,3799498,10,66,18.5595567867036,0.0361719621504736,7.78003285528847,0.497231423970554,12.7146822393469,0.00396494163056594,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,11.6820014847649,5.19557523727417,390.200981140137,390.085113525391,0.16830399341079
+6612,309874,3799498,309974,3799398,11,66,7.4792243767313,0.0728838043330438,15.9404693239524,0.617283950617284,NA,0.0263933108683703,0.265927977839335,26.5927977839335,3,87.738796354593,0.825756910925845,14.1274238227147,34.008145103852,0,390.585255940755,390.302673339844,0.400621822888238
+6613,309874,3799398,309974,3799298,12,66,18.005540166205,0.175461010431402,21.6481699046714,0.782051282051282,NA,-0.0175025189670738,0.0221606648199446,2.21606648199446,2,59.2598439963239,0.693201133144476,1.93905817174515,36.3438060283661,30.2951488494873,390.85693359375,390.522369384766,0.474838395255108
+6614,309874,3799298,309974,3799198,13,66,15.5263157894737,0.0796323047342515,14.5756366188456,0.582151300236407,21.4219052194909,7.21197873836469e-05,0.0710526315789474,7.10526315789474,2,82.8242497161443,0.799723301930298,6.8421052631579,21.0072644551595,5.19557523727417,391.061032613118,390.803619384766,0.324166380513023
+6615,309874,3799198,309974,3799098,14,66,16.8975069252078,0.0411658524473673,7.82143981853112,0.555376344086022,15.111867723231,0.0208379156925463,0.14404432132964,14.404432132964,5,79.2092184656782,0.763717682993346,6.92520775623269,10.605758034266,0,391.180219862196,391.065155029297,0.177679202390144
+6616,309874,3799098,309974,3798998,15,66,11.6343490304709,0.0566874033701451,9.70738936014164,0.355691056910569,46.4706371317287,0.019680711789464,0.105263157894737,10.5263157894737,3,79.7517976629788,0.804855275443511,6.92520775623269,23.0142836821707,15.5867252349854,391.29953511556,391.195098876953,0.144541033440234
+6617,309874,3798998,309974,3798898,16,66,49.3074792243767,0.480493228565992,33.9002753617054,0.828651685393258,NA,0.0148172179106646,0.168975069252078,16.8975069252078,2,86.5424430641822,0.852421383647799,9.97229916897507,7.1699906099038,0,391.69820827908,391.450317382812,0.366612486158768
+6618,309874,3798898,309974,3798798,17,66,19.4736842105263,0.0665852039585832,12.1787333585039,0.638415483152325,24.3538390603596,0.0246697301923153,0.231578947368421,23.1578947368421,2,89.8947763938593,0.859087339673676,16.5789473684211,25.7765083475546,0,392.462412516276,391.835205078125,0.894968465879669
+6619,309874,3798798,309974,3798698,18,66,25.7617728531856,0.0836814049749762,10.7668183099224,0.510209680580051,24.6724206099878,0.0115156426369528,0.03601108033241,3.601108033241,2,67.8273020257022,0.827107279693487,3.04709141274238,5.69220854685857,0,393.190612792969,392.467498779297,1.24372957376248
+6620,309874,3798698,309974,3798598,19,66,26.0387811634349,0.0845812050284705,16.9594008908165,0.643273733503619,19.416042096036,0.0188850686327365,0.0498614958448753,4.98614958448753,3,68.7773738500291,0.649173955296404,3.601108033241,9.33519615067376,0,393.490483601888,392.735198974609,0.751535268988943
+6621,309874,3798598,309974,3798498,20,66,16.3434903047091,0.159264609468503,16.2061912376063,0.810734463276836,NA,0.0431998992801979,0.368421052631579,36.8421052631579,1,96.4027280994676,0.895316804407713,36.8421052631579,17.0552662655823,0,393.326500786675,392.96826171875,0.446382293365817
+6622,309874,3798498,309974,3798398,21,66,18.9473684210526,0.0388713623109567,7.78632371632129,0.287547169811321,18.2941931234889,0.0133171360024502,0.0473684210526316,4.73684210526316,4,59.4798718349333,0.572334765704931,2.36842105263158,26.2841140958998,5.19557523727417,393.621404012044,393.180389404297,0.522419231778592
+6623,309874,3798398,309974,3798298,22,66,20.2216066481994,0.0328427019525444,8.12700293867893,0.478771691271691,19.8617869707066,0.00814844384743251,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,4.18107604980469,0,393.990030924479,393.749145507812,0.423516449949016
+6624,309874,3798298,309974,3798198,23,66,53.7396121883656,0.261841815566861,26.5618046335338,0.760554818744474,10.3911504415599,-0.0191496689931278,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.958023255813953,4.70914127423823,10.6817495121675,5.19557523727417,393.960652669271,393.780792236328,0.264667737163824
+6625,309874,3798198,309974,3798098,24,66,21.3296398891967,0.0415707624714398,8.31181182044125,0.463155363155363,16.7944658037575,0.00488043068538512,0.0277008310249307,2.77008310249307,7,18.9841935476991,0.20885382423844,0.554016620498615,19.8806716918945,5.19557523727417,393.930121527778,393.751251220703,0.27025112685667
+6626,309874,3798098,309974,3797998,25,66,0.526315789473684,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0260253604785631,0.131578947368421,13.1578947368421,3,85.444550337516,0.823885918003565,11.3157894736842,26.7924568843842,5.19557523727417,394.158075968424,393.917602539062,0.328846801040113
+6627,309874,3797998,309974,3797898,26,66,14.404432132964,0.0701844041725607,14.638536400458,0.625277161862528,23.2353187052823,0.0237194285553092,0.130193905817175,13.0193905817174,6,71.1641406541276,0.655095541401274,4.15512465373961,20.9413976364947,5.19557523727417,394.448671976725,394.186340332031,0.403925299743765
+6628,309874,3797898,309974,3797798,27,66,17.4515235457064,0.0850311050552177,14.5419851270452,0.543859649122807,25.9778760103754,0.0247476668727689,0.188365650969529,18.8365650969529,4,83.8089760630017,0.710098373820518,9.69529085872576,20.5344450473785,0,394.670956081814,394.552032470703,0.23428835657425
+6629,309874,3797798,309974,3797698,28,66,14.6814404432133,0.0715341042528022,16.5510750226161,0.53998778998779,20.7823008831198,0.0168760380434137,0.0470914127423823,4.70914127423823,6,47.1815985782313,0.496279069767442,1.93905817174515,13.0707924506244,5.19557523727417,395.371426900228,394.842651367188,0.738751605641236
+6630,309874,3797698,309974,3797598,29,66,21.8421052631579,0.0746834044400325,17.2328504627525,0.495767195767196,13.8548671861359,0.00632223465684212,0.0552631578947368,5.52631578947368,6,53.8176045195021,0.437674094707521,1.84210526315789,14.903010277521,5.19557523727417,396.862243652344,396.270050048828,0.870327981877145
+6631,309874,3797598,309974,3797498,30,66,18.8365650969529,0.0262227444161216,6.93285446195884,0.465955433455433,22.225388035504,0.0179472655250831,0.10803324099723,10.803324099723,4,82.0987654320988,0.879264214046823,9.97229916897507,15.7822316854428,0,397.861526489258,397.438720703125,0.479679722414957
+6632,309874,3797498,309974,3797398,31,66,20.7756232686981,0.0404910024072465,9.70603953423199,0.409365079365079,14.6755314854581,0.013232812639582,0.0304709141274238,3.04709141274238,4,46.8677942155493,0.518666666666667,1.38504155124654,9.75364455309781,5.19557523727417,399.037122938368,398.436614990234,0.975232318015008
+6633,309874,3797398,309974,3797298,32,66,10.803324099723,0.0526383031294205,13.3039843488691,0.465725806451613,15.5867256623399,0.014169559216843,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,8.77935470853533,5.19557523727417,400.36509958903,399.814422607422,0.579770893553129
+6634,309874,3797298,309974,3797198,33,66,28.6842105263158,0.294234617492658,33.1055207611427,0.68348623853211,NA,-0.00835548444317618,0.0552631578947368,5.52631578947368,1,82.4055252250565,0.966922005571031,5.52631578947368,31.4095065707252,18.7329120635986,401.221618652344,400.850036621094,0.624542226273979
+6635,309874,3797198,309974,3797098,34,66,40.9972299168975,0.0799022447502998,15.5331005765396,0.535873983739837,14.1540278120089,-0.0287486432989731,0,0,0,NA,NA,0,NA,NA,402.350924173991,401.700622558594,0.613747488688658
+6636,309874,3797098,309974,3796998,35,66,29.3628808864266,0.0572272834022418,10.5881591633465,0.474872534872535,16.8452004391888,-0.0408977682259212,0.0332409972299169,3.32409972299169,3,62.3219867152144,0.69576942524861,2.77008310249307,24.4749385515849,10.3911504745483,402.915852864583,402.699920654297,0.352340214573177
+6637,309874,3796998,309974,3796898,36,66,18.2825484764543,0.0445401026479712,12.0556457799565,0.3734410430839,10.3911503636229,-0.0254247287651743,0.116343490304709,11.6343490304709,4,81.1781895601352,0.824672170956775,9.69529085872576,24.0530408450535,14.6953058242798,403.447558085124,403.03515625,0.531198635683009
+6638,309874,3796898,309974,3796798,37,66,22.3684210526316,0.0573622534102659,12.1679090086055,0.32797619047619,14.4477329884939,-0.00622859545588941,0.0421052631578947,4.21052631578947,5,50.3274975566502,0.521520146520146,1.31578947368421,20.0833598673344,5.19557523727417,404.424957275391,404.161926269531,0.488962522948898
+6639,309874,3796798,309974,3796698,38,66,4.98614958448753,0.0242946014443479,4.66174590483463,0.323529411764706,98.0299165010732,0.00636551625745831,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,39.5683212280273,39.5683212280273,405.124735514323,404.756134033203,0.365542590542544
+6640,309874,3796698,309974,3796598,39,66,33.5180055401662,0.0816568548546138,10.893163674136,0.547739018087855,10.697777599945,0.00305610050393995,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,12.9889380137126,0,405.69612121582,405.412506103516,0.318852341930576
+6641,309874,3796598,309974,3796498,40,66,21.0526315789474,0.0683848040655719,12.559972353334,0.626464070908515,26.1493637043753,0.0191845196920271,0.138504155124654,13.8504155124654,6,76.4042171995729,0.672252695290335,6.09418282548476,9.28647918701172,0,405.994449191623,405.879821777344,0.210897182726465
+6642,309874,3796498,309974,3796398,41,66,19.3905817174515,0.0629860037446057,10.6006527187105,0.624582798459564,17.3185838960732,0.0250304692623995,0.113573407202216,11.3573407202216,3,86.2306267209855,0.640307971014493,10.5263157894737,20.9904079437256,0,406.114128112793,405.862976074219,0.404185877172348
+6643,309874,3796398,309974,3796298,42,66,38.9473684210526,0.0799022447502998,10.6165326127053,0.476891025641026,16.0773291124648,0.0203259200526334,0.136842105263158,13.6842105263158,5,78.048873647919,0.661551109893121,8.42105263157895,6.09055476922255,0,405.724460177951,404.985565185547,0.76926159062211
+6644,309874,3796298,309974,3796198,43,66,29.3628808864266,0.0953788056704029,16.4305767729714,0.45754647928561,12.9406813574434,0.0426931817229788,0.343490304709141,34.3490304709141,5,88.6769032509497,0.837524613220816,25.4847645429363,12.6900640841453,0,403.481104532878,401.311431884766,2.19506436533635
+6645,309874,3796198,309974,3796098,44,66,12.1883656509695,0.0395912023537522,8.24960088950253,0.62037037037037,45.7494778559108,0.0587830811950515,0.529085872576177,52.9085872576177,2,97.6615801700779,0.796045197740113,52.6315789473684,20.2356948128545,0,400.983578152127,400.616516113281,1.17818455548093
+6646,309874,3796098,309974,3795998,45,66,0.277008310249307,0.0026994001604831,0,0,NA,0.0237986460545615,0.121883656509695,12.1883656509695,4,75.8921647616813,0.661437462699292,5.26315789473684,31.8556994524869,0,400.19548034668,399.621887207031,0.674292346354012
+6647,309874,3795998,309974,3795898,46,66,24.4736842105263,0.0627610537312321,7.79066710268985,0.373392489711934,18.1845131558244,0.027567487055785,0.207894736842105,20.7894736842105,4,82.4810122242392,0.729473184622686,7.36842105263158,32.1741342725633,0,399.041737874349,398.686218261719,0.647316775731892
+6648,309874,3795898,309974,3795798,47,66,42.1052631578947,0.205154412196716,23.8589379332768,0.662326388888889,20.7823008831198,0.016254904377246,0.0443213296398892,4.43213296398892,3,61.924431123681,0.694806763285024,2.21606648199446,7.51052555441856,0,398.627927144368,398.484222412109,0.251349951776561
+6649,309874,3795798,309974,3795698,48,66,22.7146814404432,0.0553377032899036,9.85715054784547,0.492701863354037,17.3071822366678,0.0230127533511016,0.0886426592797784,8.86426592797784,4,76.6392964121386,0.662380173018471,6.64819944598338,11.8070576190948,0,398.666035970052,398.593475341797,0.117546094452896
+6650,309874,3795698,309974,3795598,49,66,10.5263157894737,0.0512886030491789,9.98493993303667,0.57020202020202,36.3690265454597,0.0369517242742155,0.321329639889197,32.1329639889197,5,86.6697227264684,0.747405247813411,19.1135734072022,12.005116125633,0,398.763175964355,398.697265625,0.0512701567184545
+6651,309874,3795598,309974,3795498,50,66,2.10526315789474,0.0107976006419324,4.45335014470454,0.142857142857143,72.1792372090962,0.0199116511413625,0.0368421052631579,3.68421052631579,1,77.2359989552452,0.792349726775956,3.68421052631579,22.1958100455148,15.5867252349854,398.814425998264,398.753845214844,0.0956865702101751
+6652,309874,3795498,309974,3795398,51,66,37.1191135734072,0.0904299053761839,12.186471982037,0.580416666666667,13.5526298567777,0.000840662954511859,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417,398.89653523763,398.825439453125,0.115559137471411
+6653,309874,3795398,309974,3795298,52,66,21.8836565096953,0.042650522535633,9.35713563276076,0.37630821559393,17.8335807647806,0.0267253901405225,0.130193905817175,13.0193905817175,6,72.0337077203661,0.640724522292994,4.43213296398892,4.77551386204172,0,398.801232231988,398.730133056641,0.118335501640286
+6654,309874,3795298,309974,3795198,53,66,29.6398891966759,0.144417908585846,20.3499825318112,0.672368421052632,27.9790287931709,0.0279950953257636,0.238227146814404,23.8227146814404,5,86.6321791700394,0.776922162804516,18.005540166205,16.4113171377847,0,398.629773457845,398.583282470703,0.076512369931709
+6655,309874,3795198,309974,3795098,54,66,1.31578947368421,0.0134970008024155,4.40481631604598,0.433333333333333,NA,0.0239181136974456,0.131578947368421,13.1578947368421,5,80.0224765142064,0.742602495543672,9.73684210526316,42.0229957866669,5.19557523727417,398.651189168294,398.60400390625,0.0568757014328406
+6656,309874,3795098,309974,3794998,55,66,4.70914127423823,0.0229449013641064,10.2297655059257,0.362179487179487,88.3247778699733,0.00927320563726493,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967,398.696706136068,398.654846191406,0.0849069827781721
+6657,309874,3794998,309974,3794898,56,66,46.814404432133,0.152066209040548,18.4518081867668,0.57048265825855,24.2460174545025,0.0362944444731765,0.141274238227147,14.1274238227147,5,81.3260494941865,0.665368928439006,10.2493074792244,9.80902892468022,0,399.587562561035,398.750671386719,1.57358791807828
+6658,309874,3794898,309974,3794798,57,66,30.7479224376731,0.0998778059378748,13.4565364168824,0.369961873638344,23.9532501020753,0.0304216815366039,0.182825484764543,18.2825484764543,9,81.18338129806,0.659484156226971,13.0193905817175,6.69620492241599,0,402.797359890408,402.308532714844,1.22674484766518
+6659,309874,3794798,309974,3794698,58,66,0,NA,NA,NA,NA,0.0409754539121135,0.25,25,8,86.1984967913393,0.694117647058824,19.4736842105263,63.8072846663626,31.1734504699707,403.953788757324,403.392883300781,0.628817064682793
+6660,309874,3794698,309974,3794598,59,66,0,NA,NA,NA,NA,0.0530567143887663,0.38781163434903,38.781163434903,1,96.6344828667546,0.82771846719457,38.781163434903,89.3248960767474,49.28955078125,403.890455457899,403.679443359375,0.389141125216116
+6661,309874,3794598,309974,3794498,60,66,0,NA,NA,NA,NA,0.0241527036304083,0.03601108033241,3.601108033241,6,39.9872080026714,0.366060025542784,1.38504155124654,86.6961910541241,52.9846801757812,403.452641805013,403.237213134766,0.278783778999802
+6662,309874,3794498,309974,3794398,61,66,30.4709141274238,0.296934017653141,24.1552030617983,0.759090909090909,NA,0.0126913299638263,0.0692520775623269,6.92520775623269,3,78.8482718244517,0.785119047619048,6.37119113573407,3.28951133728027,0,403.161899142795,403.048950195312,0.149741929799109
+6663,309874,3794398,309974,3794298,62,66,29.7368421052632,0.152516109067295,20.676188012908,0.757863113897597,20.7823006752878,0.0232099831533656,0.05,5,7,44.0777593640128,0.382940108892922,1.31578947368421,12.3672305910211,0,403.004821777344,402.875579833984,0.14904833524282
+6664,309874,3794298,309974,3794198,63,66,0.277008310249307,0.0026994001604831,0,0,NA,0.0113243435626926,0.038781163434903,3.8781163434903,3,60.0437432297486,0.739913544668588,2.21606648199446,26.6505393981934,5.19557523727417,402.715532090929,402.587341308594,0.243094048335586
+6665,309874,3794198,309974,3794098,64,66,86.4265927977839,0.842212850070728,36.762863004894,0.873931623931624,NA,0.0297541153543678,0.0581717451523546,5.81717451523546,6,53.2259980723662,0.469117647058824,1.93905817174515,2.4900400752113,0,402.431470235189,402.390441894531,0.0811830479894538
+6666,309874,3794098,309974,3793998,65,66,53.4626038781163,0.520984230973239,38.2239917056659,0.829879101899827,NA,0.0284956878518476,0.0858725761772853,8.58725761772853,6,66.8468805426761,0.649939393939394,3.32409972299169,6.75801467895508,0,402.456783718533,402.399780273438,0.119856572891779
+6667,309874,3793998,309974,3793898,66,66,18.4210526315789,0.188958011233817,26.9316109255127,0.764285714285714,NA,0.0210967527819632,0,0,0,NA,NA,0,NA,NA,403.529879252116,402.578643798828,1.85411494862866
+6668,309874,3793898,309974,3793798,67,66,11.3573407202216,0.110675406579807,20.76605813212,0.670731707317073,NA,0.012331041028157,0,0,0,NA,NA,0,NA,NA,407.293986002604,406.785766601562,1.13638312138309
+6669,309874,3793798,309974,3793698,68,66,0,NA,NA,NA,NA,0.0153142423328202,0,0,0,NA,NA,0,NA,NA,408.058123270671,407.629516601562,0.436300307045261
+6670,309874,3793698,309974,3793598,69,66,0,NA,NA,NA,NA,0.0140661456821476,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,72.3659896850586,72.3659896850586,408.540211995443,408.324768066406,0.30530124796961
+6671,309874,3793598,309974,3793498,70,66,2.89473684210526,0.0148467008826571,6.29026341544415,0.351190476190476,60.8126487517751,0.00766736891194964,0,0,0,NA,NA,0,NA,NA,409.014265272352,408.780822753906,0.360512568461365
+6672,309874,3793498,309974,3793398,71,66,11.6343490304709,0.11337480674029,14.3772055438547,0.757936507936508,NA,0.0124344690680685,0,0,0,NA,NA,0,NA,NA,409.406107584635,409.186096191406,0.229515912601174
+6673,309874,3793398,309974,3793298,72,66,17.1745152354571,0.0557876033166508,9.46742011964408,0.610518413149992,41.5646015930463,0.0106050105574755,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,23.8616326649984,15.5867252349854,409.302992078993,409.1396484375,0.23971032091244
+6674,309874,3793298,309974,3793198,73,66,41.8282548476454,0.407609424232948,35.3378284103561,0.732891832229581,NA,-0.00114084617928099,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,7.84921105702718,5.19557523727417,408.495831807454,407.914001464844,0.70469774191409
+6675,309874,3793198,309974,3793098,74,66,6.8421052631579,0.0701844041725607,10.6913607136179,0.724358974358974,NA,0.0171899673793201,0.0473684210526316,4.73684210526316,2,70.2715195584201,0.766728054020872,2.36842105263158,42.1150402492947,23.2353191375732,407.727403428819,407.655487060547,0.180555042002322
+6676,309874,3793098,309974,3792998,75,66,18.8365650969529,0.0917796054564255,24.3130590088399,0.604239766081871,15.5867255064659,0.0095863380593577,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,57.3870010375977,57.3870010375977,407.737373352051,407.650604248047,0.153270697800472
+6677,309874,3792998,309974,3792898,76,66,33.7950138504155,0.109775606526313,13.056288513022,0.673162761039375,10.3911503722826,0.0251964932955625,0.0941828254847645,9.41828254847645,3,77.4631065363266,0.802861511577108,6.09418282548476,4.54175019264221,0,408.154239230686,407.967132568359,0.309908300295531
+6678,309874,3792898,309974,3792798,77,66,42.382271468144,0.103252056138479,14.19722302178,0.696666944603265,11.4671892835783,0.0363169441438321,0.285318559556787,28.5318559556787,4,85.9096547855752,0.735281793421328,13.2963988919668,4.67122448300852,0,408.487063090007,408.224151611328,0.379789290665086
+6679,309874,3792798,309974,3792698,78,66,3.42105263157895,0.0116974006954268,3.81649605985535,0.31712962962963,22.8943789826638,0.0227824682815959,0.139473684210526,13.9473684210526,2,89.8316574352354,0.833988641328091,13.6842105263158,48.0432692473789,25.977876663208,408.583404541016,408.328948974609,0.456691511470393
+6680,309874,3792698,309974,3792598,79,66,30.4709141274238,0.296934017653141,22.3224290376713,0.866666666666667,NA,0.023109576032804,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,37.6498493618435,0,408.449144999186,407.923370361328,0.787687679731751
+6681,309874,3792598,309974,3792498,80,66,0,NA,NA,NA,NA,0.0181787320248064,0.038781163434903,3.8781163434903,2,71.3336155481397,0.895965417867435,3.601108033241,62.2974343981062,51.170482635498,408.874793158637,407.842987060547,1.58946834766883
+6682,309874,3792498,309974,3792398,81,66,0,NA,NA,NA,NA,0.0159219143583346,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,83.6442153930664,72.9233703613281,408.622522989909,407.782989501953,1.39243403576723
+6683,309874,3792398,309974,3792298,82,66,0,NA,NA,NA,NA,0.0244184355805996,0.105263157894737,10.5263157894737,5,71.0777431561908,0.699736611062335,3.94736842105263,76.9623189926147,41.5646018981934,408.389163547092,408.032806396484,0.766453726491802
+6684,309874,3792298,309974,3792198,83,66,22.9916897506925,0.112025106660049,14.0431260165062,0.486625514403292,25.9778758441098,0.024232925810148,0.124653739612188,12.4653739612188,4,77.0379889979854,0.699367088607595,4.70914127423823,3.24024878607856,0,406.895932515462,405.661407470703,1.21229342924961
+6685,309874,3792198,309974,3792098,84,66,50.415512465374,0.245645414603962,26.5729301827861,0.756015258215962,25.9778758441098,0.0394536376301292,0.343490304709141,34.3490304709141,3,91.7475538008651,0.702128457571496,17.4515235457064,3.30559766677118,0,404.848693847656,403.648498535156,0.928829870480604
+6686,309874,3792098,309974,3791998,85,66,5.54016620498615,0.0134970008024155,6.49446902597495,0.263888888888889,36.3690263116487,0.0244561207631569,0.03601108033241,3.601108033241,4,53.6372337749962,0.48132183908046,1.66204986149584,15.2310890051035,0,404.98688422309,404.551788330078,0.618119416440079
+6687,309874,3791998,309974,3791898,86,66,18.9473684210526,0.0388713623109567,8.87338923048442,0.473888888888889,12.4693804051727,0.0273761633781281,0.068421052631579,6.8421052631579,8,48.6432121531954,0.502549262780763,1.57894736842105,10.1912759267367,0,405.536392211914,405.377563476562,0.227137233157245
+6688,309874,3791898,309974,3791798,87,66,22.7146814404432,0.221350813159614,23.439777483707,0.731707317073171,NA,0.0202425223469819,0.213296398891967,21.3296398891967,2,89.7581163429678,0.887841756420878,18.2825484764543,10.3317689214434,0,405.721625434028,405.586303710938,0.219394058583277
+6689,309874,3791798,309974,3791698,88,66,37.9501385041551,0.0924544554965462,17.6539681016518,0.569957983193277,14.2878317376415,0.045975165924385,0.365650969529086,36.5650969529086,6,86.6764076378921,0.659859754661255,16.0664819944598,5.60974654645631,0,406.031527201335,405.839050292969,0.291407766344585
+6690,309874,3791698,309974,3791598,89,66,46.814404432133,0.152066209040548,14.1687774103508,0.457211870255348,19.4160420480008,0.0456562416431371,0.3601108033241,36.01108033241,3,94.9321318641599,0.795586972802163,34.3490304709141,3.40056024698111,0,406.581861707899,406.388916015625,0.258566519847057
+6691,309874,3791598,309974,3791498,90,66,28.1578947368421,0.0481393028619487,11.5272840971176,0.493584656084656,15.4381556868888,0.0389122019285663,0.257894736842105,25.7894736842105,7,82.342686483558,0.594213410702772,12.3684210526316,5.77082612076584,0,406.681231180827,406.606353759766,0.104392276795448
+6692,309874,3791498,309974,3791398,91,66,22.1606648199446,0.107976006419324,18.5830859692172,0.68734335839599,15.5867255064659,0.0495066716119007,0.45983379501385,45.983379501385,5,92.2825399219895,0.697502932797051,33.5180055401662,7.56822956039245,0,406.751366509332,406.565826416016,0.290070218778397
+6693,309874,3791398,309974,3791298,92,66,11.6343490304709,0.0566874033701451,14.176493257066,0.418803418803419,16.4298513045218,0.0503400449839052,0.368421052631579,36.8421052631579,4,90.3373666303749,0.757920110192837,22.9916897506925,20.5382346354033,0,407.127766927083,406.454956054688,0.476164237589329
+6694,309874,3791298,309974,3791198,93,66,19.1135734072022,0.186258611073334,19.8062251875123,0.743961352657005,NA,0.0329609436918225,0.263157894736842,26.3157894736842,3,90.2284333018395,0.760504201680672,19.9445983379501,6.49191342404014,0,407.648796929253,407.490661621094,0.197052370962782
+6695,309874,3791198,309974,3791098,94,66,40,0.136769608131144,13.3239530304044,0.539546265190162,20.4536800400139,0.0534205932572245,0.431578947368421,43.1578947368421,4,91.6513182983847,0.784461613931813,33.1578947368421,7.2457497817714,0,407.423553466797,407.143463134766,0.350629354985049
+6696,309874,3791098,309974,3790998,95,66,36.01108033241,0.175461010431402,15.435271459357,0.503255208333333,58.0882963170683,0.0509359205800007,0.534626038781163,53.4626038781163,2,94.7646869442,0.783918595371109,33.5180055401662,6.24714545511829,0,407.066172281901,406.938049316406,0.18966699832817
+6697,309874,3790998,309974,3790898,96,66,18.5595567867036,0.045214952688092,11.5565624312149,0.45,36.8030376451772,0.0340889186009915,0.373961218836565,37.3961218836565,4,89.0161240110802,0.74026908410677,14.404432132964,10.8902014732361,0,406.976992289225,406.749420166016,0.261718148173541
+6698,309874,3790898,309974,3790798,97,66,20.4986149584488,0.0998778059378748,11.8096832611142,0.457175925925926,53.4917207166621,0.028784998724417,0.152354570637119,15.2354570637119,8,71.3052168603504,0.627450980392157,6.64819944598338,9.67720483433117,0,406.7298956977,406.617736816406,0.210451431985228
+6699,309874,3790798,309974,3790698,98,66,31.8421052631579,0.0653254838836911,7.94473536156677,0.244690265486726,26.3781066012309,0.0463626108669958,0.460526315789474,46.0526315789474,5,94.4660859842327,0.724533715925395,40.5263157894737,5.70480918066842,0,406.752601623535,406.611724853516,0.257978235822627
+6700,309874,3790698,309974,3790598,99,66,61.218836565097,0.298283717733383,16.3991777600175,0.422348484848485,11.6176593526411,0.0679260853659947,0.730994152046784,73.0994152046784,2,98.4258101034935,0.888795986622074,72.2222222222222,1.423600522995,0,407.040163675944,406.762390136719,0.358157558362472
+6701,309974,3800598,310074,3800498,0,67,19.1135734072022,0.0372517222146668,8.05745295081301,0.431481481481481,20.2337892994803,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.772529602051,386.306854248047,0.587555511783559
+6702,309974,3800498,310074,3800398,1,67,31.3157894736842,0.160614309548745,21.5142460850988,0.727930092330884,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.676668802897,387.469848632812,0.327564127407556
+6703,309974,3800398,310074,3800298,2,67,19.9445983379501,0.0971784057773917,12.6417471947377,0.491545893719807,46.7601765193976,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.836297988892,387.752197265625,0.0956733135810939
+6704,309974,3800298,310074,3800198,3,67,24.0997229916898,0.07828260465401,13.0166753955133,0.562745098039216,52.2987272457138,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.846555074056,387.784423828125,0.0638659294857901
+6705,309974,3800198,310074,3800098,4,67,17.1745152354571,0.0557876033166508,9.0359487396007,0.673400673400673,10.3911503722826,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.963954925537,387.8740234375,0.126426039150232
+6706,309974,3800098,310074,3799998,5,67,6.05263157894737,0.0620862036911113,13.2317036320208,0.623188405797101,NA,0.00421925068440032,0,0,0,NA,NA,0,NA,NA,388.278963724772,388.145080566406,0.249426368802796
+6707,309974,3799998,310074,3799898,6,67,20.4986149584488,0.0998778059378748,12.1767745739069,0.631535947712418,41.5646013505757,0.0158870846905083,0.0914127423822715,9.14127423822715,1,87.180691871343,0.95923667570009,9.14127423822715,44.0867840160023,23.2353191375732,388.919393539429,388.461639404297,0.452353521504599
+6708,309974,3799898,310074,3799798,7,67,12.7423822714681,0.0310431018455557,6.94504436619205,0.409453405017921,16.1999801178805,0.00813977670636342,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,48.8205604553223,46.4706382751465,389.592714945475,389.278137207031,0.355119427323901
+6709,309974,3799798,310074,3799698,8,67,43.4903047091413,0.423805825195847,32.8523064042093,0.818471337579618,NA,0.00100312569037395,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,5.39999341964722,0,390.026943206787,389.730590820312,0.248606521598468
+6710,309974,3799698,310074,3799598,9,67,4.73684210526316,0.0242946014443479,6.69222079395632,0.53030303030303,25.9778758441098,0.0211954029689782,0.0342105263157895,3.42105263157895,4,53.2206775145111,0.482288828337875,1.84210526315789,34.5056905012864,16.4298515319824,390.270075480143,390.166381835938,0.200280543861184
+6711,309974,3799598,310074,3799498,10,67,19.6675900277008,0.0638858037981001,9.6220906351408,0.5531279178338,15.5867255757432,0.0136269765659016,0.0277008310249307,2.77008310249307,3,48.9518942658299,0.525312294543064,1.10803324099723,11.2772461414337,5.19557523727417,390.180969238281,390.152191162109,0.064633816802512
+6712,309974,3799498,310074,3799398,11,67,11.0803324099723,0.107976006419324,14.7460178756358,0.758333333333333,NA,0.0291158770546985,0.232686980609418,23.2686980609418,4,86.7761793763607,0.833813873476607,15.5124653739612,25.672783210164,0,390.231821060181,390.172698974609,0.135685819505406
+6713,309974,3799398,310074,3799298,12,67,22.9916897506925,0.0746834044400325,14.5744582135691,0.556392550742833,12.6435414584993,-0.0299785721391368,0.0831024930747922,8.31024930747922,2,79.1957938534232,0.821937234108145,6.09418282548476,11.8891427516937,0,390.341280619303,390.265350341797,0.199319597268948
+6714,309974,3799298,310074,3799198,13,67,39.2105263157895,0.100552655977996,16.6303956747407,0.578775799364035,11.6176593526411,-0.0182329409189008,0.102631578947368,10.2631578947368,3,78.8704504321863,0.759981953530341,7.36842105263158,7.78273960260245,0,390.55092048645,390.374847412109,0.281379432280582
+6715,309974,3799198,310074,3799098,14,67,31.0249307479224,0.0604665635948215,7.04266991282125,0.332222222222222,21.4127585729462,0.025280326249208,0.257617728531856,25.7617728531856,2,92.4798451829964,0.764678115446862,22.1606648199446,13.0773063577631,0,390.851046244303,390.769775390625,0.189963475812092
+6716,309974,3799098,310074,3798998,15,67,10.2493074792244,0.019975561187575,6.11399836846817,0.342222222222222,18.1555592839095,0.0261085762617024,0.135734072022161,13.5734072022161,3,82.717332638629,0.7933836996337,9.69529085872576,12.0658901467615,0,390.997940063477,390.842864990234,0.224935767343175
+6717,309974,3798998,310074,3798898,16,67,54.5706371191136,0.17726061053839,18.4099973141222,0.59514687100894,20.9955021900222,0.0150579865777391,0.213296398891967,21.3296398891967,2,88.6334672643234,0.897188276719138,13.0193905817175,9.10268039207954,0,391.365605672201,390.978424072266,0.492500909619546
+6718,309974,3798898,310074,3798798,17,67,35.2631578947368,0.361719621504736,30.2747008818101,0.764925373134328,NA,0.0288536363061731,0.273684210526316,27.3684210526316,5,85.9054224424555,0.808571650003875,15.2631578947368,15.0971508163672,0,392.990123748779,391.329132080078,1.20013823266742
+6719,309974,3798798,310074,3798698,18,67,0,NA,NA,NA,NA,0.0250384621078682,0.0969529085872576,9.69529085872576,3,82.6448188823763,0.828167971229109,8.86426592797784,52.9489455086844,11.6176595687866,394.108973185221,393.860137939453,0.28075907306693
+6720,309974,3798698,310074,3798598,19,67,32.6869806094183,0.0530882031561677,11.0391420972192,0.413104360518154,12.1230088484866,0.0168922801609959,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,7.84921105702718,5.19557523727417,394.0539894104,393.947570800781,0.134258263557697
+6721,309974,3798598,310074,3798498,20,67,10.5263157894737,0.0512886030491789,9.20856865658986,0.650673400673401,15.5867256623399,0.0218492025331951,0.0886426592797784,8.86426592797784,5,70.0365882668336,0.725683890577508,4.70914127423823,27.8095067739487,0,393.982340494792,393.719024658203,0.266552477478415
+6722,309974,3798498,310074,3798398,21,67,27.6315789473684,0.283437016850726,25.5785816437464,0.806349206349206,NA,0.0110596204215606,0.0526315789473684,5.26315789473684,3,67.9764536589794,0.727598566308244,3.42105263157895,22.0692125320435,5.19557523727417,394.217708587646,393.880859375,0.264017254739087
+6723,309974,3798398,310074,3798298,22,67,8.31024930747922,0.0809820048144931,12.7621315013638,0.711111111111111,NA,0.0153242154329844,0.03601108033241,3.601108033241,1,76.2797118658907,1,3.601108033241,46.5569763183594,39.5683212280273,394.422294616699,394.290985107422,0.201331705107055
+6724,309974,3798298,310074,3798198,23,67,47.9224376731302,0.466996227763577,26.9619687965684,0.89402697495183,NA,-0.0357351319643211,0,0,0,NA,NA,0,NA,NA,394.207824707031,394.062774658203,0.18929156482503
+6725,309974,3798198,310074,3798098,24,67,33.5180055401662,0.108875806472818,14.3222699054317,0.453720882292311,20.7823006752878,-0.000958381094205531,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911504745483,10.3911504745483,394.356669108073,394.089782714844,0.316498939532805
+6726,309974,3798098,310074,3797998,25,67,24.7368421052632,0.253743615085412,27.3182663920783,0.732269503546099,NA,0.00656167208645983,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,7.79336285591125,5.19557523727417,394.847082138062,394.320648193359,0.459050212519063
+6727,309974,3797998,310074,3797898,26,67,19.1135734072022,0.0620862036911113,11.0856578654767,0.68126921387791,24.2460174545025,0.0110835498796542,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,6.92743364969889,5.19557523727417,395.293514251709,394.811187744141,0.433701727455093
+6728,309974,3797898,310074,3797798,27,67,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0145675190552309,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,53.3316478729248,51.4335708618164,395.380981445312,394.821594238281,0.568068994797606
+6729,309974,3797798,310074,3797698,28,67,1.38504155124654,0.0134970008024155,6.23469026493595,0.266666666666667,NA,0.00938472489707386,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,49.961877822876,44.6940307617188,396.236289978027,395.088317871094,0.848681363182131
+6730,309974,3797698,310074,3797598,29,67,0,NA,NA,NA,NA,0.00948222753036374,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,65.7321217854818,62.7783737182617,397.278457641602,396.893768310547,0.476792242274256
+6731,309974,3797598,310074,3797498,30,67,6.09418282548476,0.0296934017653141,7.66665533224145,0.537202380952381,18.7329127343573,0.0153112140560703,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,32.1328582763672,0,398.014854431152,397.584197998047,0.508972191979696
+6732,309974,3797498,310074,3797398,31,67,8.58725761772853,0.020920351243744,5.32750310722156,0.409313725490196,35.6097102787889,0.0139150893081431,0.152354570637119,15.2354570637119,2,90.1247916190668,0.875816993464052,14.9584487534626,24.8123458168723,10.3911504745483,398.928337097168,398.583038330078,0.621982159873007
+6733,309974,3797398,310074,3797298,32,67,16.6204986149584,0.0404910024072465,9.19117077086469,0.417016806722689,13.5901189200049,0.0039022106966236,0.0415512465373961,4.15512465373961,3,65.1431305573521,0.762874408828166,3.32409972299169,20.7540101369222,10.3911504745483,399.821920394897,399.21337890625,0.602323718156796
+6734,309974,3797298,310074,3797198,33,67,18.9473684210526,0.0971784057773917,13.9759581138311,0.694940476190476,29.390611619267,0.0264340739812101,0.260526315789474,26.0526315789474,2,92.6748823131664,0.8632492302771,23.4210526315789,31.3714057989795,0,400.537841796875,399.866912841797,0.714884497951422
+6735,309974,3797198,310074,3797098,34,67,42.9362880886427,0.139469008291627,19.482789294295,0.667670464821848,16.6354546863457,-0.00739674874150241,0.0166204986149584,1.66204986149584,2,47.0675289901851,0.418913480885312,1.10803324099723,1.73185841242472,0,402.202514648438,400.278991699219,1.19585208724829
+6736,309974,3797098,310074,3796998,35,67,29.0858725761773,0.0566874033701451,13.5010753306183,0.590949820788531,18.8319915789493,0.00290370088794921,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483,403.234380086263,403.078247070312,0.307059536329183
+6737,309974,3796998,310074,3796898,36,67,10.803324099723,0.0526383031294205,6.28476730556176,0.394736842105263,57.3870034362763,0.00619926529894792,0.07202216066482,7.20221606648199,2,79.9602022337701,0.789734255551511,6.09418282548476,29.5460475408114,14.6953058242798,403.758655548096,403.245208740234,0.623924750560899
+6738,309974,3796898,310074,3796798,37,67,10.5263157894737,0.0359920021397747,9.59846328573558,0.506837606837607,24.2460175930571,0.00825891247044829,0.142105263157895,14.2105263157895,2,86.7886162296393,0.874661917012996,11.5789473684211,32.2863559899507,10.3911504745483,404.825378417969,404.348205566406,0.539462626871011
+6739,309974,3796798,310074,3796698,38,67,13.2963988919668,0.0647856038515944,18.9164847143692,0.531309297912714,10.3911503376439,0.0113951268103041,0.124653739612188,12.4653739612188,2,85.8344470225158,0.819620253164557,10.5263157894737,41.7932884746128,5.19557523727417,405.451623916626,404.776763916016,0.654844217203324
+6740,309974,3796698,310074,3796598,39,67,21.8836565096953,0.213252612678165,25.7168933475609,0.719409282700422,NA,0.00944906782248919,0.0831024930747922,8.31024930747922,2,78.1764189903279,0.688390159689253,4.43213296398892,18.493479569753,11.6176595687866,406.435403823853,405.568389892578,0.679945238656657
+6741,309974,3796598,310074,3796498,40,67,12.1883656509695,0.118773607061256,15.7017517155586,0.768939393939394,NA,0.0160710844381389,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417,406.929799397786,406.262329101562,0.687871178187658
+6742,309974,3796498,310074,3796398,41,67,20.4986149584488,0.0665852039585832,10.4091251595633,0.357692307692308,12.1230087272512,0.0255186703126881,0.0470914127423823,4.70914127423823,4,61.2843563180408,0.664186046511628,3.04709141274238,6.84743749394136,0,407.08402633667,406.54833984375,0.480251723182352
+6743,309974,3796398,310074,3796298,42,67,23.1578947368421,0.0791824047075043,12.7393338683565,0.473438300051203,22.8797588272154,0.0324896545075095,0.2,20,5,87.2312806864191,0.776119402985075,16.3157894736842,18.8297490822641,0,406.449155171712,405.047790527344,1.45071847844559
+6744,309974,3796298,310074,3796198,43,67,63.7119113573407,0.620862036911113,35.8490976993725,0.856521739130435,NA,0.0394941504965469,0.293628808864266,29.3628808864266,5,85.3455174497567,0.777640899291654,12.7423822714681,6.73718320198779,0,402.783685684204,401.191741943359,2.07707220359605
+6745,309974,3796198,310074,3796098,44,67,28.5318559556787,0.13901910826488,16.3263473159272,0.750597371565113,40.5787394447539,0.0313467134570737,0.21606648199446,21.606648199446,7,78.7939068395226,0.722691657704716,12.1883656509695,8.87672366851415,0,401.721099853516,400.67724609375,1.5606551950008
+6746,309974,3796098,310074,3795998,45,67,3.8781163434903,0.0377916022467634,7.25671393476297,0.666666666666667,NA,0.0158260494932227,0.038781163434903,3.8781163434903,1,77.3446466870219,0.895965417867435,3.8781163434903,17.2190068108695,10.3911504745483,401.070291519165,400.089263916016,1.22468521570618
+6747,309974,3795998,310074,3795898,46,67,0,NA,NA,NA,NA,0.019237048664792,0.0263157894736842,2.63157894736842,2,58.4589470677482,0.683991683991684,1.57894736842105,35.7775596618652,18.7329120635986,400.037999471029,399.137176513672,1.08975279401215
+6748,309974,3795898,310074,3795798,47,67,11.3573407202216,0.0368918021932691,6.07820579530458,0.344444444444444,21.1479004856433,0.0381350284215159,0.310249307479224,31.0249307479224,4,89.6440400061415,0.684202155155275,17.7285318559557,21.8601217014449,0,398.962139129639,398.688659667969,0.40439910613128
+6749,309974,3795798,310074,3795698,48,67,32.1329639889197,0.0782826046540099,14.4038172676681,0.595431644880174,12.9889379999919,0.0173097898355421,0.0997229916897507,9.97229916897507,2,81.3552456103236,0.870410256410256,8.31024930747922,29.5052491691377,5.19557523727417,398.768035888672,398.709136962891,0.0988257171678504
+6750,309974,3795698,310074,3795598,49,67,4.43213296398892,0.0215952012838648,7.78405394680514,0.327380952380952,51.9557516882196,0.0173672905512677,0.138504155124654,13.8504155124654,5,77.9978098966545,0.808814072252695,9.69529085872576,24.8566422176361,7.34765291213989,398.865308761597,398.773651123047,0.1149922417889
+6751,309974,3795598,310074,3795498,50,67,0,NA,NA,NA,NA,0.0183762252002213,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,29.4415925343831,20.7823009490967,398.847429911296,398.769165039062,0.116841125639861
+6752,309974,3795498,310074,3795398,51,67,42.1052631578947,0.205154412196716,13.8007945534007,0.429911699779249,26.4923391803511,0.0156197730072041,0.0554016620498615,5.54016620498615,3,65.1879200306345,0.658499668905496,2.21606648199446,8.1034049987793,0,399.002187728882,398.832672119141,0.188321469267303
+6753,309974,3795398,310074,3795298,52,67,36.01108033241,0.175461010431402,16.2738308037652,0.607804232804233,15.5867255064659,0.0346051068141653,0.249307479224377,24.9307479224377,5,86.0912241048911,0.726960188856547,16.6204986149584,9.00115991168552,0,398.851043701172,398.735656738281,0.190638179236983
+6754,309974,3795298,310074,3795198,53,67,18.8365650969529,0.0917796054564255,13.5021341040209,0.701104330136588,51.1704814635886,0.0288883901416525,0.207756232686981,20.7756232686981,6,79.4730445848666,0.665315744861199,6.64819944598338,14.6571382013957,0,398.634141921997,398.570007324219,0.104947698215589
+6755,309974,3795198,310074,3795098,54,67,4.21052631578947,0.0431904025677296,8.00060801365585,0.666666666666667,NA,0.0242755513014632,0.215789473684211,21.5789473684211,4,84.5017763923427,0.797732006479982,9.73684210526316,22.5566074790024,0,398.656999588013,398.571655273438,0.108786713645626
+6756,309974,3795098,310074,3794998,55,67,42.1052631578947,0.205154412196716,26.088210243074,0.728646611194083,20.7823006752878,0.00745248412929672,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,398.735801696777,398.653411865234,0.119430999056524
+6757,309974,3794998,310074,3794898,56,67,31.8559556786704,0.103477006151852,14.312339301027,0.470892922625596,29.4415926926018,0.0257498389418744,0.0581717451523546,5.81717451523546,3,66.9789021581326,0.701378676470588,3.04709141274238,14.448237827846,10.3911504745483,399.175249099731,398.731689453125,1.15870338121601
+6758,309974,3794898,310074,3794798,57,67,42.9362880886427,0.139469008291627,25.3138863840202,0.693118756936737,13.8548671168586,0.0345452998826407,0.238227146814404,23.8227146814404,3,88.9895090477944,0.751182412358883,14.404432132964,8.13754126083019,0,402.62318166097,401.695709228516,1.59946267089379
+6759,309974,3794798,310074,3794698,58,67,0,NA,NA,NA,NA,0.032579292317211,0.123684210526316,12.3684210526316,7,74.3541114547569,0.700450450450451,8.1578947368421,43.4381988606554,20.7823009490967,403.475898742676,403.1708984375,0.356418363548969
+6760,309974,3794698,310074,3794598,59,67,0.277008310249307,0.0026994001604831,0,0,NA,-0.0151251101716572,0.0470914127423823,4.70914127423823,3,61.8893113381952,0.706162790697674,1.93905817174515,47.9929858936983,23.2353191375732,403.278378804525,402.976165771484,0.3680532867875
+6761,309974,3794598,310074,3794498,60,67,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0157610726008018,0.0664819944598338,6.64819944598338,4,65.5993347107925,0.689910979228487,3.04709141274238,31.3338834246,7.34765291213989,403.171642303467,402.991973876953,0.199158974620494
+6762,309974,3794498,310074,3794398,61,67,24.3767313019391,0.118773607061256,19.0807557626586,0.631617647058824,20.7823006752878,0.0210878454202624,0.110803324099723,11.0803324099723,4,79.9866021199979,0.74822150927605,8.58725761772853,8.24576227664948,0,403.219248453776,403.105072021484,0.236557217654695
+6763,309974,3794398,310074,3794298,62,67,15.2631578947368,0.0782826046540099,13.3691328287016,0.364035087719298,72.3659883679079,0.0155212660074061,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5.19557523727417,5.19557523727417,403.388938903809,403.046813964844,0.395067681792739
+6764,309974,3794298,310074,3794198,63,67,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0164908348840911,0.0249307479224377,2.49307479224377,4,36.4623439173319,0.316287878787879,0.831024930747922,43.2642894321018,36.369026184082,402.854398091634,402.624877929688,0.384709377666498
+6765,309974,3794198,310074,3794098,64,67,74.792243767313,0.364419021665219,19.9778772832072,0.529026217228464,10.3911503376439,0.031918163542347,0.138504155124654,13.8504155124654,10,66.8017198221203,0.54934745602421,4.15512465373961,1.49780261993408,0,402.469617843628,402.400756835938,0.0960119921466715
+6766,309974,3794098,310074,3793998,65,67,52.0775623268698,0.507487230170823,33.511565585141,0.846631205673759,NA,0.0220790495313195,0.038781163434903,3.8781163434903,4,57.176590798614,0.427809798270893,2.21606648199446,13.2414859363011,0,402.501365661621,402.410339355469,0.152059879127882
+6767,309974,3793998,310074,3793898,66,67,54.2105263157895,0.556076433059519,32.060796107262,0.863268608414239,NA,0.0148788948212888,0.0368421052631579,3.68421052631579,4,51.4344520898955,0.377049180327869,1.31578947368421,4.23595752034869,0,403.428470611572,402.607147216797,1.48316133584233
+6768,309974,3793898,310074,3793798,67,67,2.21606648199446,0.0107976006419324,4.58610358920566,0.291666666666667,72.7380530909194,0.0188506594771641,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,19.4592787424723,10.3911504745483,406.705167134603,405.890228271484,1.1958089818587
+6769,309974,3793798,310074,3793698,68,67,0,NA,NA,NA,NA,0.0170337043142616,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,68.8273696899414,68.3371200561523,407.465118408203,407.208740234375,0.391867554099637
+6770,309974,3793698,310074,3793598,69,67,4.15512465373961,0.0404910024072465,10.4921043732484,0.544444444444444,NA,0.0116288401172962,0,0,0,NA,NA,0,NA,NA,407.83384513855,407.326293945312,0.601303887698294
+6771,309974,3793598,310074,3793498,70,67,9.73684210526316,0.0332926019792916,7.18942787757016,0.473824786324786,30.2592654453615,0.00937029766001184,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,36.369026184082,36.369026184082,408.552508036296,407.839965820312,0.793482582339001
+6772,309974,3793498,310074,3793398,71,67,0,NA,NA,NA,NA,0.0159842450306506,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,98.5791015625,98.5791015625,409.43217086792,408.556457519531,0.581702804899908
+6773,309974,3793398,310074,3793298,72,67,5.54016620498615,0.0179960010698873,6.02084228456515,0.292592592592593,16.4043982697274,0.0144310963010247,0,0,0,NA,NA,0,NA,NA,409.100807189941,408.656066894531,0.491710905037024
+6774,309974,3793298,310074,3793198,73,67,24.6537396121884,0.0800822047609987,11.6443106269051,0.618652589240825,28.6275571015299,0.0189393603872899,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.490112994350283,1.10803324099723,13.8427057266235,5.19557523727417,408.395454406738,407.934448242188,0.429284342468451
+6775,309974,3793198,310074,3793098,74,67,10.5263157894737,0.107976006419324,13.5021154384151,0.770833333333333,NA,0.0194115239846137,0.0289473684210526,2.89473684210526,3,55.4848242640297,0.588075880758808,1.84210526315789,37.0121805017645,26.4923400878906,407.927978515625,407.7080078125,0.247862402911118
+6776,309974,3793098,310074,3792998,75,67,16.0664819944598,0.0521884031026733,11.8301519916506,0.470486111111111,17.3185839653505,0.0138725909826744,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,34.9054826100667,30.2951488494873,407.879240036011,407.707214355469,0.180934818210195
+6777,309974,3792998,310074,3792898,76,67,22.1606648199446,0.0431904025677296,9.11881770557294,0.392964756524079,17.0465973492403,0.0230956615215994,0.0831024930747922,8.31024930747922,3,77.6006852088946,0.732905851162217,6.09418282548476,9.51348856290181,0,408.340741475423,407.906860351562,0.695591498891116
+6778,309974,3792898,310074,3792798,77,67,42.9362880886427,0.139469008291627,16.8776854413333,0.448400500910747,12.1230087792092,0.0407166326253409,0.371191135734072,37.1191135734072,6,92.4083404513131,0.654564165523218,30.7479224376731,5.3628426523351,0,409.302396774292,408.814544677734,0.578247223013605
+6779,309974,3792798,310074,3792698,78,67,21.5789473684211,0.0737836043865381,14.4895053040901,0.624898219669462,26.4042789995952,0.036275930116809,0.231578947368421,23.1578947368421,5,87.5952262095412,0.743041619404939,16.3157894736842,11.2861986864697,0,409.487767537435,409.029968261719,0.616647274007938
+6780,309974,3792698,310074,3792598,79,67,4.43213296398892,0.0431904025677296,18.9206079257493,0.375,NA,0.0304111507538766,0.202216066481994,20.2216066481994,4,85.1595941942098,0.745388454861111,10.5263157894737,33.9344119633714,0,409.983823776245,408.963623046875,0.808836045241833
+6781,309974,3792598,310074,3792498,80,67,0,NA,NA,NA,NA,0.0142390709896017,0.0304709141274238,3.04709141274238,3,58.9357317171849,0.518666666666667,2.21606648199446,36.9709972034801,15.5867252349854,410.58145904541,410.052429199219,0.485540734342105
+6782,309974,3792498,310074,3792398,81,67,1.38504155124654,0.0134970008024155,6.23469020258635,0.266666666666667,NA,0.0119816896659658,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,93.5203552246094,93.5203552246094,410.441162109375,409.744415283203,0.64995909307607
+6783,309974,3792398,310074,3792298,82,67,7.10526315789474,0.0364419021665219,11.3278962711688,0.246794871794872,10.3911503376439,0.0206369015630978,0.147368421052632,14.7368421052632,3,87.5897900530511,0.80654193712613,13.4210526315789,53.4591489349093,11.6176595687866,409.531481424967,408.637725830078,1.04448414360482
+6784,309974,3792298,310074,3792198,83,67,24.9307479224377,0.242946014443479,28.5421693984657,0.762962962962963,NA,0.0265466318116846,0.196675900277008,19.6675900277008,3,84.6864658667396,0.760993103448276,9.14127423822715,7.63047689787099,0,408.163557052612,406.667572021484,1.63586618060798
+6785,309974,3792198,310074,3792098,84,67,45.983379501385,0.224050213320097,26.8301873540655,0.64950117370892,31.1734510129318,0.0360283016628996,0.263157894736842,26.3157894736842,5,86.7077322306345,0.768487394957983,12.7423822714681,5.52371676093654,0,404.951080322266,403.922424316406,1.21567951479072
+6786,309974,3792098,310074,3791998,85,67,20.2216066481994,0.0985281058576332,22.0186162683822,0.613988988988989,72.7380523635074,0.029379128425097,0.166204986149584,16.6204986149584,5,79.1811775487896,0.746294403271147,9.69529085872576,22.6806246995926,0,404.88525390625,404.550262451172,0.604922051080558
+6787,309974,3791998,310074,3791898,86,67,12.8947368421053,0.044090202621224,10.9236911118738,0.386777128005198,15.5867255064659,0.0204248450705803,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,59.9750061035156,57.3870010375977,405.629644393921,405.331359863281,0.315864922319167
+6788,309974,3791898,310074,3791798,87,67,4.70914127423823,0.0229449013641064,5.76183520056221,0.509615384615385,21.4219052194909,0.0403466919522347,0.296398891966759,29.6398891966759,4,87.8866507815064,0.77907878095549,13.5734072022161,32.5222877119189,0,406.058502197266,405.823333740234,0.249027195812147
+6789,309974,3791798,310074,3791698,88,67,5.26315789473684,0.017096201016393,5.3286335763576,0.348148148148148,75.5999067318343,0.0503685723966338,0.437673130193906,43.7673130193906,4,94.9236968004351,0.822167487684729,41.2742382271468,21.787610965439,0,406.187145233154,405.998809814453,0.211429778494032
+6790,309974,3791698,310074,3791598,89,67,16.0664819944598,0.039141302327005,8.19144409015045,0.501666666666667,12.9889379999919,0.0339977443934137,0.204986149584488,20.4986149584488,4,88.3492884525042,0.758107745912624,16.8975069252078,9.29727734101785,0,406.394874572754,406.120574951172,0.371089705956675
+6791,309974,3791598,310074,3791498,90,67,30.7894736842105,0.0789574546941307,13.0674205084617,0.447990734755441,18.6060760418628,0.0249505950660454,0.0552631578947368,5.52631578947368,1,82.4055252250565,0.900766016713092,5.52631578947368,3.21630848021734,0,406.920721054077,406.596740722656,0.38662221936897
+6792,309974,3791498,310074,3791398,91,67,15.5124653739612,0.0503888029956846,12.0212161566164,0.471214896214896,27.7097342337171,0.029381882215517,0.0997229916897507,9.97229916897507,4,73.3729309202041,0.759333333333333,6.64819944598338,24.3663209941652,0,407.374061584473,407.128234863281,0.330706456098541
+6793,309974,3791398,310074,3791298,92,67,2.49307479224377,0.0242946014443479,11.5457227128444,0.296296296296296,NA,0.0281554957602007,0.0415512465373961,4.15512465373961,5,51.223012502127,0.525748817656332,2.21606648199446,22.4339655240377,7.34765291213989,407.612279891968,407.322601318359,0.288347021790439
+6794,309974,3791298,310074,3791198,93,67,32.9639889196676,0.321228619097489,23.8051792003403,0.861344537815126,NA,0.0669529497337001,0.545706371191136,54.5706371191136,2,97.7124183006536,0.885415970598062,54.2936288088643,8.04880864729131,0,407.966567993164,407.674743652344,0.261154754781871
+6795,309974,3791198,310074,3791098,94,67,40.7894736842105,0.418407024874881,33.5950873917772,0.793548387096774,NA,0.0423050654659164,0.323684210526316,32.3684210526316,4,88.763297283094,0.655214531241821,20.5263157894737,5.98263868859144,0,407.979005813599,407.502105712891,0.329263661513219
+6796,309974,3791098,310074,3790998,95,67,49.584487534626,0.483192628726475,30.9982777369521,0.863128491620112,NA,0.0411294933282409,0.412742382271468,41.2742382271468,3,95.6932380932453,0.800400857004631,39.3351800554017,3.2495964101497,0,407.676778157552,407.245361328125,0.441430471841793
+6797,309974,3790998,310074,3790898,96,67,73.9612188365651,0.720739842848988,39.3231811974677,0.8458177278402,NA,0.0650876263444185,0.71191135734072,71.191135734072,3,98.4925679872092,0.704122021429714,70.3601108033241,2.28319242121181,0,407.549011230469,407.026550292969,0.465208618478403
+6798,309974,3790898,310074,3790798,97,67,65.0969529085873,0.158589759428382,11.9059068876561,0.532571010860485,11.996671457098,0.0375522294123992,0.335180055401662,33.5180055401662,6,89.2345777044581,0.685492424242424,23.2686980609418,1.89235163523146,0,407.368314107259,407.008453369141,0.477563261674459
+6799,309974,3790798,310074,3790698,98,67,48.9473684210526,0.167362809949952,17.8957832134263,0.738891158315178,27.4169671020071,0.0637725202456702,0.742105263157895,74.2105263157895,1,99.1303671971735,0.721986907970736,74.2105263157895,4.76089609937465,0,407.508598327637,407.042907714844,0.495730106933257
+6800,309974,3790698,310074,3790598,99,67,76.1772853185596,0.371167522066427,20.7700235523494,0.587654320987654,10.3911503376439,0.0821943978305187,0.950292397660819,95.0292397660819,1,99.8523973023126,0.442088091353997,95.0292397660819,1.42392441236056,0,407.787134170532,407.304229736328,0.452730916229511
+6801,310074,3800598,310174,3800498,0,68,38.781163434903,0.125972007489211,13.164687823015,0.453156897054535,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.947689056396,386.200073242188,0.741718335362628
+6802,310074,3800498,310174,3800398,1,68,37.6315789473684,0.0965035557372709,11.6798377920705,0.523128569363117,13.4105008730409,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.87836710612,387.575256347656,0.285550363578146
+6803,310074,3800398,310174,3800298,2,68,59.5567867036011,0.580371034503867,38.0319583675382,0.751162790697674,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.944417953491,387.756500244141,0.196438867870182
+6804,310074,3800298,310174,3800198,3,68,38.2271468144044,0.372517222146668,37.1796519606109,0.73792270531401,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.82741800944,387.722625732422,0.115297616111412
+6805,310074,3800198,310174,3800098,4,68,3.04709141274238,0.0296934017653141,7.8689916156403,0.560606060606061,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.904605865479,387.809631347656,0.123156664669334
+6806,310074,3800098,310174,3799998,5,68,4.73684210526316,0.0161964009628986,4.28084381984646,0.244444444444444,15.7582134360087,0.0100953593824478,0,0,0,NA,NA,0,NA,NA,388.306907653809,388.004089355469,0.446030757864755
+6807,310074,3799998,310174,3799898,6,68,19.3905817174515,0.0944790056169086,13.2961714845564,0.367149758454106,67.5424771946855,-0.000369304389990593,0,0,0,NA,NA,0,NA,NA,389.137855529785,388.482421875,0.448356236682375
+6808,310074,3799898,310174,3799798,7,68,64.2659279778393,0.62626083723208,32.4615689895013,0.854885057471264,NA,0.0391361785523234,0.299168975069252,29.9168975069252,2,94.7405207154062,0.919509476031215,29.6398891966759,0.424710715258563,0,389.653869628906,389.502868652344,0.233424481174941
+6809,310074,3799798,310174,3799698,8,68,36.5650969529086,0.356320821183769,31.8670726119324,0.766414141414141,NA,0.0149483944767086,0.0526315789473684,5.26315789473684,4,59.1165186150451,0.599616858237548,1.93905817174515,6.78936634565655,0,390.100831985474,389.847930908203,0.267807313823068
+6810,310074,3799698,310174,3799598,9,68,18.1578947368421,0.093129305536667,15.4517187585933,0.412935323383085,15.5867255064659,0.014103514550171,0.0552631578947368,5.52631578947368,3,72.9217774811568,0.735376044568245,4.47368421052632,13.6012598673503,5.19557523727417,390.382621765137,390.302642822266,0.105197494670578
+6811,310074,3799598,310174,3799498,10,68,14.1274238227147,0.0688347040923191,12.1767394239515,0.698015873015873,15.5867256623399,0.0145903523754841,0.0415512465373961,4.15512465373961,2,73.0085666444357,0.8577246452969,3.8781163434903,46.4359401067098,14.6953058242798,390.388698577881,390.271118164062,0.13252765037932
+6812,310074,3799498,310174,3799398,11,68,17.1745152354571,0.167362809949952,25.3807974309376,0.75,NA,0.0123238978954367,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,15.5867252349854,15.5867252349854,390.572458267212,390.302612304688,0.303026821370345
+6813,310074,3799398,310174,3799298,12,68,0,NA,NA,NA,NA,-0.00642277933117847,0,0,0,NA,NA,0,NA,NA,390.819964090983,390.521209716797,0.351757355611449
+6814,310074,3799298,310174,3799198,13,68,10,0.102577206098358,20.7043200649109,0.679824561403509,NA,-0.0103753604040417,0,0,0,NA,NA,0,NA,NA,390.891443252563,390.553771972656,0.291134758790161
+6815,310074,3799198,310174,3799098,14,68,12.7423822714681,0.124172407382223,18.6219181362659,0.757246376811594,NA,0.0160563185953257,0.0277008310249307,2.77008310249307,4,41.7780866361615,0.446197676966908,1.10803324099723,28.8192432403564,0,391.063809712728,390.900604248047,0.184896643113658
+6816,310074,3799098,310174,3798998,15,68,14.6814404432133,0.0476894028352015,12.8972653096938,0.439092939092939,28.1361372631858,0.0184574500216868,0.0470914127423823,4.70914127423823,4,61.3415988112554,0.706162790697674,3.32409972299169,12.3002301945406,0,390.953989028931,390.867065429688,0.128685522905147
+6817,310074,3798998,310174,3798898,16,68,26.8698060941828,0.13092090778343,17.8370108510091,0.659232026143791,47.047934632588,0.00619696322607229,0.166204986149584,16.6204986149584,3,83.3115549429036,0.792422693585484,10.803324099723,14.4772481282552,0,391.137870788574,390.926055908203,0.399029097317348
+6818,310074,3798898,310174,3798798,17,68,12.1052631578947,0.124172407382223,22.9292338036165,0.673913043478261,NA,0.0217185044999688,0.144736842105263,14.4736842105263,3,84.8109060799831,0.84,11.5789473684211,13.7627731930126,0,392.614454269409,391.348510742188,1.07371273715988
+6819,310074,3798798,310174,3798698,18,68,0,NA,NA,NA,NA,0.0278431795723865,0.0526315789473684,5.26315789473684,5,51.6489576184935,0.490421455938697,1.38504155124654,66.7027807737652,18.7329120635986,393.732269287109,393.458770751953,0.310447887132703
+6820,310074,3798698,310174,3798598,19,68,2.49307479224377,0.012147300722174,4.21623549875743,0.297619047619048,25.9778760103754,0.0212885742731182,0.0193905817174515,1.93905817174515,2,55.937945936562,0.617584745762712,1.66204986149584,8.02535213742937,5.19557523727417,393.98969078064,393.71533203125,0.167654077767504
+6821,310074,3798598,310174,3798498,20,68,13.2963988919668,0.0647856038515944,11.6409136297165,0.693121693121693,11.6176593526411,0.0350186223786749,0.290858725761773,29.0858725761773,4,89.4345820767755,0.850777116402116,19.6675900277008,27.1015500749861,0,394.118967692057,393.994781494141,0.151242994141608
+6822,310074,3798498,310174,3798398,21,68,5.78947368421053,0.0148467008826571,4.70696094636297,0.31547619047619,10.3911503896019,0.0173897571819907,0.126315789473684,12.6315789473684,2,85.9699852831468,0.874375550984425,10.7894736842105,38.6582801540693,10.3911504745483,394.171607971191,393.883453369141,0.216045777288772
+6823,310074,3798398,310174,3798298,22,68,7.75623268698061,0.0377916022467634,8.56379509220446,0.576388888888889,55.9580571811107,0.0177395798877558,0.14404432132964,14.404432132964,3,84.6634736707279,0.763717682993346,9.97229916897507,18.9889912421887,0,394.07438659668,393.828369140625,0.263103584482639
+6824,310074,3798298,310174,3798198,23,68,3.601108033241,0.0116974006954268,3.55428006277359,0.296296296296296,54.5145617671941,0.0340168277037093,0.279778393351801,27.9778393351801,2,90.6019064726163,0.838907777305567,15.5124653739612,23.7448343947382,5.19557523727417,394.082880020142,393.858062744141,0.253400342585714
+6825,310074,3798198,310174,3798098,24,68,27.9778393351801,0.0908798054029311,13.8249005931824,0.507724301841949,19.173521861185,0.0205917718867719,0.14404432132964,14.404432132964,3,88.2505064336535,0.868732046107414,13.8504155124654,17.5574118449138,0,394.582120259603,394.412384033203,0.384471156104206
+6826,310074,3798098,310174,3797998,25,68,27.8947368421053,0.0715341042528022,9.8673622830076,0.322379725085911,19.4834070389563,0.0251517464672648,0.255263157894737,25.5263157894737,3,89.4198411272756,0.791641281832582,15.2631578947368,14.6767292219339,0,395.21435546875,394.847198486328,0.365484159054241
+6827,310074,3797998,310174,3797898,26,68,20.2216066481994,0.0985281058576332,18.4120419806075,0.587339743589744,29.390611619267,0.0257291383750271,0.182825484764543,18.2825484764543,6,80.5415348081418,0.744613117170228,11.0803324099723,13.8740160320744,0,395.572839736938,395.428894042969,0.174307766401434
+6828,310074,3797898,310174,3797798,27,68,11.3573407202216,0.110675406579807,23.2569794373937,0.613821138211382,NA,0.0154336410382372,0.0470914127423823,4.70914127423823,4,58.7450075588632,0.538255813953488,2.49307479224377,17.9245679238263,5.19557523727417,395.912536621094,395.682922363281,0.425890561523729
+6829,310074,3797798,310174,3797698,28,68,2.21606648199446,0.0107976006419324,4.45335018923996,0.142857142857143,20.7823006752878,0.00752807257644503,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,10.0883190631866,5.19557523727417,396.736366271973,396.25830078125,0.4544870616918
+6830,310074,3797698,310174,3797598,29,68,2.10526315789474,0.0107976006419324,3.66813494109252,0.333333333333333,25.9778758441098,0.0139210579650688,0.0815789473684211,8.1578947368421,2,84.240122166573,0.869340974212034,7.89473684210526,64.2829397878339,47.9008369445801,397.343907674154,397.154205322266,0.29759876587554
+6831,310074,3797598,310174,3797498,30,68,3.601108033241,0.0175461010431402,5.11326554106772,0.386111111111111,69.705955697593,0.0269870870663472,0.202216066481994,20.2216066481994,2,88.3051003744016,0.872694227430556,13.0193905817175,26.1671842810226,10.3911504745483,397.738302230835,397.533905029297,0.311485140805576
+6832,310074,3797498,310174,3797398,31,68,17.1745152354571,0.0557876033166508,11.1615394984091,0.522605363984674,34.1257500341169,0.0276570685604978,0.243767313019391,24.3767313019391,3,88.6903433764774,0.865238795175101,14.6814404432133,19.7565727884119,0,398.504920959473,397.9921875,0.657363381454303
+6833,310074,3797398,310174,3797298,32,68,9.41828254847645,0.0458898027282127,9.02689950938539,0.600740740740741,49.0149584653305,0.0168725235613348,0.0914127423822715,9.14127423822715,1,87.180691871343,0.857328364950316,9.14127423822715,10.2541500149351,0,399.401165008545,398.988525390625,0.510296408348612
+6834,310074,3797298,310174,3797198,33,68,9.47368421052632,0.0971784057773917,18.9600400207643,0.662037037037037,NA,0.0330210264651932,0.276315789473684,27.6315789473684,3,89.4097660293798,0.868398268398269,13.9473684210526,23.3877396946862,0,399.9992090861,399.632568359375,0.518631464984548
+6835,310074,3797198,310174,3797098,34,68,23.2686980609418,0.11337480674029,20.3665919350824,0.475308641975309,21.4219052194909,-0.0110342513126598,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,22.0429573059082,22.0429573059082,401.953117370605,400.066528320312,1.44291830339615
+6836,310074,3797098,310174,3796998,35,68,5.81717451523546,0.0283437016850726,6.55196467033663,0.561111111111111,25.9778758441098,0.0111234098103851,0.0554016620498615,5.54016620498615,2,74.8703292141186,0.829249834452748,4.70914127423823,23.2003773212433,11.6176595687866,403.674550374349,403.338653564453,0.594367558547134
+6837,310074,3796998,310174,3796898,36,68,19.6675900277008,0.0479143528485751,9.20688875953943,0.590589806107047,28.5139458372152,0.00485782863071912,0.0554016620498615,5.54016620498615,2,72.175958031556,0.760949768233847,2.77008310249307,15.0286995410919,5.19557523727417,404.214351654053,403.864898681641,0.351183789029839
+6838,310074,3796898,310174,3796798,37,68,31.8421052631579,0.326627419418455,35.2693948672668,0.797520661157025,NA,0.0108517683453484,0.163157894736842,16.3157894736842,5,80.6476206766926,0.81190309806662,9.21052631578947,22.9475940273654,5.19557523727417,404.742190043132,404.481414794922,0.347036450031962
+6839,310074,3796798,310174,3796698,38,68,25.207756232687,0.0491290829207925,9.04782557559603,0.48618373275236,13.9990990761108,0.00472307679700461,0.0997229916897507,9.97229916897507,5,69.8667435816164,0.685282051282051,3.8781163434903,17.0100733439128,0,405.383855819702,404.971405029297,0.538440213104465
+6840,310074,3796698,310174,3796598,39,68,11.6343490304709,0.0566874033701451,8.59178527232413,0.583333333333333,36.738264700435,0.0221299145419819,0.14404432132964,14.404432132964,3,80.1037952256494,0.72433729682557,5.26315789473684,14.8406865596771,0,406.372547149658,405.767883300781,0.673377323973424
+6841,310074,3796598,310174,3796498,40,68,0,NA,NA,NA,NA,0.0145235346890457,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,46.9413310459682,33.2679138183594,407.388310750326,406.739044189453,0.460977398720109
+6842,310074,3796498,310174,3796398,41,68,4.43213296398892,0.0215952012838648,8.07741296427313,0.291666666666667,18.7329127343573,0.0214834930837977,0.0997229916897507,9.97229916897507,3,81.2405522930619,0.759333333333333,8.31024930747922,23.932046201494,15.5867252349854,407.418394088745,407.207824707031,0.202721155628488
+6843,310074,3796398,310174,3796298,42,68,8.15789473684211,0.0418407024874881,7.66700794735394,0.462301587301587,44.3910140906919,0.0361899659266974,0.226315789473684,22.6315789473684,3,86.2628593088653,0.805700057800898,13.9473684210526,16.2440178671549,0,406.996180216471,406.390808105469,0.722449853611849
+6844,310074,3796298,310174,3796198,43,68,33.7950138504155,0.164663409789469,16.9710277066114,0.706957547169811,15.5867256623399,0.0225921756260766,0.149584487534626,14.9584487534626,4,81.1300785130784,0.721831109243109,7.20221606648199,15.2458578833827,0,405.528928756714,403.405426025391,1.7193401443005
+6845,310074,3796198,310174,3796098,44,68,23.5457063711911,0.0458898027282127,8.51378738699986,0.34681592039801,19.7431857973974,0.017004266471921,0.0498614958448753,4.98614958448753,5,57.2764525105111,0.610193283662671,2.77008310249307,7.40377593040466,0,405.355173746745,404.163391113281,1.27534854589703
+6846,310074,3796098,310174,3795998,45,68,3.32409972299169,0.0323928019257972,8.80679364970203,0.541666666666667,NA,0.0104116046542379,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,17.8341438120062,10.3911504745483,403.8812084198,401.917816162109,1.9069410858967
+6847,310074,3795998,310174,3795898,46,68,0.789473684210526,0.00809820048144931,3.46371677921464,0.222222222222222,NA,0.0140992628843462,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,32.4381380081177,15.5867252349854,401.313786824544,400.311096191406,1.33660388859928
+6848,310074,3795898,310174,3795798,47,68,15.7894736842105,0.0512886030491789,6.94440079496859,0.362179487179487,15.4902123772429,0.0245692842364,0.146814404432133,14.6814404432133,5,81.1560510442672,0.742400456686171,11.0803324099723,37.9174937752058,0,399.54239654541,398.92724609375,0.916413157319127
+6849,310074,3795798,310174,3795698,48,68,16.6204986149584,0.0323928019257972,7.19080691228974,0.398459383753501,21.8214157506186,0.00744491049553796,0.10803324099723,10.803324099723,2,82.0214872731651,0.844768275203058,6.92520775623269,25.9968586701613,0,399.252377827962,398.881683349609,0.498836997642167
+6850,310074,3795698,310174,3795598,49,68,16.3434903047091,0.0530882031561677,9.44274534988689,0.53234126984127,39.9051277979227,0.00240098715748446,0.102493074792244,10.2493074792244,3,78.2802233791135,0.799079133778587,6.64819944598338,10.5089234661412,0,399.142158508301,399.014282226562,0.212350581574925
+6851,310074,3795598,310174,3795498,50,68,0,NA,NA,NA,NA,0.0182706068903683,0.0710526315789474,7.10526315789474,3,72.5370347406089,0.749654127412873,3.68421052631579,32.9575783764874,20.7823009490967,399.078005472819,398.961639404297,0.147634236926176
+6852,310074,3795498,310174,3795398,51,68,1.10803324099723,0.0107976006419324,3.67382645240837,0.416666666666667,NA,0.0216069159363141,0.0415512465373961,4.15512465373961,3,63.2501238896839,0.573173935890699,2.49307479224377,30.2264507293701,18.7329120635986,399.307382583618,399.167602539062,0.160623379167643
+6853,310074,3795398,310174,3795298,52,68,27.1468144044321,0.264541215727344,26.9771956506645,0.792517006802721,NA,0.0313687775855406,0.240997229916898,24.0997229916898,4,86.7281112848187,0.753496585825288,14.6814404432133,11.4079415661165,0,399.293579101562,398.927886962891,0.305323574126302
+6854,310074,3795298,310174,3795198,53,68,29.3628808864266,0.286136417011209,30.8499449119245,0.787735849056604,NA,0.042397492871989,0.32409972299169,32.409972299169,4,91.9460863316716,0.804593257036808,26.8698060941828,9.96379675009312,0,398.987306594849,398.727081298828,0.332807952523619
+6855,310074,3795198,310174,3795098,54,68,16.3157894736842,0.0557876033166508,11.4082797435963,0.599537037037037,19.416042096036,0.0328250020518393,0.25,25,3,92.4573288912888,0.835294117647059,23.6842105263158,12.2419204159787,0,399.075658798218,398.738952636719,0.362156040207134
+6856,310074,3795098,310174,3794998,55,68,39.612188365651,0.193007111474542,25.8083947058799,0.739877483938443,25.9778758441098,0.00849272547182263,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,3.46371682484945,0,399.077440897624,398.914672851562,0.224130996100698
+6857,310074,3794998,310174,3794898,56,68,26.0387811634349,0.253743615085412,29.3504047670801,0.773049645390071,NA,0.0229007753644704,0.0415512465373961,4.15512465373961,3,62.1900205974772,0.620599054125066,2.21606648199446,20.8385093053182,10.3911504745483,399.4007396698,398.899139404297,1.05191892612862
+6858,310074,3794898,310174,3794798,57,68,44.3213296398892,0.143968008559099,17.8047385294285,0.546296296296296,19.6125261510511,0.0326848397161764,0.224376731301939,22.4376731301939,5,85.6240436198923,0.722445436507936,15.7894736842105,4.38040022791168,0,402.213437398275,401.301483154297,1.49740132532437
+6859,310074,3794798,310174,3794698,58,68,0,NA,NA,NA,NA,0.0172205462406916,0.0868421052631579,8.68421052631579,7,60.588075936851,0.533568150282848,2.89473684210526,65.8859784675367,20.7823009490967,403.195713043213,403.029449462891,0.406120675074121
+6860,310074,3794698,310174,3794598,59,68,0,NA,NA,NA,NA,0.00561963228509314,0.0637119113573407,6.37119113573407,6,55.8476138768869,0.554980276134122,2.21606648199446,75.6328615934952,36.7382659912109,402.884012858073,402.841186523438,0.115904180679159
+6861,310074,3794598,310174,3794498,60,68,0.277008310249307,0.0026994001604831,0,0,NA,0.027073033950456,0.18005540166205,18.005540166205,3,87.3205458806001,0.773349677110739,15.2354570637119,41.5049841220562,14.6953058242798,403.03092956543,402.879943847656,0.223100325398953
+6862,310074,3794498,310174,3794398,61,68,0,NA,NA,NA,NA,0.0109268444975594,0.03601108033241,3.601108033241,4,50.4434778529335,0.48132183908046,1.66204986149584,31.8784835521991,10.3911504745483,403.441123962402,403.332580566406,0.216057930752607
+6863,310074,3794398,310174,3794298,62,68,9.73684210526316,0.0499389029689374,8.71456609232287,0.69047619047619,46.7601769870196,0.0216925924791691,0.0973684210526316,9.73684210526316,4,75.5913354176306,0.673087033408211,4.47368421052632,17.5774789372006,0,403.336832046509,402.937622070312,0.420828918733146
+6864,310074,3794298,310174,3794198,63,68,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0283220175991816,0.124653739612188,12.4653739612188,4,77.5652853230668,0.729430379746835,6.09418282548476,34.7155693478054,15.5867252349854,402.747271219889,402.593902587891,0.255816159169062
+6865,310074,3794198,310174,3794098,64,68,58.4487534626039,0.284786716930967,26.3948287292536,0.767794154698917,10.3911503376439,0.0333293388704731,0.18005540166205,18.005540166205,5,80.7020339378455,0.687006696962449,10.2493074792244,4.05941038131714,0,402.589069366455,402.479095458984,0.185065254103085
+6866,310074,3794098,310174,3793998,65,68,54.2936288088643,0.264541215727344,18.8450751579409,0.653147163120567,16.4298513045218,0.0331738562875561,0.157894736842105,15.7894736842105,8,73.8582975951588,0.636479591836735,6.64819944598338,9.41744443826508,0,402.862236022949,402.528015136719,0.692658175343204
+6867,310074,3793998,310174,3793898,66,68,16.5789473684211,0.170062210110435,19.4862635196703,0.753968253968254,NA,0.0282808698420061,0.126315789473684,12.6315789473684,6,75.1509552534965,0.65104319717896,6.8421052631579,16.7060648699601,0,404.418266296387,402.936248779297,1.54894815067315
+6868,310074,3793898,310174,3793798,67,68,6.37119113573407,0.0620862036911113,11.1300281342285,0.702898550724638,NA,0.0139027630906932,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,18.7329120635986,18.7329120635986,406.593495686849,405.847625732422,0.920447928107636
+6869,310074,3793798,310174,3793698,68,68,0,NA,NA,NA,NA,0.0112466996514012,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,28.3940048217773,15.5867252349854,407.252334594727,406.787384033203,0.382439648199167
+6870,310074,3793698,310174,3793598,69,68,0,NA,NA,NA,NA,0.0141427940680587,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,80.6990127563477,78.1066207885742,407.155649185181,406.490417480469,0.65175752967064
+6871,310074,3793598,310174,3793498,70,68,24.4736842105263,0.0836814049749762,11.3071343077676,0.651593901593902,13.171737803215,0.0126923653087081,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,14.6064561208089,10.3911504745483,407.559099833171,407.097320556641,0.64029852332011
+6872,310074,3793498,310174,3793398,71,68,1.10803324099723,0.0107976006419324,3.97663196826998,0.333333333333333,NA,0.0161250828546207,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,9.48265624046326,7.34765291213989,408.688270568848,407.901763916016,0.72334056142723
+6873,310074,3793398,310174,3793298,72,68,0,NA,NA,NA,NA,0.0108952803039703,0,0,0,NA,NA,0,NA,NA,409.312319437663,409.083251953125,0.291336836383947
+6874,310074,3793298,310174,3793198,73,68,17.1745152354571,0.0418407024874881,8.26931634936578,0.601112155388471,14.5944590259215,0.0169047571144799,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,35.0815300941467,11.6176595687866,408.885719299316,408.590728759766,0.435503012800253
+6875,310074,3793198,310174,3793098,74,68,7.63157894736842,0.0782826046540099,10.9089182546019,0.747126436781609,NA,0.0237644914166451,0.0578947368421053,5.78947368421053,3,70.4327594477921,0.750246467302005,3.42105263157895,32.0992025678808,5.19557523727417,408.216430664062,407.80615234375,0.458644031755204
+6876,310074,3793098,310174,3792998,75,68,21.606648199446,0.0421106425035364,7.64594292671022,0.341354166666667,13.9990990482272,0.0202595706505689,0.0554016620498615,5.54016620498615,2,78.3438965597409,0.829249834452748,5.26315789473684,4.21949307918549,0,407.53768157959,407.087829589844,0.463855089914044
+6877,310074,3792998,310174,3792898,76,68,11.0803324099723,0.053988003209662,16.3179146713962,0.481452455590387,42.8438108170318,0.0391185274337661,0.340720221606648,34.0720221606648,1,96.037931634066,0.809548931680296,34.0720221606648,24.1168081004445,0,407.820838928223,407.068115234375,1.04948590218923
+6878,310074,3792898,310174,3792798,77,68,16.0664819944598,0.0782826046540099,18.214275799381,0.408080808080808,15.5867255064659,0.0287666410547804,0.182825484764543,18.2825484764543,6,82.4151321360627,0.691407516580693,9.14127423822715,10.9077927632765,0,409.798067092896,408.660430908203,1.14889268791918
+6879,310074,3792798,310174,3792698,78,68,0.263157894736842,0.0026994001604831,0,0,NA,0.0245068175620729,0.126315789473684,12.6315789473684,5,77.2230444681253,0.623126652953277,5.78947368421053,29.9568039973577,0,410.444814046224,409.894714355469,0.573947244231671
+6880,310074,3792698,310174,3792598,79,68,0,NA,NA,NA,NA,0.022330149348435,0.0554016620498615,5.54016620498615,5,55.7177698168722,0.590199602686595,2.77008310249307,51.4811866760254,26.4923400878906,410.444372177124,410.076171875,0.448955998230208
+6881,310074,3792598,310174,3792498,80,68,6.37119113573407,0.0620862036911113,15.1871069286539,0.615942028985507,NA,0.0223598811088402,0.0886426592797784,8.86426592797784,4,79.7573870197493,0.746785129763853,7.75623268698061,18.731810092926,5.19557523727417,410.701047261556,410.319152832031,0.502795581129235
+6882,310074,3792498,310174,3792398,81,68,13.0193905817175,0.126871807542706,23.5353997456761,0.695035460992908,NA,0.0199229300516507,0.102493074792244,10.2493074792244,4,74.7581089475679,0.74428253390002,5.54016620498615,13.5990551226848,5.19557523727417,410.992412567139,410.812103271484,0.246067057742776
+6883,310074,3792398,310174,3792298,82,68,1.57894736842105,0.0161964009628986,7.79336275323294,0.277777777777778,NA,0.0236615049244153,0.152631578947368,15.2631578947368,4,86.7229729572713,0.763975155279503,13.4210526315789,18.7462780475616,5.19557523727417,410.677734375,410.072174072266,0.517826574323187
+6884,310074,3792298,310174,3792198,83,68,15.2354570637119,0.0742335044132853,10.0244495918338,0.481303418803419,46.7601769870196,0.0213565314574064,0.0831024930747922,8.31024930747922,3,80.4009593313478,0.710648005425735,7.20221606648199,8.2236869653066,0,408.954465866089,406.747528076172,1.88847326505601
+6885,310074,3792198,310174,3792098,84,68,36.5650969529086,0.118773607061256,15.5257135343538,0.370466155810983,17.3185839653505,0.0299828817766672,0.0858725761772853,8.58725761772853,4,70.4419151321845,0.715575757575758,4.15512465373961,10.1253737634228,0,405.213748931885,404.067199707031,1.17733777615512
+6886,310074,3792098,310174,3791998,85,68,14.6814404432133,0.0476894028352015,11.6468810227044,0.512169312169312,61.2396903054273,0.0373063191866115,0.166204986149584,16.6204986149584,5,81.3849710027561,0.688634040378227,9.97229916897507,17.3906037251155,0,405.082626342773,404.888336181641,0.412327502577025
+6887,310074,3791998,310174,3791898,86,68,16.5789473684211,0.0850311050552177,12.7273465936739,0.364247311827957,21.4219054085159,0.0359114404158103,0.205263157894737,20.5263157894737,8,77.0135420572138,0.598809866589884,8.1578947368421,15.4777036079994,0,405.408720016479,405.194763183594,0.263854984241292
+6888,310074,3791898,310174,3791798,87,68,16.8975069252078,0.0823317048947346,14.4403959140775,0.468869731800766,25.9778761038998,0.0383838026291288,0.254847645429363,25.4847645429363,7,81.1842391513875,0.574485447456705,9.41828254847645,19.833377506422,0,405.697191874186,405.446807861328,0.316298585533901
+6889,310074,3791798,310174,3791698,88,68,19.6675900277008,0.03833148227886,7.63307440491584,0.480468253968254,16.5815923314209,0.0425368175284622,0.354570637119114,35.4570637119114,5,89.8107673171797,0.753964891598666,25.4847645429363,10.5873262882233,0,405.698596954346,405.495971679688,0.286596905005261
+6890,310074,3791698,310174,3791598,89,68,13.0193905817175,0.0253743615085412,5.65574014663463,0.364444444444444,25.0773015551839,0.0234065421490441,0.0941828254847645,9.41828254847645,5,69.0892288652611,0.684578418523373,4.15512465373961,14.82649009368,0,405.98885345459,405.608184814453,0.547041124640582
+6891,310074,3791598,310174,3791498,90,68,32.6315789473684,0.0836814049749762,13.6985527258589,0.595858134920635,16.8856194155769,0.0272013847506299,0.115789473684211,11.5789473684211,4,80.668829665336,0.709620334620335,7.89473684210526,10.4114287874915,0,407.035739898682,406.174530029297,0.64212746976341
+6892,310074,3791498,310174,3791398,91,68,33.5180055401662,0.108875806472818,11.7628645042718,0.487599206349206,17.3185839653505,0.0322667683573509,0.193905817174515,19.3905817174515,5,85.0009045845511,0.677255329254324,14.404432132964,8.75664886065892,0,407.624750773112,407.291687011719,0.314027513755547
+6893,310074,3791398,310174,3791298,92,68,24.0997229916898,0.0782826046540099,14.1362611950993,0.635181176847843,18.1362565262654,0.0385153124234144,0.301939058171745,30.1939058171745,4,88.0555667294143,0.789118523890098,14.6814404432133,11.1977244429632,0,407.89079284668,407.758850097656,0.205097606876006
+6894,310074,3791298,310174,3791198,93,68,23.8227146814404,0.0773828046005156,13.0886566616495,0.654402209226771,20.7823007445652,0.026631329580563,0.10803324099723,10.803324099723,5,72.6452613107311,0.689536550406116,5.54016620498615,10.3445610021934,0,408.136377970378,407.946655273438,0.250652267518886
+6895,310074,3791198,310174,3791098,94,68,50.7894736842105,0.173661410324413,13.6723962624571,0.511457085828343,16.7243040981849,0.0185718021922137,0.0447368421052632,4.47368421052632,7,44.5695663021802,0.45564738292011,1.84210526315789,4.86777928296257,0,408.185976028442,407.968231201172,0.217288626292691
+6896,310074,3791098,310174,3790998,95,68,38.5041551246537,0.187608311153576,19.725789442128,0.793681318681319,26.4923391803511,0.025516486929763,0.135734072022161,13.5734072022161,6,72.3508509081911,0.669413919413919,5.26315789473684,3.73821094084759,0,408.110455830892,407.974639892578,0.188394390393859
+6897,310074,3790998,310174,3790898,96,68,61.7728531855956,0.300983117893866,28.7346579742406,0.805280241117487,25.9778758441098,0.0508303286487087,0.57617728531856,57.617728531856,2,96.2604405137829,0.640286433264089,45.983379501385,1.44180583036863,0,408.149286270142,407.951263427734,0.236959742144861
+6898,310074,3790898,310174,3790798,97,68,92.2437673130194,0.898900253440873,37.9752615947896,0.88988988988989,NA,0.0701515829329923,0.939058171745152,93.9058171745152,1,99.8225647304012,0.6160119132038,93.9058171745152,0.411177320114631,0,408.043172200521,407.945007324219,0.193063322243726
+6899,310074,3790798,310174,3790698,98,68,98.6842105263158,1.01227506018116,38.5890954889362,0.930666666666667,NA,0.0689289773079125,0.918421052631579,91.8421052631579,1,99.7649570350094,0.517106549364614,91.8421052631579,0.0744351753191142,0,408.067232131958,407.86328125,0.184881363929156
+6900,310074,3790698,310174,3790598,99,68,75.0692520775623,0.731537443490921,35.153336638251,0.873923739237392,NA,0.0792135607876014,0.950292397660819,95.0292397660819,1,99.8523973023126,0.638998176758469,95.0292397660819,1.61233746161828,0,408.345642089844,408.136505126953,0.244724747429996
+6901,310174,3800598,310274,3800498,0,69,28.5318559556787,0.27803821652976,30.7819547817164,0.736245954692557,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.718439737956,386.922027587891,0.436595528182042
+6902,310174,3800498,310274,3800398,1,69,16.8421052631579,0.0863808051354593,17.5268671336868,0.53125,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.77397664388,387.472747802734,0.304357564168302
+6903,310174,3800398,310274,3800298,2,69,33.7950138504155,0.109775606526313,12.9043322999578,0.461959039940691,12.1230087965286,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.513387044271,387.334136962891,0.303560103657301
+6904,310174,3800298,310274,3800198,3,69,12.1883656509695,0.118773607061256,24.2359609275608,0.643939393939394,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.526458740234,387.347412109375,0.236772585426527
+6905,310174,3800198,310274,3800098,4,69,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.824495951335,387.541320800781,0.303868617221505
+6906,310174,3800098,310274,3799998,5,69,3.42105263157895,0.0175461010431402,6.08953317506585,0.404166666666667,51.9557522077996,0.00786103490080629,0,0,0,NA,NA,0,NA,NA,388.613620334201,387.916229248047,0.707646097323471
+6907,310174,3799998,310274,3799898,6,69,29.9168975069252,0.0485892028886958,9.84030876416782,0.456620118303421,15.2451608496441,0.00860509579560026,0.0692520775623269,6.92520775623269,2,75.9275584268635,0.758258928571429,3.8781163434903,11.5022694015503,5.19557523727417,389.353200276693,389.117797851562,0.276584152628119
+6908,310174,3799898,310274,3799798,7,69,35.7340720221607,0.069644524140464,12.3675271893985,0.412299909665763,16.6258406441463,0.0164246127343804,0.113573407202216,11.3573407202216,4,80.2471791338748,0.738405797101449,8.58725761772853,10.5131182321688,0,389.732794867622,389.625183105469,0.235986159894441
+6909,310174,3799798,310274,3799698,8,69,47.6454293628809,0.232148413801547,18.7399396263128,0.443627450980392,15.5867256623399,0.00494767250776951,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,6.27161407470703,5.19557523727417,390.173296610514,389.884979248047,0.282001815569472
+6910,310174,3799698,310274,3799598,9,69,2.36842105263158,0.012147300722174,5.71513268570416,0.258333333333333,77.9336283116994,0.0217999564894638,0.147368421052632,14.7368421052632,3,87.7527408974341,0.782359679266896,13.1578947368421,42.0411655732564,11.6176595687866,390.371965196398,390.296752929688,0.0524673788944262
+6911,310174,3799598,310274,3799498,10,69,5.54016620498615,0.053988003209662,10.6217419993958,0.666666666666667,NA,0.00634737952846219,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.5706275304159,14.6953058242798,390.449506123861,390.379852294922,0.0929298070756594
+6912,310174,3799498,310274,3799398,11,69,20.2216066481994,0.197056211715266,25.8779191148124,0.778538812785388,NA,-0.0150876289183057,0,0,0,NA,NA,0,NA,NA,390.845792134603,390.588806152344,0.272403668628075
+6913,310174,3799398,310274,3799298,12,69,5.54016620498615,0.0179960010698873,4.16242196679265,0.264705882352941,25.0967279361364,-0.00719359871797384,0,0,0,NA,NA,0,NA,NA,391.174997965495,391.087463378906,0.135927610920807
+6914,310174,3799298,310274,3799198,13,69,15.7894736842105,0.0809820048144931,17.985247201872,0.483974358974359,15.5867256623399,0.0188059057370226,0.178947368421053,17.8947368421053,3,83.9104656113945,0.744128420599009,8.94736842105263,15.6452193330316,0,391.241877237956,391.140960693359,0.114631653046173
+6915,310174,3799198,310274,3799098,14,69,22.1606648199446,0.0719840042795494,10.7481731426075,0.535087719298246,38.1008847445544,0.00448336041505812,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,30.2951488494873,30.2951488494873,391.241068522135,391.211730957031,0.0472832968645577
+6916,310174,3799098,310274,3798998,15,69,36.01108033241,0.116974006954268,15.3995521958475,0.650510204081633,22.5141591341725,-0.0714636683334091,0,0,0,NA,NA,0,NA,NA,391.24028523763,391.150665283203,0.162687176697074
+6917,310174,3798998,310274,3798898,16,69,69.2520775623269,0.674850040120775,34.4273803203932,0.845333333333333,NA,-0.175936091649978,0,0,0,NA,NA,0,NA,NA,391.461269802517,391.201934814453,0.546649094250111
+6918,310174,3798898,310274,3798798,17,69,41.0526315789474,0.140368808345121,11.2512304739791,0.398086828550405,16.6354545824297,-0.0185431779564456,0.176315789473684,17.6315789473684,2,89.9918155961949,0.896234401026733,16.5789473684211,20.808456541887,5.19557523727417,392.62442779541,391.943206787109,0.641511174246692
+6919,310174,3798798,310274,3798698,18,69,2.49307479224377,0.0242946014443479,6.08615409468026,0.555555555555556,NA,0.01664820156424,0.105263157894737,10.5263157894737,2,84.7739328659604,0.875816993464052,9.69529085872576,35.1729285842494,14.6953058242798,393.344902886285,393.142761230469,0.372089908775064
+6920,310174,3798698,310274,3798598,19,69,13.2963988919668,0.0431904025677296,6.74327497833178,0.394246031746032,22.5141590648952,0.0136963708052092,0.0304709141274238,3.04709141274238,2,62.6985064770805,0.656190476190476,2.21606648199446,4.72325021570379,0,393.945559183757,393.595031738281,0.284305258747816
+6921,310174,3798598,310274,3798498,20,69,10.5263157894737,0.102577206098358,14.7575186025781,0.75,NA,0.0402211173174069,0.321329639889197,32.1329639889197,4,87.3467088219803,0.782487852283771,16.3434903047091,22.6434588514525,0,393.953921847873,393.886932373047,0.135101390236719
+6922,310174,3798498,310274,3798398,21,69,2.36842105263158,0.0242946014443479,10.6478048594554,0.333333333333333,NA,0.0281352268766281,0.221052631578947,22.1052631578947,4,86.5277390139107,0.810448031924542,15,47.2262866383507,18.7329120635986,393.780570983887,393.644775390625,0.176695161301329
+6923,310174,3798398,310274,3798298,22,69,10.5263157894737,0.0512886030491789,7.93838243239331,0.465277777777778,72.7380523635074,0.0323364907134598,0.279778393351801,27.9778393351801,3,90.804655245214,0.861920951976201,21.606648199446,42.2478465136915,7.34765291213989,393.687974717882,393.622894287109,0.144952009752716
+6924,310174,3798298,310274,3798198,23,69,11.0803324099723,0.026994001604831,6.81892719991959,0.455808080808081,17.920436709312,0.0449618969152824,0.340720221606648,34.0720221606648,4,87.6909349528476,0.795945283943174,16.3434903047091,27.0835979585725,0,393.917399088542,393.689056396484,0.242973793309243
+6925,310174,3798198,310274,3798098,24,69,22.7146814404432,0.0737836043865381,10.4612116958444,0.719680464778504,31.9428297629315,0.0010893646199028,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,14.7457371817695,10.3911504745483,394.648474799262,394.220916748047,0.717569211689207
+6926,310174,3798098,310274,3797998,25,69,55.5263157894737,0.189857811287311,17.5157738859862,0.59339320523531,16.7243040981849,-0.0154602869493063,0,0,0,NA,NA,0,NA,NA,395.666839599609,395.279693603516,0.445098116987192
+6927,310174,3797998,310274,3797898,26,69,86.7036011080332,0.281637416743737,19.2710097441046,0.67758650222679,10.3911503722826,-0.0540307006720322,0,0,0,NA,NA,0,NA,NA,395.977475484212,395.712860107422,0.407392839644074
+6928,310174,3797898,310274,3797798,27,69,6.09418282548476,0.0296934017653141,11.019113155318,0.308333333333333,39.5683217016104,0.0107832336308141,0,0,0,NA,NA,0,NA,NA,396.411041259766,396.043701171875,0.499716692010706
+6929,310174,3797798,310274,3797698,28,69,5.54016620498615,0.026994001604831,8.71499046200385,0.411111111111111,47.9008362727036,0.00655512628913422,0,0,0,NA,NA,0,NA,NA,396.953458150228,396.661376953125,0.319985155021503
+6930,310174,3797698,310274,3797598,29,69,25,0.0641107538114737,14.0708317768893,0.483137882018479,17.7388032424607,0.010841271480594,0.0263157894736842,2.63157894736842,4,43.4269568853775,0.525987525987526,1.31578947368421,18.7779181957245,5.19557523727417,397.508273654514,397.268432617188,0.345670444726552
+6931,310174,3797598,310274,3797498,30,69,26.3157894736842,0.0512886030491789,8.35816058539702,0.410222222222222,13.7537972419365,0.0121542152899419,0.0415512465373961,4.15512465373961,1,78.3012283044663,0.952574881765633,4.15512465373961,9.05169204076131,0,397.909327189128,397.651885986328,0.368623861580241
+6932,310174,3797498,310274,3797398,31,69,3.32409972299169,0.0161964009628986,5.70350808094002,0.375,20.7823008831198,0.00111544446851825,0,0,0,NA,NA,0,NA,NA,398.354814317491,398.072326660156,0.41394829005994
+6933,310174,3797398,310274,3797298,32,69,11.0803324099723,0.053988003209662,13.7388340904984,0.534340659340659,14.6953058096335,0.00526157046256747,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,17.7388033866882,14.6953058242798,399.0056737264,398.502471923828,0.714649190494992
+6934,310174,3797298,310274,3797198,33,69,0,NA,NA,NA,NA,0.0239254180524624,0.0631578947368421,6.31578947368421,1,83.8911085416129,0.887640449438202,6.31578947368421,43.9270589351654,29.3906116485596,399.958648681641,399.461364746094,0.96253339668053
+6935,310174,3797198,310274,3797098,34,69,19.9445983379501,0.0971784057773917,14.5856004338697,0.68040383978815,15.5867256623399,0.0113456302981294,0.07202216066482,7.20221606648199,2,78.0783870961327,0.789734255551511,5.81717451523546,34.264234487827,7.34765291213989,401.936045328776,400.853729248047,1.28662035736816
+6936,310174,3797098,310274,3796998,35,69,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.0119306807225617,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,9.8839008808136,7.34765291213989,403.844807942708,403.298980712891,0.795419486525721
+6937,310174,3796998,310274,3796898,36,69,14.6814404432133,0.0715341042528022,11.0337359596148,0.638888888888889,16.4298514359663,0.0136955501087531,0.0803324099722992,8.03324099722992,3,71.6894239910379,0.699243783645219,3.32409972299169,22.9887340973163,0,404.542956034342,404.363250732422,0.357375174900305
+6938,310174,3796898,310274,3796798,37,69,0,NA,NA,NA,NA,0.00996123735201668,0.0315789473684211,3.15789473684211,2,69.7993702740724,0.635549872122762,2.89473684210526,34.4624622662862,29.3906116485596,405.125430636936,404.707641601562,0.644275635763629
+6939,310174,3796798,310274,3796698,38,69,3.04709141274238,0.0148467008826571,4.59254026908628,0.342592592592593,80.6570173213972,0.0221959916856264,0.135734072022161,13.5734072022161,4,81.3619370012461,0.80715811965812,10.803324099723,23.7876495147238,0,405.991986592611,405.325531005859,0.751025647395696
+6940,310174,3796698,310274,3796598,39,69,54.8476454293629,0.534481231775654,30.2171432558727,0.882154882154882,NA,0.0128695586367499,0.149584487534626,14.9584487534626,3,84.7962862523831,0.835627473643655,12.4653739612188,13.1388200653924,0,406.522425333659,405.874542236328,0.553319264962511
+6941,310174,3796598,310274,3796498,40,69,0,NA,NA,NA,NA,0.0236981846797673,0.0997229916897507,9.97229916897507,4,82.3993940801301,0.777846153846154,9.14127423822715,28.0823038021723,7.34765291213989,407.185716417101,406.848480224609,0.419894174112776
+6942,310174,3796498,310274,3796398,41,69,0,NA,NA,NA,NA,0.0203822588100139,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,51.0914938790458,36.369026184082,407.359113057454,407.170104980469,0.241728896125742
+6943,310174,3796398,310274,3796298,42,69,27.8947368421053,0.0572272834022418,7.82434455305131,0.35754424375114,13.6364163685609,0.0212066197112252,0.0631578947368421,6.31578947368421,8,48.4579032003337,0.438202247191011,1.57894736842105,11.8188682198524,0,407.289086235894,407.146942138672,0.268912545121768
+6944,310174,3796298,310274,3796198,43,69,38.781163434903,0.125972007489211,13.9739312367199,0.500434027777778,13.9894104334072,0.0233061237041735,0.0914127423822715,9.14127423822715,6,63.9813154380406,0.592366757000903,3.04709141274238,6.80045463099624,0,406.720858256022,406.324310302734,0.441019393210286
+6945,310174,3796198,310274,3796098,44,69,40.4432132963989,0.0788224846861066,12.3893104453208,0.530020964360587,16.2159630143938,0.0168373799294142,0.038781163434903,3.8781163434903,3,60.5372063498304,0.635878962536023,2.49307479224377,5.21951018060957,0,406.025838216146,405.512878417969,0.595036704974741
+6946,310174,3796098,310274,3795998,45,69,9.97229916897507,0.0485892028886958,11.8401289959069,0.479064039408867,36.3690265454597,0.0155935339509567,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,11.4972834587097,5.19557523727417,404.518216451009,403.401947021484,1.22753145661614
+6947,310174,3795998,310274,3795898,46,69,25.5263157894737,0.13092090778343,14.8903954691881,0.726307189542484,51.1704814635886,0.0113884969601235,0.0789473684210526,7.89473684210526,1,86.162631131474,0.822740524781341,7.89473684210526,20.4946610927582,7.34765291213989,402.195339626736,401.539642333984,1.20385186269006
+6948,310174,3795898,310274,3795798,47,69,56.5096952908587,0.183559210912851,21.1016889565403,0.722685185185185,13.1717378724924,0.0154324235870094,0.0609418282548476,6.09418282548476,5,62.6170398310695,0.592833593614437,3.601108033241,7.96216630935669,0,400.806409200033,400.277801513672,0.700104417598988
+6949,310174,3795798,310274,3795698,48,69,18.8365650969529,0.0917796054564255,12.0029038899529,0.455808080808081,15.5867256623399,0.0317844351349847,0.218836565096953,21.8836565096953,5,80.7498216632912,0.743971631205674,11.6343490304709,18.1651712912547,5.19557523727417,400.115220811632,399.744140625,0.584826226240188
+6950,310174,3795698,310274,3795598,49,69,18.2825484764543,0.0890802052959424,13.2328398989812,0.468253968253968,10.3911504415599,0.0276726507841972,0.263157894736842,26.3157894736842,5,87.8647353995559,0.74453781512605,17.7285318559557,28.2516303213019,0,399.388397216797,399.155548095703,0.375254424345
+6951,310174,3795598,310274,3795498,50,69,14.2105263157895,0.145767608666088,22.907561513382,0.660493827160494,NA,0.0184194887198636,0.118421052631579,11.8421052631579,3,82.3198311617321,0.805970149253731,9.21052631578947,40.3446784125434,5.19557523727417,399.153917100694,399.107971191406,0.104175050193912
+6952,310174,3795498,310274,3795398,51,69,9.41828254847645,0.0458898027282127,9.2125643702043,0.631944444444444,41.5646013505757,0.0207019067259597,0.160664819944598,16.0664819944598,3,83.5955262813936,0.797458745874587,11.3573407202216,22.4621180008198,5.19557523727417,399.408164978027,399.274505615234,0.149775715003491
+6953,310174,3795398,310274,3795298,52,69,23.5457063711911,0.0764830045470212,12.6741204647758,0.662099358974359,20.9955021900222,0.0301740018455053,0.229916897506925,22.9916897506925,5,81.452143568054,0.717320021533793,8.03324099722992,10.346276685416,0,399.573822021484,399.453460693359,0.117136162475891
+6954,310174,3795298,310274,3795198,53,69,2.21606648199446,0.0107976006419324,5.4074698837864,0.208333333333333,15.5867255064659,0.0431225226508064,0.379501385041551,37.9501385041551,3,91.1716681450421,0.767928571428571,19.1135734072022,38.0185143547337,5.19557523727417,399.543617248535,399.310852050781,0.291801845135797
+6955,310174,3795198,310274,3795098,54,69,2.89473684210526,0.0296934017653141,7.19677289189068,0.575757575757576,NA,0.0306042762478778,0.281578947368421,28.1578947368421,4,85.8495200965082,0.798060316195031,10,47.29249413214,0,399.614191691081,399.426910400391,0.223486863771286
+6956,310174,3795098,310274,3794998,55,69,34.6260387811634,0.168712510030194,23.053674044529,0.761471861471861,31.1734510129318,0.00925303005161491,0.0470914127423823,4.70914127423823,2,72.6287363746868,0.748139534883721,3.8781163434903,1.52811036390417,0,399.372907850477,399.265716552734,0.173539637444149
+6957,310174,3794998,310274,3794898,56,69,23.2686980609418,0.0453499226961161,6.66039630478447,0.375653594771242,12.4693804883055,0.0286041894703336,0.10803324099723,10.803324099723,7,65.4523807640746,0.534304825609173,3.8781163434903,11.3853492247753,0,399.725814819336,399.284637451172,0.563050840028713
+6958,310174,3794898,310274,3794798,57,69,44.8753462603878,0.218651412999131,25.6851044980155,0.77023362536504,25.9778758441098,0.0280771497607406,0.177285318559557,17.7285318559557,3,83.1900346159255,0.77209595959596,7.75623268698061,8.99001627415419,0,401.21886867947,400.498321533203,1.50665055440716
+6959,310174,3794798,310274,3794698,58,69,0,NA,NA,NA,NA,0.0208340249262906,0.160526315789474,16.0526315789474,4,79.8691290639106,0.651623587863015,7.10526315789474,52.4117389116131,20.7823009490967,402.908381144206,402.773986816406,0.403794972725833
+6960,310174,3794698,310274,3794598,59,69,0,NA,NA,NA,NA,0.0189531397223124,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,47.5024013519287,20.7823009490967,402.846998426649,402.832580566406,0.0797732744500038
+6961,310174,3794598,310274,3794498,60,69,14.9584487534626,0.0485892028886958,11.3759557004724,0.392047085845535,21.628923051144,0.0152933607715364,0.0415512465373961,4.15512465373961,2,72.5144666979006,0.620599054125066,3.601108033241,14.9793755849202,10.3911504745483,403.159955342611,402.901336669922,0.301466750561463
+6962,310174,3794498,310274,3794398,61,69,20.7756232686981,0.0404910024072465,9.52655579246155,0.494534948482317,18.9562022155915,0.00779740014702869,0.0138504155124654,1.38504155124654,2,43.9814814814815,0.59438202247191,1.10803324099723,14.6186777114868,11.6176595687866,403.26905992296,403.087738037109,0.268103304594578
+6963,310174,3794398,310274,3794298,62,69,22.3684210526316,0.114724506820532,21.0023484380612,0.69017094017094,20.7823008831198,0.0279239873041852,0.147368421052632,14.7368421052632,4,80.5428287143966,0.758177421407662,7.63157894736842,14.2381713645799,0,402.95263671875,402.757141113281,0.213999359496149
+6964,310174,3794298,310274,3794198,63,69,6.92520775623269,0.0674850040120775,12.9409962282803,0.606666666666667,NA,0.0240716542713241,0.0138504155124654,1.38504155124654,3,30.5175668106036,0.18876404494382,0.831024930747922,15.959233379364,7.34765291213989,402.662238226997,402.593475341797,0.141802578209681
+6965,310174,3794198,310274,3794098,64,69,9.41828254847645,0.0458898027282127,8.09948519385537,0.340909090909091,41.8880662648159,0.0261437263597097,0.135734072022161,13.5734072022161,3,84.8013125911394,0.71073717948718,10.5263157894737,32.2422746736176,0,402.698369344076,402.569549560547,0.262515923747998
+6966,310174,3794098,310274,3793998,65,69,16.0664819944598,0.15656520930802,26.1038666043043,0.724137931034483,NA,0.0167925725329843,0.0470914127423823,4.70914127423823,4,63.451503058861,0.622209302325581,3.32409972299169,13.1476281390471,5.19557523727417,403.697475857205,403.047485351562,1.0863195850901
+6967,310174,3793998,310274,3793898,66,69,7.36842105263158,0.0377916022467634,8.33858681174613,0.620512820512821,46.7601765193976,0.0162541399303193,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,16.9164962768555,15.5867252349854,405.738126118978,404.623474121094,0.898544852426149
+6968,310174,3793898,310274,3793798,67,69,12.7423822714681,0.124172407382223,24.2509949725508,0.648550724637681,NA,0.0173054802034939,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,7.79336261749268,0,406.508494059245,406.086578369141,0.52698658663525
+6969,310174,3793798,310274,3793698,68,69,37.6731301939058,0.183559210912851,22.4883542489205,0.760909822866345,34.8529780579234,0.0111317593358589,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483,406.150093078613,405.185424804688,1.07175362410317
+6970,310174,3793698,310274,3793598,69,69,22.9916897506925,0.0560125533300244,10.9446349414312,0.525061539767422,17.7388033463767,0.0084622442284191,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,25.977876663208,25.977876663208,405.133715311686,404.27587890625,1.31497068181832
+6971,310174,3793598,310274,3793498,70,69,11.8421052631579,0.12147300722174,18.5056371959839,0.625925925925926,NA,0.0108477161834918,0,0,0,NA,NA,0,NA,NA,405.758968777127,404.236572265625,2.20271210975878
+6972,310174,3793498,310274,3793398,71,69,18.2825484764543,0.178160410591885,27.3397846276142,0.737373737373737,NA,0.0161589714295796,0.0304709141274238,3.04709141274238,3,55.5628746600349,0.587428571428571,1.93905817174515,12.648520079526,7.34765291213989,408.034357706706,406.544036865234,1.32664982656136
+6973,310174,3793398,310274,3793298,72,69,4.98614958448753,0.0242946014443479,4.21972372289889,0.333333333333333,67.7420122779756,0.0196846855219154,0.0443213296398892,4.43213296398892,4,53.6979759799493,0.607608695652174,1.38504155124654,37.1131483912468,10.3911504745483,408.99370320638,408.544097900391,0.648762232339701
+6974,310174,3793298,310274,3793198,73,69,10.5263157894737,0.102577206098358,25.2144589695822,0.609649122807018,NA,0.0156801139353452,0.0332409972299169,3.32409972299169,4,55.4379049128186,0.452384965447497,2.21606648199446,18.2322923342387,10.3911504745483,409.422955830892,409.031402587891,0.539507851736927
+6975,310174,3793198,310274,3793098,74,69,10.5263157894737,0.107976006419324,15.9741941430112,0.745833333333333,NA,0.020203515573054,0.0263157894736842,2.63157894736842,3,51.94636493986,0.525987525987526,1.57894736842105,22.7668689727783,10.3911504745483,408.275594075521,407.777557373047,0.953206604757653
+6976,310174,3793098,310274,3792998,75,69,13.8504155124654,0.0337425020060388,6.62960685450672,0.236742424242424,11.0044048451425,0.0146778380343036,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,6.63029368718465,5.19557523727417,406.961672465007,406.561553955078,0.69201662665309
+6977,310174,3792998,310274,3792898,76,69,2.21606648199446,0.0215952012838648,7.39317147950795,0.416666666666667,NA,0.0192901355859297,0.0470914127423823,4.70914127423823,2,69.8033515309564,0.87406976744186,3.32409972299169,33.6647057252772,16.4298515319824,408.72504679362,406.752838134766,2.4809210851906
+6978,310174,3792898,310274,3792798,77,69,13.0193905817175,0.126871807542706,21.0240675521613,0.677304964539007,NA,0.0173106396171551,0.0664819944598338,6.64819944598338,4,65.9348988280081,0.661721068249258,2.77008310249307,9.89728353420893,0,410.488652547201,409.504028320312,0.831163910523431
+6979,310174,3792798,310274,3792698,78,69,10.7894736842105,0.0221350813159614,6.089004518009,0.398194444444444,21.8214158462213,0.0224881681764792,0.0947368421052632,9.47368421052632,8,62.7244157203855,0.576550387596899,3.42105263157895,13.569189813402,5.19557523727417,411.084693060981,410.733825683594,0.469546904367781
+6980,310174,3792698,310274,3792598,79,69,26.3157894736842,0.256443015245895,21.8226666070782,0.829824561403509,NA,0.0196694842066448,0.18005540166205,18.005540166205,3,85.3076218687408,0.816521167184884,11.6343490304709,12.1675237875718,0,409.522555033366,408.385345458984,1.28952654978443
+6981,310174,3792598,310274,3792498,80,69,13.8504155124654,0.0674850040120775,11.8788998397166,0.675636574074074,27.9790285905554,0.0179981239810752,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0,409.479410807292,408.408386230469,1.34110079487636
+6982,310174,3792498,310274,3792398,81,69,1.10803324099723,0.0107976006419324,3.67382645240838,0.416666666666667,NA,0.0173844021959556,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,17.5813817977905,16.4298515319824,411.039985656738,410.525756835938,0.476614474109861
+6983,310174,3792398,310274,3792298,82,69,0,NA,NA,NA,NA,0.0249895636003394,0.0342105263157895,3.42105263157895,5,42.7390710592922,0.482288828337875,1.31578947368421,50.9066731379582,20.7823009490967,411.136491563585,410.968444824219,0.278470929882545
+6984,310174,3792298,310274,3792198,83,69,19.1135734072022,0.186258611073334,25.2388008467362,0.758454106280193,NA,0.0215897778984969,0.0166204986149584,1.66204986149584,2,44.6130271410951,0.564185110663984,0.831024930747922,33.5185639063517,25.977876663208,409.882011413574,407.099395751953,1.96351627213911
+6985,310174,3792198,310274,3792098,84,69,32.1329639889197,0.31313041861604,28.1780711498306,0.75,NA,0.0255049230647596,0.038781163434903,3.8781163434903,1,77.3446466870219,0.947982708933717,3.8781163434903,5.56668775422232,0,405.461659749349,404.136840820312,1.46387910852474
+6986,310174,3792098,310274,3791998,85,69,21.8836565096953,0.071084204226055,13.6827888072504,0.563513115237253,34.7449896058355,0.0255695448457616,0.0664819944598338,6.64819944598338,3,77.5404739639103,0.830860534124629,6.09418282548476,8.72461275259654,0,405.047003851997,404.927917480469,0.235352642823365
+6987,310174,3791998,310274,3791898,86,69,9.21052631578947,0.0472395028084543,9.47550465615378,0.627723311546841,91.9191084354244,0.0255607283040789,0.0973684210526316,9.73684210526316,4,74.420180126884,0.654925201930889,4.73684210526316,22.4969609234784,0,405.187967936198,405.070648193359,0.139333219111504
+6988,310174,3791898,310274,3791798,87,69,9.14127423822715,0.0890802052959424,11.6848400692129,0.762626262626263,NA,0.0291172558175067,0.18005540166205,18.005540166205,5,77.8569866289642,0.751763932073667,6.09418282548476,38.8420277742239,0,405.305901421441,405.220153808594,0.141040335964482
+6989,310174,3791798,310274,3791698,88,69,15.7894736842105,0.153865809147537,17.6015099043939,0.774853801169591,NA,0.0409294096612722,0.293628808864266,29.3628808864266,5,86.2380683092071,0.792464839338877,15.2354570637119,17.5980233921195,0,405.368977864583,405.287292480469,0.129044644996848
+6990,310174,3791698,310274,3791598,89,69,0,NA,NA,NA,NA,0.0237741188864176,0.0941828254847645,9.41828254847645,2,82.022533374866,0.822575360419397,8.03324099722992,22.8338553484748,10.3911504745483,405.543616400825,405.425720214844,0.249439544167993
+6991,310174,3791598,310274,3791498,90,69,0,NA,NA,NA,NA,0.0351883490408741,0.184210526315789,18.4210526315789,2,90.8952715197915,0.890375032782586,17.6315789473684,93.0517909458705,46.7601776123047,406.214912414551,405.618041992188,0.71568778448406
+6992,310174,3791498,310274,3791398,91,69,0,NA,NA,NA,NA,0.0286138867311195,0.0554016620498615,5.54016620498615,3,74.2021520204864,0.658499668905496,4.70914127423823,100.705074501038,39.5683212280273,407.129126654731,406.456939697266,0.676783887891562
+6993,310174,3791398,310274,3791298,92,69,0,NA,NA,NA,NA,0.0294391084962853,0.238227146814404,23.8227146814404,3,89.4589420053503,0.828401663695781,18.5595567867036,81.2876020475876,32.8597030639648,407.536117553711,407.16845703125,0.460502840204871
+6994,310174,3791298,310274,3791198,93,69,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0314422494695887,0.196675900277008,19.6675900277008,3,83.7561804416342,0.770951724137931,7.4792243767313,41.5457447078866,10.3911504745483,407.391004774306,407.004852294922,0.710773169090754
+6995,310174,3791198,310274,3791098,94,69,16.0526315789474,0.0823317048947346,12.8889774517644,0.669512195121951,11.6176593526411,0.0268289194165654,0.147368421052632,14.7368421052632,6,78.518360882996,0.721904034618811,9.47368421052632,9.71116687570299,0,407.293963114421,406.730041503906,0.914357974369473
+6996,310174,3791098,310274,3790998,95,69,25.7617728531856,0.125522107462464,15.3490323078158,0.683210784313725,25.9778758441098,0.0467531441440329,0.421052631578947,42.1052631578947,4,89.7576557797302,0.795698924731183,25.207756232687,9.9586844193308,0,407.761789957682,406.844512939453,0.835196262569207
+6997,310174,3790998,310274,3790898,96,69,23.2686980609418,0.0453499226961161,8.76765472593777,0.470787545787546,13.9990990170524,0.0679716824586074,0.6398891966759,63.98891966759,2,96.5515460754235,0.832482598607889,53.4626038781163,8.31517006721331,0,408.530268351237,408.037475585938,0.416201016974569
+6998,310174,3790898,310274,3790798,97,69,84.2105263157895,0.410308824393431,28.4440604575356,0.833511063716342,15.5867256623399,0.0250566087070133,0.232686980609418,23.2686980609418,2,93.1513529661698,0.930026894095413,22.9916897506925,2.89643590790885,0,408.427191840278,408.204376220703,0.335127022518819
+6999,310174,3790798,310274,3790698,98,69,77.3684210526316,0.396811823591016,29.8206054434348,0.804131054131054,15.5867256623399,0.0212440795081707,0.231578947368421,23.1578947368421,1,94.1708256056907,0.933688159846436,23.1578947368421,2.52861721949144,0,408.14604695638,408.093353271484,0.1364378442918
+7000,310174,3790698,310274,3790598,99,69,50.415512465374,0.0982581658415849,11.4715251822297,0.47218660968661,17.6649556779107,0.0313482673235213,0.307017543859649,30.7017543859649,5,87.3964293888761,0.786216596343179,20.1754385964912,3.26641446522304,0,408.458140055339,408.154205322266,0.379810840051379
+7001,310274,3800598,310374,3800498,0,70,21.0526315789474,0.107976006419286,10.3978588592204,0.40295358649789,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.898511886597,387.628814697266,0.267123478659601
+7002,310274,3800498,310374,3800398,1,70,18,0.194356811554715,24.6227931537732,0.703703703703704,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.477188110352,387.341979980469,0.255683003622411
+7003,310274,3800398,310374,3800298,2,70,10.7894736842105,0.110675406579768,15.4393010855829,0.747967479674797,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.254842758179,387.213165283203,0.0866499473015808
+7004,310274,3800298,310374,3800198,3,70,0.263157894736842,0.00269940016048215,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.290433247884,387.219604492188,0.128927085849996
+7005,310274,3800198,310374,3800098,4,70,0.526315789473684,0.00539880032096429,2.59778761038906,0.166666666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.749294281006,387.41552734375,0.421388870746739
+7006,310274,3800098,310374,3799998,5,70,3.75,0.0134970008024107,4.39505270267826,0.369047619047619,32.1436723554879,0.00443225227963921,0.00625,0.625,1,0,NA,0.625,10.3911504745483,10.3911504745483,388.680918375651,388.217864990234,0.616361852170827
+7007,310274,3799998,310374,3799898,6,70,17.8947368421053,0.091779605456393,13.8228457472539,0.679334554334554,20.7823006752878,0.0177596344179619,0.0605263157894737,6.05263157894737,1,83.4283422491937,0.940865234982882,6.05263157894737,6.91857787837153,0,389.364408493042,388.896759033203,0.356744992592963
+7008,310274,3799898,310374,3799798,7,70,31.8421052631579,0.081656854854585,12.92671272659,0.497241647241647,14.5620315359996,0.0134563433713323,0.0210526315789474,2.10526315789474,4,32.7688970276549,0.387096774193548,0.789473684210526,11.5005381703377,5.19557523727417,389.872095743815,389.673492431641,0.363006364051447
+7009,310274,3799798,310374,3799698,8,70,50.2631578947368,0.171861810217363,18.3604574564387,0.590454331450094,12.4040506599364,0.0054602620086275,0.0236842105263158,2.36842105263158,5,29.393006743637,0.317160826594789,0.789473684210526,9.95393737157186,5.19557523727417,390.418926239014,390.140197753906,0.297775472232172
+7010,310274,3799698,310374,3799598,9,70,56,0.302332817974001,17.9902633864608,0.536073403720463,20.7823008831125,0.00627726219929173,0.075,7.5,4,74.9658916897613,0.713182570325428,5.75,8.72365322113037,0,390.43069712321,390.375946044922,0.0955937418623939
+7011,310274,3799598,310374,3799498,10,70,7.36842105263158,0.018895801123375,6.00417868287469,0.35,38.3216549041199,0.00375525694553648,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.949930825482575,7.10526315789474,18.0996627631011,7.34765291213989,390.464288711548,390.386901855469,0.106741792260065
+7012,310274,3799498,310374,3799398,11,70,33.6842105263158,0.0575872034236191,11.2392159802086,0.394797048829307,13.8548671774741,-0.0461553942956303,0,0,0,NA,NA,0,NA,NA,390.876571655273,390.619750976562,0.264443422579445
+7013,310274,3799398,310374,3799298,12,70,29.2105263157895,0.149816708906759,21.8206118551917,0.654654331612163,36.3690265454468,-0.023264656703582,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,18.7329120635986,18.7329120635986,391.159235636393,391.084197998047,0.0985252373853995
+7014,310274,3799298,310374,3799198,13,70,28.5,0.153865809147482,20.6566025658276,0.723925074499787,27.9790287931623,0.00266320080845617,0.1075,10.75,6,72.5334491625144,0.673202614379085,6.25,13.919438805691,0,391.203660964966,391.185699462891,0.0582206042968638
+7015,310274,3799198,310374,3799098,14,70,17.1052631578947,0.0584870034771132,10.7095329456143,0.574271079590229,24.9772170271738,-0.0222863202877067,0.0157894736842105,1.57894736842105,2,50.7085296622556,0.564553093964859,1.31578947368421,12.5237962404887,10.3911504745483,391.215662638346,391.185943603516,0.0674426879341532
+7016,310274,3799098,310374,3798998,15,70,17.8947368421053,0.0611864036375953,10.0836456086202,0.521708683473389,43.5121031722092,-0.0386704097059249,0.102631578947368,10.2631578947368,2,84.7451991517733,0.897135122941575,9.47368421052632,17.5777966915033,5.19557523727417,391.407251358032,391.231628417969,0.255644586197971
+7017,310274,3798998,310374,3798898,16,70,65,0.22225061321303,14.6426231400307,0.482411281574461,22.5141590960689,-0.134251075592137,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,8.05362923940023,5.19557523727417,392.063758850098,391.555755615234,0.619354860817675
+7018,310274,3798898,310374,3798798,17,70,32.5,0.17546101043134,14.8216967780437,0.501302083333333,23.2353185658627,-0.00444425345051059,0.1025,10.25,1,88.8238145380415,0.919260425497558,10.25,13.4974474325413,0,392.833517074585,392.448333740234,0.335139958596999
+7019,310274,3798798,310374,3798698,18,70,11.0526315789474,0.0566874033701251,10.2381188373046,0.509459459459459,86.002072022779,0.0349613140038855,0.294736842105263,29.4736842105263,3,93.3073388841267,0.852593468302054,27.8947368421053,30.27401848776,5.19557523727417,393.307462056478,393.108428955078,0.339835115591597
+7020,310274,3798698,310374,3798598,19,70,42.6315789473684,0.109325706499527,15.7333270954506,0.593428897721879,25.3747447726712,-0.00626212463942609,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.91293446222941,5.19557523727417,393.942642211914,393.625640869141,0.255867538347196
+7021,310274,3798598,310374,3798498,20,70,0.789473684210526,0.00809820048144644,3.46371681385208,0.222222222222222,NA,0.0272055270052701,0.252631578947368,25.2631578947368,3,87.1061915816419,0.859973796265968,11.5789473684211,34.9473577042421,10.3911504745483,393.996958414714,393.874053955078,0.152633033653516
+7022,310274,3798498,310374,3798398,21,70,0,NA,NA,NA,NA,0.0202481014598197,0.125,12.5,3,83.9592450555582,0.757983193277311,9.75,126.024153289795,67.54248046875,393.672780990601,393.569458007812,0.140277809553313
+7023,310274,3798398,310374,3798298,22,70,0,NA,NA,NA,NA,0.0133904448719956,0.0421052631578947,4.21052631578947,3,63.9844172174811,0.652014652014652,2.63157894736842,62.2453174591064,32.8597030639648,393.557164510091,393.518951416016,0.0583169822006736
+7024,310274,3798298,310374,3798198,23,70,0,NA,NA,NA,NA,0.0262712518121924,0.239473684210526,23.9473684210526,3,89.0850281803493,0.748387372378145,15.5263157894737,38.0043598636166,5.19557523727417,393.713706970215,393.5439453125,0.231361124667517
+7025,310274,3798198,310374,3798098,24,70,12.6315789473684,0.0647856038515715,9.55089127210296,0.69041769041769,27.9790287931623,0.0104856484874529,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,2.59778761863708,0,394.410725911458,393.80615234375,0.80229630932812
+7026,310274,3798098,310374,3797998,25,70,49,0.26454121572725,27.6799471539279,0.773236567354214,27.979028590554,0.0168401602798622,0.1625,16.25,3,87.9615659929069,0.904900277374191,14.75,13.3713179808397,0,395.659685134888,395.154754638672,0.513678838699362
+7027,310274,3797998,310374,3797898,26,70,20,0.0683848040655477,14.9769723712828,0.509375819564647,31.1734511168441,0.0298449519757744,0.305263157894737,30.5263157894737,2,91.642928303333,0.86976911976912,17.1052631578947,17.8998156868178,0,396.38934135437,396.078857421875,0.334277326447896
+7028,310274,3797898,310374,3797798,27,70,16.8421052631579,0.0863808051354287,16.7238961294539,0.40994623655914,25.9778758441098,0.0169710084982829,0.0342105263157895,3.42105263157895,3,64.9254510228301,0.71238268240993,2.89473684210526,17.3073195677537,5.19557523727417,396.877146402995,396.718933105469,0.230899214318482
+7029,310274,3797798,310374,3797698,28,70,12.8947368421053,0.026454121572725,7.38152553185017,0.33440122044241,14.9655867818521,0.0142315605914183,0.0631578947368421,6.31578947368421,3,77.4315511492369,0.831460674157303,5.78947368421053,42.0550764203072,5.19557523727417,397.002820968628,396.928558349609,0.122933900891534
+7030,310274,3797698,310374,3797598,29,70,33.25,0.359020221344126,30.0665550968419,0.745614035087719,NA,0.0241718962765202,0.2075,20.75,7,82.624075799897,0.751067619476813,10.5,27.5228808242154,5.19557523727417,397.183596293132,396.887145996094,0.420123946139363
+7031,310274,3797598,310374,3797498,30,70,32.3684210526316,0.0664052439478608,12.6952144897944,0.5198962684489,16.6258405402303,0.0197302211818456,0.0947368421052632,9.47368421052632,7,63.9931537210103,0.539728682170543,3.68421052631579,18.3434628380669,5.19557523727417,397.200824737549,396.875396728516,0.500980123016801
+7032,310274,3797498,310374,3797398,31,70,2.10526315789474,0.0107976006419286,4.43470083659292,0.333333333333333,15.5867255064659,0.0242535870135486,0.171052631578947,17.1052631578947,5,84.3163388768669,0.79716252282624,13.9473684210526,27.2966994579022,5.19557523727417,397.344988505046,396.911560058594,0.670537622508542
+7033,310274,3797398,310374,3797298,32,70,1.31578947368421,0.00674850040120537,1.98831598413454,0.166666666666667,36.7382647004223,0.0173561652674356,0.0947368421052632,9.47368421052632,2,80.9560102563196,0.760658914728682,5.78947368421053,66.1098193062676,51.170482635498,397.770376205444,397.093963623047,0.858939701767554
+7034,310274,3797298,310374,3797198,33,70,5.5,0.0593868035306072,14.9038837191499,0.598484848484849,NA,0.0339431028725085,0.2025,20.25,3,91.353973782265,0.895506792058516,19.5,42.3236301327929,20.7823009490967,398.756718953451,397.960174560547,1.44204327861111
+7035,310274,3797198,310374,3797098,34,70,42.8947368421053,0.110000556539648,12.9130144108193,0.540770609318996,18.1845130908769,0.0153799561454626,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,7.77755989347185,0,402.332738876343,400.082550048828,2.03388832247777
+7036,310274,3797098,310374,3796998,35,70,13.9473684210526,0.0715341042527769,16.3756617105485,0.543055555555556,25.9778758441098,0.0204435376052539,0.128947368421053,12.8947368421053,2,87.6637885329781,0.863329017407567,12.1052631578947,43.701571921913,5.19557523727417,404.392717997233,403.640655517578,0.597447575416757
+7037,310274,3796998,310374,3796898,36,70,20.7894736842105,0.106626306339045,10.6291832687709,0.383547008547009,25.9778758441098,0.000424548752849468,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,11.6176595687866,11.6176595687866,404.849744796753,404.462036132812,0.510359356367523
+7038,310274,3796898,310374,3796798,37,70,22.5,0.121473007221697,14.7683305480906,0.367041198501873,25.9778761038906,-0.00899141214114934,0.0125,1.25,1,58.1880425789518,1,1.25,35.0789611816406,31.6034507751465,405.990903218587,405.518859863281,0.770897250238592
+7039,310274,3796798,310374,3796698,38,70,26.3157894736842,0.0899800053494049,13.1069289911954,0.564647887323944,13.1717378724892,0.00692013669176958,0.136842105263158,13.6842105263158,3,88.3280099009505,0.843792819950671,13.1578947368421,19.6110015282264,10.3911504745483,406.650056838989,406.245208740234,0.332012810742975
+7040,310274,3796698,310374,3796598,39,70,13.6842105263158,0.140368808345072,16.2583705182985,0.801282051282051,NA,0.0181713552173613,0.128947368421053,12.8947368421053,4,84.1778748340892,0.712990936555891,11.0526315789474,30.4470158401801,0,406.914403915405,406.698974609375,0.262186507641483
+7041,310274,3796598,310374,3796498,40,70,1.84210526315789,0.018895801123375,6.41885315050562,0.404761904761905,NA,0.018555837843121,0.0315789473684211,3.15789473684211,3,52.9227486915556,0.635549872122762,1.31578947368421,44.2844606637955,0,407.164100646973,406.985107421875,0.270876503749626
+7042,310274,3796498,310374,3796398,41,70,1.57894736842105,0.0161964009628929,7.97809580142354,0.25,NA,0.0350482191212665,0.247368421052632,24.7368421052632,4,87.93267467857,0.8497335997336,17.6315789473684,49.9475914265247,10.3911504745483,407.098770141602,407.016510009766,0.13351501583132
+7043,310274,3796398,310374,3796298,42,70,13.5,0.072883804333018,12.461598501619,0.704010025062657,51.9557516882196,0.0207664848476634,0.0775,7.75,3,78.697234898559,0.631436314363144,6,18.3676487092049,10.3911504745483,406.964294433594,406.854644775391,0.191918569773538
+7044,310274,3796298,310374,3796198,43,70,3.42105263157895,0.0116974006954226,4.49680676228164,0.303703703703704,52.313476906129,0.0202010761568305,0.0473684210526316,4.73684210526316,5,54.6386551751226,0.455698792715367,1.84210526315789,25.3450383080377,0,406.520606994629,406.159729003906,0.41362566512471
+7045,310274,3796198,310374,3796098,44,70,10.7894736842105,0.027668851644942,6.45515202494607,0.419462719298246,16.4399095411772,0.00926210436373008,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,17.8134006772723,10.3911504745483,405.687367757161,405.250030517578,0.624642956285135
+7046,310274,3796098,310374,3795998,45,70,9.73684210526316,0.0499389029689197,9.09475458233172,0.508333333333333,31.1734513246687,-0.0045436089319226,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,404.268838882446,402.597961425781,1.33518998913509
+7047,310274,3795998,310374,3795898,46,70,5,0.0269940016048215,7.36331250582421,0.444444444444444,25.9778759376309,0.0218583181320355,0.085,8.5,4,73.7947088484468,0.687743950039032,4,20.5619656198165,0,401.775754292806,401.106018066406,1.11825390905153
+7048,310274,3795898,310374,3795798,47,70,13.6842105263158,0.0467896027816906,8.88268432657991,0.549620132953466,24.6724205878832,0.0192744256189096,0.0736842105263158,7.36842105263158,6,61.9796978298647,0.568181818181818,2.63157894736842,13.6062651702336,5.19557523727417,401.057004928589,400.874969482422,0.297392962687652
+7049,310274,3795798,310374,3795698,48,70,5.26315789473684,0.0539880032096429,10.7950709684992,0.658333333333333,NA,0.041120640594454,0.378947368421053,37.8947368421053,4,93.9588687307069,0.768233179250128,32.6315789473684,29.3178194993072,0,400.67253112793,400.325225830078,0.441863310304704
+7050,310274,3795698,310374,3795598,49,70,0,NA,NA,NA,NA,0.0212397541494044,0.210526315789474,21.0526315789474,5,83.6871264954905,0.768075117370892,14.7368421052632,76.3718117237091,44.6940307617188,399.849828720093,399.283172607422,0.55778473835936
+7051,310274,3795598,310374,3795498,50,70,0,NA,NA,NA,NA,0.0186315252275968,0.1025,10.25,5,73.0169000572063,0.741633361592184,5.25,94.1468721250208,29.3906116485596,399.473897298177,399.219268798828,0.288959628898058
+7052,310274,3795498,310374,3795398,51,70,3.94736842105263,0.0101227506018081,3.62527711584249,0.23452380952381,29.1682613746894,0.0278054220726326,0.142105263157895,14.2105263157895,7,77.413145577651,0.749323834025991,10.5263157894737,30.9095595677694,11.6176595687866,399.513990402222,399.392822265625,0.167165090944133
+7053,310274,3795398,310374,3795298,52,70,20.2631578947368,0.207853812357125,25.4895895895242,0.777056277056277,NA,0.0424627201030776,0.268421052631579,26.8421052631579,2,93.9113769228218,0.925305657113653,26.3157894736842,11.749662586287,0,399.606971740723,399.509796142578,0.143672598544352
+7054,310274,3795298,310374,3795198,53,70,0,NA,NA,NA,NA,0.0175684071680543,0.136842105263158,13.6842105263158,2,86.1147766356895,0.895861879967114,12.1052631578947,70.9853134888869,15.5867252349854,399.756238937378,399.666870117188,0.103454669548003
+7055,310274,3795198,310374,3795098,54,70,0,NA,NA,NA,NA,0.0210200886518214,0.185,18.5,3,89.1911843523649,0.754601226993865,14.5,69.5308546633334,49.28955078125,399.769857406616,399.613830566406,0.143633388977655
+7056,310274,3795098,310374,3794998,55,70,35.5263157894737,0.182209510832545,25.5312377723362,0.749169251218432,20.7823006752878,0.0084751119971076,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,4.01856483731951,0,399.55455271403,399.420562744141,0.142402385435489
+7057,310274,3794998,310374,3794898,56,70,25.5263157894737,0.0654604538916921,13.979367685407,0.463217348106871,12.9889379220549,0.0272353014868905,0.107894736842105,10.7894736842105,6,69.243585778465,0.577615322132444,3.15789473684211,10.7740916391698,0,399.560344696045,399.389709472656,0.350509778661991
+7058,310274,3794898,310374,3794798,57,70,48.9473684210526,0.25104421492484,29.0873715653646,0.755761562998405,20.7823006752878,0.0166140599499302,0.0368421052631579,3.68421052631579,4,54.2539589990242,0.584699453551913,2.10526315789474,7.09900770868574,0,400.879402160645,400.267272949219,1.27021514837449
+7059,310274,3794798,310374,3794698,58,70,0,NA,NA,NA,NA,0.0111848453568109,0.0075,0.75,1,44.4894453484604,1,0.75,107.74446105957,103.911506652832,402.659152984619,402.282806396484,0.543680689949448
+7060,310274,3794698,310374,3794598,59,70,0,NA,NA,NA,NA,0.0139720023290226,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,81.9118067423503,72.7380523681641,402.836967468262,402.707702636719,0.192690239772877
+7061,310274,3794598,310374,3794498,60,70,17.8947368421053,0.0611864036375953,10.003829926831,0.390860215053763,19.4160420479994,0.0190831131950912,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,30.8101840019226,11.6176595687866,403.125518798828,402.701080322266,0.394406565343394
+7062,310274,3794498,310374,3794398,61,70,27.3684210526316,0.0935792055633811,17.2581709122574,0.649277684875511,17.3185838960732,0.0147212201571787,0.0289473684210526,2.89473684210526,3,54.4093320921881,0.65672990063234,1.84210526315789,7.42558652704412,0,403.235282897949,402.990875244141,0.287513589804962
+7063,310274,3794398,310374,3794298,62,70,17.75,0.191657411394232,27.0553877599033,0.767605633802817,NA,0.0195844794814184,0.045,4.5,5,54.3999473404205,0.495830909443475,1.5,21.0375044610765,0,402.972663879395,402.544738769531,0.351619263195378
+7064,310274,3794298,310374,3794198,63,70,0,NA,NA,NA,NA,0.0366510887488977,0.260526315789474,26.0526315789474,2,92.925103662493,0.832860170338678,24.4736842105263,47.7246603484106,5.19557523727417,402.599385579427,402.408294677734,0.189439724732745
+7065,310274,3794198,310374,3794098,64,70,1.31578947368421,0.0134970008024107,4.4048163270008,0.433333333333333,NA,0.0253637175165319,0.121052631578947,12.1052631578947,3,82.8252368177017,0.795793029325963,9.47368421052632,18.7281974605892,0,402.747856140137,402.584381103516,0.278518194430148
+7066,310274,3794098,310374,3793998,65,70,0,NA,NA,NA,NA,0.0159177458634842,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,68.6929912567139,51.955753326416,403.651664733887,403.005737304688,1.05084754187268
+7067,310274,3793998,310374,3793898,66,70,0,NA,NA,NA,NA,0.0133169964975968,0,0,0,NA,NA,0,NA,NA,405.142051696777,404.465667724609,0.912207876295709
+7068,310274,3793898,310374,3793798,67,70,1.31578947368421,0.0134970008024107,4.4048163270008,0.433333333333333,NA,0.0158391573679278,0.0342105263157895,3.42105263157895,3,54.6987496753745,0.597335755373903,1.31578947368421,48.3146281609168,30.2951488494873,405.48784383138,404.600006103516,0.781462678824389
+7069,310274,3793798,310374,3793698,68,70,18.6842105263158,0.191657411394232,19.2507999521018,0.7981220657277,NA,0.0196461866511335,0.0447368421052632,4.47368421052632,3,65.9177566143905,0.706887052341598,2.63157894736842,29.2708146151374,0,405.083786010742,404.113006591797,0.889628148052989
+7070,310274,3793698,310374,3793598,69,70,3.42105263157895,0.0116974006954226,5.31660520574007,0.269444444444444,53.1360856168444,0.0121482127833588,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,25.6851088205973,20.7823009490967,403.919847488403,403.650268554688,0.440927578980348
+7071,310274,3793598,310374,3793498,70,70,17.5,0.0944790056168752,15.8575348991933,0.668402777777778,20.7823006752878,0.0182923661057953,0.0325,3.25,4,53.1479098566857,0.483204134366925,1.75,35.441229233375,10.3911504745483,403.942830403646,403.705261230469,0.561673210568606
+7072,310274,3793498,310374,3793398,71,70,0,NA,NA,NA,NA,0.0219337714428548,0.0421052631578947,4.21052631578947,5,50.993148025082,0.521520146520146,1.57894736842105,53.1768924593925,10.3911504745483,405.517436981201,403.814361572266,1.97593578671272
+7073,310274,3793398,310374,3793298,72,70,0,NA,NA,NA,NA,0.0134002288068969,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,45.4686508178711,20.7823009490967,407.818300882975,406.695465087891,1.25912841200091
+7074,310274,3793298,310374,3793198,73,70,0,NA,NA,NA,NA,0.0218347557672946,0.0447368421052632,4.47368421052632,3,66.3466728186873,0.706887052341598,3.15789473684211,86.4877198163201,62.3469009399414,408.759128570557,408.013519287109,0.849404121094369
+7075,310274,3793198,310374,3793098,74,70,0,NA,NA,NA,NA,0.022552381444948,0.08,8,3,82.2888668275941,0.832775919732441,7.5,56.3552458286285,41.5646018981934,406.783925374349,405.587310791016,1.86805871275131
+7076,310274,3793098,310374,3792998,75,70,57.6315789473684,0.197056211715197,17.5911766139023,0.388433648749715,12.1230087965261,0.014467623480902,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,5.19557523727417,5.19557523727417,405.892267227173,405.484924316406,0.578151086886586
+7077,310274,3792998,310374,3792898,76,70,7.36842105263158,0.0755832044935001,24.2460457685414,0.505952380952381,NA,0.0273879964098389,0.136842105263158,13.6842105263158,8,68.8373467803732,0.596464784872568,3.94736842105263,34.3729210175001,0,406.686403910319,405.523773193359,2.19955542924242
+7078,310274,3792898,310374,3792798,77,70,9.47368421052632,0.0323928019257858,7.07775147952014,0.471734892787524,22.9405622757957,0.0279285671589605,0.144736842105263,14.4736842105263,7,74.6470061563057,0.655384615384615,6.31578947368421,22.7462525107644,0,410.144605636597,408.198333740234,1.57983154933822
+7079,310274,3792798,310374,3792698,78,70,11.75,0.0422906025142203,8.68000173073192,0.571031746031746,23.9532501495965,0.0327487435388321,0.1675,16.75,6,81.5803886832804,0.640666307332974,9.5,13.8653455421106,0,410.296971638997,409.932586669922,0.527600982174784
+7080,310274,3792698,310374,3792598,79,70,0,NA,NA,NA,NA,0.0173344602960194,0.05,5,2,74.7032626354689,0.745916515426497,4.21052631578947,81.6518100939299,41.5646018981934,408.494144439697,407.282379150391,1.47493942280768
+7081,310274,3792598,310374,3792498,80,70,0,NA,NA,NA,NA,0.0255428032071857,0.0710526315789474,7.10526315789474,6,60.1643388458127,0.574412016601884,3.42105263157895,64.0320865489818,31.6034507751465,408.13988494873,407.245239257812,1.28683788615086
+7082,310274,3792498,310374,3792398,81,70,0,NA,NA,NA,NA,0.0219552043079411,0.0394736842105263,3.94736842105263,6,42.4701240254298,0.38480697384807,1.05263157894737,76.7320785522461,15.5867252349854,409.997755050659,408.514709472656,1.35664347841687
+7083,310274,3792398,310374,3792298,82,70,2,0.0215952012838572,10.3911504415562,0.291666666666667,NA,0.0254236477281665,0.04,4,3,66.2624149457428,0.782986111111111,3.25,63.1285984516144,51.4335708618164,410.410718282064,408.892669677734,1.09570790930889
+7084,310274,3792298,310374,3792198,83,70,14.4736842105263,0.148467008826518,16.1937291135377,0.796969696969697,NA,0.0241894055038229,0.0631578947368421,6.31578947368421,4,64.9264969472085,0.662921348314607,3.15789473684211,30.2024795214335,0,409.178802490234,406.896636962891,1.87446591951872
+7085,310274,3792198,310374,3792098,84,70,29.7368421052632,0.101677406044828,11.4218589040987,0.483950617283951,10.7999867452501,0.0233851763053328,0.0815789473684211,8.1578947368421,3,79.5547831376621,0.738681948424069,6.84210526315789,15.0268296118705,5.19557523727417,405.813064575195,405.09326171875,1.11069986449018
+7086,310274,3792098,310374,3791998,85,70,39.7368421052632,0.407609424232804,43.3197606204083,0.741721854304636,NA,0.0274895672539347,0.165789473684211,16.578947368421,5,77.9614448673498,0.705764267278463,6.31578947368421,5.55659970783052,0,405.075508117676,405.003326416016,0.12095001834456
+7087,310274,3791998,310374,3791898,86,70,18.5,0.0665852039585596,13.0451928765208,0.631611544655023,30.6195896891831,0.018292494153502,0.0625,6.25,3,72.5187083680548,0.733333333333333,4.25,5.38114501953125,0,405.026874542236,404.955932617188,0.0925318814934198
+7088,310274,3791898,310374,3791798,87,70,0.789473684210526,0.00809820048144644,3.39810794893163,0.277777777777778,NA,0.0187172346918439,0.0947368421052632,9.47368421052632,3,78.0488280499176,0.797480620155039,6.31578947368421,19.8453094032076,0,405.148895263672,405.054901123047,0.102064948686609
+7089,310274,3791798,310374,3791698,88,70,0,NA,NA,NA,NA,0.0310956480827276,0.194736842105263,19.4736842105263,2,92.4339039611643,0.828054298642534,19.2105263157895,80.0594220548063,49.0149574279785,405.249576568604,405.174194335938,0.0704893782830442
+7090,310274,3791698,310374,3791598,89,70,0,NA,NA,NA,NA,0.0322635209589192,0.2,20,3,87.1806746449564,0.766791044776119,14.4736842105263,122.322371533042,98.5791015625,405.350468953451,405.273681640625,0.111643903448664
+7091,310274,3791598,310374,3791498,90,70,0,NA,NA,NA,NA,0.0268753262919927,0.1,10,5,76.5192840548936,0.767827529021559,7.75,134.133606529236,109.600776672363,405.566892623901,405.365753173828,0.294458451493385
+7092,310274,3791498,310374,3791398,91,70,0,NA,NA,NA,NA,0.0213679732091183,0.102631578947368,10.2631578947368,5,68.3996221338665,0.639972930295511,3.15789473684211,105.875239641238,74.9316482543945,406.160400390625,405.743499755859,0.661480052576226
+7093,310274,3791398,310374,3791298,92,70,0,NA,NA,NA,NA,0.0292390940654514,0.215789473684211,21.5789473684211,2,88.9454279930292,0.850497570006943,10.7894736842105,79.7554221269561,63.4200782775879,406.502954483032,405.923553466797,0.692650077537032
+7094,310274,3791298,310374,3791198,93,70,2.36842105263158,0.0121473007221697,2.97218804259706,0.270833333333333,15.5867256623344,0.0206696776245257,0.0578947368421053,5.78947368421053,2,78.1035948821918,0.843904042063753,5.26315789473684,59.5338107022372,47.9008369445801,406.156801859538,405.793365478516,0.580405652004529
+7095,310274,3791198,310374,3791098,94,70,30.75,0.166013109869652,17.552172620028,0.789925965097832,32.8597026090424,0.0391794189492149,0.29,29,6,86.0299305687915,0.778672032193159,13.5,12.7655681618329,0,405.997030258179,405.758636474609,0.420696695718686
+7096,310274,3791098,310374,3790998,95,70,23.9473684210526,0.122822707301938,16.6911839111902,0.743030303030303,47.0479341735638,0.0370961903339776,0.35,35,3,91.5355376307968,0.821996185632549,20.7894736842105,5.76270715455364,0,406.520434061686,405.993225097656,0.992848367749449
+7097,310274,3790998,310374,3790898,96,70,15.5263157894737,0.0796323047342233,13.5392804804294,0.673309178743961,23.2353187052757,0.0283177547735632,0.186842105263158,18.6842105263158,2,90.4834250774762,0.773721682847896,16.8421052631579,14.8160284337863,0,407.894422531128,406.630584716797,1.00225598348603
+7098,310274,3790898,310374,3790798,97,70,88.4210526315789,0.906998453922002,36.8709363967568,0.919642857142857,NA,0.0210864232733768,0.0736842105263158,7.36842105263158,6,61.5687399374071,0.640151515151515,3.15789473684211,5.42615498815264,0,408.244143168132,407.664489746094,0.620690852938698
+7099,310274,3790798,310374,3790698,98,70,97.25,1.05006666242756,39.7451200852473,0.919451585261354,NA,0.0401684339511848,0.36,36,1,96.4912280701754,0.90530303030303,36,0,0,408.08172416687,407.734313964844,0.407626053692066
+7100,310274,3790698,310374,3790598,99,70,35,0.359020221344126,26.9493452352627,0.862155388471178,NA,0.0446144716036037,0.291666666666667,29.1666666666667,2,93.8601869812557,0.92530345471522,28.3333333333333,1.97219099771409,0,408.470104217529,408.000244140625,0.567000650917412
+7101,310374,3800598,310474,3800498,0,71,29.0858725761773,0.0708592542126814,12.8268542387816,0.410598995695839,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.766934712728,387.577789306641,0.202966910566447
+7102,310374,3800498,310474,3800398,1,71,21.3157894736842,0.0546628532497828,13.0117822477677,0.599486280300234,13.3793374704909,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.466284857856,387.345825195312,0.233585349282104
+7103,310374,3800398,310474,3800298,2,71,18.5595567867036,0.0904299053761839,14.0882482629049,0.625877192982456,41.5646017662396,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.310287475586,387.270690917969,0.0762382259996498
+7104,310374,3800298,310474,3800198,3,71,16.3434903047091,0.0796323047342515,14.7468966358255,0.529550827423168,47.047934173564,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.343600802951,387.255187988281,0.11202186942737
+7105,310374,3800198,310474,3800098,4,71,20.2216066481994,0.0656854039050888,16.5843950889287,0.585078287115639,17.3185838960732,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.494967142741,387.321105957031,0.282995288620906
+7106,310374,3800098,310474,3799998,5,71,0,NA,NA,NA,NA,0.023474260672485,0.105263157894737,10.5263157894737,1,81.6202788108963,0.767156862745098,10.5263157894737,53.9041628837585,47.9008369445801,388.125973171658,387.711029052734,0.550355017535551
+7107,310374,3799998,310474,3799898,6,71,1.93905817174515,0.0188958011233817,5.06822951269105,0.523809523809524,NA,0.0218392437370849,0.0886426592797784,8.86426592797784,1,86.8957932742439,0.936696282440963,8.86426592797784,56.1139500141144,32.8597030639648,388.903442382812,388.407135009766,0.493687369681295
+7108,310374,3799898,310474,3799798,7,71,36.5650969529086,0.0890802052959424,12.137287290749,0.51461038961039,15.7975069949484,0.0168400409216157,0.0886426592797784,8.86426592797784,5,64.1380807982763,0.641278933832125,2.21606648199446,15.455656632781,0,389.457824707031,389.152618408203,0.473094055832584
+7109,310374,3799798,310474,3799698,8,71,36.01108033241,0.0501317172661147,10.5112210784625,0.462585034013605,14.9649470585508,0.0147337402227107,0.0443213296398892,4.43213296398892,5,49.6624681620537,0.433212560386473,1.38504155124654,11.549395263195,5.19557523727417,389.781929016113,389.392333984375,0.560909301629233
+7110,310374,3799698,310474,3799598,9,71,20.2631578947368,0.0692846041190663,15.1383790532164,0.356481481481482,17.3185838960732,0.0131697377711182,0.0184210526315789,1.84210526315789,2,53.6189928746137,0.872654155495979,1.57894736842105,7.42225027084351,0,390.392469618056,390.212432861328,0.315527182407568
+7111,310374,3799598,310474,3799498,10,71,9.14127423822715,0.0445401026479712,8.88595769737602,0.603009259259259,10.3911503376439,0.0144330963771823,0.105263157894737,10.5263157894737,3,81.9280788692432,0.822595704948646,8.86426592797784,46.7465185868113,20.7823009490967,390.422922770182,390.272399902344,0.173897813626706
+7112,310374,3799498,310474,3799398,11,71,5.54016620498615,0.0179960010698873,5.6130316068914,0.405864197530864,31.735534965932,0.0174619444486959,0.155124653739612,15.5124653739612,2,86.8029765889774,0.914585093797533,13.0193905817175,15.8572553651673,0,390.861872355143,390.571166992188,0.363848961797074
+7113,310374,3799398,310474,3799298,12,71,34.0720221606648,0.166013109869711,25.9166215272003,0.671630727762803,15.5867255064659,-0.00355756262386225,0.0581717451523546,5.81717451523546,1,82.5214449195341,0.933639705882353,5.81717451523546,14.6918484369914,5.19557523727417,391.322774251302,391.168029785156,0.279733473220254
+7114,310374,3799298,310474,3799198,13,71,21.5789473684211,0.0737836043865381,12.7874515721368,0.525396825396825,23.4418427802157,0.00533170216985079,0.0868421052631579,8.68421052631579,3,77.1889714895156,0.73636460668161,5.26315789473684,18.5093183806448,10.3911504745483,391.458396911621,391.285919189453,0.432750653845271
+7115,310374,3799198,310474,3799098,14,71,31.8559556786704,0.103477006151852,12.5632095107397,0.526489898989899,24.8081014584278,-0.00995066429747222,0.0775623268698061,7.75623268698061,4,67.3976308635336,0.638638638638639,3.04709141274238,14.019386785371,0,391.509477403429,391.299285888672,0.448492381467482
+7116,310374,3799098,310474,3798998,15,71,3.8781163434903,0.0377916022467634,11.6251723410938,0.488095238095238,NA,0.00511801556379817,0.132963988919668,13.2963988919668,4,80.0357922690006,0.746824592846567,8.86426592797784,39.9225144386292,22.0429573059082,391.772471110026,391.412475585938,0.436786912777737
+7117,310374,3798998,310474,3798898,16,71,36.01108033241,0.116974006954268,15.4352328628397,0.610232779508481,16.404398136658,-0.0643090634679175,0,0,0,NA,NA,0,NA,NA,392.563490125868,392.242279052734,0.539319742430061
+7118,310374,3798898,310474,3798798,17,71,25,0.256443015245895,27.3091874837525,0.798245614035088,NA,-0.00674465329912461,0.0421052631578947,4.21052631578947,1,79.0554595032226,0.869505494505495,4.21052631578947,30.5362324714661,16.4298515319824,393.056147257487,392.843994140625,0.263823709435068
+7119,310374,3798798,310474,3798698,18,71,20.7756232686981,0.202455012036233,23.2744809957932,0.786666666666667,NA,0.0125089162904859,0.168975069252078,16.8975069252078,1,92.0405515626388,0.965943396226415,16.8975069252078,57.8560642179896,41.8880653381348,393.422865125868,393.261383056641,0.278051789423218
+7120,310374,3798698,310474,3798598,19,71,57.0637119113573,0.18535881101984,22.5296341574035,0.725613272944477,19.6125261510511,-0.019230054618241,0,0,0,NA,NA,0,NA,NA,393.971399943034,393.731658935547,0.222194892856826
+7121,310374,3798598,310474,3798498,20,71,18.5595567867036,0.0904299053761839,16.3011529964833,0.697032436162871,15.5867255064659,0.00908262467652053,0.132963988919668,13.2963988919668,1,90.3199234519404,0.957804098807761,13.2963988919668,20.3119337161382,10.3911504745483,393.995863172743,393.882019042969,0.164924529970644
+7122,310374,3798498,310474,3798398,21,71,0,NA,NA,NA,NA,0.0090584764108395,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,81.5090764363607,78.1066207885742,393.658393859863,393.561798095703,0.142445716276316
+7123,310374,3798398,310474,3798298,22,71,0,NA,NA,NA,NA,0.0335985786011288,0.307479224376731,30.7479224376731,3,91.6003275716865,0.8556,21.8836565096953,49.1690367449511,15.5867252349854,393.519124348958,393.510009765625,0.0279031633255024
+7124,310374,3798298,310474,3798198,23,71,45.4293628808864,0.221350813159614,20.3243556615883,0.71978021978022,21.4219054085159,0.0142178382361572,0.191135734072022,19.1135734072022,5,81.2586906358738,0.754783199366014,9.14127423822715,8.23399308107901,0,393.572725931803,393.510009765625,0.098322514752632
+7125,310374,3798198,310474,3798098,24,71,3.601108033241,0.00877305052157008,3.42271126678288,0.263888888888889,47.7385397799995,0.0150899068139652,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.933226462790554,8.31024930747922,14.7891531467438,0,394.040435791016,393.752899169922,0.659677049610528
+7126,310374,3798098,310474,3797998,25,71,9.73684210526316,0.0499389029689374,7.70389641583181,0.356481481481481,15.5867255064659,0.0181044413330471,0.105263157894737,10.5263157894737,3,80.9292750302371,0.79982440737489,7.10526315789474,31.3339508056641,0,395.477155049642,394.771362304688,0.734795117439649
+7127,310374,3797998,310474,3797898,26,71,3.8781163434903,0.0188958011233817,8.23419948021177,0.16025641025641,84.5778368838922,0.0146296826077688,0.0304709141274238,3.04709141274238,3,56.4505085991373,0.518666666666667,1.93905817174515,21.0406931963834,5.19557523727417,396.462417602539,396.220611572266,0.357196050135696
+7128,310374,3797898,310474,3797798,27,71,29.3628808864266,0.143068208505604,22.904834509219,0.480729166666667,25.9778761038998,0.0142231604873723,0.105263157894737,10.5263157894737,5,74.0788686829979,0.645191409897292,6.37119113573407,12.6492218720286,5.19557523727417,396.801713731554,396.670715332031,0.160621870325555
+7129,310374,3797798,310474,3797698,28,71,19.1135734072022,0.0465646527683335,8.33162138918165,0.524509803921569,22.3686714484622,0.0094211210493781,0.0332409972299169,3.32409972299169,5,42.7847632421225,0.391538850497219,1.38504155124654,25.6264854272207,10.3911504745483,396.836219787598,396.758361816406,0.12029691663171
+7130,310374,3797698,310474,3797598,29,71,7.63157894736842,0.0260942015513367,7.31359698732743,0.466049382716049,27.1154544981785,0.0281260844235811,0.244736842105263,24.4736842105263,3,90.8757459205083,0.872381512111162,20.2631578947368,27.1924270301737,0,396.767116970486,396.710601806641,0.102160462919022
+7131,310374,3797598,310474,3797498,30,71,10.2493074792244,0.0998778059378748,22.9631816389669,0.644144144144144,NA,0.0226645154117122,0.141274238227147,14.1274238227147,2,84.7382455466874,0.759065628476085,8.31024930747922,22.4738108317057,0,396.748896280924,396.700775146484,0.089520872724357
+7132,310374,3797498,310474,3797398,31,71,0,NA,NA,NA,NA,0.0182332593256211,0.0664819944598338,6.64819944598338,1,84.0091180032961,1,6.64819944598338,31.2051423390706,20.7823009490967,396.861267089844,396.775238037109,0.141955684359943
+7133,310374,3797398,310474,3797298,32,71,0,NA,NA,NA,NA,0.0202804877071408,0.116343490304709,11.6343490304709,2,87.4635460601635,0.904366638703695,11.3573407202216,82.7323553902762,55.2297248840332,397.631200154622,396.975860595703,1.12677465305202
+7134,310374,3797298,310474,3797198,33,71,8.42105263157895,0.0431904025677296,10.6871304637827,0.599019607843137,20.7823008831198,0.0146583094413999,0.0552631578947368,5.52631578947368,3,67.9167941270865,0.669220055710306,2.89473684210526,54.1234534127372,31.1734504699707,400.144744873047,398.374877929688,2.5262463085841
+7135,310374,3797198,310474,3797098,34,71,37.3961218836565,0.0911047554163047,13.6178424591179,0.496743498817967,12.9889379740129,0.00414351774405006,0,0,0,NA,NA,0,NA,NA,403.444811503092,401.235809326172,1.67827226655869
+7136,310374,3797098,310474,3796998,35,71,18.5595567867036,0.0602866035841226,10.8809683849969,0.495925925925926,17.3185839999892,0.0118745781582928,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,15.5867252349854,15.5867252349854,404.820075141059,404.503723144531,0.530120770753902
+7137,310374,3796998,310474,3796898,36,71,22.4376731301939,0.0437302825998262,9.19332470231433,0.431481481481481,12.0894941091348,0.00729709067189237,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,10.4868902478899,5.19557523727417,405.57731628418,405.023864746094,0.650671845587945
+7138,310374,3796898,310474,3796798,37,71,21.8421052631579,0.0448100426640195,10.9867542760062,0.515257452574526,16.6258406649295,0.0137014404072512,0.197368421052632,19.7368421052632,4,88.7286202646048,0.877297565822156,18.1578947368421,21.0740639940898,5.19557523727417,406.502210828993,406.148132324219,0.43711187148142
+7139,310374,3796798,310474,3796698,38,71,31.3019390581717,0.0435760311620844,7.2965797426783,0.446056166056166,13.4079203589763,0.000233504169627749,0.0332409972299169,3.32409972299169,2,68.5613517353952,0.817461655149166,3.04709141274238,23.5377136866252,0,406.878466288249,406.749145507812,0.161072577654455
+7140,310374,3796698,310474,3796598,39,71,14.404432132964,0.0701844041725606,9.96715102272441,0.483560090702948,20.7823006752878,0.0128658350830874,0.0249307479224377,2.49307479224377,3,47.8133758108293,0.572679924242424,1.38504155124654,21.4878170755174,5.19557523727417,407.244270324707,406.904449462891,0.386499324213985
+7141,310374,3796598,310474,3796498,40,71,10.2493074792244,0.0998778059378748,14.6480335566278,0.702702702702703,NA,0.023076787843427,0.160664819944598,16.0664819944598,2,86.7074306858802,0.833201320132013,10.5263157894737,33.1633539364256,5.19557523727417,407.771647135417,407.624114990234,0.318554406943379
+7142,310374,3796498,310474,3796398,41,71,1.38504155124654,0.0134970008024155,6.23469026493595,0.266666666666667,NA,0.0186670767647244,0.110803324099723,11.0803324099723,4,77.1059516373371,0.68108057841633,6.37119113573407,50.3618205308914,11.6176595687866,407.425582885742,407.129913330078,0.385820140729758
+7143,310374,3796398,310474,3796298,42,71,32.3684210526316,0.110675406579807,20.0691264239004,0.663800705467372,22.9992697361736,0.0121659454170425,0.0394736842105263,3.94736842105263,5,47.105407740132,0.479452054794521,1.31578947368421,7.70194425582886,0,407.328345404731,407.016632080078,0.519656003387435
+7144,310374,3796298,310474,3796198,43,71,22.1606648199446,0.053988003209662,12.313507737598,0.608134920634921,22.9343784112826,0.0142359460785535,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,7.54269688470023,0,406.38633219401,405.810028076172,0.612374567864188
+7145,310374,3796198,310474,3796098,44,71,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0136826348850901,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,28.0246836344401,23.2353191375732,405.335974799262,404.832153320312,0.840379144607224
+7146,310374,3796098,310474,3795998,45,71,0,NA,NA,NA,NA,0.0105758142581555,0.038781163434903,3.8781163434903,3,57.912053576166,0.583861671469741,1.93905817174515,69.5114228384835,32.8597030639648,403.157307942708,401.520172119141,1.73970135762442
+7147,310374,3795998,310474,3795898,46,71,1.05263157894737,0.0107976006419324,3.97663196826998,0.333333333333333,NA,0.0400408864329285,0.294736842105263,29.4736842105263,4,93.4507837859391,0.824516033692922,28.1578947368421,67.4466522378581,5.19557523727417,401.026899549696,400.548797607422,0.723716732714864
+7148,310374,3795898,310474,3795798,47,71,0,NA,NA,NA,NA,0.0328253792575706,0.238227146814404,23.8227146814404,4,92.120248961189,0.768342245989305,22.7146814404432,52.6116285656774,10.3911504745483,400.569826761882,400.065338134766,0.562973902482667
+7149,310374,3795798,310474,3795698,48,71,1.10803324099723,0.0107976006419324,5.19557522077996,0.25,NA,0.0203445096771565,0.124653739612188,12.4653739612188,4,77.533142505953,0.789556962025316,6.64819944598338,70.6266218397352,52.9846801757812,400.328796386719,400.067901611328,0.370034484916987
+7150,310374,3795698,310474,3795598,49,71,6.92520775623269,0.0224950013373592,6.63349135717306,0.459259259259259,20.7823006752878,0.0147319689458426,0.0803324099722992,8.03324099722992,3,72.4581637211013,0.745513970776724,3.601108033241,75.4265797056001,62.3469009399414,400.122751871745,399.934783935547,0.251859600467702
+7151,310374,3795598,310474,3795498,50,71,0,NA,NA,NA,NA,0.0172775440663611,0.0394736842105263,3.94736842105263,5,50.0385073341025,0.432129514321295,1.57894736842105,70.6182684580485,25.977876663208,399.892083062066,399.739715576172,0.167047746111502
+7152,310374,3795498,310474,3795398,51,71,6.92520775623269,0.0674850040120775,12.8045250286791,0.653333333333333,NA,0.00972905305881639,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,36.369026184082,36.369026184082,399.781664530436,399.646820068359,0.192494618962647
+7153,310374,3795398,310474,3795298,52,71,32.6869806094183,0.318529218937006,28.1303063035444,0.82909604519774,NA,0.014073222408654,0.0914127423822715,9.14127423822715,1,87.180691871343,0.898091689250226,9.14127423822715,5.01112083955245,0,399.635206434462,399.585327148438,0.0924550685740746
+7154,310374,3795298,310474,3795198,53,71,0,NA,NA,NA,NA,0.0266980472184625,0.221606648199446,22.1606648199446,3,88.3856800356439,0.837151019998997,14.9584487534626,53.4853633642197,10.3911504745483,399.718340555827,399.655334472656,0.125911180216519
+7155,310374,3795198,310474,3795098,54,71,0,NA,NA,NA,NA,0.0112771878299794,0.068421052631579,6.8421052631579,2,79.5400937903271,0.842910293509715,6.05263157894737,67.903435927171,46.7601776123047,399.736724853516,399.579132080078,0.160594347018207
+7156,310374,3795098,310474,3794998,55,71,8.31024930747922,0.0404910024072465,7.67307722569232,0.501602564102564,25.9778758441098,0.0113100811663332,0.0166204986149584,1.66204986149584,2,44.8792546293462,0.418913480885312,1.10803324099723,26.3147665659587,11.6176595687866,399.414035373264,399.338500976562,0.147679406404969
+7157,310374,3794998,310474,3794898,56,71,37.1191135734072,0.180859810752368,24.9837473498722,0.734193677470988,20.7823006752878,0.0335717211910227,0.204986149584488,20.4986149584488,5,86.5259803317421,0.738756365585634,14.404432132964,11.3101094993385,0,399.386065165202,399.308135986328,0.188150806059598
+7158,310374,3794898,310474,3794798,57,71,34.0720221606648,0.0830065549348554,12.4651533366509,0.431447723765432,20.9422018113386,0.0276226889664207,0.185595567867036,18.5595567867036,4,82.6392365548847,0.758619687191116,11.0803324099723,7.67556141383612,0,400.3501824273,399.631744384766,1.29770585190308
+7159,310374,3794798,310474,3794698,58,71,5.26315789473684,0.026994001604831,6.69696401878229,0.522222222222222,14.6953058096335,0.00734842827285703,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,18.7329120635986,18.7329120635986,402.198476155599,401.407104492188,0.874864661671712
+7160,310374,3794698,310474,3794598,59,71,11.6343490304709,0.0226749613480581,6.96469389229448,0.347115384615385,19.743185703873,0.0169706712190305,0.03601108033241,3.601108033241,2,64.1225578072574,0.769476372924649,1.93905817174515,11.4208699006301,0,402.111555311415,401.588073730469,0.824738493614957
+7161,310374,3794598,310474,3794498,60,71,16.3434903047091,0.159264609468503,25.9419992263511,0.748587570621469,NA,0.0110564558207068,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,402.146606445312,401.584808349609,0.919312114313643
+7162,310374,3794498,310474,3794398,61,71,17.1745152354571,0.0557876033166508,9.55399255804025,0.601851851851852,17.3185839999892,0.00994411252461122,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,12.2937201499939,0,402.568383110894,402.216125488281,0.680515729637857
+7163,310374,3794398,310474,3794298,62,71,12.8947368421053,0.044090202621224,9.26486443521464,0.514814814814815,19.0504423549578,0.0149959250682035,0.0210526315789474,2.10526315789474,3,41.4670426229876,0.591397849462366,1.05263157894737,19.2562838196754,5.19557523727417,402.422963460286,402.184753417969,0.479456161312764
+7164,310374,3794298,310474,3794198,63,71,5.26315789473684,0.0256443015245895,8.04225363883068,0.417735042735043,18.7329127343573,0.0185269132859687,0.0470914127423823,4.70914127423823,4,59.5908005704818,0.538255813953488,1.93905817174515,17.5725647701937,0,402.180348714193,401.907135009766,0.376302332819476
+7165,310374,3794198,310474,3794098,64,71,5.81717451523546,0.0283437016850726,7.71586492166205,0.385964912280702,14.6953058096335,0.0206170880370045,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,35.5384728567941,16.4298515319824,402.253405253092,401.779937744141,0.631355887294675
+7166,310374,3794098,310474,3793998,65,71,15.2354570637119,0.0742335044132853,12.6281284937391,0.426816239316239,15.5867255064659,0.00976878440497757,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,7.79336285591125,5.19557523727417,403.242994520399,402.660095214844,0.819884294326914
+7167,310374,3793998,310474,3793898,66,71,7.63157894736842,0.039141302327005,11.0248890086551,0.39957264957265,25.9778758441098,0.0201461505595178,0.0421052631578947,4.21052631578947,4,59.8326978376422,0.565018315018315,2.63157894736842,43.3952359855175,0,403.52305094401,402.884185791016,0.913116431241808
+7168,310374,3793898,310474,3793798,67,71,0.277008310249307,0.0026994001604831,0,0,NA,0.016163202060832,0.0470914127423823,4.70914127423823,3,63.2228388534051,0.664186046511628,2.49307479224377,63.2592580458697,46.7601776123047,403.829518636068,402.968109130859,1.34284597651689
+7169,310374,3793798,310474,3793698,68,71,0,NA,NA,NA,NA,0.0273479098881243,0.07202216066482,7.20221606648199,5,65.5776064446866,0.684601383327266,4.43213296398892,71.2463125082163,57.1513290405273,403.69457244873,402.931793212891,1.08872183185287
+7170,310374,3793698,310474,3793598,69,71,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.00893291657182374,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,58.6194140116374,44.6940307617188,403.319648742676,402.968475341797,0.500909659506792
+7171,310374,3793598,310474,3793498,70,71,17.8947368421053,0.0458898027282127,8.52189633563213,0.433176100628931,15.5867255844029,0.0222252895075048,0.0815789473684211,8.1578947368421,5,65.282684771522,0.564469914040115,3.42105263157895,34.6645762382015,5.19557523727417,403.462063259549,403.218994140625,0.372351789573646
+7172,310374,3793498,310474,3793398,71,71,0,NA,NA,NA,NA,0.0253696715510986,0.0609418282548476,6.09418282548476,4,66.1103498505527,0.592833593614437,3.04709141274238,58.9015124927868,42.8438110351562,404.259684244792,403.261596679688,1.32233841534312
+7173,310374,3793398,310474,3793298,72,71,10.5263157894737,0.0512886030491789,8.8651746402952,0.684259259259259,10.3911503376439,0.0275551598738615,0.14404432132964,14.404432132964,3,87.0429428296901,0.698083706047053,12.4653739612188,22.5667476562353,5.19557523727417,406.653147379557,404.769561767578,1.95459615349585
+7174,310374,3793298,310474,3793198,73,71,0,NA,NA,NA,NA,0.0201761680107368,0.0664819944598338,6.64819944598338,3,75.8582757199305,0.605341246290801,4.98614958448753,55.2570490042369,16.4298515319824,407.169624328613,406.184112548828,1.12122761238644
+7175,310374,3793198,310474,3793098,74,71,0,NA,NA,NA,NA,0.0205062751628391,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,85.7144134521484,74.9316482543945,405.891577826606,405.143737792969,1.14944387613447
+7176,310374,3793098,310474,3792998,75,71,1.66204986149584,0.0161964009628986,5.18752620759997,0.444444444444444,NA,0.0120615278437509,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,31.7898101806641,25.977876663208,405.302383422852,405.110900878906,0.291077300508284
+7177,310374,3792998,310474,3792898,76,71,0,NA,NA,NA,NA,0.0187042433411324,0.0554016620498615,5.54016620498615,3,66.0552817340733,0.692649702014947,2.77008310249307,55.5210092544556,31.6034507751465,406.042032877604,405.515899658203,1.36528981555912
+7178,310374,3792898,310474,3792798,77,71,0,NA,NA,NA,NA,0.0223759348930766,0.0637119113573407,6.37119113573407,4,64.7497453137715,0.614316239316239,3.601108033241,55.1260898424231,29.3906116485596,408.883951822917,407.497283935547,1.41525126272621
+7179,310374,3792798,310474,3792698,78,71,0,NA,NA,NA,NA,0.0295866537168254,0.115789473684211,11.5789473684211,3,84.3104741969255,0.877734877734878,10.2631578947368,39.3474067341198,20.7823009490967,409.665188259549,408.188507080078,1.4080218369688
+7180,310374,3792698,310474,3792598,79,71,0,NA,NA,NA,NA,0.0238249560724275,0.113573407202216,11.3573407202216,3,80.444220027718,0.70570652173913,7.4792243767313,94.2093147649998,56.1987419128418,408.416015625,407.267517089844,1.49183356573815
+7181,310374,3792598,310474,3792498,80,71,0,NA,NA,NA,NA,0.0260964366137958,0.0775623268698061,7.75623268698061,7,55.5268518464332,0.445912579245913,2.21606648199446,89.8696008409773,57.1513290405273,407.138871934679,406.912994384766,0.483447577782902
+7182,310374,3792498,310474,3792398,81,71,0,NA,NA,NA,NA,0.0284994691793268,0.0997229916897507,9.97229916897507,5,75.4046446846917,0.685282051282051,6.64819944598338,101.117945883009,46.7601776123047,407.361053466797,406.912963867188,1.199953945029
+7183,310374,3792398,310474,3792298,82,71,2.10526315789474,0.0215952012838648,5.38798381594044,0.5625,NA,0.0231288264907466,0.0342105263157895,3.42105263157895,4,50.0785425651038,0.424765364819861,1.57894736842105,70.6463426443247,58.0882949829102,407.746015760634,407.129211425781,1.16219950242189
+7184,310374,3792298,310474,3792198,83,71,5.81717451523546,0.0283437016850726,8.80381476483673,0.466346153846154,31.6034499687999,0.0231820647203276,0.0775623268698061,7.75623268698061,1,85.6074305911797,0.927727727727728,7.75623268698061,61.4890044076102,47.0479354858398,407.207237243652,406.394226074219,1.07652444045787
+7185,310374,3792198,310474,3792098,84,71,46.5373961218837,0.151166408987054,15.082149184538,0.467711545049675,19.2219301683436,0.0192697314455258,0.0692520775623269,6.92520775623269,2,79.9322147778781,0.865699404761905,6.37119113573407,4.12080339431763,0,405.835983276367,404.859130859375,0.706891677619736
+7186,310374,3792098,310474,3791998,85,71,41.8282548476454,0.0815218848465897,12.2468314194217,0.524645951035781,15.9239759192126,0.0407061203316861,0.279778393351801,27.9778393351801,6,85.0337794213303,0.708499787505312,19.6675900277008,6.57823097115696,0,405.062249077691,404.953704833984,0.201653438096677
+7187,310374,3791998,310474,3791898,86,71,46.8421052631579,0.120123307141498,16.4768064249658,0.687978687978688,18.1845131947929,0.0129057751094622,0.0657894736842105,6.57894736842105,3,71.6640394117516,0.705633802816901,3.94736842105263,1.2469380569458,0,404.907636006673,404.854187011719,0.090911755727061
+7188,310374,3791898,310474,3791798,87,71,58.7257617728532,0.190757611340806,15.3403991078491,0.589197530864197,19.0504424207713,0.011473265158892,0.0498614958448753,4.98614958448753,2,74.9233646818843,0.805096641831336,4.43213296398892,3.58327669567532,0,405.015577528212,404.909423828125,0.136348254163763
+7189,310374,3791798,310474,3791698,88,71,8.86426592797784,0.0863808051354593,20.4855992195776,0.630208333333333,NA,0.020494840297154,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,24.0104169845581,22.0429573059082,405.176579793294,405.089599609375,0.0835315355627847
+7190,310374,3791698,310474,3791598,89,71,0,NA,NA,NA,NA,0.0185672617348513,0.0831024930747922,8.31024930747922,2,83.733116765293,0.88871077131759,8.03324099722992,99.4963897705078,52.2148818969727,405.266289605035,405.232452392578,0.0546881673114681
+7191,310374,3791598,310474,3791498,90,71,0,NA,NA,NA,NA,0.0220650489460049,0.0842105263157895,8.42105263157895,2,80.5259623210477,0.727011494252874,6.31578947368421,75.4854689836502,51.955753326416,405.37671661377,405.294494628906,0.118530857532677
+7192,310374,3791498,310474,3791398,91,71,0,NA,NA,NA,NA,0.0361684318509849,0.202216066481994,20.2216066481994,4,85.4564884151803,0.725802951388889,11.3573407202216,68.1957218744983,31.1734504699707,405.595109727648,405.476409912109,0.208483769324122
+7193,310374,3791398,310474,3791298,92,71,9.41828254847645,0.0917796054564255,13.0932711958821,0.725490196078431,NA,0.0222962124993843,0.135734072022161,13.5734072022161,5,80.9340174345354,0.73828601953602,10.5263157894737,26.7739744478342,7.34765291213989,405.808611551921,405.697875976562,0.140643273582265
+7194,310374,3791298,310474,3791198,93,71,6.09418282548476,0.0197956011768761,5.61224273084186,0.362962962962963,67.6001420661287,0.0244163530754064,0.155124653739612,15.5124653739612,1,91.4501011212887,0.938989352712523,15.5124653739612,41.5821448734828,23.2353191375732,405.781802707248,405.731201171875,0.12990853172197
+7195,310374,3791198,310474,3791098,94,71,6.8421052631579,0.0701844041725607,27.0632077031185,0.455128205128205,NA,0.0311876315859033,0.218421052631579,21.8421052631579,2,89.3994020688152,0.886850363040839,13.4210526315789,55.175317051899,36.7382659912109,405.711227416992,405.691192626953,0.0741063961310502
+7196,310374,3791098,310474,3790998,95,71,4.43213296398892,0.0431904025677296,16.3818336478311,0.416666666666667,NA,0.006287565690493,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.634923310298331,3.32409972299169,39.2561113039652,18.7329120635986,405.832512749566,405.701995849609,0.270709461964355
+7197,310374,3790998,310474,3790898,96,71,3.04709141274238,0.0148467008826571,6.92743355842928,0.256944444444444,10.3911503376439,0.0248794853075884,0.0886426592797784,8.86426592797784,5,68.0329838233384,0.641278933832125,3.601108033241,35.6470289826393,21.4219055175781,406.205899556478,405.847991943359,0.710656037513572
+7198,310374,3790898,310474,3790798,97,71,28.2548476454294,0.137669408184638,26.207679386,0.605853576248313,18.7329128064101,0.0361090101689614,0.249307479224377,24.9307479224377,4,91.2033690449811,0.801425591895671,22.7146814404432,4.44732302559747,0,406.550998263889,406.134918212891,0.889537964408598
+7199,310374,3790798,310474,3790698,98,71,66.5789473684211,0.170737060150556,19.0094158421204,0.658662698061432,10.3911503376439,0.0464687285502709,0.421052631578947,42.1052631578947,5,89.4257229547785,0.735621521335807,25.2631578947368,1.39283377826214,0,406.768274943034,406.166870117188,1.01041095418728
+7200,310374,3790698,310474,3790598,99,71,48.4764542936288,0.157465009361514,15.5478989611176,0.721247055188661,13.8548671861359,0.0622907216415466,0.546783625730994,54.6783625730994,3,93.9999249969932,0.846951333209025,47.6608187134503,1.10658603811009,0,407.300277709961,406.246337890625,1.13087292022466
+7201,310474,3800598,310574,3800498,0,72,14.1274238227147,0.0344173520461595,8.92493999304006,0.455492424242424,25.4655289548273,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.007001876831,385.864776611328,0.731535138547922
+7202,310474,3800498,310574,3800398,1,72,36.0526315789474,0.123272607328728,16.9998621582161,0.738977272727273,11.8258688283071,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.166793823242,386.755981445312,0.345639768959111
+7203,310474,3800398,310574,3800298,2,72,39.0581717451524,0.380615422628117,31.3161441050278,0.825059101654846,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.258787155151,387.010833740234,0.173585375985418
+7204,310474,3800298,310574,3800198,3,72,18.2825484764543,0.0445401026479712,8.2012252909027,0.546296296296296,20.3365909567666,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.290718078613,387.149108886719,0.151257409782673
+7205,310474,3800198,310574,3800098,4,72,43.213296398892,0.140368808345121,16.4709711426343,0.568301094616884,20.7823007445652,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.271957397461,387.133666992188,0.216101163390259
+7206,310474,3800098,310574,3799998,5,72,23.1578947368421,0.118773607061256,10.3483651703029,0.404214559386973,44.3910137562246,0.0240281347256601,0.0789473684210526,7.89473684210526,4,52.7155053044001,0.616806722689076,5.26315789473684,24.5232462088267,10.3911504745483,387.981109619141,387.4296875,0.555730337182693
+7207,310474,3799998,310574,3799898,6,72,34.9030470914127,0.340124420220871,26.3829813110594,0.847883597883598,NA,0.00917146404958595,0.113573407202216,11.3573407202216,2,87.0309825805101,0.934601449275362,11.0803324099723,30.5428781276796,14.6953058242798,388.735719680786,388.3916015625,0.426891236382348
+7208,310474,3799898,310574,3799798,7,72,21.606648199446,0.0526383031294205,9.85855837054301,0.496525791380625,14.9010861869045,0.0168815421774351,0.0332409972299169,3.32409972299169,3,59.059818185075,0.69576942524861,2.49307479224377,12.4090905984243,5.19557523727417,389.378171284993,389.188934326172,0.230590280586052
+7209,310474,3799798,310574,3799698,8,72,6.92520775623269,0.0224950013373592,3.49663112316563,0.22463768115942,26.6449267595917,0.0173281784350932,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,16.8027545809746,7.34765291213989,389.657852172852,389.34619140625,0.301135047738728
+7210,310474,3799698,310574,3799598,9,72,2.36842105263158,0.012147300722174,2.9810040205607,0.25,25.9778758441098,0.0148871045550263,0.0263157894736842,2.63157894736842,3,50.8444565675899,0.604989604989605,1.57894736842105,24.5821858882904,0,389.957440694173,389.758026123047,0.245613760667778
+7211,310474,3799598,310574,3799498,10,72,0,NA,NA,NA,NA,0.0214913231631066,0.157894736842105,15.7894736842105,1,91.5743806754245,0.878826530612245,15.7894736842105,90.5685858475535,77.9336318969727,390.149732589722,389.851867675781,0.284246358236462
+7212,310474,3799498,310574,3799398,11,72,0,NA,NA,NA,NA,0.0228518400988006,0.171745152354571,17.1745152354571,1,92.1499865944243,0.932924563359346,17.1745152354571,75.3161964416504,51.955753326416,390.959953308105,390.485565185547,0.65405271397854
+7213,310474,3799398,310574,3799298,12,72,26.3157894736842,0.128221507622947,17.1129161311401,0.745825945626478,15.5867255064659,0.00437631131913864,0.146814404432133,14.6814404432133,2,84.701173617974,0.806800342514628,9.97229916897507,17.3312948334892,0,392.117218017578,391.553100585938,0.764383496059672
+7214,310474,3799298,310574,3799198,13,72,69.2105263157895,0.354971121103528,28.268235973161,0.773982558139535,15.5867255064659,-0.0181591400629163,0,0,0,NA,NA,0,NA,NA,392.689867019653,391.930572509766,0.677420262778244
+7215,310474,3799198,310574,3799098,14,72,15.7894736842105,0.0512886030491789,14.9077802539672,0.538930976430976,12.1230087965286,-0.000510334243671904,0.0692520775623269,6.92520775623269,2,75.7601990072061,0.785119047619048,3.601108033241,16.585028629303,7.34765291213989,392.529146830241,391.914276123047,0.646686398008204
+7216,310474,3799098,310574,3798998,15,72,9.69529085872576,0.0236197514042271,4.85147813427064,0.396780303030303,24.6789821298413,-0.0301109709916572,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,40.2932885487874,33.2679138183594,392.245800018311,391.930603027344,0.304472559253004
+7217,310474,3798998,310574,3798898,16,72,2.77008310249307,0.026994001604831,6.8937109195334,0.516666666666667,NA,-0.0260535023257654,0.0277008310249307,2.77008310249307,1,72.175958031556,0.841770764847688,2.77008310249307,67.1845993041992,60.5902976989746,392.774513244629,392.516143798828,0.348448906248427
+7218,310474,3798898,310574,3798798,17,72,12.6315789473684,0.0431904025677296,7.60416946125621,0.448456790123457,15.5867255584239,-0.0135558559684509,0.0526315789473684,5.26315789473684,2,77.9727935993549,0.863799283154122,5,15.4469598293304,0,393.040269851685,392.772308349609,0.169541884386821
+7219,310474,3798798,310574,3798698,18,72,47.6454293628809,0.116074206900773,14.4405540360117,0.66628751940659,11.004404862246,-0.0158133568630216,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989,393.340291341146,393.176513671875,0.248092786350326
+7220,310474,3798698,310574,3798598,19,72,49.584487534626,0.0805321047877459,11.5257902855543,0.626244304433517,14.9252145211683,-0.00696915987464812,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,393.805643081665,393.515045166016,0.251398935781024
+7221,310474,3798598,310574,3798498,20,72,30.4709141274238,0.0593868035306282,10.8800611375066,0.514043106651802,15.8060854342456,-0.000357352861207204,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0,393.883639017741,393.715972900391,0.19012480411306
+7222,310474,3798498,310574,3798398,21,72,26.8421052631579,0.275338816369276,22.8316017341325,0.838235294117647,NA,0.0106071754260675,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,1.29889380931854,0,393.638090133667,393.565521240234,0.100565968150628
+7223,310474,3798398,310574,3798298,22,72,0,NA,NA,NA,NA,0.0243767428446769,0.113573407202216,11.3573407202216,3,83.0761316872428,0.836503623188406,9.97229916897507,50.7365049036538,33.2679138183594,393.53539276123,393.510986328125,0.0325305452752361
+7224,310474,3798298,310574,3798198,23,72,39.612188365651,0.386014222949084,27.5210182499653,0.827505827505827,NA,0.00569235481667556,0.074792243767313,7.4792243767313,4,68.2436048455281,0.597827600612728,2.77008310249307,26.0981992968807,0,393.559106826782,393.510009765625,0.0688671352315147
+7225,310474,3798198,310574,3798098,24,72,18.5595567867036,0.045214952688092,6.67701022601298,0.298305084745763,24.6789821558203,0.0306775763595918,0.213296398891967,21.3296398891967,4,88.9301410584286,0.785030033140017,18.8365650969529,18.1498393331255,0,393.81084950765,393.663024902344,0.303864984013645
+7226,310474,3798098,310574,3797998,25,72,6.57894736842105,0.0674850040120775,11.9633698051746,0.706666666666667,NA,0.0235603230292566,0.160526315789474,16.0526315789474,3,89.5590368262211,0.808954870763589,15.2631578947368,40.0095091647789,25.977876663208,394.879594802856,393.976165771484,0.879789178910197
+7227,310474,3797998,310574,3797898,26,72,0,NA,NA,NA,NA,0.0114801886065683,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,54.8733406066895,21.4219055175781,396.145383834839,395.318969726562,0.530501319582315
+7228,310474,3797898,310574,3797798,27,72,0,NA,NA,NA,NA,0.0290289743276146,0.274238227146814,27.4238227146814,1,94.9468230611528,0.907110386825628,27.4238227146814,62.0673761560459,14.6953058242798,396.58536529541,396.350006103516,0.218003588540935
+7229,310474,3797798,310574,3797698,28,72,9.69529085872576,0.0236197514042271,6.36782678466064,0.396618903971845,18.9710599394161,0.00213935508446686,0.0221606648199446,2.21606648199446,3,43.2007065974729,0.590934844192635,1.10803324099723,9.63027608394623,5.19557523727417,396.746480941772,396.695068359375,0.0844610433229848
+7230,310474,3797698,310574,3797598,29,72,2.10526315789474,0.0215952012838648,5.38798381594044,0.5625,NA,0.0267914916436942,0.160526315789474,16.0526315789474,4,83.1909310343031,0.775241024427752,8.1578947368421,60.8091132367244,5.19557523727417,396.753880818685,396.700317382812,0.0940128881397506
+7231,310474,3797598,310574,3797498,30,72,0,NA,NA,NA,NA,0.0248346668653177,0.218836565096953,21.8836565096953,3,85.3070980976926,0.753115501519757,9.69529085872576,61.9273437789724,25.977876663208,396.791564941406,396.695770263672,0.13924716990218
+7232,310474,3797498,310574,3797398,31,72,0,NA,NA,NA,NA,0.0483225792115283,0.32409972299169,32.409972299169,2,94.551969748914,0.92323306526446,31.5789473684211,64.1888496692364,25.977876663208,397.06228129069,396.791290283203,0.342035860951525
+7233,310474,3797398,310574,3797298,32,72,0,NA,NA,NA,NA,0.0260674556233365,0.182825484764543,18.2825484764543,2,87.4292162415396,0.861665438467207,14.404432132964,102.732943332557,51.955753326416,398.020862579346,397.034851074219,1.60049289700976
+7234,310474,3797298,310574,3797198,33,72,2.89473684210526,0.0296934017653141,7.86899167180593,0.560606060606061,NA,0.0207849050975423,0.0868421052631579,8.68421052631579,5,68.5487745406052,0.695805315401857,4.47368421052632,74.3834307121508,44.6940307617188,401.580665588379,400.066864013672,1.90241284690895
+7235,310474,3797198,310574,3797098,34,72,32.409972299169,0.105276606258841,13.1736059684768,0.584635734635735,15.5867255064659,0.015048056597283,0.193905817174515,19.3905817174515,3,83.7622107177771,0.828541893666359,7.20221606648199,24.8906741550991,0,403.527940750122,402.641693115234,0.681054975404523
+7236,310474,3797098,310574,3796998,35,72,0,NA,NA,NA,NA,0.0286089738774409,0.121883656509695,12.1883656509695,4,76.316415319226,0.738383493903998,7.20221606648199,48.0638380484148,18.7329120635986,404.455530802409,403.676727294922,0.927291989209707
+7237,310474,3796998,310574,3796898,36,72,0,NA,NA,NA,NA,0.0460373113445236,0.421052631578947,42.1052631578947,4,88.719653219116,0.758553274682307,15.2354570637119,50.0978519916534,15.5867252349854,405.796358108521,405.073699951172,0.694577058634954
+7238,310474,3796898,310574,3796798,37,72,12.6315789473684,0.0647856038515944,11.3243332827659,0.703571428571429,60.8126487517751,0.012371368986389,0.0210526315789474,2.10526315789474,2,58.2306946168411,0.795698924731183,1.84210526315789,24.311380982399,14.6953058242798,406.549596150716,406.280303955078,0.450274887137073
+7239,310474,3796798,310574,3796698,38,72,29.0858725761773,0.0944790056169086,17.8965468488011,0.590766823161189,25.9778758441098,0.00254356118833802,0.0249307479224377,2.49307479224377,2,55.7189825278222,0.658143939393939,1.38504155124654,12.1230086750454,5.19557523727417,406.764394760132,406.353240966797,0.279003963545844
+7240,310474,3796698,310574,3796598,39,72,34.6260387811634,0.056237503343398,8.36691171784949,0.323972323972324,16.1110901483638,0.0130236683123517,0.10803324099723,10.803324099723,2,85.4837655361495,0.93100812231247,10.2493074792244,13.2532416979472,0,407.180847167969,406.735595703125,0.598021035897371
+7241,310474,3796598,310574,3796498,40,72,21.3296398891967,0.0692846041190663,14.3074053408778,0.530570734669095,14.6725397470507,0.0290068528495459,0.265927977839335,26.5927977839335,4,91.1420050539791,0.730715225976305,22.4376731301939,27.9164533068736,0,407.886210123698,407.619079589844,0.365751222785309
+7242,310474,3796498,310574,3796398,41,72,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0280764734747312,0.193905817174515,19.3905817174515,2,87.6269913157078,0.838627664627162,10.5263157894737,44.5780043465751,23.2353191375732,407.82474899292,407.646362304688,0.289961268451706
+7243,310474,3796398,310574,3796298,42,72,27.1052631578947,0.0695095541324399,11.9625076131629,0.63984375,19.2605519588743,0.0106611119963131,0.0526315789473684,5.26315789473684,4,63.9767824800979,0.659498207885305,2.89473684210526,12.5896582841873,5.19557523727417,407.498697916667,407.037506103516,0.459532196477569
+7244,310474,3796298,310574,3796198,43,72,16.3434903047091,0.159264609468503,28.4649446237073,0.692090395480226,NA,0.0193429434195695,0.135734072022161,13.5734072022161,6,80.2074215172078,0.75206043956044,11.0803324099723,18.8015342926493,0,406.095090866089,405.085388183594,1.05347393162186
+7245,310474,3796198,310574,3796098,44,72,24.9307479224377,0.242946014443479,18.939075853238,0.853703703703704,NA,0.00429054138198568,0.0803324099722992,8.03324099722992,2,80.4302269304841,0.90745962573699,7.20221606648199,37.456241607666,25.977876663208,404.628733317057,404.043487548828,1.01467571135687
+7246,310474,3796098,310574,3795998,45,72,18.2825484764543,0.178160410591885,16.4817235006679,0.835858585858586,NA,0.0169340341025093,0.0249307479224377,2.49307479224377,4,35.7441251814162,0.401751893939394,0.831024930747922,47.0564745797051,10.3911504745483,402.307708740234,400.696441650391,1.65599513057384
+7247,310474,3795998,310574,3795898,46,72,0,NA,NA,NA,NA,0.0361857355069955,0.307894736842105,30.7894736842105,3,92.0489053898267,0.836430159982782,27.3684210526316,65.4184346321302,31.1734504699707,400.420710245768,399.946533203125,0.571323676738311
+7248,310474,3795898,310574,3795798,47,72,0,NA,NA,NA,NA,0.0177224127914279,0.07202216066482,7.20221606648199,6,57.1022296912924,0.605751729159083,2.21606648199446,74.5915321936974,41.5646018981934,399.858880996704,399.610595703125,0.313176449000753
+7249,310474,3795798,310574,3795698,48,72,1.38504155124654,0.0134970008024155,6.23469026493595,0.266666666666667,NA,0.019646872369176,0.0526315789473684,5.26315789473684,3,68.0727892382275,0.708812260536398,3.32409972299169,44.6118713178133,25.977876663208,399.748545328776,399.591400146484,0.217395177242203
+7250,310474,3795698,310574,3795598,49,72,25.4847645429363,0.0496689629528891,8.27694106467139,0.424116161616162,15.4891675570286,0.00896530591599708,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417,399.742136001587,399.594879150391,0.200929440642552
+7251,310474,3795598,310574,3795498,50,72,2.10526315789474,0.0215952012838648,10.3911504415599,0.291666666666667,NA,0.0179938028723164,0.0263157894736842,2.63157894736842,2,64.1609526402966,0.841995841995842,2.36842105263158,33.0198362350464,21.4219055175781,399.76432800293,399.593688964844,0.199221343466929
+7252,310474,3795498,310574,3795398,51,72,0,NA,NA,NA,NA,0.0177942523816223,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,36.369026184082,36.369026184082,399.762489318848,399.505035400391,0.2369675937428
+7253,310474,3795398,310574,3795298,52,72,31.0249307479224,0.302332817974107,25.8896616549149,0.834821428571428,NA,0.0275355858781983,0.0886426592797784,8.86426592797784,3,78.7966767071334,0.767886368950199,7.20221606648199,8.09036636352539,0,399.534220377604,399.364532470703,0.180993391275692
+7254,310474,3795298,310574,3795198,53,72,0,NA,NA,NA,NA,0.0281002837951731,0.0969529085872576,9.69529085872576,6,72.1796041354798,0.599058599534589,5.81717451523546,26.2705602100917,5.19557523727417,399.560216903687,399.351043701172,0.23151732302478
+7255,310474,3795198,310574,3795098,54,72,0,NA,NA,NA,NA,0.0268829025652897,0.0736842105263158,7.36842105263158,4,71.0494756198846,0.616161616161616,3.94736842105263,69.656896182469,20.7823009490967,399.62264251709,399.454772949219,0.164509383604556
+7256,310474,3795098,310574,3794998,55,72,6.64819944598338,0.0323928019257972,9.53431626192454,0.435964912280702,31.1734510129318,0.0144641197871162,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,27.7817707061768,10.3911504745483,399.481201171875,399.363037109375,0.175447546803187
+7257,310474,3794998,310574,3794898,56,72,35.4570637119114,0.0691046441083674,11.0280244882683,0.654555332711617,15.9127047827644,0.0254972170373032,0.130193905817175,13.0193905817174,4,81.5241810405402,0.655095541401274,8.31024930747922,6.59568558347986,0,399.391889572144,399.130493164062,0.280672662332233
+7258,310474,3794898,310574,3794798,57,72,25.4847645429363,0.0496689629528891,9.28158003260822,0.542739018087855,16.6258406441463,0.0139824058499967,0.0526315789473684,5.26315789473684,4,58.4643784826265,0.563218390804598,2.21606648199446,13.4734556298507,5.19557523727417,400.14087677002,399.745239257812,0.772132263983193
+7259,310474,3794798,310574,3794698,58,72,24.7368421052632,0.0362490878693445,9.01966340249183,0.460342712842713,16.8164842424389,0.0137366256963249,0.0342105263157895,3.42105263157895,2,66.6860336491831,0.71238268240993,2.63157894736842,9.83207709972675,5.19557523727417,401.265661239624,400.835113525391,0.535872262904496
+7260,310474,3794698,310574,3794598,59,72,28.5318559556787,0.0463397027549599,11.6019123561441,0.471871832778696,20.0568924901252,0.0228578273640967,0.0692520775623269,6.92520775623269,4,72.1972906072137,0.758258928571429,5.54016620498615,13.4226209449768,0,401.347590128581,401.143615722656,0.317389633404254
+7261,310474,3794598,310574,3794498,60,72,20.4986149584488,0.19975561187575,37.2288439579767,0.648648648648649,NA,-0.00331401007397567,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,11.6176595687866,11.6176595687866,401.273275375366,401.149047851562,0.225305005574571
+7262,310474,3794498,310574,3794398,61,72,12.1883656509695,0.0237547214122513,7.82669448981949,0.390512820512821,12.4693804259559,0.0173576158121958,0.0526315789473684,5.26315789473684,2,78.0478642256595,0.745210727969349,4.98614958448754,16.9382722503261,0,401.452891031901,401.161407470703,0.462133456937254
+7263,310474,3794398,310574,3794298,62,72,32.8947368421053,0.0843562550150969,13.5326915870362,0.608546777296777,16.4399094502552,0.0181757392967867,0.0789473684210526,7.89473684210526,2,81.5937015158413,0.844897959183673,7.10526315789474,11.6971815109253,0,401.45715713501,401.210632324219,0.426218143422395
+7264,310474,3794298,310574,3794198,63,72,23.5457063711911,0.0764830045470212,13.6851545807578,0.4003367003367,40.0789018941615,0.0116160631365961,0.0249307479224377,2.49307479224377,1,70.3703703703704,0.658143939393939,2.49307479224377,7.78107166290283,5.19557523727417,401.402537027995,401.204528808594,0.353587467535755
+7265,310474,3794198,310574,3794098,64,72,12.1883656509695,0.118773607061256,20.482594004622,0.65530303030303,NA,0.0240956262552013,0.0249307479224377,2.49307479224377,4,37.2825567342518,0.401751893939394,0.831024930747922,31.737597571479,18.7329120635986,401.493194580078,401.233489990234,0.404486814146012
+7266,310474,3794098,310574,3793998,65,72,14.1274238227147,0.137669408184638,26.5865174320053,0.696078431372549,NA,0.0120402440646851,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,21.1040735244751,11.6176595687866,402.207555135091,401.645141601562,0.654467148530667
+7267,310474,3793998,310574,3793898,66,72,20.7894736842105,0.106626306339083,19.5236236332944,0.660329861111111,41.5646017662397,0.0140950646907042,0.0157894736842105,1.57894736842105,3,37.6454569062964,0.419404125286478,1.05263157894737,33.0207603772481,10.3911504745483,402.790983200073,402.391235351562,0.288269115352309
+7268,310474,3793898,310574,3793798,67,72,9.97229916897507,0.0323928019257972,7.2260160044479,0.47948717948718,20.7823007445652,0.0194891738649951,0.141274238227147,14.1274238227147,2,88.0348552113225,0.799221357063404,12.7423822714681,55.500384424247,23.2353191375732,402.753601074219,402.594696044922,0.211336879005291
+7269,310474,3793798,310574,3793698,68,72,11.3573407202216,0.0553377032899036,15.021818783623,0.445382882882883,10.3911504415599,0.00791825036168395,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,68.8413715362549,62.3469009399414,402.674654006958,402.563507080078,0.227077513093645
+7270,310474,3793698,310574,3793598,69,72,11.0803324099723,0.107976006419324,25.2707002602193,0.616666666666667,NA,0.0132780126587627,0.0332409972299169,3.32409972299169,5,37.9203602297358,0.452384965447497,1.10803324099723,30.9142472743988,10.3911504745483,402.698057174683,402.601837158203,0.186034176828018
+7271,310474,3793598,310574,3793498,70,72,24.7368421052632,0.0634359037713529,6.13179769238439,0.335294117647059,20.6396818178803,0.0149600345887288,0.0368421052631579,3.68421052631579,3,61.2955051452851,0.740437158469945,2.63157894736842,9.61759219850813,0,402.850453694661,402.652984619141,0.288611221509718
+7272,310474,3793498,310574,3793398,71,72,19.3905817174515,0.188958011233817,27.9733835343374,0.711904761904762,NA,0.014104581433974,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,13.6370355061122,5.19557523727417,403.102113723755,402.806945800781,0.559586156426411
+7273,310474,3793398,310574,3793298,72,72,21.8836565096953,0.0533131531695413,11.8644860311884,0.441633597883598,15.5867256623399,0.0257819923830025,0.105263157894737,10.5263157894737,6,66.0133353077724,0.627450980392157,3.32409972299169,11.9804500780608,0,404.396616617839,403.655975341797,1.24655519521267
+7274,310474,3793298,310574,3793198,73,72,14.1274238227147,0.0688347040923191,16.7651961743125,0.575,10.3911504415599,0.0190440978186716,0.0526315789473684,5.26315789473684,5,52.2097953971984,0.526819923371648,1.38504155124654,9.19483322846262,0,405.145208358765,404.203979492188,1.24579828671012
+7275,310474,3793198,310574,3793098,74,72,3.68421052631579,0.0188958011233817,7.35187998957055,0.192307692307692,10.3911504415599,0.0194028094167343,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,19.455020904541,0,405.12070719401,404.865875244141,0.402810305093488
+7276,310474,3793098,310574,3792998,75,72,12.4653739612188,0.0607365036108698,11.8134971700428,0.642427884615385,15.5867256623399,0.0064296996702006,0.0637119113573407,6.37119113573407,2,80.2012096057094,0.881328073635766,6.09418282548476,14.3850444503452,7.34765291213989,405.162910461426,405.057800292969,0.164019170664039
+7277,310474,3792998,310574,3792898,76,72,22.1606648199446,0.0359920021397747,7.24178070226733,0.368433484504913,22.6985682327163,0.00476652561335672,0,0,0,NA,NA,0,NA,NA,405.403460184733,405.157409667969,0.55952681173853
+7278,310474,3792898,310574,3792798,77,72,21.606648199446,0.0526383031294205,11.792148392087,0.388465608465608,11.004404862246,0.0201625419097146,0.0443213296398892,4.43213296398892,4,57.1646508768228,0.564009661835749,1.93905817174515,18.6296202540398,0,406.319576263428,405.220764160156,1.66920916658167
+7279,310474,3792798,310574,3792698,78,72,18.1578947368421,0.0465646527683335,12.9981032043363,0.408895881006865,13.4105008730409,0.0231510043632451,0.0947368421052632,9.47368421052632,5,68.6850179236264,0.594961240310077,3.15789473684211,10.6092333263821,0,407.150362650553,406.075256347656,1.32381102967056
+7280,310474,3792698,310574,3792598,79,72,22.9916897506925,0.112025106660049,26.5149238839572,0.628290747193186,15.5867256623399,0.0222907798179776,0.105263157894737,10.5263157894737,6,69.3208775993266,0.680672268907563,5.81717451523546,16.3579933392374,0,407.053005218506,406.471038818359,0.608687625496305
+7281,310474,3792598,310574,3792498,80,72,22.4376731301939,0.0546628532497828,13.4354198297747,0.452635327635328,12.9889379220549,0.0263244593170132,0.132963988919668,13.2963988919668,5,76.0856948564809,0.5639756876802,5.54016620498615,10.6640996336937,0,406.91236114502,406.856719970703,0.21668201731413
+7282,310474,3792498,310574,3792398,81,72,28.808864265928,0.140368808345121,25.393438167936,0.696153846153846,16.4298514359663,0.0189338412027889,0.0969529085872576,9.69529085872576,6,68.0082871371474,0.560873704252168,4.15512465373961,8.94271915980748,0,406.971883773804,406.860290527344,0.245185351045258
+7283,310474,3792398,310574,3792298,82,72,34.4736842105263,0.117873807007762,19.5963734833166,0.707594649003182,15.5867256623399,0.0280674020841089,0.136842105263158,13.6842105263158,5,82.0574745302139,0.726637434913675,9.73684210526316,7.78910814798795,0,407.294324239095,407.113037109375,0.297211202103078
+7284,310474,3792298,310574,3792198,83,72,64.5429362880887,0.209653412464188,12.6749342279657,0.472789680562476,25.5885953624596,0.0195118347318312,0.0831024930747922,8.31024930747922,3,75.0952694055084,0.710648005425735,4.15512465373961,1.87533025741577,0,407.286083221436,406.827423095703,0.570294115169945
+7285,310474,3792198,310574,3792098,84,72,3.601108033241,0.0175461010431402,6.00345584708014,0.4,57.1513274285795,0.0175499272135264,0.0443213296398892,4.43213296398892,3,66.0759723624276,0.694806763285024,3.32409972299169,7.29936388134956,0,406.080181121826,405.455291748047,0.710366162316234
+7286,310474,3792098,310574,3791998,85,72,34.0720221606648,0.0830065549348554,13.6249281164863,0.51385767010767,21.9506491288677,0.0279646565992717,0.127423822714681,12.7423822714681,5,74.274968754557,0.676760276760277,4.98614958448754,5.2958186087401,0,405.134569803874,404.894561767578,0.408166977757964
+7287,310474,3791998,310574,3791898,86,72,79.7368421052632,0.40895912431319,24.1853139869966,0.785173733804476,10.3911503376439,0.0054521018307002,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.674550365636735,7.10526315789474,1.97097815407647,0,404.794794082642,404.716766357422,0.105768607792143
+7288,310474,3791898,310574,3791798,87,72,45.4293628808864,0.0885403252638457,9.75593220559979,0.495770308123249,16.0773291261476,0.0137006495371221,0.0637119113573407,6.37119113573407,3,72.5854488077184,0.79232412886259,4.98614958448753,2.48484033087026,0,404.840688069661,404.668609619141,0.201935533446421
+7289,310474,3791798,310574,3791698,88,72,32.6869806094183,0.0637058437874012,11.6622139721107,0.446325716889627,13.9990990482272,0.0184123434832891,0.0443213296398892,4.43213296398892,2,68.6260743293786,0.694806763285024,2.49307479224377,17.6695713400841,5.19557523727417,405.093194961548,404.946716308594,0.135375503439535
+7290,310474,3791698,310574,3791598,89,72,47.6454293628809,0.154765609201031,20.1214712636064,0.641544757924068,12.1230088484866,0.0282442100703477,0.168975069252078,16.8975069252078,6,76.9600063134869,0.670786163522013,7.20221606648199,3.60344108988027,0,405.234397888184,405.1923828125,0.0589874151375046
+7291,310474,3791598,310574,3791498,90,72,37.8947368421053,0.0971784057773917,14.654486536047,0.568475452196382,11.6900442467549,0.0384041880948261,0.339473684210526,33.9473684210526,4,91.7335606124264,0.742307366279563,25.5263157894737,5.21838300911955,0,405.34094619751,405.281188964844,0.0929221582530218
+7292,310474,3791498,310574,3791398,91,72,18.5595567867036,0.0602866035841226,11.8605773318881,0.453373015873016,15.5867256623399,0.0463231670253164,0.437673130193906,43.7673130193906,3,95.7392660361607,0.871224732461356,42.1052631578947,20.3479461156869,0,405.587203979492,405.455078125,0.242517864238236
+7293,310474,3791398,310574,3791298,92,72,47.0914127423823,0.114724506820532,14.8641987817291,0.600723622782446,11.9966714745252,0.0411339989267796,0.454293628808864,45.4293628808864,1,97.3130514558791,0.77548996537466,45.4293628808864,4.3704290477241,0,405.997819900513,405.659423828125,0.45592651418556
+7294,310474,3791298,310574,3791198,93,72,41.5512465373961,0.134970008024155,16.8351339486941,0.737665112665113,10.3911504415599,0.0329734249579591,0.296398891966759,29.6398891966759,3,91.8988542702845,0.749622618416221,23.2686980609418,3.37366221329876,0,406.161150614421,405.909423828125,0.373000547904648
+7295,310474,3791198,310574,3791098,94,72,40.2631578947368,0.137669408184638,21.2946333810382,0.634922027290448,12.1230088484866,0.0432071485225032,0.431578947368421,43.1578947368421,1,97.1763536653296,0.720382634289919,43.1578947368421,6.59758357013144,0,405.879299163818,405.706726074219,0.257009790088541
+7296,310474,3791098,310574,3790998,95,72,32.6869806094183,0.106176406312335,16.5398546750622,0.552111840904944,11.8258688283071,0.0436743687000835,0.390581717451524,39.0581717451524,2,93.0914110332803,0.771035940803383,23.8227146814404,6.43316254717238,0,405.703330993652,405.677062988281,0.0776164659893605
+7297,310474,3790998,310574,3790898,96,72,16.3434903047091,0.0398161523671258,7.60885210798102,0.434275683665928,20.7823006752878,0.036687127945657,0.240997229916898,24.0997229916898,3,87.211865966746,0.855497998587238,13.2963988919668,17.1185185059734,0,405.766166687012,405.697418212891,0.129620459689494
+7298,310474,3790898,310574,3790798,97,72,7.75623268698061,0.0377916022467634,11.2304883076062,0.44949494949495,18.7329127343573,0.0347819248694618,0.279778393351801,27.9778393351801,5,84.9554711812236,0.685486612834679,16.0664819944598,26.5422364933656,0,405.884501139323,405.769409179688,0.219669153378284
+7299,310474,3790798,310574,3790698,98,72,11.3157894736842,0.116074206900773,21.8545766417971,0.569767441860465,NA,0.0585116514116587,0.515789473684211,51.5789473684211,4,95.1177993883352,0.773053033922599,42.8947368421053,18.8201869677524,0,405.893724441528,405.739562988281,0.243755088410723
+7300,310474,3790698,310574,3790598,99,72,3.8781163434903,0.0188958011233817,5.56595111901359,0.493055555555556,15.5867255064659,0.0608362523710889,0.526315789473684,52.6315789473684,5,90.1701214260118,0.771771771771772,29.8245614035088,35.1078792969386,0,406.295295715332,405.96240234375,0.435577862196203
+7301,310574,3800598,310674,3800498,0,73,7.20221606648199,0.0701844041725607,16.3177955768831,0.608974358974359,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,385.910135904948,384.839813232422,0.768720018372713
+7302,310574,3800498,310674,3800398,1,73,21.8421052631579,0.0746834044400325,12.9957750654804,0.687581699346405,17.3185839653505,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.796051025391,386.580505371094,0.254896898078319
+7303,310574,3800398,310674,3800298,2,73,0.831024930747922,0.00809820048144931,3.46371677921464,0.222222222222222,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.051333109538,386.937744140625,0.152017056622782
+7304,310574,3800298,310674,3800198,3,73,0.277008310249307,0.0026994001604831,0,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.217278374566,387.145477294922,0.189502067473082
+7305,310574,3800198,310674,3800098,4,73,8.03324099722992,0.039141302327005,7.53746487227583,0.653198653198653,51.9557516882196,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.256627400716,387.111511230469,0.269259040914784
+7306,310574,3800098,310674,3799998,5,73,15.5263157894737,0.159264609468503,17.078923525141,0.788135593220339,NA,0.00505493265271932,0.0328947368421053,3.28947368421053,2,45.3445993393869,0.586394557823129,2.63157894736842,20.3617105484009,10.3911504745483,387.993787977431,387.467407226562,0.664658720353073
+7307,310574,3799998,310674,3799898,6,73,0.277008310249307,0.0026994001604831,0,0,NA,0.0181771257185899,0.174515235457064,17.4515235457064,3,89.1713611257969,0.845820622330689,16.3434903047091,40.5577388036819,18.7329120635986,388.848520914714,388.547943115234,0.382416993198952
+7308,310574,3799898,310674,3799798,7,73,9.14127423822715,0.0890802052959424,11.738955450878,0.752525252525253,NA,0.0340549281363439,0.263157894736842,26.3157894736842,2,92.2753399711541,0.800420168067227,22.4376731301939,25.8208026986373,0,389.34715101454,389.185333251953,0.19012960265234
+7309,310574,3799798,310674,3799698,8,73,0,NA,NA,NA,NA,0.0227058262029021,0.141274238227147,14.1274238227147,1,90.7748213352599,0.959844271412681,14.1274238227147,57.9208440593645,34.8529777526855,389.461491902669,389.281066894531,0.230482038972753
+7310,310574,3799698,310674,3799598,9,73,12.3684210526316,0.0422906025142353,6.71147011997091,0.460334528076464,20.1880208773996,0.0247500769216506,0.186842105263158,18.6842105263158,2,88.7325803287343,0.862265372168285,15,23.3708797575722,0,389.634911431207,389.515594482422,0.229066981222871
+7311,310574,3799598,310674,3799498,10,73,9.69529085872576,0.0472395028084543,7.84654600392973,0.457070707070707,21.4219052194909,0.0090866182603522,0.0304709141274238,3.04709141274238,3,59.1111111111111,0.724952380952381,2.49307479224377,38.977690263228,22.0429573059082,389.840797424316,389.577239990234,0.359265317365176
+7312,310574,3799498,310674,3799398,11,73,3.8781163434903,0.0377916022467634,14.2188788926213,0.428571428571429,NA,0.0150274596146567,0.0858725761772853,8.58725761772853,2,80.087971389894,0.868727272727273,7.20221606648199,49.6238533758348,36.369026184082,390.905815124512,390.373046875,0.825489276324464
+7313,310574,3799398,310674,3799298,12,73,5.54016620498615,0.026994001604831,10.7887044083265,0.333333333333333,10.3911503376439,0.0245078462494373,0.221606648199446,22.1606648199446,3,87.633494258414,0.85524535111022,13.5734072022161,47.4949739694595,18.7329120635986,392.319342719184,391.950897216797,0.639616515783263
+7314,310574,3799298,310674,3799198,13,73,16.5789473684211,0.0566874033701451,12.2721807447934,0.634656084656085,41.5646015930463,0.0147534116587945,0.189473684210526,18.9473684210526,2,91.6669181212161,0.873708968197157,18.4210526315789,19.3416660229365,5.19557523727417,393.023943583171,392.739166259766,0.380682835780752
+7315,310574,3799198,310674,3799098,14,73,10.803324099723,0.105276606258841,21.5545073601432,0.641025641025641,NA,0.0105594159330472,0.157894736842105,15.7894736842105,2,86.3601870774348,0.903061224489796,11.0803324099723,38.2886159461841,16.4298515319824,392.73232014974,392.487457275391,0.460309558900742
+7316,310574,3799098,310674,3798998,15,73,13.0193905817175,0.0634359037713529,11.9032186842957,0.662326388888889,15.5867255064659,0.0177223020309561,0.168975069252078,16.8975069252078,4,84.3784638958183,0.818364779874214,12.7423822714681,51.6170591760854,31.1734504699707,392.461217244466,392.381988525391,0.187037901456811
+7317,310574,3798998,310674,3798898,16,73,14.404432132964,0.140368808345121,23.9905195195617,0.727564102564103,NA,0.0115330573047625,0.260387811634349,26.0387811634349,1,94.6683312894905,0.927568218298555,26.0387811634349,58.3235183675238,15.5867252349854,392.801215277778,392.659637451172,0.272793830297898
+7318,310574,3798898,310674,3798798,17,73,19.7368421052632,0.0674850040120775,13.0399172572259,0.514132553606238,25.0636903043606,-0.00280316817841499,0.0710526315789474,7.10526315789474,1,85.1216389709211,0.974965412741287,7.10526315789474,59.8066953023275,46.4706382751465,393.114461263021,392.983703613281,0.143573883176393
+7319,310574,3798798,310674,3798698,18,73,76.1772853185596,0.247445014710951,18.9342941065194,0.768109521499422,13.1717378724924,-0.0331209777797788,0,0,0,NA,NA,0,NA,NA,393.267930772569,393.197082519531,0.176859101077507
+7320,310574,3798698,310674,3798598,19,73,52.6315789473684,0.0732694329273985,10.6705713289189,0.542522431620176,11.4290375124888,-0.0173672673958702,0,0,0,NA,NA,0,NA,NA,393.575508117676,393.414916992188,0.190070511405044
+7321,310574,3798598,310674,3798498,20,73,35.1800554016621,0.0428529775476692,8.60335920459266,0.422340672612412,12.1252037283613,0.00117932339705181,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,6.80109632015228,0,393.694407145182,393.665405273438,0.0690734078978047
+7322,310574,3798498,310674,3798398,21,73,26.3157894736842,0.26994001604831,28.1938349693177,0.803333333333333,NA,0.00959823535396074,0.0421052631578947,4.21052631578947,4,60.3869276275906,0.652014652014652,2.89473684210526,14.3908582627773,5.19557523727417,393.619707743327,393.579742431641,0.0402387334245707
+7323,310574,3798398,310674,3798298,22,73,17.7285318559557,0.172761610270919,31.3496358063563,0.6640625,NA,0.0206356327339478,0.127423822714681,12.7423822714681,3,82.4426164980073,0.823687423687424,10.2493074792244,24.5805994220402,5.19557523727417,393.595058865017,393.570129394531,0.0472308275342646
+7324,310574,3798298,310674,3798198,23,73,21.0526315789474,0.102577206098358,18.2559805013477,0.718589743589744,47.047934632588,0.00848421621587194,0.0581717451523546,5.81717451523546,6,58.3372680727059,0.535477941176471,3.04709141274238,11.8390059244065,5.19557523727417,393.629737854004,393.571807861328,0.0871410571777336
+7325,310574,3798198,310674,3798098,24,73,14.6814404432133,0.0715341042528022,11.7374680881618,0.563541666666667,15.5867255064659,0.0246370675935058,0.193905817174515,19.3905817174515,3,86.8778402775051,0.78819880982315,14.6814404432133,36.958722441537,5.19557523727417,393.774766710069,393.664154052734,0.186875910138081
+7326,310574,3798098,310674,3797998,25,73,10.7894736842105,0.0553377032899036,10.0494816247537,0.637152777777778,36.3690261817537,0.0166279017041425,0.107894736842105,10.7894736842105,5,74.4986740866545,0.675088709332649,6.31578947368421,38.9747206292501,10.3911504745483,394.398694356283,393.964904785156,0.635713768399841
+7327,310574,3797998,310674,3797898,26,73,22.1606648199446,0.215952012838648,25.0624984721535,0.80625,NA,0.016835657662802,0.160664819944598,16.0664819944598,4,80.2132828755498,0.761716171617162,9.69529085872576,28.7358273226639,7.34765291213989,395.734202067057,395.118041992188,0.57936680041758
+7328,310574,3797898,310674,3797798,27,73,18.5595567867036,0.0602866035841226,12.8307434399151,0.43719426974144,15.867767586882,0.008711688210106,0.0969529085872576,9.69529085872576,2,82.9727725770168,0.656335942458219,7.75623268698061,17.3521705354963,0,396.508019341363,396.230834960938,0.498159593604141
+7329,310574,3797798,310674,3797698,28,73,23.2686980609418,0.226749613480581,19.2528917491931,0.837301587301587,NA,0.0223997976955261,0.238227146814404,23.8227146814404,3,88.4809833399446,0.819821746880571,16.3434903047091,22.0853658276935,0,397.091133117676,396.768493652344,0.470151922056412
+7330,310574,3797698,310674,3797598,29,73,24.7368421052632,0.0845812050284705,15.4171693753099,0.491550925925926,15.5867255757432,0.0158112446013312,0.0894736842105263,8.94736842105263,3,79.7402919799336,0.764657308009909,7.10526315789474,35.494510047576,0,397.192542182075,396.935150146484,0.513589456046673
+7331,310574,3797598,310674,3797498,30,73,24.3767313019391,0.0791824047075043,16.8034590659768,0.589655172413793,12.6435415049719,0.00983068884759184,0.074792243767313,7.4792243767313,6,58.5945078365352,0.597827600612728,1.93905817174515,22.8434899118212,0,397.292032877604,396.962310791016,0.776839829291877
+7332,310574,3797498,310674,3797398,31,73,30.4709141274238,0.148467008826571,26.6774507524703,0.72767807688047,15.5867256623399,0.0119087305452252,0.0637119113573407,6.37119113573407,4,65.4177648825388,0.673652202498356,2.77008310249307,28.7821801849034,0,397.891292995877,397.153930664062,1.19671228345382
+7333,310574,3797398,310674,3797298,32,73,32.6869806094183,0.159264609468503,24.1378479786264,0.749509803921569,15.5867256623399,0.0116808468276575,0.0249307479224377,2.49307479224377,5,29.4343538299179,0.316287878787879,0.831024930747922,23.936956776513,5.19557523727417,399.718078613281,398.216369628906,1.32472454649794
+7334,310574,3797298,310674,3797198,33,73,30.7894736842105,0.315829818776523,27.4877858586533,0.766381766381766,NA,0.00685240697800366,0.0473684210526316,4.73684210526316,2,74.1220485492802,0.688970738694496,3.94736842105263,34.1612473328908,0,401.351609971788,400.656188964844,1.2646666854354
+7335,310574,3797198,310674,3797098,34,73,34.3490304709141,0.334725619899905,28.7698414778817,0.772849462365591,NA,0.0113411870355917,0.0941828254847645,9.41828254847645,4,72.0395041923024,0.664864569681083,3.32409972299169,28.0673922650954,0,402.653376261393,401.266418457031,1.38651017354515
+7336,310574,3797098,310674,3796998,35,73,15.7894736842105,0.0384664522868842,8.71289181321853,0.540863376389692,19.3528615678379,0.018447367635314,0.0609418282548476,6.09418282548476,5,65.4293407158553,0.749436057608884,4.70914127423823,32.9432540590113,5.19557523727417,403.668328179253,403.235382080078,1.16148533694921
+7337,310574,3796998,310674,3796898,36,73,34.9030470914127,0.340124420220871,29.0783016671173,0.777777777777778,NA,0.00955029566485839,0.0415512465373961,4.15512465373961,4,60.4335506156357,0.525748817656332,2.77008310249307,17.4416272481283,5.19557523727417,403.943926493327,402.296264648438,2.08622943175761
+7338,310574,3796898,310674,3796798,37,73,44.2105263157895,0.226749613480581,19.4886054706609,0.760896637608966,15.5867256623399,0.00156294792801705,0.0289473684210526,2.89473684210526,2,60.5956029686986,0.725383920505872,1.84210526315789,16.215294491161,11.6176595687866,404.940585666233,403.548126220703,1.91334143598194
+7339,310574,3796798,310674,3796698,38,73,34.3490304709141,0.0669451239799809,10.0064381385733,0.594461780929866,16.9630909535968,0.00908445979086708,0.0304709141274238,3.04709141274238,5,37.2566954775346,0.381142857142857,1.10803324099723,10.141827063127,5.19557523727417,406.044932047526,405.410186767578,0.940031687001594
+7340,310574,3796698,310674,3796598,39,73,11.0803324099723,0.107976006419324,22.7842542829055,0.6875,NA,0.0185826768357096,0.119113573407202,11.9113573407202,5,75.679416586226,0.668894129979036,7.4792243767313,24.2426605668179,5.19557523727417,406.710962931315,406.240386962891,0.761064820768412
+7341,310574,3796598,310674,3796498,40,73,19.6675900277008,0.0958287056971501,12.4447262551935,0.559701492537313,44.3910137562246,0.0279122413744706,0.171745152354571,17.1745152354571,7,75.1279954814375,0.720519013997275,8.31024930747922,24.1305943381402,0,407.652296278212,407.345001220703,0.340825955330855
+7342,310574,3796498,310674,3796398,41,73,24.6537396121884,0.0800822047609987,12.1463472125468,0.488761174968072,13.8548672554132,0.01562404839784,0.127423822714681,12.7423822714681,5,81.2335200304973,0.75022385022385,10.5263157894737,23.3973718415136,7.34765291213989,407.282333374023,406.66357421875,0.500337805776301
+7343,310574,3796398,310674,3796298,42,73,21.0526315789474,0.107976006419324,19.9329441914725,0.696675444371297,14.6953058096335,0.0236233392083417,0.163157894736842,16.3157894736842,6,80.9524189332298,0.65699976706266,11.0526315789474,21.977181765341,5.19557523727417,406.660614013672,406.066101074219,0.846479773943079
+7344,310574,3796298,310674,3796198,43,73,13.8504155124654,0.0337425020060388,8.20809661432544,0.291666666666667,18.797767693416,0.0200262482976541,0.130193905817175,13.0193905817175,6,75.769865601093,0.683837579617834,7.4792243767313,32.744075765001,7.34765291213989,405.494911193848,404.471466064453,0.985280502833951
+7345,310574,3796198,310674,3796098,44,73,31.8559556786704,0.155215509227778,24.1738866972848,0.737389023405973,15.5867256623399,0.00912823116623309,0.0415512465373961,4.15512465373961,3,62.866481365852,0.762874408828166,3.04709141274238,18.4327671686808,10.3911504745483,403.895256890191,403.482666015625,0.744053299484921
+7346,310574,3796098,310674,3795998,45,73,32.1329639889197,0.15656520930802,16.4423110290331,0.767981150793651,25.9778761038998,0.022639287869079,0.0692520775623269,6.92520775623269,5,66.2701049946562,0.623958333333333,4.43213296398892,6.64454563140869,0,401.760078430176,400.469055175781,1.52750297034597
+7347,310574,3795998,310674,3795898,46,73,16.3157894736842,0.0557876033166508,14.9543849580305,0.539484887186037,17.3185840692665,0.0150025904629537,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,17.6649555206299,15.5867252349854,400.151584201389,399.888458251953,0.548547003397481
+7348,310574,3795898,310674,3795798,47,73,25.207756232687,0.0614113536509906,16.9139801313208,0.547388357256778,15.5867256623399,0.0138749807508381,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,5.19557523727417,5.19557523727417,399.775278727214,399.607940673828,0.286892566024263
+7349,310574,3795798,310674,3795698,48,73,15.5124653739612,0.0302332817974107,6.99445093993013,0.356019536019536,22.831983635571,0.0198115883224363,0.0997229916897507,9.97229916897507,3,80.0152431790588,0.814871794871795,8.31024930747922,19.0673202541139,7.34765291213989,399.684983995226,399.585205078125,0.254725462777314
+7350,310574,3795698,310674,3795598,49,73,20.4986149584488,0.19975561187575,26.5192783702051,0.68018018018018,NA,0.0122400520653919,0.0498614958448753,4.98614958448753,2,76.2556314648576,0.883057985098801,4.70914127423823,26.8650927013821,18.7329120635986,399.674112955729,399.554992675781,0.195302478675914
+7351,310574,3795598,310674,3795498,50,73,17.6315789473684,0.0361719621504736,10.4426337106399,0.326296296296296,13.5084955116783,0.015041165437747,0.05,5,6,60.9471799505904,0.600725952813067,3.68421052631579,28.7710253564935,10.3911504745483,399.602901882595,399.564361572266,0.102207227428277
+7352,310574,3795498,310674,3795398,51,73,19.6675900277008,0.0479143528485751,10.9342835492543,0.540374180999181,11.6900442077864,0.0205636756049457,0.0775623268698061,7.75623268698061,3,76.8340204941384,0.735001668335002,5.81717451523546,22.2837243420737,5.19557523727417,399.566604614258,399.496765136719,0.139486942704821
+7353,310574,3795398,310674,3795298,52,73,13.8504155124654,0.0449900026747184,7.1430994331045,0.391534391534392,14.9924457085776,0.01489656464599,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,51.9867950439453,37.4658241271973,399.406019422743,399.338592529297,0.148484663372426
+7354,310574,3795298,310674,3795198,53,73,18.005540166205,0.0584870034771339,11.0336115415909,0.400423728813559,19.0504424761932,0.0142428403861052,0.105263157894737,10.5263157894737,2,81.6567000400753,0.804855275443511,6.64819944598338,38.8247382515355,18.7329120635986,399.395858764648,399.33056640625,0.132776947463127
+7355,310574,3795198,310674,3795098,54,73,29.2105263157895,0.0749083544534061,11.1036598598555,0.455623543123543,13.6021924295535,0.0107029289488932,0.0868421052631579,8.68421052631579,2,80.6132297742317,0.817483189241114,6.05263157894737,4.73505274454753,0,399.612398783366,399.484924316406,0.199171307749043
+7356,310574,3795098,310674,3794998,55,73,30.4709141274238,0.0742335044132853,11.9435985079639,0.444890940872473,23.5399893957496,0.0136308868664689,0,0,0,NA,NA,0,NA,NA,399.654100206163,399.491943359375,0.339280914018986
+7357,310574,3794998,310674,3794898,56,73,21.0526315789474,0.0512886030491789,9.29711571686094,0.411954365079365,19.2364050752083,0.0214050448499781,0.07202216066482,7.20221606648199,3,73.3521657250471,0.816017473607572,4.43213296398892,12.0652153308575,0,399.987897237142,399.426391601562,0.604834353632839
+7358,310574,3794898,310674,3794798,57,73,16.3434903047091,0.0530882031561677,10.5175355007379,0.603858024691358,22.5141592034498,0.0100150615903167,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,8.86940169334412,7.34765291213989,400.606536865234,399.897277832031,0.883213974258427
+7359,310574,3794798,310674,3794698,58,73,42.3684210526316,0.0869206851675559,9.65413306715092,0.385330788804071,17.3579706530568,0.0133981382300697,0.0473684210526316,4.73684210526316,4,61.4613402365432,0.688970738694496,2.89473684210526,6.37066072887844,0,401.223172505697,401.029327392578,0.428536542716486
+7360,310574,3794698,310674,3794598,59,73,29.3628808864266,0.0715341042528022,12.7082497229449,0.412329234972678,21.6697550706461,0.0232284537256454,0.0831024930747922,8.31024930747922,3,74.1802338719938,0.710648005425735,4.70914127423823,8.80276379585266,0,401.348765055339,401.190216064453,0.232938174126236
+7361,310574,3794598,310674,3794498,60,73,22.7146814404432,0.0737836043865381,14.6186577277734,0.478923414940364,35.9712699313804,0.0168189064246881,0.0554016620498615,5.54016620498615,3,69.7290287990643,0.658499668905496,3.32409972299169,11.9449076652527,5.19557523727417,401.213684082031,401.131988525391,0.145502156846001
+7362,310574,3794498,310674,3794398,61,73,9.69529085872576,0.0314930018723029,8.87241926306091,0.523809523809524,17.3185839653505,0.0308032648752694,0.0914127423822715,9.14127423822715,5,66.7551471170121,0.551603432700994,3.32409972299169,20.6317177396832,5.19557523727417,401.155175103082,401.131439208984,0.0670325658141724
+7363,310574,3794398,310674,3794298,62,73,19.2105263157895,0.0656854039050888,9.58459269653213,0.546325322187391,16.7243041674623,0.0260026120666513,0.0631578947368421,6.31578947368421,4,71.1521963799189,0.578651685393258,4.21052631578947,10.4808201988538,0,401.180297851562,401.148559570312,0.0547600648854248
+7364,310574,3794298,310674,3794198,63,73,0,NA,NA,NA,NA,0.0256812330444216,0.0941828254847645,9.41828254847645,2,81.7644389160493,0.76343381389253,7.20221606648199,20.5393830748165,5.19557523727417,401.191674126519,401.16748046875,0.0733420980989577
+7365,310574,3794198,310674,3794098,64,73,0.277008310249307,0.0026994001604831,0,0,NA,0.0243144299164772,0.0470914127423823,4.70914127423823,5,50.3142874916576,0.538255813953488,1.93905817174515,37.521946514354,5.19557523727417,401.336423238118,401.217468261719,0.196572896437595
+7366,310574,3794098,310674,3793998,65,73,0,NA,NA,NA,NA,0.0211102745474856,0.0637119113573407,6.37119113573407,8,47.2004188138741,0.347304404996713,1.93905817174515,37.1928918672645,5.19557523727417,401.896453857422,401.610717773438,0.55467462319525
+7367,310574,3793998,310674,3793898,66,73,17.1052631578947,0.0438652526078504,9.47926975280951,0.551416947250281,15.5867255584239,0.0159488946473606,0.0315789473684211,3.15789473684211,3,54.4084204461007,0.514066496163683,1.57894736842105,6.52239314715068,5.19557523727417,402.753423055013,402.341156005859,0.329551880387821
+7368,310574,3793898,310674,3793798,67,73,9.97229916897507,0.0485892028886958,9.63453609764696,0.625,31.1734510129318,0.0200177856866584,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,9.47569778230455,5.19557523727417,402.71435546875,402.611328125,0.186163782543978
+7369,310574,3793798,310674,3793698,68,73,9.14127423822715,0.0890802052959424,24.2295303356856,0.565656565656566,NA,0.0257206095397567,0.113573407202216,11.3573407202216,2,86.3024182934442,0.787454710144928,10.5263157894737,15.1471587274133,5.19557523727417,402.68451944987,402.582061767578,0.175410826417358
+7370,310574,3793698,310674,3793598,69,73,2.21606648199446,0.0107976006419324,4.33004158577964,0.277777777777778,15.5867255064659,0.0212074532887061,0.0941828254847645,9.41828254847645,3,81.7633850208794,0.783147662734819,8.31024930747922,26.4157273068148,10.3911504745483,402.740516662598,402.643524169922,0.211029511156898
+7371,310574,3793598,310674,3793498,70,73,38.1578947368421,0.130471007756683,9.28681513173668,0.36682427107959,26.1493637043753,0.0162554137045318,0.0815789473684211,8.15789473684211,2,81.4353578141461,0.825787965616046,7.10526315789474,6.40119763343565,0,402.866319444444,402.675109863281,0.273205226789675
+7372,310574,3793498,310674,3793398,71,73,8.58725761772853,0.0418407024874881,8.92507086423945,0.576515151515151,41.5646017662397,0.0250598585587548,0.21606648199446,21.606648199446,2,92.7970590207708,0.879833051672044,21.3296398891967,12.8868956932655,0,403.396781921387,403.027221679688,0.72121465200193
+7373,310574,3793398,310674,3793298,72,73,0,NA,NA,NA,NA,0.0219914205716984,0.0498614958448753,4.98614958448753,3,69.728600354953,0.688154626930137,3.8781163434903,50.4777952829997,31.1734504699707,404.11030069987,403.711059570312,0.634330954881196
+7374,310574,3793298,310674,3793198,73,73,14.404432132964,0.140368808345121,19.5970359850817,0.762820512820513,NA,0.0196741351027718,0.0914127423822715,9.14127423822715,3,77.8901532994467,0.796183378500452,6.92520775623269,52.2649540467696,5.19557523727417,404.768274943034,403.978332519531,0.810720816560521
+7375,310574,3793198,310674,3793098,74,73,0,NA,NA,NA,NA,0.0150298893289172,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.392,1.31578947368421,47.1325378417969,41.8880653381348,405.435401068793,405.272796630859,0.387343446192276
+7376,310574,3793098,310674,3792998,75,73,6.64819944598338,0.0323928019257972,6.03682781502351,0.326086956521739,41.8880665741566,0.0108423306698778,0.0249307479224377,2.49307479224377,2,56.7440577704869,0.658143939393939,1.66204986149584,22.6800666915046,7.34765291213989,405.256469726562,405.162292480469,0.147334254873364
+7377,310574,3792998,310674,3792898,76,73,5.54016620498615,0.0179960010698873,6.39453831827476,0.338888888888889,18.4561625189671,0.0221194232386385,0.0193905817174515,1.93905817174515,2,53.6944186091776,0.872528248587571,1.66204986149584,15.3004283905029,10.3911504745483,405.090355767144,404.960784912109,0.0940423869327245
+7378,310574,3792898,310674,3792798,77,73,0,NA,NA,NA,NA,0.0191671136631875,0.0249307479224377,2.49307479224377,2,55.9701914038378,0.572679924242424,1.38504155124654,60.2626628875732,10.3911504745483,405.303988138835,405.134643554688,0.493522303330527
+7379,310574,3792798,310674,3792698,78,73,0,NA,NA,NA,NA,0.0215383286127498,0.0473684210526316,4.73684210526316,5,54.9255989126034,0.494577450378555,1.84210526315789,20.2276832792494,11.6176595687866,406.169206407335,405.627593994141,1.23282235512881
+7380,310574,3792698,310674,3792598,79,73,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.019069175286879,0.0304709141274238,3.04709141274238,3,53.369110064677,0.518666666666667,1.66204986149584,41.2134777415882,34.8529777526855,407.369313557943,406.364227294922,1.00351031817718
+7381,310574,3792598,310674,3792498,80,73,0,NA,NA,NA,NA,0.0130928255807489,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,46.9040565490723,46.7601776123047,407.940717909071,407.192993164062,1.35113435414679
+7382,310574,3792498,310674,3792398,81,73,0,NA,NA,NA,NA,0.0127386045133283,0,0,0,NA,NA,0,NA,NA,408.280517578125,407.227661132812,1.58236243893078
+7383,310574,3792398,310674,3792298,82,73,23.9473684210526,0.122822707301981,16.3246462043314,0.76547619047619,10.3911504415599,0.0211273314760643,0.0868421052631579,8.68421052631579,1,87.058227229868,0.83776283488099,8.68421052631579,7.66827248082016,0,408.747182210286,407.678771972656,1.71564017377252
+7384,310574,3792298,310674,3792198,83,73,17.7285318559557,0.0575872034236395,11.1128245157592,0.607752360203341,23.1812101189317,0.0221131266712455,0.0941828254847645,9.41828254847645,3,78.4009372612548,0.74371996505024,6.37119113573407,5.80031226663028,0,408.29310353597,407.229125976562,1.3030875316042
+7385,310574,3792198,310674,3792098,84,73,55.4016620498615,0.134970008024155,15.4660201418838,0.672418161548596,19.4834069610193,0.0201320290204152,0.113573407202216,11.3573407202216,3,80.8673376377665,0.771105072463768,7.75623268698061,3.08023299240484,0,406.126612345378,405.116363525391,1.10891709694786
+7386,310574,3792098,310674,3791998,85,73,52.3545706371191,0.170062210110435,18.0773928554777,0.600093028664457,19.0504424761932,0.0284570328262905,0.196675900277008,19.6675900277008,4,88.252491120126,0.830703448275862,17.7285318559557,7.67680673867884,0,404.985026041667,404.841613769531,0.296491092949284
+7387,310574,3791998,310674,3791898,86,73,43.9473684210526,0.225399913400339,29.3319162907353,0.724254742547426,20.7823008831198,0.0204764117844637,0.0894736842105263,8.94736842105263,5,69.0983622501493,0.62737407101569,3.94736842105263,6.9397929836722,0,404.69130452474,404.529357910156,0.222833695704793
+7388,310574,3791898,310674,3791798,87,73,26.5927977839335,0.129571207703189,20.0529945301906,0.679218106995885,25.9778761038998,0.0192586268400554,0.0609418282548476,6.09418282548476,5,66.2350014959758,0.498872115217769,3.8781163434903,6.48944083127108,0,404.31603664822,403.639099121094,0.458267451066441
+7389,310574,3791798,310674,3791698,88,73,34.9030470914127,0.170062210110435,17.1508458003821,0.755148514851485,10.3911503376439,0.0301660342665049,0.199445983379501,19.9445983379501,2,91.4694152377186,0.744271585428984,18.5595567867036,14.9895788166258,0,404.993443806966,404.720275878906,0.345760335919024
+7390,310574,3791698,310674,3791598,89,73,29.9168975069252,0.145767608666088,17.2641177938218,0.752176505664878,16.4298513045218,0.0363462097715319,0.301939058171745,30.1939058171745,5,88.4101192685771,0.781846748851825,18.5595567867036,13.5580246032925,0,405.250406901042,405.189971923828,0.115125468628401
+7391,310574,3791598,310674,3791498,90,73,16.8421052631579,0.0863808051354593,11.2447513705921,0.477150537634409,69.3176191804954,0.0289175725550817,0.228947368421053,22.8947368421053,3,92.7901946899659,0.841021688869316,22.3684210526316,15.4824231630084,0,405.431248982747,405.3076171875,0.182601352794865
+7392,310574,3791498,310674,3791398,91,73,0,NA,NA,NA,NA,0.0187693742499961,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,41.4566694895426,26.4923400878906,405.878516303168,405.610656738281,0.678247604723093
+7393,310574,3791398,310674,3791298,92,73,2.21606648199446,0.0215952012838648,5.38798381594044,0.5625,NA,0.0267661540935763,0.0277008310249307,2.77008310249307,3,50.7353252250488,0.683541529695376,1.38504155124654,20.6040999889374,5.19557523727417,407.052164713542,406.524475097656,0.960570825139568
+7394,310574,3791298,310674,3791198,93,73,6.09418282548476,0.0593868035306282,9.39317200358194,0.727272727272727,NA,0.018312940612652,0.038781163434903,3.8781163434903,2,67.1322948478631,0.687896253602305,2.77008310249307,10.5126692908151,0,407.116516113281,406.451782226562,1.04369678427063
+7395,310574,3791198,310674,3791098,94,73,1.57894736842105,0.0161964009628986,7.79336275323294,0.277777777777778,NA,0.0279069099590599,0.181578947368421,18.1578947368421,4,88.2787664403727,0.767744678589461,16.0526315789474,48.2523663216743,0,406.436729431152,405.930755615234,0.826869311501839
+7396,310574,3791098,310674,3790998,95,73,22.7146814404432,0.221350813159614,27.0270677353807,0.796747967479675,NA,0.0256375572827333,0.18005540166205,18.005540166205,2,90.7501501828133,0.82731403970342,17.1745152354571,3.39042521256667,0,405.96590508355,405.796295166016,0.432784620443413
+7397,310574,3790998,310674,3790898,96,73,24.3767313019391,0.237547214122513,25.8042808091308,0.757575757575758,NA,0.0518231900152734,0.426592797783933,42.6592797783933,5,92.4353695142673,0.882914255475325,38.2271468144044,6.3999016718431,0,406.012090047201,405.787536621094,0.426675467967277
+7398,310574,3790898,310674,3790798,97,73,5.54016620498615,0.053988003209662,10.0107192990595,0.641666666666667,NA,0.0410353420062427,0.337950138504155,33.7950138504155,3,89.4925403121144,0.794960146916829,18.5595567867036,41.3929579726985,0,406.160515679253,405.855194091797,0.527787983671962
+7399,310574,3790798,310674,3790698,98,73,7.89473684210526,0.0809820048144931,11.4367162843447,0.733333333333333,NA,0.0357362198138282,0.276315789473684,27.6315789473684,5,87.4156586320079,0.802597402597403,17.6315789473684,30.7579045295715,0,406.926111857096,405.984527587891,1.58785115131175
+7400,310574,3790698,310674,3790598,99,73,0.831024930747922,0.00404910024072465,1.29889380519499,0.0833333333333333,36.3690261817537,0.0491116018523326,0.464912280701754,46.4912280701754,3,91.2808551619838,0.795194251066697,17.8362573099415,55.1940418909181,0,407.862444559733,406.126892089844,2.49218150937259
+7401,310674,3800598,310774,3800498,0,74,28.4210526315789,0.036441902166509,7.63095267863858,0.461502434903598,13.1422516571172,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.241226196289,385.430908203125,0.633038510532148
+7402,310674,3800498,310774,3800398,1,74,32,0.0493604600773878,8.94905465280466,0.624398220826792,15.3320342758477,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.03067779541,386.798461914062,0.326932258586921
+7403,310674,3800398,310774,3800298,2,74,33.1578947368421,0.0566874033701251,12.0884276010466,0.41526885671982,11.1085096695687,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.302965164185,387.061096191406,0.236416258666748
+7404,310674,3800298,310774,3800198,3,74,42.8947368421053,0.0550002782698238,11.0684232242814,0.485634355580733,10.3911503896001,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.684580485026,387.291320800781,0.314354216089104
+7405,310674,3800198,310774,3800098,4,74,44.4736842105263,0.0570248283901854,12.9531678186,0.533833953570796,12.0833176047753,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.840389251709,387.571380615234,0.294289081615317
+7406,310674,3800098,310774,3799998,5,74,29.25,0.0526383031294019,12.1587723200622,0.501213862765587,14.9252146107183,0.0235720804223092,0.28125,28.125,3,85.0361739215747,0.871853546910755,23.75,26.7528384102715,0,388.238838195801,387.691589355469,0.412806707827488
+7407,310674,3799998,310774,3799898,6,74,43.1578947368421,0.0885403252638144,11.6306345247565,0.686779241337514,16.6258405817952,0.0535838582258868,0.202631578947368,20.2631578947368,4,84.3291394328581,0.843234323432343,16.5789473684211,2.43084158216204,0,388.824340820312,388.547912597656,0.299953899052596
+7408,310674,3799898,310774,3799798,7,74,58.1578947368421,0.0852239193523649,13.8600437881406,0.63850303081118,10.5663659903241,0.0541277943110273,0.221052631578947,22.1052631578947,2,92.3273606299465,0.965536005804462,21.5789473684211,0.804077120054336,0,389.139399210612,389.067718505859,0.143518291668167
+7409,310674,3799798,310774,3799698,8,74,63.4210526315789,0.162638859669049,14.1510332529963,0.600309314808356,11.6900442077836,-0.0196244133297832,0,0,0,NA,NA,0,NA,NA,389.187129974365,389.110443115234,0.136545945401178
+7410,310674,3799698,310774,3799598,9,74,25.5,0.0550677632738358,12.0796958543793,0.612415329768271,11.4302654857119,0.0343389368722274,0.2925,29.25,3,93.3203446785227,0.879991999466631,27.75,28.6794159432762,5.19557523727417,389.252334594727,389.152618408203,0.173723585807717
+7411,310674,3799598,310774,3799498,10,74,19.7368421052632,0.0506137530090403,10.5333190957587,0.433459595959596,12.9889379740111,0.0125703060316339,0.0631578947368421,6.31578947368421,3,72.683955707427,0.803370786516854,5,25.2865944902102,7.34765291213989,389.471437454224,389.256744384766,0.30708478872383
+7412,310674,3799498,310774,3799398,11,74,8.94736842105263,0.091779605456393,15.617397983,0.725490196078431,NA,0.0294826832230013,0.278947368421053,27.8947368421053,2,93.8199699420986,0.920128406007567,27.1052631578947,50.309483177257,10.3911504745483,390.123414993286,389.541229248047,0.840110836867633
+7413,310674,3799398,310774,3799298,12,74,33.4210526315789,0.171411910190616,24.5383311562367,0.745194805194805,10.3911504415562,0.00995152710835866,0.25,25,2,92.743251094879,0.913725490196078,23.9473684210526,27.7044862947966,7.34765291213989,391.631253560384,390.671569824219,1.20622776655488
+7414,310674,3799298,310774,3799198,13,74,26.75,0.0962786057238633,18.090200820095,0.594128383190883,17.3185840692604,-0.0285798497149517,0.07,7,2,77.5660681016795,0.78494623655914,4.25,28.6008019447327,15.5867252349854,392.189088821411,391.406066894531,0.700418450819649
+7415,310674,3799198,310774,3799098,14,74,39.4736842105263,0.101227506018081,22.0699889776171,0.611616438339028,14.4164476873915,-0.0300052605519939,0.131578947368421,13.1578947368421,1,90.5004389364175,0.972905525846702,13.1578947368421,14.8445937919617,5.19557523727417,392.357915242513,392.169616699219,0.247023073252423
+7416,310674,3799098,310774,3798998,15,74,13.9473684210526,0.0286136417011108,7.60279351840729,0.376497584541063,25.6213080485057,0.00870880631907647,0.207894736842105,20.7894736842105,3,88.1210984525118,0.837683910773612,13.4210526315789,20.7496277169336,0,392.584394454956,392.318603515625,0.250197167466423
+7417,310674,3798998,310774,3798898,16,74,15,0.0384664522868706,11.5592270467397,0.368059995737425,19.4834070259618,-0.00382402189172449,0.0473684210526316,4.73684210526316,2,74.8181181783648,0.80560671168406,4.21052631578947,33.8406153784858,11.6176595687866,392.885676066081,392.768402099609,0.163550867008858
+7418,310674,3798898,310774,3798798,17,74,30.25,0.05443790323639,12.2418192424021,0.390467412492584,11.3129278214156,-0.00929105790219182,0,0,0,NA,NA,0,NA,NA,393.126142501831,392.9326171875,0.206498014399183
+7419,310674,3798798,310774,3798698,18,74,68.4210526315789,0.140368808345072,8.24755086657508,0.309791572949468,14.0059288913325,-0.0143778649726492,0,0,0,NA,NA,0,NA,NA,393.492177327474,393.302093505859,0.259770837557471
+7420,310674,3798698,310774,3798598,19,74,43.1578947368421,0.147567208773024,13.7875719217992,0.423021060275962,22.5141591688075,-0.00988966283642329,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,11.6176595687866,11.6176595687866,393.66163444519,393.586486816406,0.0784762887328155
+7421,310674,3798598,310774,3798498,20,74,26.0526315789474,0.0534481231775465,11.6399149335615,0.541760446868806,11.7425850380389,0.0051144496685849,0.0815789473684211,8.15789473684211,3,81.0575527633225,0.804011461318052,7.36842105263158,18.1192495592179,0,393.675875345866,393.653167724609,0.0344012057416191
+7422,310674,3798498,310774,3798398,21,74,3.75,0.0101227506018081,2.55849005412284,0.181818181818182,32.5866573196676,0.0276599548251124,0.2525,25.25,1,94.7890822083159,0.815222010754079,25.25,21.3207092379579,0,393.633544921875,393.616333007812,0.0276469849298881
+7423,310674,3798398,310774,3798298,22,74,12.8947368421053,0.0440902026212084,10.7393913243907,0.320170344560588,12.1230087792074,0.0188702948784339,0.144736842105263,14.4736842105263,4,86.8758491754968,0.778461538461538,13.1578947368421,22.9207252415744,5.19557523727417,393.656354268392,393.626098632812,0.052521110466545
+7424,310674,3798298,310774,3798198,23,74,5.78947368421053,0.0296934017653036,6.83645725219581,0.472222222222222,81.3236149805195,0.0282214233663437,0.218421052631579,21.8421052631579,3,89.5811171336182,0.782404544309306,18.6842105263158,25.7241274190236,5.19557523727417,393.786209106445,393.663879394531,0.166642953814609
+7425,310674,3798198,310774,3798098,24,74,17.8947368421053,0.183559210912786,16.4027739123156,0.83578431372549,NA,0.0307314057381039,0.234210526315789,23.4210526315789,5,85.9502650661409,0.794678942704619,18.1578947368421,21.7686568913835,0,394.108642578125,393.843505859375,0.348271067399454
+7426,310674,3798098,310774,3797998,25,74,9.5,0.0512886030491608,9.41230182175165,0.604838709677419,36.3690261817537,0.0181389698558178,0.0425,4.25,8,37.4960621779976,0.373368146214099,1.25,37.5231397292193,5.19557523727417,394.813486099243,394.089324951172,0.694316885285381
+7427,310674,3797998,310774,3797898,26,74,6.31578947368421,0.0323928019257858,7.70920648246877,0.583333333333333,57.1513268570416,0.02815413798474,0.202631578947368,20.2631578947368,2,91.9352757378824,0.926227916909338,19.7368421052632,29.7337234360831,7.34765291213989,396.048707962036,395.369598388672,0.905959421929779
+7428,310674,3797898,310774,3797798,27,74,14.7368421052632,0.151166408987,26.3616797869483,0.714285714285714,NA,0.0107120582037169,0.0657894736842105,6.57894736842105,3,70.214083732082,0.652112676056338,3.68421052631579,36.7622765731812,5.19557523727417,397.298711140951,396.401763916016,1.12130324922985
+7429,310674,3797798,310774,3797698,28,74,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.059581024942834,0.502631578947368,50.2631578947368,1,97.7802762834627,0.897767016411084,50.2631578947368,47.9421139512387,5.19557523727417,398.13298034668,397.381866455078,0.75803731156464
+7430,310674,3797698,310774,3797598,29,74,11.25,0.121473007221697,25.3969952825326,0.659259259259259,NA,0.0179031981598746,0.0575,5.75,5,62.873531266578,0.528440907751253,3.25,13.0561504778655,5.19557523727417,398.521418253581,397.637145996094,0.912659756374016
+7431,310674,3797598,310774,3797498,30,74,12.6315789473684,0.0647856038515715,12.1119015855649,0.342198581560284,88.324778753228,0.0135781286051497,0.0631578947368421,6.31578947368421,6,58.4842725557335,0.606741573033708,2.89473684210526,15.7737037142118,5.19557523727417,399.258754730225,397.971282958984,1.14616131688041
+7432,310674,3797498,310774,3797398,31,74,30.5263157894737,0.156565209307965,18.6282891485891,0.590083073727934,16.4298513045212,0.016854356009265,0.0894736842105263,8.94736842105263,7,69.723635432846,0.588150289017341,5.26315789473684,12.0086044563967,0,399.720980326335,398.765228271484,1.09011379402877
+7433,310674,3797398,310774,3797298,32,74,13.1578947368421,0.0449900026747025,9.58753136404194,0.531893004115226,21.5999733054795,0.0160029058040293,0.0868421052631579,8.68421052631579,3,81.2557289033997,0.858042480520867,7.89473684210526,15.8658296267192,0,400.390058517456,399.655487060547,0.733470488672744
+7434,310674,3797298,310774,3797198,33,74,16.25,0.0877305052156698,16.2092846873961,0.604885057471264,41.5646013505757,0.0373219148049066,0.3375,33.75,2,92.476995134978,0.779107225034514,19.75,22.7975728635435,0,400.568400065104,400.389251708984,0.586781159970256
+7435,310674,3797198,310774,3797098,34,74,2.10526315789474,0.0215952012838572,6.03059482826454,0.5,NA,0.0372512109062978,0.321052631578947,32.1052631578947,5,87.3508813711559,0.793398575888316,15.5263157894737,45.6020585513506,10.3911504745483,400.706939697266,400.414855957031,0.884268008595808
+7436,310674,3797098,310774,3796998,35,74,16.3157894736842,0.0836814049749466,15.4137764073953,0.434722222222222,20.7823006752878,0.0284052121067744,0.268421052631579,26.8421052631579,4,88.3394260600337,0.820733577072768,17.8947368421053,21.8334880108927,5.19557523727417,401.049120585124,400.347015380859,1.26957121768848
+7437,310674,3796998,310774,3796898,36,74,13.1578947368421,0.0674850040120537,7.66048704261723,0.379251700680272,36.7382647004223,0.0276900474728456,0.231578947368421,23.1578947368421,3,86.4461522398345,0.75961957944333,11.5789473684211,20.1519912372936,0,401.333547592163,400.917327880859,1.01418499409574
+7438,310674,3796898,310774,3796798,37,74,10.75,0.0580371034503662,7.88792612679607,0.475609756097561,41.564601766225,0.0319189803216068,0.3,30,6,85.0288958777215,0.744429882044561,14.25,25.9436383843422,7.34765291213989,402.187408447266,401.312896728516,1.71635599474911
+7439,310674,3796798,310774,3796698,38,74,28.1578947368421,0.0962786057238633,13.561719151059,0.515423976608187,13.8548671168586,0.0121220393542181,0.05,5,4,64.7230109332466,0.637023593466425,3.42105263157895,31.0524830065275,0,404.67950630188,402.004058837891,2.88255581300417
+7440,310674,3796698,310774,3796598,39,74,5,0.0512886030491608,8.75891949192387,0.692982456140351,NA,0.026373441462209,0.15,15,9,67.3427707544597,0.591836734693877,5,30.5996139258669,11.6176595687866,407.613716125488,406.90380859375,0.972344231225151
+7441,310674,3796598,310774,3796498,40,74,14.7368421052632,0.0503888029956667,8.19192590200546,0.472222222222222,20.1880209813102,0.0406782770716691,0.415789473684211,41.5789473684211,2,93.4267974127401,0.817023920472196,27.3684210526316,21.1607531746732,0,408.250849405924,407.763824462891,0.596583506763505
+7442,310674,3796498,310774,3796398,41,74,29.4736842105263,0.302332817974001,25.1674302203214,0.778273809523809,NA,0.0195943150436793,0.157894736842105,15.7894736842105,8,75.4972801760414,0.714543269230769,9.47368421052632,12.7156794468562,0,408.190912246704,406.994110107422,1.58369677952517
+7443,310674,3796398,310774,3796298,42,74,25,0.269940016048215,26.1888120351707,0.796666666666667,NA,0.00540731465990575,0.0475,4.75,6,50.0146906253549,0.420762059914924,1.5,18.243185369592,5.19557523727417,408.364507039388,406.017913818359,2.26834628489414
+7444,310674,3796298,310774,3796198,43,74,1.05263157894737,0.0107976006419286,3.97663195763084,0.333333333333333,NA,0.0241357446596866,0.1,10,4,76.385105529276,0.770723104056437,6.84210526315789,41.7546751122726,15.5867252349854,406.042463302612,404.328216552734,1.77686510618503
+7445,310674,3796198,310774,3796098,44,74,0,NA,NA,NA,NA,0.0137492567063179,0.0763157894736842,7.63157894736842,3,75.7568148445869,0.746620597684427,4.73684210526316,39.8719075959304,23.2353191375732,403.863632202148,403.111053466797,1.16199849551744
+7446,310674,3796098,310774,3795998,45,74,0,NA,NA,NA,NA,0.0138924883900789,0.0736842105263158,7.36842105263158,3,77.3883143767088,0.832070707070707,6.31578947368421,41.1985503605434,25.977876663208,402.170701980591,401.204650878906,0.939361305021159
+7447,310674,3795998,310774,3795898,46,74,0,NA,NA,NA,NA,0.0287370082056077,0.1575,15.75,2,86.1757201894515,0.82735365524683,10.75,55.4881074693468,31.1734504699707,401.261189778646,400.619262695312,0.761163666240125
+7448,310674,3795898,310774,3795798,47,74,0.789473684210526,0.00809820048144644,3.46371677921464,0.222222222222222,NA,0.0157798557004227,0.0184210526315789,1.84210526315789,2,50.7318402666116,0.745308310991957,1.31578947368421,37.315310886928,31.1734504699707,400.803541183472,400.043914794922,0.791815586206496
+7449,310674,3795798,310774,3795698,48,74,7.36842105263158,0.0755832044935001,12.3040161584924,0.714285714285714,NA,0.0154468565277823,0.0263157894736842,2.63157894736842,3,55.4123115952091,0.525987525987526,1.84210526315789,26.0522878646851,18.7329120635986,400.815493265788,400.081787109375,0.929499098320908
+7450,310674,3795698,310774,3795598,49,74,0,NA,NA,NA,NA,0.0248153218850827,0.0973684210526316,9.73684210526316,8,64.7712410444906,0.527792381589638,3.68421052631579,97.4117646088471,67.54248046875,400.572053909302,399.802520751953,0.964868207981017
+7451,310674,3795598,310774,3795498,50,74,0,NA,NA,NA,NA,0.0167651968940481,0.04,4,4,55.1062605022479,0.565972222222222,1.75,97.3077855110168,56.1987419128418,400.430013020833,399.761047363281,0.988456662225473
+7452,310674,3795498,310774,3795398,51,74,9.73684210526316,0.0499389029689197,8.7582761482578,0.612903225806452,14.6953058096309,0.0246705232900766,0.123684210526316,12.3684210526316,3,83.0806231843268,0.843093093093093,10.2631578947368,11.1618842672794,0,400.166488647461,399.747619628906,0.656035519482006
+7453,310674,3795398,310774,3795298,52,74,0,NA,NA,NA,NA,0.0130924363360177,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,39.1821743011475,18.7329120635986,400.039070129395,399.539123535156,0.747301996614615
+7454,310674,3795298,310774,3795198,53,74,0.789473684210526,0.00809820048144644,3.39810794893163,0.277777777777778,NA,0.0104154756618611,0.0157894736842105,1.57894736842105,1,62.3749377455957,1,1.57894736842105,71.5303064982096,65.7194061279297,400.005895614624,399.559295654297,0.648703198164835
+7455,310674,3795198,310774,3795098,54,74,2.75,0.0296934017653036,6.50958576613478,0.621212121212121,NA,0.0331821784548083,0.2425,24.25,5,83.0364310176508,0.734456204241114,10.5,34.4384864974268,0,400.152387619019,399.627990722656,0.448319279537069
+7456,310674,3795098,310774,3794998,55,74,45,0.153865809147482,17.0783455805409,0.521770097857054,25.9778758441098,0.0109101679429171,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,400.345514933268,399.911773681641,0.384268285284267
+7457,310674,3794998,310774,3794898,56,74,36.3157894736842,0.0931293055366341,14.8371833216041,0.663585434173669,19.3213832003197,0.0107130197312038,0.0315789473684211,3.15789473684211,3,58.9768555553417,0.696291560102302,2.36842105263158,15.7939894596736,7.34765291213989,400.560592651367,400.263824462891,0.315027009577154
+7458,310674,3794898,310774,3794798,57,74,14.2105263157895,0.0291535217332072,7.5554003776527,0.465555555555556,25.322523536867,0.0144679061763255,0.0578947368421053,5.78947368421053,4,63.8465160972541,0.562931317778508,2.10526315789474,21.8796650279652,11.6176595687866,401.288932800293,400.683959960938,0.681107171802009
+7459,310674,3794798,310774,3794698,58,74,25.75,0.0556076433059322,11.0332614568527,0.583155848546315,17.1164441183452,0.0131972656952087,0.0425,4.25,3,61.0836173517948,0.70757180156658,1.75,14.0688486379736,0,402.149122238159,401.659912109375,0.599769582366121
+7460,310674,3794698,310774,3794598,59,74,11.5789473684211,0.0395912023537382,8.84102541371334,0.520833333333333,31.2187759482627,0.0193161576330902,0.0605263157894737,6.05263157894737,2,74.5107234171691,0.822595704948646,3.42105263157895,29.5022801523623,10.3911504745483,402.277295430501,401.563629150391,0.709131310754517
+7461,310674,3794598,310774,3794498,60,74,19.4736842105263,0.0665852039585596,12.6274983320399,0.491840277777778,58.8831852466489,0.0190257680556993,0.0210526315789474,2.10526315789474,2,53.0195467702593,0.693548387096774,1.31578947368421,17.154628932476,5.19557523727417,401.772253036499,401.293548583984,0.588211217800467
+7462,310674,3794498,310774,3794398,61,74,14.7368421052632,0.0377916022467501,8.69329316174382,0.385119047619048,38.1476234730345,0.0101854646222005,0.0315789473684211,3.15789473684211,3,61.0438505852672,0.757033248081841,2.63157894736842,14.1031455198924,0,401.430193583171,401.231414794922,0.229182583552415
+7463,310674,3794398,310774,3794298,62,74,30.5,0.109775606526274,16.3907263109384,0.625,25.5801192854653,0.0165017799192719,0.0375,3.75,3,61.1625407224796,0.716646989374262,2.25,8.67841170628865,0,401.316431045532,401.215545654297,0.13316104373576
+7464,310674,3794298,310774,3794198,63,74,15.5263157894737,0.0530882031561489,8.06648792541429,0.363211951447246,32.9053095064514,0.0209594808407641,0.0973684210526316,9.73684210526316,3,78.3067416246748,0.782058022272141,5.26315789473684,14.8846216717282,0,401.445131937663,401.2529296875,0.192423975842751
+7465,310674,3794198,310774,3794098,64,74,15.7894736842105,0.0809820048144644,13.4671533537328,0.71078431372549,21.4219052194905,0.0136275183239425,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,29.425571169172,10.3911504745483,401.67335319519,401.378173828125,0.366034803257034
+7466,310674,3794098,310774,3793998,65,74,0,NA,NA,NA,NA,0.0202778156451179,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,60.1968173980713,25.977876663208,402.283981323242,401.847930908203,0.525948058708418
+7467,310674,3793998,310774,3793898,66,74,1.75,0.00944790056168752,3.50130196869493,0.3,82.1492571798053,0.0153865214282632,0.01,1,2,34.5233986084855,0.494949494949495,0.75,52.4711313247681,49.0149574279785,402.970958709717,402.625457763672,0.338677213147667
+7468,310674,3793898,310774,3793798,67,74,0,NA,NA,NA,NA,0.0179315491611257,0.0315789473684211,3.15789473684211,4,46.3209929315118,0.574808184143223,1.57894736842105,78.3496589660645,69.7059555053711,403.122072855632,402.872619628906,0.321839560649898
+7469,310674,3793798,310774,3793698,68,74,0,NA,NA,NA,NA,0.0265336681462366,0.0710526315789474,7.10526315789474,5,65.1909149162841,0.649515778378022,3.68421052631579,71.9100227355957,20.7823009490967,403.142154693604,402.917938232422,0.318678364518616
+7470,310674,3793698,310774,3793598,69,74,0,NA,NA,NA,NA,0.0182384047882375,0.0236842105263158,2.36842105263158,2,63.1765590752496,0.573225516621743,2.10526315789474,25.4005900488959,20.7823009490967,403.065979003906,402.938659667969,0.161524161207082
+7471,310674,3793598,310774,3793498,70,74,17.25,0.046564652768317,9.86202264470457,0.473833732057416,23.4875879986658,0.0182742657174504,0.085,8.5,5,69.9024486006979,0.687743950039032,3.5,13.5584827451145,5.19557523727417,403.168841044108,402.974761962891,0.292071441342083
+7472,310674,3793498,310774,3793398,71,74,27.8947368421053,0.286136417011108,21.3149239989668,0.852201257861635,NA,0.0246067236421559,0.147368421052632,14.7368421052632,3,87.0916009244983,0.84281532391498,13.4210526315789,11.005332997867,0,404.267606735229,403.392120361328,0.938287454629867
+7473,310674,3793398,310774,3793298,72,74,2.89473684210526,0.0148467008826518,6.03371939727471,0.3,15.5867255064659,0.0215177528465574,0.0421052631578947,4.21052631578947,4,55.4575000845286,0.608516483516483,1.84210526315789,46.2115039825439,21.4219055175781,405.286046346029,404.553436279297,0.659177241929259
+7474,310674,3793298,310774,3793198,73,74,20.5263157894737,0.210553212517608,30.5153297664065,0.732905982905983,NA,0.0225180909323076,0.0394736842105263,3.94736842105263,3,63.0162715161614,0.668742216687422,2.63157894736842,15.0547294616699,0,405.854490280151,405.542297363281,0.419246045954153
+7475,310674,3793198,310774,3793098,74,74,0,NA,NA,NA,NA,0.012282316489775,0.005,0.5,1,30.8308651382582,1,0.5,126.892444610596,126.413803100586,406.006589253743,405.582183837891,0.36814006342245
+7476,310674,3793098,310774,3792998,75,74,0,NA,NA,NA,NA,0.0315011916704526,0.242105263157895,24.2105263157895,2,93.2629833963049,0.919546070460705,23.6842105263158,92.5180957628333,44.3910140991211,405.559804916382,405.313568115234,0.354582971185348
+7477,310674,3792998,310774,3792898,76,74,0,NA,NA,NA,NA,0.0217920653703882,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,122.636442184448,118.591209411621,405.321123758952,405.143280029297,0.284350840173378
+7478,310674,3792898,310774,3792798,77,74,0,NA,NA,NA,NA,0.0244420474051032,0.0736842105263158,7.36842105263158,5,64.1522567101422,0.664141414141414,2.89473684210526,145.975090571812,124.693801879883,406.223598480225,405.196746826172,1.32784679796726
+7479,310674,3792798,310774,3792698,78,74,0,NA,NA,NA,NA,0.0114839340594335,0.005,0.5,1,30.8308651382582,1,0.5,76.4432487487793,75.6487197875977,408.453651428223,407.703399658203,1.53658734549921
+7480,310674,3792698,310774,3792598,79,74,2.36842105263158,0.0121473007221697,4.05661876324716,0.333333333333333,31.1734513246687,0.030049711729972,0.165789473684211,16.5789473684211,5,79.9374712796548,0.760252365930599,7.89473684210526,25.7212819750347,0,409.182355880737,408.485931396484,1.08642378604435
+7481,310674,3792598,310774,3792498,80,74,5.78947368421053,0.0296934017653036,5.1800987225218,0.337301587301587,49.0149582505317,0.0180047282519426,0.0157894736842105,1.57894736842105,2,47.0014121936884,0.419404125286478,1.05263157894737,38.7807772954305,25.977876663208,410.334983825684,409.184936523438,1.16950133481321
+7482,310674,3792498,310774,3792398,81,74,0,NA,NA,NA,NA,0.0270054851216724,0.115789473684211,11.5789473684211,1,89.5165340769437,0.908301158301158,11.5789473684211,32.7920389825648,10.3911504745483,410.698429107666,409.329010009766,1.21031462331266
+7483,310674,3792398,310774,3792298,82,74,3.75,0.0404910024072322,8.18281653288111,0.633333333333333,NA,0.0302832289877824,0.17,17,3,87.1573962148866,0.807633896932267,12,19.5641659217722,0,410.962148030599,410.254699707031,0.844383889359818
+7484,310674,3792298,310774,3792198,83,74,0.789473684210526,0.00809820048144644,3.46371681385208,0.222222222222222,NA,0.0222553188927888,0,0,0,NA,NA,0,NA,NA,410.1119556427,407.867065429688,1.6716963143711
+7485,310674,3792198,310774,3792098,84,74,44.4736842105263,0.228099313560741,28.574239992811,0.698745519713262,25.9778758441098,0.0341789787202479,0.171052631578947,17.1052631578947,3,85.3040756971878,0.818513836212951,9.21052631578947,7.15343165030846,0,405.936365127563,404.628112792969,1.97058376817375
+7486,310674,3792098,310774,3791998,85,74,35.5263157894737,0.182209510832545,27.1924795792239,0.728505291005291,37.824358195588,0.0183958137113031,0.0368421052631579,3.68421052631579,6,39.945103860425,0.42896174863388,1.31578947368421,4.54339718818665,0,404.97962697347,404.771545410156,0.159753214135977
+7487,310674,3791998,310774,3791898,86,74,16,0.172761610270857,19.3223104860381,0.783854166666667,NA,0.021813856998383,0.0525,5.25,3,70.9200754336061,0.736147757255937,4,52.3564224243164,0,404.870105743408,404.568145751953,0.275893220451452
+7488,310674,3791898,310774,3791798,87,74,0,NA,NA,NA,NA,0.0170485136468989,0.0263157894736842,2.63157894736842,3,49.6753641355239,0.525987525987526,1.31578947368421,60.1698654174805,52.9846801757812,404.672566731771,403.935150146484,0.557048124606087
+7489,310674,3791798,310774,3791698,88,74,3.68421052631579,0.0377916022467501,9.26168180691612,0.583333333333333,NA,0.0152895587093697,0.0605263157894737,6.05263157894737,2,74.393191136216,0.852163087457205,3.42105263157895,24.6913421465003,0,405.120693206787,404.555206298828,0.440882769426855
+7490,310674,3791698,310774,3791598,89,74,26.5789473684211,0.272639416208697,27.7286561583344,0.833333333333333,NA,0.0172574075958916,0.0947368421052632,9.47368421052632,5,69.0993677302865,0.668604651162791,3.68421052631579,4.7230920791626,0,405.526123046875,405.267944335938,0.401704787837296
+7491,310674,3791598,310774,3791498,90,74,50.5,0.181759610805798,14.3260937629829,0.568341574558852,18.1362565727358,0.0551826597691979,0.6325,63.25,2,98.059627743554,0.764631591033038,61.5,5.05076488110388,0,405.966485977173,405.459991455078,0.748199467880394
+7492,310674,3791498,310774,3791398,91,74,0,NA,NA,NA,NA,0.0184072254892128,0.0184210526315789,1.84210526315789,3,44.8854540825704,0.490616621983914,1.31578947368421,86.5004735674177,36.7382659912109,407.089225769043,405.912963867188,1.46024970823986
+7493,310674,3791398,310774,3791298,92,74,0,NA,NA,NA,NA,0.0242872980987637,0.134210526315789,13.4210526315789,5,75.5490169674358,0.734479264926807,6.57894736842105,45.3615438423905,31.1734504699707,408.363925933838,407.558044433594,0.664523859678828
+7494,310674,3791298,310774,3791198,93,74,19.2105263157895,0.197056211715197,26.5028639598544,0.78310502283105,NA,0.0369439943479129,0.228947368421053,22.8947368421053,6,89.0722936046377,0.765716173070571,20.2631578947368,6.03391526211267,0,408.79953511556,408.302154541016,0.599289641878445
+7495,310674,3791198,310774,3791098,94,74,19.5,0.210553212517608,21.5725764938527,0.788461538461538,NA,0.035178824861141,0.245,24.5,4,89.4349197300318,0.796809151113787,20,8.85853312940014,0,408.488794326782,407.199462890625,1.02785421801998
+7496,310674,3791098,310774,3790998,95,74,4.73684210526316,0.0485892028886786,9.9229820301522,0.638888888888889,NA,0.0274043388158086,0.178947368421053,17.8947368421053,3,89.3680807521813,0.785067873303167,16.0526315789474,13.8078607531155,0,407.535919189453,406.485809326172,1.14859529528265
+7497,310674,3790998,310774,3790898,96,74,17.3684210526316,0.178160410591822,24.4917331404986,0.747474747474747,NA,0.0734130742817223,0.586842105263158,58.6842105263158,3,94.3126550778775,0.842907888290054,42.6315789473684,18.5387203896527,0,407.118284225464,406.351318359375,0.94265961029823
+7498,310674,3790898,310774,3790798,97,74,0,NA,NA,NA,NA,0.0297175489159456,0.192105263157895,19.2105263157895,6,81.6437084302066,0.700223941368078,9.47368421052632,41.8723739859176,5.19557523727417,407.068188985189,406.391479492188,1.00839272736914
+7499,310674,3790798,310774,3790698,98,74,23.5,0.126871807542661,18.6910292110885,0.642926356589147,32.8597028719221,0.0441855956182553,0.3975,39.75,3,94.1642728884459,0.784005001989428,34.75,6.41358528497084,0,408.812185287476,407.306854248047,1.75548963307852
+7500,310674,3790698,310774,3790598,99,74,36.8421052631579,0.125972007489167,17.7881295401251,0.567409114183308,12.9406813574429,0.0669960097242034,0.638888888888889,63.8888888888889,2,96.7363082121386,0.696611081226466,52.5,6.61682084539662,0,411.188045501709,409.813232421875,1.48647979790453
+7501,310774,3800598,310874,3800498,0,75,11.3573407202216,0.0553377032899036,8.6210598075063,0.663194444444444,47.047934173564,NA,NA,NA,NA,NA,NA,NA,NA,NA,386.787111918132,386.277801513672,0.52025830059064
+7502,310774,3800498,310874,3800398,1,75,23.9473684210526,0.0491290829207925,8.8120401057781,0.577336389101095,16.6258405610135,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.259955512153,387.077514648438,0.248780988636185
+7503,310774,3800398,310874,3800298,2,75,16.8975069252078,0.164663409789469,25.6175076831922,0.751366120218579,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.441441853841,387.357421875,0.124479489200986
+7504,310774,3800298,310874,3800198,3,75,28.5318559556787,0.0926794055099198,11.7653170911831,0.407502863688431,36.6813495408201,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.69241672092,387.584838867188,0.202395541059397
+7505,310774,3800198,310874,3800098,4,75,72.2991689750693,0.70454344188609,39.8866549832222,0.807151979565773,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.103978474935,387.788848876953,0.296976465152611
+7506,310774,3800098,310874,3799998,5,75,27.1052631578947,0.0926794055099198,12.6651335386728,0.449675324675325,25.8989294989684,0.00420042683869102,0.0526315789473684,5.26315789473684,1,70.3508699948475,0.894444444444444,5.26315789473684,35.7637829780579,25.977876663208,388.454020182292,388.28173828125,0.209863020480362
+7507,310774,3799998,310874,3799898,6,75,52.3545706371191,0.510186630331306,29.4916348874532,0.900352733686067,NA,0.135573867921443,0.470914127423823,47.0914127423823,1,97.4598140066111,0.987922988140441,47.0914127423823,0,0,388.80756632487,388.583587646484,0.253402149917996
+7508,310774,3799898,310874,3799798,7,75,72.0221606648199,0.350922020862803,22.812571093506,0.699090205187766,11.6176593526411,0.192888035268363,0.681440443213296,68.1440443213296,2,97.6917163703314,0.918109640831758,65.6509695290859,1.83279770176585,0,389.108998616536,389.060028076172,0.0681739510494732
+7509,310774,3799798,310874,3799698,8,75,44.8753462603878,0.218651412999131,16.5579558230916,0.559599156118143,10.3911504415599,0.00254746032960813,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,12.1230085690816,5.19557523727417,389.210301717122,389.123168945312,0.176338712922444
+7510,310774,3799698,310874,3799598,9,75,25.2631578947368,0.259142415406378,25.6687739676949,0.814236111111111,NA,0.022718852312736,0.107894736842105,10.7894736842105,5,76.3962986390315,0.788807661066222,8.42105263157895,15.0746406113229,0,389.38382297092,389.192474365234,0.341325090713942
+7511,310774,3799598,310874,3799498,10,75,0,NA,NA,NA,NA,0.0180062164722799,0.0637119113573407,6.37119113573407,2,80.2012096057094,0.881328073635766,6.09418282548476,71.4330411164657,65.1003723144531,389.602330525716,389.310302734375,0.403190686907022
+7512,310774,3799498,310874,3799398,11,75,0,NA,NA,NA,NA,0.0260038552376228,0.146814404432133,14.6814404432133,1,91.0563849165273,0.832560296846011,14.6814404432133,80.0846967157328,59.2386741638184,389.873537699382,389.600311279297,0.334029202764041
+7513,310774,3799398,310874,3799298,12,75,2.21606648199446,0.0107976006419324,2.53230587070214,0.261904761904762,57.1513268570416,0.0133496265513721,0.102493074792244,10.2493074792244,4,79.956209332825,0.780813600485732,8.58725761772853,36.0060823285902,18.7329120635986,390.251542833116,390.097564697266,0.389116534896678
+7514,310774,3799298,310874,3799198,13,75,1.84210526315789,0.00944790056169086,2.36924114888703,0.25,25.9778761038998,-0.00532480378348952,0,0,0,NA,NA,0,NA,NA,391.216217041016,390.484497070312,0.950793860783591
+7515,310774,3799198,310874,3799098,14,75,40.1662049861496,0.130471007756683,11.8352538200058,0.462479871175523,20.7823008831198,-0.0670664982620783,0,0,0,NA,NA,0,NA,NA,392.597805447049,392.255737304688,0.466139076820813
+7516,310774,3799098,310874,3798998,15,75,19.6675900277008,0.0479143528485751,9.74421936453438,0.539378156565657,27.9879648602893,0.000114955675059902,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,12.6723661422729,10.3911504745483,392.757977803548,392.509918212891,0.216658333036758
+7517,310774,3798998,310874,3798898,16,75,53.4626038781163,0.260492115486619,19.8585878974054,0.397569444444444,16.4298513045218,-0.0108916375865195,0.0886426592797784,8.86426592797784,2,82.2314978343536,0.894493804068272,8.03324099722992,6.63359878957272,0,392.665103488498,392.597839355469,0.161019544223562
+7518,310774,3798898,310874,3798798,17,75,14.2105263157895,0.0728838043330438,9.44373624193755,0.46474358974359,88.171834857801,0.00636011892691051,0.115789473684211,11.5789473684211,2,86.9818866728369,0.908301158301158,11.0526315789474,38.1648993925615,25.977876663208,392.909067789714,392.650939941406,0.318631107443861
+7519,310774,3798798,310874,3798698,18,75,53.185595567867,0.172761610270919,18.5628981530326,0.687267471091001,15.2734876412629,-0.0140029559280514,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,25.977876663208,25.977876663208,393.31012641059,393.116821289062,0.28303376916667
+7520,310774,3798698,310874,3798598,19,75,56.786703601108,0.138344258224759,12.0182009029976,0.500639386189258,13.295565210335,-0.00169762695216294,0,0,0,NA,NA,0,NA,NA,393.687385559082,393.485015869141,0.207100694083178
+7521,310774,3798598,310874,3798498,20,75,9.41828254847645,0.0183559210912851,5.40505158361922,0.335185185185185,23.197781062039,0.00686117542560607,0.0775623268698061,7.75623268698061,3,75.0987084504857,0.735001668335002,5.54016620498615,33.1224242619106,15.5867252349854,393.792470296224,393.699920654297,0.158404803151614
+7522,310774,3798498,310874,3798398,21,75,10,0.102577206098358,16.384002044459,0.714912280701754,NA,0.00238797814963618,0.118421052631579,11.8421052631579,3,83.1300617514095,0.850746268656716,10,28.8484136793349,10.3911504745483,393.757530212402,393.675445556641,0.182640795099572
+7523,310774,3798398,310874,3798298,22,75,0,NA,NA,NA,NA,0.00911692034055213,0.152354570637119,15.2354570637119,4,82.6417940061446,0.801307189542484,10.803324099723,95.3084019054066,46.7601776123047,393.845567491319,393.701995849609,0.329299656402749
+7524,310774,3798298,310874,3798198,23,75,0,NA,NA,NA,NA,0.0331656381621998,0.246537396121884,24.6537396121884,3,91.7473590065562,0.824708657047725,22.9916897506925,81.6877167948176,37.4658241271973,394.022168477376,393.799865722656,0.376029041160524
+7525,310774,3798198,310874,3798098,24,75,0.277008310249307,0.0026994001604831,0,0,NA,0.0211410744461471,0.0637119113573407,6.37119113573407,5,60.8809484061849,0.614316239316239,2.77008310249307,48.232342015142,25.977876663208,394.413065592448,394.104553222656,0.400521802539512
+7526,310774,3798098,310874,3797998,25,75,0,NA,NA,NA,NA,0.0324840535864687,0.271052631578947,27.1052631578947,4,87.7185487649955,0.807200702507562,21.5789473684211,61.9025752336076,11.6176595687866,395.354042053223,394.711975097656,0.995142293997034
+7527,310774,3797998,310874,3797898,26,75,7.75623268698061,0.0755832044935268,16.7691036446597,0.601190476190476,NA,0.0467276180309976,0.43213296398892,43.213296398892,3,91.2190526235951,0.803654287413954,19.6675900277008,23.7877728113761,0,397.548807779948,396.402496337891,1.18945776334369
+7528,310774,3797898,310874,3797798,27,75,7.75623268698061,0.0755832044935268,13.1769844110496,0.690476190476191,NA,0.0222959457661441,0.193905817174515,19.3905817174515,3,85.1648530851645,0.818456122705557,13.2963988919668,16.0856132916042,0,398.635165744358,398.139129638672,0.604573960075515
+7529,310774,3797798,310874,3797698,28,75,0,NA,NA,NA,NA,0.0431593305570875,0.315789473684211,31.5789473684211,2,92.7430674021707,0.929051530993279,26.8698060941828,53.2571681842469,31.1734504699707,399.14217376709,398.884033203125,0.405155913036077
+7530,310774,3797698,310874,3797598,29,75,12.6315789473684,0.0647856038515944,16.0135722586387,0.575396825396825,72.7380523635074,0.00249123916720763,0.0131578947368421,1.31578947368421,2,45.1745482875557,0.392,1.05263157894737,25.9289346694946,11.6176595687866,399.647081163194,399.254089355469,0.58103160290681
+7531,310774,3797598,310874,3797498,30,75,22.7146814404432,0.0442701626319229,7.66630463502504,0.376768410852713,24.2998764297861,0.00698564537526982,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,10.3911504745483,10.3911504745483,400.705774943034,399.929534912109,0.769403036788917
+7532,310774,3797498,310874,3797398,31,75,20.4986149584488,0.0998778059378748,16.8832045800468,0.647168803418803,10.3911503376439,0.0268525939411871,0.182825484764543,18.2825484764543,3,89.5610991240746,0.914871039056743,17.4515235457064,18.829641530008,0,401.109700520833,400.822906494141,0.569725775099139
+7533,310774,3797398,310874,3797298,32,75,10.2493074792244,0.0998778059378748,13.7458689418826,0.761261261261261,NA,0.0102762261837428,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,37.5607068198068,18.7329120635986,401.7626953125,401.130493164062,1.08404129430755
+7534,310774,3797298,310874,3797198,33,75,38.6842105263158,0.0793623647182032,11.2569898524271,0.517066602160942,15.7553506972519,0.00867421329176547,0.0394736842105263,3.94736842105263,3,59.8518457745872,0.716064757160648,2.10526315789474,10.6701384226481,0,402.580905490451,401.606018066406,1.61969727967258
+7535,310774,3797198,310874,3797098,34,75,8.31024930747922,0.026994001604831,6.27624061639552,0.435997400909682,14.0680687008703,0.0313502553523256,0.279778393351801,27.9778393351801,6,84.6147219569119,0.708499787505312,11.6343490304709,28.1456780433655,0,402.190478006999,400.484313964844,2.17242891546782
+7536,310774,3797098,310874,3796998,35,75,15.7894736842105,0.0769329045737684,17.2263516073512,0.600709219858156,18.7329127343573,0.0115948379505506,0.0775623268698061,7.75623268698061,3,73.3899141296493,0.783183183183183,4.15512465373961,19.1375044924872,0,401.556610107422,400.499969482422,2.53736527747791
+7537,310774,3796998,310874,3796898,36,75,1.66204986149584,0.0161964009628986,7.79336283116994,0.277777777777778,NA,0.0027654229177093,0,0,0,NA,NA,0,NA,NA,403.909446716309,401.824066162109,3.20922165382341
+7538,310774,3796898,310874,3796798,37,75,0.789473684210526,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.00590856133884651,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,18.1845133304596,10.3911504745483,405.422997368707,403.071197509766,3.64826417765266
+7539,310774,3796798,310874,3796698,38,75,16.8975069252078,0.0411658524473673,8.7631339390535,0.37767094017094,23.1837706178136,0.0219874584247835,0.119113573407202,11.9113573407202,3,80.9894344907423,0.716194968553459,7.75623268698061,14.7466728299163,0,408.388020833333,406.099700927734,2.3775291505467
+7540,310774,3796698,310874,3796598,39,75,19.9445983379501,0.0647856038515944,9.35227427711004,0.538955699455237,45.4293236020186,0.044439357481855,0.321329639889197,32.1329639889197,3,90.2682251720658,0.831603498542274,17.4515235457064,16.5268942158798,0,409.167793273926,408.602661132812,0.998938444188377
+7541,310774,3796598,310874,3796498,40,75,46.5373961218837,0.226749613480581,21.973410701617,0.622153209109731,10.3911503376439,0.0154671534737015,0.182825484764543,18.2825484764543,3,86.2412830199275,0.8510243183493,14.9584487534626,6.79779827955997,0,409.431545681424,408.640960693359,1.39254394097605
+7542,310774,3796498,310874,3796398,41,75,11.3573407202216,0.0368918021932691,6.51580139393667,0.330246913580247,21.2713526702061,0.0176285830254989,0.0415512465373961,4.15512465373961,7,36.5570537345659,0.336048344718865,1.10803324099723,14.4100970586141,0,411.115956624349,409.668609619141,1.41852353561849
+7543,310774,3796398,310874,3796298,42,75,29.2105263157895,0.0998778059378748,14.2317276381645,0.65329942618675,27.4169668812899,0.000304413219490877,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,18.580514272054,15.5867252349854,410.618448893229,409.878540039062,1.21488823109087
+7544,310774,3796298,310874,3796198,43,75,31.0249307479224,0.100777605991369,16.1068957108968,0.706888802032441,22.0429587144503,0.0162525167035957,0.157894736842105,15.7894736842105,3,85.0865652355777,0.769770408163265,10.2493074792244,7.58925410320884,0,407.427831013997,405.961334228516,2.13931149374767
+7545,310774,3796198,310874,3796098,44,75,15.2354570637119,0.148467008826571,19.5251141516736,0.703030303030303,NA,0.00631101850522705,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.937359014402221,6.09418282548476,12.9468420852314,0,404.972896999783,403.950256347656,1.89891782222714
+7546,310774,3796098,310874,3795998,45,75,5.54016620498615,0.026994001604831,7.43679799930642,0.494791666666667,41.5646017662397,0.0162449990689575,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,26.5027815500895,23.2353191375732,403.014915466309,402.381530761719,1.28850307378994
+7547,310774,3795998,310874,3795898,46,75,0.263157894736842,0.0026994001604831,0,0,NA,0.0123790879088789,0.0421052631578947,4.21052631578947,3,64.9913730356058,0.608516483516483,2.89473684210526,61.7007720470428,53.4917221069336,402.229495578342,401.755767822266,0.670329164678781
+7548,310774,3795898,310874,3795798,47,75,1.93905817174515,0.00944790056169086,3.33109346904056,0.166666666666667,11.6176593526411,0.0155657876441026,0.0470914127423823,4.70914127423823,4,54.8080300759612,0.580232558139535,1.66204986149584,59.0953987345976,15.5867252349854,401.952171325684,401.6572265625,0.493158690037019
+7549,310774,3795798,310874,3795698,48,75,7.75623268698061,0.0377916022467634,9.29279667903421,0.391025641025641,21.4219054085159,0.0084363889427676,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,30.2951488494873,30.2951488494873,402.233391655816,401.732330322266,0.646620488031083
+7550,310774,3795698,310874,3795598,49,75,0,NA,NA,NA,NA,0.0101655750921941,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,101.181280136108,87.0937042236328,402.482396443685,401.884002685547,0.76447214301527
+7551,310774,3795598,310874,3795498,50,75,0,NA,NA,NA,NA,0.0154019440509776,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,129.993255615234,129.993255615234,402.385019938151,402.019256591797,0.847610644865963
+7552,310774,3795498,310874,3795398,51,75,23.8227146814404,0.116074206900773,17.467239166577,0.629017857142857,15.5867255064659,0.0257923428185561,0.130193905817175,13.0193905817175,1,90.1586953418889,0.942515923566879,13.0193905817175,15.225487871373,0,401.794939676921,400.944519042969,1.11441576397396
+7553,310774,3795398,310874,3795298,52,75,1.38504155124654,0.0134970008024155,5.80506589731282,0.3,NA,0.02094423881876,0.0775623268698061,7.75623268698061,2,82.1881227424075,0.807273940607274,7.20221606648199,22.314685191427,7.34765291213989,401.321770562066,400.976531982422,0.625920960178546
+7554,310774,3795298,310874,3795198,53,75,17.4515235457064,0.170062210110435,22.9950434390347,0.738095238095238,NA,0.00968540576197932,0.0941828254847645,9.41828254847645,1,87.4529271238463,0.960572302315422,9.41828254847645,37.2048058790319,15.5867252349854,401.27316792806,400.720092773438,0.734529102963379
+7555,310774,3795198,310874,3795098,54,75,8.94736842105263,0.0917796054564255,13.9321426238256,0.696078431372549,NA,0.0125104412308582,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,29.3906116485596,29.3906116485596,400.902661641439,400.523559570312,0.669247225786348
+7556,310774,3795098,310874,3794998,55,75,45.4293628808864,0.147567208773076,16.7440162954738,0.61602803791751,20.1880208773996,0.0145503391167974,0.0221606648199446,2.21606648199446,2,53.0941292651365,0.693201133144476,1.38504155124654,7.4129256606102,5.19557523727417,400.804880777995,400.574096679688,0.306712382815504
+7557,310774,3794998,310874,3794898,56,75,41.5512465373961,0.101227506018116,11.7251475638301,0.555662557781202,18.1845130908769,0.0232597500212162,0.124653739612188,12.4653739612188,3,85.0289406319776,0.789556962025316,11.0803324099723,15.1371034516229,5.19557523727417,400.854754130046,400.640899658203,0.382091240625253
+7558,310774,3794898,310874,3794798,57,75,28.2548476454294,0.137669408184638,17.933738392905,0.746017316017316,25.9778758441098,0.0206366187453253,0.14404432132964,14.404432132964,3,80.3917029549689,0.750590887604087,8.03324099722992,18.4487149807123,0,401.758660210503,401.545104980469,0.536477616182639
+7559,310774,3794798,310874,3794698,58,75,29.4736842105263,0.100777605991369,14.4845109119421,0.609708193041526,17.3185839999892,0.0178178016658708,0.0631578947368421,6.31578947368421,3,69.2336991501119,0.747191011235955,3.42105263157895,11.985379020373,0,402.600387573242,402.09912109375,0.446526168990465
+7560,310774,3794698,310874,3794598,59,75,37.1191135734072,0.180859810752368,21.7707116485449,0.750896714763186,21.4219052194909,0.0228861916406852,0.0692520775623269,6.92520775623269,5,61.9646189987588,0.597098214285714,2.21606648199446,8.52529727935791,0,402.936754014757,402.656219482422,0.278343876528784
+7561,310774,3794598,310874,3794498,60,75,23.5457063711911,0.114724506820532,21.0061999773934,0.584767512077295,57.1513268570416,0.00988955202029146,0,0,0,NA,NA,0,NA,NA,402.240226745605,401.59912109375,0.641401533499511
+7562,310774,3794498,310874,3794398,61,75,24.6537396121884,0.240246614282996,28.5727077228233,0.767790262172285,NA,-0.00307918814543953,0,0,0,NA,NA,0,NA,NA,401.410464816623,401.335327148438,0.159518343992661
+7563,310774,3794398,310874,3794298,62,75,25.2631578947368,0.0863808051354593,14.4691438405693,0.551078431372549,12.1230087272512,0.0177769694820822,0.0605263157894737,6.05263157894737,2,77.2310298042063,0.70432617491441,4.73684210526316,29.7039090239483,5.19557523727417,401.371320088704,401.309631347656,0.0786993693092573
+7564,310774,3794298,310874,3794198,63,75,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0171131038141161,0.0166204986149584,1.66204986149584,4,21.0115613982809,0.27364185110664,0.554016620498615,44.1196721394857,20.7823009490967,401.462534586589,401.363403320312,0.166948133112447
+7565,310774,3794198,310874,3794098,64,75,22.9916897506925,0.0746834044400325,10.6523837180927,0.323019221753399,39.8327429942748,0.0193956839840083,0.155124653739612,15.5124653739612,3,81.2953331320314,0.768159540307588,5.81717451523546,20.2381093672344,10.3911504745483,401.841852823893,401.615539550781,0.282765498991143
+7566,310774,3794098,310874,3793998,65,75,26.8698060941828,0.0872806051889536,16.3468847768891,0.536980920314254,21.2025200216753,0.0149146398695125,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,7.03248846530914,5.19557523727417,402.378428141276,402.018218994141,0.513776331920611
+7567,310774,3793998,310874,3793898,66,75,7.63157894736842,0.039141302327005,9.88913318896385,0.55219298245614,21.4219052194909,0.0188169955337224,0.0631578947368421,6.31578947368421,1,83.8911085416129,0.915730337078652,6.31578947368421,17.426861902078,0,403.191617329915,402.863189697266,0.438543118624819
+7568,310774,3793898,310874,3793798,67,75,3.04709141274238,0.0296934017653141,8.32025120731855,0.515151515151515,NA,0.0207717809423237,0.0470914127423823,4.70914127423823,4,65.0472204439423,0.664186046511628,3.601108033241,24.9415166518267,10.3911504745483,403.763515896267,403.578918457031,0.396421362167538
+7569,310774,3793798,310874,3793698,68,75,8.31024930747922,0.0809820048144931,19.693476409481,0.616666666666667,NA,0.0177062554622829,0.0886426592797784,8.86426592797784,3,76.1469887021096,0.704582651391162,4.15512465373961,14.0262214541435,10.3911504745483,403.820231119792,403.583160400391,0.474289394645736
+7570,310774,3793698,310874,3793598,69,75,10.2493074792244,0.0998778059378748,22.0252238351434,0.635135135135135,NA,0.0186930816603698,0.0969529085872576,9.69529085872576,4,81.7257112681098,0.713613285381849,8.58725761772853,13.0742885317121,0,403.485822041829,403.155212402344,0.419983082054374
+7571,310774,3793598,310874,3793498,70,75,24.4736842105263,0.0627610537312321,11.6505575584004,0.508682266009852,20.5627252129254,0.0182893226086315,0.1,10,2,85.7954021674978,0.841269841269841,9.47368421052632,10.481419801712,0,403.290496826172,403.160552978516,0.250965595245791
+7572,310774,3793498,310874,3793398,71,75,25.207756232687,0.245645414603962,25.7292108050416,0.826007326007326,NA,0.0206622551142618,0.185595567867036,18.5595567867036,1,92.6598919846122,0.905546834118263,18.5595567867036,10.3698443298909,0,404.405621846517,403.569549560547,0.992852912066671
+7573,310774,3793398,310874,3793298,72,75,25.4847645429363,0.248344814764445,26.2294227064486,0.822463768115942,NA,0.0268871303487686,0.210526315789474,21.0526315789474,4,89.1638435457092,0.829850746268657,18.8365650969529,10.1469449745981,0,405.702677408854,405.342346191406,0.377172827196861
+7574,310774,3793298,310874,3793198,73,75,8.03324099722992,0.0782826046540099,11.0162335718864,0.752873563218391,NA,0.0166725819623413,0.0692520775623269,6.92520775623269,3,68.915597662196,0.677678571428571,3.32409972299169,41.1814963912964,0,405.726404825846,405.629608154297,0.184352686472376
+7575,310774,3793198,310874,3793098,74,75,0,NA,NA,NA,NA,0.0159668173743656,0.0368421052631579,3.68421052631579,4,54.1591117561476,0.480874316939891,1.84210526315789,105.713897705078,79.1366424560547,405.848236083984,405.591003417969,0.384213339872842
+7576,310774,3793098,310874,3792998,75,75,0,NA,NA,NA,NA,0.0303898892023003,0.185595567867036,18.5595567867036,5,81.7614085764285,0.748124890982034,10.803324099723,166.966463686815,141.143798828125,405.636098225911,405.444793701172,0.331068272887474
+7577,310774,3792998,310874,3792898,76,75,0,NA,NA,NA,NA,0.0234259434195554,0.10803324099723,10.803324099723,3,78.80590271769,0.844768275203058,8.58725761772853,165.221281785231,150.76123046875,405.355190700955,405.266357421875,0.648709776951913
+7578,310774,3792898,310874,3792798,77,75,0,NA,NA,NA,NA,0.023250063991405,0.07202216066482,7.20221606648199,6,61.1125342915075,0.55318529304696,2.77008310249307,121.006963876578,79.1366424560547,406.360059102376,405.335144042969,1.48177465579484
+7579,310774,3792798,310874,3792698,78,75,0.526315789473684,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0224514258692436,0.102631578947368,10.2631578947368,4,83.9615442307253,0.55425219941349,8.94736842105263,36.495099067688,5.19557523727417,407.916517469618,406.438720703125,1.56159844406009
+7580,310774,3792698,310874,3792598,79,75,20.2216066481994,0.0985281058576332,19.0027022201728,0.668958333333333,11.6176592829322,0.0102380314606698,0.0526315789473684,5.26315789473684,3,71.2620048385603,0.672413793103448,4.15512465373961,6.51591504247565,0,409.298072814941,407.639068603516,1.65142604044739
+7581,310774,3792598,310874,3792498,80,75,11.0803324099723,0.107976006419324,16.7491299360656,0.675,NA,0.0262919478215164,0.0498614958448753,4.98614958448753,4,59.6197144051518,0.688154626930137,2.77008310249307,21.5358563264211,0,411.145602756076,410.537445068359,0.82231976403635
+7582,310774,3792498,310874,3792398,81,75,0,NA,NA,NA,NA,0.0288941893683093,0.135734072022161,13.5734072022161,5,79.5287103397809,0.69696275946276,9.14127423822715,58.6398891137571,11.6176595687866,411.920717875163,411.692413330078,0.275769065192492
+7583,310774,3792398,310874,3792298,82,75,0,NA,NA,NA,NA,0.0222572257972627,0.118421052631579,11.8421052631579,4,75.6881457142982,0.716417910447761,5.26315789473684,44.130802822113,5.19557523727417,411.859517415365,411.544128417969,0.343957181958072
+7584,310774,3792298,310874,3792198,83,75,0,NA,NA,NA,NA,0.0333023128260012,0.155124653739612,15.5124653739612,3,84.6993988821849,0.792563799222579,12.1883656509695,47.8134707382747,27.9790287017822,411.343612670898,410.855102539062,0.575015360771799
+7585,310774,3792198,310874,3792098,84,75,53.185595567867,0.259142415406378,26.8990348880572,0.763756613756614,25.9778758441098,0.0354968669673926,0.254847645429363,25.4847645429363,4,88.9477057732415,0.836340556714117,21.3296398891967,6.37940327499224,0,406.791758219401,404.9365234375,2.85502194329774
+7586,310774,3792098,310874,3791998,85,75,30.4709141274238,0.296934017653141,26.0176480159995,0.76969696969697,NA,0.0230394527482171,0.0831024930747922,8.31024930747922,4,76.2858050380508,0.621616622479808,5.81717451523546,13.8897677262624,0,405.159966362847,405.00537109375,0.174952252065966
+7587,310774,3791998,310874,3791898,86,75,0,NA,NA,NA,NA,0.0219154607869744,0.128947368421053,12.8947368421053,3,86.5715501354106,0.726658034815134,11.5789473684211,91.5906505973972,65.1003723144531,405.347234090169,405.180206298828,0.310810650023581
+7588,310774,3791898,310874,3791798,87,75,0,NA,NA,NA,NA,0.0336916046128452,0.221606648199446,22.1606648199446,4,85.9848210183555,0.764773695554108,15.2354570637119,94.4534272193909,63.206901550293,405.661400689019,405.283111572266,0.696502927015432
+7589,310774,3791798,310874,3791698,88,75,6.92520775623269,0.0674850040120775,22.2389529903298,0.52,NA,0.0484367492366866,0.340720221606648,34.0720221606648,2,93.3596628032863,0.897972641971587,28.5318559556787,37.3679323855454,0,406.298009236654,405.449401855469,1.23895013793475
+7590,310774,3791698,310874,3791598,89,75,16.3434903047091,0.0796323047342515,17.0893869900165,0.603590629800307,10.3911503376439,0.0372470214781887,0.346260387811634,34.6260387811634,3,92.2349066661707,0.770887777197043,26.8698060941828,14.7571030197144,0,406.691850450304,406.020874023438,1.07254010721681
+7591,310774,3791598,310874,3791498,90,75,25.2631578947368,0.0647856038515944,10.4924503418805,0.526041666666667,19.4834069999878,0.0406004998917189,0.331578947368421,33.1578947368421,2,95.4393896943487,0.810542241171819,32.6315789473684,6.26577447709583,0,407.531804402669,406.555084228516,0.996866466532332
+7592,310774,3791498,310874,3791398,91,75,18.8365650969529,0.061186403637617,10.2296338278346,0.682105748282219,19.0504423722772,0.0377728061914512,0.329639889196676,32.9639889196676,1,95.87929364248,0.87568870523416,32.9639889196676,8.07057642335651,0,408.473710801866,407.642486572266,0.718291348800265
+7593,310774,3791398,310874,3791298,92,75,45.7063711911357,0.111350256619928,13.4369611235228,0.667742768595041,12.9889379220549,0.0412473508294374,0.412742382271468,41.2742382271468,2,95.8849730540492,0.819113276660447,39.8891966759003,2.30837169109575,0,408.956319173177,408.639434814453,0.284890537506302
+7594,310774,3791298,310874,3791198,93,75,41.2742382271468,0.201105311955991,18.4897783827052,0.732260338345865,15.5867255064659,0.0431120594214633,0.335180055401662,33.5180055401662,4,91.7158948349987,0.747026515151515,27.4238227146814,3.21329030911785,0,409.15087890625,409.066253662109,0.135664350884528
+7595,310774,3791198,310874,3791098,94,75,19.2105263157895,0.0656854039050888,10.0142031386006,0.585655496766608,13.9894104798799,0.0319473912060187,0.192105263157895,19.2105263157895,6,82.8131808125162,0.690553745928339,11.0526315789474,6.11313000117263,0,409.173695882161,408.968505859375,0.263451718873584
+7596,310774,3791098,310874,3790998,95,75,14.404432132964,0.0467896027817071,10.0427643958764,0.533099191145168,10.3911503722826,0.0428568194291382,0.313019390581717,31.3019390581717,5,88.9854227637076,0.75739247311828,22.4376731301939,11.9643185328593,0,408.933854844835,408.381317138672,0.732299890312267
+7597,310774,3790998,310874,3790898,96,75,31.8559556786704,0.103477006151852,12.344904321969,0.518798151001541,15.2734876412629,0.0719974346851048,0.700831024930748,70.0831024930748,2,98.6841620715272,0.816651039224879,69.8060941828255,7.1523175654204,0,408.787300109863,408.353820800781,0.910459260444144
+7598,310774,3790898,310874,3790798,97,75,18.5595567867036,0.0904299053761839,11.6761013770132,0.597043010752688,21.4219054085159,0.0499751007207282,0.445983379501385,44.5983379501385,2,96.4479214050301,0.817060810810811,43.4903047091413,10.7061337121525,0,409.404154459635,408.535888671875,1.42149053408376
+7599,310774,3790798,310874,3790698,98,75,9.21052631578947,0.0944790056169086,12.9390609067462,0.714285714285714,NA,0.0309942312855511,0.192105263157895,19.2105263157895,6,81.6140639534404,0.796925895765472,11.3157894736842,21.9037072103317,0,410.447240193685,408.257690429688,2.00558919683576
+7600,310774,3790698,310874,3790598,99,75,14.1274238227147,0.0458898027282127,8.89125981548435,0.375,20.7823007445652,0.05464351360825,0.564327485380117,56.4327485380117,3,94.1157054834204,0.640958344269056,33.3333333333333,17.4211668498776,0,413.327646891276,412.294921875,1.59700643141503
+7601,310874,3800598,310974,3800498,0,76,21.8836565096953,0.106626306339083,17.821568506931,0.682216905901116,18.7329128064101,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.71745300293,386.834564208984,0.574041143753859
+7602,310874,3800498,310974,3800398,1,76,35.2631578947368,0.0602866035841226,10.6538758488285,0.600284662272966,13.5133024946755,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.855135599772,387.544403076172,0.398881062017267
+7603,310874,3800398,310974,3800298,2,76,60.1108033240997,0.146442458706208,14.3897141307518,0.518832121444062,13.1997194624954,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.626153945923,387.432281494141,0.295515300387096
+7604,310874,3800298,310974,3800198,3,76,39.3351800554017,0.0766629645577201,9.64937328784965,0.428490950497423,14.3719501728923,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.666338602702,387.498596191406,0.292979223274822
+7605,310874,3800198,310974,3800098,4,76,80.0554016620499,0.390063323189808,19.0438367349614,0.582653457653458,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.311679840088,387.964324951172,0.353809422567063
+7606,310874,3800098,310974,3799998,5,76,81.3157894736842,0.834114649589279,35.103044585251,0.916936353829558,NA,0.00136879543529894,0,0,0,NA,NA,0,NA,NA,388.628715515137,388.497009277344,0.103607318268783
+7607,310874,3799998,310974,3799898,6,76,48.4764542936288,0.157465009361514,19.026456645906,0.688479046680864,12.4040507292139,0.0682709769435202,0.277008310249307,27.7008310249307,1,95,0.984631758194977,27.7008310249307,0.489122548103332,0,388.797016143799,388.676239013672,0.162018872690452
+7608,310874,3799898,310974,3799798,7,76,88.0886426592798,0.858409251033626,35.9204367401572,0.914570230607966,NA,0.168454647900642,0.772853185595568,77.2853185595568,1,99.2361097435024,0.915983988084156,77.2853185595568,0.403296829551779,0,389.122367858887,388.997924804688,0.179058402050725
+7609,310874,3799798,310974,3799698,8,76,53.185595567867,0.518284830812756,32.8356694756876,0.873263888888889,NA,0.00178327215670786,0.038781163434903,3.8781163434903,5,47.8741871414553,0.479827089337176,1.66204986149584,13.0518363884517,0,389.541446685791,389.265777587891,0.346030222976781
+7610,310874,3799698,310974,3799598,9,76,25.5263157894737,0.13092090778343,13.8406051490852,0.71342512908778,18.7329128064101,0.00735857471229936,0,0,0,NA,NA,0,NA,NA,390.026110331217,389.694549560547,0.396843154126455
+7611,310874,3799598,310974,3799498,10,76,16.3434903047091,0.0398161523671258,7.01055313234829,0.2975,18.1845130908769,0.00179645937902613,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,31.7424518585205,21.4219055175781,390.392183303833,389.949523925781,0.406784758535472
+7612,310874,3799498,310974,3799398,11,76,3.32409972299169,0.0161964009628986,7.27159153600647,0.296296296296296,16.4298514359663,0.0174678363057706,0.0775623268698061,7.75623268698061,3,78.4665925276464,0.855455455455455,6.92520775623269,25.0797948496682,5.19557523727417,390.438676834106,390.077453613281,0.372655508572415
+7613,310874,3799398,310974,3799298,12,76,31.3019390581717,0.101677406044863,14.9253538886138,0.48488508271117,24.0781406860829,0.0122104256428469,0.102493074792244,10.2493074792244,5,71.1975308658394,0.707751467314309,4.70914127423823,12.0585815713212,5.19557523727417,390.37720489502,390.184661865234,0.274598748014111
+7614,310874,3799298,310974,3799198,13,76,40.7894736842105,0.20920351243744,21.4875900385774,0.636100589225589,20.7823006752878,-0.0195707213121319,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,9.78548765182495,7.34765291213989,391.142518997192,390.426177978516,0.971117901467249
+7615,310874,3799198,310974,3799098,14,76,44.8753462603878,0.109325706499566,13.7274549258825,0.557118807118807,12.9889379610234,-0.019667917278523,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,9.35203542709351,5.19557523727417,392.743199666341,392.452789306641,0.418573419853881
+7616,310874,3799098,310974,3798998,15,76,24.9307479224377,0.0404910024072465,7.00970948554032,0.350787638287638,17.0214440750661,-0.0083065082691364,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,6.27161407470703,5.19557523727417,392.572902679443,392.251800537109,0.262845486570949
+7617,310874,3798998,310974,3798898,16,76,62.0498614958449,0.201555211982738,19.7351839501196,0.636469032057267,10.3911504415599,-0.0439636428186469,0.0470914127423823,4.70914127423823,1,79.9545729128315,1,4.70914127423823,7.77183280271642,0,392.410463968913,392.242553710938,0.201464158190745
+7618,310874,3798898,310974,3798798,17,76,67.6315789473684,0.346872920622079,21.6987497061809,0.706577974870658,18.73291280641,-0.0134717842572029,0.0131578947368421,1.31578947368421,1,58.2677109531801,0.797333333333333,1.31578947368421,0,0,392.525144577026,392.266906738281,0.297508286913514
+7619,310874,3798798,310974,3798698,18,76,55.1246537396122,0.268590315968069,22.8027281988262,0.805492366798099,32.8597026090436,-0.00144191536216525,0.102493074792244,10.2493074792244,3,80.6568580061399,0.835610200364299,8.03324099722992,12.0712861757021,0,392.754692077637,392.306701660156,0.517956192296282
+7620,310874,3798698,310974,3798598,19,76,53.4626038781163,0.260492115486619,22.2239784520573,0.808595647527446,18.7329127343573,-0.00421601257038576,0,0,0,NA,NA,0,NA,NA,393.555187225342,392.648193359375,0.59924631660632
+7621,310874,3798598,310974,3798498,20,76,28.808864265928,0.0701844041725607,11.6444200601349,0.552617521367521,15.797506988841,0.0236771448240925,0.218836565096953,21.8836565096953,3,86.3292298786114,0.826266464032422,14.404432132964,20.5724754333496,5.19557523727417,394.057116190592,393.876525878906,0.146557417222186
+7622,310874,3798498,310974,3798398,21,76,29.2105263157895,0.0998778059378748,8.96110956859905,0.27217125382263,24.3538392673891,0.00940935427627808,0.068421052631579,6.8421052631579,4,70.4225018008085,0.738183822516191,3.42105263157895,19.2167205810547,0,394.140924453735,393.884796142578,0.296783022177909
+7623,310874,3798398,310974,3798298,22,76,2.77008310249307,0.026994001604831,7.6382739085088,0.516666666666667,NA,0.00892667948859138,0.074792243767313,7.4792243767313,2,82.3691884360146,0.899456900153182,7.20221606648199,40.2697081036038,10.3911504745483,394.70152537028,394.182739257812,0.61236666081459
+7624,310874,3798298,310974,3798198,23,76,0,NA,NA,NA,NA,0.0153753948832879,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,90.056635538737,88.3247756958008,394.953435897827,394.428741455078,0.572323350191455
+7625,310874,3798198,310974,3798098,24,76,0,NA,NA,NA,NA,0.0113157339193369,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,92.0658264160156,92.0658264160156,394.848978678385,394.5322265625,0.403076693904223
+7626,310874,3798098,310974,3797998,25,76,0,NA,NA,NA,NA,0.0233081454873256,0.0842105263157895,8.42105263157895,4,73.8688504669976,0.706012378426171,4.47368421052632,66.386943936348,5.19557523727417,395.729764938354,394.8916015625,0.878551783533383
+7627,310874,3797998,310974,3797898,26,76,10.803324099723,0.0150395151798344,4.24306565811898,0.279431216931217,15.8957939831552,0.0306380767917763,0.193905817174515,19.3905817174515,6,81.1544186881051,0.768027267901545,11.3573407202216,11.1848551000868,0,397.495151519775,396.384338378906,1.06174519578907
+7628,310874,3797898,310974,3797798,27,76,0.831024930747922,0.00809820048144931,3.46371677921464,0.222222222222222,NA,0.0239237335088425,0.113573407202216,11.3573407202216,5,73.1990003374146,0.689356884057971,5.81717451523546,28.7364918313375,15.5867252349854,398.54337310791,398.091156005859,0.566935914326329
+7629,310874,3797798,310974,3797698,28,76,7.20221606648199,0.0233948013908536,6.15669990211822,0.45326278659612,24.2460174545025,0.0198729921129424,0.166204986149584,16.6204986149584,4,81.3117105499476,0.757826475849732,8.86426592797784,23.1177964289983,7.34765291213989,398.971254348755,398.68701171875,0.42136299720659
+7630,310874,3797698,310974,3797598,29,76,7.89473684210526,0.026994001604831,7.00380512266965,0.352513227513228,34.709203852383,0.0130659126798396,0.0368421052631579,3.68421052631579,3,57.8307032367037,0.584699453551913,1.84210526315789,31.5973957606724,10.3911504745483,399.421666463216,398.881561279297,0.661334692738904
+7631,310874,3797598,310974,3797498,30,76,15.7894736842105,0.0769329045737684,15.7635922187821,0.614075203252033,20.7823006752878,0.0141003514596665,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,22.397104535784,5.19557523727417,400.395076751709,399.521087646484,0.906187867881327
+7632,310874,3797498,310974,3797398,31,76,29.0858725761773,0.283437016850726,28.4199704901446,0.812698412698413,NA,0.00434288636505474,0.0193905817174515,1.93905817174515,5,18.1104701656799,0.235169491525424,0.554016620498615,13.4951669148036,5.19557523727417,401.527224222819,400.764617919922,0.67130522777046
+7633,310874,3797398,310974,3797298,32,76,1.93905817174515,0.0188958011233817,8.90670028940908,0.285714285714286,NA,-0.00126555175431193,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,40.7071495056152,31.1734504699707,402.909927368164,401.862884521484,0.85583327046663
+7634,310874,3797298,310974,3797198,33,76,17.6315789473684,0.0301433017920613,6.56099114343232,0.385119047619048,15.478709694723,0.00928744704716863,0.0157894736842105,1.57894736842105,2,49.4261011843084,0.709702062643239,1.31578947368421,15.5867255528768,10.3911504745483,404.022616068522,403.501922607422,0.790003861399844
+7635,310874,3797198,310974,3797098,34,76,20.2216066481994,0.0985281058576332,15.5516530303446,0.650659824046921,25.9778758441098,-0.00100559033462131,0.0166204986149584,1.66204986149584,2,45.2018371240175,0.709456740442656,1.10803324099723,11.8760255972544,7.34765291213989,405.314498901367,403.864624023438,1.58505851822112
+7636,310874,3797098,310974,3796998,35,76,12.1883656509695,0.0395912023537522,8.09086413970494,0.358262108262108,22.5141590648952,-0.0037600634425259,0,0,0,NA,NA,0,NA,NA,406.380989074707,404.432159423828,1.95481666853317
+7637,310874,3796998,310974,3796898,36,76,4.15512465373961,0.0404910024072465,8.49368670624999,0.588888888888889,NA,0.0110070578126256,0.0277008310249307,2.77008310249307,4,45.7365757207837,0.525312294543064,1.66204986149584,25.3874234199524,14.6953058242798,407.942834854126,405.990936279297,1.7722775912887
+7638,310874,3796898,310974,3796798,37,76,2.36842105263158,0.012147300722174,3.01529741413263,0.25,100.879822766819,0.0174219960364721,0.0473684210526316,4.73684210526316,6,50.0595754757177,0.494577450378555,2.10526315789474,30.1135675112406,11.6176595687866,409.386268615723,408.472991943359,1.21655485077358
+7639,310874,3796798,310974,3796698,38,76,21.3296398891967,0.0346423020595331,5.28326597041484,0.301851851851852,13.7621454447398,0.0262075713212867,0.160664819944598,16.0664819944598,4,78.6413102598829,0.714059405940594,6.92520775623269,17.2258732483305,0,410.035654067993,409.367523193359,0.879949210988034
+7640,310874,3796698,310974,3796598,39,76,15.5124653739612,0.0503888029956846,10.920197012756,0.542022792022792,12.4040507292139,0.0277802211033775,0.191135734072022,19.1135734072022,4,84.6204117954441,0.775217932752179,14.1274238227147,22.551353516786,0,410.852033615112,409.740203857422,1.02933303986467
+7641,310874,3796598,310974,3796498,40,76,32.1329639889197,0.0782826046540099,13.6942660238694,0.617876186035196,15.5867255064659,0.0118414214837413,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,13.9631522723607,7.34765291213989,411.737492879232,410.436157226562,1.29571577475481
+7642,310874,3796498,310974,3796398,41,76,0,NA,NA,NA,NA,0.00901762757518789,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,76.7911758422852,75.6487197875977,412.907814025879,411.755676269531,1.1651152963487
+7643,310874,3796398,310974,3796298,42,76,31.3157894736842,0.0642457238194978,9.06286511017979,0.424351851851852,19.2934525348139,0.00534982749942221,0,0,0,NA,NA,0,NA,NA,412.264551798503,410.345397949219,1.95352078059649
+7644,310874,3796298,310974,3796198,43,76,12.1883656509695,0.0296934017653141,9.01009927116392,0.45418771043771,20.0648710488308,0.010514380799275,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,18.5907390594482,15.5867252349854,412.104076385498,408.319152832031,3.53344088458265
+7645,310874,3796198,310974,3796098,44,76,12.1883656509695,0.118773607061256,13.6076426198675,0.772727272727273,NA,-0.00235205816796809,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,31.5271635055542,22.0429573059082,410.487075805664,405.599517822266,5.05033135984891
+7646,310874,3796098,310974,3795998,45,76,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.00581455925649478,0.0332409972299169,3.32409972299169,6,32.1929867922886,0.330692735546941,0.831024930747922,42.8689487775167,21.4219055175781,405.699424743652,404.281036376953,2.66549496434814
+7647,310874,3795998,310974,3795898,46,76,3.42105263157895,0.0116974006954268,3.02060342278294,0.326388888888889,46.9125932400829,0.00450499933365216,0.113157894736842,11.3157894736842,2,84.8985425906059,0.859050445103858,10,43.992222985556,21.4219055175781,403.110740661621,402.435516357422,1.22782623749788
+7648,310874,3795898,310974,3795798,47,76,14.9584487534626,0.0728838043330437,10.4339003635498,0.657575757575757,20.7823006752878,0.0129279184174797,0,0,0,NA,NA,0,NA,NA,402.657423019409,402.35546875,0.351512214272741
+7649,310874,3795798,310974,3795698,48,76,0,NA,NA,NA,NA,0.0113935216672304,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,55.6655855178833,47.9008369445801,402.743797302246,402.5810546875,0.170103583529349
+7650,310874,3795698,310974,3795598,49,76,0,NA,NA,NA,NA,0.0175252341061443,0.0193905817174515,1.93905817174515,4,29.0198586995759,0.362641242937853,0.831024930747922,60.4922436305455,49.28955078125,402.923372268677,402.790069580078,0.175892062859055
+7651,310874,3795598,310974,3795498,50,76,0,NA,NA,NA,NA,0.0135182126172846,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210527,100.658758799235,76.7117462158203,403.152188618978,402.857208251953,0.263913095608502
+7652,310874,3795498,310974,3795398,51,76,7.75623268698061,0.0377916022467634,8.70829265940904,0.507936507936508,20.7823006752878,0.0115540539225856,0,0,0,NA,NA,0,NA,NA,402.983263015747,402.408630371094,0.557848320826032
+7653,310874,3795398,310974,3795298,52,76,1.66204986149584,0.0161964009628986,5.52275875418425,0.416666666666667,NA,0.0125111356936943,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.854728370221328,1.66204986149584,33.4331932067871,27.9790287017822,402.456072489421,401.9853515625,0.630023779313087
+7654,310874,3795298,310974,3795198,53,76,18.2825484764543,0.178160410591885,17.1938102753082,0.795454545454545,NA,0.0100706746737303,0.0304709141274238,3.04709141274238,2,61.5261080673111,0.587428571428571,1.93905817174515,2.86441278457642,0,402.402994155884,401.875274658203,0.567409622303835
+7655,310874,3795198,310974,3795098,54,76,0,NA,NA,NA,NA,0.0131414405739921,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,53.5519970485142,46.7601776123047,402.019557952881,401.251770019531,0.603163721217286
+7656,310874,3795098,310974,3794998,55,76,2.77008310249307,0.00899800053494367,3.53375336003833,0.287037037037037,13.8548671861359,0.0133412222680603,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,40.899175008138,39.5683212280273,401.341758728027,401.003631591797,0.493565127161563
+7657,310874,3794998,310974,3794898,56,76,27.9778393351801,0.0908798054029311,15.3985850266756,0.543074352548037,17.3185839653505,0.0275953669366078,0.110803324099723,11.0803324099723,5,79.6424951707522,0.73143627656112,9.14127423822715,10.6803844571114,0,401.044788360596,400.825164794922,0.361442887829901
+7658,310874,3794898,310974,3794798,57,76,27.4238227146814,0.0890802052959424,16.8494200555903,0.576408876408876,18.4561624877923,0.0260405841833853,0.202216066481994,20.2216066481994,4,85.7548324595022,0.725802951388889,13.8504155124654,10.2289851463004,0,401.717389424642,401.466918945312,0.445960857806903
+7659,310874,3794798,310974,3794698,58,76,1.31578947368421,0.0134970008024155,4.40481631604598,0.433333333333333,NA,0.0110828226282185,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,7.79336285591125,5.19557523727417,402.316505432129,401.966613769531,0.406361659466899
+7660,310874,3794698,310974,3794598,59,76,6.37119113573407,0.0620862036911113,10.424972028835,0.710144927536232,NA,0.0143087507009501,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,16.4298515319824,16.4298515319824,402.557629903158,402.25048828125,0.375258445679844
+7661,310874,3794598,310974,3794498,60,76,18.8365650969529,0.061186403637617,10.6063704531289,0.650913900913901,30.284718559935,0.00581602939431091,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,10.4253800710042,5.19557523727417,401.977300643921,401.610046386719,0.422947122317578
+7662,310874,3794498,310974,3794398,61,76,24.6537396121884,0.120123307141498,18.3687235434712,0.513888888888889,21.4219054085159,0.0101531769929689,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,12.3581144332886,10.3911504745483,401.443466186523,401.331512451172,0.165110816834952
+7663,310874,3794398,310974,3794298,62,76,27.3684210526316,0.280737616690243,26.6331033227203,0.834935897435897,NA,0.0112711235162064,0.0157894736842105,1.57894736842105,2,44.5503582375033,0.564553093964859,0.789473684210527,42.6543394724528,39.5683212280273,401.351409912109,401.296539306641,0.0714678836541077
+7664,310874,3794298,310974,3794198,63,76,0,NA,NA,NA,NA,0.0277550584619537,0.121883656509695,12.1883656509695,5,72.4064811894702,0.646048256458351,4.70914127423823,51.4624007398432,11.6176595687866,401.36846669515,401.336120605469,0.0930794437990107
+7665,310874,3794198,310974,3794098,64,76,37.3961218836565,0.12147300722174,13.5112969697188,0.52219968447149,15.5867255064659,-0.00309931869205659,0.0609418282548476,6.09418282548476,4,62.6467289389002,0.624154086413326,2.49307479224377,16.9487689191645,10.3911504745483,401.659259796143,401.435791015625,0.310765166373421
+7666,310874,3794098,310974,3793998,65,76,33.5180055401662,0.0816568548546138,12.9093942374961,0.544511528523156,21.203863640038,0.00904921309293588,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,9.37665112813314,5.19557523727417,402.468144734701,401.948150634766,0.671715547068947
+7667,310874,3793998,310974,3793898,66,76,7.63157894736842,0.015656520930802,4.75053993456071,0.390740740740741,22.8026228652828,0.0153905616238358,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,42.6363849639893,40.5787391662598,403.344188690186,403.040985107422,0.398168159116965
+7668,310874,3793898,310974,3793798,67,76,6.92520775623269,0.0674850040120775,11.0053498856735,0.706666666666667,NA,0.022039894792419,0.074792243767313,7.4792243767313,1,85.2413794174021,0.949728450076591,7.4792243767313,7.31612511034365,0,403.957949320475,403.709350585938,0.340011407926774
+7669,310874,3793798,310974,3793698,68,76,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.016785153576803,0.038781163434903,3.8781163434903,3,57.2871874725771,0.635878962536023,1.93905817174515,31.5855122974941,10.3911504745483,404.180347442627,403.859893798828,0.266237520088998
+7670,310874,3793698,310974,3793598,69,76,18.005540166205,0.175461010431402,23.0026934103801,0.692307692307692,NA,0.0200572987411163,0.132963988919668,13.2963988919668,5,77.7340992371151,0.66243279046209,7.75623268698061,14.0667357941469,0,403.675239562988,403.341217041016,0.397776869087035
+7671,310874,3793598,310974,3793498,70,76,20,0.0410308824393431,8.44516965858551,0.584413320883909,13.5084954701119,0.0194495891521587,0.0473684210526316,4.73684210526316,4,57.9162139148469,0.611213423368119,2.36842105263158,12.3281262715658,5.19557523727417,403.314445495605,403.277282714844,0.12634915197718
+7672,310874,3793498,310974,3793398,71,76,0,NA,NA,NA,NA,0.0202616993839326,0.038781163434903,3.8781163434903,3,61.3100342214242,0.583861671469741,2.49307479224377,80.7645560673305,54.2434005737305,404.106534957886,403.340240478516,0.876507497729524
+7673,310874,3793398,310974,3793298,72,76,0,NA,NA,NA,NA,0.0242409842956935,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,114.46157989502,68.3371200561523,405.307456970215,404.563049316406,0.755134282269755
+7674,310874,3793298,310974,3793198,73,76,8.31024930747922,0.0809820048144931,12.2316175285812,0.738888888888889,NA,0.02198324501146,0.0554016620498615,5.54016620498615,5,56.7525094015518,0.487749503358244,1.93905817174515,35.1978584051132,5.19557523727417,405.588794708252,405.438598632812,0.222885482519266
+7675,310874,3793198,310974,3793098,74,76,0,NA,NA,NA,NA,0.0271863746045136,0.105263157894737,10.5263157894737,8,63.0803280204701,0.566286215978929,2.89473684210526,102.319173240662,58.0882949829102,405.541954040527,405.496978759766,0.0751675835084829
+7676,310874,3793098,310974,3792998,75,76,0,NA,NA,NA,NA,0.0298053385814957,0.171745152354571,17.1745152354571,5,79.51684894419,0.709339774557166,9.14127423822715,94.7966373197494,54.2434005737305,405.432418823242,405.282531738281,0.162420777535466
+7677,310874,3792998,310974,3792898,76,76,0,NA,NA,NA,NA,0.0233435300790732,0.07202216066482,7.20221606648199,4,68.251288187997,0.684601383327266,3.8781163434903,111.927599393404,47.0479354858398,405.285082499186,405.23046875,0.365092403815622
+7678,310874,3792898,310974,3792798,77,76,0,NA,NA,NA,NA,0.0183372217505977,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,159.332160949707,158.273284912109,405.849800109863,405.266754150391,1.41937502996419
+7679,310874,3792798,310974,3792698,78,76,0,NA,NA,NA,NA,0.0189904754273046,0.0236842105263158,2.36842105263158,1,70.2715195584201,0.914645103324349,2.36842105263158,44.2218721177843,36.7382659912109,409.746849060059,407.434112548828,2.19160891772727
+7680,310874,3792698,310974,3792598,79,76,18.005540166205,0.175461010431402,32.619214198604,0.625641025641026,NA,0.00780255702033894,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,9.93405763308207,5.19557523727417,411.278520584106,410.123291015625,1.13428365653733
+7681,310874,3792598,310974,3792498,80,76,0,NA,NA,NA,NA,0.0208667593153495,0.10803324099723,10.803324099723,3,81.8020526085377,0.79302436693741,8.86426592797784,58.8079916636149,27.9790287017822,411.868522644043,411.329925537109,0.478550803024122
+7682,310874,3792498,310974,3792398,81,76,0,NA,NA,NA,NA,0.0245883549520621,0.0997229916897507,9.97229916897507,5,67.1479349888144,0.611230769230769,3.04709141274238,80.9763283199734,46.7601776123047,412.094030380249,411.94677734375,0.118777189965287
+7683,310874,3792398,310974,3792298,82,76,0,NA,NA,NA,NA,0.026369798876457,0.165789473684211,16.5789473684211,5,85.4399751170944,0.705764267278463,13.4210526315789,66.5633518279545,15.5867252349854,412.001411437988,411.887237548828,0.173637486014174
+7684,310874,3792298,310974,3792198,83,76,18.8365650969529,0.183559210912851,25.728730681049,0.725490196078431,NA,0.0317295833756513,0.21606648199446,21.606648199446,5,81.515190155964,0.694960823475188,8.86426592797784,14.566697707543,0,411.441854476929,410.475128173828,0.821523446647769
+7685,310874,3792198,310974,3792098,84,76,52.6315789473684,0.256443015245895,26.1424335155892,0.780494847192608,20.7823006752878,0.0481222045280628,0.490304709141274,49.0304709141274,3,94.5453562026865,0.838003589948145,42.9362880886427,3.56934265363014,0,406.737859725952,405.074920654297,2.58870607744811
+7686,310874,3792098,310974,3791998,85,76,5.81717451523546,0.0566874033701451,26.3107599978125,0.357142857142857,NA,0.0271057840154124,0.132963988919668,13.2963988919668,4,78.8854425318029,0.746824592846567,7.20221606648199,14.5757149755955,5.19557523727417,405.341565450033,405.107879638672,0.220500379719843
+7687,310874,3791998,310974,3791898,86,76,0,NA,NA,NA,NA,0.0250992542831706,0.0921052631578947,9.21052631578947,6,64.0668697108362,0.60119940029985,2.36842105263158,126.44542628697,83.7761306762695,405.878702163696,405.402191162109,0.628843848491369
+7688,310874,3791898,310974,3791798,87,76,0,NA,NA,NA,NA,0.0322507778819927,0.213296398891967,21.3296398891967,3,85.3557716698383,0.719604391052196,12.1883656509695,157.468546879756,124.693801879883,407.161427815755,405.881500244141,1.35143339650714
+7689,310874,3791798,310974,3791698,88,76,0,NA,NA,NA,NA,0.0325059426046774,0.182825484764543,18.2825484764543,6,78.0254922500863,0.744613117170228,9.41828254847645,85.4789567427202,27.9790287017822,408.262208938599,407.150146484375,0.886890732131862
+7690,310874,3791698,310974,3791598,89,76,0.831024930747922,0.00404910024072465,1.29889380519499,0.0833333333333333,25.9778761038998,0.0320614161756866,0.202216066481994,20.2216066481994,3,85.0816228208493,0.735595703125,12.1883656509695,22.2266175387657,0,408.718139648438,407.614105224609,0.969655121104804
+7691,310874,3791598,310974,3791498,90,76,0,NA,NA,NA,NA,0.0204003740990749,0.0368421052631579,3.68421052631579,2,66.0467624359898,0.792349726775956,2.63157894736842,52.8223675319127,46.7601776123047,408.751159667969,408.008239746094,0.62355092418369
+7692,310874,3791498,310974,3791398,91,76,2.49307479224377,0.0242946014443479,6.64797642772733,0.5,NA,0.0331627520490077,0.155124653739612,15.5124653739612,5,74.3715325003687,0.694946763562616,4.43213296398892,39.8932528070041,0,408.859962463379,408.751068115234,0.142359293273545
+7693,310874,3791398,310974,3791298,92,76,64.2659279778393,0.62626083723208,33.631237623551,0.841235632183908,NA,0.0526474496993685,0.518005540166205,51.8005540166205,6,94.7911265667854,0.736163710052488,46.2603878116344,1.44203662107335,0,408.933601379395,408.849243164062,0.125778756518721
+7694,310874,3791298,310974,3791198,93,76,37.1191135734072,0.361719621504736,28.369044526209,0.761194029850746,NA,0.0428191926220685,0.335180055401662,33.5180055401662,3,94.7269824843657,0.726515151515152,32.1329639889197,3.85556412531325,0,408.982396443685,408.855834960938,0.131274354675559
+7695,310874,3791198,310974,3791098,94,76,26.8421052631579,0.0917796054564255,12.9131896857642,0.692567754043164,12.6435414584993,0.0365664766625023,0.255263157894737,25.5263157894737,5,89.2471976731662,0.861094187888388,22.1052631578947,6.08741790732158,0,409.15718460083,408.906890869141,0.288387944937637
+7696,310874,3791098,310974,3790998,95,76,41.8282548476454,0.0815218848465897,13.5927540234556,0.591644080557124,13.642531166203,0.0481790432414953,0.454293628808864,45.4293628808864,3,94.2744251737451,0.666268867448818,32.6869806094183,3.77796194611526,0,409.628184000651,409.433990478516,0.314856269554095
+7697,310874,3790998,310974,3790898,96,76,28.808864265928,0.140368808345121,15.1573080299458,0.659863945578231,10.3911503376439,0.0666976341877102,0.578947368421053,57.8947368421053,4,94.3205077532384,0.859575835475578,50.6925207756233,8.21825704848367,0,410.041555404663,409.448883056641,0.983724244760684
+7698,310874,3790898,310974,3790798,97,76,29.0858725761773,0.0708592542126814,13.2757805737157,0.456031778505183,18.1845130908769,0.0334288697383657,0.185595567867036,18.5595567867036,6,80.6134171866933,0.72713529856387,11.9113573407202,4.84543636663636,0,411.504114786784,410.383056640625,1.51890364339159
+7699,310874,3790798,310974,3790698,98,76,2.63157894736842,0.00899800053494367,1.89862923712155,0.173611111111111,24.2460175584185,0.0376492289561659,0.236842105263158,23.6842105263158,4,85.841651220847,0.72328121653459,12.3684210526316,27.0501067903307,0,412.423500061035,411.029663085938,1.11160322258043
+7700,310874,3790698,310974,3790598,99,76,28.808864265928,0.280737616690243,20.4150100815924,0.865384615384615,NA,0.0457365269535623,0.394736842105263,39.4736842105263,2,94.9183818702828,0.83881230116649,35.3801169590643,9.57764299533985,0,413.493320465088,412.343597412109,1.16772509599067
+7701,310974,3800598,311074,3800498,0,77,47.9224376731302,0.233498113881788,24.6180721530103,0.731135265700483,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.561225891113,388.215270996094,0.428999176639701
+7702,310974,3800498,311074,3800398,1,77,43.1578947368421,0.221350813159614,19.2509384365658,0.645400238948626,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.489488389757,388.216888427734,0.354686512507309
+7703,310974,3800398,311074,3800298,2,77,41.8282548476454,0.101902356058237,15.6056093271158,0.612783776301218,11.004404810288,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.316047668457,387.991790771484,0.392282707882358
+7704,310974,3800298,311074,3800198,3,77,70.6371191135734,0.688347040923191,33.3908959043972,0.894771241830065,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.305372450087,387.898742675781,0.558478052313017
+7705,310974,3800198,311074,3800098,4,77,77.2853185595568,0.753132644774785,35.6133010405144,0.887694145758662,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.541575113932,388.264892578125,0.250165370249188
+7706,310974,3800098,311074,3799998,5,77,59.7368421052632,0.204254612143221,18.3474177411628,0.778695286195286,12.1230087965286,0.019830998103747,0.00657894736842105,0.657894736842105,1,0,NA,0.657894736842105,7.34765291213989,7.34765291213989,388.660325792101,388.634857177734,0.0503360890390679
+7707,310974,3799998,311074,3799898,6,77,30.7479224376731,0.0499389029689374,9.36863362144172,0.445691696262473,19.9163715411018,0.0133844783371906,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,11.3564609800066,10.3911504745483,388.82132212321,388.709197998047,0.161806295108241
+7708,310974,3799898,311074,3799798,7,77,47.0914127423823,0.152966009094042,17.4237264893469,0.620598609814296,17.3185838960732,0.0115832099615251,0.0554016620498615,5.54016620498615,2,76.8482289689222,0.795099801343298,4.98614958448754,2.50693819522858,0,389.18839179145,389.05029296875,0.238584684415527
+7709,310974,3799798,311074,3799698,8,77,57.3407202216066,0.186258611073334,18.98379188054,0.563686404026107,12.1230088484866,0.00153999720645102,0.03601108033241,3.601108033241,1,76.2797118658907,0.942369093231162,3.601108033241,0,0,389.691253662109,389.37451171875,0.352125829867657
+7710,310974,3799698,311074,3799598,9,77,36.8421052631579,0.188958011233817,18.0504484198821,0.610903814262023,33.2679134207198,-0.000500207598203193,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,10.3911504745483,10.3911504745483,390.317250569661,390.12109375,0.371041316823519
+7711,310974,3799598,311074,3799498,10,77,23.8227146814404,0.0580371034503867,14.9378816530918,0.501837526508579,16.0082884834308,0.00567619060923001,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,7.79336273670197,5.19557523727417,390.794021606445,390.643432617188,0.208795253515763
+7712,310974,3799498,311074,3799398,11,77,13.2963988919668,0.0431904025677296,14.9896743507146,0.458040935672515,22.5141590648952,0.00580665786852841,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,26.9053452809652,10.3911504745483,390.915250142415,390.778198242188,0.15618566416593
+7713,310974,3799398,311074,3799298,12,77,11.9113573407202,0.0232148413801547,6.10751448514811,0.299145299145299,25.0825406903394,0.0218628717169008,0.204986149584488,20.4986149584488,4,84.1395121811927,0.787134816403109,12.1883656509695,14.9686081280579,0,390.891659206814,390.5771484375,0.423299795306745
+7714,310974,3799298,311074,3799198,13,77,38.4210526315789,0.131370807810178,18.4428257115887,0.649439041163179,11.6176592829322,-0.00560563197906097,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,20.9841156005859,18.7329120635986,391.487449645996,390.624908447266,0.831945873736709
+7715,310974,3799198,311074,3799098,14,77,46.5373961218837,0.151166408987054,14.2457717253591,0.512150159208983,16.0411747845414,-0.00622002221228732,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,10.636452293396,10.3911504745483,392.289425320095,391.919219970703,0.459678587276305
+7716,310974,3799098,311074,3798998,15,77,39.612188365651,0.386014222949084,33.7453040070996,0.694638694638695,NA,-0.000973934493412749,0.074792243767313,7.4792243767313,1,85.2413794174021,0.849185350229773,7.4792243767313,14.2481754797476,0,392.11688486735,391.863861083984,0.36808675844714
+7717,310974,3798998,311074,3798898,16,77,59.5567867036011,0.580371034503867,39.6127618363164,0.785271317829457,NA,-0.00166286009985733,0.0609418282548476,6.09418282548476,1,83.0510354957967,0.906038521603332,6.09418282548476,9.23321663249623,0,391.987426757812,391.859191894531,0.228016602231757
+7718,310974,3798898,311074,3798798,17,77,39.7368421052632,0.0815218848465897,10.2624012109706,0.590495469442838,16.7944657676968,0.0167331618297594,0.184210526315789,18.4210526315789,4,84.4215768580217,0.790715971675846,12.1052631578947,14.9299883910588,0,392.097511291504,391.961700439453,0.174617314744275
+7719,310974,3798798,311074,3798698,18,77,45.1523545706371,0.440002226158746,34.2479875995123,0.80879345603272,NA,0.0160590472303164,0.152354570637119,15.2354570637119,3,81.519124505959,0.801307189542484,9.97229916897507,10.5479315844449,0,392.166324191623,392.032836914062,0.218507561740927
+7720,310974,3798698,311074,3798598,19,77,47.6454293628809,0.232148413801547,26.0514542613991,0.772897838380635,18.7329127343573,0.00103263298327184,0,0,0,NA,NA,0,NA,NA,393.151369730632,392.327026367188,0.831077792523888
+7721,310974,3798598,311074,3798498,20,77,20.2216066481994,0.0281508873878952,7.28976308721663,0.34935832489024,12.9682566090962,0.0335728627263724,0.263157894736842,26.3157894736842,2,91.9965930424066,0.856302521008403,23.5457063711911,18.9632672410262,5.19557523727417,393.977450900608,393.775482177734,0.239233331967384
+7722,310974,3798498,311074,3798398,21,77,18.9473684210526,0.0647856038515944,9.4813812483544,0.540013227513228,28.1361374017405,0.0140311816524589,0.15,15,3,84.478339216189,0.747899159663866,8.42105263157895,25.3508490010312,0,394.268898010254,393.966033935547,0.314831345142368
+7723,310974,3798398,311074,3798298,22,77,40.4432132963989,0.197056211715266,25.949338927555,0.729595692423956,11.6176593526411,0.0288765671183458,0.229916897506925,22.9916897506925,4,85.2421675242164,0.840992512112759,12.1883656509695,9.49588603283986,0,395.052249484592,394.516571044922,0.621601698704015
+7724,310974,3798298,311074,3798198,23,77,29.6398891966759,0.0962786057238973,16.0288890574971,0.388569604086845,16.4043981831307,0.0132136041357523,0.038781163434903,3.8781163434903,5,43.5440870817858,0.427809798270893,1.10803324099723,7.34033533505031,0,395.613817850749,395.285736083984,0.355973627464349
+7725,310974,3798198,311074,3798098,24,77,31.8559556786704,0.103477006151852,14.1177811569465,0.56442889666278,13.171737803215,0.015130954328088,0.105263157894737,10.5263157894737,5,71.5897315632733,0.733893557422969,5.81717451523546,8.25705362621107,0,395.716579861111,395.380859375,0.526449588163146
+7726,310974,3798098,311074,3797998,25,77,11.5789473684211,0.0395912023537522,9.44005736465928,0.419219219219219,29.8071923856447,0.00640510990558955,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,16.3783338069916,11.6176595687866,395.919718424479,395.389678955078,0.329324803239334
+7727,310974,3797998,311074,3797898,26,77,0,NA,NA,NA,NA,0.00873063577218647,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,65.7194061279297,65.7194061279297,396.510594685872,396.141845703125,0.526233782852992
+7728,310974,3797898,311074,3797798,27,77,10.803324099723,0.0526383031294205,10.8418360004717,0.64126559714795,15.5867255064659,0.00907795027214737,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,25.3562301635742,15.5867252349854,397.238077799479,396.66748046875,0.901740194194132
+7729,310974,3797798,311074,3797698,28,77,26.8698060941828,0.0872806051889536,16.0449227263484,0.633499170812604,13.8548671168586,0.0425389415957856,0.340720221606648,34.0720221606648,2,95.4230580676135,0.938783585182952,33.7950138504155,16.1016127849982,0,397.994791666667,397.278350830078,0.793320772354595
+7730,310974,3797698,311074,3797598,29,77,11.0526315789474,0.11337480674029,16.746557179685,0.734126984126984,NA,0.00966142958650859,0.05,5,2,77.9382286686901,0.745916515426497,4.73684210526316,13.4877746732611,5.19557523727417,398.471032036675,398.209899902344,0.522900882824856
+7731,310974,3797598,311074,3797498,30,77,18.2825484764543,0.0890802052959424,15.6695176948509,0.686609686609687,27.9790285905554,-0.000322177692449415,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,30.2951488494873,30.2951488494873,399.769551595052,398.691131591797,1.12576320880444
+7732,310974,3797498,311074,3797398,31,77,31.0249307479224,0.0755832044935269,12.1019918311852,0.65390114379085,18.0162825091095,0.0052953587605607,0.0249307479224377,2.49307479224377,4,38.5697916232197,0.401751893939394,1.10803324099723,9.88832844628228,0,401.512600368924,400.850067138672,0.942236676318455
+7733,310974,3797398,311074,3797298,32,77,2.49307479224377,0.00809820048144931,3.46371679653397,0.166666666666667,66.2008496608962,0.00402065718049205,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,21.5999736785889,20.7823009490967,403.044939676921,402.216217041016,0.741254538020406
+7734,310974,3797298,311074,3797198,33,77,6.31578947368421,0.0323928019257972,5.84989352933172,0.333333333333333,51.1704814635886,0.0149051088712823,0.0894736842105263,8.94736842105263,2,85.3110798409547,0.86271676300578,8.68421052631579,29.8516505465788,14.6953058242798,403.938995361328,403.730621337891,0.507748709088234
+7735,310974,3797198,311074,3797098,34,77,0,NA,NA,NA,NA,0.00164636847749481,0.0609418282548476,6.09418282548476,2,80.0266940151696,0.812077043206663,5.81717451523546,35.2132228504528,21.4219055175781,405.849184672038,404.505737304688,1.53491107143693
+7736,310974,3797098,311074,3796998,35,77,10.803324099723,0.0263191515647102,7.44964306271791,0.3625,15.5867255584239,0.00521909902738539,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,21.4219055175781,21.4219055175781,407.628801133898,407.195861816406,0.650995475766958
+7737,310974,3796998,311074,3796898,36,77,0,NA,NA,NA,NA,0.0119752982244088,0.0526315789473684,5.26315789473684,4,63.9078909980416,0.672413793103448,3.601108033241,48.0023360001413,23.2353191375732,408.92832438151,408.105621337891,0.760013823877754
+7738,310974,3796898,311074,3796798,37,77,11.3157894736842,0.0232148413801547,5.18126077658965,0.337830687830688,25.0941657656387,0.0198727005196576,0.102631578947368,10.2631578947368,4,75.2157622143025,0.742837807353936,4.47368421052632,16.5862006285252,5.19557523727417,410.181321885851,409.726593017578,0.694166103629572
+7739,310974,3796798,311074,3796698,38,77,11.3573407202216,0.0553377032899036,10.1862378380354,0.446581196581197,16.4298514359663,0.0220105955177485,0.174515235457064,17.4515235457064,4,82.1490732020587,0.768730933496034,8.86426592797784,30.393239278642,0,411.118270874023,410.577697753906,0.622706971895323
+7740,310974,3796698,311074,3796598,39,77,27.9778393351801,0.0545278832417587,11.0563247821766,0.553456208425721,15.2835158538162,0.0127810136967473,0.0858725761772853,8.58725761772853,4,71.3344217167039,0.671818181818182,3.601108033241,9.4858471808895,0,412.009628295898,411.396118164062,0.676689501751415
+7741,310974,3796598,311074,3796498,40,77,18.5595567867036,0.045214952688092,8.80897188702793,0.524621212121212,28.5032786855195,0.0101686323207226,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,27.3810103734334,10.3911504745483,413.014017740885,412.156158447266,1.1655479265285
+7742,310974,3796498,311074,3796398,41,77,0,NA,NA,NA,NA,0.0178774333526084,0.0637119113573407,6.37119113573407,6,59.5436143831233,0.673652202498356,3.8781163434903,42.9421091494353,25.977876663208,414.244659423828,413.764190673828,0.584737800208632
+7743,310974,3796398,311074,3796298,42,77,16.3157894736842,0.167362809949952,27.4769852710191,0.741935483870968,NA,0.00866154241617838,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,23.3800885677338,5.19557523727417,414.822252061632,414.062286376953,0.715681844466099
+7744,310974,3796298,311074,3796198,43,77,8.86426592797784,0.0863808051354593,17.7515993603636,0.609375,NA,-0.0125567620690009,0,0,0,NA,NA,0,NA,NA,415.297668457031,414.956878662109,0.455099967442031
+7745,310974,3796198,311074,3796098,44,77,29.3628808864266,0.143068208505604,14.6161455896034,0.756024096385542,26.4923391803511,-0.00747941296426399,0,0,0,NA,NA,0,NA,NA,414.531253390842,413.051391601562,1.73979950480399
+7746,310974,3796098,311074,3795998,45,77,32.9639889196676,0.160614309548745,11.7455939285609,0.430084745762712,15.5867255064659,0.00758401301184543,0.138504155124654,13.8504155124654,2,87.9680065881412,0.877094760733876,13.0193905817175,19.064910326004,0,410.037485758464,406.150756835938,4.14022482342556
+7747,310974,3795998,311074,3795898,46,77,3.15789473684211,0.0161964009628986,5.47205703141827,0.316666666666667,25.9778758441098,0.00907877151862761,0.0842105263157895,8.42105263157895,4,69.4318298271688,0.685013262599469,3.94736842105263,36.4962766170502,5.19557523727417,404.313093397352,403.242980957031,2.3400501694585
+7748,310974,3795898,311074,3795798,47,77,19.1135734072022,0.093129305536667,16.0249667342904,0.695533769063181,51.9557522077996,0.00522186433805483,0.0997229916897507,9.97229916897507,4,76.6750416390755,0.777846153846154,7.75623268698061,34.1859173907174,5.19557523727417,403.299980163574,402.914794921875,0.526543771677276
+7749,310974,3795798,311074,3795698,48,77,13.2963988919668,0.0647856038515944,10.4633062008874,0.511111111111111,62.3469020258635,0.00554401505571775,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,37.2813129425049,36.7382659912109,403.003126356337,402.843780517578,0.294003096907778
+7750,310974,3795698,311074,3795598,49,77,31.8559556786704,0.155215509227778,17.2904314061148,0.756552317344667,18.7329127343573,0.00515717600708972,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,24.1304599761963,20.7823009490967,403.019416809082,402.857025146484,0.185276036038143
+7751,310974,3795598,311074,3795498,50,77,0,NA,NA,NA,NA,0.0103208251207865,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,66.2308464050293,52.9846801757812,403.293189154731,403.226531982422,0.111135216673507
+7752,310974,3795498,311074,3795398,51,77,0,NA,NA,NA,NA,0.0158299682496217,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,87.1198247273763,82.1492538452148,403.51762898763,403.391754150391,0.210772745272832
+7753,310974,3795398,311074,3795298,52,77,0,NA,NA,NA,NA,0.0137134932963596,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,89.3117256164551,88.9339218139648,403.357564290365,403.044281005859,0.380779416612717
+7754,310974,3795298,311074,3795198,53,77,8.58725761772853,0.0418407024874881,9.785451741208,0.585826210826211,11.6176592829322,-0.00179550938954892,0,0,0,NA,NA,0,NA,NA,403.037330627441,402.804870605469,0.3237449285588
+7755,310974,3795198,311074,3795098,54,77,0.263157894736842,0.0026994001604831,0,0,NA,0.0127496070119952,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,35.6764312744141,22.0429573059082,402.355916341146,401.888946533203,0.455523480587979
+7756,310974,3795098,311074,3794998,55,77,0,NA,NA,NA,NA,0.0133661523831408,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,44.162389755249,41.5646018981934,401.528873019748,401.159118652344,0.506947589041755
+7757,310974,3794998,311074,3794898,56,77,26.5927977839335,0.129571207703189,24.5993243755764,0.688228438228438,20.7823006752878,0.0253278548547732,0.116343490304709,11.6343490304709,3,80.34386755014,0.729038809660471,6.92520775623269,10.5308111168089,0,401.026059468587,400.928588867188,0.233702449282704
+7758,310974,3794898,311074,3794798,57,77,31.5789473684211,0.0615463236590147,9.80832857249299,0.353055555555556,14.7929122757009,0.0373166466019019,0.313019390581717,31.3019390581717,2,93.9441114844051,0.785934535104364,28.808864265928,9.52956858778422,0,401.410085042318,401.130645751953,0.365342623244389
+7759,310974,3794798,311074,3794698,58,77,12.8947368421053,0.044090202621224,10.7946745361034,0.560280910609858,17.8806677614438,0.0240463107899957,0.168421052631579,16.8421052631579,2,87.2654935157436,0.774525316455696,11.3157894736842,15.4215473532677,0,401.867871602376,401.558715820312,0.348432288705232
+7760,310974,3794698,311074,3794598,59,77,2.77008310249307,0.0134970008024155,4.40461425809202,0.333333333333333,41.5646017662397,0.0350255276599881,0.204986149584488,20.4986149584488,5,83.7582517102584,0.767783436076119,13.5734072022161,14.1471354703645,0,402.084981282552,401.928588867188,0.264948136872731
+7761,310974,3794598,311074,3794498,60,77,25.7617728531856,0.125522107462464,20.1438632564994,0.680659787367105,15.5867255064659,0.0163616648959586,0,0,0,NA,NA,0,NA,NA,401.85541788737,401.70263671875,0.187781593598425
+7762,310974,3794498,311074,3794398,61,77,0,NA,NA,NA,NA,0.0217565321017145,0.0332409972299169,3.32409972299169,2,62.5885727956377,0.634923310298331,1.93905817174515,51.7159029642741,25.977876663208,401.61415608724,401.502166748047,0.194943160854628
+7763,310974,3794398,311074,3794298,62,77,25.7894736842105,0.264541215727344,25.5800152218787,0.828231292517007,NA,0.000873626045626894,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,25.977876663208,25.977876663208,401.679918924967,401.448303222656,0.358586403597336
+7764,310974,3794298,311074,3794198,63,77,0,NA,NA,NA,NA,0.0204246932047671,0.0332409972299169,3.32409972299169,3,56.4817076347424,0.574077195348053,1.66204986149584,40.2518042723338,10.3911504745483,401.600802951389,401.444458007812,0.345400759598443
+7765,310974,3794198,311074,3794098,64,77,33.2409972299169,0.161964009628986,25.8694911083373,0.73414295295583,15.5867255064659,-0.00723843313489171,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.3911503156026,5.19557523727417,401.994771321615,401.573394775391,0.547638216453929
+7766,310974,3794098,311074,3793998,65,77,14.404432132964,0.0467896027817071,9.9313370476534,0.552270011947431,15.2734876412629,0.00133386432830561,0,0,0,NA,NA,0,NA,NA,402.847971598307,402.357421875,0.599507516716722
+7767,310974,3793998,311074,3793898,66,77,16.0526315789474,0.0548878032631564,12.1786339017173,0.416971916971917,18.4561624877923,0.00933841761392327,0.0263157894736842,2.63157894736842,1,72.0745708707785,0.920997920997921,2.63157894736842,46.6349914550781,39.5683212280273,403.349688212077,403.099243164062,0.20694431513625
+7768,310974,3793898,311074,3793798,67,77,22.4376731301939,0.0546628532497828,9.50506729661244,0.432651515151515,10.3911503376439,0.0109819042448777,0.0941828254847645,9.41828254847645,2,79.9525300271901,0.783147662734819,5.54016620498615,6.22166721961077,0,403.609185112847,403.506469726562,0.177742740436658
+7769,310974,3793798,311074,3793698,68,77,11.6343490304709,0.0566874033701451,17.8928519963792,0.476851851851852,49.2895543078989,0.0152336325712154,0.0664819944598338,6.64819944598338,1,84.0091180032961,0.859050445103858,6.64819944598338,15.7366140683492,5.19557523727417,403.754684448242,403.637054443359,0.182897170670288
+7770,310974,3793698,311074,3793598,69,77,39.8891966759003,0.194356811554783,21.9433197717544,0.595238095238095,25.9778758441098,0.0170192568623551,0.0637119113573407,6.37119113573407,3,68.2888647299257,0.762656147271532,4.15512465373961,15.3573258234107,5.19557523727417,403.553095499674,403.407897949219,0.246119933223529
+7771,310974,3793598,311074,3793498,70,77,32.8947368421053,0.056237503343398,9.02295999976262,0.432021839468648,14.1070845225895,0.0183476911612639,0.0842105263157895,8.42105263157895,3,82.6136612623388,0.811007957559682,7.89473684210526,11.7758800238371,5.19557523727417,403.333421495226,403.147552490234,0.203968280233133
+7772,310974,3793498,311074,3793398,71,77,0,NA,NA,NA,NA,0.0205135612240284,0.038781163434903,3.8781163434903,3,61.3379482254554,0.635878962536023,2.21606648199446,86.9301319122314,47.9008369445801,403.361854553223,403.097259521484,0.449005088409754
+7773,310974,3793398,311074,3793298,72,77,0,NA,NA,NA,NA,0.0177671580259054,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,89.3613101414272,46.7601776123047,404.003970675998,403.465789794922,0.943525632064916
+7774,310974,3793298,311074,3793198,73,77,18.2825484764543,0.0890802052959423,15.7184104906242,0.641882183908046,25.9778758441098,0.0260809135262582,0.0581717451523546,5.81717451523546,5,57.8375450446376,0.535477941176471,1.93905817174515,14.8985162462507,0,405.117815653483,404.913543701172,0.477267438929121
+7775,310974,3793198,311074,3793098,74,77,0,NA,NA,NA,NA,0.0310785788855834,0.115789473684211,11.5789473684211,7,66.5519683815026,0.602638352638353,5,72.369082884355,31.1734504699707,405.305881076389,404.897155761719,0.492077098058603
+7776,310974,3793098,311074,3792998,75,77,9.14127423822715,0.0296934017653141,8.31519730760866,0.441708754208754,15.5867255064659,0.0202177424610069,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,62.2370974222819,59.2386741638184,405.213793436686,404.447906494141,0.544365643649448
+7777,310974,3792998,311074,3792898,76,77,3.04709141274238,0.0296934017653141,14.1697506021272,0.303030303030303,NA,0.0241191146169991,0.0581717451523546,5.81717451523546,2,76.8669614451913,0.900459558823529,5.26315789473684,76.9819874082293,10.3911504745483,405.848375108507,405.263763427734,0.867948078089622
+7778,310974,3792898,311074,3792798,77,77,0,NA,NA,NA,NA,0.023972969001399,0.0304709141274238,3.04709141274238,3,58.0245725145703,0.587428571428571,2.21606648199446,141.326804421165,99.2613220214844,406.926798502604,405.587890625,1.95909713064522
+7779,310974,3792798,311074,3792698,78,77,0,NA,NA,NA,NA,0.024523112745431,0.0394736842105263,3.94736842105263,5,52.3901993757424,0.574097135740971,2.10526315789474,76.7222231547038,49.28955078125,410.644219292535,410.054412841797,1.43132123557436
+7780,310974,3792698,311074,3792598,79,77,17.1745152354571,0.167362809949952,25.974744306259,0.741935483870968,NA,0.0289353500816093,0.130193905817175,13.0193905817174,2,85.0339692539611,0.755692675159236,10.5263157894737,34.0065593516573,14.6953058242798,411.547584533691,411.344451904297,0.444402149846347
+7781,310974,3792598,311074,3792498,80,77,0,NA,NA,NA,NA,0.0225207819704159,0.0997229916897507,9.97229916897507,3,78.550272193619,0.796358974358974,4.98614958448754,37.9734141031901,23.2353191375732,411.817623562283,411.617553710938,0.438012011368579
+7782,310974,3792498,311074,3792398,81,77,2.21606648199446,0.0107976006419324,3.82522921033918,0.375,39.5683217016104,0.0485461621489305,0.346260387811634,34.6260387811634,4,91.9944454304817,0.824796535503621,29.6398891966759,19.6689959602356,0,411.830792744954,411.523284912109,0.427700238887092
+7783,310974,3792398,311074,3792298,82,77,31.0526315789474,0.106176406312335,15.7412585560296,0.615676141257537,15.7582134360087,0.0227210568100178,0.165789473684211,16.5789473684211,4,82.7280591748984,0.683969027817608,11.0526315789474,4.78914429649474,0,411.75639851888,411.539337158203,0.348064524901883
+7784,310974,3792298,311074,3792198,83,77,38.5041551246537,0.187608311153576,25.3320573683369,0.587657712657713,10.3911503376439,0.0291598325068579,0.213296398891967,21.3296398891967,4,91.3355215605114,0.738297431648716,20.2216066481994,4.0541468285895,0,411.100527445475,410.351898193359,0.940668843322853
+7785,310974,3792198,311074,3792098,84,77,52.3545706371191,0.255093315165653,25.5451484094146,0.793889200823507,25.9778758441098,0.0507012632116933,0.523545706371191,52.3545706371191,2,95.3422590466644,0.886063122923588,43.7673130193906,3.3101645348564,0,406.845853169759,405.462554931641,2.29576232589912
+7786,310974,3792098,311074,3791998,85,77,10.803324099723,0.0526383031294205,12.8324436932769,0.307017543859649,41.5646013505757,0.0377650749495568,0.282548476454294,28.2548476454294,5,85.2513497399861,0.687722851657278,12.1883656509695,24.2035554764318,0,405.505232069227,405.441162109375,0.122030446630903
+7787,310974,3791998,311074,3791898,86,77,0,NA,NA,NA,NA,0.0246812963172009,0.0894736842105263,8.94736842105263,5,72.0992548293916,0.646985962014864,5.78947368421053,103.821806963752,67.54248046875,406.145866394043,405.646759033203,0.816630620413552
+7788,310974,3791898,311074,3791798,87,77,0,NA,NA,NA,NA,0.0408961508969533,0.301939058171745,30.1939058171745,4,86.9228397677647,0.76730319877528,14.1274238227147,124.786606184933,77.9336318969727,408.059617784288,407.595458984375,0.967902998395718
+7789,310974,3791798,311074,3791698,88,77,0,NA,NA,NA,NA,0.0348490075398671,0.207756232686981,20.7756232686981,6,84.3266672385475,0.77050222504768,15.7894736842105,75.5611896514893,15.5867252349854,408.910616556803,408.543243408203,0.486897601459685
+7790,310974,3791698,311074,3791598,89,77,7.75623268698061,0.0377916022467634,7.85827921149102,0.603386809269162,51.1704811206788,0.0346675620277988,0.18005540166205,18.005540166205,5,78.3927228529686,0.762556804592203,6.09418282548476,21.0710347835834,0,409.452938503689,409.292541503906,0.277513465462015
+7791,310974,3791598,311074,3791498,90,77,8.15789473684211,0.020920351243744,4.92680240681487,0.395833333333333,14.2878317662184,0.0236432088174859,0.0631578947368421,6.31578947368421,3,71.1051775048383,0.719101123595506,3.68421052631579,54.741468389829,5.19557523727417,409.366661071777,409.078460693359,0.222322960557304
+7792,310974,3791498,311074,3791398,91,77,0,NA,NA,NA,NA,0.0309772538588772,0.074792243767313,7.4792243767313,5,63.4229354010372,0.673234925497842,2.77008310249307,58.5441014325177,37.4658241271973,409.032721625434,408.894500732422,0.222079856168278
+7793,310974,3791398,311074,3791298,92,77,15.7894736842105,0.153865809147537,22.8828023376809,0.652046783625731,NA,0.0452623419912527,0.274238227146814,27.4238227146814,5,84.9428443438211,0.767775967064071,18.2825484764543,36.1516775795908,0,408.819770812988,408.7626953125,0.0815500815678835
+7794,310974,3791298,311074,3791198,93,77,25.4847645429363,0.0827816049214818,17.2231189827305,0.483333333333333,17.8806677614438,0.0542113905143086,0.498614958448753,49.8614958448753,4,95.1095601901801,0.748444577173859,44.8753462603878,4.69301472769843,0,408.785766601562,408.759185791016,0.0695217308431429
+7795,310974,3791198,311074,3791098,94,77,4.73684210526316,0.0242946014443479,6.50597495072249,0.470512820512821,15.5867256623399,0.0353391387435534,0.184210526315789,18.4210526315789,6,79.2673314304322,0.631261473905062,7.89473684210526,32.2823179449354,5.19557523727417,408.975196838379,408.827911376953,0.232982979076197
+7796,310974,3791098,311074,3790998,95,77,11.9113573407202,0.0290185517251933,7.71085266396944,0.537696678321678,25.9778761038998,0.0289779945355363,0.135734072022161,13.5734072022161,6,72.4801771881795,0.683188339438339,7.75623268698061,17.6428754670279,0,409.478607177734,409.195159912109,0.428723933454862
+7797,310974,3790998,311074,3790898,96,77,38.2271468144044,0.124172407382223,13.4155097186567,0.569113756613757,16.7243040981849,0.0513475753513353,0.515235457063712,51.5235457063712,3,95.1527937807511,0.820099667774086,45.1523545706371,6.09629667446178,0,411.336626688639,410.016632080078,1.42914387913383
+7798,310974,3790898,311074,3790798,97,77,27.7008310249307,0.053988003209662,9.29123314710955,0.448411643026005,16.6258405817967,0.0291843376425204,0.135734072022161,13.5734072022161,8,68.8570902249007,0.600541819291819,5.26315789473684,7.74346195921606,0,412.92589992947,411.820739746094,1.13913713694233
+7799,310974,3790798,311074,3790698,98,77,21.8421052631579,0.0373417022200162,7.63021728921416,0.421773538961039,16.1110900877461,0.0389468945936594,0.292105263157895,29.2105263157895,4,89.6424848921849,0.703345724907063,18.4210526315789,11.6564333975852,0,413.852813720703,413.381011962891,0.622359867362188
+7800,310974,3790698,311074,3790598,99,77,15.7894736842105,0.0769329045737684,9.69038055218004,0.615705128205128,33.2679134937501,-0.00684509352406528,0.0526315789473684,5.26315789473684,3,66.8923949060423,0.765432098765432,3.80116959064328,9.12446790271335,0,415.120234171549,413.858001708984,1.20319446940406
+7801,311074,3800598,311174,3800498,0,78,42.3684210526316,0.108650856459406,14.3375383545362,0.496934387045734,10.3911503896001,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.861930847168,388.671203613281,0.147228047525853
+7802,311074,3800498,311174,3800398,1,78,42,0.2267496134805,28.6613268729088,0.688999762413875,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.764882405599,388.680419921875,0.129879166123245
+7803,311074,3800398,311174,3800298,2,78,59.2105263157895,0.303682518054242,17.4858567921288,0.401041666666667,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.682458877563,388.555511474609,0.133317920217991
+7804,311074,3800298,311174,3800198,3,78,68.4210526315789,0.350922020862679,20.0452389055099,0.626797385620915,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.839866638184,388.689727783203,0.132526055939822
+7805,311074,3800198,311174,3800098,4,78,78.1578947368421,0.801721847663198,36.9754476522196,0.869248035914703,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.770795822144,388.654388427734,0.11232366382044
+7806,311074,3800098,311174,3799998,5,78,30.25,0.16331370970917,19.7185396064661,0.705366357069144,20.7823008831125,0.0169282347793342,0.0625,6.25,1,74.246961055333,0.917948717948718,6.25,9.87159285545349,5.19557523727417,388.710543314616,388.656860351562,0.0722884946965084
+7807,311074,3799998,311174,3799898,6,78,32.8947368421053,0.0482035742943241,10.7545714317829,0.425727642655236,17.2659395532847,0.0112440510554686,0.0289473684210526,2.89473684210526,2,66.1021861153273,0.862691960252936,2.63157894736842,7.11533797870983,0,388.8981590271,388.775482177734,0.166494220280109
+7808,311074,3799898,311174,3799798,7,78,52.6315789473684,0.269940016048215,20.8104052531559,0.63860103626943,16.4298513045212,0.0052240260766427,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,6.27161407470703,5.19557523727417,389.250640869141,389.132019042969,0.221944233629284
+7809,311074,3799798,311174,3799698,8,78,71.5789473684211,0.367118421825572,20.3397354672164,0.678977272727273,10.3911504415562,0.0048838409256668,0.0263157894736842,2.63157894736842,2,65.8795495860188,0.604989604989605,2.36842105263158,5.84119853973389,0,389.602060317993,389.434234619141,0.251289016268003
+7810,311074,3799698,311174,3799598,9,78,25.75,0.139019108264831,16.8647352138467,0.340686274509804,15.5867255064659,0.0201769678891469,0.1875,18.75,4,82.5346109023299,0.748251748251748,9,13.1095743624369,0,390.12720489502,389.756164550781,0.468233624514091
+7811,311074,3799598,311174,3799498,10,78,72.6315789473684,0.372517222146536,19.1800051261833,0.516119221411192,16.4298513045212,-0.0289483689608843,0,0,0,NA,NA,0,NA,NA,390.865772247314,390.516479492188,0.319003390807132
+7812,311074,3799498,311174,3799398,11,78,16.0526315789474,0.0329326819578822,9.81464343761662,0.302328042328042,19.7431857870007,0.00661104336935224,0,0,0,NA,NA,0,NA,NA,391.12540435791,390.960845947266,0.193333635787896
+7813,311074,3799398,311174,3799298,12,78,27.6315789473684,0.141718508425313,13.6046040161021,0.621666666666667,30.2951489556473,0.00523797575866458,0.0763157894736842,7.63157894736842,2,83.5143352134343,0.838758562162818,7.36842105263158,30.4476308493779,20.7823009490967,391.41897837321,391.149810791016,0.281507281255353
+7814,311074,3799298,311174,3799198,13,78,0.5,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.013106152826158,0.0325,3.25,6,38.4321974965961,0.425782371518806,1.25,33.1782063704271,11.6176595687866,391.744062423706,391.476654052734,0.207788907801777
+7815,311074,3799198,311174,3799098,14,78,9.21052631578947,0.0472395028084376,8.9606730383198,0.641414141414141,51.9557522077812,0.00308403136546794,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,51.955753326416,51.955753326416,391.85186513265,391.760009765625,0.128941994746472
+7816,311074,3799098,311174,3798998,15,78,11.0526315789474,0.0283437016850625,6.25012171020219,0.48525641025641,35.2851320169591,0.00628046298158408,0.0736842105263158,7.36842105263158,2,82.6738557468001,0.904040404040404,7.10526315789474,19.4263045106615,10.3911504745483,391.787408828735,391.754425048828,0.0829183009288612
+7817,311074,3798998,311174,3798898,16,78,35,0.179510110672063,29.8771339505973,0.590106472696605,15.5867255064659,-0.00437790186908004,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,14.170138835907,7.34765291213989,391.837679545085,391.783020019531,0.127056136734799
+7818,311074,3798898,311174,3798798,17,78,46.25,0.124847257422299,15.6614810312012,0.598247937440646,15.5867255973892,-0.00800052220263751,0.015,1.5,2,50.6391968181878,0.564902102973169,1.25,9.73533089955648,5.19557523727417,392.05535697937,391.917663574219,0.137937199074172
+7819,311074,3798798,311174,3798698,18,78,32.1052631578947,0.329326819578822,34.1237130615967,0.778688524590164,NA,0.0304530245466211,0.260526315789474,26.0526315789474,3,90.1817078228208,0.825262905354073,18.4210526315789,12.7201885743575,0,392.167477925618,392.010986328125,0.167163313058846
+7820,311074,3798698,311174,3798598,19,78,23.1578947368421,0.0791824047074763,11.7265479479066,0.572222222222222,23.6517376566125,0.0129844462672114,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,11.849158000946,0,392.867353439331,392.315185546875,0.606792638556645
+7821,311074,3798598,311174,3798498,20,78,22.8947368421053,0.117423906980973,20.7583011414795,0.6375,11.6176592829314,0.0241356346688056,0.152631578947368,15.2631578947368,4,81.6207319337577,0.858385093167702,11.5789473684211,16.546220532779,0,393.494105021159,393.128601074219,0.353386774598316
+7822,311074,3798498,311174,3798398,21,78,0.25,0.00269940016048215,0,0,NA,0.0327022434032278,0.26,26,5,85.3987259304684,0.761526232114467,13.5,41.7514922206218,0,393.683235168457,393.195617675781,0.49738272753008
+7823,311074,3798398,311174,3798298,22,78,9.21052631578947,0.0472395028084376,8.01370407714779,0.521505376344086,21.4219054085088,0.0330890294104405,0.226315789473684,22.6315789473684,6,81.8604205953233,0.738117469209906,10.5263157894737,30.2414959253267,5.19557523727417,394.069686889648,393.436737060547,0.959572243817257
+7824,311074,3798298,311174,3798198,23,78,11.0526315789474,0.0377916022467501,9.90255782444139,0.449279328589673,26.443446673198,0.0232894632351477,0.0631578947368421,6.31578947368421,5,60.8076062955411,0.52247191011236,2.36842105263158,16.8745810389519,0,395.877372741699,394.973022460938,0.728815585133524
+7825,311074,3798198,311174,3798098,24,78,48.9473684210526,0.167362809949893,18.5688407742612,0.494949494949495,12.1230087272512,0.0222677788121234,0.0921052631578947,9.21052631578947,9,57.6440803403153,0.430284857571214,2.89473684210526,5.11819214139666,0,396.195805867513,396.049072265625,0.205862896567494
+7826,311074,3798098,311174,3797998,25,78,22.5,0.0404910024072322,9.50456064946643,0.452379183996831,15.7272465726493,0.0139338636187404,0.065,6.5,2,81.2557710064635,0.9478283552889,6.25,18.2587923636803,11.6176595687866,396.000926971436,395.901794433594,0.105451938337138
+7827,311074,3797998,311174,3797898,26,78,32.3684210526316,0.332026219739304,28.9705291781453,0.7710027100271,NA,-0.000319879352422217,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,37.2813129425049,36.7382659912109,396.082481384277,395.918395996094,0.207627130641844
+7828,311074,3797898,311174,3797798,27,78,41.8421052631579,0.143068208505554,16.836029940485,0.659720275363673,17.0258166129199,0.00120566349024964,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,11.0044050216675,10.3911504745483,396.399943033854,396.178283691406,0.37327033806678
+7829,311074,3797798,311174,3797698,28,78,34.4736842105263,0.353621421023161,35.2067535402513,0.751908396946565,NA,0.0102220760137961,0.105263157894737,10.5263157894737,5,76.3857895565679,0.733099209833187,7.89473684210526,16.2947422623634,0,397.065505981445,396.557525634766,0.575003620485586
+7830,311074,3797698,311174,3797598,29,78,10.5,0.0377916022467501,5.84196165849597,0.441708754208754,24.2460174545025,0.0259151485071015,0.2175,21.75,4,84.8198609308265,0.777388436566011,8.5,44.4269932933237,10.3911504745483,397.744155883789,396.967895507812,0.832300259325134
+7831,311074,3797598,311174,3797498,30,78,0,NA,NA,NA,NA,0.0153924675181722,0.128947368421053,12.8947368421053,2,88.7694090019571,0.91799741044454,12.6315789473684,29.0092116569986,10.3911504745483,399.319246292114,397.739318847656,1.49858841889758
+7832,311074,3797498,311174,3797398,31,78,13.9473684210526,0.0357670521263884,7.11839676669346,0.304649758454106,25.977875909055,0.00316556387494386,0,0,0,NA,NA,0,NA,NA,401.344304402669,400.167999267578,1.13662422914847
+7833,311074,3797398,311174,3797298,32,78,18.6842105263158,0.0383314822788465,8.72716796172136,0.455941358024691,15.3754644504971,0.00210839336009246,0,0,0,NA,NA,0,NA,NA,402.830829620361,401.938232421875,0.77923349122038
+7834,311074,3797298,311174,3797198,33,78,8,0.0431904025677144,8.1414991588215,0.441666666666667,87.0937103848389,0.0242853636294421,0.235,23.5,4,86.7647242807718,0.774354186118892,11.5,39.6631469523653,11.6176595687866,403.748385111491,403.543609619141,0.410321747277977
+7835,311074,3797198,311174,3797098,34,78,50.7894736842105,0.520984230973054,33.981165364462,0.806563039723662,NA,0.0163751657716315,0.0710526315789474,7.10526315789474,2,81.8177947894774,0.949930825482575,6.84210526315789,10.6098275537844,0,404.952461242676,404.116851806641,1.24052977034001
+7836,311074,3797098,311174,3796998,35,78,42.3684210526316,0.217301712918813,24.0720610513873,0.66304347826087,10.3911504415562,0.0107978828929941,0.0342105263157895,3.42105263157895,4,50.2082013325933,0.539812291855889,1.57894736842105,9.14937690588144,5.19557523727417,407.196161905924,406.550659179688,1.17011415331741
+7837,311074,3796998,311174,3796898,36,78,5.78947368421053,0.0197956011768691,5.17037174584318,0.305555555555556,26.0246957998263,0.0302436580173028,0.186842105263158,18.6842105263158,3,88.1955112159907,0.862265372168285,16.5789473684211,23.8451665690247,5.19557523727417,408.642684936523,407.971435546875,0.739147376543014
+7838,311074,3796898,311174,3796798,37,78,4,0.0215952012838572,5.3292992120465,0.392857142857143,16.4298513045212,0.0299206835711078,0.2075,20.75,3,86.4475377455921,0.768235369857722,10.75,53.7025893797357,22.0429573059082,409.948018391927,409.253692626953,0.823800261355281
+7839,311074,3796798,311174,3796698,38,78,11.8421052631579,0.0607365036108483,11.4264245404831,0.677777777777778,20.7823008831125,0.0196014036411629,0.160526315789474,16.0526315789474,2,90.4194162422145,0.853906665878039,15.5263157894737,54.2275281812324,27.9790287017822,411.10320854187,410.244659423828,0.670475519741849
+7840,311074,3796698,311174,3796598,39,78,33.6842105263158,0.115174406847238,19.6418978786364,0.704223032882404,15.867767439151,0.0082191569317298,0.0210526315789474,2.10526315789474,2,59.17660038592,0.693548387096774,1.84210526315789,13.989875972271,7.34765291213989,412.158908843994,411.646423339844,0.623085819827993
+7841,311074,3796598,311174,3796498,40,78,29.4736842105263,0.0604665635948001,9.4839127200028,0.425195392842452,16.2052500623987,0.00971923983582344,0.0289473684210526,2.89473684210526,4,45.9385834752211,0.450767841011743,1.31578947368421,8.25563144683838,5.19557523727417,413.120381673177,412.531982421875,0.768391021690363
+7842,311074,3796498,311174,3796398,41,78,19.2105263157895,0.0394112423430394,10.078533792852,0.408452380952381,16.0773291157545,0.0146060539431155,0.0368421052631579,3.68421052631579,8,28.9790938637503,0.273224043715847,0.789473684210526,16.923722914287,0,414.237716674805,413.583038330078,0.66829651632031
+7843,311074,3796398,311174,3796298,42,78,16,0.0575872034236191,9.81729380640435,0.51856884057971,15.586725558422,0.00713947121184901,0.05,5,7,46.581592423054,0.456706281833616,1.75,17.0607090950012,0,414.946617126465,414.581298828125,0.416451448211321
+7844,311074,3796298,311174,3796198,43,78,0,NA,NA,NA,NA,-0.00760010025306225,0,0,0,NA,NA,0,NA,NA,414.844636917114,413.874572753906,0.753887107893697
+7845,311074,3796198,311174,3796098,44,78,35.7894736842105,0.367118421825572,28.4970157799821,0.794117647058823,NA,-0.0145802024962138,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,30.3104887008667,18.7329120635986,414.426567077637,413.578704833984,1.14054437836813
+7846,311074,3796098,311174,3795998,45,78,51.5789473684211,0.529082431454501,33.7825809388744,0.775510204081633,NA,-0.00802062207636769,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,11.558186340332,0,412.133871078491,409.765502929688,2.43014354360052
+7847,311074,3795998,311174,3795898,46,78,12.75,0.0275338816369179,6.11496993670447,0.43751021924935,23.341747827196,0.0254333320660135,0.2075,20.75,4,85.2023241715679,0.802570870619541,12,10.7352867069015,0,406.885297139486,404.656066894531,3.1152938854923
+7848,311074,3795898,311174,3795798,47,78,20.2631578947368,0.103926906178563,15.7420282033002,0.491741741741742,74.3893156206536,0.02327006941276,0.157894736842105,15.7894736842105,2,87.224566606427,0.897235576923077,13.9473684210526,9.85577143828074,0,404.226459503174,403.541839599609,0.99287142421272
+7849,311074,3795798,311174,3795698,48,78,28.1578947368421,0.144417908585795,14.6676043545889,0.769564414913252,46.7601765193976,0.00308287747994703,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,10.3911503156026,5.19557523727417,403.691093444824,403.143096923828,0.557513968004876
+7850,311074,3795698,311174,3795598,49,78,24.7368421052632,0.0845812050284406,8.83856113951511,0.468710089399745,22.4404119982518,0.00362425197792235,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,19.1309609413147,15.5867252349854,403.353437423706,403.063293457031,0.345070148613307
+7851,311074,3795598,311174,3795498,50,78,0.5,0.00539880032096429,2.59778761038906,0.166666666666667,NA,0.00503157269468829,0.01,1,2,34.5233986084855,0.494949494949495,0.75,76.4664268493652,67.7420120239258,403.407666524251,403.266754150391,0.138505105424851
+7852,311074,3795498,311174,3795398,51,78,0,NA,NA,NA,NA,0.00723797980768531,0.0289473684210526,2.89473684210526,6,33.5238895807861,0.313459801264679,1.05263157894737,118.591604752974,104.041313171387,403.350391387939,403.142425537109,0.183915123679931
+7853,311074,3795398,311174,3795298,52,78,0,NA,NA,NA,NA,0.0145139548145284,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,89.3117256164551,88.9339218139648,403.245880126953,403.103515625,0.1687530864734
+7854,311074,3795298,311174,3795198,53,78,19.2105263157895,0.0985281058575984,12.8078904673487,0.73956228956229,23.2353185658627,0.00103163825467498,0,0,0,NA,NA,0,NA,NA,403.04167175293,402.718322753906,0.266472003699372
+7855,311074,3795198,311174,3795098,54,78,3,0.0323928019257858,8.80679358230407,0.541666666666667,NA,0.0174255376607562,0.005,0.5,1,30.8308651382582,1,0.5,21.1021032333374,20.7823009490967,402.287084579468,401.7734375,0.574203598973978
+7856,311074,3795098,311174,3794998,55,78,0,NA,NA,NA,NA,0.0170691698625122,0.0526315789473684,5.26315789473684,1,81.8374951454051,0.829749103942652,5.26315789473684,49.7085180282593,41.8880653381348,401.287831624349,400.962982177734,0.486731220223205
+7857,311074,3794998,311174,3794898,56,78,27.6315789473684,0.141718508425313,25.6509616444008,0.67759671436142,20.7823006752878,0.0262154469408989,0.126315789473684,12.6315789473684,3,83.3427152490421,0.804584190420217,10,8.00062674283981,0,400.921152114868,400.813873291016,0.177332060982649
+7858,311074,3794898,311174,3794798,57,78,30.5263157894737,0.0782826046539823,13.7607094860048,0.530897207367796,20.096661397291,0.0307211761819704,0.25,25,3,88.1670198220246,0.780392156862745,17.1052631578947,12.4446927472165,0,401.211057027181,401.047424316406,0.239418756903479
+7859,311074,3794798,311174,3794698,58,78,22.75,0.0614113536509689,12.6002475642851,0.577136752136752,12.9889379740111,0.0180478387112271,0.0775,7.75,3,73.292353236243,0.761517615176152,4.25,12.1447409814404,0,401.494146347046,401.250640869141,0.236098304025775
+7860,311074,3794698,311174,3794598,59,78,9.21052631578947,0.0314930018722917,4.83044190214517,0.303819444444444,22.5708934859455,0.0192748639728004,0.0289473684210526,2.89473684210526,4,46.8019579908976,0.519421860885276,1.31578947368421,20.1311058998108,7.34765291213989,401.663696289062,401.476409912109,0.240231377659964
+7861,311074,3794598,311174,3794498,60,78,18.1578947368421,0.0372517222146536,8.27458485721739,0.492640075973409,22.6822468450146,0.0175692472497324,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,22.1240884780884,14.6953058242798,401.705001831055,401.491912841797,0.178649159170558
+7862,311074,3794498,311174,3794398,61,78,21.5789473684211,0.110675406579768,14.4505356450286,0.700878267973856,10.3911503376439,0.0124693663403664,0.0263157894736842,2.63157894736842,3,49.6753641355239,0.525987525987526,1.31578947368421,22.3595694541931,10.3911504745483,401.778007507324,401.620971679688,0.195284995626916
+7863,311074,3794398,311174,3794298,62,78,25.5,0.091779605456393,14.2240788430738,0.583994708994709,22.5141590648952,0.0056057874396322,0.015,1.5,1,62.2896536353828,0.564902102973169,1.5,18.9899196624756,16.4298515319824,402.053230285645,401.789764404297,0.255187656035335
+7864,311074,3794298,311174,3794198,63,78,20,0.0512886030491608,13.127512486731,0.519856493321966,12.4765909368217,0.00405282987789848,0,0,0,NA,NA,0,NA,NA,402.280690511068,401.947326660156,0.343610203819454
+7865,311074,3794198,311174,3794098,64,78,32.1052631578947,0.109775606526274,18.6720263866867,0.533825577253149,25.9778758441098,5.04511898073265e-05,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,20.7823009490967,20.7823009490967,402.589181900024,402.202301025391,0.31058728941443
+7866,311074,3794098,311174,3793998,65,78,48.1578947368421,0.246995114684116,20.0912305722268,0.480202578268877,20.7823006752878,-0.00458861999699557,0,0,0,NA,NA,0,NA,NA,403.126894632975,402.845947265625,0.407194923419038
+7867,311074,3793998,311174,3793898,66,78,42.25,0.228099313560741,19.5951059745737,0.794513997565641,25.9778758441098,0.00063813428010576,0,0,0,NA,NA,0,NA,NA,403.551742553711,403.433959960938,0.163744172971886
+7868,311074,3793898,311174,3793798,67,78,33.6842105263158,0.0863808051354287,12.852028811901,0.468187830687831,12.9889379220549,0.00529071649141674,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,403.650975545247,403.575256347656,0.0758547628887365
+7869,311074,3793798,311174,3793698,68,78,63.4210526315789,0.325277719338099,20.6641007314655,0.581959706959707,10.3911504415562,0.010795971435245,0.0526315789473684,5.26315789473684,3,72.1023275039235,0.795698924731183,4.47368421052632,15.0236093759537,5.19557523727417,403.598457336426,403.381744384766,0.153923850074865
+7870,311074,3793698,311174,3793598,69,78,37.6315789473684,0.0772028445897894,9.85559493603821,0.40604342046965,14.6816462136474,0.0145523541867365,0.068421052631579,6.8421052631579,4,72.6839662285169,0.71200220476781,5.26315789473684,22.2304712992448,0,403.26123046875,403.066070556641,0.217926605469862
+7871,311074,3793598,311174,3793498,70,78,44.75,0.0966385257452609,10.9306597533413,0.564010989010989,14.1910426355324,0.0162627719746843,0.025,2.5,4,40.6261005355245,0.526627218934911,1,10.022923374176,0,402.999382019043,402.886291503906,0.175160088305986
+7872,311074,3793498,311174,3793398,71,78,25,0.128221507622902,13.4462809776931,0.619994588744589,14.6953058096309,0.0141849504867232,0.0263157894736842,2.63157894736842,2,60.6867581339923,0.841995841995842,2.10526315789474,48.4104579925537,36.7382659912109,402.984926223755,402.885467529297,0.147125961403283
+7873,311074,3793398,311174,3793298,72,78,0,NA,NA,NA,NA,0.0286709799012897,0.15,15,2,87.3376061830593,0.771908763505402,11.3157894736842,71.373634739926,31.1734504699707,403.324381510417,403.06884765625,0.568750771405097
+7874,311074,3793298,311174,3793198,73,78,24.7368421052632,0.126871807542661,18.2429191477337,0.745535714285714,15.5867255064659,0.0185649473905199,0.0289473684210526,2.89473684210526,3,52.4342563095132,0.588075880758808,1.57894736842105,8.69423684206876,0,404.214792251587,403.473541259766,0.725717187054061
+7875,311074,3793198,311174,3793098,74,78,0,NA,NA,NA,NA,0.028590653307474,0.07,7,7,57.7855343058487,0.59378733572282,2.25,53.9449009214129,21.4219055175781,404.39914449056,403.813110351562,0.651817671623433
+7876,311074,3793098,311174,3792998,75,78,15.7894736842105,0.0809820048144644,20.3503134045142,0.521780303030303,20.7823006752878,0.014156574541114,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,404.42769241333,403.796722412109,0.633257306010581
+7877,311074,3792998,311174,3792898,76,78,1.84210526315789,0.00944790056168751,3.89668141558359,0.138888888888889,31.1734513246687,0.0233501884241138,0.0368421052631579,3.68421052631579,4,55.5088511382064,0.584699453551913,2.10526315789474,16.7601638862065,0,405.453641255697,405.059417724609,0.750920376694859
+7878,311074,3792898,311174,3792798,77,78,1.31578947368421,0.0134970008024107,5.79547070941519,0.3,NA,0.0107836309875366,0.0105263157894737,1.05263157894737,1,52.703639668815,1,1.05263157894737,87.285888671875,83.9370880126953,406.578351974487,405.558837890625,1.2414897055692
+7879,311074,3792798,311174,3792698,78,78,10.75,0.116074206900732,27.0482803908305,0.65891472868217,NA,0.0124617218070489,0.0275,2.75,3,54.0055556475323,0.588688946015424,1.5,35.1190376281738,25.977876663208,408.602767944336,406.463562011719,2.34983013446259
+7880,311074,3792698,311174,3792598,79,78,16.8421052631579,0.0575872034236191,11.2976110590723,0.549549010217114,16.4298513483345,0.0112476235218118,0.0631578947368421,6.31578947368421,4,69.3694178502483,0.691011235955056,4.21052631578947,33.4144521554311,16.4298515319824,410.311103820801,409.237762451172,1.15500302626965
+7881,311074,3792598,311174,3792498,80,78,9.73684210526316,0.0998778059378394,21.5675198879865,0.653153153153153,NA,0.0223249501012584,0.163157894736842,16.3157894736842,2,86.5872512586564,0.84509666899604,8.68421052631579,28.8092315735355,10.3911504745483,410.606742858887,409.590942382812,0.916718734737521
+7882,311074,3792498,311174,3792398,81,78,22.1052631578947,0.11337480674025,22.3524230170765,0.618538324420677,41.564601766225,0.0280038210194585,0.152631578947368,15.2631578947368,4,80.6866189652036,0.740372670807453,9.47368421052632,12.5549942953833,0,410.794956207275,410.122467041016,0.672596590983234
+7883,311074,3792398,311174,3792298,82,78,19.75,0.0710842042260299,16.991677072028,0.477177177177177,32.5075531175165,0.0315503875075956,0.325,32.5,4,91.1710201609238,0.868729488982653,25,8.90744521067693,0,410.947519938151,410.406097412109,0.501219502891211
+7884,311074,3792298,311174,3792198,83,78,18.6842105263158,0.0319429018990387,8.21193200908484,0.397350195724179,21.6482299791994,0.0302999518436321,0.176315789473684,17.6315789473684,3,85.9061282554763,0.8443516015401,10,7.92134260063741,0,410.265552520752,409.147705078125,1.08427598951197
+7885,311074,3792198,311174,3792098,84,78,37.3684210526316,0.127771607596155,16.6080453453737,0.600924562264768,24.8165552407598,0.0504275945153112,0.492105263157895,49.2105263157895,4,93.2353168066836,0.806523106412292,38.6842105263158,4.27286717980941,0,406.5396900177,405.439666748047,1.84297436129684
+7886,311074,3792098,311174,3791998,85,78,14.7368421052632,0.0503888029956668,11.4202956818329,0.491310541310541,21.9198792670052,0.023988234633802,0.118421052631579,11.8421052631579,3,81.3471507623941,0.761194029850746,8.15789473684211,6.9695822291904,0,405.666531880697,405.379364013672,0.344556976701838
+7887,311074,3791998,311174,3791898,86,78,7.25,0.0260942015513274,9.05392157416559,0.379901960784314,12.1230088484823,0.0364427055697524,0.31,31,3,89.7008354260719,0.78743961352657,14.75,30.902090349505,0,406.400331497192,405.732513427734,0.786253699889837
+7888,311074,3791898,311174,3791798,87,78,13.1578947368421,0.0674850040120537,19.4751064360602,0.530555555555556,10.3911504415562,0.0213112445213961,0.139473684210526,13.9473684210526,3,81.9886367233428,0.79567832778842,7.10526315789474,52.3809015885839,5.19557523727417,407.85891977946,407.294677734375,0.657691582637836
+7889,311074,3791798,311174,3791698,88,78,15.5263157894737,0.0265441015780744,7.52866100769889,0.405272967772968,11.4614977852484,0.0242571877409845,0.184210526315789,18.4210526315789,2,87.5378580292768,0.860477314450564,11.3157894736842,30.5049188409533,0,408.319290161133,408.080535888672,0.338995266418911
+7890,311074,3791698,311174,3791598,89,78,23.1578947368421,0.0395912023537382,9.742641058127,0.516594683881918,16.2087634744937,0.0367509484638791,0.260526315789474,26.0526315789474,7,84.5244188220018,0.696109400615778,14.7368421052632,8.97891666913273,0,409.047958374023,408.639770507812,0.639462690224088
+7891,311074,3791598,311174,3791498,90,78,20.5,0.0442701626319072,8.59853597827861,0.42078373015873,14.7929123172652,0.0339751631273839,0.2275,22.75,7,80.5987585879563,0.70434296216389,12.5,7.70705248759343,0,409.458312988281,409.364013671875,0.1881260459674
+7892,311074,3791498,311174,3791398,91,78,22.8947368421053,0.117423906980973,15.5544067507721,0.446428571428571,20.7823006752878,0.0433824008205097,0.339473684210526,33.9473684210526,5,91.7103152938992,0.703653471221497,27.3684210526316,10.9285413424174,0,409.202735900879,409.024932861328,0.246261450993678
+7893,311074,3791398,311174,3791298,92,78,26.0526315789474,0.133620307943866,24.2391369994783,0.68718853820598,15.5867256623344,0.0503000013545189,0.428947368421053,42.8947368421053,3,94.4198630226981,0.889093701996928,39.7368421052632,6.49692394104472,0,408.918064117432,408.783111572266,0.156265915464797
+7894,311074,3791298,311174,3791198,93,78,18.9473684210526,0.0323928019257858,7.74787607461398,0.437630113773905,16.8017318818051,0.0464867295690821,0.394736842105263,39.4736842105263,4,90.1397810269743,0.765691699604743,17.8947368421053,7.68247741063436,0,408.919044494629,408.787567138672,0.214692231295933
+7895,311074,3791198,311174,3791098,94,78,21.5,0.0464296827602929,9.06982221412771,0.420156862745098,10.6364522237726,0.0532214447800834,0.4775,47.75,4,95.0683713551369,0.756710729056849,42,10.052245589451,0,409.088882446289,408.852752685547,0.235097441133406
+7896,311074,3791098,311174,3790998,95,78,24.2105263157895,0.0496689629528715,9.39713198125341,0.458237133237133,16.3226310089833,0.0177845804535441,0.155263157894737,15.5263157894737,4,84.6265215696326,0.825911673080447,12.1052631578947,5.74189918324099,0,409.467547098796,409.214080810547,0.332706228509024
+7897,311074,3790998,311174,3790898,96,78,17.8947368421053,0.0611864036375953,9.91940604057264,0.626250862663906,20.489533426772,0.0337998733090947,0.281578947368421,28.1578947368421,2,91.1201140953987,0.769211789937179,17.8947368421053,7.53653182270371,0,409.713617324829,408.322357177734,1.14938838127166
+7898,311074,3790898,311174,3790798,97,78,23.6842105263158,0.0607365036108483,10.3950908109565,0.643671215682085,12.9889380519453,0.0308337743226407,0.218421052631579,21.8421052631579,5,84.2293948691681,0.721477816715912,11.8421052631579,7.81878208252321,0,411.222277323405,409.547058105469,2.64771214611263
+7899,311074,3790798,311174,3790698,98,78,42,0.2267496134805,16.6945827755069,0.547979797979798,15.5867256623344,0.0327997895446606,0.2975,29.75,5,85.3812457757358,0.762752075919336,13.75,5.11715932653732,0,414.299579620361,413.713134765625,0.889308626364737
+7900,311074,3790698,311174,3790598,99,78,17.8947368421053,0.183559210912786,29.2494603398992,0.730392156862745,NA,0.0304996445323923,0.291666666666667,29.1666666666667,1,95.2617334638769,0.92530345471522,29.1666666666667,12.7522225970314,0,415.712184906006,414.811828613281,1.02756336654745
+7901,311174,3800598,311274,3800498,0,79,65.0969529085873,0.634359037713529,39.3585377845837,0.778723404255319,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.874013264974,388.819030761719,0.104367351772481
+7902,311174,3800498,311274,3800398,1,79,40.2631578947368,0.103252056138479,18.8979769312396,0.567564745196324,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.76069132487,388.710113525391,0.0944633786246883
+7903,311174,3800398,311274,3800298,2,79,35.7340720221607,0.17411131035116,17.2970086394045,0.699798669467787,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.718378702799,388.686920166016,0.0628238700718511
+7904,311174,3800298,311274,3800198,3,79,59.5567867036011,0.145092758625967,15.3888848479392,0.50625,11.9966713835987,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.84999593099,388.810668945312,0.0594291369736633
+7905,311174,3800198,311274,3800098,4,79,56.2326869806094,0.273989116289035,27.3454627118524,0.714257620452311,10.3911503376439,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.751820882161,388.673583984375,0.0840731551429498
+7906,311174,3800098,311274,3799998,5,79,27.3684210526316,0.0935792055634142,16.5757920047786,0.538344226579521,18.1362565262654,0.0119247202022435,0.0394736842105263,3.94736842105263,2,52.3536812654311,0.553816046966732,3.28947368421053,10.3911503950755,5.19557523727417,388.68450249566,388.655029296875,0.0505593154790108
+7907,311174,3799998,311274,3799898,6,79,27.9778393351801,0.0681598540521983,12.663194234145,0.420194003527337,14.0649767900523,0.0117883155495025,0.0803324099722992,8.03324099722992,2,83.3570030393652,0.884324532171238,7.75623268698061,11.6303100585938,0,388.76676940918,388.661071777344,0.159689568936618
+7908,311174,3799898,311274,3799798,7,79,40.7202216066482,0.198405911795508,27.3519444002227,0.619791666666667,15.5867255064659,0.0212468801834936,0.0554016620498615,5.54016620498615,6,50.9598995230634,0.521899536467695,1.93905817174515,6.70967681407928,0,389.060729980469,388.840209960938,0.2729185388924
+7909,311174,3799798,311274,3799698,8,79,22.1606648199446,0.215952012838648,26.61578297779,0.6625,NA,0.0306137622392271,0.213296398891967,21.3296398891967,6,85.3842923616358,0.728950911350456,17.1745152354571,23.2521380758905,5.19557523727417,389.312995910645,389.089965820312,0.279165168974582
+7910,311174,3799698,311274,3799598,9,79,0,NA,NA,NA,NA,0.0192965919001826,0.0710526315789474,7.10526315789474,5,71.3154202637004,0.774688714671586,5.78947368421053,47.0137572111907,15.5867252349854,389.724951850043,389.401611328125,0.471139155131292
+7911,311174,3799598,311274,3799498,10,79,89.196675900277,0.869206851675559,35.6278380702488,0.924948240165631,NA,-0.0527100417614009,0,0,0,NA,NA,0,NA,NA,390.782549540202,390.007232666016,0.716686890019904
+7912,311174,3799498,311274,3799398,11,79,63.4349030470914,0.309081318375315,24.5395418759416,0.607087486157254,36.3690261817537,0.0141000223856057,0.0221606648199446,2.21606648199446,2,53.6717642846206,0.590934844192635,1.38504155124654,0,0,391.5226465861,391.266052246094,0.349424293843589
+7913,311174,3799398,311274,3799298,12,79,11.3573407202216,0.0276688516449518,8.77148398085949,0.354662698412698,31.1734512727217,0.00792659436995254,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.872528248587571,1.93905817174515,6.68002530506679,5.19557523727417,391.688764784071,391.584777832031,0.208781187138849
+7914,311174,3799298,311274,3799198,13,79,13.6842105263158,0.0467896027817071,10.8722485683169,0.474358974358974,13.8548671861359,0.00400874585487767,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483,391.698369344076,391.650421142578,0.0795229707941297
+7915,311174,3799198,311274,3799098,14,79,18.2825484764543,0.0890802052959423,12.5632853798142,0.712384953981593,34.8529780579234,0.00905539697919581,0.0166204986149584,1.66204986149584,2,50.7798612537939,0.564185110663984,1.38504155124654,9.22238985697428,5.19557523727417,391.854234483507,391.743194580078,0.206735174857631
+7916,311174,3799098,311274,3798998,15,79,20.4986149584488,0.0998778059378748,13.9745693549404,0.368721461187215,41.5646013505757,0.0101628236751068,0.03601108033241,3.601108033241,4,50.8438638110147,0.596583652618135,1.66204986149584,12.253864471729,5.19557523727417,391.947331746419,391.806732177734,0.273088664557964
+7917,311174,3798998,311274,3798898,16,79,10.803324099723,0.0350922020862803,12.2924637904401,0.271494708994709,18.1362566301814,0.00473263464702636,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,18.2358577251434,14.6953058242798,392.073059082031,391.883880615234,0.286268111243132
+7918,311174,3798898,311274,3798798,17,79,39.4736842105263,0.101227506018116,16.673786140438,0.626568486590038,15.5867255584239,-0.00268483736075914,0,0,0,NA,NA,0,NA,NA,392.286417643229,392.151580810547,0.172621315191128
+7919,311174,3798798,311274,3798698,18,79,27.7008310249307,0.0674850040120775,10.7385877054942,0.496701388888889,16.8856194675349,0.014536875396934,0.14404432132964,14.404432132964,3,84.7034247094431,0.750590887604087,11.3573407202216,16.2246557107339,0,392.299760606554,392.249053955078,0.117659092138509
+7920,311174,3798698,311274,3798598,19,79,36.01108033241,0.0877305052157008,12.8611105396338,0.488951036848233,19.9836950696937,0.00642845026817456,0.0304709141274238,3.04709141274238,2,67.4369707831767,0.724952380952381,2.77008310249307,17.691444310275,10.3911504745483,392.663887023926,392.395416259766,0.334797439760943
+7921,311174,3798598,311274,3798498,20,79,22.7146814404432,0.0737836043865381,10.5947824330587,0.435915659796257,29.4415928554035,0.0503263582848432,0.337950138504155,33.7950138504155,4,90.1361358438035,0.815464132225146,22.7146814404432,13.9314298043486,0,393.008639865451,392.925598144531,0.13180154754549
+7922,311174,3798498,311274,3798398,21,79,5.52631578947368,0.0283437016850726,7.65020997727792,0.527777777777778,64.2657162255477,0.0305202879105357,0.247368421052632,24.7368421052632,3,87.2052696395632,0.754828504828505,13.6842105263158,27.3562575299689,0,393.103802998861,392.999420166016,0.168401615064325
+7923,311174,3798398,311274,3798298,22,79,1.38504155124654,0.00674850040120775,1.83691322620419,0.208333333333333,25.9778761038998,0.0251295819849232,0.119113573407202,11.9113573407202,1,89.4584842426695,0.952699161425577,11.9113573407202,74.937280876692,62.3469009399414,393.710890028212,393.288238525391,1.03110048656149
+7924,311174,3798298,311274,3798198,23,79,5.54016620498615,0.026994001604831,6.05063205183557,0.526041666666667,67.5424771946855,0.0205751205193592,0.0415512465373961,4.15512465373961,2,71.8960321213508,0.715449290593799,3.601108033241,35.8256969451904,21.4219055175781,395.638615926107,395.153411865234,0.629396137157586
+7925,311174,3798198,311274,3798098,24,79,9.69529085872576,0.0472395028084543,9.76482842517699,0.544061302681992,41.5646017662397,0.0215790761590659,0.149584487534626,14.9584487534626,1,91.1912638540493,0.911491716577353,14.9584487534626,25.2503437289485,10.3911504745483,395.920244004991,395.822204589844,0.208987849955742
+7926,311174,3798098,311274,3797998,25,79,28.4210526315789,0.0728838043330437,10.5265714663115,0.535590377887979,19.9836951995887,0.00520410980449541,0.0184210526315789,1.84210526315789,3,42.9142441968359,0.617962466487936,1.31578947368421,14.1022754396711,0,395.905024210612,395.868011474609,0.0741341219486122
+7927,311174,3797998,311274,3797898,26,79,26.0387811634349,0.0845812050284705,16.2364220918949,0.39656432748538,30.2592654786679,0.00140929300082626,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,7.79336285591125,5.19557523727417,396.022041320801,395.906097412109,0.161028427785301
+7928,311174,3797898,311274,3797798,27,79,34.3490304709141,0.111575206633302,13.0121102406074,0.564090575724239,48.4920350821983,0.00931322692449713,0.07202216066482,7.20221606648199,3,71.7419001336085,0.579468511103021,3.601108033241,12.9100440648886,0,396.286390516493,396.163452148438,0.219575265198131
+7929,311174,3797798,311274,3797698,28,79,35.7340720221607,0.17411131035116,16.5896588603096,0.513227513227513,15.5867255064659,0.0153134963363219,0.149584487534626,14.9584487534626,4,84.9473202868129,0.886203635599454,13.5734072022161,23.5484189987183,0,396.67965443929,396.491088867188,0.233497896449518
+7930,311174,3797698,311274,3797598,29,79,8.68421052631579,0.0445401026479712,10.2483863680963,0.408602150537634,10.3911504415599,0.0264296248189614,0.260526315789474,26.0526315789474,2,90.487327189996,0.870846495261706,13.9473684210526,51.7507076841412,26.4923400878906,396.944468180339,396.734191894531,0.368000614771355
+7931,311174,3797598,311274,3797498,30,79,20.7756232686981,0.0506137530090582,10.0983061758305,0.491512345679012,17.0843273911715,0.00458055201594923,0.0526315789473684,5.26315789473684,3,68.0669290098109,0.708812260536398,3.601108033241,12.1842589378357,5.19557523727417,397.658856709798,397.246398925781,0.884899123318298
+7932,311174,3797498,311274,3797398,31,79,3.04709141274238,0.0148467008826571,6.09908954011736,0.355555555555556,10.3911504415599,-0.00269711763164405,0,0,0,NA,NA,0,NA,NA,399.816151936849,397.969055175781,2.14431339755725
+7933,311174,3797398,311274,3797298,32,79,3.04709141274238,0.0296934017653141,7.65504891272365,0.515151515151515,NA,0.00714567620199982,0,0,0,NA,NA,0,NA,NA,402.600430806478,401.478057861328,1.17407523112126
+7934,311174,3797298,311274,3797198,33,79,3.15789473684211,0.0323928019257972,7.00485475929601,0.611111111111111,NA,0.0190356688608134,0.128947368421053,12.8947368421053,3,82.5170849183998,0.808660624370594,6.57894736842105,48.6323493159547,5.19557523727417,403.836513943142,403.560394287109,0.470621894100992
+7935,311174,3797198,311274,3797098,34,79,26.8698060941828,0.0654604538917152,12.2662658344181,0.644561227894561,18.1845130908769,0.0166628963341891,0.0831024930747922,8.31024930747922,4,72.1196512904488,0.732905851162217,5.54016620498615,3.70863858858744,0,405.062822977702,404.233093261719,0.968485317310812
+7936,311174,3797098,311274,3796998,35,79,33.7950138504155,0.0823317048947346,14.3625068831877,0.672571121846484,18.8955827776561,0.0207492170296787,0.074792243767313,7.4792243767313,4,65.1562766893011,0.673234925497842,2.77008310249307,7.03069688655712,0,406.652004665799,406.101135253906,1.0063537028077
+7937,311174,3796998,311274,3796898,36,79,3.32409972299169,0.0107976006419324,2.07452913465899,0.194444444444444,50.1094260880735,0.0209559791323967,0.0831024930747922,8.31024930747922,5,66.1291152801275,0.554843085270362,2.77008310249307,15.7592791398366,0,408.422332763672,407.724945068359,0.719933499035713
+7938,311174,3796898,311274,3796798,37,79,13.6842105263158,0.0701844041725607,16.2155242189517,0.557150451887294,15.5867256623399,0.0200239048994263,0.144736842105263,14.4736842105263,4,84.7932208551162,0.790769230769231,12.3684210526316,18.216533314098,0,409.253441704644,408.817810058594,0.715414963760463
+7939,311174,3796798,311274,3796698,38,79,15.2354570637119,0.0494890029421902,9.92245556348203,0.508526383526384,19.6125262941027,0.0158845872319525,0.102493074792244,10.2493074792244,4,74.3958230412781,0.762548067192876,6.64819944598338,20.9647343223159,5.19557523727417,410.375574747721,409.449127197266,0.877112236681693
+7940,311174,3796698,311274,3796598,39,79,21.8836565096953,0.213252612678165,27.8665212940928,0.687763713080169,NA,-0.00487439191259748,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,16.4298515319824,16.4298515319824,411.642206827799,411.198822021484,0.56534794419034
+7941,311174,3796598,311274,3796498,40,79,14.6814404432133,0.0715341042528022,14.3195453295355,0.416666666666667,10.3911504415599,0.0381720171074416,0.315789473684211,31.5789473684211,2,92.2881193512176,0.836818521284541,24.6537396121884,32.8171114001358,11.6176595687866,412.408820258247,411.990325927734,0.685169744534788
+7942,311174,3796498,311274,3796398,41,79,25.7617728531856,0.251044214924928,31.4147120322526,0.702508960573477,NA,-0.000529273483613838,0.0443213296398892,4.43213296398892,3,59.9532355436098,0.520410628019324,1.66204986149584,18.8033952116966,0,413.302083333333,412.459594726562,0.969902875531263
+7943,311174,3796398,311274,3796298,42,79,0.526315789473684,0.0053988003209662,2.59778761038998,0.166666666666667,NA,-0.0237145243439476,0.0342105263157895,3.42105263157895,2,69.9319173725669,0.884953072963972,3.15789473684211,11.8809899550218,0,413.732109917535,413.00732421875,1.16719861091564
+7944,311174,3796298,311274,3796198,43,79,0,NA,NA,NA,NA,-0.0236733343090715,0,0,0,NA,NA,0,NA,NA,413.062662760417,412.399597167969,1.03630328478613
+7945,311174,3796198,311274,3796098,44,79,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,-0.025059286622931,0,0,0,NA,NA,0,NA,NA,412.882470024957,412.441864013672,0.626174041456672
+7946,311174,3796098,311274,3795998,45,79,82.8254847645429,0.807120647984447,34.884192256507,0.902452619843924,NA,0.0733824665623912,0.559556786703601,55.9556786703601,1,98.1286925834025,0.915236897274633,55.9556786703601,1.44092109415791,0,412.379900614421,411.256134033203,1.30960940540946
+7947,311174,3795998,311274,3795898,46,79,16.3157894736842,0.167362809949952,17.6162402963645,0.782258064516129,NA,0.00349970719660058,0.0210526315789474,2.10526315789474,2,53.0195467702593,0.693548387096774,1.31578947368421,4.16569113731384,0,408.894229465061,407.218627929688,2.61679692024855
+7948,311174,3795898,311274,3795798,47,79,15.2354570637119,0.0494890029421902,7.31699865468536,0.468201754385965,31.1734511168478,-0.02450046495717,0,0,0,NA,NA,0,NA,NA,405.388737996419,404.430328369141,1.3591280182856
+7949,311174,3795798,311274,3795698,48,79,22.9916897506925,0.0746834044400325,8.39102515098823,0.481481481481482,18.1362565262654,-0.00672711181517889,0,0,0,NA,NA,0,NA,NA,404.119557698568,403.754974365234,0.445065102793768
+7950,311174,3795698,311274,3795598,49,79,3.601108033241,0.0175461010431402,5.03488731338802,0.386111111111111,67.5424771946855,0.00890383541497671,0.0304709141274238,3.04709141274238,2,62.6985064770805,0.656190476190476,2.21606648199446,43.8719249205156,10.3911504745483,403.596015930176,403.348266601562,0.333257709553632
+7951,311174,3795598,311274,3795498,50,79,11.0526315789474,0.11337480674029,13.2351084414874,0.777777777777778,NA,0.00125050565913721,0,0,0,NA,NA,0,NA,NA,403.421417236328,403.212677001953,0.299347093853027
+7952,311174,3795498,311274,3795398,51,79,1.66204986149584,0.0161964009628986,4.73848231235071,0.5,NA,0.00452554450181358,0,0,0,NA,NA,0,NA,NA,403.104474385579,402.895172119141,0.29231071531347
+7953,311174,3795398,311274,3795298,52,79,0,NA,NA,NA,NA,0.00608040725236608,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,113.947868347168,113.947868347168,403.042114257812,402.978363037109,0.0955631006842461
+7954,311174,3795298,311274,3795198,53,79,0,NA,NA,NA,NA,0.00108251139160663,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,80.2301292419434,79.1366424560547,402.945515950521,402.709930419922,0.241821291806274
+7955,311174,3795198,311274,3795098,54,79,1.31578947368421,0.00674850040120775,2.25977506575437,0.145833333333333,20.7823006752878,0.0218641432582349,0.0710526315789474,7.10526315789474,5,71.1059988853862,0.599446603860597,4.21052631578947,45.3874171574911,10.3911504745483,401.964594523112,401.449523925781,0.62000751128192
+7956,311174,3795098,311274,3794998,55,79,0,NA,NA,NA,NA,0.021501245744972,0.0997229916897507,9.97229916897507,5,69.0932353194363,0.666769230769231,3.8781163434903,63.5952515072293,34.8529777526855,401.057790120443,400.800903320312,0.415254111589784
+7957,311174,3794998,311274,3794898,56,79,31.0249307479224,0.151166408987054,25.679438826709,0.723333333333333,20.7823006752878,0.0303590991222293,0.210526315789474,21.0526315789474,4,87.709168397882,0.744776119402985,15.7894736842105,9.57484740959971,0,400.789800008138,400.718231201172,0.144205171813572
+7958,311174,3794898,311274,3794798,57,79,26.5927977839335,0.0647856038515944,17.3244671504116,0.455502136752137,17.5159483182526,0.0280397010965845,0.10803324099723,10.803324099723,5,72.7008137331253,0.620544672718586,4.43213296398892,10.0571780938369,0,401.071624755859,400.927337646484,0.158803936477511
+7959,311174,3794798,311274,3794698,58,79,4.73684210526316,0.0161964009628986,5.31238332704417,0.388888888888889,20.7823006752878,0.0184259884703926,0.0236842105263158,2.36842105263158,5,32.5066171396475,0.317160826594789,1.05263157894737,39.717477162679,16.4298515319824,401.263442993164,401.168731689453,0.120081888292518
+7960,311174,3794698,311274,3794598,59,79,22.4376731301939,0.109325706499566,19.2163599562396,0.499444444444444,25.9778758441098,0.0234924277836177,0.155124653739612,15.5124653739612,5,76.9286839393868,0.719351022477607,6.92520775623269,13.1504910417965,0,401.379048665365,401.341125488281,0.0933244670436197
+7961,311174,3794598,311274,3794498,60,79,11.6343490304709,0.0283437016850726,8.18995169269528,0.39047619047619,23.1941744192287,0.0193385837783933,0.0277008310249307,2.77008310249307,5,32.4430614223119,0.367083059390752,0.831024930747922,17.1731454372406,5.19557523727417,401.434211730957,401.396148681641,0.0818774003945661
+7962,311174,3794498,311274,3794398,61,79,16.0664819944598,0.0521884031026733,12.3115180269815,0.567464972303682,25.9778761038998,0.0138352448273488,0.0637119113573407,6.37119113573407,3,77.3292522201472,0.79232412886259,5.81717451523546,24.6379268065743,10.3911504745483,401.563252766927,401.471618652344,0.20001317760507
+7963,311174,3794398,311274,3794298,62,79,30.5263157894737,0.15656520930802,17.5450504531944,0.634562132225684,20.7823006752878,0.0105860201404539,0.0263157894736842,2.63157894736842,1,72.0745708707785,1,2.63157894736842,23.2018045425415,15.5867252349854,402.162671407064,401.810241699219,0.405479306911714
+7964,311174,3794298,311274,3794198,63,79,15.2354570637119,0.0247445014710951,6.67094211209714,0.489964896214896,20.9651005841589,0.00665982182968377,0.0304709141274238,3.04709141274238,2,63.7391874251729,0.793714285714286,2.49307479224377,31.0369635495273,20.7823009490967,402.607777913411,402.506927490234,0.120544836173154
+7965,311174,3794198,311274,3794098,64,79,30.7479224376731,0.0998778059378748,13.0545107785221,0.612884160756501,29.9267034677962,0.00191144316284363,0,0,0,NA,NA,0,NA,NA,402.761327107747,402.652252197266,0.125631660460388
+7966,311174,3794098,311274,3793998,65,79,66.7590027700831,0.325277719338214,16.7942755485497,0.437152777777778,10.3911503376439,-0.0112703547509736,0,0,0,NA,NA,0,NA,NA,403.085812038845,402.933746337891,0.290527659275672
+7967,311174,3793998,311274,3793898,66,79,37.8947368421053,0.129571207703189,11.9659564263016,0.350966183574879,17.3185838960732,0.00226670280925119,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,9.48265624046326,7.34765291213989,403.555290222168,403.319061279297,0.235199244320284
+7968,311174,3793898,311274,3793798,67,79,73.6842105263158,0.359020221344253,19.9626875332626,0.662068965517241,11.6176592829322,-0.00254741746348902,0.0470914127423823,4.70914127423823,1,79.9545729128315,0.916046511627907,4.70914127423823,9.94711230782902,5.19557523727417,403.751427544488,403.730346679688,0.0411107563806559
+7969,311174,3793798,311274,3793698,68,79,50.415512465374,0.163763609735975,15.7181634044638,0.62804014659337,19.0504424761932,0.0192741631214437,0.196675900277008,19.6675900277008,3,89.5622770831781,0.661406896551724,16.8975069252078,12.8854975163097,0,403.579915364583,403.340240478516,0.216779266348817
+7970,311174,3793698,311274,3793598,69,79,10.803324099723,0.0350922020862803,9.27636336747746,0.564604377104377,22.9992698400896,0.019736636520642,0.135734072022161,13.5734072022161,2,88.6064526575167,0.83470695970696,13.0193905817175,24.5623239011181,5.19557523727417,403.124638875326,403.004058837891,0.177199955935838
+7971,311174,3793598,311274,3793498,70,79,29.4736842105263,0.0755832044935268,11.6514575850961,0.557782567049808,28.6836020798891,0.0110253665607879,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.91293446222941,5.19557523727417,402.908837212457,402.875183105469,0.0741442458889365
+7972,311174,3793498,311274,3793398,71,79,32.9639889196676,0.0803071547743723,11.5413346286563,0.698330315517816,18.1957817256044,0.0147209964993396,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.939153885049722,3.32409972299169,11.2570795615514,0,402.970375061035,402.874816894531,0.104179703541879
+7973,311174,3793398,311274,3793298,72,79,35.7340720221607,0.17411131035116,16.6556003746056,0.695156695156695,10.3911504415599,0.0217498301900375,0.163434903047091,16.3434903047091,1,91.8133927298019,0.765614855213609,16.3434903047091,11.8393508943461,0,403.204498291016,403.085327148438,0.267890578671366
+7974,311174,3793298,311274,3793198,73,79,20.7756232686981,0.0506137530090582,9.80833326662924,0.587658514492754,12.9889380519499,0.0192544934176324,0.102493074792244,10.2493074792244,3,78.011758378977,0.780813600485732,6.37119113573407,17.7268964019982,5.19557523727417,403.502133687337,403.225158691406,0.435406741053716
+7975,311174,3793198,311274,3793098,74,79,9.21052631578947,0.0314930018723029,6.53280702229206,0.462777777777778,20.7823007792038,0.0196521008747847,0.0973684210526316,9.73684210526316,6,71.7043236486691,0.654925201930889,6.05263157894737,33.8728590269346,10.3911504745483,403.524675157335,403.263061523438,0.471430551471305
+7976,311174,3793098,311274,3792998,75,79,0,NA,NA,NA,NA,0.0145625167486519,0.03601108033241,3.601108033241,2,66.2503367525872,0.769476372924649,2.77008310249307,51.91877247737,37.4658241271973,404.297459920247,403.666717529297,0.727925992046556
+7977,311174,3792998,311274,3792898,76,79,0,NA,NA,NA,NA,0.0230083385627909,0.124653739612188,12.4653739612188,2,87.7087513106978,0.849683544303798,11.9113573407202,72.4409665425619,47.9008369445801,405.389719645182,405.007781982422,0.606258757277162
+7978,311174,3792898,311274,3792798,77,79,19.1135734072022,0.093129305536667,11.5567620136395,0.716975308641975,42.8438108170318,0.0147977623766408,0.0470914127423823,4.70914127423823,2,69.3972270953445,0.664186046511628,2.49307479224377,19.115002043107,0,406.135340372721,405.619964599609,0.891369866811733
+7979,311174,3792798,311274,3792698,78,79,22.8947368421053,0.23484781396203,27.5939647271788,0.800766283524904,NA,0.0286266813881842,0.160526315789474,16.0526315789474,5,81.6947389562367,0.764003075649139,7.89473684210526,15.4376790640784,0,407.252966986762,406.117370605469,1.75700749428754
+7980,311174,3792698,311274,3792598,79,79,27.1468144044321,0.264541215727344,37.7574666768638,0.751700680272109,NA,0.0235611893884177,0.0969529085872576,9.69529085872576,3,81.5772483314349,0.828167971229109,8.58725761772853,10.0015605926514,0,409.23580678304,408.615966796875,0.659024625236869
+7981,311174,3792598,311274,3792498,80,79,5.81717451523546,0.0566874033701451,18.2515554516769,0.523809523809524,NA,0.0202874287700818,0.038781163434903,3.8781163434903,5,48.409572551163,0.479827089337176,1.93905817174515,13.7908139228821,0,409.918891059028,409.396118164062,0.733395145241756
+7982,311174,3792498,311274,3792398,81,79,11.0803324099723,0.026994001604831,8.03742034709872,0.450231481481481,12.5432280736387,0.0283503433000738,0.124653739612188,12.4653739612188,8,65.4657084067458,0.534018987341772,3.04709141274238,15.6143458366394,0,410.380508422852,409.817779541016,0.726781865311057
+7983,311174,3792398,311274,3792298,82,79,15.5263157894737,0.0796323047342515,19.5310858252927,0.597926267281106,25.9778761038998,0.0240085793110331,0.0894736842105263,8.94736842105263,4,72.2388167631214,0.705821635012386,5,23.9421104403103,0,410.762793646918,410.288421630859,0.861979457549979
+7984,311174,3792298,311274,3792198,83,79,3.601108033241,0.0175461010431402,6.01353529259117,0.4,16.4298513045218,0.0183368796496617,0.0581717451523546,5.81717451523546,6,52.8140012757938,0.469117647058824,1.93905817174515,33.4095276877994,10.3911504745483,410.399607340495,408.969055175781,1.35532793625236
+7985,311174,3792198,311274,3792098,84,79,31.5789473684211,0.102577206098358,10.7259219774445,0.430041152263374,17.3185839653505,0.0330840303103289,0.28808864265928,28.808864265928,2,94.5338776366185,0.917372396429389,28.5318559556787,3.83602527471689,0,407.099177042643,405.982757568359,1.88854294275802
+7986,311174,3792098,311274,3791998,85,79,16.8975069252078,0.0823317048947346,14.3021611553726,0.539473684210526,16.4298513045218,0.0308250137068725,0.188365650969529,18.8365650969529,5,80.7371337677046,0.668683855794878,9.41828254847645,14.0157064620186,0,406.09191555447,405.834075927734,0.513158959108388
+7987,311174,3791998,311274,3791898,86,79,12.1052631578947,0.0413908024607409,7.71865934071405,0.46384479717813,29.1060425542626,0.0435900847749987,0.397368421052632,39.7368421052632,3,94.4142795836721,0.814292245361247,34.7368421052632,26.6187283187513,0,407.286219278971,406.391571044922,1.00506193692256
+7988,311174,3791898,311274,3791798,87,79,8.86426592797784,0.0215952012838648,6.61953382749113,0.334325396825397,12.9889379740129,0.0347731911446559,0.235457063711911,23.5457063711911,5,82.7074439154455,0.714152029945292,10.5263157894737,14.7274290084839,0,408.262915717231,407.612426757812,0.926404854169738
+7989,311174,3791798,311274,3791698,88,79,1.93905817174515,0.00944790056169086,4.3296459999973,0.236111111111111,110.459443730206,0.0390052219242189,0.307479224376731,30.7479224376731,3,93.3218660634582,0.77618,27.7008310249307,24.6063318553272,5.19557523727417,408.516024271647,408.271392822266,0.667532489223658
+7990,311174,3791698,311274,3791598,89,79,20.4986149584488,0.0998778059378748,12.0582417850727,0.736326109391125,60.5902979113002,0.0388165539716837,0.351800554016621,35.1800554016621,4,89.3609058142306,0.726181226181226,17.7285318559557,9.00986366572343,0,409.505479600694,408.652526855469,0.906599409540809
+7991,311174,3791598,311274,3791498,90,79,32.3684210526316,0.110675406579807,13.4673285326655,0.608730158730159,23.9532501020753,0.050212081940926,0.442105263157895,44.2105263157895,7,88.8985844666084,0.734023128423615,25.2631578947368,4.34482445035662,0,409.840792338053,409.587036132812,0.350266434704058
+7992,311174,3791498,311274,3791398,91,79,16.3434903047091,0.0530882031561677,12.9749772175879,0.559437543133195,25.9778758995317,0.0495096571384568,0.457063711911357,45.7063711911357,4,89.4683155377856,0.691007653061225,17.7285318559557,9.25703467455777,0,409.417202419705,409.23193359375,0.255903231254115
+7993,311174,3791398,311274,3791298,92,79,33.7950138504155,0.109775606526313,15.353360801253,0.552582215836526,14.9924457085776,0.0455013405672891,0.440443213296399,44.0443213296399,4,91.5839858001962,0.669503594195036,27.1468144044321,7.63151878680823,0,409.198252360026,409.07275390625,0.263251121155189
+7994,311174,3791298,311274,3791198,93,79,31.0249307479224,0.0431904025677296,8.37251032500469,0.341436925647452,17.1625476891379,0.0506967245975195,0.470914127423823,47.0914127423823,6,89.9119105275576,0.589381596775003,25.7617728531856,4.7509757939507,0,409.501644558377,409.255706787109,0.412188361796578
+7995,311174,3791198,311274,3791098,94,79,7.89473684210526,0.026994001604831,8.44526293566923,0.457407407407407,31.8716051488611,0.0517008993598306,0.413157894736842,41.3157894736842,4,90.5207792107579,0.757411559541604,16.8421052631579,17.8971841866803,0,409.533905029297,409.330261230469,0.355598636320082
+7996,311174,3791098,311274,3790998,95,79,0,NA,NA,NA,NA,0.0240367802378442,0.0637119113573407,6.37119113573407,4,65.0116480483246,0.554980276134122,2.77008310249307,19.7538689530414,5.19557523727417,409.629340277778,409.400909423828,0.487148758140238
+7997,311174,3790998,311274,3790898,96,79,27.7008310249307,0.26994001604831,22.9572126759658,0.818333333333333,NA,0.0218881348848748,0.0609418282548476,6.09418282548476,3,70.3609634648865,0.749436057608884,3.04709141274238,3.64025937427174,0,410.259691874186,409.536499023438,1.45499519716776
+7998,311174,3790898,311274,3790798,97,79,59.0027700831025,0.574972234182901,33.6513510469174,0.844287949921753,NA,0.0166851054685207,0.113573407202216,11.3573407202216,2,85.7902338523781,0.852853260869565,10.2493074792244,5.7549503256635,0,412.433614095052,411.296783447266,1.75965326185407
+7999,311174,3790798,311274,3790698,98,79,41.8421052631579,0.429204625516813,30.1151924277834,0.865828092243187,NA,0.0214933379584181,0.278947368421053,27.8947368421053,1,95.1692193166118,0.905606298008943,27.8947368421053,6.64312132799401,0,414.772504170736,413.600189208984,1.39738744154203
+8000,311174,3790698,311274,3790598,99,79,27.1468144044321,0.132270607863672,17.3373163307356,0.547849462365591,31.1734513246797,0.0257809060467108,0.309941520467836,30.9941520467836,2,92.7938375156092,0.779971603514065,24.5614035087719,12.2119844634578,0,416.741355895996,415.955108642578,0.960490860795094
+8001,311274,3800598,311374,3800498,0,80,67.590027700831,0.164663409789469,16.4803515116181,0.642898517145505,12.9889379740129,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.848756790161,388.696350097656,0.114565399034987
+8002,311274,3800498,311374,3800398,1,80,41.5789473684211,0.071084204226055,10.6467729813568,0.598276439089692,15.3124325311548,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.806958516439,388.732269287109,0.10625852583253
+8003,311274,3800398,311374,3800298,2,80,26.8698060941828,0.0654604538917152,15.8340956182381,0.623065476190476,15.5867255584239,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.809534072876,388.698974609375,0.183189902146726
+8004,311274,3800298,311374,3800198,3,80,67.8670360110803,0.66135303931836,36.0507947849016,0.79047619047619,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.001955668132,388.810424804688,0.249824833885032
+8005,311274,3800198,311374,3800098,4,80,34.9030470914127,0.11337480674029,18.8805637145154,0.539982201881515,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.879434585571,388.690246582031,0.237844796606209
+8006,311274,3800098,311374,3799998,5,80,40.5263157894737,0.138569208238133,25.2125172727514,0.684031049490735,10.3911504415599,0.0116972267547489,0.0526315789473684,5.26315789473684,2,57.9472927876865,0.577777777777778,3.94736842105263,6.95867854356766,0,388.70679473877,388.630645751953,0.128941834565501
+8007,311274,3799998,311374,3799898,6,80,27.4238227146814,0.0668101539719568,13.4691368018204,0.556560283687943,12.9889379999919,0.0157020442364284,0.0997229916897507,9.97229916897507,5,72.7960470727632,0.62974358974359,6.37119113573407,12.7985541952981,0,388.683513641357,388.620910644531,0.103113560781799
+8008,311274,3799898,311374,3799798,7,80,40.9972299168975,0.19975561187575,26.5613348037307,0.702418388739143,15.5867256623399,0.00065859658440844,0.0415512465373961,4.15512465373961,2,73.7604105198396,0.762874408828166,3.8781163434903,13.8548671722412,5.19557523727417,388.911242167155,388.78076171875,0.20845456708962
+8009,311274,3799798,311374,3799698,8,80,35.7340720221607,0.116074206900773,17.2636772276413,0.440145780768152,17.3185840692665,0.00184095652482414,0.0554016620498615,5.54016620498615,3,68.7760571374694,0.692649702014947,3.8781163434903,13.4481822490692,10.3911504745483,389.143342971802,389.032775878906,0.143927441055571
+8010,311274,3799698,311374,3799598,9,80,35.2631578947368,0.0904299053761839,17.7991594947903,0.668847547380156,11.6900442467549,0.0035944980809099,0.121052631578947,12.1052631578947,3,80.9995839434101,0.766620604943958,7.63157894736842,11.6525820649188,5.19557523727417,389.418853759766,389.249908447266,0.320578041122253
+8011,311274,3799598,311374,3799498,10,80,28.2548476454294,0.0917796054564255,19.2323608647418,0.617596341280552,17.3185840692665,-0.00556851695034419,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,7.34765291213989,7.34765291213989,390.593254089355,389.731048583984,0.896562982376817
+8012,311274,3799498,311374,3799398,11,80,34.3490304709141,0.0669451239799809,11.6565565072944,0.570728715728716,23.8996458389306,-0.00736666159117253,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,7.79336285591125,5.19557523727417,391.953371047974,391.560760498047,0.459467616339022
+8013,311274,3799398,311374,3799298,12,80,54.5706371191136,0.265890915807586,29.5100504648926,0.722243805577139,10.3911504415599,0.00798091005899525,0.0692520775623269,6.92520775623269,1,84.4444444444445,0.919419642857143,6.92520775623269,12.172453956604,5.19557523727417,392.003481547038,391.716156005859,0.321590446182625
+8014,311274,3799298,311374,3799198,13,80,17.3684210526316,0.0593868035306282,12.9221079636194,0.554814814814815,12.1230088484866,0.0158709137915378,0.115789473684211,11.5789473684211,3,81.5945523935503,0.786036036036036,7.10526315789474,24.0453508333726,10.3911504745483,391.935817718506,391.700439453125,0.347322053193918
+8015,311274,3799198,311374,3799098,14,80,10.803324099723,0.105276606258841,25.4988938712967,0.636752136752137,NA,0.0306899289160688,0.268698060941828,26.8698060941828,3,89.8016039082109,0.732802159526297,13.5734072022161,29.3410218032365,10.3911504745483,392.382659912109,391.964904785156,0.498398607493371
+8016,311274,3799098,311374,3798998,15,80,35.1800554016621,0.0857059550953385,11.9215557867516,0.563975694444445,10.3911504415599,0.00725667881773528,0.0277008310249307,2.77008310249307,3,48.8844334475027,0.60442691211922,1.38504155124654,26.1065161705017,10.3911504745483,392.692123413086,392.227996826172,0.515137947532392
+8017,311274,3798998,311374,3798898,16,80,10.5263157894737,0.0512886030491789,21.0909306839372,0.406723484848485,10.3911504415599,0.0150476611600518,0.0110803324099723,1.10803324099723,3,15.913301703153,0.241596638655462,0.554016620498615,27.843740940094,18.7329120635986,392.907646179199,392.346557617188,0.649097275788287
+8018,311274,3798898,311374,3798798,17,80,5.26315789473684,0.053988003209662,25.9778758441098,0.316666666666667,NA,0.0155604081697914,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,16.6258406639099,5.19557523727417,392.882827758789,392.384582519531,0.608578829006304
+8019,311274,3798798,311374,3798698,18,80,1.66204986149584,0.00809820048144931,3.43091236407344,0.25,111.190164886139,0.0300122056196868,0.268698060941828,26.8698060941828,5,88.4524650774832,0.756378439568095,20.2216066481994,29.484619784601,0,392.690940856934,392.362030029297,0.487145608361118
+8020,311274,3798698,311374,3798598,19,80,30.1939058171745,0.098078205830886,11.485474470831,0.495555555555556,11.6176593061685,0.00874207769386348,0.0304709141274238,3.04709141274238,2,61.142681928233,0.656190476190476,1.93905817174515,18.2747201052579,11.6176595687866,392.90266418457,392.4453125,0.454240293446143
+8021,311274,3798598,311374,3798498,20,80,12.4653739612188,0.0607365036108698,15.0706964177416,0.577094474153298,10.3911503376439,0.0230952066328561,0.141274238227147,14.1274238227147,2,85.0561202815532,0.866147571375603,9.97229916897507,15.725170322493,0,393.119183858236,392.948089599609,0.22394116781883
+8022,311274,3798498,311374,3798398,21,80,29.7368421052632,0.152516109067295,16.6862101897812,0.547067901234568,16.4298513045218,0.0170776299018096,0.152631578947368,15.2631578947368,6,78.3674559367176,0.740372670807453,10.7894736842105,13.8774497015723,0,393.308423995972,393.023101806641,0.339486337634649
+8023,311274,3798398,311374,3798298,22,80,17.1745152354571,0.0836814049749762,14.7478486251676,0.638536155202822,31.1734510129318,0.0175155401143595,0.157894736842105,15.7894736842105,4,81.1773614619925,0.794005102040817,9.41828254847645,17.3634370084394,0,394.018714904785,393.503204345703,0.636604979883798
+8024,311274,3798298,311374,3798198,23,80,30.7479224376731,0.149816708906812,18.0173911039895,0.548878205128205,18.7329128064101,0.0176624882606473,0.163434903047091,16.3434903047091,3,81.8255474273652,0.824211141410206,8.58725761772853,20.7835286593033,0,395.063676834106,394.408355712891,0.643456544778149
+8025,311274,3798198,311374,3798098,24,80,86.7036011080332,0.844912250231211,36.729090575483,0.890841320553781,NA,-0.000276129258815277,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,395.697235107422,395.314025878906,0.326325304307505
+8026,311274,3798098,311374,3797998,25,80,18.4210526315789,0.0377916022467634,7.36294868308457,0.550793650793651,12.4693804467391,0.00885430940893696,0,0,0,NA,NA,0,NA,NA,396.011121749878,395.850769042969,0.20310037836565
+8027,311274,3797998,311374,3797898,26,80,34.0720221606648,0.110675406579807,18.4415509241804,0.54684286858454,19.0504423895965,0.0130039560989697,0.0193905817174515,1.93905817174515,4,32.9861111111111,0.362641242937853,1.10803324099723,3.71112516948155,0,396.340461730957,396.086364746094,0.271535122574662
+8028,311274,3797898,311374,3797798,27,80,14.6814404432133,0.0357670521264011,7.5806637772504,0.32037037037037,28.5756635584158,0.0179358244510249,0.0581717451523546,5.81717451523546,3,67.1425327494963,0.701378676470588,3.04709141274238,9.64979609988985,0,396.590461730957,396.369781494141,0.270296337321209
+8029,311274,3797798,311374,3797698,28,80,56.5096952908587,0.550677632738553,31.1958076444421,0.88562091503268,NA,0.0015360582249658,0.0304709141274238,3.04709141274238,4,44.3199257804352,0.449904761904762,1.10803324099723,17.7846104015004,0,396.951477050781,396.6171875,0.382802932588957
+8030,311274,3797698,311374,3797598,29,80,86.3157894736842,0.177080650527691,9.68013797870247,0.335115303983229,15.5867255376407,-0.0227796544891087,0,0,0,NA,NA,0,NA,NA,397.547693888346,397.020263671875,0.667131658343738
+8031,311274,3797598,311374,3797498,30,80,88.0886426592798,0.858409251033626,38.1713968735987,0.881027253668763,NA,-0.0891791062854899,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,2.50864562988281,0,398.420829772949,397.449554443359,0.915638871713338
+8032,311274,3797498,311374,3797398,31,80,75.0692520775623,0.731537443490921,34.5801891294131,0.911439114391144,NA,-0.0809486530753597,0,0,0,NA,NA,0,NA,NA,399.76340230306,398.719390869141,1.18226075318012
+8033,311274,3797398,311374,3797298,32,80,32.9639889196676,0.321228619097489,27.0212905329497,0.854341736694678,NA,-0.00610411612159273,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,30.3779602050781,27.9790287017822,401.694681167603,400.867431640625,1.1158397019764
+8034,311274,3797298,311374,3797198,33,80,28.9473684210526,0.148467008826571,17.9620821552852,0.752777777777778,42.8438104389818,0.012924066848475,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,8.74333581924438,5.19557523727417,403.343897501628,402.329895019531,1.01036484025903
+8035,311274,3797198,311374,3797098,34,80,58.4487534626039,0.284786716930967,28.9406895657587,0.761819321029847,10.3911503376439,0.0199045779698387,0.0858725761772853,8.58725761772853,5,66.2693000614395,0.58430303030303,3.32409972299169,4.76219949414653,0,404.802165985107,404.085357666016,0.949885354446641
+8036,311274,3797098,311374,3796998,35,80,57.0637119113573,0.556076433059519,34.8500897600481,0.805016181229773,NA,0.0153217593769393,0.03601108033241,3.601108033241,4,51.0431039550417,0.596583652618135,1.93905817174515,4.96146004016583,0,406.311019897461,405.707672119141,0.992606243933741
+8037,311274,3796998,311374,3796898,36,80,18.005540166205,0.0438652526078504,9.88006654800794,0.412847222222222,27.8176392620422,0.0281820055272489,0.160664819944598,16.0664819944598,4,80.6838621112957,0.737887788778878,8.03324099722992,11.5750255502503,0,408.064842224121,406.840301513672,0.933219392149031
+8038,311274,3796898,311374,3796798,37,80,7.36842105263158,0.0251944014978423,6.45231823986581,0.421296296296296,43.296459948015,0.0133924370262608,0.0394736842105263,3.94736842105263,3,61.9897847861118,0.668742216687422,2.36842105263158,16.302978960673,10.3911504745483,408.90874226888,408.533874511719,0.579658944875829
+8039,311274,3796798,311374,3796698,38,80,20.4986149584488,0.0998778059378748,13.1745571894364,0.772005501375344,10.3911504415599,0.0110117745603637,0.0831024930747922,8.31024930747922,3,77.688268094568,0.821937234108145,6.64819944598338,27.773574813207,5.19557523727417,409.995876312256,409.440979003906,0.640717066325909
+8040,311274,3796698,311374,3796598,39,80,0,NA,NA,NA,NA,-0.00899212814731168,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,55.2297248840332,55.2297248840332,411.11155128479,410.522003173828,0.571350776071335
+8041,311274,3796598,311374,3796498,40,80,3.04709141274238,0.0296934017653141,6.64192002653443,0.606060606060606,NA,0.0393490465243419,0.285318559556787,28.5318559556787,2,94.6354827040792,0.841169076052797,28.2548476454294,33.6219186181004,5.19557523727417,411.744344075521,411.358123779297,0.444160304304309
+8042,311274,3796498,311374,3796398,41,80,2.49307479224377,0.0242946014443479,5.57476804427454,0.592592592592593,NA,-0.0124930347135539,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,61.6748600006104,51.170482635498,412.110483169556,411.650573730469,0.52473112088408
+8043,311274,3796398,311374,3796298,42,80,0,NA,NA,NA,NA,-0.0385120147993133,0,0,0,NA,NA,0,NA,NA,412.18812306722,411.822235107422,0.565709461368354
+8044,311274,3796298,311374,3796198,43,80,8.58725761772853,0.0836814049749762,19.1123465513353,0.60752688172043,NA,-0.0320802009986956,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,1.73185841242472,0,412.057037353516,411.795013427734,0.383211548954433
+8045,311274,3796198,311374,3796098,44,80,8.03324099722992,0.0782826046540099,12.7922143521953,0.660919540229885,NA,-0.023387260901092,0.0470914127423823,4.70914127423823,3,66.8765781520719,0.748139534883721,3.601108033241,12.7313675319447,0,412.173825581868,411.753845214844,0.520988638849575
+8046,311274,3796098,311374,3795998,45,80,21.0526315789474,0.205154412196716,18.3055425556412,0.839912280701754,NA,0.0119676508994288,0.199445983379501,19.9445983379501,2,87.8784122014425,0.852464376209029,11.9113573407202,30.4638292458322,5.19557523727417,411.814311981201,411.108062744141,0.767598461770643
+8047,311274,3795998,311374,3795898,46,80,20,0.102577206098358,14.7964386807818,0.557971014492754,78.6233191098352,-0.00275814472778094,0,0,0,NA,NA,0,NA,NA,409.110567728678,407.462249755859,2.71953277625862
+8048,311274,3795898,311374,3795798,47,80,16.8975069252078,0.0411658524473673,7.00884357799918,0.441908212560386,27.5574823917391,-0.0223797731440681,0,0,0,NA,NA,0,NA,NA,405.224699020386,404.337493896484,1.3737149790547
+8049,311274,3795798,311374,3795698,48,80,36.5650969529086,0.178160410591885,18.0189446622787,0.710529595015576,11.6176592829322,-0.00712700167732843,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,7.64479287465413,5.19557523727417,403.824175516764,403.436920166016,0.653885579077532
+8050,311274,3795698,311374,3795598,49,80,6.92520775623269,0.0224950013373592,4.71771699714109,0.352046783625731,24.3209921040266,0.00291055015942444,0,0,0,NA,NA,0,NA,NA,403.117961883545,402.690155029297,0.377289182294322
+8051,311274,3795598,311374,3795498,50,80,18.9473684210526,0.0971784057773917,15.818513229737,0.640591397849462,20.7823006752878,0.000490908903176253,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,20.3123728434245,18.7329120635986,402.756370544434,402.540008544922,0.353136742167062
+8052,311274,3795498,311374,3795398,51,80,0.277008310249307,0.0026994001604831,0,0,NA,0.00810400577823321,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,14.6953058242798,14.6953058242798,402.667209625244,402.42578125,0.261480102237645
+8053,311274,3795398,311374,3795298,52,80,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.012982523656546,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,77.8903312683105,74.3893203735352,402.796173095703,402.52392578125,0.243529729831172
+8054,311274,3795298,311374,3795198,53,80,1.10803324099723,0.0107976006419324,5.19557522077996,0.25,NA,-0.0046985752455348,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,2.59778761863708,0,402.854259490967,402.693969726562,0.234447777152618
+8055,311274,3795198,311374,3795098,54,80,0,NA,NA,NA,NA,-0.00145937106677402,0,0,0,NA,NA,0,NA,NA,402.234437942505,401.376098632812,0.690692340620247
+8056,311274,3795098,311374,3794998,55,80,0,NA,NA,NA,NA,0.0109942342476396,0.0304709141274238,3.04709141274238,1,73.7293580723472,1,3.04709141274238,37.8580811240456,27.9790287017822,400.984367370605,400.786163330078,0.456046666725412
+8057,311274,3794998,311374,3794898,56,80,38.2271468144044,0.186258611073334,24.597154692747,0.713541666666667,20.7823006752878,0.0377887920774387,0.301939058171745,30.1939058171745,3,88.8402303038698,0.745487873660463,15.5124653739612,8.32623581055107,0,400.773792266846,400.709991455078,0.14023088029651
+8058,311274,3794898,311374,3794798,57,80,26.8698060941828,0.0523683631133722,10.6720024358481,0.452380952380952,15.4084416917986,0.0249247601819268,0.127423822714681,12.7423822714681,3,82.8133305766182,0.662067562067562,8.58725761772853,12.8701549301977,0,401.14754486084,400.986511230469,0.233364106500266
+8059,311274,3794798,311374,3794698,58,80,7.36842105263158,0.0755832044935268,14.547071526297,0.672619047619048,NA,0.0167091067770774,0,0,0,NA,NA,0,NA,NA,401.39729309082,401.181182861328,0.266322570748193
+8060,311274,3794698,311374,3794598,59,80,0,NA,NA,NA,NA,0.0238401669454998,0.0193905817174515,1.93905817174515,3,42.9746115819409,0.617584745762712,1.38504155124654,20.0400755746024,5.19557523727417,401.691014607747,401.445098876953,0.363862298010653
+8061,311274,3794598,311374,3794498,60,80,13.0193905817175,0.0422906025142353,8.94071409370704,0.368112014453478,12.1230087965286,0.015711030688702,0.0277008310249307,2.77008310249307,2,60.7721260804076,0.841770764847688,2.21606648199446,45.0635911941528,30.2951488494873,401.669250488281,401.473419189453,0.258143843515249
+8062,311274,3794498,311374,3794398,61,80,9.41828254847645,0.0183559210912851,4.47007677024387,0.358888888888889,21.8214157090522,0.0152484207989556,0.0332409972299169,3.32409972299169,3,56.4817076347424,0.574077195348053,1.66204986149584,25.8680132230123,10.3911504745483,401.727068583171,401.498962402344,0.300255913059764
+8063,311274,3794398,311374,3794298,62,80,27.8947368421053,0.0953788056704029,10.3099461982722,0.386165577342048,12.6435414584993,0.0132071406435946,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,11.8887522220612,7.34765291213989,402.34801864624,401.952423095703,0.385053178344457
+8064,311274,3794298,311374,3794198,63,80,0,NA,NA,NA,NA,0.0196724984126273,0.0221606648199446,2.21606648199446,2,55.3960460550465,0.693201133144476,1.66204986149584,41.5646023750305,20.7823009490967,402.733553568522,402.642700195312,0.088630460113221
+8065,311274,3794198,311374,3794098,64,80,32.9639889196676,0.160614309548745,24.9850165176042,0.736338383838384,10.3911503376439,0.00492217257859545,0.0166204986149584,1.66204986149584,1,62.4626804510367,0.709456740442656,1.66204986149584,19.0504423777262,15.5867252349854,402.894269943237,402.744934082031,0.177722821893847
+8066,311274,3794098,311374,3793998,65,80,12.1883656509695,0.118773607061256,17.9291386619527,0.696969696969697,NA,0.00930490072244934,0,0,0,NA,NA,0,NA,NA,403.260200500488,402.978179931641,0.319017307226318
+8067,311274,3793998,311374,3793898,66,80,50.7894736842105,0.260492115486619,23.4056383659967,0.772311022311022,10.3911504415599,0.00395420559601151,0,0,0,NA,NA,0,NA,NA,403.669427871704,403.401489257812,0.176573063124989
+8068,311274,3793898,311374,3793798,67,80,72.0221606648199,0.175461010431402,11.826626860356,0.365111111111111,13.3041025097825,0.00309637189665235,0,0,0,NA,NA,0,NA,NA,403.78525797526,403.762878417969,0.037460049388006
+8069,311274,3793798,311374,3793698,68,80,64.2659279778393,0.208753612410693,13.5294400600276,0.437283950617284,13.8548671861359,0.0108830369501845,0.0277008310249307,2.77008310249307,4,47.3502789312663,0.446197676966908,1.66204986149584,5.83778367042541,0,403.630533218384,403.448120117188,0.161203059177657
+8070,311274,3793698,311374,3793598,69,80,43.213296398892,0.140368808345121,14.3088273604496,0.502414021164021,20.9256337644932,0.0144766642788303,0.0692520775623269,6.92520775623269,4,69.2567592890233,0.73139880952381,4.70914127423823,9.65460298538208,0,403.273223876953,403.048614501953,0.214805426403643
+8071,311274,3793598,311374,3793498,70,80,57.3684210526316,0.196156411661772,17.222627380298,0.670238665389527,22.5141592034498,0.0224313936515835,0.0526315789473684,5.26315789473684,4,69.7983839702111,0.659498207885305,4.21052631578947,4.47927184104919,0,403.010042826335,402.914947509766,0.140655176485037
+8072,311274,3793498,311374,3793398,71,80,27.1468144044321,0.264541215727344,25.3292474716899,0.739795918367347,NA,0.0274546095727165,0.0803324099722992,8.03324099722992,6,65.8246769514686,0.537298128684953,4.70914127423823,14.2676865807895,0,403.044206619263,402.921691894531,0.188684538634362
+8073,311274,3793398,311374,3793298,72,80,0,NA,NA,NA,NA,0.0209572130504997,0.0581717451523546,5.81717451523546,3,71.4950951488085,0.734558823529412,4.15512465373961,64.7353034246536,36.7382659912109,403.432060241699,403.205810546875,0.241970277096819
+8074,311274,3793298,311374,3793198,73,80,0,NA,NA,NA,NA,0.0239736994970225,0.07202216066482,7.20221606648199,3,73.9076603955402,0.632034947215144,3.8781163434903,75.3399247389573,51.955753326416,403.268459320068,403.137817382812,0.182505480432715
+8075,311274,3793198,311374,3793098,74,80,0,NA,NA,NA,NA,0.0121090534185992,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,62.5630111694336,62.5630111694336,403.22545115153,403.143157958984,0.199397228891945
+8076,311274,3793098,311374,3792998,75,80,4.98614958448753,0.0485892028886958,14.043136100975,0.518518518518518,NA,0.00979095577956319,0,0,0,NA,NA,0,NA,NA,404.108310699463,403.380004882812,0.857762404494522
+8077,311274,3792998,311374,3792898,76,80,4.15512465373961,0.0404910024072465,13.203589827104,0.444444444444444,NA,0.0291764330899458,0.113573407202216,11.3573407202216,3,81.1460991557774,0.72205615942029,8.31024930747922,39.7799330920708,22.0429573059082,406.112754821777,405.017242431641,1.56586717586213
+8078,311274,3792898,311374,3792798,77,80,10.803324099723,0.0526383031294205,12.0722423289737,0.537745098039216,62.3469026493595,0.0118146108631973,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,11.1643576622009,5.19557523727417,407.657480239868,406.863891601562,0.697960971080249
+8079,311274,3792798,311374,3792698,78,80,11.8421052631579,0.0607365036108698,10.9709214314123,0.434108527131783,31.1734510129318,0.0167156185760417,0.0815789473684211,8.15789473684211,3,79.5956760805612,0.825787965616046,7.10526315789474,10.8332638586721,0,408.585057576497,407.998107910156,0.728005879660035
+8080,311274,3792698,311374,3792598,79,80,14.6814404432133,0.0715341042528022,13.7917205463441,0.651084010840108,51.9557516882196,0.0151535934766497,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.724952380952381,3.04709141274238,3.77860017256303,0,409.232906341553,408.768157958984,0.600146443343087
+8081,311274,3792598,311374,3792498,80,80,0,NA,NA,NA,NA,0.0206444957580577,0.03601108033241,3.601108033241,1,76.2797118658907,1,3.601108033241,45.7651634216309,40.5787391662598,410.762107849121,410.17822265625,1.07633278164142
+8082,311274,3792498,311374,3792398,81,80,20.7756232686981,0.101227506018116,12.4306716628671,0.563095238095238,10.3911504415599,0.0214587580164216,0.0415512465373961,4.15512465373961,3,66.0634298753637,0.715449290593799,3.32409972299169,8.35532229741414,0,411.933696746826,411.386688232422,0.731760698962332
+8083,311274,3792398,311374,3792298,82,80,10.5263157894737,0.026994001604831,6.95630905549551,0.47671568627451,16.1999800139645,0.0248194576100727,0.115789473684211,11.5789473684211,5,77.0211554668889,0.724903474903475,6.31578947368421,17.6000908179717,0,412.485572814941,411.112060546875,1.03008046104968
+8084,311274,3792298,311374,3792198,83,80,0,NA,NA,NA,NA,0.0196589786766376,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,20.9841156005859,18.7329120635986,412.138957977295,411.451263427734,1.00901470181355
+8085,311274,3792198,311374,3792098,84,80,53.7396121883656,0.261841815566861,19.9814897813669,0.775490196078431,25.9778758441098,0.0490418527072323,0.46814404432133,46.814404432133,2,96.5415707339089,0.927684294871795,45.983379501385,1.74378720402012,0,408.405162811279,406.30322265625,2.5424542346756
+8086,311274,3792098,311374,3791998,85,80,20.7756232686981,0.101227506018116,14.917982070814,0.5,15.5867255064659,0.0384337779876539,0.307479224376731,30.7479224376731,2,93.7978925953164,0.84838,29.0858725761773,4.96620008966944,0,406.804512023926,406.431427001953,0.739791796307884
+8087,311274,3791998,311374,3791898,86,80,13.6842105263158,0.140368808345121,24.8169271511737,0.708333333333333,NA,0.0244994073360981,0.147368421052632,14.7368421052632,2,87.9174073729302,0.915362097492682,13.6842105263158,1.94834071397781,0,408.846446990967,407.021667480469,1.92546483969118
+8088,311274,3791898,311374,3791798,87,80,7.20221606648199,0.0350922020862803,10.7601552773991,0.427777777777778,59.2386714907549,0.0423937088105611,0.304709141274238,30.4709141274238,6,86.888664455772,0.739814610903121,20.4986149584488,12.9870998642661,0,410.032592773438,408.686553955078,1.44575266869852
+8089,311274,3791798,311374,3791698,88,80,1.10803324099723,0.0107976006419324,5.19557522077996,0.25,NA,0.0447511314743371,0.357340720221607,35.7340720221607,7,89.1732628082876,0.768250183418929,27.9778393351801,37.0689300529717,5.19557523727417,410.069524765015,409.049926757812,1.06593371326808
+8090,311274,3791698,311374,3791598,89,80,8.31024930747922,0.0404910024072465,7.12940312749388,0.484567901234568,63.4200776796068,0.0420562675638109,0.304709141274238,30.4709141274238,7,83.9918480029268,0.732587238983763,13.2963988919668,18.5456619436091,0,410.674420674642,409.844940185547,0.620754511281892
+8091,311274,3791598,311374,3791498,90,80,19.7368421052632,0.101227506018116,15.66450342425,0.592391304347826,18.7329127343573,0.0531277390140244,0.486842105263158,48.6842105263158,2,97.2152229412004,0.846153846153846,48.1578947368421,11.8401948000934,0,410.272010803223,409.889068603516,0.446471581789663
+8092,311274,3791498,311374,3791398,91,80,10.803324099723,0.0526383031294205,9.0133597861116,0.524404761904762,31.1734510129318,0.0409316941266983,0.310249307479224,31.0249307479224,6,83.146350664606,0.626784365183506,11.9113573407202,10.2736076755183,0,409.588882446289,409.362670898438,0.335543638955443
+8093,311274,3791398,311374,3791298,92,80,4.43213296398892,0.0431904025677296,19.5535838733046,0.364583333333333,NA,0.029542221523753,0.238227146814404,23.8227146814404,4,87.6030031596836,0.742602495543672,17.7285318559557,18.810987838479,0,409.467445373535,409.305389404297,0.235863192770866
+8094,311274,3791298,311374,3791198,93,80,33.2409972299169,0.0404910024072465,9.1450885046532,0.339779131898697,14.2878318311659,0.050712498516319,0.487534626038781,48.7534626038781,7,91.5993216130027,0.63975051975052,29.9168975069252,4.4134992713278,0,409.833346048991,409.655731201172,0.159288560054204
+8095,311274,3791198,311374,3791098,94,80,22.8947368421053,0.0587119534905075,10.85958199879,0.386904761904762,25.8585270875705,0.0594321168296071,0.526315789473684,52.6315789473684,6,93.2066772152003,0.755315962863133,33.6842105263158,8.40900930166245,0,410.03671836853,409.832366943359,0.239107135235672
+8096,311274,3791098,311374,3790998,95,80,0.831024930747922,0.00404910024072465,1.29889380519499,0.0833333333333333,41.5646017662396,0.0256471988580005,0.135734072022161,13.5734072022161,1,90.4761904761905,0.8622557997558,13.5734072022161,12.9148442404611,0,410.484405517578,409.952301025391,0.821042496590418
+8097,311274,3790998,311374,3790898,96,80,23.8227146814404,0.232148413801547,20.2404881797912,0.821705426356589,NA,0.0248162529305597,0.0470914127423823,4.70914127423823,5,52.7943041311676,0.496279069767442,1.38504155124654,15.145324791179,0,411.917421340942,411.114227294922,0.869577004040877
+8098,311274,3790898,311374,3790798,97,80,74.792243767313,0.728838043330438,33.017728823989,0.910493827160494,NA,0.0409587539725684,0.382271468144044,38.2271468144044,3,94.5977081834188,0.775161933233682,34.9030470914127,2.86380368039228,0,412.759437561035,412.352569580078,0.523263462111022
+8099,311274,3790798,311374,3790698,98,80,45.2631578947368,0.464296827603094,35.3796869616265,0.826550387596899,NA,0.0448883574634429,0.397368421052632,39.7368421052632,5,90.5543916480288,0.772358236249271,26.0526315789474,5.44558259193471,0,413.87956237793,413.114868164062,1.01751850810444
+8100,311274,3790698,311374,3790598,99,80,21.0526315789474,0.0512886030491789,9.74170474801508,0.461748633879781,15.5867255584239,0.0347053754096591,0.309941520467836,30.9941520467836,5,88.2637837442153,0.757210045256899,18.1286549707602,7.18176014018509,0,415.889518737793,414.324462890625,1.44736382061221
+8101,311374,3800598,311474,3800498,0,81,64.2659279778393,0.31313041861604,21.5151725732616,0.760757541563229,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.074358622233,388.992401123047,0.101835113707761
+8102,311374,3800498,311474,3800398,1,81,43.6842105263158,0.224050213320097,31.6270158103773,0.649465811965812,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.969414605035,388.907440185547,0.1161713645438
+8103,311374,3800398,311474,3800298,2,81,53.185595567867,0.518284830812756,36.5829881645388,0.745659722222222,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.339345296224,388.916656494141,0.534812398400034
+8104,311374,3800298,311474,3800198,3,81,67.590027700831,0.658653639157877,38.4335276174397,0.80396174863388,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.62168375651,389.235717773438,0.461797234355117
+8105,311374,3800198,311474,3800098,4,81,16.8975069252078,0.0411658524473673,9.86936086660749,0.489673520923521,19.3926228806131,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.350893656413,389.093627929688,0.260229099062024
+8106,311374,3800098,311474,3799998,5,81,18.9473684210526,0.0971784057773917,17.5228999897691,0.40952380952381,36.3690261817537,0.0116797435478618,0,0,0,NA,NA,0,NA,NA,389.048882378472,388.863647460938,0.261740345010624
+8107,311374,3799998,311474,3799898,6,81,13.5734072022161,0.0264541215727344,6.91588452878896,0.29639846743295,16.0773291124648,0.0054422320166059,0.0415512465373961,4.15512465373961,3,62.866481365852,0.762874408828166,3.04709141274238,13.2284531911214,10.3911504745483,388.903483072917,388.781677246094,0.198868613349657
+8108,311374,3799898,311474,3799798,7,81,51.8005540166205,0.126196957502585,14.4210788712264,0.650966183574879,11.004404810288,-0.00375462319385617,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,389.201704237196,388.913238525391,0.420003436159082
+8109,311374,3799798,311474,3799698,8,81,24.0997229916898,0.046969562792406,12.3225520017193,0.305277777777778,21.5927687391599,0.0098031578576476,0.03601108033241,3.601108033241,4,49.9806743733363,0.596583652618135,1.66204986149584,10.4560061601492,0,389.576782226562,389.177459716797,0.513178926837791
+8110,311374,3799698,311474,3799598,9,81,37.8947368421053,0.0777427246219133,15.1295328471381,0.596146348777928,14.0661168806854,0.00214527931805749,0.0578947368421053,5.78947368421053,3,67.1449872437819,0.687808084127506,2.63157894736842,11.8152190121737,5.19557523727417,389.922631157769,389.502166748047,0.776529775202431
+8111,311374,3799598,311474,3799498,10,81,20.4986149584488,0.0499389029689374,10.1278509309882,0.319368548876746,18.7380932208942,-0.00813303156197168,0,0,0,NA,NA,0,NA,NA,390.962346394857,389.979339599609,1.00330970307026
+8112,311374,3799498,311474,3799398,11,81,42.1052631578947,0.136769608131144,12.7038427172477,0.534809447128288,19.8681149158727,-0.0141187490732548,0,0,0,NA,NA,0,NA,NA,392.498667399089,391.896301269531,0.707075506145098
+8113,311374,3799398,311474,3799298,12,81,63.98891966759,0.207853812357199,17.0642401081009,0.701802248677249,12.9406813574434,-0.0256114301173058,0,0,0,NA,NA,0,NA,NA,392.737341986762,392.421173095703,0.48911153420019
+8114,311374,3799298,311474,3799198,13,81,51.8421052631579,0.265890915807586,17.9979581312876,0.501282051282051,20.7823006752878,0.00375125633106922,0.102631578947368,10.2631578947368,2,83.9864943325958,0.87999097676517,8.68421052631579,1.99829816818237,0,392.729731241862,392.329986572266,0.597020002370651
+8115,311374,3799198,311474,3799098,14,81,22.1606648199446,0.215952012838648,26.5490605598791,0.770833333333333,NA,0.00854450210569674,0.138504155124654,13.8504155124654,3,86.8291212644284,0.890750898430112,13.0193905817175,18.0900760746002,0,393.28747897678,392.864135742188,0.570161861122817
+8116,311374,3799098,311474,3798998,15,81,23.8227146814404,0.232148413801547,26.5422645129897,0.806201550387597,NA,0.00767240472069965,0.0914127423822715,9.14127423822715,1,87.180691871343,0.918473351400181,9.14127423822715,37.3913515842322,25.977876663208,393.478012084961,393.184875488281,0.393300493391605
+8117,311374,3798998,311474,3798898,16,81,0,NA,NA,NA,NA,0.0173815207431856,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,40.5463838577271,31.6034507751465,393.775448269314,393.611022949219,0.251328415271095
+8118,311374,3798898,311474,3798798,17,81,7.63157894736842,0.039141302327005,11.4572619545263,0.511904761904762,18.7329127343573,0.0153717776715654,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,9.69679539544242,0,393.803136189779,393.591369628906,0.263808846253772
+8119,311374,3798798,311474,3798698,18,81,22.7146814404432,0.221350813159614,24.0058843272318,0.792682926829268,NA,0.0188860969328337,0.171745152354571,17.1745152354571,4,80.341170377029,0.742877492877493,8.03324099722992,20.7014527936136,0,393.582936604818,393.408599853516,0.30710698498578
+8120,311374,3798698,311474,3798598,19,81,42.1052631578947,0.205154412196716,16.6182480830268,0.522184936614467,25.9778758441098,0.01438441355516,0.10803324099723,10.803324099723,2,81.4732833757986,0.810272336359293,6.09418282548476,10.1747383826818,0,393.5517578125,393.449829101562,0.21172952765772
+8121,311374,3798598,311474,3798498,20,81,42.9362880886427,0.20920351243744,21.4390352484077,0.546251608751609,23.2353185658643,0.0208184645372389,0.168975069252078,16.8975069252078,2,86.9523044688293,0.909182389937107,13.5734072022161,9.02315174947019,0,393.434783935547,393.345947265625,0.16323445745204
+8122,311374,3798498,311474,3798398,21,81,33.9473684210526,0.04974608867176,9.3554847342449,0.473200156325156,13.6745079903738,0.0250816656754499,0.194736842105263,19.4736842105263,5,82.0750992469144,0.732528908999497,10.2631578947368,8.80278917905447,0,393.589604695638,393.328369140625,0.288661221749393
+8123,311374,3798398,311474,3798298,22,81,21.3296398891967,0.207853812357199,24.3095460849066,0.783549783549784,NA,0.0261059650532581,0.224376731301939,22.4376731301939,3,90.8984917596727,0.82093253968254,20.7756232686981,16.195138271944,0,394.049167209201,393.912780761719,0.24215437288123
+8124,311374,3798298,311474,3798198,23,81,22.1606648199446,0.215952012838648,30.5216822233361,0.722916666666667,NA,0.0350373778282096,0.32409972299169,32.409972299169,6,84.6002565328439,0.741783946798639,11.9113573407202,34.7999660255563,0,394.546058654785,394.264038085938,0.399383804861245
+8125,311374,3798198,311474,3798098,24,81,26.3157894736842,0.128221507622947,18.1057259944463,0.703819444444445,20.7823006752878,0.000885471180312747,0.0609418282548476,6.09418282548476,2,77.9005287687227,0.874718028804442,5.54016620498615,20.5054385228591,0,395.491366916233,395.021820068359,0.667262546270739
+8126,311374,3798098,311474,3797998,25,81,21.5789473684211,0.0737836043865381,15.3679242083445,0.550837742504409,31.1734511168478,0.00742987313705702,0.0368421052631579,3.68421052631579,3,60.6890396186355,0.688524590163934,2.36842105263158,9.85051509312221,5.19557523727417,396.215148925781,395.888824462891,0.351958453741144
+8127,311374,3797998,311474,3797898,26,81,52.3545706371191,0.170062210110435,15.9945690416913,0.588896386264807,22.5141591514918,0.0183343097143074,0.0831024930747922,8.31024930747922,4,75.1741302777884,0.710648005425735,6.37119113573407,5.77835567792257,0,396.73503112793,396.464080810547,0.31004232379461
+8128,311374,3797898,311474,3797798,27,81,41.2742382271468,0.0804421247823964,11.1931118428174,0.465925925925926,16.6258406316763,0.0159848660726933,0.0526315789473684,5.26315789473684,5,58.1042885535614,0.599616858237548,2.49307479224377,12.9437349219071,5.19557523727417,397.037618001302,396.863952636719,0.320280712474089
+8129,311374,3797798,311474,3797698,28,81,75.9002770083102,0.369817821986185,27.826740401459,0.842535642747732,25.9778761038998,0.019780724641557,0.0470914127423823,4.70914127423823,3,62.2367368656153,0.664186046511628,2.21606648199446,3.1828135322122,0,397.471051534017,397.097778320312,0.414721550382058
+8130,311374,3797698,311474,3797598,29,81,61.8421052631579,0.158589759428382,15.3743489419837,0.597907922157974,13.4105008210829,0.0190577783762771,0.0947368421052632,9.47368421052632,4,78.3601567675691,0.797480620155039,7.63157894736842,2.02050145467122,0,398.153391520182,397.733184814453,0.509039185654284
+8131,311374,3797598,311474,3797498,30,81,51.8005540166205,0.168262610003447,24.968252988582,0.712893061470297,16.4043982697274,-0.000401090583202095,0.03601108033241,3.601108033241,3,58.9388410023078,0.654214559386973,1.93905817174515,8.39285230636597,5.19557523727417,398.925214131673,398.545745849609,0.622670166907916
+8132,311374,3797498,311474,3797398,31,81,65.3739612188366,0.318529218937006,27.1247819523855,0.809387831280328,25.9778761038998,0.0145910765001904,0.152354570637119,15.2354570637119,4,85.9814351794022,0.801307189542484,13.5734072022161,0.377860017256303,0,400.345740424262,399.720275878906,0.936701021189317
+8133,311374,3797398,311474,3797298,32,81,69.8060941828255,0.340124420220871,27.989951491426,0.823064029500503,25.9778761038998,0.0223569409086582,0.326869806094183,32.6869806094183,4,89.2242254600693,0.805622860659205,25.4847645429363,1.50742429393833,0,401.626309712728,400.917236328125,0.821754010293802
+8134,311374,3797298,311474,3797198,33,81,61.0526315789474,0.31313041861604,28.0833049194039,0.765529421900577,20.7823008831198,0.0312048467063026,0.276315789473684,27.6315789473684,4,91.6213434270061,0.839153439153439,25,0.914357339768183,0,403.133236355252,402.331695556641,1.29981887435216
+8135,311374,3797198,311474,3797098,34,81,59.0027700831025,0.1916574113943,19.2671785578792,0.578737251744498,15.5867256623399,0.0312692024565668,0.260387811634349,26.0387811634349,3,89.0688718658634,0.782704654895666,20.7756232686981,1.85793060444771,0,404.44073232015,403.667694091797,1.05638044881009
+8136,311374,3797098,311474,3796998,35,81,61.218836565097,0.198855811822255,24.6681638391495,0.745769763293128,15.5867256623399,0.0333920054225502,0.263157894736842,26.3157894736842,5,88.3030962452816,0.82436974789916,21.8836565096953,0.865660883250989,0,405.826928032769,405.155853271484,1.59607433118676
+8137,311374,3796998,311474,3796898,36,81,38.2271468144044,0.124172407382223,10.2443499310081,0.313991769547325,48.4920353939463,0.0234556814997722,0.193905817174515,19.3905817174515,6,86.0603413894485,0.768027267901545,16.6204986149584,2.85734190259661,0,407.796610514323,406.540191650391,1.44186337441777
+8138,311374,3796898,311474,3796798,37,81,48.9473684210526,0.167362809949952,27.5167246364679,0.724298245614035,15.5867256623399,0.0165329760810461,0.144736842105263,14.4736842105263,4,84.0280516372188,0.741538461538461,11.5789473684211,1.4561037497087,0,409.251980251736,408.623382568359,0.820809437068525
+8139,311374,3796798,311474,3796698,38,81,33.5180055401662,0.108875806472818,21.7797155808576,0.673675530818388,16.2537765587636,0.0121927242056941,0.038781163434903,3.8781163434903,6,38.8666891304194,0.375792507204611,1.10803324099723,10.1076455797468,0,410.096689860026,409.791015625,0.322444634792687
+8140,311374,3796698,311474,3796598,39,81,18.005540166205,0.0438652526078504,8.06479698672538,0.279214559386973,23.1336229314328,0.013107249104826,0.0775623268698061,7.75623268698061,3,78.1888690965622,0.783183183183183,6.37119113573407,16.1651579141617,0,410.644007364909,410.234710693359,0.445783286408481
+8141,311374,3796598,311474,3796498,40,81,22.7146814404432,0.0553377032899036,12.7107320207229,0.437051435406699,12.9889379999919,0.015191667606484,0.07202216066482,7.20221606648199,2,76.258001882847,0.816017473607572,3.8781163434903,21.1799531349769,15.5867252349854,411.141977945964,410.87646484375,0.387408535845708
+8142,311374,3796498,311474,3796398,41,81,19.3905817174515,0.0629860037446057,14.6075451840267,0.41247582205029,27.7097345108264,0.01833821085699,0.0581717451523546,5.81717451523546,5,63.1925378284233,0.701378676470588,4.15512465373961,10.9942521821885,0,411.35977935791,411.104766845703,0.391135051006161
+8143,311374,3796398,311474,3796298,42,81,12.6315789473684,0.0323928019257972,7.62034752686286,0.431060606060606,26.9784524485353,0.00154813234815887,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,10.9291697740555,7.34765291213989,411.468570285373,411.265686035156,0.3265444529129
+8144,311374,3796298,311474,3796198,43,81,35.7340720221607,0.069644524140464,13.452070165571,0.512687038451744,14.5476105766175,-0.0097647045873308,0.0304709141274238,3.04709141274238,1,73.7293580723472,1,3.04709141274238,1.41697506471114,0,411.522282918294,411.39453125,0.203390561582216
+8145,311374,3796198,311474,3796098,44,81,40.9972299168975,0.0799022447502998,10.9492960170858,0.352129402129402,16.6258405817967,0.0157161220380346,0.130193905817175,13.0193905817175,4,77.7313972452049,0.770063694267516,5.54016620498615,8.67435380245777,0,411.509524875217,411.399688720703,0.222376971117058
+8146,311374,3796098,311474,3795998,45,81,31.3019390581717,0.0610064436269181,8.8853548702521,0.37284178187404,18.7687637563912,0.00244046516614375,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.91280193236715,4.43213296398892,21.3768538534641,5.19557523727417,411.409818013509,410.431610107422,0.960157511920338
+8147,311374,3795998,311474,3795898,46,81,22.3684210526316,0.114724506820532,10.3278224983029,0.512048192771084,31.1734513246797,0.00504996963044457,0,0,0,NA,NA,0,NA,NA,408.249155680339,406.517547607422,2.70915827570235
+8148,311374,3795898,311474,3795798,47,81,16.0664819944598,0.039141302327005,6.71985979429262,0.286249014972419,18.8168575043663,-0.00443742442667295,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,10.3911504745483,10.3911504745483,404.834915161133,403.514556884766,1.70098555963375
+8149,311374,3795798,311474,3795698,48,81,8.31024930747922,0.026994001604831,5.49384992947347,0.401234567901235,48.6141726510827,0.0016162476492614,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.817461655149166,3.32409972299169,20.7729297478994,14.6953058242798,403.195441351997,402.63720703125,0.823082453038954
+8150,311374,3795698,311474,3795598,49,81,3.601108033241,0.0175461010431402,8.37064888310205,0.273148148148148,36.3690261817537,0.0050489505427642,0.0332409972299169,3.32409972299169,4,47.8180922982314,0.513231080397775,1.38504155124654,41.8804653485616,22.0429573059082,402.583427429199,402.310729980469,0.412777979544409
+8151,311374,3795598,311474,3795498,50,81,8.68421052631579,0.0890802052959424,24.4939011976591,0.560606060606061,NA,0.00859611666257574,0.0447368421052632,4.47368421052632,1,79.8422589600986,0.874380165289256,4.47368421052632,51.9297985750086,41.5646018981934,402.309319390191,402.180908203125,0.226023926127589
+8152,311374,3795498,311474,3795398,51,81,13.5734072022161,0.066135303931836,14.6702451467658,0.559431524547804,47.047934632588,0.00980545523297837,0.038781163434903,3.8781163434903,2,68.2444265778173,0.739913544668588,3.04709141274238,20.1359050273895,5.19557523727417,402.262145996094,402.161773681641,0.197333111906372
+8153,311374,3795398,311474,3795298,52,81,15.2354570637119,0.0494890029421902,10.0061879756423,0.414141414141414,15.867767586882,0.0225438049498918,0.177285318559557,17.7285318559557,3,83.9787521846811,0.77209595959596,7.75623268698061,18.8919895142317,0,402.360860188802,402.214294433594,0.226290647702818
+8154,311374,3795298,311474,3795198,53,81,0.277008310249307,0.0026994001604831,0,0,NA,0.0198570930985834,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,9.06812842686971,5.19557523727417,402.480903625488,402.3408203125,0.199460674406992
+8155,311374,3795198,311474,3795098,54,81,0,NA,NA,NA,NA,0.0139380337414734,0.0578947368421053,5.78947368421053,2,77.2296704048748,0.781465658889254,5,117.39284064553,74.9316482543945,402.211367289225,401.880584716797,0.457563747565971
+8156,311374,3795098,311474,3794998,55,81,0,NA,NA,NA,NA,0.0209044491940074,0.14404432132964,14.404432132964,1,90.9176337107231,0.894985636885931,14.404432132964,58.8232321372399,46.7601776123047,401.11038547092,400.853210449219,0.541532056029742
+8157,311374,3794998,311474,3794898,56,81,22.4376731301939,0.109325706499566,17.98897981333,0.629545454545455,15.5867255064659,0.032168069823985,0.152354570637119,15.2354570637119,5,84.6872427469495,0.701960784313725,12.7423822714681,35.7355715231462,5.19557523727417,400.936063130697,400.790222167969,0.178551134644261
+8158,311374,3794898,311474,3794798,57,81,17.7285318559557,0.0287936017118198,7.2756127911706,0.487264628073452,12.8403680764988,0.0234140935829832,0.127423822714681,12.7423822714681,3,85.9479413401655,0.720838420838421,11.3573407202216,15.6512814190077,10.3911504745483,401.298519558377,401.12158203125,0.279139038232762
+8159,311374,3794798,311474,3794698,58,81,3.94736842105263,0.0134970008024155,4.28390661294913,0.388888888888889,46.3935322996788,0.0139575591020108,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.6034507751465,31.6034507751465,401.872065226237,401.416351318359,0.525198191038473
+8160,311374,3794698,311474,3794598,59,81,0,NA,NA,NA,NA,0.0205146206681597,0.0138504155124654,1.38504155124654,4,12.8060362646289,0.18876404494382,0.554016620498615,30.9669109344482,15.5867252349854,402.538004557292,402.136108398438,0.539668080490421
+8161,311374,3794598,311474,3794498,60,81,24.9307479224377,0.0809820048144931,13.4806947307011,0.666041626746234,13.1717378724924,0.01279189133783,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,13.1564826965332,11.6176595687866,402.313852945964,401.897308349609,0.555575684088024
+8162,311374,3794498,311474,3794398,61,81,49.3074792243767,0.160164409521997,15.8655523169078,0.5989522417154,20.7823007445652,-0.00492756759077487,0,0,0,NA,NA,0,NA,NA,402.22024875217,401.875183105469,0.495857048613138
+8163,311374,3794398,311474,3794298,62,81,44.2105263157895,0.151166408987054,12.8222149201858,0.589242919389978,19.0504424450184,0.0027389624932862,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,31.1734504699707,31.1734504699707,402.651402791341,402.338317871094,0.251308849796617
+8164,311374,3794298,311474,3794198,63,81,1.38504155124654,0.0134970008024155,5.00492458457433,0.366666666666667,NA,0.0145160946846377,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,11.6176595687866,11.6176595687866,402.745693630642,402.716339111328,0.0379956803493036
+8165,311374,3794198,311474,3794098,64,81,27.1468144044321,0.066135303931836,11.6220078760469,0.547400284900285,13.602192394699,0.00597566470951329,0,0,0,NA,NA,0,NA,NA,402.899019877116,402.754608154297,0.209271368789041
+8166,311374,3794098,311474,3793998,65,81,4.15512465373961,0.0101227506018116,3.20846227582744,0.2125,20.6140702046424,0.0147031578292165,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,17.8134005410331,15.5867252349854,403.340667724609,403.088195800781,0.355309833847872
+8167,311374,3793998,311474,3793898,66,81,0.526315789473684,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0135216633489204,0,0,0,NA,NA,0,NA,NA,403.617579142253,403.388885498047,0.207586032974144
+8168,311374,3793898,311474,3793798,67,81,20.7756232686981,0.0506137530090582,9.9932143948111,0.406018518518519,18.797767693416,0.0124288349443279,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,5.7335946559906,5.19557523727417,403.731560601128,403.668670654297,0.0990303412819049
+8169,311374,3793798,311474,3793698,68,81,13.8504155124654,0.0449900026747184,7.74058037949825,0.396640826873385,20.7823007792038,0.0195390310784956,0.0415512465373961,4.15512465373961,5,47.2392082911289,0.430898581187599,1.38504155124654,12.5695788701375,5.19557523727417,403.657910664876,403.576690673828,0.120877462636246
+8170,311374,3793698,311474,3793598,69,81,29.9168975069252,0.0971784057773917,17.6580795876833,0.553304843304843,14.6725397470507,0.018403536066224,0.0554016620498615,5.54016620498615,4,61.8617877498402,0.556049569577145,2.21606648199446,9.06444010734558,5.19557523727417,403.436937967936,403.268218994141,0.191747438444286
+8171,311374,3793598,311474,3793498,70,81,36.0526315789474,0.0924544554965462,15.9887000944395,0.547334558823529,15.5867255844029,0.0198408136965123,0.0526315789473684,5.26315789473684,3,66.9314238700582,0.625448028673835,2.89473684210526,9.04996318817139,5.19557523727417,403.1685418023,403.054473876953,0.17338121464884
+8172,311374,3793498,311474,3793398,71,81,0,NA,NA,NA,NA,0.0225172884574956,0.0914127423822715,9.14127423822715,4,74.0315638541575,0.714656729900632,5.54016620498615,48.1820541439634,14.6953058242798,403.155181884766,403.039031982422,0.231791447640194
+8173,311374,3793398,311474,3793298,72,81,0,NA,NA,NA,NA,0.0282968085738405,0.0443213296398892,4.43213296398892,4,57.1646508768228,0.564009661835749,1.93905817174515,70.222437620163,51.955753326416,403.717597113715,403.545104980469,0.352586982041748
+8174,311374,3793298,311474,3793198,73,81,2.77008310249307,0.026994001604831,6.22969125529199,0.6,NA,0.0283484052587107,0.0886426592797784,8.86426592797784,3,81.6299417248626,0.683481412204817,7.4792243767313,61.3758742511272,5.19557523727417,403.543296813965,403.298400878906,0.296767452199916
+8175,311374,3793198,311474,3793098,74,81,0,NA,NA,NA,NA,0.0329564118163513,0.171052631578947,17.1052631578947,5,80.5821414712813,0.722432925972749,6.8421052631579,91.9043448814979,67.54248046875,403.518337673611,403.262298583984,0.627590043443373
+8176,311374,3793098,311474,3792998,75,81,15.2354570637119,0.0742335044132853,14.49067397835,0.613636363636364,10.3911503376439,0.0159303058135769,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,38.0784583091736,10.3911504745483,404.54508972168,403.920593261719,0.882225988043478
+8177,311374,3792998,311474,3792898,76,81,7.75623268698061,0.0755832044935268,17.7652780950647,0.625,NA,0.0165581457186513,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,31.168744246165,11.6176595687866,406.289683024089,405.482086181641,1.25899513311011
+8178,311374,3792898,311474,3792798,77,81,14.1274238227147,0.0688347040923191,15.502920172055,0.631313131313131,62.3469026493595,0.0161636510095269,0.0637119113573407,6.37119113573407,2,78.4572042150928,0.732988165680473,5.54016620498615,15.1193617945132,7.34765291213989,407.628885904948,407.128692626953,0.524205698953231
+8179,311374,3792798,311474,3792698,78,81,8.42105263157895,0.0431904025677296,11.0199290162989,0.505714285714286,74.9316512256402,0.018246985553651,0.1,10,4,78.1163933984583,0.717813051146384,7.10526315789474,11.8523056883561,0,408.118530273438,407.807037353516,0.455395211537443
+8180,311374,3792698,311474,3792598,79,81,8.31024930747922,0.0809820048144931,20.9205717315799,0.588888888888889,NA,0.0078659751893094,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,52.0853176116943,51.955753326416,408.853207906087,408.071685791016,0.839772392757331
+8181,311374,3792598,311474,3792498,80,81,0,NA,NA,NA,NA,0.0163351761049218,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648,410.560207790799,409.447082519531,1.35310962603488
+8182,311374,3792498,311474,3792398,81,81,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0238668278256117,0.0803324099722992,8.03324099722992,5,64.3053099743382,0.60670340938221,2.77008310249307,39.9097249261264,15.5867252349854,411.588905334473,410.704986572266,0.875510520070937
+8183,311374,3792398,311474,3792298,82,81,0,NA,NA,NA,NA,0.0181795870011755,0.0447368421052632,4.47368421052632,2,70.9013343646576,0.623140495867769,3.15789473684211,72.0340147579417,58.7812232971191,412.374240451389,411.658447265625,0.697674399954712
+8184,311374,3792298,311474,3792198,83,81,0,NA,NA,NA,NA,0.0191391159576677,0,0,0,NA,NA,0,NA,NA,412.273872375488,411.631103515625,0.730013402884507
+8185,311374,3792198,311474,3792098,84,81,43.7673130193906,0.42650522535633,28.5839865765599,0.882911392405063,NA,0.0407017531125597,0.398891966759003,39.8891966759003,1,96.7592592592593,0.92438206954336,39.8891966759003,1.74680339627796,0,409.614446004232,407.856292724609,1.94322732726979
+8186,311374,3792098,311474,3791998,85,81,24.0997229916898,0.0782826046540099,10.4103581032116,0.419753086419753,12.1230087965286,0.0414309816747503,0.349030470914127,34.9030470914127,3,94.6011782955143,0.879252996376475,33.7950138504155,4.39052110248142,0,408.243930392795,407.524627685547,1.08232141813796
+8187,311374,3791998,311474,3791898,86,81,1.05263157894737,0.0053988003209662,2.2421299672888,0.0833333333333333,62.3469026493595,0.0181608367454349,0.0868421052631579,8.68421052631579,4,70.4374327926953,0.73636460668161,3.42105263157895,38.8780313260628,0,410.516166687012,408.096893310547,1.67655627977577
+8188,311374,3791898,311474,3791798,87,81,18.5595567867036,0.0361719621504736,8.79637210547932,0.426522131887986,17.6649556155611,0.0495248122203326,0.473684210526316,47.3684210526316,3,95.8407824305071,0.734603174603175,43.4903047091413,9.60916382527491,0,411.928717719184,411.645141601562,0.424258065544728
+8189,311374,3791798,311474,3791698,88,81,5.26315789473684,0.017096201016393,4.15693060278934,0.345299145299145,42.6787354584925,0.0255626741902505,0.157894736842105,15.7894736842105,5,75.2341030765362,0.697066326530612,4.98614958448753,22.7735579055652,0,411.5060450236,410.912048339844,0.61242810405143
+8190,311374,3791698,311474,3791598,89,81,21.606648199446,0.105276606258841,19.4823508149482,0.66374269005848,15.5867256623399,0.0314734209420253,0.202216066481994,20.2216066481994,5,84.9021457151713,0.764973958333333,16.0664819944598,8.33404977354285,0,410.927429199219,410.640777587891,0.423485011517633
+8191,311374,3791598,311474,3791498,90,81,26.0526315789474,0.267240615887827,25.1470934880911,0.782828282828283,NA,0.0480897015934093,0.394736842105263,39.4736842105263,4,92.1567065592384,0.819762845849802,27.8947368421053,7.63359735488892,0,410.456865946452,410.078247070312,0.352164048736391
+8192,311374,3791498,311474,3791398,91,81,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0347721715916425,0.296398891966759,29.6398891966759,2,94.6804580285438,0.793806862225124,29.0858725761773,27.153698301761,0,409.814626057943,409.580047607422,0.340801024520226
+8193,311374,3791398,311474,3791298,92,81,1.38504155124654,0.00674850040120775,2.99794776667161,0.222222222222222,67.7420124692554,0.0220601938951034,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,26.3117632336087,10.3911504745483,409.809298197428,409.567687988281,0.254058963693025
+8194,311374,3791298,311474,3791198,93,81,16.3434903047091,0.0398161523671258,9.5075968908303,0.45131874298541,16.6506909326303,0.0498800209099091,0.481994459833795,48.1994459833795,3,96.2152043379137,0.741399703466773,45.4293628808864,8.18627472033446,0,409.953423394097,409.847106933594,0.103744197558219
+8195,311374,3791198,311474,3791098,94,81,1.84210526315789,0.00944790056169086,3.50130196869587,0.3,20.7823006752878,0.0363801970001077,0.236842105263158,23.6842105263158,5,87.0536910068687,0.690726065538659,17.1052631578947,22.1440614700317,0,410.067283630371,409.981506347656,0.10464698203702
+8196,311374,3791098,311474,3790998,95,81,0,NA,NA,NA,NA,0.0181829165040273,0.038781163434903,3.8781163434903,3,58.3384192488095,0.687896253602305,1.93905817174515,62.9741156441825,36.369026184082,410.555735270182,410.219177246094,0.611406251057678
+8197,311374,3790998,311474,3790898,96,81,4.15512465373961,0.0404910024072465,8.81171760093141,0.611111111111111,NA,0.0302712609277541,0.138504155124654,13.8504155124654,4,79.6180881871815,0.781501796860223,7.4792243767313,42.8121333026886,7.34765291213989,411.386395772298,410.935546875,0.632137786564693
+8198,311374,3790898,311474,3790798,97,81,0,NA,NA,NA,NA,0.0186449302083697,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,36.8686952590942,33.2679138183594,412.208302815755,411.826934814453,0.742778734263006
+8199,311374,3790798,311474,3790698,98,81,1.57894736842105,0.00809820048144931,3.13580701840968,0.291666666666667,31.1734510129318,0.0217387848117644,0.0842105263157895,8.42105263157895,4,77.6187969894941,0.685013262599469,6.57894736842105,29.0722723603249,5.19557523727417,413.615867614746,412.776123046875,0.887784069430474
+8200,311374,3790698,311474,3790598,99,81,2.21606648199446,0.0215952012838648,6.56613571821151,0.479166666666667,NA,0.0270512216788418,0.187134502923977,18.7134502923977,3,86.4939927692422,0.769334532374101,11.6959064327485,16.5346887037158,0,415.741305033366,414.346618652344,1.49158629544494
+8201,311474,3800598,311574,3800498,0,82,32.3684210526316,0.332026219739304,30.7482083779419,0.764227642276423,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.961122512817,388.688446044922,0.235131264875848
+8202,311474,3800498,311574,3800398,1,82,33.25,0.0718040442688251,12.996509563581,0.579246031746032,15.586725566735,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.825838724772,388.478881835938,0.276901097083079
+8203,311474,3800398,311574,3800298,2,82,64.4736842105263,0.661353039318126,36.9207444812026,0.795918367346939,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.024810791016,388.474761962891,0.676170444369338
+8204,311474,3800298,311574,3800198,3,82,58.6842105263158,0.300983117893759,18.2737229565648,0.377627627627628,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.202306111654,388.343597412109,0.781982015999355
+8205,311474,3800198,311574,3800098,4,82,43.1578947368421,0.147567208773024,21.818432852191,0.659395030153768,12.940681409399,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.178215026855,389.027709960938,0.186219312283804
+8206,311474,3800098,311574,3799998,5,82,56.75,0.306381918214724,22.6934588621634,0.728964401294498,11.6176592829314,-0.00425340285401035,0.0125,1.25,2,0,1,0.625,11.0044050216675,10.3911504745483,389.179290771484,389.118835449219,0.099446389786614
+8207,311474,3799998,311574,3799898,6,82,26.5789473684211,0.136319708104348,18.6180803969101,0.699007936507936,16.4298514359611,0.0327391932785088,0.273684210526316,27.3684210526316,2,93.0716545094452,0.911648453847942,25.7894736842105,17.8941188821426,5.19557523727417,389.251699447632,389.064331054688,0.185495156740835
+8208,311474,3799898,311574,3799798,7,82,39.2105263157895,0.20110531195592,21.1389403754235,0.611236802413273,10.3911504415562,0.00903650056782824,0.0263157894736842,2.63157894736842,6,29.5837072570568,0.288981288981289,1.05263157894737,10.5808192253113,5.19557523727417,389.585817972819,389.236267089844,0.365612392145551
+8209,311474,3799798,311574,3799698,8,82,41.3157894736842,0.060543689313671,7.67347263128046,0.325087610801897,13.9299523943234,0.00592115923944603,0.0157894736842105,1.57894736842105,3,30.8730773315672,0.419404125286478,0.526315789473684,9.72963937123617,5.19557523727417,390.040845870972,389.746704101562,0.330760270447115
+8210,311474,3799698,311574,3799598,9,82,31,0.0836814049749466,11.3805162560821,0.36551685891748,22.7457974225407,0.0148339724033531,0.1525,15.25,3,85.0136899242795,0.855290254355207,9.5,17.1937836662668,0,390.66764831543,390.266265869141,0.664137178818325
+8211,311474,3799598,311574,3799498,10,82,25,0.0854810050819347,15.7415303199779,0.412250712250712,17.3185838960732,0.000204858066679567,0.0131578947368421,1.31578947368421,1,58.2677109531801,1,1.31578947368421,12.291096496582,10.3911504745483,391.668207168579,390.944946289062,0.747260919929992
+8212,311474,3799498,311574,3799398,11,82,21.0526315789474,0.0539880032096429,11.979952670868,0.438976872800402,28.5756635843893,0.00894082681531329,0.0868421052631579,8.68421052631579,2,81.6304356083827,0.878322126160743,7.10526315789474,9.09686519160415,0,392.685905456543,392.366577148438,0.443463301117875
+8213,311474,3799398,311574,3799298,12,82,70.2631578947368,0.240246614282911,17.0352606281023,0.609075069693349,12.4040507292112,-0.0270337283731734,0.0105263157894737,1.05263157894737,1,52.703639668815,0.747340425531915,1.05263157894737,6.27161407470703,5.19557523727417,392.868125915527,392.423797607422,0.413287700977004
+8214,311474,3799298,311574,3799198,13,82,32.75,0.353621421023161,23.6966047328511,0.877862595419847,NA,-0.00267284333777582,0.02,2,2,54.1958020619036,0.795918367346939,1.5,10.5487326383591,5.19557523727417,393.167053222656,392.830718994141,0.402474561322753
+8215,311474,3799198,311574,3799098,14,82,0,NA,NA,NA,NA,0.0123936858440605,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,73.4765319824219,73.4765319824219,393.654729207357,393.515167236328,0.3034760310774
+8216,311474,3799098,311574,3798998,15,82,21.0526315789474,0.215952012838572,28.2402480505248,0.78125,NA,0.0127381855970163,0.0315789473684211,3.15789473684211,3,54.7407307068637,0.635549872122762,1.84210526315789,33.0625456174215,25.977876663208,393.736497879028,393.530670166016,0.217342426501951
+8217,311474,3798998,311574,3798898,16,82,0,NA,NA,NA,NA,0.0202205923067691,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,47.7575210571289,41.5646018981934,393.922866821289,393.852355957031,0.149150166157883
+8218,311474,3798898,311574,3798798,17,82,15.75,0.0566874033701251,8.87793780773401,0.422989708703994,15.586725558422,-0.00627395779385552,0,0,0,NA,NA,0,NA,NA,393.794767379761,393.679260253906,0.123206093271168
+8219,311474,3798798,311574,3798698,18,82,14.7368421052632,0.0755832044935001,10.5937338594327,0.362121212121212,47.9008362727028,0.0111197163736506,0.165789473684211,16.5789473684211,3,90.3685262824463,0.803842844852309,16.0526315789474,26.6881948804098,0,393.669929504395,393.59375,0.0846362578531775
+8220,311474,3798698,311574,3798598,19,82,30.2631578947368,0.103477006151816,11.1257633762301,0.301587301587302,19.0504424761864,0.0152577761784701,0.0894736842105263,8.94736842105263,3,77.6930228931192,0.784269199009083,4.47368421052632,11.8030857338625,0,393.594114303589,393.523712158203,0.0773779959558778
+8221,311474,3798598,311574,3798498,20,82,30.7894736842105,0.0789574546941028,14.1751451025106,0.614628427128427,18.5720066505169,0.0187494198351296,0.131578947368421,13.1578947368421,4,80.6303924913341,0.715508021390374,7.10526315789474,11.076942949295,0,393.454193115234,393.285797119141,0.142458223458241
+8222,311474,3798498,311574,3798398,21,82,23.75,0.064110753811451,9.4117089011889,0.490658068783069,20.0966614139596,0.030912377848972,0.2375,23.75,7,80.8427230178312,0.753134040501447,12.25,14.2111752309297,0,393.680919647217,393.412536621094,0.417829391207893
+8223,311474,3798398,311574,3798298,22,82,24.2105263157895,0.0620862036910894,9.01182193422371,0.466765873015873,15.1410157359826,0.0311429684629131,0.257894736842105,25.7894736842105,4,86.4916870435398,0.701402321083172,11.0526315789474,13.1528366098599,0,394.142445882161,393.821655273438,0.654247152831763
+8224,311474,3798298,311574,3798198,23,82,27.8947368421053,0.0953788056703692,13.0343331220452,0.439236111111111,16.2537765587583,0.0320718884661466,0.228947368421053,22.8947368421053,7,78.8984749705974,0.690410657271826,11.5789473684211,14.4009500262381,0,394.855445861816,394.164978027344,0.916534502470488
+8225,311474,3798198,311574,3798098,24,82,39.2105263157895,0.080442124782368,10.5459988329555,0.42743961352657,17.3083878095642,0.0502104526372645,0.407894736842105,40.7894736842105,2,95.4726807358748,0.928888888888889,38.4210526315789,3.71072769472676,0,395.9951171875,395.119140625,0.898317717371731
+8226,311474,3798098,311574,3797998,25,82,61,0.219551213052548,14.715866383739,0.656900867077858,22.5141590648952,0.0155485474898887,0.05,5,3,68.6087770760993,0.728353140916808,2.75,5.13823473453522,0,396.705087661743,396.155029296875,0.462351197415631
+8227,311474,3797998,311574,3797898,26,82,69.4736842105263,0.712641642367287,33.1597143961306,0.905934343434343,NA,0.0203357569660033,0.0394736842105263,3.94736842105263,4,58.1757341906346,0.526774595267746,2.36842105263158,1.38548672993978,0,397.1552734375,396.807495117188,0.268450530045953
+8228,311474,3797898,311574,3797798,27,82,19.2105263157895,0.0985281058575984,11.2405830679831,0.48943661971831,23.2353185658627,0.0644844268467032,0.465789473684211,46.5789473684211,2,97.162970606158,0.862611289374972,46.3157894736842,36.2110088396881,0,397.355649312337,397.140411376953,0.248904718853038
+8229,311474,3797798,311574,3797698,28,82,23.4210526315789,0.240246614282911,24.7950086500647,0.818352059925094,NA,0.0673426790390007,0.513157894736842,51.3157894736842,4,96.4305016598052,0.807077796028072,49.2105263157895,35.2033782958984,5.19557523727417,397.793375015259,397.482940673828,0.319133880925914
+8230,311474,3797698,311574,3797598,29,82,54.25,0.195256611608209,15.0983337052801,0.475217864923747,23.076243139123,0.0824993263717624,0.725,72.5,2,98.8070175438596,0.926605504587156,72.25,8.92260460031444,0,398.412869771322,398.104095458984,0.49657306904188
+8231,311474,3797598,311574,3797498,30,82,82.8947368421053,0.850311050551876,40.6630171983996,0.868253968253968,NA,0.035442624572591,0.221052631578947,22.1052631578947,5,82.6496648546485,0.801832033375658,14.2105263157895,1.16457749548413,0,399.36118888855,398.680694580078,0.673016434357802
+8232,311474,3797498,311574,3797398,31,82,45.7894736842105,0.117423906980973,14.927633969073,0.645652173913044,15.5867256103782,0.0444319602944521,0.415789473684211,41.578947368421,4,94.5022704991078,0.76390183286735,36.8421052631579,2.22329830217965,0,400.490280151367,400.072357177734,0.644805929974471
+8233,311474,3797398,311574,3797298,32,82,69.7368421052632,0.715341042527769,36.0278169048334,0.861006289308176,NA,0.0487521700401741,0.468421052631579,46.8421052631579,3,93.5449321956749,0.857052574558368,38.6842105263158,1.75839982943588,0,401.619451522827,400.848815917969,0.974845131626497
+8234,311474,3797298,311574,3797198,33,82,90.5,0.488591429047269,30.0412691068284,0.893577916259368,10.3911504415562,0.0676459285956662,0.64,64,2,96.2646548070386,0.855324074074074,47,0.492009622976184,0,403.897605895996,402.428924560547,1.55282376543244
+8235,311474,3797198,311574,3797098,34,82,98.9473684210526,1.01497446034129,38.6857980505893,0.926418439716312,NA,0.0465704951312785,0.410526315789474,41.0526315789474,5,92.7097472351913,0.781296665007466,31.8421052631579,0.133219877878825,0,406.153072357178,404.478973388672,1.88338314317235
+8236,311474,3797098,311574,3796998,35,82,91.3157894736842,0.468345927843653,28.7976192623017,0.891943004607478,10.3911504415562,0.0532952296765105,0.547368421052632,54.7368421052632,1,98.0985995211112,0.81731867075296,54.7368421052632,0.374680906534195,0,408.704734802246,407.459777832031,1.40054859725372
+8237,311474,3796998,311574,3796898,36,82,78.9473684210526,0.269940016048215,20.3467499132058,0.838267624579749,10.3911503722814,0.0393955418823201,0.444736842105263,44.4736842105263,2,95.3803521891754,0.757564710171345,35.5263157894737,0.399659633636475,0,409.590581893921,408.511566162109,0.843976127295036
+8238,311474,3796898,311574,3796798,37,82,72,0.259142415406286,22.1617811870534,0.713400839262908,12.1230088484823,0.0260340796102537,0.385,38.5,3,94.0492953794859,0.770174380189032,33,0.371112516948155,0,410.005109151204,409.611328125,0.490291694925383
+8239,311474,3796798,311574,3796698,38,82,47.1052631578947,0.161064209575435,16.0646593410886,0.646358024691358,18.4561625432104,0.0163770373580184,0.157894736842105,15.7894736842105,4,83.4496077049351,0.840144230769231,7.63157894736842,1.28403681119283,0,409.855627059937,409.558959960938,0.315894841009889
+8240,311474,3796698,311574,3796598,39,82,50.5263157894737,0.259142415406286,17.7451260556956,0.613963963963964,18.7329127343552,0.0351423833438227,0.265789473684211,26.5789473684211,3,93.4224404899692,0.924750985168023,26.0526315789474,0.844369123477747,0,410.179428100586,409.804534912109,0.343405412446839
+8241,311474,3796598,311574,3796498,40,82,8.68421052631579,0.0890802052959109,23.9545825224742,0.580808080808081,NA,0.0093926135119737,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,10.3911504745483,10.3911504745483,410.571144104004,410.209228515625,0.365306604782015
+8242,311474,3796498,311574,3796398,41,82,23.6842105263158,0.0607365036108483,10.8569149551208,0.473591753774681,15.1410157359826,0.00193232426072906,0.0210526315789474,2.10526315789474,4,32.7688970276549,0.387096774193548,0.789473684210526,10.9667873382568,5.19557523727417,410.799339294434,410.444122314453,0.311283887189515
+8243,311474,3796398,311574,3796298,42,82,53,0.190757611340738,17.5256867014238,0.684554818145056,10.3911504415562,0.00582746228821634,0.055,5.5,2,75.4723138330214,0.813258636788049,4.25,0,0,411.205477396647,411.002899169922,0.388592687549718
+8244,311474,3796298,311574,3796198,43,82,80,0.820617648786573,37.0578205026248,0.882127192982456,NA,0.0198387551896686,0.263157894736842,26.3157894736842,2,90.9336801906851,0.766269841269841,16.5789473684211,1.23802385807037,0,411.704250335693,411.331695556641,0.435656015955252
+8245,311474,3796198,311574,3796098,44,82,69.7368421052632,0.715341042527769,38.5981467421414,0.816981132075472,NA,-0.00212574385136816,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,0.865929206212362,0,411.644014994303,411.298645019531,0.374429275561188
+8246,311474,3796098,311574,3795998,45,82,50.7894736842105,0.173661410324351,14.5289335407009,0.651622362465736,20.4895333703819,0.0071838756271494,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,10.0883189837138,5.19557523727417,410.412240982056,409.128997802734,1.39990583280779
+8247,311474,3795998,311574,3795898,46,82,17.25,0.0931293055366341,15.8967187932672,0.482323232323232,10.3911504415562,0.00140359153649115,0.035,3.5,3,61.1402003316142,0.585492227979275,2.25,12.4184789998191,5.19557523727417,407.172523498535,405.820098876953,2.42662087081714
+8248,311474,3795898,311574,3795798,47,82,40,0.205154412196643,17.4214119756666,0.60806697108067,14.6953058096309,0.00871517653655533,0.0868421052631579,8.68421052631579,2,85.1021644588231,0.83776283488099,8.42105263157895,11.4668428392121,5.19557523727417,403.503829956055,402.707153320312,1.45868628650757
+8249,311474,3795798,311574,3795698,48,82,47.3684210526316,0.242946014443393,18.779439099226,0.365921787709497,16.4298513045212,0.00646679047676308,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,402.520922342936,402.375213623047,0.304159812738311
+8250,311474,3795698,311574,3795598,49,82,80.5263157894737,0.826016449107537,37.5571606110755,0.860566448801743,NA,0.0125592298887425,0.0210526315789474,2.10526315789474,2,52.703639668815,0.591397849462366,1.05263157894737,2.8667973279953,0,402.2431640625,402.119354248047,0.159911841334549
+8251,311474,3795598,311574,3795498,50,82,71.5,0.257342815299298,19.2376040703924,0.532002719502719,15.5867256623344,0.0115334760704536,0.1075,10.75,4,76.9535047823736,0.735449735449735,6.25,3.24160722244618,0,402.09600575765,402.041168212891,0.0802706063166785
+8252,311474,3795498,311574,3795398,51,82,48.9473684210526,0.12552210746242,18.9725544483561,0.548003848003848,12.9889380519453,0.0214190188795663,0.197368421052632,19.7368421052632,4,87.0841856166514,0.811227024341779,16.5789473684211,1.97284364700317,0,402.070919036865,402.031616210938,0.05970315003097
+8253,311474,3795398,311574,3795298,52,82,0,NA,NA,NA,NA,0.0133582620243894,0.0894736842105263,8.94736842105263,4,74.2326899348889,0.764657308009909,4.47368421052632,66.265580738292,22.0429573059082,402.160982767741,402.088012695312,0.107888967443544
+8254,311474,3795298,311574,3795198,53,82,6.05263157894737,0.0620862036910894,11.7449207707616,0.681159420289855,NA,0.0492391955766116,0.505263157894737,50.5263157894737,1,97.8001642001142,0.960255797274683,50.5263157894737,32.7417240291834,0,402.359399795532,402.253936767578,0.122415430165035
+8255,311474,3795198,311574,3795098,54,82,0,NA,NA,NA,NA,0.0166536458940209,0.095,9.5,1,88.1872188283408,0.807068315355608,9.5,61.1325013010125,51.955753326416,402.245376586914,401.500396728516,0.53081568838283
+8256,311474,3795098,311574,3794998,55,82,0,NA,NA,NA,NA,0.0190258654828779,0.0394736842105263,3.94736842105263,5,47.442941411416,0.526774595267746,1.57894736842105,110.140044148763,77.2377777099609,401.078651428223,400.907928466797,0.434183366354394
+8257,311474,3794998,311574,3794898,56,82,10.2631578947368,0.105276606258804,15.969233118828,0.726495726495726,NA,0.0244339509171703,0.0421052631578947,4.21052631578947,3,66.1150507132842,0.521520146520146,2.89473684210526,78.6832756996155,0,400.888114929199,400.826202392578,0.13798974297398
+8258,311474,3794898,311574,3794798,57,82,33.9473684210526,0.116074206900732,17.1849359286612,0.547171920411357,25.8813627148857,0.0300124313611856,0.157894736842105,15.7894736842105,4,78.8071306777521,0.600360576923077,5.78947368421053,9.18181095123291,0,401.41074625651,401.022338867188,0.51904480673647
+8259,311474,3794798,311574,3794698,58,82,7.75,0.0278938016583155,7.30790850899319,0.485449735449735,51.9557519306817,0.0239369481560425,0.0825,8.25,3,76.6199248139065,0.717428600262388,4.75,27.803030909914,5.19557523727417,402.186845779419,401.648315429688,0.52350235672311
+8260,311474,3794698,311574,3794598,59,82,2.89473684210526,0.0148467008826518,5.81149578410734,0.363095238095238,60.8126482856701,0.0322014159463211,0.134210526315789,13.4210526315789,3,86.7093196379864,0.907067742724383,12.6315789473684,13.7650905122944,0,402.977190653483,402.744079589844,0.305203353494071
+8261,311474,3794598,311574,3794498,60,82,18.1578947368421,0.0620862036910894,11.0054263912148,0.528412698412698,25.9778758441098,0.0114083994540411,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,18.4962019920349,15.5867252349854,402.932842254639,402.655456542969,0.330938530177386
+8262,311474,3794498,311574,3794398,61,82,93.1578947368421,0.95558765681068,37.9636721260171,0.916666666666667,NA,-0.00839767780554738,0,0,0,NA,NA,0,NA,NA,402.614473978678,402.41357421875,0.245720572321446
+8263,311474,3794398,311574,3794298,62,82,88.25,0.952888256650198,38.2244487925635,0.913597733711048,NA,0.00274729351070164,0.0225,2.25,2,61.8038771408003,0.744245524296675,2,9.78928195105659,0,402.970550537109,402.793884277344,0.302411342747283
+8264,311474,3794298,311574,3794198,63,82,53.9473684210526,0.55337703289884,34.2849161017518,0.868292682926829,NA,0.00439365227520236,0,0,0,NA,NA,0,NA,NA,402.969472249349,402.762634277344,0.362113238828034
+8265,311474,3794198,311574,3794098,64,82,47.3684210526316,0.242946014443393,20.733943264107,0.65952709964686,31.1734510129318,0.0015646918011929,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,402.768566131592,402.699615478516,0.117026817241519
+8266,311474,3794098,311574,3793998,65,82,23.4210526315789,0.0800822047609704,13.9398373982029,0.409069325735992,10.7999866527397,-0.00769394720409764,0,0,0,NA,NA,0,NA,NA,402.868893941243,402.674896240234,0.260591705442626
+8267,311474,3793998,311574,3793898,66,82,7.75,0.0209203512437366,5.66296814399847,0.381944444444444,33.9946111216776,-0.000224418431262166,0.0025,0.25,1,0,NA,0.25,10.3911504745483,10.3911504745483,403.156766891479,402.854309082031,0.345387192918362
+8268,311474,3793898,311574,3793798,67,82,10,0.0341924020327739,8.77494656513088,0.523232323232323,26.3977920972001,0.0144503627289515,0.0736842105263158,7.36842105263158,4,75.1980308680119,0.76010101010101,6.05263157894737,21.9070350783212,10.3911504745483,403.445022583008,403.141296386719,0.325952566651082
+8269,311474,3793798,311574,3793698,68,82,9.73684210526316,0.0998778059378394,13.5731140700742,0.725225225225225,NA,0.0126891086225783,0.0342105263157895,3.42105263157895,2,65.8795495860188,0.769906145927944,2.36842105263158,20.9531814868634,11.6176595687866,403.60634803772,403.376190185547,0.183401407776699
+8270,311474,3793698,311574,3793598,69,82,8.68421052631579,0.0296934017653036,8.27073046688618,0.448148148148148,47.8018384812398,0.0258966648693068,0.171052631578947,17.1052631578947,4,80.16435228943,0.690405955892682,7.36842105263158,22.9404246697059,5.19557523727417,403.646965026855,403.537048339844,0.189627226963932
+8271,311474,3793598,311574,3793498,70,82,38,0.205154412196643,27.1166212315604,0.742469790745653,14.6953058096309,0.0197618911525205,0.0425,4.25,6,50.1789569044469,0.456919060052219,2,5.46646322923548,0,403.470207214355,403.215240478516,0.209913977007116
+8272,311474,3793498,311574,3793398,71,82,0.526315789473684,0.00539880032096429,2.59778761038906,0.166666666666667,NA,0.025864790199835,0.0736842105263158,7.36842105263158,5,66.680694537207,0.640151515151515,4.47368421052632,23.5770545346396,11.6176595687866,403.330028533936,403.081146240234,0.320403713924484
+8273,311474,3793398,311574,3793298,72,82,0.263157894736842,0.00269940016048215,0,0,NA,0.0248341618055508,0.0605263157894737,6.05263157894737,5,60.3968302371823,0.586056644880174,3.15789473684211,37.9722074011098,14.6953058242798,404.211832682292,403.783111572266,0.771204084897592
+8274,311474,3793298,311574,3793198,73,82,0.789473684210526,0.00809820048144644,3.39810794893163,0.277777777777778,NA,0.024500787261633,0.0947368421052632,9.47368421052632,5,72.700797138076,0.668604651162791,6.31578947368421,35.7672662205166,10.3911504745483,404.851675033569,403.757720947266,1.06268535172898
+8275,311474,3793198,311574,3793098,74,82,0,NA,NA,NA,NA,0.0251994363228732,0.075,7.5,3,77.9481162997755,0.735245449531164,5.75,88.9125241597494,77.9336318969727,405.311045328776,404.271606445312,1.06128330134408
+8276,311474,3793098,311574,3792998,75,82,12.1052631578947,0.0413908024607263,9.18012548674603,0.448830409356725,15.5867255064659,0.0195784819471316,0.0394736842105263,3.94736842105263,1,78.1912368413851,1,3.94736842105263,51.955753326416,46.7601776123047,405.536527633667,404.756439208984,0.893140183907348
+8277,311474,3792998,311574,3792898,76,82,6.05263157894737,0.0310431018455447,11.7598838607345,0.340277777777778,10.3911504415562,0.0256836303545481,0.0789473684210526,7.89473684210526,4,72.2278532417219,0.711953352769679,3.68421052631579,35.577922185262,20.7823009490967,406.90774790446,405.813995361328,0.965564165094978
+8278,311474,3792898,311574,3792798,77,82,11.0526315789474,0.11337480674025,24.5794028946814,0.646825396825397,NA,0.0215399665500292,0.102631578947368,10.2631578947368,6,67.9233848785058,0.657117076471915,4.21052631578947,18.7342281341553,5.19557523727417,407.471202850342,407.266906738281,0.380167962499795
+8279,311474,3792798,311574,3792698,78,82,5.25,0.0566874033701251,11.0613579294671,0.642857142857143,NA,0.0200670515502679,0.085,8.5,5,71.8018153446168,0.590163934426229,4,26.5239503383636,7.34765291213989,407.98158009847,407.632537841797,0.708449294513776
+8280,311474,3792698,311574,3792598,79,82,16.3157894736842,0.167362809949893,24.4325963697017,0.723118279569892,NA,0.0178583291045614,0.0447368421052632,4.47368421052632,4,59.3047841340169,0.623140495867769,2.63157894736842,22.9037988326129,5.19557523727417,408.42498588562,407.944763183594,0.488196507536758
+8281,311474,3792598,311574,3792498,80,82,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0268862553746179,0.0842105263157895,8.42105263157895,6,66.4273672873301,0.601016799292661,4.47368421052632,41.67182970047,18.7329120635986,409.349291483561,408.585968017578,1.15497511758945
+8282,311474,3792498,311574,3792398,81,82,3.42105263157895,0.0350922020862679,8.26295434091235,0.564102564102564,NA,0.0213817651010638,0.0578947368421053,5.78947368421053,4,64.5971123937894,0.687808084127506,3.15789473684211,25.1786066835577,5.19557523727417,411.127573013306,410.443939208984,0.701981204029825
+8283,311474,3792398,311574,3792298,82,82,0.75,0.00809820048144644,3.46371681385208,0.222222222222222,NA,0.0203680303201145,0.07,7,3,70.6944089600498,0.73715651135006,3.25,48.8915661743709,5.19557523727417,411.850191752116,411.513488769531,0.549781865208809
+8284,311474,3792298,311574,3792198,83,82,0,NA,NA,NA,NA,0.0161968532706546,0.0210526315789474,2.10526315789474,1,68.1401783345986,1,2.10526315789474,106.662143707275,103.911506652832,412.045179367065,411.563903808594,0.570855975589836
+8285,311474,3792198,311574,3792098,84,82,37.8947368421053,0.194356811554715,25.4493001637198,0.716420966420966,27.979028590554,0.0328004964201491,0.236842105263158,23.6842105263158,2,93.2886843435276,0.869779396016278,23.1578947368421,1.15457227494982,0,410.051328659058,408.584075927734,1.58023390567255
+8286,311474,3792098,311574,3791998,85,82,10.2631578947368,0.0526383031294019,11.2016689965135,0.632275132275132,21.4219054085088,0.039763350317126,0.307894736842105,30.7894736842105,2,93.5025028521781,0.809168519979913,26.8421052631579,13.0939899509789,0,408.685920715332,407.888366699219,0.759622719456216
+8287,311474,3791998,311574,3791898,86,82,0,NA,NA,NA,NA,0.0243119705738718,0.08,8,3,74.8529546757117,0.749163879598662,3.75,82.8536612987518,31.6034507751465,410.854520797729,409.556396484375,1.38603620869751
+8288,311474,3791898,311574,3791798,87,82,18.4210526315789,0.18895801123375,34.2030661957695,0.671428571428571,NA,0.0485600018227782,0.439473684210526,43.9473684210526,4,93.9754800447434,0.76251448082434,37.1052631578947,11.313285647752,0,412.218050638835,412.054290771484,0.311128742567558
+8289,311474,3791798,311574,3791698,88,82,33.6842105263158,0.0863808051354287,12.6942416189417,0.569640456989247,18.1845131947892,0.0335526414845127,0.242105263157895,24.2105263157895,4,87.2916037794373,0.855182926829268,16.8421052631579,4.82912286986475,0,412.177598953247,411.519409179688,0.48785987530565
+8290,311474,3791698,311574,3791598,89,82,26.0526315789474,0.133620307943866,21.9483437608658,0.452482269503546,11.6176593526379,0.0374518794729451,0.292105263157895,29.2105263157895,4,90.9720248948318,0.773977695167286,22.3684210526316,7.96948416168625,0,411.641754150391,411.024169921875,0.753425959992442
+8291,311474,3791598,311574,3791498,90,82,22.25,0.0800822047609704,12.6109328512543,0.43140537798072,53.3557962569773,0.0286915560883472,0.2125,21.25,4,89.2897371281731,0.798170923998739,18.25,1.86202330308802,0,410.916301727295,410.258911132812,0.615747120818179
+8292,311474,3791498,311574,3791398,91,82,23.6842105263158,0.0607365036108483,12.4270389432916,0.539724820974821,16.1999799791096,0.0258145977136576,0.131578947368421,13.1578947368421,7,76.6408152472122,0.661319073083779,8.68421052631579,20.8643436336517,0,410.478261311849,410.055084228516,0.454255002036598
+8293,311474,3791398,311574,3791298,92,82,15.5263157894737,0.0530882031561489,11.9920006277887,0.513756613756614,35.7834917278102,0.0115490358913743,0.068421052631579,6.84210526315789,6,61.4854451358693,0.633457351522668,3.15789473684211,6.04206794958848,0,410.265249252319,409.945404052734,0.317347982147388
+8294,311474,3791298,311574,3791198,93,82,32.1052631578947,0.109775606526274,12.4521203775406,0.582341723874905,12.1230088484823,0.0593219942271581,0.542105263157895,54.2105263157895,2,97.3359584819239,0.857447255484529,52.6315789473684,5.51513599192055,0,410.128522237142,409.995666503906,0.171376508758996
+8295,311474,3791198,311574,3791098,94,82,0,NA,NA,NA,NA,0.029602773956085,0.1675,16.75,3,84.9248034822412,0.835733169066502,11.5,37.9857810006213,21.4219055175781,410.232566833496,410.008666992188,0.306649301500706
+8296,311474,3791098,311574,3790998,95,82,3.94736842105263,0.0202455012036161,7.33823953322136,0.333333333333333,25.9778761038906,0.024665052958804,0.0973684210526316,9.73684210526316,4,77.7121450218695,0.745734359317497,7.36842105263158,37.14437783731,5.19557523727417,410.690081278483,410.272888183594,0.511192442214378
+8297,311474,3790998,311574,3790898,96,82,37.3684210526316,0.383314822788465,30.2604062340736,0.811032863849765,NA,0.0402734636049564,0.360526315789474,36.0526315789474,6,90.5833042023986,0.774814814814815,29.4736842105263,7.04950544259844,0,411.331426620483,410.682769775391,0.647054003055799
+8298,311474,3790898,311574,3790798,97,82,13.4210526315789,0.0688347040922948,15.1600541973807,0.615476190476191,42.8438104389809,0.0156757312434102,0.0605263157894737,6.05263157894737,7,55.9985081890579,0.438219732337379,2.36842105263158,23.9173589167388,0,412.342259724935,411.494598388672,0.765404008462542
+8299,311474,3790798,311574,3790698,98,82,5.25,0.0283437016850625,8.88365173692381,0.456018518518518,78.1066213724715,0.0264353439156912,0.115,11.5,5,74.8553753913033,0.681297986382732,4.75,35.0183495127636,5.19557523727417,413.635051727295,412.757171630859,1.52147354148479
+8300,311474,3790698,311574,3790598,99,82,1.84210526315789,0.018895801123375,9.12699266151138,0.261904761904762,NA,0.0178311406336939,0.0472222222222222,4.72222222222222,4,58.1395731676383,0.580174927113703,2.22222222222222,13.1882757018594,5.19557523727417,417.292421340942,415.775482177734,1.62046903013861
+8301,311574,3800598,311674,3800498,0,83,26.0387811634349,0.126871807542706,18.1119021830432,0.712456140350877,27.9790285905554,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.411596298218,387.914428710938,0.424575664157208
+8302,311574,3800498,311674,3800398,1,83,17.8947368421053,0.0458898027282127,9.6812341129581,0.533045794075206,12.9889379220549,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.977088928223,387.488098144531,0.532742133225268
+8303,311574,3800398,311674,3800298,2,83,17.7285318559557,0.0287936017118198,6.28350752177818,0.378624566124566,22.0697927691195,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.628644943237,387.322631835938,0.512367813272378
+8304,311574,3800298,311674,3800198,3,83,39.0581717451524,0.0951538556570293,10.1212496044351,0.396901709401709,25.9778759480258,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.806790669759,387.375854492188,0.622962030096236
+8305,311574,3800198,311674,3800098,4,83,68.6980609418283,0.669451239799809,36.8247724129947,0.787634408602151,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.74267578125,387.770111083984,0.631189165083205
+8306,311574,3800098,311674,3799998,5,83,48.1578947368421,0.123497557342102,15.3425799559583,0.594427339901478,11.6900442467549,-0.00461015191907982,0.0328947368421053,3.28947368421053,1,60.1581072775551,0.586394557823129,3.28947368421053,10.2730545043945,5.19557523727417,389.272778828939,389.084197998047,0.260020209367753
+8307,311574,3799998,311674,3799898,6,83,25.207756232687,0.0491290829207925,9.84660268393232,0.486404934566975,11.2519815151746,-0.0053835698993597,0.0249307479224377,2.49307479224377,3,47.979797979798,0.487215909090909,1.10803324099723,8.39558993445502,5.19557523727417,389.42400932312,389.351715087891,0.116601425943562
+8308,311574,3799898,311674,3799798,7,83,20.4986149584488,0.0332926019792916,8.63435075796708,0.322361111111111,15.6482653548358,0.0106823140142392,0.0221606648199446,2.21606648199446,3,42.742818892036,0.488668555240793,1.10803324099723,12.3813771605492,5.19557523727417,389.353922526042,389.236358642578,0.143753487437581
+8309,311574,3799798,311674,3799698,8,83,52.6315789473684,0.0854810050819649,10.7772884432816,0.423048492901434,12.1230088484866,0.00328502317098957,0,0,0,NA,NA,0,NA,NA,389.498889923096,389.232482910156,0.330069444046409
+8310,311574,3799698,311674,3799598,9,83,33.9473684210526,0.069644524140464,12.7583618770909,0.463163215902942,13.5084955740279,0.00653040566924717,0.0342105263157895,3.42105263157895,5,45.7021892786035,0.539812291855889,1.57894736842105,6.32598337760338,0,390.032109578451,389.527099609375,0.618163236521779
+8311,311574,3799598,311674,3799498,10,83,55.1246537396122,0.107436126387227,12.1039125801543,0.497600439422473,10.6364522237762,-0.00693032635225541,0,0,0,NA,NA,0,NA,NA,390.910118103027,390.330017089844,0.590781057918231
+8312,311574,3799498,311674,3799398,11,83,47.9224376731302,0.155665409254526,16.462874577765,0.676775271512114,17.3185839999892,0.00450885682472199,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,0.74222503389631,0,391.547760009766,391.038696289062,0.602006285766623
+8313,311574,3799398,311674,3799298,12,83,51.2465373961219,0.083231504948229,8.79377791624169,0.416782407407407,14.4236564127181,0.00189091657176149,0.0609418282548476,6.09418282548476,4,68.6291964806148,0.686795072011105,4.43213296398892,13.0426923578436,0,391.612197875977,391.291961669922,0.520958517358941
+8314,311574,3799298,311674,3799198,13,83,16.5789473684211,0.0425155525276089,9.37112357579486,0.57202964519141,31.1734511168478,0.0146395794732981,0.0184210526315789,1.84210526315789,4,28.9790938637503,0.363270777479893,0.789473684210526,16.328950881958,10.3911504745483,392.265214920044,391.619140625,0.702750471903084
+8315,311574,3799198,311674,3799098,14,83,18.5595567867036,0.0904299053761839,16.0433895314606,0.658040027605245,23.2353185658643,0.00964054815710856,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,7.64479287465413,5.19557523727417,392.904706319173,392.454376220703,0.54249655974986
+8316,311574,3799098,311674,3798998,15,83,21.8836565096953,0.213252612678165,25.7542884481487,0.79746835443038,NA,0.014056452482675,0.0415512465373961,4.15512465373961,5,51.223012502127,0.525748817656332,2.21606648199446,21.2530798912048,0,393.195741653442,392.782104492188,0.453541346187308
+8317,311574,3798998,311674,3798898,16,83,0,NA,NA,NA,NA,0.0192937811261195,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,50.6568584442139,36.369026184082,393.716433207194,393.64208984375,0.175624118538215
+8318,311574,3798898,311674,3798798,17,83,0,NA,NA,NA,NA,0.000574749677080514,0,0,0,NA,NA,0,NA,NA,393.731008529663,393.678802490234,0.0533532606629504
+8319,311574,3798798,311674,3798698,18,83,0,NA,NA,NA,NA,-0.0153799513037607,0.102493074792244,10.2493074792244,3,83.2062752780775,0.780813600485732,9.14127423822715,78.9712593491013,37.4658241271973,393.648806254069,393.581939697266,0.100319600123258
+8320,311574,3798698,311674,3798598,19,83,36.01108033241,0.350922020862803,26.7190263391403,0.820512820512821,NA,0.0233317906720792,0.0941828254847645,9.41828254847645,5,70.6222264577846,0.724006116207951,4.98614958448753,25.7024132644429,0,393.507574081421,393.362762451172,0.107243172934395
+8321,311574,3798598,311674,3798498,20,83,24.9307479224377,0.12147300722174,14.525914352232,0.511494252873563,10.3911503376439,0.0217590846507058,0.0249307479224377,2.49307479224377,5,32.552344135708,0.316287878787879,1.10803324099723,8.98293214374118,0,393.502329508464,393.32666015625,0.834304082869757
+8322,311574,3798498,311674,3798398,21,83,0,NA,NA,NA,NA,0.0186181471844305,0.0552631578947368,5.52631578947368,7,52.4183366127016,0.404596100278552,2.10526315789474,67.9802918207078,41.5646018981934,395.882778167725,393.523254394531,2.23251131257642
+8323,311574,3798398,311674,3798298,22,83,9.14127423822715,0.0890802052959424,22.4714134796979,0.585858585858586,NA,0.0458452778084267,0.349030470914127,34.9030470914127,2,95.3097045556137,0.919501997584317,34.3490304709141,36.6255548076024,7.34765291213989,396.410817464193,395.000640869141,1.16010281713725
+8324,311574,3798298,311674,3798198,23,83,32.9639889196676,0.160614309548745,24.1046281608599,0.717691758465932,51.9557516882196,0.0204801027916461,0.0581717451523546,5.81717451523546,4,67.7041561020636,0.668198529411765,4.15512465373961,5.83302059627715,0,396.753160476685,395.942749023438,0.701932867312469
+8325,311574,3798198,311674,3798098,24,83,27.7008310249307,0.0899800053494367,20.6609177081869,0.556321358952938,22.5141590648952,0.027826819097205,0.10803324099723,10.803324099723,5,76.1563693514358,0.672288580984233,6.64819944598338,12.9223281175662,0,396.938814798991,396.568389892578,0.362636819327049
+8326,311574,3798098,311674,3797998,25,83,68.6842105263158,0.352271720943045,28.3374789829285,0.713184476342371,20.7823006752878,0.0156910793372893,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,397.27024269104,396.986541748047,0.292220041580275
+8327,311574,3797998,311674,3797898,26,83,68.4210526315789,0.666751839639326,32.0915526121344,0.91497975708502,NA,0.0223384593373893,0.0526315789473684,5.26315789473684,5,56.7273607461559,0.563218390804598,2.77008310249307,6.45215021936517,0,397.546413421631,397.388366699219,0.206599077842619
+8328,311574,3797898,311674,3797798,27,83,29.6398891966759,0.144417908585846,23.0435711826158,0.59656862745098,10.3911504415599,0.0887315510049813,0.764542936288089,76.4542936288089,3,97.3099834619358,0.713036565977743,69.2520775623269,13.8084101746048,0,397.569981892904,397.415222167969,0.221882780461383
+8329,311574,3797798,311674,3797698,28,83,16.6204986149584,0.0323928019257972,8.3400481647108,0.352944444444444,12.4693805298719,0.0736694667905384,0.720221606648199,72.0221606648199,2,96.4845086300406,0.706426494805538,51.8005540166205,16.5321552826808,0,398.19202041626,397.64599609375,0.583433847752983
+8330,311574,3797698,311674,3797598,29,83,86.5789473684211,0.888102652798941,38.9137625317336,0.882472137791287,NA,0.0735707291892092,0.673684210526316,67.3684210526316,2,96.6219962431057,0.827620967741935,57.1052631578947,1.22054330632091,0,398.936665852865,398.267913818359,0.596371371675025
+8331,311574,3797598,311674,3797498,30,83,84.4875346260388,0.411658524473673,28.0242551011729,0.861726112463334,10.3911504415599,0.038185080208695,0.210526315789474,21.0526315789474,5,83.216465726656,0.754228855721393,12.1883656509695,1.02544248104095,0,399.603384017944,399.229339599609,0.371560456416764
+8332,311574,3797498,311674,3797398,31,83,65.9279778393352,0.321228619097489,22.8990728661864,0.553759578544061,15.5867256623399,0.0392072794707334,0.310249307479224,31.0249307479224,6,85.2257869495033,0.770328840112927,19.9445983379501,1.34062053476061,0,400.154932657878,399.920837402344,0.406843021811249
+8333,311574,3797398,311674,3797298,32,83,76.4542936288089,0.745034444293336,38.9536953928109,0.872584541062802,NA,0.0398405344878327,0.271468144044321,27.1468144044321,3,92.935998217181,0.867417041133771,26.0387811634349,0,0,400.982990264893,400.380493164062,0.701135487811915
+8334,311574,3797298,311674,3797198,33,83,98.6842105263158,1.01227506018116,38.6282836519239,0.926222222222222,NA,0.035270043264537,0.234210526315789,23.421052631579,1,94.2341300741174,0.860381681039141,23.4210526315789,0.175131749571039,0,402.398094177246,401.637023925781,1.29602303075125
+8335,311574,3797198,311674,3797098,34,83,96.6759002770083,0.942090656008603,37.096647973707,0.926456542502388,NA,0.0318837774719319,0.268698060941828,26.8698060941828,5,85.7852517625531,0.67779083942877,13.5734072022161,0,0,404.471925735474,402.340698242188,2.67053132065807
+8336,311574,3797098,311674,3796998,35,83,61.7728531855956,0.601966235787732,31.0343170219527,0.908071748878924,NA,0.0217723796096804,0.274238227146814,27.4238227146814,3,91.1058542207376,0.837443176944849,23.8227146814404,0.389102063997827,0,408.143163045247,405.680419921875,2.44605438159001
+8337,311574,3796998,311674,3796898,36,83,16.0664819944598,0.07828260465401,10.716417944474,0.634583333333333,25.9778761038998,-0.0227907578034755,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,33.7712388038635,25.977876663208,410.38116645813,409.444091796875,1.01957266819322
+8338,311574,3796898,311674,3796798,37,83,71.3157894736842,0.36576872174546,26.9005357395675,0.821558872305141,10.3911504415599,0.0233407931919685,0.0657894736842105,6.57894736842105,7,52.6139235382429,0.464788732394366,2.10526315789474,1.83475028991699,0,409.505945841471,408.924682617188,0.773011428094023
+8339,311574,3796798,311674,3796698,38,83,31.3019390581717,0.305032218134591,28.3086503611116,0.823008849557522,NA,0.0168927960334651,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,8.86940169334412,7.34765291213989,408.97961807251,408.604034423828,0.527097011416557
+8340,311574,3796698,311674,3796598,39,83,62.8808864265928,0.306381918214832,19.2647592532102,0.536334325396825,15.5867255064659,0.109578125292891,0.686980609418283,68.6980609418283,1,98.8527710749899,0.986229783338419,68.6980609418283,3.01460500686399,0,409.796800613403,409.1875,0.536235253517103
+8341,311574,3796598,311674,3796498,40,83,70.0831024930748,0.227649413534075,13.7837828982926,0.440740740740741,13.8548671861359,0.0345350284184364,0.304709141274238,30.4709141274238,1,95.4912282246299,0.862679933532203,30.4709141274238,1.01144688779658,0,410.110814412435,409.879058837891,0.180552170858077
+8342,311574,3796498,311674,3796398,41,83,24.3767313019391,0.0339353163032161,7.3344248942518,0.473092251237412,16.0742592331666,0.0112778194751907,0.0803324099722992,8.03324099722992,3,77.7093668552443,0.699243783645219,6.37119113573407,15.5450531203171,0,410.50083732605,410.173858642578,0.358016563288079
+8343,311574,3796398,311674,3796298,42,83,7.36842105263158,0.0755832044935268,13.2644233711458,0.660714285714286,NA,0.0207526133272232,0.157894736842105,15.7894736842105,1,91.7992580895076,0.908653846153846,15.7894736842105,7.6998522122701,0,411.266128540039,410.845672607422,0.773061614116257
+8344,311574,3796298,311674,3796198,43,83,77.8393351800554,0.252843815031917,13.3327945606392,0.444242424242424,14.9924457605356,0.0413708460126704,0.326869806094183,32.6869806094183,4,90.8417043995412,0.750086535133264,19.9445983379501,0.989744255098246,0,412.181661605835,411.699188232422,0.509424971933028
+8345,311574,3796198,311674,3796098,44,83,84.7645429362881,0.413008224553915,19.5583839415097,0.521381578947368,15.5867255064659,0.0465230954304844,0.429362880886427,42.9362880886427,4,93.8186060386926,0.754045307443366,36.5650969529086,0.686443042755127,0,412.4132715861,411.882598876953,0.794068443543732
+8346,311574,3796098,311674,3795998,45,83,48.7534626038781,0.475094428245026,40.3636943941533,0.778409090909091,NA,0.0138536285648218,0.0470914127423823,4.70914127423823,3,62.9408196473215,0.664186046511628,2.49307479224377,12.886913467856,5.19557523727417,410.298675537109,408.812866210938,1.78035307255405
+8347,311574,3795998,311674,3795898,46,83,38.4210526315789,0.394112423430533,26.461386469076,0.852739726027397,NA,0.0104428096622781,0.00526315789473684,0.526315789473684,2,0,1,0.263157894736842,28.8954658508301,21.4219055175781,406.984413146973,405.535247802734,2.26464808846853
+8348,311574,3795898,311674,3795798,47,83,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.0154639507621562,0.0332409972299169,3.32409972299169,3,57.8159175945309,0.513231080397775,1.93905817174515,27.023758093516,18.7329120635986,403.867095947266,402.934234619141,1.28296684821553
+8349,311574,3795798,311674,3795698,48,83,14.404432132964,0.0350922020862803,6.64143273831452,0.376515151515152,13.602192394699,0.017462476364571,0.105263157894737,10.5263157894737,4,73.9556624332146,0.645191409897292,4.15512465373961,13.5369493961334,0,402.621892293294,402.386291503906,0.39087123178389
+8350,311574,3795698,311674,3795598,49,83,45.4293628808864,0.442701626319229,30.1448561779655,0.839430894308943,NA,0.0355243153671055,0.221606648199446,22.1606648199446,3,88.3359064265405,0.791915192220941,18.5595567867036,8.24141406416893,0,402.214715957642,402.102935791016,0.15940118284353
+8351,311574,3795598,311674,3795498,50,83,76.5789473684211,0.785525446700583,34.7319588207236,0.904352806414662,NA,0.0289415815518551,0.0315789473684211,3.15789473684211,4,46.2006860361741,0.453324808184143,1.05263157894737,6.49446900685628,0,402.051432291667,402.026916503906,0.0454230138801721
+8352,311574,3795498,311674,3795398,51,83,49.584487534626,0.483192628726475,30.8957032369503,0.875232774674115,NA,0.018326070795796,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.956400966183575,4.43213296398892,6.72870808839798,0,402.032421112061,402.019989013672,0.0262976825344629
+8353,311574,3795398,311674,3795298,52,83,0,NA,NA,NA,NA,0.024499148647675,0.0914127423822715,9.14127423822715,4,73.4183920522793,0.755420054200542,6.37119113573407,79.4877569025213,52.2148818969727,402.127782185872,402.078033447266,0.0945935285521436
+8354,311574,3795298,311674,3795198,53,83,3.32409972299169,0.0323928019257972,8.37830729428157,0.583333333333333,NA,0.0406847542462276,0.346260387811634,34.6260387811634,2,94.8161536679037,0.838273725080266,32.9639889196676,45.9266598854065,0,402.340148925781,402.221588134766,0.120412330998011
+8355,311574,3795198,311674,3795098,54,83,0,NA,NA,NA,NA,0.0206892401489313,0.0578947368421053,5.78947368421053,3,77.2322533193378,0.719027275714755,5.26315789473684,72.3952617645264,51.955753326416,402.105827331543,401.524688720703,0.442670614175923
+8356,311574,3795098,311674,3794998,55,83,0,NA,NA,NA,NA,0.0242327662933633,0.0637119113573407,6.37119113573407,3,72.0147778795119,0.762656147271532,4.70914127423823,159.250920171323,106.983444213867,401.297045389811,400.951446533203,0.42865201357243
+8357,311574,3794998,311674,3794898,56,83,0,NA,NA,NA,NA,0.0300137581010017,0.163434903047091,16.3434903047091,1,91.8133927298019,0.800772626931567,16.3434903047091,101.2548850108,86.4716033935547,400.9296875,400.840545654297,0.154024299980765
+8358,311574,3794898,311674,3794798,57,83,6.92520775623269,0.0224950013373592,5.67330652561012,0.364197530864198,49.4693932109647,0.0209101802084809,0.0637119113573407,6.37119113573407,2,74.4571577349407,0.732988165680473,3.32409972299169,18.5163032075633,5.19557523727417,401.238327026367,401.005432128906,0.435716295962984
+8359,311574,3794798,311674,3794698,58,83,6.05263157894737,0.0310431018455557,10.3754520339212,0.455026455026455,25.9778761038998,0.018643358061926,0.0342105263157895,3.42105263157895,5,45.477145146961,0.424765364819861,1.31578947368421,46.11315037654,20.7823009490967,402.105108261108,401.543518066406,0.55553473066056
+8360,311574,3794698,311674,3794598,59,83,5.54016620498615,0.0179960010698873,6.27788066174082,0.348989898989899,17.3185840692665,0.0189474139561221,0.0554016620498615,5.54016620498615,5,61.9840106350921,0.487749503358244,3.04709141274238,30.3589481830597,0,402.907544453939,402.663208007812,0.313949578569848
+8361,311574,3794598,311674,3794498,60,83,15.5124653739612,0.151166408987054,26.7611071635373,0.726190476190476,NA,0.0182012039367692,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,22.5141595204671,20.7823009490967,402.894786834717,402.687347412109,0.225357254623324
+8362,311574,3794498,311674,3794398,61,83,64.5429362880887,0.628960237392563,31.164307131847,0.889842632331903,NA,0.00472618460250318,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.494397759103641,1.10803324099723,12.0804438591003,10.3911504745483,402.683842976888,402.652862548828,0.086222003781989
+8363,311574,3794398,311674,3794298,62,83,80.7894736842105,0.828715849268312,35.1346582474988,0.922909880564604,NA,-0.00166338306189094,0,0,0,NA,NA,0,NA,NA,403.032867431641,402.724456787109,0.386246248491382
+8364,311574,3794298,311674,3794198,63,83,88.3656509695291,0.86110865119411,36.0355214388563,0.914315569487983,NA,0.00160463606674364,0,0,0,NA,NA,0,NA,NA,403.320546468099,402.941314697266,0.407917610468223
+8365,311574,3794198,311674,3794098,64,83,45.7063711911357,0.111350256619928,14.0452332083425,0.572990150662873,16.8856193506294,-0.000790869200817752,0,0,0,NA,NA,0,NA,NA,402.717798233032,402.586151123047,0.209772107764003
+8366,311574,3794098,311674,3793998,65,83,43.4903047091413,0.211902912597924,27.3976473683964,0.53125,10.3911504415599,-0.0218714175103626,0,0,0,NA,NA,0,NA,NA,402.573471069336,402.525451660156,0.0778800403111219
+8367,311574,3793998,311674,3793898,66,83,7.63157894736842,0.0782826046540099,12.4410155146807,0.695402298850575,NA,0.0143383717942542,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,12.148217022419,7.34765291213989,402.661405563354,402.536926269531,0.180116325863866
+8368,311574,3793898,311674,3793798,67,83,6.09418282548476,0.0593868035306282,10.6413245927493,0.674242424242424,NA,0.0139264172826906,0,0,0,NA,NA,0,NA,NA,402.918215433757,402.738677978516,0.283825546629408
+8369,311574,3793798,311674,3793698,68,83,33.5180055401662,0.108875806472818,14.9641456755227,0.606793591344153,21.9198792670069,0.0120700220356847,0.0193905817174515,1.93905817174515,4,26.7181536278554,0.362641242937853,0.554016620498615,13.9895996366228,5.19557523727417,403.540134429932,403.156707763672,0.399444239061819
+8370,311574,3793698,311674,3793598,69,83,55.1246537396122,0.179060210645379,19.7323833700042,0.753221455547037,12.1230087965286,0.019298273130786,0.074792243767313,7.4792243767313,4,71.4743019617963,0.698370700459546,5.26315789473684,5.10767452805131,0,403.954195022583,403.782440185547,0.225667672880591
+8371,311574,3793598,311674,3793498,70,83,44.2105263157895,0.11337480674029,15.1480833149275,0.68672906954157,11.9966713661715,0.0195088082898828,0.05,5,4,66.2765045191667,0.745916515426497,3.94736842105263,5.76011416786595,0,403.668553670247,403.452453613281,0.244502620087327
+8372,311574,3793498,311674,3793398,71,83,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0260170560067009,0.0692520775623269,6.92520775623269,6,58.9052986365015,0.543377976190476,3.04709141274238,37.9347257995605,15.5867252349854,403.556447982788,403.379455566406,0.422257015893481
+8373,311574,3793398,311674,3793298,72,83,0,NA,NA,NA,NA,0.0240275207952915,0.0637119113573407,6.37119113573407,4,65.8761300901673,0.643984220907298,3.601108033241,59.9936063185982,30.2951488494873,404.909889221191,404.146759033203,0.969389718829805
+8374,311574,3793298,311674,3793198,73,83,12.4653739612188,0.12147300722174,21.834762862844,0.707407407407407,NA,0.0264848764735716,0.132963988919668,13.2963988919668,5,83.8171747712194,0.690563391256916,11.3573407202216,10.948192636172,0,405.861824035645,405.376678466797,0.37120802051719
+8375,311574,3793198,311674,3793098,74,83,0,NA,NA,NA,NA,0.0249518596214521,0.102631578947368,10.2631578947368,4,77.1064981504738,0.691405368824724,6.05263157894737,85.1836581107898,59.2386741638184,406.335843404134,406.114898681641,0.315084024663583
+8376,311574,3793098,311674,3792998,75,83,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0215389232117531,0.0775623268698061,7.75623268698061,2,81.6098385780591,0.879546212879546,7.20221606648199,77.4076548985073,65.7194061279297,406.639221191406,406.075469970703,0.359331395584135
+8377,311574,3792998,311674,3792898,76,83,5.26315789473684,0.017096201016393,6.37233679437015,0.320987654320988,13.8548672554132,0.00699474330939063,0.0138504155124654,1.38504155124654,3,25.0193816271027,0.391573033707865,0.554016620498615,56.5955619812012,47.9008369445801,407.064193725586,406.559692382812,0.857894146867326
+8378,311574,3792898,311674,3792798,77,83,11.3573407202216,0.0553377032899036,9.40891234110541,0.472953216374269,10.3911503376439,0.0269873142777472,0.185595567867036,18.5595567867036,6,86.3439144278323,0.748124890982034,15.7894736842105,11.7491809289847,0,408.380142211914,407.360778808594,1.02157787918525
+8379,311574,3792798,311674,3792698,78,83,0.263157894736842,0.0026994001604831,0,0,NA,0.027843651307615,0.068421052631579,6.84210526315789,3,71.1440576938078,0.738183822516191,3.94736842105263,33.9534846819364,11.6176595687866,410.014129638672,409.33056640625,1.11536869464097
+8380,311574,3792698,311674,3792598,79,83,14.404432132964,0.140368808345121,24.0823492346907,0.711538461538462,NA,0.0190787905794372,0.0221606648199446,2.21606648199446,4,32.8149929723314,0.386402266288952,0.831024930747922,13.9130883812904,7.34765291213989,409.761749267578,408.564239501953,1.10270917477841
+8381,311574,3792598,311674,3792498,80,83,0,NA,NA,NA,NA,0.0202808031433537,0.10803324099723,10.803324099723,7,71.2631614866944,0.637792642140468,6.64819944598338,77.8730963193453,25.977876663208,410.276568094889,408.665679931641,1.5495597543334
+8382,311574,3792498,311674,3792398,81,83,0,NA,NA,NA,NA,0.0196554464959177,0.0498614958448753,4.98614958448753,4,59.1838031937908,0.571212612028939,1.93905817174515,138.437603844537,97.0613555908203,412.090637207031,410.933319091797,1.04334757246174
+8383,311574,3792398,311674,3792298,82,83,0,NA,NA,NA,NA,0.0209204206923268,0.0605263157894737,6.05263157894737,5,58.9642895567449,0.497354497354497,1.84210526315789,146.649748760721,125.664199829102,412.909843444824,412.398986816406,0.60180428762016
+8384,311574,3792298,311674,3792198,83,83,0,NA,NA,NA,NA,0.0181211244056602,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,24.5777851451527,20.7823009490967,412.857805252075,412.038177490234,0.69631990723475
+8385,311574,3792198,311674,3792098,84,83,55.9556786703601,0.272639416208793,26.681044467676,0.786959228135699,21.4219052194909,0.0283356277452533,0.166204986149584,16.6204986149584,3,89.5503852483807,0.803954766164069,15.7894736842105,1.83673129081726,0,410.322835922241,408.808349609375,1.72392280159131
+8386,311574,3792098,311674,3791998,85,83,16.3434903047091,0.159264609468503,24.7987313803256,0.73728813559322,NA,0.0343744903511027,0.157894736842105,15.7894736842105,5,82.5299403325049,0.672831632653061,11.3573407202216,12.2161566500078,0,409.321060180664,408.191650390625,1.10297786574803
+8387,311574,3791998,311674,3791898,86,83,0,NA,NA,NA,NA,0.0200100792038843,0.0710526315789474,7.10526315789474,4,71.2369684966215,0.699584952895448,3.42105263157895,58.9391381299054,25.977876663208,411.400667190552,410.481140136719,0.99684181918348
+8388,311574,3791898,311674,3791798,87,83,11.3573407202216,0.0276688516449518,7.41278645369674,0.448319327731092,29.6280918275128,0.0307617580383975,0.149584487534626,14.9584487534626,7,74.4489719623446,0.68389898777626,7.75623268698061,7.49480766720242,0,412.475115458171,412.169952392578,0.387097487995318
+8389,311574,3791798,311674,3791698,88,83,21.3296398891967,0.0346423020595331,5.69318399267986,0.321617071617072,15.6596886920041,0.0308801686019012,0.18005540166205,18.005540166205,4,84.0762973097001,0.805728294666348,9.41828254847645,3.03400948597835,0,412.723257064819,412.547973632812,0.222068264104397
+8390,311574,3791698,311674,3791598,89,83,21.8836565096953,0.042650522535633,8.72800119124112,0.452469369710749,18.3749190373857,0.0277834836319182,0.135734072022161,13.5734072022161,4,80.944653228699,0.73828601953602,8.86426592797784,6.04377639536955,0,412.507690429688,412.060974121094,0.39600997259501
+8391,311574,3791598,311674,3791498,90,83,49.7368421052632,0.255093315165653,28.6065205271752,0.740287769784173,15.5867255064659,0.0468807345911046,0.434210526315789,43.4210526315789,5,91.5750181154549,0.744186046511628,21.0526315789474,5.45239828283137,0,411.736274719238,411.229553222656,0.539438126535598
+8392,311574,3791498,311674,3791398,91,83,37.3961218836565,0.0911047554163047,14.7168788064104,0.551560867293626,16.19997997911,0.0231983784155761,0.174515235457064,17.4515235457064,6,79.3007477258276,0.581513117754728,9.41828254847645,3.31878836192782,0,411.161410013835,410.783599853516,0.374415790560604
+8393,311574,3791398,311674,3791298,92,83,14.404432132964,0.140368808345121,14.4844691318652,0.807692307692308,NA,0.0368143192953894,0.227146814404432,22.7146814404432,7,82.2778395735907,0.678754171301446,13.5734072022161,11.4929707341078,0,410.730583190918,410.394561767578,0.29796911943906
+8394,311574,3791298,311674,3791198,93,83,31.5789473684211,0.0769329045737684,11.8659258094053,0.52761544011544,15.5867255584239,0.0458789753612006,0.462603878116344,46.2603878116343,3,93.9838771804433,0.848959030660062,30.7479224376731,4.38955957732515,0,410.633895874023,410.356567382812,0.307364972289591
+8395,311574,3791198,311674,3791098,94,83,12.8947368421053,0.044090202621224,12.1329012401834,0.567277568922306,29.4529011321815,0.0260493511194287,0.131578947368421,13.1578947368421,4,75.8080758745551,0.729055258467023,5.52631578947368,7.08643887519836,0,410.797430038452,410.461822509766,0.239055340126246
+8396,311574,3791098,311674,3790998,95,83,28.2548476454294,0.137669408184638,14.688687895155,0.62145390070922,20.7823006752878,0.0263358364733458,0.213296398891967,21.3296398891967,4,86.5472919695827,0.813069594034797,16.0664819944598,4.62793539716052,0,411.271336873372,410.899688720703,0.603700148953861
+8397,311574,3790998,311674,3790898,96,83,38.781163434903,0.377916022467634,27.8157863811708,0.852380952380952,NA,0.0435704701148629,0.409972299168975,40.9972299168975,2,96.49575403876,0.862411863555255,40.7202216066482,3.29274754910856,0,412.166845321655,411.751434326172,0.550856896299458
+8398,311574,3790898,311674,3790798,97,83,3.32409972299169,0.0323928019257972,10.4353643128883,0.5,NA,0.032191762124405,0.224376731301939,22.4376731301939,6,83.688782485334,0.623958333333333,10.5263157894737,28.3767342214231,5.19557523727417,413.200141906738,412.444091796875,1.13738913428581
+8399,311574,3790798,311674,3790698,98,83,36.5789473684211,0.125072207435717,13.7340748625703,0.764217443249701,15.5867255618877,0.0392581808700159,0.294736842105263,29.4736842105263,6,89.8334675791531,0.75432244717009,22.3684210526316,11.0304972146239,0,414.906497955322,412.780700683594,2.10104335988278
+8400,311574,3790698,311674,3790598,99,83,8.86426592797784,0.0431904025677296,8.34271925982729,0.438888888888889,83.1292027011514,0.030941240161852,0.178362573099415,17.8362573099415,7,77.8242966783672,0.598133351238837,7.60233918128655,25.0745568353622,0,417.813890457153,417.032318115234,0.960858784222902
+8401,311674,3800598,311774,3800498,0,84,29.0858725761773,0.0566874033701451,11.6943200340912,0.318212197159566,19.1946742137579,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.060391743978,387.706237792969,0.355771150733381
+8402,311674,3800498,311774,3800398,1,84,27.6315789473684,0.0566874033701451,12.402925519932,0.452916666666667,15.9239759192126,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.464385986328,387.287902832031,0.309243959578144
+8403,311674,3800398,311774,3800298,2,84,34.3490304709141,0.0557876033166508,10.1023491156395,0.535388454558146,13.5043750722792,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.209538777669,387.140167236328,0.127342047585475
+8404,311674,3800298,311774,3800198,3,84,45.983379501385,0.224050213320097,24.0428088820442,0.7264631043257,20.7823006752878,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.297648111979,387.169311523438,0.247910279295793
+8405,311674,3800198,311774,3800098,4,84,42.9362880886427,0.418407024874881,37.6463102935644,0.646236559139785,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.053314208984,387.482971191406,0.719759713421353
+8406,311674,3800098,311774,3799998,5,84,44.2105263157895,0.11337480674029,15.4454860636354,0.503759398496241,12.7660830498048,-0.00359299456230426,0,0,0,NA,NA,0,NA,NA,388.989546034071,388.488494873047,0.810115203220898
+8407,311674,3799998,311774,3799898,6,84,10.803324099723,0.0526383031294205,10.9838548848953,0.559803921568627,52.2148842320149,0.00201807650138458,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,11.9642436504364,5.19557523727417,389.420046488444,388.976104736328,0.360907655384693
+8408,311674,3799898,311774,3799798,7,84,26.3157894736842,0.256443015245895,26.2303100729417,0.835087719298246,NA,0.00374178811060855,0,0,0,NA,NA,0,NA,NA,389.220638699002,389.144012451172,0.106750199456544
+8409,311674,3799798,311774,3799698,8,84,45.4293628808864,0.110675406579807,13.1554761513861,0.569892939814815,23.3800882986673,-0.00278035449703092,0.0304709141274238,3.04709141274238,2,65.4820625454678,0.587428571428571,2.49307479224377,6.9196945103732,5.19557523727417,389.243151346842,389.146697998047,0.147044711984333
+8410,311674,3799698,311774,3799598,9,84,54.2105263157895,0.278038216529759,23.730903792908,0.809319792658415,10.3911503376439,-0.0109752478560519,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,10.3911504745483,10.3911504745483,389.71775648329,389.451049804688,0.444138386883235
+8411,311674,3799598,311774,3799498,10,84,56.2326869806094,0.273989116289035,26.7359691547189,0.723681467583907,15.5867256623399,-0.00652834855355043,0,0,0,NA,NA,0,NA,NA,390.511464436849,390.121032714844,0.407551326186583
+8412,311674,3799498,311774,3799398,11,84,38.781163434903,0.0629860037446057,12.090341923087,0.574625970056078,15.9743682403332,0.0156457890959833,0.0581717451523546,5.81717451523546,7,48.6312665871251,0.502297794117647,1.66204986149584,6.0137882232666,0,391.06630452474,390.862854003906,0.190090282326089
+8413,311674,3799398,311774,3799298,12,84,58.1717451523546,0.283437016850726,19.6926056652734,0.526570048309179,15.5867255064659,0.00901687351797792,0.0415512465373961,4.15512465373961,6,43.8273303481587,0.478323699421965,1.66204986149584,9.45614194869995,0,391.270704481337,391.19970703125,0.143342142839744
+8414,311674,3799298,311774,3799198,13,84,36.8421052631579,0.125972007489211,21.0913052950822,0.718122141511972,19.0504422856805,0.0147582188988472,0.0657894736842105,6.57894736842105,7,58.5765292357242,0.598591549295775,3.94736842105263,13.9141012001038,5.19557523727417,391.619321187337,391.359375,0.344644250271756
+8415,311674,3799198,311774,3799098,14,84,41.8282548476454,0.407609424232948,37.3256538564147,0.760485651214128,NA,0.0196245193766518,0.174515235457064,17.4515235457064,5,80.2569450444624,0.768730933496034,10.5263157894737,8.08497984447176,0,392.106313069661,391.811218261719,0.454772485155592
+8416,311674,3799098,311774,3798998,15,84,23.5457063711911,0.114724506820532,16.4873300701067,0.542708333333333,57.1513268570416,0.0231289003188515,0.0997229916897507,9.97229916897507,2,80.9259094401896,0.833384615384615,6.37119113573407,18.6051718526416,5.19557523727417,392.821762084961,392.371063232422,0.540186107608194
+8417,311674,3798998,311774,3798898,16,84,2.77008310249307,0.026994001604831,6.60605781292274,0.55,NA,0.0176906026932466,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,45.3998228708903,20.7823009490967,393.54876030816,393.285827636719,0.261283173120947
+8418,311674,3798898,311774,3798798,17,84,0,NA,NA,NA,NA,0.0192824123071516,0.0236842105263158,2.36842105263158,3,48.3998322391164,0.658580413297394,1.57894736842105,103.601887173123,94.0958709716797,393.752604166667,393.635620117188,0.14052520172643
+8419,311674,3798798,311774,3798698,18,84,0,NA,NA,NA,NA,0.0216947908377524,0.149584487534626,14.9584487534626,4,81.3460330061847,0.797695352176806,10.803324099723,74.6426825699983,18.7329120635986,393.596937391493,393.404937744141,0.265270439661909
+8420,311674,3798698,311774,3798598,19,84,32.6869806094183,0.159264609468503,13.8918772120886,0.499281609195402,36.7382643477325,0.0172740781700388,0.0415512465373961,4.15512465373961,3,59.0579738584608,0.620599054125066,1.66204986149584,29.4867441177368,14.6953058242798,393.226875305176,393.046875,0.270105580661739
+8421,311674,3798598,311774,3798498,20,84,25.4847645429363,0.124172407382223,12.1082712698134,0.362637362637363,11.6176593526411,0.019749356151438,0.0304709141274238,3.04709141274238,3,58.0245725145703,0.587428571428571,2.21606648199446,5.39121866226196,0,393.781907823351,393.112670898438,2.47534816655188
+8422,311674,3798498,311774,3798398,21,84,0,NA,NA,NA,NA,0.00785308140483195,0.05,5,6,48.8428355762865,0.41923774954628,1.31578947368421,75.7668487147281,51.955753326416,398.744092305501,397.929992675781,2.15772581125753
+8423,311674,3798398,311774,3798298,22,84,11.6343490304709,0.11337480674029,19.7597496473611,0.638888888888889,NA,0.0191795168357203,0.213296398891967,21.3296398891967,2,92.8023418028033,0.841109154929577,21.0526315789474,23.9203288400328,0,397.16514078776,397.018707275391,0.497456755996398
+8424,311674,3798298,311774,3798198,23,84,39.612188365651,0.0965035557372709,16.4616041231993,0.626785714285714,19.4834069480298,0.0189598177889732,0.0526315789473684,5.26315789473684,4,58.7387247508835,0.636015325670498,2.21606648199446,3.00796461105347,0,397.318250020345,397.076110839844,0.233269963249837
+8425,311674,3798198,311774,3798098,24,84,21.606648199446,0.0421106425035364,9.58235103225858,0.447549923195084,24.4927379660624,0.0374545419495448,0.25207756232687,25.207756232687,2,92.5759145760243,0.859693644261545,23.8227146814404,11.5251645779872,0,397.344757080078,397.230438232422,0.198269473990697
+8426,311674,3798098,311774,3797998,25,84,69.7368421052632,0.238447014176007,16.9567310363663,0.484867427202167,17.3185839653505,0.0230163394409733,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,0,0,397.530410766602,397.298675537109,0.249984086983015
+8427,311674,3797998,311774,3797898,26,84,52.3545706371191,0.255093315165653,14.2141862472709,0.44281914893617,15.5867256623399,0.0051384085610427,0.0166204986149584,1.66204986149584,3,33.4265404401816,0.418913480885312,0.831024930747922,32.5712966918945,23.2353191375732,397.800463358561,397.629364013672,0.166503492534859
+8428,311674,3797898,311774,3797798,27,84,25.7617728531856,0.251044214924928,21.1303139323726,0.844086021505376,NA,0.0773299411873603,0.620498614958449,62.0498614958449,3,96.1021693670403,0.691108161911082,49.0304709141274,22.6761770078114,0,397.85686577691,397.664642333984,0.331489270498888
+8429,311674,3797798,311774,3797698,28,84,28.5318559556787,0.13901910826488,24.0829415819576,0.659988633134413,62.3469020258635,0.087017432054696,0.700831024930748,70.0831024930748,1,98.9193346356796,0.809599156118144,70.0831024930748,9.7199298553316,0,398.863792419434,398.212005615234,0.740534531006437
+8430,311674,3797698,311774,3797598,29,84,93.1578947368421,0.955587656811018,37.5275755850672,0.926553672316384,NA,0.0564115943471399,0.573684210526316,57.3684210526316,3,95.6542583066525,0.757343550446999,44.2105263157895,0.771132112643041,0,399.636844211155,399.27734375,0.444394688172404
+8431,311674,3797598,311774,3797498,30,84,77.0083102493075,0.750433244614302,38.4700390363551,0.867505995203837,NA,0.0700862537708107,0.631578947368421,63.1578947368421,1,98.56496811549,0.79563025210084,63.1578947368421,2.11009636050776,0,399.917442321777,399.654815673828,0.377413941077635
+8432,311674,3797498,311774,3797398,31,84,97.7839335180055,0.476444128325267,18.6286751620579,0.462831439393939,11.6176592829322,0.0594342224495976,0.617728531855956,61.7728531855956,2,95.9865031116428,0.861656911928651,50.9695290858726,0.13979126198944,0,400.529981825087,399.997344970703,1.65407145169456
+8433,311674,3797398,311774,3797298,32,84,90.5817174515235,0.882703852477974,38.1243587637547,0.876146788990826,NA,0.0573388024870502,0.592797783933518,59.2797783933518,2,97.4462228020962,0.759358014562609,57.0637119113573,0.64129455067287,0,400.431958516439,400.216094970703,1.01121157639091
+8434,311674,3797298,311774,3797198,33,84,85,0.871906251836042,39.2276632268078,0.860681114551084,NA,0.00653159406524118,0.0868421052631579,8.68421052631579,1,87.058227229868,0.878322126160743,8.68421052631579,0.157441673856793,0,400.703867594401,400.199127197266,1.00102460267702
+8435,311674,3797198,311774,3797098,34,84,86.4265927977839,0.842212850070728,37.6001375677221,0.877136752136752,NA,0.00844461184500174,0.157894736842105,15.7894736842105,2,90.5196246862467,0.854591836734694,15.5124653739612,0,0,401.151796976725,400.312408447266,1.67612117365157
+8436,311674,3797098,311774,3796998,35,84,63.1578947368421,0.615463236590147,31.6150644641626,0.900584795321637,NA,0.0431349602888651,0.512465373961219,51.2465373961219,2,97.416277390058,0.778093434343434,50.6925207756233,2.52814977748974,0,405.636884901259,403.192657470703,3.92740509882961
+8437,311674,3796998,311774,3796898,36,84,35.1800554016621,0.342823820381354,25.8197191913492,0.860892388451444,NA,0.0356056567366257,0.398891966759003,39.8891966759003,3,92.757986159036,0.84876413908672,25.7617728531856,17.5193985899289,0,408.562037150065,406.960571289062,2.34952119124159
+8438,311674,3796898,311774,3796798,37,84,70,0.718040442688505,36.9789742048903,0.887218045112782,NA,0.0123279845924883,0.0815789473684211,8.1578947368421,6,62.8819643643924,0.54269340974212,2.89473684210526,0.167599201202393,0,408.230322943793,407.699951171875,1.16621068744607
+8439,311674,3796798,311774,3796698,38,84,68.4210526315789,0.333375919819663,23.3475878634832,0.639245014245014,10.3911503376439,0.0260151858080596,0.135734072022161,13.5734072022161,3,81.7099644584547,0.73828601953602,6.64819944598338,0.106032147699473,0,408.263140360514,407.776763916016,0.567804568242154
+8440,311674,3796698,311774,3796598,39,84,90.0277008310249,0.877305052157008,37.1268621301587,0.895897435897436,NA,0.112347553627323,0.814404432132964,81.4404432132964,1,99.3994305406243,0.912310059107716,81.4404432132964,0.254728336723483,0,409.4716796875,408.955749511719,0.653324096964274
+8441,311674,3796598,311774,3796498,40,84,58.7257617728532,0.572272834022418,36.7653928221574,0.831761006289308,NA,0.0495353534798417,0.39612188365651,39.612188365651,3,93.0148519482979,0.804065410743049,34.3490304709141,2.61518258648319,0,410.070200602214,409.857849121094,0.466110892328707
+8442,311674,3796498,311774,3796398,41,84,42.1052631578947,0.136769608131144,14.0493418399019,0.619801691455235,15.2734876850778,0.0189390131234283,0.168975069252078,16.8975069252078,4,84.3781993536227,0.807012578616352,13.0193905817175,1.41816049325662,0,410.668192545573,410.211273193359,0.568780495171465
+8443,311674,3796398,311774,3796298,42,84,13.6842105263158,0.140368808345121,16.7788498647515,0.78525641025641,NA,0.0174496272138353,0.173684210526316,17.3684210526316,2,91.1431245513889,0.957906397119911,17.1052631578947,25.428696863579,5.19557523727417,411.604342990451,411.151672363281,0.770565314090583
+8444,311674,3796298,311774,3796198,43,84,75.0692520775623,0.731537443490921,36.4167301336508,0.886838868388684,NA,0.0335867952839523,0.168975069252078,16.8975069252078,5,79.7691884096286,0.704842767295598,8.31024930747922,0,0,412.611218770345,412.234222412109,0.538176233673932
+8445,311674,3796198,311774,3796098,44,84,78.6703601108033,0.766629645577201,38.4104077560646,0.869131455399061,NA,0.0243460906756083,0.14404432132964,14.404432132964,7,71.2578701886628,0.645576524490018,5.26315789473684,0.599489450454712,0,413.148708767361,412.833526611328,0.381781632988807
+8446,311674,3796098,311774,3795998,45,84,92.5207756232687,0.450799826800678,29.0356875321021,0.86842204434797,10.3911504415599,0.0374669963040859,0.329639889196676,32.9639889196676,3,88.9401118332031,0.737565044383226,13.8504155124654,0.698564737784762,0,411.113868713379,409.187805175781,2.17632334310137
+8447,311674,3795998,311774,3795898,46,84,49.2105263157895,0.126196957502585,16.9924407865558,0.667272146356472,19.4834069869983,0.0046041345627983,0.136842105263158,13.6842105263158,4,80.2501761908653,0.713620169909564,9.21052631578947,0.940620284814101,0,406.551194932726,403.930786132812,3.31163342584375
+8448,311674,3795898,311774,3795798,47,84,58.4487534626039,0.189857811287311,17.8154309072437,0.68484237413457,10.3911503722826,0.00586668806161197,0.0277008310249307,2.77008310249307,3,50.9159793672456,0.60442691211922,1.66204986149584,1.55867257118225,0,403.025622049967,402.416473388672,0.902330217193016
+8449,311674,3795798,311774,3795698,48,84,49.8614958448753,0.161964009628986,26.7972634030513,0.671994039371265,12.1230088484866,0.011970752197072,0.0775623268698061,7.75623268698061,3,73.0599516916248,0.68682015348682,5.26315789473684,3.41687256949288,0,402.355526394314,402.186767578125,0.300912559632807
+8450,311674,3795698,311774,3795598,49,84,50.1385041551247,0.16286380968248,15.250050011482,0.485826327143692,17.8434891738382,0.0254505519925132,0.168975069252078,16.8975069252078,8,73.1883556682634,0.648081761006289,4.98614958448753,5.08733203762867,0,402.121536254883,402.036651611328,0.126145054867697
+8451,311674,3795598,311774,3795498,50,84,38.9473684210526,0.0998778059378748,13.1738446416318,0.602254984369764,14.2878318051869,0.0272597103614412,0.184210526315789,18.4210526315789,7,78.0793236134406,0.681091004458432,7.10526315789474,4.52850916726249,0,402.026173909505,402.010192871094,0.0307340969572115
+8452,311674,3795498,311774,3795398,51,84,25.7617728531856,0.0836814049749762,14.3296933355324,0.684989890635052,13.8548672554132,0.0182031817641367,0.0415512465373961,4.15512465373961,3,61.6347950212909,0.573173935890699,2.49307479224377,9.23090279897054,5.19557523727417,402.02633412679,402.010009765625,0.0225268044415319
+8453,311674,3795398,311774,3795298,52,84,2.77008310249307,0.026994001604831,12.9889380519499,0.3,NA,0.0108100635743968,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.869202898550725,4.43213296398892,37.8301730155945,29.3906116485596,402.10981241862,402.066345214844,0.0830768286808583
+8454,311674,3795298,311774,3795198,53,84,30.1939058171745,0.147117308746329,21.2867938503771,0.755353009259259,15.5867255064659,0.0158857983696485,0.0803324099722992,8.03324099722992,5,68.8289008053298,0.699243783645219,5.26315789473684,10.7394819588497,0,402.264165242513,402.189575195312,0.0786762426888312
+8455,311674,3795198,311774,3795098,54,84,0,NA,NA,NA,NA,0.0206809152536918,0.0342105263157895,3.42105263157895,2,67.0201477040538,0.884953072963972,2.89473684210526,59.5133332472581,49.28955078125,402.243372599284,402.016296386719,0.176403913793256
+8456,311674,3795098,311774,3794998,55,84,0,NA,NA,NA,NA,0.0222938615246112,0.0470914127423823,4.70914127423823,2,70.2294374596475,0.832093023255814,3.601108033241,174.375058342429,162.398101806641,401.828603108724,401.502288818359,0.494662122317046
+8457,311674,3794998,311774,3794898,56,84,0,NA,NA,NA,NA,0.0293395395462925,0.0470914127423823,4.70914127423823,4,61.8484003846717,0.706162790697674,3.32409972299169,99.4951427684111,88.9339218139648,401.113464355469,400.974273681641,0.279088762582552
+8458,311674,3794898,311774,3794798,57,84,13.0193905817175,0.0253743615085412,6.61094944778617,0.380994152046784,20.2083569221642,0.0181341136090382,0.03601108033241,3.601108033241,2,64.5560838458797,0.654214559386973,2.21606648199446,7.38519389812763,0,401.24011569553,401.031280517578,0.36032498905856
+8459,311674,3794798,311774,3794698,58,84,2.36842105263158,0.0242946014443479,11.1450751230807,0.314814814814815,NA,0.0283531568739866,0.113157894736842,11.3157894736842,6,74.8410262699946,0.765084075173096,8.1578947368421,54.01860623027,0,402.027526855469,401.61328125,0.449012612857542
+8460,311674,3794698,311774,3794598,59,84,2.21606648199446,0.0215952012838648,10.3911504415599,0.291666666666667,NA,0.0240586642271045,0.0609418282548476,6.09418282548476,4,64.5466105890473,0.624154086413326,3.04709141274238,17.7328186902133,0,402.591217041016,402.463500976562,0.23149565971305
+8461,311674,3794598,311774,3794498,60,84,4.15512465373961,0.0404910024072465,12.5309613437127,0.5,NA,0.0190171264528776,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,19.1582636833191,5.19557523727417,402.725891113281,402.690704345703,0.0614319225162786
+8462,311674,3794498,311774,3794398,61,84,34.9030470914127,0.170062210110435,15.4332305930879,0.538617886178862,25.9778759376342,0.00540158251307549,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,32.1339263916016,27.9790287017822,402.737823486328,402.683441162109,0.0852130941684463
+8463,311674,3794398,311774,3794298,62,84,67.6315789473684,0.693745841244157,32.8427237053737,0.90337224383917,NA,0.00218289199463344,0,0,0,NA,NA,0,NA,NA,402.901359558105,402.734558105469,0.179112174742679
+8464,311674,3794298,311774,3794198,63,84,78.1163434903047,0.761230845256235,34.4277417544501,0.91371158392435,NA,-0.00756516564826718,0,0,0,NA,NA,0,NA,NA,403.060909695095,402.997222900391,0.139146495270401
+8465,311674,3794198,311774,3794098,64,84,44.3213296398892,0.215952012838648,22.7478412854895,0.80241935483871,15.5867255064659,-0.00888496349976283,0,0,0,NA,NA,0,NA,NA,402.73147837321,402.596710205078,0.187479532394139
+8466,311674,3794098,311774,3793998,65,84,5.26315789473684,0.017096201016393,6.52161782473133,0.204273504273504,13.8548671168586,0.00435676587935166,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,27.6370224952698,14.6953058242798,402.555898030599,402.525451660156,0.058854438894271
+8467,311674,3793998,311774,3793898,66,84,23.4210526315789,0.240246614282996,25.8251871915414,0.799625468164794,NA,0.00581338725744564,0.0289473684210526,2.89473684210526,2,60.5719561857418,0.588075880758808,1.57894736842105,19.1411358226429,15.5867252349854,402.610321044922,402.536956787109,0.110204230588251
+8468,311674,3793898,311774,3793798,67,84,3.32409972299169,0.0323928019257972,9.11126263725768,0.5,NA,0.0149579144078348,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,32.8597030639648,32.8597030639648,402.853797064887,402.731384277344,0.217365405646512
+8469,311674,3793798,311774,3793698,68,84,36.2880886426593,0.0884053552558216,11.2039727578194,0.49475351037851,15.5867255064659,0.0162889000374652,0.038781163434903,3.8781163434903,2,72.2708465875433,0.79193083573487,3.601108033241,16.6908573423113,10.3911504745483,403.332209269206,402.951904296875,0.355010054344403
+8470,311674,3793698,311774,3793598,69,84,24.0997229916898,0.0782826046540099,12.4908270042403,0.534722222222222,25.9778759480258,0.0222965871087939,0.119113573407202,11.9113573407202,5,75.8718494404563,0.747728860936408,8.03324099722992,18.1717306957688,0,403.545183817546,403.191040039062,0.42374812632628
+8471,311674,3793598,311774,3793498,70,84,31.0526315789474,0.106176406312335,18.3621502113162,0.615160556976414,12.1230087272512,0.0188978077188183,0.0736842105263158,7.36842105263158,4,74.1317909196491,0.736111111111111,5.78947368421053,8.24076877321516,0,403.726732042101,403.338439941406,0.337557806775177
+8472,311674,3793498,311774,3793398,71,84,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0219385866796094,0.0692520775623269,6.92520775623269,3,70.1356594586321,0.677678571428571,4.15512465373961,23.5169995307922,7.34765291213989,403.96688079834,403.705383300781,0.550132184746083
+8473,311674,3793398,311774,3793298,72,84,18.8365650969529,0.0367118421825702,9.57685920625602,0.477404158544509,16.0773291988888,0.0201525317711571,0.0554016620498615,5.54016620498615,4,67.0110355751799,0.590199602686595,3.601108033241,9.48902604579926,0,405.198845757378,404.814483642578,0.67540100382501
+8474,311674,3793298,311774,3793198,73,84,22.9916897506925,0.0746834044400325,11.7325895299867,0.581481481481481,15.5867255757432,0.0189406321530096,0.03601108033241,3.601108033241,2,68.4014764340965,0.769476372924649,3.04709141274238,15.3462686538696,5.19557523727417,405.839932759603,405.385284423828,0.387243313532491
+8475,311674,3793198,311774,3793098,74,84,0,NA,NA,NA,NA,0.025230374319845,0.0947368421052632,9.47368421052632,2,80.47521303084,0.815891472868217,5.52631578947368,52.1509881019592,30.2951488494873,406.281622992622,406.141967773438,0.263217696574896
+8476,311674,3793098,311774,3792998,75,84,22.4376731301939,0.218651412999131,20.0510747723935,0.839506172839506,NA,0.000758824224163452,0,0,0,NA,NA,0,NA,NA,406.739351908366,406.558258056641,0.26470510323759
+8477,311674,3792998,311774,3792898,76,84,6.37119113573407,0.0206954012303704,8.43286533571725,0.361111111111111,14.0680687008702,0.0140169059244288,0.0332409972299169,3.32409972299169,2,67.8816212455305,0.878307770099444,3.04709141274238,55.9691950480143,46.4706382751465,407.418063693576,406.979736328125,0.691279288189328
+8478,311674,3792898,311774,3792798,77,84,0,NA,NA,NA,NA,0.0165110848173454,0.0304709141274238,3.04709141274238,2,66.19517193391,0.862476190476191,2.77008310249307,66.8743050315163,36.369026184082,408.563667297363,407.955474853516,0.900294638260706
+8479,311674,3792798,311774,3792698,78,84,2.36842105263158,0.0242946014443479,10.377740048673,0.333333333333333,NA,0.0213967929173793,0.0473684210526316,4.73684210526316,6,53.2857443866839,0.533456108041743,2.63157894736842,25.0436009830899,14.6953058242798,409.723283555773,408.840484619141,0.954288098308912
+8480,311674,3792698,311774,3792598,79,84,31.8559556786704,0.0443472883507938,9.56282685111319,0.449517891952103,13.1913420157383,0.0149010806508411,0.0166204986149584,1.66204986149584,2,46.2656764527189,0.564185110663984,1.10803324099723,7.49053144454956,5.19557523727417,410.454788208008,409.768280029297,0.591554383633795
+8481,311674,3792598,311774,3792498,80,84,10.5263157894737,0.0512886030491789,8.69636809098915,0.509803921568627,51.9557522077996,0.0176319363381078,0.10803324099723,10.803324099723,5,74.5675053340725,0.655040611562351,5.81717451523546,38.105225000626,15.5867252349854,410.914649115668,410.4375,0.777227987993903
+8482,311674,3792498,311774,3792398,81,84,0,NA,NA,NA,NA,0.0194623971831705,0.0664819944598338,6.64819944598338,6,57.1499934674103,0.577151335311573,2.77008310249307,124.041208585103,83.2914047241211,412.387385050456,411.104309082031,1.16322805797158
+8483,311674,3792398,311774,3792298,82,84,0,NA,NA,NA,NA,0.0201673750947616,0.0236842105263158,2.36842105263158,4,37.2301851041841,0.40251572327044,0.789473684210526,138.288359747993,98.8525619506836,413.428734673394,413.204711914062,0.338801006221643
+8484,311674,3792298,311774,3792198,83,84,0,NA,NA,NA,NA,0.0183329381037554,0.0221606648199446,2.21606648199446,3,41.4023931466401,0.488668555240793,0.831024930747922,44.9273107051849,15.5867252349854,413.159372965495,412.7890625,0.465303633651955
+8485,311674,3792198,311774,3792098,84,84,61.7728531855956,0.300983117893866,28.1990101722758,0.793617927743695,20.7823006752878,0.032451668795175,0.171745152354571,17.1745152354571,3,88.1095784447055,0.765235971757711,14.9584487534626,1.79450254286489,0,410.171923319499,408.977355957031,1.84397669113427
+8486,311674,3792098,311774,3791998,85,84,24.6537396121884,0.0800822047609987,9.1649164201421,0.329457364341085,17.3185838960732,0.0357138397872843,0.246537396121884,24.6537396121884,7,78.3550759787773,0.599334073251942,6.64819944598338,13.4593954622076,0,409.328121609158,409.234710693359,0.453878797209896
+8487,311674,3791998,311774,3791898,86,84,10.2631578947368,0.0350922020862803,5.33448715076452,0.232732732732733,24.3893506780013,0.0265971231025392,0.207894736842105,20.7894736842105,5,88.7851443715564,0.765543426672995,18.4210526315789,17.4915032205702,0,411.130091349284,409.927764892578,1.28187426009827
+8488,311674,3791898,311774,3791798,87,84,22.7146814404432,0.0553377032899036,9.16935855151586,0.511858974358974,12.2074529005046,0.03695131302654,0.227146814404432,22.7146814404432,5,84.4870463340571,0.776912618959338,16.0664819944598,15.2469143227833,0,412.464735243056,412.213897705078,0.439948919222184
+8489,311674,3791798,311774,3791698,88,84,31.8559556786704,0.103477006151852,12.7190147764412,0.559027777777778,16.5758860433962,0.0256595550415927,0.177285318559557,17.7285318559557,5,81.1821165359748,0.750390812890813,7.20221606648199,8.14881477504969,0,413.027244567871,412.823577880859,0.227206424672135
+8490,311674,3791698,311774,3791598,89,84,22.7146814404432,0.0737836043865381,11.2115663619738,0.377200577200577,14.6725398628007,0.0319857444230877,0.260387811634349,26.0387811634349,6,85.7404829199219,0.694176921705012,16.8975069252078,8.52041979546243,0,412.881435818142,412.611389160156,0.403338942352411
+8491,311674,3791598,311774,3791498,90,84,49.2105263157895,0.25239391500517,18.4188005527612,0.777012813157391,15.5867255064659,0.0422458219936265,0.331578947368421,33.1578947368421,6,86.3553223925689,0.758278031839906,18.6842105263158,9.80929627872649,0,411.949391682943,411.474365234375,0.563337882153765
+8492,311674,3791498,311774,3791398,91,84,12.1883656509695,0.0395912023537522,7.5151019333391,0.346846846846847,27.8530673186613,0.0238980800296654,0.238227146814404,23.8227146814404,3,89.0531277427289,0.768342245989305,18.5595567867036,17.2604466704435,0,411.253689236111,411.146453857422,0.217336433382803
+8493,311674,3791398,311774,3791298,92,84,11.3573407202216,0.0553377032899036,7.29204691580571,0.3875,46.7601765193976,0.025174725269255,0.207756232686981,20.7756232686981,5,83.2911484131569,0.722690188599279,11.3573407202216,27.8211657778422,0,411.062357584635,410.923645019531,0.170146864428596
+8494,311674,3791298,311774,3791198,93,84,6.64819944598338,0.0215952012838648,7.08297946834661,0.265795206971678,24.2460175584185,0.0280903741315639,0.191135734072022,19.1135734072022,4,85.9450272312458,0.7036963659006,12.1883656509695,12.9141565474911,0,411.07322523329,410.96826171875,0.26849583731751
+8495,311674,3791198,311774,3791098,94,84,15,0.0512886030491789,11.604686161262,0.621480171015775,10.3911504415599,0.0430840396812528,0.307894736842105,30.7894736842105,4,89.0428174182801,0.768276059975608,15.2631578947368,9.59584701163137,0,411.000058492025,410.904266357422,0.202679921329879
+8496,311674,3791098,311774,3790998,95,84,13.2963988919668,0.0647856038515944,14.7953137979802,0.578703703703704,10.3911504415599,0.0413009157184856,0.293628808864266,29.3628808864266,4,87.1771982730003,0.747993019197208,18.5595567867036,20.8836827772968,0,411.146867540148,410.94091796875,0.394544133725746
+8497,311674,3790998,311774,3790898,96,84,38.781163434903,0.0755832044935268,10.8105496863972,0.61996336996337,15.5867255999903,0.0416440522768776,0.404432132963989,40.4432132963989,2,93.5465789633228,0.849072380454664,26.3157894736842,6.47635308030533,0,412.18999226888,411.101257324219,1.19795331302744
+8498,311674,3790898,311774,3790798,97,84,19.9445983379501,0.0388713623109567,10.7807962979671,0.486001393242773,18.8726958401114,0.028077884299519,0.127423822714681,12.7423822714681,7,72.8136642652117,0.647374847374847,7.4792243767313,9.2266424946163,0,414.720994737413,413.991302490234,1.39684342157964
+8499,311674,3790798,311774,3790698,98,84,21.0526315789474,0.0719840042795494,10.3347807785477,0.690830346475508,31.5311762308462,0.0320731148665226,0.136842105263158,13.6842105263158,5,74.6970247077467,0.739654699917786,4.47368421052632,11.8732222868846,0,416.150840759277,415.238311767578,0.865011935376554
+8500,311674,3790698,311774,3790598,99,84,13.8504155124654,0.0674850040120775,10.0384024097401,0.717320261437909,54.2433977502533,0.0321424897917458,0.213450292397661,21.3450292397661,2,90.9653546636402,0.761617100371747,18.7134502923977,14.1266368709198,0,416.346173604329,414.486022949219,1.38585508072981
+8501,311774,3800598,311874,3800498,0,85,42.6592797783933,0.103926906178599,13.53667037329,0.264705882352941,12.9889379480339,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.755962371826,387.489044189453,0.279433988938765
+8502,311774,3800498,311874,3800398,1,85,25.2631578947368,0.0647856038515944,17.2323468387842,0.530764411027569,22.6944489749919,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.371246337891,387.262084960938,0.203834260078459
+8503,311774,3800398,311874,3800298,2,85,4.70914127423823,0.0229449013641064,7.76503178881274,0.427083333333333,36.3690261817537,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.156545639038,387.112518310547,0.0763127918993828
+8504,311774,3800298,311874,3800198,3,85,32.9639889196676,0.10707620636583,15.4971392054098,0.652094214029698,12.1230087272512,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.138565063477,387.110687255859,0.0724126822905306
+8505,311774,3800198,311874,3800098,4,85,23.5457063711911,0.114724506820532,17.8287716245321,0.707254129129129,36.7382645240838,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.316349029541,387.125671386719,0.309651162126706
+8506,311774,3800098,311874,3799998,5,85,26.5789473684211,0.0908798054029311,11.1135665015362,0.478375149342891,24.2460174545025,0.0106090777710625,0.0394736842105263,3.94736842105263,1,64.398586025552,0.851272015655577,3.94736842105263,13.1177492936452,7.34765291213989,387.614776611328,387.276977539062,0.614438545539426
+8507,311774,3799998,311874,3799898,6,85,0,NA,NA,NA,NA,0.00741090134142421,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,19.0685736338298,16.4298515319824,388.520292282104,387.604675292969,0.792375353117243
+8508,311774,3799898,311874,3799798,7,85,4.70914127423823,0.0458898027282127,8.43600880745554,0.676470588235294,NA,0.0127946485955058,0,0,0,NA,NA,0,NA,NA,388.991945902507,388.784271240234,0.248350958878618
+8509,311774,3799798,311874,3799698,8,85,22.7146814404432,0.0442701626319229,9.68254377864604,0.492126984126984,13.5084955428531,0.00558929903269229,0,0,0,NA,NA,0,NA,NA,389.195350646973,389.018096923828,0.211937404414846
+8510,311774,3799698,311874,3799598,9,85,28.6842105263158,0.049039102915443,8.40185697311932,0.452190083224566,12.5318451175416,0.00164123629569267,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,9.22238985697428,5.19557523727417,389.633850097656,389.449127197266,0.341762530924796
+8511,311774,3799598,311874,3799498,10,85,24.6537396121884,0.120123307141498,14.4615844125455,0.7371067303863,20.7823006752878,0.0105292794257922,0.03601108033241,3.601108033241,1,76.2797118658907,1,3.601108033241,2.16384260471051,0,390.365516662598,389.956024169922,0.418750715583005
+8512,311774,3799498,311874,3799398,11,85,5.26315789473684,0.0256443015245895,8.12997839935734,0.414285714285714,20.7823006752878,0.024002946482812,0.127423822714681,12.7423822714681,3,80.2402844203861,0.764916564916565,7.4792243767313,31.1799577630084,15.5867252349854,391.038175582886,390.733978271484,0.265859202894491
+8513,311774,3799398,311874,3799298,12,85,16.8975069252078,0.0823317048947346,15.6695148730939,0.392655367231638,18.7329127343573,0.0236755793607158,0.141274238227147,14.1274238227147,4,85.3772318027947,0.718909899888765,12.1883656509695,26.7976068982891,0,391.261439005534,391.200714111328,0.0619697394243344
+8514,311774,3799298,311874,3799198,13,85,20.5263157894737,0.0421106425035364,7.15261499699433,0.35255991285403,32.4187367693866,0.0176850863382532,0.0789473684210526,7.89473684210526,5,74.1632796115906,0.62332361516035,5.78947368421053,17.4751693725586,5.19557523727417,391.388235092163,391.295013427734,0.151599935730794
+8515,311774,3799198,311874,3799098,14,85,56.786703601108,0.553377032899036,40.0633100888861,0.75609756097561,NA,0.0129600915856688,0.0637119113573407,6.37119113573407,5,59.8748586405394,0.643984220907298,3.32409972299169,4.79859729435133,0,391.748687744141,391.498016357422,0.333802829577712
+8516,311774,3799098,311874,3798998,15,85,24.9307479224377,0.0809820048144931,12.3248811681028,0.46011396011396,39.8327431688004,0.019445067815982,0.0637119113573407,6.37119113573407,4,65.9640525013089,0.703320184089415,3.8781163434903,12.0653274162956,0,392.402433395386,391.824096679688,0.599452735276924
+8517,311774,3798998,311874,3798898,16,85,0,NA,NA,NA,NA,0.0288989158151584,0.130193905817175,13.0193905817175,7,69.4484786884708,0.655095541401274,5.81717451523546,35.701895429733,10.3911504745483,393.011199951172,392.550720214844,0.512659282549928
+8518,311774,3798898,311874,3798798,17,85,1.84210526315789,0.00944790056169086,2.47309221682506,0.222222222222222,26.4923391803511,0.0190796246640514,0.0710526315789474,7.10526315789474,3,72.2449125318614,0.62448119111931,3.68421052631579,35.5872738273055,0,393.24333190918,392.748718261719,0.4692248125282
+8519,311774,3798798,311874,3798698,18,85,17.7285318559557,0.172761610270919,18.0201578630724,0.802083333333333,NA,0.0138870713813061,0.0526315789473684,5.26315789473684,4,61.097800939282,0.636015325670498,3.04709141274238,15.7725574091861,0,393.129979451497,392.823791503906,0.361945944413339
+8520,311774,3798698,311874,3798598,19,85,39.612188365651,0.128671407649695,15.0540586891701,0.554298642533937,14.6725397935234,0.0200183725254725,0.0526315789473684,5.26315789473684,6,48.4381183541947,0.454022988505747,1.66204986149584,4.9397601579365,0,392.910108566284,392.789001464844,0.179230174853783
+8521,311774,3798598,311874,3798498,20,85,33.5180055401662,0.326627419418455,28.2361988784882,0.783746556473829,NA,0.015482474949845,0.0332409972299169,3.32409972299169,3,54.8177343878874,0.634923310298331,1.93905817174515,2.01340730985006,0,393.335670471191,392.904235839844,1.41316437862073
+8522,311774,3798498,311874,3798398,21,85,0,NA,NA,NA,NA,0.0258544065169285,0.0894736842105263,8.94736842105263,6,64.1838676953285,0.607762180016515,3.15789473684211,57.5252798865823,20.7823009490967,396.776338577271,394.216949462891,2.25799195060642
+8523,311774,3798398,311874,3798298,22,85,5.81717451523546,0.0566874033701451,17.20103240949,0.515873015873016,NA,0.028584323460944,0.163434903047091,16.3434903047091,2,90.3768693834986,0.953122971042722,16.0664819944598,37.093405028521,0,397.372894287109,396.685546875,0.431221439290304
+8524,311774,3798298,311874,3798198,23,85,33.5180055401662,0.0466610599169222,8.50546651721716,0.361067890918637,16.2875877808332,0.0212881259254255,0.0969529085872576,9.69529085872576,6,68.9099868527728,0.675428390099429,4.98614958448753,7.80601895196097,0,397.57368850708,397.383972167969,0.264144686480127
+8525,311774,3798198,311874,3798098,24,85,23.5457063711911,0.0382415022735106,7.01552450255537,0.27406103286385,16.5141944475573,0.0228248833823537,0.0581717451523546,5.81717451523546,7,48.3481119204063,0.469117647058824,1.93905817174515,7.6249103092012,0,397.618387858073,397.507507324219,0.141907762378655
+8526,311774,3798098,311874,3797998,25,85,20,0.0293077731709594,6.41856716749671,0.315376984126984,19.3592791514097,0.0171194428071,0.0815789473684211,8.1578947368421,3,77.3876308868421,0.69512893982808,5.78947368421053,15.2703561782837,0,397.636409759521,397.48681640625,0.106108652689891
+8527,311774,3797998,311874,3797898,26,85,43.4903047091413,0.105951456298962,10.2496453890645,0.489583333333333,18.1845131428349,0.013124118316109,0.0304709141274238,3.04709141274238,3,51.4667845845621,0.656190476190476,1.66204986149584,5.195575280623,0,397.761325836182,397.673980712891,0.093725870785754
+8528,311774,3797898,311874,3797798,27,85,24.0997229916898,0.046969562792406,10.9262330253033,0.452813852813853,10.6364521822098,0.0554414163399135,0.476454293628809,47.6454293628809,4,93.6219801726974,0.722831438919767,40.1662049861496,20.9524985052818,0,398.005655924479,397.875030517578,0.302361519832211
+8529,311774,3797798,311874,3797698,28,85,30.7479224376731,0.0749083544534061,14.6273238379991,0.607757339279078,11.6900441688179,0.0668410757079932,0.556786703601108,55.6786703601108,2,95.1834881093076,0.836678954423592,39.3351800554017,9.41724158756769,0,399.001571655273,398.249786376953,0.717022537645767
+8530,311774,3797698,311874,3797598,29,85,59.4736842105263,0.610064436269181,31.6764529566124,0.876843657817109,NA,0.0606688783570701,0.628947368421053,62.8947368421053,2,98.3548988225443,0.825154298951243,62.6315789473684,2.38204266336672,0,399.931884765625,399.619659423828,0.324137504997711
+8531,311774,3797598,311874,3797498,30,85,58.7257617728532,0.286136417011209,24.8042762653775,0.770315674324113,15.5867255064659,0.0633275568086201,0.614958448753463,61.4958448753463,2,98.0129369233803,0.780436520348938,60.6648199445983,1.33300246419133,0,400.277507781982,400.052612304688,0.695771005730676
+8532,311774,3797498,311874,3797398,31,85,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0899618945479228,0.930747922437673,93.0747922437673,1,99.7970278965502,0.522456692913386,93.0747922437673,0,0,402.698773701986,400.485290527344,1.84946695209166
+8533,311774,3797398,311874,3797298,32,85,98.6149584487535,0.960986457131984,37.7019678922211,0.926029962546817,NA,0.0844230193056558,0.869806094182826,86.9806094182826,1,99.5987109379562,0.909179125934445,86.9806094182826,0.0330928359062049,0,401.822927474976,399.639770507812,2.67942234528495
+8534,311774,3797298,311874,3797198,33,85,86.8421052631579,0.890802052959424,37.2949607900174,0.904040404040404,NA,0.036266361357105,0.213157894736842,21.3157894736842,8,75.7090650447493,0.620494240059457,5.78947368421053,0.769714849966544,0,399.85506439209,399.65380859375,0.276498868342152
+8535,311774,3797198,311874,3797098,34,85,86.4265927977839,0.140368808345121,8.52158506852436,0.309308807134894,11.8258688629458,0.0506636028064382,0.39612188365651,39.612188365651,5,92.5518533062529,0.759822116394705,32.9639889196676,0.699136974094631,0,400.204349517822,399.778778076172,0.562397940085335
+8536,311774,3797098,311874,3796998,35,85,62.0498614958449,0.302332817974107,26.8993537879286,0.625068418171866,10.3911504415599,0.0561129292230934,0.46814404432133,46.814404432133,1,97.4358974358974,0.867421207264957,46.814404432133,2.0027876351712,0,401.83482615153,400.470855712891,2.40097251676558
+8537,311774,3796998,311874,3796898,36,85,34.9030470914127,0.0850311050552177,10.962507081328,0.288939857288481,12.9889380519499,0.056624248850874,0.662049861495845,66.2049861495845,2,98.3483536462569,0.834506913118422,65.6509695290859,11.6888018532278,0,404.03558921814,401.405181884766,2.61123666237595
+8538,311774,3796898,311874,3796798,37,85,57.8947368421053,0.296934017653141,28.924058515043,0.728252923976608,18.73291280641,0.0347659050825888,0.181578947368421,18.1578947368421,8,75.6268273430085,0.626371874252611,8.1578947368421,1.43066564504651,0,405.6681543986,404.100372314453,1.86649685805374
+8539,311774,3796798,311874,3796698,38,85,57.617728531856,0.187158411126828,23.7230919570031,0.576312960275224,12.1230087792092,0.0291305993600671,0.157894736842105,15.7894736842105,6,81.0187458429313,0.75765306122449,12.4653739612188,1.13156106179221,0,407.761636734009,406.737670898438,1.03000025829211
+8540,311774,3796698,311874,3796598,39,85,79.5013850415512,0.258242615352883,17.9077172627509,0.74492242175169,13.8548672554132,0.0901985524352537,0.670360110803324,67.0360110803324,2,98.1564158401669,0.906038521603331,66.2049861495845,0.668318226317729,0,409.240489959717,408.413055419922,0.860674666975371
+8541,311774,3796598,311874,3796498,40,85,90.3047091412742,0.440002226158746,29.2061112111478,0.832447444509663,10.3911504415599,0.123967567666587,0.759002770083102,75.9002770083103,4,97.1546290622289,0.895053446039626,73.4072022160665,0.0758478136828346,0,410.594207763672,410.161804199219,0.516880917735887
+8542,311774,3796498,311874,3796398,41,85,61.7728531855956,0.150491558946933,13.0257502006185,0.559179178664473,18.1845131298454,0.0686019127783778,0.626038781163435,62.6038781163435,1,98.5341044447128,0.904724201636316,62.6038781163435,2.02647560254662,0,411.262418746948,410.887359619141,0.541963448755347
+8543,311774,3796398,311874,3796298,42,85,66.8421052631579,0.342823820381354,29.5208076639967,0.794111502807155,10.3911504415599,0.0502210720303705,0.455263157894737,45.5263157894737,7,90.0572622475761,0.741038571623279,31.0526315789474,1.75966382164487,0,412.051689147949,411.623748779297,0.535684433113082
+8544,311774,3796298,311874,3796198,43,85,86.9806094182826,0.423805825195847,28.7450886586746,0.85015160648072,10.3911504415599,0.0289795585839711,0.141274238227147,14.1274238227147,7,76.4642660366605,0.651983685576567,7.20221606648199,0.305622072780834,0,412.755172729492,412.310211181641,0.345954038718314
+8545,311774,3796198,311874,3796098,44,85,77.5623268698061,0.251944014978423,18.017138514683,0.709746720940751,12.1230087965286,0.0269667803386205,0.160664819944598,16.0664819944598,5,82.8193936898391,0.833201320132013,13.0193905817175,1.20163027171431,0,412.720489501953,412.085906982422,0.786163947579987
+8546,311774,3796098,311874,3795998,45,85,77.0083102493075,0.375216622307151,17.1959121368563,0.435619735258724,10.3911503376439,0.108725837318658,0.750692520775623,75.0692520775623,3,97.0416884216508,0.866033617114167,70.9141274238227,1.2712314120078,0,410.079456329346,407.042938232422,2.55119834979886
+8547,311774,3795998,311874,3795898,46,85,79.4736842105263,0.271739616155299,20.2718497370241,0.798389939411097,10.3911503722826,0.0629112498160746,0.557894736842105,55.7894736842105,3,96.9193484316498,0.873700749335267,54.2105263157895,0.545109967015824,0,405.112060546875,402.914764404297,3.37108401230432
+8548,311774,3795898,311874,3795798,47,85,54.016620498615,0.263191515647102,22.8399567430017,0.656028368794326,15.5867255064659,-0.0156403256684077,0,0,0,NA,NA,0,NA,NA,402.424179077148,402.151397705078,0.490404549820978
+8549,311774,3795798,311874,3795698,48,85,44.0443213296399,0.214602312758407,31.2182447715342,0.760858022724859,31.1734513246797,-0.0145188084138599,0.03601108033241,3.601108033241,2,63.9994282705831,0.711845466155811,1.93905817174515,1.5986385345459,0,402.114280700684,402.033874511719,0.123949605961755
+8550,311774,3795698,311874,3795598,49,85,93.3518005540166,0.454848927041403,20.4021105964581,0.621621621621622,10.3911503376439,0.0553599677469138,0.45983379501385,45.983379501385,6,91.0111572625446,0.745902463549522,35.4570637119114,0.232054845396295,0,402.026784896851,402.003234863281,0.0386184201170976
+8551,311774,3795598,311874,3795498,50,85,39.4736842105263,0.202455012036233,14.3615446270635,0.435123042505593,41.5646013505757,0.0390966341261351,0.386842105263158,38.6842105263158,1,96.7134334661834,0.933308869282193,38.6842105263158,1.15697124053021,0,402.010393778483,402.010009765625,0.00586446274788337
+8552,311774,3795498,311874,3795398,51,85,39.8891966759003,0.388713623109567,27.8195312518069,0.873842592592593,NA,0.0201753235510031,0.0193905817174515,1.93905817174515,2,48.9885038200963,0.745056497175141,1.10803324099723,0,0,402.024829864502,402.010009765625,0.0224183992569015
+8553,311774,3795398,311874,3795298,52,85,0,NA,NA,NA,NA,0.0240221987593923,0.121883656509695,12.1883656509695,5,77.3242725664061,0.692215875181175,7.75623268698061,48.5334937355735,20.7823009490967,402.100359598796,402.064697265625,0.0742273654216272
+8554,311774,3795298,311874,3795198,53,85,22.4376731301939,0.109325706499566,18.3241000412942,0.713624338624339,15.5867255064659,0.0255509907173319,0.132963988919668,13.2963988919668,3,82.9456745646777,0.746824592846567,9.97229916897507,5.02458214759827,0,402.275373458862,402.183532714844,0.117954395349449
+8555,311774,3795198,311874,3795098,54,85,0,NA,NA,NA,NA,-0.00597233214135294,0,0,0,NA,NA,0,NA,NA,402.401767730713,402.34326171875,0.0780130828516255
+8556,311774,3795098,311874,3794998,55,85,0,NA,NA,NA,NA,-0.0064457607212845,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,174.051765441895,171.453979492188,402.182009379069,401.915130615234,0.348197422279647
+8557,311774,3794998,311874,3794898,56,85,0,NA,NA,NA,NA,0.018697800705736,0,0,0,NA,NA,0,NA,NA,401.374141693115,401.091033935547,0.397226352946291
+8558,311774,3794898,311874,3794798,57,85,0,NA,NA,NA,NA,0.0182300686571083,0,0,0,NA,NA,0,NA,NA,401.27251180013,401.114654541016,0.220677394872865
+8559,311774,3794798,311874,3794698,58,85,1.57894736842105,0.0161964009628986,7.17094961417839,0.305555555555556,NA,0.0251483457436782,0.0894736842105263,8.94736842105263,1,87.3300800675053,0.980388109000826,8.94736842105263,64.3005458607393,46.4706382751465,401.824968338013,401.467437744141,0.379750168400285
+8560,311774,3794698,311874,3794598,59,85,3.601108033241,0.0350922020862803,8.8499782513075,0.576923076923077,NA,0.0173474258168083,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,39.5683212280273,39.5683212280273,402.373685201009,402.178741455078,0.304809160636129
+8561,311774,3794598,311874,3794498,60,85,0.554016620498615,0.0053988003209662,2.59778761038998,0.166666666666667,NA,0.0166257073400519,0.0249307479224377,2.49307479224377,3,44.989045488799,0.572679924242424,1.10803324099723,36.455150604248,22.0429573059082,402.723920822144,402.491424560547,0.160121570473675
+8562,311774,3794498,311874,3794398,61,85,9.69529085872576,0.0314930018723029,7.44677357605554,0.464494569757728,13.8548671861359,0.0148598379430918,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,16.4298515319824,16.4298515319824,402.899589538574,402.766937255859,0.165984243004909
+8563,311774,3794398,311874,3794298,62,85,15.2631578947368,0.07828260465401,19.8747390337154,0.603349673202614,20.7823008831198,0.0119107529217481,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,9.37665128707886,7.34765291213989,403.058069229126,402.903472900391,0.165410430709701
+8564,311774,3794298,311874,3794198,63,85,7.20221606648199,0.0140368808345121,4.09676507826018,0.238383838383838,18.1555592206945,0.00654442061740586,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,10.3911504745483,10.3911504745483,403.079864501953,402.870971679688,0.239303708230834
+8565,311774,3794198,311874,3794098,64,85,16.0664819944598,0.039141302327005,9.03980690732519,0.496200510855683,18.395294573252,0.00948847330062392,0.074792243767313,7.4792243767313,4,72.6698163926436,0.773778025344659,5.26315789473684,22.5138886769613,10.3911504745483,402.778093338013,402.526641845703,0.290996211376464
+8566,311774,3794098,311874,3793998,65,85,0.277008310249307,0.0026994001604831,0,0,NA,0.00706321607966481,0,0,0,NA,NA,0,NA,NA,402.554611206055,402.416015625,0.162307601398589
+8567,311774,3793998,311874,3793898,66,85,0,NA,NA,NA,NA,0.0090224296219946,0,0,0,NA,NA,0,NA,NA,402.560085296631,402.282257080078,0.209008460239173
+8568,311774,3793898,311874,3793798,67,85,16.3434903047091,0.0530882031561677,12.312320097393,0.430141843971631,12.1230087792092,0.0269055079546198,0.171745152354571,17.1745152354571,5,81.642679617752,0.742877492877493,8.03324099722992,24.6266034956901,10.3911504745483,402.665316263835,402.326538085938,0.346626300278162
+8569,311774,3793798,311874,3793698,68,85,21.606648199446,0.0421106425035364,9.35223562925426,0.454974747474747,16.6996882959245,0.0308856936166411,0.260387811634349,26.0387811634349,6,79.4840869956108,0.686128945960407,8.86426592797784,20.6438455328028,0,402.915597915649,402.391632080078,0.342622587879834
+8570,311774,3793698,311874,3793598,69,85,27.7008310249307,0.134970008024155,20.8520867638845,0.722749886928991,11.6176593526411,0.021412095430875,0.199445983379501,19.9445983379501,5,85.7654895029233,0.763943001934447,16.3434903047091,12.8174418608348,0,403.059324264526,402.83203125,0.234623783031705
+8571,311774,3793598,311874,3793498,70,85,21.0526315789474,0.0359920021397747,8.21843662391558,0.389674707602339,13.8548671688166,0.020325002578274,0.0894736842105263,8.94736842105263,6,75.8050289039627,0.666597853014038,7.10526315789474,11.1978279422311,0,403.285074869792,403.167877197266,0.227667404691996
+8572,311774,3793498,311874,3793398,71,85,15.2354570637119,0.0494890029421902,10.4487116625107,0.458024691358025,15.5867255584239,0.0252686417726909,0.0803324099722992,8.03324099722992,2,78.4634207674723,0.722378877210971,5.81717451523546,19.8157102815036,7.34765291213989,403.73063659668,403.278594970703,0.491993370070723
+8573,311774,3793398,311874,3793298,72,85,7.75623268698061,0.0251944014978423,9.03419380982255,0.387566137566138,17.8806678307211,0.0263761128527899,0.119113573407202,11.9113573407202,4,75.6536072879999,0.747728860936408,5.26315789473684,31.4760557662609,10.3911504745483,404.362233479818,403.729553222656,0.71005614779521
+8574,311774,3793298,311874,3793198,73,85,31.5789473684211,0.0769329045737684,12.7706987942404,0.642501017501018,10.3911504415599,0.00835994759871738,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,20.5410484313965,16.4298515319824,405.399765014648,404.811767578125,0.69891916878631
+8575,311774,3793198,311874,3793098,74,85,10,0.0512886030491789,11.9586743782628,0.546474358974359,20.7823006752878,0.00380514038831614,0,0,0,NA,NA,0,NA,NA,406.27512105306,406.126373291016,0.243972505512302
+8576,311774,3793098,311874,3792998,75,85,33.2409972299169,0.161964009628986,19.7303580251078,0.723727422003284,10.3911504415599,0.0263152486943423,0.163434903047091,16.3434903047091,3,85.941419144007,0.835930398649526,11.9113573407202,7.06454862174341,0,406.599466323853,406.424621582031,0.187613425608401
+8577,311774,3792998,311874,3792898,76,85,0,NA,NA,NA,NA,0.0182041279313377,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,43.9292793273926,33.2679138183594,406.911674499512,406.666137695312,0.35372611577127
+8578,311774,3792898,311874,3792798,77,85,13.8504155124654,0.0449900026747184,8.61297850695729,0.62630579297246,15.7582134360087,0.0224973254004613,0.0554016620498615,5.54016620498615,5,56.1187027768203,0.590199602686595,2.21606648199446,7.63526027202606,0,407.239246368408,406.783935546875,0.676783321677231
+8579,311774,3792798,311874,3792698,78,85,15,0.0769329045737684,16.5437833313794,0.57843137254902,57.1513274285795,0.0178675548600854,0.0578947368421053,5.78947368421053,3,70.6669397504177,0.687808084127506,3.42105263157895,7.7260037985715,0,408.148801167806,407.523620605469,0.92131938678992
+8580,311774,3792698,311874,3792598,79,85,22.7146814404432,0.0737836043865381,12.8214798795548,0.479264475743349,22.6372385123385,0.0222775010621273,0.0941828254847645,9.41828254847645,4,75.8116494306739,0.645150720838794,6.37119113573407,10.9325103619519,0,409.354124069214,408.415588378906,0.959228865959432
+8581,311774,3792598,311874,3792498,80,85,9.97229916897507,0.0485892028886958,8.87554684967007,0.494791666666667,74.9316512256402,0.0127731995728677,0.0498614958448753,4.98614958448754,1,80.6758725138067,0.766115970197603,4.98614958448754,2.30914454989963,0,410.310376485189,410.048614501953,0.403528562161377
+8582,311774,3792498,311874,3792398,81,85,0,NA,NA,NA,NA,0.0141455302004687,0.03601108033241,3.601108033241,5,49.3372725466979,0.538952745849298,2.21606648199446,62.4915070166955,49.28955078125,411.289960861206,410.598602294922,0.898445687651706
+8583,311774,3792398,311874,3792298,82,85,4.47368421052632,0.0229449013641064,6.37285179144694,0.255208333333333,15.5867255064659,0.0202459226428657,0.0552631578947368,5.52631578947368,4,62.1408783318226,0.603064066852368,2.10526315789474,38.6019290515355,7.34765291213989,412.594202677409,411.63134765625,0.92819418526232
+8584,311774,3792298,311874,3792198,83,85,7.4792243767313,0.0364419021665219,9.83979482535102,0.531723484848485,30.2951489556501,0.0239549235274078,0.105263157894737,10.5263157894737,5,70.3593106068852,0.662931839402428,4.43213296398892,13.9418157652805,5.19557523727417,412.474786758423,411.48828125,0.892720368972897
+8585,311774,3792198,311874,3792098,84,85,55.4016620498615,0.26994001604831,27.7389100509757,0.77215457466599,20.7823006752878,0.0494251165245892,0.45983379501385,45.983379501385,3,93.6766931561985,0.854801407742584,40.9972299168975,1.90049601750201,0,410.056699752808,408.492065429688,1.4958814511705
+8586,311774,3792098,311874,3791998,85,85,42.1052631578947,0.136769608131144,20.0563703324254,0.679393939393939,19.0504422856805,0.0366014309667329,0.260387811634349,26.0387811634349,4,84.8674726298001,0.734416800428036,9.97229916897507,6.68913244186564,0,409.254295349121,409.023529052734,0.489313401195751
+8587,311774,3791998,311874,3791898,86,85,1.57894736842105,0.0161964009628986,7.79336283116994,0.277777777777778,NA,0.0263836179018701,0.126315789473684,12.6315789473684,6,69.7701578156551,0.609168380840435,3.42105263157895,45.5508175492287,0,410.806440353394,409.962768554688,1.05112043332443
+8588,311774,3791898,311874,3791798,87,85,4.15512465373961,0.0202455012036233,5.86344541525187,0.5,30.2951490982217,0.02090093144522,0.185595567867036,18.5595567867036,2,91.46725302759,0.811093668236525,18.005540166205,14.8977832936529,0,412.052991231283,411.526458740234,0.75093937954303
+8589,311774,3791798,311874,3791698,88,85,30.7479224376731,0.149816708906812,23.0115516836008,0.72945094217024,16.4298513045218,0.0180480458247708,0.0415512465373961,4.15512465373961,4,53.364582483068,0.620599054125066,1.93905817174515,13.3055956840515,0,412.819797515869,412.563598632812,0.33689856637479
+8590,311774,3791698,311874,3791598,89,85,0.554016620498615,0.0026994001604831,0,0,78.6233191098352,0.0202344928414647,0.0498614958448753,4.98614958448753,4,57.9951983665689,0.571212612028939,1.93905817174515,35.0312301317851,14.6953058242798,412.676122029622,412.162139892578,0.547620045612215
+8591,311774,3791598,311874,3791498,90,85,1.31578947368421,0.00674850040120775,1.83691322620419,0.208333333333333,11.6176593526411,0.0339209936464038,0.231578947368421,23.1578947368421,4,85.4377054163514,0.709885699328156,10.2631578947368,38.9210521416231,0,411.530836105347,411.066040039062,0.627038498568868
+8592,311774,3791498,311874,3791398,91,85,0,NA,NA,NA,NA,0.0422549818912837,0.368421052631579,36.8421052631579,3,90.1310827762308,0.810261707988981,21.0526315789474,48.2402818579423,5.19557523727417,411.107838948568,411.024078369141,0.12844684877095
+8593,311774,3791398,311874,3791298,92,85,0,NA,NA,NA,NA,-0.00589639134363439,0.0332409972299169,3.32409972299169,2,68.5613517353952,0.817461655149166,3.04709141274238,49.1537748972575,41.8880653381348,411.206241607666,411.090759277344,0.221339343456172
+8594,311774,3791298,311874,3791198,93,85,0,NA,NA,NA,NA,0.0164535279554483,0.130193905817175,13.0193905817175,2,86.2587471098127,0.899402866242038,11.6343490304709,86.4159190401118,62.3469009399414,411.892557779948,411.403228759766,0.677971056828451
+8595,311774,3791198,311874,3791098,94,85,0,NA,NA,NA,NA,0.0207124376138764,0.157894736842105,15.7894736842105,3,90.0410805740969,0.783052884615385,15.2631578947368,60.338254292806,42.8438110351562,411.54856300354,411.109527587891,0.599277061422518
+8596,311774,3791098,311874,3790998,95,85,4.15512465373961,0.0404910024072465,9.29072712172917,0.577777777777778,NA,0.0220978766578545,0.146814404432133,14.6814404432133,6,79.5090966334148,0.742400456686171,11.3573407202216,39.2134658525575,0,410.954661051432,410.924255371094,0.135703815567019
+8597,311774,3790998,311874,3790898,96,85,16.3434903047091,0.0796323047342515,12.8275688998229,0.682831661092531,67.5424771946855,0.0437850898729304,0.376731301939058,37.6731301939058,2,96.1524917715791,0.805913978494624,37.3961218836565,18.4682679562008,0,411.482376098633,410.970245361328,0.936885305108459
+8598,311774,3790898,311874,3790798,97,85,39.612188365651,0.0965035557372709,11.2275249287644,0.549674674674675,17.7388032840271,0.0257772694800385,0.149584487534626,14.9584487534626,9,67.0435839743554,0.582746663864663,3.8781163434903,7.06382538654186,0,413.835789998372,412.795715332031,1.54538874363799
+8599,311774,3790798,311874,3790698,98,85,36.5789473684211,0.0938041555767878,18.9019003235747,0.643319885264817,10.3911503376439,0.0355817186729263,0.25,25,7,80.1024317853955,0.670588235294118,10.5263157894737,3.98420441778083,0,415.707656860352,414.895751953125,0.871794346415781
+8600,311774,3790698,311874,3790598,99,85,27.1468144044321,0.132270607863672,15.7833988786256,0.521345029239766,36.7382643477325,0.0430860219941827,0.383040935672515,38.3040935672515,4,91.631092142497,0.769418390211981,28.0701754385965,7.02961168216385,0,415.052164077759,414.233856201172,1.14453742617791
+8601,311874,3800598,311974,3800498,0,86,34.7368421052632,0.0593868035306072,9.99652453136655,0.395821462488129,13.8548672207709,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.507395426432,387.41796875,0.203363287228626
+8602,311874,3800498,311974,3800398,1,86,26.75,0.0722089542928974,14.0609779649011,0.590209694989107,18.4417448109535,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.498657226562,387.335784912109,0.241100638763991
+8603,311874,3800398,311974,3800298,2,86,31.5789473684211,0.161964009628929,25.6609141058844,0.707575757575758,25.9778761038906,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.349797566732,387.178314208984,0.31394907908185
+8604,311874,3800298,311974,3800198,3,86,29.2105263157895,0.0998778059378395,15.9117744204968,0.703664799253034,15.5867255930595,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.176333957248,387.114562988281,0.119731685874297
+8605,311874,3800198,311974,3800098,4,86,45.2631578947368,0.154765609200976,17.1731782077914,0.528007536072052,25.9778761038906,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.134084065755,387.112121582031,0.0545798554241433
+8606,311874,3800098,311974,3799998,5,86,29.5,0.159264609468447,24.7147829478647,0.721974206349206,20.7823008831125,0.0137208936084789,0.2,20,3,76.9001816972187,0.639423076923077,9.375,15.0522041618824,5.19557523727417,387.273861355252,387.186920166016,0.174579613040906
+8607,311874,3799998,311974,3799898,6,86,21.5789473684211,0.0316215447370766,7.5283686571625,0.389715608465608,14.4527066870176,0.0136679423187927,0.0842105263157895,8.42105263157895,3,76.3908747410946,0.811007957559682,5.52631578947368,17.5702134668827,10.3911504745483,387.813293457031,387.429138183594,0.505525063833201
+8608,311874,3799898,311974,3799798,7,86,34.4736842105263,0.11787380700772,21.4813046445476,0.533800186741363,13.8548672554083,0.0108599388666718,0.0789473684210526,7.89473684210526,1,86.162631131474,0.756268221574344,7.89473684210526,9.92364622751872,5.19557523727417,388.620822482639,388.325714111328,0.421676282467342
+8609,311874,3799798,311974,3799698,8,86,29.4736842105263,0.0604665635948001,10.9170059673666,0.428935185185185,12.7146822565776,0.0125897201756552,0.118421052631579,11.8421052631579,6,73.5222439623299,0.686567164179104,7.63157894736842,22.8134361373054,5.19557523727417,389.098836263021,388.891235351562,0.258864045260634
+8610,311874,3799698,311974,3799598,9,86,33.25,0.179510110672063,28.3752983132329,0.693180076628352,20.7823008831125,0.0144471647341379,0.11,11,5,74.5615342897147,0.681141815973277,6.5,23.8884729580446,5.19557523727417,389.538953993056,389.381164550781,0.288838339153189
+8611,311874,3799598,311974,3799498,10,86,22.3684210526316,0.0764830045469942,16.799250953464,0.534586466165413,17.3185840692604,0.0113377423611574,0.0394736842105263,3.94736842105263,4,54.4016670201473,0.479452054794521,1.84210526315789,10.5175963083903,7.34765291213989,390.103802998861,389.751953125,0.403030691497837
+8612,311874,3799498,311974,3799398,11,86,9.21052631578947,0.0472395028084376,10.7798924042353,0.55952380952381,31.1734513246687,0.017958811098326,0.0236842105263158,2.36842105263158,2,61.8884961483246,0.743935309973046,2.10526315789474,7.6409985754225,5.19557523727417,390.851206461589,390.406677246094,0.434319233936765
+8613,311874,3799398,311974,3799298,12,86,46.3157894736842,0.158364809414953,21.0825033828067,0.717228979133741,20.7823007792002,0.0188535143618202,0.184210526315789,18.4210526315789,5,79.8144097332961,0.70102281667978,10.7894736842105,8.7526867049081,0,391.327209472656,391.087982177734,0.242107134479777
+8614,311874,3799298,311974,3799198,13,86,50.5,0.181759610805798,21.9123461459775,0.704882943739125,19.0504424761864,0.0150552792344683,0.135,13.5,4,82.4666874455123,0.676797812169806,7.75,9.21592254108853,0,391.419059753418,391.310943603516,0.1608512266793
+8615,311874,3799198,311974,3799098,14,86,58.6842105263158,0.300983117893759,30.4791444013761,0.774661044973545,20.7823008831125,0.0204747038764732,0.186842105263158,18.6842105263158,5,83.4475604160638,0.754045307443366,8.68421052631579,8.28637977385185,0,391.654269748264,391.494842529297,0.298194819827267
+8616,311874,3799098,311974,3798998,15,86,33.9473684210526,0.116074206900732,18.0678791331372,0.654731525784157,21.3443846445704,0.0197128168128409,0.152631578947368,15.2631578947368,4,78.1285236624368,0.752173913043478,5.78947368421053,9.19559511645087,0,392.01863861084,391.810272216797,0.286578366856811
+8617,311874,3798998,311974,3798898,16,86,12.8947368421053,0.0440902026212084,12.546069708477,0.375925925925926,29.4415929177427,0.0328854123378589,0.257894736842105,25.7894736842105,6,84.9176215954091,0.732027724049001,13.9473684210526,19.6454454538774,5.19557523727417,392.254692925347,392.12548828125,0.240445425709683
+8618,311874,3798898,311974,3798798,17,86,35.75,0.0772028445897894,13.6997731863894,0.550297088532383,18.5668626671927,0.0283748205294251,0.2775,27.75,4,90.5048437059448,0.681660899653979,20.25,10.6857266726795,0,392.483703613281,392.279937744141,0.291799684555967
+8619,311874,3798798,311974,3798698,18,86,10.7894736842105,0.036891802193256,7.9060643365088,0.48625730994152,19.6292436257397,0.0332276000699877,0.231578947368421,23.1578947368421,4,86.3173821493234,0.734752639385743,13.9473684210526,33.945560650392,10.3911504745483,392.680586073134,392.582611083984,0.134225606454806
+8620,311874,3798698,311974,3798598,19,86,18.6842105263158,0.0479143528485581,12.6403709966284,0.51015834675255,15.9771251198461,0.0179545668052972,0.113157894736842,11.3157894736842,7,63.6387568273914,0.561490273656446,2.36842105263158,19.8913673910984,0,392.800244649251,392.700469970703,0.148218512527834
+8621,311874,3798598,311974,3798498,20,86,37.3684210526316,0.0638858037980775,11.158894065888,0.537619363395225,13.5577272698697,0.0322180288240289,0.247368421052632,24.7368421052632,5,87.0290962894559,0.802281052281052,14.2105263157895,5.43863088526624,0,393.19967312283,392.923095703125,0.757452205274719
+8622,311874,3798498,311974,3798398,21,86,33.5,0.0723439243009215,13.2069234838749,0.561565659604464,18.7040707116714,0.0204876872055229,0.1575,15.75,6,77.5074951240114,0.773401672511465,7.25,5.40855551522876,0,395.182009379069,393.886108398438,1.18683911754973
+8623,311874,3798398,311974,3798298,22,86,54.4736842105263,0.279387916609902,29.6885590500941,0.727714259155977,10.3911504415562,0.0328076604025562,0.265789473684211,26.5789473684211,7,83.0548708072385,0.736628448088081,12.6315789473684,5.72438668732596,0,396.323676215278,395.955291748047,0.724322197897749
+8624,311874,3798298,311974,3798198,23,86,43.1578947368421,0.147567208773024,24.4696752776635,0.697403515537132,13.8548672554083,0.0344913024071023,0.268421052631579,26.8421052631579,3,93.0713028050717,0.723630931320517,24.7368421052632,9.25749156054328,0,396.971585591634,396.379089355469,0.672454240770595
+8625,311874,3798198,311974,3798098,24,86,24.2105263157895,0.0827816049214525,20.0662031562747,0.372968936678614,31.1734513246687,0.0202002580784928,0.0868421052631579,8.68421052631579,5,77.9209808755376,0.655246024122105,7.10526315789474,11.4423283374671,0,397.59181382921,397.330932617188,0.294775272534632
+8626,311874,3798098,311974,3797998,25,86,27.5,0.0494890029421727,12.1662564151298,0.475686813186813,21.9292719673045,0.0214747542712166,0.08,8,4,72.520853496956,0.728260869565217,4.25,6.9920257627964,0,397.664260864258,397.619140625,0.0751269036569608
+8627,311874,3797998,311974,3797898,26,86,45.5263157894737,0.0583745284704264,9.4600577494957,0.48573152183066,11.6900442207727,0.0200951464915809,0.0947368421052632,9.47368421052632,7,62.4810574728354,0.502906976744186,2.63157894736842,3.03075222174327,0,397.775118509928,397.703887939453,0.114567933487862
+8628,311874,3797898,311974,3797798,27,86,31.8421052631579,0.05443790323639,11.6245878909953,0.475977756694075,15.289585659477,0.0357997074946884,0.202631578947368,20.2631578947368,7,87.6228240539685,0.649582605319356,16.8421052631579,4.65290193433885,0,398.14015367296,397.921752929688,0.374057551609363
+8629,311874,3797798,311974,3797698,28,86,46.0526315789474,0.0944790056168752,11.0669516442043,0.444721340976976,11.8441923810886,0.0576377602078872,0.447368421052632,44.7368421052632,2,94.9767510235972,0.861250570515746,40.2631578947368,6.66078267097473,0,398.92601776123,398.522094726562,0.477246750769862
+8630,311874,3797698,311974,3797598,29,86,4.75,0.0170962010163869,6.12217793065106,0.311111111111111,29.8679958086613,0.0452642173129925,0.41,41,5,92.0764290677458,0.75305870468066,26.5,31.2628027927585,0,399.652960883247,399.364227294922,0.383111158711896
+8631,311874,3797598,311974,3797498,30,86,32.3684210526316,0.166013109869652,17.835181256946,0.384562841530055,14.6953058096309,0.0307808795964535,0.252631578947368,25.2631578947368,5,85.3240846061667,0.743285293154274,11.0526315789474,13.7425892005364,0,399.916239420573,399.758453369141,0.333988304107947
+8632,311874,3797498,311974,3797398,31,86,62.8947368421053,0.322578319177617,27.9483124181217,0.834486693861694,10.3911504415562,0.0418026222367955,0.455263157894737,45.5263157894737,3,92.8151746003044,0.792830857298623,28.1578947368421,1.28836735962443,0,399.81923421224,399.585510253906,1.18494306779964
+8633,311874,3797398,311974,3797298,32,86,41.0526315789474,0.105276606258804,14.5983592277278,0.625401752682205,10.3911504415562,0.0477300382648154,0.494736842105263,49.4736842105263,3,94.4071371756781,0.766822318007663,31.5789473684211,5.31382730159354,0,399.545229593913,399.405059814453,0.692001906723239
+8634,311874,3797298,311974,3797198,33,86,48.5,0.130920907783384,17.850471656543,0.602583024329951,17.1598191564357,0.0191697153473433,0.0775,7.75,4,71.9873599170168,0.67479674796748,5,1.24261626889629,0,399.492167154948,399.395294189453,0.163050481533079
+8635,311874,3797198,311974,3797098,34,86,95.5263157894737,0.97988225825502,38.3537864689036,0.924242424242424,NA,0.0567905736905615,0.573684210526316,57.3684210526316,3,97.0161997334355,0.757343550446999,54.7368421052632,0.119164569662252,0,399.652198791504,399.461273193359,0.349289807574437
+8636,311874,3797098,311974,3796998,35,86,88.4210526315789,0.906998453922002,36.771604421534,0.920138888888889,NA,0.0630588137162512,0.739473684210526,73.9473684210526,1,99.119208233448,0.832797673706765,73.9473684210526,1.25888986859033,0,400.016174316406,399.501159667969,1.06063710724921
+8637,311874,3796998,311974,3796898,36,86,70,0.239346814229417,17.3157788199694,0.654403054306715,19.0504423549554,0.0336780582959794,0.268421052631579,26.8421052631579,6,85.8021324729566,0.783386405629595,16.5789473684211,2.24451372202705,0,400.987559000651,399.873748779297,2.02537806016039
+8638,311874,3796898,311974,3796798,37,86,86.25,0.931293055366341,38.6030461020857,0.896135265700483,NA,0.0538279109391806,0.5925,59.25,3,95.6138306915536,0.734105166945948,42.25,0.579059214531621,0,405.139122856988,402.272186279297,3.3805954644765
+8639,311874,3796798,311974,3796698,38,86,69.2105263157895,0.709942242206805,41.1198611504208,0.828897338403042,NA,0.0659003492487644,0.597368421052632,59.7368421052632,4,95.2682356320173,0.788624669726046,52.1052631578947,2.80906472437182,0,408.793027242025,407.403076171875,1.43044792363332
+8640,311874,3796698,311974,3796598,39,86,65.5263157894737,0.168037659990014,15.8716293385842,0.663514441352467,14.2878317662166,0.0523009371729323,0.481578947368421,48.1578947368421,4,93.3499615902203,0.766016880425315,39.2105263157895,1.15612477682979,0,409.79386138916,408.990631103516,0.893149820553852
+8641,311874,3796598,311974,3796498,40,86,48.4210526315789,0.124172407382179,14.6513712136409,0.479262304442161,12.9768644993162,0.0484859548810882,0.460526315789474,46.0526315789474,7,91.2998996847352,0.632711621233859,31.0526315789474,4.43661363601685,0,410.876519097222,410.488830566406,0.807223435693223
+8642,311874,3796498,311974,3796398,41,86,40.2631578947368,0.103252056138442,12.0870493499475,0.482562271062271,15.7975070278068,0.0454163546964226,0.373684210526316,37.3684210526316,7,87.0597752589555,0.649967679379444,14.2105263157895,8.94539763558079,0,411.936762491862,410.957275390625,0.766207611966522
+8643,311874,3796398,311974,3796298,42,86,44,0.237547214122429,20.7000206702989,0.413333333333333,46.7601765193976,0.0545377007930074,0.5725,57.25,3,97.4611339567735,0.769916594765602,55.75,14.5275253104331,0,412.426737467448,412.133331298828,0.449202276015176
+8644,311874,3796298,311974,3796198,43,86,95.5263157894737,0.97988225825502,38.5686472149889,0.909550045913682,NA,0.0242259851820372,0.407894736842105,40.7894736842105,2,96.5144798177365,0.905185185185185,40.5263157894737,0.23463888168335,0,413.106923421224,412.651977539062,0.51843871159412
+8645,311874,3796198,311974,3796098,44,86,95,0.974483457934055,37.7061846738944,0.92797783933518,NA,-0.0179006326443222,0.0236842105263158,2.36842105263158,2,55.8915688410153,0.573225516621743,1.31578947368421,5.67381466759576,0,412.563130696615,411.144378662109,1.85535029107822
+8646,311874,3796098,311974,3795998,45,86,74.2105263157895,0.190307711313991,15.0748036944454,0.611150372311087,11.6900441558275,0.0599956319458311,0.626315789473684,62.6315789473684,2,98.3473957810601,0.813578097800285,62.3684210526316,1.47729401428159,0,408.515289306641,405.446197509766,2.80654647302482
+8647,311874,3795998,311974,3795898,46,86,72.25,0.39006332318967,18.1058643194638,0.43431712962963,10.3911504415562,0.0411355298815761,0.3475,34.75,5,92.7575159444002,0.722448487042568,26.5,1.01828193664551,0,403.645918104384,402.502136230469,2.08168555830582
+8648,311874,3795898,311974,3795798,47,86,1.31578947368421,0.00449900026747025,1.73185838960732,0.111111111111111,40.9790667407637,0.0189940091800341,0.136842105263158,13.6842105263158,5,82.1570715284423,0.752671964921896,10.2631578947368,11.2730390842144,0,402.230575561523,402.100708007812,0.210815956255049
+8649,311874,3795798,311974,3795698,48,86,8.42105263157895,0.0863808051354287,18.4956463402693,0.578125,NA,0.0219623859614474,0.152631578947368,15.2631578947368,5,76.5080695823705,0.645962732919255,5.52631578947368,17.4312634468079,0,402.042978922526,402.019989013672,0.0507558150803593
+8650,311874,3795698,311974,3795598,49,86,86.0526315789474,0.882703852477662,36.3448364072319,0.916921508664628,NA,0.0518622196114034,0.471052631578947,47.1052631578947,6,87.7742069629603,0.720130465497287,21.0526315789474,1.33075411226496,0,402.015920003255,402.010009765625,0.0114742429917416
+8651,311874,3795598,311974,3795498,50,86,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0553748154867935,0.79,79,1,99.3416426267051,0.752317034196229,79,0,0,402.023990207248,402.011535644531,0.0127517875418485
+8652,311874,3795498,311974,3795398,51,86,71.0526315789474,0.72883804333018,33.3165868434088,0.909259259259259,NA,0.0414302369024402,0.373684210526316,37.3684210526316,1,96.561696952739,0.797349709114415,37.3684210526316,0.843896617352123,0,402.038635253906,402.021850585938,0.0221185870948049
+8653,311874,3795398,311974,3795298,52,86,0,NA,NA,NA,NA,0.0213996790936155,0.0842105263157895,8.42105263157895,5,72.0889821195302,0.601016799292661,4.47368421052632,67.6424188017845,20.7823009490967,402.107347276476,402.070251464844,0.0711254224859077
+8654,311874,3795298,311974,3795198,53,86,2.63157894736842,0.0269940016048215,6.53999109659552,0.55,NA,0.0195796775173604,0.0710526315789474,7.10526315789474,8,52.1350523994248,0.449239080308321,1.57894736842105,39.2698725947627,0,402.281860351562,402.184997558594,0.111910135804292
+8655,311874,3795198,311974,3795098,54,86,0,NA,NA,NA,NA,-0.00212424659457611,0.005,0.5,1,30.8308651382582,1,0.5,75.3358421325684,72.7380523681641,402.433176676432,402.395812988281,0.0411156823380922
+8656,311874,3795098,311974,3794998,55,86,0,NA,NA,NA,NA,-0.00558563167451212,0,0,0,NA,NA,0,NA,NA,402.325531005859,402.155609130859,0.223069221795587
+8657,311874,3794998,311974,3794898,56,86,0,NA,NA,NA,NA,0.0102990088442886,0,0,0,NA,NA,0,NA,NA,401.598124186198,401.276702880859,0.447944173145476
+8658,311874,3794898,311974,3794798,57,86,0,NA,NA,NA,NA,0.00655307798457981,0,0,0,NA,NA,0,NA,NA,401.221923828125,401.15380859375,0.138191170036886
+8659,311874,3794798,311974,3794698,58,86,13.25,0.0715341042527769,12.1902607725156,0.693700396825397,63.2068999375992,0.00763552693450038,0,0,0,NA,NA,0,NA,NA,401.537292480469,401.235412597656,0.358849116863043
+8660,311874,3794698,311974,3794598,59,86,7.63157894736842,0.0782826046539823,13.5691441888174,0.718390804597701,NA,0.0202580446831952,0.0315789473684211,3.15789473684211,3,57.7070175524891,0.635549872122762,2.10526315789474,45.5599412918091,33.2679138183594,402.073988172743,401.851165771484,0.268261989444687
+8661,311874,3794598,311974,3794498,60,86,9.21052631578947,0.0944790056168752,14.3201317555336,0.738095238095238,NA,0.0166358530340834,0.0157894736842105,1.57894736842105,2,45.1383411060509,0.709702062643239,1.05263157894737,1.73185841242472,0,402.419606526693,402.145385742188,0.351192493757215
+8662,311874,3794498,311974,3794398,61,86,0,NA,NA,NA,NA,0.0191230505703348,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,54.5535411834717,51.955753326416,402.542036268446,402.314086914062,0.359600556224496
+8663,311874,3794398,311974,3794298,62,86,9.75,0.0526383031294019,9.55148750116414,0.432432432432432,20.7823006752878,0.00923764842300443,0.05,5,3,69.8959081674694,0.728353140916808,3.5,30.966111946106,15.5867252349854,402.615694681803,402.390777587891,0.397155430977537
+8664,311874,3794298,311974,3794198,63,86,6.05263157894737,0.0620862036910894,13.3263882325791,0.623188405797101,NA,0.0185801529654207,0.0394736842105263,3.94736842105263,2,71.4033730948885,0.763387297633873,3.42105263157895,46.563762029012,22.0429573059082,402.566016303168,402.187072753906,0.50383382149934
+8665,311874,3794198,311974,3794098,64,86,8.94736842105263,0.0305932018187977,6.39775275069833,0.492784992784993,22.6372385123363,0.0178847181432981,0.0421052631578947,4.21052631578947,2,73.9482678087317,0.869505494505495,3.94736842105263,34.8183652162552,22.0429573059082,402.232162475586,402.029449462891,0.350823394892631
+8666,311874,3794098,311974,3793998,65,86,3.42105263157895,0.0350922020862679,7.93637858670512,0.602564102564103,NA,0.0169279554733593,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,51.4335708618164,51.4335708618164,402.173834906684,401.99755859375,0.299423477116389
+8667,311874,3793998,311974,3793898,66,86,0.25,0.00269940016048215,0,0,NA,0.0165705262742267,0,0,0,NA,NA,0,NA,NA,402.060231526693,401.928314208984,0.263086666739419
+8668,311874,3793898,311974,3793798,67,86,0,NA,NA,NA,NA,0.0305482451717054,0.178947368421053,17.8947368421053,6,82.7558112219565,0.682719241542771,12.1052631578947,57.4083357418285,36.369026184082,402.053632948134,401.922576904297,0.266345249951856
+8669,311874,3793798,311974,3793698,68,86,17.6315789473684,0.0602866035841013,13.5138692169915,0.471509971509972,12.9406814039139,0.0295750974690631,0.210526315789474,21.0526315789474,6,82.8059593747449,0.705633802816901,10,25.9324564278126,7.34765291213989,402.280802408854,402.007354736328,0.429869262317348
+8670,311874,3793698,311974,3793598,69,86,7.10526315789474,0.036441902166509,11.0658229342865,0.346666666666667,15.5867256623344,0.0215998816531995,0.0578947368421053,5.78947368421053,2,78.1035948821918,0.843904042063753,5.26315789473684,9.61315250396729,0,402.833607991536,402.514862060547,0.310727441358946
+8671,311874,3793598,311974,3793498,70,86,17.25,0.0931293055366341,17.9172130983923,0.634948979591837,10.3911503376439,0.0123306932734158,0.0425,4.25,2,72.9569086624483,0.87467362924282,3.75,52.78438094083,7.34765291213989,403.059627956814,402.880615234375,0.231608062724676
+8672,311874,3793498,311974,3793398,71,86,0,NA,NA,NA,NA,0.0155060654028555,0.0789473684210526,7.89473684210526,2,80.7994649125595,0.822740524781341,6.84210526315789,37.9592295328776,11.6176595687866,403.481686909993,403.204772949219,0.45182960573758
+8673,311874,3793398,311974,3793298,72,86,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0181730203651114,0.0447368421052632,4.47368421052632,3,67.915568560165,0.706887052341598,3.42105263157895,50.2168634078082,15.5867252349854,404.475219726562,403.871887207031,0.88477292314517
+8674,311874,3793298,311974,3793198,73,86,20.5263157894737,0.210553212517608,24.8549864043465,0.737179487179487,NA,0.00229711160739163,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,38.8416389465332,31.1734504699707,405.733131408691,405.124359130859,0.621883313228417
+8675,311874,3793198,311974,3793098,74,86,0,NA,NA,NA,NA,-0.000320536135786824,0.005,0.5,1,30.8308651382582,1,0.5,59.9750061035156,57.3870010375977,406.308339436849,406.084991455078,0.201354187560816
+8676,311874,3793098,311974,3792998,75,86,2.10526315789474,0.0215952012838572,5.38798381593948,0.5625,NA,0.0199555079641294,0.0973684210526316,9.73684210526316,2,81.0219597900756,0.872867179658749,5.78947368421053,19.2444450919693,0,406.519007364909,406.428283691406,0.122532433808425
+8677,311874,3792998,311974,3792898,76,86,0,NA,NA,NA,NA,0.0185663350686235,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,90.73681640625,90.73681640625,406.628814697266,406.55712890625,0.100970881182282
+8678,311874,3792898,311974,3792798,77,86,1.57894736842105,0.0161964009628929,4.73848231234961,0.5,NA,0.0268024476788062,0.113157894736842,11.3157894736842,5,74.9026736892959,0.5928123969667,5,68.2372621935467,0,406.999043782552,406.70361328125,0.462145472558196
+8679,311874,3792798,311974,3792698,78,86,18.25,0.0985281058575984,17.4230945645347,0.647863247863248,51.9557516882196,0.0226389961396126,0.1075,10.75,6,73.250501024334,0.595393713040772,5.75,21.6772784632306,0,407.617421468099,407.279815673828,0.509790185558169
+8680,311874,3792698,311974,3792598,79,86,1.31578947368421,0.00449900026747025,1.13270264964388,0.0925925925925926,15.5867256623344,0.0266539839739476,0.0789473684210526,7.89473684210526,6,67.9574314777344,0.556851311953353,4.73684210526316,47.969261932373,5.19557523727417,408.533137003581,407.432647705078,1.18375120066014
+8681,311874,3792598,311974,3792498,80,86,11.5789473684211,0.118773607061214,20.2993842501956,0.696969696969697,NA,0.0340314905893185,0.2,20,8,78.3849394531235,0.664179104477612,11.5789473684211,16.0796933174133,0,409.580512152778,408.775115966797,0.96766323277473
+8682,311874,3792498,311974,3792398,81,86,0,NA,NA,NA,NA,0.0259041575680295,0.0947368421052632,9.47368421052632,6,65.3831003164165,0.613372093023256,3.94736842105263,41.6510807673136,16.4298515319824,410.718226114909,410.202270507812,0.883114448100151
+8683,311874,3792398,311974,3792298,82,86,0,NA,NA,NA,NA,0.023435004018429,0.08,8,6,72.1820601247085,0.686454849498328,5.5,55.9068516492844,36.7382659912109,411.048295762804,410.631469726562,0.721728650371412
+8684,311874,3792298,311974,3792198,83,86,9.21052631578947,0.0944790056168752,14.0230895914109,0.661904761904762,NA,0.0344330964965354,0.194736842105263,19.4736842105263,5,82.2043215578455,0.799396681749623,13.4210526315789,12.9274748402673,0,411.053728739421,410.453308105469,0.898884542348854
+8685,311874,3792198,311974,3792098,84,86,52.3684210526316,0.179060210645316,17.0261505982977,0.621572805682395,17.88066784907,0.053661403139612,0.513157894736842,51.3157894736842,4,94.776098925554,0.82410034343736,43.421052631579,2.23695937670194,0,409.413953145345,408.254760742188,0.962669011177682
+8686,311874,3792098,311974,3791998,85,86,20.5263157894737,0.0526383031294019,10.182745741381,0.476839539007092,12.9889379220549,0.0359727755568824,0.268421052631579,26.8421052631579,5,86.4715721225816,0.723630931320517,13.9473684210526,11.0426222530066,0,409.06206258138,408.765716552734,0.588467568700657
+8687,311874,3791998,311974,3791898,86,86,0,NA,NA,NA,NA,0.0121136450275026,0.05,5,5,55.7953668603982,0.558573853989813,1.75,51.5115765810013,7.34765291213989,410.509468078613,409.678253173828,1.00998101624575
+8688,311874,3791898,311974,3791798,87,86,0,NA,NA,NA,NA,0.0129179202635226,0.155263157894737,15.5263157894737,1,91.6844204312125,0.80269989615784,15.5263157894737,57.5753144086418,26.4923400878906,411.871948242188,411.516815185547,0.76805869959788
+8689,311874,3791798,311974,3791698,88,86,2.36842105263158,0.0242946014443393,6.66837228163016,0.537037037037037,NA,0.0172263710820851,0.0973684210526316,9.73684210526316,5,66.8936386996647,0.673087033408211,2.63157894736842,46.5262241879025,20.7823009490967,412.154553731283,411.685028076172,0.549214447050644
+8690,311874,3791698,311974,3791598,89,86,21.0526315789474,0.215952012838572,26.4724715456993,0.770833333333333,NA,0.0228420907017272,0.102631578947368,10.2631578947368,6,66.363564870704,0.588540491766298,3.68421052631579,18.2135191452809,0,412.040171305339,411.614013671875,0.653422080089043
+8691,311874,3791598,311974,3791498,90,86,11.25,0.121473007221697,27.733562571942,0.603703703703704,NA,0.0338529838671457,0.225,22.5,7,85.8616202251051,0.735523943097576,15,40.4621653291914,0,411.12621307373,411.003601074219,0.292834232351888
+8692,311874,3791498,311974,3791398,91,86,14.7368421052632,0.0377916022467501,7.16885274355551,0.317248062015504,19.4834070259618,0.0300898780895152,0.215789473684211,21.5789473684211,7,80.3119645841224,0.674612358250405,10.7894736842105,15.8330507627348,0,411.055067274306,410.999938964844,0.10574428261436
+8693,311874,3791398,311974,3791298,92,86,4.47368421052632,0.0152966009093988,4.7756206600872,0.319444444444444,18.2795895115541,0.0276536597951175,0.252631578947368,25.2631578947368,2,92.5013155968906,0.906649197510645,23.6842105263158,21.100043023626,0,411.266014099121,411.141784667969,0.206401014047028
+8694,311874,3791298,311974,3791198,93,86,5,0.0512886030491608,10.4371528924215,0.649122807017544,NA,0.0427615829510231,0.276315789473684,27.6315789473684,2,93.0536965453561,0.91957671957672,25.5263157894737,39.8411285309565,0,412.087365044488,411.465270996094,0.743280163557484
+8695,311874,3791198,311974,3791098,94,86,7.25,0.0782826046539823,12.4333187329811,0.718390804597701,NA,0.0227113590511362,0.165,16.5,2,88.9039766517517,0.82296277011195,13.5,37.6384091088266,5.19557523727417,412.037666320801,411.508697509766,0.602266580129039
+8696,311874,3791098,311974,3790998,95,86,18.9473684210526,0.194356811554715,23.8893001158467,0.759259259259259,NA,0.0293447332262172,0.226315789473684,22.6315789473684,2,92.48716220508,0.898626117113512,21.8421052631579,17.6912800544916,0,411.347666422526,411.081237792969,0.462513554285972
+8697,311874,3790998,311974,3790898,96,86,5.52631578947368,0.0566874033701251,10.2003578332684,0.690476190476191,NA,0.0180421659730392,0.0763157894736842,7.63157894736842,2,77.8475831696608,0.838758562162818,4.21052631578947,27.585755857928,0,411.361129760742,411.010986328125,0.60321260730302
+8698,311874,3790898,311974,3790798,97,86,5.78947368421053,0.0148467008826518,3.57456199381214,0.271043771043771,27.5509695850029,0.0306114189242898,0.297368421052632,29.7368421052632,5,87.9128811502131,0.70698391716237,19.2105263157895,15.3771742846059,0,413.165554470486,412.071746826172,1.48188761613917
+8699,311874,3790798,311974,3790698,98,86,40.25,0.0869206851675251,14.0324354888746,0.613022771575403,14.5476104727015,0.0573996966326376,0.5875,58.75,4,96.651556505745,0.685235038310209,54.25,4.41860263905627,0,414.476455688477,413.596069335938,1.18674993994516
+8700,311874,3790698,311974,3790598,99,86,11.3157894736842,0.0386914023002441,7.5541584454148,0.597934472934473,30.5879163080754,0.0289161271089041,0.222222222222222,22.2222222222222,6,80.1266019244145,0.683098591549296,7.77777777777778,13.3126856982708,0,414.178426106771,413.768188476562,0.755485996807395
+8701,311974,3800598,312074,3800498,0,87,37.1191135734072,0.0723439243009471,10.1246177913565,0.42347132034632,18.3475027602009,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.394973754883,387.816345214844,0.624618567100202
+8702,311974,3800498,312074,3800398,1,87,20.5263157894737,0.210553212517682,26.6727069472309,0.752136752136752,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.549840291341,387.759979248047,0.793924877416108
+8703,311974,3800398,312074,3800298,2,87,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.487958908081,387.467041015625,1.10442405319522
+8704,311974,3800298,312074,3800198,3,87,40.7202216066482,0.396811823591016,34.1298089037683,0.752834467120181,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.641672770182,387.237213134766,0.992062933676034
+8705,311974,3800198,312074,3800098,4,87,13.0193905817175,0.0317179518856765,8.92825412875932,0.47140522875817,26.3051739601146,NA,NA,NA,NA,NA,NA,NA,NA,NA,387.349720001221,387.172424316406,0.354761680776002
+8706,311974,3800098,312074,3799998,5,87,11.8421052631579,0.0404910024072465,8.4767098470973,0.481691919191919,31.6862317276094,0.0348361901150814,0.236842105263158,23.6842105263158,4,77.3395123592008,0.672413793103448,16.4473684210526,31.3819083902571,14.6953058242798,387.457074483236,387.214538574219,0.400514760755373
+8707,311974,3799998,312074,3799898,6,87,22.9916897506925,0.112025106660049,16.0319742518098,0.582792207792208,15.5867255064659,0.0102818485963258,0.102493074792244,10.2493074792244,2,86.3636363636364,0.87214126695001,9.97229916897507,50.7329616160006,7.34765291213989,387.940814971924,387.440856933594,0.520552248006506
+8708,311974,3799898,312074,3799798,7,87,0,NA,NA,NA,NA,0.0232114825263336,0.166204986149584,16.6204986149584,3,89.5835387001602,0.723230258113979,15.7894736842105,23.137884871165,10.3911504745483,388.311251322428,388.044799804688,0.560566522105084
+8709,311974,3799798,312074,3799698,8,87,0,NA,NA,NA,NA,0.027992849411429,0.260387811634349,26.0387811634349,4,87.7339052225919,0.734416800428036,15.5124653739612,72.5931588436695,52.2148818969727,389.371318817139,388.883239746094,0.488592709987359
+8710,311974,3799698,312074,3799598,9,87,6.8421052631579,0.0350922020862803,7.91675801847273,0.48015873015873,31.1734513246797,0.0179293158363802,0.139473684210526,13.9473684210526,3,83.8421663887861,0.846758745841315,9.21052631578947,67.5705949315485,21.4219055175781,389.546862284342,389.477874755859,0.106428365588161
+8711,311974,3799598,312074,3799498,10,87,21.8836565096953,0.071084204226055,15.1266753957181,0.630213546880214,10.3911503722826,0.0041531198200732,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,26.7652339935303,23.2353191375732,389.750686645508,389.560607910156,0.261070632527332
+8712,311974,3799498,312074,3799398,11,87,11.0803324099723,0.0359920021397747,7.10481303932623,0.481541218637993,22.5141592900465,0.0124491681485892,0.00831024930747922,0.831024930747922,3,0,1,0.277008310249307,5.91293446222941,5.19557523727417,390.503095626831,389.983703613281,0.498107741563275
+8713,311974,3799398,312074,3799298,12,87,55.6786703601108,0.542579432257103,36.2762572494755,0.750414593698176,NA,0.0124614326124172,0.0692520775623269,6.92520775623269,5,62.9268808947112,0.543377976190476,2.49307479224377,6.57902271270752,5.19557523727417,391.515195210775,391.031524658203,0.694262795568442
+8714,311974,3799298,312074,3799198,13,87,48.9473684210526,0.251044214924928,18.2687716826123,0.466032608695652,20.7823008831198,0.0284901730388332,0.171052631578947,17.1052631578947,8,75.8429649987454,0.647703329119258,9.21052631578947,5.04261810596173,0,392.073030471802,391.568298339844,0.581182960979019
+8715,311974,3799198,312074,3799098,14,87,46.2603878116344,0.225399913400339,19.4103153804461,0.512872628726287,10.3911504415599,0.0206462959451574,0.124653739612188,12.4653739612188,5,74.65934305932,0.684335443037975,5.26315789473684,10.5670927047729,0,392.400782267253,391.737091064453,0.664979044508655
+8716,311974,3799098,312074,3798998,15,87,33.5180055401662,0.108875806472818,15.5920358861385,0.653706337916864,25.9778758441098,0.0156613675295537,0.0609418282548476,6.09418282548476,3,67.7268624229131,0.749436057608884,2.77008310249307,14.2562409097498,7.34765291213989,392.845706939697,392.223175048828,0.691807696487066
+8717,311974,3798998,312074,3798898,16,87,18.005540166205,0.0877305052157008,12.5504033479809,0.736888674388674,23.2353185658643,0.0287050119407057,0.210526315789474,21.0526315789474,6,78.539091702889,0.688059701492537,7.75623268698061,18.4734062709306,0,392.651034037272,392.22021484375,0.623432008424828
+8718,311974,3798898,312074,3798798,17,87,42.8947368421053,0.110000556539686,12.5557811620945,0.62330005787037,12.5432281255967,0.050213303498573,0.378947368421053,37.8947368421053,5,89.5455107328071,0.743836671802774,28.1578947368421,9.2850135465463,0,392.583234786987,392.269348144531,0.396885040980708
+8719,311974,3798798,312074,3798698,18,87,10.5263157894737,0.0512886030491789,13.84268211705,0.384259259259259,25.9778758441098,0.0242238636024705,0.157894736842105,15.7894736842105,5,78.334441285328,0.745535714285714,9.14127423822715,32.8491978645325,5.19557523727417,392.76197052002,392.580017089844,0.232955304340382
+8720,311974,3798698,312074,3798598,19,87,21.8836565096953,0.213252612678165,23.0850514480474,0.79957805907173,NA,0.0102140619862522,0.0193905817174515,1.93905817174515,2,54.980748285685,0.745056497175141,1.66204986149584,5.81045457295009,0,393.057716369629,392.727111816406,0.431708059007447
+8721,311974,3798598,312074,3798498,20,87,5.54016620498615,0.0179960010698873,4.60809520182196,0.37037037037037,53.6876102683396,0.0459754425342842,0.354570637119114,35.4570637119114,1,96.2256744148997,0.960102414853838,35.4570637119114,26.8787798024714,0,394.130109151204,393.416656494141,0.968336147343625
+8722,311974,3798498,312074,3798398,21,87,49.7368421052632,0.255093315165653,23.873426339977,0.761185682326622,15.5867255064659,0.0477143551733063,0.394736842105263,39.4736842105263,4,89.6885809098208,0.789723320158103,16.3157894736842,8.71266209602356,0,395.523248672485,394.675842285156,0.679760893947491
+8723,311974,3798398,312074,3798298,22,87,59.8337950138504,0.291535217332175,26.7533992221743,0.813531353135314,18.7329127343573,0.0442411812169702,0.412742382271468,41.2742382271468,4,91.7232265628465,0.750501071255788,26.3157894736842,4.79715074628792,0,396.097071329753,395.914703369141,0.284620364352769
+8724,311974,3798298,312074,3798198,23,87,59.2797783933518,0.144417908585846,9.4213230733372,0.398897058823529,15.0743785212332,0.0456074989296643,0.409972299168975,40.9972299168975,5,93.9256960863238,0.662283665090172,35.4570637119114,5.42725734775131,0,396.6754322052,396.330352783203,0.363856236010132
+8725,311974,3798198,312074,3798098,24,87,33.5180055401662,0.163313709709228,19.4377157648648,0.510505698005698,44.3910140906919,0.0278255776720672,0.191135734072022,19.1135734072022,3,89.8531694279363,0.754783199366014,16.8975069252078,7.88104584597159,0,397.249471028646,397.051849365234,0.324966635592777
+8726,311974,3798098,312074,3797998,25,87,15,0.0219808298782195,7.15994841368361,0.380372405372405,21.5245257958987,0.0179433189214538,0.0526315789473684,5.26315789473684,6,56.1790521750495,0.489247311827957,2.63157894736842,10.9209254741669,0,397.499397277832,397.327056884766,0.164355066762579
+8727,311974,3797998,312074,3797898,26,87,31.8559556786704,0.0388038773069446,7.3252813257868,0.414973365049585,16.7827594705993,0.0348382305738216,0.174515235457064,17.4515235457064,11,70.3287587345194,0.515436241610738,5.54016620498615,6.53190644582113,0,397.796924591064,397.634979248047,0.219524381757358
+8728,311974,3797898,312074,3797798,27,87,1.10803324099723,0.0107976006419324,5.19557516882196,0.25,NA,0.0104817210450338,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,14.476905186971,10.3911504745483,398.283251444499,398.027557373047,0.330263757538535
+8729,311974,3797798,312074,3797698,28,87,13.5734072022161,0.066135303931836,9.33155323081967,0.533816425120773,31.1734510129318,0.02619679067405,0.168975069252078,16.8975069252078,4,82.5103688785378,0.818364779874214,11.3573407202216,8.34287265089692,0,398.775407791138,398.479217529297,0.316167516592223
+8730,311974,3797698,312074,3797598,29,87,58.1578947368421,0.149141858866691,12.8989943558208,0.596455094246098,15.5867256623399,0.0328539996063275,0.228947368421053,22.8947368421053,6,85.3491907557447,0.715512495871408,17.1052631578947,0.962859866262852,0,399.300628662109,399.071899414062,0.314627225317937
+8731,311974,3797598,312074,3797498,30,87,63.4349030470914,0.309081318375315,26.2107684083016,0.788563927443637,10.3911504415599,0.0516397022866964,0.57617728531856,57.617728531856,2,96.0790234338507,0.731739034976609,43.7673130193906,4.16716172832709,0,399.499927520752,399.271545410156,0.240917345286286
+8732,311974,3797498,312074,3797398,31,87,74.2382271468144,0.723439243009471,34.166580162974,0.884328358208955,NA,0.0420746971549785,0.382271468144044,38.2271468144044,5,88.2453322113444,0.672378816997651,17.4515235457064,0.573871640191562,0,399.382405598958,399.217437744141,0.209848491457236
+8733,311974,3797398,312074,3797298,32,87,96.9529085872576,0.944790056169086,37.2304053421855,0.928095238095238,NA,0.0648709845179666,0.659279778393352,65.9279778393352,1,98.7134051402827,0.782351329131269,65.9279778393352,0.0436602961115476,0,399.31139755249,399.232604980469,0.102246288189
+8734,311974,3797298,312074,3797198,33,87,71.8421052631579,0.736936243811887,35.2500263365767,0.904761904761905,NA,0.0335612627265379,0.228947368421053,22.8947368421053,1,94.1064327935278,0.765716173070571,22.8947368421053,5.39473022811714,0,399.330281575521,399.281646728516,0.0580160284716743
+8735,311974,3797198,312074,3797098,34,87,86.1495844875346,0.839513449910245,37.3434870463254,0.898713826366559,NA,0.0721728723300131,0.81994459833795,81.994459833795,2,99.1134244222667,0.730783041016434,81.4404432132964,0.947209358215332,0,399.291172027588,398.898864746094,0.238254045946964
+8736,311974,3797098,312074,3796998,35,87,64.819944598338,0.631659637553046,31.4293052249916,0.902421652421653,NA,0.0421350750289509,0.415512465373961,41.5512465373961,3,93.3399183916395,0.632934080137872,30.1939058171745,3.9711269569397,0,398.976076761882,398.5,0.634894843936737
+8737,311974,3796998,312074,3796898,36,87,4.98614958448753,0.0485892028886958,9.08080787981798,0.675925925925926,NA,0.0372625849754072,0.102493074792244,10.2493074792244,2,80.9569748748364,0.762548067192876,6.92520775623269,11.2458094777288,0,398.58517074585,398.5,1.06353922960273
+8738,311974,3796898,312074,3796798,37,87,74.2105263157895,0.761230845256235,38.2486533904223,0.83628841607565,NA,0.042282898510008,0.328947368421053,32.8947368421053,8,88.0146564792271,0.71771616135441,21.3157894736842,0.978563892364502,0,402.087320963542,400.292144775391,4.10767981571715
+8739,311974,3796798,312074,3796698,38,87,41.2742382271468,0.134070207970661,14.430116899532,0.46120587538498,10.3911504415599,0.0814167897389825,0.703601108033241,70.3601108033241,2,98.7419673699421,0.716484724731014,70.0831024930748,4.74284453467121,0,408.803936004639,405.828094482422,2.31288198098929
+8740,311974,3796698,312074,3796598,39,87,48.1994459833795,0.23484781396203,25.9970481096208,0.763955026455026,20.7823006752878,0.0912714370971718,0.786703601108033,78.6703601108033,2,99.0778405807972,0.771730142516659,78.393351800554,5.16210515734176,0,410.264827728271,409.783508300781,0.530596675403808
+8741,311974,3796598,312074,3796498,40,87,54.5706371191136,0.531781831615171,29.449816754961,0.872250423011844,NA,0.0569945764863332,0.590027700831025,59.0027700831025,4,93.4938169440376,0.655064155064155,29.6398891966759,9.59733288724657,0,411.261754353841,410.708557128906,0.974666326546294
+8742,311974,3796498,312074,3796398,41,87,28.2548476454294,0.0688347040923191,12.5784543906469,0.518539101687187,10.3911503376439,0.0665489159220665,0.728531855955679,72.8531855955679,2,98.5255160532786,0.753425508134288,71.4681440443213,18.7215204166369,0,412.483741760254,411.291259765625,0.923010627805865
+8743,311974,3796398,312074,3796298,42,87,100,1.02577206098358,38.7313211798805,0.932456140350877,NA,0.0702296777089175,0.736842105263158,73.6842105263158,1,99.1079895428082,0.869961977186312,73.6842105263158,0,0,413.29515838623,412.466888427734,0.828557913013498
+8744,311974,3796298,312074,3796198,43,87,62.3268698060942,0.607365036108698,33.9490304175628,0.86962962962963,NA,0.0866395836470131,0.828254847645429,82.8254847645429,1,99.4511201625786,0.937947630779809,82.8254847645429,5.87672613456496,0,413.706867218018,412.986541748047,0.871188250738509
+8745,311974,3796198,312074,3796098,44,87,35.7340720221607,0.08705565517558,11.013581312744,0.575716845878136,12.9889379220549,0.0812202009276959,0.800554016620499,80.0554016620499,2,99.0702815077388,0.889399509803921,79.7783933518006,11.4688472005323,0,413.956909179688,412.300018310547,2.02343592843731
+8746,311974,3796098,312074,3795998,45,87,76.7313019390582,0.37386692222691,19.5162920325823,0.574716139497161,14.6953058096335,0.0662805693716822,0.772853185595568,77.2853185595568,2,98.8585222149877,0.689140755911376,76.1772853185596,1.5820883559497,0,407.952726364136,403.649017333984,4.34647356418053
+8747,311974,3795998,312074,3795898,46,87,41.8421052631579,0.0858409251033626,10.6969042931726,0.518943255181787,13.7537972279947,0.0468334527356331,0.355263157894737,35.5263157894737,5,91.9554956222764,0.842375974780156,31.5789473684211,2.83525257817021,0,402.994097391764,402.299987792969,1.38021496052753
+8748,311974,3795898,312074,3795798,47,87,37.1191135734072,0.180859810752368,19.8355626174149,0.733270202020202,10.3911504415599,0.0187217077420171,0.0997229916897507,9.97229916897507,4,73.787450861497,0.685282051282051,4.43213296398892,5.31513510810004,0,402.177183151245,402.062622070312,0.15871776436537
+8749,311974,3795798,312074,3795698,48,87,33.2409972299169,0.0809820048144931,10.7485716252439,0.538137009189641,15.5867256623399,0.017931500857976,0.0637119113573407,6.37119113573407,4,61.8112775694862,0.584648257725181,2.21606648199446,5.28914383183355,0,402.042597452799,402.027374267578,0.025822191151517
+8750,311974,3795698,312074,3795598,49,87,37.3961218836565,0.182209510832609,20.271359613665,0.773968446601942,10.3911504415599,0.0222855879098796,0.135734072022161,13.5734072022161,5,77.7406836809069,0.75206043956044,9.41828254847645,2.561978184447,0,402.049531936646,402.023284912109,0.033000311111111
+8751,311974,3795598,312074,3795498,50,87,51.3157894736842,0.131595757823551,16.4718266748835,0.575452007466868,11.6900442077864,0.0364228219451099,0.339473684210526,33.9473684210526,6,90.0650610760413,0.65211494447741,23.1578947368421,2.98211379014244,0,402.052289326986,402.034057617188,0.0287379818397149
+8752,311974,3795498,312074,3795398,51,87,14.9584487534626,0.0728838043330438,11.3529117800426,0.703703703703704,10.3911504415599,0.0217773580107479,0.130193905817175,13.0193905817175,4,77.6540705555399,0.741321656050955,6.09418282548476,7.26162166798368,0,402.053255081177,402.034637451172,0.0225971476741583
+8753,311974,3795398,312074,3795298,52,87,0,NA,NA,NA,NA,0.0140939447552389,0.0581717451523546,5.81717451523546,3,73.8817695667493,0.668198529411765,4.70914127423823,99.8670469011579,80.6570205688477,402.123120625814,402.084075927734,0.0745644193327426
+8754,311974,3795298,312074,3795198,53,87,0,NA,NA,NA,NA,0.00692668503711943,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.956400966183575,4.43213296398892,94.9759583473206,88.3247756958008,402.304775238037,402.211090087891,0.120949671741373
+8755,311974,3795198,312074,3795098,54,87,0,NA,NA,NA,NA,-0.00945865051433334,0,0,0,NA,NA,0,NA,NA,402.451234817505,402.417541503906,0.0647473671199973
+8756,311974,3795098,312074,3794998,55,87,0,NA,NA,NA,NA,-0.0110585988078075,0,0,0,NA,NA,0,NA,NA,402.304634094238,402.140197753906,0.245737434653531
+8757,311974,3794998,312074,3794898,56,87,0,NA,NA,NA,NA,0.00463746689922541,0,0,0,NA,NA,0,NA,NA,401.575601577759,401.208862304688,0.467369858652915
+8758,311974,3794898,312074,3794798,57,87,0,NA,NA,NA,NA,0.0186522891601065,0.0443213296398892,4.43213296398892,5,51.7273631283365,0.564009661835749,1.93905817174515,85.1398026943207,31.6034507751465,401.141207377116,401.091156005859,0.0991513997175194
+8759,311974,3794798,312074,3794698,58,87,14.2105263157895,0.0485892028886958,11.6380718838025,0.398809523809524,25.8813628188028,0.0128867090912727,0.0263157894736842,2.63157894736842,2,58.2677109531801,0.604989604989605,1.31578947368421,13.9457649230957,10.3911504745483,401.458009719849,401.205322265625,0.375353768738779
+8760,311974,3794698,312074,3794598,59,87,21.3296398891967,0.0692846041190663,15.9597059382072,0.406567565297724,22.9405621809605,0.0150684030121741,0.0886426592797784,8.86426592797784,3,78.630285046821,0.704582651391162,6.92520775623269,13.7047607749701,5.19557523727417,402.29759979248,401.935882568359,0.578842459568915
+8761,311974,3794598,312074,3794498,60,87,22.7146814404432,0.0368918021932691,8.74880958894114,0.568660968660969,16.2960358252141,0.0182920569445779,0.119113573407202,11.9113573407202,6,70.28835206158,0.621593291404612,6.37119113573407,11.0699786696323,0,402.326740264893,402.150970458984,0.220355819345761
+8762,311974,3794498,312074,3794398,61,87,24.3767313019391,0.0791824047075043,15.6407004911262,0.601219149568837,20.7823007445652,0.0193354037581134,0.166204986149584,16.6204986149584,5,77.9606977172524,0.734762330692563,8.03324099722992,10.6316574017207,5.19557523727417,402.248695373535,402.132537841797,0.152368000834378
+8763,311974,3794398,312074,3794298,62,87,27.1052631578947,0.0926794055099198,14.2985788336493,0.701833020229247,16.7243041674623,0.0159443949334385,0.0921052631578947,9.21052631578947,7,60.0286573326056,0.582208895552224,3.15789473684211,12.3870267050607,5.19557523727417,402.130626678467,401.967315673828,0.181441414446251
+8764,311974,3794298,312074,3794198,63,87,21.3296398891967,0.0692846041190663,20.2203028729708,0.452457264957265,20.7823008831198,0.0172828542308984,0.0304709141274238,3.04709141274238,3,56.9154881169365,0.656190476190476,2.21606648199446,17.0403944362294,0,401.970789591471,401.85595703125,0.185800557041133
+8765,311974,3794198,312074,3794098,64,87,9.69529085872576,0.0314930018723029,8.13293768672812,0.520987654320988,18.1362566301814,0.0209249640848659,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,51.8675675392151,27.9790287017822,401.866172790527,401.777160644531,0.120869242749625
+8766,311974,3794098,312074,3793998,65,87,20.7756232686981,0.202455012036233,20.2541816734784,0.808888888888889,NA,0.0195764788025213,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,16.5090443747384,10.3911504745483,401.825190226237,401.762512207031,0.0991139311047776
+8767,311974,3793998,312074,3793898,66,87,40.5263157894737,0.138569208238133,19.5246372004381,0.676902496093719,10.3911504415599,0.0109083092185469,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,8.63800954818726,5.19557523727417,401.801357269287,401.751312255859,0.0782072187672862
+8768,311974,3793898,312074,3793798,67,87,27.4238227146814,0.133620307943914,16.5714379498481,0.56547619047619,10.3911504415599,0.0223889815092573,0.074792243767313,7.4792243767313,3,74.1552685985959,0.748642250382955,5.54016620498615,19.1907847898978,7.34765291213989,401.808601379395,401.759307861328,0.0790604334032937
+8769,311974,3793798,312074,3793698,68,87,28.2548476454294,0.137669408184638,22.9825528829862,0.6628861003861,10.3911504415599,0.0150802531943529,0.0914127423822715,9.14127423822715,3,82.6392329479614,0.857328364950316,8.58725761772853,17.6868897640344,10.3911504745483,401.956100463867,401.812164306641,0.186117821981438
+8770,311974,3793698,312074,3793598,69,87,31.8559556786704,0.155215509227778,16.7026525614089,0.669180492709905,10.3911504415599,0.0116222530661737,0.0277008310249307,2.77008310249307,3,51.5659347755111,0.525312294543064,1.38504155124654,14.5008318901062,0,402.420387268066,402.098937988281,0.358651222948938
+8771,311974,3793598,312074,3793498,70,87,16.5789473684211,0.0283437016850726,7.15333719598676,0.406578314473051,13.3977742863663,0.0125183694917627,0,0,0,NA,NA,0,NA,NA,403.032697041829,402.676055908203,0.634147900762237
+8772,311974,3793498,312074,3793398,71,87,34.0720221606648,0.332026219739422,27.6055439662596,0.7710027100271,NA,0.00415040584800643,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,14.6953058242798,14.6953058242798,404.62281036377,403.319396972656,1.66317803362119
+8773,311974,3793398,312074,3793298,72,87,37.6731301939058,0.183559210912851,25.7149128577836,0.750983606557377,10.3911504415599,-0.0020916886569668,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,15.2895854314168,14.6953058242798,405.792432149251,404.620391845703,1.47524824238662
+8774,311974,3793298,312074,3793198,73,87,22.7146814404432,0.0737836043865381,13.2448468909212,0.684461152882206,11.8258688975844,0.00143984642707039,0.0193905817174515,1.93905817174515,1,65.6593056268038,0.617584745762712,1.93905817174515,35.4012712751116,25.977876663208,406.012950897217,405.572387695312,0.505898646016279
+8775,311974,3793198,312074,3793098,74,87,22.3684210526316,0.229449013641064,30.5935834200863,0.762745098039216,NA,0.00884824077129451,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,21.1021032333374,20.7823009490967,406.333539326986,406.175506591797,0.25832052953823
+8776,311974,3793098,312074,3792998,75,87,13.5734072022161,0.132270607863672,20.2534840091877,0.748299319727891,NA,0.0177401716072157,0.03601108033241,3.601108033241,2,66.7798407649733,0.711845466155811,2.77008310249307,28.5348581167368,25.977876663208,406.461828231812,406.385772705078,0.102406236998028
+8777,311974,3792998,312074,3792898,76,87,3.04709141274238,0.0296934017653141,7.13875769622072,0.560606060606061,NA,0.017743310362814,0,0,0,NA,NA,0,NA,NA,406.584322611491,406.501800537109,0.180375505733421
+8778,311974,3792898,312074,3792798,77,87,0,NA,NA,NA,NA,0.0154748084103006,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,72.2062273025513,54.2434005737305,406.858919143677,406.643829345703,0.31597953324265
+8779,311974,3792798,312074,3792698,78,87,4.47368421052632,0.0458898027282127,9.43118160977838,0.647058823529412,NA,0.0137919101974005,0.0289473684210526,2.89473684210526,6,31.0506569467344,0.313459801264679,0.789473684210526,46.6466178027066,11.6176595687866,407.095179239909,406.932281494141,0.577684743564744
+8780,311974,3792698,312074,3792598,79,87,7.4792243767313,0.0364419021665219,7.03968737550806,0.333333333333333,15.5867256623399,0.0223875807591501,0.0554016620498615,5.54016620498615,5,60.6986600060306,0.419449437139344,2.49307479224377,24.1785759925842,10.3911504745483,407.848621368408,407.305816650391,0.770019402765288
+8781,311974,3792598,312074,3792498,80,87,19.9445983379501,0.0647856038515944,14.7458019722297,0.566606170598911,15.5867256623399,0.0246590318892637,0.135734072022161,13.5734072022161,7,69.7017712408926,0.600541819291819,4.70914127423823,13.4537860130777,0,408.689753214518,407.991302490234,1.20062401187273
+8782,311974,3792498,312074,3792398,81,87,39.0581717451524,0.380615422628117,26.0941236691568,0.839243498817967,NA,0.0406691719994911,0.437673130193906,43.7673130193906,2,94.9534187091824,0.883489043655512,41.2742382271468,4.93083519573453,0,409.800191879272,409.095184326172,1.07619868197005
+8783,311974,3792398,312074,3792298,82,87,25.7894736842105,0.264541215727344,27.2466319126951,0.738095238095238,NA,0.0371329760895031,0.342105263157895,34.2105263157895,2,95.3889074237664,0.82042194092827,33.4210526315789,8.30953212151161,0,410.722068786621,410.292205810547,0.862982453885932
+8784,311974,3792298,312074,3792198,83,87,28.808864265928,0.140368808345121,25.2905946441028,0.669852573713144,15.5867256623399,0.0283021671156376,0.152354570637119,15.2354570637119,7,71.7801443816163,0.615032679738562,4.43213296398892,12.2037071921609,0,410.438011169434,409.846374511719,0.663838200157882
+8785,311974,3792198,312074,3792098,84,87,43.213296398892,0.105276606258841,13.459065517901,0.725184470493187,25.9778758441098,0.041466954040032,0.343490304709141,34.3490304709141,5,86.329307523031,0.756286919831224,16.6204986149584,3.54083454224371,0,409.24609375,408.847137451172,0.551359000879474
+8786,311974,3792098,312074,3791998,85,87,29.0858725761773,0.0708592542126814,9.02065214612767,0.561889030974709,20.9109165742957,0.0274953150343672,0.182825484764543,18.2825484764543,3,86.9585050482311,0.787177597641857,13.0193905817175,3.44126380573619,0,408.880714416504,408.811004638672,0.27872926768011
+8787,311974,3791998,312074,3791898,86,87,5.78947368421053,0.0197956011768761,6.46534741015194,0.372685185185185,37.0648078995182,0.00891184017604617,0.0157894736842105,1.57894736842105,2,46.2006860361741,0.564553093964859,1.05263157894737,28.3714995384216,14.6953058242798,409.935062408447,409.088073730469,1.02104398654265
+8788,311974,3791898,312074,3791798,87,87,37.9501385041551,0.184908910993092,23.6250482509218,0.691728234101116,20.7823008831198,0.0100211254148512,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,11.1812453951154,10.3911504745483,411.039004007975,410.824340820312,0.490749053807721
+8789,311974,3791798,312074,3791698,88,87,19.6675900277008,0.0958287056971501,26.2223585495822,0.572605204872647,15.5867256623399,0.0162848636242929,0.0637119113573407,6.37119113573407,5,62.9778965599047,0.643984220907298,2.77008310249307,18.4505205154419,5.19557523727417,411.595514297485,411.297546386719,0.348178293780454
+8790,311974,3791698,312074,3791598,89,87,27.9778393351801,0.0681598540521983,11.6401080231062,0.559319382647386,10.3911503636229,0.0183714772155631,0.0526315789473684,5.26315789473684,4,61.9247738278611,0.563218390804598,2.77008310249307,9.39735896963822,0,411.504623413086,411.254211425781,0.376546405944203
+8791,311974,3791598,312074,3791498,90,87,16.5789473684211,0.0566874033701451,16.8859320551535,0.521505376344086,19.7174933726169,0.0237929023481372,0.155263157894737,15.5263157894737,6,78.8136521247718,0.698246900006108,9.73684210526316,11.457764213368,0,411.149587631226,411.031585693359,0.183636947653436
+8792,311974,3791498,312074,3791398,91,87,26.0387811634349,0.0845812050284705,16.9530380952107,0.547937061003263,10.7999867452537,0.0295671341506864,0.210526315789474,21.0526315789474,3,85.1411630835327,0.735323383084577,13.5734072022161,7.61659107710186,0,411.304178873698,411.06201171875,0.229958737127907
+8793,311974,3791398,312074,3791298,92,87,31.5789473684211,0.153865809147537,24.0896109162761,0.744907407407407,10.3911504415599,0.041165054525671,0.409972299168975,40.9972299168975,3,95.2093138372512,0.768601770524748,37.9501385041551,6.29036408179515,0,411.448457717896,411.355041503906,0.15200202215708
+8794,311974,3791298,312074,3791198,93,87,32.6869806094183,0.0796323047342515,14.5459113041133,0.412166613957411,15.5867255584239,0.0334150013815382,0.329639889196676,32.9639889196676,3,94.0790135504281,0.765189776553413,31.0249307479224,8.96002411241291,0,411.616864522298,411.319885253906,0.415857678307177
+8795,311974,3791198,312074,3791098,94,87,22.6315789473684,0.0773828046005156,15.5450701214946,0.53906432748538,12.6435415049719,0.0246364348595594,0.163157894736842,16.3157894736842,5,79.9225208394796,0.6680642907058,9.47368421052632,7.33774172875189,0,411.520519256592,411.252258300781,0.403708396602815
+8796,311974,3791098,312074,3790998,95,87,12.4653739612188,0.12147300722174,25.3301037480491,0.659259259259259,NA,0.0179049078771308,0.0664819944598338,6.64819944598338,4,67.0704357899908,0.718100890207715,3.8781163434903,9.11053204536438,0,411.32462310791,411.229858398438,0.287349132268884
+8797,311974,3790998,312074,3790898,96,87,13.0193905817175,0.0253743615085412,4.95386251026529,0.356168831168831,22.2615588483499,0.0190539595852665,0.0775623268698061,7.75623268698061,5,63.5309598178908,0.68682015348682,2.77008310249307,8.82205586774009,0,411.575796127319,411.153137207031,0.823704358399678
+8798,311974,3790898,312074,3790798,97,87,13.0193905817175,0.0253743615085412,6.28986212183834,0.300378787878788,23.1977811665748,0.0302502756362792,0.207756232686981,20.7756232686981,8,81.0668513037205,0.607941301123119,11.6343490304709,10.1026420084635,0,412.162432352702,411.507385253906,1.41406608727574
+8799,311974,3790798,312074,3790698,98,87,29.4736842105263,0.0604665635948215,10.8659900631682,0.35590508667235,21.1825314022692,0.0305624926241331,0.226315789473684,22.6315789473684,5,81.8368125749482,0.687430527766662,8.1578947368421,5.33948662114698,0,413.0260887146,412.134643554688,1.30030677050716
+8800,311974,3790698,312074,3790598,99,87,42.382271468144,0.103252056138479,13.6152514896024,0.639976445123504,11.6900441558284,0.0259712104930392,0.274853801169591,27.4853801169591,4,92.4473291403776,0.802995391705069,26.0233918128655,1.28466902387903,0,413.812017440796,413.652954101562,0.346809263650182
+8801,312074,3800598,312174,3800498,0,88,49.0304709141274,0.159264609468503,12.2758234818939,0.319604086845466,18.0938692761782,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.828137715658,388.655181884766,0.216218721275347
+8802,312074,3800498,312174,3800398,1,88,25.5263157894737,0.261841815566861,28.2474274903359,0.793814432989691,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.210215250651,389.014068603516,0.406582501234743
+8803,312074,3800398,312174,3800298,2,88,2.49307479224377,0.0242946014443479,5.86191415214983,0.574074074074074,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.196243286133,389.602081298828,0.779518320945236
+8804,312074,3800298,312174,3800198,3,88,49.0304709141274,0.238896914202754,15.2824070808536,0.431818181818182,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.131100124783,389.387115478516,1.14605572950084
+8805,312074,3800198,312174,3800098,4,88,48.1994459833795,0.23484781396203,13.3343348512638,0.44364161849711,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.942695617676,387.854217529297,1.53622539260889
+8806,312074,3800098,312174,3799998,5,88,10.2631578947368,0.0526383031294205,7.78310282011689,0.45045045045045,26.4923391803511,0.0216355310729724,0.111842105263158,11.1842105263158,2,73.9836197449725,0.819851851851852,9.21052631578947,34.0902457517736,20.7823009490967,388.974134657118,388.172698974609,1.23342867233931
+8807,312074,3799998,312174,3799898,6,88,26.8698060941828,0.0872806051889536,11.3615871427864,0.550950080515298,22.51415909607,0.0109707169678405,0.0969529085872576,9.69529085872576,3,76.3915615499488,0.809075523587899,5.81717451523546,25.3620941570827,7.34765291213989,389.302271525065,388.497833251953,1.05607284641503
+8808,312074,3799898,312174,3799798,7,88,18.2825484764543,0.0890802052959424,13.2344805452393,0.715337132003799,41.5646013505757,0.0106323464452566,0.0997229916897507,9.97229916897507,2,83.4473804199243,0.833384615384615,8.58725761772853,17.4526663488812,5.19557523727417,389.343889024523,388.551666259766,1.04773089935865
+8809,312074,3799798,312174,3799698,8,88,9.14127423822715,0.0222700513239856,8.51336032312587,0.367763157894737,11.99667140514,0.0174059009615345,0.0664819944598338,6.64819944598338,5,64.5547033304985,0.63353115727003,3.601108033241,44.5134884317716,7.34765291213989,389.914726257324,389.5771484375,0.392779959705576
+8810,312074,3799698,312174,3799598,9,88,0,NA,NA,NA,NA,0.0252286694334639,0.213157894736842,21.3157894736842,4,82.3447857940204,0.735228539576366,7.10526315789474,46.8166848641855,20.7823009490967,389.710252549913,389.568481445312,0.250052261243944
+8811,312074,3799598,312174,3799498,10,88,1.93905817174515,0.0188958011233817,7.64780833824244,0.333333333333333,NA,0.0192048834964474,0.202216066481994,20.2216066481994,4,82.8770224775839,0.794352213541667,7.75623268698061,32.3085775375366,14.6953058242798,389.584894816081,389.527282714844,0.143817450511365
+8812,312074,3799498,312174,3799398,11,88,7.20221606648199,0.0350922020862803,9.16866129383486,0.522222222222222,59.2386714907549,0.0118490933069763,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,29.1370887756348,27.9790287017822,390.236836751302,389.673828125,0.654654823824105
+8813,312074,3799398,312174,3799298,12,88,45.1523545706371,0.220001113079373,21.0175943588052,0.56747311827957,15.5867255064659,0.0136282872037373,0.0443213296398892,4.43213296398892,4,53.6979759799493,0.607608695652174,1.38504155124654,8.80941930413246,0,391.458719889323,390.937072753906,0.860267539879294
+8814,312074,3799298,312174,3799198,13,88,46.8421052631579,0.480493228565992,35.1372113052238,0.718164794007491,NA,0.021148537878808,0.0763157894736842,7.63157894736842,9,50.2722924139485,0.44717221312966,1.84210526315789,9.25472660722404,0,392.723157246908,392.158538818359,0.537418222291854
+8815,312074,3799198,312174,3799098,14,88,39.8891966759003,0.129571207703189,13.5321648297327,0.429276895943563,22.5141592034498,0.0164863941331293,0.03601108033241,3.601108033241,3,58.3268715904617,0.711845466155811,1.93905817174515,13.9248526279743,5.19557523727417,393.146579318576,392.884826660156,0.290977687701899
+8816,312074,3799098,312174,3798998,15,88,42.1052631578947,0.102577206098358,16.5170108271801,0.685690631342805,10.3911503896019,0.0144957914832058,0.0304709141274238,3.04709141274238,4,43.2526735237033,0.449904761904762,1.10803324099723,16.1975330439481,5.19557523727417,393.501154581706,392.993225097656,0.266836567547543
+8817,312074,3798998,312174,3798898,16,88,33.5180055401662,0.108875806472818,13.430686353775,0.505517296927228,25.9778760415502,0.0284558984935845,0.171745152354571,17.1745152354571,4,83.1053419877356,0.798773690078038,13.8504155124654,8.22952284351472,0,393.552866617839,393.419189453125,0.25200339129653
+8818,312074,3798898,312174,3798798,17,88,50.5263157894737,0.259142415406378,30.7923184022519,0.760671936758893,10.3911504415599,0.0271848622374436,0.189473684210526,18.9473684210526,4,85.7935503021049,0.834850189180898,10.5263157894737,11.9969511495696,0,393.338292439779,393.183685302734,0.261232639311704
+8819,312074,3798798,312174,3798698,18,88,24.6537396121884,0.0800822047609987,14.0188652429327,0.492361857023511,13.2217232901287,0.0235561065923537,0.149584487534626,14.9584487534626,4,81.3518287159171,0.709187068754159,8.86426592797784,22.3362719394543,5.19557523727417,393.331102159288,393.100372314453,0.342307762133681
+8820,312074,3798698,312174,3798598,19,88,2.77008310249307,0.026994001604831,7.6382739085088,0.516666666666667,NA,0.0134143383178994,0.038781163434903,3.8781163434903,3,60.5941626698857,0.635878962536023,2.21606648199446,25.5945958409991,11.6176595687866,393.649551391602,393.161071777344,0.629481147506315
+8821,312074,3798598,312174,3798498,20,88,2.21606648199446,0.00719840042795494,2.59805133652451,0.166666666666667,59.8010084262096,0.0344989863493598,0.279778393351801,27.9778393351801,1,95.0523852144501,0.953973650658734,27.9778393351801,27.8086690336171,10.3911504745483,394.711364746094,394.090881347656,0.743588200599886
+8822,312074,3798498,312174,3798398,21,88,47.8947368421053,0.491290829207925,32.4280872961659,0.864468864468865,NA,0.0321469438583575,0.205263157894737,20.5263157894737,6,78.2344081732336,0.68998944236491,7.63157894736842,16.7231799639188,0,395.65443166097,395.273406982422,0.395796860589905
+8823,312074,3798398,312174,3798298,22,88,34.6260387811634,0.112475006686796,13.6205045257002,0.568708452041785,25.9778759653451,0.0369859576088065,0.279778393351801,27.9778393351801,5,85.8303859542658,0.792881427964301,14.9584487534626,10.6969152205061,0,396.132558186849,395.935119628906,0.317731474534289
+8824,312074,3798298,312174,3798198,23,88,73.1301939058172,0.712641642367539,39.1815098258186,0.849747474747475,NA,0.0461586619876622,0.409972299168975,40.9972299168975,4,91.2883316763917,0.749839751918646,30.4709141274238,3.25124603993184,0,396.720189412435,396.412628173828,0.293825212254255
+8825,312074,3798198,312174,3798098,24,88,34.9030470914127,0.11337480674029,12.6562582043729,0.245967741935484,33.0283890578144,0.0446963483384297,0.357340720221607,35.7340720221607,5,90.467369892953,0.761628760088041,26.3157894736842,10.175217314284,0,396.959235297309,396.842956542969,0.188694074703312
+8826,312074,3798098,312174,3797998,25,88,46.8421052631579,0.0960986457131984,7.77497791154565,0.332791327913279,16.6258406649295,0.0155698597095819,0.0342105263157895,3.42105263157895,4,50.7201874484944,0.539812291855889,1.31578947368421,0.799319267272949,0,397.304128011068,397.120910644531,0.237390532465629
+8827,312074,3797998,312174,3797898,26,88,55.6786703601108,0.108515886451421,10.9919059286947,0.566569664902998,12.4693805298719,0.0297169457836714,0.238227146814404,23.8227146814404,5,83.2041210363734,0.759762329174094,13.5734072022161,2.15023296932841,0,397.780743916829,397.533508300781,0.306887625831482
+8828,312074,3797898,312174,3797798,27,88,32.409972299169,0.157914909388261,27.3477949571509,0.589285714285714,15.5867256623399,0.022977396680224,0.171745152354571,17.1745152354571,6,81.5646787528111,0.675802056236839,11.9113573407202,4.43273228983725,0,398.290839301215,398.089996337891,0.295335556165135
+8829,312074,3797798,312174,3797698,28,88,36.8421052631579,0.0598367035573754,8.79572677919229,0.467966617933723,15.5867256277012,0.0190046838052541,0.127423822714681,12.7423822714681,7,66.6307281486219,0.632682132682133,3.32409972299169,3.12376667105633,0,398.707298278809,398.502502441406,0.243132569096554
+8830,312074,3797698,312174,3797598,29,88,81.5789473684211,0.836814049749762,37.5688832483712,0.88010752688172,NA,0.0680567438708845,0.757894736842105,75.7894736842105,2,98.6699308867485,0.885689074282047,75,0.61774380505085,0,399.018344455295,398.953491210938,0.162148171377447
+8831,312074,3797598,312174,3797498,30,88,79.7783933518006,0.777427246219133,36.4447175174942,0.881365740740741,NA,0.0786060931379043,0.806094182825485,80.6094182825485,1,99.3677793036386,0.820867067119352,80.6094182825485,1.19865246736717,0,399.13542175293,399.030090332031,0.18910506145338
+8832,312074,3797498,312174,3797398,31,88,88.6426592797784,0.863808051354593,35.9527587157359,0.914583333333333,NA,0.0551919723545534,0.623268698060942,62.3268698060942,2,97.9872561062425,0.747198879551821,61.218836565097,0.226952588823107,0,399.130527072483,399.041809082031,0.145074683418045
+8833,312074,3797398,312174,3797298,32,88,80.0554016620499,0.780126646379616,35.0879082048144,0.891003460207612,NA,0.0524867216274761,0.515235457063712,51.5235457063712,6,94.7368452775216,0.712159468438538,45.983379501385,2.04482518985707,0,399.173762003581,399.055358886719,0.13808107262303
+8834,312074,3797298,312174,3797198,33,88,80.7894736842105,0.414357924634156,17.9512494792835,0.440631808278867,20.7823008831198,0.0520907529317284,0.518421052631579,51.8421052631579,2,97.5956375534905,0.709858522344487,51.3157894736842,0.459273384307242,0,399.291826036241,399.25390625,0.0508767664085175
+8835,312074,3797198,312174,3797098,34,88,40.1662049861496,0.195706511635025,16.9523288706825,0.497086247086247,10.3911504415599,0.0161669583222619,0.0886426592797784,8.86426592797784,4,68.5301196782893,0.641278933832125,2.77008310249307,0.649446904659271,0,398.833488464355,398.5,0.452913979659814
+8836,312074,3797098,312174,3796998,35,88,10.803324099723,0.0526383031294205,12.4881152021541,0.565804597701149,78.6233198686346,-0.0145759065571006,0.0332409972299169,3.32409972299169,1,75.0842913483253,0.878307770099444,3.32409972299169,9.59818426767985,0,398.533226860894,398.5,0.256419855634555
+8837,312074,3796998,312174,3796898,36,88,0,NA,NA,NA,NA,0.0249614830948271,0,0,0,NA,NA,0,NA,NA,398.50008392334,398.5,0.346208433459883
+8838,312074,3796898,312174,3796798,37,88,71.8421052631579,0.736936243811887,35.4177844982949,0.868131868131868,NA,0.0190369960448726,0.115789473684211,11.5789473684211,2,84.4045697398494,0.862451737451737,8.94736842105263,0.118081255392595,0,400.847510443793,398.750671386719,3.19580950078763
+8839,312074,3796798,312174,3796698,38,88,50.6925207756233,0.123497557342102,10.7460330320751,0.450542406311637,16.199980031068,0.0744785943582597,0.656509695290859,65.6509695290859,2,97.4490689455811,0.730557780528654,60.1108033240997,5.43143848024843,0,408.240926106771,404.769622802734,3.09840493112357
+8840,312074,3796698,312174,3796598,39,88,24.0997229916898,0.0587119534905075,10.5639402129606,0.543209527400704,10.3911503896019,0.108244419975046,0.878116343490305,87.8116343490305,1,99.626964905704,0.766760413499544,87.8116343490305,11.5522469300953,0,410.075706481934,409.804443359375,0.356907224807506
+8841,312074,3796598,312174,3796498,40,88,19.1135734072022,0.0620862036911113,9.09215337822025,0.591861598440546,11.6176592829322,0.0668335790272513,0.60387811634349,60.387811634349,2,95.7905414947082,0.769936959592132,41.2742382271468,26.0210335385909,0,410.729437934028,410.439208984375,0.453480676983651
+8842,312074,3796498,312174,3796398,41,88,16.8975069252078,0.0548878032631564,10.7502889225342,0.611827956989247,33.7484353320395,0.0474669547266707,0.493074792243767,49.3074792243767,2,95.9348029625824,0.856096467188201,43.4903047091413,25.7266773722145,0,411.736752827962,411.139495849609,0.841478356749567
+8843,312074,3796398,312174,3796298,42,88,87.6315789473684,0.898900253440873,36.8808449048098,0.923923923923924,NA,0.0628773525329674,0.615789473684211,61.5789473684211,2,97.0494881547782,0.827278141751042,57.3684210526316,0.401237573379125,0,412.632673475477,412.096801757812,0.965372696994603
+8844,312074,3796298,312174,3796198,43,88,95.5678670360111,0.93129305536667,37.5012383449427,0.915942028985507,NA,0.0819570662768511,0.911357340720222,91.1357340720222,1,99.7360893989003,0.854669887278584,91.1357340720222,0.196045533501993,0,412.270462036133,410.858947753906,1.34228090653832
+8845,312074,3796198,312174,3796098,44,88,35.4570637119114,0.172761610270919,17.7997430695698,0.775752454530823,46.7601769870196,0.0397392946996915,0.354570637119114,35.4570637119114,4,89.744691737741,0.800512074269189,22.9916897506925,4.08810390159488,0,411.458658854167,411.037200927734,1.83159640724431
+8846,312074,3796098,312174,3795998,45,88,13.8504155124654,0.0674850040120775,11.0356614788212,0.625097125097125,20.7823006752878,0.0191609480710432,0.271468144044321,27.1468144044321,1,94.8928342519489,0.906412029035603,27.1468144044321,4.5203122216828,0,406.113978068034,403.299346923828,3.71304843396724
+8847,312074,3795998,312174,3795898,46,88,37.1052631578947,0.126871807542706,11.0281168427362,0.396593673965937,12.1230087272512,0.0248744089517889,0.0921052631578947,9.21052631578947,3,76.5352383687349,0.715142428785607,4.73684210526316,2.12011677878244,0,402.487816704644,402.003997802734,0.836924736570175
+8848,312074,3795898,312174,3795798,47,88,34.9030470914127,0.340124420220871,24.1145395772374,0.867724867724868,NA,-0.00370937655885463,0,0,0,NA,NA,0,NA,NA,402.067527770996,402.018890380859,0.0806239047842193
+8849,312074,3795798,312174,3795698,48,88,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,-0.00213517793168432,0,0,0,NA,NA,0,NA,NA,402.06207953559,402.044525146484,0.0359672963256621
+8850,312074,3795698,312174,3795598,49,88,0,NA,NA,NA,NA,0.00149831689547652,0,0,0,NA,NA,0,NA,NA,402.137522379557,402.080780029297,0.064515412410358
+8851,312074,3795598,312174,3795498,50,88,0,NA,NA,NA,NA,0.000263558728801396,0,0,0,NA,NA,0,NA,NA,402.129279242622,402.082946777344,0.0721405980275497
+8852,312074,3795498,312174,3795398,51,88,0,NA,NA,NA,NA,0.00303684172533855,0,0,0,NA,NA,0,NA,NA,402.084342956543,402.063659667969,0.031197447255385
+8853,312074,3795398,312174,3795298,52,88,0,NA,NA,NA,NA,0.00201141932811476,0,0,0,NA,NA,0,NA,NA,402.14549085829,402.093048095703,0.0900683121222349
+8854,312074,3795298,312174,3795198,53,88,0,NA,NA,NA,NA,0.0105991357296284,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,51.170482635498,51.170482635498,402.378626505534,402.230773925781,0.19105544154131
+8855,312074,3795198,312174,3795098,54,88,0,NA,NA,NA,NA,-0.00720200897591631,0,0,0,NA,NA,0,NA,NA,402.46654510498,402.119812011719,0.261750946312898
+8856,312074,3795098,312174,3794998,55,88,0,NA,NA,NA,NA,-0.00957935995830564,0,0,0,NA,NA,0,NA,NA,402.057508680556,401.721221923828,0.4641001100845
+8857,312074,3794998,312174,3794898,56,88,0,NA,NA,NA,NA,0.00730626092363284,0,0,0,NA,NA,0,NA,NA,401.379763285319,401.085327148438,0.429288644495033
+8858,312074,3794898,312174,3794798,57,88,0,NA,NA,NA,NA,0.0168829303577612,0.0277008310249307,2.77008310249307,1,72.175958031556,0.920885382423844,2.77008310249307,86.1816413879395,74.3893203735352,401.106892903646,401.054534912109,0.110618426838052
+8859,312074,3794798,312174,3794698,58,88,3.42105263157895,0.0350922020862803,7.1151292218603,0.641025641025641,NA,0.0201271172639071,0.0263157894736842,2.63157894736842,3,50.8400314805911,0.604989604989605,1.31578947368421,24.6098377227783,15.5867252349854,401.631459554036,401.168884277344,0.735738586507804
+8860,312074,3794698,312174,3794598,59,88,0,NA,NA,NA,NA,0.0175689003390642,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,60.847530909947,52.2148818969727,403.119862874349,402.509033203125,0.70460619688627
+8861,312074,3794598,312174,3794498,60,88,16.0664819944598,0.15656520930802,25.9541394002736,0.71551724137931,NA,0.018965902135326,0.0637119113573407,6.37119113573407,3,70.2372263254062,0.762656147271532,4.15512465373961,5.5561607816945,0,402.801816304525,402.333221435547,0.709862396573559
+8862,312074,3794498,312174,3794398,61,88,1.66204986149584,0.00809820048144931,3.13580703139918,0.291666666666667,23.2353187052823,0.0229450350290231,0.0692520775623269,6.92520775623269,4,73.1605262479135,0.785119047619048,5.81717451523546,12.3390268325806,0,402.447886149089,402.232208251953,0.506085336590546
+8863,312074,3794398,312174,3794298,62,88,16.8421052631579,0.0863808051354593,18.6284724861272,0.649249061326658,25.9778758441098,0.0252033511420258,0.105263157894737,10.5263157894737,4,78.0129684077389,0.733099209833187,7.63157894736842,9.10780370235443,0,402.189198811849,401.986419677734,0.381518876741954
+8864,312074,3794298,312174,3794198,63,88,0,NA,NA,NA,NA,0.0251641307929737,0.0138504155124654,1.38504155124654,1,58.34967603056,1,1.38504155124654,36.5300151824951,30.2951488494873,401.956268310547,401.852111816406,0.183267961674911
+8865,312074,3794198,312174,3794098,64,88,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,0.0223130208267276,0.0166204986149584,1.66204986149584,3,35.1851851851852,0.564185110663984,1.10803324099723,41.9389053980509,20.7823009490967,401.833516438802,401.7744140625,0.0981609213064919
+8866,312074,3794098,312174,3793998,65,88,0,NA,NA,NA,NA,0.0171124621319993,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,90.73681640625,90.73681640625,401.785074869792,401.757202148438,0.0585495767904146
+8867,312074,3793998,312174,3793898,66,88,0,NA,NA,NA,NA,0.00949914749013547,0.0157894736842105,1.57894736842105,3,35.13575977921,0.564553093964859,1.05263157894737,38.9990010261536,10.3911504745483,401.759760538737,401.75,0.0284851345237904
+8868,312074,3793898,312174,3793798,67,88,0,NA,NA,NA,NA,0.0252893669965291,0.204986149584488,20.4986149584488,4,87.3717092196138,0.825837577057089,17.1745152354571,72.9535089827873,10.3911504745483,401.768544514974,401.75,0.0377124612150128
+8869,312074,3793798,312174,3793698,68,88,0,NA,NA,NA,NA,0.0213550561135872,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,88.4823417663574,72.9233703613281,401.892639160156,401.809326171875,0.123009796275673
+8870,312074,3793698,312174,3793598,69,88,0,NA,NA,NA,NA,0.0310537458401963,0.113573407202216,11.3573407202216,4,77.8869988105645,0.738405797101449,7.20221606648199,79.5726540728313,46.7601776123047,402.327016194661,402.049987792969,0.384902555945709
+8871,312074,3793598,312174,3793498,70,88,18.4210526315789,0.0629860037446057,14.9409018792035,0.510974274767378,10.3911503722826,0.0103781201205182,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,21.3020819255284,5.19557523727417,403.338840060764,402.862640380859,2.60902086993968
+8872,312074,3793498,312174,3793398,71,88,0,NA,NA,NA,NA,0.0186702009722016,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,66.1970672607422,62.5630111694336,408.914510091146,406.115753173828,4.37702246629126
+8873,312074,3793398,312174,3793298,72,88,0,NA,NA,NA,NA,0.00650648413868711,0.0277008310249307,2.77008310249307,1,72.175958031556,1,2.77008310249307,46.7601776123047,41.5646018981934,408.013481987847,407.504211425781,0.693205872539489
+8874,312074,3793298,312174,3793198,73,88,11.9113573407202,0.0580371034503867,10.2014446136048,0.678846153846154,25.9778758441098,0.0155384650742061,0.0637119113573407,6.37119113573407,2,74.5713123522124,0.762656147271532,3.32409972299169,24.6652098531308,10.3911504745483,407.075892130534,406.321380615234,0.926223060246615
+8875,312074,3793198,312174,3793098,74,88,18.4210526315789,0.0944790056169086,15.632773076752,0.656522855675398,66.5358269875001,0.0212580100437519,0.0184210526315789,1.84210526315789,3,37.0208748079497,0.490616621983914,0.789473684210526,20.483715397971,7.34765291213989,406.735432942708,406.471801757812,0.411167442690804
+8876,312074,3793098,312174,3792998,75,88,0,NA,NA,NA,NA,0.0237357897103191,0.0193905817174515,1.93905817174515,3,38.8544415648643,0.617584745762712,1.10803324099723,36.8145728792463,14.6953058242798,407.065195719401,406.623229980469,0.728773738815765
+8877,312074,3792998,312174,3792898,76,88,7.75623268698061,0.0755832044935268,12.3601431145931,0.648809523809524,NA,0.0177611672972937,0.0193905817174515,1.93905817174515,3,37.0729520016246,0.490112994350283,0.831024930747922,23.6992582593645,16.4298515319824,406.975219726562,406.702575683594,0.705080567046882
+8878,312074,3792898,312174,3792798,77,88,10.803324099723,0.105276606258841,18.9155315947271,0.705128205128205,NA,0.0235850560208628,0.0914127423822715,9.14127423822715,2,79.6978666593051,0.836946702800361,5.54016620498615,42.1867830103094,25.977876663208,408.068885803223,406.987579345703,1.44063725590937
+8879,312074,3792798,312174,3792698,78,88,0,NA,NA,NA,NA,0.0138293170784915,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,69.8757349650065,67.7420120239258,409.030232747396,408.10791015625,1.53106027877796
+8880,312074,3792698,312174,3792598,79,88,6.64819944598338,0.0323928019257972,7.24790288061969,0.4875,10.3911503376439,0.0196511429152693,0.0470914127423823,4.70914127423823,3,63.3221717832135,0.748139534883721,2.49307479224377,6.48594990898581,0,409.90690612793,408.459106445312,1.94402300232168
+8881,312074,3792598,312174,3792498,80,88,0,NA,NA,NA,NA,0.0261794746566565,0.116343490304709,11.6343490304709,10,58.8574262228817,0.521833193518478,2.77008310249307,54.0801501501174,27.9790287017822,410.615759955512,408.527008056641,2.29051228521369
+8882,312074,3792498,312174,3792398,81,88,14.6814404432133,0.143068208505604,25.1670714600058,0.710691823899371,NA,0.0276406591444843,0.152354570637119,15.2354570637119,6,78.2729838762151,0.590196078431373,7.4792243767313,16.8238054969094,0,411.851979573568,410.572998046875,1.40627640534391
+8883,312074,3792398,312174,3792298,82,88,0,NA,NA,NA,NA,0.0292394059780667,0.139473684210526,13.9473684210526,8,73.1191387379066,0.655207178142958,7.63157894736842,60.3338228261696,16.4298515319824,411.98685031467,411.518768310547,0.680474469879455
+8884,312074,3792298,312174,3792198,83,88,7.20221606648199,0.0233948013908536,6.78526544076489,0.400871459694989,21.9064684936587,0.0202069730215162,0.0470914127423823,4.70914127423823,2,69.4674072116699,0.706162790697674,2.49307479224377,22.4817492260652,5.19557523727417,411.121004740397,410.380584716797,0.753652539499136
+8885,312074,3792198,312174,3792098,84,88,60.9418282548476,0.296934017653141,26.4174496521877,0.823096754625417,20.7823006752878,0.0468242105658984,0.393351800554017,39.3351800554017,4,92.3144947565802,0.797119775201967,32.409972299169,3.95392402796678,0,409.607297261556,408.834228515625,0.804882927411495
+8886,312074,3792098,312174,3791998,85,88,29.6398891966759,0.288835817171692,25.9562272000347,0.838006230529595,NA,0.0342941877867193,0.279778393351801,27.9778393351801,1,95.0523852144501,0.915618359541012,27.9778393351801,2.4883014471224,0,409.678300645616,408.979553222656,1.19016835288882
+8887,312074,3791998,312174,3791898,86,88,4.73684210526316,0.0485892028886958,9.34949446833228,0.666666666666667,NA,0.0364277811173356,0.218421052631579,21.8421052631579,6,83.7266845664259,0.808515998992189,17.1052631578947,42.333630205637,15.5867252349854,411.157346089681,409.790832519531,1.69387434808366
+8888,312074,3791898,312174,3791798,87,88,17.1745152354571,0.0557876033166508,10.3101272134949,0.658646908646909,24.6724206099878,0.031850415241712,0.213296398891967,21.3296398891967,7,75.6061556663455,0.654178748964374,5.54016620498615,15.6467504810977,0,412.088270399306,411.192321777344,1.06064508821945
+8889,312074,3791798,312174,3791698,88,88,2.77008310249307,0.026994001604831,6.60605781292274,0.55,NA,0.0229248647459388,0.0831024930747922,8.31024930747922,3,79.1242293766554,0.799679388371663,7.20221606648199,47.524994913737,11.6176595687866,412.068682352702,411.567626953125,0.52918650131575
+8890,312074,3791698,312174,3791598,89,88,2.49307479224377,0.0242946014443479,5.57476804427454,0.592592592592593,NA,0.005677744176799,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,24.2460180918376,20.7823009490967,411.897532145182,411.391967773438,0.493866426896616
+8891,312074,3791598,312174,3791498,90,88,0,NA,NA,NA,NA,0.00441084471647053,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,60.900842666626,59.2386741638184,411.56361134847,411.312561035156,0.465351882080037
+8892,312074,3791498,312174,3791398,91,88,14.9584487534626,0.0728838043330438,13.0294424041162,0.629971590909091,15.5867256623399,0.0252758782239917,0.119113573407202,11.9113573407202,4,84.3516924851902,0.779262753319357,10.803324099723,8.28715141429458,0,411.62104288737,411.410705566406,0.266426417113931
+8893,312074,3791398,312174,3791298,92,88,29.6398891966759,0.0962786057238973,17.3408735289832,0.670813612801442,15.586725606918,0.0369097883188278,0.293628808864266,29.3628808864266,4,88.2946602830522,0.733169079149985,16.8975069252078,12.4707999499339,0,411.634272257487,411.440002441406,0.221576184359445
+8894,312074,3791298,312174,3791198,93,88,36.01108033241,0.0701844041725607,13.0213186548885,0.626038647342995,13.1519275602041,0.0395588697071498,0.335180055401662,33.5180055401662,5,86.9000802317105,0.623958333333333,14.9584487534626,4.99555933376974,0,411.535424126519,411.368621826172,0.337678382290329
+8895,312074,3791198,312174,3791098,94,88,20.7894736842105,0.071084204226055,11.805548878097,0.6996996996997,15.5867255064659,0.0337034937800222,0.252631578947368,25.2631578947368,8,79.0478733563298,0.719947592531936,8.68421052631579,13.604110126694,0,411.490765889486,411.321350097656,0.373282219510923
+8896,312074,3791098,312174,3790998,95,88,8.86426592797784,0.0863808051354593,11.6554754415027,0.739583333333333,NA,0.0350098582030089,0.296398891966759,29.6398891966759,3,92.6131036674185,0.867447268573294,26.5927977839335,17.3151005539939,0,411.772823757595,411.421905517578,0.932039118334032
+8897,312074,3790998,312174,3790898,96,88,28.5318559556787,0.0926794055099198,18.0238079336364,0.53293194672505,10.3911503722826,0.0444009071731955,0.412742382271468,41.2742382271468,2,95.0189265463362,0.912675374939526,38.2271468144044,5.32173939839305,0,413.41130065918,412.379730224609,1.25957043898484
+8898,312074,3790898,312174,3790798,97,88,12.1883656509695,0.118773607061256,17.1653792598408,0.742424242424242,NA,-0.00385308424955437,0.0332409972299169,3.32409972299169,2,69.5361692923241,0.69576942524861,3.04709141274238,2.6406596104304,0,414.330220540365,413.656188964844,0.810376375192479
+8899,312074,3790798,312174,3790698,98,88,26.3157894736842,0.134970008024155,16.2372309345147,0.773400673400673,33.2679134207198,0.0370207592016653,0.365789473684211,36.5789473684211,3,91.8403416122202,0.788937171235338,26.0526315789474,4.85398031138688,0,414.617902119954,414.013000488281,0.816151778006583
+8900,312074,3790698,312174,3790598,99,88,47.6454293628809,0.464296827603094,39.2448681511422,0.780038759689922,NA,0.0513475744317698,0.464912280701754,46.4912280701754,1,97.3326299962824,0.923197844150011,46.4912280701754,4.56119045821376,0,414.297203063965,413.82177734375,0.620122152761276
+8901,312174,3800598,312274,3800498,0,89,53.4626038781163,0.520984230973239,39.262199484162,0.782383419689119,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,388.914686203003,388.689819335938,0.383913537656788
+8902,312174,3800498,312274,3800398,1,89,27.8947368421053,0.143068208505604,14.7963585252523,0.522114347357066,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.6671778361,389.100189208984,0.720693847125086
+8903,312174,3800398,312274,3800298,2,89,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.736000061035,390.158935546875,0.411833201461055
+8904,312174,3800298,312274,3800198,3,89,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.74796295166,390.527221679688,0.319590976288226
+8905,312174,3800198,312274,3800098,4,89,2.49307479224377,0.00809820048144931,3.4637168138533,0.166666666666667,17.3185840692665,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.224784851074,389.729156494141,0.315572614316109
+8906,312174,3800098,312274,3799998,5,89,63.4210526315789,0.650555438676428,36.8428502052495,0.827800829875519,NA,0.00934631184664843,0.138157894736842,13.8157894736842,2,80.2392787150731,0.782442748091603,12.5,5.38837357929775,0,390.216786702474,389.851867675781,0.410550929610268
+8907,312174,3799998,312274,3799898,6,89,51.5235457063712,0.167362809949952,18.1797056943622,0.432517263025738,12.1230087272512,-0.00496906319060291,0.0692520775623269,6.92520775623269,2,81.0802855003502,0.70453869047619,6.37119113573407,8.71641899108887,0,390.420108795166,389.984893798828,0.342967591017372
+8908,312174,3799898,312274,3799798,7,89,0,NA,NA,NA,NA,0.0181851651423206,0.074792243767313,7.4792243767313,6,61.8231214195741,0.648099150536137,4.43213296398892,38.5201265900223,10.3911504745483,390.389101664225,390.100769042969,0.272020481835231
+8909,312174,3799798,312274,3799698,8,89,6.09418282548476,0.0296934017653141,9.28161850991352,0.468660968660969,57.1513274285795,0.0222807735579741,0.14404432132964,14.404432132964,4,78.9207285896739,0.698083706047053,8.58725761772853,36.6363779398111,14.6953058242798,390.326892852783,390.112609863281,0.261687531252695
+8910,312174,3799698,312274,3799598,9,89,15.5263157894737,0.159264609468503,16.0367741079665,0.788135593220339,NA,0.0260738183241445,0.268421052631579,26.8421052631579,3,87.5334037418356,0.835672445650037,11.8421052631579,29.3394059854395,0,389.789896647135,389.605224609375,0.327720777081521
+8911,312174,3799598,312274,3799498,10,89,33.5180055401662,0.326627419418455,31.9809243688594,0.765840220385675,NA,0.0147719619896616,0.18005540166205,18.005540166205,2,87.0789709716053,0.881278402296101,10.803324099723,10.9970000927265,0,389.510370254517,389.466522216797,0.123703557873573
+8912,312174,3799498,312274,3799398,11,89,20.2216066481994,0.0985281058576332,14.780620063687,0.599019607843137,15.5867255064659,0.0205347280669965,0.132963988919668,13.2963988919668,2,84.6668505659726,0.887477596820697,11.0803324099723,15.2976869841417,5.19557523727417,389.841331481934,389.576324462891,0.59833440799174
+8913,312174,3799398,312274,3799298,12,89,31.3019390581717,0.0762580545336476,14.1614927000928,0.621226136851137,18.9710599757867,0.0250774005358946,0.135734072022161,13.5734072022161,3,85.2272876633379,0.80715811965812,11.9113573407202,6.5911037775935,0,391.347602844238,390.697052001953,0.922653364542253
+8914,312174,3799298,312274,3799198,13,89,48.1578947368421,0.164663409789469,21.8047455930726,0.618350831146107,15.5867255064659,0.0144248789160572,0.0131578947368421,1.31578947368421,4,12.7880473429285,0.189333333333333,0.526315789473684,7.70422086715698,0,392.568729400635,391.859466552734,0.588315785861696
+8915,312174,3799198,312274,3799098,14,89,47.6454293628809,0.232148413801547,23.6402982665991,0.560276679841897,11.6176593526411,0.0027657409879902,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,10.7999868392944,10.3911504745483,393.197659810384,393.027435302734,0.285625414507087
+8916,312174,3799098,312274,3798998,15,89,55.4016620498615,0.179960010698873,17.9605540719155,0.662517828676902,17.8806678490735,0.0154011923769982,0.102493074792244,10.2493074792244,5,68.6778123363827,0.726017000607164,4.70914127423823,7.50355167646666,0,393.428052902222,393.274719238281,0.174809709420755
+8917,312174,3798998,312274,3798898,16,89,45.983379501385,0.149366808880065,10.0864582326266,0.340149965916837,17.3185838960732,0.0217706796975209,0.213296398891967,21.3296398891967,6,80.1553708792687,0.672871789560895,8.86426592797784,9.07639248340161,0,393.355979919434,393.22607421875,0.160610389891658
+8918,312174,3798898,312274,3798798,17,89,34.2105263157895,0.0584870034771339,10.2092805842836,0.45679012345679,20.8973715933632,0.0123273047883566,0.0605263157894737,6.05263157894737,4,64.8358725265421,0.645191409897292,2.89473684210526,9.54584851472274,0,393.351024627686,393.226531982422,0.116204045953929
+8919,312174,3798798,312274,3798698,18,89,41.5512465373961,0.404910024072465,29.6257998064912,0.765555555555556,NA,0.0202282148634783,0.102493074792244,10.2493074792244,4,74.1537555046069,0.671220400728597,5.26315789473684,13.7405982017517,0,393.550717671712,393.433349609375,0.186499265708117
+8920,312174,3798698,312274,3798598,19,89,28.2548476454294,0.275338816369276,26.622258961066,0.831699346405229,NA,0.0166021409950165,0.0664819944598338,6.64819944598338,4,66.671210579691,0.605341246290801,3.32409972299169,16.6107208927472,0,394.126365661621,393.656372070312,0.55182490624767
+8921,312174,3798598,312274,3798498,20,89,2.77008310249307,0.00899800053494367,2.71219675376098,0.259259259259259,35.5549907292365,0.0326729692848286,0.199445983379501,19.9445983379501,2,92.0781836607122,0.921314333978149,19.6675900277008,29.402899980545,15.5867252349854,395.157132466634,394.745483398438,0.588419773241396
+8922,312174,3798498,312274,3798398,21,89,40,0.205154412196716,19.0983339821897,0.60952380952381,11.6176592829322,0.0153771894811526,0.0921052631578947,9.21052631578947,3,80.2108943207748,0.829085457271364,7.89473684210526,8.58095397949219,0,395.844087600708,395.320678710938,0.351165687479118
+8923,312174,3798398,312274,3798298,22,89,47.9224376731302,0.233498113881788,28.2988308257673,0.630630630630631,10.3911504415599,0.0398260056781434,0.332409972299169,33.2409972299169,2,93.331812137497,0.766378621188473,28.2548476454294,3.07556655406952,0,396.208262125651,395.960327148438,0.239104019805404
+8924,312174,3798298,312274,3798198,23,89,71.191135734072,0.346872920622079,19.9177378598735,0.570647419072616,22.0429587144503,0.049157678207687,0.454293628808864,45.4293628808864,6,92.9053110069677,0.702675900090765,38.2271468144044,3.83336010211852,0,396.582946777344,396.401824951172,0.178816683968145
+8925,312174,3798198,312274,3798098,24,89,44.0443213296399,0.107301156379203,11.5497462768955,0.367847914359542,14.7881199788088,0.0439161340300592,0.404432132963989,40.4432132963989,3,92.1753331973546,0.754742618238829,24.0997229916898,4.80722567153304,0,396.777860005697,396.667297363281,0.190073495880785
+8926,312174,3798098,312274,3797998,25,89,61.5789473684211,0.315829818776523,23.772116538087,0.87099358974359,25.9778761038998,0.0222847090645461,0.0894736842105263,8.94736842105263,3,81.6485301898677,0.784269199009083,7.89473684210526,6.97586683666005,0,397.133993148804,396.953552246094,0.224764366240605
+8927,312174,3797998,312274,3797898,26,89,62.8808864265928,0.204254612143221,20.3041667054048,0.811483021483022,20.7823007445652,0.0344098958594662,0.282548476454294,28.2548476454294,2,91.649373163104,0.801970588855834,23.8227146814404,2.97622686741399,0,397.493330001831,397.279754638672,0.284340876377952
+8928,312174,3797898,312274,3797798,27,89,58.7257617728532,0.143068208505604,11.7499990248527,0.297913719943423,10.3911503636229,0.0345772292318727,0.171745152354571,17.1745152354571,10,67.703891056103,0.508113464635204,4.15512465373961,3.54532107230156,0,397.922360738118,397.607330322266,0.383734751475043
+8929,312174,3797798,312274,3797698,28,89,65.0969529085873,0.211453012571176,18.4604062123471,0.536471492465311,12.1230087272512,0.0480301174118475,0.326869806094183,32.6869806094183,7,87.7671595516928,0.68760816891658,21.3296398891967,2.03891701617483,0,398.383121490479,397.953948974609,0.396000461072023
+8930,312174,3797698,312274,3797598,29,89,83.4210526315789,0.855709850873143,38.3390858589293,0.888538380651945,NA,0.0949213657185043,0.952631578947368,95.2631578947368,1,99.867195732999,0.845904298459043,95.2631578947368,1.20727718205742,0,398.632858276367,398.339385986328,0.326329424098256
+8931,312174,3797598,312274,3797498,30,89,18.005540166205,0.0877305052157008,14.7569123158502,0.512544802867383,72.7380530909194,0.0599919060437677,0.686980609418283,68.6980609418283,3,98.219690417617,0.827872291730241,67.8670360110803,18.8862770603549,0,398.757312774658,398.481903076172,0.267672565338119
+8932,312174,3797498,312274,3797398,31,89,50.6925207756233,0.164663409789469,14.9278071578957,0.646274573693928,10.7999866759763,0.0463112501882712,0.457063711911357,45.7063711911357,2,96.9097003304696,0.787946428571428,45.1523545706371,7.33520703460231,0,398.841425577799,398.658599853516,0.183550294806009
+8933,312174,3797398,312274,3797298,32,89,62.0498614958449,0.604665635948215,32.2611522778231,0.896577380952381,NA,0.0870095097957762,0.889196675900277,88.9196675900277,1,99.6640189602595,0.583003300330033,88.9196675900277,3.79680253115027,0,398.989423751831,398.814239501953,0.1767894906905
+8934,312174,3797298,312274,3797198,33,89,92.8947368421053,0.952888256650535,38.6949180252841,0.908404154863078,NA,0.0612066191970371,0.626315789473684,62.6315789473684,2,97.4664936114048,0.831618927045419,59.7368421052632,0.0873205922230953,0,399.314656575521,399.130889892578,0.26161803408952
+8935,312174,3797198,312274,3797098,34,89,21.8836565096953,0.213252612678165,27.6517764003967,0.782700421940928,NA,-0.0178133009851025,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,0,0,398.765565872192,398.5,0.452218944697095
+8936,312174,3797098,312274,3796998,35,89,65.9279778393352,0.642457238194978,30.6138359370015,0.915266106442577,NA,0.0513606820626279,0.587257617728532,58.7257617728532,1,98.3059702360414,0.883163560794467,58.7257617728532,1.28119319789815,0,398.956924438477,398.552520751953,0.737382343033694
+8937,312174,3796998,312274,3796898,36,89,28.2548476454294,0.275338816369276,25.5357601539951,0.823529411764706,NA,0.0121624007939957,0.038781163434903,3.8781163434903,1,77.3446466870219,0.947982708933717,3.8781163434903,0,0,399.004634857178,398.5,1.25822957288239
+8938,312174,3796898,312274,3796798,37,89,71.3157894736842,0.36576872174546,24.2393276869537,0.756255623031939,10.3911503376439,0.00587914640733097,0.1,10,2,82.2156638037124,0.876543209876543,8.1578947368421,0,0,402.338727315267,400.112030029297,3.78066262223798
+8939,312174,3796798,312274,3796698,38,89,57.0637119113573,0.18535881101984,16.2778796334454,0.676150392817059,17.3185839653505,0.0295289822140131,0.321329639889197,32.1329639889197,3,90.2202526340507,0.831603498542274,20.2216066481994,2.14000690805501,0,408.633172988892,405.837707519531,2.28740179237869
+8940,312174,3796698,312274,3796598,39,89,50.9695290858726,0.0827816049214818,10.4784223123389,0.566999539221761,20.7823007618845,0.0474501143592803,0.304709141274238,30.4709141274238,7,82.6411533119112,0.747041982822479,10.5263157894737,2.84582474881952,0,410.046480178833,409.821197509766,0.302615647870171
+8941,312174,3796598,312274,3796498,40,89,61.7728531855956,0.150491558946933,13.1685924130004,0.458538587848933,13.1997194624954,0.0831913141663692,0.742382271468144,74.2382271468144,1,99.1077237700839,0.830222963295496,74.2382271468144,1.88782008548281,0,410.659952799479,410.371520996094,0.408736424828532
+8942,312174,3796498,312274,3796398,41,89,46.2603878116344,0.112699956700169,17.16244250568,0.61703118747499,12.9889380129814,0.0417914281673918,0.32409972299169,32.409972299169,4,94.0276066980267,0.790635632539437,31.0249307479224,1.76102709158873,0,411.233530044556,410.976654052734,0.384613741674585
+8943,312174,3796398,312274,3796298,42,89,61.8421052631579,0.158589759428382,15.9347482325333,0.574318181818182,12.9889379740129,0.0907390015429548,0.681578947368421,68.1578947368421,2,96.5944753500321,0.825168271278862,58.421052631579,1.09986570719126,0,411.862340291341,411.501831054688,0.472827093660368
+8944,312174,3796298,312274,3796198,43,89,70.3601108033241,0.685647640762708,35.696540837994,0.839238845144357,NA,0.0997951194422108,0.722991689750693,72.2991689750693,3,96.7397602200693,0.830204498977505,65.3739612188366,1.20178295186653,0,411.544250488281,410.548004150391,0.677539956007196
+8945,312174,3796198,312274,3796098,44,89,49.8614958448753,0.485892028886958,30.7714856606705,0.849074074074074,NA,0.0518323447417201,0.437673130193906,43.7673130193906,2,95.7035509747802,0.895753354849669,41.5512465373961,0.924976487702961,0,411.387697855632,410.437347412109,1.7113887724228
+8946,312174,3796098,312274,3795998,45,89,5.26315789473684,0.0256443015245895,4.1517927500587,0.351851851851852,57.1513268570416,-0.00534808104111261,0.0193905817174515,1.93905817174515,1,65.6593056268038,1,1.93905817174515,0,0,405.722074508667,403.513397216797,3.3937004639673
+8947,312174,3795998,312274,3795898,46,89,38.1578947368421,0.39141302327005,26.6409630409283,0.860919540229885,NA,0.0145008978521242,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,0,0,402.649152119954,402.145294189453,0.829436119025629
+8948,312174,3795898,312274,3795798,47,89,30.4709141274238,0.296934017653141,25.0396299485646,0.843939393939394,NA,-0.0011522144857111,0,0,0,NA,NA,0,NA,NA,402.130031585693,402.047546386719,0.10728632940711
+8949,312174,3795798,312274,3795698,48,89,0,NA,NA,NA,NA,-0.00152217941304821,0,0,0,NA,NA,0,NA,NA,402.076800028483,402.051971435547,0.0369619439819238
+8950,312174,3795698,312274,3795598,49,89,0,NA,NA,NA,NA,-0.000257282586820834,0,0,0,NA,NA,0,NA,NA,402.150144577026,402.098052978516,0.0448109967082389
+8951,312174,3795598,312274,3795498,50,89,0,NA,NA,NA,NA,-0.00122892435060031,0,0,0,NA,NA,0,NA,NA,402.153968811035,402.109039306641,0.0397192915269032
+8952,312174,3795498,312274,3795398,51,89,0,NA,NA,NA,NA,0.00354794290373386,0,0,0,NA,NA,0,NA,NA,402.148874282837,402.093170166016,0.0525486745308173
+8953,312174,3795398,312274,3795298,52,89,3.32409972299169,0.0323928019257972,8.57317957990837,0.555555555555556,NA,-0.000787033154824271,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,34.1954889297485,31.6034507751465,402.256975809733,402.147888183594,0.146367917462256
+8954,312174,3795298,312274,3795198,53,89,0,NA,NA,NA,NA,0.0112725886769304,0.0249307479224377,2.49307479224377,2,63.2654294198794,0.572679924242424,2.21606648199446,48.937808142768,33.2679138183594,402.618724822998,402.307098388672,0.354767845473375
+8955,312174,3795198,312274,3795098,54,89,0,NA,NA,NA,NA,-0.00338143233375855,0,0,0,NA,NA,0,NA,NA,402.302255630493,401.561553955078,0.624980276445482
+8956,312174,3795098,312274,3794998,55,89,0,NA,NA,NA,NA,-0.00461691940850678,0,0,0,NA,NA,0,NA,NA,401.356285095215,401.105377197266,0.373091609572165
+8957,312174,3794998,312274,3794898,56,89,0,NA,NA,NA,NA,0.0165971951868253,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,163.58065032959,161.146606445312,401.069999694824,400.904998779297,0.203137265239624
+8958,312174,3794898,312274,3794798,57,89,0,NA,NA,NA,NA,0.0190794794045808,0,0,0,NA,NA,0,NA,NA,400.985448201497,400.907867431641,0.108714244696642
+8959,312174,3794798,312274,3794698,58,89,3.42105263157895,0.0350922020862803,7.21894046556639,0.641025641025641,NA,0.0151306501388478,0.0342105263157895,3.42105263157895,2,71.5369935792344,0.654859218891916,3.15789473684211,9.76905364256639,0,401.397060394287,401.074340820312,0.544543282958683
+8960,312174,3794698,312274,3794598,59,89,1.66204986149584,0.0161964009628986,5.14509030281621,0.444444444444444,NA,0.0262596786026701,0.116343490304709,11.6343490304709,5,69.7038500240934,0.64934434191355,3.601108033241,35.3537104129791,0,402.713526407878,401.67822265625,1.12531630084556
+8961,312174,3794598,312274,3794498,60,89,27.1468144044321,0.132270607863672,15.0330234267304,0.4609375,10.3911503376439,0.0254762009761462,0.110803324099723,11.0803324099723,8,62.7106578651077,0.580369182126749,3.04709141274238,18.5390321016312,0,403.747972488403,403.458862304688,0.40715473187373
+8962,312174,3794498,312274,3794398,61,89,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.0226498789084762,0.102493074792244,10.2493074792244,4,73.0102404655297,0.689485934021453,3.8781163434903,35.0095770294602,11.6176595687866,403.778170267741,402.807342529297,0.724078847611557
+8963,312174,3794398,312274,3794298,62,89,16.5789473684211,0.0566874033701451,12.5481185152396,0.537706855791962,17.8806677614438,0.0204727672770452,0.0921052631578947,9.21052631578947,5,70.3729924839451,0.620189905047476,3.68421052631579,12.6651319095067,0,403.48593711853,402.480590820312,0.949573604871047
+8964,312174,3794298,312274,3794198,63,89,0,NA,NA,NA,NA,0.0225306694471462,0.0415512465373961,4.15512465373961,4,57.2799649224169,0.573173935890699,2.49307479224377,72.4132153828939,47.0479354858398,402.655179341634,402.075469970703,0.740000606996815
+8965,312174,3794198,312274,3794098,64,89,7.4792243767313,0.0364419021665219,7.24774369809333,0.633996212121212,10.3911503376439,0.0176354220873545,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,37.8342628479004,16.4298515319824,402.233684539795,401.920959472656,0.446392952034558
+8966,312174,3794098,312274,3793998,65,89,0,NA,NA,NA,NA,0.0207091642698459,0.0692520775623269,6.92520775623269,2,77.1989234742067,0.785119047619048,5.26315789473684,78.6191168212891,41.8880653381348,402.067103068034,401.854431152344,0.321204391760034
+8967,312174,3793998,312274,3793898,66,89,0,NA,NA,NA,NA,0.0198678488795275,0.0868421052631579,8.68421052631579,1,87.058227229868,0.83776283488099,8.68421052631579,140.985479181463,130.821243286133,401.903554916382,401.783508300781,0.173236140447745
+8968,312174,3793898,312274,3793798,67,89,0,NA,NA,NA,NA,0.0167062718063666,0.0526315789473684,5.26315789473684,4,64.5695216840793,0.672413793103448,3.32409972299169,139.706300032766,118.591209411621,401.863352457682,401.788970947266,0.110482777273318
+8969,312174,3793798,312274,3793698,68,89,0,NA,NA,NA,NA,0.0190233925361673,0.07202216066482,7.20221606648199,2,78.7638577500085,0.789734255551511,5.54016620498615,168.993912916917,160.054077148438,401.99578666687,401.847625732422,0.164459701008999
+8970,312174,3793698,312274,3793598,69,89,0,NA,NA,NA,NA,0.0156396996837702,0.0664819944598338,6.64819944598338,5,60.8298424322775,0.605341246290801,3.04709141274238,106.559891700745,77.2377777099609,402.253595352173,402.127746582031,0.167904949065274
+8971,312174,3793598,312274,3793498,70,89,0.263157894736842,0.0026994001604831,0,0,NA,0.0148504368327658,0.0421052631578947,4.21052631578947,4,62.6235274701637,0.652014652014652,3.15789473684211,44.3239080905914,26.4923400878906,402.752314249674,402.268920898438,2.00666171944927
+8972,312174,3793498,312274,3793398,71,89,0,NA,NA,NA,NA,0.0153501854197366,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,29.3906116485596,29.3906116485596,407.537612915039,404.720550537109,2.75132763547003
+8973,312174,3793398,312274,3793298,72,89,19.3905817174515,0.188958011233817,23.2395637368336,0.766666666666667,NA,0.00623210623498657,0.03601108033241,3.601108033241,2,64.2671370987704,0.827107279693487,1.93905817174515,13.2108289278471,10.3911504745483,407.912373860677,407.7177734375,0.293335396713242
+8974,312174,3793298,312274,3793198,73,89,27.7008310249307,0.0899800053494367,12.7699008520167,0.728066378066378,10.3911503722826,0.0412719544759427,0.296398891966759,29.6398891966759,5,84.7337320655088,0.771714740320672,16.6204986149584,8.01065124083902,0,407.66251373291,407.113037109375,0.367023739988412
+8975,312174,3793198,312274,3793098,74,89,0,NA,NA,NA,NA,0.0322505406911851,0.163157894736842,16.3157894736842,5,79.57978825834,0.65699976706266,7.63157894736842,40.5111706103048,5.19557523727417,407.609120686849,407.022521972656,0.562935252362339
+8976,312174,3793098,312274,3792998,75,89,0,NA,NA,NA,NA,0.0202118043610897,0.0470914127423823,4.70914127423823,5,59.7558755684403,0.538255813953488,3.04709141274238,50.8696245305678,22.0429573059082,407.780065536499,407.012603759766,0.515435577590837
+8977,312174,3792998,312274,3792898,76,89,26.3157894736842,0.128221507622947,18.3016229837218,0.717857142857143,10.3911503376439,0.0135689564105275,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,2.59778761863708,0,407.566413879395,407.097778320312,0.503874753719156
+8978,312174,3792898,312274,3792798,77,89,6.64819944598338,0.0323928019257972,8.23198255779096,0.52962962962963,23.2353187052823,0.0249751283805492,0.124653739612188,12.4653739612188,2,84.5906249546235,0.834651898734177,9.69529085872576,39.8958385043674,10.3911504745483,408.784690856934,407.704010009766,0.861304313649255
+8979,312174,3792798,312274,3792698,78,89,7.10526315789474,0.0364419021665219,7.22978094136426,0.556159420289855,80.6570166218933,0.0263144600864555,0.102631578947368,10.2631578947368,7,67.9210113976359,0.639972930295511,5,17.3070825430063,0,409.822166442871,409.309326171875,0.630360070294486
+8980,312174,3792698,312274,3792598,79,89,24.0997229916898,0.0335496877088614,7.98818045242359,0.492006802721088,17.7430586882915,0.0332986694659684,0.210526315789474,21.0526315789474,3,90.5834086842925,0.725870646766169,18.8365650969529,8.07465222634767,0,411.155303955078,409.865966796875,0.95844180863583
+8981,312174,3792598,312274,3792498,80,89,0.277008310249307,0.0026994001604831,0,0,NA,0.0295288171552867,0.191135734072022,19.1135734072022,5,86.6756054360405,0.765000566059096,16.0664819944598,44.7319116868835,10.3911504745483,412.420682271322,412.018341064453,0.623419306936539
+8982,312174,3792498,312274,3792398,81,89,9.69529085872576,0.0314930018723029,10.0808609484225,0.31031746031746,39.0430220399107,0.024172948380616,0.10803324099723,10.803324099723,7,73.0809247481925,0.603296703296703,6.37119113573407,16.5123838155698,0,413.167177200317,412.639984130859,0.700006664443972
+8983,312174,3792398,312274,3792298,82,89,8.15789473684211,0.0418407024874881,13.8232684584226,0.512464387464387,70.6674624957705,0.0317858659150692,0.160526315789474,16.0526315789474,5,83.3467117924826,0.752765126870527,12.1052631578947,9.09938742684536,0,412.909080505371,412.069793701172,1.28642654467612
+8984,312174,3792298,312274,3792198,83,89,16.8975069252078,0.0823317048947346,22.7557627939991,0.506118881118881,20.7823006752878,0.0255294235680103,0.119113573407202,11.9113573407202,3,78.1194039077766,0.731961914744934,6.37119113573407,20.1428755161374,0,412.076728820801,410.718322753906,1.6103708432679
+8985,312174,3792198,312274,3792098,84,89,50.1385041551247,0.244295714523721,26.996610637278,0.795133149678604,21.4219052194909,0.030211631830939,0.146814404432133,14.6814404432133,5,82.6424708671329,0.72952047952048,11.3573407202216,5.21298700008752,0,410.075349807739,409.55126953125,1.11111315926877
+8986,312174,3792098,312274,3791998,85,89,39.612188365651,0.193007111474542,18.0512066221291,0.797998366013072,36.3690261817537,0.0241479955709873,0.074792243767313,7.4792243767313,4,69.8601474611613,0.748642250382955,4.15512465373961,3.39642095565796,0,410.6892674764,409.575622558594,1.93695805936329
+8987,312174,3791998,312274,3791898,86,89,32.1052631578947,0.164663409789469,19.5464823577305,0.754721124286342,10.3911504415599,0.0374711303862951,0.284210526315789,28.4210526315789,6,87.5563780214352,0.77790346907994,22.6315789473684,12.5595754517449,0,413.649654388428,412.383575439453,1.34153061333972
+8988,312174,3791898,312274,3791798,87,89,49.0304709141274,0.477793828405509,31.6099583716709,0.790960451977401,NA,0.0412332214835265,0.349030470914127,34.9030470914127,5,87.8488255951923,0.771922326488897,23.2686980609418,8.17773236168755,0,413.868064880371,412.789855957031,1.06498615005971
+8989,312174,3791798,312274,3791698,88,89,44.8753462603878,0.145767608666087,15.9836988482424,0.680059523809524,10.3911504415599,0.0390906939136285,0.296398891966759,29.6398891966759,5,89.7184995594812,0.85271918730366,24.6537396121884,6.22216181888759,0,413.408006668091,412.284698486328,0.909758616908738
+8990,312174,3791698,312274,3791598,89,89,29.3628808864266,0.143068208505604,17.3412876119057,0.618481848184818,47.9008367066476,0.0327598680677589,0.257617728531856,25.7617728531856,1,94.6099543334011,0.943198165797518,25.7617728531856,6.40437914222799,0,412.714108784993,412.102081298828,0.683789237356129
+8991,312174,3791598,312274,3791498,90,89,29.2105263157895,0.149816708906812,14.1499486377074,0.418939393939394,16.4298514359663,0.0295804508430018,0.252631578947368,25.2631578947368,2,92.9203528670147,0.898869963969866,24.2105263157895,6.1522526293993,0,412.266677856445,411.946258544922,0.341192831080831
+8992,312174,3791498,312274,3791398,91,89,34.0720221606648,0.0664052439478843,12.1183812601405,0.541193181818182,12.3581143710056,0.0384905266937822,0.340720221606648,34.0720221606648,4,90.2932888253235,0.789143460074613,23.5457063711911,6.99874485992804,0,412.076899210612,411.880493164062,0.214497904141063
+8993,312174,3791398,312274,3791298,92,89,30.7479224376731,0.0998778059378748,12.9571518495431,0.391534391534392,22.5141590648952,0.0392473012073013,0.329639889196676,32.9639889196676,3,94.0798604222268,0.806626874808693,31.0249307479224,6.24822793688093,0,412.119647979736,411.808807373047,0.356970798854657
+8994,312174,3791298,312274,3791198,93,89,30.4709141274238,0.0494890029421902,9.18141398272592,0.56869827703161,18.1845131255155,0.0371844253130604,0.310249307479224,31.0249307479224,4,88.3905156073841,0.741619945127043,14.404432132964,5.83687933853694,0,412.36225382487,411.90087890625,0.531327845381658
+8995,312174,3791198,312274,3791098,94,89,45.5263157894737,0.0778327046272628,11.6231065205968,0.367869988473663,11.3129277867804,0.0541816137187293,0.573684210526316,57.3684210526316,2,97.8912438020428,0.705345739828498,56.578947368421,3.69923521619324,0,412.614748001099,411.972473144531,0.850490191917296
+8996,312174,3791098,312274,3790998,95,89,13.2963988919668,0.0259142415406378,8.95814452137977,0.243189964157706,12.4693805298719,0.04019517063821,0.43213296398892,43.213296398892,2,93.7938193427953,0.852740715560466,25.4847645429363,17.8919247419406,0,413.624249776204,412.583465576172,1.02799698225957
+8997,312174,3790998,312274,3790898,96,89,31.5789473684211,0.102577206098358,17.2621967330068,0.69541910331384,15.5867255064659,0.0520229424707755,0.520775623268698,52.0775623268698,1,97.8571254487222,0.886070692977211,52.0775623268698,3.4163903987154,0,414.295080184937,413.565887451172,0.479034442722205
+8998,312174,3790898,312274,3790798,97,89,17.7285318559557,0.0863808051354593,13.2064740786631,0.678418803418803,14.6953058096335,0.0382378680015259,0.307479224376731,30.7479224376731,3,93.6225279759068,0.8556,29.3628808864266,7.43748035516825,0,414.792249043783,414.417694091797,0.422022785126465
+8999,312174,3790798,312274,3790698,98,89,31.5789473684211,0.323928019257972,34.38978155438,0.780555555555556,NA,0.0397489178703166,0.397368421052632,39.7368421052632,3,95.3826885304403,0.832263963552094,38.1578947368421,2.91338247337089,0,415.500551223755,414.648406982422,0.623614317010653
+9000,312174,3790698,312274,3790598,99,89,39.0581717451524,0.190307711314059,24.1169534284871,0.765325670498084,11.6176593526411,0.0352783007551036,0.342105263157895,34.2105263157895,2,92.4861137724262,0.813584905660377,23.3918128654971,3.79568542578281,0,414.949634552002,414.107360839844,1.04171336783771
+9001,312274,3800598,312374,3800498,0,90,66.3157894736842,0.680248840441501,41.6346855329609,0.825396825396825,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.80446879069,389.017456054688,1.06498801152534
+9002,312274,3800498,312374,3800398,1,90,35.25,0.380615422627983,32.1951764825942,0.835697399527187,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.418263753255,389.994903564453,0.58067898889844
+9003,312274,3800398,312374,3800298,2,90,9.73684210526316,0.0998778059378394,22.2567408628548,0.662162162162162,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.766359965007,390.590057373047,0.167546137797702
+9004,312274,3800298,312374,3800198,3,90,8.42105263157895,0.0431904025677144,9.15714535519988,0.309139784946237,99.9388847686604,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.66116672092,390.552978515625,0.194941512251951
+9005,312274,3800198,312374,3800098,4,90,5.52631578947368,0.011337480674025,3.49405859121725,0.266666666666667,35.1909785549811,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.323371887207,390.222869873047,0.145144061534797
+9006,312274,3800098,312374,3799998,5,90,60.5,0.32662741941834,23.8611843440097,0.665883458646616,25.9778759376309,0.00376657820452238,0.1125,11.25,2,74.2150239386403,0.874804381846635,9.375,1.63091460863749,0,390.301472981771,390.2353515625,0.149688540478951
+9007,312274,3799998,312374,3799898,6,90,47.1052631578947,0.161064209575435,22.5993301200347,0.649111249797749,10.7999866527397,0.00496308544434693,0.152631578947368,15.2631578947368,1,91.5666254903575,0.893788819875776,15.2631578947368,9.47855554778,0,390.565325419108,390.429443359375,0.157701928874714
+9008,312274,3799898,312374,3799798,7,90,19.2105263157895,0.0281508873878853,8.11604086770364,0.491001657073086,13.3600505454482,0.0110770963801004,0.0263157894736842,2.63157894736842,2,60.6867581339923,0.841995841995842,2.10526315789474,29.6093720436096,5.19557523727417,390.598958333333,390.547119140625,0.0720744783835034
+9009,312274,3799798,312374,3799698,8,90,48.6842105263158,0.166463009896399,17.1788447290628,0.501432328355405,12.1230087792074,-0.00917511951318279,0.0236842105263158,2.36842105263158,2,59.10066639958,0.658580413297394,1.84210526315789,17.3171316782633,11.6176595687866,390.481969197591,390.164581298828,0.328140861373173
+9010,312274,3799698,312374,3799598,9,90,5.75,0.0310431018455447,7.04441946401313,0.572916666666667,95.8016730525949,0.0417204873246737,0.37,37,3,92.3070613622018,0.847712762841914,18.25,28.8291501483402,5.19557523727417,389.987572564019,389.683654785156,0.540009903409058
+9011,312274,3799598,312374,3799498,10,90,1.57894736842105,0.0161964009628929,5.07944242314759,0.444444444444444,NA,0.0222220901121737,0.244736842105263,24.4736842105263,3,89.121499789573,0.840476890138953,13.1578947368421,42.0873644428868,22.0429573059082,389.834963480632,389.589202880859,0.57023005486203
+9012,312274,3799498,312374,3799398,11,90,3.94736842105263,0.0202455012036161,3.78879356741978,0.327380952380952,41.5646013505757,0.027484865409018,0.244736842105263,24.4736842105263,1,94.4770536430222,0.920238445069476,24.4736842105263,31.0551010306163,0,390.747772216797,389.909729003906,1.12439921172503
+9013,312274,3799398,312374,3799298,12,90,30.2631578947368,0.155215509227723,26.3244929689673,0.715025252525253,11.6176592829314,0.0176771647539729,0.0105263157894737,1.05263157894737,2,34.5706664476853,0.49468085106383,0.789473684210526,6.49446904659271,5.19557523727417,391.929707845052,391.461303710938,0.610523245009298
+9014,312274,3799298,312374,3799198,13,90,34,0.0611864036375953,11.5265026412016,0.447117758784425,14.6086425893692,0.00867666637590446,0.025,2.5,4,43.859649122807,0.447731755424063,1,6.44989790916443,0,392.763954162598,392.238189697266,0.625923384342025
+9015,312274,3799198,312374,3799098,14,90,39.4736842105263,0.202455012036161,25.5092874448938,0.627946127946128,15.5867256623344,0.0112793693369512,0.0157894736842105,1.57894736842105,3,30.8730773315672,0.419404125286478,0.526315789473684,11.1643578211466,5.19557523727417,393.56309000651,393.373077392578,0.383035251391003
+9016,312274,3799098,312374,3798998,15,90,29.4736842105263,0.0755832044935001,14.4427105628207,0.621997549019608,20.9841156861341,0.0211756493025716,0.0894736842105263,8.94736842105263,5,68.0396824138823,0.666597853014038,3.68421052631579,7.25761475282557,0,393.433453877767,393.278137207031,0.218285939312897
+9017,312274,3798998,312374,3798898,16,90,27.1052631578947,0.0695095541324153,10.1361286077284,0.296424349881797,27.4210271610944,0.0276853616679881,0.255263157894737,25.5263157894737,5,82.8081245800442,0.753056334023801,12.6315789473684,12.5459762406103,0,393.18605211046,393.126708984375,0.100267302783873
+9018,312274,3798898,312374,3798798,17,90,44.5,0.160164409521941,19.926854874205,0.505197101280333,11.8258688975811,0.0356417974412034,0.2925,29.25,6,88.1858263922477,0.806653776918461,20,5.63531121637067,0,393.151163736979,393.093017578125,0.124067265657056
+9019,312274,3798798,312374,3798698,18,90,14.2105263157895,0.072883804333018,16.3676719870087,0.495471014492754,46.4706371317254,0.0215281773069268,0.0447368421052632,4.47368421052632,3,66.2924355821115,0.665013774104683,3.15789473684211,10.572859175065,0,393.288560655382,393.145141601562,0.225653276870471
+9020,312274,3798698,312374,3798598,19,90,31.3157894736842,0.321228619097376,30.246993149116,0.773109243697479,NA,0.014390907850774,0.0736842105263158,7.36842105263158,4,68.127541717108,0.688131313131313,3.15789473684211,3.42884004116058,0,393.896570841471,393.424987792969,0.695746815735034
+9021,312274,3798598,312374,3798498,20,90,7.10526315789474,0.0242946014443393,6.23487888638118,0.184444444444444,38.7305262624646,0.0460699325681689,0.336842105263158,33.6842105263158,2,94.7611524231374,0.909394372913686,32.6315789473684,19.1954411901534,0,395.248575846354,394.911895751953,0.596392822965259
+9022,312274,3798498,312374,3798398,21,90,47.5,0.256443015245804,30.2673251315171,0.725533480500368,15.5867255064659,0.0242718205212896,0.185,18.5,4,83.5254325969445,0.697970740915526,9.25,4.62525932853286,0,395.860171000163,395.582946777344,0.29919473476942
+9023,312274,3798398,312374,3798298,22,90,52.6315789473684,0.539880032096429,36.5031888222224,0.796666666666667,NA,0.0425581959723403,0.373684210526316,37.3684210526316,3,91.3560208259081,0.735940530058177,24.2105263157895,5.97365999221802,0,396.09666273329,395.892913818359,0.260686785087007
+9024,312274,3798298,312374,3798198,23,90,80,0.820617648786573,38.1584950808133,0.882675438596491,NA,0.0435842805655786,0.357894736842105,35.7894736842105,5,90.5764824598421,0.704851930195664,26.8421052631579,2.8240855511497,0,396.368006388346,395.991821289062,0.360504021718547
+9025,312274,3798198,312374,3798098,24,90,41.0526315789474,0.140368808345072,17.8548612447458,0.603042396899763,17.88066784907,0.0312756461829658,0.197368421052632,19.7368421052632,6,81.0427214212032,0.726279185295579,7.63157894736842,5.4710918490092,0,396.545013427734,396.322967529297,0.285526900870121
+9026,312274,3798098,312374,3797998,25,90,78.75,0.850311050551876,35.5851186146598,0.924338624338624,NA,0.0243872459090926,0.0675,6.75,3,79.3957250893676,0.725668682586196,6,0.577286137474908,0,396.975824991862,396.624786376953,0.280623151721674
+9027,312274,3797998,312374,3797898,26,90,62.1052631578947,0.212352812624596,19.6149329914844,0.589174188193796,17.3185838960732,0.0379417249690672,0.265789473684211,26.5789473684211,3,90.9963165763813,0.834452167369651,21.5789473684211,1.54324016948738,0,397.152486165365,397.043273925781,0.217128185240132
+9028,312274,3797898,312374,3797798,27,90,70,0.359020221344126,30.1540229648861,0.804571552377857,10.3911503376439,0.0318126041786902,0.215789473684211,21.5789473684211,5,80.1398600726917,0.674612358250405,7.36842105263158,1.35003447532654,0,397.342905680339,397.115692138672,0.388416794317566
+9029,312274,3797798,312374,3797698,28,90,72.6315789473684,0.372517222146536,26.9374470067104,0.844145114942529,15.5867255064659,0.0509663141361671,0.452631578947368,45.2631578947368,3,92.5593904633528,0.711841785974278,26.5789473684211,0.392688826073048,0,397.802207946777,397.426940917969,0.423733865066131
+9030,312274,3797698,312374,3797598,29,90,100,1.07976006419286,39.7190213661468,0.934166666666667,NA,0.0857405381184071,0.9725,97.25,1,99.9261039309117,0.753633899975364,97.25,0,0,398.035566541884,397.842712402344,0.328917631898016
+9031,312274,3797598,312374,3797498,30,90,94.7368421052632,0.971784057773573,38.759708697056,0.913425925925926,NA,0.0784683062351848,0.826315789473684,82.6315789473684,3,98.9775668970442,0.708230958230958,81.8421052631579,0.209316845912083,0,398.326591491699,398.039459228516,0.286461554005014
+9032,312274,3797498,312374,3797398,31,90,23.4210526315789,0.0600616535707278,9.80400806960601,0.551161828918768,28.6302878888653,0.074539272053976,0.797368421052632,79.7368421052632,1,99.3517893599999,0.766643164191325,79.7368421052632,12.8644401326825,0,398.682793511285,398.576812744141,0.20032441115476
+9033,312274,3797398,312374,3797298,32,90,66.3157894736842,0.680248840441501,38.6270824115941,0.882275132275132,NA,0.0742094612827427,0.886842105263158,88.6842105263158,1,99.6653789560343,0.611551239458217,88.6842105263158,4.74958262033208,0,399.082000732422,398.824584960938,0.252045642555287
+9034,312274,3797298,312374,3797198,33,90,99.75,1.07706066403238,39.6754391925465,0.933166248955723,NA,0.0702670948719606,0.7225,72.25,2,98.8783898006011,0.788023317435082,72,0.0179777689871079,0,399.446482340495,399.291625976562,0.209844012183767
+9035,312274,3797198,312374,3797098,34,90,27.3684210526316,0.280737616690143,25.8549405941383,0.842948717948718,NA,0.0292805390605113,0.160526315789474,16.0526315789474,2,88.1786003913218,0.752765126870527,12.3684210526316,3.94027972612225,0,398.930262247721,398.5,0.553146000711675
+9036,312274,3797098,312374,3796998,35,90,2.10526315789474,0.0107976006419286,4.85756266191474,0.270833333333333,99.9388845741832,0.0350697911399613,0.0894736842105263,8.94736842105263,2,83.9313228274086,0.901940545004129,8.42105263157895,9.76712918281555,0,398.5,398.5,0.337238880786685
+9037,312274,3796998,312374,3796898,36,90,74.7368421052632,0.76662964557693,36.8820925148581,0.877934272300469,NA,0.0369915958124023,0.328947368421053,32.8947368421053,3,91.346788154137,0.881834672194869,22.8947368421053,1.24961877059937,0,401.145856221517,398.5,3.76288054493845
+9038,312274,3796898,312374,3796798,37,90,84.75,0.915096654403448,38.1264630696341,0.9031465093412,NA,0.0464401665440528,0.52,52,2,95.095528668801,0.790051679586563,30,0.0999149084091187,0,406.992702907986,404.119873046875,3.24502956643699
+9039,312274,3796798,312374,3796698,38,90,38.4210526315789,0.197056211715197,19.9194611902824,0.775977961432507,46.7601769870031,-0.0190433415529122,0.0868421052631579,8.68421052631579,2,84.7755499609084,0.898601771800619,8.42105263157895,0,0,409.231422424316,408.018890380859,1.03977500172858
+9040,312274,3796698,312374,3796598,39,90,72.1052631578947,0.184908910993027,17.120568555755,0.819247498506571,12.9889379740111,0.0569079688321692,0.513157894736842,51.3157894736842,1,97.8589072810594,0.886516350604748,51.3157894736842,0.905895169576009,0,410.316907246908,409.898834228516,0.415590699150004
+9041,312274,3796598,312374,3796498,40,90,54.4736842105263,0.186258611073268,15.7129410717604,0.379980359147026,16.7243040981832,0.0910628206772871,0.778947368421053,77.8947368421053,2,99.0526051471938,0.837565187654954,77.6315789473684,2.82966696410566,0,410.79891289605,410.593872070312,0.201950361826638
+9042,312274,3796498,312374,3796398,41,90,57.3684210526316,0.147117308746277,13.7556270301913,0.560564054105453,19.6120227690988,0.142170170111288,0.936842105263158,93.6842105263158,1,99.8207047058738,0.953016815034619,93.6842105263158,3.39651093858012,0,410.809046427409,410.294647216797,0.463283181667776
+9043,312274,3796398,312374,3796298,42,90,57.25,0.206054212250137,17.5605382696353,0.734712718583686,12.1230087792074,0.0950179320598164,0.725,72.5,4,96.6536958343692,0.886572143452878,69,3.7059792600829,0,410.93788655599,410.295837402344,1.00849038273695
+9044,312274,3796298,312374,3796198,43,90,60.5263157894737,0.206954012303631,14.4251934228685,0.517399267399267,12.94068145587,0.0868597137484405,0.818421052631579,81.8421052631579,2,98.8647670707754,0.708661027847851,80,3.25297827582651,0,410.452779134115,409.300109863281,1.30095543004602
+9045,312274,3796198,312374,3796098,44,90,81.8421052631579,0.419756724954974,19.0073956672884,0.452150537634409,16.4298513045212,0.090092478182755,0.8,80,2,97.0216397428195,0.68586387434555,46.0526315789474,1.44746560015176,0,409.199924045139,408.011627197266,1.96208084505002
+9046,312274,3796098,312374,3795998,45,90,63.1578947368421,0.323928019257858,26.078058227481,0.817114951339047,10.3911504415562,0.0587486465970869,0.610526315789474,61.0526315789474,2,95.6380144466163,0.786530179139879,32.3684210526316,1.67380637547065,0,404.938217163086,403.154113769531,2.48878205252938
+9047,312274,3795998,312374,3795898,46,90,8,0.0172761610270857,5.4656390610805,0.331196581196581,21.8952633422479,0.0376046484750759,0.305,30.5,6,85.8029327672878,0.700511084345193,16.25,14.4551686341645,0,402.587181939019,402.34716796875,0.539828965002276
+9048,312274,3795898,312374,3795798,47,90,19.4736842105263,0.0499389029689197,7.5285897631906,0.332070707070707,22.0811946467421,0.00973216041870489,0.0184210526315789,1.84210526315789,2,49.3667473843029,0.617962466487936,1.05263157894737,3.71112516948155,0,402.143498738607,402.081512451172,0.1140250153332
+9049,312274,3795798,312374,3795698,48,90,38.4210526315789,0.197056211715197,25.02785790855,0.731269349845201,15.5867256623344,0.0107165339911693,0.0157894736842105,1.57894736842105,3,33.3795854412835,0.419404125286478,0.789473684210526,4.32964603106181,0,402.062974717882,402.055023193359,0.0182749178917157
+9050,312274,3795698,312374,3795598,49,90,34.2105263157895,0.17546101043134,20.3628713627097,0.78630604288499,10.3911504415562,0.0160434120343588,0.0789473684210526,7.89473684210526,5,65.0837113841216,0.667638483965015,4.21052631578947,5.27848078409831,0,402.093991597493,402.064025878906,0.0329428988950334
+9051,312274,3795598,312374,3795498,50,90,36.25,0.195706511634956,26.8227395796258,0.765692640692641,10.3911504415562,0.0199191418208829,0.1175,11.75,5,73.360771406705,0.645892351274788,5.5,4.13592258412787,0,402.131293402778,402.119262695312,0.0224817736785413
+9052,312274,3795498,312374,3795398,51,90,24.2105263157895,0.124172407382179,15.9192760766747,0.702597402597403,15.5867256623344,0.0133236382429602,0.0368421052631579,3.68421052631579,4,52.9086443073112,0.636612021857924,1.84210526315789,6.46263262203762,0,402.196800231934,402.150085449219,0.067822633610282
+9053,312274,3795398,312374,3795298,52,90,3.15789473684211,0.0323928019257858,6.94925354000873,0.611111111111111,NA,0.00715154313825463,0,0,0,NA,NA,0,NA,NA,402.380818684896,402.271057128906,0.200563819405037
+9054,312274,3795298,312374,3795198,53,90,0,NA,NA,NA,NA,0.00223877144839877,0,0,0,NA,NA,0,NA,NA,402.986017862956,402.550537109375,0.413150327273648
+9055,312274,3795198,312374,3795098,54,90,0,NA,NA,NA,NA,0.00324373034965902,0,0,0,NA,NA,0,NA,NA,402.581662495931,401.723175048828,0.830632534011741
+9056,312274,3795098,312374,3794998,55,90,0,NA,NA,NA,NA,0.0017790853130193,0,0,0,NA,NA,0,NA,NA,401.21337890625,401.04150390625,0.425093966482344
+9057,312274,3794998,312374,3794898,56,90,0,NA,NA,NA,NA,0.0171865616709846,0,0,0,NA,NA,0,NA,NA,400.910148620605,400.871826171875,0.0814469119988205
+9058,312274,3794898,312374,3794798,57,90,0,NA,NA,NA,NA,0.0183166736912502,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,61.989013671875,58.0882949829102,400.966179741753,400.895080566406,0.149785704924287
+9059,312274,3794798,312374,3794698,58,90,25.75,0.139019108264831,15.4189716375557,0.741884531590414,31.1734510129318,0.0194247749162059,0.025,2.5,4,42.5339393749759,0.368836291913215,1,7.86223583221436,0,401.580436706543,401.126190185547,0.641055320493772
+9060,312274,3794698,312374,3794598,59,90,0,NA,NA,NA,NA,0.0256668879433403,0.0605263157894737,6.05263157894737,4,68.0636092379487,0.645191409897292,3.68421052631579,54.409647402556,41.5646018981934,402.664832221137,401.816009521484,0.962090479599
+9061,312274,3794598,312374,3794498,60,90,18.9473684210526,0.0971784057773573,16.4701513487325,0.638020833333333,16.4298513045212,0.0257408415296691,0.0815789473684211,8.15789473684211,6,64.1730358223426,0.564469914040115,3.42105263157895,19.766271745005,5.19557523727417,403.988461812337,403.421600341797,0.504776080794873
+9062,312274,3794498,312374,3794398,61,90,0,NA,NA,NA,NA,0.0228337168329362,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,51.3563821580675,27.9790287017822,404.43654039171,404.288391113281,0.277176722412005
+9063,312274,3794398,312374,3794298,62,90,15,0.161964009628929,26.4727584783879,0.744444444444444,NA,0.0189485866166933,0.0275,2.75,1,73.5251216233933,0.794344473007712,2.75,7.08487532355569,0,404.410512288411,403.728332519531,0.500683894050646
+9064,312274,3794298,312374,3794198,63,90,0,NA,NA,NA,NA,0.0195416466981298,0.0131578947368421,1.31578947368421,2,42.162911735052,0.797333333333333,1.05263157894737,67.7298721313477,58.0882949829102,403.641031901042,403.248291015625,0.566681621720023
+9065,312274,3794198,312374,3794098,64,90,28.9473684210526,0.0989780058843454,16.6478499565629,0.648557648557649,12.1230087272512,0.0238730461382817,0.0342105263157895,3.42105263157895,4,56.3694475605296,0.597335755373903,2.36842105263158,10.6155478770916,5.19557523727417,403.174158732096,402.920471191406,0.466638436750843
+9066,312274,3794098,312374,3793998,65,90,0,NA,NA,NA,NA,0.0216341821334744,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,28.2434993743896,15.5867252349854,402.809210883247,402.400634765625,0.588047856373086
+9067,312274,3793998,312374,3793898,66,90,0,NA,NA,NA,NA,0.0164494034244581,0.0075,0.75,2,20.9533576270945,0.496221662468514,0.5,86.3163935343425,72.7380523681641,402.322329203288,402.054351806641,0.474519767049375
+9068,312274,3793898,312374,3793798,67,90,0,NA,NA,NA,NA,0.0208368890013868,0.0447368421052632,4.47368421052632,4,56.4063593485795,0.581267217630854,1.84210526315789,70.9268755071303,20.7823009490967,402.243086073134,402.036529541016,0.453259928858042
+9069,312274,3793798,312374,3793698,68,90,0,NA,NA,NA,NA,0.0212905824439459,0.0447368421052632,4.47368421052632,4,59.6034525304417,0.623140495867769,2.36842105263158,89.8706198299632,53.4917221069336,402.349830627441,402.082458496094,0.413648841063871
+9070,312274,3793698,312374,3793598,69,90,0,NA,NA,NA,NA,0.0199146656463415,0.0631578947368421,6.31578947368421,5,68.9304568076558,0.578651685393258,4.21052631578947,55.1367461681366,23.2353191375732,402.305328369141,402.198852539062,0.198006724733889
+9071,312274,3793598,312374,3793498,70,90,11.25,0.0404910024072322,7.57535422011951,0.435185185185185,13.989410479877,0.0104961689966512,0.0325,3.25,2,67.6394147624731,0.827734711455642,2.75,16.1614501659687,0,402.505577935113,402.265045166016,0.89267079357428
+9072,312274,3793498,312374,3793398,71,90,0,NA,NA,NA,NA,0.0208466308795323,0.0131578947368421,1.31578947368421,2,39.355783065763,0.594666666666667,0.789473684210526,46.0258079528809,31.1734504699707,405.901941935221,403.290740966797,2.14148911766017
+9073,312274,3793398,312374,3793298,72,90,2.10526315789474,0.0215952012838572,10.3911503376439,0.291666666666667,NA,0.015591191331738,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,57.2691650390625,57.1513290405273,407.675598144531,407.168975830078,0.534199896450446
+9074,312274,3793298,312374,3793198,73,90,21.8421052631579,0.112025106660009,15.4766927519334,0.366869918699187,20.7823006752878,0.0256898709366061,0.0657894736842105,6.57894736842105,4,63.6153718003284,0.652112676056338,2.63157894736842,8.00055732727051,0,407.925313313802,407.825317382812,0.169505567663028
+9075,312274,3793198,312374,3793098,74,90,1.5,0.00809820048144644,3.46371677921464,0.222222222222222,77.9336275323294,0.0282962540867629,0.1,10,7,65.5049950018919,0.618573797678275,3.25,62.9164469718933,34.8529777526855,407.9341668023,407.831268310547,0.107463357541507
+9076,312274,3793098,312374,3792998,75,90,0.263157894736842,0.00269940016048215,0,0,NA,0.0320443889793846,0.160526315789474,16.0526315789474,6,79.220307480886,0.662861536641628,8.68421052631579,53.3522339805228,18.7329120635986,407.934936523438,407.753662109375,0.218215070442969
+9077,312274,3792998,312374,3792898,76,90,33.6842105263158,0.115174406847238,18.154790898758,0.738872584984104,12.9406814039139,0.027318880526352,0.0631578947368421,6.31578947368421,5,68.3811859000709,0.634831460674157,4.47368421052632,8.59838978449504,0,407.887803819444,407.660308837891,0.46345254080706
+9078,312274,3792898,312374,3792798,77,90,18.1578947368421,0.186258611073268,27.5447701434657,0.714975845410628,NA,0.019142756259412,0.0526315789473684,5.26315789473684,6,55.8310427642727,0.557347670250896,2.89473684210526,23.8176390886307,0,408.894020080566,408.059173583984,0.883582946469059
+9079,312274,3792798,312374,3792698,78,90,18,0.194356811554715,27.3258909575041,0.775462962962963,NA,0.0178427627570272,0.1175,11.75,4,78.8686505985846,0.660056657223796,5.75,22.3929021916491,0,409.863542344835,409.306457519531,0.561896747749846
+9080,312274,3792698,312374,3792598,79,90,21.0526315789474,0.107976006419286,16.7925702989881,0.676062091503268,62.3469026493374,0.0127194502121136,0.0815789473684211,8.15789473684211,5,69.8214955067691,0.651575931232092,3.94736842105263,15.8971610684549,0,411.037106831868,409.841094970703,1.14334831588501
+9081,312274,3792598,312374,3792498,80,90,19.2105263157895,0.197056211715197,27.6248478138227,0.769406392694064,NA,0.0272195715211159,0.165789473684211,16.5789473684211,7,77.6110581135048,0.651276168626326,7.63157894736842,23.2826335543678,0,412.868489583333,412.145599365234,0.971599750980708
+9082,312274,3792498,312374,3792398,81,90,30.2631578947368,0.155215509227723,21.2036903789677,0.677864214992928,25.9778758441098,0.0189570152576045,0.115789473684211,11.5789473684211,6,72.7486100307208,0.709620334620335,4.73684210526316,16.828486084938,0,414.125785827637,413.208740234375,1.00295545730417
+9083,312274,3792398,312374,3792298,82,90,24.75,0.267240615887733,37.5093569832611,0.720538720538721,NA,0.0242405921455429,0.1525,15.25,7,81.7295267386348,0.56587076306562,10.75,24.507242867204,0,415.288909912109,414.804809570312,0.900257911763618
+9084,312274,3792298,312374,3792198,83,90,29.4736842105263,0.302332817974001,33.0996118798736,0.766369047619048,NA,0.0182389946533811,0.0605263157894737,6.05263157894737,8,48.4279199396156,0.40865234982882,1.57894736842105,20.2773076140362,0,414.907872517904,414.084777832031,1.01891454405959
+9085,312274,3792198,312374,3792098,84,90,29.2105263157895,0.149816708906759,20.1974767577969,0.715456989247312,21.4219052194905,0.022568103683175,0.0236842105263158,2.36842105263158,3,45.6606127906116,0.487870619946092,1.05263157894737,4.85740884145101,0,411.275436401367,409.89599609375,2.46579698356832
+9086,312274,3792098,312374,3791998,85,90,13.4210526315789,0.0344173520461474,7.56697053748032,0.324404761904762,19.5757164765331,0.0202309987659407,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,5.19557523727417,0,412.619286431207,410.694122314453,2.10359159975359
+9087,312274,3791998,312374,3791898,86,90,24,0.129571207703143,15.2406595402923,0.763895394223263,36.7382643477322,0.0251305288190633,0.135,13.5,5,79.3183287088501,0.825968052706818,10.5,30.3513267393465,0,414.691251118978,413.334106445312,1.11180638459971
+9088,312274,3791898,312374,3791798,87,90,1.31578947368421,0.0134970008024107,6.23469026493374,0.266666666666667,NA,0.0266456164831891,0.136842105263158,13.6842105263158,5,76.4481806937044,0.661551109893121,5.52631578947368,45.4606484449827,5.19557523727417,415.031090630425,414.587768554688,0.508909575305291
+9089,312274,3791798,312374,3791698,88,90,1.84210526315789,0.00944790056168751,4.29684158485487,0.263888888888889,77.9336283116718,0.0191549684948864,0.0526315789473684,5.26315789473684,4,61.7600536090805,0.591397849462366,2.63157894736842,28.8279438972473,0,414.04714457194,413.382751464844,0.609121194068747
+9090,312274,3791698,312374,3791598,89,90,19.7368421052632,0.202455012036161,25.8364513189119,0.795555555555556,NA,0.02852394344068,0.192105263157895,19.2105263157895,3,88.5494814899375,0.767915309446254,15.5263157894737,10.8181841079503,0,413.129713270399,412.842803955078,0.489034591471438
+9091,312274,3791598,312374,3791498,90,90,0.25,0.00269940016048215,0,0,NA,0.0270514300526338,0.1175,11.75,7,70.7206478802648,0.603399433427762,5.75,35.8760702254924,15.5867252349854,412.424453735352,412.244995117188,0.243247323815125
+9092,312274,3791498,312374,3791398,91,90,13.1578947368421,0.0449900026747025,10.1797281982918,0.411441798941799,40.5285245541433,0.0292269475663105,0.139473684210526,13.9473684210526,3,84.5247845997964,0.885069059380986,11.8421052631579,10.4816461509129,0,412.286163330078,412.222045898438,0.142558517338781
+9093,312274,3791398,312374,3791298,92,90,4.21052631578947,0.0107976006419286,2.63326852367136,0.251736111111111,42.8634953765839,0.0176675899998181,0.0473684210526316,4.73684210526316,3,69.0166313507975,0.727849396357684,3.68421052631579,15.5809442996979,0,412.740018208822,412.380554199219,0.538242291923346
+9094,312274,3791298,312374,3791198,93,90,11.0526315789474,0.0377916022467501,7.92024413836098,0.429738562091503,29.7845683020494,0.0498533581527657,0.365789473684211,36.578947368421,3,92.485322151768,0.85101447381318,26.8421052631579,11.7396804343025,0,413.223378499349,412.771728515625,0.527129470474834
+9095,312274,3791198,312374,3791098,94,90,14.75,0.0398161523671117,9.45066745362031,0.392424242424242,20.7823007921892,0.0224569903505108,0.2025,20.25,5,80.5078323389642,0.651689306861721,7.25,9.00977988301972,0,413.699661254883,413.150024414062,0.633745571008353
+9096,312274,3791098,312374,3790998,95,90,24.4736842105263,0.0627610537312099,8.03669271542791,0.251104797979798,18.1845132207673,0.0135120183870353,0.163157894736842,16.3157894736842,4,83.3771208298071,0.73445143256464,12.3684210526316,4.49415690668168,0,414.371012369792,414.003051757812,0.479308195668102
+9097,312274,3790998,312374,3790898,96,90,32.6315789473684,0.0836814049749466,13.5716714225509,0.526704411227799,15.5867255064659,0.0465346192150671,0.494736842105263,49.4736842105263,1,97.7196633854302,0.829382183908046,49.4736842105263,4.17375505985098,0,414.813296000163,414.41015625,0.501104352013713
+9098,312274,3790898,312374,3790798,97,90,33.9473684210526,0.174111310351099,16.2381485952805,0.623924731182796,20.7823008831125,0.0562696895509266,0.555263157894737,55.5263157894737,4,95.4901967259573,0.839391377852916,50.7894736842105,6.09880064110055,0,415.391737196181,414.841918945312,0.752979743121872
+9099,312274,3790798,312374,3790698,98,90,37.75,0.203804712116402,18.7477810000685,0.678014184397163,15.5867256623344,0.0480113531710776,0.51,51,2,96.445196400209,0.833073070917021,47.25,7.6289838996588,0,416.079363505046,415.27978515625,0.599811264521518
+9100,312274,3790698,312374,3790598,99,90,51.5789473684211,0.529082431454501,31.4371635279681,0.869897959183673,NA,0.0535993824583582,0.616666666666667,61.6666666666667,1,98.4787239257302,0.911783238815375,61.6666666666667,5.71847737157667,0,417.282190958659,416.077484130859,1.39930509381168
+9101,312374,3800598,312474,3800498,0,91,49.0304709141274,0.119448457101377,13.1496436674929,0.412008101851852,23.3800884935098,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.323417663574,390.78564453125,0.669507080139159
+9102,312374,3800498,312474,3800398,1,91,33.9473684210526,0.069644524140464,7.43863677762335,0.285310734463277,16.6258406441463,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.280695597331,390.838287353516,0.598850238607772
+9103,312374,3800398,312474,3800298,2,91,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.045160293579,390.844360351562,0.306476799405909
+9104,312374,3800298,312474,3800198,3,91,7.4792243767313,0.0364419021665219,13.5013109092956,0.444117647058824,83.7761331483131,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.728322347005,390.550201416016,0.280846961384425
+9105,312374,3800198,312474,3800098,4,91,14.1274238227147,0.0458898027282127,12.2425426820423,0.539136302294197,12.6435415049719,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.39345741272,390.238586425781,0.204384082683807
+9106,312374,3800098,312474,3799998,5,91,31.5789473684211,0.0809820048144931,9.56369785472746,0.336366758241758,24.0124327251463,0.00723681123432279,0.0328947368421053,3.28947368421053,2,45.3445993393869,0.586394557823129,2.63157894736842,3.11734504699707,0,390.220209757487,390.189025878906,0.0798513893987342
+9107,312374,3799998,312474,3799898,6,91,21.606648199446,0.0350922020862803,8.64606655853449,0.512195905945906,16.8614910943026,0.0144224972806779,0.127423822714681,12.7423822714681,2,88.1771776858108,0.941229141229141,12.4653739612188,28.8363482330156,5.19557523727417,390.277219772339,390.176879882812,0.135033323058304
+9108,312374,3799898,312474,3799798,7,91,28.808864265928,0.0561475233380485,9.11275791138342,0.492372233501266,19.743185807789,0.00667220775797525,0.132963988919668,13.2963988919668,2,87.793160126734,0.831216395231045,12.4653739612188,21.6269368827343,7.34765291213989,390.419413248698,390.271484375,0.16956563094718
+9109,312374,3799798,312474,3799698,8,91,32.9639889196676,0.0803071547743723,10.2649220784294,0.422453703703704,25.4401636257824,0.00205888618903194,0.14404432132964,14.404432132964,2,88.4119208381339,0.868732046107414,13.5734072022161,18.3842221131692,5.19557523727417,390.792984008789,390.507202148438,0.392343417382445
+9110,312374,3799698,312474,3799598,9,91,22.8947368421053,0.0587119534905075,13.2245512619666,0.425154320987654,12.9889379999919,-0.00127881858738635,0.0131578947368421,1.31578947368421,3,24.9842363496895,0.392,0.526315789473684,16.7944658279419,10.3911504745483,391.227823893229,390.145690917969,0.868757029111027
+9111,312374,3799598,312474,3799498,10,91,66.4819944598338,0.323928019257972,26.3375301782701,0.755038126361656,15.5867256623399,-0.0362799670187682,0,0,0,NA,NA,0,NA,NA,391.626810073853,390.181671142578,1.45591415167678
+9112,312374,3799498,312474,3799398,11,91,26.0387811634349,0.0845812050284705,17.7525956887825,0.520213609836251,17.3185840692665,0.00249145494645415,0.0221606648199446,2.21606648199446,2,56.2053215106892,0.590934844192635,1.66204986149584,16.6288707256317,10.3911504745483,392.779142379761,391.201446533203,1.41489570661263
+9113,312374,3799398,312474,3799298,12,91,20.4986149584488,0.0665852039585832,11.7410857676415,0.638493676603433,15.8677675430672,0.0107508241696786,0.0110803324099723,1.10803324099723,1,52.7777777777778,0.747198879551821,1.10803324099723,14.1487491130829,11.6176595687866,392.897221883138,392.268157958984,0.951445170986822
+9114,312374,3799298,312474,3799198,13,91,51.3157894736842,0.131595757823551,18.2314535005568,0.718538367194582,15.5867255454344,0.011753462907463,0.0631578947368421,6.31578947368421,7,53.9723958643135,0.466292134831461,2.10526315789474,8.47215668360392,5.19557523727417,393.4280128479,392.405059814453,0.986923737589185
+9115,312374,3799198,312474,3799098,14,91,52.0775623268698,0.169162410056941,24.7776184633711,0.717309863054544,12.1230088484866,0.0142869183898994,0.0415512465373961,4.15512465373961,5,47.1716708269646,0.478323699421965,1.38504155124654,7.41727717717489,5.19557523727417,394.253453572591,393.662048339844,0.583471560562007
+9116,312374,3799098,312474,3798998,15,91,42.9362880886427,0.139469008291627,16.9288964714435,0.529119341563786,13.1717378724924,0.0172250063292935,0.0775623268698061,7.75623268698061,6,65.5052934295373,0.638638638638639,4.70914127423823,7.02042298657553,0,393.695711135864,393.3271484375,0.441253464294561
+9117,312374,3798998,312474,3798898,16,91,45.4293628808864,0.110675406579807,18.4060716400678,0.658382624538285,13.4105008730409,0.0213959604191277,0.182825484764543,18.2825484764543,5,82.6369780891466,0.733971997052321,9.41828254847645,9.5804456653017,0,393.158406575521,393.065979003906,0.169476823730039
+9118,312374,3798898,312474,3798798,17,91,36.3157894736842,0.0745034444293336,15.2020733976696,0.572223774631561,13.6364164479323,0.0294005891679262,0.215789473684211,21.5789473684211,7,83.4765200785127,0.727377921777366,11.5789473684211,8.37974872240206,0,393.027490615845,392.983612060547,0.061022038343327
+9119,312374,3798798,312474,3798698,18,91,17.1745152354571,0.0334725619899905,9.05159797530173,0.479502023031435,19.7431858389638,0.0221806147301045,0.121883656509695,12.1883656509695,6,78.6605619028306,0.676826668940234,8.31024930747922,11.4772077582099,0,393.087249755859,393.001800537109,0.132047369571167
+9120,312374,3798698,312474,3798598,19,91,27.7008310249307,0.134970008024155,20.6549041988731,0.669407894736842,10.3911504415599,0.0234591035173391,0.193905817174515,19.3905817174515,6,81.6925301647494,0.646998016371916,12.1883656509695,20.7022606032235,0,393.516904830933,393.173034667969,0.548641584315567
+9121,312374,3798598,312474,3798498,20,91,21.606648199446,0.105276606258841,14.0889258371295,0.363636363636364,10.3911503376439,0.0422499553794656,0.321329639889197,32.1329639889197,2,95.268258699801,0.859669582118562,31.8559556786704,11.8563384023206,0,394.893714904785,394.091949462891,0.826594720909448
+9122,312374,3798498,312474,3798398,21,91,38.1578947368421,0.0978532558175124,10.0941689106074,0.352250608272506,20.9841156501108,0.0258593057787757,0.242105263157895,24.2105263157895,3,89.3707763940191,0.798865176151761,16.3157894736842,10.4644945393438,0,395.551050186157,395.198425292969,0.353150363188591
+9123,312374,3798398,312474,3798298,22,91,54.8476454293629,0.534481231775654,41.6386612165384,0.767676767676768,NA,0.0364935492429256,0.301939058171745,30.1939058171745,7,85.3865550240501,0.687313673354283,16.6204986149584,7.28338694353716,0,395.548812866211,395.141876220703,0.409689728058827
+9124,312374,3798298,312474,3798198,23,91,43.213296398892,0.421106425035364,35.7633639654267,0.733974358974359,NA,0.0332735372731272,0.254847645429363,25.4847645429363,6,82.9587065371844,0.729961918578294,12.7423822714681,6.1266292800074,0,395.621154785156,395.103820800781,0.53363872343743
+9125,312374,3798198,312474,3798098,24,91,14.9584487534626,0.0364419021665219,9.76360652215449,0.346705426356589,30.3104894512521,0.0238129019893969,0.121883656509695,12.1883656509695,5,72.3507938685404,0.646048256458351,4.43213296398892,9.05152114954862,0,395.942858378092,395.448272705078,0.534982971816529
+9126,312374,3798098,312474,3797998,25,91,81.0526315789474,0.831415249428795,35.0644645286504,0.922077922077922,NA,0.0189267176592119,0.05,5,4,65.2324269878267,0.70961887477314,3.68421052631579,0.820353984832764,0,396.448471069336,395.858062744141,0.501506338065038
+9127,312374,3797998,312474,3797898,26,91,49.0304709141274,0.119448457101377,14.8661036981774,0.519852941176471,19.6941883654575,0.0364629315778967,0.235457063711911,23.5457063711911,4,87.6745963549713,0.766124388137057,17.4515235457064,2.58599890540628,0,396.74169921875,396.382934570312,0.329982991684632
+9128,312374,3797898,312474,3797798,27,91,67.3130193905817,0.218651412999131,19.1655070632429,0.505990154224838,13.1717378724924,0.0393108517172023,0.349030470914127,34.9030470914127,6,89.6627308745276,0.698132490941187,24.3767313019391,0.924243911864266,0,396.88395690918,396.596923828125,0.319693219467808
+9129,312374,3797798,312474,3797698,28,91,63.1578947368421,0.123092647318029,10.5274940085984,0.423517104891151,11.4302654441495,0.0489859044714863,0.515235457063712,51.5235457063712,3,96.7207440543848,0.784119601328904,49.584487534626,1.13567604813524,0,397.317422866821,396.954528808594,0.319106171997472
+9130,312374,3797698,312474,3797598,29,91,91.0526315789474,0.466996227763577,24.1571319841707,0.611056160017584,10.3911504415599,0.0857696891321163,0.855263157894737,85.5263157894737,1,99.5603354844149,0.628058727569331,85.5263157894737,0.563402434128981,0,397.664527893066,397.406066894531,0.273198459789619
+9131,312374,3797598,312474,3797498,30,91,90.8587257617728,0.885403252638457,36.243507348841,0.917682926829268,NA,0.0716187954052168,0.825484764542936,82.5484764542936,1,99.4408863994965,0.499504852446029,82.5484764542936,0.482192170699971,0,398.20333480835,397.859039306641,0.378405738853867
+9132,312374,3797498,312474,3797398,31,91,97.7839335180055,0.952888256650535,37.3057191174952,0.929650613786591,NA,0.07356068617316,0.869806094182826,86.9806094182826,1,99.5987109379562,0.727537377803335,86.9806094182826,0.13237134362482,0,398.80965423584,398.627105712891,0.304979263014464
+9133,312374,3797398,312474,3797298,32,91,93.6288088642659,0.912397254243288,37.4963036714039,0.898915187376726,NA,0.0716317541022731,0.786703601108033,78.6703601108033,2,96.7945299795224,0.762950532613454,60.1108033240997,0.256119906062811,0,399.267265319824,398.983581542969,0.249550826254076
+9134,312374,3797298,312474,3797198,33,91,89.7368421052632,0.460247727362369,22.5040756468404,0.67952365015618,11.6176592829322,0.0529928028147352,0.497368421052632,49.7368421052632,4,92.5375154304758,0.670306656694091,32.6315789473684,0.808591320401146,0,399.568138122559,399.415466308594,0.167572012383512
+9135,312374,3797198,312474,3797098,34,91,46.814404432133,0.228099313560822,17.9336643909116,0.700086306098964,26.4923394249063,0.0346463139364946,0.340720221606648,34.0720221606648,2,92.2724019518666,0.829954403285978,23.5457063711911,2.56388641372929,0,399.119049072266,398.5,0.832268953214782
+9136,312374,3797098,312474,3796998,35,91,60.9418282548476,0.296934017653141,21.1794781726492,0.802065884980458,32.8597028719326,0.0324313095260452,0.398891966759003,39.8891966759003,2,94.0915393921459,0.86136712749616,31.5789473684211,1.87639802032047,0,399.281809488932,398.5,1.93173715771233
+9137,312374,3796998,312474,3796898,36,91,89.4736842105263,0.871906251836042,37.3618858453221,0.907120743034056,NA,0.05890586439177,0.598337950138504,59.8337950138504,3,97.2882594228411,0.820398009950249,58.1717451523546,1.51412825231199,0,405.145215988159,401.35498046875,3.64853942030234
+9138,312374,3796898,312474,3796798,37,91,85,0.871906251836042,40.2422343480425,0.886996904024768,NA,0.035419789045945,0.257894736842105,25.7894736842105,3,90.5534307771672,0.709058671824629,19.4736842105263,0.499104640921768,0,408.128977457682,407.322631835938,0.919748057497829
+9139,312374,3796798,312474,3796698,38,91,95.0138504155125,0.925894255045704,37.2637809193941,0.908163265306122,NA,0.0411706917431246,0.351800554016621,35.180055401662,6,89.3400358146772,0.706145706145706,22.7146814404432,0.0818200824767586,0,409.59072303772,408.960174560547,0.696184875760452
+9140,312374,3796698,312474,3796598,39,91,76.7313019390582,0.37386692222691,28.1673259912861,0.829184480948095,15.5867255064659,0.090333766312341,0.78393351800554,78.393351800554,1,99.2809290737347,0.852106227106227,78.393351800554,1.38582847480639,0,410.67582321167,410.257446289062,0.53883596639454
+9141,312374,3796598,312474,3796498,40,91,78.6703601108033,0.3833148227886,29.3379049251917,0.705228758169935,20.7823008831198,0.107428459698267,0.903047091412742,90.3047091412742,1,99.7093740351042,0.664576074332172,90.3047091412742,1.72261062136457,0,411.194814046224,410.883178710938,0.356170824339849
+9142,312374,3796498,312474,3796398,41,91,77.5623268698061,0.377916022467634,25.3581151653161,0.708803147756636,15.5867256623399,0.133853154205343,0.81994459833795,81.994459833795,1,99.4202635107429,0.950145007595636,81.994459833795,1.15233438079422,0,410.246025085449,409.182159423828,0.884666061016189
+9143,312374,3796398,312474,3796298,42,91,33.1578947368421,0.340124420220871,36.0573055951457,0.792328042328042,NA,0.0339201192878567,0.273684210526316,27.3684210526316,2,94.6326733923108,0.786483763465861,27.1052631578947,36.1901960372925,0,409.093630472819,408.541564941406,0.813630869605239
+9144,312374,3796298,312474,3796198,43,91,3.04709141274238,0.0148467008826571,4.85937925766584,0.416666666666667,16.4298513045218,0.0283004912687079,0.0775623268698061,7.75623268698061,5,71.4831782260038,0.566366366366366,5.26315789473684,23.6762210641588,5.19557523727417,408.630378723145,407.652709960938,0.970574199249522
+9145,312374,3796198,312474,3796098,44,91,58.1717451523546,0.283437016850726,26.1728387182388,0.80713200773267,18.73291280641,0.0579819843525175,0.60387811634349,60.387811634349,2,95.4998752335952,0.769936959592132,36.5650969529086,2.53408748512968,0,407.318984985352,405.49853515625,1.93887688646621
+9146,312374,3796098,312474,3795998,45,91,67.8670360110803,0.22045101310612,16.864394520901,0.713188214094011,10.79998665274,0.0659887284087856,0.656509695290859,65.6509695290859,2,97.8282022504382,0.822562440835943,63.98891966759,1.05147898146875,0,404.120426177979,403.095916748047,1.53689417349464
+9147,312374,3795998,312474,3795898,46,91,71.8421052631579,0.736936243811887,37.1012086876543,0.844932844932845,NA,0.0662833824837925,0.697368421052632,69.7368421052632,1,98.9321616400442,0.787245210392792,69.7368421052632,1.39144489720183,0,402.660194396973,402.386596679688,0.465483381253629
+9148,312374,3795898,312474,3795798,47,91,69.8060941828255,0.226749613480581,19.1918572087892,0.611831275720165,12.1230087272512,0.0466701961478794,0.418282548476454,41.8282548476454,3,92.0587816812327,0.739350180505415,26.5927977839335,0.599184481513421,0,402.219911575317,402.099884033203,0.14064898856073
+9149,312374,3795798,312474,3795698,48,91,99.4459833795014,0.969084657613434,37.5768148882739,0.930826369545033,NA,0.0550136888471613,0.634349030470914,63.4349030470914,1,98.5802481063074,0.839880065289901,63.4349030470914,0,0,402.072453816732,402.044372558594,0.056712279013078
+9150,312374,3795698,312474,3795598,49,91,36.5650969529086,0.0890802052959424,11.9864475064517,0.578929375804376,13.602192394699,0.0318573431450406,0.254847645429363,25.4847645429363,6,87.0404824993712,0.680864085592529,15.7894736842105,6.88966020293858,0,402.076271057129,402.050231933594,0.0381313334535107
+9151,312374,3795598,312474,3795498,50,91,8.15789473684211,0.020920351243744,4.86404538770683,0.373842592592593,43.2850582106726,0.0183174429827456,0.131578947368421,13.1578947368421,3,84.7144710973387,0.810338680926916,11.0526315789474,21.4087005805969,0,402.156400044759,402.114196777344,0.0753138888446574
+9152,312374,3795498,312474,3795398,51,91,45.983379501385,0.112025106660049,11.4701228823703,0.558059995559996,23.3800882596988,0.0241751852586188,0.0886426592797784,8.86426592797784,4,68.7321229769861,0.725683890577508,3.601108033241,3.96393384039402,0,402.289976119995,402.169006347656,0.140772468139622
+9153,312374,3795398,312474,3795298,52,91,22.7146814404432,0.221350813159614,24.5080745609299,0.808943089430894,NA,0.0137220194462676,0,0,0,NA,NA,0,NA,NA,402.553245544434,402.361785888672,0.337590748871637
+9154,312374,3795298,312474,3795198,53,91,4.70914127423823,0.0458898027282127,9.45654349848641,0.647058823529412,NA,0.0156321382098926,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0,403.353855133057,402.834442138672,0.454071330594645
+9155,312374,3795198,312474,3795098,54,91,0,NA,NA,NA,NA,0.0111465048266262,0,0,0,NA,NA,0,NA,NA,403.051593780518,402.280578613281,0.86080080391522
+9156,312374,3795098,312474,3794998,55,91,0,NA,NA,NA,NA,0.0148900776754528,0,0,0,NA,NA,0,NA,NA,401.250475565592,401.036743164062,0.630435069723217
+9157,312374,3794998,312474,3794898,56,91,4.98614958448753,0.0485892028886958,11.0676727039315,0.62962962962963,NA,0.0217612611654394,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,52.2148818969727,52.2148818969727,400.916072845459,400.876770019531,0.0782873190434638
+9158,312374,3794898,312474,3794798,57,91,10.5263157894737,0.0512886030491789,9.43293522691867,0.597916666666667,47.9008362727036,0.0216473877326607,0.03601108033241,3.601108033241,3,59.7050842905758,0.711845466155811,2.49307479224377,4.96146007684561,0,401.081583658854,400.928558349609,0.291054072551895
+9159,312374,3794798,312474,3794698,58,91,6.8421052631579,0.0233948013908536,5.97510651732283,0.363888888888889,34.1525568147667,0.0192587678480777,0.0631578947368421,6.31578947368421,3,70.0296146014243,0.691011235955056,3.15789473684211,8.20314701398214,0,402.016189575195,401.3037109375,0.710462253160372
+9160,312374,3794698,312474,3794598,59,91,14.6814404432133,0.0476894028352015,11.530675519998,0.569444444444444,12.1230087965286,0.0177353050791864,0.0193905817174515,1.93905817174515,3,40.5688593718106,0.490112994350283,1.10803324099723,11.1333755084446,5.19557523727417,403.119155883789,402.6259765625,0.615325805177851
+9161,312374,3794598,312474,3794498,60,91,24.9307479224377,0.0607365036108698,12.5743971436125,0.548947811447811,10.3911503896019,0.0294737954851104,0.213296398891967,21.3296398891967,4,85.2616619947494,0.728950911350456,12.7423822714681,9.44815212101131,0,403.925855636597,403.331207275391,0.476635139928333
+9162,312374,3794498,312474,3794398,61,91,12.7423822714681,0.0620862036911113,13.3689439863089,0.40530303030303,52.9846788498127,0.0183895493271777,0.102493074792244,10.2493074792244,3,81.6508014538614,0.762548067192876,8.03324099722992,14.3290072002926,5.19557523727417,404.391515096029,404.066314697266,0.348386552675272
+9163,312374,3794398,312474,3794298,62,91,22.8947368421053,0.23484781396203,27.8454349353742,0.718390804597701,NA,0.0201645322312719,0.0289473684210526,2.89473684210526,5,40.5412612837039,0.382113821138211,1.05263157894737,12.8673804890026,0,404.501401901245,404.161254882812,0.334865630487217
+9164,312374,3794298,312474,3794198,63,91,5.81717451523546,0.0188958011233817,4.75037600725772,0.351851851851852,50.7280550367779,0.0147192590292764,0.102493074792244,10.2493074792244,2,81.3310518237384,0.74428253390002,6.09418282548476,23.2003695513751,15.5867252349854,403.866221110026,403.69921875,0.282412088829879
+9165,312374,3794198,312474,3794098,64,91,31.5789473684211,0.0615463236590147,7.89983252625456,0.454239130434783,17.2550780460798,0.0237622621921962,0.0886426592797784,8.86426592797784,4,72.0256672218156,0.662380173018471,3.8781163434903,9.84881959855556,0,403.673837661743,403.383270263672,0.258411420401907
+9166,312374,3794098,312474,3793998,65,91,3.601108033241,0.0350922020862803,8.36073019263296,0.58974358974359,NA,0.0158073385040719,0.102493074792244,10.2493074792244,3,83.9839197525506,0.689485934021453,9.14127423822715,28.6503793871081,10.3911504745483,403.670806884766,403.359802246094,0.372817932218684
+9167,312374,3793998,312474,3793898,66,91,20.5263157894737,0.0701844041725607,13.7518477706112,0.416968599033816,12.6435414584993,0.0152150010706177,0.0657894736842105,6.57894736842105,4,75.2835887135572,0.67887323943662,5.52631578947368,12.4487469100952,0,403.447101593018,402.790161132812,0.616767305856015
+9168,312374,3793898,312474,3793798,67,91,13.5734072022161,0.066135303931836,11.4100848427518,0.632621951219512,33.2679134207198,0.00996341055417406,0,0,0,NA,NA,0,NA,NA,403.557253519694,402.799865722656,0.721516416173439
+9169,312374,3793798,312474,3793698,68,91,0,NA,NA,NA,NA,0.00245765436824679,0,0,0,NA,NA,0,NA,NA,403.806354522705,402.781402587891,1.0297610370415
+9170,312374,3793698,312474,3793598,69,91,8.03324099722992,0.0260942015513367,4.85643705795167,0.302962962962963,33.3156890747935,0.000150543140077598,0,0,0,NA,NA,0,NA,NA,403.888820648193,402.564575195312,1.29451966094583
+9171,312374,3793598,312474,3793498,70,91,18.1578947368421,0.0372517222146668,9.40599746454977,0.51133069828722,18.002205893217,-0.00244308727074225,0.0184210526315789,1.84210526315789,1,65.5670725514463,1,1.84210526315789,17.7563650948661,11.6176595687866,403.856821695964,402.625091552734,1.2277580982275
+9172,312374,3793498,312474,3793398,71,91,12.7423822714681,0.124172407382223,24.8290741123265,0.666666666666667,NA,0.0163405517278558,0.0526315789473684,5.26315789473684,2,72.6112499709987,0.818007662835249,4.15512465373961,17.7174237401862,10.3911504745483,405.651575088501,404.101348876953,1.33416926300884
+9173,312374,3793398,312474,3793298,72,91,13.5734072022161,0.132270607863672,22.6333813474463,0.707482993197279,NA,0.0219405908806303,0.0803324099722992,8.03324099722992,3,80.1640948464557,0.676108690079467,6.92520775623269,16.5527723739887,5.19557523727417,407.305610656738,406.986206054688,0.629329486532656
+9174,312374,3793298,312474,3793198,73,91,35.4570637119114,0.345523220541837,33.172759248853,0.770833333333333,NA,0.0239609175395271,0.0415512465373961,4.15512465373961,4,58.5808548398306,0.715449290593799,3.04709141274238,13.3279349327087,0,407.718378067017,407.418548583984,0.279663898905416
+9175,312374,3793198,312474,3793098,74,91,10.7894736842105,0.0276688516449518,7.09560484111505,0.366111111111111,29.4187893580212,0.0277910170461316,0.144736842105263,14.4736842105263,4,82.3878092160774,0.741538461538461,9.47368421052632,17.3545137492093,7.34765291213989,407.917002360026,407.817169189453,0.188475770353641
+9176,312374,3793098,312474,3792998,75,91,0.277008310249307,0.0026994001604831,0,0,NA,0.024394002310549,0.121883656509695,12.1883656509695,4,83.7960361306932,0.784551112626822,10.803324099723,32.8858678340912,10.3911504745483,408.008501052856,407.880004882812,0.263699959673536
+9177,312374,3792998,312474,3792898,76,91,28.5318559556787,0.13901910826488,15.0795393981889,0.52209595959596,15.5867256623399,0.0299800886299575,0.138504155124654,13.8504155124654,1,90.6277457305062,0.918063173822584,13.8504155124654,12.5877834796906,0,409.059819539388,408.205200195312,1.58454883528724
+9178,312374,3792898,312474,3792798,77,91,6.92520775623269,0.0168712510030194,5.77593056422588,0.329059829059829,25.9778758441098,0.0236578247781747,0.0941828254847645,9.41828254847645,2,85.3240652127375,0.881716906946265,9.14127423822715,12.0692049054538,5.19557523727417,410.133214950562,408.829284667969,1.28488839656886
+9179,312374,3792798,312474,3792698,78,91,27.3684210526316,0.0467896027817071,10.6048701050755,0.546775942609276,15.1296326499946,0.0307961901437107,0.131578947368421,13.1578947368421,5,81.4018633831919,0.810338680926916,10.7894736842105,7.17722367286682,0,410.640645345052,410.104919433594,0.806721771476227
+9180,312374,3792698,312474,3792598,79,91,29.9168975069252,0.0971784057773917,17.0719531682545,0.621493920789695,10.3911503376439,0.0302233988940545,0.210526315789474,21.0526315789474,3,87.431537445417,0.810945273631841,16.6204986149584,7.06632806752857,0,411.717971801758,410.647369384766,0.928505237281245
+9181,312374,3792598,312474,3792498,80,91,5.81717451523546,0.0188958011233817,6.26202077276146,0.355270655270655,19.0504424761932,0.0405462632009597,0.304709141274238,30.4709141274238,7,86.6810537130187,0.718132495145048,22.1606648199446,18.9691705010154,0,413.251424153646,412.526184082031,1.1170007700057
+9182,312374,3792498,312474,3792398,81,91,8.03324099722992,0.039141302327005,10.6771756823962,0.276785714285714,10.3911504415599,0.0309441195326462,0.191135734072022,19.1135734072022,4,89.4554958840607,0.846739499603759,18.005540166205,13.7605752737626,0,415.014627456665,414.292327880859,0.786408625580736
+9183,312374,3792398,312474,3792298,82,91,27.3684210526316,0.140368808345121,20.9853750022044,0.720014790910313,25.9778758441098,0.0331948836921488,0.284210526315789,28.421052631579,3,92.7409849937851,0.742081447963801,24.7368421052632,12.6078333015795,0,415.623336791992,415.245513916016,0.324003348081682
+9184,312374,3792298,312474,3792198,83,91,11.9113573407202,0.116074206900773,26.6138323869235,0.651162790697674,NA,0.0329663968569092,0.218836565096953,21.8836565096953,5,84.0070318717746,0.689108409321175,13.8504155124654,22.2255365395848,0,415.535776138306,415.037506103516,0.547343070585151
+9185,312374,3792198,312474,3792098,84,91,27.4238227146814,0.0668101539719568,14.0560769795391,0.474283154121864,12.5432281255967,0.0177413966309342,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,5.19557523727417,5.19557523727417,412.158767700195,410.563415527344,2.73327944711154
+9186,312374,3792098,312474,3791998,85,91,36.8421052631579,0.0897550553360631,11.5737476072229,0.511429139336116,10.3911503376439,0.0209518504418857,0.0443213296398892,4.43213296398892,1,79.1666666666667,0.91280193236715,4.43213296398892,1.62361726164818,0,414.061538696289,412.248229980469,2.07403958002253
+9187,312374,3791998,312474,3791898,86,91,39.4736842105263,0.134970008024155,18.4009695233009,0.734526660280971,12.9406813574434,0.0171835307719831,0.0947368421052632,9.47368421052632,4,72.0932460431247,0.723837209302326,3.68421052631579,10.8935196664598,0,415.364589691162,414.222869873047,0.580799611487957
+9188,312374,3791898,312474,3791798,87,91,29.3628808864266,0.0953788056704029,10.1679724772529,0.505777144666034,14.6725398163281,0.0225686458286273,0.0886426592797784,8.86426592797784,4,69.2550125217457,0.641278933832125,3.601108033241,5.089908644557,0,415.077059427897,414.534240722656,0.77483544461226
+9189,312374,3791798,312474,3791698,88,91,17.1745152354571,0.0557876033166508,10.5838465011914,0.378968253968254,17.1445234445724,0.0271987733589982,0.135734072022161,13.5734072022161,6,74.9566197557136,0.600541819291819,7.20221606648199,11.1201909318262,0,413.700788497925,413.189147949219,0.646064370915142
+9190,312374,3791698,312474,3791598,89,91,22.7146814404432,0.110675406579807,12.459942047814,0.406378600823045,25.9778758441098,0.0255352590486073,0.224376731301939,22.4376731301939,2,92.6275982423299,0.883606150793651,21.8836565096953,2.42960762094568,0,412.976399739583,412.750366210938,0.382851816984632
+9191,312374,3791598,312474,3791498,90,91,0,NA,NA,NA,NA,0.028075984259761,0.115789473684211,11.5789473684211,4,75.3939523865371,0.755469755469755,3.94736842105263,72.8466146642511,51.955753326416,412.520088195801,412.330352783203,0.237013083295555
+9192,312374,3791498,312474,3791398,91,91,17.4515235457064,0.0566874033701451,10.6744972233615,0.55026455026455,14.6725398628007,0.0398913092024907,0.321329639889197,32.1329639889197,4,88.6993943294363,0.789504373177843,17.7285318559557,29.5813257324285,0,412.639752705892,412.339111328125,0.424538355527279
+9193,312374,3791398,312474,3791298,92,91,16.3434903047091,0.0796323047342515,14.1422546222485,0.662114845938375,14.6953058096335,0.0322935557424367,0.196675900277008,19.6675900277008,5,85.3003234937362,0.760993103448276,14.6814404432133,13.3619391683122,0,413.400712966919,412.676452636719,0.618518312421718
+9194,312374,3791298,312474,3791198,93,91,20.4986149584488,0.19975561187575,23.3747488709331,0.792792792792793,NA,0.0317823780023598,0.204986149584488,20.4986149584488,3,88.2452675691727,0.806486196730099,15.7894736842105,5.6081533174257,0,414.004765828451,413.627136230469,0.441066740837478
+9195,312374,3791198,312474,3791098,94,91,16.5789473684211,0.0425155525276089,10.1893749629324,0.406938159879336,22.6220641451782,0.0218847231706221,0.0868421052631579,8.68421052631579,8,58.8720183201173,0.411890276443591,2.36842105263158,8.49606014020515,0,414.420888900757,413.926086425781,0.385879439419914
+9196,312374,3791098,312474,3790998,95,91,50.9695290858726,0.248344814764445,32.5108366654784,0.717097207410041,15.5867255064659,0.0508896756756482,0.523545706371191,52.3545706371191,5,93.9444250649319,0.772126245847176,43.4903047091413,3.07474525643404,0,414.91237894694,414.59130859375,0.425002310929679
+9197,312374,3790998,312474,3790898,96,91,50.415512465374,0.163763609735975,19.3036967011328,0.610174781523096,10.3911503722826,0.0652864750050953,0.709141274238227,70.9141274238227,3,97.3463765446904,0.892559523809524,67.590027700831,2.56704608537257,0,415.651119232178,415.066162109375,0.689179463876033
+9198,312374,3790898,312474,3790798,97,91,4.70914127423823,0.0229449013641064,6.34948354390935,0.518518518518519,72.7380530909194,0.0257359875600978,0.155124653739612,15.5124653739612,5,79.3070809005109,0.731553151935102,7.75623268698061,27.1152949333191,0,416.383827209473,416.093627929688,0.486035577917015
+9199,312374,3790798,312474,3790698,98,91,0.526315789473684,0.0026994001604831,0,0,132.257752286702,0.030872653101381,0.0868421052631579,8.68421052631579,2,85.1885343539816,0.817483189241114,8.42105263157895,22.7497091293335,0,416.418800354004,416.127319335938,0.420511758135424
+9200,312374,3790698,312474,3790598,99,91,18.005540166205,0.0877305052157008,11.3128806694399,0.477513227513228,22.0429587144503,0.0203506263618565,0.149122807017544,14.9122807017544,2,84.8857072886328,0.810878066121578,9.35672514619883,25.8305241827871,0,417.350770950317,416.643463134766,0.939264617846821
+9201,312474,3800598,312574,3800498,0,92,83.9335180055402,0.40895912431319,20.9130333701338,0.569258639910814,20.7823008831198,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.290171305339,391.881256103516,0.518132313588624
+9202,312474,3800498,312574,3800398,1,92,24.7368421052632,0.0845812050284705,12.6044463764839,0.46564776867031,19.0504423722772,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.445017496745,391.912780761719,0.720626561137979
+9203,312474,3800398,312574,3800298,2,92,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.742619832357,391.147216796875,0.82333492586137
+9204,312474,3800298,312574,3800198,3,92,4.70914127423823,0.0229449013641064,5.39097363685872,0.405555555555556,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.44282023112,390.825073242188,0.739755030919733
+9205,312474,3800198,312574,3800098,4,92,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.867080688477,390.42431640625,0.546480475063002
+9206,312474,3800098,312574,3799998,5,92,29.7368421052632,0.305032218134591,37.6219728305782,0.755162241887906,NA,-0.0208481634258772,0.0131578947368421,1.31578947368421,1,31.8747015751665,1,1.31578947368421,19.7576065063477,18.7329120635986,390.370018853082,390.217834472656,0.274517548348046
+9207,312474,3799998,312574,3799898,6,92,19.1135734072022,0.0465646527683335,11.2368185699484,0.429814814814815,23.5399893957496,0.00193792180558234,0.135734072022161,13.5734072022161,1,90.4761904761905,0.84848137973138,13.5734072022161,29.7943498650376,15.5867252349854,390.260681152344,390.186889648438,0.132378558459325
+9208,312474,3799898,312574,3799798,7,92,16.8975069252078,0.164663409789469,19.8522610732465,0.762295081967213,NA,0.0198287791277946,0.177285318559557,17.7285318559557,4,80.1974413203507,0.717833092833093,9.14127423822715,25.0577355846763,0,390.428443060981,390.275543212891,0.272973466539647
+9209,312474,3799798,312574,3799698,8,92,13.5734072022161,0.044090202621224,9.14250637274182,0.615588115588116,12.1230088484866,0.0271968409552703,0.243767313019391,24.3767313019391,1,94.3032955256761,0.898929096381326,24.3767313019391,18.7828976674513,0,391.033498128255,390.535919189453,0.61774736874927
+9210,312474,3799698,312574,3799598,9,92,0,NA,NA,NA,NA,0.00185563497913168,0.0184210526315789,1.84210526315789,2,56.5983888707251,0.490616621983914,1.57894736842105,65.2597133091518,54.2434005737305,392.200937906901,391.706359863281,0.759336733816632
+9211,312474,3799598,312574,3799498,10,92,85.0415512465374,0.828715849268312,35.5267916981809,0.913680781758958,NA,-0.0398425619592606,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.866452925581109,8.31024930747922,8.36602048873901,0,393.478093465169,392.535797119141,1.12204846540423
+9212,312474,3799498,312574,3799398,11,92,0.277008310249307,0.0026994001604831,0,0,NA,0.024665219308515,0.0997229916897507,9.97229916897507,2,86.0031529858117,0.870410256410256,9.69529085872576,19.9537812868754,10.3911504745483,394.811157226562,394.473999023438,0.837375534709992
+9213,312474,3799398,312574,3799298,12,92,8.31024930747922,0.0404910024072465,9.10171683675806,0.474358974358974,18.73291280641,0.0147783159203619,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,13.2834918498993,10.3911504745483,394.949469672309,394.416809082031,0.879504791364131
+9214,312474,3799298,312574,3799198,13,92,42.8947368421053,0.146667408719582,17.1887108409054,0.714214689862112,17.3185838960732,0.0106375219270448,0.0184210526315789,1.84210526315789,2,53.6189928746137,0.872654155495979,1.57894736842105,7.90490559169224,5.19557523727417,394.986094156901,394.498596191406,0.702298250887961
+9215,312474,3799198,312574,3799098,14,92,42.382271468144,0.137669408184638,20.482348783459,0.733849404864585,15.5867255064659,0.0103234305731431,0.0221606648199446,2.21606648199446,2,58.3126076234116,0.795467422096317,1.93905817174515,9.28745645284653,5.19557523727417,394.801781548394,394.388336181641,0.568082105780228
+9216,312474,3799098,312574,3798998,15,92,51.8005540166205,0.168262610003447,15.7427562991484,0.514225589225589,17.3185839999892,0.0105538846662846,0.074792243767313,7.4792243767313,3,72.0371649276023,0.723506475421251,3.32409972299169,4.79011297225952,0,393.680781046549,393.321929931641,0.533005913354365
+9217,312474,3798998,312574,3798898,16,92,45.1523545706371,0.146667408719582,16.9424881680257,0.610395480225989,14.6725397935234,0.0333337719907491,0.229916897506925,22.9916897506925,4,84.6107934110204,0.83215876278569,8.86426592797784,10.9504923533244,0,393.123670789931,393.046295166016,0.163969818258036
+9218,312474,3798898,312574,3798798,17,92,46.3157894736842,0.118773607061256,11.3011655041046,0.40290404040404,10.697777651903,0.0500211199338848,0.421052631578947,42.1052631578947,4,91.3203632272139,0.776747062461348,20.5263157894737,7.53433756530285,0,392.981623331706,392.970001220703,0.0355347691239988
+9219,312474,3798798,312574,3798698,18,92,9.41828254847645,0.0917796054564255,18.7310375596248,0.661764705882353,NA,0.0285911803129593,0.18005540166205,18.005540166205,4,85.7053160029788,0.751763932073667,13.5734072022161,16.1975773664621,0,393.034925672743,392.987640380859,0.102711135149742
+9220,312474,3798698,312574,3798598,19,92,21.3296398891967,0.103926906178599,14.0323155255838,0.725440379403794,15.5867256623399,0.0147293674235295,0.038781163434903,3.8781163434903,2,66.0295825454064,0.79193083573487,2.21606648199446,26.1315960884094,0,393.423454284668,393.160247802734,0.469942693276294
+9221,312474,3798598,312574,3798498,20,92,8.86426592797784,0.0287936017118198,7.3981741747984,0.381018518518519,27.7097343999827,0.0200154032947033,0.0470914127423823,4.70914127423823,4,57.228158923632,0.622209302325581,2.21606648199446,16.230533655952,10.3911504745483,394.531497531467,394.036926269531,0.60194418346858
+9222,312474,3798498,312574,3798398,21,92,2.63157894736842,0.00899800053494367,3.8100884571361,0.172222222222222,12.1230087272512,0.0307751527594136,0.144736842105263,14.4736842105263,3,80.9793084312751,0.729230769230769,6.57894736842105,28.9865544926036,0,395.160057067871,394.915313720703,0.285114483617632
+9223,312474,3798398,312574,3798298,22,92,13.8504155124654,0.0449900026747184,9.11107585095305,0.575514403292181,26.6358790151655,0.0383870819438177,0.293628808864266,29.3628808864266,5,87.6015995473932,0.71093316907915,18.5595567867036,16.7026748072426,0,394.943735758464,394.785736083984,0.246691725814124
+9224,312474,3798298,312574,3798198,23,92,36.01108033241,0.175461010431402,18.258455672519,0.669642857142857,16.4298513045218,0.034223651568682,0.265927977839335,26.5927977839335,2,90.4712026291951,0.786156208863537,14.9584487534626,9.36563707888126,0,394.838877360026,394.703369140625,0.269340592775245
+9225,312474,3798198,312574,3798098,24,92,11.3573407202216,0.0368918021932691,7.29994408154061,0.52600074822297,25.2870830099439,0.011677220243257,0.0886426592797784,8.86426592797784,6,65.6917963414691,0.556873977086743,4.15512465373961,15.4730836749077,5.19557523727417,395.145412868924,394.813903808594,0.482709598430753
+9226,312474,3798098,312574,3797998,25,92,10.2631578947368,0.0350922020862803,6.93696824553339,0.580687830687831,24.2460175930571,0.0166575566552542,0.0736842105263158,7.36842105263158,6,60.2914865964353,0.592171717171717,3.15789473684211,10.2067157370704,0,395.665270487467,395.213836669922,0.478099850018148
+9227,312474,3797998,312574,3797898,26,92,44.3213296398892,0.143968008559099,17.6191302903813,0.592383737120579,28.9362432487143,0.0381632916233228,0.368421052631579,36.8421052631579,4,91.5786697905603,0.784090909090909,26.3157894736842,3.55160091873398,0,396.206914265951,395.953918457031,0.306555727271777
+9228,312474,3797898,312574,3797798,27,92,80.0554016620499,0.390063323189808,21.4626037465474,0.590056929721241,15.5867256623399,0.0354792055126648,0.229916897506925,22.9916897506925,6,81.6393719911054,0.655483776244311,9.97229916897507,1.69012687866946,0,396.598795572917,396.444915771484,0.296215083104527
+9229,312474,3797798,312574,3797698,28,92,63.1578947368421,0.205154412196716,17.9455281325601,0.723347547974414,10.7999866759763,0.0570772402831389,0.570637119113573,57.0637119113573,2,96.8702673465106,0.811488250652742,52.6315789473684,3.02564045989398,0,397.138737996419,396.899200439453,0.354027662280113
+9230,312474,3797698,312574,3797598,29,92,18.1578947368421,0.186258611073334,35.9508353018858,0.628019323671498,NA,0.0471610715199188,0.347368421052632,34.7368421052632,3,93.5316757300719,0.828336233435952,31.5789473684211,7.92114787029498,0,397.58733452691,397.379547119141,0.359453281862495
+9231,312474,3797598,312574,3797498,30,92,96.9529085872576,0.944790056169086,37.1268293585803,0.928571428571428,NA,0.0128612154565321,0.268698060941828,26.8698060941828,4,90.5612454815292,0.850683559735284,24.6537396121884,0.321375787872629,0,398.69522857666,397.854125976562,1.57044977085858
+9232,312474,3797498,312574,3797398,31,92,93.9058171745152,0.915096654403772,36.6315810068549,0.927236971484759,NA,0.00640220157856927,0.0470914127423823,4.70914127423823,6,46.6502625418319,0.454302325581395,1.38504155124654,4.5318946277394,0,399.502397325304,398.671112060547,1.39698121901687
+9233,312474,3797398,312574,3797298,32,92,74.2382271468144,0.180859810752368,16.3081346259009,0.551819194831217,11.7738164939214,0.0279073622906629,0.135734072022161,13.5734072022161,4,77.9549525400629,0.669413919413919,4.98614958448754,2.59553005257431,0,399.443672180176,399.19482421875,0.432202911792856
+9234,312474,3797298,312574,3797198,33,92,27.8947368421053,0.0715341042528022,12.6093483739623,0.44423285048285,12.9889380519499,0.0414304624706825,0.336842105263158,33.6842105263158,9,84.2702551087123,0.64404932216091,17.1052631578947,9.81468698382378,0,399.319441053602,399,0.567603104258551
+9235,312474,3797198,312574,3797098,34,92,89.196675900277,0.434603425837779,27.8612914806824,0.8638526155021,10.3911504415599,0.0567877091255209,0.634349030470914,63.4349030470914,1,98.5802481063074,0.75661769924065,63.4349030470914,0.440471647087664,0,400.470064798991,399.831481933594,1.11820942770087
+9236,312474,3797098,312574,3796998,35,92,92.797783933518,0.45214952688092,28.7793326923052,0.882577647869585,10.3911504415599,0.0422642463111961,0.277008310249307,27.7008310249307,7,83.7281568634319,0.769476372924649,17.1745152354571,0.31173451423645,0,402.822875976562,400.514984130859,3.4628766382249
+9237,312474,3796998,312574,3796898,36,92,77.8393351800554,0.379265722547876,21.1881644092313,0.550090252707581,15.5867255064659,0.0319792204458296,0.218836565096953,21.8836565096953,6,81.1553214983935,0.771403242147923,10.2493074792244,0.131533550310738,0,406.252502441406,404.286254882812,1.84622853087696
+9238,312474,3796898,312574,3796798,37,92,87.6315789473684,0.449450126720436,30.3850995042816,0.866000772051728,10.3911504415599,0.0478447935890137,0.457894736842105,45.7894736842105,6,88.5483927300562,0.787375616247769,19.4736842105263,0.832872275648446,0,408.198577880859,407.568176269531,1.01635120218621
+9239,312474,3796798,312574,3796698,38,92,83.6565096952909,0.407609424232948,27.9494106785336,0.859269162210339,10.3911504415599,0.0522619797933622,0.526315789473684,52.6315789473684,5,92.1302139099763,0.712121212121212,25.7617728531856,1.07973026225441,0,409.723472595215,409.177917480469,0.706895156365945
+9240,312474,3796698,312574,3796598,39,92,71.4681440443213,0.34822262070232,29.097526046,0.820289855072464,10.3911504415599,0.0700726699766855,0.631578947368421,63.1578947368421,3,95.3013342445324,0.693445378151261,35.180055401662,1.80624977747599,0,410.799059549967,410.287017822266,0.654832876172314
+9241,312474,3796598,312574,3796498,40,92,89.7506925207756,0.874605651996525,37.3941844809995,0.885288065843621,NA,0.0823952515618914,0.57617728531856,57.617728531856,3,97.0499310158871,0.841482157031633,55.4016620498615,1.00682094234687,0,411.522379557292,411.303802490234,0.767550990007423
+9242,312474,3796498,312574,3796398,41,92,82.2714681440443,0.801721847663481,38.4261184777568,0.873737373737374,NA,0.0624445442590312,0.498614958448753,49.8614958448753,3,93.8030819758283,0.790370480978216,26.5927977839335,0.444920590188768,0,409.996292114258,408.509826660156,1.55842604818111
+9243,312474,3796398,312574,3796298,42,92,90.5263157894737,0.928593655206187,38.5043755128075,0.890019379844961,NA,0.0339200988246471,0.273684210526316,27.3684210526316,3,90.6312210431973,0.80120902115787,22.8947368421053,0.0999149084091187,0,407.953396267361,407.460510253906,0.949678819425238
+9244,312474,3796298,312574,3796198,43,92,81.7174515235457,0.398161523671258,28.7182485838875,0.839683062509149,10.3911504415599,0.0260765605550995,0.116343490304709,11.6343490304709,7,69.7748628584848,0.64934434191355,6.37119113573407,0,0,406.917129516602,406.120422363281,1.28442416797555
+9245,312474,3796198,312574,3796098,44,92,86.4265927977839,0.421106425035364,27.4529262330397,0.868774439185018,10.3911504415599,0.0377979122094279,0.191135734072022,19.1135734072022,8,74.3086783936246,0.693478999207517,8.58725761772853,0.376490959222766,0,405.266655815972,404.428070068359,1.64626081762334
+9246,312474,3796098,312574,3795998,45,92,52.6315789473684,0.0854810050819649,10.4594928977919,0.512944066515495,14.7207963463009,0.0503853889449224,0.443213296398892,44.3213296398892,7,87.8903555197511,0.706772261143263,26.5927977839335,2.59619143009186,0,403.439946492513,402.889739990234,0.819353164907183
+9247,312474,3795998,312574,3795898,46,92,82.6315789473684,0.423805825195847,30.1739267816419,0.805087038003053,10.3911504415599,0.0669706858248805,0.660526315789474,66.0526315789474,1,98.7540308612622,0.649018637638133,66.0526315789474,0.91935214388418,0,402.640869140625,402.486145019531,0.279920956796196
+9248,312474,3795898,312574,3795798,47,92,87.5346260387812,0.42650522535633,21.16070740737,0.564903846153846,10.3911503376439,0.0578651864086781,0.623268698060942,62.3268698060942,3,95.2419196995166,0.766158963585434,50.9695290858726,0.365501261817084,0,402.339520772298,402.203369140625,0.161286562806403
+9249,312474,3795798,312574,3795698,48,92,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0588074082101068,0.601108033240997,60.1108033240997,2,95.4445112548518,0.807635451045105,32.1329639889197,0,0,402.17441813151,402.084686279297,0.127836059636798
+9250,312474,3795698,312574,3795598,49,92,57.617728531856,0.280737616690243,26.9331626129724,0.794146825396825,10.3911503376439,0.0329669679750797,0.246537396121884,24.6537396121884,2,93.241672738832,0.799667036625971,23.8227146814404,0.233508999428053,0,402.14951578776,402.087341308594,0.101492778162944
+9251,312474,3795598,312574,3795498,50,92,16.5789473684211,0.170062210110435,25.5777871375498,0.751322751322751,NA,0.0154921286635631,0.0210526315789474,2.10526315789474,1,68.1401783345986,0.897849462365591,2.10526315789474,0,0,402.298075358073,402.186462402344,0.189773655896247
+9252,312474,3795498,312574,3795398,51,92,36.01108033241,0.350922020862803,30.6928456701334,0.812820512820513,NA,0.0164206533825921,0.038781163434903,3.8781163434903,2,67.7007682833212,0.79193083573487,3.04709141274238,0.74222503389631,0,402.556353251139,402.368103027344,0.261136042318028
+9253,312474,3795398,312574,3795298,52,92,27.4238227146814,0.133620307943914,18.4157447564092,0.665296052631579,15.5867255064659,0.00883356129754116,0,0,0,NA,NA,0,NA,NA,402.891872829861,402.61279296875,0.494589078765338
+9254,312474,3795298,312574,3795198,53,92,28.808864265928,0.0561475233380485,15.0843430098933,0.43154642036995,17.6649555739947,0.0207306856906733,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,8.4066174030304,5.19557523727417,403.739807128906,403.411315917969,0.398895064610757
+9255,312474,3795198,312574,3795098,54,92,2.10526315789474,0.0107976006419324,4.84920353939463,0.244444444444444,25.9778761038998,0.0122822868628023,0,0,0,NA,NA,0,NA,NA,403.043418884277,401.824279785156,1.09422965747924
+9256,312474,3795098,312574,3794998,55,92,2.49307479224377,0.012147300722174,5.75224399443495,0.226190476190476,20.7823008831198,0.0182972388284621,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,0,0,401.161434597439,401.033020019531,0.440378887477289
+9257,312474,3794998,312574,3794898,56,92,27.1468144044321,0.088180405242448,18.3942598008069,0.536182336182336,32.39995995822,0.021215299320804,0.0664819944598338,6.64819944598338,2,78.8267140245079,0.774480712166172,5.81717451523546,1.08241150776545,0,400.961980183919,400.927093505859,0.0718803537705047
+9258,312474,3794898,312574,3794798,57,92,25.207756232687,0.0818818048679874,16.8271349479748,0.561782661782662,25.289159571836,0.0326459395361889,0.177285318559557,17.7285318559557,4,85.1472884771039,0.77209595959596,13.8504155124654,5.41703028976917,0,401.18369547526,401.029937744141,0.287670088995908
+9259,312474,3794798,312574,3794698,58,92,23.9473684210526,0.122822707301981,13.9158036970436,0.69017094017094,39.5683219745072,0.0202663460144801,0.134210526315789,13.4210526315789,2,88.3673414295946,0.827411522202425,12.6315789473684,7.5143702544418,0,401.878135681152,401.414245605469,0.621593086996581
+9260,312474,3794698,312574,3794598,59,92,12.7423822714681,0.124172407382223,19.8766847734421,0.710144927536232,NA,0.0187416474558697,0.0443213296398892,4.43213296398892,1,79.1666666666667,1,4.43213296398892,0,0,402.448784722222,401.996429443359,0.713615654011571
+9261,312474,3794598,312574,3794498,60,92,16.0664819944598,0.15656520930802,26.7917292606234,0.732758620689655,NA,0.0264274885613856,0.119113573407202,11.9113573407202,4,78.4431121333349,0.731961914744934,7.4792243767313,5.44076045723849,0,403.204223632812,402.5009765625,0.714757153244747
+9262,312474,3794498,312574,3794398,61,92,3.32409972299169,0.0323928019257972,8.75748148912773,0.555555555555556,NA,0.0253359663617537,0.0637119113573407,6.37119113573407,4,64.1596783126811,0.673652202498356,2.21606648199446,22.2656801472539,5.19557523727417,404.043270534939,403.769836425781,0.409757548821666
+9263,312474,3794398,312574,3794298,62,92,15,0.153865809147537,23.7758197639093,0.728070175438596,NA,0.0199859156377084,0.0184210526315789,1.84210526315789,2,54.9035156154423,0.745308310991957,1.57894736842105,28.5666130610875,20.7823009490967,404.342702229818,404.118865966797,0.24143288377764
+9264,312474,3794298,312574,3794198,63,92,6.09418282548476,0.0593868035306282,10.4269560648431,0.696969696969697,NA,0.0178570345044459,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,20.7823009490967,20.7823009490967,404.106143527561,403.919464111328,0.353006618967287
+9265,312474,3794198,312574,3794098,64,92,44.3213296398892,0.143968008559099,12.1589823205704,0.413950617283951,17.3185838960732,0.0215973759184842,0.0443213296398892,4.43213296398892,3,68.763560240737,0.651207729468599,3.601108033241,8.25259104371071,0,403.965047200521,403.794586181641,0.247243959319284
+9266,312474,3794098,312574,3793998,65,92,4.15512465373961,0.0202455012036233,8.14186585630586,0.294871794871795,20.7823006752878,0.0174988942582208,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,5.19557523727417,0,403.850002712674,403.420806884766,0.325641307506168
+9267,312474,3793998,312574,3793898,66,92,16.8421052631579,0.0575872034236395,11.7139829883264,0.360528360528361,15.5867255757432,0.0121947552826321,0.0394736842105263,3.94736842105263,3,63.6005860494717,0.716064757160648,2.63157894736842,20.2805556615194,0,403.542574564616,403.170135498047,0.520801330582892
+9268,312474,3793898,312574,3793798,67,92,19.9445983379501,0.0971784057773917,13.1205598614133,0.381455399061033,36.3690261817537,0.0128188224167449,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,35.1627635955811,32.8597030639648,403.978166368273,403.612945556641,0.539749401370455
+9269,312474,3793798,312574,3793698,68,92,0,NA,NA,NA,NA,0.0111450997168821,0,0,0,NA,NA,0,NA,NA,404.728159586589,404.137664794922,0.697985447876488
+9270,312474,3793698,312574,3793598,69,92,0,NA,NA,NA,NA,0.00969716885419052,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,72.2552299499512,70.6674652099609,405.203534444173,404.934295654297,0.329073351301334
+9271,312474,3793598,312574,3793498,70,92,15.5263157894737,0.0318529218937006,7.4407675070992,0.352723311546841,17.1164441183456,0.0131656898273497,0.0421052631578947,4.21052631578947,3,63.3981506295416,0.652014652014652,2.36842105263158,21.9961772561073,10.3911504745483,405.406606038411,405.079925537109,0.63466752497812
+9272,312474,3793498,312574,3793398,71,92,11.0803324099723,0.0179960010698873,3.82165258619884,0.229497354497355,19.9163715670808,0.0259741000504052,0.0914127423822715,9.14127423822715,6,65.2322489661231,0.551603432700994,3.32409972299169,8.51099496899229,0,405.837605794271,405.098785400391,0.862352270527444
+9273,312474,3793398,312574,3793298,72,92,0,NA,NA,NA,NA,0.021911243138831,0.0221606648199446,2.21606648199446,2,59.9907158055784,0.590934844192635,1.93905817174515,18.3063123226166,10.3911504745483,407.19573296441,406.150268554688,0.889708154532131
+9274,312474,3793298,312574,3793198,73,92,21.606648199446,0.210553212517682,25.8660637827664,0.769230769230769,NA,0.023397619336551,0.0443213296398892,4.43213296398892,4,57.7208754095995,0.651207729468599,2.77008310249307,5.86294683814049,0,408.050000508626,407.754119873047,0.365425822077526
+9275,312474,3793198,312574,3793098,74,92,5.26315789473684,0.053988003209662,10.1656596640727,0.675,NA,0.0251895392201397,0.0236842105263158,2.36842105263158,4,38.5817419813752,0.487870619946092,1.05263157894737,45.8202952278985,5.19557523727417,408.273562961155,408.072875976562,0.249051203926718
+9276,312474,3793098,312574,3792998,75,92,0,NA,NA,NA,NA,0.0240476327808638,0.07202216066482,7.20221606648199,4,66.9718046401324,0.658318165271205,4.15512465373961,65.7897198016827,20.7823009490967,408.539171854655,408.236541748047,0.476301390617645
+9277,312474,3792998,312574,3792898,76,92,27.1468144044321,0.088180405242448,16.140936116835,0.626409017713366,13.8548671168586,0.0123509939788308,0,0,0,NA,NA,0,NA,NA,410.207767062717,408.831848144531,2.73188815361063
+9278,312474,3792898,312574,3792798,77,92,47.3684210526316,0.153865809147537,17.3953952752207,0.606275720164609,16.0411747845414,0.0227814055214117,0.0969529085872576,9.69529085872576,6,64.550782164745,0.599058599534589,3.32409972299169,3.36329687663487,0,411.731554667155,410.760620117188,1.28424019615503
+9279,312474,3792798,312574,3792698,78,92,10.5263157894737,0.026994001604831,6.24957552419076,0.423015873015873,13.602192394699,0.0202493816146001,0.068421052631579,6.8421052631579,5,64.6159282256214,0.581094116025906,3.42105263157895,11.0986854663262,0,412.02449883355,411.689056396484,0.477653076334586
+9280,312474,3792698,312574,3792598,79,92,19.9445983379501,0.0647856038515944,12.4216387917291,0.397707231040564,15.8677674391512,0.0177868469165831,0,0,0,NA,NA,0,NA,NA,412.547350565592,412.101013183594,0.620204087481556
+9281,312474,3792598,312574,3792498,80,92,0,NA,NA,NA,NA,0.020897260639227,0.0609418282548476,6.09418282548476,4,65.5725482846326,0.718115564809995,3.8781163434903,33.8874233419245,16.4298515319824,413.274820963542,412.826599121094,0.773529392283368
+9282,312474,3792498,312574,3792398,81,92,4.43213296398892,0.0431904025677296,8.01065908702694,0.645833333333333,NA,0.021667935501133,0.0193905817174515,1.93905817174515,4,30.1587301587302,0.490112994350283,1.10803324099723,27.8119911466326,14.6953058242798,415.14023844401,414.112121582031,1.05528166442905
+9283,312474,3792398,312574,3792298,82,92,6.57894736842105,0.0674850040120775,12.5172199708067,0.666666666666667,NA,0.0258666201658152,0.0973684210526316,9.73684210526316,5,76.4229753097442,0.745734359317497,7.63157894736842,15.3637923936586,0,416.0882941352,415.895172119141,0.285921823617627
+9284,312474,3792298,312574,3792198,83,92,15.2354570637119,0.0742335044132853,17.1894172534633,0.562721631205674,15.5867255064659,0.0154135765875767,0,0,0,NA,NA,0,NA,NA,416.032615661621,415.77685546875,0.440442485620246
+9285,312474,3792198,312574,3792098,84,92,34.3490304709141,0.0836814049749762,11.5011207181385,0.332316217732884,19.6120227171427,0.0238125011988547,0.0277008310249307,2.77008310249307,2,59.2647635931022,0.762656147271532,1.93905817174515,7.42996516227722,5.19557523727417,412.399627685547,410.124542236328,3.45093243646055
+9286,312474,3792098,312574,3791998,85,92,56.786703601108,0.138344258224759,12.4744482047157,0.628178573193024,15.9065278730799,0.0318942253819378,0.116343490304709,11.6343490304709,4,76.6660486391755,0.744977703209855,6.09418282548476,11.0773095516931,0,415.359978569878,414.269378662109,1.72359318168834
+9287,312474,3791998,312574,3791898,86,92,35.7894736842105,0.0917796054564255,12.010782181724,0.584113190730838,15.1752860446711,0.0251210027856455,0.239473684210526,23.9473684210526,6,85.6979376275603,0.732154299628348,16.3157894736842,10.8179559498043,0,416.041595458984,415.553039550781,0.601816076688002
+9288,312474,3791898,312574,3791798,87,92,33.2409972299169,0.161964009628986,17.2118283970716,0.652272727272727,31.1734513246797,0.0311642599206965,0.238227146814404,23.8227146814404,5,87.4275898093607,0.759762329174094,18.2825484764543,9.0105790814688,0,415.319708930122,414.395416259766,0.983245181778591
+9289,312474,3791798,312574,3791698,88,92,26.8698060941828,0.13092090778343,17.3037782150705,0.728687943262411,21.4219052194909,0.0354618585181035,0.232686980609418,23.2686980609418,3,89.4165177323556,0.877547064666974,19.1135734072022,13.51931871119,0,413.876164754232,413.239501953125,0.75636797993181
+9290,312474,3791698,312574,3791598,89,92,41.2742382271468,0.201105311955991,20.4744771156799,0.664021164021164,15.5867255064659,0.0345264801714351,0.282548476454294,28.2548476454294,1,95.1039981574685,0.824820136295546,28.2548476454294,6.39404719483619,0,413.301523844401,413.087280273438,0.329733265131809
+9291,312474,3791598,312574,3791498,90,92,31.0526315789474,0.318529218937006,28.0471302374071,0.843220338983051,NA,0.0283277805611425,0.231578947368421,23.1578947368421,2,91.924068373777,0.842509379635285,21.0526315789474,8.34102854403582,0,412.964973449707,412.648590087891,0.501800845452189
+9292,312474,3791498,312574,3791398,91,92,9.97229916897507,0.0161964009628986,5.08080512304333,0.271241830065359,18.2911139576852,0.0292664932443727,0.146814404432133,14.6814404432133,5,76.7138528956624,0.652240616526331,6.37119113573407,13.6866857960539,0,413.168518066406,412.721954345703,0.650135882865678
+9293,312474,3791398,312574,3791298,92,92,17.7285318559557,0.172761610270919,27.5410323811535,0.6953125,NA,0.0232757293613814,0.18005540166205,18.005540166205,3,89.4493267761888,0.794935422147811,16.3434903047091,11.0047150978675,0,414.039916992188,413.385314941406,0.634770398427691
+9294,312474,3791298,312574,3791198,93,92,28.808864265928,0.140368808345121,20.3100007162071,0.745098039215686,18.7329127343573,0.0331888337556477,0.25207756232687,25.207756232687,4,89.0878333392263,0.735893918609968,16.6204986149584,5.09280891208858,0,414.581888834635,414.162048339844,0.474513308045629
+9295,312474,3791198,312574,3791098,94,92,21.3157894736842,0.0728838043330438,12.1655842463075,0.49673721340388,30.5879163080773,0.0382570073138739,0.339473684210526,33.9473684210526,6,89.4192681099306,0.735865050436552,21.3157894736842,10.12180553111,0,414.901484171549,414.658447265625,0.509197564723186
+9296,312474,3791098,312574,3790998,95,92,37.9501385041551,0.123272607328728,16.795381232558,0.498894416804865,13.8548672554132,0.0449659887234402,0.445983379501385,44.5983379501385,3,93.399725729976,0.792668918918919,22.9916897506925,5.53514425206629,0,415.393561469184,414.981689453125,0.837304298493821
+9297,312474,3790998,312574,3790898,96,92,29.9168975069252,0.0485892028886958,8.03747473921491,0.402366255144033,13.8548671341779,0.0734153887483684,0.650969529085873,65.0969529085873,3,97.2771711335263,0.83684058285425,62.3268698060942,8.11874715115162,0,416.622436523438,415.483489990234,1.14771507398761
+9298,312474,3790898,312574,3790798,97,92,36.01108033241,0.175461010431402,16.1296710425653,0.760391970918287,25.9778759376342,0.0562604355810609,0.43213296398892,43.213296398892,2,96.240351814839,0.901827143706977,42.382271468144,5.70919536321591,0,417.421044243707,416.780395507812,1.03398385720371
+9299,312474,3790798,312574,3790698,98,92,47.6315789473684,0.244295714523721,18.9939866023897,0.5484934086629,20.7823008831198,0.08231289331115,0.615789473684211,61.5789473684211,2,97.4938199278981,0.8868374032162,59.2105263157895,3.25981323331849,0,417.834269205729,416.782196044922,1.25207999299991
+9300,312474,3790698,312574,3790598,99,92,33.2409972299169,0.053988003209662,9.20309446760247,0.493669730475286,20.4369042117322,0.0293266524663017,0.187134502923977,18.7134502923977,7,71.988476632935,0.626541623843782,4.09356725146199,5.8672104999423,0,418.54231262207,417.541381835938,1.30582158886517
+9301,312574,3800598,312674,3800498,0,93,76.1772853185596,0.742335044132853,33.3575109125353,0.918787878787879,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.511812210083,391.729949951172,0.70211791233399
+9302,312574,3800498,312674,3800398,1,93,9.47368421052632,0.0971784057773917,16.568644408362,0.722222222222222,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,393.254010518392,393.016510009766,0.448805111864256
+9303,312574,3800398,312674,3800298,2,93,11.0803324099723,0.053988003209662,11.249499479506,0.621527777777778,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.759101867676,392.443084716797,0.530223840812909
+9304,312574,3800298,312674,3800198,3,93,16.8975069252078,0.164663409789469,22.7244641679513,0.699453551912568,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.254557291667,391.810516357422,0.412187248064143
+9305,312574,3800198,312674,3800098,4,93,3.04709141274238,0.0148467008826571,4.98212181309159,0.378472222222222,15.5867256623399,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.580766677856,391.009429931641,0.594349949433869
+9306,312574,3800098,312674,3799998,5,93,25.2631578947368,0.0863808051354593,13.4284552922704,0.575290111875478,13.8548671168586,-0.0197928684220211,0.0394736842105263,3.94736842105263,1,64.398586025552,0.851272015655577,3.94736842105263,31.7537991205851,25.977876663208,390.760190327962,390.479461669922,0.353483513632821
+9307,312574,3799998,312674,3799898,6,93,18.005540166205,0.0438652526078504,10.5909365129735,0.485185185185185,18.9653121877489,0.00375245739642171,0.141274238227147,14.1274238227147,3,80.1511525171107,0.812606599925843,5.54016620498615,21.6114528225917,7.34765291213989,390.524349212646,390.387023925781,0.205965748218861
+9308,312574,3799898,312674,3799798,7,93,8.03324099722992,0.0782826046540099,12.4993340330272,0.655172413793104,NA,0.0109177529739906,0.138504155124654,13.8504155124654,3,80.2511266659561,0.767845659163987,6.64819944598338,33.4166617965698,15.5867252349854,390.89803314209,390.489868164062,0.483371955853311
+9309,312574,3799798,312674,3799698,8,93,16.3434903047091,0.0796323047342515,11.8242460987355,0.740134099616858,33.2679134207198,0.00661167595404509,0.14404432132964,14.404432132964,2,85.4847536852598,0.868732046107414,9.41828254847645,15.9609393339891,0,391.54408454895,390.930999755859,0.486983372283513
+9310,312574,3799698,312674,3799598,9,93,15.5263157894737,0.0530882031561677,10.4864472856421,0.390350877192982,16.7243041674623,0.00345462059114269,0.0447368421052632,4.47368421052632,1,79.8422589600986,1,4.47368421052632,5.39431563545676,0,392.570070902507,392.014221191406,0.767936455202905
+9311,312574,3799598,312674,3799498,10,93,62.0498614958449,0.604665635948215,31.625551972319,0.879464285714286,NA,-0.0275258715072624,0.0858725761772853,8.58725761772853,4,72.780431467783,0.781212121212121,6.37119113573407,18.7624478340149,0,394.215148925781,392.897644042969,1.3080932871458
+9312,312574,3799498,312674,3799398,11,93,29.6398891966759,0.288835817171692,29.5059530422281,0.783489096573209,NA,0.011799354991688,0.0775623268698061,7.75623268698061,4,69.6388893640086,0.735001668335002,4.15512465373961,14.6315459353583,0,395.45521736145,395.136383056641,0.339096847906516
+9313,312574,3799398,312674,3799298,12,93,6.64819944598338,0.0647856038515944,11.8284788212344,0.666666666666667,NA,0.0203539508761335,0.0415512465373961,4.15512465373961,5,49.7429586904867,0.478323699421965,1.93905817174515,18.799347114563,0,395.458534240723,395.375061035156,0.12349995883196
+9314,312574,3799298,312674,3799198,13,93,34.2105263157895,0.175461010431402,24.0607912635543,0.732374918778428,15.5867255064659,0.0162563308487973,0.00789473684210526,0.789473684210526,3,0,1,0.263157894736842,1.73185841242472,0,395.295972824097,394.957305908203,0.232426210312094
+9315,312574,3799198,312674,3799098,14,93,21.3296398891967,0.0415707624714398,9.39045093610378,0.401043083900227,14.0059288773936,0.00293972761281721,0.00831024930747922,0.831024930747922,1,44.6130271410951,1,0.831024930747922,15.5867252349854,15.5867252349854,394.825215657552,394.511779785156,0.452513659493706
+9316,312574,3799098,312674,3798998,15,93,46.814404432133,0.456198627121644,35.3561781576789,0.714990138067061,NA,0.0147295049627299,0.0332409972299169,3.32409972299169,5,41.4639799590451,0.452384965447497,1.38504155124654,5.62853980064392,0,393.776533126831,393.375762939453,0.557276232679628
+9317,312574,3798998,312674,3798898,16,93,24.9307479224377,0.0809820048144931,15.2846019713413,0.587368352860607,17.3185840692665,0.0289173010600295,0.138504155124654,13.8504155124654,3,81.8067374050704,0.795157934556459,7.4792243767313,10.0105599021912,0,393.166826883952,393.048309326172,0.207958799185134
+9318,312574,3798898,312674,3798798,17,93,13.4210526315789,0.0688347040923191,15.7682837850095,0.582122093023256,31.1734513246797,0.0323866272995809,0.189473684210526,18.9473684210526,2,87.9705032619157,0.893138357705287,10.7894736842105,15.2235285507308,0,393.005308151245,392.971343994141,0.0572333382184795
+9319,312574,3798798,312674,3798698,18,93,1.66204986149584,0.0161964009628986,5.52275872581071,0.416666666666667,NA,0.0166451882335491,0.0554016620498615,5.54016620498615,3,65.6245772983892,0.726799735124397,2.77008310249307,30.0810334205627,16.4298515319824,393.085072835286,393.007019042969,0.143845817595153
+9320,312574,3798698,312674,3798598,19,93,26.5927977839335,0.037020345058054,6.1585534710638,0.383935413245758,12.2260315724845,0.0167466525369272,0.0609418282548476,6.09418282548476,2,80.1883084538809,0.780756550407774,5.81717451523546,16.1931231021881,5.19557523727417,393.657018661499,393.218627929688,0.642919778580749
+9321,312574,3798598,312674,3798498,20,93,10.803324099723,0.0210553212517682,5.97506575383848,0.32031746031746,18.7040706701087,0.0218100036507978,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,19.3528614044189,0,394.897407531738,394.588012695312,0.552949167695516
+9322,312574,3798498,312674,3798398,21,93,0,NA,NA,NA,NA,0.0330692270804751,0.239473684210526,23.9473684210526,1,94.3575940766551,0.894485027126319,23.9473684210526,46.2813677106585,31.1734504699707,395.283916473389,395.054412841797,0.257965687655036
+9323,312574,3798398,312674,3798298,22,93,57.8947368421053,0.564174633540968,29.825022953397,0.879585326953748,NA,0.0227907621975744,0.113573407202216,11.3573407202216,6,70.9377422923506,0.70570652173913,5.26315789473684,10.942151127792,0,394.921534220378,394.765960693359,0.288214501689299
+9324,312574,3798298,312674,3798198,23,93,37.3961218836565,0.12147300722174,12.4884754828133,0.505934343434343,17.025816543646,0.0185063604051486,0.0775623268698061,7.75623268698061,8,58.4005303533774,0.494094094094094,2.77008310249307,13.2493999855859,0,394.644960403442,394.600006103516,0.102164436809907
+9325,312574,3798198,312674,3798098,24,93,0,NA,NA,NA,NA,0.0306338821539909,0.310249307479224,31.0249307479224,1,95.5814930733676,0.942582210028232,31.0249307479224,32.3024189046451,5.19557523727417,394.76097869873,394.643127441406,0.219030600355503
+9326,312574,3798098,312674,3797998,25,93,0,NA,NA,NA,NA,0.0130833126270629,0.0289473684210526,2.89473684210526,3,54.079497554272,0.588075880758808,1.57894736842105,38.0051518353549,10.3911504745483,395.389141082764,394.949645996094,0.505375436163759
+9327,312574,3797998,312674,3797898,26,93,34.6260387811634,0.337425020060388,26.3040792023886,0.833333333333333,NA,0.0423891773762457,0.371191135734072,37.1191135734072,2,94.1842817421503,0.876164512168701,34.0720221606648,4.44861552964396,0,396.392011642456,395.934997558594,0.438670105745698
+9328,312574,3797898,312674,3797798,27,93,80.8864265927978,0.788224846861066,36.5578042877468,0.868721461187215,NA,0.045319237337716,0.443213296398892,44.3213296398892,6,93.4012787516599,0.639574237655261,33.7950138504155,1.53407932817936,0,396.955540974935,396.588775634766,0.441642038684251
+9329,312574,3797798,312674,3797698,28,93,58.7257617728532,0.190757611340806,17.6181348914713,0.745569732411838,15.0927590934382,0.0585065515632755,0.498614958448753,49.8614958448753,4,92.7945555322848,0.664592769565145,26.3157894736842,2.70312432712979,0,397.532684326172,397.200042724609,0.284909992417363
+9330,312574,3797698,312674,3797598,29,93,35.5263157894737,0.364419021665219,36.3140419657278,0.779012345679012,NA,0.0305863865685272,0.0921052631578947,9.21052631578947,6,65.6149086455977,0.658170914542729,4.73684210526316,2.37512005397252,0,397.827517191569,397.706420898438,0.298937463501287
+9331,312574,3797598,312674,3797498,30,93,86.7036011080332,0.844912250231211,39.127159638854,0.892438764643237,NA,-0.0426627683298149,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,0,0,399.258476257324,397.965393066406,1.58153756057808
+9332,312574,3797498,312674,3797398,31,93,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,-0.040769129089877,0,0,0,NA,NA,0,NA,NA,400.95735168457,399.328796386719,1.59529687743756
+9333,312574,3797398,312674,3797298,32,93,66.4819944598338,0.647856038515944,32.4474772907388,0.88125,NA,0.0164946534396298,0.10803324099723,10.803324099723,4,75.560671403622,0.79302436693741,6.09418282548476,11.1104738651178,0,399.763116836548,399.114776611328,0.914511345819418
+9334,312574,3797298,312674,3797198,33,93,0.263157894736842,0.0026994001604831,0,0,NA,0.0342272396646685,0.115789473684211,11.5789473684211,3,81.2353700785163,0.862451737451737,7.63157894736842,31.0101147023114,7.34765291213989,399.025268554688,399,0.413677571374202
+9335,312574,3797198,312674,3797098,34,93,86.9806094182826,0.847611650391694,35.9003192817106,0.917197452229299,NA,0.0593875976707632,0.673130193905817,67.3130193905817,3,97.2290698519409,0.885443888598522,63.7119113573407,0.275663158039988,0,401.357152938843,399.525299072266,1.92371980713337
+9336,312574,3797098,312674,3796998,35,93,97.2299168975069,0.947489456329569,37.9293608322595,0.911206077872745,NA,0.0320866429886279,0.202216066481994,20.2216066481994,5,80.4235729581301,0.716010199652778,6.37119113573407,0,0,405.423055013021,403.381408691406,2.77305297117016
+9337,312574,3796998,312674,3796898,36,93,90.0277008310249,0.219326263039252,11.8931031455138,0.404431216931217,10.3911503376439,0.0177606589270548,0.174515235457064,17.4515235457064,2,89.3556228009183,0.790756558877364,15.5124653739612,0,0,407.586631774902,407.176330566406,0.565884090170746
+9338,312574,3796898,312674,3796798,37,93,86.8421052631579,0.890802052959424,36.6664684599807,0.902525252525253,NA,0.0766380895104272,0.589473684210526,58.9473684210526,5,93.0290168709921,0.796037296037296,45,0.902103140950203,0,408.488344828288,407.782592773438,0.844105147040216
+9339,312574,3796798,312674,3796698,38,93,87.2576177285319,0.850311050552177,35.8199374645737,0.922751322751323,NA,0.040488457850276,0.401662049861496,40.1662049861496,5,87.9551910261887,0.754035639412998,16.8975069252078,0.689493705486429,0,409.710098266602,409.063262939453,0.679367940179976
+9340,312574,3796698,312674,3796598,39,93,100,0.9744834579344,37.7250319011009,0.930747922437673,NA,0.0532498128526429,0.606648199445983,60.6648199445983,1,98.4227721168943,0.58252209334438,60.6648199445983,0,0,411.657341003418,410.397308349609,1.55432723154931
+9341,312574,3796598,312674,3796498,40,93,86.4265927977839,0.842212850070728,40.4484522150199,0.891025641025641,NA,0.0473389967107356,0.418282548476454,41.8282548476454,4,94.116212000038,0.770379920921437,35.180055401662,1.56504767462118,0,412.010378519694,410.434020996094,1.5960944598323
+9342,312574,3796498,312674,3796398,41,93,82.8254847645429,0.807120647984447,36.1318273156516,0.909698996655518,NA,0.0406887590393945,0.440443213296399,44.0443213296399,2,96.7261574579182,0.804150278041503,43.4903047091413,0.130706295277338,0,408.501539230347,405.881896972656,2.72607541357314
+9343,312574,3796398,312674,3796298,42,93,91.3157894736842,0.936691855687636,37.0961215042035,0.929394812680115,NA,0.0354915337579242,0.394736842105263,39.4736842105263,2,96.3335368354951,0.921897233201581,39.2105263157895,0,0,406.148188273112,405.216888427734,1.4314134415441
+9344,312574,3796298,312674,3796198,43,93,87.2576177285319,0.425155525276089,19.2102492003738,0.543397231096912,15.5867255064659,0.0423285100786267,0.465373961218837,46.5373961218837,2,96.8065195213999,0.903459802774528,45.983379501385,0.0927781292370388,0,404.942165374756,404.112701416016,1.04198423725706
+9345,312574,3796198,312674,3796098,44,93,73.9612188365651,0.720739842848988,38.6061822620012,0.881398252184769,NA,0.0157765846424884,0.0332409972299169,3.32409972299169,4,47.8607650886615,0.452384965447497,1.38504155124654,2.1648230155309,0,404.154454549154,403.507415771484,1.02130568639241
+9346,312574,3796098,312674,3795998,45,93,47.9224376731302,0.0933992455527153,18.8770391431443,0.555534521049402,13.5084954805035,0.0387144328521983,0.210526315789474,21.0526315789474,8,83.1036702513084,0.697512437810945,15.2354570637119,3.5196796404688,0,403.048315048218,402.868377685547,0.341481087759423
+9347,312574,3795998,312674,3795898,46,93,86.8421052631579,0.890802052959424,38.9556492598914,0.854545454545454,NA,0.0737315809611525,0.705263157894737,70.5263157894737,2,98.015196584462,0.66948310139165,65.7894736842105,0.736686041106039,0,402.75461324056,402.590698242188,0.185775421531892
+9348,312574,3795898,312674,3795798,47,93,76.7313019390582,0.747733844453819,36.5327930257901,0.869434416365824,NA,0.0595799314076612,0.548476454293629,54.8476454293629,3,95.9097296667799,0.794821216629612,48.4764542936288,0.819815606781931,0,402.613481521606,402.405578613281,0.264951334622286
+9349,312574,3795798,312674,3795698,48,93,85.3185595567867,0.415707624714398,27.9728091261205,0.868835034013605,15.5867256623399,0.0540298022867503,0.642659279778393,64.2659279778393,4,96.0508837055211,0.735019782659291,55.9556786703601,0.972249193438168,0,402.468437194824,402.245758056641,0.271135750836164
+9350,312574,3795698,312674,3795598,49,93,45.983379501385,0.149366808880065,18.7815598426176,0.700332125603865,10.3911503722826,0.0312786287202199,0.290858725761773,29.0858725761773,5,87.7844920270976,0.76870453042328,19.9445983379501,3.5605731010437,0,402.459383010864,402.237548828125,0.320806645339495
+9351,312574,3795598,312674,3795498,50,93,45.5263157894737,0.155665409254526,18.7844525169278,0.705976122642789,10.3911503722826,0.0238217139737619,0.213157894736842,21.3157894736842,5,85.3663945663956,0.717577108881457,15,6.14160032625552,0,402.611002604167,402.361053466797,0.364976202204171
+9352,312574,3795498,312674,3795398,51,93,29.9168975069252,0.0728838043330438,11.2925476316077,0.614976081756904,15.5867255064659,0.0178440467507622,0.146814404432133,14.6814404432133,2,89.9200602098632,0.845440274011703,14.404432132964,5.28943058229842,0,403.039789199829,402.625335693359,0.421791163478863
+9353,312574,3795398,312674,3795298,52,93,3.32409972299169,0.0161964009628986,4.73471402975493,0.478571428571429,86.0020725752304,0.0113704077430812,0.0277008310249307,2.77008310249307,2,58.34967603056,0.683541529695376,1.38504155124654,8.19229397773743,0,403.433029174805,402.990417480469,0.622404031879062
+9354,312574,3795298,312674,3795198,53,93,9.14127423822715,0.0445401026479712,9.19621248690716,0.571739130434783,57.3870034362763,0.0219814388323574,0.0138504155124654,1.38504155124654,1,58.34967603056,0.797191011235955,1.38504155124654,7.94952268600464,5.19557523727417,404.224636077881,403.880218505859,0.480386118193724
+9355,312574,3795198,312674,3795098,54,93,2.63157894736842,0.026994001604831,7.1274704691136,0.566666666666667,NA,0.0114651078556658,0,0,0,NA,NA,0,NA,NA,402.709669113159,401.401092529297,1.42731009696633
+9356,312574,3795098,312674,3794998,55,93,0,NA,NA,NA,NA,0.021277104358323,0.0914127423822715,9.14127423822715,1,87.180691871343,0.857328364950316,9.14127423822715,21.4356286597974,11.6176595687866,401.200335184733,401.045654296875,0.238736022378041
+9357,312574,3794998,312674,3794898,56,93,21.606648199446,0.0701844041725607,14.0845096665506,0.402645502645503,32.6866261281084,0.0200331183177015,0.0941828254847645,9.41828254847645,3,75.3586186196631,0.645150720838794,5.26315789473684,8.99417229259715,0,400.998346328735,400.962493896484,0.0925726414901039
+9358,312574,3794898,312674,3794798,57,93,25.4847645429363,0.0827816049214818,15.6606018286296,0.650282234105763,25.9778758441098,0.0304090232246361,0.191135734072022,19.1135734072022,6,83.1663696384442,0.734348465979848,13.2963988919668,9.60639628811159,0,401.051485697428,401.008941650391,0.105572762758943
+9359,312574,3794798,312674,3794698,58,93,13.9473684210526,0.0357670521264011,6.65781291698832,0.383928571428571,31.5574433812429,0.0235381194657461,0.128947368421053,12.8947368421053,3,83.136308725436,0.753992231333621,9.73684210526316,5.09158397207455,0,401.200401306152,401.047424316406,0.25738323157646
+9360,312574,3794698,312674,3794598,59,93,41.5512465373961,0.134970008024155,14.9276326456198,0.567986016407992,10.79998665274,0.0242094228195234,0.149584487534626,14.9584487534626,4,81.0899663543834,0.797695352176806,10.2493074792244,3.21492704638728,0,401.403040568034,401.123443603516,0.450967299789729
+9361,312574,3794598,312674,3794498,60,93,29.6398891966759,0.144417908585846,13.3280033032359,0.608009708737864,21.4219052194909,0.0281410604675682,0.204986149584488,20.4986149584488,5,82.0513083296824,0.777459126239614,9.69529085872576,9.6117488886859,0,402.319004058838,401.434539794922,0.903999036094877
+9362,312574,3794498,312674,3794398,61,93,23.8227146814404,0.116074206900773,15.7021748101052,0.641396604938272,16.4298514359663,0.0342803378407351,0.199445983379501,19.9445983379501,4,85.109703597177,0.773778710187178,13.2963988919668,10.8129756251971,0,403.744303385417,403.132232666016,0.76797074566326
+9363,312574,3794398,312674,3794298,62,93,23.1578947368421,0.118773607061256,19.2533491299312,0.701333686627804,10.3911504415599,0.0268693818052845,0.157894736842105,15.7894736842105,5,77.4915501925104,0.703125,6.31578947368421,17.4085316578547,5.19557523727417,404.547113418579,404.254211425781,0.239439544291263
+9364,312574,3794298,312674,3794198,63,93,16.6204986149584,0.0809820048144931,17.2348551097008,0.624304664099273,25.9778759376342,0.0199495582546509,0.0914127423822715,9.14127423822715,3,76.4982478199715,0.694275067750677,5.54016620498615,22.6670652302829,5.19557523727417,404.640899658203,404.437896728516,0.217173545397838
+9365,312574,3794198,312674,3794098,64,93,42.382271468144,0.206504112276957,26.3945678845427,0.743120863810519,10.3911503376439,0.0186365095643669,0.0914127423822715,9.14127423822715,2,79.4951507067129,0.735038392050587,4.98614958448753,9.51724178140814,5.19557523727417,404.165117263794,403.476257324219,0.58492701473671
+9366,312574,3794098,312674,3793998,65,93,52.6315789473684,0.512886030491789,30.1761264931114,0.848245614035088,NA,0.0179092311521236,0.0775623268698061,7.75623268698061,5,68.0873637282791,0.614547881214548,4.70914127423823,12.5524278879166,0,403.279940287272,402.843658447266,0.486569359879494
+9367,312574,3793998,312674,3793898,66,93,41.3157894736842,0.211902912597923,16.3573665156063,0.483333333333333,10.3911503376439,-0.00471246148044914,0,0,0,NA,NA,0,NA,NA,402.768064498901,402.489196777344,0.347364136369966
+9368,312574,3793898,312674,3793798,67,93,24.6537396121884,0.240246614282996,28.4472820940221,0.702247191011236,NA,0.0102580647786186,0.0498614958448753,4.98614958448753,1,80.6758725138067,1,4.98614958448753,13.6362606949276,5.19557523727417,402.753649393717,402.489837646484,0.532025684393372
+9369,312574,3793798,312674,3793698,68,93,6.92520775623269,0.0674850040120775,15.9917135583794,0.586666666666667,NA,0.0141078274040173,0.138504155124654,13.8504155124654,2,88.636766488103,0.877094760733876,13.2963988919668,56.1319281768799,37.4658241271973,403.346214294434,402.670532226562,0.843834799761344
+9370,312574,3793698,312674,3793598,69,93,2.77008310249307,0.026994001604831,6.91583028838417,0.533333333333333,NA,0.0202704824492644,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,37.0556313196818,10.3911504745483,404.846590042114,403.504272460938,1.00969647142487
+9371,312574,3793598,312674,3793498,70,93,6.57894736842105,0.0224950013373592,7.0411641195511,0.374074074074074,24.3796531790678,0.0132249410950815,0.00789473684210526,0.789473684210526,1,44.5503582375033,1,0.789473684210526,29.8158760070801,27.9790287017822,405.75776163737,405.302856445312,0.441521041470886
+9372,312574,3793498,312674,3793398,71,93,10.803324099723,0.0350922020862803,8.80937202937323,0.478956228956229,32.5415447614998,0.0197538943765195,0.0498614958448753,4.98614958448754,4,58.8330429995327,0.649173955296404,2.49307479224377,7.07557476891412,0,406.537845611572,406.015716552734,0.699459333717839
+9373,312574,3793398,312674,3793298,72,93,0,NA,NA,NA,NA,0.0184880734502013,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,46.9909915924072,21.4219055175781,407.762433369954,407.253570556641,0.783075599930225
+9374,312574,3793298,312674,3793198,73,93,17.7285318559557,0.172761610270919,24.308570326007,0.75,NA,0.0188207955699375,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,12.535639444987,0,408.351003646851,408.099151611328,0.358240942178408
+9375,312574,3793198,312674,3793098,74,93,0,NA,NA,NA,NA,0.0227141218425171,0.0210526315789474,2.10526315789474,4,36.0704232461395,0.387096774193548,1.05263157894737,75.3385095596313,52.9846801757812,408.479031880697,408.399047851562,0.109345392337096
+9376,312574,3793098,312674,3792998,75,93,0,NA,NA,NA,NA,0.023174799395165,0.0166204986149584,1.66204986149584,2,49.4956287861635,0.709456740442656,1.38504155124654,86.4244213104248,37.4658241271973,408.854339599609,408.542663574219,0.419852435254565
+9377,312574,3792998,312674,3792898,76,93,21.8836565096953,0.106626306339083,17.0283312932392,0.614155251141552,20.7823006752878,0.0116901502731208,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,32.5740633010864,30.2951488494873,409.169344584147,408.761871337891,1.42353388045922
+9378,312574,3792898,312674,3792798,77,93,36.2880886426593,0.117873807007762,19.7400244109961,0.591582232847602,11.6176593061685,0.0154479634805579,0.0249307479224377,2.49307479224377,4,37.8641466851588,0.316287878787879,0.831024930747922,3.70283656650119,0,411.190675735474,409.604217529297,1.5558256758468
+9379,312574,3792798,312674,3792698,78,93,38.4210526315789,0.394112423430533,31.317869109557,0.784246575342466,NA,0.0198560643844949,0.0710526315789474,7.10526315789474,7,52.8677434087404,0.424204493049608,1.57894736842105,5.81828763749864,0,411.807947794596,411.149444580078,0.726124478860343
+9380,312574,3792698,312674,3792598,79,93,26.3157894736842,0.256443015245895,30.9628901682642,0.729824561403509,NA,0.0135788822762179,0.0304709141274238,3.04709141274238,3,53.369110064677,0.518666666666667,1.66204986149584,21.2546257972717,0,412.750919342041,412.086456298828,0.705051024575467
+9381,312574,3792598,312674,3792498,80,93,0.554016620498615,0.0053988003209662,2.59778758441098,0.166666666666667,NA,0.021942006392547,0.0692520775623269,6.92520775623269,5,65.8619379028558,0.70453869047619,3.601108033241,44.5891931152344,22.0429573059082,413.787368774414,413.300140380859,0.686721806983906
+9382,312574,3792498,312674,3792398,81,93,0,NA,NA,NA,NA,0.0186253521959697,0.0831024930747922,8.31024930747922,1,86.2838359396331,0.844195079844627,8.31024930747922,75.4989952087402,58.0882949829102,415.18404006958,414.482482910156,0.743745818681062
+9383,312574,3792398,312674,3792298,82,93,0.789473684210526,0.00809820048144931,3.46371677921464,0.222222222222222,NA,0.0163537071398232,0.0131578947368421,1.31578947368421,2,39.3557830657631,0.594666666666667,0.789473684210526,39.2577247619629,21.4219055175781,416.079114278158,415.7412109375,0.381659473304005
+9384,312574,3792298,312674,3792198,83,93,23.5457063711911,0.114724506820532,17.1127809210574,0.689805499664655,15.5867255064659,0.0170361534695925,0.0193905817174515,1.93905817174515,2,50.8032046491325,0.745056497175141,1.38504155124654,9.1297858783177,0,416.174631118774,415.651031494141,0.490710544088165
+9385,312574,3792198,312674,3792098,84,93,43.213296398892,0.140368808345121,17.9774410919808,0.52374960430516,20.7823007792038,0.023492031661217,0.0277008310249307,2.77008310249307,2,58.1094160395534,0.762656147271532,1.66204986149584,3.63690266609192,0,412.729867935181,410.218139648438,2.96990562630917
+9386,312574,3792098,312674,3791998,85,93,53.7396121883656,0.261841815566861,26.7585468320096,0.715528601377658,26.4923391803511,0.0244235333013013,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,0,0,415.104998270671,414.276336669922,1.84109841827833
+9387,312574,3791998,312674,3791898,86,93,35.2631578947368,0.361719621504736,28.8948290649497,0.812189054726368,NA,0.0154423792911984,0.0105263157894737,1.05263157894737,3,15.8909479371306,0.242021276595745,0.526315789473684,6.494469165802,0,416.330282211304,415.772003173828,0.506878029327589
+9388,312574,3791898,312674,3791798,87,93,18.005540166205,0.0350922020862803,8.24783342884982,0.495306001188354,22.1586661328104,0.0205276239817911,0.0498614958448753,4.98614958448753,5,57.3390241173703,0.688154626930137,3.04709141274238,5.33375120162964,0,415.970878601074,415.384460449219,1.08235235624862
+9389,312574,3791798,312674,3791698,88,93,19.3905817174515,0.0629860037446057,9.6762033534835,0.515285126396237,23.9173968192285,0.0414990044832281,0.263157894736842,26.3157894736842,3,88.119037235502,0.82436974789916,13.0193905817175,12.833778045052,0,414.11039352417,413.656982421875,0.705624975061944
+9390,312574,3791698,312674,3791598,89,93,6.09418282548476,0.0593868035306282,10.7016062109165,0.696969696969697,NA,0.0172431449171759,0.0249307479224377,2.49307479224377,2,63.2654294198794,0.572679924242424,2.21606648199446,48.6781039767795,36.369026184082,413.667401631673,413.510528564453,0.192591099091749
+9391,312574,3791598,312674,3791498,90,93,3.68421052631579,0.0188958011233817,5.53659429883902,0.485185185185185,16.4298514359663,0.0270670535308263,0.05,5,4,61.3006724494784,0.637023593466425,2.63157894736842,37.9860171518828,5.19557523727417,413.792882919312,413.457458496094,0.428618369321327
+9392,312574,3791498,312674,3791398,91,93,14.9584487534626,0.0485892028886958,10.7829356652966,0.546432461873638,16.724304098185,0.0255641044609156,0.0914127423822715,9.14127423822715,6,67.891981095851,0.633130081300813,4.98614958448753,5.26239707253196,0,414.044191996257,413.533020019531,0.574775040469643
+9393,312574,3791398,312674,3791298,92,93,0,NA,NA,NA,NA,0.0170809211036371,0,0,0,NA,NA,0,NA,NA,414.779586791992,413.986724853516,0.718972129762498
+9394,312574,3791298,312674,3791198,93,93,30.4709141274238,0.296934017653141,27.3004921035054,0.795454545454545,NA,0.0277172426905656,0.168975069252078,16.8975069252078,3,83.7865423802436,0.829716981132075,10.5263157894737,2.59048088261339,0,415.507555643717,414.884063720703,0.70980650618866
+9395,312574,3791198,312674,3791098,94,93,22.1052631578947,0.0323928019257972,6.17028416916146,0.413839475184013,13.2327048522084,0.0288068997857121,0.152631578947368,15.2631578947368,6,75.6204820610415,0.63416149068323,4.73684210526316,7.42301501076797,0,416.172943115234,415.182922363281,0.896969309135625
+9396,312574,3791098,312674,3790998,95,93,29.6398891966759,0.0962786057238973,12.9616462080082,0.543720335889011,19.416042096036,0.0308391440378518,0.235457063711911,23.5457063711911,3,88.8188762633042,0.783448507534312,18.005540166205,7.13677324407241,0,416.974942525228,416.247894287109,0.84760422856262
+9397,312574,3790998,312674,3790898,96,93,45.7063711911357,0.0890802052959424,12.9940208012303,0.50255236312804,10.3911503999935,0.0566866221175648,0.631578947368421,63.1578947368421,1,98.56496811549,0.94890756302521,63.1578947368421,2.77373871259522,0,417.770191192627,417.1279296875,0.587887532896717
+9398,312574,3790898,312674,3790798,97,93,39.3351800554017,0.0766629645577201,14.0479966299527,0.588682370261318,13.3302115619202,0.0370771988985343,0.240997229916898,24.0997229916898,4,87.5402858818168,0.829997645396751,19.3905817174515,2.80041039675132,0,418.464065551758,418.164916992188,0.475222765545721
+9399,312574,3790798,312674,3790698,98,93,54.2105263157895,0.18535881101984,22.4731469911955,0.706972081972082,10.7999866759763,0.0334267972144421,0.297368421052632,29.7368421052632,6,85.8561733055527,0.727913637365058,13.9473684210526,2.46633433873675,0,419.217483520508,418.173980712891,0.755694816734363
+9400,312574,3790698,312674,3790598,99,93,55.9556786703601,0.545278832417587,37.3310056461923,0.747524752475248,NA,0.0361320149119304,0.277777777777778,27.7777777777778,4,90.2732846913847,0.755656108597285,22.8070175438597,2.61963609896208,0,419.774837493896,419.205291748047,0.349682100877456
+9401,312674,3800598,312774,3800498,0,94,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.431269327799,389.789855957031,1.69365041915885
+9402,312674,3800498,312774,3800398,1,94,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.547105577257,391.762664794922,0.993981084213437
+9403,312674,3800398,312774,3800298,2,94,22.1052631578947,0.11337480674025,14.2023426707093,0.367469879518072,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.314933776855,392.080017089844,0.447267967453812
+9404,312674,3800298,312774,3800198,3,94,32.8947368421053,0.112475006686756,15.0034758520092,0.392195767195767,13.8548671861334,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.186754014757,392.070434570312,0.178400153917068
+9405,312674,3800198,312774,3800098,4,94,11.5789473684211,0.0296934017653036,6.64625574930316,0.376676245210728,22.7161612493843,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.730977376302,391.146697998047,0.522941295741321
+9406,312674,3800098,312774,3799998,5,94,21.25,0.229449013640983,21.60326855703,0.794117647058823,NA,-0.0418252478690192,0.075,7.5,2,69.8294033975445,0.872813990461049,6.875,27.1695192654928,18.7329120635986,390.881323920356,390.766510009766,0.320939874027623
+9407,312674,3799998,312774,3799898,6,94,23.1578947368421,0.118773607061214,22.9407484499899,0.680464778503994,33.2679134937429,-0.0897389985560566,0.0973684210526316,9.73684210526316,3,76.7095427749786,0.745734359317497,5.52631578947368,18.9428516207515,7.34765291213989,390.923634847005,390.688903808594,0.35618754020799
+9408,312674,3799898,312774,3799798,7,94,24.7368421052632,0.126871807542661,11.8181648074049,0.412186379928315,49.0149584653181,0.0120575642213991,0.186842105263158,18.6842105263158,4,81.8062211308646,0.793398058252427,10.5263157894737,21.074418826842,5.19557523727417,391.366502549913,391.090179443359,0.476513482061028
+9409,312674,3799798,312774,3799698,8,94,25.7894736842105,0.132270607863625,14.1939952019013,0.658829676071055,41.8880662648123,0.0152727573871217,0.192105263157895,19.2105263157895,3,88.2205056788548,0.825936482084691,14.2105263157895,24.7282817723,5.19557523727417,391.846537272135,391.596099853516,0.326536951065766
+9410,312674,3799698,312774,3799598,9,94,15.25,0.0411658524473527,9.08298066988383,0.317401960784314,16.1999799791096,0.0218465403620939,0.22,22,3,88.6728953421958,0.828515433610975,12.25,20.7751096161929,0,392.32568359375,391.94775390625,0.912963073255643
+9411,312674,3799598,312774,3799498,10,94,27.6315789473684,0.283437016850625,28.1306768121809,0.782539682539683,NA,0.00920404364397224,0.152631578947368,15.2631578947368,2,90.2503490468519,0.929192546583851,15,16.9726934926263,0,395.037241617839,393.0244140625,1.52635407786275
+9412,312674,3799498,312774,3799398,11,94,0,NA,NA,NA,NA,-0.0104380751629211,0.0605263157894737,6.05263157894737,1,83.4283422491937,0.940865234982882,6.05263157894737,37.7911022020423,21.4219055175781,396.038177490234,395.670562744141,0.43108399502415
+9413,312674,3799398,312774,3799298,12,94,0,NA,NA,NA,NA,0.0122040644850738,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,63.124471282959,36.7382659912109,395.54731241862,395.336181640625,0.327099380432495
+9414,312674,3799298,312774,3799198,13,94,11.25,0.0303682518054242,6.91404354299341,0.429454022988506,24.1624449256319,0.0189772572853326,0.035,3.5,4,49.7638167517705,0.585492227979275,1.5,12.2510190691267,0,395.130251566569,394.904724121094,0.247127974900412
+9415,312674,3799198,312774,3799098,14,94,15.2631578947368,0.0391413023269911,8.36866398344811,0.470199275362319,38.313520325481,0.0151655918134853,0.05,5,4,57.9354860010718,0.56442831215971,1.84210526315789,14.6099716487684,5.19557523727417,394.742560492622,394.617309570312,0.226027837645109
+9416,312674,3799098,312774,3798998,15,94,26.0526315789474,0.133620307943866,20.6551364868644,0.727905073649755,15.5867255064659,0.0125084818611197,0.0131578947368421,1.31578947368421,2,43.9196997240125,0.594666666666667,1.05263157894737,14.3063578605652,5.19557523727417,394.173299153646,393.584625244141,0.577594386200849
+9417,312674,3798998,312774,3798898,16,94,6.31578947368421,0.0323928019257858,9.82515245345775,0.404166666666667,25.9778761038906,0.00801337579104208,0.0263157894736842,2.63157894736842,2,64.1609526402965,0.841995841995842,2.36842105263158,9.68989400863648,5.19557523727417,393.421827528212,393.186218261719,0.431307064143899
+9418,312674,3798898,312774,3798798,17,94,0,NA,NA,NA,NA,0.00500194199770704,0,0,0,NA,NA,0,NA,NA,393.132227579753,393.045379638672,0.166246982899272
+9419,312674,3798798,312774,3798698,18,94,0,NA,NA,NA,NA,0.00562160329048215,0,0,0,NA,NA,0,NA,NA,393.154012044271,393.065002441406,0.147884400795151
+9420,312674,3798698,312774,3798598,19,94,38.1578947368421,0.195706511634956,20.3914326626275,0.741062801932367,16.4298513045212,0.017578826545149,0.131578947368421,13.1578947368421,3,87.1967864494077,0.688413547237077,11.8421052631579,3.90253674507141,0,393.799924214681,393.337615966797,0.789090399590037
+9421,312674,3798598,312774,3798498,20,94,39.4736842105263,0.0809820048144644,13.7668135443608,0.536078431372549,12.8066307506828,0.0222340262245875,0.0921052631578947,9.21052631578947,6,69.7699766619487,0.620189905047476,5.52631578947368,2.65513928277152,0,395.260972764757,395.190521240234,0.437997998045524
+9422,312674,3798498,312774,3798398,21,94,18.5,0.0665852039585596,11.7576322863126,0.676803802399875,14.2750864632447,0.0210449707245016,0.1325,13.25,4,83.8345956240445,0.83532317826266,11.75,18.2375595434657,0,395.651374816895,395.461456298828,0.319292816454549
+9423,312674,3798398,312774,3798298,22,94,31.5789473684211,0.161964009628929,19.3729191136731,0.714539007092199,15.5867256623344,0.0236053545923297,0.223684210526316,22.3684210526316,4,88.0033891346939,0.846447412728701,15.5263157894737,5.81061446806964,0,395.169508192274,394.917633056641,0.414697083007616
+9424,312674,3798298,312774,3798198,23,94,30.5263157894737,0.156565209307965,18.4079536996987,0.659336419753086,33.2679134937429,0.0316942855899565,0.268421052631579,26.8421052631579,5,87.6612628071531,0.828203011361403,15.2631578947368,6.45783078904245,0,394.748563130697,394.641784667969,0.174197857748093
+9425,312674,3798198,312774,3798098,24,94,21.5789473684211,0.110675406579768,15.9947063192284,0.722222222222222,14.6953058096309,0.0150756333801837,0.136842105263158,13.6842105263158,1,90.7899197045923,0.960948204987668,13.6842105263158,7.62873623004326,0,394.776760525174,394.663757324219,0.174623409161961
+9426,312674,3798098,312774,3797998,25,94,0,NA,NA,NA,NA,0.00742559812623995,0.06,6,2,76.9680614337127,0.664053751399776,4.25,46.1673986911774,23.2353191375732,395.298828125,394.935028076172,0.422042559845293
+9427,312674,3797998,312774,3797898,26,94,30.2631578947368,0.103477006151816,12.9992799395436,0.695891543717631,18.1362566301771,0.0213453342368379,0.155263157894737,15.5263157894737,4,82.2367634263164,0.779488119235233,11.3157894736842,3.44934129714966,0,396.154909769694,395.703033447266,0.509569079677202
+9428,312674,3797898,312774,3797798,27,94,66.3157894736842,0.340124420220751,24.4692910402134,0.717948717948718,10.3911504415562,0.0332734283620395,0.321052631578947,32.1052631578947,4,91.0802132074474,0.733417517275246,23.6842105263158,1.72110727185109,0,396.764292399089,396.462310791016,0.502817758906385
+9429,312674,3797798,312774,3797698,28,94,88.6842105263158,0.454848927041242,20.4192394410098,0.519402985074627,10.3911503376439,0.0504998569459291,0.534210526315789,53.4210526315789,2,97.1802152366231,0.834854411125598,51.3157894736842,0.665443133838071,0,397.312975565592,396.9345703125,0.357393521685588
+9430,312674,3797698,312774,3797598,29,94,63.25,0.341474120300992,21.1192721158286,0.746837019326559,11.6176592829314,0.0544273947776674,0.475,47.5,5,93.0060469237765,0.826839826839827,40.5,1.72645035041006,0,397.615136040582,397.443664550781,0.232289187933428
+9431,312674,3797598,312774,3797498,30,94,52.6315789473684,0.134970008024107,19.3020450308159,0.699530766391231,10.3911504415562,0.023765627179857,0.194736842105263,19.4736842105263,9,77.766684004465,0.665661136249371,10.5263157894737,3.21763568955499,0,398.082224527995,397.774536132812,0.45407719686247
+9432,312674,3797498,312774,3797398,31,94,71.3157894736842,0.365768721745331,28.1983911310496,0.81949715370019,20.7823008831125,0.0270017728973471,0.168421052631579,16.8421052631579,6,75.3320325259431,0.656419529837251,5.52631578947368,3.38173937797546,0,398.773434109158,398.451171875,0.623738151684451
+9433,312674,3797398,312774,3797298,32,94,54.4736842105263,0.139693958304951,14.1561915609897,0.446602428987253,21.0565006083886,0.0184376771645379,0.142105263157895,14.2105263157895,5,75.6404990640932,0.72425621742859,6.31578947368421,5.24783923890856,0,399.407249450684,399.012054443359,0.49932359841025
+9434,312674,3797298,312774,3797198,33,94,40.5,0.218651412999054,27.9178837492936,0.770807926829268,21.4219054085088,0.0102895332141543,0.085,8.5,4,71.9259401778425,0.629195940671351,3.25,6.18559342272141,0,399.872785780165,399,1.19803165600621
+9435,312674,3797198,312774,3797098,34,94,81.8421052631579,0.419756724954974,22.8942064427909,0.744631185807656,18.7329128064055,0.0357654651711575,0.405263157894737,40.5263157894737,4,95.7670168500055,0.79799243253385,39.4736842105263,0.452562050385909,0,402.083651224772,400.870147705078,1.4887697958955
+9436,312674,3797098,312774,3796998,35,94,92.1052631578947,0.944790056168752,37.2758429755226,0.928571428571428,NA,0.0178179043607088,0.128947368421053,12.8947368421053,3,81.6649111790789,0.794993526111351,7.89473684210526,3.83767298289708,0,404.748711480035,403.499420166016,2.10054879910401
+9437,312674,3796998,312774,3796898,36,94,60,0.61546323658993,37.7963466094565,0.826023391812865,NA,0.018200991763972,0.139473684210526,13.9473684210526,3,85.635995303764,0.846758745841315,11.8421052631579,1.17635665749604,0,406.381510416667,405.197967529297,1.41767884867527
+9438,312674,3796898,312774,3796798,37,94,64.75,0.699144641564876,34.5424503003246,0.902187902187902,NA,0.0864575297018746,0.76,76,1,99.2259017402484,0.85456660849331,76,5.85933362339672,0,408.019558376736,406.973358154297,1.47099786778494
+9439,312674,3796798,312774,3796698,38,94,92.3684210526316,0.947489456329234,37.823378821719,0.917853751187085,NA,0.0757931271459184,0.744736842105263,74.4736842105263,2,98.9122139887498,0.8379970544919,74.2105263157895,0.0367178461998175,0,409.67339070638,409.0107421875,0.721860131747077
+9440,312674,3796698,312774,3796598,39,94,41.8421052631579,0.429204625516661,40.5522728803056,0.816561844863732,NA,0.041798664249348,0.436842105263158,43.6842105263158,2,95.7563355012809,0.825911673080447,39.4736842105263,3.88721487895552,0,410.283330281576,409.623596191406,0.890655410273278
+9441,312674,3796598,312774,3796498,40,94,37.6315789473684,0.193007111474474,14.7791574078399,0.420774647887324,20.7823008831125,0.0462255043365219,0.460526315789474,46.0526315789474,2,97.1666728771832,0.804878048780488,45.7894736842105,4.21806379863194,0,409.52690633138,408.064636230469,1.9970233002333
+9442,312674,3796498,312774,3796398,41,94,81.5789473684211,0.836814049749466,35.9570400207481,0.910752688172043,NA,0.057740202002644,0.694736842105263,69.4736842105263,1,98.9199097507581,0.774991292232671,69.4736842105263,0.695991743694652,0,406.478963216146,405.275817871094,1.61338225969734
+9443,312674,3796398,312774,3796298,42,94,56.25,0.303682518054242,29.5196912862096,0.724200206398349,15.5867256623344,0.0120719163390459,0.13,13,2,87.2813335840578,0.832106418700762,11.5,4.29634100657243,0,404.747623019748,404.239807128906,0.907450090897137
+9444,312674,3796298,312774,3796198,43,94,84.4736842105263,0.433253725757385,29.4369172839173,0.85905163753265,15.5867256623344,-0.0155545951519583,0.0105263157894737,1.05263157894737,2,30.8730773315672,0.49468085106383,0.526315789473684,1.29889380931854,0,404.122604370117,403.991607666016,0.336722276619786
+9445,312674,3796198,312774,3796098,44,94,95.7894736842105,0.982581658415502,38.6963253179054,0.918956043956044,NA,-0.0131528115809488,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,0,0,403.760016547309,403.409637451172,0.527024914297385
+9446,312674,3796098,312774,3795998,45,94,43.9473684210526,0.0563499783500648,14.6045623866032,0.460243556597723,12.5981953948481,0.0292086440591926,0.0921052631578947,9.21052631578947,11,61.6988465837601,0.392303848075962,4.21052631578947,4.07907709394182,0,403.056165059408,402.934997558594,0.214576394488668
+9447,312674,3795998,312774,3795898,46,94,93,1.00417685969936,40.1475524232337,0.901881720430108,NA,0.0394558151171077,0.2175,21.75,7,79.406700638065,0.678449963928682,7.75,0.179157766802558,0,403.001983642578,402.924743652344,0.120029236040104
+9448,312674,3795898,312774,3795798,47,94,70.2631578947368,0.180184960712183,12.7826092037534,0.459058174335952,11.0044048622438,0.0619401369893335,0.578947368421053,57.8947368421053,5,94.5742726988526,0.739329268292683,50.5263157894737,1.02985036373138,0,403.172035217285,403.001647949219,0.305539149494533
+9449,312674,3795798,312774,3795698,48,94,62.6315789473684,0.642457238194751,38.042306048521,0.841736694677871,NA,0.0402434611698769,0.342105263157895,34.2105263157895,5,89.1696628937308,0.679324894514768,18.6842105263158,2.49016469808725,0,403.185869004991,402.820739746094,0.556070442962338
+9450,312674,3795698,312774,3795598,49,94,17.3684210526316,0.0593868035306072,8.2392224266382,0.251736111111111,29.5081045409063,-0.0210102928974313,0.0210526315789474,2.10526315789474,4,34.5706664476853,0.387096774193548,0.789473684210526,3.66955786943436,0,403.362152099609,402.833160400391,0.616633954767403
+9451,312674,3795598,312774,3795498,50,94,77,0.831415249428501,36.9467135757226,0.876082251082251,NA,-0.00467386789916873,0.03,3,3,54.6658847081426,0.636143117040631,1.75,0.432964603106181,0,403.417416042752,403.073181152344,0.493540027629999
+9452,312674,3795498,312774,3795398,51,94,56.0526315789474,0.287486117091349,20.1910250371812,0.404874213836478,14.6953058096309,0.0257538431699351,0.189473684210526,18.9473684210526,3,89.4820184475359,0.834850189180898,17.1052631578947,8.32852375507355,0,403.602305094401,403.400512695312,0.262325748957156
+9453,312674,3795398,312774,3795298,52,94,22.8947368421053,0.0782826046539823,9.25937109904064,0.344489067380634,38.2087064196801,0.0127119392337303,0,0,0,NA,NA,0,NA,NA,404.006866455078,403.640563964844,0.533156129021228
+9454,312674,3795298,312774,3795198,53,94,11.5789473684211,0.0593868035306072,11.5106141654679,0.434281842818428,10.3911504415562,0.0192181009758267,0.00789473684210526,0.789473684210526,2,20.982045994374,0.496021220159151,0.526315789473684,16.6193564732869,14.6953058242798,404.923431396484,404.550689697266,0.564202815430253
+9455,312674,3795198,312774,3795098,54,94,3.75,0.0404910024072322,10.3271703709952,0.588888888888889,NA,0.00642901582675222,0.005,0.5,1,30.8308651382582,1,0.5,61.3293762207031,59.2386741638184,403.742970784505,401.613250732422,2.00999134390191
+9456,312674,3795098,312774,3794998,55,94,0,NA,NA,NA,NA,0.0100595752457402,0,0,0,NA,NA,0,NA,NA,401.442911783854,401.169525146484,0.563503942070348
+9457,312674,3794998,312774,3794898,56,94,9.73684210526316,0.0998778059378394,23.3078761047845,0.594594594594595,NA,0.0226866788883375,0.0263157894736842,2.63157894736842,2,64.8660180539262,0.762993762993763,2.36842105263158,11.1259155750275,0,401.259249369303,401.024017333984,0.254463268753592
+9458,312674,3794898,312774,3794798,57,94,17.8947368421053,0.091779605456393,12.9956470498694,0.353233830845771,11.6176592829313,0.0274088536627172,0.1,10,4,77.6557762713308,0.753086419753086,7.36842105263158,12.5090169404682,5.19557523727417,401.058420817057,401.02392578125,0.0564336812814519
+9459,312674,3794798,312774,3794698,58,94,1.25,0.0134970008024107,6.23469020258635,0.266666666666667,NA,0.0263857652110619,0.0475,4.75,9,36.6727501240803,0.312154946148973,1,39.8594048148707,15.5867252349854,401.013338724772,400.993347167969,0.0599698214550874
+9460,312674,3794698,312774,3794598,59,94,28.6842105263158,0.147117308746277,17.5783480976937,0.371913580246914,14.6953058096309,0.0287542763172257,0.155263157894737,15.5263157894737,6,74.6659282616635,0.651823346160894,4.73684210526316,20.3965088230068,0,401.157297770182,401.065307617188,0.211712439987696
+9461,312674,3794598,312774,3794498,60,94,46.0526315789474,0.236197514042188,18.9051867225549,0.526001291989664,31.1734510129318,0.0224655390812443,0.0421052631578947,4.21052631578947,3,67.2681564018174,0.739010989010989,3.42105263157895,15.9127663373947,5.19557523727417,401.901517232259,401.4189453125,0.643160078411323
+9462,312674,3794498,312774,3794398,61,94,12.1052631578947,0.124172407382179,28.232253763264,0.63768115942029,NA,0.0212777696414138,0.0526315789473684,5.26315789473684,6,48.4292428629278,0.421146953405018,1.05263157894737,26.9711708068848,10.3911504745483,403.284311930339,402.7041015625,0.885394235573563
+9463,312674,3794398,312774,3794298,62,94,22.75,0.245645414603875,32.1724438315285,0.750915750915751,NA,0.0190624339835631,0.0275,2.75,4,46.7423356471358,0.520137103684661,1.5,32.5958133610812,5.19557523727417,404.200528462728,403.543640136719,0.608828252737455
+9464,312674,3794298,312774,3794198,63,94,10,0.0341924020327739,10.4278490577827,0.441358024691358,31.173451186119,0.0225001649333679,0.05,5,4,63.6338401494464,0.673321234119782,3.15789473684211,13.7565554568642,0,404.521453857422,404.279205322266,0.31710057647888
+9465,312674,3794198,312774,3794098,64,94,43.6842105263158,0.448100426640036,33.8652999640345,0.775100401606426,NA,0.0244241951903524,0.0921052631578947,9.21052631578947,4,78.3100315888973,0.829085457271364,7.89473684210526,7.39767848423549,0,404.296531677246,403.776153564453,0.647609196456114
+9466,312674,3794098,312774,3793998,65,94,32.6315789473684,0.111575206633262,12.3525831701317,0.52801265885378,26.8893896708685,0.0038491377040995,0.0210526315789474,2.10526315789474,4,34.5706664476853,0.387096774193548,0.789473684210526,18.0747252106667,0,403.002888997396,402.659942626953,0.687514055620436
+9467,312674,3793998,312774,3793898,66,94,28,0.151166408987,21.9491974083424,0.707954162453657,15.5867256623344,-0.0141003429135958,0,0,0,NA,NA,0,NA,NA,402.42813873291,402.197326660156,0.283225009656257
+9468,312674,3793898,312774,3793798,67,94,26.8421052631579,0.13766940818459,16.7722809854639,0.709325396825397,10.3911504415562,-0.000485858988146279,0.0868421052631579,8.68421052631579,1,87.058227229868,0.878322126160743,8.68421052631579,15.8766984361591,5.19557523727417,402.397688123915,402.236755371094,0.236261171354914
+9469,312674,3793798,312774,3793698,68,94,12.3684210526316,0.126871807542661,24.5738306738595,0.585106382978723,NA,0.0156007691824734,0.0710526315789474,7.10526315789474,3,79.2504871787327,0.749654127412873,6.31578947368421,61.3308176111292,7.34765291213989,402.907913208008,402.595886230469,0.476991473352565
+9470,312674,3793698,312774,3793598,69,94,27.6315789473684,0.141718508425313,17.4629152970525,0.447411003236246,11.6176593526378,0.00971414453667278,0.0184210526315789,1.84210526315789,3,40.5118713999171,0.490616621983914,1.05263157894737,8.64713062558855,0,404.452257792155,403.403961181641,0.872922955603683
+9471,312674,3793598,312774,3793498,70,94,28,0.0755832044935001,10.6006647372356,0.450715174129353,12.7832181731436,0.0149491855010274,0.0175,1.75,3,44.8240830231146,0.491094147582697,1.25,7.60234430858067,5.19557523727417,405.492892795139,405.135345458984,0.481866193590019
+9472,312674,3793498,312774,3793398,71,94,29.2105263157895,0.299633417813518,34.3460427783368,0.771771771771772,NA,0.0202100208430477,0.0552631578947368,5.52631578947368,3,72.5662752008794,0.636142061281337,3.94736842105263,5.85127696536836,0,406.024187723796,405.577758789062,0.645165899008764
+9473,312674,3793398,312774,3793298,72,94,16.5789473684211,0.170062210110375,26.05724463658,0.764550264550265,NA,0.0214716406499256,0.0789473684210526,7.89473684210526,1,86.162631131474,0.756268221574344,7.89473684210526,6.13324036598206,0,406.87146335178,406.361907958984,1.06393520497376
+9474,312674,3793298,312774,3793198,73,94,28.1578947368421,0.144417908585795,18.340215286447,0.521901709401709,10.3911503376439,0.0194668168899816,0.0342105263157895,3.42105263157895,4,56.3694475605296,0.597335755373903,2.36842105263158,7.5935330757728,0,407.543917338053,406.922637939453,1.07016945531563
+9475,312674,3793198,312774,3793098,74,94,2,0.0215952012838572,8.21173618672717,0.354166666666667,NA,0.0178174968560779,0.025,2.5,3,47.9024210673189,0.526627218934911,1,10.2937640666962,5.19557523727417,408.12946234809,407.476013183594,0.94070853498997
+9476,312674,3793098,312774,3792998,75,94,10.2631578947368,0.0526383031294019,12.3247019777574,0.55880376344086,14.6953058096309,0.0192735478993487,0.0236842105263158,2.36842105263158,1,70.27151955842,0.914645103324349,2.36842105263158,22.6423890855577,15.5867252349854,408.527661641439,407.998077392578,0.55060377484245
+9477,312674,3792998,312774,3792898,76,94,30.7894736842105,0.157914909388206,18.2329085730164,0.710347296813462,23.2353187052757,0.0324055788009374,0.257894736842105,25.7894736842105,3,92.2341993593267,0.846872985170858,23.6842105263158,12.7021212334536,0,408.959309895833,408.698791503906,0.266642288285762
+9478,312674,3792898,312774,3792798,77,94,30.2631578947368,0.310431018455447,35.0515014245768,0.733333333333333,NA,0.0204879640503446,0.0631578947368421,6.31578947368421,4,66.1057690377562,0.634831460674157,3.15789473684211,11.6426635980606,0,409.364105224609,408.989166259766,0.598740368142112
+9479,312674,3792798,312774,3792698,78,94,57,0.205154412196643,21.6508880708491,0.641897906265722,15.5867256623344,0.0120770138615626,0.1375,13.75,2,87.2927718838272,0.792524790236461,12,8.22454786300659,0,410.66207546658,410.068878173828,1.06728306028815
+9480,312674,3792698,312774,3792598,79,94,56.578947368421,0.145092758625915,17.0425274625692,0.60608048779425,16.8856194675289,0.00576856832968157,0.0921052631578947,9.21052631578947,3,83.162196423799,0.772113943028486,8.42105263157895,9.37443617412022,5.19557523727417,412.216641743978,411.169036865234,1.1614208009581
+9481,312674,3792598,312774,3792498,80,94,44.4736842105263,0.152066209040494,18.9675364996514,0.473063973063973,13.8548672554083,0.00136259847918394,0.0789473684210526,7.89473684210526,1,86.162631131474,0.800583090379009,7.89473684210526,10.4134897391001,5.19557523727417,413.448974609375,412.973266601562,0.928276788748245
+9482,312674,3792498,312774,3792398,81,94,24.7368421052632,0.0634359037713305,11.3615806553487,0.655989328771587,15.5867255064659,0.0118108538322447,0.0526315789473684,5.26315789473684,2,78.4561041158034,0.795698924731183,5,10.2429605484009,5.19557523727417,414.934903462728,414.173431396484,1.16350639185891
+9483,312674,3792398,312774,3792298,82,94,44,0.237547214122429,27.7272251273927,0.756657088122605,20.7823008831125,0.0180382439667301,0.1275,12.75,4,86.1065628146974,0.749695352896617,11.5,8.3733811191484,0,415.943939208984,415.533905029297,0.754296998198057
+9484,312674,3792298,312774,3792198,83,94,52.3684210526316,0.268590315967974,28.7165638273508,0.790049751243781,20.7823008831125,0.0268145022265296,0.2,20,3,88.2397448277082,0.832089552238806,13.9473684210526,7.39881289632697,0,415.706169128418,414.212310791016,0.787842453082366
+9485,312674,3792198,312774,3792098,84,94,29.7368421052632,0.101677406044828,16.4508796082882,0.558068783068783,37.1206201637272,0.0178548052671096,0.0131578947368421,1.31578947368421,3,28.2437953748797,0.392,0.789473684210526,11.0874055862427,0,413.239893595378,411.547729492188,2.18628155384907
+9486,312674,3792098,312774,3791998,85,94,55.5263157894737,0.284786716930867,28.4856586675285,0.757271241830065,31.1734510129318,0.0196557810275216,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,0,0,415.090488009983,414.328521728516,1.42189301444218
+9487,312674,3791998,312774,3791898,86,94,40.25,0.217301712918813,18.2312739968116,0.528098290598291,20.7823006752878,0.0135290291956881,0.0375,3.75,3,69.6310205938586,0.622195985832349,3.25,9.49550724029541,0,415.905110677083,415.554382324219,0.370757291235846
+9488,312674,3791898,312774,3791798,87,94,0.526315789473684,0.00539880032096429,2.59778758441098,0.166666666666667,NA,0.0240032316295056,0.178947368421053,17.8947368421053,4,82.2870058324647,0.795302736479207,9.73684210526316,28.5628978574977,5.19557523727417,415.769748263889,415.308715820312,0.587964302625137
+9489,312674,3791798,312774,3791698,88,94,0,NA,NA,NA,NA,0.0400237003222987,0.3,30,2,94.9658884082077,0.902912621359223,29.7368421052632,61.1491036164133,18.7329120635986,414.254048665365,413.853363037109,0.669315622605242
+9490,312674,3791698,312774,3791598,89,94,2.89473684210526,0.0296934017653036,10.8315263864608,0.454545454545455,NA,0.0159749875262773,0.0947368421052632,9.47368421052632,3,80.7358293460633,0.779069767441861,7.36842105263158,47.2039125760396,0,413.970075819227,413.824035644531,0.256714315225777
+9491,312674,3791598,312774,3791498,90,94,4,0.0215952012838572,6.20132759311379,0.369047619047619,84.5778360955279,0.0213676906848559,0.025,2.5,3,52.9103541849425,0.684418145956607,1.75,9.9488796710968,5.19557523727417,414.319089253743,414.115020751953,0.3306701306692
+9492,312674,3791498,312774,3791398,91,94,29.4736842105263,0.151166408987,18.8575559740117,0.762926652142338,15.5867255064659,0.0370715358556481,0.268421052631579,26.8421052631579,5,87.5996508590565,0.77591697134096,16.3157894736842,6.04973869230233,0,414.827799479167,414.568786621094,0.455449839748085
+9493,312674,3791398,312774,3791298,92,94,0,NA,NA,NA,NA,0.0217256482939487,0.113157894736842,11.3157894736842,2,85.5581590285192,0.859050445103858,10,65.80659387278,36.369026184082,415.620491027832,414.923248291016,0.763691362017701
+9494,312674,3791298,312774,3791198,93,94,24.7368421052632,0.126871807542661,16.4859761338903,0.53876404494382,20.7823006752878,0.0261402450652799,0.131578947368421,13.1578947368421,2,85.0084451043918,0.850980392156863,8.42105263157895,0,0,416.583831787109,416.248199462891,0.692045057299069
+9495,312674,3791198,312774,3791098,94,94,25.75,0.0556076433059322,9.43259967069664,0.44712448297354,16.2509197770801,0.0331102098353585,0.195,19.5,6,79.8700230047781,0.594923035376722,8.75,9.18478008416983,0,417.311332702637,416.656677246094,0.724641247791363
+9496,312674,3791098,312774,3790998,95,94,35,0.359020221344126,30.2756639891277,0.822055137844611,NA,0.0380282430229559,0.334210526315789,33.4210526315789,2,92.4986838523164,0.863456701401366,20.5263157894737,3.94601445310698,0,417.839460584852,417.397644042969,0.577008193179847
+9497,312674,3790998,312774,3790898,96,94,26.8421052631579,0.0458898027281965,7.41800939100304,0.386334498834499,18.3250340791261,0.0526451858594986,0.526315789473684,52.6315789473684,1,97.9538591370238,0.931716082659479,52.6315789473684,9.45828508615494,0,418.145846048991,417.823211669922,0.39991632007002
+9498,312674,3790898,312774,3790798,97,94,15.5263157894737,0.0530882031561489,6.62570081956182,0.31547619047619,22.5141590648952,0.0197030442036473,0.163157894736842,16.3157894736842,3,87.8867555666775,0.80083857442348,14.4736842105263,17.025736008921,0,418.464450412326,418.264068603516,0.646536575206768
+9499,312674,3790798,312774,3790698,98,94,22.75,0.0614113536509689,11.7811510294313,0.543724175303123,19.4834069610166,0.0306132708397854,0.1625,16.25,5,85.8158105329934,0.714700832122573,13.25,32.5169144850511,0,420.058504740397,419.288116455078,1.1795772726026
+9500,312674,3790698,312774,3790598,99,94,29.7368421052632,0.152516109067241,24.3212073025774,0.707885304659498,20.7823006752878,0.0318849855397679,0.188888888888889,18.8888888888889,4,86.2800280380327,0.761712904339818,14.4444444444444,25.5133603110033,0,420.27631632487,419.946807861328,0.675621237433516
+9501,312774,3800598,312874,3800498,0,95,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.184869766235,389.717834472656,0.934795430346627
+9502,312774,3800498,312874,3800398,1,95,5.26315789473684,0.053988003209662,8.75517338149529,0.708333333333333,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.139012654622,390.66796875,0.642550955471326
+9503,312774,3800398,312874,3800298,2,95,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.738935470581,391.382385253906,0.306292595064193
+9504,312774,3800298,312874,3800198,3,95,1.66204986149584,0.00809820048144931,2.20240815802299,0.216666666666667,11.6176592829322,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.950454711914,391.822235107422,0.151419421229981
+9505,312774,3800198,312874,3800098,4,95,3.04709141274238,0.0148467008826571,5.74283416210007,0.363095238095238,25.9778758441098,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.012153625488,391.802581787109,0.200966601849165
+9506,312774,3800098,312874,3799998,5,95,0.263157894736842,0.0026994001604831,0,0,NA,-0.00910849942489509,0.0197368421052632,1.97368421052632,2,21.6627726262731,0.48993288590604,1.31578947368421,49.0734036763509,46.7601776123047,391.584355672201,391.051849365234,0.496279622811981
+9507,312774,3799998,312874,3799898,6,95,13.8504155124654,0.0449900026747184,11.4787532992891,0.542181069958848,19.0504423722772,-0.03759873604372,0.0221606648199446,2.21606648199446,1,68.2360309929322,1,2.21606648199446,40.6631264686584,34.8529777526855,391.542797088623,391.152160644531,0.43657097182499
+9508,312774,3799898,312874,3799798,7,95,1.38504155124654,0.0134970008024155,6.23469020258635,0.266666666666667,NA,0.022615149532786,0.227146814404432,22.7146814404432,3,89.1166390021021,0.875071066617229,19.6675900277008,36.3659941917512,7.34765291213989,392.169626871745,391.69580078125,0.571207200886463
+9509,312774,3799798,312874,3799698,8,95,0,NA,NA,NA,NA,0.0192724973139599,0.0332409972299169,3.32409972299169,3,60.1817987987037,0.634923310298331,2.49307479224377,25.8589508533478,10.3911504745483,392.448669433594,391.994171142578,0.502839915345684
+9510,312774,3799698,312874,3799598,9,95,0,NA,NA,NA,NA,0.0139711269420667,0.0578947368421053,5.78947368421053,3,70.4744172976112,0.812684850476503,4.47368421052632,44.6731973127885,25.977876663208,392.768905639648,392.360321044922,0.909100153222881
+9511,312774,3799598,312874,3799498,10,95,7.75623268698061,0.0251944014978423,6.88180340836444,0.513932980599647,19.0504423895965,0.00793722809256782,0.0193905817174515,1.93905817174515,3,38.9858975323672,0.490112994350283,0.831024930747922,33.5461068834577,16.4298515319824,395.482978820801,393.776672363281,1.59291571507188
+9512,312774,3799498,312874,3799398,11,95,0,NA,NA,NA,NA,0.0220722559783617,0.160664819944598,16.0664819944598,2,90.5746386782675,0.880858085808581,15.7894736842105,55.8358557470914,31.6034507751465,396.141708374023,395.748565673828,0.480545901655913
+9513,312774,3799398,312874,3799298,12,95,0,NA,NA,NA,NA,0.0216205766344078,0.0415512465373961,4.15512465373961,3,67.9088155718609,0.762874408828166,3.601108033241,60.8238611857096,47.9008369445801,395.526868184408,395.049346923828,0.531282974407092
+9514,312774,3799298,312874,3799198,13,95,4.21052631578947,0.0215952012838648,5.84447927429807,0.504545454545455,36.7382645240838,0.0153488366187383,0.0605263157894737,6.05263157894737,4,68.3397100865063,0.615624027388733,3.94736842105263,35.2410333674887,7.34765291213989,394.991407394409,394.622436523438,0.378743382323188
+9515,312774,3799198,312874,3799098,14,95,23.8227146814404,0.0773828046005156,14.1543987644449,0.660911221395092,22.5141590648952,0.0186162177271797,0.0221606648199446,2.21606648199446,3,42.742818892036,0.488668555240793,1.10803324099723,9.69631141424179,0,394.815401713053,394.644714355469,0.263675676030234
+9516,312774,3799098,312874,3798998,15,95,60.1108033240997,0.292884917412417,18.41542338008,0.492635658914729,16.4298513045218,-0.00381242560540065,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,3.67382645606995,0,394.874656677246,394.291046142578,0.455897343801256
+9517,312774,3798998,312874,3798898,16,95,6.92520775623269,0.0674850040120775,19.9583935468039,0.506666666666667,NA,0.0173125340706093,0.0332409972299169,3.32409972299169,3,53.9746927765558,0.634923310298331,1.38504155124654,24.8862462838491,5.19557523727417,394.539357503255,393.539093017578,0.707154088373329
+9518,312774,3798898,312874,3798798,17,95,0,NA,NA,NA,NA,0.00275234774780026,0,0,0,NA,NA,0,NA,NA,393.799921035767,393.222381591797,0.676153999659282
+9519,312774,3798798,312874,3798698,18,95,26.5927977839335,0.129571207703189,13.7671983509503,0.515232974910394,11.6176592829322,0.00127873768717834,0,0,0,NA,NA,0,NA,NA,393.417727152507,393.210266113281,0.332483311211696
+9520,312774,3798698,312874,3798598,19,95,52.0775623268698,0.101497446034165,14.21449737606,0.503573611329387,14.7929122757009,0.0278535174011444,0.0969529085872576,9.69529085872576,6,63.6041717548233,0.484503913687328,2.77008310249307,6.16883944102696,0,393.851095199585,393.371734619141,0.677341920743157
+9521,312774,3798598,312874,3798498,20,95,46.814404432133,0.0651712324459492,7.83632275223637,0.386502702599825,16.0507040854294,0.0284008866909168,0.102493074792244,10.2493074792244,7,61.8509030568024,0.525096134385752,2.21606648199446,3.29967800346581,0,395.197341918945,394.962677001953,0.439151678956301
+9522,312774,3798498,312874,3798398,21,95,55.5263157894737,0.113914686772387,11.7914110837182,0.407417638633108,14.5476104727015,0.0192033921468752,0.0578947368421053,5.78947368421053,8,50.9880752354821,0.406835359842261,1.84210526315789,4.34874690662731,0,395.529079437256,395.116119384766,0.413685803887777
+9523,312774,3798398,312874,3798298,22,95,21.3296398891967,0.103926906178599,16.6205257434639,0.363888888888889,46.7601769870196,0.0127584639455142,0.0304709141274238,3.04709141274238,4,47.7809316764096,0.312380952380952,1.38504155124654,3.77860017256303,0,395.208592732747,394.943389892578,0.4200891260838
+9524,312774,3798298,312874,3798198,23,95,18.005540166205,0.175461010431402,26.603969463671,0.753846153846154,NA,0.0240434528868391,0.10803324099723,10.803324099723,5,74.290718002545,0.603296703296703,6.37119113573407,30.368414463141,0,394.933712005615,394.599426269531,0.339740000505217
+9525,312774,3798198,312874,3798098,24,95,29.3628808864266,0.143068208505604,17.8786436067391,0.7583364094992,10.3911503376439,0.0304329224561929,0.121883656509695,12.1883656509695,3,81.400655401699,0.692215875181175,7.20221606648199,16.1026990847154,0,394.825744628906,394.669158935547,0.221124080444628
+9526,312774,3798098,312874,3797998,25,95,16.8421052631579,0.172761610270919,26.5614076220812,0.713541666666667,NA,0.0529613708480802,0.536842105263158,53.6842105263158,3,96.170336941423,0.87467018469657,51.3157894736842,35.8336187063479,0,395.129243850708,394.800415039062,0.329105463190044
+9527,312774,3797998,312874,3797898,26,95,53.185595567867,0.259142415406378,26.2639026383814,0.794973544973545,15.5867255064659,0.0220705514482567,0.130193905817175,13.0193905817174,2,84.1908825993138,0.841918789808917,8.58725761772853,12.2749618367946,0,395.636644363403,395.207092285156,0.43970482103514
+9528,312774,3797898,312874,3797798,27,95,45.1523545706371,0.110000556539686,12.4560446137772,0.417886528893992,13.295565210335,0.0115749555584758,0.0415512465373961,4.15512465373961,2,67.1736361324614,0.715449290593799,2.21606648199446,0,0,396.285883585612,395.915557861328,0.470350284088563
+9529,312774,3797798,312874,3797698,28,95,85.8725761772853,0.836814049749762,37.0665398078682,0.872043010752688,NA,0.011030019995734,0.0415512465373961,4.15512465373961,4,54.1073430162022,0.620599054125066,2.21606648199446,1.03911504745483,0,396.932636260986,396.479187011719,0.378996641372953
+9530,312774,3797698,312874,3797598,29,95,38.4210526315789,0.197056211715266,21.6881292370896,0.766539184111648,10.3911503376439,0.0139852126255798,0.0657894736842105,6.57894736842105,6,58.6929089638894,0.545070422535211,2.63157894736842,1.45476106643677,0,397.449963887533,397.248168945312,0.322350377201898
+9531,312774,3797598,312874,3797498,30,95,36.8421052631579,0.179510110672126,22.8677608412743,0.772475466919911,10.3911504415599,0.0249950769234035,0.265927977839335,26.5927977839335,1,94.7823367794258,0.80199648968846,26.5927977839335,1.77669336398443,0,398.290054321289,397.756866455078,0.666678942288258
+9532,312774,3797498,312874,3797398,31,95,51.8005540166205,0.168262610003447,21.3621927663697,0.708240489381513,10.3911504415599,0.048583428509091,0.479224376731302,47.9224376731302,4,96.2436321920967,0.56659774561462,45.1523545706371,3.32434666639119,0,399.189079284668,398.580413818359,0.642433790632016
+9533,312774,3797398,312874,3797298,32,95,85.595567867036,0.834114649589279,35.5337395811089,0.90992448759439,NA,0.0400674874704703,0.238227146814404,23.8227146814404,5,85.8344441495463,0.72544266191325,10.803324099723,1.94789610907089,0,400.08154296875,399.094940185547,0.787401407437235
+9534,312774,3797298,312874,3797198,33,95,71.5789473684211,0.367118421825702,28.5917839025502,0.814732142857143,15.5867256623399,0.035182735711255,0.252631578947368,25.2631578947368,3,90.2114574935058,0.611038322961022,17.8947368421053,1.94834071397781,0,401.197700500488,400.312133789062,0.944309416221293
+9535,312774,3797198,312874,3797098,34,95,53.7396121883656,0.174561210377907,15.27084092304,0.606024667931689,19.0504424761932,0.0205817552395025,0.127423822714681,12.7423822714681,4,78.3831568035958,0.691452991452991,6.09418282548476,2.173404071642,0,402.724967956543,401.501373291016,1.07975353186545
+9536,312774,3797098,312874,3796998,35,95,32.1329639889197,0.15656520930802,14.0937911530758,0.389855072463768,36.3690265454597,0.0152843499581902,0.0886426592797784,8.86426592797784,3,77.3376192706392,0.62017769464578,4.43213296398892,7.33875939249992,0,404.134254455566,403.611755371094,0.67417796601901
+9537,312774,3796998,312874,3796898,36,95,28.808864265928,0.140368808345121,22.1873603730005,0.664317042606516,37.8243585167531,0.0157090309573034,0.0498614958448753,4.98614958448753,3,63.1766253770632,0.610193283662671,2.21606648199446,8.14746228853861,0,405.137819290161,404.574645996094,0.736864282580115
+9538,312774,3796898,312874,3796798,37,95,63.6842105263158,0.653254838836911,36.2770334371689,0.856060606060606,NA,0.0299089880263445,0.252631578947368,25.2631578947368,3,91.3224878681374,0.743285293154274,20.7894736842105,1.19763368368149,0,406.578763326009,405.741882324219,1.35449257839275
+9539,312774,3796798,312874,3796698,38,95,45.1523545706371,0.220001113079373,23.8064574842584,0.803433293148483,18.73291280641,0.0319563575599544,0.232686980609418,23.2686980609418,5,87.8465241319319,0.667627746953214,17.7285318559557,5.87255049319494,0,408.117036819458,406.474395751953,1.34349838408892
+9540,312774,3796698,312874,3796598,39,95,52.9085872576177,0.515585430652272,29.7506974973552,0.879581151832461,NA,0.0463798757736188,0.376731301939058,37.6731301939058,3,93.5006133823093,0.83179211469534,34.0720221606648,1.44429910533568,0,408.533767700195,407.405914306641,1.10933059330752
+9541,312774,3796598,312874,3796498,40,95,45.7063711911357,0.222700513239856,15.2141637549821,0.404979674796748,25.9778761038998,0.0345502253475088,0.329639889196676,32.9639889196676,1,95.87929364248,0.83425160697888,32.9639889196676,1.89547741913996,0,407.406387329102,405.879241943359,1.87446816935579
+9542,312774,3796498,312874,3796398,41,95,60.1108033240997,0.585769834824833,31.471887152368,0.870967741935484,NA,0.0308760311368271,0.260387811634349,26.0387811634349,7,81.8016027596789,0.670032994471197,13.5734072022161,2.62068205691398,0,405.271589279175,404.591766357422,0.936686758442235
+9543,312774,3796398,312874,3796298,42,95,66.5789473684211,0.341474120301112,17.4459349494794,0.539508632138114,25.9778761038998,0.0211622462103964,0.05,5,6,52.4811967635683,0.455535390199637,2.10526315789474,3.00796461105347,0,404.259188334147,404.018188476562,0.447483419589196
+9544,312774,3796298,312874,3796198,43,95,62.3268698060942,0.303682518054349,21.1144660156436,0.708276912660799,25.9778761038998,0.00590719530058037,0.0277008310249307,2.77008310249307,3,50.7231889218751,0.683541529695376,1.66204986149584,1.03911504745483,0,403.760593414307,403.503387451172,0.327973844651026
+9545,312774,3796198,312874,3796098,44,95,59.0027700831025,0.28748611709145,21.3163427450539,0.684090909090909,36.3690265454597,0.00641092801143459,0.0249307479224377,2.49307479224377,3,45.7248434871564,0.487215909090909,1.10803324099723,1.73185841242472,0,403.327087402344,403.086212158203,0.376584150841134
+9546,312774,3796098,312874,3795998,45,95,37.3961218836565,0.0911047554163047,12.9573844416069,0.664772727272727,11.996671457098,0.0217189453045323,0.0443213296398892,4.43213296398892,6,49.857979438331,0.433212560386473,2.21606648199446,2.59778761863708,0,402.978813171387,402.927215576172,0.125873348859858
+9547,312774,3795998,312874,3795898,46,95,45,0.230798713721305,22.8970807351613,0.776789635485288,10.3911504415599,0.0306341038970124,0.247368421052632,24.7368421052632,2,90.5771175717496,0.826007326007326,15.7894736842105,2.28904959496031,0,403.080284118652,402.9775390625,0.229916594044652
+9548,312774,3795898,312874,3795798,47,95,40.7202216066482,0.066135303931836,6.81159393441897,0.297012009578854,20.7823007618845,0.0297458113609411,0.265927977839335,26.5927977839335,5,84.5472730261195,0.70695480473892,11.6343490304709,3.1781171609958,0,403.563188552856,403.239379882812,0.484517668442009
+9549,312774,3795798,312874,3795698,48,95,46.814404432133,0.152066209040548,12.710339962172,0.473319615912209,32.9053097316064,0.0209870200259882,0.177285318559557,17.7285318559557,7,75.0226039804299,0.555044492544493,6.92520775623269,4.72818780690432,0,404.0226465861,403.458801269531,0.558804184662174
+9550,312774,3795698,312874,3795598,49,95,37.9501385041551,0.073963564397237,12.9698354490521,0.491371764563254,13.5084955428531,0.0237802135594856,0.191135734072022,19.1135734072022,8,71.8450836593082,0.509566398732028,4.70914127423823,6.28695085774297,0,404.162921905518,403.767944335938,0.448746884861511
+9551,312774,3795598,312874,3795498,50,95,48.9473684210526,0.167362809949952,16.3629658476753,0.701780322265358,31.7355350861344,0.0282528258101114,0.257894736842105,25.7894736842105,4,89.9607213015034,0.754996776273372,20.7894736842105,2.51371542774901,0,404.053225199382,403.80224609375,0.334746439691024
+9552,312774,3795498,312874,3795398,51,95,33.5180055401662,0.0816568548546138,12.7244994098893,0.556901431901432,23.3800884935098,0.0282972582627078,0.204986149584488,20.4986149584488,4,86.1666971992764,0.777459126239614,14.404432132964,4.27984927796029,0,403.975257873535,403.778381347656,0.231273617729138
+9553,312774,3795398,312874,3795298,52,95,22.4376731301939,0.0728838043330438,10.1138925041234,0.376456268475048,20.7823007445652,0.0196494633535702,0.0637119113573407,6.37119113573407,4,67.3012459195691,0.614316239316239,3.601108033241,4.18732442026553,0,404.243047078451,403.959014892578,0.512399730872746
+9554,312774,3795298,312874,3795198,53,95,10.803324099723,0.105276606258841,16.0881525502469,0.722222222222222,NA,0.0230917272394506,0.0526315789473684,5.26315789473684,2,71.5387162663941,0.745210727969349,3.04709141274238,12.3229458708512,5.19557523727417,405.508272171021,404.879821777344,0.658824989025063
+9555,312774,3795198,312874,3795098,54,95,2.10526315789474,0.0215952012838648,5.94195244015499,0.520833333333333,NA,0.0166475952922299,0,0,0,NA,NA,0,NA,NA,405.570236206055,403.640930175781,1.34363815636401
+9556,312774,3795098,312874,3794998,55,95,18.8365650969529,0.0458898027282127,8.659768021982,0.503692411924119,15.5867255584239,0.0163286377518139,0,0,0,NA,NA,0,NA,NA,402.788909912109,401.706451416016,1.57149146467004
+9557,312774,3794998,312874,3794898,56,95,18.5595567867036,0.0602866035841226,13.6082038269602,0.512745098039216,22.9405620943639,0.0208244854502003,0.0193905817174515,1.93905817174515,2,49.4361914932812,0.617584745762712,1.10803324099723,8.77935470853533,5.19557523727417,401.894510269165,401.1904296875,0.770797547100401
+9558,312774,3794898,312874,3794798,57,95,39.3351800554017,0.3833148227886,31.2288637010938,0.746478873239437,NA,0.0316026196266958,0.235457063711911,23.5457063711911,5,84.6599010217414,0.72281408964392,16.3434903047091,7.90754625657025,0,401.334849039714,401.071014404297,0.362633694800012
+9559,312774,3794798,312874,3794698,58,95,46.0526315789474,0.236197514042271,23.1530246936278,0.739751344086022,25.9778761038998,0.0344279824995618,0.3,30,6,88.5763648338523,0.674063800277393,20.5263157894737,8.16705820434972,0,401.096797943115,400.992309570312,0.143619959744608
+9560,312774,3794698,312874,3794598,59,95,49.3074792243767,0.240246614282996,27.5303506444523,0.616469517743403,31.1734513246797,0.0377566044106293,0.343490304709141,34.3490304709141,5,90.0084557893457,0.715668073136428,25.4847645429363,6.89973198598431,0,401.184066772461,401.088775634766,0.175300309325223
+9561,312774,3794598,312874,3794498,60,95,48.1994459833795,0.23484781396203,26.2938440301039,0.593916242218449,31.1734513246797,0.030678301326717,0.313019390581717,31.3019390581717,3,89.7900523656481,0.785934535104364,19.1135734072022,8.77070350984556,0,401.646528244019,401.30078125,0.439469579291696
+9562,312774,3794498,312874,3794398,61,95,39.3351800554017,0.1916574113943,22.1096240099575,0.547649572649573,31.1734513246797,0.0328028609220279,0.304709141274238,30.4709141274238,3,89.4244619235371,0.732587238983763,14.9584487534626,10.7312021428888,0,402.272318522135,401.645690917969,0.696225465847387
+9563,312774,3794398,312874,3794298,62,95,31.8421052631579,0.326627419418455,29.2347068106665,0.764462809917355,NA,0.0246915423198755,0.197368421052632,19.7368421052632,3,89.138118411584,0.830104321907601,16.8421052631579,11.1778132629395,0,402.562112808228,401.744049072266,1.08335172490224
+9564,312774,3794298,312874,3794198,63,95,37.3961218836565,0.12147300722174,16.9330107509118,0.46080779054917,29.4415929177531,0.0251969637722035,0.185595567867036,18.5595567867036,2,90.4967522097224,0.842578056863771,17.4515235457064,9.30195362176468,0,402.635953267415,401.322357177734,1.43985876269646
+9565,312774,3794198,312874,3794098,64,95,18.5595567867036,0.0361719621504736,7.01767082359831,0.466554054054054,30.1343362805238,0.0193472428832856,0.07202216066482,7.20221606648199,4,67.2524971622365,0.684601383327266,2.77008310249307,8.91394826082083,0,402.550817489624,401.439880371094,1.29885685882174
+9566,312774,3794098,312874,3793998,65,95,42.6592797783933,0.138569208238133,18.3374544194005,0.548874489126061,23.6076132034009,0.0235634994877075,0.213296398891967,21.3296398891967,3,87.844971284823,0.691564830157415,11.6343490304709,9.37461246143688,0,401.890988667806,401.29736328125,0.80768394728554
+9567,312774,3793998,312874,3793898,66,95,43.1578947368421,0.221350813159614,26.6867431427289,0.767361111111111,36.3690265454597,0.0265055412396673,0.215789473684211,21.5789473684211,2,91.5358402104329,0.868086091182597,19.7368421052632,11.2860306007106,0,401.620294570923,401.217529296875,0.549074954606596
+9568,312774,3793898,312874,3793798,67,95,48.4764542936288,0.236197514042271,25.4488908735449,0.770375811939375,25.9778761038998,0.0251931074527115,0.191135734072022,19.1135734072022,2,91.4530698523016,0.877391599683007,18.5595567867036,10.8857851788618,0,401.761993408203,401.325408935547,0.540588881815998
+9569,312774,3793798,312874,3793698,68,95,56.5096952908587,0.275338816369276,25.9953860238879,0.82628367003367,31.1734513246797,0.0213341723308714,0.18005540166205,18.005540166205,3,89.0953708268904,0.838106912221956,16.3434903047091,10.7457383962778,0,402.763126373291,401.961273193359,0.955480802663335
+9570,312774,3793698,312874,3793598,69,95,50.6925207756233,0.246995114684204,26.4571143324517,0.787284401949756,25.9778761038998,0.0239613272205438,0.229916897506925,22.9916897506925,2,92.7476246182945,0.902828757402242,22.4376731301939,9.45849917882896,0,404.397945404053,403.945953369141,0.477606416400486
+9571,312774,3793598,312874,3793498,70,95,42.1052631578947,0.143968008559099,18.7856601863865,0.598185855538797,15.5867256623399,0.025221372543226,0.157894736842105,15.7894736842105,4,85.0822639905748,0.805889423076923,13.4210526315789,8.17612585226695,0,404.826914469401,404.676635742188,0.310429339155125
+9572,312774,3793498,312874,3793398,71,95,34.6260387811634,0.112475006686796,18.7026999290551,0.539065255731922,19.0504424761932,0.0240139225212497,0.168975069252078,16.8975069252078,2,89.1493131557194,0.841069182389937,15.5124653739612,5.89512535001411,0,404.98469543457,404.765533447266,0.440318089300406
+9573,312774,3793398,312874,3793298,72,95,55.9556786703601,0.181759610805862,18.4821323037236,0.583587011669203,17.3185840692665,0.0348741162862271,0.307479224376731,30.7479224376731,2,91.9215836286799,0.84838,26.3157894736842,6.03610771196383,0,405.182001749674,404.775207519531,0.719376679485996
+9574,312774,3793298,312874,3793198,73,95,56.2326869806094,0.273989116289035,28.1315603195111,0.778972746331237,31.1734513246797,0.0377232687842227,0.340720221606648,34.0720221606648,3,92.5725884687886,0.8435580510231,29.6398891966759,6.87111841372358,0,405.195077896118,404.6298828125,0.96663784939215
+9575,312774,3793198,312874,3793098,74,95,53.9473684210526,0.276688516449518,27.289654830803,0.816425120772947,36.3690265454597,0.0340532241680577,0.289473684210526,28.9473684210526,3,92.6278559299055,0.844407221291643,26.8421052631579,10.0030023791573,0,405.369155883789,404.452087402344,1.38721534981788
+9576,312774,3793098,312874,3792998,75,95,12.4653739612188,0.0607365036108698,10.4918217829079,0.673669467787115,25.9778758441098,0.0279180672121463,0.155124653739612,15.5124653739612,4,84.7259230363814,0.84137231705256,13.0193905817175,35.6007205588477,5.19557523727417,406.998159408569,404.909088134766,1.88483843443993
+9577,312774,3792998,312874,3792898,76,95,13.5734072022161,0.132270607863672,27.7230052472665,0.639455782312925,NA,0.0250679617136061,0.157894736842105,15.7894736842105,1,91.5743806754245,0.745535714285714,15.7894736842105,11.5238399756582,0,408.854555765788,408.535583496094,0.437591486025212
+9578,312774,3792898,312874,3792798,77,95,42.6592797783933,0.415707624714398,29.7526671461653,0.785714285714286,NA,0.0255976715475841,0.238227146814404,23.8227146814404,3,88.1384431102178,0.682543077837195,15.2354570637119,9.00112240259037,0,409.004301071167,408.708404541016,0.387610316637256
+9579,312774,3792798,312874,3792698,78,95,50,0.256443015245895,26.5047452053557,0.750147009408602,31.1734513246797,0.0344122381938824,0.297368421052632,29.7368421052632,2,94.3887900447158,0.888374825585665,28.9473684210526,5.9297553290308,0,409.421038309733,409.045166015625,0.749569191445473
+9580,312774,3792698,312874,3792598,79,95,48.4764542936288,0.236197514042271,26.4153473389509,0.773963801399825,36.3690265454597,0.0391553258561236,0.326869806094183,32.6869806094183,2,95.3074312624911,0.888927348948117,32.409972299169,6.06444134954679,0,410.850574493408,409.711273193359,1.2675485171345
+9581,312774,3792598,312874,3792498,80,95,43.213296398892,0.105276606258841,14.2178805384083,0.436591544374563,18.1845132727299,0.0470196037372501,0.437673130193906,43.7673130193906,3,93.6517525329065,0.779242398505181,36.5650969529086,6.18765041797976,0,412.510576883952,411.728607177734,0.883338091009552
+9582,312774,3792498,312874,3792398,81,95,52.3545706371191,0.170062210110435,24.6069588676487,0.718115395906764,17.3185840692665,0.0355570383490933,0.393351800554017,39.3351800554017,2,92.9122257435126,0.752739726027397,22.7146814404432,6.34733572140546,0,413.371963500977,412.927215576172,0.893650933582383
+9583,312774,3792398,312874,3792298,82,95,47.8947368421053,0.163763609735975,27.3421297380385,0.685378035988058,19.0504424761932,0.038760811304191,0.355263157894737,35.5263157894737,4,90.0476947911428,0.766716442674631,26.0526315789474,5.90104192804407,0,414.19574991862,413.483795166016,1.17359221655317
+9584,312774,3792298,312874,3792198,83,95,55.6786703601108,0.135644858064276,19.1143417209722,0.684745475113122,10.3911503896019,0.0259052757660722,0.232686980609418,23.2686980609418,2,89.1044516047883,0.772587405810094,18.005540166205,5.99262279555911,0,414.821434020996,414.01904296875,0.966580825973676
+9585,312774,3792198,312874,3792098,84,95,36.8421052631579,0.0718040442688505,14.1139773204354,0.604328883227388,20.0342520858569,0.0126841788427998,0.0831024930747922,8.31024930747922,6,67.3452169637449,0.465811702324434,3.32409972299169,9.36730281511942,5.19557523727417,414.122020721436,412.598236083984,1.24853415950924
+9586,312774,3792098,312874,3791998,85,95,29.0858725761773,0.0472395028084543,10.2766436611445,0.589090769157905,14.3711827443375,0.0185286353858485,0.0138504155124654,1.38504155124654,3,28.2835258677296,0.391573033707865,0.831024930747922,25.0126088142395,5.19557523727417,415.41734568278,414.681213378906,0.947474649914826
+9587,312774,3791998,312874,3791898,86,95,35.5263157894737,0.12147300722174,15.3174425279337,0.496938470728793,16.4298513483366,0.0210332454757774,0.0894736842105263,8.94736842105263,3,79.6939200106747,0.764657308009909,6.31578947368421,13.4520121602451,0,415.950290679932,415.671997070312,0.248711774843304
+9588,312774,3791898,312874,3791798,87,95,32.1329639889197,0.104376806205347,18.3299310994819,0.603457653457653,18.136256676654,0.023003407548826,0.160664819944598,16.0664819944598,4,83.3417510173156,0.773630363036304,10.803324099723,4.92302407889531,0,415.711148579915,415.164459228516,0.471022444802818
+9589,312774,3791798,312874,3791698,88,95,28.808864265928,0.0701844041725607,9.24496699429556,0.411838624338624,13.3793375094594,0.0364591360134569,0.301939058171745,30.1939058171745,6,88.3498968278618,0.803662073966643,24.6537396121884,10.3016395962566,0,414.641618728638,414.092163085938,0.601715347788829
+9590,312774,3791698,312874,3791598,89,95,34.0720221606648,0.0830065549348554,12.0325987379775,0.47218253968254,22.0811946363568,0.0300229451561405,0.221606648199446,22.1606648199446,7,81.6474940215248,0.728585033331662,13.8504155124654,6.82683494091034,0,414.363800048828,414.133666992188,0.235969886557476
+9591,312774,3791598,312874,3791498,90,95,40.7894736842105,0.139469008291627,18.095340663815,0.672413793103448,12.9406814094014,0.0315941399479542,0.281578947368421,28.1578947368421,4,90.2808909221772,0.834120974017347,24.4736842105263,4.52038009144435,0,414.655130386353,414.250671386719,0.436038054008327
+9592,312774,3791498,312874,3791398,91,95,45.4293628808864,0.221350813159614,30.3686858664599,0.719433836455113,15.5867256623399,0.0325552837648174,0.296398891966759,29.6398891966759,7,87.8852848645973,0.720166455876953,22.4376731301939,4.90625825775004,0,415.41682434082,414.851318359375,0.640121211575581
+9593,312774,3791398,312874,3791298,92,95,50.6925207756233,0.246995114684204,26.7353482319609,0.797214784160987,10.3911504415599,0.0279879590409029,0.229916897506925,22.9916897506925,4,86.8135803108052,0.796823765477414,17.4515235457064,3.63509158628533,0,416.344341278076,415.677520751953,0.633384262471495
+9594,312774,3791298,312874,3791198,93,95,51.8005540166205,0.25239391500517,20.3407213707485,0.714404761904762,15.5867256623399,0.0337167544400228,0.337950138504155,33.7950138504155,3,90.7335282117942,0.733448190991878,22.7146814404432,3.90126795846908,0,417.156750996908,416.740020751953,0.504545728635475
+9595,312774,3791198,312874,3791098,94,95,37.3684210526316,0.1916574113943,26.3401159289937,0.7375,10.3911504415599,0.0486246042276769,0.447368421052632,44.7368421052632,3,95.6577409481556,0.762969724631066,42.1052631578947,6.07151589674108,0,418.080793380737,417.594696044922,0.675894195787029
+9596,312774,3791098,312874,3790998,95,95,33.7950138504155,0.164663409789469,24.1083913097426,0.736387686387686,10.3911504415599,0.0392090983363852,0.371191135734072,37.1191135734072,3,95.12040353724,0.797952625117354,35.7340720221607,6.23681982239681,0,419.062469482422,418.341796875,0.827819879530023
+9597,312774,3790998,312874,3790898,96,95,34.0720221606648,0.0664052439478843,9.23280552274513,0.593808293343177,19.1229631516663,0.0416649351399305,0.426592797783933,42.6592797783933,3,94.9348244465773,0.83361499462283,39.612188365651,4.83545430294879,0,419.710550308228,418.486907958984,1.26908731397823
+9598,312774,3790898,312874,3790798,97,95,36.8421052631579,0.0897550553360631,11.4965275118386,0.438763868393726,11.9966714181295,0.0333503317490082,0.39612188365651,39.612188365651,1,96.7285565610363,0.835667763849009,39.612188365651,8.9471692205309,0,420.813540140788,418.657836914062,2.17006865077578
+9599,312774,3790798,312874,3790698,98,95,39.7368421052632,0.135869808077649,17.7676491510355,0.640708602598847,12.940681455874,0.037696128080815,0.336842105263158,33.6842105263158,4,90.3282457354882,0.715239457728728,23.1578947368421,7.83819305151701,0,422.884866714478,420.517395019531,1.95586262963825
+9600,312774,3790698,312874,3790598,99,95,22.9916897506925,0.112025106660049,16.6571753243639,0.634444444444444,15.5867256623399,0.0372202435213247,0.388888888888889,38.8888888888889,2,95.9673270433773,0.824192336589031,38.3040935672515,17.4304045519434,0,422.895986557007,421.082580566406,1.64664709013404
+9601,312874,3800598,312974,3800498,0,96,62.8808864265928,0.204254612143221,24.2364633190107,0.648861648196312,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,390.102111816406,389.416046142578,0.689519101822897
+9602,312874,3800498,312974,3800398,1,96,50.7894736842105,0.173661410324413,20.3013572694628,0.630992329817833,12.1230088484866,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.048156738281,390.611206054688,0.589723517891672
+9603,312874,3800398,312974,3800298,2,96,16.6204986149584,0.0809820048144931,18.909654192138,0.614285714285714,10.3911504415599,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.718233744303,391.436767578125,0.353213886160857
+9604,312874,3800298,312974,3800198,3,96,19.9445983379501,0.0388713623109567,10.3833045039952,0.439885057471264,12.7146822357968,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.977393256293,391.835357666016,0.202787741992924
+9605,312874,3800198,312974,3800098,4,96,24.0997229916898,0.0782826046540099,19.7437227022531,0.567800925925926,12.1230088484866,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.21641031901,392.021057128906,0.244980782006557
+9606,312874,3800098,312974,3799998,5,96,18.4210526315789,0.0629860037446057,17.9381567358402,0.376724137931034,12.1230088484866,0.00906556078859323,0.105263157894737,10.5263157894737,4,57.2539673769526,0.580882352941177,3.94736842105263,32.1814085841179,10.3911504745483,392.104139539931,391.848999023438,0.477158862388053
+9607,312874,3799998,312974,3799898,6,96,33.2409972299169,0.0809820048144931,13.816593509941,0.562944139194139,10.6977776693302,-0.000974239101428655,0.0304709141274238,3.04709141274238,1,73.7293580723472,1,3.04709141274238,35.8797354264693,31.1734504699707,392.180699666341,391.841613769531,0.682744767004248
+9608,312874,3799898,312974,3799798,7,96,47.3684210526316,0.230798713721305,27.4191206802128,0.732630008525149,10.3911504415599,-0.00255612231542065,0.0110803324099723,1.10803324099723,2,34.6192969379535,0.494397759103641,0.831024930747922,9.71404838562012,5.19557523727417,393.003685845269,392.432250976562,0.815798351511502
+9609,312874,3799798,312974,3799698,8,96,28.808864265928,0.0935792055634142,20.0631976607308,0.595374737945493,10.3911504415599,0.0115922266943049,0.038781163434903,3.8781163434903,3,64.6111086803567,0.687896253602305,3.04709141274238,18.7069658211299,5.19557523727417,393.538126627604,393.151031494141,0.637913935325614
+9610,312874,3799698,312974,3799598,9,96,22.1052631578947,0.0755832044935268,20.8962929946189,0.505463363796697,12.1230088484866,0.012465618241329,0.0236842105263158,2.36842105263158,2,55.8915688410153,0.573225516621743,1.31578947368421,11.3704490131802,5.19557523727417,393.807403564453,393.114044189453,0.92227103125135
+9611,312874,3799598,312974,3799498,10,96,26.8698060941828,0.13092090778343,19.7066805936554,0.650735294117647,10.3911504415599,0.00863188940157844,0,0,0,NA,NA,0,NA,NA,395.14478302002,394.636108398438,0.813347222099547
+9612,312874,3799498,312974,3799398,11,96,31.5789473684211,0.102577206098358,19.59700401436,0.617071976544755,12.1230088484866,0.0141143376194427,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,5.19557523727417,5.19557523727417,395.339243570964,394.848052978516,0.64848011391769
+9613,312874,3799398,312974,3799298,12,96,4.98614958448753,0.0161964009628986,4.35332711187457,0.345679012345679,34.6989412902916,0.0169491514550581,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,33.2679138183594,33.2679138183594,394.64491780599,394.119232177734,0.834333677362702
+9614,312874,3799298,312974,3799198,13,96,22.1052631578947,0.0755832044935268,18.5397321173898,0.477006911217438,17.3185840692665,0.0176000379401222,0.105263157894737,10.5263157894737,3,80.415644929093,0.79982440737489,6.31578947368421,31.6237951755524,20.7823009490967,394.073623657227,393.717803955078,0.580930065997701
+9615,312874,3799198,312974,3799098,14,96,19.3905817174515,0.0944790056169086,25.6767972181809,0.554002192982456,15.5867256623399,0.0172255439955384,0.0664819944598338,6.64819944598338,5,62.0455095153494,0.605341246290801,3.04709141274238,26.7228520512581,0,394.128651936849,393.752685546875,0.595291236526753
+9616,312874,3799098,312974,3798998,15,96,32.6869806094183,0.0530882031561677,9.58860508712898,0.414070767195767,16.4526547618872,0.0176454235372647,0.0221606648199446,2.21606648199446,4,36.1211634414231,0.386402266288952,1.10803324099723,10.6601600646973,5.19557523727417,394.215881347656,393.814331054688,0.646845901701045
+9617,312874,3798998,312974,3798898,16,96,31.8559556786704,0.103477006151852,26.2509691066775,0.558279467777676,10.3911504415599,0.0191759799835333,0.0664819944598338,6.64819944598338,4,65.2555662110169,0.63353115727003,2.49307479224377,6.41674888134003,0,394.430786132812,394.255187988281,0.405808920788242
+9618,312874,3798898,312974,3798798,17,96,40.5263157894737,0.207853812357199,27.1088163517297,0.707818930041152,15.5867256623399,0.0193718570955465,0.118421052631579,11.8421052631579,4,78.1015484357349,0.671641791044776,5.52631578947368,6.16214051776462,0,394.202959696452,393.980987548828,0.293436974184628
+9619,312874,3798798,312974,3798698,18,96,46.2603878116344,0.0643999752572397,9.76590167603209,0.396472404536921,13.5352660522201,0.0265072655591242,0.157894736842105,15.7894736842105,4,85.4089014232018,0.672831632653061,12.1883656509695,3.46371681648388,0,393.991702609592,393.702087402344,0.350053521596002
+9620,312874,3798698,312974,3798598,19,96,67.8670360110803,0.22045101310612,25.9427010800917,0.748127982703615,12.1230088484866,0.0266442787871403,0.0858725761772853,8.58725761772853,7,58.5507443522754,0.58430303030303,2.21606648199446,2.58340987851543,0,394.339561462402,393.733154296875,0.70204130213456
+9621,312874,3798598,312974,3798498,20,96,37.3961218836565,0.0607365036108698,10.9314832523821,0.520096801346801,14.7207964069185,0.0266203744462488,0.127423822714681,12.7423822714681,5,81.4133255306417,0.823687423687424,11.0803324099723,2.41867734038312,0,395.065182156033,394.963012695312,0.263734781177879
+9622,312874,3798498,312974,3798398,21,96,55,0.141043658385242,24.0907696149075,0.612056623931624,10.3911504415599,0.0221748038831337,0.0526315789473684,5.26315789473684,6,52.8751384691105,0.523297491039426,2.10526315789474,2.85756638050079,0,394.923118591309,394.635040283203,0.334843667755004
+9623,312874,3798398,312974,3798298,22,96,39.8891966759003,0.0971784057773917,15.0984371924217,0.494654347143754,12.9889380519499,0.0240425105221019,0.132963988919668,13.2963988919668,6,72.7517798131716,0.634302189667264,6.64819944598338,5.42601957917213,0,394.529476589627,394.220916748047,0.443352206117642
+9624,312874,3798298,312974,3798198,23,96,29.0858725761773,0.0944790056169086,17.1910710047213,0.675206456456456,16.7243041674623,0.0329163637822636,0.174515235457064,17.4515235457064,5,81.0086028801802,0.779743746186699,13.0193905817175,19.8943484548538,0,394.360237121582,394.1494140625,0.385230476551167
+9625,312874,3798198,312974,3798098,24,96,31.0249307479224,0.0755832044935268,9.998587293636,0.431392235609103,24.6789822077783,0.0134542556941123,0.0443213296398892,4.43213296398892,2,68.9688857755306,0.564009661835749,2.77008310249307,1.89262697100639,0,394.450897216797,394.179809570312,0.348432356398415
+9626,312874,3798098,312974,3797998,25,96,35,0.0897550553360631,16.2395515350206,0.42219658462636,14.2878318571449,0.0278655648255249,0.223684210526316,22.3684210526316,4,88.8070560438587,0.778201818385902,18.9473684210526,6.41546065947589,0,394.699689229329,394.408111572266,0.311332205086757
+9627,312874,3797998,312974,3797898,26,96,31.8559556786704,0.103477006151852,9.7921009822146,0.322420634920635,27.7097345108264,0.0268190478218508,0.279778393351801,27.9778393351801,3,92.6300361204551,0.80822354441139,26.0387811634349,9.42619815675339,0,395.245618184408,394.974578857422,0.353212066041012
+9628,312874,3797898,312974,3797798,27,96,38.2271468144044,0.124172407382223,15.8450329210065,0.601457009962165,17.3185839653505,0.0277722899179965,0.204986149584488,20.4986149584488,6,76.8038267186435,0.641999463950683,6.37119113573407,8.28351890718615,0,395.894134521484,395.685333251953,0.459003089487084
+9629,312874,3797798,312974,3797698,28,96,36.2880886426593,0.353621421023286,33.2114822053942,0.798982188295165,NA,0.024482699452288,0.282548476454294,28.2548476454294,3,92.8193106439371,0.84005316792202,26.3157894736842,4.59090143559026,0,396.726496378581,396.226806640625,0.484472194781965
+9630,312874,3797698,312974,3797598,29,96,27.1052631578947,0.0926794055099198,16.608105407707,0.672259811780477,16.4043981831307,0.0183923983891442,0.118421052631579,11.8421052631579,3,84.5404937378454,0.82089552238806,10.5263157894737,3.99438778559367,0,397.540513780382,397.1650390625,0.561151974676913
+9631,312874,3797598,312974,3797498,30,96,48.1994459833795,0.117423906981015,13.9745044454666,0.714849290780142,11.0044048971005,0.0322141487976651,0.282548476454294,28.2548476454294,4,88.2061159137116,0.794354073042597,22.1606648199446,5.1912371598038,0,398.690582275391,397.789794921875,0.836014625794904
+9632,312874,3797498,312974,3797398,31,96,12.1883656509695,0.0593868035306282,12.6826303036026,0.651828847481021,10.3911503376439,0.0190788584095622,0.132963988919668,13.2963988919668,2,87.1051553478881,0.76088989324398,11.9113573407202,10.3283984760443,0,399.778754340278,399.392761230469,0.522349847585805
+9633,312874,3797398,312974,3797298,32,96,14.6814404432133,0.0476894028352015,11.4916026484454,0.541156045751634,10.7999866759763,0.0144040199359695,0.0914127423822715,9.14127423822715,3,78.48711046002,0.714656729900632,6.92520775623269,10.1546643719529,0,400.694913228353,400.164031982422,0.739524131984077
+9634,312874,3797298,312974,3797198,33,96,30,0.153865809147537,16.8335559905521,0.702462553947703,51.9557520207508,0.0120950315051136,0.115789473684211,11.5789473684211,2,86.5534543313549,0.862451737451737,10.7894736842105,9.71825339577415,0,401.973415798611,401.427185058594,0.77601257002934
+9635,312874,3797198,312974,3797098,34,96,17.4515235457064,0.0850311050552177,17.1066748947991,0.650996376811594,58.0882967632057,0.0128060458934425,0.0415512465373961,4.15512465373961,4,52.0065956257307,0.525748817656332,1.66204986149584,19.471156279246,5.19557523727417,403.386245727539,402.53662109375,1.05380175416999
+9636,312874,3797098,312974,3796998,35,96,22.9916897506925,0.0373417022200162,7.80464388736357,0.49581783956784,12.7362632691727,0.00941151418962446,0.0304709141274238,3.04709141274238,2,64.4435673397843,0.724952380952381,2.49307479224377,11.3755984739824,5.19557523727417,404.827643500434,404.001251220703,1.1609956741377
+9637,312874,3796998,312974,3796898,36,96,24.6537396121884,0.0800822047609987,8.96729754773808,0.32962962962963,10.3911503722826,0.00694193064116418,0.0886426592797784,8.86426592797784,2,84.3142311899249,0.746785129763853,8.31024930747922,10.0464653521776,0,405.998631795247,404.906829833984,1.36498500226081
+9638,312874,3796898,312974,3796798,37,96,13.9473684210526,0.0476894028352015,10.9024692033703,0.457317073170732,12.1230087792092,0.0144192172545062,0.121052631578947,12.1052631578947,2,87.0857979492804,0.854137878089974,11.3157894736842,11.9341681107231,5.19557523727417,406.765262179905,405.967346191406,1.43563213314141
+9639,312874,3796798,312974,3796698,38,96,25.7617728531856,0.125522107462464,24.4011196761481,0.633064516129032,10.3911504415599,0.0223311969771039,0.152354570637119,15.2354570637119,4,81.593527153935,0.813725490196078,10.803324099723,4.42802293950861,0,407.949783325195,407.023345947266,1.0566770445934
+9640,312874,3796698,312974,3796598,39,96,4.70914127423823,0.0229449013641064,6.49177979266219,0.427884615384615,58.0882963170683,0.0200924929279374,0.0775623268698061,7.75623268698061,7,54.9874477851541,0.518184851518185,1.93905817174515,27.7101465633937,7.34765291213989,408.058865865072,407.498931884766,0.614092020336751
+9641,312874,3796598,312974,3796498,40,96,8.31024930747922,0.0809820048144931,27.0611273037275,0.511111111111111,NA,0.0140618130382521,0.110803324099723,11.0803324099723,2,84.4278669488042,0.88250337099549,9.69529085872576,11.080295920372,5.19557523727417,406.7124871148,405.990356445312,1.22964470666738
+9642,312874,3796498,312974,3796398,41,96,8.03324099722992,0.0782826046540099,20.4031087059748,0.557471264367816,NA,0.0172150378684491,0.105263157894737,10.5263157894737,4,77.6364261427375,0.680672268907563,7.20221606648199,16.4412340741409,5.19557523727417,405.320645650228,404.822662353516,0.645255871657855
+9643,312874,3796398,312974,3796298,42,96,3.15789473684211,0.0161964009628986,5.36485303789153,0.308333333333333,62.3469020258635,0.0136788467255476,0.0578947368421053,5.78947368421053,4,61.1773015693606,0.656588892540256,2.10526315789474,25.9452903487466,10.3911504745483,405.319427490234,404.4150390625,1.14634548150868
+9644,312874,3796298,312974,3796198,43,96,8.03324099722992,0.0195706511635025,6.39095600526196,0.359457671957672,25.9778760259628,0.0109396883117395,0.0443213296398892,4.43213296398892,3,61.9584653237011,0.651207729468599,2.21606648199446,16.3258247971535,10.3911504745483,404.567563374837,403.617095947266,1.50483056929467
+9645,312874,3796198,312974,3796098,44,96,0,NA,NA,NA,NA,0.0118115700030239,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,66.3576030731201,59.2386741638184,403.67475382487,403.222808837891,1.11048836006786
+9646,312874,3796098,312974,3795998,45,96,4.15512465373961,0.0404910024072465,10.9917140795739,0.522222222222222,NA,0.0111892952491844,0.0110803324099723,1.10803324099723,1,52.7777777777778,1,1.10803324099723,38.4437971115112,34.8529777526855,403.289545694987,403.053771972656,0.642056585476805
+9647,312874,3795998,312974,3795898,46,96,32.8947368421053,0.168712510030194,16.9217782380769,0.66374269005848,15.5867255064659,0.00921781574365205,0.0605263157894737,6.05263157894737,2,75.3000859475324,0.733893557422969,4.21052631578947,9.37561383454696,0,403.775377061632,403.168609619141,1.00149734315676
+9648,312874,3795898,312974,3795798,47,96,22.9916897506925,0.224050213320097,27.6265393709054,0.791164658634538,NA,0.0221558873305195,0.110803324099723,11.0803324099723,4,77.4705181055241,0.68108057841633,5.81717451523546,15.4322456359863,0,404.600514729818,403.800140380859,0.977256836066149
+9649,312874,3795798,312974,3795698,48,96,8.86426592797784,0.0431904025677296,8.66815781220606,0.515432098765432,15.5867256623399,0.0243575911168072,0.110803324099723,11.0803324099723,6,66.1104258990018,0.59715441484168,2.77008310249307,18.2000845193863,0,405.122585720486,404.748504638672,0.874851764554356
+9650,312874,3795698,312974,3795598,49,96,27.7008310249307,0.0674850040120775,10.9941148596126,0.559507678410117,19.7983439367438,0.0338181617716803,0.25207756232687,25.207756232687,5,85.5398432545298,0.620347508001829,13.0193905817175,11.1133501870292,0,405.158294677734,404.603546142578,0.75609958381092
+9651,312874,3795598,312974,3795498,50,96,39.4736842105263,0.101227506018116,16.0812411322499,0.493320327015979,14.4986132157324,0.0275978148449978,0.155263157894737,15.5263157894737,6,80.2725158382973,0.651823346160894,10.2631578947368,8.18406543085131,0,404.618255615234,404.354766845703,0.478318220600435
+9652,312874,3795498,312974,3795398,51,96,39.3351800554017,0.3833148227886,32.8085827458034,0.806338028169014,NA,0.0176807792461962,0.102493074792244,10.2493074792244,2,83.5541429915826,0.780813600485732,8.31024930747922,7.97446953283774,0,404.453453063965,404.19873046875,0.426045667148256
+9653,312874,3795398,312974,3795298,52,96,15.2354570637119,0.0371167522066427,7.13191983351148,0.394587486157254,25.1005451439516,0.0270486645657863,0.127423822714681,12.7423822714681,2,87.1466847350091,0.853072853072853,11.6343490304709,7.21876462646153,0,404.443868001302,404.212371826172,0.310042388908033
+9654,312874,3795298,312974,3795198,53,96,1.66204986149584,0.00809820048144931,3.11734510129318,0.133333333333333,10.3911504415599,0.0203999255448547,0.0193905817174515,1.93905817174515,2,51.7587727223119,0.617584745762712,1.38504155124654,14.3184618268694,5.19557523727417,405.357383728027,404.526031494141,0.74704155292102
+9655,312874,3795198,312974,3795098,54,96,8.15789473684211,0.0418407024874881,10.9117553152934,0.562121212121212,11.6176593526411,0.0214805748813409,0.068421052631579,6.8421052631579,5,66.983887841662,0.659638969271049,4.47368421052632,35.041484777744,7.34765291213989,405.816289265951,404.520812988281,0.93304024266471
+9656,312874,3795098,312974,3794998,55,96,10.5263157894737,0.0256443015245895,5.48738819864191,0.204656862745098,23.6542882009424,0.0159658269361158,0.0249307479224377,2.49307479224377,3,48.4679161904122,0.658143939393939,1.66204986149584,19.6043331358168,0,404.185129801432,403.614013671875,1.16266836093957
+9657,312874,3794998,312974,3794898,56,96,6.92520775623269,0.0134970008024155,4.69252829628735,0.301388888888889,19.7431857724576,0.0185987049436559,0.0221606648199446,2.21606648199446,3,44.2126432365498,0.488668555240793,1.10803324099723,22.3959392905235,0,402.737347920736,401.733489990234,0.811985862631233
+9658,312874,3794898,312974,3794798,57,96,25.207756232687,0.0491290829207925,8.71814447319726,0.380062645687646,17.1164442430448,0.0154512882542912,0.0609418282548476,6.09418282548476,4,60.8221534266774,0.561513100815548,2.21606648199446,9.47696308656172,5.19557523727417,401.82709757487,401.353149414062,0.857635760857469
+9659,312874,3794798,312974,3794698,58,96,19.4736842105263,0.0499389029689374,11.7724253760811,0.434863339275104,28.8608286441968,0.0186580179972273,0.0789473684210526,7.89473684210526,5,65.7458893894898,0.53469387755102,2.63157894736842,9.70106369654338,0,401.559405008952,401.033966064453,0.708567599640932
+9660,312874,3794698,312974,3794598,59,96,30.1939058171745,0.098078205830886,16.3096443990075,0.690916110033757,19.221930249862,0.0151017931733945,0.074792243767313,7.4792243767313,5,64.2169646554169,0.622963375574433,3.04709141274238,7.56255674362183,0,401.566565619575,401.210510253906,0.90259886543621
+9661,312874,3794598,312974,3794498,60,96,46.814404432133,0.152066209040548,23.2255353410982,0.706568887728308,10.3911504415599,0.0128963808328738,0.0443213296398892,4.43213296398892,3,61.8687874600599,0.651207729468599,2.49307479224377,6.51541212201118,5.19557523727417,401.915606180827,401.331359863281,1.16267356637445
+9662,312874,3794498,312974,3794398,61,96,29.9168975069252,0.058307043466435,11.4962101437871,0.558194631878842,13.5084954805035,0.0126334016336574,0.0692520775623269,6.92520775623269,4,66.833510311951,0.677678571428571,3.04709141274238,16.4151090431213,5.19557523727417,402.215928819444,401.597930908203,1.25011051076667
+9663,312874,3794398,312974,3794298,62,96,17.1052631578947,0.175461010431402,26.7420424974333,0.730769230769231,NA,0.0171588525741658,0.0736842105263158,7.36842105263158,5,63.0404922400274,0.688131313131313,2.89473684210526,33.079602769443,0,402.213884989421,401.544738769531,1.2049753047703
+9664,312874,3794298,312974,3794198,63,96,14.6814404432133,0.143068208505604,24.7258647176587,0.713836477987421,NA,0.0124864904509173,0.0304709141274238,3.04709141274238,1,73.7293580723472,0.931238095238095,3.04709141274238,57.0098363702947,44.6940307617188,401.983618842231,401.364044189453,0.862204454595723
+9665,312874,3794198,312974,3794098,64,96,9.41828254847645,0.0305932018188085,7.69055193615278,0.416666666666667,53.6876104242136,0.0141684031637609,0,0,0,NA,NA,0,NA,NA,401.468866984049,401.189727783203,0.415013674955314
+9666,312874,3794098,312974,3793998,65,96,5.54016620498615,0.026994001604831,6.7981849384402,0.479166666666667,20.7823006752878,0.015831060522788,0.074792243767313,7.4792243767313,2,81.5785655975614,0.824049575268069,6.92520775623269,5.89799420038859,0,401.157263861762,401.0390625,0.176131100021093
+9667,312874,3793998,312974,3793898,66,96,11.0526315789474,0.0566874033701451,12.652859213348,0.60136217948718,31.1734513246797,0.0196511754989364,0.0868421052631579,8.68421052631579,4,70.808339077427,0.675525669761981,4.47368421052632,17.6489293503039,5.19557523727417,401.101989746094,401.015502929688,0.15544363057117
+9668,312874,3793898,312974,3793798,67,96,4.98614958448753,0.0485892028886958,9.12648974236013,0.666666666666667,NA,0.0214083499237337,0.0554016620498615,5.54016620498615,3,67.5302852284346,0.692649702014947,3.04709141274238,13.2689398050308,0,401.661712646484,401.270263671875,0.639226688586607
+9669,312874,3793798,312974,3793698,68,96,16.0664819944598,0.0782826046540099,12.6345737354119,0.374269005847953,25.9778761038998,0.0290144883090413,0.149584487534626,14.9584487534626,1,91.1912638540493,0.860915554621554,14.9584487534626,12.0349014246905,5.19557523727417,402.92214457194,402.075225830078,1.06522921300688
+9670,312874,3793698,312974,3793598,69,96,19.3905817174515,0.0629860037446057,10.7824105926208,0.45394392033543,16.4043982697274,0.0259579190743677,0.18005540166205,18.005540166205,4,87.8618412426967,0.74097105955513,15.7894736842105,9.11720278813289,0,404.685368855794,403.571990966797,0.838416889261754
+9671,312874,3793598,312974,3793498,70,96,29.4736842105263,0.151166408987054,21.3585110065289,0.727048970719857,15.5867256623399,0.025416959706988,0.163157894736842,16.3157894736842,6,75.3889817542412,0.6680642907058,5.78947368421053,19.6939272111462,0,404.894612630208,404.735565185547,0.318199296172691
+9672,312874,3793498,312974,3793398,71,96,44.3213296398892,0.431904025677296,40.7771538666569,0.713541666666667,NA,0.0282525485743266,0.193905817174515,19.3905817174515,6,76.8036099898471,0.667169558293521,6.92520775623269,10.6406648431505,0,404.842074076335,404.744537353516,0.17752580852081
+9673,312874,3793398,312974,3793298,72,96,18.2825484764543,0.0593868035306282,9.49383739431341,0.423571876961707,27.1839143472402,0.0400855163260886,0.346260387811634,34.6260387811634,3,90.6788926893309,0.770887777197043,21.606648199446,14.7224036331177,0,404.799346923828,404.740051269531,0.126773690366193
+9674,312874,3793298,312974,3793198,73,96,0,NA,NA,NA,NA,0.0246286390845606,0.0581717451523546,5.81717451523546,4,65.0971825988835,0.568658088235294,3.32409972299169,50.8589019775391,16.4298515319824,404.986228942871,404.783142089844,0.414615447668317
+9675,312874,3793198,312974,3793098,74,96,12.8947368421053,0.044090202621224,8.12985444213728,0.349382716049383,26.6736573886809,0.0201584049749439,0.0526315789473684,5.26315789473684,5,57.5111167000816,0.557347670250896,2.36842105263158,16.5184016942978,0,405.546112060547,405.018127441406,0.87938168961592
+9676,312874,3793098,312974,3792998,75,96,2.77008310249307,0.0134970008024155,4.78065711254086,0.325396825396825,62.3469020258635,0.0186437028722623,0.0304709141274238,3.04709141274238,4,46.8677942155493,0.518666666666667,1.38504155124654,30.5669478069652,0,406.967770894368,405.681121826172,1.4753102088843
+9677,312874,3792998,312974,3792898,76,96,1.66204986149584,0.0053988003209662,2.59778760173031,0.166666666666667,84.1949616457257,0.0187017639584251,0.03601108033241,3.601108033241,3,62.1708434767973,0.538952745849298,2.49307479224377,24.3117035719065,7.34765291213989,408.571194118924,408.059387207031,0.879833977654232
+9678,312874,3792898,312974,3792798,77,96,0,NA,NA,NA,NA,0.0199920908110211,0.0581717451523546,5.81717451523546,4,59.443848610103,0.601838235294118,1.66204986149584,32.2192535854521,5.19557523727417,409.614255269368,408.7509765625,0.985946202726887
+9679,312874,3792798,312974,3792698,78,96,1.84210526315789,0.0188958011233817,6.89839621842625,0.404761904761905,NA,0.0176334903691608,0.110526315789474,11.0526315789474,2,82.288848733128,0.809984165347112,5.78947368421053,24.1998804637364,10.3911504745483,410.476030137804,409.413330078125,1.7922857164694
+9680,312874,3792698,312974,3792598,79,96,7.75623268698061,0.0755832044935268,11.8157873232258,0.726190476190476,NA,0.00641840761862798,0.038781163434903,3.8781163434903,3,59.435000766849,0.687896253602305,2.21606648199446,31.2524510792324,10.3911504745483,412.127039591471,410.823669433594,1.72422483347901
+9681,312874,3792598,312974,3792498,80,96,7.20221606648199,0.0350922020862803,7.03716717410157,0.4375,58.0882968607982,-0.00699897997517817,0.124653739612188,12.4653739612188,3,85.9744945140926,0.849683544303798,11.6343490304709,20.1904209666782,5.19557523727417,413.592753092448,412.129791259766,1.79375723993297
+9682,312874,3792498,312974,3792398,81,96,0,NA,NA,NA,NA,0.0356544158489984,0.224376731301939,22.4376731301939,7,82.8458956264178,0.650818452380952,11.0803324099723,41.3252289442368,7.34765291213989,415.138582865397,413.939117431641,1.77660427656814
+9683,312874,3792398,312974,3792298,82,96,1.31578947368421,0.0134970008024155,6.23469020258635,0.266666666666667,NA,0.0282149502887621,0.155263157894737,15.5263157894737,4,81.3242769317816,0.651823346160894,8.1578947368421,25.5107596203432,5.19557523727417,415.761850992839,414.554748535156,1.904861116115
+9684,312874,3792298,312974,3792198,83,96,0,NA,NA,NA,NA,0.0209730438912017,0.0692520775623269,6.92520775623269,3,80.4940341273027,0.570238095238095,6.37119113573407,14.5476106643677,10.3911504745483,415.98055267334,414.962371826172,1.31621267346712
+9685,312874,3792198,312974,3792098,84,96,18.005540166205,0.0584870034771339,9.26282333942784,0.458333333333333,25.5801192854662,0.0205738761262656,0.0775623268698061,7.75623268698061,3,80.2307064618663,0.590457123790457,6.64819944598338,13.4557707139424,5.19557523727417,415.660196940104,415.085998535156,0.727097266111495
+9686,312874,3792098,312974,3791998,85,96,2.21606648199446,0.0107976006419324,3.03128058944175,0.226190476190476,14.6953058096335,0.0238426112386216,0.0637119113573407,6.37119113573407,4,68.9352336050265,0.643984220907298,4.43213296398892,22.7500458592954,10.3911504745483,415.519215901693,415.277801513672,0.247502623711265
+9687,312874,3791998,312974,3791898,86,96,0,NA,NA,NA,NA,0.0184034393208046,0.0315789473684211,3.15789473684211,7,31.5057414941329,0.392583120204604,1.57894736842105,37.8854724566142,15.5867252349854,415.857844034831,415.4765625,0.486685102705232
+9688,312874,3791898,312974,3791798,87,96,32.1329639889197,0.15656520930802,16.308815220155,0.567708333333333,10.3911504415599,0.02316927186766,0.0941828254847645,9.41828254847645,2,81.6625416344376,0.842289209261686,7.20221606648199,11.0335610614103,0,415.318793402778,414.880065917969,0.532669668424904
+9689,312874,3791798,312974,3791698,88,96,16.8975069252078,0.0411658524473673,8.00306292595598,0.585040509259259,13.6021924336675,0.0164628983259005,0.0941828254847645,9.41828254847645,4,77.2220817631524,0.802861511577108,7.75623268698061,9.99603808627409,0,414.817583719889,414.439697265625,0.486205622750937
+9690,312874,3791698,312974,3791598,89,96,2.49307479224377,0.0242946014443479,8.80955989448676,0.407407407407407,NA,0.0382112716316868,0.282548476454294,28.2548476454294,4,91.0603949922349,0.695339367470515,22.7146814404432,32.4373799211839,5.19557523727417,414.490854899089,414.372711181641,0.124833319932934
+9691,312874,3791598,312974,3791498,90,96,7.89473684210526,0.0809820048144931,12.6733213240171,0.711111111111111,NA,0.0255485718895598,0.171052631578947,17.1052631578947,5,80.5653081010659,0.701081612586037,8.1578947368421,12.0817828398484,0,414.835553487142,414.489898681641,0.465091214443806
+9692,312874,3791498,312974,3791398,91,96,50.415512465374,0.491290829207925,40.6571737897133,0.773809523809524,NA,0.0477333937051198,0.50415512465374,50.415512465374,2,97.4200259606292,0.850388740613033,50.1385041551247,4.39951848197769,0,415.855299207899,415.307495117188,0.691255782683962
+9693,312874,3791398,312974,3791298,92,96,37.3961218836565,0.0728838043330438,11.4927173563641,0.376805027906759,17.5605194111057,0.0314005354743121,0.204986149584488,20.4986149584488,6,78.5740960127243,0.632323773787188,6.37119113573407,4.14284248609801,0,416.701939900716,416.337158203125,0.419935312216261
+9694,312874,3791298,312974,3791198,93,96,61.218836565097,0.198855811822255,16.8236766249108,0.704223081882656,12.9406814558741,0.0353142618482392,0.326869806094183,32.6869806094183,4,90.5229716765825,0.861159186185147,26.0387811634349,0.85481362019555,0,417.365868462457,417.19580078125,0.357948564695869
+9695,312874,3791198,312974,3791098,94,96,13.6842105263158,0.0350922020862803,7.31650202797696,0.394410569105691,14.023755293727,0.0257427109513389,0.163157894736842,16.3157894736842,5,81.235144732878,0.7787095271372,11.8421052631579,9.28658460801648,0,418.149747212728,417.634002685547,0.676643593067835
+9696,312874,3791098,312974,3790998,95,96,14.1274238227147,0.137669408184638,17.2721898701973,0.741830065359477,NA,0.0391908713204845,0.335180055401662,33.5180055401662,5,89.1082429811397,0.753863636363636,20.2216066481994,22.1555226657016,0,419.559400770399,419.034515380859,0.960530065198078
+9697,312874,3790998,312974,3790898,96,96,18.5595567867036,0.0361719621504736,7.45516436242584,0.290915443745632,17.6649555739947,0.0252593740648721,0.246537396121884,24.6537396121884,2,93.2698794730196,0.774625416204218,23.5457063711911,10.6060298266036,0,421.131479899089,420.462524414062,0.809475458914248
+9698,312874,3790898,312974,3790798,97,96,11.6343490304709,0.0566874033701451,10.5532585670463,0.670987654320988,15.5867256623399,0.0160866163244015,0.0941828254847645,9.41828254847645,4,69.6478938538127,0.664864569681083,3.32409972299169,25.1045132945566,0,422.239034016927,421.633758544922,1.32136608799237
+9699,312874,3790798,312974,3790698,98,96,0,NA,NA,NA,NA,0.0226477831158646,0.0394736842105263,3.94736842105263,4,53.9192287727554,0.574097135740971,1.84210526315789,60.193899790446,47.0479354858398,424.639844258626,423.657379150391,0.989043820353178
+9700,312874,3790698,312974,3790598,99,96,3.8781163434903,0.0377916022467634,7.42904121827947,0.642857142857143,NA,0.0222551980203856,0.154970760233918,15.4970760233918,2,88.5732781348666,0.882961329328111,14.327485380117,27.5212053802778,0,424.438494364421,423.934844970703,0.602334903637205
+9701,312974,3800598,313074,3800498,0,97,42.382271468144,0.206504112276957,16.9260958139694,0.5,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.360136032104,388.750518798828,1.15197569387313
+9702,312974,3800498,313074,3800398,1,97,15.5263157894737,0.0796323047342515,11.9770875732001,0.645981087470449,51.9557522077996,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.551864624023,390.855377197266,1.0896423506192
+9703,312974,3800398,313074,3800298,2,97,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.464666366577,391.897613525391,0.494754102816908
+9704,312974,3800298,313074,3800198,3,97,10.803324099723,0.0210553212517682,4.98987600817768,0.408205128205128,36.3690261817537,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.503601074219,392.181274414062,0.371928509995833
+9705,312974,3800198,313074,3800098,4,97,18.005540166205,0.0438652526078504,5.52916262417082,0.343710691823899,23.3800882596988,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.71693611145,392.232360839844,0.42583819953335
+9706,312974,3800098,313074,3799998,5,97,9.47368421052632,0.0323928019257972,8.37451214044966,0.554938271604938,20.7823006752878,0.0289022162586255,0.276315789473684,27.6315789473684,2,88.2458526709887,0.883226632522407,25,33.4717548801785,7.34765291213989,393.034848531087,392.692810058594,0.396743369391215
+9707,312974,3799998,313074,3799898,6,97,5.26315789473684,0.0256443015245895,12.2804503990337,0.297348484848485,93.5203539740392,0.028404989535876,0.191135734072022,19.1135734072022,3,86.5441893232479,0.795652666138345,14.9584487534626,26.1350399514903,10.3911504745483,393.335285186768,392.848846435547,0.528930348269846
+9708,312974,3799898,313074,3799798,7,97,42.6592797783933,0.138569208238133,10.9178757722777,0.485714285714286,10.7999866759763,0.00940264253993196,0.135734072022161,13.5734072022161,2,85.5663102564254,0.7933836996337,10.5263157894737,17.242508820125,5.19557523727417,393.762563069661,393.586853027344,0.257666171855871
+9709,312974,3799798,313074,3799698,8,97,10.5263157894737,0.034192402032786,10.1501248923806,0.447076023391813,49.0424562209224,0.0428040116907106,0.3601108033241,36.01108033241,4,87.5190318650396,0.756023161086452,18.5595567867036,17.8103682994843,0,393.939081192017,393.819488525391,0.121091117201294
+9710,312974,3799698,313074,3799598,9,97,18.6842105263158,0.1916574113943,18.3109306914723,0.774647887323944,NA,0.0189109515851765,0.168421052631579,16.8421052631579,6,75.4867253814212,0.667156419529837,8.1578947368421,27.8429934382439,5.19557523727417,394.084587097168,393.955200195312,0.181754607682544
+9711,312974,3799598,313074,3799498,10,97,8.58725761772853,0.0418407024874881,7.95114766697294,0.422413793103448,58.781223238534,0.0346072783161257,0.293628808864266,29.3628808864266,4,87.5361546084808,0.829524689456935,15.7894736842105,22.6667090182034,0,394.392139434814,394.025390625,0.474624507980408
+9712,312974,3799498,313074,3799398,11,97,27.9778393351801,0.272639416208793,27.9769384730148,0.808580858085809,NA,0.0272466236330573,0.207756232686981,20.7756232686981,3,87.4055288753053,0.83743907607544,11.9113573407202,13.3389696947734,0,394.486326217651,394.187591552734,0.394374009426164
+9713,312974,3799398,313074,3799298,12,97,0,NA,NA,NA,NA,0.0284882583089464,0.260387811634349,26.0387811634349,2,93.9143497325817,0.91952024255395,25.7617728531856,73.4619142654094,42.8438110351562,394.01505279541,393.747894287109,0.447817305310973
+9714,312974,3799298,313074,3799198,13,97,0,NA,NA,NA,NA,0.017844295291654,0.113157894736842,11.3157894736842,3,82.7851574681708,0.812067260138477,9.47368421052632,51.4707896210426,41.5646018981934,393.547876358032,393.373199462891,0.213946000725417
+9715,312974,3799198,313074,3799098,14,97,0,NA,NA,NA,NA,0.0145429277977314,0.03601108033241,3.601108033241,5,46.7634646535588,0.423690932311622,1.66204986149584,44.3142654712384,29.3906116485596,393.412877400716,393.287719726562,0.204573894380897
+9716,312974,3799098,313074,3798998,15,97,2.49307479224377,0.0242946014443479,11.5457227128443,0.296296296296296,NA,0.00988389534398964,0.0110803324099723,1.10803324099723,2,30.9165064303089,0.494397759103641,0.554016620498615,38.6031894683838,23.2353191375732,393.452335357666,393.285400390625,0.275942745807922
+9717,312974,3798998,313074,3798898,16,97,8.03324099722992,0.0782826046540099,12.7693134786278,0.632183908045977,NA,0.0177334417695518,0.07202216066482,7.20221606648199,4,66.0479888784668,0.500618856934838,3.04709141274238,26.8188592103811,5.19557523727417,393.646814982096,393.30322265625,0.495166528329387
+9718,312974,3798898,313074,3798798,17,97,0,NA,NA,NA,NA,0.00690090828863839,0.0263157894736842,2.63157894736842,3,52.8544892788092,0.525987525987526,1.57894736842105,16.794465637207,15.5867252349854,393.611225128174,393.256530761719,0.430316662693432
+9719,312974,3798798,313074,3798698,18,97,19.6675900277008,0.0638858037981001,9.73313633904594,0.578914141414141,10.7999867220173,0.0158950072055377,0.10803324099723,10.803324099723,3,81.9583933952293,0.844768275203058,9.14127423822715,3.66071021251189,0,393.92426554362,393.513397216797,0.409812158910629
+9720,312974,3798698,313074,3798598,19,97,43.213296398892,0.0526383031294205,11.0822285670087,0.447388073932974,13.1841377092624,0.0320614346111493,0.218836565096953,21.8836565096953,4,82.2334452748226,0.780547112462006,8.31024930747922,2.92565349385708,0,394.645250320435,394.173919677734,0.567166683944942
+9721,312974,3798598,313074,3798498,20,97,39.612188365651,0.0772028445898167,10.7512578294421,0.578400709219858,15.7207612578062,0.0288534143538852,0.121883656509695,12.1883656509695,10,59.2974409924982,0.50754540028988,3.8781163434903,4.05102962797338,0,395.07432047526,394.418762207031,0.430120961808029
+9722,312974,3798498,313074,3798398,21,97,43.6842105263158,0.149366808880065,17.0593328512187,0.52333108184172,14.6953058096335,0.0224805094503896,0.0657894736842105,6.57894736842105,4,74.1522688137267,0.652112676056338,5.26315789473684,28.7074526405334,0,394.435152053833,394.030426025391,0.446940697208552
+9723,312974,3798398,313074,3798298,22,97,0.831024930747922,0.00809820048144931,3.39810794893223,0.277777777777778,NA,0.0204613251609817,0.168975069252078,16.8975069252078,2,87.0445787956136,0.875125786163522,13.0193905817175,49.0349306825732,18.7329120635986,394.019912719727,393.882415771484,0.213804876620219
+9724,312974,3798298,313074,3798198,23,97,0,NA,NA,NA,NA,0.0218595804249729,0.152354570637119,15.2354570637119,3,83.399909608165,0.813725490196078,9.97229916897507,54.5208518981934,27.9790287017822,393.957153320312,393.877655029297,0.125827908481423
+9725,312974,3798198,313074,3798098,24,97,0.277008310249307,0.0026994001604831,0,0,NA,0.00815554383431878,0.00554016620498615,0.554016620498615,1,30.9165064303089,1,0.554016620498615,42.3323268890381,40.5787391662598,394.127380371094,394.014801025391,0.218415373534788
+9726,312974,3798098,313074,3797998,25,97,7.10526315789474,0.0364419021665219,6.78330653942035,0.436666666666667,95.8016729060879,0.00694813293283866,0.0631578947368421,6.31578947368421,5,64.1967820506238,0.634831460674157,3.94736842105263,19.3545023004214,0,394.634958267212,394.354248046875,0.374611138927004
+9727,312974,3797998,313074,3797898,26,97,31.3019390581717,0.152516109067295,14.8700188608498,0.498498498498498,44.6940278475361,0.0414338140380653,0.349030470914127,34.9030470914127,2,92.5384306558279,0.859128495772554,22.1606648199446,12.3014607997168,0,395.22075843811,394.996765136719,0.240311009392342
+9728,312974,3797898,313074,3797798,27,97,48.7534626038781,0.237547214122513,16.9998776161568,0.71540252827678,46.4706371317287,0.0353710570451845,0.282548476454294,28.2548476454294,3,93.8953488372093,0.870519231174969,27.7008310249307,7.1359106091892,0,395.675572713216,395.456787109375,0.45535727411949
+9729,312974,3797798,313074,3797698,28,97,52.9085872576177,0.515585430652272,35.5050521826779,0.863874345549738,NA,0.0093593352213144,0.0664819944598338,6.64819944598338,4,67.0283519436654,0.63353115727003,3.8781163434903,1.22318595647812,0,396.872814178467,396.198913574219,0.91816685613606
+9730,312974,3797698,313074,3797598,29,97,45.2631578947368,0.154765609201031,20.1076040331391,0.669013939886805,13.8548671168586,0.0113183051091159,0.0631578947368421,6.31578947368421,4,64.8135964068099,0.634831460674157,3.42105263157895,7.60338173309962,0,398.097846984863,397.342651367188,0.785725407545663
+9731,312974,3797598,313074,3797498,30,97,79.5013850415512,0.77472784605865,37.6593761370039,0.844947735191638,NA,0.0293116469543757,0.0415512465373961,4.15512465373961,5,49.2698600458824,0.478323699421965,1.66204986149584,0.692743364969889,0,399.118053436279,398.425720214844,0.616291537394308
+9732,312974,3797498,313074,3797398,31,97,24.3767313019391,0.118773607061256,10.6707112369797,0.403256704980843,51.9557516882196,0.00816172918018922,0.0332409972299169,3.32409972299169,4,49.493734867695,0.574077195348053,1.93905817174515,8.83863190809886,0,399.899103800456,399.674621582031,0.418193815596877
+9733,312974,3797398,313074,3797298,32,97,28.808864265928,0.0935792055634142,11.9209548800658,0.625198133636952,12.1230087272512,0.00253493738795406,0.0249307479224377,2.49307479224377,3,48.8677635297387,0.487215909090909,1.38504155124654,7.37974336412218,0,401.200283050537,400.128601074219,1.32784775629254
+9734,312974,3797298,313074,3797198,33,97,33.6842105263158,0.0863808051354593,14.3282371864885,0.47397746178234,15.0743785212332,0.0213050473331302,0.105263157894737,10.5263157894737,5,76.58215813637,0.616330114135206,6.8421052631579,6.06022988557816,0,403.042554219564,402.203979492188,1.02665894042417
+9735,312974,3797198,313074,3797098,34,97,26.8698060941828,0.261841815566861,23.7616482351649,0.807560137457045,NA,0.0337138097541323,0.257617728531856,25.7617728531856,3,91.5579208966512,0.780907210933285,21.8836565096953,12.3353422226444,0,404.383981704712,403.114562988281,0.887809930707604
+9736,312974,3797098,313074,3796998,35,97,22.7146814404432,0.110675406579807,16.9290688517977,0.512222222222222,21.4219052194909,0.0152386252728753,0.0637119113573407,6.37119113573407,3,68.0793155236349,0.703320184089415,3.04709141274238,20.0749360789423,0,405.973347981771,404.748870849609,1.68309786188664
+9737,312974,3796998,313074,3796898,36,97,6.37119113573407,0.0206954012303704,5.57852382824292,0.48974358974359,21.1479004376081,0.0149676245531223,0.0470914127423823,4.70914127423823,2,69.7132066894998,0.790116279069767,3.04709141274238,31.820649988511,0,408.126455307007,406.949523925781,1.16634338753525
+9738,312974,3796898,313074,3796798,37,97,2.63157894736842,0.026994001604831,6.465568833962,0.583333333333333,NA,0.0138829272321537,0.0552631578947368,5.52631578947368,4,63.7022955205393,0.669220055710306,3.42105263157895,34.8856876918248,15.5867252349854,409.013557434082,408.381042480469,0.853485799415472
+9739,312974,3796798,313074,3796698,38,97,29.6398891966759,0.041262259595956,9.67506803621863,0.401854202606082,13.5352660571068,0.0254373097256659,0.163434903047091,16.3434903047091,4,86.1348480527492,0.683580054538372,13.2963988919668,5.88490469981048,0,409.270660400391,408.916168212891,0.48347771847395
+9740,312974,3796698,313074,3796598,39,97,9.41828254847645,0.0152966009094042,4.69232480271774,0.277777777777778,28.6879102373155,0.0215527315869566,0.0969529085872576,9.69529085872576,5,66.9768087967743,0.675428390099429,3.04709141274238,12.6821749278477,0,408.757692337036,408.086059570312,0.677946111492226
+9741,312974,3796598,313074,3796498,40,97,4.70914127423823,0.0152966009094042,4.24168917810677,0.316161616161616,18.6983404381086,0.0125837541215794,0.110803324099723,11.0803324099723,5,71.6735951753848,0.647510112986469,4.43213296398892,20.7211652874947,0,407.414983113607,406.321044921875,1.23012454723732
+9742,312974,3796498,313074,3796398,41,97,4.15512465373961,0.0202455012036233,5.85258050125952,0.435606060606061,103.129222905955,0.00394667929535559,0.0221606648199446,2.21606648199446,2,52.7777777777778,0.693201133144476,1.10803324099723,32.1175727844238,10.3911504745483,406.014995574951,405.509063720703,0.59619986064751
+9743,312974,3796398,313074,3796298,42,97,5.52631578947368,0.0283437016850726,5.73990401077947,0.429824561403509,25.9778758441098,0.00372862703004318,0,0,0,NA,NA,0,NA,NA,406.158521016439,405.913635253906,0.319710243736704
+9744,312974,3796298,313074,3796198,43,97,13.0193905817175,0.0634359037713529,10.7706820805284,0.601190476190476,25.9778761038998,0.0183009132261983,0.121883656509695,12.1883656509695,1,89.6424568139514,0.892275556313411,12.1883656509695,6.38176921280948,0,406.153070449829,405.793579101562,0.508397210217287
+9745,312974,3796198,313074,3796098,44,97,0,NA,NA,NA,NA,0.00424167755086664,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,73.4765319824219,73.4765319824219,405.7556737264,405.329315185547,0.841644272192543
+9746,312974,3796098,313074,3795998,45,97,43.213296398892,0.421106425035364,27.1713066397447,0.875,NA,0.0191345731907158,0.0498614958448753,4.98614958448753,4,55.8589562520377,0.610193283662671,1.66204986149584,0.865929206212362,0,404.955549240112,404.090789794922,0.931958510482355
+9747,312974,3795998,313074,3795898,46,97,44.2105263157895,0.453499226961161,32.1680271849418,0.771825396825397,NA,0.0130080622272592,0.0184210526315789,1.84210526315789,3,37.0208748079497,0.490616621983914,0.789473684210526,4.45335020337786,0,405.577997843424,404.572570800781,1.04688482729783
+9748,312974,3795898,313074,3795798,47,97,3.32409972299169,0.0323928019257972,6.79028708848369,0.638888888888889,NA,0.0164121104403685,0.0249307479224377,2.49307479224377,4,39.9874698903172,0.401751893939394,1.10803324099723,15.2678679360284,5.19557523727417,406.382061004639,405.097412109375,0.918183382333948
+9749,312974,3795798,313074,3795698,48,97,0,NA,NA,NA,NA,0.0143200615195201,0.00277008310249307,0.277008310249307,1,0,NA,0.277008310249307,67.7420120239258,67.7420120239258,406.58765411377,405.761901855469,0.641982896578655
+9750,312974,3795698,313074,3795598,49,97,31.5789473684211,0.153865809147537,18.5252483082075,0.71964560862866,15.5867256623399,0.0293047640829515,0.185595567867036,18.5595567867036,4,85.8489544801339,0.695650909936624,14.1274238227147,5.10591409455484,0,406.049955368042,405.279266357422,0.559178498339243
+9751,312974,3795598,313074,3795498,50,97,28.9473684210526,0.148467008826571,25.4484507732593,0.672587486744433,10.3911503376439,0.0210260534239045,0.105263157894737,10.5263157894737,5,72.7288119474334,0.716417910447761,4.47368421052632,6.63446992635727,0,405.519304911296,405.173889160156,0.446048223334496
+9752,312974,3795498,313074,3795398,51,97,3.04709141274238,0.00989780058843804,3.34684636494477,0.194444444444444,12.1230088484866,0.0140589494787789,0,0,0,NA,NA,0,NA,NA,405.218618392944,404.738708496094,0.445854943847361
+9753,312974,3795398,313074,3795298,52,97,22.1606648199446,0.053988003209662,9.1910078886177,0.479347041847042,22.6048101889437,0.0446369972576531,0.437673130193906,43.7673130193906,4,92.4026155306093,0.785374554102259,25.7617728531856,11.5001174286951,0,404.872619628906,404.622497558594,0.362875555759884
+9754,312974,3795298,313074,3795198,53,97,50.9695290858726,0.248344814764445,20.1753393560245,0.663841807909604,31.6034499687999,0.0355412017050341,0.271468144044321,27.1468144044321,6,82.9959573834849,0.766030072589008,12.7423822714681,5.3887646100959,0,404.70729637146,404.506591796875,0.376387039781459
+9755,312974,3795198,313074,3795098,54,97,54.2105263157895,0.556076433059519,37.4335980377886,0.797734627831715,NA,0.0501350380100791,0.428947368421053,42.8947368421053,3,92.3705589956006,0.81321044546851,22.1052631578947,4.17004453038877,0,404.888223648071,403.845825195312,0.872824297765113
+9756,312974,3795098,313074,3794998,55,97,21.8836565096953,0.106626306339083,13.4637999400675,0.478354978354978,67.5424771946855,0.013535538020355,0,0,0,NA,NA,0,NA,NA,403.565625508626,403.104522705078,0.95383689325372
+9757,312974,3794998,313074,3794898,56,97,0.277008310249307,0.0026994001604831,0,0,NA,0.0307465384654969,0.185595567867036,18.5595567867036,4,85.607554152305,0.737630094772952,13.5734072022161,38.9220507749871,14.6953058242798,403.188026428223,402.9912109375,0.323382448733288
+9758,312974,3794898,313074,3794798,57,97,15.5124653739612,0.0755832044935268,11.6834558418522,0.711309523809524,56.1987384192301,0.01105405248585,0.0664819944598338,6.64819944598338,3,74.4445552616069,0.802670623145401,5.54016620498615,17.6375576059024,5.19557523727417,403.205355326335,402.457214355469,0.762838773855249
+9759,312974,3794798,313074,3794698,58,97,2.10526315789474,0.00719840042795494,2.35731146711354,0.231481481481481,35.368367316787,0.0276423429927442,0.210526315789474,21.0526315789474,5,82.3433525256662,0.723474178403756,10.5263157894737,40.4164199411869,5.19557523727417,403.204206466675,402.212860107422,1.10374049279813
+9760,312974,3794698,313074,3794598,59,97,40.4432132963989,0.0788224846861066,12.4460580267933,0.490763614404919,13.3302115307454,0.023248802293978,0.0581717451523546,5.81717451523546,5,58.7597701674274,0.635018382352941,3.32409972299169,7.24853020622617,0,403.655481974284,402.639465332031,1.19521195971384
+9761,312974,3794598,313074,3794498,60,97,50.9695290858726,0.248344814764445,26.5262583344689,0.668564199873498,18.7329127343573,0.0220983411994304,0.0554016620498615,5.54016620498615,6,51.1171065625613,0.521899536467695,1.38504155124654,4.63144671916962,0,404.733642578125,403.091033935547,1.60124180067374
+9762,312974,3794498,313074,3794398,61,97,40.9972299168975,0.133170407917166,15.8358595039014,0.52503371719058,17.3185838960732,0.0175755726322627,0.0692520775623269,6.92520775623269,2,78.1007112295827,0.892559523809524,5.81717451523546,11.5325269889832,5.19557523727417,405.642789204915,403.060882568359,2.13297463167274
+9763,312974,3794398,313074,3794298,62,97,17.6315789473684,0.0602866035841226,8.62379217502696,0.534060846560847,21.2713526702061,0.104435417954013,0.547368421052632,54.7368421052632,3,95.9290117040076,0.89724175229854,50,10.2470275736772,0,405.974969863892,403.161407470703,2.26912462753132
+9764,312974,3794298,313074,3794198,63,97,2.49307479224377,0.012147300722174,3.52419912938065,0.21875,41.5646017662397,0.114000302311954,0.57617728531856,57.617728531856,2,97.9024400750065,0.902450558173312,57.3407202216066,32.037784741475,0,403.720827738444,401.894439697266,2.69247018937668
+9765,312974,3794198,313074,3794098,64,97,2.21606648199446,0.0107976006419324,3.67382645240838,0.416666666666667,59.2386718188602,0.0178394894724258,0.10803324099723,10.803324099723,3,81.6912252101949,0.810272336359293,9.14127423822715,28.6068308536823,5.19557523727417,401.855682373047,401.223846435547,1.24670410909413
+9766,312974,3794098,313074,3793998,65,97,0,NA,NA,NA,NA,0.0301300179197323,0.196675900277008,19.6675900277008,3,85.5662905391598,0.770951724137931,10.2493074792244,62.9057294550076,20.7823009490967,401.20992787679,400.893432617188,0.309495713639444
+9767,312974,3793998,313074,3793898,66,97,0,NA,NA,NA,NA,0.0290682198555978,0.228947368421053,22.8947368421053,2,93.1990892122088,0.824287129802929,22.3684210526316,57.404029670803,31.1734504699707,401.195472717285,400.982879638672,0.297435585518461
+9768,312974,3793898,313074,3793798,67,97,32.1329639889197,0.31313041861604,23.680731303076,0.830459770114942,NA,0.00970773213475317,0.00831024930747922,0.831024930747922,2,21.0115613982809,0.495810055865922,0.554016620498615,11.6176592508952,0,402.320299784342,401.434417724609,1.47188710831827
+9769,312974,3793798,313074,3793698,68,97,0.277008310249307,0.0026994001604831,0,0,NA,0.0186657674508106,0.0249307479224377,2.49307479224377,2,56.0256720617195,0.743607954545455,1.38504155124654,35.6407718658447,15.5867252349854,404.687850952148,402.404724121094,1.71354645879352
+9770,312974,3793698,313074,3793598,69,97,0,NA,NA,NA,NA,0.0204692494285495,0.0138504155124654,1.38504155124654,2,39.4111447704115,0.59438202247191,0.831024930747922,68.0963424682617,67.54248046875,405.941059112549,404.946228027344,0.814954946277038
+9771,312974,3793598,313074,3793498,70,97,3.94736842105263,0.0404910024072465,7.53802818257974,0.677777777777778,NA,0.0406220145127583,0.352631578947368,35.2631578947368,3,90.9110948886032,0.778421964547514,21.5789473684211,37.134833720193,10.3911504745483,405.744201660156,405.219696044922,0.713970774654641
+9772,312974,3793498,313074,3793398,71,97,21.3296398891967,0.103926906178599,15.0445538056923,0.435555555555556,11.6176593526411,0.0293208032415154,0.160664819944598,16.0664819944598,4,84.7381339772996,0.880858085808581,13.8504155124654,12.1302252062436,0,405.492935180664,404.998657226562,0.561864433626579
+9773,312974,3793398,313074,3793298,72,97,31.5789473684211,0.307731618295074,23.7972969133115,0.830409356725146,NA,0.0258421628649535,0.174515235457064,17.4515235457064,4,85.25043580026,0.713666870042709,12.7423822714681,11.0309125431,0,405.369046529134,404.982788085938,0.404431389342437
+9774,312974,3793298,313074,3793198,73,97,0,NA,NA,NA,NA,0.0301037611813306,0.113573407202216,11.3573407202216,3,77.0892564770878,0.754755434782609,5.54016620498615,59.4457638438155,31.1734504699707,405.837890625,405.111206054688,0.767480297267235
+9775,312974,3793198,313074,3793098,74,97,12.8947368421053,0.132270607863672,23.4535226721184,0.615646258503401,NA,0.0229749788174032,0.107894736842105,10.7894736842105,3,80.855538400089,0.772562096532854,8.42105263157895,20.9760558895948,7.34765291213989,406.852905273438,406.210113525391,0.693013661622799
+9776,312974,3793098,313074,3792998,75,97,0,NA,NA,NA,NA,0.032919251395472,0.193905817174515,19.3905817174515,5,81.0397953402174,0.727684184058335,8.58725761772853,52.9916297640119,11.6176595687866,408.194358825684,406.437469482422,1.65008482443832
+9777,312974,3792998,313074,3792898,76,97,0.831024930747922,0.00809820048144931,3.4637168138533,0.222222222222222,NA,0.0198790604555241,0.116343490304709,11.6343490304709,1,89.2679797262236,0.824672170956775,11.6343490304709,52.1466200692313,34.8529777526855,409.56697845459,409.205627441406,0.523781912334282
+9778,312974,3792898,313074,3792798,77,97,7.20221606648199,0.0350922020862803,5.12683300196627,0.363333333333333,44.3910137562246,0.0139940360608095,0.0193905817174515,1.93905817174515,3,36.5555592639715,0.362641242937853,0.831024930747922,28.6364032200405,20.7823009490967,410.370258331299,409.495147705078,1.03889725065793
+9779,312974,3792798,313074,3792698,78,97,5.26315789473684,0.053988003209662,10.2124041018104,0.666666666666667,NA,0.0224968491416228,0.118421052631579,11.8421052631579,3,81.4239642642586,0.805970149253731,6.57894736842105,37.6125834994846,18.7329120635986,412.425216674805,411.761627197266,1.01399699863356
+9780,312974,3792698,313074,3792598,79,97,4.43213296398892,0.0215952012838648,6.23954335874113,0.488888888888889,31.1734510129318,0.00277871441476916,0.00554016620498615,0.554016620498615,2,0,1,0.277008310249307,33.8739347457886,18.7329120635986,413.493946075439,412.725799560547,1.0684481521435
+9781,312974,3792598,313074,3792498,80,97,14.6814404432133,0.143068208505604,24.9721794450139,0.713836477987421,NA,0.00279523145622371,0.0775623268698061,7.75623268698061,3,72.5044199389243,0.638638638638639,3.8781163434903,7.94708263874054,0,415.633130391439,414.473937988281,1.03831277177303
+9782,312974,3792498,313074,3792398,81,97,0,NA,NA,NA,NA,0.0306732254235446,0.119113573407202,11.9113573407202,6,72.6300441593598,0.653127183787561,6.92520775623269,52.1360913210137,23.2353191375732,416.677698135376,415.934051513672,0.709751907525747
+9783,312974,3792398,313074,3792298,82,97,0.263157894736842,0.0026994001604831,0,0,NA,0.0291472574152929,0.0763157894736842,7.63157894736842,5,66.2736965634559,0.63144814208644,2.89473684210526,41.5228641608666,7.34765291213989,417.288027445475,417.016326904297,0.402046399737976
+9784,312974,3792298,313074,3792198,83,97,0,NA,NA,NA,NA,0.0344928679148937,0.207756232686981,20.7756232686981,8,76.264206020966,0.674878152150879,8.31024930747922,57.4636713155111,36.369026184082,416.738399505615,416.158538818359,0.52597299107456
+9785,312974,3792198,313074,3792098,84,97,6.37119113573407,0.0155215509227778,4.89006521657525,0.38125,21.0573451132239,0.0217133404976392,0.121883656509695,12.1883656509695,2,82.8346760921718,0.815329525108705,7.75623268698061,20.8925118229606,0,415.829629898071,415.181762695312,0.498823336501351
+9786,312974,3792098,313074,3791998,85,97,16.6204986149584,0.161964009628986,24.5888183952451,0.722222222222222,NA,0.0120784624779461,0.0332409972299169,3.32409972299169,3,57.7881939035363,0.634923310298331,2.21606648199446,39.0585275491079,5.19557523727417,415.248120625814,414.861724853516,0.461815669837416
+9787,312974,3791998,313074,3791898,86,97,25.2631578947368,0.259142415406378,23.6914606122329,0.822916666666667,NA,0.0238373806406918,0.105263157894737,10.5263157894737,5,72.8309518969287,0.716417910447761,6.05263157894737,11.1089632630348,0,414.883317947388,414.438415527344,0.540259875117773
+9788,312974,3791898,313074,3791798,87,97,26.8698060941828,0.13092090778343,19.2033835685321,0.674972914409534,41.8880664774876,0.0327996636032697,0.160664819944598,16.0664819944598,8,81.037338178285,0.74980198019802,13.2963988919668,7.75872154071413,0,414.595570882161,414.272125244141,0.435378374802019
+9789,312974,3791798,313074,3791698,88,97,24.3767313019391,0.118773607061256,14.8833160779095,0.506944444444444,21.4219052194909,0.0248451075538247,0.102493074792244,10.2493074792244,4,77.0415177304169,0.707751467314309,6.37119113573407,3.29690263078019,0,414.380332946777,414.244720458984,0.191797926837759
+9790,312974,3791698,313074,3791598,89,97,5.26315789473684,0.0256443015245895,6.47830092856752,0.376736111111111,65.7194052180872,0.0231996087164599,0.138504155124654,13.8504155124654,2,87.7035599007807,0.904407036126348,12.7423822714681,16.8050142478943,0,414.440775553385,414.334045410156,0.134693582951894
+9791,312974,3791598,313074,3791498,90,97,12.6315789473684,0.0323928019257972,4.79351088239803,0.222537878787879,30.0469801670607,0.0228325646579067,0.0236842105263158,2.36842105263158,5,29.393006743637,0.317160826594789,0.789473684210526,9.14298990037706,0,414.991802215576,414.548767089844,0.528670048041905
+9792,312974,3791498,313074,3791398,91,97,51.8005540166205,0.168262610003447,17.0385174586256,0.512172552221542,13.171737803215,0.0526572508621997,0.562326869806094,56.2326869806094,2,96.1038176353392,0.824245374878286,47.9224376731302,4.22003796300277,0,416.058260599772,415.515258789062,0.650383186292615
+9793,312974,3791398,313074,3791298,92,97,46.2603878116344,0.150266608933559,22.4331010487749,0.620875528930728,11.8258688283071,0.0334789133772584,0.232686980609418,23.2686980609418,9,74.9809114012175,0.606401279286701,7.4792243767313,4.89125273908888,0,416.814079284668,416.504821777344,0.314215617567043
+9794,312974,3791298,313074,3791198,93,97,32.409972299169,0.0789574546941307,13.1343394451006,0.634666340548693,15.5867256623399,0.0223357714757591,0.110803324099723,11.0803324099723,6,68.8189091754038,0.59715441484168,4.43213296398892,3.92613676786423,0,417.460009256999,417.170318603516,0.569914156423662
+9795,312974,3791198,313074,3791098,94,97,39.7368421052632,0.0815218848465897,9.24214249961983,0.345371842430666,13.5084954805035,0.0349396560918601,0.313157894736842,31.3157894736842,2,91.6584494172,0.797786292039166,16.5789473684211,4.90983441697449,0,418.457084655762,417.782562255859,0.814724027995667
+9796,312974,3791098,313074,3790998,95,97,23.2686980609418,0.11337480674029,18.0384501127238,0.697530864197531,15.5867255064659,0.0514172972225097,0.445983379501385,44.5983379501385,6,89.916644119946,0.743885135135135,20.7756232686981,14.6135036960152,0,419.825340270996,418.97021484375,1.1077938265959
+9797,312974,3790998,313074,3790898,96,97,19.9445983379501,0.0323928019257972,7.34021912741354,0.344404186795491,14.1998062626567,0.0446191993787907,0.43213296398892,43.213296398892,3,95.2414693611788,0.785246876859013,39.3351800554017,14.5686074984379,0,421.14200592041,420.312225341797,0.704485918926938
+9798,312974,3790898,313074,3790798,97,97,12.1883656509695,0.0395912023537522,5.74568170248819,0.398830409356725,31.4196099770958,0.0284622453469648,0.130193905817175,13.0193905817175,4,79.629724776058,0.712579617834395,6.64819944598338,12.0427201960949,0,422.263928731283,421.618927001953,1.44340838039354
+9799,312974,3790798,313074,3790698,98,97,2.36842105263158,0.0242946014443479,5.57476804427454,0.592592592592593,NA,0.0464829577286238,0.310526315789474,31.0526315789474,5,89.8342645943021,0.769565527573661,24.2105263157895,46.4140100761995,0,424.779703140259,423.276641845703,0.942349881589688
+9800,312974,3790698,313074,3790598,99,97,5.81717451523546,0.0566874033701451,10.7578529939861,0.658730158730159,NA,0.0153193833094514,0.064327485380117,6.4327485380117,1,83.1776611645899,0.748529411764706,6.4327485380117,47.5301832719283,32.8597030639648,424.552799224854,424.156219482422,0.358634216506033
+9801,313074,3800598,313174,3800498,0,98,31.8421052631579,0.16331370970917,15.2065450160719,0.395138888888889,15.5867255064659,NA,NA,NA,NA,NA,NA,NA,NA,NA,389.68723487854,388.887237548828,1.74380144804324
+9802,313074,3800498,313174,3800398,1,98,10.25,0.110675406579768,18.5565932899578,0.735772357723577,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.040486653646,391.231018066406,0.962411967135589
+9803,313074,3800398,313174,3800298,2,98,7.36842105263158,0.0755832044935001,16.2296306105253,0.577380952380952,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.78005027771,392.677734375,0.181532867486296
+9804,313074,3800298,313174,3800198,3,98,26.0526315789474,0.267240615887733,30.8373464449612,0.627946127946128,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.84553527832,392.784942626953,0.0648015395288252
+9805,313074,3800198,313174,3800098,4,98,45,0.230798713721224,22.2256347709394,0.508202671312427,15.5867256623344,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.904041290283,392.808288574219,0.137886470633843
+9806,313074,3800098,313174,3799998,5,98,42.75,0.153865809147482,13.6712433159055,0.354223125564589,17.3185838960732,0.00601336758500111,0.0375,3.75,1,64.2549725606995,0.851576994434137,3.75,5.55425484975179,0,392.984822591146,392.839324951172,0.161320162534134
+9807,313074,3799998,313174,3799898,6,98,22.6315789473684,0.0580371034503662,11.7457131100592,0.503095238095238,17.426488924397,0.0245585668985625,0.178947368421053,17.8947368421053,2,90.106222659587,0.897651368239603,16.8421052631579,13.6093420140883,0,393.297861099243,393.012054443359,0.294368647347268
+9808,313074,3799898,313174,3799798,7,98,0,NA,NA,NA,NA,0.0298065623876602,0.192105263157895,19.2105263157895,5,82.5256236566591,0.787255700325733,10,50.4272028256769,32.8597030639648,393.782707214355,393.593109130859,0.27405253115404
+9809,313074,3799798,313174,3799698,8,98,38.6842105263158,0.132270607863625,12.4930653187355,0.509550712940543,14.9924457605321,0.029858723840229,0.215789473684211,21.5789473684211,6,82.7412979800267,0.797732006479982,16.3157894736842,11.3406698471162,0,393.964015960693,393.883514404297,0.12486559983206
+9810,313074,3799698,313174,3799598,9,98,18,0.0971784057773573,17.0291933106139,0.476616915422886,10.3911503376439,0.0536488843156258,0.3775,37.75,3,94.1205072549948,0.889811955402839,34.5,21.2826391024305,0,393.952171325684,393.920013427734,0.0825214793687559
+9811,313074,3799598,313174,3799498,10,98,38.6842105263158,0.198405911795438,19.0133789053886,0.710787751285648,11.6176593526378,0.0351613962876064,0.292105263157895,29.2105263157895,3,90.6565213053915,0.858736059479554,17.3684210526316,17.4112462739687,0,393.988914489746,393.933135986328,0.0938725405126681
+9812,313074,3799498,313174,3799398,11,98,49.2105263157895,0.504787830010162,32.9189562980105,0.820855614973262,NA,0.0283977247739921,0.197368421052632,19.7368421052632,4,84.425077977221,0.848981619473423,9.47368421052632,5.92640324910482,0,394.088010787964,394.037536621094,0.0830561581875457
+9813,313074,3799398,313174,3799298,12,98,0,NA,NA,NA,NA,0.0144234477460582,0.113157894736842,11.3157894736842,2,82.6730236550577,0.843389383448731,5.78947368421053,41.5892041228538,21.4219055175781,393.966862996419,393.828765869141,0.219414890871543
+9814,313074,3799298,313174,3799198,13,98,7.25,0.0156565209307965,3.91323612030781,0.25,29.0028599679003,0.0153101410545787,0.11,11,3,83.966431971944,0.893713938657759,10,21.6372345035726,7.34765291213989,393.523359298706,393.368041992188,0.212014663169681
+9815,313074,3799198,313174,3799098,14,98,10.7894736842105,0.055337703289884,17.3327956265212,0.499731182795699,10.3911504415562,0.0195795869017562,0.168421052631579,16.8421052631579,5,82.7373894094811,0.828209764918626,13.9473684210526,26.3062295764685,5.19557523727417,393.276840209961,393.236022949219,0.0804316773669327
+9816,313074,3799098,313174,3798998,15,98,14.4736842105263,0.0494890029421727,9.55662256075047,0.258547008547009,22.5141592900385,0.0185304985195994,0.131578947368421,13.1578947368421,3,86.7071504819422,0.891622103386809,12.3684210526316,18.1312763404846,0,393.207633972168,393.170989990234,0.0489125373184248
+9817,313074,3798998,313174,3798898,16,98,9.21052631578947,0.0314930018722917,7.97444525380878,0.414609053497942,18.2795896576764,0.0261022714693593,0.189473684210526,18.9473684210526,7,83.1745301263321,0.727988546886185,12.6315789473684,13.6435295343399,0,393.17537689209,393.141143798828,0.0624114910583461
+9818,313074,3798898,313174,3798798,17,98,11,0.0593868035306072,15.0659936115711,0.432249322493225,10.3911504415562,0.0165199500897506,0.1675,16.75,3,87.9398347227487,0.733066399733066,14,21.6209056128317,5.19557523727417,393.177936553955,393.140014648438,0.0924812039893144
+9819,313074,3798798,313174,3798698,18,98,16.0526315789474,0.054887803263137,10.4910187840363,0.539351851851852,17.3185839653481,0.0225834840289424,0.202631578947368,20.2631578947368,5,80.5785846650107,0.668025626092021,8.42105263157895,16.6276990593254,0,393.466720581055,393.256286621094,0.368425175761065
+9820,313074,3798698,313174,3798598,19,98,42.1052631578947,0.143968008559048,18.6870716280322,0.4396482813749,17.5419767283748,0.0510744264601894,0.423684210526316,42.3684210526316,8,91.5417431182319,0.742070837961249,34.7368421052632,17.3837918968675,0,394.126810073853,393.738494873047,0.500065625102746
+9821,313074,3798598,313174,3798498,20,98,10.7894736842105,0.027668851644942,6.55875111017669,0.450347222222222,17.7096552556822,0.0424878185800289,0.302631578947368,30.2631578947368,4,85.7415035300121,0.800072568940494,11.5789473684211,26.2360189023225,0,394.488395690918,394.233215332031,0.372899471917026
+9822,313074,3798498,313174,3798398,21,98,0,NA,NA,NA,NA,0.0353607071690931,0.285,28.5,5,88.3813415513939,0.782741530314346,16,52.9786818989536,15.5867252349854,394.079570770264,393.956420898438,0.175396963366744
+9823,313074,3798398,313174,3798298,22,98,9.21052631578947,0.0944790056168752,12.6932544468228,0.766666666666667,NA,0.0276091802230439,0.231578947368421,23.1578947368421,2,89.5452161513704,0.883954279731263,12.1052631578947,22.1731476296078,0,393.920694986979,393.874755859375,0.0757217347286237
+9824,313074,3798298,313174,3798198,23,98,24.2105263157895,0.0827816049214525,14.8381335559641,0.636111111111111,12.1230088484823,0.0165976031854514,0.115789473684211,11.5789473684211,6,74.1729177436116,0.724903474903475,6.84210526315789,16.984418944879,0,394.073364257812,393.881683349609,0.290694776460411
+9825,313074,3798198,313174,3798098,24,98,2.89473684210526,0.00989780058843454,2.80410291672707,0.305555555555556,20.1880208773979,0.0161227830840983,0.0894736842105263,8.94736842105263,3,80.7821033614543,0.843104872006606,7.89473684210526,15.0251871698043,5.19557523727417,394.595039367676,394.109558105469,0.671340767669613
+9826,313074,3798098,313174,3797998,25,98,3.75,0.0404910024072322,8.36544704289773,0.622222222222222,NA,0.0245508334732585,0.27,27,5,90.4044315087891,0.754127151387425,22.5,38.6723888141138,0,395.345043182373,394.582275390625,0.673455044615894
+9827,313074,3797998,313174,3797898,26,98,40.2631578947368,0.206504112276884,19.3912936803699,0.620181405895692,44.0859174288927,0.0595589119896144,0.460526315789474,46.0526315789474,3,94.801922851761,0.799139167862267,34.7368421052632,7.83886089052473,0,395.659559249878,395.330139160156,0.357608962750531
+9828,313074,3797898,313174,3797798,27,98,51.3157894736842,0.263191515647009,21.6015559206849,0.730476190476191,16.4298514359611,0.0458189269543494,0.344736842105263,34.4736842105263,6,88.3655099260553,0.802053401892087,19.4736842105263,6.2307655283513,0,395.925890604655,395.549255371094,0.505871226436905
+9829,313074,3797798,313174,3797698,28,98,97.8947368421053,1.00417685969936,38.4843202289315,0.928763440860215,NA,0.0298004777848435,0.231578947368421,23.1578947368421,3,91.015536354237,0.883954279731263,21.3157894736842,0.118081255392595,0,397.634719848633,396.202331542969,1.35841213327358
+9830,313074,3797698,313174,3797598,29,98,79.75,0.287036217064602,19.5642243560778,0.678447660757936,12.9406814039139,0.0148664881723926,0.075,7.5,4,69.0100166287344,0.691119691119691,4,0.692743364969889,0,399.207369486491,398.841339111328,0.685119916799616
+9831,313074,3797598,313174,3797498,30,98,53.1578947368421,0.181759610805798,17.946121934068,0.615992733239569,15.5867255376396,0.0224070751741932,0.107894736842105,10.7894736842105,4,74.5336598194697,0.675088709332649,3.68421052631579,9.83976260627188,0,399.9345703125,399.095458984375,0.973380529225924
+9832,313074,3797498,313174,3797398,31,98,57.1052631578947,0.585769834824626,31.5847391057208,0.884024577572965,NA,0.0699031548427516,0.671052631578947,67.1052631578947,1,98.8064194597879,0.783765690376569,67.1052631578947,6.4179578369739,0,401.035031636556,399.815368652344,1.4602531142638
+9833,313074,3797398,313174,3797298,32,98,30,0.153865809147482,14.0594268518811,0.587962962962963,47.9008364530368,0.0587834142463276,0.468421052631579,46.8421052631579,2,96.1470004905021,0.942821029823347,44.7368421052632,8.26300997144721,0,402.898984909058,400.613250732422,1.80586787931587
+9834,313074,3797298,313174,3797198,33,98,26.5,0.0953788056703692,18.549487981158,0.610161443494777,20.7823007445627,0.0207102248085357,0.065,6.5,5,61.5012737620172,0.556541019955654,1.75,10.8490140071282,0,404.615740458171,403.814117431641,1.0296863637517
+9835,313074,3797198,313174,3797098,34,98,10.2631578947368,0.0263191515647009,7.64908420883152,0.463786764705882,15.7975070728811,0.0143807639796011,0.0763157894736842,7.63157894736842,1,85.8336389547059,0.792689579923622,7.63157894736842,36.3960360823006,15.5867252349854,405.631055831909,404.820404052734,0.984512736182021
+9836,313074,3797098,313174,3796998,35,98,20.5263157894737,0.105276606258804,14.3333662248592,0.351731601731602,15.5867255064659,0.0240834370482174,0.0815789473684211,8.15789473684211,3,81.3012097784137,0.782234957020057,7.36842105263158,11.2028255308828,0,407.605842590332,405.924530029297,1.61852726936529
+9837,313074,3796998,313174,3796898,36,98,21.3157894736842,0.109325706499527,26.9022709048653,0.605654761904762,20.7823006752878,0.0368441448704719,0.3,30,6,85.213410969592,0.722607489597781,17.1052631578947,16.903086536809,0,408.938165664673,408.385040283203,0.414947574365624
+9838,313074,3796898,313174,3796798,37,98,14.25,0.0512886030491608,9.71502115524589,0.527260981912145,11.6176593061668,0.0140126856647476,0.0825,8.25,3,73.4226374944004,0.737612271672217,3.25,18.2754242492445,0,409.149439493815,408.843475341797,0.31680360429956
+9839,313074,3796798,313174,3796698,38,98,50.2631578947368,0.128896357663023,11.1572123457332,0.357175925925926,12.9889379220549,0.0162020097428084,0.0868421052631579,8.68421052631579,6,66.0946636399047,0.614686732842352,3.42105263157895,6.13248618443807,0,408.80973815918,407.834014892578,0.69201404520524
+9840,313074,3796698,313174,3796598,39,98,33.4210526315789,0.171411910190616,23.5364613734886,0.513888888888889,22.0429587144464,0.0335073566248052,0.218421052631579,21.8421052631579,3,89.231238898832,0.834627453675073,17.8947368421053,9.31988570776331,0,407.388580322266,405.452758789062,1.51036038800797
+9841,313074,3796598,313174,3796498,40,98,32.1052631578947,0.0823317048947055,11.8786794411941,0.347713243546577,15.9275625039878,0.0311609313018332,0.257894736842105,25.7894736842105,8,80.5314479630823,0.693745970341715,13.6842105263158,10.8005716508749,0,406.441337585449,404.952575683594,1.3671032340315
+9842,313074,3796498,313174,3796398,41,98,21.0526315789474,0.107976006419286,15.2791228516339,0.596728151075977,64.2657156584714,0.0119694581749316,0.0131578947368421,1.31578947368421,3,24.9842363496896,0.392,0.526315789473684,9.59733734130859,0,405.690580368042,404.824615478516,0.817878629473991
+9843,313074,3796398,313174,3796298,42,98,44,0.118773607061214,12.1780477623842,0.673888462194914,14.0649768420078,0.0329694587895847,0.275,27.5,4,93.7553398633594,0.695026858430081,26.25,6.50633457357233,0,405.538332621257,404.821441650391,0.764452674857046
+9844,313074,3796298,313174,3796198,43,98,32.6315789473684,0.111575206633262,14.4212705134026,0.490740740740741,24.2460175584148,0.0258982142791195,0.171052631578947,17.1052631578947,2,88.5059572619302,0.786486866132884,13.6842105263158,2.68973182531504,0,405.376531600952,404.5517578125,0.709970194117308
+9845,313074,3796198,313174,3796098,44,98,12.8947368421053,0.132270607863625,18.9346091681056,0.619047619047619,NA,0.0112203376659109,0.0157894736842105,1.57894736842105,1,62.3749377455957,0.85485103132162,1.57894736842105,3.46371682484945,0,405.345367431641,404.486175537109,0.68766576759877
+9846,313074,3796098,313174,3795998,45,98,47.8947368421053,0.491290829207751,33.6852543106009,0.782967032967033,NA,0.0126306503223053,0.0578947368421053,5.78947368421053,2,78.1035948821918,0.843904042063753,5.26315789473684,1.65313757549633,0,405.717884063721,405.197143554688,0.515350963980258
+9847,313074,3795998,313174,3795898,46,98,61.5,0.166013109869652,18.6662917938378,0.628434407371439,12.9889379740111,0.0056747267813688,0,0,0,NA,NA,0,NA,NA,406.635749816895,406.057952880859,0.627648145942657
+9848,313074,3795898,313174,3795798,47,98,3.42105263157895,0.0116974006954226,3.42362292896626,0.259259259259259,20.8861750133257,0.0104034561112138,0.00526315789473684,0.526315789473684,1,30.8730773315672,1,0.526315789473684,7.79336285591125,5.19557523727417,406.995380401611,406.917022705078,0.0837551115961515
+9849,313074,3795798,313174,3795698,48,98,0,NA,NA,NA,NA,0.0142538808747735,0,0,0,NA,NA,0,NA,NA,406.906921386719,406.720642089844,0.241079301966226
+9850,313074,3795698,313174,3795598,49,98,31.5789473684211,0.323928019257858,34.5968354804132,0.729166666666667,NA,0.0240718672379827,0.1,10,8,62.0765487432038,0.559082892416226,2.63157894736842,8.15145599214654,0,406.338706970215,406.070587158203,0.329847412612562
+9851,313074,3795598,313174,3795498,50,98,10.5,0.02267496134805,6.60227917425563,0.230238095238095,28.1079324391018,0.0372835018706974,0.305,30.5,9,85.5629207019795,0.648426055535662,18.75,17.3663867809733,0,405.993581136068,405.779571533203,0.280269513753237
+9852,313074,3795498,313174,3795398,51,98,9.21052631578947,0.0472395028084376,10.6717128533085,0.398989898989899,15.5867256623344,0.0126141141878107,0.0210526315789474,2.10526315789474,3,44.1505367610631,0.489247311827957,1.05263157894737,9.67372065782547,0,405.990783691406,405.652679443359,0.419209493947239
+9853,313074,3795398,313174,3795298,52,98,23.9473684210526,0.122822707301938,15.6673178451182,0.362037037037037,33.2679134937429,0.0649165615720114,0.489473684210526,48.9473684210526,2,97.2722048931821,0.817789498921122,48.4210526315789,12.039837104018,0,405.587501525879,405.037048339844,0.572777036864201
+9854,313074,3795298,313174,3795198,53,98,19.2105263157895,0.0394112423430394,9.10870446419876,0.468968253968254,29.8956822289363,0.0768510462213894,0.573684210526316,57.3684210526316,1,98.2681975546911,0.832451499118166,57.3684210526316,9.91295710397423,0,404.843786239624,404.449890136719,0.5092801444656
+9855,313074,3795198,313174,3795098,54,98,40.75,0.44000222615859,40.1346828706326,0.721881390593047,NA,0.0570914434613223,0.42,42,1,97.1419289493636,0.810901001112347,42,6.3933020234108,0,404.185653686523,403.639251708984,0.494884744763233
+9856,313074,3795098,313174,3794998,55,98,26.0526315789474,0.133620307943866,25.0894363134204,0.688711240310077,59.2386713084728,0.0148936468858569,0.00263157894736842,0.263157894736842,1,0,NA,0.263157894736842,5.19557523727417,5.19557523727417,403.347328186035,403.124755859375,0.36995260709823
+9857,313074,3794998,313174,3794898,56,98,9.73684210526316,0.0499389029689197,8.92545022687251,0.598778735632184,69.3176185573876,0.0295137960181149,0.147368421052632,14.7368421052632,4,79.8128476829849,0.758177421407662,7.36842105263158,12.7051892450878,0,403.791763305664,403.138366699219,0.839496150058396
+9858,313074,3794898,313174,3794798,57,98,2.89473684210526,0.0148467008826518,4.58812762442567,0.399305555555556,44.0859174288927,0.0214461978663932,0.0789473684210526,7.89473684210526,5,70.0065362482197,0.601166180758018,3.94736842105263,35.8607880751292,7.34765291213989,405.45841217041,404.055450439453,1.85782472788911
+9859,313074,3794798,313174,3794698,58,98,7.5,0.0809820048144644,17.4641039085845,0.616666666666667,NA,0.0268742161225782,0.0875,8.75,5,69.9586770794796,0.622106754841757,5,40.7968267304557,0,405.703931808472,404.306732177734,1.53564053193592
+9860,313074,3794698,313174,3794598,59,98,14.4736842105263,0.0494890029421727,11.8515048784129,0.362654320987654,22.0263763349479,0.0319573948503699,0.231578947368421,23.1578947368421,6,82.0962871415863,0.718174679347352,10.2631578947368,27.0180663032965,0,405.549891153971,404.454864501953,1.18270157090259
+9861,313074,3794598,313174,3794498,60,98,17.6315789473684,0.0602866035841013,10.5906697304442,0.322318007662835,13.8548671861334,0.0287867914158836,0.165789473684211,16.5789473684211,6,77.5694142418221,0.738457126469745,7.10526315789474,36.8458160218738,0,406.238580703735,404.747802734375,1.04955748602101
+9862,313074,3794498,313174,3794398,61,98,21.5789473684211,0.073783604386512,16.1595253613961,0.573134857345384,17.3185838960732,0.0348383472095807,0.268421052631579,26.8421052631579,7,79.0923246097852,0.656406022722805,7.36842105263158,12.5698542080674,0,407.509038289388,406.928253173828,0.653936441624838
+9863,313074,3794398,313174,3794298,62,98,10.25,0.027668851644942,6.58694374424994,0.437345679012346,27.2767697843903,0.0373448712906611,0.245,24.5,2,91.0690285254623,0.894641782059001,20.75,27.3080586803203,5.19557523727417,408.022754669189,407.796630859375,0.416042250989109
+9864,313074,3794298,313174,3794198,63,98,28.1578947368421,0.0962786057238633,11.6559067178352,0.384159050825717,10.3911503722814,0.0302168323348604,0.3,30,2,93.9293729079781,0.826629680998613,27.8947368421053,19.134629743141,0,406.947794596354,405.452392578125,1.5626053141525
+9865,313074,3794198,313174,3794098,64,98,10,0.0128221507622902,4.40737273887961,0.271701388888889,20.4722510956191,0.0130987081163001,0.0473684210526316,4.73684210526316,2,76.1485134967922,0.883364027010436,4.47368421052632,15.3975142902798,10.3911504745483,404.602394104004,403.574981689453,1.90840179131355
+9866,313074,3794098,313174,3793998,65,98,2.36842105263158,0.0121473007221697,4.46218324100415,0.3625,47.0479346325716,0.0202811423390238,0.0736842105263158,7.36842105263158,5,65.3519428834843,0.712121212121212,4.73684210526316,30.2510726281575,5.19557523727417,402.813524881999,401.379241943359,1.9264544695214
+9867,313074,3793998,313174,3793898,66,98,0,NA,NA,NA,NA,0.00819475534532103,0.0025,0.25,1,0,NA,0.25,67.54248046875,67.54248046875,403.069910049438,401.371612548828,1.87695321219205
+9868,313074,3793898,313174,3793798,67,98,11.3157894736842,0.0580371034503662,7.1940472270001,0.359126984126984,10.3911504415562,0.0177075007821067,0.0184210526315789,1.84210526315789,1,65.5670725514463,0.872654155495979,1.84210526315789,0.74222503389631,0,404.312866210938,402.812744140625,1.66764545465265
+9869,313074,3793798,313174,3793698,68,98,7.36842105263158,0.0755832044935001,14.5231447884004,0.678571428571428,NA,0.0168390727832478,0.0236842105263158,2.36842105263158,3,46.4475313956783,0.573225516621743,1.31578947368421,35.8928705851237,31.1734504699707,406.403675079346,405.235992431641,1.07481845852639
+9870,313074,3793698,313174,3793598,69,98,9.47368421052632,0.0971784057773573,24.2725562449189,0.601851851851852,NA,0.0192642288212554,0.0289473684210526,2.89473684210526,1,73.6257888162573,0.588075880758808,2.89473684210526,37.3136763139205,31.1734504699707,407.449495315552,406.782531738281,0.730320883456108
+9871,313074,3793598,313174,3793498,70,98,10,0.0539880032096429,11.0757806374804,0.59018759018759,29.3906116192618,0.0224680683563929,0.1175,11.75,6,74.3512733781685,0.660056657223796,6,12.8162871421652,0,407.189239501953,406.611022949219,0.710016860172852
+9872,313074,3793498,313174,3793398,71,98,13.9473684210526,0.0476894028351846,10.7276390710601,0.49047619047619,40.9073601288075,0.0297857826035684,0.213157894736842,21.3157894736842,6,81.4901250299782,0.74405425492382,8.68421052631579,18.8740815998595,0,406.395526885986,405.862518310547,0.521476390289495
+9873,313074,3793398,313174,3793298,72,98,10.7894736842105,0.027668851644942,7.13935517278363,0.53587962962963,23.1451599776965,0.0173321284565765,0.0605263157894737,6.05263157894737,5,58.1846549143214,0.556489262371615,2.10526315789474,19.8162560462952,0,405.923512776693,405.777038574219,0.261527662277083
+9874,313074,3793298,313174,3793198,73,98,0,NA,NA,NA,NA,0.0193768502127281,0.1,10,3,84.2520741143971,0.788359788359788,9.21052631578947,59.9290545112208,30.2951488494873,406.399887084961,405.924346923828,0.600408744652799
+9875,313074,3793198,313174,3793098,74,98,0,NA,NA,NA,NA,0.025318189189129,0.1425,14.25,3,82.2875024061823,0.773903730588445,7.25,69.8323009557891,36.369026184082,407.501042683919,406.854187011719,1.44333409150755
+9876,313074,3793098,313174,3792998,75,98,0,NA,NA,NA,NA,0.0279060840747422,0.176315789473684,17.6315789473684,3,85.719414075855,0.792468802053467,12.6315789473684,101.501474124282,55.2297248840332,410.554279327393,408.55419921875,1.73113833431661
+9877,313074,3792998,313174,3792898,76,98,0,NA,NA,NA,NA,0.0251160215544779,0.134210526315789,13.4210526315789,2,87.9109145213436,0.893791705970723,12.6315789473684,71.1484553019206,56.1987419128418,410.906575520833,410.068542480469,0.970505635023738
+9878,313074,3792898,313174,3792798,77,98,8.94736842105263,0.091779605456393,12.229555030235,0.764705882352941,NA,0.0254776013815756,0.113157894736842,11.3157894736842,3,80.9614927993993,0.765084075173096,7.89473684210526,29.3269999082698,0,410.591548919678,409.105499267578,1.40561553135879
+9879,313074,3792798,313174,3792698,78,98,10,0.035992002139762,7.78389585886325,0.464467592592593,16.041174784539,0.0267958254579571,0.16,16,5,82.7691729881425,0.681122448979592,10.5,23.9506780654192,5.19557523727417,413.683904012044,412.67626953125,1.95554633279557
+9880,313074,3792698,313174,3792598,79,98,15.5263157894737,0.0530882031561489,12.2703700350234,0.569047619047619,28.7528763993671,0.0196778989979832,0.15,15,4,85.7334388158725,0.711884753901561,12.3684210526316,10.5178100853636,0,414.806558609009,412.969329833984,1.60052569886148
+9881,313074,3792598,313174,3792498,80,98,11.5789473684211,0.0593868035306072,13.1305998210744,0.611973775017253,11.6176592829314,0.0269298201458265,0.181578947368421,18.1578947368421,4,82.9029667802898,0.697058276421036,7.36842105263158,20.3543983818828,0,415.938268025716,415.027038574219,0.78815585492504
+9882,313074,3792498,313174,3792398,81,98,14.7368421052632,0.151166408987,24.1010007181575,0.726190476190476,NA,0.0275483542919717,0.215789473684211,21.5789473684211,4,88.2741086085556,0.815320527655635,18.1578947368421,14.5315960558449,0,416.609853744507,416.145721435547,0.4890120444933
+9883,313074,3792398,313174,3792298,82,98,10,0.107976006419286,27.0256552196449,0.620833333333333,NA,0.02837936537122,0.165,16.5,6,77.8303732148319,0.656339494923197,6.5,27.0986584822337,5.19557523727417,416.757288614909,416.464752197266,0.401953837636217
+9884,313074,3792298,313174,3792198,83,98,18.6842105263158,0.0958287056971162,11.8876900462173,0.666218637992832,15.5867255064659,0.023636513153839,0.126315789473684,12.6315789473684,7,70.1084947883777,0.595210108727593,4.47368421052632,15.1207946141561,0,416.274803161621,416.029510498047,0.359608911268499
+9885,313074,3792198,313174,3792098,84,98,23.6842105263158,0.242946014443393,25.9061723358091,0.783333333333333,NA,0.027543362093868,0.173684210526316,17.3684210526316,4,80.3290763391989,0.736914981999446,7.10526315789474,13.4630966909004,0,415.57240486145,415.074279785156,0.523868375177582
+9886,313074,3792098,313174,3791998,85,98,18.4210526315789,0.18895801123375,22.375761152245,0.788095238095238,NA,0.0297845092760996,0.228947368421053,22.8947368421053,5,83.0585481593032,0.790818011670153,9.21052631578947,20.0328146781044,0,414.675954182943,414.483276367188,0.375407213918912
+9887,313074,3791998,313174,3791898,86,98,14.75,0.159264609468447,27.468933687028,0.725988700564972,NA,0.0204698293072579,0.13,13,4,83.6307554515995,0.690042619139868,8.5,18.7045478270604,5.19557523727417,414.353303909302,414.235229492188,0.166142222063573
+9888,313074,3791898,313174,3791798,87,98,41.3157894736842,0.423805825195697,29.2478578657239,0.821656050955414,NA,0.0106735933445443,0.0868421052631579,8.68421052631579,5,67.8674268543697,0.675525669761981,3.68421052631579,9.75888058633515,0,414.207364400228,414.172424316406,0.0723177487514641
+9889,313074,3791798,313174,3791698,88,98,39.7368421052632,0.407609424232804,28.460271358645,0.837748344370861,NA,0.00977291427016577,0.0789473684210526,7.89473684210526,3,77.2249669058741,0.778425655976676,5.52631578947368,22.7597288131714,0,414.206909179688,414.171539306641,0.0551601789469521
+9890,313074,3791698,313174,3791598,89,98,12.3684210526316,0.0422906025142203,7.7194701801572,0.331481481481481,26.6449268894747,0.0329249701446602,0.223684210526316,22.3684210526316,6,80.4392923076035,0.727017622628802,8.15789473684211,20.7122777546153,0,414.328938802083,414.266510009766,0.110895366457193
+9891,313074,3791598,313174,3791498,90,98,15.75,0.0850311050551876,14.4212253690348,0.675271739130435,49.0149584653181,0.0317191808388452,0.2575,25.75,4,86.8233953098674,0.774319774319775,13.75,12.5836771992804,0,414.669248580933,414.400817871094,0.416513385967167
+9892,313074,3791498,313174,3791398,91,98,32.3684210526316,0.0664052439478608,11.2863420646257,0.416887980932925,12.9599840111703,0.0340068152871314,0.239473684210526,23.9473684210526,4,87.821759780292,0.764620445127942,16.0526315789474,4.23602015107543,0,415.909530639648,414.832000732422,1.12215714854788
+9893,313074,3791398,313174,3791298,92,98,20.7894736842105,0.0710842042260299,13.2815025047585,0.639153439153439,10.3911503722814,0.0491193168119552,0.352631578947368,35.2631578947368,4,90.8641532489471,0.816406770625083,22.1052631578947,17.8424968541558,0,417.155717849731,416.273406982422,0.845027680731579
+9894,313074,3791298,313174,3791198,93,98,26.3157894736842,0.134970008024107,16.9640292758473,0.704612437371058,54.2433972973744,0.0265808849591658,0.163157894736842,16.3157894736842,5,82.971572454282,0.75658047985092,11.8421052631579,6.42438151759486,0,418.408063252767,417.269805908203,1.3782963286802
+9895,313074,3791198,313174,3791098,94,98,39.5,0.0853010450712359,12.2626575155878,0.534322719913654,11.9208690189708,0.0449410223258019,0.39,39,4,90.485905512397,0.714399954303993,21.5,5.47943946948418,0,419.733240127563,418.59423828125,1.09854994142096
+9896,313074,3791098,313174,3790998,95,98,22.1052631578947,0.11337480674025,13.8882746593027,0.679667750090285,36.3690261817537,0.0470229876460507,0.4,40,2,93.4058389921735,0.8805256869773,22.3684210526316,9.84019383003837,0,420.253819783529,419.636566162109,0.549605368066595
+9897,313074,3790998,313174,3790898,96,98,28.6842105263158,0.0588469234985108,7.81091183897307,0.333680555555556,14.6283365049226,0.0373097109421858,0.347368421052632,34.7368421052632,2,95.0048491110041,0.777472895194753,32.6315789473684,11.6589679718018,0,421.175745010376,420.338500976562,1.15752602421728
+9898,313074,3790898,313174,3790798,97,98,3.94736842105263,0.0134970008024107,5.27007616510313,0.380952380952381,51.9557519306817,0.0249992706483585,0.147368421052632,14.7368421052632,7,71.2473622169819,0.613083874252259,5.26315789473684,32.372805425099,0,423.680531819661,422.458435058594,1.58635327190868
+9899,313074,3790798,313174,3790698,98,98,15.5,0.0418407024874733,8.83421265009704,0.565927128427128,22.2410956507986,0.0448317667172523,0.4625,46.25,4,92.2879751128698,0.711682306541548,23.75,18.381552064741,0,425.057811737061,424.879974365234,0.408521031794311
+9900,313074,3790698,313174,3790598,99,98,35.7894736842105,0.367118421825572,26.0900048660297,0.823529411764706,NA,0.0213032397171143,0.219444444444444,21.9444444444444,2,89.010734396786,0.899339095068632,14.4444444444444,19.1603171915948,0,424.462551116943,424.114624023438,0.446144415107555
+9901,313174,3800598,313274,3800498,0,99,27.7008310249307,0.0674850040120775,9.39683996315907,0.506835783151573,10.697777599945,NA,NA,NA,NA,NA,NA,NA,NA,NA,391.694409688314,390.675811767578,1.05466494103838
+9902,313174,3800498,313274,3800398,1,99,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.5913933648,392.357574462891,0.354302968727365
+9903,313174,3800398,313274,3800298,2,99,1.66204986149584,0.00809820048144931,3.13580703139918,0.291666666666667,25.9778760103754,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.772295633952,392.690979003906,0.0684916164475193
+9904,313174,3800298,313274,3800198,3,99,24.3767313019391,0.0593868035306282,10.8757413952499,0.504861111111111,16.5840538408897,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.772430419922,392.733032226562,0.0574049775619653
+9905,313174,3800198,313274,3800098,4,99,51.8005540166205,0.50478783001034,35.9306791852992,0.74777183600713,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,392.737200419108,392.707489013672,0.0686423000588168
+9906,313174,3800098,313274,3799998,5,99,32.1052631578947,0.0823317048947346,13.1716553906611,0.466421070460705,13.1997193715689,0.0116480083993843,0.00694444444444444,0.694444444444445,1,0,NA,0.694444444444445,10.3911504745483,10.3911504745483,392.810963948568,392.74169921875,0.126366722653501
+9907,313174,3799998,313274,3799898,6,99,21.8836565096953,0.213252612678165,23.8641992177649,0.789029535864979,NA,0.0291965314782079,0.257309941520468,25.7309941520468,2,90.7716228551171,0.86278148352475,20.7602339181287,23.313873832876,0,393.228711446126,392.958282470703,0.406477149037592
+9908,313174,3799898,313274,3799798,7,99,1.38504155124654,0.0134970008024155,5.19636642516254,0.333333333333333,NA,0.0410734414011009,0.333333333333333,33.3333333333333,4,87.405286768842,0.796116504854369,15.4970760233918,53.5379097252561,15.5867252349854,394.157006157769,393.871704101562,0.484675163409601
+9909,313174,3799798,313274,3799698,8,99,41.2742382271468,0.100552655977996,10.0554363710067,0.405381944444444,19.8908809784555,0.0342948562246904,0.286549707602339,28.6549707602339,4,86.4801737006122,0.800903502235469,13.4502923976608,9.26528375002803,0,394.432846069336,394.1591796875,0.423460428879102
+9910,313174,3799698,313274,3799598,9,99,43.421052631579,0.445401026479712,29.8245881163433,0.847474747474747,NA,0.0182397128018743,0.163888888888889,16.3888888888889,3,84.9186712323131,0.847566933750244,10,10.3585550502195,0,394.269107394748,394.080261230469,0.305892883606701
+9911,313174,3799598,313274,3799498,10,99,24.3767313019391,0.0593868035306282,9.0567431923768,0.48912037037037,15.5867255844029,0.0324935920789464,0.216374269005848,21.6374269005848,5,83.002415585811,0.784041331802526,11.6959064327485,21.3050317248783,0,394.180249532064,394.057250976562,0.205336346852255
+9912,313174,3799498,313274,3799398,11,99,19.9445983379501,0.0971784057773917,16.3119394744774,0.59765625,25.9778761038998,0.0237419390723198,0.172514619883041,17.2514619883041,4,80.2558920401089,0.75119517771773,9.06432748538012,23.0266898284524,0,394.108474731445,394.060150146484,0.0720047862182709
+9913,313174,3799398,313274,3799298,12,99,21.0526315789474,0.0683848040655719,12.0529419945236,0.648027898027898,20.9256336605772,0.0216046158428671,0.128654970760234,12.8654970760234,2,84.5233322514634,0.875929620896064,10.233918128655,27.6492714665153,11.6176595687866,393.898312038845,393.750854492188,0.218071617685247
+9914,313174,3799298,313274,3799198,13,99,13.4210526315789,0.0344173520461595,7.10673776274485,0.450757575757576,21.6697549930533,0.0381801083382622,0.3,30,1,95.4058239418613,0.919413919413919,30,22.6570325383434,0,393.489550272624,393.340942382812,0.210442320183429
+9915,313174,3799198,313274,3799098,14,99,3.601108033241,0.0116974006954268,3.79022032004344,0.240740740740741,44.9042970057558,0.0293947075626941,0.245614035087719,24.5614035087719,2,90.2495519826537,0.866552208521929,17.8362573099415,34.3725494316646,14.6953058242798,393.261003282335,393.222290039062,0.0798323707820865
+9916,313174,3799098,313274,3798998,15,99,10.2493074792244,0.019975561187575,6.14996521357474,0.326843434343434,21.0357011853109,0.0534539713011944,0.37719298245614,37.719298245614,2,95.8880791637201,0.904345220257717,37.4269005847953,14.630254024683,0,393.193336486816,393.179046630859,0.0227531673339581
+9917,313174,3798998,313274,3798898,16,99,1.38504155124654,0.00674850040120775,3.03075221212164,0.194444444444444,10.3911504415599,0.0385226382492199,0.257309941520468,25.7309941520468,5,86.6829640142124,0.828476854405938,20.1754385964912,32.6844679279761,0,393.179833306207,393.158203125,0.0313518451263921
+9918,313174,3798898,313274,3798798,17,99,0,NA,NA,NA,NA,0.0920659802433672,0.686111111111111,68.6111111111111,3,95.6942705081315,0.786231467647397,41.1111111111111,90.4027394283156,42.8438110351562,393.23141225179,393.157623291016,0.0994116056851245
+9919,313174,3798798,313274,3798698,18,99,0,NA,NA,NA,NA,0.0253760532897418,0.210526315789474,21.0526315789474,4,87.9752335028562,0.800524934383202,18.1286549707602,76.1819841066996,52.9846801757812,393.4624871148,393.272644042969,0.258140767424875
+9920,313174,3798698,313274,3798598,19,99,29.3628808864266,0.286136417011209,26.5906231843383,0.839622641509434,NA,0.0714094774492564,0.83625730994152,83.6257309941521,1,99.4653459653639,0.704859267126925,83.6257309941521,29.9026857372764,0,393.947466532389,393.674835205078,0.303480468601979
+9921,313174,3798598,313274,3798498,20,99,15.5124653739612,0.0755832044935268,19.4363280400489,0.574404761904762,51.9557516882196,0.0221087107803049,0.0935672514619883,9.35672514619883,4,73.5277857498316,0.724193548387097,6.14035087719298,24.4763947427273,0,394.208638509115,394.116516113281,0.182837025990651
+9922,313174,3798498,313274,3798398,21,99,17.3684210526316,0.0890802052959424,17.4213479131985,0.477595628415301,10.3911504415599,0.0178874623210302,0.172222222222222,17.2222222222222,4,81.9958671665536,0.720357941834452,11.3888888888889,27.5567061055091,0,394.034032185872,393.980163574219,0.0862014590496482
+9923,313174,3798398,313274,3798298,22,99,9.14127423822715,0.0296934017653141,6.78522077186085,0.519444444444444,32.4980163731171,0.0229567380615796,0.192982456140351,19.2982456140351,3,84.1842777374405,0.762948960302458,9.94152046783626,30.3999704375412,5.19557523727417,394.084265814887,393.987091064453,0.167388795371801
+9924,313174,3798298,313274,3798198,23,99,27.1468144044321,0.088180405242448,14.8597895442825,0.398148148148148,13.8548672554132,0.0298960444790591,0.216374269005848,21.6374269005848,9,73.4652565012549,0.548450057405281,5.55555555555556,11.3694702870137,0,394.567235310872,394.183746337891,0.535595416852486
+9925,313174,3798198,313274,3798098,24,99,21.606648199446,0.0526383031294205,7.77299869218368,0.334842995169082,24.299969968665,0.0194819915899462,0.0672514619883041,6.72514619883041,6,54.3222282935406,0.493730407523511,1.75438596491228,7.73164222551429,0,395.699598524306,395.115753173828,0.873306865097502
+9926,313174,3798098,313274,3797998,25,99,32.1052631578947,0.109775606526313,15.4202569463963,0.549516648764769,10.3911504415599,0.0151340780564371,0.05,5,5,55.3469669667765,0.532163742690059,1.94444444444444,29.1549945672353,0,396.468254089355,395.857513427734,0.810481874550936
+9927,313174,3797998,313274,3797898,26,99,4.43213296398892,0.0143968008559099,5.97059930229111,0.282407407407407,29.5375121329426,0.0363233366444004,0.277777777777778,27.7777777777778,6,84.0616525146524,0.780090497737557,11.6959064327485,32.1147656139575,0,396.223490397135,396.006042480469,0.394419008600454
+9928,313174,3797898,313274,3797798,27,99,14.6814404432133,0.0286136417011209,6.57955352022585,0.451666666666667,20.0342521708729,0.0295468608153003,0.210526315789474,21.0526315789474,5,84.2840868397992,0.710761154855643,12.280701754386,14.8543200029267,0,396.620456271701,396.196746826172,0.672187150536809
+9929,313174,3797798,313274,3797698,28,99,58.4487534626039,0.284786716930967,25.3334903195732,0.73168354283054,10.3911504415599,0.0120799077600881,0.0818713450292398,8.18713450292398,4,70.0970807043519,0.588535031847134,4.3859649122807,12.9223207405635,0,398.217074076335,397.169219970703,1.20287926409168
+9930,313174,3797698,313274,3797598,29,99,54.4736842105263,0.0798251190314289,9.99034151059478,0.482055234932933,15.5867256029593,0.0152938640240286,0.105555555555556,10.5555555555556,9,60.0884144164632,0.503105590062112,3.88888888888889,5.1943043407641,0,400.28476969401,399.43603515625,1.31375532120417
+9931,313174,3797598,313274,3797498,30,99,13.8504155124654,0.0449900026747184,10.6245032976355,0.453174603174603,29.5646721331174,0.0281556715262444,0.266081871345029,26.6081871345029,4,90.0733456115311,0.781319167773351,22.2222222222222,22.6195774392767,0,402.002499898275,400.721069335938,1.80563188720599
+9932,313174,3797498,313274,3797398,31,99,27.7008310249307,0.134970008024155,14.3312176925375,0.52205040091638,44.0859174289005,0.0120486008841876,0.192982456140351,19.2982456140351,2,90.3534467942406,0.85992438563327,17.8362573099415,12.7809174349814,0,403.320617675781,402.107788085938,1.50592520108813
+9933,313174,3797398,313274,3797298,32,99,9.14127423822715,0.0445401026479712,6.49366613928125,0.3671875,56.1987382030718,-0.00271512017483559,0.0701754385964912,7.01754385964912,2,78.0596532573456,0.858490566037736,6.14035087719298,25.8374716838201,10.3911504745483,404.607198079427,403.822387695312,0.918429635812871
+9934,313174,3797298,313274,3797198,33,99,26.8421052631579,0.275338816369276,24.1527311545179,0.838235294117647,NA,-0.00714429933219978,0.0555555555555556,5.55555555555556,2,76.1581661054724,0.863377609108159,5,8.54488263130188,0,405.680992974175,405.229248046875,0.770539235092261
+9935,313174,3797198,313274,3797098,34,99,50.9695290858726,0.248344814764445,27.3002604047938,0.729348312094791,15.5867255064659,-0.00225183973750505,0.043859649122807,4.3859649122807,5,55.1498979124707,0.572143452877398,2.92397660818713,5.36138636271159,0,406.64267985026,405.995758056641,0.780754684209134
+9936,313174,3797098,313274,3796998,35,99,28.808864265928,0.0701844041725607,16.7555286833081,0.579677510598563,12.9889379740129,0.0154443539496981,0.0467836257309941,4.67836257309941,8,40.0106743809265,0.344325153374233,2.04678362573099,10.1104474067688,0,407.873348659939,407.488677978516,0.780835218447187
+9937,313174,3796998,313274,3796898,36,99,32.9639889196676,0.10707620636583,15.3411084888442,0.630625834114206,20.7823007445652,0.0343793093847211,0.213450292397661,21.3450292397661,4,85.0743017443476,0.761617100371747,11.4035087719298,5.90123644920245,0,408.652226765951,408.4013671875,0.475240147856071
+9938,313174,3796898,313274,3796798,37,99,7.36842105263158,0.0377916022467634,9.76004059906256,0.362179487179487,44.6940278475361,0.0229055681191918,0.108333333333333,10.8333333333333,3,79.1504807715882,0.706685837526959,7.22222222222222,25.3792842473739,7.34765291213989,408.535285101997,408.276550292969,0.386357057545711
+9939,313174,3796798,313274,3796698,38,99,42.1052631578947,0.0683848040655719,9.42807159969281,0.488018925518926,19.0504423116595,0.020457746374326,0.0497076023391813,4.97076023391813,4,57.6625624120015,0.4528,2.04678362573099,5.48638464422787,0,407.983022054036,407.381134033203,0.743915073271473
+9940,313174,3796698,313274,3796598,39,99,7.4792243767313,0.0182209510832609,4.27319346623214,0.266544117647059,33.7712388311537,0.0364208137419033,0.251461988304094,25.1461988304094,5,84.8740288598925,0.729319852941177,12.8654970760234,22.2855846382851,0,405.785626729329,404.335388183594,1.42401502257199
+9941,313174,3796598,313274,3796498,40,99,36.5650969529086,0.118773607061256,13.9649293274186,0.509031198686371,19.5355530262363,0.0266114334877167,0.16374269005848,16.374269005848,4,81.6384819253655,0.815081825391104,9.06432748538012,10.3457475730351,0,404.402743869358,403.952331542969,0.730987307209182
+9942,313174,3796498,313274,3796398,41,99,22.7146814404432,0.0737836043865381,10.6242063268676,0.688181818181818,10.3911504415599,0.0109843348871766,0.0701754385964912,7.01754385964912,2,77.4880701011948,0.80188679245283,5.84795321637427,26.1419096390406,10.3911504745483,404.24213663737,403.809417724609,0.801191701806421
+9943,313174,3796398,313274,3796298,42,99,11.0526315789474,0.0188958011233817,4.88588952089336,0.300035612535613,18.7338703955519,0.0237033133234945,0.0888888888888889,8.88888888888889,5,67.4675251338743,0.662288930581614,3.88888888888889,22.0355857759714,5.19557523727417,404.145185682509,403.756652832031,0.716624660047104
+9944,313174,3796298,313274,3796198,43,99,40.7202216066482,0.198405911795508,21.1774831392228,0.658295625942685,18.7329127343573,0.0330936289681961,0.260233918128655,26.0233918128655,6,81.7703282050046,0.66843165038407,11.6959064327485,8.73057980483837,0,403.924471537272,403.436614990234,0.905148085274427
+9945,313174,3796198,313274,3796098,44,99,25.4847645429363,0.0496689629528891,12.8580410858008,0.501373626373626,18.7687637252164,0.0182576182234368,0.184210526315789,18.4210526315789,4,84.1715602779839,0.665689149560117,12.8654970760234,12.3291098201086,0,404.216803656684,403.630462646484,0.683580860985689
+9946,313174,3796098,313274,3795998,45,99,46.814404432133,0.152066209040548,17.2023568061926,0.736192548794175,14.6725397470507,3.42789827826843e-05,0.00292397660818713,0.292397660818713,1,0,NA,0.292397660818713,0,0,405.260889689128,403.932220458984,1.15900485734492
+9947,313174,3795998,313274,3795898,46,99,26.8421052631579,0.0550677632738553,9.8730398921591,0.507277167277167,26.9699202174137,-0.010340854108391,0.00277777777777778,0.277777777777778,1,0,NA,0.277777777777778,0,0,406.752183702257,406.420379638672,0.441129351391531
+9948,313174,3795898,313274,3795798,47,99,29.0858725761773,0.141718508425363,24.0193706482913,0.652305992819663,22.0429587144503,0.0306722772253571,0.114035087719298,11.4035087719298,7,68.3760298775485,0.531150038080731,4.97076023391813,8.24449187058669,0,406.717124938965,406.393951416016,0.369848973411887
+9949,313174,3795798,313274,3795698,48,99,0,NA,NA,NA,NA,0.0130649605194159,0.0146198830409357,1.46198830409357,2,44.0485388573933,0.59406528189911,1.16959064327485,66.7314949035645,47.9008369445801,406.572692871094,406.377868652344,0.3810193345299
+9950,313174,3795698,313274,3795598,49,99,15.5124653739612,0.0503888029956846,12.4623716463361,0.535033571583279,17.3185838960732,0.0189999477286205,0.0760233918128655,7.60233918128655,6,58.7250560651756,0.551250385921581,2.04678362573099,12.6985403391031,5.19557523727417,406.475491841634,406.373809814453,0.186416356655153
+9951,313174,3795598,313274,3795498,50,99,20,0.0683848040655719,15.2867374719376,0.632941254651781,22.6856468436423,0.0219832764092037,0.111111111111111,11.1111111111111,5,76.7499753904656,0.697761194029851,5.83333333333333,15.0789857029915,0,406.597686767578,406.291137695312,0.479784386709472
+9952,313174,3795498,313274,3795398,51,99,31.5789473684211,0.102577206098358,12.4955305043906,0.561805555555556,26.1493637960502,-0.00747106033855605,0.0263157894736842,2.63157894736842,2,56.3541100214224,0.657657657657658,1.46198830409357,3.46371682484945,0,406.854700724284,406.431396484375,0.639071335939063
+9953,313174,3795398,313274,3795298,52,99,32.409972299169,0.0789574546941307,15.7317507610326,0.545916603821016,13.602192468522,0.0350585142073081,0.295321637426901,29.5321637426901,5,84.8748180412421,0.647188280873891,10.8187134502924,8.29397189735186,0,406.412519666884,405.835479736328,0.735437259569008
+9954,313174,3795298,313274,3795198,53,99,1.93905817174515,0.0188958011233817,8.46257551311402,0.30952380952381,NA,0.00946069760049784,0.0584795321637427,5.84795321637427,6,51.9765470623323,0.486074934882789,2.33918128654971,30.7429587364197,5.19557523727417,405.664723714193,405.022003173828,0.709152109578104
+9955,313174,3795198,313274,3795098,54,99,11.5789473684211,0.0593868035306282,12.2629598001725,0.474254742547426,15.5867256623399,0.0120206319703155,0.105555555555556,10.5555555555556,4,72.4920006183301,0.698314108251996,5,23.5950414005079,0,404.558957417806,404.095489501953,0.597950811954864
+9956,313174,3795098,313274,3794998,55,99,6.37119113573407,0.0310431018455557,8.60742624464102,0.426388888888889,60.5902979113002,0.0119577673070641,0.0146198830409357,1.46198830409357,2,39.4712338774849,0.59406528189911,0.87719298245614,21.5408805847168,11.6176595687866,403.598893907335,403.388580322266,0.349304122456264
+9957,313174,3794998,313274,3794898,56,99,0,NA,NA,NA,NA,0.0239139639127255,0.0555555555555556,5.55555555555556,3,68.0588062869663,0.707910750507099,3.21637426900585,72.0627051905582,36.7382659912109,404.067253112793,403.511474609375,1.35853356500394
+9958,313174,3794898,313274,3794798,57,99,0,NA,NA,NA,NA,0.0209381394169963,0.0146198830409357,1.46198830409357,4,12.8255612819501,0.18813056379822,0.584795321637427,86.8874702453613,51.170482635498,407.334462483724,406.468994140625,1.30740131403772
+9959,313174,3794798,313274,3794698,58,99,0,NA,NA,NA,NA,0.0247872525834989,0.0277777777777778,2.77777777777778,4,44.856554450862,0.446153846153846,1.38888888888889,60.2985046386719,23.2353191375732,407.524874369303,406.830139160156,0.580370368804698
+9960,313174,3794698,313274,3794598,59,99,0,NA,NA,NA,NA,0.0235607091839781,0.175438596491228,17.5438596491228,6,80.5824532615834,0.743453355155483,9.64912280701754,58.6168611526489,18.7329120635986,407.059994167752,406.866790771484,0.376035804965365
+9961,313174,3794598,313274,3794498,60,99,4.43213296398892,0.0143968008559099,4.03519081601345,0.28030303030303,18.3008871078313,0.0222642658971392,0.201754385964912,20.1754385964912,4,84.3062105182044,0.834347470711107,9.94152046783626,55.5285672173984,20.7823009490967,407.227244059245,406.976135253906,0.368133039140893
+9962,313174,3794498,313274,3794398,61,99,5.26315789473684,0.017096201016393,4.61907955698414,0.484848484848485,22.5141590648952,0.0199463444341373,0.160818713450292,16.0818713450292,4,83.3753606363,0.749128919860627,8.7719298245614,52.7074799971147,37.8243598937988,407.546661376953,407.392822265625,0.288894601025831
+9963,313174,3794398,313274,3794298,62,99,18.4210526315789,0.0472395028084543,11.4388237076949,0.564860681114551,22.6944491438554,-0.00877507800385299,0.00555555555555556,0.555555555555556,1,30.9188904927171,1,0.555555555555556,15.1410155296326,14.6953058242798,407.671198527018,407.391845703125,0.553193669233909
+9964,313174,3794298,313274,3794198,63,99,29.6398891966759,0.0962786057238973,12.797936406207,0.451840560072267,10.3911504415599,0.0177562562762193,0.0350877192982456,3.50877192982456,5,45.9591396363326,0.390374331550802,1.75438596491228,9.4509361187617,0,407.41404554579,407.188903808594,0.291850556572757
+9965,313174,3794198,313274,3794098,64,99,12.1883656509695,0.0593868035306282,12.7552550850351,0.618627450980392,14.6953058096335,0.018032597089411,0.0321637426900585,3.21637426900585,4,45.2901277188333,0.448942598187311,1.16959064327485,23.2228974429044,15.5867252349854,406.625221252441,405.882263183594,1.01119579867908
+9966,313174,3794098,313274,3793998,65,99,1.38504155124654,0.0134970008024155,4.40481632700177,0.433333333333333,NA,0.0308077637927725,0.169590643274854,16.9590643274854,2,88.962961204349,0.879577464788732,15.4970760233918,28.1467396801916,10.3911504745483,405.670430501302,405.388092041016,0.967028625066531
+9967,313174,3793998,313274,3793898,66,99,0,NA,NA,NA,NA,0.0218050773322425,0.0277777777777778,2.77777777777778,3,58.9743653882982,0.525274725274725,2.22222222222222,139.083763122559,99.2613220214844,405.780855814616,405.110717773438,0.965990695034813
+9968,313174,3793898,313274,3793798,67,99,0,NA,NA,NA,NA,0.0156873746320492,0.0087719298245614,0.877192982456141,1,44.6810474176022,1,0.877192982456141,77.9336293538411,72.7380523681641,406.134016248915,405.198455810547,1.15011655402037
+9969,313174,3793798,313274,3793698,68,99,16.8975069252078,0.164663409789469,27.673523535023,0.73224043715847,NA,0.0214715458944403,0.0614035087719298,6.14035087719298,2,77.3582655851545,0.866822429906542,5.55555555555556,69.7254213605608,62.3469009399414,406.928751627604,406.581481933594,0.593444928015465
+9970,313174,3793698,313274,3793598,69,99,13.2963988919668,0.0431904025677296,10.1206302413004,0.381642512077295,17.3185838960732,0.0200136023701885,0.0204678362573099,2.04678362573099,3,40.6307136150415,0.48955223880597,1.16959064327485,19.8588792937142,5.19557523727417,408.004709879557,407.506713867188,0.519819502080014
+9971,313174,3793598,313274,3793498,70,99,15,0.0769329045737684,16.6834987176612,0.642965367965368,62.3469020258635,0.0156339116775295,0.0166666666666667,1.66666666666667,2,49.4994455391406,0.709443099273608,1.38888888888889,6.06150436401367,0,407.60339694553,407.271026611328,0.523332850669329
+9972,313174,3793498,313274,3793398,71,99,6.37119113573407,0.0310431018455557,8.48219420640562,0.526388888888889,34.8529778487965,0.0118848867201578,0.111111111111111,11.1111111111111,3,78.889937189231,0.821428571428572,6.72514619883041,31.6979371622989,15.5867252349854,406.692222595215,406.293518066406,0.471586885760401
+9973,313174,3793398,313274,3793298,72,99,14.6814404432133,0.143068208505604,18.5597195693661,0.748427672955975,NA,0.0125722563210469,0.0818713450292398,8.18713450292398,4,70.7911769260107,0.612738853503185,3.80116959064328,22.1361984525408,10.3911504745483,406.303388807509,406.18359375,0.223712828295536
+9974,313174,3793298,313274,3793198,73,99,7.75623268698061,0.0755832044935268,14.5883497259772,0.642857142857143,NA,0.0120503718106575,0.0233918128654971,2.33918128654971,3,50.7246329366872,0.488023952095808,1.75438596491228,33.0450821518898,7.34765291213989,407.50952911377,406.443206787109,1.34933892432638
+9975,313174,3793198,313274,3793098,74,99,1.31578947368421,0.00674850040120775,2.9979477666716,0.222222222222222,46.7601769870196,0.0107329181771396,0,0,0,NA,NA,0,NA,NA,409.739583333333,407.779632568359,2.75332695300505
+9976,313174,3793098,313274,3792998,75,99,0,NA,NA,NA,NA,0.0228949354360546,0.0935672514619883,9.35672514619883,6,70.6106255687666,0.681761786600496,5.55555555555556,138.728776454926,125.126022338867,412.087547302246,411.140716552734,0.937834826746742
+9977,313174,3792998,313274,3792898,76,99,0,NA,NA,NA,NA,0.0281737062624091,0.248538011695906,24.8538011695906,2,93.4267894235022,0.911871569562192,24.5614035087719,51.5778025907629,36.369026184082,411.977244059245,411.034576416016,1.00227558027617
+9978,313174,3792898,313274,3792798,77,99,17.1745152354571,0.167362809949952,18.1560997295061,0.790322580645161,NA,0.0297891568374729,0.154970760233918,15.4970760233918,3,82.0817580999572,0.817939845621507,7.89473684210526,6.43165456124072,0,411.765515645345,410.501220703125,2.42751246342421
+9979,313174,3792798,313274,3792698,78,99,0,NA,NA,NA,NA,0.0251267513982586,0.122222222222222,12.2222222222222,4,74.328049570684,0.722887444406432,4.44444444444444,39.9228906197981,15.5867252349854,415.47846476237,414.192626953125,2.28223124913466
+9980,313174,3792698,313274,3792598,79,99,21.3296398891967,0.103926906178599,15.7533272672287,0.518974960876369,25.9778758441098,0.0371140258918429,0.292397660818713,29.2397660818713,2,90.8764575673459,0.709504132231405,17.8362573099415,10.9458120679855,0,416.811546325684,416.158081054688,0.72122275520767
+9981,313174,3792598,313274,3792498,80,99,0,NA,NA,NA,NA,0.0228764691165606,0.0380116959064327,3.80116959064328,3,61.013843354169,0.768996960486322,2.92397660818713,125.334763746995,82.1492538452148,416.982069227431,416.79345703125,0.481659549023616
+9982,313174,3792498,313274,3792398,81,99,0,NA,NA,NA,NA,0.0240908109542794,0.0584795321637427,5.84795321637427,8,46.7257933510643,0.520336605890603,2.33918128654971,107.532706069946,63.206901550293,417.145136515299,416.877014160156,0.326618871797418
+9983,313174,3792398,313274,3792298,82,99,0,NA,NA,NA,NA,0.0251394761341443,0.122222222222222,12.2222222222222,7,71.2762716324906,0.67670201847417,6.11111111111111,116.281230579723,60.5902976989746,417.052588568793,416.819122314453,0.373484408624456
+9984,313174,3792298,313274,3792198,83,99,0,NA,NA,NA,NA,0.0215681055739629,0.210526315789474,21.0526315789474,6,82.266360027071,0.750656167979003,13.4502923976608,82.4375597635905,47.9008369445801,416.688112894694,416.1875,0.537994462695246
+9985,313174,3792198,313274,3792098,84,99,5.81717451523546,0.0566874033701451,12.9574192208368,0.611111111111111,NA,0.0212324554139587,0.10233918128655,10.233918128655,4,75.6758597211408,0.711894866898798,6.72514619883041,29.6202272142683,0,415.860326131185,415.514923095703,0.571810086443555
+9986,313174,3792098,313274,3791998,85,99,41.5512465373961,0.404910024072465,27.5847545269095,0.881111111111111,NA,0.0300584354140722,0.166666666666667,16.6666666666667,2,86.2524857165187,0.86530612244898,9.64912280701754,15.4282469916762,0,414.728678385417,414.496917724609,0.619551823847841
+9987,313174,3791998,313274,3791898,86,99,4.73684210526316,0.0161964009628986,3.05738320925165,0.211805555555556,36.369026302989,0.0140774218551978,0.0333333333333333,3.33333333333333,2,67.6959263403027,0.574036511156187,2.77777777777778,12.1017262538274,7.34765291213989,414.338483174642,414.246887207031,0.119121137785859
+9988,313174,3791898,313274,3791798,87,99,91.9667590027701,0.89620085328039,36.3050126188709,0.918172690763052,NA,0.0174970540434164,0.0497076023391813,4.97076023391813,3,64.7434624572858,0.705353846153846,2.92397660818713,0.305622072780834,0,414.235182020399,414.196624755859,0.0575787740827123
+9989,313174,3791798,313274,3791698,88,99,98.3379501385042,0.958287056971501,37.3304523616471,0.930046948356808,NA,-0.00675678512612776,0,0,0,NA,NA,0,NA,NA,414.246320088704,414.198944091797,0.0556049142739242
+9990,313174,3791698,313274,3791598,89,99,26.3157894736842,0.128221507622947,13.6581941635519,0.705153949129853,39.5683217016104,0.024827212472202,0.178362573099415,17.8362573099415,3,85.8260337560299,0.839253340495535,10.8187134502924,16.3730073522349,0,414.314609103733,414.275909423828,0.0657347175753388
+9991,313174,3791598,313274,3791498,90,99,30.7894736842105,0.157914909388261,16.2965880013467,0.626126126126126,11.6176592829322,0.0213865930231906,0.0861111111111111,8.61111111111111,2,78.7371593159095,0.846808510638298,5.27777777777778,8.16413002629434,0,414.494155883789,414.382141113281,0.172463514843761
+9992,313174,3791498,313274,3791398,91,99,0,NA,NA,NA,NA,0.0178087963079298,0.0409356725146199,4.09356725146199,3,64.6035566227814,0.530792682926829,2.92397660818713,24.3634025028774,15.5867252349854,415.054531521267,414.753479003906,0.835838605045696
+9993,313174,3791398,313274,3791298,92,99,0.831024930747922,0.00809820048144931,3.46371677921464,0.222222222222222,NA,0.024625453497507,0.0672514619883041,6.72514619883041,4,65.453534795373,0.58307210031348,3.21637426900585,25.8071266671886,5.19557523727417,417.602391560872,416.187103271484,1.47435992765158
+9994,313174,3791298,313274,3791198,93,99,14.9584487534626,0.0728838043330438,15.965043062371,0.622532894736842,10.3911503376439,0.0306206628606959,0.207602339181287,20.7602339181287,4,85.2199207549106,0.777889298892989,14.327485380117,10.7759862886348,0,419.969156901042,418.948913574219,1.45882700918018
+9995,313174,3791198,313274,3791098,94,99,4.47368421052632,0.0458898027282127,8.75928558894226,0.676470588235294,NA,0.0291683874652436,0.169444444444444,16.9444444444444,8,70.7977717609269,0.534296712311478,5.55555555555556,29.2063353960631,0,421.507837931315,420.634246826172,0.992895332714625
+9996,313174,3791098,313274,3790998,95,99,10.803324099723,0.0263191515647102,5.38710700090491,0.380997474747475,33.7712388051747,0.0175015807141327,0.0730994152046784,7.30994152046784,3,69.0778531697809,0.676340694006309,3.21637426900585,11.2642728424072,0,421.611518012153,420.677490234375,1.22015874431802
+9997,313174,3790998,313274,3790898,96,99,36.8421052631579,0.179510110672126,22.9002550435727,0.702014907989751,15.5867255064659,0.045866235924781,0.505847953216374,50.5847953216374,3,96.6798498396877,0.892155589768322,49.7076023391813,5.73303926886851,0,422.091405232747,420.950714111328,1.44213897526474
+9998,313174,3790898,313274,3790798,97,99,8.58725761772853,0.0418407024874881,8.26260775564519,0.475198412698413,10.3911504415599,0.0413706699986378,0.339181286549708,33.9181286549708,3,94.16934106666,0.783817951959545,31.8713450292398,22.6480633225934,0,423.714331732856,422.811096191406,1.22103700496602
+9999,313174,3790798,313274,3790698,98,99,8.94736842105263,0.0917796054564255,17.4730998330783,0.637254901960784,NA,0.0195721318919014,0.122222222222222,12.2222222222222,6,73.8791645676109,0.599726308587068,6.38888888888889,26.941715944897,0,424.804461161296,424.673095703125,0.305148526764751
+10000,313174,3790698,313274,3790598,99,99,1.66204986149584,0.0161964009628986,4.73848229777405,0.5,NA,0.0203263453523044,0.0987654320987654,9.87654320987654,6,65.0810961403902,0.551896733403583,3.39506172839506,40.7271429598331,10.3911504745483,424.266672770182,423.653259277344,0.594891154045404
diff --git a/data/results/xian_grid_metrics.gpkg b/data/results/xian_grid_metrics.gpkg
new file mode 100644
index 00000000..5dde626b
Binary files /dev/null and b/data/results/xian_grid_metrics.gpkg differ
diff --git a/data/results/xian_typology.gpkg b/data/results/xian_typology.gpkg
new file mode 100644
index 00000000..bcc46bf1
Binary files /dev/null and b/data/results/xian_typology.gpkg differ
diff --git a/data/results/xian_typology_with_combined_types.gpkg b/data/results/xian_typology_with_combined_types.gpkg
new file mode 100644
index 00000000..643f819f
Binary files /dev/null and b/data/results/xian_typology_with_combined_types.gpkg differ
diff --git a/docs/figures/discussion/delft_water_depth_intense_rainfall.png b/docs/figures/discussion/delft_water_depth_intense_rainfall.png
new file mode 100644
index 00000000..978cfec7
Binary files /dev/null and b/docs/figures/discussion/delft_water_depth_intense_rainfall.png differ
diff --git a/docs/figures/preliminary/delft_floodmask_change.png b/docs/figures/preliminary/delft_floodmask_change.png
new file mode 100644
index 00000000..3d84c19e
Binary files /dev/null and b/docs/figures/preliminary/delft_floodmask_change.png differ
diff --git a/docs/figures/preliminary/delft_study_area_context_map.png b/docs/figures/preliminary/delft_study_area_context_map.png
new file mode 100644
index 00000000..56a428bd
Binary files /dev/null and b/docs/figures/preliminary/delft_study_area_context_map.png differ
diff --git a/docs/figures/preliminary/green_binary.png b/docs/figures/preliminary/green_binary.png
new file mode 100644
index 00000000..5e675a37
Binary files /dev/null and b/docs/figures/preliminary/green_binary.png differ
diff --git a/docs/figures/preliminary/grid_methodology.png b/docs/figures/preliminary/grid_methodology.png
new file mode 100644
index 00000000..4f80ef42
Binary files /dev/null and b/docs/figures/preliminary/grid_methodology.png differ
diff --git a/docs/figures/preliminary/xian_floodmask_change.png b/docs/figures/preliminary/xian_floodmask_change.png
new file mode 100644
index 00000000..c901cf53
Binary files /dev/null and b/docs/figures/preliminary/xian_floodmask_change.png differ
diff --git a/docs/figures/preliminary/xian_study_area_context_map.png b/docs/figures/preliminary/xian_study_area_context_map.png
new file mode 100644
index 00000000..e169998f
Binary files /dev/null and b/docs/figures/preliminary/xian_study_area_context_map.png differ
diff --git a/docs/figures/results/combined_typologies/delft_green_flood_dem_type_context.png b/docs/figures/results/combined_typologies/delft_green_flood_dem_type_context.png
new file mode 100644
index 00000000..7e92b46b
Binary files /dev/null and b/docs/figures/results/combined_typologies/delft_green_flood_dem_type_context.png differ
diff --git a/docs/figures/results/combined_typologies/delft_green_flood_dem_type_context_overview.png b/docs/figures/results/combined_typologies/delft_green_flood_dem_type_context_overview.png
new file mode 100644
index 00000000..2d5ed3b6
Binary files /dev/null and b/docs/figures/results/combined_typologies/delft_green_flood_dem_type_context_overview.png differ
diff --git a/docs/figures/results/combined_typologies/delft_green_flood_type_context_overview.png b/docs/figures/results/combined_typologies/delft_green_flood_type_context_overview.png
new file mode 100644
index 00000000..d53be657
Binary files /dev/null and b/docs/figures/results/combined_typologies/delft_green_flood_type_context_overview.png differ
diff --git a/docs/figures/results/combined_typologies/green_flood_dem_elbow.png b/docs/figures/results/combined_typologies/green_flood_dem_elbow.png
new file mode 100644
index 00000000..052cabaa
Binary files /dev/null and b/docs/figures/results/combined_typologies/green_flood_dem_elbow.png differ
diff --git a/docs/figures/results/combined_typologies/xian_green_flood_dem_type_context.png b/docs/figures/results/combined_typologies/xian_green_flood_dem_type_context.png
new file mode 100644
index 00000000..f5f691ff
Binary files /dev/null and b/docs/figures/results/combined_typologies/xian_green_flood_dem_type_context.png differ
diff --git a/docs/figures/results/combined_typologies/xian_green_flood_dem_type_context_overview.png b/docs/figures/results/combined_typologies/xian_green_flood_dem_type_context_overview.png
new file mode 100644
index 00000000..e5066f18
Binary files /dev/null and b/docs/figures/results/combined_typologies/xian_green_flood_dem_type_context_overview.png differ
diff --git a/docs/figures/results/combined_typologies/xian_green_flood_type_context_overview.png b/docs/figures/results/combined_typologies/xian_green_flood_type_context_overview.png
new file mode 100644
index 00000000..053e2091
Binary files /dev/null and b/docs/figures/results/combined_typologies/xian_green_flood_type_context_overview.png differ
diff --git a/docs/figures/results/correlation_overview.png b/docs/figures/results/correlation_overview.png
new file mode 100644
index 00000000..56b30d28
Binary files /dev/null and b/docs/figures/results/correlation_overview.png differ
diff --git a/docs/figures/results/delft_area.png b/docs/figures/results/delft_area.png
new file mode 100644
index 00000000..005903a2
Binary files /dev/null and b/docs/figures/results/delft_area.png differ
diff --git a/docs/figures/results/delft_contig.png b/docs/figures/results/delft_contig.png
new file mode 100644
index 00000000..d162a4df
Binary files /dev/null and b/docs/figures/results/delft_contig.png differ
diff --git a/docs/figures/results/delft_elevation_mean_context.png b/docs/figures/results/delft_elevation_mean_context.png
new file mode 100644
index 00000000..971c539c
Binary files /dev/null and b/docs/figures/results/delft_elevation_mean_context.png differ
diff --git a/docs/figures/results/delft_enn.png b/docs/figures/results/delft_enn.png
new file mode 100644
index 00000000..30e7e17d
Binary files /dev/null and b/docs/figures/results/delft_enn.png differ
diff --git a/docs/figures/results/delft_flood_clumpy.png b/docs/figures/results/delft_flood_clumpy.png
new file mode 100644
index 00000000..566ee138
Binary files /dev/null and b/docs/figures/results/delft_flood_clumpy.png differ
diff --git a/docs/figures/results/delft_flood_share_context.png b/docs/figures/results/delft_flood_share_context.png
new file mode 100644
index 00000000..b830db27
Binary files /dev/null and b/docs/figures/results/delft_flood_share_context.png differ
diff --git a/docs/figures/results/delft_fwei_change_mean_context.png b/docs/figures/results/delft_fwei_change_mean_context.png
new file mode 100644
index 00000000..36b29959
Binary files /dev/null and b/docs/figures/results/delft_fwei_change_mean_context.png differ
diff --git a/docs/figures/results/delft_green_percent_context.png b/docs/figures/results/delft_green_percent_context.png
new file mode 100644
index 00000000..5590bba6
Binary files /dev/null and b/docs/figures/results/delft_green_percent_context.png differ
diff --git a/docs/figures/results/delft_gyrate.png b/docs/figures/results/delft_gyrate.png
new file mode 100644
index 00000000..33197367
Binary files /dev/null and b/docs/figures/results/delft_gyrate.png differ
diff --git a/docs/figures/results/delft_np_flood.png b/docs/figures/results/delft_np_flood.png
new file mode 100644
index 00000000..63d01b27
Binary files /dev/null and b/docs/figures/results/delft_np_flood.png differ
diff --git a/docs/figures/results/delft_slope_mean.png b/docs/figures/results/delft_slope_mean.png
new file mode 100644
index 00000000..042bf02a
Binary files /dev/null and b/docs/figures/results/delft_slope_mean.png differ
diff --git a/docs/figures/results/delft_typology.png b/docs/figures/results/delft_typology.png
new file mode 100644
index 00000000..dfe2c5a7
Binary files /dev/null and b/docs/figures/results/delft_typology.png differ
diff --git a/docs/figures/results/metric_selection/metric_redundancy_heatmap.png b/docs/figures/results/metric_selection/metric_redundancy_heatmap.png
new file mode 100644
index 00000000..034e1215
Binary files /dev/null and b/docs/figures/results/metric_selection/metric_redundancy_heatmap.png differ
diff --git a/docs/figures/results/metric_selection/redundant_metric_decisions_table.png b/docs/figures/results/metric_selection/redundant_metric_decisions_table.png
new file mode 100644
index 00000000..3a4a97d0
Binary files /dev/null and b/docs/figures/results/metric_selection/redundant_metric_decisions_table.png differ
diff --git a/docs/figures/results/xian_area.png b/docs/figures/results/xian_area.png
new file mode 100644
index 00000000..bd334de2
Binary files /dev/null and b/docs/figures/results/xian_area.png differ
diff --git a/docs/figures/results/xian_contig.png b/docs/figures/results/xian_contig.png
new file mode 100644
index 00000000..f2168b1c
Binary files /dev/null and b/docs/figures/results/xian_contig.png differ
diff --git a/docs/figures/results/xian_elevation_mean_context.png b/docs/figures/results/xian_elevation_mean_context.png
new file mode 100644
index 00000000..e7aca07a
Binary files /dev/null and b/docs/figures/results/xian_elevation_mean_context.png differ
diff --git a/docs/figures/results/xian_enn.png b/docs/figures/results/xian_enn.png
new file mode 100644
index 00000000..6c99febb
Binary files /dev/null and b/docs/figures/results/xian_enn.png differ
diff --git a/docs/figures/results/xian_flood_clumpy.png b/docs/figures/results/xian_flood_clumpy.png
new file mode 100644
index 00000000..e4c79967
Binary files /dev/null and b/docs/figures/results/xian_flood_clumpy.png differ
diff --git a/docs/figures/results/xian_flood_share_context.png b/docs/figures/results/xian_flood_share_context.png
new file mode 100644
index 00000000..efafb244
Binary files /dev/null and b/docs/figures/results/xian_flood_share_context.png differ
diff --git a/docs/figures/results/xian_fwei_change_mean_context.png b/docs/figures/results/xian_fwei_change_mean_context.png
new file mode 100644
index 00000000..51c580b5
Binary files /dev/null and b/docs/figures/results/xian_fwei_change_mean_context.png differ
diff --git a/docs/figures/results/xian_green_percent_context.png b/docs/figures/results/xian_green_percent_context.png
new file mode 100644
index 00000000..d24eb74e
Binary files /dev/null and b/docs/figures/results/xian_green_percent_context.png differ
diff --git a/docs/figures/results/xian_gyrate.png b/docs/figures/results/xian_gyrate.png
new file mode 100644
index 00000000..8ab39f32
Binary files /dev/null and b/docs/figures/results/xian_gyrate.png differ
diff --git a/docs/figures/results/xian_np_flood.png b/docs/figures/results/xian_np_flood.png
new file mode 100644
index 00000000..440e452f
Binary files /dev/null and b/docs/figures/results/xian_np_flood.png differ
diff --git a/docs/figures/results/xian_slope_mean.png b/docs/figures/results/xian_slope_mean.png
new file mode 100644
index 00000000..483baf1b
Binary files /dev/null and b/docs/figures/results/xian_slope_mean.png differ
diff --git a/docs/figures/results/xian_typology.png b/docs/figures/results/xian_typology.png
new file mode 100644
index 00000000..0f4f94ed
Binary files /dev/null and b/docs/figures/results/xian_typology.png differ
diff --git a/docs/index.html b/docs/index.html
new file mode 100644
index 00000000..03203491
--- /dev/null
+++ b/docs/index.html
@@ -0,0 +1,738 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Introduction
+The present document is the report of Group C for the course Applied Spatial Analysis for Sustainable Urban Development (ARFW0501).
+The repository of this report can be found here .
+This project investigates the relationship between green space configuration and pluvial flood related surface water change in Delft and Xi’an. Because comparable pluvial flood risk maps were not available for both cities, the Flood/Water Extraction Index (FWEI) was used as a shared proxy for detected surface water change (Farhadi et al. 2024 ) .
+The report compares two different urban contexts using the same spatial workflow. The main aim is to explore whether the amount and configuration of green space are associated with higher or lower detected surface water patterns.
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/search.json b/docs/search.json
new file mode 100644
index 00000000..8a11f6de
--- /dev/null
+++ b/docs/search.json
@@ -0,0 +1,496 @@
+[
+ {
+ "objectID": "index.html",
+ "href": "index.html",
+ "title": "Green Space Configuration and Pluvial Flooding",
+ "section": "",
+ "text": "Introduction\nThe present document is the report of Group C for the course Applied Spatial Analysis for Sustainable Urban Development (ARFW0501).\nThe repository of this report can be found here.\nThis project investigates the relationship between green space configuration and pluvial flood related surface water change in Delft and Xi’an. Because comparable pluvial flood risk maps were not available for both cities, the Flood/Water Extraction Index (FWEI) was used as a shared proxy for detected surface water change (Farhadi et al. 2024).\nThe report compares two different urban contexts using the same spatial workflow. The main aim is to explore whether the amount and configuration of green space are associated with higher or lower detected surface water patterns.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "Introduction"
+ ]
+ },
+ {
+ "objectID": "sections/problem_statement.html",
+ "href": "sections/problem_statement.html",
+ "title": "1 Problem statement",
+ "section": "",
+ "text": "1.1 Background\nPluvial flooding is a relevant issue in urban areas. It occurs when intense rainfall creates overland flow or surface ponding before water can enter drainage systems, canals, rivers, or other water bodies (Prokić et al. 2019). In cities, impervious surfaces such as roads, roofs, and pavements can reduce infiltration and increase the amount of water remaining on the surface.\nGreen infrastructure is often discussed as one way to reduce urban flooding. Green spaces can absorb, store, and slow down rainwater, which may reduce pressure on drainage systems. Stormwater management and flood mitigation are therefore important ecosystem services in green infrastructure planning (Meerow 2019). However, the amount of green space alone is not enough to understand its possible role. The spatial configuration of green space also matters.\nFor example, one large connected park may function differently from many small isolated green patches. Green spaces can differ in size, compactness, connectivity, and fragmentation. These spatial properties may influence how green areas relate to runoff, storage, and surface water accumulation. Previous work also shows that spatial distribution and connectivity are important in green infrastructure planning (Brom et al. 2023).\nThis project focuses on both the quantity and spatial configuration of green space, and examines how these relate to satellite detected surface water change in two contrasting urban and climatic settings. Xi’an, China, experienced a severe pluvial flood event on 11 August 2023 after extreme rainfall. Delft, the Netherlands, was used as a non event comparison case using dates where major pluvial flooding was not expected in the study area.",
+ "crumbs": [
+ "1 Problem statement "
+ ]
+ },
+ {
+ "objectID": "sections/problem_statement.html#research-gap",
+ "href": "sections/problem_statement.html#research-gap",
+ "title": "1 Problem statement",
+ "section": "1.2 Research gap",
+ "text": "1.2 Research gap\nStudies linking green infrastructure to flood risk reduction are well established in the literature (Sarabi et al. 2022), but cross city comparisons remain difficult. Cities differ in size, climate, data availability, spatial resolution, and land cover structure. Delft and Xi’an are very different in scale and context, so comparing their full administrative areas directly would not be meaningful.\nA second challenge was that directly comparable pluvial flood datasets did not exist for both cities. For this reason, the project uses the Flood Water Extraction Index (FWEI) as a shared method for detecting surface water change from Sentinel 2 satellite imagery (Farhadi et al. 2024). For Xi’an, the FWEI before and after comparison captures the surface water change caused by the 11 August 2023 flood event. For Delft, the same method applied to two non event dates serves as a control case, expected to show minimal surface water change. This design, with one city affected by a real flood event and one control case, strengthens the ability to interpret what the FWEI derived signals represent.",
+ "crumbs": [
+ "1 Problem statement "
+ ]
+ },
+ {
+ "objectID": "sections/problem_statement.html#working-assumption",
+ "href": "sections/problem_statement.html#working-assumption",
+ "title": "1 Problem statement",
+ "section": "1.3 Working assumption",
+ "text": "1.3 Working assumption\nThe main assumption is that green space configuration influences how pluvial surface water appears across the urban landscape. More connected and compact green areas are expected to relate differently to surface water than fragmented or isolated green patches.\nThe project also assumes that this relationship is affected by topography. Therefore, elevation and slope are included in the final typology.",
+ "crumbs": [
+ "1 Problem statement "
+ ]
+ },
+ {
+ "objectID": "sections/problem_statement.html#research-question",
+ "href": "sections/problem_statement.html#research-question",
+ "title": "1 Problem statement",
+ "section": "1.4 Research question",
+ "text": "1.4 Research question\nHow does the spatial configuration of green spaces influence pluvial flooding in urban areas such as Delft and Xi’an?",
+ "crumbs": [
+ "1 Problem statement "
+ ]
+ },
+ {
+ "objectID": "sections/problem_statement.html#sub-questions",
+ "href": "sections/problem_statement.html#sub-questions",
+ "title": "1 Problem statement",
+ "section": "1.5 Sub questions",
+ "text": "1.5 Sub questions\n\nHow can green space configuration and flood related surface water patterns be measured and compared between Delft and Xi’an?\nWhat spatial patterns can be identified when green space, flood related, and topographic indicators are combined?\nHow do the identified patterns differ between Delft and Xi’an, and what do they suggest for urban flood related planning?\n\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "1 Problem statement "
+ ]
+ },
+ {
+ "objectID": "sections/preliminary.html",
+ "href": "sections/preliminary.html",
+ "title": "2 Preliminary maps and research",
+ "section": "",
+ "text": "2.1 Study area selection\nThe study areas were selected to make the comparison between Delft and Xi’an more balanced. Because the full cities are very different in size, both cases were analysed using the same 10 km by 10 km study-area extent. This allowed the project to compare two contrasting urban contexts without relying on full administrative boundaries.\nFor Delft, the selected area includes the city itself and parts of the surrounding urban and rural landscape. For Xi’an, the selected area focuses on a central urban section that includes dense urban fabric, green patches, and major open spaces. The aim was not to make the two cities identical, but to apply the same spatial logic to two different urban settings.\nThe maps above show the selected study areas in their wider urban context. They also show that the comparison is based on equally sized areas, rather than on the full administrative extent of both cities.",
+ "crumbs": [
+ "2 Preliminary maps and research "
+ ]
+ },
+ {
+ "objectID": "sections/preliminary.html#study-area-selection",
+ "href": "sections/preliminary.html#study-area-selection",
+ "title": "2 Preliminary maps and research",
+ "section": "",
+ "text": "Figure 2.1: Study area context map for Delft.\n\n\n\n\n\n\n\n\n\n\n\nFigure 2.2: Study area context map for Xi’an.",
+ "crumbs": [
+ "2 Preliminary maps and research "
+ ]
+ },
+ {
+ "objectID": "sections/preliminary.html#delft-and-xian-as-comparison-cases",
+ "href": "sections/preliminary.html#delft-and-xian-as-comparison-cases",
+ "title": "2 Preliminary maps and research",
+ "section": "2.2 Delft and Xi’an as comparison cases",
+ "text": "2.2 Delft and Xi’an as comparison cases\nDelft and Xi’an represent clearly different urban contexts. Delft is a smaller Dutch city in a low lying delta setting with a dense water network and a highly managed urban landscape. Xi’an is a much larger Chinese city with a different urban structure, land cover pattern, and topographic setting.\nFor Delft, the 10 km by 10 km study area fully contains the city. This is useful because Delft is relatively compact, so the selected area includes both the municipality and the surrounding landscape. The municipality boundary is shown inside the study area to make clear where Delft itself is located. This also gives context for surrounding canals, green areas, urban edges, and open landscapes, which are relevant for understanding green space configuration and flood related surface water patterns.\nFor Xi’an, the same 10 km by 10 km study area does not cover the full city. Instead, it captures a central urban subset. This area was selected because it includes the historic city centre and city wall, but also large green and heritage spaces such as Weiyang Palace Relics Park, Hancheng Lake, and Daming Palace National Heritage Park. This makes the area useful for comparing dense urban fabric with larger green and open spaces within the same study area size.\nThe comparison is therefore not based on the idea that Delft and Xi’an are similar cities. Instead, they are used as contrasting cases. This makes it possible to test whether the same spatial workflow can still identify meaningful green space and flood related patterns in both places.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "2 Preliminary maps and research "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html",
+ "href": "sections/methods.html",
+ "title": "3 Methods",
+ "section": "",
+ "text": "3.1 General workflow\nThe analysis was carried out using a grid based spatial workflow. The same general method was applied to both Delft and Xi’an, so that the results could be compared between the two cities. The main steps were: preparing the input data, clipping the layers to the selected study areas, calculating metrics per grid cell, checking metric redundancy, and constructing combined typologies.\nThe workflow was implemented mainly in R, using the packages terra, sf, landscapemetrics, dplyr, and ggplot2. QGIS was used for initial data preparation, FWEI calculation, flood mask creation, study area clipping of change rasters, and map production. The complete FWEI and flood mask workflow is described in detail in the preceding chapter.\nThe workflow converts the input layers into comparable grid cell metrics, which are then used for metric selection, correlation analysis, and combined typology construction.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#general-workflow",
+ "href": "sections/methods.html#general-workflow",
+ "title": "3 Methods",
+ "section": "",
+ "text": "Figure 3.1: Grid-based methodology used for comparing Delft and Xi’an.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#flood-water-extraction-index-fwei",
+ "href": "sections/methods.html#flood-water-extraction-index-fwei",
+ "title": "3 Methods",
+ "section": "3.2 Flood water extraction index (FWEI)",
+ "text": "3.2 Flood water extraction index (FWEI)\nThe main flood related input used in this project was the Flood/Water Extraction Index, or FWEI. FWEI is a spectral index developed to identify water and flooded areas from Sentinel 2 visible and near infrared bands (Farhadi et al. 2024). It uses four Sentinel 2 bands at 10 m spatial resolution: blue, green, red, and near infrared.\nThe FWEI formula is:\n\\[\nFWEI = \\frac{MeanVisible - B08}{MeanVisible + B08}\n\\]\nwhere:\n\\[\nMeanVisible = \\frac{B02 + B03 + B04}{3}\n\\]\nIn this formula, B02 is the blue band, B03 is the green band, B04 is the red band, and B08 is the near infrared band. Water surfaces usually reflect strongly in the visible bands and absorb near infrared radiation. Because of this, open water and flooded surfaces tend to produce higher FWEI values, while dry surfaces and vegetation tend to produce lower values.\nFor Xi’an, the two Sentinel 2 acquisition dates, 22 July 2023 before the event and 16 August 2023 after the event, bracket the documented flood of 11 August 2023. For Delft, the acquisition dates of 14 June 2023 and 7 September 2023 represent a non event period. The same FWEI and flood mask workflow was applied to both image pairs, so that a surface water change signal could be produced for each city.\nIn this project, FWEI was used in two ways. First, the before and after FWEI rasters were used to calculate a continuous FWEI change raster:\n\\[\nFWEI_{change} = FWEI_{after} - FWEI_{before}\n\\]\nThis continuous raster was used to calculate fwei_change_mean for each grid cell. This metric represents the average FWEI derived surface water change inside the cell.\nSecond, the same FWEI change raster was converted into a binary surface water increase layer. A threshold of 0.05 was used. Pixels with an FWEI change above this threshold were classified as detected surface water increase, while pixels below the threshold were classified as no detected surface water increase.\nThis binary flood mask was then used to calculate flood_share and the flood pattern metrics. Therefore, the analysis did not only use the continuous FWEI value. It used both the continuous FWEI change raster and the thresholded binary flood mask. Below\n\n\n\n\n\n\nDelft FWEI flood mask change.\n\n\n\n\n\n\n\nXi’an FWEI flood mask change.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#green-binary-dataset",
+ "href": "sections/methods.html#green-binary-dataset",
+ "title": "3 Methods",
+ "section": "3.3 Green binary dataset",
+ "text": "3.3 Green binary dataset\nGreen space was represented with binary green space rasters. In these rasters, green areas were given the value 1, while all non green areas were given the value 0. This binary format allowed the green space layer to be analysed as categorical raster data when calculating the patch based landscape metrics in R.\nAt the beginning of the project, more general land cover and satellite based datasets were explored for the green space layer, including ESA WorldCover 2021 v200 and the China Land Cover Dataset 2022 for Xi’an. However, these datasets were not detailed enough for the final analysis. Since the project focused on the spatial structure of green space, including fragmentation, configuration, and patch patterns, a more detailed green space input was needed.\nFor Delft, the final green space layer was based on a local dataset from the Klimaatatlas. This dataset was processed in QGIS and converted into a binary raster, so that green space and non green space could be clearly separated. For Xi’an, the final green space layer came from the Urban green space (UGS) 1m dataset, which provides detailed urban green space data for several large Chinese cities at around 1 m resolution (Shi et al. 2023). This layer was also converted into a binary raster before it was used for the landscape metric analysis in R. The binary green space rasters, cropped to the Delft and Xi’an study areas, are shown below.\n\n\n\nBinary green space rasters cropped to the Delft and Xi’an study areas.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#data-preparation",
+ "href": "sections/methods.html#data-preparation",
+ "title": "3 Methods",
+ "section": "3.4 Data preparation",
+ "text": "3.4 Data preparation\nBefore the analysis, all spatial layers were prepared for the two selected study areas. The main input layers were green space rasters, pre event and post event FWEI rasters, the clipped flood change rasters, DEM rasters, and context layers for mapping. The layers were checked, clipped to the study areas, and transformed to the correct coordinate reference systems where needed.\nFor Delft, the projected coordinate system used in the workflow was EPSG:28992. For Xi’an, the projected coordinate system used in the workflow was EPSG:32649. Using projected coordinate systems was important because the analysis involved distances, grid cells, patch metrics, and slope calculations.\nThe main preprocessing steps were:\n\n\n\n\n\n\n\nStep\nPurpose\n\n\n\n\nStudy-area clipping\nTo make all layers match the selected 10 km by 10 km areas.\n\n\nCRS alignment\nTo make sure layers overlap correctly and can be measured in metres.\n\n\nRaster alignment\nTo make raster layers comparable before extracting grid-cell values.\n\n\nBinary green-space preparation\nTo separate green and non-green areas.\n\n\nFWEI difference calculation\nTo estimate surface water change between the before and after images.\n\n\nDEM preparation\nTo calculate elevation and slope values for each grid cell.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#grid-based-spatial-unit",
+ "href": "sections/methods.html#grid-based-spatial-unit",
+ "title": "3 Methods",
+ "section": "3.5 Grid based spatial unit",
+ "text": "3.5 Grid based spatial unit\nBoth cities were analysed using a 100 m by 100 m grid, resulting in 10,000 grid cells per study area. The grid was used as the common spatial unit for summarising green space, FWEI derived flood, and DEM variables. This allowed raster and vector inputs with different resolutions to be converted into comparable metric tables for Delft and Xi’an.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#metric-calculation-and-selection",
+ "href": "sections/methods.html#metric-calculation-and-selection",
+ "title": "3 Methods",
+ "section": "3.6 Metric calculation and selection",
+ "text": "3.6 Metric calculation and selection\nAfter preparing the input layers, green-space, FWEI-derived flood, and Digital Elevation Model (DEM) variables were calculated for each grid cell. This produced one metric table for Delft and one for Xi’an.\nThe green-space rasters were binary, with green space coded as 1 and non-green space as 0. They were aggregated to approximately 5 m resolution to reduce processing time. For each grid cell, green coverage and patch-based landscape metrics were calculated.\nFor the flood-related metrics, the continuous FWEI change raster was used to calculate mean surface-water change per cell. The same raster was also converted into a binary flood mask using a threshold of 0.05. This mask was used to calculate flood_share and flood-pattern metrics.\nDEM data were used to calculate elevation and slope per grid cell. A broader set of metrics was first produced, after which redundant metrics were removed. The final metric selection is explained in the next chapter.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#pearson-correlation-analysis",
+ "href": "sections/methods.html#pearson-correlation-analysis",
+ "title": "3 Methods",
+ "section": "3.7 Pearson correlation analysis",
+ "text": "3.7 Pearson correlation analysis\nPearson correlation analysis was used to test the relationship between selected green space metrics and FWEI derived flood indicators. Pearson’s correlation coefficient, or r, measures the direction and strength of a linear relationship between two variables. Values range from -1 to +1. Positive values indicate that both variables tend to increase together, while negative values indicate that one variable tends to decrease as the other increases.\nIn this project, the strength of the correlation values was interpreted as follows:\n\n|r| < 0.10: negligible relationship\n|r| = 0.10 to 0.29: weak relationship\n|r| = 0.30 to 0.49: moderate relationship\n|r| >= 0.50: strong relationship\n\nStatistical significance was assessed using p < 0.05. However, significance was interpreted separately from practical strength, because a statistically significant result can still represent a weak relationship.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#combined-typology-construction",
+ "href": "sections/methods.html#combined-typology-construction",
+ "title": "3 Methods",
+ "section": "3.8 Combined typology construction",
+ "text": "3.8 Combined typology construction\nK-means clustering was used to group grid cells into combined typologies. The final typology used the selected green, FWEI derived flood, and DEM metrics. Before clustering, the variables were standardised using scale(), so that variables with larger numerical ranges did not dominate the result.\nA green+flood typology was first created as an intermediate check. The final typology used green+flood+DEM variables, because topography was considered important for interpreting surface water accumulation.\nFour clusters were used. The elbow plot did not show one perfect cluster number, but four clusters were selected because they gave a manageable and interpretable set of spatial types. The same clustering was applied as a shared typology for Delft and Xi’an, meaning both cities were classified using the same type definitions.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/methods.html#outputs",
+ "href": "sections/methods.html#outputs",
+ "title": "3 Methods",
+ "section": "3.9 Outputs",
+ "text": "3.9 Outputs\nThe workflow produced spatial and tabular outputs for both cities. The main outputs were grid layers, metric tables, correlation tables, redundancy tables, maps, and combined typology layers.\n\n\n\n\n\n\n\nOutput\nPurpose\n\n\n\n\nGrid metric files\nStore all calculated green, flood, and DEM metrics per grid cell.\n\n\nMetric maps\nShow spatial variation in each selected metric.\n\n\nRedundancy tables\nShow which metrics were removed or kept.\n\n\nCombined typology maps\nShow the final green+flood+DEM typology in each city.\n\n\nTypology summary tables\nDescribe the average characteristics of each type.\n\n\n\nThis workflow made it possible to move from separate spatial layers to comparable grid cell metrics and finally to shared typologies for Delft and Xi’an.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "3 Methods "
+ ]
+ },
+ {
+ "objectID": "sections/metrics.html",
+ "href": "sections/metrics.html",
+ "title": "4 Metric selection and redundancy check",
+ "section": "",
+ "text": "4.1 Collected metrics\nThis chapter explains which metrics were calculated and how the final metric set was selected. At first, a larger set of green-space, FWEI derived flood, distance to green, and DEM metrics was produced for both Delft and Xi’an. However, not all of these metrics were used in the later analysis, because some of them described almost the same spatial pattern.\nThe analysis used three main groups of metrics: green space, FWEI flood indicators, and DEM variables. The green space metrics describe how much green is present and how it is arranged. The flood metrics describe where surface water increase was detected and what pattern it forms. The DEM metrics describe elevation and slope, because lower or flatter areas can be more likely to hold water.\nThe flood metrics in this chapter were derived from the binary flood change mask, the clipped FWEI change raster thresholded at 0.05 in R. Each metric describes the amount or spatial structure of newly detected surface water per 100 m grid cell, tracing back to the FWEI based satellite detection described in the FWEI chapter.",
+ "crumbs": [
+ "4 Metric selection and redundancy check "
+ ]
+ },
+ {
+ "objectID": "sections/metrics.html#collected-metrics",
+ "href": "sections/metrics.html#collected-metrics",
+ "title": "4 Metric selection and redundancy check",
+ "section": "",
+ "text": "Metric group\nMetric\nMeaning\n\n\n\n\nGreen-space metrics\ngreen_percent\nPercentage of each grid cell covered by green space.\n\n\nGreen-space metrics\narea\nAverage size of green patches.\n\n\nGreen-space metrics\ngyrate\nSpatial spread of green patches.\n\n\nGreen-space metrics\ncontig\nCompactness and internal connectedness of green patches.\n\n\nGreen-space metrics\nenn\nDistance to the nearest neighbouring green patch.\n\n\nFlood metrics\nfwei_change_mean\nAverage FWEI after-minus-before change per grid cell.\n\n\nFlood metrics\nflood_share\nShare of each grid cell with detected surface-water increase.\n\n\nFlood metrics\npland_flood\nPercentage of each grid cell covered by detected flood pixels.\n\n\nFlood metrics\nnp_flood\nNumber of separate detected flood patches.\n\n\nFlood metrics\nflood_cohesion\nConnectedness of detected flood patches.\n\n\nFlood metrics\nflood_clumpy\nClustering of detected flood pixels.\n\n\nFlood metrics\nflood_lpi\nDominance of the largest detected flood patch.\n\n\nDistance-to-green metrics\nmean_dist_green\nAverage distance from detected water pixels to the nearest green pixel.\n\n\nDistance-to-green metrics\nmin_dist_green\nMinimum distance from detected water pixels to the nearest green pixel.\n\n\nDEM metrics\nelevation_mean\nAverage elevation per grid cell.\n\n\nDEM metrics\nelevation_min\nLowest elevation value per grid cell.\n\n\nDEM metrics\nslope_mean\nAverage slope per grid cell.",
+ "crumbs": [
+ "4 Metric selection and redundancy check "
+ ]
+ },
+ {
+ "objectID": "sections/metrics.html#metric-redundancy-check",
+ "href": "sections/metrics.html#metric-redundancy-check",
+ "title": "4 Metric selection and redundancy check",
+ "section": "4.2 Metric redundancy check",
+ "text": "4.2 Metric redundancy check\nBefore selecting the final metrics, the candidate metrics were checked for redundancy. This was necessary because clustering is sensitive to the input variables. If two metrics describe almost the same pattern, including both of them would give that pattern too much influence.\nPearson correlation was used to compare the candidate metrics. A correlation close to 1 or -1 means that two metrics are strongly related. In this analysis, metric pairs with an absolute correlation above about 0.80 were treated as highly redundant.\n\n\n\nMetric redundancy heatmap.\n\n\nThe redundancy check showed that several variables were strongly related. This was especially clear for flood extent metrics and elevation metrics. For example, flood_share and pland_flood had a correlation of 1.00, meaning they were identical in practice. elevation_mean and elevation_min were also almost identical.\n\n\n\nHighly correlated metric pairs.\n\n\nmetric_1\nmetric_2\ncorrelation\nabs_correlation\n\n\n\n\nflood_share\npland_flood\n1.000\n1.000\n\n\nelevation_mean\nelevation_min\n1.000\n1.000\n\n\nflood_share\nflood_lpi\n0.979\n0.979\n\n\npland_flood\nflood_lpi\n0.979\n0.979\n\n\nmean_dist_green\nmin_dist_green\n0.924\n0.924\n\n\ngyrate\ncontig\n0.885\n0.885\n\n\narea\ngyrate\n0.873\n0.873\n\n\ngreen_percent\narea\n0.837\n0.837",
+ "crumbs": [
+ "4 Metric selection and redundancy check "
+ ]
+ },
+ {
+ "objectID": "sections/metrics.html#redundant-metrics",
+ "href": "sections/metrics.html#redundant-metrics",
+ "title": "4 Metric selection and redundancy check",
+ "section": "4.3 Redundant metrics",
+ "text": "4.3 Redundant metrics\nThe table below shows the final decisions for the highly correlated metric pairs. In most cases, one metric was kept and the other was removed from the final metric set.\n\n\n\nMetric redundancy decision table.\n\n\n\n\n\nMetric redundancy decisions.\n\n\n\n\n\n\n\n\ncorrelated_metrics\ncorrelation\ndecision\nreason\n\n\n\n\nflood_share + pland_flood\n1.000\nkeep flood_share, remove pland_flood\nboth measure detected water extent\n\n\nelevation_mean + elevation_min\n1.000\nkeep elevation_mean, remove elevation_min\nboth describe almost the same elevation pattern\n\n\nflood_share + flood_lpi\n0.979\nkeep flood_share, remove flood_lpi\nlargest flood patch mostly follows flood extent\n\n\npland_flood + flood_lpi\n0.979\nremove pland_flood and flood_lpi\nboth overlap strongly with flood extent\n\n\nmean_dist_green + min_dist_green\n0.924\nremove both from typology, keep only for interpretation\nboth measure distance to green space\n\n\ngyrate + contig\n0.885\nkeep contig, remove gyrate\npatch spread overlaps with compactness\n\n\narea + gyrate\n0.873\nkeep contig, remove gyrate\npatch size overlaps with patch spread\n\n\ngreen_percent + area\n0.837\nkeep green_percent, remove area\ngreen amount overlaps with patch size\n\n\n\n\n\nThe main decisions were as follows. flood_share was kept instead of pland_flood, because both metrics measure detected surface water extent. flood_lpi was removed because it was also strongly related to flood extent. elevation_mean was kept instead of elevation_min, because both showed almost the same elevation pattern. gyrate was removed because it strongly overlapped with other green patch metrics. area was also removed from the final metric set because it strongly correlated with green_percent.\nThe distance to green metrics, mean_dist_green and min_dist_green, were not used in the final metric set. They are still useful for interpretation, but they describe the relationship between detected water and green space rather than the main green, flood, or topographic condition of the grid cell.",
+ "crumbs": [
+ "4 Metric selection and redundancy check "
+ ]
+ },
+ {
+ "objectID": "sections/metrics.html#final-selected-metrics",
+ "href": "sections/metrics.html#final-selected-metrics",
+ "title": "4 Metric selection and redundancy check",
+ "section": "4.4 Final selected metrics",
+ "text": "4.4 Final selected metrics\nAfter the redundancy check, the final metric set was reduced. The aim was to keep one representative metric for each important dimension of the analysis: green amount, green compactness, green isolation, FWEI derived water change, flood extent, flood fragmentation, flood clustering, elevation, and slope.\n\n\n\n\n\n\n\n\nMetric group\nFinal metric\nWhy it was kept\n\n\n\n\nGreen amount\ngreen_percent\nRepresents how much green space is present in each grid cell.\n\n\nGreen configuration\ncontig\nRepresents the compactness and internal connectedness of green patches.\n\n\nGreen isolation\nenn\nRepresents how isolated green patches are from nearby green patches.\n\n\nSurface-water change\nfwei_change_mean\nRepresents the average FWEI-derived surface-water change.\n\n\nFlood extent\nflood_share\nRepresents the share of each cell with detected surface-water increase.\n\n\nFlood fragmentation\nnp_flood\nRepresents the number of separate detected flood patches.\n\n\nFlood clustering\nflood_clumpy\nRepresents whether detected water is clustered or scattered.\n\n\nTopography\nelevation_mean\nRepresents average elevation conditions.\n\n\nTopography\nslope_mean\nRepresents average terrain steepness or flatness.\n\n\n\nThese selected metrics were then used as the basis for the combined typology analysis. The metric set keeps the main dimensions of the research question while avoiding double counting strongly overlapping variables.",
+ "crumbs": [
+ "4 Metric selection and redundancy check "
+ ]
+ },
+ {
+ "objectID": "sections/metrics.html#final-metric-maps",
+ "href": "sections/metrics.html#final-metric-maps",
+ "title": "4 Metric selection and redundancy check",
+ "section": "4.5 Final metric maps",
+ "text": "4.5 Final metric maps\nThe maps below show the final metrics that were kept after the redundancy check. They are shown in tabs so that the spatial patterns can be compared without making the chapter too long.\n\nGreen percentContiguityNearest-neighbour distanceFWEI changeFlood shareNumber of flood patchesFlood clumpinessElevationSlope\n\n\ngreen_percent shows the amount of green space in each grid cell.\n \n\n\ncontig shows whether green patches are compact and internally connected.\n \n\n\nenn shows how isolated green patches are from other green patches.\n \n\n\nfwei_change_mean shows the average FWEI-derived surface-water change per grid cell.\n \n\n\nflood_share shows the proportion of each grid cell where surface-water increase was detected.\n \n\n\nnp_flood shows whether detected water appears as one patch or many separate patches.\n \n\n\nflood_clumpy shows whether detected water pixels are clustered or scattered.\n \n\n\nelevation_mean shows the average elevation per grid cell.\n \n\n\nslope_mean shows the average slope per grid cell.\n \n\n\n\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "4 Metric selection and redundancy check "
+ ]
+ },
+ {
+ "objectID": "sections/typology.html",
+ "href": "sections/typology.html",
+ "title": "5 Typology construction",
+ "section": "",
+ "text": "5.1 Purpose of the typology\nThis chapter explains how the combined typologies were constructed and how the four final types were defined.\nThe typology construction was used to group grid cells with similar combined spatial conditions. Instead of analysing each metric separately, K means clustering was used to combine the selected metrics into four broader spatial types.\nThe earlier green only typologies were useful for understanding green space structure, but they did not combine the green, flood, and topographic dimensions of the research question. Therefore, the final typology was based on the selected non redundant green, FWEI derived flood, and DEM metrics.\nThe final green+flood+DEM typology used the following variables:\nA green+flood typology was first created as an intermediate check. However, the green+flood+DEM typology was selected as the final typology because it also includes topographic context. This is relevant because surface water accumulation may be influenced by elevation and slope, not only by green space configuration.",
+ "crumbs": [
+ "5 Typology construction "
+ ]
+ },
+ {
+ "objectID": "sections/typology.html#purpose-of-the-typology",
+ "href": "sections/typology.html#purpose-of-the-typology",
+ "title": "5 Typology construction",
+ "section": "",
+ "text": "Metric group\nMetrics used\nMeaning\n\n\n\n\nGreen-space configuration\ngreen_percent, contig, enn\nAmount, compactness, and isolation of green space.\n\n\nFWEI-derived flood pattern\nfwei_change_mean, flood_share, np_flood, flood_clumpy\nMagnitude, extent, fragmentation, and clustering of detected surface-water increase.\n\n\nDEM context\nelevation_mean, slope_mean\nAverage elevation and terrain steepness.",
+ "crumbs": [
+ "5 Typology construction "
+ ]
+ },
+ {
+ "objectID": "sections/typology.html#clustering-method",
+ "href": "sections/typology.html#clustering-method",
+ "title": "5 Typology construction",
+ "section": "5.2 Clustering method",
+ "text": "5.2 Clustering method\nK-means clustering was used to classify the grid cells into four types. The clustering was shared across Delft and Xi’an, meaning that the two cities were classified using the same type definitions. This makes the typologies directly comparable between the two study areas.\nBefore clustering, all input variables were standardised. This was necessary because the metrics have different units and numerical ranges. Without standardisation, variables with larger values could dominate the clustering result.\nThe number of clusters was set to four. The elbow plot was used as a basic check, and four clusters were selected because this produced a manageable number of interpretable spatial types.\n\n\n\n\n\n\nFigure 5.1: Elbow plot for the shared green+flood+DEM typology.",
+ "crumbs": [
+ "5 Typology construction "
+ ]
+ },
+ {
+ "objectID": "sections/typology.html#final-typology-overview",
+ "href": "sections/typology.html#final-typology-overview",
+ "title": "5 Typology construction",
+ "section": "5.3 Final typology overview",
+ "text": "5.3 Final typology overview\nThe final shared green+flood+DEM typology produced four types. These types were not named automatically by the K-means algorithm. They were interpreted afterwards using their average green, flood, and DEM values.\n\n\n\nSummary of the final shared green+flood+DEM typology.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCity\nType\nCells\nShare (%)\nGreen (%)\nContiguity\nENN\nFWEI change\nFlood share\nFlood patches\nFlood clumpiness\nElevation\nSlope\n\n\n\n\nDelft\nType 1\n2074\n20.7\n6.7\n0.214\n21.6\n-0.057\n0.001\n0.15\n0.596\n-2.58\n0.204\n\n\nDelft\nType 2\n6678\n66.8\n19.3\n0.287\n17.6\n0.017\n0.235\n2.42\n0.810\n-2.00\n0.264\n\n\nDelft\nType 3\n59\n0.6\n37.9\n0.547\n24.3\n0.013\n0.186\n4.98\n0.693\n-0.49\n1.576\n\n\nDelft\nType 4\n1189\n11.9\n75.6\n0.747\n13.3\n0.039\n0.495\n2.02\n0.817\n-1.52\n0.587\n\n\nXi’an\nType 1\n1303\n13.0\n19.4\n0.552\n23.0\n-0.008\n0.001\n0.25\n0.405\n393.49\n0.466\n\n\nXi’an\nType 2\n98\n1.0\n0.1\n0.036\n15.6\n0.027\n0.203\n1.24\n0.910\n395.98\n0.213\n\n\nXi’an\nType 3\n7183\n71.8\n20.8\n0.537\n23.9\n0.024\n0.154\n3.47\n0.727\n400.37\n0.545\n\n\nXi’an\nType 4\n1416\n14.2\n73.1\n0.847\n15.9\n0.036\n0.353\n2.46\n0.781\n396.48\n0.763\n\n\n\n\n\n\n\n\n\n\n\n\n\nType\nSuggested name\nMain character\n\n\n\n\nType 1\nLow-water / low-flood background\nLow detected surface-water increase and limited flood-pattern activity.\n\n\nType 2\nModerate urban background\nModerate green coverage and moderate flood-related values.\n\n\nType 3\nGreen high-water type\nHigh green coverage, high contiguity, and the strongest detected surface-water values.\n\n\nType 4\nFragmented flood-patch type\nMany detected flood patches, with more fragmented surface-water patterns.",
+ "crumbs": [
+ "5 Typology construction "
+ ]
+ },
+ {
+ "objectID": "sections/typology.html#delft-typology",
+ "href": "sections/typology.html#delft-typology",
+ "title": "5 Typology construction",
+ "section": "5.4 Delft typology",
+ "text": "5.4 Delft typology\nThe green+flood+DEM typology was made for Delft to show how the shared typology classes are distributed across the study area. The map is mainly used here to show the spatial output of the clustering process.\n\n\n\n\n\n\nFigure 5.2: Final green+flood+DEM typology in Delft.\n\n\n\nThe Delft typology map shows a spatially mixed pattern. The large Type 2 background covers most of the built-up core. Type 3, the type with the highest green coverage and highest flood share, appears in parks, water adjacent open land, and lower lying green zones. Type 1 is concentrated in denser built up areas. Type 4 is scattered and rare.",
+ "crumbs": [
+ "5 Typology construction "
+ ]
+ },
+ {
+ "objectID": "sections/typology.html#xian-typology",
+ "href": "sections/typology.html#xian-typology",
+ "title": "5 Typology construction",
+ "section": "5.5 Xi’an typology",
+ "text": "5.5 Xi’an typology\nThe green+flood+DEM typology was also made for Xi’an using the same method.\n\n\n\n\n\n\nFigure 5.3: Final green+flood+DEM typology in Xi’an.\n\n\n\nThe Xi’an map shows a different typology structure from Delft, with one type covering a larger part of the study area. The narrow Type 1 band along the northern edge of the Xi’an map is a preprocessing artefact caused by a grid alignment issue. It is therefore not interpreted as a meaningful typology zone. The cause of this mismatch issue is discussed in more detail further in the discussion chapter.",
+ "crumbs": [
+ "5 Typology construction "
+ ]
+ },
+ {
+ "objectID": "sections/typology.html#comparison-of-typology-structure",
+ "href": "sections/typology.html#comparison-of-typology-structure",
+ "title": "5 Typology construction",
+ "section": "5.6 Comparison of typology structure",
+ "text": "5.6 Comparison of typology structure\nThe shared typology allows Delft and Xi’an to be compared using the same four type definitions. The typology maps show that the two cities have different spatial structures. Delft has a more mixed distribution of types, while Xi’an is more strongly dominated by one type.\nThe detailed interpretation of these differences, including which typology classes are most relevant for nature based solutions in Delft and Xi’an, is also presented in the next chapter.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "5 Typology construction "
+ ]
+ },
+ {
+ "objectID": "sections/discussion.html",
+ "href": "sections/discussion.html",
+ "title": "6 Discussion",
+ "section": "",
+ "text": "6.1 Results and analysis\nThis chapter brings together the main analytical results, their interpretation, the limitations of the workflow, and the reproducibility of the project. The separate results are not discussed as isolated outputs here, but are linked back to the research question: how green space configuration relates to pluvial flood related surface water patterns in Delft and Xi’an.\nThe correlation analysis compared green space configuration metrics with FWEI derived flood indicators. The main aim was to check whether greener, more compact, or more isolated green space patterns were associated with higher or lower detected surface water values.\nThe strongest relationships are found with flood_share, not with fwei_change_mean. In both cities, green percentage and contiguity have positive correlations with flood share. This means that cells with more green space or more connected green patches also tend to have a larger share of detected surface water increase. The nearest neighbour distance metric has weak negative correlations, meaning that more isolated green patches are not linked to higher detected water values in the same way.\nThe correlation results do not support the simple assumption that more green space automatically means less detected water. Instead, the results show that green space configuration and FWEI derived surface water increase overlap spatially in some parts of both cities.\nThe final combined typology gives a clearer interpretation than the correlations alone. It combines green space configuration, FWEI derived flood pattern indicators, and DEM variables into one shared classification.\nMain results of the final shared green+flood+DEM typology.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCity\nType\nCells\nShare\nGreen\nContiguity\nFWEI_change\nFlood_share\nFlood_patches\nElevation\nSlope\n\n\n\n\nDelft\nType 1\n2074\n20.7\n6.7\n0.214\n-0.057\n0.001\n0.15\n-2.58\n0.204\n\n\nDelft\nType 2\n6678\n66.8\n19.3\n0.287\n0.017\n0.235\n2.42\n-2.00\n0.264\n\n\nDelft\nType 3\n59\n0.6\n37.9\n0.547\n0.013\n0.186\n4.98\n-0.49\n1.576\n\n\nDelft\nType 4\n1189\n11.9\n75.6\n0.747\n0.039\n0.495\n2.02\n-1.52\n0.587\n\n\nXi’an\nType 1\n1303\n13.0\n19.4\n0.552\n-0.008\n0.001\n0.25\n393.49\n0.466\n\n\nXi’an\nType 2\n98\n1.0\n0.1\n0.036\n0.027\n0.203\n1.24\n395.98\n0.213\n\n\nXi’an\nType 3\n7183\n71.8\n20.8\n0.537\n0.024\n0.154\n3.47\n400.37\n0.545\n\n\nXi’an\nType 4\n1416\n14.2\n73.1\n0.847\n0.036\n0.353\n2.46\n396.48\n0.763\nThe main result is that Delft and Xi’an have different dominant typology structures, but the shared Type 3 class contains the strongest FWEI derived surface water values in both cities.",
+ "crumbs": [
+ "6 Discussion "
+ ]
+ },
+ {
+ "objectID": "sections/discussion.html#results-and-analysis",
+ "href": "sections/discussion.html#results-and-analysis",
+ "title": "6 Discussion",
+ "section": "",
+ "text": "City\nGreen-space metric\nFWEI change mean\nFlood share\n\n\n\n\nDelft\nGreen percentage\n0.242\n0.344\n\n\nDelft\nContiguity\n0.196\n0.344\n\n\nDelft\nNearest-neighbour distance\n-0.087\n-0.083\n\n\nXi’an\nGreen percentage\n0.158\n0.367\n\n\nXi’an\nContiguity\n0.073\n0.216\n\n\nXi’an\nNearest-neighbour distance\n-0.039\n-0.054\n\n\n\n\n\n\n\n\n\n\nFigure 6.1: Correlation between green-space metrics and FWEI-derived flood-pattern indicators.",
+ "crumbs": [
+ "6 Discussion "
+ ]
+ },
+ {
+ "objectID": "sections/discussion.html#interpretation-of-delft-and-xian-typologies",
+ "href": "sections/discussion.html#interpretation-of-delft-and-xian-typologies",
+ "title": "6 Discussion",
+ "section": "6.2 Interpretation of Delft and Xi’an typologies",
+ "text": "6.2 Interpretation of Delft and Xi’an typologies\nIn Delft, Type 2 is the dominant combined typology. It covers about 58% of the study area and represents the main background condition. It has lower green coverage and lower detected surface water values than Type 3. Type 3 covers about 21% of the study area, but it has the highest flood share, 0.640, and the highest mean FWEI change, 0.075. This means that the strongest detected surface water pattern in Delft is concentrated in a greener and more connected type, not in the lowest green type.\n\n\n\n\n\n\nFigure 6.2: Final green+flood+DEM typology in Delft.\n\n\n\nType 1 also covers about 21% of Delft, but it has almost no detected surface water increase. Type 4 has high green coverage and relatively many detected flood patches, but it covers less than 1% of the study area. It is therefore too small to treat as a major Delft wide pattern.\nIn Xi’an, Type 4 is the dominant combined typology. It covers about 73% of the study area and represents the main background condition. It has moderate green coverage and moderate flood share, but it also has the highest mean number of detected flood patches. This means that much of Xi’an is classified as a widespread type with fragmented detected surface water patterns.\n\n\n\n\n\n\nFigure 6.3: Final green+flood+DEM typology in Xi’an.\n\n\n\nThe clearest high water type in Xi’an is Type 3. It covers only about 9% of the study area, but it has the highest green percentage, highest contiguity, highest FWEI change, and highest flood share. Its mean flood share is 0.610 and its mean FWEI change is 0.065. This makes Type 3 the strongest combined green+flood+DEM type in Xi’an, even though it is not the largest type.\nA specific issue in Xi’an is the narrow Type 1 band along the northern edge of the typology map. This band is a grid alignment artefact from preprocessing. It is not interpreted as a real typology zone. This also means that the reported Type 1 percentage in Xi’an is overestimated. The corrected share was not recalculated, so the table values are kept as produced by the workflow, but the interpretation does not rely on this edge band.\nOverall, Delft has a more mixed typology structure, while Xi’an is more strongly dominated by one background type. However, both cities show that the strongest detected surface water values occur in the greener and more contiguous Type 3 class.",
+ "crumbs": [
+ "6 Discussion "
+ ]
+ },
+ {
+ "objectID": "sections/discussion.html#nature-based-solution-directions",
+ "href": "sections/discussion.html#nature-based-solution-directions",
+ "title": "6 Discussion",
+ "section": "6.3 Nature based solution directions",
+ "text": "6.3 Nature based solution directions\nThe final typology was also used to identify which types are most relevant for nature based solution discussion. This is not a measured flood risk ranking. It is only a practical interpretation based on the available green space, FWEI derived flood, and DEM indicators.\n\n\n\nTypology candidates for planning interpretation.\n\n\n\n\n\n\n\n\nCity\nType\nInterpretation\nSolution\n\n\n\n\nDelft\nType 4\ngreen area with detected water, possibly storage or easier detection\nfloodable parks, retention basins, wetland enhancement\n\n\nDelft\nType 2\nlow green and relatively high detected water\ndepaving, rain gardens, permeable surfaces\n\n\nDelft\nType 3\nmany separate detected water patches\nbioswales, green corridors, connected pocket parks\n\n\nDelft\nType 1\nless problematic or unclear\nno clear solution from typology alone\n\n\nXi’an\nType 4\ngreen area with detected water, possibly storage or easier detection\nfloodable parks, retention basins, wetland enhancement\n\n\nXi’an\nType 2\nlow green and relatively high detected water\ndepaving, rain gardens, permeable surfaces\n\n\nXi’an\nType 3\nmany separate detected water patches\nbioswales, green corridors, connected pocket parks\n\n\nXi’an\nType 1\nless problematic or unclear\nno clear solution from typology alone\n\n\n\n\n\nThe k-means typology combines green space characteristics, flood metrics, and topographic variables into a single spatial framework. In both cities, Type 3 represents the landscape condition where the highest green cover and the greatest proportion of detected flooding occur together. These areas occupy low lying landscape positions that naturally receive and temporarily store surface water. Consequently, simply increasing the amount of green space within these areas is unlikely to substantially reduce flooding. Instead, future flood management strategies should focus on improving the hydrological performance of green infrastructure — integrating parks with urban drainage systems, improving drainage connectivity, increasing the continuity of green corridors, and designing green spaces with explicit water storage function accounting for local topography.\nThese interpretations should be treated as spatial associations rather than causal findings. The analysis identifies where green space and detected flooding are found together, but it does not prove that green space is reducing or causing flooding.\nFor Delft, Type 3 is the main candidate. Since this type already has relatively high green coverage, the planning question is not simply where to add more green space. A more relevant direction is to improve the water storage function of existing green areas. Possible interventions include floodable parks, retention basins, wetland enhancement, and controlled temporary storage areas.\nType 2 in Delft is also relevant because it is the dominant background type. However, its flood values are much lower than Type 3, so it is less urgent as a high water typology. If interventions were considered there, they would more likely focus on small scale improvements such as depaving, rain gardens, and permeable surfaces.\nFor Xi’an, Type 3 is again the clearest high water green type. Type 4 is also important because it covers most of the study area and has many separate detected flood patches. This suggests a more fragmented surface water pattern across the urban area. Possible interventions could include bioswales, connected pocket parks, green corridors, rain gardens, and local infiltration measures.\nThese suggestions should be treated as planning directions, not final design proposals. The analysis uses FWEI derived surface water change, not measured flood depth. Therefore, the typology can identify relevant spatial patterns, but it cannot determine exact engineering solutions.",
+ "crumbs": [
+ "6 Discussion "
+ ]
+ },
+ {
+ "objectID": "sections/discussion.html#limitations",
+ "href": "sections/discussion.html#limitations",
+ "title": "6 Discussion",
+ "section": "6.4 Limitations",
+ "text": "6.4 Limitations\nThe main limitation is that the Flood/Water Extraction Index (FWEI) is a proxy for flood related surface water change. It does not measure flood depth, water volume, drainage failure, or flood damage. The flood_share variable is also based on a threshold applied to FWEI change, so it should be interpreted as detected surface water increase rather than as a confirmed flood depth map.\nThis limitation became clear during the data search. For Delft, a local dataset for water depth during intense rainfall was available, which would have been more directly useful for analysing pluvial flooding. However, a comparable water depth dataset was not available for Xi’an, so this Delft layer could not be used in the shared analysis. In addition, the Sentinel 2 image acquired after the Xi’an flood was collected five days after the flood peak on 11 August 2023. Some temporary surface water had probably already receded by then, so the detected flood extent likely underestimates maximum inundation.\nFuture research should therefore try to use comparable pluvial flood depth or flood risk maps for both cities. This would reduce the dependence on FWEI as a proxy and would make it possible to test the relationship between green space configuration and flooding more directly.\n\n\n\n\n\n\nFigure 6.4: Example of Delft water depth during intense rainfall.\n\n\n\nAnother limitation is that the analysis does not include all factors that influence pluvial flooding. Surface water accumulation is also affected by other variables such as sewer capacity, drainage systems, rainfall intensity, soil type, surface materials, flow accumulation, and impervious surface percentage. Because these variables were not equally available for Delft and Xi’an, they could not be included in the shared typology. This means that some local causes of surface water accumulation are missing from the interpretation. Future work could include these variables where comparable data are available, which would make it easier to separate the role of green space configuration from other flood related factors.\nA fourth limitation is the 100 m by 100 m grid. The grid makes comparison easier, but it also simplifies the urban landscape. Small local features such as narrow streets, small green strips, local depressions, or drainage channels can be averaged inside one grid cell. A different grid size could therefore produce somewhat different results. Future work should test different grid sizes, such as 50 m, 100 m, and 200 m, to see how sensitive the results are to spatial scale. Testing different FWEI thresholds would also help show whether the flood share results are stable or depend strongly on the chosen threshold.\nThe K-means clustering method could also be a limitation. The final typology depends on the selected input variables and the chosen number of clusters. Four clusters were selected because they were interpretable and manageable, but another number of clusters could produce a different typology structure. Future work could compare K-means with other clustering methods or test different numbers of clusters to see whether the typology structure remains stable.\nA final limitation is the Xi’an grid alignment issue that produced the Type 1 edge artefact. This issue happened because one part of the Xi’an preprocessing was prepared using an older version of the study area grid, which was positioned slightly further south. When the scripts and datasets were later combined, this mismatch became visible as a narrow Type 1 band along the northern edge of the Xi’an typology map. The artefact was kept in the final output because several layers and outputs had already been clipped, processed, and linked to the existing workflow. However, it was not interpreted as a meaningful spatial typology pattern. Future work should rebuild the Xi’an preprocessing from one single final grid, then rerun the metric calculation and typology construction.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "6 Discussion "
+ ]
+ },
+ {
+ "objectID": "sections/conclusion.html",
+ "href": "sections/conclusion.html",
+ "title": "7 Conclusion",
+ "section": "",
+ "text": "This study investigated how the spatial configuration of green spaces influences pluvial flooding in urban areas by comparing Xi’an, China, which experienced a major pluvial flood on 11 August 2023, with Delft, the Netherlands, which served as a non flood reference city. The results show that the spatial configuration of green space has only a weak relationship with flooding, and that this relationship depends strongly on the hydrological setting of the city. In Xi’an, the observed relationships mainly reflect where large green spaces are located within natural flood accumulation zones. In Delft, where flooding is largely controlled by engineered drainage, green space configuration shows limited evidence of influencing how surface water is distributed.\nThe first sub question asked how green space configuration and flood related surface water patterns could be measured and compared between Delft and Xi’an. This study demonstrated that combining FWEI derived flood masks, landscape metrics, DEM variables, Pearson correlation analysis, and k-means typology provides a consistent framework for comparing green space and flood patterns between different cities. The workflow successfully detected extensive flood related surface water change in Xi’an and only limited change in Delft, confirming that the approach can distinguish between a flooded city and a non flood control.\nThe second sub question asked what spatial patterns emerge when green space, flood related, and topographic indicators are combined. Correlation analysis showed that most relationships between green space configuration and flooding are weak (|r| < 0.20). In Xi’an, a consistent spatial pattern emerged: the grid cells with the most compact, well connected, and spatially expansive green patches are also the cells where flooding is most extensive and where the largest continuous flood areas occur. These cells are concentrated in the open, lower lying areas of the study area where large heritage green spaces are situated. Rather than indicating that green space causes flooding, this pattern reflects the fact that these areas occupy low lying landscape positions where floodwater naturally accumulates. The typology reinforces this by identifying these locations as Type 3 — the class with the highest green cover and highest flood extent (flood share = 0.640 in Delft, 0.610 in Xi’an).\nThe third sub question examined how the identified patterns differ between Delft and Xi’an and what they imply for urban flood related planning. Xi’an experienced a real flood event, so its results primarily reflect the influence of topography and flood accumulation. Delft showed only 129 grid cells with detectable surface water change, but one important difference emerged: more connected green patches were associated with fewer separate flood patches (r = −0.200, p = 0.046). Although weak, this suggests that where engineered drainage already limits flooding, the arrangement of green space may influence how remaining surface water is organised. No comparable negative relationship was observed in Xi’an, where flood magnitude and topography dominated the spatial pattern.\nTaken together, these findings show that simply increasing the amount of green space is unlikely to reduce flooding in areas that already occupy natural flood accumulation zones. Instead, effective flood management should integrate green infrastructure with drainage networks and local topography. The comparison between Xi’an and Delft demonstrates that the effectiveness of green space configuration depends not only on the arrangement of green patches, but also on the wider hydrological and engineering context. Future research should combine the FWEI derived flood detection workflow with hydrological modelling and observed flood records to validate these findings and further investigate how different forms of green infrastructure influence urban flooding under contrasting environmental and drainage conditions.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "7 Conclusion "
+ ]
+ },
+ {
+ "objectID": "sections/reproducibility_statement.html",
+ "href": "sections/reproducibility_statement.html",
+ "title": "8 Reproducibility statement",
+ "section": "",
+ "text": "8.1 Software\nThis analysis was designed to be reproducible. All data, scripts, and intermediate outputs are archived so that the complete workflow can be repeated by any researcher with access to the project repository.\n• R 4.5.3 — terra, sf, landscapemetrics, dplyr, ggplot2, patchwork • QGIS 3.x (open source) — FWEI calculation, flood mask sieving, raster clipping, study area mapping",
+ "crumbs": [
+ "8 Reproducibility statement "
+ ]
+ },
+ {
+ "objectID": "sections/reproducibility_statement.html#fwei-flood-mapping-workflow",
+ "href": "sections/reproducibility_statement.html#fwei-flood-mapping-workflow",
+ "title": "8 Reproducibility statement",
+ "section": "8.2 FWEI Flood Mapping Workflow",
+ "text": "8.2 FWEI Flood Mapping Workflow\nThe steps below are included here to make the flood mapping workflow transparent and reproducible. Because the FWEI layers were produced through several processing steps in QGIS before being used in R, the final maps alone do not show how the raw Sentinel 2 images were converted into flood change rasters and binary flood masks. Listing the workflow makes it clear how the flood related input was created, what assumptions were made, and how the same method was applied to both Delft and Xi’an.\n\nSentinel 2 Level 2A imagery was downloaded from the Copernicus Browser for Xi’an, using 22 July 2023 and 16 August 2023, and for Delft, using 14 June 2023 and 7 September 2023. Cloud free acquisitions were selected where possible.\nThe Sentinel 2 SAFE folders were extracted, and the 10 m resolution bands B02, B03, B04, and B08 were located.\nThe bands B02, B03, B04, and B08 were loaded into QGIS as raster layers.\nThe visible band mean was calculated in the QGIS Raster Calculator:\n\\[\nMeanVisible = \\frac{B02 + B03 + B04}{3}\n\\]\nFWEI was calculated using the Raster Calculator:\n\\[\nFWEI = \\frac{MeanVisible - B08}{MeanVisible + B08}\n\\]\nThe FWEI raster was inspected using Singleband Pseudocolor symbology to check the distribution of water and non water areas.\nA binary water mask was created using the threshold FWEI > 0, where water pixels were given the value 1 and non water pixels were given the value 0.\nIsolated noisy pixels were removed using the GDAL Sieve tool in QGIS.\nSteps 3 to 8 were repeated for all four acquisition dates, producing four binary flood masks.\nFor Xi’an, the pre event flood mask was subtracted from the post event flood mask to identify newly inundated pixels. The result was clipped to the Xi’an study area.\nFor Delft, the same before and after comparison was applied as a non event control case. The result was clipped to the Delft study area.\nThe clipped change rasters were loaded into R. A threshold of 0.05 was applied to create the final binary flood mask, which was then used to calculate flood related landscape metrics per grid cell.\n\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "8 Reproducibility statement "
+ ]
+ },
+ {
+ "objectID": "sections/ai_statement.html",
+ "href": "sections/ai_statement.html",
+ "title": "9 AI statement",
+ "section": "",
+ "text": "9.1 R and Spatial Analysis\nArtificial intelligence tools were used at several stages of this project to support the analysis, data processing, and writing workflow. Their use is disclosed here in the interest of transparency and academic integrity.\nClaude (Anthropic) and ChatGPT (OpenAI) were used to support the development and debugging of R scripts throughout the project. This included refining code for raster processing with the terra package, landscape metric extraction using landscapemetrics, grid-based spatial aggregation, k-means clustering and elbow plot generation, Pearson correlation analysis and result formatting, and the production of tiled ggplot2 visualisations for typology maps and metric comparisons. The analysis logic, variable selection, and interpretation of results were carried out by the project team. The AI generated code was reviewed, tested, and adapted before use.",
+ "crumbs": [
+ "9 AI statement "
+ ]
+ },
+ {
+ "objectID": "sections/ai_statement.html#qgis-and-satellite-imagery-workflow",
+ "href": "sections/ai_statement.html#qgis-and-satellite-imagery-workflow",
+ "title": "9 AI statement",
+ "section": "9.2 QGIS and Satellite Imagery Workflow",
+ "text": "9.2 QGIS and Satellite Imagery Workflow\nClaude and ChatGPT were used to plan and document the FWEI-based flood detection and flood mask workflow in QGIS, including the sequence of steps for band loading, Raster Calculator operations, sieving, before/after flood mask comparison, and study-area clipping. The actual QGIS operations were performed by the project team.",
+ "crumbs": [
+ "9 AI statement "
+ ]
+ },
+ {
+ "objectID": "sections/ai_statement.html#report-writing",
+ "href": "sections/ai_statement.html#report-writing",
+ "title": "9 AI statement",
+ "section": "9.3 Report Writing",
+ "text": "9.3 Report Writing\nClaude (Anthropic) and ChatGPT (OpenAI) were used to support report writing, including improving sentence clarity, restructuring paragraphs, ensuring consistent terminology. All substantive findings, interpretations, and analytical decisions were made by the project team. The final text was reviewed and edited by the authors.",
+ "crumbs": [
+ "9 AI statement "
+ ]
+ },
+ {
+ "objectID": "sections/ai_statement.html#tools-used",
+ "href": "sections/ai_statement.html#tools-used",
+ "title": "9 AI statement",
+ "section": "9.4 Tools Used",
+ "text": "9.4 Tools Used\n• Claude (Anthropic) — R scripting support, QGIS workflow documentation, report writing • ChatGPT (OpenAI) — R scripting, QGIS workflow, report writing support • QGIS 3.x — FWEI calculation, flood mask sieving, raster clipping, study area mapping • R 4.5 with terra, sf, landscapemetrics, dplyr, ggplot2, patchwork — spatial analysis and visualisation\nThe use of AI tools did not replace the analytical judgement, methodological decisions, or spatial data work carried out by the project team.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "9 AI statement "
+ ]
+ },
+ {
+ "objectID": "sections/references.html",
+ "href": "sections/references.html",
+ "title": "References",
+ "section": "",
+ "text": "Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope\nOnaolapo, and Jens-Christian Svenning. 2023. “A Decision Support\nTool for Green Infrastructure Planning in the Face of Rapid\nUrbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A\nNovel Flood/Water Extraction Index (FWEI) for Identifying\nWater and Flooded Areas Using Sentinel-2 Visible and\nNear-Infrared Spectral Bands.” Stochastic Environmental\nResearch and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model\nfor Evaluating Ecosystem Service Tradeoffs and Synergies Across Three\nCoastal Megacities.” Environmental Research Letters 14\n(12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial\nFlooding in Urban Areas Across the European Continent.”\nGeographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.\n“The Nature-Based Solutions Planning Support System: A Playground\nfor Site and Solution Prioritization.” Sustainable Cities and\nSociety 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.\n“UGS-1m: Fine-Grained Urban Green Space Mapping of 31\nMajor Cities in China Based on the Deep Learning Framework.”\nEarth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "References"
+ ]
+ },
+ {
+ "objectID": "sections/appendix.html",
+ "href": "sections/appendix.html",
+ "title": "Appendix A — Additional outputs and unused material",
+ "section": "",
+ "text": "A.1 Green only typologies\nThis appendix shows a selection of additional maps and outputs that were produced during the project but were not used as main figures in the report. More complete output files can be found in the GitHub repository, especially in the folders data/results and figures/results.\nThe materials included here are mainly intermediate or supporting outputs. They help document the workflow, but the main analysis in the report is based on the selected metrics and the final combined green+flood+DEM typology.\nEarlier in the project, green only typologies were created using only green space configuration metrics. These outputs were useful during the exploratory stage, but they were not used as the final typology because the final report focuses on combined green+flood+DEM typologies.",
+ "crumbs": [
+ "Appendices",
+ "A Additional outputs and unused material "
+ ]
+ },
+ {
+ "objectID": "sections/appendix.html#green-only-typologies",
+ "href": "sections/appendix.html#green-only-typologies",
+ "title": "Appendix A — Additional outputs and unused material",
+ "section": "",
+ "text": "Earlier Delft green only typology.\n\n\n\n\n\nEarlier Xi’an green only typology.",
+ "crumbs": [
+ "Appendices",
+ "A Additional outputs and unused material "
+ ]
+ },
+ {
+ "objectID": "sections/appendix.html#additional-metric-maps",
+ "href": "sections/appendix.html#additional-metric-maps",
+ "title": "Appendix A — Additional outputs and unused material",
+ "section": "A.2 Additional metric maps",
+ "text": "A.2 Additional metric maps\nSome additional metric maps were produced during the analysis but were not included in the main chapters because they were either redundant or mainly used for checking the workflow.",
+ "crumbs": [
+ "Appendices",
+ "A Additional outputs and unused material "
+ ]
+ },
+ {
+ "objectID": "sections/appendix.html#intermediate-greenflood-typology",
+ "href": "sections/appendix.html#intermediate-greenflood-typology",
+ "title": "Appendix A — Additional outputs and unused material",
+ "section": "A.3 Intermediate green+flood typology",
+ "text": "A.3 Intermediate green+flood typology\nA green+flood typology was created as an intermediate step before adding DEM variables. This helped compare whether the inclusion of elevation and slope changed the interpretation. The green+flood+DEM typology was selected as the final version because it includes topographic context.\n\n\n\nIntermediate Delft green+flood typology.\n\n\n ## Full Pearson correlation results\nThe tables below present the complete pairwise Pearson correlation results between green-space configuration metrics and flood landscape metrics for Delft and Xi’an. All flood metrics were derived from the binary flood mask produced by the FWEI and flood-mask workflow. Green cells indicate statistically significant results at p < 0.05. The correlation matrix tables show r values only; full pairwise results including exact p values are shown below.\n\nA.3.1 Correlation matrix: Delft\n\n\n\n\n\n\n\n\n\n\n\n\nGreen metric\npland_flood\nnp_flood\ncohesion\nclumpy\ndivision\nlpi\n\n\n\n\narea\n-0.009\n-0.105\n-0.059\n+0.093\n+0.001\n+0.007\n\n\ngyrate\n+0.094*\n-0.124\n-0.052\n+0.094\n-0.094\n+0.112*\n\n\ncontig\n+0.090\n-0.200*\n-0.074\n+0.182\n+0.082\n+0.119\n\n\nenn\n+0.044\n-0.145\n+0.156\n+0.022\n+0.025\n+0.064\n\n\n\nSignificant pairs (p < 0.05): gyrate vs pland_flood (r = +0.197, p = 0.049), contig vs np_flood (r = -0.200, p = 0.046), gyrate vs lpi (r = +0.211, p = 0.036). Asterisks mark significant values in the matrix above.\n\n\nA.3.2 Correlation matrix: Xi’an\n\n\n\n\n\n\n\n\n\n\n\n\nGreen metric\npland_flood\nnp_flood\ncohesion\nclumpy\ndivision\nlpi\n\n\n\n\narea\n+0.132*\n+0.069\n+0.002\n-0.145\n+0.058\n+0.139*\n\n\ngyrate\n+0.160*\n+0.101\n-0.032\n-0.225\n+0.012\n+0.162*\n\n\ncontig\n+0.183*\n+0.118\n+0.038\n-0.163\n+0.179*\n+0.188*\n\n\nenn\n+0.152\n-0.092\n+0.130\n+0.091\n+0.168\n+0.136\n\n\n\nSignificant pairs (p < 0.05): contig vs pland_flood (r = +0.183, p = 0.0004), area vs pland_flood (r = +0.132, p = 0.011), gyrate vs pland_flood (r = +0.160, p = 0.002), area vs lpi (r = +0.139, p = 0.007), contig vs lpi (r = +0.188, p = 0.0003), gyrate vs lpi (r = +0.162, p = 0.002), contig vs division (r = +0.179, p = 0.0005). Asterisks mark significant values in the matrix above.\n\n\nA.3.3 Full pairwise results with p values: Delft\n\n\n\nGreen metric\nFlood metric\nr\np\nSignificant\n\n\n\n\ncontig\npland_flood\n+0.154\n0.127\nNo\n\n\narea\npland_flood\n-0.032\n0.753\nNo\n\n\ngyrate\npland_flood\n+0.197\n0.049\n* Yes\n\n\nenn\npland_flood\n+0.044\n0.703\nNo\n\n\ncontig\nnp_flood\n-0.200\n0.046\n* Yes\n\n\nenn\nnp_flood\n-0.145\n0.209\nNo\n\n\narea\nnp_flood\n-0.156\n0.120\nNo\n\n\ncontig\ncohesion\n+0.054\n0.596\nNo\n\n\narea\ncohesion\n+0.007\n0.946\nNo\n\n\nenn\ncohesion\n+0.156\n0.174\nNo\n\n\ncontig\nclumpy\n+0.005\n0.959\nNo\n\n\narea\nlpi\n+0.041\n0.684\nNo\n\n\ncontig\nlpi\n+0.172\n0.088\nNo\n\n\ngyrate\nlpi\n+0.211\n0.036\n* Yes\n\n\nenn\ndivision\n+0.025\n0.830\nNo\n\n\ncontig\ndivision\n+0.135\n0.180\nNo\n\n\n\n\n\nA.3.4 Full pairwise results with p values: Xi’an\n\n\n\nGreen metric\nFlood metric\nr\np\nSignificant\n\n\n\n\ncontig\npland_flood\n+0.183\n0.0004\n* Yes\n\n\narea\npland_flood\n+0.132\n0.011\n* Yes\n\n\ngyrate\npland_flood\n+0.160\n0.002\n* Yes\n\n\nenn\npland_flood\n+0.152\n0.120\nNo\n\n\ncontig\nnp_flood\n+0.021\n0.686\nNo\n\n\nenn\nnp_flood\n-0.073\n0.460\nNo\n\n\narea\nnp_flood\n-0.011\n0.837\nNo\n\n\ncontig\ncohesion\n+0.053\n0.303\nNo\n\n\narea\ncohesion\n+0.034\n0.510\nNo\n\n\nenn\ncohesion\n+0.167\n0.087\nNo\n\n\ncontig\nclumpy\n+0.066\n0.229\nNo\n\n\narea\nlpi\n+0.139\n0.007\n* Yes\n\n\ncontig\nlpi\n+0.188\n0.0003\n* Yes\n\n\ngyrate\nlpi\n+0.162\n0.002\n* Yes\n\n\nenn\ndivision\n+0.168\n0.085\nNo\n\n\ncontig\ndivision\n+0.179\n0.0005\n* Yes\n\n\n\nXi’an has more statistically significant results than Delft. This is mainly because Xi’an has a larger number of cells with both green and flood data, which gives greater statistical power. However, the green-flood relationships are still weak. Most significant correlations in Xi’an are positive, meaning that greener or more compact green-space areas often overlap with detected surface-water patterns rather than clearly reducing them.\n\n\n\n\nBrom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023. “A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415. https://doi.org/10.3390/land12020415.\n\n\nFarhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024. “A Novel Flood/Water Extraction Index (FWEI) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95. https://doi.org/10.1007/s00477-024-02660-z.\n\n\nMeerow, Sara. 2019. “A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011. https://doi.org/10.1088/1748-9326/ab502c.\n\n\nProkić, Marija, Stevan Savić, and Dragoslav Pavić. 2019. “Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32. https://doi.org/10.5937/gp23-23508.\n\n\nSarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022. “The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608. https://doi.org/10.1016/j.scs.2021.103608.\n\n\nShi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023. “UGS-1m: Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77. https://doi.org/10.5194/essd-15-555-2023.",
+ "crumbs": [
+ "Appendices",
+ "A Additional outputs and unused material "
+ ]
+ }
+]
\ No newline at end of file
diff --git a/docs/sections/ai_statement.html b/docs/sections/ai_statement.html
new file mode 100644
index 00000000..f32ddf91
--- /dev/null
+++ b/docs/sections/ai_statement.html
@@ -0,0 +1,716 @@
+
+
+
+
+
+
+
+
+
+9 AI statement – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Artificial intelligence tools were used at several stages of this project to support the analysis, data processing, and writing workflow. Their use is disclosed here in the interest of transparency and academic integrity.
+
+ R and Spatial Analysis
+Claude (Anthropic) and ChatGPT (OpenAI) were used to support the development and debugging of R scripts throughout the project. This included refining code for raster processing with the terra package, landscape metric extraction using landscapemetrics, grid-based spatial aggregation, k-means clustering and elbow plot generation, Pearson correlation analysis and result formatting, and the production of tiled ggplot2 visualisations for typology maps and metric comparisons. The analysis logic, variable selection, and interpretation of results were carried out by the project team. The AI generated code was reviewed, tested, and adapted before use.
+
+
+ QGIS and Satellite Imagery Workflow
+Claude and ChatGPT were used to plan and document the FWEI-based flood detection and flood mask workflow in QGIS, including the sequence of steps for band loading, Raster Calculator operations, sieving, before/after flood mask comparison, and study-area clipping. The actual QGIS operations were performed by the project team.
+
+
+ Report Writing
+Claude (Anthropic) and ChatGPT (OpenAI) were used to support report writing, including improving sentence clarity, restructuring paragraphs, ensuring consistent terminology. All substantive findings, interpretations, and analytical decisions were made by the project team. The final text was reviewed and edited by the authors.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/appendix.html b/docs/sections/appendix.html
new file mode 100644
index 00000000..621bd02e
--- /dev/null
+++ b/docs/sections/appendix.html
@@ -0,0 +1,1155 @@
+
+
+
+
+
+
+
+
+
+Appendix A — Additional outputs and unused material – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+This appendix shows a selection of additional maps and outputs that were produced during the project but were not used as main figures in the report. More complete output files can be found in the GitHub repository, especially in the folders data/results and figures/results.
+The materials included here are mainly intermediate or supporting outputs. They help document the workflow, but the main analysis in the report is based on the selected metrics and the final combined green+flood+DEM typology.
+
+ Green only typologies
+Earlier in the project, green only typologies were created using only green space configuration metrics. These outputs were useful during the exploratory stage, but they were not used as the final typology because the final report focuses on combined green+flood+DEM typologies.
+
+
+
+
+ Additional metric maps
+Some additional metric maps were produced during the analysis but were not included in the main chapters because they were either redundant or mainly used for checking the workflow.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/conclusion.html b/docs/sections/conclusion.html
new file mode 100644
index 00000000..3d50f95a
--- /dev/null
+++ b/docs/sections/conclusion.html
@@ -0,0 +1,694 @@
+
+
+
+
+
+
+
+
+
+7 Conclusion – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+This study investigated how the spatial configuration of green spaces influences pluvial flooding in urban areas by comparing Xi’an, China, which experienced a major pluvial flood on 11 August 2023, with Delft, the Netherlands, which served as a non flood reference city. The results show that the spatial configuration of green space has only a weak relationship with flooding, and that this relationship depends strongly on the hydrological setting of the city. In Xi’an, the observed relationships mainly reflect where large green spaces are located within natural flood accumulation zones. In Delft, where flooding is largely controlled by engineered drainage, green space configuration shows limited evidence of influencing how surface water is distributed.
+The first sub question asked how green space configuration and flood related surface water patterns could be measured and compared between Delft and Xi’an. This study demonstrated that combining FWEI derived flood masks, landscape metrics, DEM variables, Pearson correlation analysis, and k-means typology provides a consistent framework for comparing green space and flood patterns between different cities. The workflow successfully detected extensive flood related surface water change in Xi’an and only limited change in Delft, confirming that the approach can distinguish between a flooded city and a non flood control.
+The second sub question asked what spatial patterns emerge when green space, flood related, and topographic indicators are combined. Correlation analysis showed that most relationships between green space configuration and flooding are weak (|r| < 0.20). In Xi’an, a consistent spatial pattern emerged: the grid cells with the most compact, well connected, and spatially expansive green patches are also the cells where flooding is most extensive and where the largest continuous flood areas occur. These cells are concentrated in the open, lower lying areas of the study area where large heritage green spaces are situated. Rather than indicating that green space causes flooding, this pattern reflects the fact that these areas occupy low lying landscape positions where floodwater naturally accumulates. The typology reinforces this by identifying these locations as Type 3 — the class with the highest green cover and highest flood extent (flood share = 0.640 in Delft, 0.610 in Xi’an).
+The third sub question examined how the identified patterns differ between Delft and Xi’an and what they imply for urban flood related planning. Xi’an experienced a real flood event, so its results primarily reflect the influence of topography and flood accumulation. Delft showed only 129 grid cells with detectable surface water change, but one important difference emerged: more connected green patches were associated with fewer separate flood patches (r = −0.200, p = 0.046). Although weak, this suggests that where engineered drainage already limits flooding, the arrangement of green space may influence how remaining surface water is organised. No comparable negative relationship was observed in Xi’an, where flood magnitude and topography dominated the spatial pattern.
+Taken together, these findings show that simply increasing the amount of green space is unlikely to reduce flooding in areas that already occupy natural flood accumulation zones. Instead, effective flood management should integrate green infrastructure with drainage networks and local topography. The comparison between Xi’an and Delft demonstrates that the effectiveness of green space configuration depends not only on the arrangement of green patches, but also on the wider hydrological and engineering context. Future research should combine the FWEI derived flood detection workflow with hydrological modelling and observed flood records to validate these findings and further investigate how different forms of green infrastructure influence urban flooding under contrasting environmental and drainage conditions.
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/discussion.html b/docs/sections/discussion.html
new file mode 100644
index 00000000..3325ad7a
--- /dev/null
+++ b/docs/sections/discussion.html
@@ -0,0 +1,1071 @@
+
+
+
+
+
+
+
+
+
+6 Discussion – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+This chapter brings together the main analytical results, their interpretation, the limitations of the workflow, and the reproducibility of the project. The separate results are not discussed as isolated outputs here, but are linked back to the research question: how green space configuration relates to pluvial flood related surface water patterns in Delft and Xi’an.
+
+ Results and analysis
+The correlation analysis compared green space configuration metrics with FWEI derived flood indicators. The main aim was to check whether greener, more compact, or more isolated green space patterns were associated with higher or lower detected surface water values.
+
+
+
+
+
+
+Delft
+Green percentage
+0.242
+0.344
+
+
+Delft
+Contiguity
+0.196
+0.344
+
+
+Delft
+Nearest-neighbour distance
+-0.087
+-0.083
+
+
+Xi’an
+Green percentage
+0.158
+0.367
+
+
+Xi’an
+Contiguity
+0.073
+0.216
+
+
+Xi’an
+Nearest-neighbour distance
+-0.039
+-0.054
+
+
+
+The strongest relationships are found with flood_share, not with fwei_change_mean. In both cities, green percentage and contiguity have positive correlations with flood share. This means that cells with more green space or more connected green patches also tend to have a larger share of detected surface water increase. The nearest neighbour distance metric has weak negative correlations, meaning that more isolated green patches are not linked to higher detected water values in the same way.
+
+The correlation results do not support the simple assumption that more green space automatically means less detected water. Instead, the results show that green space configuration and FWEI derived surface water increase overlap spatially in some parts of both cities.
+The final combined typology gives a clearer interpretation than the correlations alone. It combines green space configuration, FWEI derived flood pattern indicators, and DEM variables into one shared classification.
+
+
+
+Main results of the final shared green+flood+DEM typology.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Delft
+Type 1
+2074
+20.7
+6.7
+0.214
+-0.057
+0.001
+0.15
+-2.58
+0.204
+
+
+Delft
+Type 2
+6678
+66.8
+19.3
+0.287
+0.017
+0.235
+2.42
+-2.00
+0.264
+
+
+Delft
+Type 3
+59
+0.6
+37.9
+0.547
+0.013
+0.186
+4.98
+-0.49
+1.576
+
+
+Delft
+Type 4
+1189
+11.9
+75.6
+0.747
+0.039
+0.495
+2.02
+-1.52
+0.587
+
+
+Xi’an
+Type 1
+1303
+13.0
+19.4
+0.552
+-0.008
+0.001
+0.25
+393.49
+0.466
+
+
+Xi’an
+Type 2
+98
+1.0
+0.1
+0.036
+0.027
+0.203
+1.24
+395.98
+0.213
+
+
+Xi’an
+Type 3
+7183
+71.8
+20.8
+0.537
+0.024
+0.154
+3.47
+400.37
+0.545
+
+
+Xi’an
+Type 4
+1416
+14.2
+73.1
+0.847
+0.036
+0.353
+2.46
+396.48
+0.763
+
+
+
+
+
+The main result is that Delft and Xi’an have different dominant typology structures, but the shared Type 3 class contains the strongest FWEI derived surface water values in both cities.
+
+
+ Interpretation of Delft and Xi’an typologies
+In Delft, Type 2 is the dominant combined typology. It covers about 58% of the study area and represents the main background condition. It has lower green coverage and lower detected surface water values than Type 3. Type 3 covers about 21% of the study area, but it has the highest flood share, 0.640, and the highest mean FWEI change, 0.075. This means that the strongest detected surface water pattern in Delft is concentrated in a greener and more connected type, not in the lowest green type.
+
+Type 1 also covers about 21% of Delft, but it has almost no detected surface water increase. Type 4 has high green coverage and relatively many detected flood patches, but it covers less than 1% of the study area. It is therefore too small to treat as a major Delft wide pattern.
+In Xi’an, Type 4 is the dominant combined typology. It covers about 73% of the study area and represents the main background condition. It has moderate green coverage and moderate flood share, but it also has the highest mean number of detected flood patches. This means that much of Xi’an is classified as a widespread type with fragmented detected surface water patterns.
+
+The clearest high water type in Xi’an is Type 3. It covers only about 9% of the study area, but it has the highest green percentage, highest contiguity, highest FWEI change, and highest flood share. Its mean flood share is 0.610 and its mean FWEI change is 0.065. This makes Type 3 the strongest combined green+flood+DEM type in Xi’an, even though it is not the largest type.
+A specific issue in Xi’an is the narrow Type 1 band along the northern edge of the typology map. This band is a grid alignment artefact from preprocessing. It is not interpreted as a real typology zone. This also means that the reported Type 1 percentage in Xi’an is overestimated. The corrected share was not recalculated, so the table values are kept as produced by the workflow, but the interpretation does not rely on this edge band.
+Overall, Delft has a more mixed typology structure, while Xi’an is more strongly dominated by one background type. However, both cities show that the strongest detected surface water values occur in the greener and more contiguous Type 3 class.
+
+
+ Nature based solution directions
+The final typology was also used to identify which types are most relevant for nature based solution discussion. This is not a measured flood risk ranking. It is only a practical interpretation based on the available green space, FWEI derived flood, and DEM indicators.
+
+
+
+Typology candidates for planning interpretation.
+
+
+
+
+
+
+
+
+
+
+
+Delft
+Type 4
+green area with detected water, possibly storage or easier detection
+floodable parks, retention basins, wetland enhancement
+
+
+Delft
+Type 2
+low green and relatively high detected water
+depaving, rain gardens, permeable surfaces
+
+
+Delft
+Type 3
+many separate detected water patches
+bioswales, green corridors, connected pocket parks
+
+
+Delft
+Type 1
+less problematic or unclear
+no clear solution from typology alone
+
+
+Xi’an
+Type 4
+green area with detected water, possibly storage or easier detection
+floodable parks, retention basins, wetland enhancement
+
+
+Xi’an
+Type 2
+low green and relatively high detected water
+depaving, rain gardens, permeable surfaces
+
+
+Xi’an
+Type 3
+many separate detected water patches
+bioswales, green corridors, connected pocket parks
+
+
+Xi’an
+Type 1
+less problematic or unclear
+no clear solution from typology alone
+
+
+
+
+
+The k-means typology combines green space characteristics, flood metrics, and topographic variables into a single spatial framework. In both cities, Type 3 represents the landscape condition where the highest green cover and the greatest proportion of detected flooding occur together. These areas occupy low lying landscape positions that naturally receive and temporarily store surface water. Consequently, simply increasing the amount of green space within these areas is unlikely to substantially reduce flooding. Instead, future flood management strategies should focus on improving the hydrological performance of green infrastructure — integrating parks with urban drainage systems, improving drainage connectivity, increasing the continuity of green corridors, and designing green spaces with explicit water storage function accounting for local topography.
+These interpretations should be treated as spatial associations rather than causal findings. The analysis identifies where green space and detected flooding are found together, but it does not prove that green space is reducing or causing flooding.
+For Delft, Type 3 is the main candidate. Since this type already has relatively high green coverage, the planning question is not simply where to add more green space. A more relevant direction is to improve the water storage function of existing green areas. Possible interventions include floodable parks, retention basins, wetland enhancement, and controlled temporary storage areas.
+Type 2 in Delft is also relevant because it is the dominant background type. However, its flood values are much lower than Type 3, so it is less urgent as a high water typology. If interventions were considered there, they would more likely focus on small scale improvements such as depaving, rain gardens, and permeable surfaces.
+For Xi’an, Type 3 is again the clearest high water green type. Type 4 is also important because it covers most of the study area and has many separate detected flood patches. This suggests a more fragmented surface water pattern across the urban area. Possible interventions could include bioswales, connected pocket parks, green corridors, rain gardens, and local infiltration measures.
+These suggestions should be treated as planning directions, not final design proposals. The analysis uses FWEI derived surface water change, not measured flood depth. Therefore, the typology can identify relevant spatial patterns, but it cannot determine exact engineering solutions.
+
+
+ Limitations
+The main limitation is that the Flood/Water Extraction Index (FWEI) is a proxy for flood related surface water change. It does not measure flood depth, water volume, drainage failure, or flood damage. The flood_share variable is also based on a threshold applied to FWEI change, so it should be interpreted as detected surface water increase rather than as a confirmed flood depth map.
+This limitation became clear during the data search. For Delft, a local dataset for water depth during intense rainfall was available, which would have been more directly useful for analysing pluvial flooding. However, a comparable water depth dataset was not available for Xi’an, so this Delft layer could not be used in the shared analysis. In addition, the Sentinel 2 image acquired after the Xi’an flood was collected five days after the flood peak on 11 August 2023. Some temporary surface water had probably already receded by then, so the detected flood extent likely underestimates maximum inundation.
+Future research should therefore try to use comparable pluvial flood depth or flood risk maps for both cities. This would reduce the dependence on FWEI as a proxy and would make it possible to test the relationship between green space configuration and flooding more directly.
+
+Another limitation is that the analysis does not include all factors that influence pluvial flooding. Surface water accumulation is also affected by other variables such as sewer capacity, drainage systems, rainfall intensity, soil type, surface materials, flow accumulation, and impervious surface percentage. Because these variables were not equally available for Delft and Xi’an, they could not be included in the shared typology. This means that some local causes of surface water accumulation are missing from the interpretation. Future work could include these variables where comparable data are available, which would make it easier to separate the role of green space configuration from other flood related factors.
+A fourth limitation is the 100 m by 100 m grid. The grid makes comparison easier, but it also simplifies the urban landscape. Small local features such as narrow streets, small green strips, local depressions, or drainage channels can be averaged inside one grid cell. A different grid size could therefore produce somewhat different results. Future work should test different grid sizes, such as 50 m, 100 m, and 200 m, to see how sensitive the results are to spatial scale. Testing different FWEI thresholds would also help show whether the flood share results are stable or depend strongly on the chosen threshold.
+The K-means clustering method could also be a limitation. The final typology depends on the selected input variables and the chosen number of clusters. Four clusters were selected because they were interpretable and manageable, but another number of clusters could produce a different typology structure. Future work could compare K-means with other clustering methods or test different numbers of clusters to see whether the typology structure remains stable.
+A final limitation is the Xi’an grid alignment issue that produced the Type 1 edge artefact. This issue happened because one part of the Xi’an preprocessing was prepared using an older version of the study area grid, which was positioned slightly further south. When the scripts and datasets were later combined, this mismatch became visible as a narrow Type 1 band along the northern edge of the Xi’an typology map. The artefact was kept in the final output because several layers and outputs had already been clipped, processed, and linked to the existing workflow. However, it was not interpreted as a meaningful spatial typology pattern. Future work should rebuild the Xi’an preprocessing from one single final grid, then rerun the metric calculation and typology construction.
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/methods.html b/docs/sections/methods.html
new file mode 100644
index 00000000..e1ec2822
--- /dev/null
+++ b/docs/sections/methods.html
@@ -0,0 +1,948 @@
+
+
+
+
+
+
+
+
+
+3 Methods – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ General workflow
+The analysis was carried out using a grid based spatial workflow. The same general method was applied to both Delft and Xi’an, so that the results could be compared between the two cities. The main steps were: preparing the input data, clipping the layers to the selected study areas, calculating metrics per grid cell, checking metric redundancy, and constructing combined typologies.
+The workflow was implemented mainly in R, using the packages terra, sf, landscapemetrics, dplyr, and ggplot2. QGIS was used for initial data preparation, FWEI calculation, flood mask creation, study area clipping of change rasters, and map production. The complete FWEI and flood mask workflow is described in detail in the preceding chapter.
+
+The workflow converts the input layers into comparable grid cell metrics, which are then used for metric selection, correlation analysis, and combined typology construction.
+
+
+
+ Green binary dataset
+Green space was represented with binary green space rasters. In these rasters, green areas were given the value 1, while all non green areas were given the value 0. This binary format allowed the green space layer to be analysed as categorical raster data when calculating the patch based landscape metrics in R.
+At the beginning of the project, more general land cover and satellite based datasets were explored for the green space layer, including ESA WorldCover 2021 v200 and the China Land Cover Dataset 2022 for Xi’an. However, these datasets were not detailed enough for the final analysis. Since the project focused on the spatial structure of green space, including fragmentation, configuration, and patch patterns, a more detailed green space input was needed.
+For Delft, the final green space layer was based on a local dataset from the Klimaatatlas. This dataset was processed in QGIS and converted into a binary raster, so that green space and non green space could be clearly separated. For Xi’an, the final green space layer came from the Urban green space (UGS) 1m dataset, which provides detailed urban green space data for several large Chinese cities at around 1 m resolution (Shi et al. 2023 ) . This layer was also converted into a binary raster before it was used for the landscape metric analysis in R. The binary green space rasters, cropped to the Delft and Xi’an study areas, are shown below.
+
+
+
+ Data preparation
+Before the analysis, all spatial layers were prepared for the two selected study areas. The main input layers were green space rasters, pre event and post event FWEI rasters, the clipped flood change rasters, DEM rasters, and context layers for mapping. The layers were checked, clipped to the study areas, and transformed to the correct coordinate reference systems where needed.
+For Delft, the projected coordinate system used in the workflow was EPSG:28992. For Xi’an, the projected coordinate system used in the workflow was EPSG:32649. Using projected coordinate systems was important because the analysis involved distances, grid cells, patch metrics, and slope calculations.
+The main preprocessing steps were:
+
+
+
+
+
+
+
+
+
+
+Study-area clipping
+To make all layers match the selected 10 km by 10 km areas.
+
+
+CRS alignment
+To make sure layers overlap correctly and can be measured in metres.
+
+
+Raster alignment
+To make raster layers comparable before extracting grid-cell values.
+
+
+Binary green-space preparation
+To separate green and non-green areas.
+
+
+FWEI difference calculation
+To estimate surface water change between the before and after images.
+
+
+DEM preparation
+To calculate elevation and slope values for each grid cell.
+
+
+
+
+
+ Grid based spatial unit
+Both cities were analysed using a 100 m by 100 m grid, resulting in 10,000 grid cells per study area. The grid was used as the common spatial unit for summarising green space, FWEI derived flood, and DEM variables. This allowed raster and vector inputs with different resolutions to be converted into comparable metric tables for Delft and Xi’an.
+
+
+ Metric calculation and selection
+After preparing the input layers, green-space, FWEI-derived flood, and Digital Elevation Model (DEM) variables were calculated for each grid cell. This produced one metric table for Delft and one for Xi’an.
+The green-space rasters were binary, with green space coded as 1 and non-green space as 0. They were aggregated to approximately 5 m resolution to reduce processing time. For each grid cell, green coverage and patch-based landscape metrics were calculated.
+For the flood-related metrics, the continuous FWEI change raster was used to calculate mean surface-water change per cell. The same raster was also converted into a binary flood mask using a threshold of 0.05. This mask was used to calculate flood_share and flood-pattern metrics.
+DEM data were used to calculate elevation and slope per grid cell. A broader set of metrics was first produced, after which redundant metrics were removed. The final metric selection is explained in the next chapter.
+
+
+ Pearson correlation analysis
+Pearson correlation analysis was used to test the relationship between selected green space metrics and FWEI derived flood indicators. Pearson’s correlation coefficient, or r, measures the direction and strength of a linear relationship between two variables. Values range from -1 to +1. Positive values indicate that both variables tend to increase together, while negative values indicate that one variable tends to decrease as the other increases.
+In this project, the strength of the correlation values was interpreted as follows:
+
+|r| < 0.10: negligible relationship
+|r| = 0.10 to 0.29: weak relationship
+|r| = 0.30 to 0.49: moderate relationship
+|r| >= 0.50: strong relationship
+
+Statistical significance was assessed using p < 0.05. However, significance was interpreted separately from practical strength, because a statistically significant result can still represent a weak relationship.
+
+
+ Combined typology construction
+K-means clustering was used to group grid cells into combined typologies. The final typology used the selected green, FWEI derived flood, and DEM metrics. Before clustering, the variables were standardised using scale(), so that variables with larger numerical ranges did not dominate the result.
+A green+flood typology was first created as an intermediate check. The final typology used green+flood+DEM variables, because topography was considered important for interpreting surface water accumulation.
+Four clusters were used. The elbow plot did not show one perfect cluster number, but four clusters were selected because they gave a manageable and interpretable set of spatial types. The same clustering was applied as a shared typology for Delft and Xi’an, meaning both cities were classified using the same type definitions.
+
+
+ Outputs
+The workflow produced spatial and tabular outputs for both cities. The main outputs were grid layers, metric tables, correlation tables, redundancy tables, maps, and combined typology layers.
+
+
+
+
+
+
+
+
+
+
+Grid metric files
+Store all calculated green, flood, and DEM metrics per grid cell.
+
+
+Metric maps
+Show spatial variation in each selected metric.
+
+
+Redundancy tables
+Show which metrics were removed or kept.
+
+
+Combined typology maps
+Show the final green+flood+DEM typology in each city.
+
+
+Typology summary tables
+Describe the average characteristics of each type.
+
+
+
+This workflow made it possible to move from separate spatial layers to comparable grid cell metrics and finally to shared typologies for Delft and Xi’an.
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/metrics.html b/docs/sections/metrics.html
new file mode 100644
index 00000000..71115250
--- /dev/null
+++ b/docs/sections/metrics.html
@@ -0,0 +1,1112 @@
+
+
+
+
+
+
+
+
+
+4 Metric selection and redundancy check – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+This chapter explains which metrics were calculated and how the final metric set was selected. At first, a larger set of green-space, FWEI derived flood, distance to green, and DEM metrics was produced for both Delft and Xi’an. However, not all of these metrics were used in the later analysis, because some of them described almost the same spatial pattern.
+
+ Collected metrics
+The analysis used three main groups of metrics: green space, FWEI flood indicators, and DEM variables. The green space metrics describe how much green is present and how it is arranged. The flood metrics describe where surface water increase was detected and what pattern it forms. The DEM metrics describe elevation and slope, because lower or flatter areas can be more likely to hold water.
+The flood metrics in this chapter were derived from the binary flood change mask, the clipped FWEI change raster thresholded at 0.05 in R. Each metric describes the amount or spatial structure of newly detected surface water per 100 m grid cell, tracing back to the FWEI based satellite detection described in the FWEI chapter.
+
+
+
+
+
+
+
+
+
+
+
+Green-space metrics
+green_percent
+Percentage of each grid cell covered by green space.
+
+
+Green-space metrics
+area
+Average size of green patches.
+
+
+Green-space metrics
+gyrate
+Spatial spread of green patches.
+
+
+Green-space metrics
+contig
+Compactness and internal connectedness of green patches.
+
+
+Green-space metrics
+enn
+Distance to the nearest neighbouring green patch.
+
+
+Flood metrics
+fwei_change_mean
+Average FWEI after-minus-before change per grid cell.
+
+
+Flood metrics
+flood_share
+Share of each grid cell with detected surface-water increase.
+
+
+Flood metrics
+pland_flood
+Percentage of each grid cell covered by detected flood pixels.
+
+
+Flood metrics
+np_flood
+Number of separate detected flood patches.
+
+
+Flood metrics
+flood_cohesion
+Connectedness of detected flood patches.
+
+
+Flood metrics
+flood_clumpy
+Clustering of detected flood pixels.
+
+
+Flood metrics
+flood_lpi
+Dominance of the largest detected flood patch.
+
+
+Distance-to-green metrics
+mean_dist_green
+Average distance from detected water pixels to the nearest green pixel.
+
+
+Distance-to-green metrics
+min_dist_green
+Minimum distance from detected water pixels to the nearest green pixel.
+
+
+DEM metrics
+elevation_mean
+Average elevation per grid cell.
+
+
+DEM metrics
+elevation_min
+Lowest elevation value per grid cell.
+
+
+DEM metrics
+slope_mean
+Average slope per grid cell.
+
+
+
+
+
+ Metric redundancy check
+Before selecting the final metrics, the candidate metrics were checked for redundancy. This was necessary because clustering is sensitive to the input variables. If two metrics describe almost the same pattern, including both of them would give that pattern too much influence.
+Pearson correlation was used to compare the candidate metrics. A correlation close to 1 or -1 means that two metrics are strongly related. In this analysis, metric pairs with an absolute correlation above about 0.80 were treated as highly redundant.
+
+The redundancy check showed that several variables were strongly related. This was especially clear for flood extent metrics and elevation metrics. For example, flood_share and pland_flood had a correlation of 1.00, meaning they were identical in practice. elevation_mean and elevation_min were also almost identical.
+
+
+
+Highly correlated metric pairs.
+
+
+
+
+
+flood_share
+pland_flood
+1.000
+1.000
+
+
+elevation_mean
+elevation_min
+1.000
+1.000
+
+
+flood_share
+flood_lpi
+0.979
+0.979
+
+
+pland_flood
+flood_lpi
+0.979
+0.979
+
+
+mean_dist_green
+min_dist_green
+0.924
+0.924
+
+
+gyrate
+contig
+0.885
+0.885
+
+
+area
+gyrate
+0.873
+0.873
+
+
+green_percent
+area
+0.837
+0.837
+
+
+
+
+
+
+
+ Redundant metrics
+The table below shows the final decisions for the highly correlated metric pairs. In most cases, one metric was kept and the other was removed from the final metric set.
+
+
+
+
+Metric redundancy decisions.
+
+
+
+
+
+
+
+
+
+
+
+flood_share + pland_flood
+1.000
+keep flood_share, remove pland_flood
+both measure detected water extent
+
+
+elevation_mean + elevation_min
+1.000
+keep elevation_mean, remove elevation_min
+both describe almost the same elevation pattern
+
+
+flood_share + flood_lpi
+0.979
+keep flood_share, remove flood_lpi
+largest flood patch mostly follows flood extent
+
+
+pland_flood + flood_lpi
+0.979
+remove pland_flood and flood_lpi
+both overlap strongly with flood extent
+
+
+mean_dist_green + min_dist_green
+0.924
+remove both from typology, keep only for interpretation
+both measure distance to green space
+
+
+gyrate + contig
+0.885
+keep contig, remove gyrate
+patch spread overlaps with compactness
+
+
+area + gyrate
+0.873
+keep contig, remove gyrate
+patch size overlaps with patch spread
+
+
+green_percent + area
+0.837
+keep green_percent, remove area
+green amount overlaps with patch size
+
+
+
+
+
+The main decisions were as follows. flood_share was kept instead of pland_flood, because both metrics measure detected surface water extent. flood_lpi was removed because it was also strongly related to flood extent. elevation_mean was kept instead of elevation_min, because both showed almost the same elevation pattern. gyrate was removed because it strongly overlapped with other green patch metrics. area was also removed from the final metric set because it strongly correlated with green_percent.
+The distance to green metrics, mean_dist_green and min_dist_green, were not used in the final metric set. They are still useful for interpretation, but they describe the relationship between detected water and green space rather than the main green, flood, or topographic condition of the grid cell.
+
+
+ Final selected metrics
+After the redundancy check, the final metric set was reduced. The aim was to keep one representative metric for each important dimension of the analysis: green amount, green compactness, green isolation, FWEI derived water change, flood extent, flood fragmentation, flood clustering, elevation, and slope.
+
+
+
+
+
+
+
+
+
+
+
+Green amount
+green_percent
+Represents how much green space is present in each grid cell.
+
+
+Green configuration
+contig
+Represents the compactness and internal connectedness of green patches.
+
+
+Green isolation
+enn
+Represents how isolated green patches are from nearby green patches.
+
+
+Surface-water change
+fwei_change_mean
+Represents the average FWEI-derived surface-water change.
+
+
+Flood extent
+flood_share
+Represents the share of each cell with detected surface-water increase.
+
+
+Flood fragmentation
+np_flood
+Represents the number of separate detected flood patches.
+
+
+Flood clustering
+flood_clumpy
+Represents whether detected water is clustered or scattered.
+
+
+Topography
+elevation_mean
+Represents average elevation conditions.
+
+
+Topography
+slope_mean
+Represents average terrain steepness or flatness.
+
+
+
+These selected metrics were then used as the basis for the combined typology analysis. The metric set keeps the main dimensions of the research question while avoiding double counting strongly overlapping variables.
+
+
+ Final metric maps
+The maps below show the final metrics that were kept after the redundancy check. They are shown in tabs so that the spatial patterns can be compared without making the chapter too long.
+
+
+
+
+
green_percent shows the amount of green space in each grid cell.
+
+
+
+
contig shows whether green patches are compact and internally connected.
+
+
+
+
enn shows how isolated green patches are from other green patches.
+
+
+
+
fwei_change_mean shows the average FWEI-derived surface-water change per grid cell.
+
+
+
+
flood_share shows the proportion of each grid cell where surface-water increase was detected.
+
+
+
+
np_flood shows whether detected water appears as one patch or many separate patches.
+
+
+
+
flood_clumpy shows whether detected water pixels are clustered or scattered.
+
+
+
+
elevation_mean shows the average elevation per grid cell.
+
+
+
+
slope_mean shows the average slope per grid cell.
+
+
+
+
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/preliminary.html b/docs/sections/preliminary.html
new file mode 100644
index 00000000..aac37fa7
--- /dev/null
+++ b/docs/sections/preliminary.html
@@ -0,0 +1,772 @@
+
+
+
+
+
+
+
+
+
+2 Preliminary maps and research – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Study area selection
+The study areas were selected to make the comparison between Delft and Xi’an more balanced. Because the full cities are very different in size, both cases were analysed using the same 10 km by 10 km study-area extent. This allowed the project to compare two contrasting urban contexts without relying on full administrative boundaries.
+For Delft, the selected area includes the city itself and parts of the surrounding urban and rural landscape. For Xi’an, the selected area focuses on a central urban section that includes dense urban fabric, green patches, and major open spaces. The aim was not to make the two cities identical, but to apply the same spatial logic to two different urban settings.
+
+The maps above show the selected study areas in their wider urban context. They also show that the comparison is based on equally sized areas, rather than on the full administrative extent of both cities.
+
+
+ Delft and Xi’an as comparison cases
+Delft and Xi’an represent clearly different urban contexts. Delft is a smaller Dutch city in a low lying delta setting with a dense water network and a highly managed urban landscape. Xi’an is a much larger Chinese city with a different urban structure, land cover pattern, and topographic setting.
+For Delft, the 10 km by 10 km study area fully contains the city. This is useful because Delft is relatively compact, so the selected area includes both the municipality and the surrounding landscape. The municipality boundary is shown inside the study area to make clear where Delft itself is located. This also gives context for surrounding canals, green areas, urban edges, and open landscapes, which are relevant for understanding green space configuration and flood related surface water patterns.
+For Xi’an, the same 10 km by 10 km study area does not cover the full city. Instead, it captures a central urban subset. This area was selected because it includes the historic city centre and city wall, but also large green and heritage spaces such as Weiyang Palace Relics Park, Hancheng Lake, and Daming Palace National Heritage Park. This makes the area useful for comparing dense urban fabric with larger green and open spaces within the same study area size.
+The comparison is therefore not based on the idea that Delft and Xi’an are similar cities. Instead, they are used as contrasting cases. This makes it possible to test whether the same spatial workflow can still identify meaningful green space and flood related patterns in both places.
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/problem_statement.html b/docs/sections/problem_statement.html
new file mode 100644
index 00000000..35f82c90
--- /dev/null
+++ b/docs/sections/problem_statement.html
@@ -0,0 +1,728 @@
+
+
+
+
+
+
+
+
+
+1 Problem statement – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Background
+Pluvial flooding is a relevant issue in urban areas. It occurs when intense rainfall creates overland flow or surface ponding before water can enter drainage systems, canals, rivers, or other water bodies (Prokić et al. 2019 ) . In cities, impervious surfaces such as roads, roofs, and pavements can reduce infiltration and increase the amount of water remaining on the surface.
+Green infrastructure is often discussed as one way to reduce urban flooding. Green spaces can absorb, store, and slow down rainwater, which may reduce pressure on drainage systems. Stormwater management and flood mitigation are therefore important ecosystem services in green infrastructure planning (Meerow 2019 ) . However, the amount of green space alone is not enough to understand its possible role. The spatial configuration of green space also matters.
+For example, one large connected park may function differently from many small isolated green patches. Green spaces can differ in size, compactness, connectivity, and fragmentation. These spatial properties may influence how green areas relate to runoff, storage, and surface water accumulation. Previous work also shows that spatial distribution and connectivity are important in green infrastructure planning (Brom et al. 2023 ) .
+This project focuses on both the quantity and spatial configuration of green space, and examines how these relate to satellite detected surface water change in two contrasting urban and climatic settings. Xi’an, China, experienced a severe pluvial flood event on 11 August 2023 after extreme rainfall. Delft, the Netherlands, was used as a non event comparison case using dates where major pluvial flooding was not expected in the study area.
+
+
+ Research gap
+Studies linking green infrastructure to flood risk reduction are well established in the literature (Sarabi et al. 2022 ) , but cross city comparisons remain difficult. Cities differ in size, climate, data availability, spatial resolution, and land cover structure. Delft and Xi’an are very different in scale and context, so comparing their full administrative areas directly would not be meaningful.
+A second challenge was that directly comparable pluvial flood datasets did not exist for both cities. For this reason, the project uses the Flood Water Extraction Index (FWEI) as a shared method for detecting surface water change from Sentinel 2 satellite imagery (Farhadi et al. 2024 ) . For Xi’an, the FWEI before and after comparison captures the surface water change caused by the 11 August 2023 flood event. For Delft, the same method applied to two non event dates serves as a control case, expected to show minimal surface water change. This design, with one city affected by a real flood event and one control case, strengthens the ability to interpret what the FWEI derived signals represent.
+
+
+ Working assumption
+The main assumption is that green space configuration influences how pluvial surface water appears across the urban landscape. More connected and compact green areas are expected to relate differently to surface water than fragmented or isolated green patches.
+The project also assumes that this relationship is affected by topography. Therefore, elevation and slope are included in the final typology.
+
+
+ Research question
+How does the spatial configuration of green spaces influence pluvial flooding in urban areas such as Delft and Xi’an?
+
+
+ Sub questions
+
+How can green space configuration and flood related surface water patterns be measured and compared between Delft and Xi’an?
+What spatial patterns can be identified when green space, flood related, and topographic indicators are combined?
+How do the identified patterns differ between Delft and Xi’an, and what do they suggest for urban flood related planning?
+
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/references.html b/docs/sections/references.html
new file mode 100644
index 00000000..a90bbf8a
--- /dev/null
+++ b/docs/sections/references.html
@@ -0,0 +1,707 @@
+
+
+
+
+
+
+
+
+
+References – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope
+Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support
+Tool for Green Infrastructure Planning in the Face of Rapid
+Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A
+Novel Flood/Water Extraction Index (FWEI ) for Identifying
+Water and Flooded Areas Using Sentinel-2 Visible and
+Near-Infrared Spectral Bands.” Stochastic Environmental
+Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model
+for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three
+Coastal Megacities.” Environmental Research Letters 14
+(12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial
+Flooding in Urban Areas Across the European Continent.”
+
Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
+
“The Nature-Based Solutions Planning Support System: A Playground
+for Site and Solution Prioritization.” Sustainable Cities and
+Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
+
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31
+Major Cities in China Based on the Deep Learning Framework.”
+
Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/reproducibility_statement.html b/docs/sections/reproducibility_statement.html
new file mode 100644
index 00000000..6de18c05
--- /dev/null
+++ b/docs/sections/reproducibility_statement.html
@@ -0,0 +1,754 @@
+
+
+
+
+
+
+
+
+
+8 Reproducibility statement – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+This analysis was designed to be reproducible. All data, scripts, and intermediate outputs are archived so that the complete workflow can be repeated by any researcher with access to the project repository.
+
+ Software
+• R 4.5.3 — terra, sf, landscapemetrics, dplyr, ggplot2, patchwork • QGIS 3.x (open source) — FWEI calculation, flood mask sieving, raster clipping, study area mapping
+
+
+ FWEI Flood Mapping Workflow
+The steps below are included here to make the flood mapping workflow transparent and reproducible. Because the FWEI layers were produced through several processing steps in QGIS before being used in R, the final maps alone do not show how the raw Sentinel 2 images were converted into flood change rasters and binary flood masks. Listing the workflow makes it clear how the flood related input was created, what assumptions were made, and how the same method was applied to both Delft and Xi’an.
+
+Sentinel 2 Level 2A imagery was downloaded from the Copernicus Browser for Xi’an, using 22 July 2023 and 16 August 2023, and for Delft, using 14 June 2023 and 7 September 2023. Cloud free acquisitions were selected where possible.
+The Sentinel 2 SAFE folders were extracted, and the 10 m resolution bands B02, B03, B04, and B08 were located.
+The bands B02, B03, B04, and B08 were loaded into QGIS as raster layers.
+The visible band mean was calculated in the QGIS Raster Calculator:
+\[
+MeanVisible = \frac{B02 + B03 + B04}{3}
+\]
+FWEI was calculated using the Raster Calculator:
+\[
+FWEI = \frac{MeanVisible - B08}{MeanVisible + B08}
+\]
+The FWEI raster was inspected using Singleband Pseudocolor symbology to check the distribution of water and non water areas.
+A binary water mask was created using the threshold FWEI > 0, where water pixels were given the value 1 and non water pixels were given the value 0.
+Isolated noisy pixels were removed using the GDAL Sieve tool in QGIS.
+Steps 3 to 8 were repeated for all four acquisition dates, producing four binary flood masks.
+For Xi’an, the pre event flood mask was subtracted from the post event flood mask to identify newly inundated pixels. The result was clipped to the Xi’an study area.
+For Delft, the same before and after comparison was applied as a non event control case. The result was clipped to the Delft study area.
+The clipped change rasters were loaded into R. A threshold of 0.05 was applied to create the final binary flood mask, which was then used to calculate flood related landscape metrics per grid cell.
+
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/sections/typology.html b/docs/sections/typology.html
new file mode 100644
index 00000000..e07f5458
--- /dev/null
+++ b/docs/sections/typology.html
@@ -0,0 +1,1026 @@
+
+
+
+
+
+
+
+
+
+5 Typology construction – Green Space Configuration and Pluvial Flooding
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+This chapter explains how the combined typologies were constructed and how the four final types were defined.
+
+ Purpose of the typology
+The typology construction was used to group grid cells with similar combined spatial conditions. Instead of analysing each metric separately, K means clustering was used to combine the selected metrics into four broader spatial types.
+The earlier green only typologies were useful for understanding green space structure, but they did not combine the green, flood, and topographic dimensions of the research question. Therefore, the final typology was based on the selected non redundant green, FWEI derived flood, and DEM metrics.
+The final green+flood+DEM typology used the following variables:
+
+
+
+
+
+
+
+
+
+
+
+Green-space configuration
+green_percent, contig, enn
+Amount, compactness, and isolation of green space.
+
+
+FWEI-derived flood pattern
+fwei_change_mean, flood_share, np_flood, flood_clumpy
+Magnitude, extent, fragmentation, and clustering of detected surface-water increase.
+
+
+DEM context
+elevation_mean, slope_mean
+Average elevation and terrain steepness.
+
+
+
+A green+flood typology was first created as an intermediate check. However, the green+flood+DEM typology was selected as the final typology because it also includes topographic context. This is relevant because surface water accumulation may be influenced by elevation and slope, not only by green space configuration.
+
+
+ Clustering method
+K-means clustering was used to classify the grid cells into four types. The clustering was shared across Delft and Xi’an, meaning that the two cities were classified using the same type definitions. This makes the typologies directly comparable between the two study areas.
+Before clustering, all input variables were standardised. This was necessary because the metrics have different units and numerical ranges. Without standardisation, variables with larger values could dominate the clustering result.
+The number of clusters was set to four. The elbow plot was used as a basic check, and four clusters were selected because this produced a manageable number of interpretable spatial types.
+
+
+
+ Final typology overview
+The final shared green+flood+DEM typology produced four types. These types were not named automatically by the K-means algorithm. They were interpreted afterwards using their average green, flood, and DEM values.
+
+
+
+Summary of the final shared green+flood+DEM typology.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Delft
+Type 1
+2074
+20.7
+6.7
+0.214
+21.6
+-0.057
+0.001
+0.15
+0.596
+-2.58
+0.204
+
+
+Delft
+Type 2
+6678
+66.8
+19.3
+0.287
+17.6
+0.017
+0.235
+2.42
+0.810
+-2.00
+0.264
+
+
+Delft
+Type 3
+59
+0.6
+37.9
+0.547
+24.3
+0.013
+0.186
+4.98
+0.693
+-0.49
+1.576
+
+
+Delft
+Type 4
+1189
+11.9
+75.6
+0.747
+13.3
+0.039
+0.495
+2.02
+0.817
+-1.52
+0.587
+
+
+Xi’an
+Type 1
+1303
+13.0
+19.4
+0.552
+23.0
+-0.008
+0.001
+0.25
+0.405
+393.49
+0.466
+
+
+Xi’an
+Type 2
+98
+1.0
+0.1
+0.036
+15.6
+0.027
+0.203
+1.24
+0.910
+395.98
+0.213
+
+
+Xi’an
+Type 3
+7183
+71.8
+20.8
+0.537
+23.9
+0.024
+0.154
+3.47
+0.727
+400.37
+0.545
+
+
+Xi’an
+Type 4
+1416
+14.2
+73.1
+0.847
+15.9
+0.036
+0.353
+2.46
+0.781
+396.48
+0.763
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Type 1
+Low-water / low-flood background
+Low detected surface-water increase and limited flood-pattern activity.
+
+
+Type 2
+Moderate urban background
+Moderate green coverage and moderate flood-related values.
+
+
+Type 3
+Green high-water type
+High green coverage, high contiguity, and the strongest detected surface-water values.
+
+
+Type 4
+Fragmented flood-patch type
+Many detected flood patches, with more fragmented surface-water patterns.
+
+
+
+
+
+ Delft typology
+The green+flood+DEM typology was made for Delft to show how the shared typology classes are distributed across the study area. The map is mainly used here to show the spatial output of the clustering process.
+
+The Delft typology map shows a spatially mixed pattern. The large Type 2 background covers most of the built-up core. Type 3, the type with the highest green coverage and highest flood share, appears in parks, water adjacent open land, and lower lying green zones. Type 1 is concentrated in denser built up areas. Type 4 is scattered and rare.
+
+
+ Xi’an typology
+The green+flood+DEM typology was also made for Xi’an using the same method.
+
+The Xi’an map shows a different typology structure from Delft, with one type covering a larger part of the study area. The narrow Type 1 band along the northern edge of the Xi’an map is a preprocessing artefact caused by a grid alignment issue. It is therefore not interpreted as a meaningful typology zone. The cause of this mismatch issue is discussed in more detail further in the discussion chapter.
+
+
+ Comparison of typology structure
+The shared typology allows Delft and Xi’an to be compared using the same four type definitions. The typology maps show that the two cities have different spatial structures. Delft has a more mixed distribution of types, while Xi’an is more strongly dominated by one type.
+The detailed interpretation of these differences, including which typology classes are most relevant for nature based solutions in Delft and Xi’an, is also presented in the next chapter.
+
+
+
+
+Brom, Peta, Kristine Engemann, Christina Breed, Maya Pasgaard, Titilope Onaolapo, and Jens-Christian Svenning. 2023.
“A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization.” Land 12 (2): 415.
https://doi.org/10.3390/land12020415 .
+
+
+Farhadi, Hadi, Hamid Ebadi, Abbas Kiani, and Ali Asgary. 2024.
“A Novel Flood/Water Extraction Index (FWEI ) for Identifying Water and Flooded Areas Using Sentinel-2 Visible and Near-Infrared Spectral Bands.” Stochastic Environmental Research and Risk Assessment 38: 1873–95.
https://doi.org/10.1007/s00477-024-02660-z .
+
+
+Meerow, Sara. 2019.
“A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies Across Three Coastal Megacities.” Environmental Research Letters 14 (12): 125011.
https://doi.org/10.1088/1748-9326/ab502c .
+
+
+Prokić, Marija, Stevan Savić, and Dragoslav Pavić. 2019.
“Pluvial Flooding in Urban Areas Across the European Continent.” Geographica Pannonica 23 (4): 216–32.
https://doi.org/10.5937/gp23-23508 .
+
+
+Sarabi, Shahryar, Qi Han, Bauke de Vries, and A. Georges L. Romme. 2022.
“The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization.” Sustainable Cities and Society 78: 103608.
https://doi.org/10.1016/j.scs.2021.103608 .
+
+
+Shi, Qian, Mengxi Liu, Andrea Marinoni, and Xiaoping Liu. 2023.
“UGS-1m : Fine-Grained Urban Green Space Mapping of 31 Major Cities in China Based on the Deep Learning Framework.” Earth System Science Data 15: 555–77.
https://doi.org/10.5194/essd-15-555-2023 .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/site_libs/bootstrap/bootstrap-ffc4c3fc79587ee79da4865b6a08975e.min.css b/docs/site_libs/bootstrap/bootstrap-ffc4c3fc79587ee79da4865b6a08975e.min.css
new file mode 100644
index 00000000..f2382f71
--- /dev/null
+++ b/docs/site_libs/bootstrap/bootstrap-ffc4c3fc79587ee79da4865b6a08975e.min.css
@@ -0,0 +1,12 @@
+/*!
+ * Bootstrap v5.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2023 The Bootstrap Authors
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */@import"https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap";:root,[data-bs-theme=light]{--bs-blue: #2c3e50;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #e83e8c;--bs-red: #e74c3c;--bs-orange: #fd7e14;--bs-yellow: #f39c12;--bs-green: #18bc9c;--bs-teal: #20c997;--bs-cyan: #3498db;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #ecf0f1;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #7b8a8b;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-default: #6c757d;--bs-primary: #2c3e50;--bs-secondary: #6c757d;--bs-success: #18bc9c;--bs-info: #3498db;--bs-warning: #f39c12;--bs-danger: #e74c3c;--bs-light: #ecf0f1;--bs-dark: #7b8a8b;--bs-default-rgb: 108, 117, 125;--bs-primary-rgb: 44, 62, 80;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 24, 188, 156;--bs-info-rgb: 52, 152, 219;--bs-warning-rgb: 243, 156, 18;--bs-danger-rgb: 231, 76, 60;--bs-light-rgb: 236, 240, 241;--bs-dark-rgb: 123, 138, 139;--bs-primary-text-emphasis: rgb(17.6, 24.8, 32);--bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);--bs-success-text-emphasis: rgb(9.6, 75.2, 62.4);--bs-info-text-emphasis: rgb(20.8, 60.8, 87.6);--bs-warning-text-emphasis: rgb(97.2, 62.4, 7.2);--bs-danger-text-emphasis: rgb(92.4, 30.4, 24);--bs-light-text-emphasis: #7b8a8b;--bs-dark-text-emphasis: #7b8a8b;--bs-primary-bg-subtle: rgb(212.8, 216.4, 220);--bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);--bs-success-bg-subtle: rgb(208.8, 241.6, 235.2);--bs-info-bg-subtle: rgb(214.4, 234.4, 247.8);--bs-warning-bg-subtle: rgb(252.6, 235.2, 207.6);--bs-danger-bg-subtle: rgb(250.2, 219.2, 216);--bs-light-bg-subtle: rgb(251.5, 252, 252.5);--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: rgb(170.6, 177.8, 185);--bs-secondary-border-subtle: rgb(196.2, 199.8, 203);--bs-success-border-subtle: rgb(162.6, 228.2, 215.4);--bs-info-border-subtle: rgb(173.8, 213.8, 240.6);--bs-warning-border-subtle: rgb(250.2, 215.4, 160.2);--bs-danger-border-subtle: rgb(245.4, 183.4, 177);--bs-light-border-subtle: #ecf0f1;--bs-dark-border-subtle: #adb5bd;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-font-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-root-font-size: 17px;--bs-body-font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg: #fff;--bs-body-bg-rgb: 255, 255, 255;--bs-emphasis-color: #000;--bs-emphasis-color-rgb: 0, 0, 0;--bs-secondary-color: rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb: 33, 37, 41;--bs-secondary-bg: #ecf0f1;--bs-secondary-bg-rgb: 236, 240, 241;--bs-tertiary-color: rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb: 33, 37, 41;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: inherit;--bs-link-color: #18bc9c;--bs-link-color-rgb: 24, 188, 156;--bs-link-decoration: underline;--bs-link-hover-color: rgb(19.2, 150.4, 124.8);--bs-link-hover-color-rgb: 19, 150, 125;--bs-code-color: #7d12ba;--bs-highlight-bg: rgb(252.6, 235.2, 207.6);--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, 0.175);--bs-border-radius: 0.25rem;--bs-border-radius-sm: 0.2em;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-xxl: 2rem;--bs-border-radius-2xl: var(--bs-border-radius-xxl);--bs-border-radius-pill: 50rem;--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width: 0.25rem;--bs-focus-ring-opacity: 0.25;--bs-focus-ring-color: rgba(44, 62, 80, 0.25);--bs-form-valid-color: #18bc9c;--bs-form-valid-border-color: #18bc9c;--bs-form-invalid-color: #e74c3c;--bs-form-invalid-border-color: #e74c3c}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color: #dee2e6;--bs-body-color-rgb: 222, 226, 230;--bs-body-bg: #212529;--bs-body-bg-rgb: 33, 37, 41;--bs-emphasis-color: #fff;--bs-emphasis-color-rgb: 255, 255, 255;--bs-secondary-color: rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb: 222, 226, 230;--bs-secondary-bg: #343a40;--bs-secondary-bg-rgb: 52, 58, 64;--bs-tertiary-color: rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb: 222, 226, 230;--bs-tertiary-bg: rgb(42.5, 47.5, 52.5);--bs-tertiary-bg-rgb: 43, 48, 53;--bs-primary-text-emphasis: rgb(128.4, 139.2, 150);--bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);--bs-success-text-emphasis: rgb(116.4, 214.8, 195.6);--bs-info-text-emphasis: rgb(133.2, 193.2, 233.4);--bs-warning-text-emphasis: rgb(247.8, 195.6, 112.8);--bs-danger-text-emphasis: rgb(240.6, 147.6, 138);--bs-light-text-emphasis: #f8f9fa;--bs-dark-text-emphasis: #dee2e6;--bs-primary-bg-subtle: rgb(8.8, 12.4, 16);--bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);--bs-success-bg-subtle: rgb(4.8, 37.6, 31.2);--bs-info-bg-subtle: rgb(10.4, 30.4, 43.8);--bs-warning-bg-subtle: rgb(48.6, 31.2, 3.6);--bs-danger-bg-subtle: rgb(46.2, 15.2, 12);--bs-light-bg-subtle: #343a40;--bs-dark-bg-subtle: #1a1d20;--bs-primary-border-subtle: rgb(26.4, 37.2, 48);--bs-secondary-border-subtle: rgb(64.8, 70.2, 75);--bs-success-border-subtle: rgb(14.4, 112.8, 93.6);--bs-info-border-subtle: rgb(31.2, 91.2, 131.4);--bs-warning-border-subtle: rgb(145.8, 93.6, 10.8);--bs-danger-border-subtle: rgb(138.6, 45.6, 36);--bs-light-border-subtle: #7b8a8b;--bs-dark-border-subtle: #343a40;--bs-heading-color: inherit;--bs-link-color: rgb(128.4, 139.2, 150);--bs-link-hover-color: rgb(153.72, 162.36, 171);--bs-link-color-rgb: 128, 139, 150;--bs-link-hover-color-rgb: 154, 162, 171;--bs-code-color: white;--bs-border-color: #7b8a8b;--bs-border-color-translucent: rgba(255, 255, 255, 0.15);--bs-form-valid-color: rgb(116.4, 214.8, 195.6);--bs-form-valid-border-color: rgb(116.4, 214.8, 195.6);--bs-form-invalid-color: rgb(240.6, 147.6, 138);--bs-form-invalid-border-color: rgb(240.6, 147.6, 138)}*,*::before,*::after{box-sizing:border-box}:root{font-size:var(--bs-root-font-size)}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}h1,.h1{font-size:calc(1.325rem + 0.9vw)}@media(min-width: 1200px){h1,.h1{font-size:2rem}}h2,.h2{font-size:calc(1.29rem + 0.48vw)}@media(min-width: 1200px){h2,.h2{font-size:1.65rem}}h3,.h3{font-size:calc(1.27rem + 0.24vw)}@media(min-width: 1200px){h3,.h3{font-size:1.45rem}}h4,.h4{font-size:1.25rem}h5,.h5{font-size:1.1rem}h6,.h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{text-decoration:underline dotted;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;-ms-text-decoration:underline dotted;-o-text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem;padding:.625rem 1.25rem;border-left:.25rem solid #ecf0f1}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}a:hover{--bs-link-color-rgb: var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em;color:#000;background-color:#f8f9fa;line-height:1.5;padding:.5rem;border:1px solid var(--bs-border-color, #dee2e6);border-radius:.25rem}pre code{background-color:rgba(0,0,0,0);font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:var(--bs-code-color);background-color:#f8f9fa;border-radius:.25rem;padding:.125rem .25rem;word-wrap:break-word}a>code{color:inherit}kbd{padding:.4rem .4rem;font-size:0.875em;color:#fff;background-color:#212529;border-radius:.2em}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:rgba(33,37,41,.75);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none !important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + 0.3vw);line-height:inherit}@media(min-width: 1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media(min-width: 1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:rgba(33,37,41,.75)}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1320px}}:root{--bs-breakpoint-xs: 0;--bs-breakpoint-sm: 576px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 992px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1400px}.grid{display:grid;grid-template-rows:repeat(var(--bs-rows, 1), 1fr);grid-template-columns:repeat(var(--bs-columns, 12), 1fr);gap:var(--bs-gap, 1.5rem)}.grid .g-col-1{grid-column:auto/span 1}.grid .g-col-2{grid-column:auto/span 2}.grid .g-col-3{grid-column:auto/span 3}.grid .g-col-4{grid-column:auto/span 4}.grid .g-col-5{grid-column:auto/span 5}.grid .g-col-6{grid-column:auto/span 6}.grid .g-col-7{grid-column:auto/span 7}.grid .g-col-8{grid-column:auto/span 8}.grid .g-col-9{grid-column:auto/span 9}.grid .g-col-10{grid-column:auto/span 10}.grid .g-col-11{grid-column:auto/span 11}.grid .g-col-12{grid-column:auto/span 12}.grid .g-start-1{grid-column-start:1}.grid .g-start-2{grid-column-start:2}.grid .g-start-3{grid-column-start:3}.grid .g-start-4{grid-column-start:4}.grid .g-start-5{grid-column-start:5}.grid .g-start-6{grid-column-start:6}.grid .g-start-7{grid-column-start:7}.grid .g-start-8{grid-column-start:8}.grid .g-start-9{grid-column-start:9}.grid .g-start-10{grid-column-start:10}.grid .g-start-11{grid-column-start:11}@media(min-width: 576px){.grid .g-col-sm-1{grid-column:auto/span 1}.grid .g-col-sm-2{grid-column:auto/span 2}.grid .g-col-sm-3{grid-column:auto/span 3}.grid .g-col-sm-4{grid-column:auto/span 4}.grid .g-col-sm-5{grid-column:auto/span 5}.grid .g-col-sm-6{grid-column:auto/span 6}.grid .g-col-sm-7{grid-column:auto/span 7}.grid .g-col-sm-8{grid-column:auto/span 8}.grid .g-col-sm-9{grid-column:auto/span 9}.grid .g-col-sm-10{grid-column:auto/span 10}.grid .g-col-sm-11{grid-column:auto/span 11}.grid .g-col-sm-12{grid-column:auto/span 12}.grid .g-start-sm-1{grid-column-start:1}.grid .g-start-sm-2{grid-column-start:2}.grid .g-start-sm-3{grid-column-start:3}.grid .g-start-sm-4{grid-column-start:4}.grid .g-start-sm-5{grid-column-start:5}.grid .g-start-sm-6{grid-column-start:6}.grid .g-start-sm-7{grid-column-start:7}.grid .g-start-sm-8{grid-column-start:8}.grid .g-start-sm-9{grid-column-start:9}.grid .g-start-sm-10{grid-column-start:10}.grid .g-start-sm-11{grid-column-start:11}}@media(min-width: 768px){.grid .g-col-md-1{grid-column:auto/span 1}.grid .g-col-md-2{grid-column:auto/span 2}.grid .g-col-md-3{grid-column:auto/span 3}.grid .g-col-md-4{grid-column:auto/span 4}.grid .g-col-md-5{grid-column:auto/span 5}.grid .g-col-md-6{grid-column:auto/span 6}.grid .g-col-md-7{grid-column:auto/span 7}.grid .g-col-md-8{grid-column:auto/span 8}.grid .g-col-md-9{grid-column:auto/span 9}.grid .g-col-md-10{grid-column:auto/span 10}.grid .g-col-md-11{grid-column:auto/span 11}.grid .g-col-md-12{grid-column:auto/span 12}.grid .g-start-md-1{grid-column-start:1}.grid .g-start-md-2{grid-column-start:2}.grid .g-start-md-3{grid-column-start:3}.grid .g-start-md-4{grid-column-start:4}.grid .g-start-md-5{grid-column-start:5}.grid .g-start-md-6{grid-column-start:6}.grid .g-start-md-7{grid-column-start:7}.grid .g-start-md-8{grid-column-start:8}.grid .g-start-md-9{grid-column-start:9}.grid .g-start-md-10{grid-column-start:10}.grid .g-start-md-11{grid-column-start:11}}@media(min-width: 992px){.grid .g-col-lg-1{grid-column:auto/span 1}.grid .g-col-lg-2{grid-column:auto/span 2}.grid .g-col-lg-3{grid-column:auto/span 3}.grid .g-col-lg-4{grid-column:auto/span 4}.grid .g-col-lg-5{grid-column:auto/span 5}.grid .g-col-lg-6{grid-column:auto/span 6}.grid .g-col-lg-7{grid-column:auto/span 7}.grid .g-col-lg-8{grid-column:auto/span 8}.grid .g-col-lg-9{grid-column:auto/span 9}.grid .g-col-lg-10{grid-column:auto/span 10}.grid .g-col-lg-11{grid-column:auto/span 11}.grid .g-col-lg-12{grid-column:auto/span 12}.grid .g-start-lg-1{grid-column-start:1}.grid .g-start-lg-2{grid-column-start:2}.grid .g-start-lg-3{grid-column-start:3}.grid .g-start-lg-4{grid-column-start:4}.grid .g-start-lg-5{grid-column-start:5}.grid .g-start-lg-6{grid-column-start:6}.grid .g-start-lg-7{grid-column-start:7}.grid .g-start-lg-8{grid-column-start:8}.grid .g-start-lg-9{grid-column-start:9}.grid .g-start-lg-10{grid-column-start:10}.grid .g-start-lg-11{grid-column-start:11}}@media(min-width: 1200px){.grid .g-col-xl-1{grid-column:auto/span 1}.grid .g-col-xl-2{grid-column:auto/span 2}.grid .g-col-xl-3{grid-column:auto/span 3}.grid .g-col-xl-4{grid-column:auto/span 4}.grid .g-col-xl-5{grid-column:auto/span 5}.grid .g-col-xl-6{grid-column:auto/span 6}.grid .g-col-xl-7{grid-column:auto/span 7}.grid .g-col-xl-8{grid-column:auto/span 8}.grid .g-col-xl-9{grid-column:auto/span 9}.grid .g-col-xl-10{grid-column:auto/span 10}.grid .g-col-xl-11{grid-column:auto/span 11}.grid .g-col-xl-12{grid-column:auto/span 12}.grid .g-start-xl-1{grid-column-start:1}.grid .g-start-xl-2{grid-column-start:2}.grid .g-start-xl-3{grid-column-start:3}.grid .g-start-xl-4{grid-column-start:4}.grid .g-start-xl-5{grid-column-start:5}.grid .g-start-xl-6{grid-column-start:6}.grid .g-start-xl-7{grid-column-start:7}.grid .g-start-xl-8{grid-column-start:8}.grid .g-start-xl-9{grid-column-start:9}.grid .g-start-xl-10{grid-column-start:10}.grid .g-start-xl-11{grid-column-start:11}}@media(min-width: 1400px){.grid .g-col-xxl-1{grid-column:auto/span 1}.grid .g-col-xxl-2{grid-column:auto/span 2}.grid .g-col-xxl-3{grid-column:auto/span 3}.grid .g-col-xxl-4{grid-column:auto/span 4}.grid .g-col-xxl-5{grid-column:auto/span 5}.grid .g-col-xxl-6{grid-column:auto/span 6}.grid .g-col-xxl-7{grid-column:auto/span 7}.grid .g-col-xxl-8{grid-column:auto/span 8}.grid .g-col-xxl-9{grid-column:auto/span 9}.grid .g-col-xxl-10{grid-column:auto/span 10}.grid .g-col-xxl-11{grid-column:auto/span 11}.grid .g-col-xxl-12{grid-column:auto/span 12}.grid .g-start-xxl-1{grid-column-start:1}.grid .g-start-xxl-2{grid-column-start:2}.grid .g-start-xxl-3{grid-column-start:3}.grid .g-start-xxl-4{grid-column-start:4}.grid .g-start-xxl-5{grid-column-start:5}.grid .g-start-xxl-6{grid-column-start:6}.grid .g-start-xxl-7{grid-column-start:7}.grid .g-start-xxl-8{grid-column-start:8}.grid .g-start-xxl-9{grid-column-start:9}.grid .g-start-xxl-10{grid-column-start:10}.grid .g-start-xxl-11{grid-column-start:11}}.table{--bs-table-color-type: initial;--bs-table-bg-type: initial;--bs-table-color-state: initial;--bs-table-bg-state: initial;--bs-table-color: #212529;--bs-table-bg: #fff;--bs-table-border-color: #dee2e6;--bs-table-accent-bg: transparent;--bs-table-striped-color: #212529;--bs-table-striped-bg: rgba(0, 0, 0, 0.05);--bs-table-active-color: #212529;--bs-table-active-bg: rgba(0, 0, 0, 0.1);--bs-table-hover-color: #212529;--bs-table-hover-bg: rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(1px*2) solid #909294}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(even){--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-active{--bs-table-color-state: var(--bs-table-active-color);--bs-table-bg-state: var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state: var(--bs-table-hover-color);--bs-table-bg-state: var(--bs-table-hover-bg)}.table-primary{--bs-table-color: #fff;--bs-table-bg: #2c3e50;--bs-table-border-color: rgb(65.1, 81.3, 97.5);--bs-table-striped-bg: rgb(54.55, 71.65, 88.75);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(65.1, 81.3, 97.5);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(59.825, 76.475, 93.125);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color: #fff;--bs-table-bg: #6c757d;--bs-table-border-color: rgb(122.7, 130.8, 138);--bs-table-striped-bg: rgb(115.35, 123.9, 131.5);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(122.7, 130.8, 138);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(119.025, 127.35, 134.75);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color: #fff;--bs-table-bg: #18bc9c;--bs-table-border-color: rgb(47.1, 194.7, 165.9);--bs-table-striped-bg: rgb(35.55, 191.35, 160.95);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(47.1, 194.7, 165.9);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(41.325, 193.025, 163.425);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color: #fff;--bs-table-bg: #3498db;--bs-table-border-color: rgb(72.3, 162.3, 222.6);--bs-table-striped-bg: rgb(62.15, 157.15, 220.8);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(72.3, 162.3, 222.6);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(67.225, 159.725, 221.7);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color: #fff;--bs-table-bg: #f39c12;--bs-table-border-color: rgb(244.2, 165.9, 41.7);--bs-table-striped-bg: rgb(243.6, 160.95, 29.85);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(244.2, 165.9, 41.7);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(243.9, 163.425, 35.775);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color: #fff;--bs-table-bg: #e74c3c;--bs-table-border-color: rgb(233.4, 93.9, 79.5);--bs-table-striped-bg: rgb(232.2, 84.95, 69.75);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(233.4, 93.9, 79.5);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(232.8, 89.425, 74.625);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color: #000;--bs-table-bg: #ecf0f1;--bs-table-border-color: rgb(212.4, 216, 216.9);--bs-table-striped-bg: rgb(224.2, 228, 228.95);--bs-table-striped-color: #000;--bs-table-active-bg: rgb(212.4, 216, 216.9);--bs-table-active-color: #000;--bs-table-hover-bg: rgb(218.3, 222, 222.925);--bs-table-hover-color: #000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color: #fff;--bs-table-bg: #7b8a8b;--bs-table-border-color: rgb(136.2, 149.7, 150.6);--bs-table-striped-bg: rgb(129.6, 143.85, 144.8);--bs-table-striped-color: #fff;--bs-table-active-bg: rgb(136.2, 149.7, 150.6);--bs-table-active-color: #fff;--bs-table-hover-bg: rgb(132.9, 146.775, 147.7);--bs-table-hover-color: #fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.shiny-input-container .control-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem}.form-text{margin-top:.25rem;font-size:0.875em;color:rgba(33,37,41,.75)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#fff;background-clip:padding-box;border:1px solid #dee2e6;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:rgb(149.5,158.5,167.5);outline:0;box-shadow:0 0 0 .25rem rgba(44,62,80,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::placeholder{color:rgba(33,37,41,.75);opacity:1}.form-control:disabled{background-color:#ecf0f1;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-0.375rem -0.75rem;margin-inline-end:.75rem;color:#212529;background-color:#f8f9fa;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#ecf0f1}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:rgba(0,0,0,0);border:solid rgba(0,0,0,0);border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2));padding:.25rem .5rem;font-size:0.875rem;border-radius:.2em}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-0.25rem -0.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-0.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + 0.75rem + calc(1px * 2))}textarea.form-control-sm{min-height:calc(1.5em + 0.5rem + calc(1px * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(1px * 2))}.form-control-color{width:3rem;height:calc(1.5em + 0.75rem + calc(1px * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0 !important;border-radius:.25rem}.form-control-color::-webkit-color-swatch{border:0 !important;border-radius:.25rem}.form-control-color.form-control-sm{height:calc(1.5em + 0.5rem + calc(1px * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(1px * 2))}.form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#fff;background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon, none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #dee2e6;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-select{transition:none}}.form-select:focus{border-color:rgb(149.5,158.5,167.5);outline:0;box-shadow:0 0 0 .25rem rgba(44,62,80,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#ecf0f1}.form-select:-moz-focusring{color:rgba(0,0,0,0);text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:0.875rem;border-radius:.2em}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.5rem}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check,.shiny-input-container .checkbox,.shiny-input-container .radio{display:block;min-height:1.5rem;padding-left:0;margin-bottom:.125rem}.form-check .form-check-input,.form-check .shiny-input-container .checkbox input,.form-check .shiny-input-container .radio input,.shiny-input-container .checkbox .form-check-input,.shiny-input-container .checkbox .shiny-input-container .checkbox input,.shiny-input-container .checkbox .shiny-input-container .radio input,.shiny-input-container .radio .form-check-input,.shiny-input-container .radio .shiny-input-container .checkbox input,.shiny-input-container .radio .shiny-input-container .radio input{float:left;margin-left:0}.form-check-reverse{padding-right:0;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:0;margin-left:0}.form-check-input,.shiny-input-container .checkbox input,.shiny-input-container .checkbox-inline input,.shiny-input-container .radio input,.shiny-input-container .radio-inline input{--bs-form-check-bg: #fff;width:1em;height:1em;margin-top:.25em;vertical-align:top;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid #dee2e6;print-color-adjust:exact}.form-check-input[type=checkbox],.shiny-input-container .checkbox input[type=checkbox],.shiny-input-container .checkbox-inline input[type=checkbox],.shiny-input-container .radio input[type=checkbox],.shiny-input-container .radio-inline input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio],.shiny-input-container .checkbox input[type=radio],.shiny-input-container .checkbox-inline input[type=radio],.shiny-input-container .radio input[type=radio],.shiny-input-container .radio-inline input[type=radio]{border-radius:50%}.form-check-input:active,.shiny-input-container .checkbox input:active,.shiny-input-container .checkbox-inline input:active,.shiny-input-container .radio input:active,.shiny-input-container .radio-inline input:active{filter:brightness(90%)}.form-check-input:focus,.shiny-input-container .checkbox input:focus,.shiny-input-container .checkbox-inline input:focus,.shiny-input-container .radio input:focus,.shiny-input-container .radio-inline input:focus{border-color:rgb(149.5,158.5,167.5);outline:0;box-shadow:0 0 0 .25rem rgba(44,62,80,.25)}.form-check-input:checked,.shiny-input-container .checkbox input:checked,.shiny-input-container .checkbox-inline input:checked,.shiny-input-container .radio input:checked,.shiny-input-container .radio-inline input:checked{background-color:#2c3e50;border-color:#2c3e50}.form-check-input:checked[type=checkbox],.shiny-input-container .checkbox input:checked[type=checkbox],.shiny-input-container .checkbox-inline input:checked[type=checkbox],.shiny-input-container .radio input:checked[type=checkbox],.shiny-input-container .radio-inline input:checked[type=checkbox]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio],.shiny-input-container .checkbox input:checked[type=radio],.shiny-input-container .checkbox-inline input:checked[type=radio],.shiny-input-container .radio input:checked[type=radio],.shiny-input-container .radio-inline input:checked[type=radio]{--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate,.shiny-input-container .checkbox input[type=checkbox]:indeterminate,.shiny-input-container .checkbox-inline input[type=checkbox]:indeterminate,.shiny-input-container .radio input[type=checkbox]:indeterminate,.shiny-input-container .radio-inline input[type=checkbox]:indeterminate{background-color:#2c3e50;border-color:#2c3e50;--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled,.shiny-input-container .checkbox input:disabled,.shiny-input-container .checkbox-inline input:disabled,.shiny-input-container .radio input:disabled,.shiny-input-container .radio-inline input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input[disabled]~.form-check-label,.form-check-input[disabled]~span,.form-check-input:disabled~.form-check-label,.form-check-input:disabled~span,.shiny-input-container .checkbox input[disabled]~.form-check-label,.shiny-input-container .checkbox input[disabled]~span,.shiny-input-container .checkbox input:disabled~.form-check-label,.shiny-input-container .checkbox input:disabled~span,.shiny-input-container .checkbox-inline input[disabled]~.form-check-label,.shiny-input-container .checkbox-inline input[disabled]~span,.shiny-input-container .checkbox-inline input:disabled~.form-check-label,.shiny-input-container .checkbox-inline input:disabled~span,.shiny-input-container .radio input[disabled]~.form-check-label,.shiny-input-container .radio input[disabled]~span,.shiny-input-container .radio input:disabled~.form-check-label,.shiny-input-container .radio input:disabled~span,.shiny-input-container .radio-inline input[disabled]~.form-check-label,.shiny-input-container .radio-inline input[disabled]~span,.shiny-input-container .radio-inline input:disabled~.form-check-label,.shiny-input-container .radio-inline input:disabled~span{cursor:default;opacity:.5}.form-check-label,.shiny-input-container .checkbox label,.shiny-input-container .checkbox-inline label,.shiny-input-container .radio label,.shiny-input-container .radio-inline label{cursor:pointer}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28149.5, 158.5, 167.5%29'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.btn-check[disabled]+.btn,.btn-check:disabled+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:rgba(0,0,0,0)}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(44,62,80,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(44,62,80,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#2c3e50;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-webkit-slider-thumb{transition:none}}.form-range::-webkit-slider-thumb:active{background-color:rgb(191.7,197.1,202.5)}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;appearance:none;-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;-o-appearance:none;background-color:#2c3e50;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-range::-moz-range-thumb{transition:none}}.form-range::-moz-range-thumb:active{background-color:rgb(191.7,197.1,202.5)}.form-range::-moz-range-track{width:100%;height:.5rem;color:rgba(0,0,0,0);cursor:pointer;background-color:#f8f9fa;border-color:rgba(0,0,0,0);border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:rgba(33,37,41,.75)}.form-range:disabled::-moz-range-thumb{background-color:rgba(33,37,41,.75)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(1px * 2));min-height:calc(3.5rem + calc(1px * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid rgba(0,0,0,0);transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media(prefers-reduced-motion: reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control::placeholder,.form-floating>.form-control-plaintext::placeholder{color:rgba(0,0,0,0)}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown),.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill,.form-floating>.form-control-plaintext:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-control-plaintext~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-control-plaintext~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem .375rem;z-index:-1;height:1.5em;content:"";background-color:#fff;border-radius:.25rem}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb), 0.65);transform:scale(0.85) translateY(-0.5rem) translateX(0.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.form-floating>:disabled~label,.form-floating>.form-control:disabled~label{color:#6c757d}.form-floating>:disabled~label::after,.form-floating>.form-control:disabled~label::after{background-color:#ecf0f1}.input-group{position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:stretch;-webkit-align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select,.input-group>.form-floating{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus,.input-group>.form-floating:focus-within{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#f8f9fa;border:1px solid #dee2e6;border-radius:.25rem}.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text,.input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text,.input-group-sm>.btn{padding:.25rem .5rem;font-size:0.875rem;border-radius:.2em}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(1px*-1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#18bc9c}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#18bc9c;border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#18bc9c;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2318bc9c' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 .25rem rgba(24,188,156,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:valid,.form-select.is-valid{border-color:#18bc9c}.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"],.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2318bc9c' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:valid:focus,.form-select.is-valid:focus{border-color:#18bc9c;box-shadow:0 0 0 .25rem rgba(24,188,156,.25)}.was-validated .form-control-color:valid,.form-control-color.is-valid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:valid,.form-check-input.is-valid{border-color:#18bc9c}.was-validated .form-check-input:valid:checked,.form-check-input.is-valid:checked{background-color:#18bc9c}.was-validated .form-check-input:valid:focus,.form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem rgba(24,188,156,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#18bc9c}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):valid,.input-group>.form-control:not(:focus).is-valid,.was-validated .input-group>.form-select:not(:focus):valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.input-group>.form-floating:not(:focus-within).is-valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#e74c3c}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;color:#fff;background-color:#e74c3c;border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#e74c3c;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e74c3c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e74c3c' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 .25rem rgba(231,76,60,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .form-select:invalid,.form-select.is-invalid{border-color:#e74c3c}.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"],.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e74c3c'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e74c3c' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-select:invalid:focus,.form-select.is-invalid:focus{border-color:#e74c3c;box-shadow:0 0 0 .25rem rgba(231,76,60,.25)}.was-validated .form-control-color:invalid,.form-control-color.is-invalid{width:calc(3rem + calc(1.5em + 0.75rem))}.was-validated .form-check-input:invalid,.form-check-input.is-invalid{border-color:#e74c3c}.was-validated .form-check-input:invalid:checked,.form-check-input.is-invalid:checked{background-color:#e74c3c}.was-validated .form-check-input:invalid:focus,.form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem rgba(231,76,60,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#e74c3c}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated .input-group>.form-control:not(:focus):invalid,.input-group>.form-control:not(:focus).is-invalid,.was-validated .input-group>.form-select:not(:focus):invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.input-group>.form-floating:not(:focus-within).is-invalid{z-index:4}.btn{--bs-btn-padding-x: 0.75rem;--bs-btn-padding-y: 0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight: 400;--bs-btn-line-height: 1.5;--bs-btn-color: #212529;--bs-btn-bg: transparent;--bs-btn-border-width: 1px;--bs-btn-border-color: transparent;--bs-btn-border-radius: 0.25rem;--bs-btn-hover-border-color: transparent;--bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity: 0.65;--bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;vertical-align:middle;cursor:pointer;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,:not(.btn-check)+.btn:active,.btn:first-child:active,.btn.active,.btn.show{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,:not(.btn-check)+.btn:active:focus-visible,.btn:first-child:active:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn:disabled,.btn.disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-default{--bs-btn-color: #fff;--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);--bs-btn-hover-border-color: rgb(86.4, 93.6, 100);--bs-btn-focus-shadow-rgb: 130, 138, 145;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(86.4, 93.6, 100);--bs-btn-active-border-color: rgb(81, 87.75, 93.75);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}.btn-primary{--bs-btn-color: #fff;--bs-btn-bg: #2c3e50;--bs-btn-border-color: #2c3e50;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(37.4, 52.7, 68);--bs-btn-hover-border-color: rgb(35.2, 49.6, 64);--bs-btn-focus-shadow-rgb: 76, 91, 106;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(35.2, 49.6, 64);--bs-btn-active-border-color: rgb(33, 46.5, 60);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #2c3e50;--bs-btn-disabled-border-color: #2c3e50}.btn-secondary{--bs-btn-color: #fff;--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);--bs-btn-hover-border-color: rgb(86.4, 93.6, 100);--bs-btn-focus-shadow-rgb: 130, 138, 145;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(86.4, 93.6, 100);--bs-btn-active-border-color: rgb(81, 87.75, 93.75);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}.btn-success{--bs-btn-color: #fff;--bs-btn-bg: #18bc9c;--bs-btn-border-color: #18bc9c;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(20.4, 159.8, 132.6);--bs-btn-hover-border-color: rgb(19.2, 150.4, 124.8);--bs-btn-focus-shadow-rgb: 59, 198, 171;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(19.2, 150.4, 124.8);--bs-btn-active-border-color: #128d75;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #18bc9c;--bs-btn-disabled-border-color: #18bc9c}.btn-info{--bs-btn-color: #fff;--bs-btn-bg: #3498db;--bs-btn-border-color: #3498db;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(44.2, 129.2, 186.15);--bs-btn-hover-border-color: rgb(41.6, 121.6, 175.2);--bs-btn-focus-shadow-rgb: 82, 167, 224;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(41.6, 121.6, 175.2);--bs-btn-active-border-color: rgb(39, 114, 164.25);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #3498db;--bs-btn-disabled-border-color: #3498db}.btn-warning{--bs-btn-color: #fff;--bs-btn-bg: #f39c12;--bs-btn-border-color: #f39c12;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(206.55, 132.6, 15.3);--bs-btn-hover-border-color: rgb(194.4, 124.8, 14.4);--bs-btn-focus-shadow-rgb: 245, 171, 54;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(194.4, 124.8, 14.4);--bs-btn-active-border-color: rgb(182.25, 117, 13.5);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #f39c12;--bs-btn-disabled-border-color: #f39c12}.btn-danger{--bs-btn-color: #fff;--bs-btn-bg: #e74c3c;--bs-btn-border-color: #e74c3c;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(196.35, 64.6, 51);--bs-btn-hover-border-color: rgb(184.8, 60.8, 48);--bs-btn-focus-shadow-rgb: 235, 103, 89;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(184.8, 60.8, 48);--bs-btn-active-border-color: rgb(173.25, 57, 45);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #e74c3c;--bs-btn-disabled-border-color: #e74c3c}.btn-light{--bs-btn-color: #000;--bs-btn-bg: #ecf0f1;--bs-btn-border-color: #ecf0f1;--bs-btn-hover-color: #000;--bs-btn-hover-bg: rgb(200.6, 204, 204.85);--bs-btn-hover-border-color: rgb(188.8, 192, 192.8);--bs-btn-focus-shadow-rgb: 201, 204, 205;--bs-btn-active-color: #000;--bs-btn-active-bg: rgb(188.8, 192, 192.8);--bs-btn-active-border-color: rgb(177, 180, 180.75);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #000;--bs-btn-disabled-bg: #ecf0f1;--bs-btn-disabled-border-color: #ecf0f1}.btn-dark{--bs-btn-color: #fff;--bs-btn-bg: #7b8a8b;--bs-btn-border-color: #7b8a8b;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: rgb(142.8, 155.55, 156.4);--bs-btn-hover-border-color: rgb(136.2, 149.7, 150.6);--bs-btn-focus-shadow-rgb: 143, 156, 156;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(149.4, 161.4, 162.2);--bs-btn-active-border-color: rgb(136.2, 149.7, 150.6);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #7b8a8b;--bs-btn-disabled-border-color: #7b8a8b}.btn-outline-default{--bs-btn-color: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #6c757d;--bs-btn-hover-border-color: #6c757d;--bs-btn-focus-shadow-rgb: 108, 117, 125;--bs-btn-active-color: #fff;--bs-btn-active-bg: #6c757d;--bs-btn-active-border-color: #6c757d;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #6c757d;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-primary{--bs-btn-color: #2c3e50;--bs-btn-border-color: #2c3e50;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #2c3e50;--bs-btn-hover-border-color: #2c3e50;--bs-btn-focus-shadow-rgb: 44, 62, 80;--bs-btn-active-color: #fff;--bs-btn-active-bg: #2c3e50;--bs-btn-active-border-color: #2c3e50;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #2c3e50;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #2c3e50;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-secondary{--bs-btn-color: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #6c757d;--bs-btn-hover-border-color: #6c757d;--bs-btn-focus-shadow-rgb: 108, 117, 125;--bs-btn-active-color: #fff;--bs-btn-active-bg: #6c757d;--bs-btn-active-border-color: #6c757d;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #6c757d;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-success{--bs-btn-color: #18bc9c;--bs-btn-border-color: #18bc9c;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #18bc9c;--bs-btn-hover-border-color: #18bc9c;--bs-btn-focus-shadow-rgb: 24, 188, 156;--bs-btn-active-color: #fff;--bs-btn-active-bg: #18bc9c;--bs-btn-active-border-color: #18bc9c;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #18bc9c;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #18bc9c;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-info{--bs-btn-color: #3498db;--bs-btn-border-color: #3498db;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #3498db;--bs-btn-hover-border-color: #3498db;--bs-btn-focus-shadow-rgb: 52, 152, 219;--bs-btn-active-color: #fff;--bs-btn-active-bg: #3498db;--bs-btn-active-border-color: #3498db;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #3498db;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #3498db;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-warning{--bs-btn-color: #f39c12;--bs-btn-border-color: #f39c12;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #f39c12;--bs-btn-hover-border-color: #f39c12;--bs-btn-focus-shadow-rgb: 243, 156, 18;--bs-btn-active-color: #fff;--bs-btn-active-bg: #f39c12;--bs-btn-active-border-color: #f39c12;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #f39c12;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #f39c12;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-danger{--bs-btn-color: #e74c3c;--bs-btn-border-color: #e74c3c;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #e74c3c;--bs-btn-hover-border-color: #e74c3c;--bs-btn-focus-shadow-rgb: 231, 76, 60;--bs-btn-active-color: #fff;--bs-btn-active-bg: #e74c3c;--bs-btn-active-border-color: #e74c3c;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #e74c3c;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #e74c3c;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-light{--bs-btn-color: #ecf0f1;--bs-btn-border-color: #ecf0f1;--bs-btn-hover-color: #000;--bs-btn-hover-bg: #ecf0f1;--bs-btn-hover-border-color: #ecf0f1;--bs-btn-focus-shadow-rgb: 236, 240, 241;--bs-btn-active-color: #000;--bs-btn-active-bg: #ecf0f1;--bs-btn-active-border-color: #ecf0f1;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #ecf0f1;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #ecf0f1;--bs-btn-bg: transparent;--bs-gradient: none}.btn-outline-dark{--bs-btn-color: #7b8a8b;--bs-btn-border-color: #7b8a8b;--bs-btn-hover-color: #fff;--bs-btn-hover-bg: #7b8a8b;--bs-btn-hover-border-color: #7b8a8b;--bs-btn-focus-shadow-rgb: 123, 138, 139;--bs-btn-active-color: #fff;--bs-btn-active-bg: #7b8a8b;--bs-btn-active-border-color: #7b8a8b;--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #7b8a8b;--bs-btn-disabled-bg: transparent;--bs-btn-disabled-border-color: #7b8a8b;--bs-btn-bg: transparent;--bs-gradient: none}.btn-link{--bs-btn-font-weight: 400;--bs-btn-color: #18bc9c;--bs-btn-bg: transparent;--bs-btn-border-color: transparent;--bs-btn-hover-color: rgb(19.2, 150.4, 124.8);--bs-btn-hover-border-color: transparent;--bs-btn-active-color: rgb(19.2, 150.4, 124.8);--bs-btn-active-border-color: transparent;--bs-btn-disabled-color: #6c757d;--bs-btn-disabled-border-color: transparent;--bs-btn-box-shadow: 0 0 0 #000;--bs-btn-focus-shadow-rgb: 59, 198, 171;text-decoration:underline;-webkit-text-decoration:underline;-moz-text-decoration:underline;-ms-text-decoration:underline;-o-text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg,.btn-group-lg>.btn{--bs-btn-padding-y: 0.5rem;--bs-btn-padding-x: 1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius: 0.5rem}.btn-sm,.btn-group-sm>.btn{--bs-btn-padding-y: 0.25rem;--bs-btn-padding-x: 0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius: 0.2em}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .2s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.collapse-horizontal{transition:none}}.dropup,.dropend,.dropdown,.dropstart,.dropup-center,.dropdown-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-bottom:0;border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex: 1000;--bs-dropdown-min-width: 10rem;--bs-dropdown-padding-x: 0;--bs-dropdown-padding-y: 0.5rem;--bs-dropdown-spacer: 0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color: #212529;--bs-dropdown-bg: #fff;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-border-radius: 0.25rem;--bs-dropdown-border-width: 1px;--bs-dropdown-inner-border-radius: calc(0.25rem - 1px);--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-divider-margin-y: 0.5rem;--bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color: #7b8a8b;--bs-dropdown-link-hover-color: #fff;--bs-dropdown-link-hover-bg: #2c3e50;--bs-dropdown-link-active-color: #fff;--bs-dropdown-link-active-bg: #2c3e50;--bs-dropdown-link-disabled-color: rgba(33, 37, 41, 0.5);--bs-dropdown-item-padding-x: 1rem;--bs-dropdown-item-padding-y: 0.25rem;--bs-dropdown-header-color: #6c757d;--bs-dropdown-header-padding-x: 1rem;--bs-dropdown-header-padding-y: 0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid rgba(0,0,0,0);border-bottom:.3em solid;border-left:.3em solid rgba(0,0,0,0)}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:0;border-bottom:.3em solid rgba(0,0,0,0);border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid rgba(0,0,0,0);border-right:.3em solid;border-bottom:.3em solid rgba(0,0,0,0)}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0;border-radius:var(--bs-dropdown-item-border-radius, 0)}.dropdown-item:hover,.dropdown-item:focus{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:0.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color: #dee2e6;--bs-dropdown-bg: #343a40;--bs-dropdown-border-color: rgba(0, 0, 0, 0.175);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color: #dee2e6;--bs-dropdown-link-hover-color: #fff;--bs-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color: #fff;--bs-dropdown-link-active-bg: #2c3e50;--bs-dropdown-link-disabled-color: #adb5bd;--bs-dropdown-header-color: #adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto}.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;justify-content:flex-start;-webkit-justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:.25rem}.btn-group>:not(.btn-check:first-child)+.btn,.btn-group>.btn-group:not(:first-child){margin-left:calc(1px*-1)}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn,.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;-webkit-flex-direction:column;align-items:flex-start;-webkit-align-items:flex-start;justify-content:center;-webkit-justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:calc(1px*-1)}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn~.btn,.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x: 2rem;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: #18bc9c;--bs-nav-link-hover-color: rgb(19.2, 150.4, 124.8);--bs-nav-link-disabled-color: #6c757d;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background:none;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media(prefers-reduced-motion: reduce){.nav-link{transition:none}}.nav-link:hover,.nav-link:focus{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(44,62,80,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width: 1px;--bs-nav-tabs-border-color: #ecf0f1;--bs-nav-tabs-border-radius: 0.25rem;--bs-nav-tabs-link-hover-border-color: #ecf0f1 #ecf0f1 #ecf0f1;--bs-nav-tabs-link-active-color: #000;--bs-nav-tabs-link-active-bg: #fff;--bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1*var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid rgba(0,0,0,0);border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1*var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius: 0.25rem;--bs-nav-pills-link-active-color: #fff;--bs-nav-pills-link-active-bg: #2c3e50}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap: 1rem;--bs-nav-underline-border-width: 0.125rem;--bs-nav-underline-link-active-color: #000;gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid rgba(0,0,0,0)}.nav-underline .nav-link:hover,.nav-underline .nav-link:focus{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;-webkit-flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;-webkit-flex-basis:0;flex-grow:1;-webkit-flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x: 0;--bs-navbar-padding-y: 1rem;--bs-navbar-color: rgb(204.36, 208.68, 213);--bs-navbar-hover-color: rgba(255, 255, 255, 0.8);--bs-navbar-disabled-color: rgba(204.36, 208.68, 213, 0.75);--bs-navbar-active-color: #fff;--bs-navbar-brand-padding-y: 0.3125rem;--bs-navbar-brand-margin-end: 1rem;--bs-navbar-brand-font-size: 1.25rem;--bs-navbar-brand-color: rgb(204.36, 208.68, 213);--bs-navbar-brand-hover-color: #fff;--bs-navbar-nav-link-padding-x: 0.5rem;--bs-navbar-toggler-padding-y: 0.25;--bs-navbar-toggler-padding-x: 0;--bs-navbar-toggler-font-size: 1.25rem;--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28204.36, 208.68, 213%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color: rgba(204.36, 208.68, 213, 0);--bs-navbar-toggler-border-radius: 0.25rem;--bs-navbar-toggler-focus-width: 0.25rem;--bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;position:relative;display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-sm,.navbar>.container-md,.navbar>.container-lg,.navbar>.container-xl,.navbar>.container-xxl{display:flex;display:-webkit-flex;flex-wrap:inherit;-webkit-flex-wrap:inherit;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x: 0;--bs-nav-link-padding-y: 0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color: var(--bs-navbar-color);--bs-nav-link-hover-color: var(--bs-navbar-hover-color);--bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:hover,.navbar-text a:focus{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;-webkit-flex-basis:100%;flex-grow:1;-webkit-flex-grow:1;align-items:center;-webkit-align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:rgba(0,0,0,0);border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media(prefers-reduced-motion: reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height, 75vh);overflow-y:auto}@media(min-width: 576px){.navbar-expand-sm{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 768px){.navbar-expand-md{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 992px){.navbar-expand-lg{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1200px){.navbar-expand-xl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}@media(min-width: 1400px){.navbar-expand-xxl{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;-webkit-flex-wrap:nowrap;justify-content:flex-start;-webkit-justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row;-webkit-flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;display:-webkit-flex !important;flex-basis:auto;-webkit-flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;-webkit-flex-grow:1;width:auto !important;height:auto !important;visibility:visible !important;background-color:rgba(0,0,0,0) !important;border:0 !important;transform:none !important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible}.navbar-dark,.navbar[data-bs-theme=dark]{--bs-navbar-color: rgb(204.36, 208.68, 213);--bs-navbar-hover-color: rgba(255, 255, 255, 0.8);--bs-navbar-disabled-color: rgba(204.36, 208.68, 213, 0.75);--bs-navbar-active-color: #fff;--bs-navbar-brand-color: rgb(204.36, 208.68, 213);--bs-navbar-brand-hover-color: #fff;--bs-navbar-toggler-border-color: rgba(204.36, 208.68, 213, 0);--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28204.36, 208.68, 213%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28204.36, 208.68, 213%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y: 1rem;--bs-card-spacer-x: 1rem;--bs-card-title-spacer-y: 0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width: 1px;--bs-card-border-color: rgba(0, 0, 0, 0.175);--bs-card-border-radius: 0.25rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius: calc(0.25rem - 1px);--bs-card-cap-padding-y: 0.5rem;--bs-card-cap-padding-x: 1rem;--bs-card-cap-bg: rgba(52, 58, 64, 0.25);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg: #fff;--bs-card-img-overlay-padding: 1rem;--bs-card-group-margin: 0.75rem;position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-0.5*var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-bottom:calc(-1*var(--bs-card-cap-padding-y));margin-left:calc(-0.5*var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-0.5*var(--bs-card-cap-padding-x));margin-left:calc(-0.5*var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-top,.card-img-bottom{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media(min-width: 576px){.card-group{display:flex;display:-webkit-flex;flex-flow:row wrap;-webkit-flex-flow:row wrap}.card-group>.card{flex:1 0 0%;-webkit-flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.accordion{--bs-accordion-color: #212529;--bs-accordion-bg: #fff;--bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;--bs-accordion-border-color: #dee2e6;--bs-accordion-border-width: 1px;--bs-accordion-border-radius: 0.25rem;--bs-accordion-inner-border-radius: calc(0.25rem - 1px);--bs-accordion-btn-padding-x: 1.25rem;--bs-accordion-btn-padding-y: 1rem;--bs-accordion-btn-color: #212529;--bs-accordion-btn-bg: #fff;--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width: 1.25rem;--bs-accordion-btn-icon-transform: rotate(-180deg);--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%2817.6, 24.8, 32%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color: rgb(149.5, 158.5, 167.5);--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.25);--bs-accordion-body-padding-x: 1.25rem;--bs-accordion-body-padding-y: 1rem;--bs-accordion-active-color: rgb(17.6, 24.8, 32);--bs-accordion-active-bg: rgb(212.8, 216.4, 220)}.accordion-button{position:relative;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media(prefers-reduced-motion: reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1*var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;-webkit-flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media(prefers-reduced-motion: reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28128.4, 139.2, 150%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28128.4, 139.2, 150%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x: 0.75rem;--bs-breadcrumb-padding-y: 0.375rem;--bs-breadcrumb-margin-bottom: 1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: 0.25rem;--bs-breadcrumb-divider-color: rgba(33, 37, 41, 0.75);--bs-breadcrumb-item-padding-x: 0.5rem;--bs-breadcrumb-item-active-color: rgba(33, 37, 41, 0.75);display:flex;display:-webkit-flex;flex-wrap:wrap;-webkit-flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, ">") /* rtl: var(--bs-breadcrumb-divider, ">") */}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x: 0.75rem;--bs-pagination-padding-y: 0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color: #fff;--bs-pagination-bg: #18bc9c;--bs-pagination-border-width: 0;--bs-pagination-border-color: transparent;--bs-pagination-border-radius: 0.25rem;--bs-pagination-hover-color: #fff;--bs-pagination-hover-bg: rgb(15.3396226415, 120.1603773585, 99.7075471698);--bs-pagination-hover-border-color: transparent;--bs-pagination-focus-color: rgb(19.2, 150.4, 124.8);--bs-pagination-focus-bg: #ecf0f1;--bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.25);--bs-pagination-active-color: #fff;--bs-pagination-active-bg: rgb(15.3396226415, 120.1603773585, 99.7075471698);--bs-pagination-active-border-color: transparent;--bs-pagination-disabled-color: #ecf0f1;--bs-pagination-disabled-bg: rgb(58.5754716981, 229.9245283019, 196.4905660377);--bs-pagination-disabled-border-color: transparent;display:flex;display:-webkit-flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.page-link.active,.active>.page-link{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.page-link.disabled,.disabled>.page-link{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(0*-1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x: 1.5rem;--bs-pagination-padding-y: 0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius: 0.5rem}.pagination-sm{--bs-pagination-padding-x: 0.5rem;--bs-pagination-padding-y: 0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius: 0.2em}.badge{--bs-badge-padding-x: 0.65em;--bs-badge-padding-y: 0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight: 700;--bs-badge-color: #fff;--bs-badge-border-radius: 0.25rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg: transparent;--bs-alert-padding-x: 1rem;--bs-alert-padding-y: 1rem;--bs-alert-margin-bottom: 1rem;--bs-alert-color: inherit;--bs-alert-border-color: transparent;--bs-alert-border: 1px solid var(--bs-alert-border-color);--bs-alert-border-radius: 0.25rem;--bs-alert-link-color: inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-default{--bs-alert-color: var(--bs-default-text-emphasis);--bs-alert-bg: var(--bs-default-bg-subtle);--bs-alert-border-color: var(--bs-default-border-subtle);--bs-alert-link-color: var(--bs-default-text-emphasis)}.alert-primary{--bs-alert-color: var(--bs-primary-text-emphasis);--bs-alert-bg: var(--bs-primary-bg-subtle);--bs-alert-border-color: var(--bs-primary-border-subtle);--bs-alert-link-color: var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color: var(--bs-secondary-text-emphasis);--bs-alert-bg: var(--bs-secondary-bg-subtle);--bs-alert-border-color: var(--bs-secondary-border-subtle);--bs-alert-link-color: var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color: var(--bs-success-text-emphasis);--bs-alert-bg: var(--bs-success-bg-subtle);--bs-alert-border-color: var(--bs-success-border-subtle);--bs-alert-link-color: var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color: var(--bs-info-text-emphasis);--bs-alert-bg: var(--bs-info-bg-subtle);--bs-alert-border-color: var(--bs-info-border-subtle);--bs-alert-link-color: var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color: var(--bs-warning-text-emphasis);--bs-alert-bg: var(--bs-warning-bg-subtle);--bs-alert-border-color: var(--bs-warning-border-subtle);--bs-alert-link-color: var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color: var(--bs-danger-text-emphasis);--bs-alert-bg: var(--bs-danger-bg-subtle);--bs-alert-border-color: var(--bs-danger-border-subtle);--bs-alert-link-color: var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color: var(--bs-light-text-emphasis);--bs-alert-bg: var(--bs-light-bg-subtle);--bs-alert-border-color: var(--bs-light-border-subtle);--bs-alert-link-color: var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color: var(--bs-dark-text-emphasis);--bs-alert-bg: var(--bs-dark-bg-subtle);--bs-alert-border-color: var(--bs-dark-border-subtle);--bs-alert-link-color: var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height: 1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg: #ecf0f1;--bs-progress-border-radius: 0.25rem;--bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-progress-bar-color: #fff;--bs-progress-bar-bg: #2c3e50;--bs-progress-bar-transition: width 0.6s ease;display:flex;display:-webkit-flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;justify-content:center;-webkit-justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color: #212529;--bs-list-group-bg: #fff;--bs-list-group-border-color: #dee2e6;--bs-list-group-border-width: 1px;--bs-list-group-border-radius: 0.25rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: 0.5rem;--bs-list-group-action-color: rgba(33, 37, 41, 0.75);--bs-list-group-action-hover-color: #000;--bs-list-group-action-hover-bg: #ecf0f1;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #ecf0f1;--bs-list-group-disabled-color: rgba(33, 37, 41, 0.75);--bs-list-group-disabled-bg: #ecf0f1;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #2c3e50;--bs-list-group-active-border-color: #2c3e50;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;-webkit-text-decoration:none;-moz-text-decoration:none;-ms-text-decoration:none;-o-text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1*var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media(min-width: 1400px){.list-group-horizontal-xxl{flex-direction:row;-webkit-flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1*var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-default{--bs-list-group-color: var(--bs-default-text-emphasis);--bs-list-group-bg: var(--bs-default-bg-subtle);--bs-list-group-border-color: var(--bs-default-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-default-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-default-border-subtle);--bs-list-group-active-color: var(--bs-default-bg-subtle);--bs-list-group-active-bg: var(--bs-default-text-emphasis);--bs-list-group-active-border-color: var(--bs-default-text-emphasis)}.list-group-item-primary{--bs-list-group-color: var(--bs-primary-text-emphasis);--bs-list-group-bg: var(--bs-primary-bg-subtle);--bs-list-group-border-color: var(--bs-primary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-primary-border-subtle);--bs-list-group-active-color: var(--bs-primary-bg-subtle);--bs-list-group-active-bg: var(--bs-primary-text-emphasis);--bs-list-group-active-border-color: var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color: var(--bs-secondary-text-emphasis);--bs-list-group-bg: var(--bs-secondary-bg-subtle);--bs-list-group-border-color: var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);--bs-list-group-active-color: var(--bs-secondary-bg-subtle);--bs-list-group-active-bg: var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color: var(--bs-success-text-emphasis);--bs-list-group-bg: var(--bs-success-bg-subtle);--bs-list-group-border-color: var(--bs-success-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-success-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-success-border-subtle);--bs-list-group-active-color: var(--bs-success-bg-subtle);--bs-list-group-active-bg: var(--bs-success-text-emphasis);--bs-list-group-active-border-color: var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color: var(--bs-info-text-emphasis);--bs-list-group-bg: var(--bs-info-bg-subtle);--bs-list-group-border-color: var(--bs-info-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-info-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-info-border-subtle);--bs-list-group-active-color: var(--bs-info-bg-subtle);--bs-list-group-active-bg: var(--bs-info-text-emphasis);--bs-list-group-active-border-color: var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color: var(--bs-warning-text-emphasis);--bs-list-group-bg: var(--bs-warning-bg-subtle);--bs-list-group-border-color: var(--bs-warning-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-warning-border-subtle);--bs-list-group-active-color: var(--bs-warning-bg-subtle);--bs-list-group-active-bg: var(--bs-warning-text-emphasis);--bs-list-group-active-border-color: var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color: var(--bs-danger-text-emphasis);--bs-list-group-bg: var(--bs-danger-bg-subtle);--bs-list-group-border-color: var(--bs-danger-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-danger-border-subtle);--bs-list-group-active-color: var(--bs-danger-bg-subtle);--bs-list-group-active-bg: var(--bs-danger-text-emphasis);--bs-list-group-active-border-color: var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color: var(--bs-light-text-emphasis);--bs-list-group-bg: var(--bs-light-bg-subtle);--bs-list-group-border-color: var(--bs-light-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-light-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-light-border-subtle);--bs-list-group-active-color: var(--bs-light-bg-subtle);--bs-list-group-active-bg: var(--bs-light-text-emphasis);--bs-list-group-active-border-color: var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color: var(--bs-dark-text-emphasis);--bs-list-group-bg: var(--bs-dark-bg-subtle);--bs-list-group-border-color: var(--bs-dark-border-subtle);--bs-list-group-action-hover-color: var(--bs-emphasis-color);--bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);--bs-list-group-action-active-color: var(--bs-emphasis-color);--bs-list-group-action-active-bg: var(--bs-dark-border-subtle);--bs-list-group-active-color: var(--bs-dark-bg-subtle);--bs-list-group-active-bg: var(--bs-dark-text-emphasis);--bs-list-group-active-border-color: var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color: #fff;--bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity: 0.4;--bs-btn-close-hover-opacity: 1;--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.25);--bs-btn-close-focus-opacity: 1;--bs-btn-close-disabled-opacity: 0.25;--bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:rgba(0,0,0,0) var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close:disabled,.btn-close.disabled{pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex: 1090;--bs-toast-padding-x: 0.75rem;--bs-toast-padding-y: 0.5rem;--bs-toast-spacing: 1.5rem;--bs-toast-max-width: 350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg: rgba(255, 255, 255, 0.85);--bs-toast-border-width: 1px;--bs-toast-border-color: rgba(0, 0, 0, 0.175);--bs-toast-border-radius: 0.25rem;--bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-toast-header-color: rgba(33, 37, 41, 0.75);--bs-toast-header-bg: rgba(255, 255, 255, 0.85);--bs-toast-header-border-color: rgba(0, 0, 0, 0.175);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex: 1090;position:absolute;z-index:var(--bs-toast-zindex);width:max-content;width:-webkit-max-content;width:-moz-max-content;width:-ms-max-content;width:-o-max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-0.5*var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex: 1055;--bs-modal-width: 500px;--bs-modal-padding: 1rem;--bs-modal-margin: 0.5rem;--bs-modal-color: ;--bs-modal-bg: #fff;--bs-modal-border-color: rgba(0, 0, 0, 0.175);--bs-modal-border-width: 1px;--bs-modal-border-radius: 0.5rem;--bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius: calc(0.5rem - 1px);--bs-modal-header-padding-x: 1rem;--bs-modal-header-padding-y: 1rem;--bs-modal-header-padding: 1rem 1rem;--bs-modal-header-border-color: #dee2e6;--bs-modal-header-border-width: 1px;--bs-modal-title-line-height: 1.5;--bs-modal-footer-gap: 0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color: #dee2e6;--bs-modal-footer-border-width: 1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin)*2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;min-height:calc(100% - var(--bs-modal-margin)*2)}.modal-content{position:relative;display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex: 1050;--bs-backdrop-bg: #000;--bs-backdrop-opacity: 0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5);margin:calc(-0.5*var(--bs-modal-header-padding-y)) calc(-0.5*var(--bs-modal-header-padding-x)) calc(-0.5*var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;display:-webkit-flex;flex-shrink:0;-webkit-flex-shrink:0;flex-wrap:wrap;-webkit-flex-wrap:wrap;align-items:center;-webkit-align-items:center;justify-content:flex-end;-webkit-justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap)*.5)}@media(min-width: 576px){.modal{--bs-modal-margin: 1.75rem;--bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width: 300px}}@media(min-width: 992px){.modal-lg,.modal-xl{--bs-modal-width: 800px}}@media(min-width: 1200px){.modal-xl{--bs-modal-width: 1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header,.modal-fullscreen .modal-footer{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media(max-width: 575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header,.modal-fullscreen-sm-down .modal-footer{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media(max-width: 767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header,.modal-fullscreen-md-down .modal-footer{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media(max-width: 991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header,.modal-fullscreen-lg-down .modal-footer{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media(max-width: 1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header,.modal-fullscreen-xl-down .modal-footer{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media(max-width: 1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header,.modal-fullscreen-xxl-down .modal-footer{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex: 1080;--bs-tooltip-max-width: 200px;--bs-tooltip-padding-x: 0.5rem;--bs-tooltip-padding-y: 0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color: #fff;--bs-tooltip-bg: #000;--bs-tooltip-border-radius: 0.25rem;--bs-tooltip-opacity: 0.9;--bs-tooltip-arrow-width: 0.8rem;--bs-tooltip-arrow-height: 0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:rgba(0,0,0,0);border-style:solid}.bs-tooltip-top .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow{bottom:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-top .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-end .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow{left:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-end .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-bottom .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow{top:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-bottom .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-start .tooltip-arrow,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow{right:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-start .tooltip-arrow::before,.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex: 1070;--bs-popover-max-width: 276px;--bs-popover-font-size:0.875rem;--bs-popover-bg: #fff;--bs-popover-border-width: 1px;--bs-popover-border-color: rgba(0, 0, 0, 0.175);--bs-popover-border-radius: 0.5rem;--bs-popover-inner-border-radius: calc(0.5rem - 1px);--bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x: 1rem;--bs-popover-header-padding-y: 0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: inherit;--bs-popover-header-bg: #ecf0f1;--bs-popover-body-padding-x: 1rem;--bs-popover-body-padding-y: 1rem;--bs-popover-body-color: #212529;--bs-popover-arrow-width: 1rem;--bs-popover-arrow-height: 0.5rem;--bs-popover-arrow-border: var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::before,.popover .popover-arrow::after{position:absolute;display:block;content:"";border-color:rgba(0,0,0,0);border-style:solid;border-width:0}.bs-popover-top>.popover-arrow,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow{bottom:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-top>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-top>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-end>.popover-arrow,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow{left:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0}.bs-popover-end>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-end>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-bottom>.popover-arrow,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow{top:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{border-width:0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-bottom>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-bottom>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-bottom .popover-header::before,.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-0.5*var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-start>.popover-arrow,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow{right:calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{border-width:calc(var(--bs-popover-arrow-width)*.5) 0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)}.bs-popover-start>.popover-arrow::before,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-start>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y;-webkit-touch-action:pan-y;-moz-touch-action:pan-y;-ms-touch-action:pan-y;-o-touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end{z-index:1;opacity:1}.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:center;-webkit-justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;display:-webkit-flex;justify-content:center;-webkit-justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;-webkit-flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid rgba(0,0,0,0);border-bottom:10px solid rgba(0,0,0,0);opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion: reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-grow,.spinner-border{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg) /* rtl:ignore */}}.spinner-border{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-border-width: 0.25em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:rgba(0,0,0,0)}.spinner-border-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem;--bs-spinner-border-width: 0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width: 2rem;--bs-spinner-height: 2rem;--bs-spinner-vertical-align: -0.125em;--bs-spinner-animation-speed: 0.75s;--bs-spinner-animation-name: spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width: 1rem;--bs-spinner-height: 1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed: 1.5s}}.offcanvas,.offcanvas-xxl,.offcanvas-xl,.offcanvas-lg,.offcanvas-md,.offcanvas-sm{--bs-offcanvas-zindex: 1045;--bs-offcanvas-width: 400px;--bs-offcanvas-height: 30vh;--bs-offcanvas-padding-x: 1rem;--bs-offcanvas-padding-y: 1rem;--bs-offcanvas-color: #212529;--bs-offcanvas-bg: #fff;--bs-offcanvas-border-width: 1px;--bs-offcanvas-border-color: rgba(0, 0, 0, 0.175);--bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition: transform 0.3s ease-in-out;--bs-offcanvas-title-line-height: 1.5}@media(max-width: 575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 575.98px)and (prefers-reduced-motion: reduce){.offcanvas-sm{transition:none}}@media(max-width: 575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-sm.showing,.offcanvas-sm.show:not(.hiding){transform:none}.offcanvas-sm.showing,.offcanvas-sm.hiding,.offcanvas-sm.show{visibility:visible}}@media(min-width: 576px){.offcanvas-sm{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 767.98px)and (prefers-reduced-motion: reduce){.offcanvas-md{transition:none}}@media(max-width: 767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-md.showing,.offcanvas-md.show:not(.hiding){transform:none}.offcanvas-md.showing,.offcanvas-md.hiding,.offcanvas-md.show{visibility:visible}}@media(min-width: 768px){.offcanvas-md{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 991.98px)and (prefers-reduced-motion: reduce){.offcanvas-lg{transition:none}}@media(max-width: 991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-lg.showing,.offcanvas-lg.show:not(.hiding){transform:none}.offcanvas-lg.showing,.offcanvas-lg.hiding,.offcanvas-lg.show{visibility:visible}}@media(min-width: 992px){.offcanvas-lg{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1199.98px)and (prefers-reduced-motion: reduce){.offcanvas-xl{transition:none}}@media(max-width: 1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xl.showing,.offcanvas-xl.show:not(.hiding){transform:none}.offcanvas-xl.showing,.offcanvas-xl.hiding,.offcanvas-xl.show{visibility:visible}}@media(min-width: 1200px){.offcanvas-xl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}@media(max-width: 1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media(max-width: 1399.98px)and (prefers-reduced-motion: reduce){.offcanvas-xxl{transition:none}}@media(max-width: 1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xxl.showing,.offcanvas-xxl.show:not(.hiding){transform:none}.offcanvas-xxl.showing,.offcanvas-xxl.hiding,.offcanvas-xxl.show{visibility:visible}}@media(min-width: 1400px){.offcanvas-xxl{--bs-offcanvas-height: auto;--bs-offcanvas-border-width: 0;background-color:rgba(0,0,0,0) !important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;display:-webkit-flex;flex-grow:0;-webkit-flex-grow:0;padding:0;overflow-y:visible;background-color:rgba(0,0,0,0) !important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;display:-webkit-flex;flex-direction:column;-webkit-flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media(prefers-reduced-motion: reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.showing,.offcanvas.show:not(.hiding){transform:none}.offcanvas.showing,.offcanvas.hiding,.offcanvas.show{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;display:-webkit-flex;align-items:center;-webkit-align-items:center;justify-content:space-between;-webkit-justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y)*.5) calc(var(--bs-offcanvas-padding-x)*.5);margin-top:calc(-0.5*var(--bs-offcanvas-padding-y));margin-right:calc(-0.5*var(--bs-offcanvas-padding-x));margin-bottom:calc(-0.5*var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;-webkit-flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);-webkit-mask-image:linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);mask-size:200% 100%;-webkit-mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{mask-position:-200% 0%;-webkit-mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-default{color:#fff !important;background-color:RGBA(var(--bs-default-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-primary{color:#fff !important;background-color:RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#fff !important;background-color:RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#fff !important;background-color:RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#fff !important;background-color:RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#000 !important;background-color:RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#fff !important;background-color:RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important}.link-default{color:RGBA(var(--bs-default-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-default-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-default:hover,.link-default:focus{color:RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important}.link-primary{color:RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-primary:hover,.link-primary:focus{color:RGBA(35, 50, 64, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(35, 50, 64, var(--bs-link-underline-opacity, 1)) !important}.link-secondary{color:RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-secondary:hover,.link-secondary:focus{color:RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important}.link-success{color:RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-success:hover,.link-success:focus{color:RGBA(19, 150, 125, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(19, 150, 125, var(--bs-link-underline-opacity, 1)) !important}.link-info{color:RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-info:hover,.link-info:focus{color:RGBA(42, 122, 175, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(42, 122, 175, var(--bs-link-underline-opacity, 1)) !important}.link-warning{color:RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-warning:hover,.link-warning:focus{color:RGBA(194, 125, 14, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(194, 125, 14, var(--bs-link-underline-opacity, 1)) !important}.link-danger{color:RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-danger:hover,.link-danger:focus{color:RGBA(185, 61, 48, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(185, 61, 48, var(--bs-link-underline-opacity, 1)) !important}.link-light{color:RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-light:hover,.link-light:focus{color:RGBA(240, 243, 244, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(240, 243, 244, var(--bs-link-underline-opacity, 1)) !important}.link-dark{color:RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-dark:hover,.link-dark:focus{color:RGBA(98, 110, 111, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(98, 110, 111, var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis:hover,.link-body-emphasis:focus{color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-align-items:center;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));text-underline-offset:.25em;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;-webkit-flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media(prefers-reduced-motion: reduce){.icon-link>.bi{transition:none}}.icon-link-hover:hover>.bi,.icon-link-hover:focus-visible>.bi{transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-4x3{--bs-aspect-ratio: 75%}.ratio-16x9{--bs-aspect-ratio: 56.25%}.ratio-21x9{--bs-aspect-ratio: 42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}.sticky-bottom{position:sticky;bottom:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;display:-webkit-flex;flex-direction:row;-webkit-flex-direction:row;align-items:center;-webkit-align-items:center;align-self:stretch;-webkit-align-self:stretch}.vstack{display:flex;display:-webkit-flex;flex:1 1 auto;-webkit-flex:1 1 auto;flex-direction:column;-webkit-flex-direction:column;align-self:stretch;-webkit-align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.visually-hidden:not(caption),.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption){position:absolute !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;-webkit-align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.object-fit-contain{object-fit:contain !important}.object-fit-cover{object-fit:cover !important}.object-fit-fill{object-fit:fill !important}.object-fit-scale{object-fit:scale-down !important}.object-fit-none{object-fit:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.overflow-x-auto{overflow-x:auto !important}.overflow-x-hidden{overflow-x:hidden !important}.overflow-x-visible{overflow-x:visible !important}.overflow-x-scroll{overflow-x:scroll !important}.overflow-y-auto{overflow-y:auto !important}.overflow-y-hidden{overflow-y:hidden !important}.overflow-y-visible{overflow-y:visible !important}.overflow-y-scroll{overflow-y:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-inline-grid{display:inline-grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.focus-ring-default{--bs-focus-ring-color: rgba(var(--bs-default-rgb), var(--bs-focus-ring-opacity))}.focus-ring-primary{--bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-0{border:0 !important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-top-0{border-top:0 !important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-start-0{border-left:0 !important}.border-default{--bs-border-opacity: 1;border-color:rgba(var(--bs-default-rgb), var(--bs-border-opacity)) !important}.border-primary{--bs-border-opacity: 1;border-color:rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important}.border-secondary{--bs-border-opacity: 1;border-color:rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important}.border-success{--bs-border-opacity: 1;border-color:rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important}.border-info{--bs-border-opacity: 1;border-color:rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important}.border-warning{--bs-border-opacity: 1;border-color:rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important}.border-danger{--bs-border-opacity: 1;border-color:rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important}.border-light{--bs-border-opacity: 1;border-color:rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important}.border-dark{--bs-border-opacity: 1;border-color:rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important}.border-black{--bs-border-opacity: 1;border-color:rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important}.border-white{--bs-border-opacity: 1;border-color:rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle) !important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle) !important}.border-success-subtle{border-color:var(--bs-success-border-subtle) !important}.border-info-subtle{border-color:var(--bs-info-border-subtle) !important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle) !important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle) !important}.border-light-subtle{border-color:var(--bs-light-border-subtle) !important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle) !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.border-opacity-10{--bs-border-opacity: 0.1}.border-opacity-25{--bs-border-opacity: 0.25}.border-opacity-50{--bs-border-opacity: 0.5}.border-opacity-75{--bs-border-opacity: 0.75}.border-opacity-100{--bs-border-opacity: 1}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:3rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:3rem !important}.ms-auto{margin-left:auto !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:3rem !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:3rem !important}.row-gap-0{row-gap:0 !important}.row-gap-1{row-gap:.25rem !important}.row-gap-2{row-gap:.5rem !important}.row-gap-3{row-gap:1rem !important}.row-gap-4{row-gap:1.5rem !important}.row-gap-5{row-gap:3rem !important}.column-gap-0{column-gap:0 !important}.column-gap-1{column-gap:.25rem !important}.column-gap-2{column-gap:.5rem !important}.column-gap-3{column-gap:1rem !important}.column-gap-4{column-gap:1.5rem !important}.column-gap-5{column-gap:3rem !important}.font-monospace{font-family:var(--bs-font-monospace) !important}.fs-1{font-size:calc(1.325rem + 0.9vw) !important}.fs-2{font-size:calc(1.29rem + 0.48vw) !important}.fs-3{font-size:calc(1.27rem + 0.24vw) !important}.fs-4{font-size:1.25rem !important}.fs-5{font-size:1.1rem !important}.fs-6{font-size:1rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-lighter{font-weight:lighter !important}.fw-light{font-weight:300 !important}.fw-normal{font-weight:400 !important}.fw-medium{font-weight:500 !important}.fw-semibold{font-weight:600 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{text-decoration:none !important}.text-decoration-underline{text-decoration:underline !important}.text-decoration-line-through{text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-default{--bs-text-opacity: 1;color:rgba(var(--bs-default-rgb), var(--bs-text-opacity)) !important}.text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-black-50{--bs-text-opacity: 1;color:rgba(0,0,0,.5) !important}.text-white-50{--bs-text-opacity: 1;color:hsla(0,0%,100%,.5) !important}.text-body-secondary{--bs-text-opacity: 1;color:var(--bs-secondary-color) !important}.text-body-tertiary{--bs-text-opacity: 1;color:var(--bs-tertiary-color) !important}.text-body-emphasis{--bs-text-opacity: 1;color:var(--bs-emphasis-color) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis) !important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis) !important}.text-success-emphasis{color:var(--bs-success-text-emphasis) !important}.text-info-emphasis{color:var(--bs-info-text-emphasis) !important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis) !important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis) !important}.text-light-emphasis{color:var(--bs-light-text-emphasis) !important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis) !important}.link-opacity-10{--bs-link-opacity: 0.1}.link-opacity-10-hover:hover{--bs-link-opacity: 0.1}.link-opacity-25{--bs-link-opacity: 0.25}.link-opacity-25-hover:hover{--bs-link-opacity: 0.25}.link-opacity-50{--bs-link-opacity: 0.5}.link-opacity-50-hover:hover{--bs-link-opacity: 0.5}.link-opacity-75{--bs-link-opacity: 0.75}.link-opacity-75-hover:hover{--bs-link-opacity: 0.75}.link-opacity-100{--bs-link-opacity: 1}.link-opacity-100-hover:hover{--bs-link-opacity: 1}.link-offset-1{text-underline-offset:.125em !important}.link-offset-1-hover:hover{text-underline-offset:.125em !important}.link-offset-2{text-underline-offset:.25em !important}.link-offset-2-hover:hover{text-underline-offset:.25em !important}.link-offset-3{text-underline-offset:.375em !important}.link-offset-3-hover:hover{text-underline-offset:.375em !important}.link-underline-default{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-default-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-primary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-secondary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-success{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-info{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-warning{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-danger{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-light{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-dark{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important}.link-underline{--bs-link-underline-opacity: 1;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-underline-opacity-0{--bs-link-underline-opacity: 0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity: 0}.link-underline-opacity-10{--bs-link-underline-opacity: 0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity: 0.1}.link-underline-opacity-25{--bs-link-underline-opacity: 0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity: 0.25}.link-underline-opacity-50{--bs-link-underline-opacity: 0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity: 0.5}.link-underline-opacity-75{--bs-link-underline-opacity: 0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity: 0.75}.link-underline-opacity-100{--bs-link-underline-opacity: 1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity: 1}.bg-default{--bs-bg-opacity: 1;background-color:rgba(var(--bs-default-rgb), var(--bs-bg-opacity)) !important}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-body-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-body-tertiary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle) !important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle) !important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle) !important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle) !important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle) !important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle) !important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle) !important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle) !important}.bg-gradient{background-image:var(--bs-gradient) !important}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:var(--bs-border-radius) !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:var(--bs-border-radius-sm) !important}.rounded-2{border-radius:var(--bs-border-radius) !important}.rounded-3{border-radius:var(--bs-border-radius-lg) !important}.rounded-4{border-radius:var(--bs-border-radius-xl) !important}.rounded-5{border-radius:var(--bs-border-radius-xxl) !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:var(--bs-border-radius-pill) !important}.rounded-top{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm) !important;border-top-right-radius:var(--bs-border-radius-sm) !important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg) !important;border-top-right-radius:var(--bs-border-radius-lg) !important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl) !important;border-top-right-radius:var(--bs-border-radius-xl) !important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl) !important;border-top-right-radius:var(--bs-border-radius-xxl) !important}.rounded-top-circle{border-top-left-radius:50% !important;border-top-right-radius:50% !important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill) !important;border-top-right-radius:var(--bs-border-radius-pill) !important}.rounded-end{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm) !important;border-bottom-right-radius:var(--bs-border-radius-sm) !important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg) !important;border-bottom-right-radius:var(--bs-border-radius-lg) !important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl) !important;border-bottom-right-radius:var(--bs-border-radius-xl) !important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-right-radius:var(--bs-border-radius-xxl) !important}.rounded-end-circle{border-top-right-radius:50% !important;border-bottom-right-radius:50% !important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill) !important;border-bottom-right-radius:var(--bs-border-radius-pill) !important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm) !important;border-bottom-left-radius:var(--bs-border-radius-sm) !important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg) !important;border-bottom-left-radius:var(--bs-border-radius-lg) !important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl) !important;border-bottom-left-radius:var(--bs-border-radius-xl) !important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-left-radius:var(--bs-border-radius-xxl) !important}.rounded-bottom-circle{border-bottom-right-radius:50% !important;border-bottom-left-radius:50% !important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill) !important;border-bottom-left-radius:var(--bs-border-radius-pill) !important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm) !important;border-top-left-radius:var(--bs-border-radius-sm) !important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg) !important;border-top-left-radius:var(--bs-border-radius-lg) !important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl) !important;border-top-left-radius:var(--bs-border-radius-xl) !important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl) !important;border-top-left-radius:var(--bs-border-radius-xxl) !important}.rounded-start-circle{border-bottom-left-radius:50% !important;border-top-left-radius:50% !important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill) !important;border-top-left-radius:var(--bs-border-radius-pill) !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.z-n1{z-index:-1 !important}.z-0{z-index:0 !important}.z-1{z-index:1 !important}.z-2{z-index:2 !important}.z-3{z-index:3 !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.object-fit-sm-contain{object-fit:contain !important}.object-fit-sm-cover{object-fit:cover !important}.object-fit-sm-fill{object-fit:fill !important}.object-fit-sm-scale{object-fit:scale-down !important}.object-fit-sm-none{object-fit:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-inline-grid{display:inline-grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:3rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:3rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:3rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:3rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:3rem !important}.ms-sm-auto{margin-left:auto !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:3rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:3rem !important;padding-left:3rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:3rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:3rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:3rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:3rem !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:3rem !important}.row-gap-sm-0{row-gap:0 !important}.row-gap-sm-1{row-gap:.25rem !important}.row-gap-sm-2{row-gap:.5rem !important}.row-gap-sm-3{row-gap:1rem !important}.row-gap-sm-4{row-gap:1.5rem !important}.row-gap-sm-5{row-gap:3rem !important}.column-gap-sm-0{column-gap:0 !important}.column-gap-sm-1{column-gap:.25rem !important}.column-gap-sm-2{column-gap:.5rem !important}.column-gap-sm-3{column-gap:1rem !important}.column-gap-sm-4{column-gap:1.5rem !important}.column-gap-sm-5{column-gap:3rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.object-fit-md-contain{object-fit:contain !important}.object-fit-md-cover{object-fit:cover !important}.object-fit-md-fill{object-fit:fill !important}.object-fit-md-scale{object-fit:scale-down !important}.object-fit-md-none{object-fit:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-inline-grid{display:inline-grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:3rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:3rem !important;margin-left:3rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:3rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:3rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:3rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:3rem !important}.ms-md-auto{margin-left:auto !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:3rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:3rem !important;padding-left:3rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:3rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:3rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:3rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:3rem !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:3rem !important}.row-gap-md-0{row-gap:0 !important}.row-gap-md-1{row-gap:.25rem !important}.row-gap-md-2{row-gap:.5rem !important}.row-gap-md-3{row-gap:1rem !important}.row-gap-md-4{row-gap:1.5rem !important}.row-gap-md-5{row-gap:3rem !important}.column-gap-md-0{column-gap:0 !important}.column-gap-md-1{column-gap:.25rem !important}.column-gap-md-2{column-gap:.5rem !important}.column-gap-md-3{column-gap:1rem !important}.column-gap-md-4{column-gap:1.5rem !important}.column-gap-md-5{column-gap:3rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.object-fit-lg-contain{object-fit:contain !important}.object-fit-lg-cover{object-fit:cover !important}.object-fit-lg-fill{object-fit:fill !important}.object-fit-lg-scale{object-fit:scale-down !important}.object-fit-lg-none{object-fit:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-inline-grid{display:inline-grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:3rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:3rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:3rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:3rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:3rem !important}.ms-lg-auto{margin-left:auto !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:3rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:3rem !important;padding-left:3rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:3rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:3rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:3rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:3rem !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:3rem !important}.row-gap-lg-0{row-gap:0 !important}.row-gap-lg-1{row-gap:.25rem !important}.row-gap-lg-2{row-gap:.5rem !important}.row-gap-lg-3{row-gap:1rem !important}.row-gap-lg-4{row-gap:1.5rem !important}.row-gap-lg-5{row-gap:3rem !important}.column-gap-lg-0{column-gap:0 !important}.column-gap-lg-1{column-gap:.25rem !important}.column-gap-lg-2{column-gap:.5rem !important}.column-gap-lg-3{column-gap:1rem !important}.column-gap-lg-4{column-gap:1.5rem !important}.column-gap-lg-5{column-gap:3rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.object-fit-xl-contain{object-fit:contain !important}.object-fit-xl-cover{object-fit:cover !important}.object-fit-xl-fill{object-fit:fill !important}.object-fit-xl-scale{object-fit:scale-down !important}.object-fit-xl-none{object-fit:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-inline-grid{display:inline-grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:3rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:3rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:3rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:3rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:3rem !important}.ms-xl-auto{margin-left:auto !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:3rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:3rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:3rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:3rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:3rem !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:3rem !important}.row-gap-xl-0{row-gap:0 !important}.row-gap-xl-1{row-gap:.25rem !important}.row-gap-xl-2{row-gap:.5rem !important}.row-gap-xl-3{row-gap:1rem !important}.row-gap-xl-4{row-gap:1.5rem !important}.row-gap-xl-5{row-gap:3rem !important}.column-gap-xl-0{column-gap:0 !important}.column-gap-xl-1{column-gap:.25rem !important}.column-gap-xl-2{column-gap:.5rem !important}.column-gap-xl-3{column-gap:1rem !important}.column-gap-xl-4{column-gap:1.5rem !important}.column-gap-xl-5{column-gap:3rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.object-fit-xxl-contain{object-fit:contain !important}.object-fit-xxl-cover{object-fit:cover !important}.object-fit-xxl-fill{object-fit:fill !important}.object-fit-xxl-scale{object-fit:scale-down !important}.object-fit-xxl-none{object-fit:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-inline-grid{display:inline-grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:3rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:3rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:3rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:3rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:3rem !important}.ms-xxl-auto{margin-left:auto !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:3rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:3rem !important;padding-left:3rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:3rem !important;padding-bottom:3rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:3rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:3rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:3rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:3rem !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:3rem !important}.row-gap-xxl-0{row-gap:0 !important}.row-gap-xxl-1{row-gap:.25rem !important}.row-gap-xxl-2{row-gap:.5rem !important}.row-gap-xxl-3{row-gap:1rem !important}.row-gap-xxl-4{row-gap:1.5rem !important}.row-gap-xxl-5{row-gap:3rem !important}.column-gap-xxl-0{column-gap:0 !important}.column-gap-xxl-1{column-gap:.25rem !important}.column-gap-xxl-2{column-gap:.5rem !important}.column-gap-xxl-3{column-gap:1rem !important}.column-gap-xxl-4{column-gap:1.5rem !important}.column-gap-xxl-5{column-gap:3rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}.bg-default{color:#fff}.bg-primary{color:#fff}.bg-secondary{color:#fff}.bg-success{color:#fff}.bg-info{color:#fff}.bg-warning{color:#fff}.bg-danger{color:#fff}.bg-light{color:#000}.bg-dark{color:#fff}@media(min-width: 1200px){.fs-1{font-size:2rem !important}.fs-2{font-size:1.65rem !important}.fs-3{font-size:1.45rem !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-inline-grid{display:inline-grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}.bg-blue{--bslib-color-bg: #2c3e50;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #2c3e50;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #6f42c1;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #6f42c1;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #e83e8c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #e83e8c;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #e74c3c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #e74c3c;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #fd7e14;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #fd7e14;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #f39c12;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #f39c12;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #18bc9c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #18bc9c;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #3498db;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #3498db;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #6c757d}.bg-default{--bslib-color-bg: #6c757d;--bslib-color-fg: #fff}.text-primary{--bslib-color-fg: #2c3e50}.bg-primary{--bslib-color-bg: #2c3e50;--bslib-color-fg: #fff}.text-secondary{--bslib-color-fg: #6c757d}.bg-secondary{--bslib-color-bg: #6c757d;--bslib-color-fg: #fff}.text-success{--bslib-color-fg: #18bc9c}.bg-success{--bslib-color-bg: #18bc9c;--bslib-color-fg: #fff}.text-info{--bslib-color-fg: #3498db}.bg-info{--bslib-color-bg: #3498db;--bslib-color-fg: #fff}.text-warning{--bslib-color-fg: #f39c12}.bg-warning{--bslib-color-bg: #f39c12;--bslib-color-fg: #fff}.text-danger{--bslib-color-fg: #e74c3c}.bg-danger{--bslib-color-bg: #e74c3c;--bslib-color-fg: #fff}.text-light{--bslib-color-fg: #ecf0f1}.bg-light{--bslib-color-bg: #ecf0f1;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #7b8a8b}.bg-dark{--bslib-color-bg: #7b8a8b;--bslib-color-fg: #fff}.bg-gradient-blue-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(67.2, 43.6, 144.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(67.2,43.6,144.8);color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(70.8, 63.6, 125.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(70.8,63.6,125.2);color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(119.2, 62, 104);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(119.2,62,104);color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(118.8, 67.6, 72);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(118.8,67.6,72);color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(127.6, 87.6, 56);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(127.6,87.6,56);color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(123.6, 99.6, 55.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(123.6,99.6,55.2);color:#fff}.bg-gradient-blue-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(36, 112.4, 110.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(36,112.4,110.4);color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(39.2, 117.6, 108.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(39.2,117.6,108.4);color:#fff}.bg-gradient-blue-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(47.2, 98, 135.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(47.2,98,135.6);color:#fff}.bg-gradient-indigo-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(78.8, 34.4, 177.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(78.8,34.4,177.2);color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(105.6, 36, 222.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(105.6,36,222.4);color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(154, 34.4, 201.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(154,34.4,201.2);color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(153.6, 40, 169.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(153.6,40,169.2);color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(162.4, 60, 153.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(162.4,60,153.2);color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(158.4, 72, 152.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(158.4,72,152.4);color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(70.8, 84.8, 207.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(70.8,84.8,207.6);color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(74, 90, 205.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(74,90,205.6);color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(82, 70.4, 232.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(82,70.4,232.8);color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(84.2, 64.4, 147.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(84.2,64.4,147.8);color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(107.4, 46, 212.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(107.4,46,212.6);color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(159.4, 64.4, 171.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(159.4,64.4,171.8);color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(159, 70, 139.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(159,70,139.8);color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(167.8, 90, 123.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(167.8,90,123.8);color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(163.8, 102, 123);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(163.8,102,123);color:#fff}.bg-gradient-purple-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(76.2, 114.8, 178.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(76.2,114.8,178.2);color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(79.4, 120, 176.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(79.4,120,176.2);color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(87.4, 100.4, 203.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(87.4,100.4,203.4);color:#fff}.bg-gradient-pink-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(156.8, 62, 116);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(156.8,62,116);color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(180, 43.6, 180.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(180,43.6,180.8);color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(183.6, 63.6, 161.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(183.6,63.6,161.2);color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(231.6, 67.6, 108);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(231.6,67.6,108);color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(240.4, 87.6, 92);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(240.4,87.6,92);color:#fff}.bg-gradient-pink-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(236.4, 99.6, 91.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(236.4,99.6,91.2);color:#fff}.bg-gradient-pink-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(148.8, 112.4, 146.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(148.8,112.4,146.4);color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(152, 117.6, 144.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(152,117.6,144.4);color:#fff}.bg-gradient-pink-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(160, 98, 171.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(160,98,171.6);color:#fff}.bg-gradient-red-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(156.2, 70.4, 68);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(156.2,70.4,68);color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(179.4, 52, 132.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(179.4,52,132.8);color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(183, 72, 113.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(183,72,113.2);color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(231.4, 70.4, 92);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(231.4,70.4,92);color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(239.8, 96, 44);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(239.8,96,44);color:#fff}.bg-gradient-red-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(235.8, 108, 43.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(235.8,108,43.2);color:#fff}.bg-gradient-red-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(148.2, 120.8, 98.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(148.2,120.8,98.4);color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(151.4, 126, 96.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(151.4,126,96.4);color:#fff}.bg-gradient-red-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(159.4, 106.4, 123.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(159.4,106.4,123.6);color:#fff}.bg-gradient-orange-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(169.4, 100.4, 44);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(169.4,100.4,44);color:#fff}.bg-gradient-orange-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(192.6, 82, 108.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(192.6,82,108.8);color:#fff}.bg-gradient-orange-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(196.2, 102, 89.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(196.2,102,89.2);color:#fff}.bg-gradient-orange-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(244.6, 100.4, 68);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(244.6,100.4,68);color:#fff}.bg-gradient-orange-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(244.2, 106, 36);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(244.2,106,36);color:#fff}.bg-gradient-orange-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(249, 138, 19.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(249,138,19.2);color:#fff}.bg-gradient-orange-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(161.4, 150.8, 74.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(161.4,150.8,74.4);color:#fff}.bg-gradient-orange-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(164.6, 156, 72.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(164.6,156,72.4);color:#fff}.bg-gradient-orange-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(172.6, 136.4, 99.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(172.6,136.4,99.6);color:#fff}.bg-gradient-yellow-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(163.4, 118.4, 42.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(163.4,118.4,42.8);color:#fff}.bg-gradient-yellow-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(186.6, 100, 107.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(186.6,100,107.6);color:#fff}.bg-gradient-yellow-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(190.2, 120, 88);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(190.2,120,88);color:#fff}.bg-gradient-yellow-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(238.6, 118.4, 66.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(238.6,118.4,66.8);color:#fff}.bg-gradient-yellow-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(238.2, 124, 34.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(238.2,124,34.8);color:#fff}.bg-gradient-yellow-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(247, 144, 18.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(247,144,18.8);color:#fff}.bg-gradient-yellow-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(155.4, 168.8, 73.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(155.4,168.8,73.2);color:#fff}.bg-gradient-yellow-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(158.6, 174, 71.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(158.6,174,71.2);color:#fff}.bg-gradient-yellow-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(166.6, 154.4, 98.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(166.6,154.4,98.4);color:#fff}.bg-gradient-green-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(32, 137.6, 125.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(32,137.6,125.6);color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(55.2, 119.2, 190.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(55.2,119.2,190.4);color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(58.8, 139.2, 170.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(58.8,139.2,170.8);color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(107.2, 137.6, 149.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(107.2,137.6,149.6);color:#fff}.bg-gradient-green-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(106.8, 143.2, 117.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(106.8,143.2,117.6);color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(115.6, 163.2, 101.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(115.6,163.2,101.6);color:#fff}.bg-gradient-green-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(111.6, 175.2, 100.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(111.6,175.2,100.8);color:#fff}.bg-gradient-green-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(27.2, 193.2, 154);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(27.2,193.2,154);color:#fff}.bg-gradient-green-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(35.2, 173.6, 181.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(35.2,173.6,181.2);color:#fff}.bg-gradient-teal-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(36.8, 145.4, 122.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(36.8,145.4,122.6);color:#fff}.bg-gradient-teal-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(60, 127, 187.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(60,127,187.4);color:#fff}.bg-gradient-teal-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(63.6, 147, 167.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(63.6,147,167.8);color:#fff}.bg-gradient-teal-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(112, 145.4, 146.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(112,145.4,146.6);color:#fff}.bg-gradient-teal-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(111.6, 151, 114.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(111.6,151,114.6);color:#fff}.bg-gradient-teal-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(120.4, 171, 98.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(120.4,171,98.6);color:#fff}.bg-gradient-teal-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(116.4, 183, 97.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(116.4,183,97.8);color:#fff}.bg-gradient-teal-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(28.8, 195.8, 153);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(28.8,195.8,153);color:#fff}.bg-gradient-teal-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(40, 181.4, 178.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(40,181.4,178.2);color:#fff}.bg-gradient-cyan-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(48.8, 116, 163.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(48.8,116,163.4);color:#fff}.bg-gradient-cyan-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(72, 97.6, 228.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(72,97.6,228.2);color:#fff}.bg-gradient-cyan-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(75.6, 117.6, 208.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(75.6,117.6,208.6);color:#fff}.bg-gradient-cyan-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(124, 116, 187.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(124,116,187.4);color:#fff}.bg-gradient-cyan-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(123.6, 121.6, 155.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(123.6,121.6,155.4);color:#fff}.bg-gradient-cyan-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(132.4, 141.6, 139.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(132.4,141.6,139.4);color:#fff}.bg-gradient-cyan-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(128.4, 153.6, 138.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(128.4,153.6,138.6);color:#fff}.bg-gradient-cyan-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(40.8, 166.4, 193.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(40.8,166.4,193.8);color:#fff}.bg-gradient-cyan-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(44, 171.6, 191.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(44,171.6,191.8);color:#fff}.bg-blue{--bslib-color-bg: #2c3e50;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-blue{--bslib-color-fg: #2c3e50;color:var(--bslib-color-fg)}.bg-indigo{--bslib-color-bg: #6610f2;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-indigo{--bslib-color-fg: #6610f2;color:var(--bslib-color-fg)}.bg-purple{--bslib-color-bg: #6f42c1;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-purple{--bslib-color-fg: #6f42c1;color:var(--bslib-color-fg)}.bg-pink{--bslib-color-bg: #e83e8c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-pink{--bslib-color-fg: #e83e8c;color:var(--bslib-color-fg)}.bg-red{--bslib-color-bg: #e74c3c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-red{--bslib-color-fg: #e74c3c;color:var(--bslib-color-fg)}.bg-orange{--bslib-color-bg: #fd7e14;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-orange{--bslib-color-fg: #fd7e14;color:var(--bslib-color-fg)}.bg-yellow{--bslib-color-bg: #f39c12;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-yellow{--bslib-color-fg: #f39c12;color:var(--bslib-color-fg)}.bg-green{--bslib-color-bg: #18bc9c;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-green{--bslib-color-fg: #18bc9c;color:var(--bslib-color-fg)}.bg-teal{--bslib-color-bg: #20c997;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-teal{--bslib-color-fg: #20c997;color:var(--bslib-color-fg)}.bg-cyan{--bslib-color-bg: #3498db;--bslib-color-fg: #fff;background-color:var(--bslib-color-bg);color:var(--bslib-color-fg)}.text-cyan{--bslib-color-fg: #3498db;color:var(--bslib-color-fg)}.text-default{--bslib-color-fg: #6c757d}.bg-default{--bslib-color-bg: #6c757d;--bslib-color-fg: #fff}.text-primary{--bslib-color-fg: #2c3e50}.bg-primary{--bslib-color-bg: #2c3e50;--bslib-color-fg: #fff}.text-secondary{--bslib-color-fg: #6c757d}.bg-secondary{--bslib-color-bg: #6c757d;--bslib-color-fg: #fff}.text-success{--bslib-color-fg: #18bc9c}.bg-success{--bslib-color-bg: #18bc9c;--bslib-color-fg: #fff}.text-info{--bslib-color-fg: #3498db}.bg-info{--bslib-color-bg: #3498db;--bslib-color-fg: #fff}.text-warning{--bslib-color-fg: #f39c12}.bg-warning{--bslib-color-bg: #f39c12;--bslib-color-fg: #fff}.text-danger{--bslib-color-fg: #e74c3c}.bg-danger{--bslib-color-bg: #e74c3c;--bslib-color-fg: #fff}.text-light{--bslib-color-fg: #ecf0f1}.bg-light{--bslib-color-bg: #ecf0f1;--bslib-color-fg: #000}.text-dark{--bslib-color-fg: #7b8a8b}.bg-dark{--bslib-color-bg: #7b8a8b;--bslib-color-fg: #fff}.bg-gradient-blue-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(67.2, 43.6, 144.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(67.2,43.6,144.8);color:#fff}.bg-gradient-blue-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(70.8, 63.6, 125.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(70.8,63.6,125.2);color:#fff}.bg-gradient-blue-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(119.2, 62, 104);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(119.2,62,104);color:#fff}.bg-gradient-blue-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(118.8, 67.6, 72);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(118.8,67.6,72);color:#fff}.bg-gradient-blue-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(127.6, 87.6, 56);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(127.6,87.6,56);color:#fff}.bg-gradient-blue-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(123.6, 99.6, 55.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(123.6,99.6,55.2);color:#fff}.bg-gradient-blue-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(36, 112.4, 110.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(36,112.4,110.4);color:#fff}.bg-gradient-blue-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(39.2, 117.6, 108.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(39.2,117.6,108.4);color:#fff}.bg-gradient-blue-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(47.2, 98, 135.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #2c3e50 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(47.2,98,135.6);color:#fff}.bg-gradient-indigo-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(78.8, 34.4, 177.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(78.8,34.4,177.2);color:#fff}.bg-gradient-indigo-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(105.6, 36, 222.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(105.6,36,222.4);color:#fff}.bg-gradient-indigo-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(154, 34.4, 201.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(154,34.4,201.2);color:#fff}.bg-gradient-indigo-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(153.6, 40, 169.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(153.6,40,169.2);color:#fff}.bg-gradient-indigo-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(162.4, 60, 153.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(162.4,60,153.2);color:#fff}.bg-gradient-indigo-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(158.4, 72, 152.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(158.4,72,152.4);color:#fff}.bg-gradient-indigo-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(70.8, 84.8, 207.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(70.8,84.8,207.6);color:#fff}.bg-gradient-indigo-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(74, 90, 205.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(74,90,205.6);color:#fff}.bg-gradient-indigo-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(82, 70.4, 232.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6610f2 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(82,70.4,232.8);color:#fff}.bg-gradient-purple-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(84.2, 64.4, 147.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(84.2,64.4,147.8);color:#fff}.bg-gradient-purple-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(107.4, 46, 212.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(107.4,46,212.6);color:#fff}.bg-gradient-purple-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(159.4, 64.4, 171.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(159.4,64.4,171.8);color:#fff}.bg-gradient-purple-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(159, 70, 139.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(159,70,139.8);color:#fff}.bg-gradient-purple-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(167.8, 90, 123.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(167.8,90,123.8);color:#fff}.bg-gradient-purple-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(163.8, 102, 123);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(163.8,102,123);color:#fff}.bg-gradient-purple-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(76.2, 114.8, 178.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(76.2,114.8,178.2);color:#fff}.bg-gradient-purple-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(79.4, 120, 176.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(79.4,120,176.2);color:#fff}.bg-gradient-purple-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(87.4, 100.4, 203.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #6f42c1 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(87.4,100.4,203.4);color:#fff}.bg-gradient-pink-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(156.8, 62, 116);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(156.8,62,116);color:#fff}.bg-gradient-pink-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(180, 43.6, 180.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(180,43.6,180.8);color:#fff}.bg-gradient-pink-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(183.6, 63.6, 161.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(183.6,63.6,161.2);color:#fff}.bg-gradient-pink-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(231.6, 67.6, 108);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(231.6,67.6,108);color:#fff}.bg-gradient-pink-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(240.4, 87.6, 92);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(240.4,87.6,92);color:#fff}.bg-gradient-pink-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(236.4, 99.6, 91.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(236.4,99.6,91.2);color:#fff}.bg-gradient-pink-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(148.8, 112.4, 146.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(148.8,112.4,146.4);color:#fff}.bg-gradient-pink-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(152, 117.6, 144.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(152,117.6,144.4);color:#fff}.bg-gradient-pink-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(160, 98, 171.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e83e8c var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(160,98,171.6);color:#fff}.bg-gradient-red-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(156.2, 70.4, 68);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(156.2,70.4,68);color:#fff}.bg-gradient-red-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(179.4, 52, 132.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(179.4,52,132.8);color:#fff}.bg-gradient-red-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(183, 72, 113.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(183,72,113.2);color:#fff}.bg-gradient-red-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(231.4, 70.4, 92);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(231.4,70.4,92);color:#fff}.bg-gradient-red-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(239.8, 96, 44);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(239.8,96,44);color:#fff}.bg-gradient-red-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(235.8, 108, 43.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(235.8,108,43.2);color:#fff}.bg-gradient-red-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(148.2, 120.8, 98.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(148.2,120.8,98.4);color:#fff}.bg-gradient-red-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(151.4, 126, 96.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(151.4,126,96.4);color:#fff}.bg-gradient-red-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(159.4, 106.4, 123.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #e74c3c var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(159.4,106.4,123.6);color:#fff}.bg-gradient-orange-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(169.4, 100.4, 44);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(169.4,100.4,44);color:#fff}.bg-gradient-orange-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(192.6, 82, 108.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(192.6,82,108.8);color:#fff}.bg-gradient-orange-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(196.2, 102, 89.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(196.2,102,89.2);color:#fff}.bg-gradient-orange-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(244.6, 100.4, 68);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(244.6,100.4,68);color:#fff}.bg-gradient-orange-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(244.2, 106, 36);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(244.2,106,36);color:#fff}.bg-gradient-orange-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(249, 138, 19.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(249,138,19.2);color:#fff}.bg-gradient-orange-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(161.4, 150.8, 74.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(161.4,150.8,74.4);color:#fff}.bg-gradient-orange-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(164.6, 156, 72.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(164.6,156,72.4);color:#fff}.bg-gradient-orange-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(172.6, 136.4, 99.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #fd7e14 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(172.6,136.4,99.6);color:#fff}.bg-gradient-yellow-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(163.4, 118.4, 42.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(163.4,118.4,42.8);color:#fff}.bg-gradient-yellow-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(186.6, 100, 107.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(186.6,100,107.6);color:#fff}.bg-gradient-yellow-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(190.2, 120, 88);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(190.2,120,88);color:#fff}.bg-gradient-yellow-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(238.6, 118.4, 66.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(238.6,118.4,66.8);color:#fff}.bg-gradient-yellow-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(238.2, 124, 34.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(238.2,124,34.8);color:#fff}.bg-gradient-yellow-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(247, 144, 18.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(247,144,18.8);color:#fff}.bg-gradient-yellow-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(155.4, 168.8, 73.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(155.4,168.8,73.2);color:#fff}.bg-gradient-yellow-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(158.6, 174, 71.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(158.6,174,71.2);color:#fff}.bg-gradient-yellow-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(166.6, 154.4, 98.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #f39c12 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(166.6,154.4,98.4);color:#fff}.bg-gradient-green-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(32, 137.6, 125.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(32,137.6,125.6);color:#fff}.bg-gradient-green-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(55.2, 119.2, 190.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(55.2,119.2,190.4);color:#fff}.bg-gradient-green-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(58.8, 139.2, 170.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(58.8,139.2,170.8);color:#fff}.bg-gradient-green-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(107.2, 137.6, 149.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(107.2,137.6,149.6);color:#fff}.bg-gradient-green-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(106.8, 143.2, 117.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(106.8,143.2,117.6);color:#fff}.bg-gradient-green-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(115.6, 163.2, 101.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(115.6,163.2,101.6);color:#fff}.bg-gradient-green-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(111.6, 175.2, 100.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(111.6,175.2,100.8);color:#fff}.bg-gradient-green-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(27.2, 193.2, 154);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(27.2,193.2,154);color:#fff}.bg-gradient-green-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(35.2, 173.6, 181.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #18bc9c var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(35.2,173.6,181.2);color:#fff}.bg-gradient-teal-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(36.8, 145.4, 122.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(36.8,145.4,122.6);color:#fff}.bg-gradient-teal-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(60, 127, 187.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(60,127,187.4);color:#fff}.bg-gradient-teal-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(63.6, 147, 167.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(63.6,147,167.8);color:#fff}.bg-gradient-teal-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(112, 145.4, 146.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(112,145.4,146.6);color:#fff}.bg-gradient-teal-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(111.6, 151, 114.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(111.6,151,114.6);color:#fff}.bg-gradient-teal-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(120.4, 171, 98.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(120.4,171,98.6);color:#fff}.bg-gradient-teal-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(116.4, 183, 97.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(116.4,183,97.8);color:#fff}.bg-gradient-teal-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(28.8, 195.8, 153);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(28.8,195.8,153);color:#fff}.bg-gradient-teal-cyan{--bslib-color-fg: #fff;--bslib-color-bg: rgb(40, 181.4, 178.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #20c997 var(--bg-gradient-start, 36%), #3498db var(--bg-gradient-end, 180%)) rgb(40,181.4,178.2);color:#fff}.bg-gradient-cyan-blue{--bslib-color-fg: #fff;--bslib-color-bg: rgb(48.8, 116, 163.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #2c3e50 var(--bg-gradient-end, 180%)) rgb(48.8,116,163.4);color:#fff}.bg-gradient-cyan-indigo{--bslib-color-fg: #fff;--bslib-color-bg: rgb(72, 97.6, 228.2);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #6610f2 var(--bg-gradient-end, 180%)) rgb(72,97.6,228.2);color:#fff}.bg-gradient-cyan-purple{--bslib-color-fg: #fff;--bslib-color-bg: rgb(75.6, 117.6, 208.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #6f42c1 var(--bg-gradient-end, 180%)) rgb(75.6,117.6,208.6);color:#fff}.bg-gradient-cyan-pink{--bslib-color-fg: #fff;--bslib-color-bg: rgb(124, 116, 187.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #e83e8c var(--bg-gradient-end, 180%)) rgb(124,116,187.4);color:#fff}.bg-gradient-cyan-red{--bslib-color-fg: #fff;--bslib-color-bg: rgb(123.6, 121.6, 155.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #e74c3c var(--bg-gradient-end, 180%)) rgb(123.6,121.6,155.4);color:#fff}.bg-gradient-cyan-orange{--bslib-color-fg: #fff;--bslib-color-bg: rgb(132.4, 141.6, 139.4);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #fd7e14 var(--bg-gradient-end, 180%)) rgb(132.4,141.6,139.4);color:#fff}.bg-gradient-cyan-yellow{--bslib-color-fg: #fff;--bslib-color-bg: rgb(128.4, 153.6, 138.6);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #f39c12 var(--bg-gradient-end, 180%)) rgb(128.4,153.6,138.6);color:#fff}.bg-gradient-cyan-green{--bslib-color-fg: #fff;--bslib-color-bg: rgb(40.8, 166.4, 193.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #18bc9c var(--bg-gradient-end, 180%)) rgb(40.8,166.4,193.8);color:#fff}.bg-gradient-cyan-teal{--bslib-color-fg: #fff;--bslib-color-bg: rgb(44, 171.6, 191.8);background:linear-gradient(var(--bg-gradient-deg, 140deg), #3498db var(--bg-gradient-start, 36%), #20c997 var(--bg-gradient-end, 180%)) rgb(44,171.6,191.8);color:#fff}:root{--bslib-spacer: 1rem;--bslib-mb-spacer: var(--bslib-spacer, 1rem)}.bslib-mb-spacing{margin-bottom:var(--bslib-mb-spacer)}.bslib-gap-spacing{gap:var(--bslib-mb-spacer)}.bslib-gap-spacing>.bslib-mb-spacing,.bslib-gap-spacing>.form-group,.bslib-gap-spacing>p,.bslib-gap-spacing>pre{margin-bottom:0}.html-fill-container>.html-fill-item.bslib-mb-spacing{margin-bottom:0}.tab-content>.tab-pane.html-fill-container{display:none}.tab-content>.active.html-fill-container{display:flex}.tab-content.html-fill-container{padding:0}.accordion .accordion-header{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color);margin-bottom:0}@media(min-width: 1200px){.accordion .accordion-header{font-size:1.65rem}}.accordion .accordion-icon:not(:empty){margin-right:.75rem;display:flex}.accordion .accordion-button:not(.collapsed){box-shadow:none}.accordion .accordion-button:not(.collapsed):focus{box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.bslib-card{overflow:auto}.bslib-card .card-body+.card-body{padding-top:0}.bslib-card .card-body{overflow:auto}.bslib-card .card-body p{margin-top:0}.bslib-card .card-body p:last-child{margin-bottom:0}.bslib-card .card-body{max-height:var(--bslib-card-body-max-height, none)}.bslib-card[data-full-screen=true]>.card-body{max-height:var(--bslib-card-body-max-height-full-screen, none)}.bslib-card .card-header .form-group{margin-bottom:0}.bslib-card .card-header .selectize-control{margin-bottom:0}.bslib-card .card-header .selectize-control .item{margin-right:1.15rem}.bslib-card .card-footer{margin-top:auto}.bslib-card .bslib-navs-card-title{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}.bslib-card .bslib-navs-card-title .nav{margin-left:auto}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border=true]){border:none}.bslib-card .bslib-sidebar-layout:not([data-bslib-sidebar-border-radius=true]){border-top-left-radius:0;border-top-right-radius:0}[data-full-screen=true]{position:fixed;inset:3.5rem 1rem 1rem;height:auto !important;max-height:none !important;width:auto !important;z-index:1070}.bslib-full-screen-enter{display:none;position:absolute;bottom:var(--bslib-full-screen-enter-bottom, 0.2rem);right:var(--bslib-full-screen-enter-right, 0);top:var(--bslib-full-screen-enter-top);left:var(--bslib-full-screen-enter-left);color:var(--bslib-color-fg, var(--bs-card-color));background-color:var(--bslib-color-bg, var(--bs-card-bg, var(--bs-body-bg)));border:var(--bs-card-border-width) solid var(--bslib-color-fg, var(--bs-card-border-color));box-shadow:0 2px 4px rgba(0,0,0,.15);margin:.2rem .4rem;padding:.55rem !important;font-size:.8rem;cursor:pointer;opacity:.7;z-index:1070}.bslib-full-screen-enter:hover{opacity:1}.card[data-full-screen=false]:hover>*>.bslib-full-screen-enter{display:block}.bslib-has-full-screen .card:hover>*>.bslib-full-screen-enter{display:none}@media(max-width: 575.98px){.bslib-full-screen-enter{display:none !important}}.bslib-full-screen-exit{position:relative;top:1.35rem;font-size:.9rem;cursor:pointer;text-decoration:none;display:flex;float:right;margin-right:2.15rem;align-items:center;color:rgba(var(--bs-body-bg-rgb), 0.8)}.bslib-full-screen-exit:hover{color:rgba(var(--bs-body-bg-rgb), 1)}.bslib-full-screen-exit svg{margin-left:.5rem;font-size:1.5rem}#bslib-full-screen-overlay{position:fixed;inset:0;background-color:rgba(var(--bs-body-color-rgb), 0.6);backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);z-index:1069;animation:bslib-full-screen-overlay-enter 400ms cubic-bezier(0.6, 0.02, 0.65, 1) forwards}@keyframes bslib-full-screen-overlay-enter{0%{opacity:0}100%{opacity:1}}.bslib-grid{display:grid !important;gap:var(--bslib-spacer, 1rem);height:var(--bslib-grid-height)}.bslib-grid.grid{grid-template-columns:repeat(var(--bs-columns, 12), minmax(0, 1fr));grid-template-rows:unset;grid-auto-rows:var(--bslib-grid--row-heights);--bslib-grid--row-heights--xs: unset;--bslib-grid--row-heights--sm: unset;--bslib-grid--row-heights--md: unset;--bslib-grid--row-heights--lg: unset;--bslib-grid--row-heights--xl: unset;--bslib-grid--row-heights--xxl: unset}.bslib-grid.grid.bslib-grid--row-heights--xs{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xs)}@media(min-width: 576px){.bslib-grid.grid.bslib-grid--row-heights--sm{--bslib-grid--row-heights: var(--bslib-grid--row-heights--sm)}}@media(min-width: 768px){.bslib-grid.grid.bslib-grid--row-heights--md{--bslib-grid--row-heights: var(--bslib-grid--row-heights--md)}}@media(min-width: 992px){.bslib-grid.grid.bslib-grid--row-heights--lg{--bslib-grid--row-heights: var(--bslib-grid--row-heights--lg)}}@media(min-width: 1200px){.bslib-grid.grid.bslib-grid--row-heights--xl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xl)}}@media(min-width: 1400px){.bslib-grid.grid.bslib-grid--row-heights--xxl{--bslib-grid--row-heights: var(--bslib-grid--row-heights--xxl)}}.bslib-grid>*>.shiny-input-container{width:100%}.bslib-grid-item{grid-column:auto/span 1}@media(max-width: 767.98px){.bslib-grid-item{grid-column:1/-1}}@media(max-width: 575.98px){.bslib-grid{grid-template-columns:1fr !important;height:var(--bslib-grid-height-mobile)}.bslib-grid.grid{height:unset !important;grid-auto-rows:var(--bslib-grid--row-heights--xs, auto)}}@media(min-width: 576px){.nav:not(.nav-hidden){display:flex !important;display:-webkit-flex !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column){float:none !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.bslib-nav-spacer{margin-left:auto !important}.nav:not(.nav-hidden):not(.nav-stacked):not(.flex-column)>.form-inline{margin-top:auto;margin-bottom:auto}.nav:not(.nav-hidden).nav-stacked{flex-direction:column;-webkit-flex-direction:column;height:100%}.nav:not(.nav-hidden).nav-stacked>.bslib-nav-spacer{margin-top:auto !important}}html{height:100%}.bslib-page-fill{width:100%;height:100%;margin:0;padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}@media(max-width: 575.98px){.bslib-page-fill{height:var(--bslib-page-fill-mobile-height, auto)}}.navbar+.container-fluid:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-sm:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-md:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-lg:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xl:has(>.tab-content>.tab-pane.active.html-fill-container),.navbar+.container-xxl:has(>.tab-content>.tab-pane.active.html-fill-container){padding-left:0;padding-right:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container,.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container{padding:var(--bslib-spacer, 1rem);gap:var(--bslib-spacer, 1rem)}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container:has(>.bslib-sidebar-layout:only-child){padding:0}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border=true]){border-left:none;border-right:none;border-bottom:none}.navbar+.container-fluid>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-sm>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-md>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-lg>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]),.navbar+.container-xxl>.tab-content>.tab-pane.active.html-fill-container>.bslib-sidebar-layout:only-child:not([data-bslib-sidebar-border-radius=true]){border-radius:0}.navbar+div>.bslib-sidebar-layout{border-top:var(--bslib-sidebar-border)}:root{--bslib-page-sidebar-title-bg: #2c3e50;--bslib-page-sidebar-title-color: #fff}.bslib-page-title{background-color:var(--bslib-page-sidebar-title-bg);color:var(--bslib-page-sidebar-title-color);font-size:1.25rem;font-weight:300;padding:var(--bslib-spacer, 1rem);padding-left:1.5rem;margin-bottom:0;border-bottom:1px solid #dee2e6}.bslib-sidebar-layout{--bslib-sidebar-transition-duration: 500ms;--bslib-sidebar-transition-easing-x: cubic-bezier(0.8, 0.78, 0.22, 1.07);--bslib-sidebar-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-border-radius: var(--bs-border-radius);--bslib-sidebar-vert-border: var(--bs-card-border-width, 1px) solid var(--bs-card-border-color, rgba(0, 0, 0, 0.175));--bslib-sidebar-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.05);--bslib-sidebar-fg: var(--bs-emphasis-color, black);--bslib-sidebar-main-fg: var(--bs-card-color, var(--bs-body-color));--bslib-sidebar-main-bg: var(--bs-card-bg, var(--bs-body-bg));--bslib-sidebar-toggle-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.1);--bslib-sidebar-padding: calc(var(--bslib-spacer) * 1.5);--bslib-sidebar-icon-size: var(--bslib-spacer, 1rem);--bslib-sidebar-icon-button-size: calc(var(--bslib-sidebar-icon-size, 1rem) * 2);--bslib-sidebar-padding-icon: calc(var(--bslib-sidebar-icon-button-size, 2rem) * 1.5);--bslib-collapse-toggle-border-radius: var(--bs-border-radius, 0.25rem);--bslib-collapse-toggle-transform: 0deg;--bslib-sidebar-toggle-transition-easing: cubic-bezier(1, 0, 0, 1);--bslib-collapse-toggle-right-transform: 180deg;--bslib-sidebar-column-main: minmax(0, 1fr);display:grid !important;grid-template-columns:min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px)) var(--bslib-sidebar-column-main);position:relative;transition:grid-template-columns ease-in-out var(--bslib-sidebar-transition-duration);border:var(--bslib-sidebar-border);border-radius:var(--bslib-sidebar-border-radius)}@media(prefers-reduced-motion: reduce){.bslib-sidebar-layout{transition:none}}.bslib-sidebar-layout[data-bslib-sidebar-border=false]{border:none}.bslib-sidebar-layout[data-bslib-sidebar-border-radius=false]{border-radius:initial}.bslib-sidebar-layout>.main,.bslib-sidebar-layout>.sidebar{grid-row:1/2;border-radius:inherit;overflow:auto}.bslib-sidebar-layout>.main{grid-column:2/3;border-top-left-radius:0;border-bottom-left-radius:0;padding:var(--bslib-sidebar-padding);transition:padding var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration);color:var(--bslib-sidebar-main-fg);background-color:var(--bslib-sidebar-main-bg)}.bslib-sidebar-layout>.sidebar{grid-column:1/2;width:100%;height:100%;border-right:var(--bslib-sidebar-vert-border);border-top-right-radius:0;border-bottom-right-radius:0;color:var(--bslib-sidebar-fg);background-color:var(--bslib-sidebar-bg);backdrop-filter:blur(5px)}.bslib-sidebar-layout>.sidebar>.sidebar-content{display:flex;flex-direction:column;gap:var(--bslib-spacer, 1rem);padding:var(--bslib-sidebar-padding);padding-top:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout>.sidebar>.sidebar-content>:last-child:not(.sidebar-title){margin-bottom:0}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion{margin-left:calc(-1*var(--bslib-sidebar-padding));margin-right:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:last-child{margin-bottom:calc(-1*var(--bslib-sidebar-padding))}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child){margin-bottom:1rem}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion .accordion-body{display:flex;flex-direction:column}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:first-child) .accordion-item:first-child{border-top:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content>.accordion:not(:last-child) .accordion-item:last-child{border-bottom:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.bslib-sidebar-layout>.sidebar>.sidebar-content.has-accordion>.sidebar-title{border-bottom:none;padding-bottom:0}.bslib-sidebar-layout>.sidebar .shiny-input-container{width:100%}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar>.sidebar-content{padding-top:var(--bslib-sidebar-padding)}.bslib-sidebar-layout>.collapse-toggle{grid-row:1/2;grid-column:1/2;display:inline-flex;align-items:center;position:absolute;right:calc(var(--bslib-sidebar-icon-size));top:calc(var(--bslib-sidebar-icon-size, 1rem)/2);border:none;border-radius:var(--bslib-collapse-toggle-border-radius);height:var(--bslib-sidebar-icon-button-size, 2rem);width:var(--bslib-sidebar-icon-button-size, 2rem);display:flex;align-items:center;justify-content:center;padding:0;color:var(--bslib-sidebar-fg);background-color:unset;transition:color var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),top var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),right var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration),left var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover{background-color:var(--bslib-sidebar-toggle-bg)}.bslib-sidebar-layout>.collapse-toggle>.collapse-icon{opacity:.8;width:var(--bslib-sidebar-icon-size);height:var(--bslib-sidebar-icon-size);transform:rotateY(var(--bslib-collapse-toggle-transform));transition:transform var(--bslib-sidebar-toggle-transition-easing) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout>.collapse-toggle:hover>.collapse-icon{opacity:1}.bslib-sidebar-layout .sidebar-title{font-size:1.25rem;line-height:1.25;margin-top:0;margin-bottom:1rem;padding-bottom:1rem;border-bottom:var(--bslib-sidebar-border)}.bslib-sidebar-layout.sidebar-right{grid-template-columns:var(--bslib-sidebar-column-main) min(100% - var(--bslib-sidebar-icon-size),var(--bslib-sidebar-width, 250px))}.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/2;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit}.bslib-sidebar-layout.sidebar-right>.sidebar{grid-column:2/3;border-right:none;border-left:var(--bslib-sidebar-vert-border);border-top-left-radius:0;border-bottom-left-radius:0}.bslib-sidebar-layout.sidebar-right>.collapse-toggle{grid-column:2/3;left:var(--bslib-sidebar-icon-size);right:unset;border:var(--bslib-collapse-toggle-border)}.bslib-sidebar-layout.sidebar-right>.collapse-toggle>.collapse-icon{transform:rotateY(var(--bslib-collapse-toggle-right-transform))}.bslib-sidebar-layout.sidebar-collapsed{--bslib-collapse-toggle-transform: 180deg;--bslib-collapse-toggle-right-transform: 0deg;--bslib-sidebar-vert-border: none;grid-template-columns:0 minmax(0, 1fr)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right{grid-template-columns:minmax(0, 1fr) 0}.bslib-sidebar-layout.sidebar-collapsed:not(.transitioning)>.sidebar>*{display:none}.bslib-sidebar-layout.sidebar-collapsed>.main{border-radius:inherit}.bslib-sidebar-layout.sidebar-collapsed:not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout.sidebar-collapsed>.collapse-toggle{color:var(--bslib-sidebar-main-fg);top:calc(var(--bslib-sidebar-overlap-counter, 0)*(var(--bslib-sidebar-icon-size) + var(--bslib-sidebar-padding)) + var(--bslib-sidebar-icon-size, 1rem)/2);right:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px))}.bslib-sidebar-layout.sidebar-collapsed.sidebar-right>.collapse-toggle{left:calc(-2.5*var(--bslib-sidebar-icon-size) - var(--bs-card-border-width, 1px));right:unset}@media(min-width: 576px){.bslib-sidebar-layout.transitioning>.sidebar>.sidebar-content{display:none}}@media(max-width: 575.98px){.bslib-sidebar-layout[data-bslib-sidebar-open=desktop]{--bslib-sidebar-js-init-collapsed: true}.bslib-sidebar-layout>.sidebar,.bslib-sidebar-layout.sidebar-right>.sidebar{border:none}.bslib-sidebar-layout>.main,.bslib-sidebar-layout.sidebar-right>.main{grid-column:1/3}.bslib-sidebar-layout[data-bslib-sidebar-open=always]{display:block !important}.bslib-sidebar-layout[data-bslib-sidebar-open=always]>.sidebar{max-height:var(--bslib-sidebar-max-height-mobile);overflow-y:auto;border-top:var(--bslib-sidebar-vert-border)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]){grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.sidebar{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-collapsed)>.collapse-toggle{z-index:1}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed{grid-template-columns:0 100%}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed.sidebar-right{grid-template-columns:100% 0}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]):not(.sidebar-right)>.main{padding-left:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-right>.main{padding-right:var(--bslib-sidebar-padding-icon)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always])>.main{opacity:0;transition:opacity var(--bslib-sidebar-transition-easing-x) var(--bslib-sidebar-transition-duration)}.bslib-sidebar-layout:not([data-bslib-sidebar-open=always]).sidebar-collapsed>.main{opacity:1}}:root{--bslib-value-box-shadow: none;--bslib-value-box-border-width-auto-yes: var(--bslib-value-box-border-width-baseline);--bslib-value-box-border-width-auto-no: 0;--bslib-value-box-border-width-baseline: 1px}.bslib-value-box{border-width:var(--bslib-value-box-border-width-auto-no, var(--bslib-value-box-border-width-baseline));container-name:bslib-value-box;container-type:inline-size}.bslib-value-box.card{box-shadow:var(--bslib-value-box-shadow)}.bslib-value-box.border-auto{border-width:var(--bslib-value-box-border-width-auto-yes, var(--bslib-value-box-border-width-baseline))}.bslib-value-box.default{--bslib-value-box-bg-default: var(--bs-card-bg, #fff);--bslib-value-box-border-color-default: var(--bs-card-border-color, rgba(0, 0, 0, 0.175));color:var(--bslib-value-box-color);background-color:var(--bslib-value-box-bg, var(--bslib-value-box-bg-default));border-color:var(--bslib-value-box-border-color, var(--bslib-value-box-border-color-default))}.bslib-value-box .value-box-grid{display:grid;grid-template-areas:"left right";align-items:center;overflow:hidden}.bslib-value-box .value-box-showcase{height:100%;max-height:var(---bslib-value-box-showcase-max-h, 100%)}.bslib-value-box .value-box-showcase,.bslib-value-box .value-box-showcase>.html-fill-item{width:100%}.bslib-value-box[data-full-screen=true] .value-box-showcase{max-height:var(---bslib-value-box-showcase-max-h-fs, 100%)}@media screen and (min-width: 575.98px){@container bslib-value-box (max-width: 300px){.bslib-value-box:not(.showcase-bottom) .value-box-grid{grid-template-columns:1fr !important;grid-template-rows:auto auto;grid-template-areas:"top" "bottom"}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-showcase{grid-area:top !important}.bslib-value-box:not(.showcase-bottom) .value-box-grid .value-box-area{grid-area:bottom !important;justify-content:end}}}.bslib-value-box .value-box-area{justify-content:center;padding:1.5rem 1rem;font-size:.9rem;font-weight:500}.bslib-value-box .value-box-area *{margin-bottom:0;margin-top:0}.bslib-value-box .value-box-title{font-size:1rem;margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.bslib-value-box .value-box-title:empty::after{content:" "}.bslib-value-box .value-box-value{font-size:calc(1.29rem + 0.48vw);margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}@media(min-width: 1200px){.bslib-value-box .value-box-value{font-size:1.65rem}}.bslib-value-box .value-box-value:empty::after{content:" "}.bslib-value-box .value-box-showcase{align-items:center;justify-content:center;margin-top:auto;margin-bottom:auto;padding:1rem}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{opacity:.85;min-width:50px;max-width:125%}.bslib-value-box .value-box-showcase .bi,.bslib-value-box .value-box-showcase .fa,.bslib-value-box .value-box-showcase .fab,.bslib-value-box .value-box-showcase .fas,.bslib-value-box .value-box-showcase .far{font-size:4rem}.bslib-value-box.showcase-top-right .value-box-grid{grid-template-columns:1fr var(---bslib-value-box-showcase-w, 50%)}.bslib-value-box.showcase-top-right .value-box-grid .value-box-showcase{grid-area:right;margin-left:auto;align-self:start;align-items:end;padding-left:0;padding-bottom:0}.bslib-value-box.showcase-top-right .value-box-grid .value-box-area{grid-area:left;align-self:end}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid{grid-template-columns:auto var(---bslib-value-box-showcase-w-fs, 1fr)}.bslib-value-box.showcase-top-right[data-full-screen=true] .value-box-grid>div{align-self:center}.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-showcase{margin-top:0}@container bslib-value-box (max-width: 300px){.bslib-value-box.showcase-top-right:not([data-full-screen=true]) .value-box-grid .value-box-showcase{padding-left:1rem}}.bslib-value-box.showcase-left-center .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w, 30%) auto}.bslib-value-box.showcase-left-center[data-full-screen=true] .value-box-grid{grid-template-columns:var(---bslib-value-box-showcase-w-fs, 1fr) auto}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-showcase{grid-area:left}.bslib-value-box.showcase-left-center:not([data-fill-screen=true]) .value-box-grid .value-box-area{grid-area:right}.bslib-value-box.showcase-bottom .value-box-grid{grid-template-columns:1fr;grid-template-rows:1fr var(---bslib-value-box-showcase-h, auto);grid-template-areas:"top" "bottom";overflow:hidden}.bslib-value-box.showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.bslib-value-box.showcase-bottom .value-box-grid .value-box-area{grid-area:top}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid{grid-template-rows:1fr var(---bslib-value-box-showcase-h-fs, 2fr)}.bslib-value-box.showcase-bottom[data-full-screen=true] .value-box-grid .value-box-showcase{padding:1rem}[data-bs-theme=dark] .bslib-value-box{--bslib-value-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 50%)}.html-fill-container{display:flex;flex-direction:column;min-height:0;min-width:0}.html-fill-container>.html-fill-item{flex:1 1 auto;min-height:0;min-width:0}.html-fill-container>:not(.html-fill-item){flex:0 0 auto}.sidebar-item .chapter-number{color:#212529}.quarto-container{min-height:calc(100vh - 132px)}body.hypothesis-enabled #quarto-header{margin-right:16px}footer.footer .nav-footer,#quarto-header>nav{padding-left:1em;padding-right:1em}footer.footer div.nav-footer p:first-child{margin-top:0}footer.footer div.nav-footer p:last-child{margin-bottom:0}#quarto-content>*{padding-top:14px}#quarto-content>#quarto-sidebar-glass{padding-top:0px}@media(max-width: 991.98px){#quarto-content>*{padding-top:0}#quarto-content .subtitle{padding-top:14px}#quarto-content section:first-of-type h2:first-of-type,#quarto-content section:first-of-type .h2:first-of-type{margin-top:1rem}}.headroom-target,header.headroom{will-change:transform;transition:position 200ms linear;transition:all 200ms linear}header.headroom--pinned{transform:translateY(0%)}header.headroom--unpinned{transform:translateY(-100%)}.navbar-container{width:100%}.navbar-brand{overflow:hidden;text-overflow:ellipsis}.navbar-brand-container{max-width:calc(100% - 115px);min-width:0;display:flex;align-items:center}@media(min-width: 992px){.navbar-brand-container{margin-right:1em}}.navbar-brand.navbar-brand-logo{margin-right:4px;display:inline-flex}.navbar-toggler{flex-basis:content;flex-shrink:0}.navbar .navbar-brand-container{order:2}.navbar .navbar-toggler{order:1}.navbar .navbar-container>.navbar-nav{order:20}.navbar .navbar-container>.navbar-brand-container{margin-left:0 !important;margin-right:0 !important}.navbar .navbar-collapse{order:20}.navbar #quarto-search{order:4;margin-left:auto}.navbar .navbar-toggler{margin-right:.5em}.navbar-collapse .quarto-navbar-tools{margin-left:.5em}.navbar-logo{max-height:24px;width:auto;padding-right:4px}nav .nav-item:not(.compact){padding-top:1px}nav .nav-link i,nav .dropdown-item i{padding-right:1px}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.6rem;padding-right:.6rem}nav .nav-item.compact .nav-link{padding-left:.5rem;padding-right:.5rem;font-size:1.1rem}.navbar .quarto-navbar-tools{order:3}.navbar .quarto-navbar-tools div.dropdown{display:inline-block}.navbar .quarto-navbar-tools .quarto-navigation-tool{color:rgb(204.36,208.68,213)}.navbar .quarto-navbar-tools .quarto-navigation-tool:hover{color:#fff}.navbar-nav .dropdown-menu{min-width:220px;font-size:.9rem}.navbar .navbar-nav .nav-link.dropdown-toggle::after{opacity:.75;vertical-align:.175em}.navbar ul.dropdown-menu{padding-top:0;padding-bottom:0}.navbar .dropdown-header{text-transform:uppercase;font-size:.8rem;padding:0 .5rem}.navbar .dropdown-item{padding:.4rem .5rem}.navbar .dropdown-item>i.bi{margin-left:.1rem;margin-right:.25em}.sidebar #quarto-search{margin-top:-1px}.sidebar #quarto-search svg.aa-SubmitIcon{width:16px;height:16px}.sidebar-navigation a{color:inherit}.sidebar-title{margin-top:.25rem;padding-bottom:.5rem;font-size:1.3rem;line-height:1.6rem;visibility:visible}.sidebar-title>a{font-size:inherit;text-decoration:none}.sidebar-title .sidebar-tools-main{margin-top:-6px}@media(max-width: 991.98px){#quarto-sidebar div.sidebar-header{padding-top:.2em}}.sidebar-header-stacked .sidebar-title{margin-top:.6rem}.sidebar-logo{max-width:90%;padding-bottom:.5rem}.sidebar-logo-link{text-decoration:none}.sidebar-navigation li a{text-decoration:none}.sidebar-navigation .quarto-navigation-tool{opacity:.7;font-size:.875rem}#quarto-sidebar>nav>.sidebar-tools-main{margin-left:14px}.sidebar-tools-main{display:inline-flex;margin-left:0px;order:2}.sidebar-tools-main:not(.tools-wide){vertical-align:middle}.sidebar-navigation .quarto-navigation-tool.dropdown-toggle::after{display:none}.sidebar.sidebar-navigation>*{padding-top:1em}.sidebar-item{margin-bottom:.2em;line-height:1rem;margin-top:.4rem}.sidebar-section{padding-left:.5em;padding-bottom:.2em}.sidebar-item .sidebar-item-container{display:flex;justify-content:space-between;cursor:pointer}.sidebar-item-toggle:hover{cursor:pointer}.sidebar-item .sidebar-item-toggle .bi{font-size:.7rem;text-align:center}.sidebar-item .sidebar-item-toggle .bi-chevron-right::before{transition:transform 200ms ease}.sidebar-item .sidebar-item-toggle[aria-expanded=false] .bi-chevron-right::before{transform:none}.sidebar-item .sidebar-item-toggle[aria-expanded=true] .bi-chevron-right::before{transform:rotate(90deg)}.sidebar-item-text{width:100%}.sidebar-navigation .sidebar-divider{margin-left:0;margin-right:0;margin-top:.5rem;margin-bottom:.5rem}@media(max-width: 991.98px){.quarto-secondary-nav{display:block}.quarto-secondary-nav button.quarto-search-button{padding-right:0em;padding-left:2em}.quarto-secondary-nav button.quarto-btn-toggle{margin-left:-0.75rem;margin-right:.15rem}.quarto-secondary-nav nav.quarto-title-breadcrumbs{display:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs{display:flex;align-items:center;padding-right:1em;margin-left:-0.25em}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{text-decoration:none}.quarto-secondary-nav nav.quarto-page-breadcrumbs ol.breadcrumb{margin-bottom:0}}@media(min-width: 992px){.quarto-secondary-nav{display:none}}.quarto-title-breadcrumbs .breadcrumb{margin-bottom:.5em;font-size:.9rem}.quarto-title-breadcrumbs .breadcrumb li:last-of-type a{color:#6c757d}.quarto-secondary-nav .quarto-btn-toggle{color:hsl(0,0%,35%)}.quarto-secondary-nav[aria-expanded=false] .quarto-btn-toggle .bi-chevron-right::before{transform:none}.quarto-secondary-nav[aria-expanded=true] .quarto-btn-toggle .bi-chevron-right::before{transform:rotate(90deg)}.quarto-secondary-nav .quarto-btn-toggle .bi-chevron-right::before{transition:transform 200ms ease}.quarto-secondary-nav{cursor:pointer}.no-decor{text-decoration:none}.quarto-secondary-nav-title{margin-top:.3em;color:hsl(0,0%,35%);padding-top:4px}.quarto-secondary-nav nav.quarto-page-breadcrumbs{color:hsl(0,0%,35%)}.quarto-secondary-nav nav.quarto-page-breadcrumbs a{color:hsl(0,0%,35%)}.quarto-secondary-nav nav.quarto-page-breadcrumbs a:hover{color:rgba(12.72,99.64,82.68,.8)}.quarto-secondary-nav nav.quarto-page-breadcrumbs .breadcrumb-item::before{color:hsl(0,0%,55%)}.breadcrumb-item{line-height:1.2rem}div.sidebar-item-container{color:hsl(0,0%,35%)}div.sidebar-item-container:hover,div.sidebar-item-container:focus{color:rgba(12.72,99.64,82.68,.8)}div.sidebar-item-container.disabled{color:hsla(0,0%,35%,.75)}div.sidebar-item-container .active,div.sidebar-item-container .show>.nav-link,div.sidebar-item-container .sidebar-link>code{color:rgb(12.72,99.64,82.68)}div.sidebar.sidebar-navigation.rollup.quarto-sidebar-toggle-contents,nav.sidebar.sidebar-navigation:not(.rollup){background-color:#fff}@media(max-width: 991.98px){.sidebar-navigation .sidebar-item a,.nav-page .nav-page-text,.sidebar-navigation{font-size:1rem}.sidebar-navigation ul.sidebar-section.depth1 .sidebar-section-item{font-size:1.1rem}.sidebar-logo{display:none}.sidebar.sidebar-navigation{position:static;border-bottom:1px solid #dee2e6}.sidebar.sidebar-navigation.collapsing{position:fixed;z-index:1000}.sidebar.sidebar-navigation.show{position:fixed;z-index:1000}.sidebar.sidebar-navigation{min-height:100%}nav.quarto-secondary-nav{background-color:#fff;border-bottom:1px solid #dee2e6}.quarto-banner nav.quarto-secondary-nav{background-color:#2c3e50;color:rgb(204.36,208.68,213);border-top:1px solid #dee2e6}.sidebar .sidebar-footer{visibility:visible;padding-top:1rem;position:inherit}.sidebar-tools-collapse{display:block}}#quarto-sidebar{transition:width .15s ease-in}#quarto-sidebar>*{padding-right:1em}@media(max-width: 991.98px){#quarto-sidebar .sidebar-menu-container{white-space:nowrap;min-width:225px}#quarto-sidebar.show{transition:width .15s ease-out}}@media(min-width: 992px){#quarto-sidebar{display:flex;flex-direction:column}.nav-page .nav-page-text,.sidebar-navigation .sidebar-section .sidebar-item{font-size:.875rem}.sidebar-navigation .sidebar-item{font-size:.925rem}.sidebar.sidebar-navigation{display:block;position:sticky}.sidebar-search{width:100%}.sidebar .sidebar-footer{visibility:visible}}@media(min-width: 992px){#quarto-sidebar-glass{display:none}}@media(max-width: 991.98px){#quarto-sidebar-glass{position:fixed;top:0;bottom:0;left:0;right:0;background-color:hsla(0,0%,100%,0);transition:background-color .15s ease-in;z-index:-1}#quarto-sidebar-glass.collapsing{z-index:1000}#quarto-sidebar-glass.show{transition:background-color .15s ease-out;background-color:hsla(0,0%,40%,.4);z-index:1000}}.sidebar .sidebar-footer{padding:.5rem 1rem;align-self:flex-end;color:#6c757d;width:100%}.quarto-page-breadcrumbs .breadcrumb-item+.breadcrumb-item,.quarto-page-breadcrumbs .breadcrumb-item{padding-right:.33em;padding-left:0}.quarto-page-breadcrumbs .breadcrumb-item::before{padding-right:.33em}.quarto-sidebar-footer{font-size:.875em}.sidebar-section .bi-chevron-right{vertical-align:middle}.sidebar-section .bi-chevron-right::before{font-size:.9em}.notransition{-webkit-transition:none !important;-moz-transition:none !important;-o-transition:none !important;transition:none !important}.btn:focus:not(:focus-visible){box-shadow:none}.page-navigation{display:flex;justify-content:space-between}.nav-page{padding-bottom:.75em}.nav-page .bi{font-size:1.8rem;vertical-align:middle}.nav-page .nav-page-text{padding-left:.25em;padding-right:.25em}.nav-page a{color:#6c757d;text-decoration:none;display:flex;align-items:center}.nav-page a:hover{color:rgb(19.2,150.4,124.8)}.nav-footer .toc-actions{padding-bottom:.5em;padding-top:.5em}.nav-footer .toc-actions a,.nav-footer .toc-actions a:hover{text-decoration:none}.nav-footer .toc-actions ul{display:flex;list-style:none}.nav-footer .toc-actions ul :first-child{margin-left:auto}.nav-footer .toc-actions ul :last-child{margin-right:auto}.nav-footer .toc-actions ul li{padding-right:1.5em}.nav-footer .toc-actions ul li i.bi{padding-right:.4em}.nav-footer .toc-actions ul li:last-of-type{padding-right:0}.nav-footer{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:baseline;text-align:center;padding-top:.5rem;padding-bottom:.5rem;background-color:#fff}body.nav-fixed{padding-top:82px}.nav-footer-contents{color:#6c757d;margin-top:.25rem}.nav-footer{min-height:3.5em;color:hsl(0,0%,46%)}.nav-footer a{color:hsl(0,0%,46%)}.nav-footer .nav-footer-left{font-size:.825em}.nav-footer .nav-footer-center{font-size:.825em}.nav-footer .nav-footer-right{font-size:.825em}.nav-footer-left .footer-items,.nav-footer-center .footer-items,.nav-footer-right .footer-items{display:inline-flex;padding-top:.3em;padding-bottom:.3em;margin-bottom:0em}.nav-footer-left .footer-items .nav-link,.nav-footer-center .footer-items .nav-link,.nav-footer-right .footer-items .nav-link{padding-left:.6em;padding-right:.6em}@media(min-width: 768px){.nav-footer-left{flex:1 1 0px;text-align:left}}@media(max-width: 575.98px){.nav-footer-left{margin-bottom:1em;flex:100%}}@media(min-width: 768px){.nav-footer-right{flex:1 1 0px;text-align:right}}@media(max-width: 575.98px){.nav-footer-right{margin-bottom:1em;flex:100%}}.nav-footer-center{text-align:center;min-height:3em}@media(min-width: 768px){.nav-footer-center{flex:1 1 0px}}.nav-footer-center .footer-items{justify-content:center}@media(max-width: 767.98px){.nav-footer-center{margin-bottom:1em;flex:100%}}@media(max-width: 767.98px){.nav-footer-center{margin-top:3em;order:10}}.navbar .quarto-reader-toggle.reader .quarto-reader-toggle-btn{background-color:rgb(204.36,208.68,213);border-radius:3px}@media(max-width: 991.98px){.quarto-reader-toggle{display:none}}.quarto-reader-toggle.reader.quarto-navigation-tool .quarto-reader-toggle-btn{background-color:hsl(0,0%,35%);border-radius:3px}.quarto-reader-toggle .quarto-reader-toggle-btn{display:inline-flex;padding-left:.2em;padding-right:.2em;margin-left:-0.2em;margin-right:-0.2em;text-align:center}.navbar .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml, ')}.navbar .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml, ')}.sidebar-navigation .quarto-reader-toggle:not(.reader) .bi::before{background-image:url('data:image/svg+xml, ')}.sidebar-navigation .quarto-reader-toggle.reader .bi::before{background-image:url('data:image/svg+xml, ')}#quarto-back-to-top{display:none;position:fixed;bottom:50px;background-color:#fff;border-radius:.25rem;box-shadow:0 .2rem .5rem #6c757d,0 0 .05rem #6c757d;color:#6c757d;text-decoration:none;font-size:.9em;text-align:center;left:50%;padding:.4rem .8rem;transform:translate(-50%, 0)}#quarto-announcement{padding:.5em;display:flex;justify-content:space-between;margin-bottom:0;font-size:.9em}#quarto-announcement .quarto-announcement-content{margin-right:auto}#quarto-announcement .quarto-announcement-content p{margin-bottom:0}#quarto-announcement .quarto-announcement-icon{margin-right:.5em;font-size:1.2em;margin-top:-0.15em}#quarto-announcement .quarto-announcement-action{cursor:pointer}.aa-DetachedSearchButtonQuery{display:none}.aa-DetachedOverlay ul.aa-List,#quarto-search-results ul.aa-List{list-style:none;padding-left:0}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{background-color:#fff;position:absolute;z-index:2000}#quarto-search-results .aa-Panel{max-width:400px}#quarto-search input{font-size:.925rem}@media(min-width: 992px){.navbar #quarto-search{margin-left:.25rem;order:999}}.navbar.navbar-expand-sm #quarto-search,.navbar.navbar-expand-md #quarto-search{order:999}@media(min-width: 992px){.navbar .quarto-navbar-tools{order:900}}@media(min-width: 992px){.navbar .quarto-navbar-tools.tools-end{margin-left:auto !important}}@media(max-width: 991.98px){#quarto-sidebar .sidebar-search{display:none}}#quarto-sidebar .sidebar-search .aa-Autocomplete{width:100%}.navbar .aa-Autocomplete .aa-Form{width:180px}.navbar #quarto-search.type-overlay .aa-Autocomplete{width:40px}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form{background-color:inherit;border:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form:focus-within{box-shadow:none;outline:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper{display:none}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-InputWrapper:focus-within{display:inherit}.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-Label svg,.navbar #quarto-search.type-overlay .aa-Autocomplete .aa-Form .aa-LoadingIndicator svg{width:26px;height:26px;color:rgb(204.36,208.68,213);opacity:1}.navbar #quarto-search.type-overlay .aa-Autocomplete svg.aa-SubmitIcon{width:26px;height:26px;color:rgb(204.36,208.68,213);opacity:1}.aa-Autocomplete .aa-Form,.aa-DetachedFormContainer .aa-Form{align-items:center;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;color:#212529;display:flex;line-height:1em;margin:0;position:relative;width:100%}.aa-Autocomplete .aa-Form:focus-within,.aa-DetachedFormContainer .aa-Form:focus-within{box-shadow:rgba(44,62,80,.6) 0 0 0 1px;outline:currentColor none medium}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix{align-items:center;display:flex;flex-shrink:0;order:1}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{cursor:initial;flex-shrink:0;padding:0;text-align:left}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-Label svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator svg{color:#212529;opacity:.5}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-SubmitButton{appearance:none;background:none;border:0;margin:0}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator{align-items:center;display:flex;justify-content:center}.aa-Autocomplete .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperPrefix .aa-LoadingIndicator[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapper,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper{order:3;position:relative;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input{appearance:none;background:none;border:0;color:#212529;font:inherit;height:calc(1.5em + .1rem + 2px);padding:0;width:100%}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::placeholder,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::placeholder{color:#212529;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input:focus{border-color:none;box-shadow:none;outline:none}.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-Autocomplete .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-decoration,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-cancel-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-button,.aa-DetachedFormContainer .aa-Form .aa-InputWrapper .aa-Input::-webkit-search-results-decoration{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix{align-items:center;display:flex;order:4}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton{align-items:center;background:none;border:0;color:#212529;opacity:.8;cursor:pointer;display:flex;margin:0;width:calc(1.5em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton:focus{color:#212529;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton[hidden]{display:none}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-ClearButton svg{width:calc(1.5em + 0.75rem + calc(1px * 2))}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton{border:none;align-items:center;background:none;color:#212529;opacity:.4;font-size:.7rem;cursor:pointer;display:none;margin:0;width:calc(1em + .1rem + 2px)}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:hover,.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton:focus{color:#212529;opacity:.8}.aa-Autocomplete .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden],.aa-DetachedFormContainer .aa-Form .aa-InputWrapperSuffix .aa-CopyButton[hidden]{display:none}.aa-PanelLayout:empty{display:none}.quarto-search-no-results.no-query{display:none}.aa-Source:has(.no-query){display:none}#quarto-search-results .aa-Panel{border:solid #dee2e6 1px}#quarto-search-results .aa-SourceNoResults{width:398px}.aa-DetachedOverlay .aa-Panel,#quarto-search-results .aa-Panel{max-height:65vh;overflow-y:auto;font-size:.925rem}.aa-DetachedOverlay .aa-SourceNoResults,#quarto-search-results .aa-SourceNoResults{height:60px;display:flex;justify-content:center;align-items:center}.aa-DetachedOverlay .search-error,#quarto-search-results .search-error{padding-top:10px;padding-left:20px;padding-right:20px;cursor:default}.aa-DetachedOverlay .search-error .search-error-title,#quarto-search-results .search-error .search-error-title{font-size:1.1rem;margin-bottom:.5rem}.aa-DetachedOverlay .search-error .search-error-title .search-error-icon,#quarto-search-results .search-error .search-error-title .search-error-icon{margin-right:8px}.aa-DetachedOverlay .search-error .search-error-text,#quarto-search-results .search-error .search-error-text{font-weight:300}.aa-DetachedOverlay .search-result-text,#quarto-search-results .search-result-text{font-weight:300;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;line-height:1.2rem;max-height:2.4rem}.aa-DetachedOverlay .aa-SourceHeader .search-result-header,#quarto-search-results .aa-SourceHeader .search-result-header{font-size:.875rem;background-color:hsl(0,0%,95%);padding-left:14px;padding-bottom:4px;padding-top:4px}.aa-DetachedOverlay .aa-SourceHeader .search-result-header-no-results,#quarto-search-results .aa-SourceHeader .search-result-header-no-results{display:none}.aa-DetachedOverlay .aa-SourceFooter .algolia-search-logo,#quarto-search-results .aa-SourceFooter .algolia-search-logo{width:110px;opacity:.85;margin:8px;float:right}.aa-DetachedOverlay .search-result-section,#quarto-search-results .search-result-section{font-size:.925em}.aa-DetachedOverlay a.search-result-link,#quarto-search-results a.search-result-link{color:inherit;text-decoration:none}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item,#quarto-search-results li.aa-Item[aria-selected=true] .search-item{background-color:#2c3e50}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-result-text-container{color:#fff;background-color:#2c3e50}.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=true] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=true] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=true] .search-item .search-match.mark{color:#fff;background-color:rgb(58.4774193548,82.4,106.3225806452)}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item,#quarto-search-results li.aa-Item[aria-selected=false] .search-item{background-color:#fff}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item.search-result-more,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-section,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-title-container,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-result-text-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item.search-result-more,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-section,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-title-container,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-result-text-container{color:#212529}.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item mark.search-match,.aa-DetachedOverlay li.aa-Item[aria-selected=false] .search-item .search-match.mark,#quarto-search-results li.aa-Item[aria-selected=false] .search-item mark.search-match,#quarto-search-results li.aa-Item[aria-selected=false] .search-item .search-match.mark{color:inherit;background-color:hsl(210,29.0322580645%,66.3137254902%)}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-title-container{background-color:#fff;color:#212529}.aa-DetachedOverlay .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container,#quarto-search-results .aa-Item .search-result-doc:not(.document-selectable) .search-result-text-container{padding-top:0px}.aa-DetachedOverlay li.aa-Item .search-result-doc.document-selectable .search-result-text-container,#quarto-search-results li.aa-Item .search-result-doc.document-selectable .search-result-text-container{margin-top:-4px}.aa-DetachedOverlay .aa-Item,#quarto-search-results .aa-Item{cursor:pointer}.aa-DetachedOverlay .aa-Item .search-item,#quarto-search-results .aa-Item .search-item{border-left:none;border-right:none;border-top:none;background-color:#fff;border-color:#dee2e6;color:#212529}.aa-DetachedOverlay .aa-Item .search-item p,#quarto-search-results .aa-Item .search-item p{margin-top:0;margin-bottom:0}.aa-DetachedOverlay .aa-Item .search-item i.bi,#quarto-search-results .aa-Item .search-item i.bi{padding-left:8px;padding-right:8px;font-size:1.3em}.aa-DetachedOverlay .aa-Item .search-item .search-result-title,#quarto-search-results .aa-Item .search-item .search-result-title{margin-top:.3em;margin-bottom:0em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs,#quarto-search-results .aa-Item .search-item .search-result-crumbs{white-space:nowrap;text-overflow:ellipsis;font-size:.8em;font-weight:300;margin-right:1em}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap),#quarto-search-results .aa-Item .search-item .search-result-crumbs:not(.search-result-crumbs-wrap){max-width:30%;margin-left:auto;margin-top:.5em;margin-bottom:.1rem}.aa-DetachedOverlay .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap,#quarto-search-results .aa-Item .search-item .search-result-crumbs.search-result-crumbs-wrap{flex-basis:100%;margin-top:0em;margin-bottom:.2em;margin-left:37px}.aa-DetachedOverlay .aa-Item .search-result-title-container,#quarto-search-results .aa-Item .search-result-title-container{font-size:1em;display:flex;flex-wrap:wrap;padding:6px 4px 6px 4px}.aa-DetachedOverlay .aa-Item .search-result-text-container,#quarto-search-results .aa-Item .search-result-text-container{padding-bottom:8px;padding-right:8px;margin-left:42px}.aa-DetachedOverlay .aa-Item .search-result-doc-section,.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-doc-section,#quarto-search-results .aa-Item .search-result-more{padding-top:8px;padding-bottom:8px;padding-left:44px}.aa-DetachedOverlay .aa-Item .search-result-more,#quarto-search-results .aa-Item .search-result-more{font-size:.8em;font-weight:400}.aa-DetachedOverlay .aa-Item .search-result-doc,#quarto-search-results .aa-Item .search-result-doc{border-top:1px solid #dee2e6}.aa-DetachedSearchButton{background:none;border:none}.aa-DetachedSearchButton .aa-DetachedSearchButtonPlaceholder{display:none}.navbar .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:rgb(204.36,208.68,213)}.sidebar-tools-collapse #quarto-search,.sidebar-tools-main #quarto-search{display:inline}.sidebar-tools-collapse #quarto-search .aa-Autocomplete,.sidebar-tools-main #quarto-search .aa-Autocomplete{display:inline}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton{padding-left:4px;padding-right:4px}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon{color:hsl(0,0%,35%)}.sidebar-tools-collapse #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon,.sidebar-tools-main #quarto-search .aa-DetachedSearchButton .aa-DetachedSearchButtonIcon .aa-SubmitIcon{margin-top:-3px}.aa-DetachedContainer{background:hsla(0,0%,100%,.65);width:90%;bottom:0;box-shadow:rgba(222,226,230,.6) 0 0 0 1px;outline:currentColor none medium;display:flex;flex-direction:column;left:0;margin:0;overflow:hidden;padding:0;position:fixed;right:0;top:0;z-index:1101}.aa-DetachedContainer::after{height:32px}.aa-DetachedContainer .aa-SourceHeader{margin:var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px}.aa-DetachedContainer .aa-Panel{background-color:#fff;border-radius:0;box-shadow:none;flex-grow:1;margin:0;padding:0;position:relative}.aa-DetachedContainer .aa-PanelLayout{bottom:0;box-shadow:none;left:0;margin:0;max-height:none;overflow-y:auto;position:absolute;right:0;top:0;width:100%}.aa-DetachedFormContainer{background-color:#fff;border-bottom:1px solid #dee2e6;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:.5em}.aa-DetachedCancelButton{background:none;font-size:.8em;border:0;border-radius:3px;color:#212529;cursor:pointer;margin:0 0 0 .5em;padding:0 .5em}.aa-DetachedCancelButton:hover,.aa-DetachedCancelButton:focus{box-shadow:rgba(44,62,80,.6) 0 0 0 1px;outline:currentColor none medium}.aa-DetachedContainer--modal{bottom:inherit;height:auto;margin:0 auto;position:absolute;top:100px;border-radius:6px;max-width:850px}@media(max-width: 575.98px){.aa-DetachedContainer--modal{width:100%;top:0px;border-radius:0px;border:none}}.aa-DetachedContainer--modal .aa-PanelLayout{max-height:var(--aa-detached-modal-max-height);padding-bottom:var(--aa-spacing-half);position:static}.aa-Detached{height:100vh;overflow:hidden}.aa-DetachedOverlay{background-color:rgba(33,37,41,.4);position:fixed;left:0;right:0;top:0;margin:0;padding:0;height:100vh;z-index:1100}.quarto-dashboard.nav-fixed.dashboard-sidebar #quarto-content.quarto-dashboard-content{padding:0em}.quarto-dashboard #quarto-content.quarto-dashboard-content{padding:1em}.quarto-dashboard #quarto-content.quarto-dashboard-content>*{padding-top:0}@media(min-width: 576px){.quarto-dashboard{height:100%}}.quarto-dashboard .card.valuebox.bslib-card.bg-primary{background-color:rgba(39,128,227,.7) !important}.quarto-dashboard .card.valuebox.bslib-card.bg-secondary{background-color:#6c757d !important}.quarto-dashboard .card.valuebox.bslib-card.bg-success{background-color:rgba(63,182,24,.7) !important}.quarto-dashboard .card.valuebox.bslib-card.bg-info{background-color:rgba(153,84,187,.7) !important}.quarto-dashboard .card.valuebox.bslib-card.bg-warning{background-color:rgba(255,117,24,.7) !important}.quarto-dashboard .card.valuebox.bslib-card.bg-danger{background-color:rgba(255,0,57,.7) !important}.quarto-dashboard .card.valuebox.bslib-card.bg-light{background-color:#ecf0f1 !important}.quarto-dashboard .card.valuebox.bslib-card.bg-dark{background-color:#7b8a8b !important}.quarto-dashboard.dashboard-fill{display:flex;flex-direction:column}.quarto-dashboard #quarto-appendix{display:none}.quarto-dashboard #quarto-header #quarto-dashboard-header{border-top:solid 1px rgb(62.0967741935,87.5,112.9032258065);border-bottom:solid 1px rgb(62.0967741935,87.5,112.9032258065)}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav{padding-left:1em;padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header>nav .navbar-brand-container{padding-left:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler{margin-right:0}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-toggler-icon{height:1em;width:1em;background-image:url('data:image/svg+xml,')}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-brand-container{padding-right:1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-title{font-size:1.1em}.quarto-dashboard #quarto-header #quarto-dashboard-header .navbar-nav{font-size:.9em}.quarto-dashboard #quarto-dashboard-header .navbar{padding:0}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-container{padding-left:1em}.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-brand-container .nav-link,.quarto-dashboard #quarto-dashboard-header .navbar.slim .navbar-nav .nav-link{padding:.7em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-color-scheme-toggle{order:9}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-toggler{margin-left:.5em;order:10}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .nav-link{padding:.5em;height:100%;display:flex;align-items:center}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-nav .active{background-color:rgb(58.4774193548,82.4,106.3225806452)}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{padding:.5em .5em .5em 0;display:flex;flex-direction:row;margin-right:2em;align-items:center}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-brand-container{margin-right:auto}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{align-self:stretch}@media(min-width: 768px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:8}}@media(max-width: 767.98px){.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse{order:1000;padding-bottom:.5em}}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-collapse .navbar-nav{align-self:stretch}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title{font-size:1.25em;line-height:1.1em;display:flex;flex-direction:row;flex-wrap:wrap;align-items:baseline}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title .navbar-title-text{margin-right:.4em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-title a{text-decoration:none;color:inherit}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-subtitle,.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{font-size:.9rem;margin-right:.5em}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-author{margin-left:auto}.quarto-dashboard #quarto-dashboard-header .navbar .navbar-logo{max-height:48px;min-height:30px;object-fit:cover;margin-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-links{order:9;padding-right:1em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link-text{margin-left:.25em}.quarto-dashboard #quarto-dashboard-header .navbar .quarto-dashboard-link{padding-right:0em;padding-left:.7em;text-decoration:none;color:rgb(204.36,208.68,213)}.quarto-dashboard .page-layout-custom .tab-content{padding:0;border:none}.quarto-dashboard-img-contain{height:100%;width:100%;object-fit:contain}@media(max-width: 575.98px){.quarto-dashboard .bslib-grid{grid-template-rows:minmax(1em, max-content) !important}.quarto-dashboard .sidebar-content{height:inherit}.quarto-dashboard .page-layout-custom{min-height:100vh}}.quarto-dashboard.dashboard-toolbar>.page-layout-custom,.quarto-dashboard.dashboard-sidebar>.page-layout-custom{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages{padding:0}.quarto-dashboard .callout{margin-bottom:0;margin-top:0}.quarto-dashboard .html-fill-container figure{overflow:hidden}.quarto-dashboard bslib-tooltip .rounded-pill{border:solid #6c757d 1px}.quarto-dashboard bslib-tooltip .rounded-pill .svg{fill:#212529}.quarto-dashboard .tabset .dashboard-card-no-title .nav-tabs{margin-left:0;margin-right:auto}.quarto-dashboard .tabset .tab-content{border:none}.quarto-dashboard .tabset .card-header .nav-link[role=tab]{margin-top:-6px;padding-top:6px;padding-bottom:6px}.quarto-dashboard .card.valuebox,.quarto-dashboard .card.bslib-value-box{min-height:3rem}.quarto-dashboard .card.valuebox .card-body,.quarto-dashboard .card.bslib-value-box .card-body{padding:0}.quarto-dashboard .bslib-value-box .value-box-value{font-size:clamp(.1em,15cqw,5em)}.quarto-dashboard .bslib-value-box .value-box-showcase .bi{font-size:clamp(.1em,max(18cqw,5.2cqh),5em);text-align:center;height:1em}.quarto-dashboard .bslib-value-box .value-box-showcase .bi::before{vertical-align:1em}.quarto-dashboard .bslib-value-box .value-box-area{margin-top:auto;margin-bottom:auto}.quarto-dashboard .card figure.quarto-float{display:flex;flex-direction:column;align-items:center}.quarto-dashboard .dashboard-scrolling{padding:1em}.quarto-dashboard .full-height{height:100%}.quarto-dashboard .showcase-bottom .value-box-grid{display:grid;grid-template-columns:1fr;grid-template-rows:1fr auto;grid-template-areas:"top" "bottom"}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase{grid-area:bottom;padding:0;margin:0}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-showcase i.bi{font-size:4rem}.quarto-dashboard .showcase-bottom .value-box-grid .value-box-area{grid-area:top}.quarto-dashboard .tab-content{margin-bottom:0}.quarto-dashboard .bslib-card .bslib-navs-card-title{justify-content:stretch;align-items:end}.quarto-dashboard .card-header{display:flex;flex-wrap:wrap;justify-content:space-between}.quarto-dashboard .card-header .card-title{display:flex;flex-direction:column;justify-content:center;margin-bottom:0}.quarto-dashboard .tabset .card-toolbar{margin-bottom:1em}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{border:none;gap:var(--bslib-spacer, 1rem)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{padding:0}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.sidebar{border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.collapse-toggle{display:none}@media(max-width: 767.98px){.quarto-dashboard .bslib-grid>.bslib-sidebar-layout{grid-template-columns:1fr;grid-template-rows:max-content 1fr}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout>.main{grid-column:1;grid-row:2}.quarto-dashboard .bslib-grid>.bslib-sidebar-layout .sidebar{grid-column:1;grid-row:1}}.quarto-dashboard .sidebar-right .sidebar{padding-left:2.5em}.quarto-dashboard .sidebar-right .collapse-toggle{left:2px}.quarto-dashboard .quarto-dashboard .sidebar-right button.collapse-toggle:not(.transitioning){left:unset}.quarto-dashboard aside.sidebar{padding-left:1em;padding-right:1em;background-color:rgba(52,58,64,.25);color:#212529}.quarto-dashboard .bslib-sidebar-layout>div.main{padding:.7em}.quarto-dashboard .bslib-sidebar-layout button.collapse-toggle{margin-top:.3em}.quarto-dashboard .bslib-sidebar-layout .collapse-toggle{top:0}.quarto-dashboard .bslib-sidebar-layout.sidebar-collapsed:not(.transitioning):not(.sidebar-right) .collapse-toggle{left:2px}.quarto-dashboard .sidebar>section>.h3:first-of-type{margin-top:0em}.quarto-dashboard .sidebar .h3,.quarto-dashboard .sidebar .h4,.quarto-dashboard .sidebar .h5,.quarto-dashboard .sidebar .h6{margin-top:.5em}.quarto-dashboard .sidebar form{flex-direction:column;align-items:start;margin-bottom:1em}.quarto-dashboard .sidebar form div[class*=oi-][class$=-input]{flex-direction:column}.quarto-dashboard .sidebar form[class*=oi-][class$=-toggle]{flex-direction:row-reverse;align-items:center;justify-content:start}.quarto-dashboard .sidebar form input[type=range]{margin-top:.5em;margin-right:.8em;margin-left:1em}.quarto-dashboard .sidebar label{width:fit-content}.quarto-dashboard .sidebar .card-body{margin-bottom:2em}.quarto-dashboard .sidebar .shiny-input-container{margin-bottom:1em}.quarto-dashboard .sidebar .shiny-options-group{margin-top:0}.quarto-dashboard .sidebar .control-label{margin-bottom:.3em}.quarto-dashboard .card .card-body .quarto-layout-row{align-items:stretch}.quarto-dashboard .toolbar{font-size:.9em;display:flex;flex-direction:row;border-top:solid 1px hsl(208.2352941176,6.1371841155%,79.137254902%);padding:1em;flex-wrap:wrap;background-color:rgba(52,58,64,.25)}.quarto-dashboard .toolbar .cell-output-display{display:flex}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar>*:last-child{margin-right:0}.quarto-dashboard .toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .toolbar .input-daterange{width:inherit}.quarto-dashboard .toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .toolbar form{width:fit-content}.quarto-dashboard .toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .toolbar form input[type=date]{width:fit-content}.quarto-dashboard .toolbar form input[type=color]{width:3em}.quarto-dashboard .toolbar form button{padding:.4em}.quarto-dashboard .toolbar form select{width:fit-content}.quarto-dashboard .toolbar>*{font-size:.9em;flex-grow:0}.quarto-dashboard .toolbar .shiny-input-container label{margin-bottom:1px}.quarto-dashboard .toolbar-bottom{margin-top:1em;margin-bottom:0 !important;order:2}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>.tab-content>.tab-pane>*:not(.bslib-sidebar-layout){padding:1em}.quarto-dashboard .quarto-dashboard-content>.dashboard-toolbar-container>.toolbar-content>*:not(.tab-content){padding:1em}.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page>.dashboard-toolbar-container>.toolbar-content,.quarto-dashboard .quarto-dashboard-content>.tab-content>.dashboard-page:not(.dashboard-sidebar-container)>*:not(.dashboard-toolbar-container){padding:1em}.quarto-dashboard .toolbar-content{padding:0}.quarto-dashboard .quarto-dashboard-content.quarto-dashboard-pages .tab-pane>.dashboard-toolbar-container .toolbar{border-radius:0;margin-bottom:0}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar{border-bottom:1px solid rgba(0,0,0,.175)}.quarto-dashboard .dashboard-toolbar-container.toolbar-toplevel .toolbar-bottom{margin-top:0}.quarto-dashboard .dashboard-toolbar-container:not(.toolbar-toplevel) .toolbar{margin-bottom:1em;border-top:none;border-radius:.25rem;border:1px solid rgba(0,0,0,.175)}.quarto-dashboard .vega-embed.has-actions details{width:1.7em;height:2em;position:absolute !important;top:0;right:0}.quarto-dashboard .dashboard-toolbar-container{padding:0}.quarto-dashboard .card .card-header p:last-child,.quarto-dashboard .card .card-footer p:last-child{margin-bottom:0}.quarto-dashboard .card .card-body>.h4:first-child{margin-top:0}.quarto-dashboard .card .card-body{z-index:4}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_length,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_info,.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate{text-align:initial}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_filter{text-align:right}.quarto-dashboard .card .card-body .itables div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:initial}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding-top:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper table{flex-shrink:0}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons{margin-bottom:.5em;margin-left:auto;width:fit-content;float:right}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons.btn-group{background:#fff;border:none}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn-secondary{background-color:#fff;background-image:none;border:solid #dee2e6 1px;padding:.2em .7em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dt-buttons .btn span{font-size:.8em;color:#212529}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{margin-left:.5em;margin-bottom:.5em;padding-top:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.875em}}@media(max-width: 767.98px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_info{font-size:.8em}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter{margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_filter input[type=search]{padding:1px 5px 1px 5px;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length{flex-basis:1 1 50%;margin-bottom:.5em;font-size:.875em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_length select{padding:.4em 3em .4em .5em;font-size:.875em;margin-left:.2em;margin-right:.2em}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{flex-shrink:0}@media(min-width: 768px){.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate{margin-left:auto}}.quarto-dashboard .card .card-body .itables .dataTables_wrapper .dataTables_paginate ul.pagination .paginate_button .page-link{font-size:.8em}.quarto-dashboard .card .card-footer{font-size:.9em}.quarto-dashboard .card .card-toolbar{display:flex;flex-grow:1;flex-direction:row;width:100%;flex-wrap:wrap}.quarto-dashboard .card .card-toolbar>*{font-size:.8em;flex-grow:0}.quarto-dashboard .card .card-toolbar>.card-title{font-size:1em;flex-grow:1;align-self:flex-start;margin-top:.1em}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar form{width:fit-content}.quarto-dashboard .card .card-toolbar form label{padding-top:.2em;padding-bottom:.2em;width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=date]{width:fit-content}.quarto-dashboard .card .card-toolbar form input[type=color]{width:3em}.quarto-dashboard .card .card-toolbar form button{padding:.4em}.quarto-dashboard .card .card-toolbar form select{width:fit-content}.quarto-dashboard .card .card-toolbar .cell-output-display{display:flex}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:.5em;margin-bottom:.5em;width:inherit}.quarto-dashboard .card .card-toolbar .shiny-input-container>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card .card-toolbar>*:last-child{margin-right:0}.quarto-dashboard .card .card-toolbar>*>*{margin-right:1em;align-items:baseline}.quarto-dashboard .card .card-toolbar>*>*>a{text-decoration:none;margin-top:auto;margin-bottom:auto}.quarto-dashboard .card .card-toolbar .shiny-input-container{padding-bottom:0;margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container>*{flex-shrink:0;flex-grow:0}.quarto-dashboard .card .card-toolbar .form-group.shiny-input-container:not([role=group])>label{margin-bottom:0}.quarto-dashboard .card .card-toolbar .shiny-input-container.no-baseline{align-items:start;padding-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-container{display:flex;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-container label{padding-right:.4em}.quarto-dashboard .card .card-toolbar .shiny-input-container .bslib-input-switch{margin-top:6px}.quarto-dashboard .card .card-toolbar input[type=text]{line-height:1;width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange{width:inherit}.quarto-dashboard .card .card-toolbar .input-daterange input[type=text]{height:2.4em;width:10em}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon{height:auto;padding:0;margin-left:-5px !important;margin-right:-5px}.quarto-dashboard .card .card-toolbar .input-daterange .input-group-addon .input-group-text{padding-top:0;padding-bottom:0;height:100%}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny{width:10em}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-line{top:9px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-min,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-max,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-from,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-to,.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-single{top:20px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-bar{top:8px}.quarto-dashboard .card .card-toolbar span.irs.irs--shiny .irs-handle{top:0px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-checkboxgroup>.shiny-options-group{margin-top:0;align-items:baseline}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>label{margin-top:6px}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group{align-items:baseline;margin-top:0}.quarto-dashboard .card .card-toolbar .shiny-input-radiogroup>.shiny-options-group>.radio{margin-right:.3em}.quarto-dashboard .card .card-toolbar .form-select{padding-top:.2em;padding-bottom:.2em}.quarto-dashboard .card .card-toolbar .shiny-input-select{min-width:6em}.quarto-dashboard .card .card-toolbar div.checkbox{margin-bottom:0px}.quarto-dashboard .card .card-toolbar>.checkbox:first-child{margin-top:6px}.quarto-dashboard .card-body>table>thead{border-top:none}.quarto-dashboard .card-body>.table>:not(caption)>*>*{background-color:#fff}.tableFloatingHeaderOriginal{background-color:#fff;position:sticky !important;top:0 !important}.dashboard-data-table{margin-top:-1px}div.value-box-area span.observablehq--number{font-size:calc(clamp(.1em,15cqw,5em)*1.25);line-height:1.2;color:inherit;font-family:var(--bs-body-font-family)}.quarto-listing{padding-bottom:1em}.listing-pagination{padding-top:.5em}ul.pagination{float:right;padding-left:8px;padding-top:.5em}ul.pagination li{padding-right:.75em}ul.pagination li.disabled a,ul.pagination li.active a{color:#fff;text-decoration:none}ul.pagination li:last-of-type{padding-right:0}.listing-actions-group{display:flex}.quarto-listing-filter{margin-bottom:1em;width:200px;margin-left:auto}.quarto-listing-sort{margin-bottom:1em;margin-right:auto;width:auto}.quarto-listing-sort .input-group-text{font-size:.8em}.input-group-text{border-right:none}.quarto-listing-sort select.form-select{font-size:.8em}.listing-no-matching{text-align:center;padding-top:2em;padding-bottom:3em;font-size:1em}#quarto-margin-sidebar .quarto-listing-category{padding-top:0;font-size:1rem}#quarto-margin-sidebar .quarto-listing-category-title{cursor:pointer;font-weight:600;font-size:1rem}.quarto-listing-category .category{cursor:pointer}.quarto-listing-category .category.active{font-weight:600}.quarto-listing-category.category-cloud{display:flex;flex-wrap:wrap;align-items:baseline}.quarto-listing-category.category-cloud .category{padding-right:5px}.quarto-listing-category.category-cloud .category-cloud-1{font-size:.75em}.quarto-listing-category.category-cloud .category-cloud-2{font-size:.95em}.quarto-listing-category.category-cloud .category-cloud-3{font-size:1.15em}.quarto-listing-category.category-cloud .category-cloud-4{font-size:1.35em}.quarto-listing-category.category-cloud .category-cloud-5{font-size:1.55em}.quarto-listing-category.category-cloud .category-cloud-6{font-size:1.75em}.quarto-listing-category.category-cloud .category-cloud-7{font-size:1.95em}.quarto-listing-category.category-cloud .category-cloud-8{font-size:2.15em}.quarto-listing-category.category-cloud .category-cloud-9{font-size:2.35em}.quarto-listing-category.category-cloud .category-cloud-10{font-size:2.55em}.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-1{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-2{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-3{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-3{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-4{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-4{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-5{grid-template-columns:repeat(5, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-5{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-5{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-6{grid-template-columns:repeat(6, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-6{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-6{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-7{grid-template-columns:repeat(7, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-7{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-7{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-8{grid-template-columns:repeat(8, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-8{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-8{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-9{grid-template-columns:repeat(9, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-9{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-9{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-10{grid-template-columns:repeat(10, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-10{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-10{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-11{grid-template-columns:repeat(11, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-11{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-11{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-cols-12{grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.5em}@media(max-width: 767.98px){.quarto-listing-cols-12{grid-template-columns:repeat(2, minmax(0, 1fr));gap:1.5em}}@media(max-width: 575.98px){.quarto-listing-cols-12{grid-template-columns:minmax(0, 1fr);gap:1.5em}}.quarto-listing-grid{gap:1.5em}.quarto-grid-item.borderless{border:none}.quarto-grid-item.borderless .listing-categories .listing-category:last-of-type,.quarto-grid-item.borderless .listing-categories .listing-category:first-of-type{padding-left:0}.quarto-grid-item.borderless .listing-categories .listing-category{border:0}.quarto-grid-link{text-decoration:none;color:inherit}.quarto-grid-link:hover{text-decoration:none;color:inherit}.quarto-grid-item h5.title,.quarto-grid-item .title.h5{margin-top:0;margin-bottom:0}.quarto-grid-item .card-footer{display:flex;justify-content:space-between;font-size:.8em}.quarto-grid-item .card-footer p{margin-bottom:0}.quarto-grid-item p.card-img-top{margin-bottom:0}.quarto-grid-item p.card-img-top>img{object-fit:cover}.quarto-grid-item .card-other-values{margin-top:.5em;font-size:.8em}.quarto-grid-item .card-other-values tr{margin-bottom:.5em}.quarto-grid-item .card-other-values tr>td:first-of-type{font-weight:600;padding-right:1em;padding-left:1em;vertical-align:top}.quarto-grid-item div.post-contents{display:flex;flex-direction:column;text-decoration:none;height:100%}.quarto-grid-item .listing-item-img-placeholder{background-color:rgba(52,58,64,.25);flex-shrink:0}.quarto-grid-item .card-attribution{padding-top:1em;display:flex;gap:1em;text-transform:uppercase;color:#6c757d;font-weight:500;flex-grow:10;align-items:flex-end}.quarto-grid-item .description{padding-bottom:1em}.quarto-grid-item .card-attribution .date{align-self:flex-end}.quarto-grid-item .card-attribution.justify{justify-content:space-between}.quarto-grid-item .card-attribution.start{justify-content:flex-start}.quarto-grid-item .card-attribution.end{justify-content:flex-end}.quarto-grid-item .card-title{margin-bottom:.1em}.quarto-grid-item .card-subtitle{padding-top:.25em}.quarto-grid-item .card-text{font-size:.9em}.quarto-grid-item .listing-reading-time{padding-bottom:.25em}.quarto-grid-item .card-text-small{font-size:.8em}.quarto-grid-item .card-subtitle.subtitle{font-size:.9em;font-weight:600;padding-bottom:.5em}.quarto-grid-item .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}.quarto-grid-item .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}.quarto-grid-item.card-right{text-align:right}.quarto-grid-item.card-right .listing-categories{justify-content:flex-end}.quarto-grid-item.card-left{text-align:left}.quarto-grid-item.card-center{text-align:center}.quarto-grid-item.card-center .listing-description{text-align:justify}.quarto-grid-item.card-center .listing-categories{justify-content:center}table.quarto-listing-table td.image{padding:0px}table.quarto-listing-table td.image img{width:100%;max-width:50px;object-fit:contain}table.quarto-listing-table a{text-decoration:none;word-break:keep-all}table.quarto-listing-table th a{color:inherit}table.quarto-listing-table th a.asc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml, ');content:""}table.quarto-listing-table th a.desc:after{margin-bottom:-2px;margin-left:5px;display:inline-block;height:1rem;width:1rem;background-repeat:no-repeat;background-size:1rem 1rem;background-image:url('data:image/svg+xml, ');content:""}table.quarto-listing-table.table-hover td{cursor:pointer}.quarto-post.image-left{flex-direction:row}.quarto-post.image-right{flex-direction:row-reverse}@media(max-width: 767.98px){.quarto-post.image-right,.quarto-post.image-left{gap:0em;flex-direction:column}.quarto-post .metadata{padding-bottom:1em;order:2}.quarto-post .body{order:1}.quarto-post .thumbnail{order:3}}.list.quarto-listing-default div:last-of-type{border-bottom:none}@media(min-width: 992px){.quarto-listing-container-default{margin-right:2em}}div.quarto-post{display:flex;gap:2em;margin-bottom:1.5em;border-bottom:1px solid #dee2e6}@media(max-width: 767.98px){div.quarto-post{padding-bottom:1em}}div.quarto-post .metadata{flex-basis:20%;flex-grow:0;margin-top:.2em;flex-shrink:10}div.quarto-post .thumbnail{flex-basis:30%;flex-grow:0;flex-shrink:0}div.quarto-post .thumbnail img{margin-top:.4em;width:100%;object-fit:cover}div.quarto-post .body{flex-basis:45%;flex-grow:1;flex-shrink:0}div.quarto-post .body h3.listing-title,div.quarto-post .body .listing-title.h3{margin-top:0px;margin-bottom:0px;border-bottom:none}div.quarto-post .body .listing-subtitle{font-size:.875em;margin-bottom:.5em;margin-top:.2em}div.quarto-post .body .description{font-size:.9em}div.quarto-post .body pre code{white-space:pre-wrap}div.quarto-post a{color:#212529;text-decoration:none}div.quarto-post .metadata{display:flex;flex-direction:column;font-size:.8em;font-family:Lato,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";flex-basis:33%}div.quarto-post .listing-categories{display:flex;flex-wrap:wrap;padding-bottom:5px}div.quarto-post .listing-categories .listing-category{color:#6c757d;border:solid 1px #dee2e6;border-radius:.25rem;text-transform:uppercase;font-size:.65em;padding-left:.5em;padding-right:.5em;padding-top:.15em;padding-bottom:.15em;cursor:pointer;margin-right:4px;margin-bottom:4px}div.quarto-post .listing-description{margin-bottom:.5em}div.quarto-about-jolla{display:flex !important;flex-direction:column;align-items:center;margin-top:10%;padding-bottom:1em}div.quarto-about-jolla .about-image{object-fit:cover;margin-left:auto;margin-right:auto;margin-bottom:1.5em}div.quarto-about-jolla img.round{border-radius:50%}div.quarto-about-jolla img.rounded{border-radius:10px}div.quarto-about-jolla .quarto-title h1.title,div.quarto-about-jolla .quarto-title .title.h1{text-align:center}div.quarto-about-jolla .quarto-title .description{text-align:center}div.quarto-about-jolla h2,div.quarto-about-jolla .h2{border-bottom:none}div.quarto-about-jolla .about-sep{width:60%}div.quarto-about-jolla main{text-align:center}div.quarto-about-jolla .about-links{display:flex}@media(min-width: 992px){div.quarto-about-jolla .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-jolla .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-jolla .about-link{color:rgb(78.4864864865,88,97.5135135135);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-jolla .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-jolla .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-jolla .about-link:hover{color:#18bc9c}div.quarto-about-jolla .about-link i.bi{margin-right:.15em}div.quarto-about-solana{display:flex !important;flex-direction:column;padding-top:3em !important;padding-bottom:1em}div.quarto-about-solana .about-entity{display:flex !important;align-items:start;justify-content:space-between}@media(min-width: 992px){div.quarto-about-solana .about-entity{flex-direction:row}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity{flex-direction:column-reverse;align-items:center;text-align:center}}div.quarto-about-solana .about-entity .entity-contents{display:flex;flex-direction:column}@media(max-width: 767.98px){div.quarto-about-solana .about-entity .entity-contents{width:100%}}div.quarto-about-solana .about-entity .about-image{object-fit:cover}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-image{margin-bottom:1.5em}}div.quarto-about-solana .about-entity img.round{border-radius:50%}div.quarto-about-solana .about-entity img.rounded{border-radius:10px}div.quarto-about-solana .about-entity .about-links{display:flex;justify-content:left;padding-bottom:1.2em}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-solana .about-entity .about-link{color:rgb(78.4864864865,88,97.5135135135);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-solana .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-solana .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-solana .about-entity .about-link:hover{color:#18bc9c}div.quarto-about-solana .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-solana .about-contents{padding-right:1.5em;flex-basis:0;flex-grow:1}div.quarto-about-solana .about-contents main.content{margin-top:0}div.quarto-about-solana .about-contents h2,div.quarto-about-solana .about-contents .h2{border-bottom:none}div.quarto-about-trestles{display:flex !important;flex-direction:row;padding-top:3em !important;padding-bottom:1em}@media(max-width: 991.98px){div.quarto-about-trestles{flex-direction:column;padding-top:0em !important}}div.quarto-about-trestles .about-entity{display:flex !important;flex-direction:column;align-items:center;text-align:center;padding-right:1em}@media(min-width: 992px){div.quarto-about-trestles .about-entity{flex:0 0 42%}}div.quarto-about-trestles .about-entity .about-image{object-fit:cover;margin-bottom:1.5em}div.quarto-about-trestles .about-entity img.round{border-radius:50%}div.quarto-about-trestles .about-entity img.rounded{border-radius:10px}div.quarto-about-trestles .about-entity .about-links{display:flex;justify-content:center}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-trestles .about-entity .about-link{color:rgb(78.4864864865,88,97.5135135135);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-trestles .about-entity .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-trestles .about-entity .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-trestles .about-entity .about-link:hover{color:#18bc9c}div.quarto-about-trestles .about-entity .about-link i.bi{margin-right:.15em}div.quarto-about-trestles .about-contents{flex-basis:0;flex-grow:1}div.quarto-about-trestles .about-contents h2,div.quarto-about-trestles .about-contents .h2{border-bottom:none}@media(min-width: 992px){div.quarto-about-trestles .about-contents{border-left:solid 1px #dee2e6;padding-left:1.5em}}div.quarto-about-trestles .about-contents main.content{margin-top:0}div.quarto-about-marquee{padding-bottom:1em}div.quarto-about-marquee .about-contents{display:flex;flex-direction:column}div.quarto-about-marquee .about-image{max-height:550px;margin-bottom:1.5em;object-fit:cover}div.quarto-about-marquee img.round{border-radius:50%}div.quarto-about-marquee img.rounded{border-radius:10px}div.quarto-about-marquee h2,div.quarto-about-marquee .h2{border-bottom:none}div.quarto-about-marquee .about-links{display:flex;justify-content:center;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-marquee .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-marquee .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-marquee .about-link{color:rgb(78.4864864865,88,97.5135135135);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-marquee .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-marquee .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-marquee .about-link:hover{color:#18bc9c}div.quarto-about-marquee .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-marquee .about-link{border:none}}div.quarto-about-broadside{display:flex;flex-direction:column;padding-bottom:1em}div.quarto-about-broadside .about-main{display:flex !important;padding-top:0 !important}@media(min-width: 992px){div.quarto-about-broadside .about-main{flex-direction:row;align-items:flex-start}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main{flex-direction:column}}@media(max-width: 991.98px){div.quarto-about-broadside .about-main .about-entity{flex-shrink:0;width:100%;height:450px;margin-bottom:1.5em;background-size:cover;background-repeat:no-repeat}}@media(min-width: 992px){div.quarto-about-broadside .about-main .about-entity{flex:0 10 50%;margin-right:1.5em;width:100%;height:100%;background-size:100%;background-repeat:no-repeat}}div.quarto-about-broadside .about-main .about-contents{padding-top:14px;flex:0 0 50%}div.quarto-about-broadside h2,div.quarto-about-broadside .h2{border-bottom:none}div.quarto-about-broadside .about-sep{margin-top:1.5em;width:60%;align-self:center}div.quarto-about-broadside .about-links{display:flex;justify-content:center;column-gap:20px;padding-top:1.5em}@media(min-width: 992px){div.quarto-about-broadside .about-links{flex-direction:row;column-gap:.8em;row-gap:15px;flex-wrap:wrap}}@media(max-width: 991.98px){div.quarto-about-broadside .about-links{flex-direction:column;row-gap:1em;width:100%;padding-bottom:1.5em}}div.quarto-about-broadside .about-link{color:rgb(78.4864864865,88,97.5135135135);text-decoration:none;border:solid 1px}@media(min-width: 992px){div.quarto-about-broadside .about-link{font-size:.8em;padding:.25em .5em;border-radius:4px}}@media(max-width: 991.98px){div.quarto-about-broadside .about-link{font-size:1.1em;padding:.5em .5em;text-align:center;border-radius:6px}}div.quarto-about-broadside .about-link:hover{color:#18bc9c}div.quarto-about-broadside .about-link i.bi{margin-right:.15em}@media(min-width: 992px){div.quarto-about-broadside .about-link{border:none}}.tippy-box[data-theme~=quarto]{background-color:#fff;border:solid 1px #dee2e6;border-radius:.25rem;color:#212529;font-size:.875rem}.tippy-box[data-theme~=quarto]>.tippy-backdrop{background-color:#fff}.tippy-box[data-theme~=quarto]>.tippy-arrow:after,.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{content:"";position:absolute;z-index:-1}.tippy-box[data-theme~=quarto]>.tippy-arrow:after{border-color:rgba(0,0,0,0);border-style:solid}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-6px}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-6px}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-6px}.tippy-box[data-placement^=left]>.tippy-arrow:before{right:-6px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:before{border-top-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-arrow:after{border-top-color:#dee2e6;border-width:7px 7px 0;top:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow>svg{top:16px}.tippy-box[data-theme~=quarto][data-placement^=top]>.tippy-svg-arrow:after{top:17px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:before{border-bottom-color:#fff;bottom:16px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-arrow:after{border-bottom-color:#dee2e6;border-width:0 7px 7px;bottom:17px;left:1px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow>svg{bottom:15px}.tippy-box[data-theme~=quarto][data-placement^=bottom]>.tippy-svg-arrow:after{bottom:17px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:before{border-left-color:#fff}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-arrow:after{border-left-color:#dee2e6;border-width:7px 0 7px 7px;left:17px;top:1px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow>svg{left:11px}.tippy-box[data-theme~=quarto][data-placement^=left]>.tippy-svg-arrow:after{left:12px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:before{border-right-color:#fff;right:16px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-arrow:after{border-width:7px 7px 7px 0;right:17px;top:1px;border-right-color:#dee2e6}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow>svg{right:11px}.tippy-box[data-theme~=quarto][data-placement^=right]>.tippy-svg-arrow:after{right:12px}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow{fill:#212529}.tippy-box[data-theme~=quarto]>.tippy-svg-arrow:after{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);background-size:16px 6px;width:16px;height:6px}.top-right{position:absolute;top:1em;right:1em}.visually-hidden{border:0;clip:rect(0 0 0 0);height:auto;margin:0;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap}.hidden{display:none !important}.zindex-bottom{z-index:-1 !important}figure.figure{display:block}.quarto-layout-panel{margin-bottom:1em}.quarto-layout-panel>figure{width:100%}.quarto-layout-panel>figure>figcaption,.quarto-layout-panel>.panel-caption{margin-top:10pt}.quarto-layout-panel>.table-caption{margin-top:0px}.table-caption p{margin-bottom:.5em}.quarto-layout-row{display:flex;flex-direction:row;align-items:flex-start}.quarto-layout-valign-top{align-items:flex-start}.quarto-layout-valign-bottom{align-items:flex-end}.quarto-layout-valign-center{align-items:center}.quarto-layout-cell{position:relative;margin-right:20px}.quarto-layout-cell:last-child{margin-right:0}.quarto-layout-cell figure,.quarto-layout-cell>p{margin:.2em}.quarto-layout-cell img{max-width:100%}.quarto-layout-cell .html-widget{width:100% !important}.quarto-layout-cell div figure p{margin:0}.quarto-layout-cell figure{display:block;margin-inline-start:0;margin-inline-end:0}.quarto-layout-cell table{display:inline-table}.quarto-layout-cell-subref figcaption,figure .quarto-layout-row figure figcaption{text-align:center;font-style:italic}.quarto-figure{position:relative;margin-bottom:1em}.quarto-figure>figure{width:100%;margin-bottom:0}.quarto-figure-left>figure>p,.quarto-figure-left>figure>div{text-align:left}.quarto-figure-center>figure>p,.quarto-figure-center>figure>div{text-align:center}.quarto-figure-right>figure>p,.quarto-figure-right>figure>div{text-align:right}.quarto-figure>figure>div.cell-annotation,.quarto-figure>figure>div code{text-align:left}figure>p:empty{display:none}figure>p:first-child{margin-top:0;margin-bottom:0}figure>figcaption.quarto-float-caption-bottom{margin-bottom:.5em}figure>figcaption.quarto-float-caption-top{margin-top:.5em}div[id^=tbl-]{position:relative}.quarto-figure>.anchorjs-link{position:absolute;top:.6em;right:.5em}div[id^=tbl-]>.anchorjs-link{position:absolute;top:.7em;right:.3em}.quarto-figure:hover>.anchorjs-link,div[id^=tbl-]:hover>.anchorjs-link,h2:hover>.anchorjs-link,.h2:hover>.anchorjs-link,h3:hover>.anchorjs-link,.h3:hover>.anchorjs-link,h4:hover>.anchorjs-link,.h4:hover>.anchorjs-link,h5:hover>.anchorjs-link,.h5:hover>.anchorjs-link,h6:hover>.anchorjs-link,.h6:hover>.anchorjs-link,.reveal-anchorjs-link>.anchorjs-link{opacity:1}#title-block-header{margin-block-end:1rem;position:relative;margin-top:-1px}#title-block-header .abstract{margin-block-start:1rem}#title-block-header .abstract .abstract-title{font-weight:600}#title-block-header a{text-decoration:none}#title-block-header .author,#title-block-header .date,#title-block-header .doi{margin-block-end:.2rem}#title-block-header .quarto-title-block>div{display:flex}#title-block-header .quarto-title-block>div>h1,#title-block-header .quarto-title-block>div>.h1{flex-grow:1}#title-block-header .quarto-title-block>div>button{flex-shrink:0;height:2.25rem;margin-top:0}@media(min-width: 992px){#title-block-header .quarto-title-block>div>button{margin-top:5px}}tr.header>th>p:last-of-type{margin-bottom:0px}table,table.table{margin-top:.5rem;margin-bottom:.5rem}caption,.table-caption{padding-top:.5rem;padding-bottom:.5rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-top{margin-top:.5rem;margin-bottom:.25rem;text-align:center}figure.quarto-float-tbl figcaption.quarto-float-caption-bottom{padding-top:.25rem;margin-bottom:.5rem;text-align:center}.utterances{max-width:none;margin-left:-8px}iframe{margin-bottom:1em}details{margin-bottom:1em}details[show]{margin-bottom:0}details>summary{color:#6c757d}details>summary>p:only-child{display:inline}div.code-copy-outer-scaffold{position:relative}dd code:not(.sourceCode),p code:not(.sourceCode){white-space:pre-wrap}code{white-space:pre}@media print{code{white-space:pre-wrap}}pre>code{display:block}pre>code.sourceCode{white-space:pre}pre>code.sourceCode>span>a:first-child::before{text-decoration:none}pre.code-overflow-wrap>code.sourceCode{white-space:pre-wrap}pre.code-overflow-scroll>code.sourceCode{white-space:pre}code a:any-link{color:inherit;text-decoration:none}code a:hover{color:inherit;text-decoration:underline}ul.task-list{padding-left:1em}[data-tippy-root]{display:inline-block}.tippy-content .footnote-back{display:none}.footnote-back{margin-left:.2em}.tippy-content{overflow-x:auto}.quarto-embedded-source-code{display:none}.quarto-unresolved-ref{font-weight:600}.quarto-cover-image{max-width:35%;float:right;margin-left:30px}.cell-output-display .widget-subarea{margin-bottom:1em}.cell-output-display:not(.no-overflow-x),.knitsql-table:not(.no-overflow-x){overflow-x:auto}.panel-input{margin-bottom:1em}.panel-input>div,.panel-input>div>div{display:inline-block;vertical-align:top;padding-right:12px}.panel-input>p:last-child{margin-bottom:0}.layout-sidebar{margin-bottom:1em}.layout-sidebar .tab-content{border:none}.tab-content>.page-columns.active{display:grid}div.sourceCode>iframe{width:100%;height:300px;margin-bottom:-0.5em}a{text-underline-offset:3px}.callout pre.sourceCode{padding-left:0}div.ansi-escaped-output{font-family:monospace;display:block}/*!
+*
+* ansi colors from IPython notebook's
+*
+* we also add `bright-[color]-` synonyms for the `-[color]-intense` classes since
+* that seems to be what ansi_up emits
+*
+*/.ansi-black-fg{color:#3e424d}.ansi-black-bg{background-color:#3e424d}.ansi-black-intense-black,.ansi-bright-black-fg{color:#282c36}.ansi-black-intense-black,.ansi-bright-black-bg{background-color:#282c36}.ansi-red-fg{color:#e75c58}.ansi-red-bg{background-color:#e75c58}.ansi-red-intense-red,.ansi-bright-red-fg{color:#b22b31}.ansi-red-intense-red,.ansi-bright-red-bg{background-color:#b22b31}.ansi-green-fg{color:#00a250}.ansi-green-bg{background-color:#00a250}.ansi-green-intense-green,.ansi-bright-green-fg{color:#007427}.ansi-green-intense-green,.ansi-bright-green-bg{background-color:#007427}.ansi-yellow-fg{color:#ddb62b}.ansi-yellow-bg{background-color:#ddb62b}.ansi-yellow-intense-yellow,.ansi-bright-yellow-fg{color:#b27d12}.ansi-yellow-intense-yellow,.ansi-bright-yellow-bg{background-color:#b27d12}.ansi-blue-fg{color:#208ffb}.ansi-blue-bg{background-color:#208ffb}.ansi-blue-intense-blue,.ansi-bright-blue-fg{color:#0065ca}.ansi-blue-intense-blue,.ansi-bright-blue-bg{background-color:#0065ca}.ansi-magenta-fg{color:#d160c4}.ansi-magenta-bg{background-color:#d160c4}.ansi-magenta-intense-magenta,.ansi-bright-magenta-fg{color:#a03196}.ansi-magenta-intense-magenta,.ansi-bright-magenta-bg{background-color:#a03196}.ansi-cyan-fg{color:#60c6c8}.ansi-cyan-bg{background-color:#60c6c8}.ansi-cyan-intense-cyan,.ansi-bright-cyan-fg{color:#258f8f}.ansi-cyan-intense-cyan,.ansi-bright-cyan-bg{background-color:#258f8f}.ansi-white-fg{color:#c5c1b4}.ansi-white-bg{background-color:#c5c1b4}.ansi-white-intense-white,.ansi-bright-white-fg{color:#a1a6b2}.ansi-white-intense-white,.ansi-bright-white-bg{background-color:#a1a6b2}.ansi-default-inverse-fg{color:#fff}.ansi-default-inverse-bg{background-color:#000}.ansi-bold{font-weight:bold}.ansi-underline{text-decoration:underline}:root{--quarto-body-bg: #fff;--quarto-body-color: #212529;--quarto-text-muted: #6c757d;--quarto-border-color: #dee2e6;--quarto-border-width: 1px;--quarto-border-radius: 0.25rem}table.gt_table{color:var(--quarto-body-color);font-size:1em;width:100%;background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_column_spanner_outer{color:var(--quarto-body-color);background-color:rgba(0,0,0,0);border-top-width:inherit;border-bottom-width:inherit;border-color:var(--quarto-border-color)}table.gt_table th.gt_col_heading{color:var(--quarto-body-color);font-weight:bold;background-color:rgba(0,0,0,0)}table.gt_table thead.gt_col_headings{border-bottom:1px solid currentColor;border-top-width:inherit;border-top-color:var(--quarto-border-color)}table.gt_table thead.gt_col_headings:not(:first-child){border-top-width:1px;border-top-color:var(--quarto-border-color)}table.gt_table td.gt_row{border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-width:0px}table.gt_table tbody.gt_table_body{border-top-width:1px;border-bottom-width:1px;border-bottom-color:var(--quarto-border-color);border-top-color:currentColor}div.columns{display:initial;gap:initial}div.column{display:inline-block;overflow-x:initial;vertical-align:top;width:50%}.code-annotation-tip-content{word-wrap:break-word}.code-annotation-container-hidden{display:none !important}dl.code-annotation-container-grid{display:grid;grid-template-columns:min-content auto}dl.code-annotation-container-grid dt{grid-column:1}dl.code-annotation-container-grid dd{grid-column:2}pre.sourceCode.code-annotation-code{padding-right:0}code.sourceCode .code-annotation-anchor{z-index:100;position:relative;float:right;background-color:rgba(0,0,0,0)}input[type=checkbox]{margin-right:.5ch}:root{--mermaid-bg-color: #fff;--mermaid-edge-color: #6c757d;--mermaid-node-fg-color: #212529;--mermaid-fg-color: #212529;--mermaid-fg-color--lighter: rgb(55.7432432432, 62.5, 69.2567567568);--mermaid-fg-color--lightest: rgb(78.4864864865, 88, 97.5135135135);--mermaid-font-family: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;--mermaid-label-bg-color: #fff;--mermaid-label-fg-color: #2c3e50;--mermaid-node-bg-color: rgba(44, 62, 80, 0.1);--mermaid-node-fg-color: #212529}@media print{:root{font-size:11pt}#quarto-sidebar,#TOC,.nav-page{display:none}.page-columns .content{grid-column-start:page-start}.fixed-top{position:relative}.panel-caption,.figure-caption,figcaption{color:#666}}body.quarto-light .dark-content{display:none !important}body.quarto-dark .light-content{display:none !important}.code-copy-button{position:absolute;top:0;right:0;border:0;margin-top:5px;margin-right:5px;background-color:rgba(0,0,0,0);z-index:3}.code-copy-button-tooltip{font-size:.75em}div.code-copy-outer-scaffold:hover>.code-copy-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml, ');background-repeat:no-repeat;background-size:1rem 1rem}div.code-copy-outer-scaffold:hover>.code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml, ')}div.code-copy-outer-scaffold:hover>.code-copy-button:hover>.bi::before{background-image:url('data:image/svg+xml, ')}div.code-copy-outer-scaffold:hover>.code-copy-button-checked:hover>.bi::before{background-image:url('data:image/svg+xml, ')}main ol ol,main ul ul,main ol ul,main ul ol{margin-bottom:1em}ul>li:not(:has(>p))>ul,ol>li:not(:has(>p))>ul,ul>li:not(:has(>p))>ol,ol>li:not(:has(>p))>ol{margin-bottom:0}ul>li:not(:has(>p))>ul>li:has(>p),ol>li:not(:has(>p))>ul>li:has(>p),ul>li:not(:has(>p))>ol>li:has(>p),ol>li:not(:has(>p))>ol>li:has(>p){margin-top:1rem}body{margin:0}main.page-columns>header>h1.title,main.page-columns>header>.title.h1{margin-bottom:0}@media(min-width: 992px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] 35px [page-end-inset page-end] 5fr [screen-end-inset] 1.5em}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset] 35px [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(850px - 3em)) [body-content-end] 3em [body-end] 50px [body-end-outset] minmax(0px, 250px) [page-end-inset] minmax(50px, 100px) [page-end] 1fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 175px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 100px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start] minmax(50px, 100px) [page-start-inset] 50px [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(0px, 200px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 50px [page-start-inset] minmax(50px, 150px) [body-start-outset] 50px [body-start] 1.5em [body-content-start] minmax(450px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(50px, 150px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] minmax(25px, 50px) [page-start-inset] minmax(50px, 150px) [body-start-outset] minmax(25px, 50px) [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] minmax(25px, 50px) [body-end-outset] minmax(50px, 150px) [page-end-inset] minmax(25px, 50px) [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 991.98px){body .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.fullcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.slimcontent:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.listing:not(.floating):not(.docked) .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset] 5fr [body-start] 1.5em [body-content-start] minmax(500px, calc(1250px - 3em)) [body-content-end body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start] 35px [page-start-inset] minmax(0px, 145px) [body-start-outset] 35px [body-start] 1.5em [body-content-start] minmax(450px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1.5em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(1000px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(800px - 3em)) [body-content-end] 1.5em [body-end body-end-outset page-end-inset page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.docked.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.docked.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(25px, 50px) [page-end-inset] 50px [page-end] 5fr [screen-end-inset] 1.5em [screen-end]}body.floating.slimcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 35px [body-end-outset] minmax(75px, 145px) [page-end-inset] 35px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}body.floating.listing .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset] 5fr [page-start page-start-inset body-start-outset body-start] 1em [body-content-start] minmax(500px, calc(750px - 3em)) [body-content-end] 1.5em [body-end] 50px [body-end-outset] minmax(75px, 150px) [page-end-inset] 25px [page-end] 4fr [screen-end-inset] 1.5em [screen-end]}}@media(max-width: 767.98px){body .page-columns,body.fullcontent:not(.floating):not(.docked) .page-columns,body.slimcontent:not(.floating):not(.docked) .page-columns,body.docked .page-columns,body.docked.slimcontent .page-columns,body.docked.fullcontent .page-columns,body.floating .page-columns,body.floating.slimcontent .page-columns,body.floating.fullcontent .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}body:not(.floating):not(.docked) .page-columns.toc-left .page-columns{display:grid;gap:0;grid-template-columns:[screen-start] 1.5em [screen-start-inset page-start page-start-inset body-start-outset body-start body-content-start] minmax(0px, 1fr) [body-content-end body-end body-end-outset page-end-inset page-end screen-end-inset] 1.5em [screen-end]}nav[role=doc-toc]{display:none}}body,.page-row-navigation{grid-template-rows:[page-top] max-content [contents-top] max-content [contents-bottom] max-content [page-bottom]}.page-rows-contents{grid-template-rows:[content-top] minmax(max-content, 1fr) [content-bottom] minmax(60px, max-content) [page-bottom]}.page-full{grid-column:screen-start/screen-end !important}.page-columns>*{grid-column:body-content-start/body-content-end}.page-columns.column-page>*{grid-column:page-start/page-end}.page-columns.column-page-left .page-columns.page-full>*,.page-columns.column-page-left>*{grid-column:page-start/body-content-end}.page-columns.column-page-right .page-columns.page-full>*,.page-columns.column-page-right>*{grid-column:body-content-start/page-end}.page-rows{grid-auto-rows:auto}.header{grid-column:screen-start/screen-end;grid-row:page-top/contents-top}#quarto-content{padding:0;grid-column:screen-start/screen-end;grid-row:contents-top/contents-bottom}body.floating .sidebar.sidebar-navigation{grid-column:page-start/body-start;grid-row:content-top/page-bottom}body.docked .sidebar.sidebar-navigation{grid-column:screen-start/body-start;grid-row:content-top/page-bottom}.sidebar.toc-left{grid-column:page-start/body-start;grid-row:content-top/page-bottom}.sidebar.margin-sidebar{grid-column:body-end/page-end;grid-row:content-top/page-bottom}.page-columns .content{grid-column:body-content-start/body-content-end;grid-row:content-top/content-bottom;align-content:flex-start}.page-columns .page-navigation{grid-column:body-content-start/body-content-end;grid-row:content-bottom/page-bottom}.page-columns .footer{grid-column:screen-start/screen-end;grid-row:contents-bottom/page-bottom}.page-columns .column-body{grid-column:body-content-start/body-content-end}.page-columns .column-body-fullbleed{grid-column:body-start/body-end}.page-columns .column-body-outset{grid-column:body-start-outset/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset table{background:#fff}.page-columns .column-body-outset-left{grid-column:body-start-outset/body-content-end;z-index:998;opacity:.999}.page-columns .column-body-outset-left table{background:#fff}.page-columns .column-body-outset-right{grid-column:body-content-start/body-end-outset;z-index:998;opacity:.999}.page-columns .column-body-outset-right table{background:#fff}.page-columns .column-page{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-page table{background:#fff}.page-columns .column-page-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset table{background:#fff}.page-columns .column-page-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-inset-left table{background:#fff}.page-columns .column-page-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-page-inset-right figcaption table{background:#fff}.page-columns .column-page-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-page-left table{background:#fff}.page-columns .column-page-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-page-right figcaption table{background:#fff}#quarto-content.page-columns #quarto-margin-sidebar,#quarto-content.page-columns #quarto-sidebar{z-index:1}@media(max-width: 991.98px){#quarto-content.page-columns #quarto-margin-sidebar.collapse,#quarto-content.page-columns #quarto-sidebar.collapse,#quarto-content.page-columns #quarto-margin-sidebar.collapsing,#quarto-content.page-columns #quarto-sidebar.collapsing{z-index:1055}}#quarto-content.page-columns main.column-page,#quarto-content.page-columns main.column-page-right,#quarto-content.page-columns main.column-page-left{z-index:0}.page-columns .column-screen-inset{grid-column:screen-start-inset/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:screen-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/screen-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:screen-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:screen-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/screen-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:screen-start/screen-end;padding:1em;background:#ecf0f1;z-index:998;opacity:.999;margin-bottom:1em}.zindex-content{z-index:998;opacity:.999}.zindex-modal{z-index:1055;opacity:.999}.zindex-over-content{z-index:999;opacity:.999}img.img-fluid.column-screen,img.img-fluid.column-screen-inset-shaded,img.img-fluid.column-screen-inset,img.img-fluid.column-screen-inset-left,img.img-fluid.column-screen-inset-right,img.img-fluid.column-screen-left,img.img-fluid.column-screen-right{width:100%}@media(min-width: 992px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.column-sidebar{grid-column:page-start/body-start !important;z-index:998}.column-leftmargin{grid-column:screen-start-inset/body-start !important;z-index:998}.no-row-height{height:1em;overflow:visible}}@media(max-width: 991.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-end/page-end !important;z-index:998}.no-row-height{height:1em;overflow:visible}.page-columns.page-full{overflow:visible}.page-columns.toc-left .margin-caption,.page-columns.toc-left div.aside,.page-columns.toc-left aside:not(.footnotes):not(.sidebar),.page-columns.toc-left .column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.page-columns.toc-left .no-row-height{height:initial;overflow:initial}}@media(max-width: 767.98px){.margin-caption,div.aside,aside:not(.footnotes):not(.sidebar),.column-margin{grid-column:body-content-start/body-content-end !important;z-index:998;opacity:.999}.no-row-height{height:initial;overflow:initial}#quarto-margin-sidebar{display:none}#quarto-sidebar-toc-left{display:none}.hidden-sm{display:none}}.panel-grid{display:grid;grid-template-rows:repeat(1, 1fr);grid-template-columns:repeat(24, 1fr);gap:1em}.panel-grid .g-col-1{grid-column:auto/span 1}.panel-grid .g-col-2{grid-column:auto/span 2}.panel-grid .g-col-3{grid-column:auto/span 3}.panel-grid .g-col-4{grid-column:auto/span 4}.panel-grid .g-col-5{grid-column:auto/span 5}.panel-grid .g-col-6{grid-column:auto/span 6}.panel-grid .g-col-7{grid-column:auto/span 7}.panel-grid .g-col-8{grid-column:auto/span 8}.panel-grid .g-col-9{grid-column:auto/span 9}.panel-grid .g-col-10{grid-column:auto/span 10}.panel-grid .g-col-11{grid-column:auto/span 11}.panel-grid .g-col-12{grid-column:auto/span 12}.panel-grid .g-col-13{grid-column:auto/span 13}.panel-grid .g-col-14{grid-column:auto/span 14}.panel-grid .g-col-15{grid-column:auto/span 15}.panel-grid .g-col-16{grid-column:auto/span 16}.panel-grid .g-col-17{grid-column:auto/span 17}.panel-grid .g-col-18{grid-column:auto/span 18}.panel-grid .g-col-19{grid-column:auto/span 19}.panel-grid .g-col-20{grid-column:auto/span 20}.panel-grid .g-col-21{grid-column:auto/span 21}.panel-grid .g-col-22{grid-column:auto/span 22}.panel-grid .g-col-23{grid-column:auto/span 23}.panel-grid .g-col-24{grid-column:auto/span 24}.panel-grid .g-start-1{grid-column-start:1}.panel-grid .g-start-2{grid-column-start:2}.panel-grid .g-start-3{grid-column-start:3}.panel-grid .g-start-4{grid-column-start:4}.panel-grid .g-start-5{grid-column-start:5}.panel-grid .g-start-6{grid-column-start:6}.panel-grid .g-start-7{grid-column-start:7}.panel-grid .g-start-8{grid-column-start:8}.panel-grid .g-start-9{grid-column-start:9}.panel-grid .g-start-10{grid-column-start:10}.panel-grid .g-start-11{grid-column-start:11}.panel-grid .g-start-12{grid-column-start:12}.panel-grid .g-start-13{grid-column-start:13}.panel-grid .g-start-14{grid-column-start:14}.panel-grid .g-start-15{grid-column-start:15}.panel-grid .g-start-16{grid-column-start:16}.panel-grid .g-start-17{grid-column-start:17}.panel-grid .g-start-18{grid-column-start:18}.panel-grid .g-start-19{grid-column-start:19}.panel-grid .g-start-20{grid-column-start:20}.panel-grid .g-start-21{grid-column-start:21}.panel-grid .g-start-22{grid-column-start:22}.panel-grid .g-start-23{grid-column-start:23}@media(min-width: 576px){.panel-grid .g-col-sm-1{grid-column:auto/span 1}.panel-grid .g-col-sm-2{grid-column:auto/span 2}.panel-grid .g-col-sm-3{grid-column:auto/span 3}.panel-grid .g-col-sm-4{grid-column:auto/span 4}.panel-grid .g-col-sm-5{grid-column:auto/span 5}.panel-grid .g-col-sm-6{grid-column:auto/span 6}.panel-grid .g-col-sm-7{grid-column:auto/span 7}.panel-grid .g-col-sm-8{grid-column:auto/span 8}.panel-grid .g-col-sm-9{grid-column:auto/span 9}.panel-grid .g-col-sm-10{grid-column:auto/span 10}.panel-grid .g-col-sm-11{grid-column:auto/span 11}.panel-grid .g-col-sm-12{grid-column:auto/span 12}.panel-grid .g-col-sm-13{grid-column:auto/span 13}.panel-grid .g-col-sm-14{grid-column:auto/span 14}.panel-grid .g-col-sm-15{grid-column:auto/span 15}.panel-grid .g-col-sm-16{grid-column:auto/span 16}.panel-grid .g-col-sm-17{grid-column:auto/span 17}.panel-grid .g-col-sm-18{grid-column:auto/span 18}.panel-grid .g-col-sm-19{grid-column:auto/span 19}.panel-grid .g-col-sm-20{grid-column:auto/span 20}.panel-grid .g-col-sm-21{grid-column:auto/span 21}.panel-grid .g-col-sm-22{grid-column:auto/span 22}.panel-grid .g-col-sm-23{grid-column:auto/span 23}.panel-grid .g-col-sm-24{grid-column:auto/span 24}.panel-grid .g-start-sm-1{grid-column-start:1}.panel-grid .g-start-sm-2{grid-column-start:2}.panel-grid .g-start-sm-3{grid-column-start:3}.panel-grid .g-start-sm-4{grid-column-start:4}.panel-grid .g-start-sm-5{grid-column-start:5}.panel-grid .g-start-sm-6{grid-column-start:6}.panel-grid .g-start-sm-7{grid-column-start:7}.panel-grid .g-start-sm-8{grid-column-start:8}.panel-grid .g-start-sm-9{grid-column-start:9}.panel-grid .g-start-sm-10{grid-column-start:10}.panel-grid .g-start-sm-11{grid-column-start:11}.panel-grid .g-start-sm-12{grid-column-start:12}.panel-grid .g-start-sm-13{grid-column-start:13}.panel-grid .g-start-sm-14{grid-column-start:14}.panel-grid .g-start-sm-15{grid-column-start:15}.panel-grid .g-start-sm-16{grid-column-start:16}.panel-grid .g-start-sm-17{grid-column-start:17}.panel-grid .g-start-sm-18{grid-column-start:18}.panel-grid .g-start-sm-19{grid-column-start:19}.panel-grid .g-start-sm-20{grid-column-start:20}.panel-grid .g-start-sm-21{grid-column-start:21}.panel-grid .g-start-sm-22{grid-column-start:22}.panel-grid .g-start-sm-23{grid-column-start:23}}@media(min-width: 768px){.panel-grid .g-col-md-1{grid-column:auto/span 1}.panel-grid .g-col-md-2{grid-column:auto/span 2}.panel-grid .g-col-md-3{grid-column:auto/span 3}.panel-grid .g-col-md-4{grid-column:auto/span 4}.panel-grid .g-col-md-5{grid-column:auto/span 5}.panel-grid .g-col-md-6{grid-column:auto/span 6}.panel-grid .g-col-md-7{grid-column:auto/span 7}.panel-grid .g-col-md-8{grid-column:auto/span 8}.panel-grid .g-col-md-9{grid-column:auto/span 9}.panel-grid .g-col-md-10{grid-column:auto/span 10}.panel-grid .g-col-md-11{grid-column:auto/span 11}.panel-grid .g-col-md-12{grid-column:auto/span 12}.panel-grid .g-col-md-13{grid-column:auto/span 13}.panel-grid .g-col-md-14{grid-column:auto/span 14}.panel-grid .g-col-md-15{grid-column:auto/span 15}.panel-grid .g-col-md-16{grid-column:auto/span 16}.panel-grid .g-col-md-17{grid-column:auto/span 17}.panel-grid .g-col-md-18{grid-column:auto/span 18}.panel-grid .g-col-md-19{grid-column:auto/span 19}.panel-grid .g-col-md-20{grid-column:auto/span 20}.panel-grid .g-col-md-21{grid-column:auto/span 21}.panel-grid .g-col-md-22{grid-column:auto/span 22}.panel-grid .g-col-md-23{grid-column:auto/span 23}.panel-grid .g-col-md-24{grid-column:auto/span 24}.panel-grid .g-start-md-1{grid-column-start:1}.panel-grid .g-start-md-2{grid-column-start:2}.panel-grid .g-start-md-3{grid-column-start:3}.panel-grid .g-start-md-4{grid-column-start:4}.panel-grid .g-start-md-5{grid-column-start:5}.panel-grid .g-start-md-6{grid-column-start:6}.panel-grid .g-start-md-7{grid-column-start:7}.panel-grid .g-start-md-8{grid-column-start:8}.panel-grid .g-start-md-9{grid-column-start:9}.panel-grid .g-start-md-10{grid-column-start:10}.panel-grid .g-start-md-11{grid-column-start:11}.panel-grid .g-start-md-12{grid-column-start:12}.panel-grid .g-start-md-13{grid-column-start:13}.panel-grid .g-start-md-14{grid-column-start:14}.panel-grid .g-start-md-15{grid-column-start:15}.panel-grid .g-start-md-16{grid-column-start:16}.panel-grid .g-start-md-17{grid-column-start:17}.panel-grid .g-start-md-18{grid-column-start:18}.panel-grid .g-start-md-19{grid-column-start:19}.panel-grid .g-start-md-20{grid-column-start:20}.panel-grid .g-start-md-21{grid-column-start:21}.panel-grid .g-start-md-22{grid-column-start:22}.panel-grid .g-start-md-23{grid-column-start:23}}@media(min-width: 992px){.panel-grid .g-col-lg-1{grid-column:auto/span 1}.panel-grid .g-col-lg-2{grid-column:auto/span 2}.panel-grid .g-col-lg-3{grid-column:auto/span 3}.panel-grid .g-col-lg-4{grid-column:auto/span 4}.panel-grid .g-col-lg-5{grid-column:auto/span 5}.panel-grid .g-col-lg-6{grid-column:auto/span 6}.panel-grid .g-col-lg-7{grid-column:auto/span 7}.panel-grid .g-col-lg-8{grid-column:auto/span 8}.panel-grid .g-col-lg-9{grid-column:auto/span 9}.panel-grid .g-col-lg-10{grid-column:auto/span 10}.panel-grid .g-col-lg-11{grid-column:auto/span 11}.panel-grid .g-col-lg-12{grid-column:auto/span 12}.panel-grid .g-col-lg-13{grid-column:auto/span 13}.panel-grid .g-col-lg-14{grid-column:auto/span 14}.panel-grid .g-col-lg-15{grid-column:auto/span 15}.panel-grid .g-col-lg-16{grid-column:auto/span 16}.panel-grid .g-col-lg-17{grid-column:auto/span 17}.panel-grid .g-col-lg-18{grid-column:auto/span 18}.panel-grid .g-col-lg-19{grid-column:auto/span 19}.panel-grid .g-col-lg-20{grid-column:auto/span 20}.panel-grid .g-col-lg-21{grid-column:auto/span 21}.panel-grid .g-col-lg-22{grid-column:auto/span 22}.panel-grid .g-col-lg-23{grid-column:auto/span 23}.panel-grid .g-col-lg-24{grid-column:auto/span 24}.panel-grid .g-start-lg-1{grid-column-start:1}.panel-grid .g-start-lg-2{grid-column-start:2}.panel-grid .g-start-lg-3{grid-column-start:3}.panel-grid .g-start-lg-4{grid-column-start:4}.panel-grid .g-start-lg-5{grid-column-start:5}.panel-grid .g-start-lg-6{grid-column-start:6}.panel-grid .g-start-lg-7{grid-column-start:7}.panel-grid .g-start-lg-8{grid-column-start:8}.panel-grid .g-start-lg-9{grid-column-start:9}.panel-grid .g-start-lg-10{grid-column-start:10}.panel-grid .g-start-lg-11{grid-column-start:11}.panel-grid .g-start-lg-12{grid-column-start:12}.panel-grid .g-start-lg-13{grid-column-start:13}.panel-grid .g-start-lg-14{grid-column-start:14}.panel-grid .g-start-lg-15{grid-column-start:15}.panel-grid .g-start-lg-16{grid-column-start:16}.panel-grid .g-start-lg-17{grid-column-start:17}.panel-grid .g-start-lg-18{grid-column-start:18}.panel-grid .g-start-lg-19{grid-column-start:19}.panel-grid .g-start-lg-20{grid-column-start:20}.panel-grid .g-start-lg-21{grid-column-start:21}.panel-grid .g-start-lg-22{grid-column-start:22}.panel-grid .g-start-lg-23{grid-column-start:23}}@media(min-width: 1200px){.panel-grid .g-col-xl-1{grid-column:auto/span 1}.panel-grid .g-col-xl-2{grid-column:auto/span 2}.panel-grid .g-col-xl-3{grid-column:auto/span 3}.panel-grid .g-col-xl-4{grid-column:auto/span 4}.panel-grid .g-col-xl-5{grid-column:auto/span 5}.panel-grid .g-col-xl-6{grid-column:auto/span 6}.panel-grid .g-col-xl-7{grid-column:auto/span 7}.panel-grid .g-col-xl-8{grid-column:auto/span 8}.panel-grid .g-col-xl-9{grid-column:auto/span 9}.panel-grid .g-col-xl-10{grid-column:auto/span 10}.panel-grid .g-col-xl-11{grid-column:auto/span 11}.panel-grid .g-col-xl-12{grid-column:auto/span 12}.panel-grid .g-col-xl-13{grid-column:auto/span 13}.panel-grid .g-col-xl-14{grid-column:auto/span 14}.panel-grid .g-col-xl-15{grid-column:auto/span 15}.panel-grid .g-col-xl-16{grid-column:auto/span 16}.panel-grid .g-col-xl-17{grid-column:auto/span 17}.panel-grid .g-col-xl-18{grid-column:auto/span 18}.panel-grid .g-col-xl-19{grid-column:auto/span 19}.panel-grid .g-col-xl-20{grid-column:auto/span 20}.panel-grid .g-col-xl-21{grid-column:auto/span 21}.panel-grid .g-col-xl-22{grid-column:auto/span 22}.panel-grid .g-col-xl-23{grid-column:auto/span 23}.panel-grid .g-col-xl-24{grid-column:auto/span 24}.panel-grid .g-start-xl-1{grid-column-start:1}.panel-grid .g-start-xl-2{grid-column-start:2}.panel-grid .g-start-xl-3{grid-column-start:3}.panel-grid .g-start-xl-4{grid-column-start:4}.panel-grid .g-start-xl-5{grid-column-start:5}.panel-grid .g-start-xl-6{grid-column-start:6}.panel-grid .g-start-xl-7{grid-column-start:7}.panel-grid .g-start-xl-8{grid-column-start:8}.panel-grid .g-start-xl-9{grid-column-start:9}.panel-grid .g-start-xl-10{grid-column-start:10}.panel-grid .g-start-xl-11{grid-column-start:11}.panel-grid .g-start-xl-12{grid-column-start:12}.panel-grid .g-start-xl-13{grid-column-start:13}.panel-grid .g-start-xl-14{grid-column-start:14}.panel-grid .g-start-xl-15{grid-column-start:15}.panel-grid .g-start-xl-16{grid-column-start:16}.panel-grid .g-start-xl-17{grid-column-start:17}.panel-grid .g-start-xl-18{grid-column-start:18}.panel-grid .g-start-xl-19{grid-column-start:19}.panel-grid .g-start-xl-20{grid-column-start:20}.panel-grid .g-start-xl-21{grid-column-start:21}.panel-grid .g-start-xl-22{grid-column-start:22}.panel-grid .g-start-xl-23{grid-column-start:23}}@media(min-width: 1400px){.panel-grid .g-col-xxl-1{grid-column:auto/span 1}.panel-grid .g-col-xxl-2{grid-column:auto/span 2}.panel-grid .g-col-xxl-3{grid-column:auto/span 3}.panel-grid .g-col-xxl-4{grid-column:auto/span 4}.panel-grid .g-col-xxl-5{grid-column:auto/span 5}.panel-grid .g-col-xxl-6{grid-column:auto/span 6}.panel-grid .g-col-xxl-7{grid-column:auto/span 7}.panel-grid .g-col-xxl-8{grid-column:auto/span 8}.panel-grid .g-col-xxl-9{grid-column:auto/span 9}.panel-grid .g-col-xxl-10{grid-column:auto/span 10}.panel-grid .g-col-xxl-11{grid-column:auto/span 11}.panel-grid .g-col-xxl-12{grid-column:auto/span 12}.panel-grid .g-col-xxl-13{grid-column:auto/span 13}.panel-grid .g-col-xxl-14{grid-column:auto/span 14}.panel-grid .g-col-xxl-15{grid-column:auto/span 15}.panel-grid .g-col-xxl-16{grid-column:auto/span 16}.panel-grid .g-col-xxl-17{grid-column:auto/span 17}.panel-grid .g-col-xxl-18{grid-column:auto/span 18}.panel-grid .g-col-xxl-19{grid-column:auto/span 19}.panel-grid .g-col-xxl-20{grid-column:auto/span 20}.panel-grid .g-col-xxl-21{grid-column:auto/span 21}.panel-grid .g-col-xxl-22{grid-column:auto/span 22}.panel-grid .g-col-xxl-23{grid-column:auto/span 23}.panel-grid .g-col-xxl-24{grid-column:auto/span 24}.panel-grid .g-start-xxl-1{grid-column-start:1}.panel-grid .g-start-xxl-2{grid-column-start:2}.panel-grid .g-start-xxl-3{grid-column-start:3}.panel-grid .g-start-xxl-4{grid-column-start:4}.panel-grid .g-start-xxl-5{grid-column-start:5}.panel-grid .g-start-xxl-6{grid-column-start:6}.panel-grid .g-start-xxl-7{grid-column-start:7}.panel-grid .g-start-xxl-8{grid-column-start:8}.panel-grid .g-start-xxl-9{grid-column-start:9}.panel-grid .g-start-xxl-10{grid-column-start:10}.panel-grid .g-start-xxl-11{grid-column-start:11}.panel-grid .g-start-xxl-12{grid-column-start:12}.panel-grid .g-start-xxl-13{grid-column-start:13}.panel-grid .g-start-xxl-14{grid-column-start:14}.panel-grid .g-start-xxl-15{grid-column-start:15}.panel-grid .g-start-xxl-16{grid-column-start:16}.panel-grid .g-start-xxl-17{grid-column-start:17}.panel-grid .g-start-xxl-18{grid-column-start:18}.panel-grid .g-start-xxl-19{grid-column-start:19}.panel-grid .g-start-xxl-20{grid-column-start:20}.panel-grid .g-start-xxl-21{grid-column-start:21}.panel-grid .g-start-xxl-22{grid-column-start:22}.panel-grid .g-start-xxl-23{grid-column-start:23}}main{margin-top:1em;margin-bottom:1em}h1,.h1,h2,.h2{color:inherit;margin-top:2rem;margin-bottom:1rem;font-weight:600}h1.title,.title.h1{margin-top:0}main.content>p:has(+section){margin-bottom:2rem}main.content>section:first-of-type>h2:nth-child(1),main.content>section:first-of-type>.h2:nth-child(1){margin-top:0}h2,.h2{border-bottom:1px solid #dee2e6;padding-bottom:.5rem}h3,.h3{font-weight:600}h3,.h3,h4,.h4{opacity:.9;margin-top:1.5rem}h5,.h5,h6,.h6{opacity:.9}.header-section-number{color:hsl(210,10.8108108108%,39.5098039216%)}.nav-link.active .header-section-number{color:inherit}mark,.mark{padding:0em}.panel-caption,.figure-caption,.subfigure-caption,.table-caption,figcaption,caption{font-size:.9rem;color:hsl(210,10.8108108108%,39.5098039216%)}.quarto-layout-cell[data-ref-parent] caption{color:hsl(210,10.8108108108%,39.5098039216%)}.column-margin figcaption,.margin-caption,div.aside,aside,.column-margin{color:hsl(210,10.8108108108%,39.5098039216%);font-size:.825rem}.panel-caption.margin-caption{text-align:inherit}.column-margin.column-container p{margin-bottom:0}.column-margin.column-container>*:not(.collapse):first-child{padding-bottom:.5em;display:block}.column-margin.column-container>*:not(.collapse):not(:first-child){padding-top:.5em;padding-bottom:.5em;display:block}body.quarto-dark .column-margin.column-container>.light-content+.dark-content{padding-top:0}.column-margin.column-container>*.collapse:not(.show){display:none}@media(min-width: 768px){.column-margin.column-container .callout-margin-content:first-child{margin-top:4.5em}.column-margin.column-container .callout-margin-content-simple:first-child{margin-top:3.5em}}.margin-caption>*{padding-top:.5em;padding-bottom:.5em}@media(max-width: 767.98px){.quarto-layout-row{flex-direction:column}}.nav-tabs .nav-item{margin-top:1px;cursor:pointer}.tab-content{margin-top:0px;border-left:#ecf0f1 1px solid;border-right:#ecf0f1 1px solid;border-bottom:#ecf0f1 1px solid;margin-left:0;padding:1em;margin-bottom:1em}@media(max-width: 767.98px){.layout-sidebar{margin-left:0;margin-right:0}}.panel-sidebar,.panel-sidebar .form-control,.panel-input,.panel-input .form-control,.selectize-dropdown{font-size:.9rem}.panel-sidebar .form-control,.panel-input .form-control{padding-top:.1rem}.tab-pane div.sourceCode{margin-top:0px}.tab-pane>p{padding-top:0}.tab-pane>p:nth-child(1){padding-top:0}.tab-pane>p:last-child{margin-bottom:0}.tab-pane>pre:last-child{margin-bottom:0}.tab-content>.tab-pane:not(.active){display:none !important}div.sourceCode{background-color:rgba(236,240,241,.65);border:1px solid rgba(236,240,241,.65);border-radius:.25rem}pre.sourceCode{background-color:rgba(0,0,0,0)}pre.sourceCode{border:none;font-size:.875em;overflow-y:visible !important;padding:.4em}div.sourceCode{overflow-y:hidden}.callout div.sourceCode{margin-left:initial}.blockquote{font-size:inherit;padding-left:1rem;padding-right:1.5rem;color:hsl(210,10.8108108108%,39.5098039216%)}.blockquote h1:first-child,.blockquote .h1:first-child,.blockquote h2:first-child,.blockquote .h2:first-child,.blockquote h3:first-child,.blockquote .h3:first-child,.blockquote h4:first-child,.blockquote .h4:first-child,.blockquote h5:first-child,.blockquote .h5:first-child{margin-top:0}pre{background-color:initial;padding:initial;border:initial}p code.sourceCode,li code.sourceCode,td code.sourceCode{background-color:rgba(236,240,241,.65)}p pre code:not(.sourceCode),li pre code:not(.sourceCode),pre code:not(.sourceCode){background-color:initial}p code:not(.sourceCode),li code:not(.sourceCode),td code:not(.sourceCode){background-color:rgba(236,240,241,.65);padding:.2em}nav p code:not(.sourceCode),nav li code:not(.sourceCode),nav td code:not(.sourceCode){background-color:rgba(0,0,0,0);padding:0}td code:not(.sourceCode){white-space:pre-wrap}#quarto-embedded-source-code-modal>.modal-dialog{max-width:1000px;padding-left:1.75rem;padding-right:1.75rem}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body{padding:0}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-body div.sourceCode{margin:0;padding:.2rem .2rem;border-radius:0px;border:none}#quarto-embedded-source-code-modal>.modal-dialog>.modal-content>.modal-header{padding:.7rem}.code-tools-button{font-size:1rem;padding:.15rem .15rem;margin-left:5px;color:#6c757d;background-color:rgba(0,0,0,0);transition:initial;cursor:pointer}.code-tools-button>.bi::before{display:inline-block;height:1rem;width:1rem;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml, ');background-repeat:no-repeat;background-size:1rem 1rem}.code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml, ')}#quarto-embedded-source-code-modal .code-copy-button>.bi::before{background-image:url('data:image/svg+xml, ')}#quarto-embedded-source-code-modal .code-copy-button-checked>.bi::before{background-image:url('data:image/svg+xml, ')}.sidebar{will-change:top;transition:top 200ms linear;position:sticky;overflow-y:auto;padding-top:1.2em;max-height:100vh}.sidebar.toc-left,.sidebar.margin-sidebar{top:0px;padding-top:1em}.sidebar.quarto-banner-title-block-sidebar>*{padding-top:1.65em}figure .quarto-notebook-link{margin-top:.5em}.quarto-notebook-link{font-size:.75em;color:#6c757d;margin-bottom:1em;text-decoration:none;display:block}.quarto-notebook-link:hover{text-decoration:underline;color:#18bc9c}.quarto-notebook-link::before{display:inline-block;height:.75rem;width:.75rem;margin-bottom:0em;margin-right:.25em;content:"";vertical-align:-0.125em;background-image:url('data:image/svg+xml, ');background-repeat:no-repeat;background-size:.75rem .75rem}.toc-actions i.bi,.quarto-code-links i.bi,.quarto-other-links i.bi,.quarto-alternate-notebooks i.bi,.quarto-alternate-formats i.bi{margin-right:.4em;font-size:.8rem}.quarto-other-links-text-target .quarto-code-links i.bi,.quarto-other-links-text-target .quarto-other-links i.bi{margin-right:.2em}.quarto-other-formats-text-target .quarto-alternate-formats i.bi{margin-right:.1em}.toc-actions i.bi.empty,.quarto-code-links i.bi.empty,.quarto-other-links i.bi.empty,.quarto-alternate-notebooks i.bi.empty,.quarto-alternate-formats i.bi.empty{padding-left:1em}.quarto-notebook h2,.quarto-notebook .h2{border-bottom:none}.quarto-notebook .cell-container{display:flex}.quarto-notebook .cell-container .cell{flex-grow:4}.quarto-notebook .cell-container .cell-decorator{padding-top:1.5em;padding-right:1em;text-align:right}.quarto-notebook .cell-container.code-fold .cell-decorator{padding-top:3em}.quarto-notebook .cell-code code{white-space:pre-wrap}.quarto-notebook .cell .cell-output-stderr pre code,.quarto-notebook .cell .cell-output-stdout pre code{white-space:pre-wrap;overflow-wrap:anywhere}.toc-actions,.quarto-alternate-formats,.quarto-other-links,.quarto-code-links,.quarto-alternate-notebooks{padding-left:0em}.sidebar .toc-actions a,.sidebar .quarto-alternate-formats a,.sidebar .quarto-other-links a,.sidebar .quarto-code-links a,.sidebar .quarto-alternate-notebooks a,.sidebar nav[role=doc-toc] a{text-decoration:none}.sidebar .toc-actions a:hover,.sidebar .quarto-other-links a:hover,.sidebar .quarto-code-links a:hover,.sidebar .quarto-alternate-formats a:hover,.sidebar .quarto-alternate-notebooks a:hover{color:#18bc9c}.sidebar .toc-actions h2,.sidebar .toc-actions .h2,.sidebar .quarto-code-links h2,.sidebar .quarto-code-links .h2,.sidebar .quarto-other-links h2,.sidebar .quarto-other-links .h2,.sidebar .quarto-alternate-notebooks h2,.sidebar .quarto-alternate-notebooks .h2,.sidebar .quarto-alternate-formats h2,.sidebar .quarto-alternate-formats .h2,.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-weight:500;margin-bottom:.2rem;margin-top:.3rem;font-family:inherit;border-bottom:0;padding-bottom:0;padding-top:0px}.sidebar .toc-actions>h2,.sidebar .toc-actions>.h2,.sidebar .quarto-code-links>h2,.sidebar .quarto-code-links>.h2,.sidebar .quarto-other-links>h2,.sidebar .quarto-other-links>.h2,.sidebar .quarto-alternate-notebooks>h2,.sidebar .quarto-alternate-notebooks>.h2,.sidebar .quarto-alternate-formats>h2,.sidebar .quarto-alternate-formats>.h2{font-size:.8rem}.sidebar nav[role=doc-toc]>h2,.sidebar nav[role=doc-toc]>.h2{font-size:.875rem}.sidebar nav[role=doc-toc]>ul a{border-left:1px solid #ecf0f1;padding-left:.6rem}.sidebar .toc-actions h2>ul a,.sidebar .toc-actions .h2>ul a,.sidebar .quarto-code-links h2>ul a,.sidebar .quarto-code-links .h2>ul a,.sidebar .quarto-other-links h2>ul a,.sidebar .quarto-other-links .h2>ul a,.sidebar .quarto-alternate-notebooks h2>ul a,.sidebar .quarto-alternate-notebooks .h2>ul a,.sidebar .quarto-alternate-formats h2>ul a,.sidebar .quarto-alternate-formats .h2>ul a{border-left:none;padding-left:.6rem}.sidebar .toc-actions ul a:empty,.sidebar .quarto-code-links ul a:empty,.sidebar .quarto-other-links ul a:empty,.sidebar .quarto-alternate-notebooks ul a:empty,.sidebar .quarto-alternate-formats ul a:empty,.sidebar nav[role=doc-toc]>ul a:empty{display:none}.sidebar .toc-actions ul,.sidebar .quarto-code-links ul,.sidebar .quarto-other-links ul,.sidebar .quarto-alternate-notebooks ul,.sidebar .quarto-alternate-formats ul{padding-left:0;list-style:none}.sidebar nav[role=doc-toc] ul{list-style:none;padding-left:0;list-style:none}.sidebar nav[role=doc-toc]>ul{margin-left:.45em}.quarto-margin-sidebar nav[role=doc-toc]{padding-left:.5em}.sidebar .toc-actions>ul,.sidebar .quarto-code-links>ul,.sidebar .quarto-other-links>ul,.sidebar .quarto-alternate-notebooks>ul,.sidebar .quarto-alternate-formats>ul{font-size:.8rem}.sidebar nav[role=doc-toc]>ul{font-size:.875rem}.sidebar .toc-actions ul li a,.sidebar .quarto-code-links ul li a,.sidebar .quarto-other-links ul li a,.sidebar .quarto-alternate-notebooks ul li a,.sidebar .quarto-alternate-formats ul li a,.sidebar nav[role=doc-toc]>ul li a{line-height:1.1rem;padding-bottom:.2rem;padding-top:.2rem;color:inherit}.sidebar nav[role=doc-toc] ul>li>ul>li>a{padding-left:1.2em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>a{padding-left:2.4em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>a{padding-left:3.6em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:4.8em}.sidebar nav[role=doc-toc] ul>li>ul>li>ul>li>ul>li>ul>li>ul>li>a{padding-left:6em}.sidebar nav[role=doc-toc] ul>li>a.active,.sidebar nav[role=doc-toc] ul>li>ul>li>a.active{border-left:1px solid #18bc9c;color:#18bc9c !important}.sidebar nav[role=doc-toc] ul>li>a:hover,.sidebar nav[role=doc-toc] ul>li>ul>li>a:hover{color:#18bc9c !important}kbd,.kbd{color:#212529;background-color:#f8f9fa;border:1px solid;border-radius:5px;border-color:#dee2e6}.quarto-appendix-contents div.hanging-indent{margin-left:0em}.quarto-appendix-contents div.hanging-indent div.csl-entry{margin-left:1em;text-indent:-1em}.citation a,.footnote-ref{text-decoration:none}.footnotes ol{padding-left:1em}.tippy-content>*{margin-bottom:.7em}.tippy-content>*:last-child{margin-bottom:0}.callout{margin-top:1.25rem;margin-bottom:1.25rem;border-radius:.25rem;overflow-wrap:break-word}.callout .callout-title-container{overflow-wrap:anywhere}.callout.callout-style-simple{padding:.4em .7em;border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout.callout-style-default{border-left:5px solid;border-right:1px solid #dee2e6;border-top:1px solid #dee2e6;border-bottom:1px solid #dee2e6}.callout .callout-body-container{flex-grow:1}.callout.callout-style-simple .callout-body{font-size:.9rem;font-weight:400;margin-bottom:-0.4em;margin-top:.5em}.callout.callout-style-default .callout-body{font-size:.9rem;font-weight:400}.callout:not(.no-icon).callout-titled.callout-style-simple .callout-body{padding-left:1.6em}.callout.callout-titled>.callout-header{padding-top:.2em;margin-bottom:-0.2em}.callout.callout-empty-content>.callout-header{margin-bottom:0em;border-bottom-right-radius:calc(0.25rem + -1px)}.callout>.callout-header.collapsed{border-bottom-right-radius:calc(0.25rem + -1px)}.callout.callout-style-simple>div.callout-header{border-bottom:none;font-size:.9rem;font-weight:600;opacity:75%}.callout.callout-style-default>div.callout-header{border-bottom:none;font-weight:600;opacity:85%;font-size:.9rem;padding-left:.5em;padding-right:.5em;border-top-right-radius:calc(0.25rem + -1px)}.callout.callout-style-default .callout-body{padding-left:.5em;padding-right:.5em}.callout.callout-style-default .callout-body>:first-child{padding-top:.5rem;margin-top:0}.callout>div.callout-header[data-bs-toggle=collapse]{cursor:pointer}.callout.callout-style-default .callout-header[aria-expanded=false],.callout.callout-style-default .callout-header[aria-expanded=true]{padding-top:0px;margin-bottom:0px;align-items:center}.callout.callout-titled .callout-body>:last-child:not(.sourceCode),.callout.callout-titled .callout-body>div>:last-child:not(.sourceCode){padding-bottom:.5rem;margin-bottom:0}.callout:not(.callout-titled) .callout-body>:first-child,.callout:not(.callout-titled) .callout-body>div>:first-child{margin-top:.25rem}.callout:not(.callout-titled) .callout-body>:last-child,.callout:not(.callout-titled) .callout-body>div>:last-child{margin-bottom:.2rem}.callout.callout-style-simple:not(.callout-titled) .callout-body>:last-child,.callout.callout-style-simple:not(.callout-titled) .callout-body>div>:last-child{margin-bottom:.5em}.callout.callout-style-simple .callout-icon::before,.callout.callout-style-simple .callout-toggle::before{height:1rem;width:1rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.callout.callout-style-default .callout-icon::before,.callout.callout-style-default .callout-toggle::before{height:.9rem;width:.9rem;display:inline-block;content:"";background-repeat:no-repeat;background-size:.9rem .9rem}.callout.callout-style-default .callout-toggle::before{margin-top:5px}.callout .callout-btn-toggle .callout-toggle::before{transition:transform .2s linear}.callout .callout-header[aria-expanded=false] .callout-toggle::before{transform:rotate(-90deg)}.callout .callout-header[aria-expanded=true] .callout-toggle::before{transform:none}.callout.callout-style-simple:not(.no-icon) div.callout-icon-container{padding-top:.2em;padding-right:.55em}.callout.callout-style-default:not(.no-icon) div.callout-icon-container{padding-top:.1em;padding-right:.35em}.callout.callout-style-default:not(.no-icon) div.callout-title-container{margin-top:-1px}.callout.callout-style-default.callout-caution:not(.no-icon) div.callout-icon-container{padding-top:.3em;padding-right:.35em}.callout>.callout-body>.callout-icon-container>.no-icon,.callout>.callout-header>.callout-icon-container>.no-icon{display:none}div.callout.callout{border-left-color:#6c757d}div.callout.callout-style-default>.callout-header{background-color:#6c757d}div.callout-note.callout{border-left-color:#2c3e50}div.callout-note.callout-style-default>.callout-header{background-color:rgb(233.9,235.7,237.5)}div.callout-note:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-note.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-note .callout-toggle::before{background-image:url('data:image/svg+xml, ')}div.callout-tip.callout{border-left-color:#18bc9c}div.callout-tip.callout-style-default>.callout-header{background-color:rgb(231.9,248.3,245.1)}div.callout-tip:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-tip.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-tip .callout-toggle::before{background-image:url('data:image/svg+xml, ')}div.callout-warning.callout{border-left-color:#f39c12}div.callout-warning.callout-style-default>.callout-header{background-color:rgb(253.8,245.1,231.3)}div.callout-warning:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-warning.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-warning .callout-toggle::before{background-image:url('data:image/svg+xml, ')}div.callout-caution.callout{border-left-color:#fd7e14}div.callout-caution.callout-style-default>.callout-header{background-color:rgb(254.8,242.1,231.5)}div.callout-caution:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-caution.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-caution .callout-toggle::before{background-image:url('data:image/svg+xml, ')}div.callout-important.callout{border-left-color:#e74c3c}div.callout-important.callout-style-default>.callout-header{background-color:rgb(252.6,237.1,235.5)}div.callout-important:not(.callout-titled) .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-important.callout-titled .callout-icon::before{background-image:url('data:image/svg+xml, ');}div.callout-important .callout-toggle::before{background-image:url('data:image/svg+xml, ')}.quarto-toggle-container{display:flex;align-items:center}.quarto-reader-toggle .bi::before,.quarto-color-scheme-toggle .bi::before{display:inline-block;height:1rem;width:1rem;content:"";background-repeat:no-repeat;background-size:1rem 1rem}.sidebar-navigation{padding-left:20px}.navbar{background-color:#2c3e50;color:rgb(204.36,208.68,213)}.navbar .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml, ')}.navbar .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml, ')}.sidebar-navigation .quarto-color-scheme-toggle:not(.alternate) .bi::before{background-image:url('data:image/svg+xml, ')}.sidebar-navigation .quarto-color-scheme-toggle.alternate .bi::before{background-image:url('data:image/svg+xml, ')}.quarto-sidebar-toggle{border-color:#dee2e6;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem;border-style:solid;border-width:1px;overflow:hidden;border-top-width:0px;padding-top:0px !important}.quarto-sidebar-toggle-title{cursor:pointer;padding-bottom:2px;margin-left:.25em;text-align:center;font-weight:400;font-size:.775em}#quarto-content .quarto-sidebar-toggle{background:hsl(0,0%,98%)}#quarto-content .quarto-sidebar-toggle-title{color:#212529}.quarto-sidebar-toggle-icon{color:#dee2e6;margin-right:.5em;float:right;transition:transform .2s ease}.quarto-sidebar-toggle-icon::before{padding-top:5px}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-icon{transform:rotate(-180deg)}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-title{border-bottom:solid #dee2e6 1px}.quarto-sidebar-toggle-contents{background-color:#fff;padding-right:10px;padding-left:10px;margin-top:0px !important;transition:max-height .5s ease}.quarto-sidebar-toggle.expanded .quarto-sidebar-toggle-contents{padding-top:1em;padding-bottom:10px}@media(max-width: 767.98px){.sidebar-menu-container{padding-bottom:5em}}.quarto-sidebar-toggle:not(.expanded) .quarto-sidebar-toggle-contents{padding-top:0px !important;padding-bottom:0px}nav[role=doc-toc]{z-index:1020}#quarto-sidebar>*,nav[role=doc-toc]>*{transition:opacity .1s ease,border .1s ease}#quarto-sidebar.slow>*,nav[role=doc-toc].slow>*{transition:opacity .4s ease,border .4s ease}.quarto-color-scheme-toggle:not(.alternate).top-right .bi::before{background-image:url('data:image/svg+xml, ')}.quarto-color-scheme-toggle.alternate.top-right .bi::before{background-image:url('data:image/svg+xml, ')}#quarto-appendix.default{border-top:1px solid #dee2e6}#quarto-appendix.default{background-color:#fff;padding-top:1.5em;margin-top:2em;z-index:998}#quarto-appendix.default .quarto-appendix-heading{margin-top:0;line-height:1.4em;font-weight:600;opacity:.9;border-bottom:none;margin-bottom:0}#quarto-appendix.default .footnotes ol,#quarto-appendix.default .footnotes ol li>p:last-of-type,#quarto-appendix.default .quarto-appendix-contents>p:last-of-type{margin-bottom:0}#quarto-appendix.default .footnotes ol{margin-left:.5em}#quarto-appendix.default .quarto-appendix-secondary-label{margin-bottom:.4em}#quarto-appendix.default .quarto-appendix-bibtex{font-size:.7em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-bibtex code.sourceCode{white-space:pre-wrap}#quarto-appendix.default .quarto-appendix-citeas{font-size:.9em;padding:1em;border:solid 1px #dee2e6;margin-bottom:1em}#quarto-appendix.default .quarto-appendix-heading{font-size:1em !important}#quarto-appendix.default *[role=doc-endnotes]>ol,#quarto-appendix.default .quarto-appendix-contents>*:not(h2):not(.h2){font-size:.9em}#quarto-appendix.default section{padding-bottom:1.5em}#quarto-appendix.default section *[role=doc-endnotes],#quarto-appendix.default section>*:not(a){opacity:.9;word-wrap:break-word}.btn.btn-quarto,div.cell-output-display .btn-quarto{--bs-btn-color: rgb(253.53, 253.62, 253.7);--bs-btn-bg: #6c757d;--bs-btn-border-color: #6c757d;--bs-btn-hover-color: rgb(253.53, 253.62, 253.7);--bs-btn-hover-bg: rgb(130.05, 137.7, 144.5);--bs-btn-hover-border-color: rgb(122.7, 130.8, 138);--bs-btn-focus-shadow-rgb: 130, 137, 144;--bs-btn-active-color: #fff;--bs-btn-active-bg: rgb(137.4, 144.6, 151);--bs-btn-active-border-color: rgb(122.7, 130.8, 138);--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color: #fff;--bs-btn-disabled-bg: #6c757d;--bs-btn-disabled-border-color: #6c757d}nav.quarto-secondary-nav.color-navbar{background-color:#2c3e50;color:rgb(204.36,208.68,213)}nav.quarto-secondary-nav.color-navbar h1,nav.quarto-secondary-nav.color-navbar .h1,nav.quarto-secondary-nav.color-navbar .quarto-btn-toggle{color:rgb(204.36,208.68,213)}@media(max-width: 991.98px){body.nav-sidebar .quarto-title-banner{margin-bottom:0;padding-bottom:1em}body.nav-sidebar #title-block-header{margin-block-end:0}}p.subtitle{margin-top:.25em;margin-bottom:.5em}code a:any-link{color:inherit;text-decoration-color:#6c757d}/*! light */div.observablehq table thead tr th{background-color:var(--bs-body-bg)}input,button,select,optgroup,textarea{background-color:var(--bs-body-bg)}.code-annotated .code-copy-button{margin-right:1.25em;margin-top:0;padding-bottom:0;padding-top:3px}.code-annotation-gutter-bg{background-color:#fff}.code-annotation-gutter{background-color:rgba(236,240,241,.65)}.code-annotation-gutter,.code-annotation-gutter-bg{height:100%;width:calc(20px + .5em);position:absolute;top:0;right:0}dl.code-annotation-container-grid dt{margin-right:1em;margin-top:.25rem}dl.code-annotation-container-grid dt{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;color:rgb(55.7432432432,62.5,69.2567567568);border:solid rgb(55.7432432432,62.5,69.2567567568) 1px;border-radius:50%;height:22px;width:22px;line-height:22px;font-size:11px;text-align:center;vertical-align:middle;text-decoration:none}dl.code-annotation-container-grid dt[data-target-cell]{cursor:pointer}dl.code-annotation-container-grid dt[data-target-cell].code-annotation-active{color:#fff;border:solid #aaa 1px;background-color:#aaa}pre.code-annotation-code{padding-top:0;padding-bottom:0}pre.code-annotation-code code{z-index:3}#code-annotation-line-highlight-gutter{width:100%;border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}#code-annotation-line-highlight{margin-left:-4em;width:calc(100% + 4em);border-top:solid rgba(170,170,170,.2666666667) 1px;border-bottom:solid rgba(170,170,170,.2666666667) 1px;z-index:2;background-color:rgba(170,170,170,.1333333333)}code.sourceCode .code-annotation-anchor.code-annotation-active{background-color:var(--quarto-hl-normal-color, #aaaaaa);border:solid var(--quarto-hl-normal-color, #aaaaaa) 1px;color:#ecf0f1;font-weight:bolder}code.sourceCode .code-annotation-anchor{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;color:var(--quarto-hl-co-color);border:solid var(--quarto-hl-co-color) 1px;border-radius:50%;height:18px;width:18px;font-size:9px;margin-top:2px}code.sourceCode button.code-annotation-anchor{padding:2px;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none}code.sourceCode a.code-annotation-anchor{line-height:18px;text-align:center;vertical-align:middle;cursor:default;text-decoration:none}@media print{.page-columns .column-screen-inset{grid-column:page-start-inset/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset table{background:#fff}.page-columns .column-screen-inset-left{grid-column:page-start-inset/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-inset-left table{background:#fff}.page-columns .column-screen-inset-right{grid-column:body-content-start/page-end-inset;z-index:998;opacity:.999}.page-columns .column-screen-inset-right table{background:#fff}.page-columns .column-screen{grid-column:page-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen table{background:#fff}.page-columns .column-screen-left{grid-column:page-start/body-content-end;z-index:998;opacity:.999}.page-columns .column-screen-left table{background:#fff}.page-columns .column-screen-right{grid-column:body-content-start/page-end;z-index:998;opacity:.999}.page-columns .column-screen-right table{background:#fff}.page-columns .column-screen-inset-shaded{grid-column:page-start-inset/page-end-inset;padding:1em;background:#ecf0f1;z-index:998;opacity:.999;margin-bottom:1em}}.quarto-video{margin-bottom:1em}.table{border-top:1px solid rgb(210.6,211.4,212.2);border-bottom:1px solid rgb(210.6,211.4,212.2)}.table>thead{border-top-width:0;border-bottom:1px solid #909294}.table a{word-break:break-word}.table>:not(caption)>*>*{background-color:unset;color:unset}#quarto-document-content .crosstalk-input .checkbox input[type=checkbox],#quarto-document-content .crosstalk-input .checkbox-inline input[type=checkbox]{position:unset;margin-top:unset;margin-left:unset}#quarto-document-content .row{margin-left:unset;margin-right:unset}.quarto-xref{white-space:nowrap}#quarto-draft-alert{margin-top:0px;margin-bottom:0px;padding:.3em;text-align:center;font-size:.9em}#quarto-draft-alert i{margin-right:.3em}#quarto-back-to-top{z-index:1000}pre{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:0.875em;font-weight:400}pre code{font-family:inherit;font-size:inherit;font-weight:inherit}code{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:0.875em;font-weight:400}a{background-color:rgba(0,0,0,0);font-weight:400;text-decoration:underline}.screen-reader-only{position:absolute;clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;width:1px}a.external:after{content:"";background-image:url('data:image/svg+xml, ');background-size:contain;background-repeat:no-repeat;background-position:center center;margin-left:.2em;padding-right:.75em}div.sourceCode code a.external:after{content:none}a.external:after:hover{cursor:pointer}.quarto-ext-icon{display:inline-block;font-size:.75em;padding-left:.3em}.code-with-filename .code-with-filename-file{margin-bottom:0;padding-bottom:2px;padding-top:2px;padding-left:.7em;border:var(--quarto-border-width) solid var(--quarto-border-color);border-radius:var(--quarto-border-radius);border-bottom:0;border-bottom-left-radius:0%;border-bottom-right-radius:0%}.code-with-filename div.sourceCode,.reveal .code-with-filename div.sourceCode{margin-top:0;border-top-left-radius:0%;border-top-right-radius:0%}.code-with-filename .code-with-filename-file pre{margin-bottom:0}.code-with-filename .code-with-filename-file{background-color:rgba(219,219,219,.8)}.quarto-dark .code-with-filename .code-with-filename-file{background-color:#555}.code-with-filename .code-with-filename-file strong{font-weight:400}.quarto-title-banner{margin-bottom:1em;color:rgb(204.36,208.68,213);background:#2c3e50}.quarto-title-banner a{color:rgb(204.36,208.68,213)}.quarto-title-banner h1,.quarto-title-banner .h1,.quarto-title-banner h2,.quarto-title-banner .h2{color:rgb(204.36,208.68,213)}.quarto-title-banner .code-tools-button{color:hsl(210,9.3264248705%,61.8352941176%)}.quarto-title-banner .code-tools-button:hover{color:rgb(204.36,208.68,213)}.quarto-title-banner .code-tools-button>.bi::before{background-image:url('data:image/svg+xml, ')}.quarto-title-banner .code-tools-button:hover>.bi::before{background-image:url('data:image/svg+xml, ')}.quarto-title-banner .quarto-title .title{font-weight:600}.quarto-title-banner .quarto-categories{margin-top:.75em}@media(min-width: 992px){.quarto-title-banner{padding-top:2.5em;padding-bottom:2.5em}}@media(max-width: 991.98px){.quarto-title-banner{padding-top:1em;padding-bottom:1em}}@media(max-width: 767.98px){body.hypothesis-enabled #title-block-header>*{padding-right:20px}}main.quarto-banner-title-block>section:first-child>h2,main.quarto-banner-title-block>section:first-child>.h2,main.quarto-banner-title-block>section:first-child>h3,main.quarto-banner-title-block>section:first-child>.h3,main.quarto-banner-title-block>section:first-child>h4,main.quarto-banner-title-block>section:first-child>.h4{margin-top:0}.quarto-title .quarto-categories{display:flex;flex-wrap:wrap;row-gap:.5em;column-gap:.4em;padding-bottom:.5em;margin-top:.75em}.quarto-title .quarto-categories .quarto-category{padding:.25em .75em;font-size:.65em;text-transform:uppercase;border:solid 1px;border-radius:.25rem;opacity:.6}.quarto-title .quarto-categories .quarto-category a{color:inherit}.quarto-title-meta-container{display:grid;grid-template-columns:1fr auto}.quarto-title-meta-column-end{display:flex;flex-direction:column;padding-left:1em}.quarto-title-meta-column-end a .bi{margin-right:.3em}#title-block-header.quarto-title-block.default .quarto-title-meta{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:1em}#title-block-header.quarto-title-block.default .quarto-title .title{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-author-orcid img{margin-top:-0.2em;height:.8em;width:.8em}#title-block-header.quarto-title-block.default .quarto-title-author-email{opacity:.7}#title-block-header.quarto-title-block.default .quarto-description p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p,#title-block-header.quarto-title-block.default .quarto-title-authors p,#title-block-header.quarto-title-block.default .quarto-title-affiliations p{margin-bottom:.1em}#title-block-header.quarto-title-block.default .quarto-title-meta-heading{text-transform:uppercase;margin-top:1em;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-contents{font-size:.9em}#title-block-header.quarto-title-block.default .quarto-title-meta-contents p.affiliation:last-of-type{margin-bottom:.1em}#title-block-header.quarto-title-block.default p.affiliation{margin-bottom:.1em}#title-block-header.quarto-title-block.default .keywords,#title-block-header.quarto-title-block.default .description,#title-block-header.quarto-title-block.default .abstract{margin-top:0}#title-block-header.quarto-title-block.default .keywords>p,#title-block-header.quarto-title-block.default .description>p,#title-block-header.quarto-title-block.default .abstract>p{font-size:.9em}#title-block-header.quarto-title-block.default .keywords>p:last-of-type,#title-block-header.quarto-title-block.default .description>p:last-of-type,#title-block-header.quarto-title-block.default .abstract>p:last-of-type{margin-bottom:0}#title-block-header.quarto-title-block.default .keywords .block-title,#title-block-header.quarto-title-block.default .description .block-title,#title-block-header.quarto-title-block.default .abstract .block-title{margin-top:1em;text-transform:uppercase;font-size:.8em;opacity:.8;font-weight:400}#title-block-header.quarto-title-block.default .quarto-title-meta-author{display:grid;grid-template-columns:minmax(max-content, 1fr) 1fr;grid-column-gap:1em}.quarto-title-tools-only{display:flex;justify-content:right}.bg-primary .navbar-nav .show>.nav-link,.bg-primary .navbar-nav .nav-link.active,.bg-primary .navbar-nav .nav-link:hover,.bg-primary .navbar-nav .nav-link:focus{color:#18bc9c !important}.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover,.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover{color:#2c3e50}.pagination a:hover{text-decoration:none}.badge.bg-light{color:#7b8a8b}.alert{color:#fff;border:none}.alert a,.alert .alert-link{color:#fff;text-decoration:underline}.alert-default{background-color:#6c757d}.alert-primary{background-color:#2c3e50}.alert-secondary{background-color:#6c757d}.alert-success{background-color:#18bc9c}.alert-info{background-color:#3498db}.alert-warning{background-color:#f39c12}.alert-danger{background-color:#e74c3c}.alert-light{background-color:#ecf0f1}.alert-dark{background-color:#7b8a8b}.alert-light,.alert-light a,.alert-light .alert-link{color:#212529}.modal .btn-close,.toast .btn-close,.offcanvas .btn-close{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")}:root{--quarto-scss-export-gray-300: #dee2e6;--quarto-scss-export-gray-500: #adb5bd;--quarto-scss-export-gray-600: #6c757d;--quarto-scss-export-gray-800: #343a40;--quarto-scss-export-card-cap-bg: rgba(52, 58, 64, 0.25);--quarto-scss-export-border-color: #dee2e6;--quarto-scss-export-text-muted: #6c757d;--quarto-scss-export-white: #fff;--quarto-scss-export-gray-100: #f8f9fa;--quarto-scss-export-gray-200: #ecf0f1;--quarto-scss-export-gray-400: #ced4da;--quarto-scss-export-gray-700: #7b8a8b;--quarto-scss-export-gray-900: #212529;--quarto-scss-export-black: #000;--quarto-scss-export-blue: #2c3e50;--quarto-scss-export-indigo: #6610f2;--quarto-scss-export-purple: #6f42c1;--quarto-scss-export-pink: #e83e8c;--quarto-scss-export-red: #e74c3c;--quarto-scss-export-orange: #fd7e14;--quarto-scss-export-yellow: #f39c12;--quarto-scss-export-green: #18bc9c;--quarto-scss-export-teal: #20c997;--quarto-scss-export-cyan: #3498db;--quarto-scss-export-primary: #2c3e50;--quarto-scss-export-secondary: #6c757d;--quarto-scss-export-success: #18bc9c;--quarto-scss-export-info: #3498db;--quarto-scss-export-warning: #f39c12;--quarto-scss-export-danger: #e74c3c;--quarto-scss-export-light: #ecf0f1;--quarto-scss-export-dark: #7b8a8b;--quarto-scss-export-link-color: #18bc9c;--quarto-scss-export-dropdown-link-color: #7b8a8b;--quarto-scss-export-dropdown-link-hover-color: #fff;--quarto-scss-export-dropdown-link-hover-bg: #2c3e50;--quarto-scss-export-nav-link-disabled-color: #6c757d;--quarto-scss-export-nav-tabs-border-color: #ecf0f1;--quarto-scss-export-pagination-color: #fff;--quarto-scss-export-pagination-bg: #18bc9c;--quarto-scss-export-pagination-border-color: transparent;--quarto-scss-export-pagination-hover-color: #fff;--quarto-scss-export-pagination-hover-bg: rgb(15.3396226415, 120.1603773585, 99.7075471698);--quarto-scss-export-pagination-hover-border-color: transparent;--quarto-scss-export-pagination-active-bg: rgb(15.3396226415, 120.1603773585, 99.7075471698);--quarto-scss-export-pagination-active-border-color: transparent;--quarto-scss-export-pagination-disabled-color: #ecf0f1;--quarto-scss-export-pagination-disabled-bg: rgb(58.5754716981, 229.9245283019, 196.4905660377);--quarto-scss-export-pagination-disabled-border-color: transparent;--quarto-scss-export-list-group-hover-bg: #ecf0f1;--quarto-scss-export-list-group-disabled-bg: #ecf0f1;--quarto-scss-export-btn-close-color: #fff;--quarto-scss-export-title-banner-color: ;--quarto-scss-export-title-banner-bg: ;--quarto-scss-export-btn-code-copy-color: #5E5E5E;--quarto-scss-export-btn-code-copy-color-active: #4758AB;--quarto-scss-export-sidebar-bg: #fff;--quarto-scss-export-link-color-bg: transparent;--quarto-scss-export-code-color: #7d12ba;--quarto-scss-export-code-bg: #f8f9fa;--quarto-scss-export-toc-color: #18bc9c;--quarto-scss-export-toc-active-border: #18bc9c;--quarto-scss-export-toc-inactive-border: #ecf0f1;--quarto-scss-export-navbar-default: #2c3e50;--quarto-scss-export-navbar-hl-override: false;--quarto-scss-export-navbar-bg: #2c3e50;--quarto-scss-export-btn-bg: #6c757d;--quarto-scss-export-btn-fg: rgb(253.53, 253.62, 253.7);--quarto-scss-export-body-contrast-bg: #fff;--quarto-scss-export-body-contrast-color: #212529;--quarto-scss-export-navbar-fg: rgb(204.36, 208.68, 213);--quarto-scss-export-navbar-hl: #fff;--quarto-scss-export-navbar-brand: rgb(204.36, 208.68, 213);--quarto-scss-export-navbar-brand-hl: #fff;--quarto-scss-export-navbar-toggler-border-color: rgba(204.36, 208.68, 213, 0);--quarto-scss-export-navbar-hover-color: rgba(255, 255, 255, 0.8);--quarto-scss-export-navbar-disabled-color: rgba(204.36, 208.68, 213, 0.75);--quarto-scss-export-sidebar-fg: rgb(89.25, 89.25, 89.25);--quarto-scss-export-title-block-color: #212529;--quarto-scss-export-title-block-contast-color: #fff;--quarto-scss-export-footer-bg: #fff;--quarto-scss-export-footer-fg: rgb(117.3, 117.3, 117.3);--quarto-scss-export-popover-bg: #fff;--quarto-scss-export-input-bg: #fff;--quarto-scss-export-input-border-color: #dee2e6;--quarto-scss-export-code-annotation-higlight-color: rgba(170, 170, 170, 0.2666666667);--quarto-scss-export-code-annotation-higlight-bg: rgba(170, 170, 170, 0.1333333333);--quarto-scss-export-table-group-separator-color: #909294;--quarto-scss-export-table-group-separator-color-lighter: rgb(210.6, 211.4, 212.2);--quarto-scss-export-link-decoration: underline;--quarto-scss-export-table-border-color: #dee2e6;--quarto-scss-export-sidebar-glass-bg: rgba(102, 102, 102, 0.4);--quarto-scss-export-color-contrast-dark: #000;--quarto-scss-export-color-contrast-light: #fff;--quarto-scss-export-blue-100: rgb(212.8, 216.4, 220);--quarto-scss-export-blue-200: rgb(170.6, 177.8, 185);--quarto-scss-export-blue-300: rgb(128.4, 139.2, 150);--quarto-scss-export-blue-400: rgb(86.2, 100.6, 115);--quarto-scss-export-blue-500: #2c3e50;--quarto-scss-export-blue-600: rgb(35.2, 49.6, 64);--quarto-scss-export-blue-700: rgb(26.4, 37.2, 48);--quarto-scss-export-blue-800: rgb(17.6, 24.8, 32);--quarto-scss-export-blue-900: rgb(8.8, 12.4, 16);--quarto-scss-export-indigo-100: rgb(224.4, 207.2, 252.4);--quarto-scss-export-indigo-200: rgb(193.8, 159.4, 249.8);--quarto-scss-export-indigo-300: rgb(163.2, 111.6, 247.2);--quarto-scss-export-indigo-400: rgb(132.6, 63.8, 244.6);--quarto-scss-export-indigo-500: #6610f2;--quarto-scss-export-indigo-600: rgb(81.6, 12.8, 193.6);--quarto-scss-export-indigo-700: rgb(61.2, 9.6, 145.2);--quarto-scss-export-indigo-800: rgb(40.8, 6.4, 96.8);--quarto-scss-export-indigo-900: rgb(20.4, 3.2, 48.4);--quarto-scss-export-purple-100: rgb(226.2, 217.2, 242.6);--quarto-scss-export-purple-200: rgb(197.4, 179.4, 230.2);--quarto-scss-export-purple-300: rgb(168.6, 141.6, 217.8);--quarto-scss-export-purple-400: rgb(139.8, 103.8, 205.4);--quarto-scss-export-purple-500: #6f42c1;--quarto-scss-export-purple-600: rgb(88.8, 52.8, 154.4);--quarto-scss-export-purple-700: rgb(66.6, 39.6, 115.8);--quarto-scss-export-purple-800: rgb(44.4, 26.4, 77.2);--quarto-scss-export-purple-900: rgb(22.2, 13.2, 38.6);--quarto-scss-export-pink-100: rgb(250.4, 216.4, 232);--quarto-scss-export-pink-200: rgb(245.8, 177.8, 209);--quarto-scss-export-pink-300: rgb(241.2, 139.2, 186);--quarto-scss-export-pink-400: rgb(236.6, 100.6, 163);--quarto-scss-export-pink-500: #e83e8c;--quarto-scss-export-pink-600: rgb(185.6, 49.6, 112);--quarto-scss-export-pink-700: rgb(139.2, 37.2, 84);--quarto-scss-export-pink-800: rgb(92.8, 24.8, 56);--quarto-scss-export-pink-900: rgb(46.4, 12.4, 28);--quarto-scss-export-red-100: rgb(250.2, 219.2, 216);--quarto-scss-export-red-200: rgb(245.4, 183.4, 177);--quarto-scss-export-red-300: rgb(240.6, 147.6, 138);--quarto-scss-export-red-400: rgb(235.8, 111.8, 99);--quarto-scss-export-red-500: #e74c3c;--quarto-scss-export-red-600: rgb(184.8, 60.8, 48);--quarto-scss-export-red-700: rgb(138.6, 45.6, 36);--quarto-scss-export-red-800: rgb(92.4, 30.4, 24);--quarto-scss-export-red-900: rgb(46.2, 15.2, 12);--quarto-scss-export-orange-100: rgb(254.6, 229.2, 208);--quarto-scss-export-orange-200: rgb(254.2, 203.4, 161);--quarto-scss-export-orange-300: rgb(253.8, 177.6, 114);--quarto-scss-export-orange-400: rgb(253.4, 151.8, 67);--quarto-scss-export-orange-500: #fd7e14;--quarto-scss-export-orange-600: rgb(202.4, 100.8, 16);--quarto-scss-export-orange-700: rgb(151.8, 75.6, 12);--quarto-scss-export-orange-800: rgb(101.2, 50.4, 8);--quarto-scss-export-orange-900: rgb(50.6, 25.2, 4);--quarto-scss-export-yellow-100: rgb(252.6, 235.2, 207.6);--quarto-scss-export-yellow-200: rgb(250.2, 215.4, 160.2);--quarto-scss-export-yellow-300: rgb(247.8, 195.6, 112.8);--quarto-scss-export-yellow-400: rgb(245.4, 175.8, 65.4);--quarto-scss-export-yellow-500: #f39c12;--quarto-scss-export-yellow-600: rgb(194.4, 124.8, 14.4);--quarto-scss-export-yellow-700: rgb(145.8, 93.6, 10.8);--quarto-scss-export-yellow-800: rgb(97.2, 62.4, 7.2);--quarto-scss-export-yellow-900: rgb(48.6, 31.2, 3.6);--quarto-scss-export-green-100: rgb(208.8, 241.6, 235.2);--quarto-scss-export-green-200: rgb(162.6, 228.2, 215.4);--quarto-scss-export-green-300: rgb(116.4, 214.8, 195.6);--quarto-scss-export-green-400: rgb(70.2, 201.4, 175.8);--quarto-scss-export-green-500: #18bc9c;--quarto-scss-export-green-600: rgb(19.2, 150.4, 124.8);--quarto-scss-export-green-700: rgb(14.4, 112.8, 93.6);--quarto-scss-export-green-800: rgb(9.6, 75.2, 62.4);--quarto-scss-export-green-900: rgb(4.8, 37.6, 31.2);--quarto-scss-export-teal-100: rgb(210.4, 244.2, 234.2);--quarto-scss-export-teal-200: rgb(165.8, 233.4, 213.4);--quarto-scss-export-teal-300: rgb(121.2, 222.6, 192.6);--quarto-scss-export-teal-400: rgb(76.6, 211.8, 171.8);--quarto-scss-export-teal-500: #20c997;--quarto-scss-export-teal-600: rgb(25.6, 160.8, 120.8);--quarto-scss-export-teal-700: rgb(19.2, 120.6, 90.6);--quarto-scss-export-teal-800: rgb(12.8, 80.4, 60.4);--quarto-scss-export-teal-900: rgb(6.4, 40.2, 30.2);--quarto-scss-export-cyan-100: rgb(214.4, 234.4, 247.8);--quarto-scss-export-cyan-200: rgb(173.8, 213.8, 240.6);--quarto-scss-export-cyan-300: rgb(133.2, 193.2, 233.4);--quarto-scss-export-cyan-400: rgb(92.6, 172.6, 226.2);--quarto-scss-export-cyan-500: #3498db;--quarto-scss-export-cyan-600: rgb(41.6, 121.6, 175.2);--quarto-scss-export-cyan-700: rgb(31.2, 91.2, 131.4);--quarto-scss-export-cyan-800: rgb(20.8, 60.8, 87.6);--quarto-scss-export-cyan-900: rgb(10.4, 30.4, 43.8);--quarto-scss-export-default: #6c757d;--quarto-scss-export-primary-text-emphasis: rgb(17.6, 24.8, 32);--quarto-scss-export-secondary-text-emphasis: rgb(43.2, 46.8, 50);--quarto-scss-export-success-text-emphasis: rgb(9.6, 75.2, 62.4);--quarto-scss-export-info-text-emphasis: rgb(20.8, 60.8, 87.6);--quarto-scss-export-warning-text-emphasis: rgb(97.2, 62.4, 7.2);--quarto-scss-export-danger-text-emphasis: rgb(92.4, 30.4, 24);--quarto-scss-export-light-text-emphasis: #7b8a8b;--quarto-scss-export-dark-text-emphasis: #7b8a8b;--quarto-scss-export-primary-bg-subtle: rgb(212.8, 216.4, 220);--quarto-scss-export-secondary-bg-subtle: rgb(225.6, 227.4, 229);--quarto-scss-export-success-bg-subtle: rgb(208.8, 241.6, 235.2);--quarto-scss-export-info-bg-subtle: rgb(214.4, 234.4, 247.8);--quarto-scss-export-warning-bg-subtle: rgb(252.6, 235.2, 207.6);--quarto-scss-export-danger-bg-subtle: rgb(250.2, 219.2, 216);--quarto-scss-export-light-bg-subtle: rgb(251.5, 252, 252.5);--quarto-scss-export-dark-bg-subtle: #ced4da;--quarto-scss-export-primary-border-subtle: rgb(170.6, 177.8, 185);--quarto-scss-export-secondary-border-subtle: rgb(196.2, 199.8, 203);--quarto-scss-export-success-border-subtle: rgb(162.6, 228.2, 215.4);--quarto-scss-export-info-border-subtle: rgb(173.8, 213.8, 240.6);--quarto-scss-export-warning-border-subtle: rgb(250.2, 215.4, 160.2);--quarto-scss-export-danger-border-subtle: rgb(245.4, 183.4, 177);--quarto-scss-export-light-border-subtle: #ecf0f1;--quarto-scss-export-dark-border-subtle: #adb5bd;--quarto-scss-export-body-text-align: ;--quarto-scss-export-body-color: #212529;--quarto-scss-export-body-bg: #fff;--quarto-scss-export-body-secondary-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-body-secondary-bg: #ecf0f1;--quarto-scss-export-body-tertiary-color: rgba(33, 37, 41, 0.5);--quarto-scss-export-body-tertiary-bg: #f8f9fa;--quarto-scss-export-body-emphasis-color: #000;--quarto-scss-export-link-hover-color: rgb(19.2, 150.4, 124.8);--quarto-scss-export-link-hover-decoration: ;--quarto-scss-export-border-color-translucent: rgba(0, 0, 0, 0.175);--quarto-scss-export-component-active-bg: #2c3e50;--quarto-scss-export-component-active-color: #fff;--quarto-scss-export-focus-ring-color: rgba(44, 62, 80, 0.25);--quarto-scss-export-headings-font-family: ;--quarto-scss-export-headings-font-style: ;--quarto-scss-export-display-font-family: ;--quarto-scss-export-display-font-style: ;--quarto-scss-export-blockquote-footer-color: #6c757d;--quarto-scss-export-blockquote-border-color: #ecf0f1;--quarto-scss-export-hr-bg-color: ;--quarto-scss-export-hr-height: ;--quarto-scss-export-hr-border-color: ;--quarto-scss-export-legend-font-weight: ;--quarto-scss-export-mark-bg: rgb(252.6, 235.2, 207.6);--quarto-scss-export-table-color: #212529;--quarto-scss-export-table-bg: #fff;--quarto-scss-export-table-accent-bg: transparent;--quarto-scss-export-table-th-font-weight: ;--quarto-scss-export-table-striped-color: #212529;--quarto-scss-export-table-striped-bg: rgba(0, 0, 0, 0.05);--quarto-scss-export-table-active-color: #212529;--quarto-scss-export-table-active-bg: rgba(0, 0, 0, 0.1);--quarto-scss-export-table-hover-color: #212529;--quarto-scss-export-table-hover-bg: rgba(0, 0, 0, 0.075);--quarto-scss-export-table-caption-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-input-btn-font-family: ;--quarto-scss-export-input-btn-focus-color: rgba(44, 62, 80, 0.25);--quarto-scss-export-btn-color: #212529;--quarto-scss-export-btn-font-family: ;--quarto-scss-export-btn-white-space: ;--quarto-scss-export-btn-link-color: #18bc9c;--quarto-scss-export-btn-link-hover-color: rgb(19.2, 150.4, 124.8);--quarto-scss-export-btn-link-disabled-color: #6c757d;--quarto-scss-export-form-text-font-style: ;--quarto-scss-export-form-text-font-weight: ;--quarto-scss-export-form-text-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-form-label-font-size: ;--quarto-scss-export-form-label-font-style: ;--quarto-scss-export-form-label-font-weight: ;--quarto-scss-export-form-label-color: ;--quarto-scss-export-input-font-family: ;--quarto-scss-export-input-disabled-color: ;--quarto-scss-export-input-disabled-bg: #ecf0f1;--quarto-scss-export-input-disabled-border-color: ;--quarto-scss-export-input-color: #212529;--quarto-scss-export-input-focus-bg: #fff;--quarto-scss-export-input-focus-border-color: rgb(149.5, 158.5, 167.5);--quarto-scss-export-input-focus-color: #212529;--quarto-scss-export-input-placeholder-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-input-plaintext-color: #212529;--quarto-scss-export-form-check-label-color: ;--quarto-scss-export-form-check-transition: ;--quarto-scss-export-form-check-input-bg: #fff;--quarto-scss-export-form-check-input-focus-border: rgb(149.5, 158.5, 167.5);--quarto-scss-export-form-check-input-checked-color: #fff;--quarto-scss-export-form-check-input-checked-bg-color: #2c3e50;--quarto-scss-export-form-check-input-checked-border-color: #2c3e50;--quarto-scss-export-form-check-input-indeterminate-color: #fff;--quarto-scss-export-form-check-input-indeterminate-bg-color: #2c3e50;--quarto-scss-export-form-check-input-indeterminate-border-color: #2c3e50;--quarto-scss-export-form-switch-color: rgba(0, 0, 0, 0.25);--quarto-scss-export-form-switch-focus-color: rgb(149.5, 158.5, 167.5);--quarto-scss-export-form-switch-checked-color: #fff;--quarto-scss-export-input-group-addon-color: #212529;--quarto-scss-export-input-group-addon-bg: #f8f9fa;--quarto-scss-export-input-group-addon-border-color: #dee2e6;--quarto-scss-export-form-select-font-family: ;--quarto-scss-export-form-select-color: #212529;--quarto-scss-export-form-select-bg: #fff;--quarto-scss-export-form-select-disabled-color: ;--quarto-scss-export-form-select-disabled-bg: #ecf0f1;--quarto-scss-export-form-select-disabled-border-color: ;--quarto-scss-export-form-select-indicator-color: #343a40;--quarto-scss-export-form-select-border-color: #dee2e6;--quarto-scss-export-form-select-focus-border-color: rgb(149.5, 158.5, 167.5);--quarto-scss-export-form-range-track-bg: #f8f9fa;--quarto-scss-export-form-range-thumb-bg: #2c3e50;--quarto-scss-export-form-range-thumb-active-bg: rgb(191.7, 197.1, 202.5);--quarto-scss-export-form-range-thumb-disabled-bg: rgba(33, 37, 41, 0.75);--quarto-scss-export-form-file-button-color: #212529;--quarto-scss-export-form-file-button-bg: #f8f9fa;--quarto-scss-export-form-file-button-hover-bg: #ecf0f1;--quarto-scss-export-form-floating-label-disabled-color: #6c757d;--quarto-scss-export-form-feedback-font-style: ;--quarto-scss-export-form-feedback-valid-color: #18bc9c;--quarto-scss-export-form-feedback-invalid-color: #e74c3c;--quarto-scss-export-form-feedback-icon-valid-color: #18bc9c;--quarto-scss-export-form-feedback-icon-invalid-color: #e74c3c;--quarto-scss-export-form-valid-color: #18bc9c;--quarto-scss-export-form-valid-border-color: #18bc9c;--quarto-scss-export-form-invalid-color: #e74c3c;--quarto-scss-export-form-invalid-border-color: #e74c3c;--quarto-scss-export-nav-link-font-size: ;--quarto-scss-export-nav-link-font-weight: ;--quarto-scss-export-nav-link-color: #18bc9c;--quarto-scss-export-nav-link-hover-color: rgb(19.2, 150.4, 124.8);--quarto-scss-export-nav-tabs-link-hover-border-color: #ecf0f1 #ecf0f1 #ecf0f1;--quarto-scss-export-nav-tabs-link-active-color: #000;--quarto-scss-export-nav-tabs-link-active-bg: #fff;--quarto-scss-export-nav-pills-link-active-bg: #2c3e50;--quarto-scss-export-nav-pills-link-active-color: #fff;--quarto-scss-export-nav-underline-link-active-color: #000;--quarto-scss-export-navbar-padding-x: ;--quarto-scss-export-navbar-light-contrast: #fff;--quarto-scss-export-navbar-dark-contrast: #fff;--quarto-scss-export-navbar-light-icon-color: rgba(255, 255, 255, 0.75);--quarto-scss-export-navbar-dark-icon-color: rgba(255, 255, 255, 0.75);--quarto-scss-export-dropdown-color: #212529;--quarto-scss-export-dropdown-bg: #fff;--quarto-scss-export-dropdown-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-dropdown-divider-bg: rgba(0, 0, 0, 0.175);--quarto-scss-export-dropdown-link-active-bg: #2c3e50;--quarto-scss-export-dropdown-link-active-color: #fff;--quarto-scss-export-dropdown-link-disabled-color: rgba(33, 37, 41, 0.5);--quarto-scss-export-dropdown-header-color: #6c757d;--quarto-scss-export-dropdown-dark-color: #dee2e6;--quarto-scss-export-dropdown-dark-bg: #343a40;--quarto-scss-export-dropdown-dark-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-dropdown-dark-divider-bg: rgba(0, 0, 0, 0.175);--quarto-scss-export-dropdown-dark-box-shadow: ;--quarto-scss-export-dropdown-dark-link-color: #dee2e6;--quarto-scss-export-dropdown-dark-link-hover-color: #fff;--quarto-scss-export-dropdown-dark-link-hover-bg: rgba(255, 255, 255, 0.15);--quarto-scss-export-dropdown-dark-link-active-color: #fff;--quarto-scss-export-dropdown-dark-link-active-bg: #2c3e50;--quarto-scss-export-dropdown-dark-link-disabled-color: #adb5bd;--quarto-scss-export-dropdown-dark-header-color: #adb5bd;--quarto-scss-export-pagination-focus-color: rgb(19.2, 150.4, 124.8);--quarto-scss-export-pagination-focus-bg: #ecf0f1;--quarto-scss-export-pagination-active-color: #fff;--quarto-scss-export-card-title-color: ;--quarto-scss-export-card-subtitle-color: ;--quarto-scss-export-card-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-card-box-shadow: ;--quarto-scss-export-card-cap-color: ;--quarto-scss-export-card-height: ;--quarto-scss-export-card-color: ;--quarto-scss-export-card-bg: #fff;--quarto-scss-export-accordion-color: #212529;--quarto-scss-export-accordion-bg: #fff;--quarto-scss-export-accordion-border-color: #dee2e6;--quarto-scss-export-accordion-button-color: #212529;--quarto-scss-export-accordion-button-bg: #fff;--quarto-scss-export-accordion-button-active-bg: rgb(212.8, 216.4, 220);--quarto-scss-export-accordion-button-active-color: rgb(17.6, 24.8, 32);--quarto-scss-export-accordion-button-focus-border-color: rgb(149.5, 158.5, 167.5);--quarto-scss-export-accordion-icon-color: #212529;--quarto-scss-export-accordion-icon-active-color: rgb(17.6, 24.8, 32);--quarto-scss-export-tooltip-color: #fff;--quarto-scss-export-tooltip-bg: #000;--quarto-scss-export-tooltip-margin: ;--quarto-scss-export-tooltip-arrow-color: ;--quarto-scss-export-form-feedback-tooltip-line-height: ;--quarto-scss-export-popover-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-popover-header-bg: #ecf0f1;--quarto-scss-export-popover-body-color: #212529;--quarto-scss-export-popover-arrow-color: #fff;--quarto-scss-export-popover-arrow-outer-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-toast-color: ;--quarto-scss-export-toast-background-color: rgba(255, 255, 255, 0.85);--quarto-scss-export-toast-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-toast-header-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-toast-header-background-color: rgba(255, 255, 255, 0.85);--quarto-scss-export-toast-header-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-badge-color: #fff;--quarto-scss-export-modal-content-color: ;--quarto-scss-export-modal-content-bg: #fff;--quarto-scss-export-modal-content-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-modal-backdrop-bg: #000;--quarto-scss-export-modal-header-border-color: #dee2e6;--quarto-scss-export-modal-footer-bg: ;--quarto-scss-export-modal-footer-border-color: #dee2e6;--quarto-scss-export-progress-bg: #ecf0f1;--quarto-scss-export-progress-bar-color: #fff;--quarto-scss-export-progress-bar-bg: #2c3e50;--quarto-scss-export-list-group-color: #212529;--quarto-scss-export-list-group-bg: #fff;--quarto-scss-export-list-group-border-color: #dee2e6;--quarto-scss-export-list-group-active-bg: #2c3e50;--quarto-scss-export-list-group-active-color: #fff;--quarto-scss-export-list-group-active-border-color: #2c3e50;--quarto-scss-export-list-group-disabled-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-list-group-action-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-list-group-action-hover-color: #000;--quarto-scss-export-list-group-action-active-color: #212529;--quarto-scss-export-list-group-action-active-bg: #ecf0f1;--quarto-scss-export-thumbnail-bg: #fff;--quarto-scss-export-thumbnail-border-color: #dee2e6;--quarto-scss-export-figure-caption-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-breadcrumb-font-size: ;--quarto-scss-export-breadcrumb-bg: ;--quarto-scss-export-breadcrumb-divider-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-breadcrumb-active-color: rgba(33, 37, 41, 0.75);--quarto-scss-export-carousel-control-color: #fff;--quarto-scss-export-carousel-indicator-active-bg: #fff;--quarto-scss-export-carousel-caption-color: #fff;--quarto-scss-export-carousel-dark-indicator-active-bg: #000;--quarto-scss-export-carousel-dark-caption-color: #000;--quarto-scss-export-offcanvas-border-color: rgba(0, 0, 0, 0.175);--quarto-scss-export-offcanvas-bg-color: #fff;--quarto-scss-export-offcanvas-color: #212529;--quarto-scss-export-offcanvas-backdrop-bg: #000;--quarto-scss-export-code-color-dark: white;--quarto-scss-export-kbd-color: #fff;--quarto-scss-export-kbd-bg: #212529;--quarto-scss-export-nested-kbd-font-weight: ;--quarto-scss-export-pre-bg: #f8f9fa;--quarto-scss-export-pre-color: #000;--quarto-scss-export-bslib-page-sidebar-title-bg: #2c3e50;--quarto-scss-export-bslib-page-sidebar-title-color: #fff;--quarto-scss-export-bslib-sidebar-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.05);--quarto-scss-export-bslib-sidebar-toggle-bg: rgba(var(--bs-emphasis-color-rgb, 0, 0, 0), 0.1);--quarto-scss-export-sidebar-color: rgb(89.25, 89.25, 89.25);--quarto-scss-export-sidebar-hover-color: rgba(12.72, 99.64, 82.68, 0.8);--quarto-scss-export-sidebar-disabled-color: rgba(89.25, 89.25, 89.25, 0.75);--quarto-scss-export-valuebox-bg-primary: rgba(39, 128, 227, 0.7);--quarto-scss-export-valuebox-bg-secondary: #6c757d;--quarto-scss-export-valuebox-bg-success: rgba(63, 182, 24, 0.7);--quarto-scss-export-valuebox-bg-info: rgba(153, 84, 187, 0.7);--quarto-scss-export-valuebox-bg-warning: rgba(255, 117, 24, 0.7);--quarto-scss-export-valuebox-bg-danger: rgba(255, 0, 57, 0.7);--quarto-scss-export-valuebox-bg-light: #ecf0f1;--quarto-scss-export-valuebox-bg-dark: #7b8a8b;--quarto-scss-export-mermaid-bg-color: #fff;--quarto-scss-export-mermaid-edge-color: #6c757d;--quarto-scss-export-mermaid-node-fg-color: #212529;--quarto-scss-export-mermaid-fg-color: #212529;--quarto-scss-export-mermaid-fg-color--lighter: rgb(55.7432432432, 62.5, 69.2567567568);--quarto-scss-export-mermaid-fg-color--lightest: rgb(78.4864864865, 88, 97.5135135135);--quarto-scss-export-mermaid-label-bg-color: #fff;--quarto-scss-export-mermaid-label-fg-color: #2c3e50;--quarto-scss-export-mermaid-node-bg-color: rgba(44, 62, 80, 0.1);--quarto-scss-export-code-block-border-left-color: #dee2e6;--quarto-scss-export-callout-color-note: #2c3e50;--quarto-scss-export-callout-color-tip: #18bc9c;--quarto-scss-export-callout-color-important: #e74c3c;--quarto-scss-export-callout-color-caution: #fd7e14;--quarto-scss-export-callout-color-warning: #f39c12}
\ No newline at end of file
diff --git a/docs/site_libs/bootstrap/bootstrap-icons.css b/docs/site_libs/bootstrap/bootstrap-icons.css
new file mode 100644
index 00000000..82b40f57
--- /dev/null
+++ b/docs/site_libs/bootstrap/bootstrap-icons.css
@@ -0,0 +1,2106 @@
+/*!
+ * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
+ * Copyright 2019-2024 The Bootstrap Authors
+ * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
+ */
+
+@font-face {
+ font-display: block;
+ font-family: "bootstrap-icons";
+ src:
+url("./bootstrap-icons.woff?e34853135f9e39acf64315236852cd5a") format("woff");
+}
+
+.bi::before,
+[class^="bi-"]::before,
+[class*=" bi-"]::before {
+ display: inline-block;
+ font-family: bootstrap-icons !important;
+ font-style: normal;
+ font-weight: normal !important;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ vertical-align: -.125em;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.bi-123::before { content: "\f67f"; }
+.bi-alarm-fill::before { content: "\f101"; }
+.bi-alarm::before { content: "\f102"; }
+.bi-align-bottom::before { content: "\f103"; }
+.bi-align-center::before { content: "\f104"; }
+.bi-align-end::before { content: "\f105"; }
+.bi-align-middle::before { content: "\f106"; }
+.bi-align-start::before { content: "\f107"; }
+.bi-align-top::before { content: "\f108"; }
+.bi-alt::before { content: "\f109"; }
+.bi-app-indicator::before { content: "\f10a"; }
+.bi-app::before { content: "\f10b"; }
+.bi-archive-fill::before { content: "\f10c"; }
+.bi-archive::before { content: "\f10d"; }
+.bi-arrow-90deg-down::before { content: "\f10e"; }
+.bi-arrow-90deg-left::before { content: "\f10f"; }
+.bi-arrow-90deg-right::before { content: "\f110"; }
+.bi-arrow-90deg-up::before { content: "\f111"; }
+.bi-arrow-bar-down::before { content: "\f112"; }
+.bi-arrow-bar-left::before { content: "\f113"; }
+.bi-arrow-bar-right::before { content: "\f114"; }
+.bi-arrow-bar-up::before { content: "\f115"; }
+.bi-arrow-clockwise::before { content: "\f116"; }
+.bi-arrow-counterclockwise::before { content: "\f117"; }
+.bi-arrow-down-circle-fill::before { content: "\f118"; }
+.bi-arrow-down-circle::before { content: "\f119"; }
+.bi-arrow-down-left-circle-fill::before { content: "\f11a"; }
+.bi-arrow-down-left-circle::before { content: "\f11b"; }
+.bi-arrow-down-left-square-fill::before { content: "\f11c"; }
+.bi-arrow-down-left-square::before { content: "\f11d"; }
+.bi-arrow-down-left::before { content: "\f11e"; }
+.bi-arrow-down-right-circle-fill::before { content: "\f11f"; }
+.bi-arrow-down-right-circle::before { content: "\f120"; }
+.bi-arrow-down-right-square-fill::before { content: "\f121"; }
+.bi-arrow-down-right-square::before { content: "\f122"; }
+.bi-arrow-down-right::before { content: "\f123"; }
+.bi-arrow-down-short::before { content: "\f124"; }
+.bi-arrow-down-square-fill::before { content: "\f125"; }
+.bi-arrow-down-square::before { content: "\f126"; }
+.bi-arrow-down-up::before { content: "\f127"; }
+.bi-arrow-down::before { content: "\f128"; }
+.bi-arrow-left-circle-fill::before { content: "\f129"; }
+.bi-arrow-left-circle::before { content: "\f12a"; }
+.bi-arrow-left-right::before { content: "\f12b"; }
+.bi-arrow-left-short::before { content: "\f12c"; }
+.bi-arrow-left-square-fill::before { content: "\f12d"; }
+.bi-arrow-left-square::before { content: "\f12e"; }
+.bi-arrow-left::before { content: "\f12f"; }
+.bi-arrow-repeat::before { content: "\f130"; }
+.bi-arrow-return-left::before { content: "\f131"; }
+.bi-arrow-return-right::before { content: "\f132"; }
+.bi-arrow-right-circle-fill::before { content: "\f133"; }
+.bi-arrow-right-circle::before { content: "\f134"; }
+.bi-arrow-right-short::before { content: "\f135"; }
+.bi-arrow-right-square-fill::before { content: "\f136"; }
+.bi-arrow-right-square::before { content: "\f137"; }
+.bi-arrow-right::before { content: "\f138"; }
+.bi-arrow-up-circle-fill::before { content: "\f139"; }
+.bi-arrow-up-circle::before { content: "\f13a"; }
+.bi-arrow-up-left-circle-fill::before { content: "\f13b"; }
+.bi-arrow-up-left-circle::before { content: "\f13c"; }
+.bi-arrow-up-left-square-fill::before { content: "\f13d"; }
+.bi-arrow-up-left-square::before { content: "\f13e"; }
+.bi-arrow-up-left::before { content: "\f13f"; }
+.bi-arrow-up-right-circle-fill::before { content: "\f140"; }
+.bi-arrow-up-right-circle::before { content: "\f141"; }
+.bi-arrow-up-right-square-fill::before { content: "\f142"; }
+.bi-arrow-up-right-square::before { content: "\f143"; }
+.bi-arrow-up-right::before { content: "\f144"; }
+.bi-arrow-up-short::before { content: "\f145"; }
+.bi-arrow-up-square-fill::before { content: "\f146"; }
+.bi-arrow-up-square::before { content: "\f147"; }
+.bi-arrow-up::before { content: "\f148"; }
+.bi-arrows-angle-contract::before { content: "\f149"; }
+.bi-arrows-angle-expand::before { content: "\f14a"; }
+.bi-arrows-collapse::before { content: "\f14b"; }
+.bi-arrows-expand::before { content: "\f14c"; }
+.bi-arrows-fullscreen::before { content: "\f14d"; }
+.bi-arrows-move::before { content: "\f14e"; }
+.bi-aspect-ratio-fill::before { content: "\f14f"; }
+.bi-aspect-ratio::before { content: "\f150"; }
+.bi-asterisk::before { content: "\f151"; }
+.bi-at::before { content: "\f152"; }
+.bi-award-fill::before { content: "\f153"; }
+.bi-award::before { content: "\f154"; }
+.bi-back::before { content: "\f155"; }
+.bi-backspace-fill::before { content: "\f156"; }
+.bi-backspace-reverse-fill::before { content: "\f157"; }
+.bi-backspace-reverse::before { content: "\f158"; }
+.bi-backspace::before { content: "\f159"; }
+.bi-badge-3d-fill::before { content: "\f15a"; }
+.bi-badge-3d::before { content: "\f15b"; }
+.bi-badge-4k-fill::before { content: "\f15c"; }
+.bi-badge-4k::before { content: "\f15d"; }
+.bi-badge-8k-fill::before { content: "\f15e"; }
+.bi-badge-8k::before { content: "\f15f"; }
+.bi-badge-ad-fill::before { content: "\f160"; }
+.bi-badge-ad::before { content: "\f161"; }
+.bi-badge-ar-fill::before { content: "\f162"; }
+.bi-badge-ar::before { content: "\f163"; }
+.bi-badge-cc-fill::before { content: "\f164"; }
+.bi-badge-cc::before { content: "\f165"; }
+.bi-badge-hd-fill::before { content: "\f166"; }
+.bi-badge-hd::before { content: "\f167"; }
+.bi-badge-tm-fill::before { content: "\f168"; }
+.bi-badge-tm::before { content: "\f169"; }
+.bi-badge-vo-fill::before { content: "\f16a"; }
+.bi-badge-vo::before { content: "\f16b"; }
+.bi-badge-vr-fill::before { content: "\f16c"; }
+.bi-badge-vr::before { content: "\f16d"; }
+.bi-badge-wc-fill::before { content: "\f16e"; }
+.bi-badge-wc::before { content: "\f16f"; }
+.bi-bag-check-fill::before { content: "\f170"; }
+.bi-bag-check::before { content: "\f171"; }
+.bi-bag-dash-fill::before { content: "\f172"; }
+.bi-bag-dash::before { content: "\f173"; }
+.bi-bag-fill::before { content: "\f174"; }
+.bi-bag-plus-fill::before { content: "\f175"; }
+.bi-bag-plus::before { content: "\f176"; }
+.bi-bag-x-fill::before { content: "\f177"; }
+.bi-bag-x::before { content: "\f178"; }
+.bi-bag::before { content: "\f179"; }
+.bi-bar-chart-fill::before { content: "\f17a"; }
+.bi-bar-chart-line-fill::before { content: "\f17b"; }
+.bi-bar-chart-line::before { content: "\f17c"; }
+.bi-bar-chart-steps::before { content: "\f17d"; }
+.bi-bar-chart::before { content: "\f17e"; }
+.bi-basket-fill::before { content: "\f17f"; }
+.bi-basket::before { content: "\f180"; }
+.bi-basket2-fill::before { content: "\f181"; }
+.bi-basket2::before { content: "\f182"; }
+.bi-basket3-fill::before { content: "\f183"; }
+.bi-basket3::before { content: "\f184"; }
+.bi-battery-charging::before { content: "\f185"; }
+.bi-battery-full::before { content: "\f186"; }
+.bi-battery-half::before { content: "\f187"; }
+.bi-battery::before { content: "\f188"; }
+.bi-bell-fill::before { content: "\f189"; }
+.bi-bell::before { content: "\f18a"; }
+.bi-bezier::before { content: "\f18b"; }
+.bi-bezier2::before { content: "\f18c"; }
+.bi-bicycle::before { content: "\f18d"; }
+.bi-binoculars-fill::before { content: "\f18e"; }
+.bi-binoculars::before { content: "\f18f"; }
+.bi-blockquote-left::before { content: "\f190"; }
+.bi-blockquote-right::before { content: "\f191"; }
+.bi-book-fill::before { content: "\f192"; }
+.bi-book-half::before { content: "\f193"; }
+.bi-book::before { content: "\f194"; }
+.bi-bookmark-check-fill::before { content: "\f195"; }
+.bi-bookmark-check::before { content: "\f196"; }
+.bi-bookmark-dash-fill::before { content: "\f197"; }
+.bi-bookmark-dash::before { content: "\f198"; }
+.bi-bookmark-fill::before { content: "\f199"; }
+.bi-bookmark-heart-fill::before { content: "\f19a"; }
+.bi-bookmark-heart::before { content: "\f19b"; }
+.bi-bookmark-plus-fill::before { content: "\f19c"; }
+.bi-bookmark-plus::before { content: "\f19d"; }
+.bi-bookmark-star-fill::before { content: "\f19e"; }
+.bi-bookmark-star::before { content: "\f19f"; }
+.bi-bookmark-x-fill::before { content: "\f1a0"; }
+.bi-bookmark-x::before { content: "\f1a1"; }
+.bi-bookmark::before { content: "\f1a2"; }
+.bi-bookmarks-fill::before { content: "\f1a3"; }
+.bi-bookmarks::before { content: "\f1a4"; }
+.bi-bookshelf::before { content: "\f1a5"; }
+.bi-bootstrap-fill::before { content: "\f1a6"; }
+.bi-bootstrap-reboot::before { content: "\f1a7"; }
+.bi-bootstrap::before { content: "\f1a8"; }
+.bi-border-all::before { content: "\f1a9"; }
+.bi-border-bottom::before { content: "\f1aa"; }
+.bi-border-center::before { content: "\f1ab"; }
+.bi-border-inner::before { content: "\f1ac"; }
+.bi-border-left::before { content: "\f1ad"; }
+.bi-border-middle::before { content: "\f1ae"; }
+.bi-border-outer::before { content: "\f1af"; }
+.bi-border-right::before { content: "\f1b0"; }
+.bi-border-style::before { content: "\f1b1"; }
+.bi-border-top::before { content: "\f1b2"; }
+.bi-border-width::before { content: "\f1b3"; }
+.bi-border::before { content: "\f1b4"; }
+.bi-bounding-box-circles::before { content: "\f1b5"; }
+.bi-bounding-box::before { content: "\f1b6"; }
+.bi-box-arrow-down-left::before { content: "\f1b7"; }
+.bi-box-arrow-down-right::before { content: "\f1b8"; }
+.bi-box-arrow-down::before { content: "\f1b9"; }
+.bi-box-arrow-in-down-left::before { content: "\f1ba"; }
+.bi-box-arrow-in-down-right::before { content: "\f1bb"; }
+.bi-box-arrow-in-down::before { content: "\f1bc"; }
+.bi-box-arrow-in-left::before { content: "\f1bd"; }
+.bi-box-arrow-in-right::before { content: "\f1be"; }
+.bi-box-arrow-in-up-left::before { content: "\f1bf"; }
+.bi-box-arrow-in-up-right::before { content: "\f1c0"; }
+.bi-box-arrow-in-up::before { content: "\f1c1"; }
+.bi-box-arrow-left::before { content: "\f1c2"; }
+.bi-box-arrow-right::before { content: "\f1c3"; }
+.bi-box-arrow-up-left::before { content: "\f1c4"; }
+.bi-box-arrow-up-right::before { content: "\f1c5"; }
+.bi-box-arrow-up::before { content: "\f1c6"; }
+.bi-box-seam::before { content: "\f1c7"; }
+.bi-box::before { content: "\f1c8"; }
+.bi-braces::before { content: "\f1c9"; }
+.bi-bricks::before { content: "\f1ca"; }
+.bi-briefcase-fill::before { content: "\f1cb"; }
+.bi-briefcase::before { content: "\f1cc"; }
+.bi-brightness-alt-high-fill::before { content: "\f1cd"; }
+.bi-brightness-alt-high::before { content: "\f1ce"; }
+.bi-brightness-alt-low-fill::before { content: "\f1cf"; }
+.bi-brightness-alt-low::before { content: "\f1d0"; }
+.bi-brightness-high-fill::before { content: "\f1d1"; }
+.bi-brightness-high::before { content: "\f1d2"; }
+.bi-brightness-low-fill::before { content: "\f1d3"; }
+.bi-brightness-low::before { content: "\f1d4"; }
+.bi-broadcast-pin::before { content: "\f1d5"; }
+.bi-broadcast::before { content: "\f1d6"; }
+.bi-brush-fill::before { content: "\f1d7"; }
+.bi-brush::before { content: "\f1d8"; }
+.bi-bucket-fill::before { content: "\f1d9"; }
+.bi-bucket::before { content: "\f1da"; }
+.bi-bug-fill::before { content: "\f1db"; }
+.bi-bug::before { content: "\f1dc"; }
+.bi-building::before { content: "\f1dd"; }
+.bi-bullseye::before { content: "\f1de"; }
+.bi-calculator-fill::before { content: "\f1df"; }
+.bi-calculator::before { content: "\f1e0"; }
+.bi-calendar-check-fill::before { content: "\f1e1"; }
+.bi-calendar-check::before { content: "\f1e2"; }
+.bi-calendar-date-fill::before { content: "\f1e3"; }
+.bi-calendar-date::before { content: "\f1e4"; }
+.bi-calendar-day-fill::before { content: "\f1e5"; }
+.bi-calendar-day::before { content: "\f1e6"; }
+.bi-calendar-event-fill::before { content: "\f1e7"; }
+.bi-calendar-event::before { content: "\f1e8"; }
+.bi-calendar-fill::before { content: "\f1e9"; }
+.bi-calendar-minus-fill::before { content: "\f1ea"; }
+.bi-calendar-minus::before { content: "\f1eb"; }
+.bi-calendar-month-fill::before { content: "\f1ec"; }
+.bi-calendar-month::before { content: "\f1ed"; }
+.bi-calendar-plus-fill::before { content: "\f1ee"; }
+.bi-calendar-plus::before { content: "\f1ef"; }
+.bi-calendar-range-fill::before { content: "\f1f0"; }
+.bi-calendar-range::before { content: "\f1f1"; }
+.bi-calendar-week-fill::before { content: "\f1f2"; }
+.bi-calendar-week::before { content: "\f1f3"; }
+.bi-calendar-x-fill::before { content: "\f1f4"; }
+.bi-calendar-x::before { content: "\f1f5"; }
+.bi-calendar::before { content: "\f1f6"; }
+.bi-calendar2-check-fill::before { content: "\f1f7"; }
+.bi-calendar2-check::before { content: "\f1f8"; }
+.bi-calendar2-date-fill::before { content: "\f1f9"; }
+.bi-calendar2-date::before { content: "\f1fa"; }
+.bi-calendar2-day-fill::before { content: "\f1fb"; }
+.bi-calendar2-day::before { content: "\f1fc"; }
+.bi-calendar2-event-fill::before { content: "\f1fd"; }
+.bi-calendar2-event::before { content: "\f1fe"; }
+.bi-calendar2-fill::before { content: "\f1ff"; }
+.bi-calendar2-minus-fill::before { content: "\f200"; }
+.bi-calendar2-minus::before { content: "\f201"; }
+.bi-calendar2-month-fill::before { content: "\f202"; }
+.bi-calendar2-month::before { content: "\f203"; }
+.bi-calendar2-plus-fill::before { content: "\f204"; }
+.bi-calendar2-plus::before { content: "\f205"; }
+.bi-calendar2-range-fill::before { content: "\f206"; }
+.bi-calendar2-range::before { content: "\f207"; }
+.bi-calendar2-week-fill::before { content: "\f208"; }
+.bi-calendar2-week::before { content: "\f209"; }
+.bi-calendar2-x-fill::before { content: "\f20a"; }
+.bi-calendar2-x::before { content: "\f20b"; }
+.bi-calendar2::before { content: "\f20c"; }
+.bi-calendar3-event-fill::before { content: "\f20d"; }
+.bi-calendar3-event::before { content: "\f20e"; }
+.bi-calendar3-fill::before { content: "\f20f"; }
+.bi-calendar3-range-fill::before { content: "\f210"; }
+.bi-calendar3-range::before { content: "\f211"; }
+.bi-calendar3-week-fill::before { content: "\f212"; }
+.bi-calendar3-week::before { content: "\f213"; }
+.bi-calendar3::before { content: "\f214"; }
+.bi-calendar4-event::before { content: "\f215"; }
+.bi-calendar4-range::before { content: "\f216"; }
+.bi-calendar4-week::before { content: "\f217"; }
+.bi-calendar4::before { content: "\f218"; }
+.bi-camera-fill::before { content: "\f219"; }
+.bi-camera-reels-fill::before { content: "\f21a"; }
+.bi-camera-reels::before { content: "\f21b"; }
+.bi-camera-video-fill::before { content: "\f21c"; }
+.bi-camera-video-off-fill::before { content: "\f21d"; }
+.bi-camera-video-off::before { content: "\f21e"; }
+.bi-camera-video::before { content: "\f21f"; }
+.bi-camera::before { content: "\f220"; }
+.bi-camera2::before { content: "\f221"; }
+.bi-capslock-fill::before { content: "\f222"; }
+.bi-capslock::before { content: "\f223"; }
+.bi-card-checklist::before { content: "\f224"; }
+.bi-card-heading::before { content: "\f225"; }
+.bi-card-image::before { content: "\f226"; }
+.bi-card-list::before { content: "\f227"; }
+.bi-card-text::before { content: "\f228"; }
+.bi-caret-down-fill::before { content: "\f229"; }
+.bi-caret-down-square-fill::before { content: "\f22a"; }
+.bi-caret-down-square::before { content: "\f22b"; }
+.bi-caret-down::before { content: "\f22c"; }
+.bi-caret-left-fill::before { content: "\f22d"; }
+.bi-caret-left-square-fill::before { content: "\f22e"; }
+.bi-caret-left-square::before { content: "\f22f"; }
+.bi-caret-left::before { content: "\f230"; }
+.bi-caret-right-fill::before { content: "\f231"; }
+.bi-caret-right-square-fill::before { content: "\f232"; }
+.bi-caret-right-square::before { content: "\f233"; }
+.bi-caret-right::before { content: "\f234"; }
+.bi-caret-up-fill::before { content: "\f235"; }
+.bi-caret-up-square-fill::before { content: "\f236"; }
+.bi-caret-up-square::before { content: "\f237"; }
+.bi-caret-up::before { content: "\f238"; }
+.bi-cart-check-fill::before { content: "\f239"; }
+.bi-cart-check::before { content: "\f23a"; }
+.bi-cart-dash-fill::before { content: "\f23b"; }
+.bi-cart-dash::before { content: "\f23c"; }
+.bi-cart-fill::before { content: "\f23d"; }
+.bi-cart-plus-fill::before { content: "\f23e"; }
+.bi-cart-plus::before { content: "\f23f"; }
+.bi-cart-x-fill::before { content: "\f240"; }
+.bi-cart-x::before { content: "\f241"; }
+.bi-cart::before { content: "\f242"; }
+.bi-cart2::before { content: "\f243"; }
+.bi-cart3::before { content: "\f244"; }
+.bi-cart4::before { content: "\f245"; }
+.bi-cash-stack::before { content: "\f246"; }
+.bi-cash::before { content: "\f247"; }
+.bi-cast::before { content: "\f248"; }
+.bi-chat-dots-fill::before { content: "\f249"; }
+.bi-chat-dots::before { content: "\f24a"; }
+.bi-chat-fill::before { content: "\f24b"; }
+.bi-chat-left-dots-fill::before { content: "\f24c"; }
+.bi-chat-left-dots::before { content: "\f24d"; }
+.bi-chat-left-fill::before { content: "\f24e"; }
+.bi-chat-left-quote-fill::before { content: "\f24f"; }
+.bi-chat-left-quote::before { content: "\f250"; }
+.bi-chat-left-text-fill::before { content: "\f251"; }
+.bi-chat-left-text::before { content: "\f252"; }
+.bi-chat-left::before { content: "\f253"; }
+.bi-chat-quote-fill::before { content: "\f254"; }
+.bi-chat-quote::before { content: "\f255"; }
+.bi-chat-right-dots-fill::before { content: "\f256"; }
+.bi-chat-right-dots::before { content: "\f257"; }
+.bi-chat-right-fill::before { content: "\f258"; }
+.bi-chat-right-quote-fill::before { content: "\f259"; }
+.bi-chat-right-quote::before { content: "\f25a"; }
+.bi-chat-right-text-fill::before { content: "\f25b"; }
+.bi-chat-right-text::before { content: "\f25c"; }
+.bi-chat-right::before { content: "\f25d"; }
+.bi-chat-square-dots-fill::before { content: "\f25e"; }
+.bi-chat-square-dots::before { content: "\f25f"; }
+.bi-chat-square-fill::before { content: "\f260"; }
+.bi-chat-square-quote-fill::before { content: "\f261"; }
+.bi-chat-square-quote::before { content: "\f262"; }
+.bi-chat-square-text-fill::before { content: "\f263"; }
+.bi-chat-square-text::before { content: "\f264"; }
+.bi-chat-square::before { content: "\f265"; }
+.bi-chat-text-fill::before { content: "\f266"; }
+.bi-chat-text::before { content: "\f267"; }
+.bi-chat::before { content: "\f268"; }
+.bi-check-all::before { content: "\f269"; }
+.bi-check-circle-fill::before { content: "\f26a"; }
+.bi-check-circle::before { content: "\f26b"; }
+.bi-check-square-fill::before { content: "\f26c"; }
+.bi-check-square::before { content: "\f26d"; }
+.bi-check::before { content: "\f26e"; }
+.bi-check2-all::before { content: "\f26f"; }
+.bi-check2-circle::before { content: "\f270"; }
+.bi-check2-square::before { content: "\f271"; }
+.bi-check2::before { content: "\f272"; }
+.bi-chevron-bar-contract::before { content: "\f273"; }
+.bi-chevron-bar-down::before { content: "\f274"; }
+.bi-chevron-bar-expand::before { content: "\f275"; }
+.bi-chevron-bar-left::before { content: "\f276"; }
+.bi-chevron-bar-right::before { content: "\f277"; }
+.bi-chevron-bar-up::before { content: "\f278"; }
+.bi-chevron-compact-down::before { content: "\f279"; }
+.bi-chevron-compact-left::before { content: "\f27a"; }
+.bi-chevron-compact-right::before { content: "\f27b"; }
+.bi-chevron-compact-up::before { content: "\f27c"; }
+.bi-chevron-contract::before { content: "\f27d"; }
+.bi-chevron-double-down::before { content: "\f27e"; }
+.bi-chevron-double-left::before { content: "\f27f"; }
+.bi-chevron-double-right::before { content: "\f280"; }
+.bi-chevron-double-up::before { content: "\f281"; }
+.bi-chevron-down::before { content: "\f282"; }
+.bi-chevron-expand::before { content: "\f283"; }
+.bi-chevron-left::before { content: "\f284"; }
+.bi-chevron-right::before { content: "\f285"; }
+.bi-chevron-up::before { content: "\f286"; }
+.bi-circle-fill::before { content: "\f287"; }
+.bi-circle-half::before { content: "\f288"; }
+.bi-circle-square::before { content: "\f289"; }
+.bi-circle::before { content: "\f28a"; }
+.bi-clipboard-check::before { content: "\f28b"; }
+.bi-clipboard-data::before { content: "\f28c"; }
+.bi-clipboard-minus::before { content: "\f28d"; }
+.bi-clipboard-plus::before { content: "\f28e"; }
+.bi-clipboard-x::before { content: "\f28f"; }
+.bi-clipboard::before { content: "\f290"; }
+.bi-clock-fill::before { content: "\f291"; }
+.bi-clock-history::before { content: "\f292"; }
+.bi-clock::before { content: "\f293"; }
+.bi-cloud-arrow-down-fill::before { content: "\f294"; }
+.bi-cloud-arrow-down::before { content: "\f295"; }
+.bi-cloud-arrow-up-fill::before { content: "\f296"; }
+.bi-cloud-arrow-up::before { content: "\f297"; }
+.bi-cloud-check-fill::before { content: "\f298"; }
+.bi-cloud-check::before { content: "\f299"; }
+.bi-cloud-download-fill::before { content: "\f29a"; }
+.bi-cloud-download::before { content: "\f29b"; }
+.bi-cloud-drizzle-fill::before { content: "\f29c"; }
+.bi-cloud-drizzle::before { content: "\f29d"; }
+.bi-cloud-fill::before { content: "\f29e"; }
+.bi-cloud-fog-fill::before { content: "\f29f"; }
+.bi-cloud-fog::before { content: "\f2a0"; }
+.bi-cloud-fog2-fill::before { content: "\f2a1"; }
+.bi-cloud-fog2::before { content: "\f2a2"; }
+.bi-cloud-hail-fill::before { content: "\f2a3"; }
+.bi-cloud-hail::before { content: "\f2a4"; }
+.bi-cloud-haze-fill::before { content: "\f2a6"; }
+.bi-cloud-haze::before { content: "\f2a7"; }
+.bi-cloud-haze2-fill::before { content: "\f2a8"; }
+.bi-cloud-lightning-fill::before { content: "\f2a9"; }
+.bi-cloud-lightning-rain-fill::before { content: "\f2aa"; }
+.bi-cloud-lightning-rain::before { content: "\f2ab"; }
+.bi-cloud-lightning::before { content: "\f2ac"; }
+.bi-cloud-minus-fill::before { content: "\f2ad"; }
+.bi-cloud-minus::before { content: "\f2ae"; }
+.bi-cloud-moon-fill::before { content: "\f2af"; }
+.bi-cloud-moon::before { content: "\f2b0"; }
+.bi-cloud-plus-fill::before { content: "\f2b1"; }
+.bi-cloud-plus::before { content: "\f2b2"; }
+.bi-cloud-rain-fill::before { content: "\f2b3"; }
+.bi-cloud-rain-heavy-fill::before { content: "\f2b4"; }
+.bi-cloud-rain-heavy::before { content: "\f2b5"; }
+.bi-cloud-rain::before { content: "\f2b6"; }
+.bi-cloud-slash-fill::before { content: "\f2b7"; }
+.bi-cloud-slash::before { content: "\f2b8"; }
+.bi-cloud-sleet-fill::before { content: "\f2b9"; }
+.bi-cloud-sleet::before { content: "\f2ba"; }
+.bi-cloud-snow-fill::before { content: "\f2bb"; }
+.bi-cloud-snow::before { content: "\f2bc"; }
+.bi-cloud-sun-fill::before { content: "\f2bd"; }
+.bi-cloud-sun::before { content: "\f2be"; }
+.bi-cloud-upload-fill::before { content: "\f2bf"; }
+.bi-cloud-upload::before { content: "\f2c0"; }
+.bi-cloud::before { content: "\f2c1"; }
+.bi-clouds-fill::before { content: "\f2c2"; }
+.bi-clouds::before { content: "\f2c3"; }
+.bi-cloudy-fill::before { content: "\f2c4"; }
+.bi-cloudy::before { content: "\f2c5"; }
+.bi-code-slash::before { content: "\f2c6"; }
+.bi-code-square::before { content: "\f2c7"; }
+.bi-code::before { content: "\f2c8"; }
+.bi-collection-fill::before { content: "\f2c9"; }
+.bi-collection-play-fill::before { content: "\f2ca"; }
+.bi-collection-play::before { content: "\f2cb"; }
+.bi-collection::before { content: "\f2cc"; }
+.bi-columns-gap::before { content: "\f2cd"; }
+.bi-columns::before { content: "\f2ce"; }
+.bi-command::before { content: "\f2cf"; }
+.bi-compass-fill::before { content: "\f2d0"; }
+.bi-compass::before { content: "\f2d1"; }
+.bi-cone-striped::before { content: "\f2d2"; }
+.bi-cone::before { content: "\f2d3"; }
+.bi-controller::before { content: "\f2d4"; }
+.bi-cpu-fill::before { content: "\f2d5"; }
+.bi-cpu::before { content: "\f2d6"; }
+.bi-credit-card-2-back-fill::before { content: "\f2d7"; }
+.bi-credit-card-2-back::before { content: "\f2d8"; }
+.bi-credit-card-2-front-fill::before { content: "\f2d9"; }
+.bi-credit-card-2-front::before { content: "\f2da"; }
+.bi-credit-card-fill::before { content: "\f2db"; }
+.bi-credit-card::before { content: "\f2dc"; }
+.bi-crop::before { content: "\f2dd"; }
+.bi-cup-fill::before { content: "\f2de"; }
+.bi-cup-straw::before { content: "\f2df"; }
+.bi-cup::before { content: "\f2e0"; }
+.bi-cursor-fill::before { content: "\f2e1"; }
+.bi-cursor-text::before { content: "\f2e2"; }
+.bi-cursor::before { content: "\f2e3"; }
+.bi-dash-circle-dotted::before { content: "\f2e4"; }
+.bi-dash-circle-fill::before { content: "\f2e5"; }
+.bi-dash-circle::before { content: "\f2e6"; }
+.bi-dash-square-dotted::before { content: "\f2e7"; }
+.bi-dash-square-fill::before { content: "\f2e8"; }
+.bi-dash-square::before { content: "\f2e9"; }
+.bi-dash::before { content: "\f2ea"; }
+.bi-diagram-2-fill::before { content: "\f2eb"; }
+.bi-diagram-2::before { content: "\f2ec"; }
+.bi-diagram-3-fill::before { content: "\f2ed"; }
+.bi-diagram-3::before { content: "\f2ee"; }
+.bi-diamond-fill::before { content: "\f2ef"; }
+.bi-diamond-half::before { content: "\f2f0"; }
+.bi-diamond::before { content: "\f2f1"; }
+.bi-dice-1-fill::before { content: "\f2f2"; }
+.bi-dice-1::before { content: "\f2f3"; }
+.bi-dice-2-fill::before { content: "\f2f4"; }
+.bi-dice-2::before { content: "\f2f5"; }
+.bi-dice-3-fill::before { content: "\f2f6"; }
+.bi-dice-3::before { content: "\f2f7"; }
+.bi-dice-4-fill::before { content: "\f2f8"; }
+.bi-dice-4::before { content: "\f2f9"; }
+.bi-dice-5-fill::before { content: "\f2fa"; }
+.bi-dice-5::before { content: "\f2fb"; }
+.bi-dice-6-fill::before { content: "\f2fc"; }
+.bi-dice-6::before { content: "\f2fd"; }
+.bi-disc-fill::before { content: "\f2fe"; }
+.bi-disc::before { content: "\f2ff"; }
+.bi-discord::before { content: "\f300"; }
+.bi-display-fill::before { content: "\f301"; }
+.bi-display::before { content: "\f302"; }
+.bi-distribute-horizontal::before { content: "\f303"; }
+.bi-distribute-vertical::before { content: "\f304"; }
+.bi-door-closed-fill::before { content: "\f305"; }
+.bi-door-closed::before { content: "\f306"; }
+.bi-door-open-fill::before { content: "\f307"; }
+.bi-door-open::before { content: "\f308"; }
+.bi-dot::before { content: "\f309"; }
+.bi-download::before { content: "\f30a"; }
+.bi-droplet-fill::before { content: "\f30b"; }
+.bi-droplet-half::before { content: "\f30c"; }
+.bi-droplet::before { content: "\f30d"; }
+.bi-earbuds::before { content: "\f30e"; }
+.bi-easel-fill::before { content: "\f30f"; }
+.bi-easel::before { content: "\f310"; }
+.bi-egg-fill::before { content: "\f311"; }
+.bi-egg-fried::before { content: "\f312"; }
+.bi-egg::before { content: "\f313"; }
+.bi-eject-fill::before { content: "\f314"; }
+.bi-eject::before { content: "\f315"; }
+.bi-emoji-angry-fill::before { content: "\f316"; }
+.bi-emoji-angry::before { content: "\f317"; }
+.bi-emoji-dizzy-fill::before { content: "\f318"; }
+.bi-emoji-dizzy::before { content: "\f319"; }
+.bi-emoji-expressionless-fill::before { content: "\f31a"; }
+.bi-emoji-expressionless::before { content: "\f31b"; }
+.bi-emoji-frown-fill::before { content: "\f31c"; }
+.bi-emoji-frown::before { content: "\f31d"; }
+.bi-emoji-heart-eyes-fill::before { content: "\f31e"; }
+.bi-emoji-heart-eyes::before { content: "\f31f"; }
+.bi-emoji-laughing-fill::before { content: "\f320"; }
+.bi-emoji-laughing::before { content: "\f321"; }
+.bi-emoji-neutral-fill::before { content: "\f322"; }
+.bi-emoji-neutral::before { content: "\f323"; }
+.bi-emoji-smile-fill::before { content: "\f324"; }
+.bi-emoji-smile-upside-down-fill::before { content: "\f325"; }
+.bi-emoji-smile-upside-down::before { content: "\f326"; }
+.bi-emoji-smile::before { content: "\f327"; }
+.bi-emoji-sunglasses-fill::before { content: "\f328"; }
+.bi-emoji-sunglasses::before { content: "\f329"; }
+.bi-emoji-wink-fill::before { content: "\f32a"; }
+.bi-emoji-wink::before { content: "\f32b"; }
+.bi-envelope-fill::before { content: "\f32c"; }
+.bi-envelope-open-fill::before { content: "\f32d"; }
+.bi-envelope-open::before { content: "\f32e"; }
+.bi-envelope::before { content: "\f32f"; }
+.bi-eraser-fill::before { content: "\f330"; }
+.bi-eraser::before { content: "\f331"; }
+.bi-exclamation-circle-fill::before { content: "\f332"; }
+.bi-exclamation-circle::before { content: "\f333"; }
+.bi-exclamation-diamond-fill::before { content: "\f334"; }
+.bi-exclamation-diamond::before { content: "\f335"; }
+.bi-exclamation-octagon-fill::before { content: "\f336"; }
+.bi-exclamation-octagon::before { content: "\f337"; }
+.bi-exclamation-square-fill::before { content: "\f338"; }
+.bi-exclamation-square::before { content: "\f339"; }
+.bi-exclamation-triangle-fill::before { content: "\f33a"; }
+.bi-exclamation-triangle::before { content: "\f33b"; }
+.bi-exclamation::before { content: "\f33c"; }
+.bi-exclude::before { content: "\f33d"; }
+.bi-eye-fill::before { content: "\f33e"; }
+.bi-eye-slash-fill::before { content: "\f33f"; }
+.bi-eye-slash::before { content: "\f340"; }
+.bi-eye::before { content: "\f341"; }
+.bi-eyedropper::before { content: "\f342"; }
+.bi-eyeglasses::before { content: "\f343"; }
+.bi-facebook::before { content: "\f344"; }
+.bi-file-arrow-down-fill::before { content: "\f345"; }
+.bi-file-arrow-down::before { content: "\f346"; }
+.bi-file-arrow-up-fill::before { content: "\f347"; }
+.bi-file-arrow-up::before { content: "\f348"; }
+.bi-file-bar-graph-fill::before { content: "\f349"; }
+.bi-file-bar-graph::before { content: "\f34a"; }
+.bi-file-binary-fill::before { content: "\f34b"; }
+.bi-file-binary::before { content: "\f34c"; }
+.bi-file-break-fill::before { content: "\f34d"; }
+.bi-file-break::before { content: "\f34e"; }
+.bi-file-check-fill::before { content: "\f34f"; }
+.bi-file-check::before { content: "\f350"; }
+.bi-file-code-fill::before { content: "\f351"; }
+.bi-file-code::before { content: "\f352"; }
+.bi-file-diff-fill::before { content: "\f353"; }
+.bi-file-diff::before { content: "\f354"; }
+.bi-file-earmark-arrow-down-fill::before { content: "\f355"; }
+.bi-file-earmark-arrow-down::before { content: "\f356"; }
+.bi-file-earmark-arrow-up-fill::before { content: "\f357"; }
+.bi-file-earmark-arrow-up::before { content: "\f358"; }
+.bi-file-earmark-bar-graph-fill::before { content: "\f359"; }
+.bi-file-earmark-bar-graph::before { content: "\f35a"; }
+.bi-file-earmark-binary-fill::before { content: "\f35b"; }
+.bi-file-earmark-binary::before { content: "\f35c"; }
+.bi-file-earmark-break-fill::before { content: "\f35d"; }
+.bi-file-earmark-break::before { content: "\f35e"; }
+.bi-file-earmark-check-fill::before { content: "\f35f"; }
+.bi-file-earmark-check::before { content: "\f360"; }
+.bi-file-earmark-code-fill::before { content: "\f361"; }
+.bi-file-earmark-code::before { content: "\f362"; }
+.bi-file-earmark-diff-fill::before { content: "\f363"; }
+.bi-file-earmark-diff::before { content: "\f364"; }
+.bi-file-earmark-easel-fill::before { content: "\f365"; }
+.bi-file-earmark-easel::before { content: "\f366"; }
+.bi-file-earmark-excel-fill::before { content: "\f367"; }
+.bi-file-earmark-excel::before { content: "\f368"; }
+.bi-file-earmark-fill::before { content: "\f369"; }
+.bi-file-earmark-font-fill::before { content: "\f36a"; }
+.bi-file-earmark-font::before { content: "\f36b"; }
+.bi-file-earmark-image-fill::before { content: "\f36c"; }
+.bi-file-earmark-image::before { content: "\f36d"; }
+.bi-file-earmark-lock-fill::before { content: "\f36e"; }
+.bi-file-earmark-lock::before { content: "\f36f"; }
+.bi-file-earmark-lock2-fill::before { content: "\f370"; }
+.bi-file-earmark-lock2::before { content: "\f371"; }
+.bi-file-earmark-medical-fill::before { content: "\f372"; }
+.bi-file-earmark-medical::before { content: "\f373"; }
+.bi-file-earmark-minus-fill::before { content: "\f374"; }
+.bi-file-earmark-minus::before { content: "\f375"; }
+.bi-file-earmark-music-fill::before { content: "\f376"; }
+.bi-file-earmark-music::before { content: "\f377"; }
+.bi-file-earmark-person-fill::before { content: "\f378"; }
+.bi-file-earmark-person::before { content: "\f379"; }
+.bi-file-earmark-play-fill::before { content: "\f37a"; }
+.bi-file-earmark-play::before { content: "\f37b"; }
+.bi-file-earmark-plus-fill::before { content: "\f37c"; }
+.bi-file-earmark-plus::before { content: "\f37d"; }
+.bi-file-earmark-post-fill::before { content: "\f37e"; }
+.bi-file-earmark-post::before { content: "\f37f"; }
+.bi-file-earmark-ppt-fill::before { content: "\f380"; }
+.bi-file-earmark-ppt::before { content: "\f381"; }
+.bi-file-earmark-richtext-fill::before { content: "\f382"; }
+.bi-file-earmark-richtext::before { content: "\f383"; }
+.bi-file-earmark-ruled-fill::before { content: "\f384"; }
+.bi-file-earmark-ruled::before { content: "\f385"; }
+.bi-file-earmark-slides-fill::before { content: "\f386"; }
+.bi-file-earmark-slides::before { content: "\f387"; }
+.bi-file-earmark-spreadsheet-fill::before { content: "\f388"; }
+.bi-file-earmark-spreadsheet::before { content: "\f389"; }
+.bi-file-earmark-text-fill::before { content: "\f38a"; }
+.bi-file-earmark-text::before { content: "\f38b"; }
+.bi-file-earmark-word-fill::before { content: "\f38c"; }
+.bi-file-earmark-word::before { content: "\f38d"; }
+.bi-file-earmark-x-fill::before { content: "\f38e"; }
+.bi-file-earmark-x::before { content: "\f38f"; }
+.bi-file-earmark-zip-fill::before { content: "\f390"; }
+.bi-file-earmark-zip::before { content: "\f391"; }
+.bi-file-earmark::before { content: "\f392"; }
+.bi-file-easel-fill::before { content: "\f393"; }
+.bi-file-easel::before { content: "\f394"; }
+.bi-file-excel-fill::before { content: "\f395"; }
+.bi-file-excel::before { content: "\f396"; }
+.bi-file-fill::before { content: "\f397"; }
+.bi-file-font-fill::before { content: "\f398"; }
+.bi-file-font::before { content: "\f399"; }
+.bi-file-image-fill::before { content: "\f39a"; }
+.bi-file-image::before { content: "\f39b"; }
+.bi-file-lock-fill::before { content: "\f39c"; }
+.bi-file-lock::before { content: "\f39d"; }
+.bi-file-lock2-fill::before { content: "\f39e"; }
+.bi-file-lock2::before { content: "\f39f"; }
+.bi-file-medical-fill::before { content: "\f3a0"; }
+.bi-file-medical::before { content: "\f3a1"; }
+.bi-file-minus-fill::before { content: "\f3a2"; }
+.bi-file-minus::before { content: "\f3a3"; }
+.bi-file-music-fill::before { content: "\f3a4"; }
+.bi-file-music::before { content: "\f3a5"; }
+.bi-file-person-fill::before { content: "\f3a6"; }
+.bi-file-person::before { content: "\f3a7"; }
+.bi-file-play-fill::before { content: "\f3a8"; }
+.bi-file-play::before { content: "\f3a9"; }
+.bi-file-plus-fill::before { content: "\f3aa"; }
+.bi-file-plus::before { content: "\f3ab"; }
+.bi-file-post-fill::before { content: "\f3ac"; }
+.bi-file-post::before { content: "\f3ad"; }
+.bi-file-ppt-fill::before { content: "\f3ae"; }
+.bi-file-ppt::before { content: "\f3af"; }
+.bi-file-richtext-fill::before { content: "\f3b0"; }
+.bi-file-richtext::before { content: "\f3b1"; }
+.bi-file-ruled-fill::before { content: "\f3b2"; }
+.bi-file-ruled::before { content: "\f3b3"; }
+.bi-file-slides-fill::before { content: "\f3b4"; }
+.bi-file-slides::before { content: "\f3b5"; }
+.bi-file-spreadsheet-fill::before { content: "\f3b6"; }
+.bi-file-spreadsheet::before { content: "\f3b7"; }
+.bi-file-text-fill::before { content: "\f3b8"; }
+.bi-file-text::before { content: "\f3b9"; }
+.bi-file-word-fill::before { content: "\f3ba"; }
+.bi-file-word::before { content: "\f3bb"; }
+.bi-file-x-fill::before { content: "\f3bc"; }
+.bi-file-x::before { content: "\f3bd"; }
+.bi-file-zip-fill::before { content: "\f3be"; }
+.bi-file-zip::before { content: "\f3bf"; }
+.bi-file::before { content: "\f3c0"; }
+.bi-files-alt::before { content: "\f3c1"; }
+.bi-files::before { content: "\f3c2"; }
+.bi-film::before { content: "\f3c3"; }
+.bi-filter-circle-fill::before { content: "\f3c4"; }
+.bi-filter-circle::before { content: "\f3c5"; }
+.bi-filter-left::before { content: "\f3c6"; }
+.bi-filter-right::before { content: "\f3c7"; }
+.bi-filter-square-fill::before { content: "\f3c8"; }
+.bi-filter-square::before { content: "\f3c9"; }
+.bi-filter::before { content: "\f3ca"; }
+.bi-flag-fill::before { content: "\f3cb"; }
+.bi-flag::before { content: "\f3cc"; }
+.bi-flower1::before { content: "\f3cd"; }
+.bi-flower2::before { content: "\f3ce"; }
+.bi-flower3::before { content: "\f3cf"; }
+.bi-folder-check::before { content: "\f3d0"; }
+.bi-folder-fill::before { content: "\f3d1"; }
+.bi-folder-minus::before { content: "\f3d2"; }
+.bi-folder-plus::before { content: "\f3d3"; }
+.bi-folder-symlink-fill::before { content: "\f3d4"; }
+.bi-folder-symlink::before { content: "\f3d5"; }
+.bi-folder-x::before { content: "\f3d6"; }
+.bi-folder::before { content: "\f3d7"; }
+.bi-folder2-open::before { content: "\f3d8"; }
+.bi-folder2::before { content: "\f3d9"; }
+.bi-fonts::before { content: "\f3da"; }
+.bi-forward-fill::before { content: "\f3db"; }
+.bi-forward::before { content: "\f3dc"; }
+.bi-front::before { content: "\f3dd"; }
+.bi-fullscreen-exit::before { content: "\f3de"; }
+.bi-fullscreen::before { content: "\f3df"; }
+.bi-funnel-fill::before { content: "\f3e0"; }
+.bi-funnel::before { content: "\f3e1"; }
+.bi-gear-fill::before { content: "\f3e2"; }
+.bi-gear-wide-connected::before { content: "\f3e3"; }
+.bi-gear-wide::before { content: "\f3e4"; }
+.bi-gear::before { content: "\f3e5"; }
+.bi-gem::before { content: "\f3e6"; }
+.bi-geo-alt-fill::before { content: "\f3e7"; }
+.bi-geo-alt::before { content: "\f3e8"; }
+.bi-geo-fill::before { content: "\f3e9"; }
+.bi-geo::before { content: "\f3ea"; }
+.bi-gift-fill::before { content: "\f3eb"; }
+.bi-gift::before { content: "\f3ec"; }
+.bi-github::before { content: "\f3ed"; }
+.bi-globe::before { content: "\f3ee"; }
+.bi-globe2::before { content: "\f3ef"; }
+.bi-google::before { content: "\f3f0"; }
+.bi-graph-down::before { content: "\f3f1"; }
+.bi-graph-up::before { content: "\f3f2"; }
+.bi-grid-1x2-fill::before { content: "\f3f3"; }
+.bi-grid-1x2::before { content: "\f3f4"; }
+.bi-grid-3x2-gap-fill::before { content: "\f3f5"; }
+.bi-grid-3x2-gap::before { content: "\f3f6"; }
+.bi-grid-3x2::before { content: "\f3f7"; }
+.bi-grid-3x3-gap-fill::before { content: "\f3f8"; }
+.bi-grid-3x3-gap::before { content: "\f3f9"; }
+.bi-grid-3x3::before { content: "\f3fa"; }
+.bi-grid-fill::before { content: "\f3fb"; }
+.bi-grid::before { content: "\f3fc"; }
+.bi-grip-horizontal::before { content: "\f3fd"; }
+.bi-grip-vertical::before { content: "\f3fe"; }
+.bi-hammer::before { content: "\f3ff"; }
+.bi-hand-index-fill::before { content: "\f400"; }
+.bi-hand-index-thumb-fill::before { content: "\f401"; }
+.bi-hand-index-thumb::before { content: "\f402"; }
+.bi-hand-index::before { content: "\f403"; }
+.bi-hand-thumbs-down-fill::before { content: "\f404"; }
+.bi-hand-thumbs-down::before { content: "\f405"; }
+.bi-hand-thumbs-up-fill::before { content: "\f406"; }
+.bi-hand-thumbs-up::before { content: "\f407"; }
+.bi-handbag-fill::before { content: "\f408"; }
+.bi-handbag::before { content: "\f409"; }
+.bi-hash::before { content: "\f40a"; }
+.bi-hdd-fill::before { content: "\f40b"; }
+.bi-hdd-network-fill::before { content: "\f40c"; }
+.bi-hdd-network::before { content: "\f40d"; }
+.bi-hdd-rack-fill::before { content: "\f40e"; }
+.bi-hdd-rack::before { content: "\f40f"; }
+.bi-hdd-stack-fill::before { content: "\f410"; }
+.bi-hdd-stack::before { content: "\f411"; }
+.bi-hdd::before { content: "\f412"; }
+.bi-headphones::before { content: "\f413"; }
+.bi-headset::before { content: "\f414"; }
+.bi-heart-fill::before { content: "\f415"; }
+.bi-heart-half::before { content: "\f416"; }
+.bi-heart::before { content: "\f417"; }
+.bi-heptagon-fill::before { content: "\f418"; }
+.bi-heptagon-half::before { content: "\f419"; }
+.bi-heptagon::before { content: "\f41a"; }
+.bi-hexagon-fill::before { content: "\f41b"; }
+.bi-hexagon-half::before { content: "\f41c"; }
+.bi-hexagon::before { content: "\f41d"; }
+.bi-hourglass-bottom::before { content: "\f41e"; }
+.bi-hourglass-split::before { content: "\f41f"; }
+.bi-hourglass-top::before { content: "\f420"; }
+.bi-hourglass::before { content: "\f421"; }
+.bi-house-door-fill::before { content: "\f422"; }
+.bi-house-door::before { content: "\f423"; }
+.bi-house-fill::before { content: "\f424"; }
+.bi-house::before { content: "\f425"; }
+.bi-hr::before { content: "\f426"; }
+.bi-hurricane::before { content: "\f427"; }
+.bi-image-alt::before { content: "\f428"; }
+.bi-image-fill::before { content: "\f429"; }
+.bi-image::before { content: "\f42a"; }
+.bi-images::before { content: "\f42b"; }
+.bi-inbox-fill::before { content: "\f42c"; }
+.bi-inbox::before { content: "\f42d"; }
+.bi-inboxes-fill::before { content: "\f42e"; }
+.bi-inboxes::before { content: "\f42f"; }
+.bi-info-circle-fill::before { content: "\f430"; }
+.bi-info-circle::before { content: "\f431"; }
+.bi-info-square-fill::before { content: "\f432"; }
+.bi-info-square::before { content: "\f433"; }
+.bi-info::before { content: "\f434"; }
+.bi-input-cursor-text::before { content: "\f435"; }
+.bi-input-cursor::before { content: "\f436"; }
+.bi-instagram::before { content: "\f437"; }
+.bi-intersect::before { content: "\f438"; }
+.bi-journal-album::before { content: "\f439"; }
+.bi-journal-arrow-down::before { content: "\f43a"; }
+.bi-journal-arrow-up::before { content: "\f43b"; }
+.bi-journal-bookmark-fill::before { content: "\f43c"; }
+.bi-journal-bookmark::before { content: "\f43d"; }
+.bi-journal-check::before { content: "\f43e"; }
+.bi-journal-code::before { content: "\f43f"; }
+.bi-journal-medical::before { content: "\f440"; }
+.bi-journal-minus::before { content: "\f441"; }
+.bi-journal-plus::before { content: "\f442"; }
+.bi-journal-richtext::before { content: "\f443"; }
+.bi-journal-text::before { content: "\f444"; }
+.bi-journal-x::before { content: "\f445"; }
+.bi-journal::before { content: "\f446"; }
+.bi-journals::before { content: "\f447"; }
+.bi-joystick::before { content: "\f448"; }
+.bi-justify-left::before { content: "\f449"; }
+.bi-justify-right::before { content: "\f44a"; }
+.bi-justify::before { content: "\f44b"; }
+.bi-kanban-fill::before { content: "\f44c"; }
+.bi-kanban::before { content: "\f44d"; }
+.bi-key-fill::before { content: "\f44e"; }
+.bi-key::before { content: "\f44f"; }
+.bi-keyboard-fill::before { content: "\f450"; }
+.bi-keyboard::before { content: "\f451"; }
+.bi-ladder::before { content: "\f452"; }
+.bi-lamp-fill::before { content: "\f453"; }
+.bi-lamp::before { content: "\f454"; }
+.bi-laptop-fill::before { content: "\f455"; }
+.bi-laptop::before { content: "\f456"; }
+.bi-layer-backward::before { content: "\f457"; }
+.bi-layer-forward::before { content: "\f458"; }
+.bi-layers-fill::before { content: "\f459"; }
+.bi-layers-half::before { content: "\f45a"; }
+.bi-layers::before { content: "\f45b"; }
+.bi-layout-sidebar-inset-reverse::before { content: "\f45c"; }
+.bi-layout-sidebar-inset::before { content: "\f45d"; }
+.bi-layout-sidebar-reverse::before { content: "\f45e"; }
+.bi-layout-sidebar::before { content: "\f45f"; }
+.bi-layout-split::before { content: "\f460"; }
+.bi-layout-text-sidebar-reverse::before { content: "\f461"; }
+.bi-layout-text-sidebar::before { content: "\f462"; }
+.bi-layout-text-window-reverse::before { content: "\f463"; }
+.bi-layout-text-window::before { content: "\f464"; }
+.bi-layout-three-columns::before { content: "\f465"; }
+.bi-layout-wtf::before { content: "\f466"; }
+.bi-life-preserver::before { content: "\f467"; }
+.bi-lightbulb-fill::before { content: "\f468"; }
+.bi-lightbulb-off-fill::before { content: "\f469"; }
+.bi-lightbulb-off::before { content: "\f46a"; }
+.bi-lightbulb::before { content: "\f46b"; }
+.bi-lightning-charge-fill::before { content: "\f46c"; }
+.bi-lightning-charge::before { content: "\f46d"; }
+.bi-lightning-fill::before { content: "\f46e"; }
+.bi-lightning::before { content: "\f46f"; }
+.bi-link-45deg::before { content: "\f470"; }
+.bi-link::before { content: "\f471"; }
+.bi-linkedin::before { content: "\f472"; }
+.bi-list-check::before { content: "\f473"; }
+.bi-list-nested::before { content: "\f474"; }
+.bi-list-ol::before { content: "\f475"; }
+.bi-list-stars::before { content: "\f476"; }
+.bi-list-task::before { content: "\f477"; }
+.bi-list-ul::before { content: "\f478"; }
+.bi-list::before { content: "\f479"; }
+.bi-lock-fill::before { content: "\f47a"; }
+.bi-lock::before { content: "\f47b"; }
+.bi-mailbox::before { content: "\f47c"; }
+.bi-mailbox2::before { content: "\f47d"; }
+.bi-map-fill::before { content: "\f47e"; }
+.bi-map::before { content: "\f47f"; }
+.bi-markdown-fill::before { content: "\f480"; }
+.bi-markdown::before { content: "\f481"; }
+.bi-mask::before { content: "\f482"; }
+.bi-megaphone-fill::before { content: "\f483"; }
+.bi-megaphone::before { content: "\f484"; }
+.bi-menu-app-fill::before { content: "\f485"; }
+.bi-menu-app::before { content: "\f486"; }
+.bi-menu-button-fill::before { content: "\f487"; }
+.bi-menu-button-wide-fill::before { content: "\f488"; }
+.bi-menu-button-wide::before { content: "\f489"; }
+.bi-menu-button::before { content: "\f48a"; }
+.bi-menu-down::before { content: "\f48b"; }
+.bi-menu-up::before { content: "\f48c"; }
+.bi-mic-fill::before { content: "\f48d"; }
+.bi-mic-mute-fill::before { content: "\f48e"; }
+.bi-mic-mute::before { content: "\f48f"; }
+.bi-mic::before { content: "\f490"; }
+.bi-minecart-loaded::before { content: "\f491"; }
+.bi-minecart::before { content: "\f492"; }
+.bi-moisture::before { content: "\f493"; }
+.bi-moon-fill::before { content: "\f494"; }
+.bi-moon-stars-fill::before { content: "\f495"; }
+.bi-moon-stars::before { content: "\f496"; }
+.bi-moon::before { content: "\f497"; }
+.bi-mouse-fill::before { content: "\f498"; }
+.bi-mouse::before { content: "\f499"; }
+.bi-mouse2-fill::before { content: "\f49a"; }
+.bi-mouse2::before { content: "\f49b"; }
+.bi-mouse3-fill::before { content: "\f49c"; }
+.bi-mouse3::before { content: "\f49d"; }
+.bi-music-note-beamed::before { content: "\f49e"; }
+.bi-music-note-list::before { content: "\f49f"; }
+.bi-music-note::before { content: "\f4a0"; }
+.bi-music-player-fill::before { content: "\f4a1"; }
+.bi-music-player::before { content: "\f4a2"; }
+.bi-newspaper::before { content: "\f4a3"; }
+.bi-node-minus-fill::before { content: "\f4a4"; }
+.bi-node-minus::before { content: "\f4a5"; }
+.bi-node-plus-fill::before { content: "\f4a6"; }
+.bi-node-plus::before { content: "\f4a7"; }
+.bi-nut-fill::before { content: "\f4a8"; }
+.bi-nut::before { content: "\f4a9"; }
+.bi-octagon-fill::before { content: "\f4aa"; }
+.bi-octagon-half::before { content: "\f4ab"; }
+.bi-octagon::before { content: "\f4ac"; }
+.bi-option::before { content: "\f4ad"; }
+.bi-outlet::before { content: "\f4ae"; }
+.bi-paint-bucket::before { content: "\f4af"; }
+.bi-palette-fill::before { content: "\f4b0"; }
+.bi-palette::before { content: "\f4b1"; }
+.bi-palette2::before { content: "\f4b2"; }
+.bi-paperclip::before { content: "\f4b3"; }
+.bi-paragraph::before { content: "\f4b4"; }
+.bi-patch-check-fill::before { content: "\f4b5"; }
+.bi-patch-check::before { content: "\f4b6"; }
+.bi-patch-exclamation-fill::before { content: "\f4b7"; }
+.bi-patch-exclamation::before { content: "\f4b8"; }
+.bi-patch-minus-fill::before { content: "\f4b9"; }
+.bi-patch-minus::before { content: "\f4ba"; }
+.bi-patch-plus-fill::before { content: "\f4bb"; }
+.bi-patch-plus::before { content: "\f4bc"; }
+.bi-patch-question-fill::before { content: "\f4bd"; }
+.bi-patch-question::before { content: "\f4be"; }
+.bi-pause-btn-fill::before { content: "\f4bf"; }
+.bi-pause-btn::before { content: "\f4c0"; }
+.bi-pause-circle-fill::before { content: "\f4c1"; }
+.bi-pause-circle::before { content: "\f4c2"; }
+.bi-pause-fill::before { content: "\f4c3"; }
+.bi-pause::before { content: "\f4c4"; }
+.bi-peace-fill::before { content: "\f4c5"; }
+.bi-peace::before { content: "\f4c6"; }
+.bi-pen-fill::before { content: "\f4c7"; }
+.bi-pen::before { content: "\f4c8"; }
+.bi-pencil-fill::before { content: "\f4c9"; }
+.bi-pencil-square::before { content: "\f4ca"; }
+.bi-pencil::before { content: "\f4cb"; }
+.bi-pentagon-fill::before { content: "\f4cc"; }
+.bi-pentagon-half::before { content: "\f4cd"; }
+.bi-pentagon::before { content: "\f4ce"; }
+.bi-people-fill::before { content: "\f4cf"; }
+.bi-people::before { content: "\f4d0"; }
+.bi-percent::before { content: "\f4d1"; }
+.bi-person-badge-fill::before { content: "\f4d2"; }
+.bi-person-badge::before { content: "\f4d3"; }
+.bi-person-bounding-box::before { content: "\f4d4"; }
+.bi-person-check-fill::before { content: "\f4d5"; }
+.bi-person-check::before { content: "\f4d6"; }
+.bi-person-circle::before { content: "\f4d7"; }
+.bi-person-dash-fill::before { content: "\f4d8"; }
+.bi-person-dash::before { content: "\f4d9"; }
+.bi-person-fill::before { content: "\f4da"; }
+.bi-person-lines-fill::before { content: "\f4db"; }
+.bi-person-plus-fill::before { content: "\f4dc"; }
+.bi-person-plus::before { content: "\f4dd"; }
+.bi-person-square::before { content: "\f4de"; }
+.bi-person-x-fill::before { content: "\f4df"; }
+.bi-person-x::before { content: "\f4e0"; }
+.bi-person::before { content: "\f4e1"; }
+.bi-phone-fill::before { content: "\f4e2"; }
+.bi-phone-landscape-fill::before { content: "\f4e3"; }
+.bi-phone-landscape::before { content: "\f4e4"; }
+.bi-phone-vibrate-fill::before { content: "\f4e5"; }
+.bi-phone-vibrate::before { content: "\f4e6"; }
+.bi-phone::before { content: "\f4e7"; }
+.bi-pie-chart-fill::before { content: "\f4e8"; }
+.bi-pie-chart::before { content: "\f4e9"; }
+.bi-pin-angle-fill::before { content: "\f4ea"; }
+.bi-pin-angle::before { content: "\f4eb"; }
+.bi-pin-fill::before { content: "\f4ec"; }
+.bi-pin::before { content: "\f4ed"; }
+.bi-pip-fill::before { content: "\f4ee"; }
+.bi-pip::before { content: "\f4ef"; }
+.bi-play-btn-fill::before { content: "\f4f0"; }
+.bi-play-btn::before { content: "\f4f1"; }
+.bi-play-circle-fill::before { content: "\f4f2"; }
+.bi-play-circle::before { content: "\f4f3"; }
+.bi-play-fill::before { content: "\f4f4"; }
+.bi-play::before { content: "\f4f5"; }
+.bi-plug-fill::before { content: "\f4f6"; }
+.bi-plug::before { content: "\f4f7"; }
+.bi-plus-circle-dotted::before { content: "\f4f8"; }
+.bi-plus-circle-fill::before { content: "\f4f9"; }
+.bi-plus-circle::before { content: "\f4fa"; }
+.bi-plus-square-dotted::before { content: "\f4fb"; }
+.bi-plus-square-fill::before { content: "\f4fc"; }
+.bi-plus-square::before { content: "\f4fd"; }
+.bi-plus::before { content: "\f4fe"; }
+.bi-power::before { content: "\f4ff"; }
+.bi-printer-fill::before { content: "\f500"; }
+.bi-printer::before { content: "\f501"; }
+.bi-puzzle-fill::before { content: "\f502"; }
+.bi-puzzle::before { content: "\f503"; }
+.bi-question-circle-fill::before { content: "\f504"; }
+.bi-question-circle::before { content: "\f505"; }
+.bi-question-diamond-fill::before { content: "\f506"; }
+.bi-question-diamond::before { content: "\f507"; }
+.bi-question-octagon-fill::before { content: "\f508"; }
+.bi-question-octagon::before { content: "\f509"; }
+.bi-question-square-fill::before { content: "\f50a"; }
+.bi-question-square::before { content: "\f50b"; }
+.bi-question::before { content: "\f50c"; }
+.bi-rainbow::before { content: "\f50d"; }
+.bi-receipt-cutoff::before { content: "\f50e"; }
+.bi-receipt::before { content: "\f50f"; }
+.bi-reception-0::before { content: "\f510"; }
+.bi-reception-1::before { content: "\f511"; }
+.bi-reception-2::before { content: "\f512"; }
+.bi-reception-3::before { content: "\f513"; }
+.bi-reception-4::before { content: "\f514"; }
+.bi-record-btn-fill::before { content: "\f515"; }
+.bi-record-btn::before { content: "\f516"; }
+.bi-record-circle-fill::before { content: "\f517"; }
+.bi-record-circle::before { content: "\f518"; }
+.bi-record-fill::before { content: "\f519"; }
+.bi-record::before { content: "\f51a"; }
+.bi-record2-fill::before { content: "\f51b"; }
+.bi-record2::before { content: "\f51c"; }
+.bi-reply-all-fill::before { content: "\f51d"; }
+.bi-reply-all::before { content: "\f51e"; }
+.bi-reply-fill::before { content: "\f51f"; }
+.bi-reply::before { content: "\f520"; }
+.bi-rss-fill::before { content: "\f521"; }
+.bi-rss::before { content: "\f522"; }
+.bi-rulers::before { content: "\f523"; }
+.bi-save-fill::before { content: "\f524"; }
+.bi-save::before { content: "\f525"; }
+.bi-save2-fill::before { content: "\f526"; }
+.bi-save2::before { content: "\f527"; }
+.bi-scissors::before { content: "\f528"; }
+.bi-screwdriver::before { content: "\f529"; }
+.bi-search::before { content: "\f52a"; }
+.bi-segmented-nav::before { content: "\f52b"; }
+.bi-server::before { content: "\f52c"; }
+.bi-share-fill::before { content: "\f52d"; }
+.bi-share::before { content: "\f52e"; }
+.bi-shield-check::before { content: "\f52f"; }
+.bi-shield-exclamation::before { content: "\f530"; }
+.bi-shield-fill-check::before { content: "\f531"; }
+.bi-shield-fill-exclamation::before { content: "\f532"; }
+.bi-shield-fill-minus::before { content: "\f533"; }
+.bi-shield-fill-plus::before { content: "\f534"; }
+.bi-shield-fill-x::before { content: "\f535"; }
+.bi-shield-fill::before { content: "\f536"; }
+.bi-shield-lock-fill::before { content: "\f537"; }
+.bi-shield-lock::before { content: "\f538"; }
+.bi-shield-minus::before { content: "\f539"; }
+.bi-shield-plus::before { content: "\f53a"; }
+.bi-shield-shaded::before { content: "\f53b"; }
+.bi-shield-slash-fill::before { content: "\f53c"; }
+.bi-shield-slash::before { content: "\f53d"; }
+.bi-shield-x::before { content: "\f53e"; }
+.bi-shield::before { content: "\f53f"; }
+.bi-shift-fill::before { content: "\f540"; }
+.bi-shift::before { content: "\f541"; }
+.bi-shop-window::before { content: "\f542"; }
+.bi-shop::before { content: "\f543"; }
+.bi-shuffle::before { content: "\f544"; }
+.bi-signpost-2-fill::before { content: "\f545"; }
+.bi-signpost-2::before { content: "\f546"; }
+.bi-signpost-fill::before { content: "\f547"; }
+.bi-signpost-split-fill::before { content: "\f548"; }
+.bi-signpost-split::before { content: "\f549"; }
+.bi-signpost::before { content: "\f54a"; }
+.bi-sim-fill::before { content: "\f54b"; }
+.bi-sim::before { content: "\f54c"; }
+.bi-skip-backward-btn-fill::before { content: "\f54d"; }
+.bi-skip-backward-btn::before { content: "\f54e"; }
+.bi-skip-backward-circle-fill::before { content: "\f54f"; }
+.bi-skip-backward-circle::before { content: "\f550"; }
+.bi-skip-backward-fill::before { content: "\f551"; }
+.bi-skip-backward::before { content: "\f552"; }
+.bi-skip-end-btn-fill::before { content: "\f553"; }
+.bi-skip-end-btn::before { content: "\f554"; }
+.bi-skip-end-circle-fill::before { content: "\f555"; }
+.bi-skip-end-circle::before { content: "\f556"; }
+.bi-skip-end-fill::before { content: "\f557"; }
+.bi-skip-end::before { content: "\f558"; }
+.bi-skip-forward-btn-fill::before { content: "\f559"; }
+.bi-skip-forward-btn::before { content: "\f55a"; }
+.bi-skip-forward-circle-fill::before { content: "\f55b"; }
+.bi-skip-forward-circle::before { content: "\f55c"; }
+.bi-skip-forward-fill::before { content: "\f55d"; }
+.bi-skip-forward::before { content: "\f55e"; }
+.bi-skip-start-btn-fill::before { content: "\f55f"; }
+.bi-skip-start-btn::before { content: "\f560"; }
+.bi-skip-start-circle-fill::before { content: "\f561"; }
+.bi-skip-start-circle::before { content: "\f562"; }
+.bi-skip-start-fill::before { content: "\f563"; }
+.bi-skip-start::before { content: "\f564"; }
+.bi-slack::before { content: "\f565"; }
+.bi-slash-circle-fill::before { content: "\f566"; }
+.bi-slash-circle::before { content: "\f567"; }
+.bi-slash-square-fill::before { content: "\f568"; }
+.bi-slash-square::before { content: "\f569"; }
+.bi-slash::before { content: "\f56a"; }
+.bi-sliders::before { content: "\f56b"; }
+.bi-smartwatch::before { content: "\f56c"; }
+.bi-snow::before { content: "\f56d"; }
+.bi-snow2::before { content: "\f56e"; }
+.bi-snow3::before { content: "\f56f"; }
+.bi-sort-alpha-down-alt::before { content: "\f570"; }
+.bi-sort-alpha-down::before { content: "\f571"; }
+.bi-sort-alpha-up-alt::before { content: "\f572"; }
+.bi-sort-alpha-up::before { content: "\f573"; }
+.bi-sort-down-alt::before { content: "\f574"; }
+.bi-sort-down::before { content: "\f575"; }
+.bi-sort-numeric-down-alt::before { content: "\f576"; }
+.bi-sort-numeric-down::before { content: "\f577"; }
+.bi-sort-numeric-up-alt::before { content: "\f578"; }
+.bi-sort-numeric-up::before { content: "\f579"; }
+.bi-sort-up-alt::before { content: "\f57a"; }
+.bi-sort-up::before { content: "\f57b"; }
+.bi-soundwave::before { content: "\f57c"; }
+.bi-speaker-fill::before { content: "\f57d"; }
+.bi-speaker::before { content: "\f57e"; }
+.bi-speedometer::before { content: "\f57f"; }
+.bi-speedometer2::before { content: "\f580"; }
+.bi-spellcheck::before { content: "\f581"; }
+.bi-square-fill::before { content: "\f582"; }
+.bi-square-half::before { content: "\f583"; }
+.bi-square::before { content: "\f584"; }
+.bi-stack::before { content: "\f585"; }
+.bi-star-fill::before { content: "\f586"; }
+.bi-star-half::before { content: "\f587"; }
+.bi-star::before { content: "\f588"; }
+.bi-stars::before { content: "\f589"; }
+.bi-stickies-fill::before { content: "\f58a"; }
+.bi-stickies::before { content: "\f58b"; }
+.bi-sticky-fill::before { content: "\f58c"; }
+.bi-sticky::before { content: "\f58d"; }
+.bi-stop-btn-fill::before { content: "\f58e"; }
+.bi-stop-btn::before { content: "\f58f"; }
+.bi-stop-circle-fill::before { content: "\f590"; }
+.bi-stop-circle::before { content: "\f591"; }
+.bi-stop-fill::before { content: "\f592"; }
+.bi-stop::before { content: "\f593"; }
+.bi-stoplights-fill::before { content: "\f594"; }
+.bi-stoplights::before { content: "\f595"; }
+.bi-stopwatch-fill::before { content: "\f596"; }
+.bi-stopwatch::before { content: "\f597"; }
+.bi-subtract::before { content: "\f598"; }
+.bi-suit-club-fill::before { content: "\f599"; }
+.bi-suit-club::before { content: "\f59a"; }
+.bi-suit-diamond-fill::before { content: "\f59b"; }
+.bi-suit-diamond::before { content: "\f59c"; }
+.bi-suit-heart-fill::before { content: "\f59d"; }
+.bi-suit-heart::before { content: "\f59e"; }
+.bi-suit-spade-fill::before { content: "\f59f"; }
+.bi-suit-spade::before { content: "\f5a0"; }
+.bi-sun-fill::before { content: "\f5a1"; }
+.bi-sun::before { content: "\f5a2"; }
+.bi-sunglasses::before { content: "\f5a3"; }
+.bi-sunrise-fill::before { content: "\f5a4"; }
+.bi-sunrise::before { content: "\f5a5"; }
+.bi-sunset-fill::before { content: "\f5a6"; }
+.bi-sunset::before { content: "\f5a7"; }
+.bi-symmetry-horizontal::before { content: "\f5a8"; }
+.bi-symmetry-vertical::before { content: "\f5a9"; }
+.bi-table::before { content: "\f5aa"; }
+.bi-tablet-fill::before { content: "\f5ab"; }
+.bi-tablet-landscape-fill::before { content: "\f5ac"; }
+.bi-tablet-landscape::before { content: "\f5ad"; }
+.bi-tablet::before { content: "\f5ae"; }
+.bi-tag-fill::before { content: "\f5af"; }
+.bi-tag::before { content: "\f5b0"; }
+.bi-tags-fill::before { content: "\f5b1"; }
+.bi-tags::before { content: "\f5b2"; }
+.bi-telegram::before { content: "\f5b3"; }
+.bi-telephone-fill::before { content: "\f5b4"; }
+.bi-telephone-forward-fill::before { content: "\f5b5"; }
+.bi-telephone-forward::before { content: "\f5b6"; }
+.bi-telephone-inbound-fill::before { content: "\f5b7"; }
+.bi-telephone-inbound::before { content: "\f5b8"; }
+.bi-telephone-minus-fill::before { content: "\f5b9"; }
+.bi-telephone-minus::before { content: "\f5ba"; }
+.bi-telephone-outbound-fill::before { content: "\f5bb"; }
+.bi-telephone-outbound::before { content: "\f5bc"; }
+.bi-telephone-plus-fill::before { content: "\f5bd"; }
+.bi-telephone-plus::before { content: "\f5be"; }
+.bi-telephone-x-fill::before { content: "\f5bf"; }
+.bi-telephone-x::before { content: "\f5c0"; }
+.bi-telephone::before { content: "\f5c1"; }
+.bi-terminal-fill::before { content: "\f5c2"; }
+.bi-terminal::before { content: "\f5c3"; }
+.bi-text-center::before { content: "\f5c4"; }
+.bi-text-indent-left::before { content: "\f5c5"; }
+.bi-text-indent-right::before { content: "\f5c6"; }
+.bi-text-left::before { content: "\f5c7"; }
+.bi-text-paragraph::before { content: "\f5c8"; }
+.bi-text-right::before { content: "\f5c9"; }
+.bi-textarea-resize::before { content: "\f5ca"; }
+.bi-textarea-t::before { content: "\f5cb"; }
+.bi-textarea::before { content: "\f5cc"; }
+.bi-thermometer-half::before { content: "\f5cd"; }
+.bi-thermometer-high::before { content: "\f5ce"; }
+.bi-thermometer-low::before { content: "\f5cf"; }
+.bi-thermometer-snow::before { content: "\f5d0"; }
+.bi-thermometer-sun::before { content: "\f5d1"; }
+.bi-thermometer::before { content: "\f5d2"; }
+.bi-three-dots-vertical::before { content: "\f5d3"; }
+.bi-three-dots::before { content: "\f5d4"; }
+.bi-toggle-off::before { content: "\f5d5"; }
+.bi-toggle-on::before { content: "\f5d6"; }
+.bi-toggle2-off::before { content: "\f5d7"; }
+.bi-toggle2-on::before { content: "\f5d8"; }
+.bi-toggles::before { content: "\f5d9"; }
+.bi-toggles2::before { content: "\f5da"; }
+.bi-tools::before { content: "\f5db"; }
+.bi-tornado::before { content: "\f5dc"; }
+.bi-trash-fill::before { content: "\f5dd"; }
+.bi-trash::before { content: "\f5de"; }
+.bi-trash2-fill::before { content: "\f5df"; }
+.bi-trash2::before { content: "\f5e0"; }
+.bi-tree-fill::before { content: "\f5e1"; }
+.bi-tree::before { content: "\f5e2"; }
+.bi-triangle-fill::before { content: "\f5e3"; }
+.bi-triangle-half::before { content: "\f5e4"; }
+.bi-triangle::before { content: "\f5e5"; }
+.bi-trophy-fill::before { content: "\f5e6"; }
+.bi-trophy::before { content: "\f5e7"; }
+.bi-tropical-storm::before { content: "\f5e8"; }
+.bi-truck-flatbed::before { content: "\f5e9"; }
+.bi-truck::before { content: "\f5ea"; }
+.bi-tsunami::before { content: "\f5eb"; }
+.bi-tv-fill::before { content: "\f5ec"; }
+.bi-tv::before { content: "\f5ed"; }
+.bi-twitch::before { content: "\f5ee"; }
+.bi-twitter::before { content: "\f5ef"; }
+.bi-type-bold::before { content: "\f5f0"; }
+.bi-type-h1::before { content: "\f5f1"; }
+.bi-type-h2::before { content: "\f5f2"; }
+.bi-type-h3::before { content: "\f5f3"; }
+.bi-type-italic::before { content: "\f5f4"; }
+.bi-type-strikethrough::before { content: "\f5f5"; }
+.bi-type-underline::before { content: "\f5f6"; }
+.bi-type::before { content: "\f5f7"; }
+.bi-ui-checks-grid::before { content: "\f5f8"; }
+.bi-ui-checks::before { content: "\f5f9"; }
+.bi-ui-radios-grid::before { content: "\f5fa"; }
+.bi-ui-radios::before { content: "\f5fb"; }
+.bi-umbrella-fill::before { content: "\f5fc"; }
+.bi-umbrella::before { content: "\f5fd"; }
+.bi-union::before { content: "\f5fe"; }
+.bi-unlock-fill::before { content: "\f5ff"; }
+.bi-unlock::before { content: "\f600"; }
+.bi-upc-scan::before { content: "\f601"; }
+.bi-upc::before { content: "\f602"; }
+.bi-upload::before { content: "\f603"; }
+.bi-vector-pen::before { content: "\f604"; }
+.bi-view-list::before { content: "\f605"; }
+.bi-view-stacked::before { content: "\f606"; }
+.bi-vinyl-fill::before { content: "\f607"; }
+.bi-vinyl::before { content: "\f608"; }
+.bi-voicemail::before { content: "\f609"; }
+.bi-volume-down-fill::before { content: "\f60a"; }
+.bi-volume-down::before { content: "\f60b"; }
+.bi-volume-mute-fill::before { content: "\f60c"; }
+.bi-volume-mute::before { content: "\f60d"; }
+.bi-volume-off-fill::before { content: "\f60e"; }
+.bi-volume-off::before { content: "\f60f"; }
+.bi-volume-up-fill::before { content: "\f610"; }
+.bi-volume-up::before { content: "\f611"; }
+.bi-vr::before { content: "\f612"; }
+.bi-wallet-fill::before { content: "\f613"; }
+.bi-wallet::before { content: "\f614"; }
+.bi-wallet2::before { content: "\f615"; }
+.bi-watch::before { content: "\f616"; }
+.bi-water::before { content: "\f617"; }
+.bi-whatsapp::before { content: "\f618"; }
+.bi-wifi-1::before { content: "\f619"; }
+.bi-wifi-2::before { content: "\f61a"; }
+.bi-wifi-off::before { content: "\f61b"; }
+.bi-wifi::before { content: "\f61c"; }
+.bi-wind::before { content: "\f61d"; }
+.bi-window-dock::before { content: "\f61e"; }
+.bi-window-sidebar::before { content: "\f61f"; }
+.bi-window::before { content: "\f620"; }
+.bi-wrench::before { content: "\f621"; }
+.bi-x-circle-fill::before { content: "\f622"; }
+.bi-x-circle::before { content: "\f623"; }
+.bi-x-diamond-fill::before { content: "\f624"; }
+.bi-x-diamond::before { content: "\f625"; }
+.bi-x-octagon-fill::before { content: "\f626"; }
+.bi-x-octagon::before { content: "\f627"; }
+.bi-x-square-fill::before { content: "\f628"; }
+.bi-x-square::before { content: "\f629"; }
+.bi-x::before { content: "\f62a"; }
+.bi-youtube::before { content: "\f62b"; }
+.bi-zoom-in::before { content: "\f62c"; }
+.bi-zoom-out::before { content: "\f62d"; }
+.bi-bank::before { content: "\f62e"; }
+.bi-bank2::before { content: "\f62f"; }
+.bi-bell-slash-fill::before { content: "\f630"; }
+.bi-bell-slash::before { content: "\f631"; }
+.bi-cash-coin::before { content: "\f632"; }
+.bi-check-lg::before { content: "\f633"; }
+.bi-coin::before { content: "\f634"; }
+.bi-currency-bitcoin::before { content: "\f635"; }
+.bi-currency-dollar::before { content: "\f636"; }
+.bi-currency-euro::before { content: "\f637"; }
+.bi-currency-exchange::before { content: "\f638"; }
+.bi-currency-pound::before { content: "\f639"; }
+.bi-currency-yen::before { content: "\f63a"; }
+.bi-dash-lg::before { content: "\f63b"; }
+.bi-exclamation-lg::before { content: "\f63c"; }
+.bi-file-earmark-pdf-fill::before { content: "\f63d"; }
+.bi-file-earmark-pdf::before { content: "\f63e"; }
+.bi-file-pdf-fill::before { content: "\f63f"; }
+.bi-file-pdf::before { content: "\f640"; }
+.bi-gender-ambiguous::before { content: "\f641"; }
+.bi-gender-female::before { content: "\f642"; }
+.bi-gender-male::before { content: "\f643"; }
+.bi-gender-trans::before { content: "\f644"; }
+.bi-headset-vr::before { content: "\f645"; }
+.bi-info-lg::before { content: "\f646"; }
+.bi-mastodon::before { content: "\f647"; }
+.bi-messenger::before { content: "\f648"; }
+.bi-piggy-bank-fill::before { content: "\f649"; }
+.bi-piggy-bank::before { content: "\f64a"; }
+.bi-pin-map-fill::before { content: "\f64b"; }
+.bi-pin-map::before { content: "\f64c"; }
+.bi-plus-lg::before { content: "\f64d"; }
+.bi-question-lg::before { content: "\f64e"; }
+.bi-recycle::before { content: "\f64f"; }
+.bi-reddit::before { content: "\f650"; }
+.bi-safe-fill::before { content: "\f651"; }
+.bi-safe2-fill::before { content: "\f652"; }
+.bi-safe2::before { content: "\f653"; }
+.bi-sd-card-fill::before { content: "\f654"; }
+.bi-sd-card::before { content: "\f655"; }
+.bi-skype::before { content: "\f656"; }
+.bi-slash-lg::before { content: "\f657"; }
+.bi-translate::before { content: "\f658"; }
+.bi-x-lg::before { content: "\f659"; }
+.bi-safe::before { content: "\f65a"; }
+.bi-apple::before { content: "\f65b"; }
+.bi-microsoft::before { content: "\f65d"; }
+.bi-windows::before { content: "\f65e"; }
+.bi-behance::before { content: "\f65c"; }
+.bi-dribbble::before { content: "\f65f"; }
+.bi-line::before { content: "\f660"; }
+.bi-medium::before { content: "\f661"; }
+.bi-paypal::before { content: "\f662"; }
+.bi-pinterest::before { content: "\f663"; }
+.bi-signal::before { content: "\f664"; }
+.bi-snapchat::before { content: "\f665"; }
+.bi-spotify::before { content: "\f666"; }
+.bi-stack-overflow::before { content: "\f667"; }
+.bi-strava::before { content: "\f668"; }
+.bi-wordpress::before { content: "\f669"; }
+.bi-vimeo::before { content: "\f66a"; }
+.bi-activity::before { content: "\f66b"; }
+.bi-easel2-fill::before { content: "\f66c"; }
+.bi-easel2::before { content: "\f66d"; }
+.bi-easel3-fill::before { content: "\f66e"; }
+.bi-easel3::before { content: "\f66f"; }
+.bi-fan::before { content: "\f670"; }
+.bi-fingerprint::before { content: "\f671"; }
+.bi-graph-down-arrow::before { content: "\f672"; }
+.bi-graph-up-arrow::before { content: "\f673"; }
+.bi-hypnotize::before { content: "\f674"; }
+.bi-magic::before { content: "\f675"; }
+.bi-person-rolodex::before { content: "\f676"; }
+.bi-person-video::before { content: "\f677"; }
+.bi-person-video2::before { content: "\f678"; }
+.bi-person-video3::before { content: "\f679"; }
+.bi-person-workspace::before { content: "\f67a"; }
+.bi-radioactive::before { content: "\f67b"; }
+.bi-webcam-fill::before { content: "\f67c"; }
+.bi-webcam::before { content: "\f67d"; }
+.bi-yin-yang::before { content: "\f67e"; }
+.bi-bandaid-fill::before { content: "\f680"; }
+.bi-bandaid::before { content: "\f681"; }
+.bi-bluetooth::before { content: "\f682"; }
+.bi-body-text::before { content: "\f683"; }
+.bi-boombox::before { content: "\f684"; }
+.bi-boxes::before { content: "\f685"; }
+.bi-dpad-fill::before { content: "\f686"; }
+.bi-dpad::before { content: "\f687"; }
+.bi-ear-fill::before { content: "\f688"; }
+.bi-ear::before { content: "\f689"; }
+.bi-envelope-check-fill::before { content: "\f68b"; }
+.bi-envelope-check::before { content: "\f68c"; }
+.bi-envelope-dash-fill::before { content: "\f68e"; }
+.bi-envelope-dash::before { content: "\f68f"; }
+.bi-envelope-exclamation-fill::before { content: "\f691"; }
+.bi-envelope-exclamation::before { content: "\f692"; }
+.bi-envelope-plus-fill::before { content: "\f693"; }
+.bi-envelope-plus::before { content: "\f694"; }
+.bi-envelope-slash-fill::before { content: "\f696"; }
+.bi-envelope-slash::before { content: "\f697"; }
+.bi-envelope-x-fill::before { content: "\f699"; }
+.bi-envelope-x::before { content: "\f69a"; }
+.bi-explicit-fill::before { content: "\f69b"; }
+.bi-explicit::before { content: "\f69c"; }
+.bi-git::before { content: "\f69d"; }
+.bi-infinity::before { content: "\f69e"; }
+.bi-list-columns-reverse::before { content: "\f69f"; }
+.bi-list-columns::before { content: "\f6a0"; }
+.bi-meta::before { content: "\f6a1"; }
+.bi-nintendo-switch::before { content: "\f6a4"; }
+.bi-pc-display-horizontal::before { content: "\f6a5"; }
+.bi-pc-display::before { content: "\f6a6"; }
+.bi-pc-horizontal::before { content: "\f6a7"; }
+.bi-pc::before { content: "\f6a8"; }
+.bi-playstation::before { content: "\f6a9"; }
+.bi-plus-slash-minus::before { content: "\f6aa"; }
+.bi-projector-fill::before { content: "\f6ab"; }
+.bi-projector::before { content: "\f6ac"; }
+.bi-qr-code-scan::before { content: "\f6ad"; }
+.bi-qr-code::before { content: "\f6ae"; }
+.bi-quora::before { content: "\f6af"; }
+.bi-quote::before { content: "\f6b0"; }
+.bi-robot::before { content: "\f6b1"; }
+.bi-send-check-fill::before { content: "\f6b2"; }
+.bi-send-check::before { content: "\f6b3"; }
+.bi-send-dash-fill::before { content: "\f6b4"; }
+.bi-send-dash::before { content: "\f6b5"; }
+.bi-send-exclamation-fill::before { content: "\f6b7"; }
+.bi-send-exclamation::before { content: "\f6b8"; }
+.bi-send-fill::before { content: "\f6b9"; }
+.bi-send-plus-fill::before { content: "\f6ba"; }
+.bi-send-plus::before { content: "\f6bb"; }
+.bi-send-slash-fill::before { content: "\f6bc"; }
+.bi-send-slash::before { content: "\f6bd"; }
+.bi-send-x-fill::before { content: "\f6be"; }
+.bi-send-x::before { content: "\f6bf"; }
+.bi-send::before { content: "\f6c0"; }
+.bi-steam::before { content: "\f6c1"; }
+.bi-terminal-dash::before { content: "\f6c3"; }
+.bi-terminal-plus::before { content: "\f6c4"; }
+.bi-terminal-split::before { content: "\f6c5"; }
+.bi-ticket-detailed-fill::before { content: "\f6c6"; }
+.bi-ticket-detailed::before { content: "\f6c7"; }
+.bi-ticket-fill::before { content: "\f6c8"; }
+.bi-ticket-perforated-fill::before { content: "\f6c9"; }
+.bi-ticket-perforated::before { content: "\f6ca"; }
+.bi-ticket::before { content: "\f6cb"; }
+.bi-tiktok::before { content: "\f6cc"; }
+.bi-window-dash::before { content: "\f6cd"; }
+.bi-window-desktop::before { content: "\f6ce"; }
+.bi-window-fullscreen::before { content: "\f6cf"; }
+.bi-window-plus::before { content: "\f6d0"; }
+.bi-window-split::before { content: "\f6d1"; }
+.bi-window-stack::before { content: "\f6d2"; }
+.bi-window-x::before { content: "\f6d3"; }
+.bi-xbox::before { content: "\f6d4"; }
+.bi-ethernet::before { content: "\f6d5"; }
+.bi-hdmi-fill::before { content: "\f6d6"; }
+.bi-hdmi::before { content: "\f6d7"; }
+.bi-usb-c-fill::before { content: "\f6d8"; }
+.bi-usb-c::before { content: "\f6d9"; }
+.bi-usb-fill::before { content: "\f6da"; }
+.bi-usb-plug-fill::before { content: "\f6db"; }
+.bi-usb-plug::before { content: "\f6dc"; }
+.bi-usb-symbol::before { content: "\f6dd"; }
+.bi-usb::before { content: "\f6de"; }
+.bi-boombox-fill::before { content: "\f6df"; }
+.bi-displayport::before { content: "\f6e1"; }
+.bi-gpu-card::before { content: "\f6e2"; }
+.bi-memory::before { content: "\f6e3"; }
+.bi-modem-fill::before { content: "\f6e4"; }
+.bi-modem::before { content: "\f6e5"; }
+.bi-motherboard-fill::before { content: "\f6e6"; }
+.bi-motherboard::before { content: "\f6e7"; }
+.bi-optical-audio-fill::before { content: "\f6e8"; }
+.bi-optical-audio::before { content: "\f6e9"; }
+.bi-pci-card::before { content: "\f6ea"; }
+.bi-router-fill::before { content: "\f6eb"; }
+.bi-router::before { content: "\f6ec"; }
+.bi-thunderbolt-fill::before { content: "\f6ef"; }
+.bi-thunderbolt::before { content: "\f6f0"; }
+.bi-usb-drive-fill::before { content: "\f6f1"; }
+.bi-usb-drive::before { content: "\f6f2"; }
+.bi-usb-micro-fill::before { content: "\f6f3"; }
+.bi-usb-micro::before { content: "\f6f4"; }
+.bi-usb-mini-fill::before { content: "\f6f5"; }
+.bi-usb-mini::before { content: "\f6f6"; }
+.bi-cloud-haze2::before { content: "\f6f7"; }
+.bi-device-hdd-fill::before { content: "\f6f8"; }
+.bi-device-hdd::before { content: "\f6f9"; }
+.bi-device-ssd-fill::before { content: "\f6fa"; }
+.bi-device-ssd::before { content: "\f6fb"; }
+.bi-displayport-fill::before { content: "\f6fc"; }
+.bi-mortarboard-fill::before { content: "\f6fd"; }
+.bi-mortarboard::before { content: "\f6fe"; }
+.bi-terminal-x::before { content: "\f6ff"; }
+.bi-arrow-through-heart-fill::before { content: "\f700"; }
+.bi-arrow-through-heart::before { content: "\f701"; }
+.bi-badge-sd-fill::before { content: "\f702"; }
+.bi-badge-sd::before { content: "\f703"; }
+.bi-bag-heart-fill::before { content: "\f704"; }
+.bi-bag-heart::before { content: "\f705"; }
+.bi-balloon-fill::before { content: "\f706"; }
+.bi-balloon-heart-fill::before { content: "\f707"; }
+.bi-balloon-heart::before { content: "\f708"; }
+.bi-balloon::before { content: "\f709"; }
+.bi-box2-fill::before { content: "\f70a"; }
+.bi-box2-heart-fill::before { content: "\f70b"; }
+.bi-box2-heart::before { content: "\f70c"; }
+.bi-box2::before { content: "\f70d"; }
+.bi-braces-asterisk::before { content: "\f70e"; }
+.bi-calendar-heart-fill::before { content: "\f70f"; }
+.bi-calendar-heart::before { content: "\f710"; }
+.bi-calendar2-heart-fill::before { content: "\f711"; }
+.bi-calendar2-heart::before { content: "\f712"; }
+.bi-chat-heart-fill::before { content: "\f713"; }
+.bi-chat-heart::before { content: "\f714"; }
+.bi-chat-left-heart-fill::before { content: "\f715"; }
+.bi-chat-left-heart::before { content: "\f716"; }
+.bi-chat-right-heart-fill::before { content: "\f717"; }
+.bi-chat-right-heart::before { content: "\f718"; }
+.bi-chat-square-heart-fill::before { content: "\f719"; }
+.bi-chat-square-heart::before { content: "\f71a"; }
+.bi-clipboard-check-fill::before { content: "\f71b"; }
+.bi-clipboard-data-fill::before { content: "\f71c"; }
+.bi-clipboard-fill::before { content: "\f71d"; }
+.bi-clipboard-heart-fill::before { content: "\f71e"; }
+.bi-clipboard-heart::before { content: "\f71f"; }
+.bi-clipboard-minus-fill::before { content: "\f720"; }
+.bi-clipboard-plus-fill::before { content: "\f721"; }
+.bi-clipboard-pulse::before { content: "\f722"; }
+.bi-clipboard-x-fill::before { content: "\f723"; }
+.bi-clipboard2-check-fill::before { content: "\f724"; }
+.bi-clipboard2-check::before { content: "\f725"; }
+.bi-clipboard2-data-fill::before { content: "\f726"; }
+.bi-clipboard2-data::before { content: "\f727"; }
+.bi-clipboard2-fill::before { content: "\f728"; }
+.bi-clipboard2-heart-fill::before { content: "\f729"; }
+.bi-clipboard2-heart::before { content: "\f72a"; }
+.bi-clipboard2-minus-fill::before { content: "\f72b"; }
+.bi-clipboard2-minus::before { content: "\f72c"; }
+.bi-clipboard2-plus-fill::before { content: "\f72d"; }
+.bi-clipboard2-plus::before { content: "\f72e"; }
+.bi-clipboard2-pulse-fill::before { content: "\f72f"; }
+.bi-clipboard2-pulse::before { content: "\f730"; }
+.bi-clipboard2-x-fill::before { content: "\f731"; }
+.bi-clipboard2-x::before { content: "\f732"; }
+.bi-clipboard2::before { content: "\f733"; }
+.bi-emoji-kiss-fill::before { content: "\f734"; }
+.bi-emoji-kiss::before { content: "\f735"; }
+.bi-envelope-heart-fill::before { content: "\f736"; }
+.bi-envelope-heart::before { content: "\f737"; }
+.bi-envelope-open-heart-fill::before { content: "\f738"; }
+.bi-envelope-open-heart::before { content: "\f739"; }
+.bi-envelope-paper-fill::before { content: "\f73a"; }
+.bi-envelope-paper-heart-fill::before { content: "\f73b"; }
+.bi-envelope-paper-heart::before { content: "\f73c"; }
+.bi-envelope-paper::before { content: "\f73d"; }
+.bi-filetype-aac::before { content: "\f73e"; }
+.bi-filetype-ai::before { content: "\f73f"; }
+.bi-filetype-bmp::before { content: "\f740"; }
+.bi-filetype-cs::before { content: "\f741"; }
+.bi-filetype-css::before { content: "\f742"; }
+.bi-filetype-csv::before { content: "\f743"; }
+.bi-filetype-doc::before { content: "\f744"; }
+.bi-filetype-docx::before { content: "\f745"; }
+.bi-filetype-exe::before { content: "\f746"; }
+.bi-filetype-gif::before { content: "\f747"; }
+.bi-filetype-heic::before { content: "\f748"; }
+.bi-filetype-html::before { content: "\f749"; }
+.bi-filetype-java::before { content: "\f74a"; }
+.bi-filetype-jpg::before { content: "\f74b"; }
+.bi-filetype-js::before { content: "\f74c"; }
+.bi-filetype-jsx::before { content: "\f74d"; }
+.bi-filetype-key::before { content: "\f74e"; }
+.bi-filetype-m4p::before { content: "\f74f"; }
+.bi-filetype-md::before { content: "\f750"; }
+.bi-filetype-mdx::before { content: "\f751"; }
+.bi-filetype-mov::before { content: "\f752"; }
+.bi-filetype-mp3::before { content: "\f753"; }
+.bi-filetype-mp4::before { content: "\f754"; }
+.bi-filetype-otf::before { content: "\f755"; }
+.bi-filetype-pdf::before { content: "\f756"; }
+.bi-filetype-php::before { content: "\f757"; }
+.bi-filetype-png::before { content: "\f758"; }
+.bi-filetype-ppt::before { content: "\f75a"; }
+.bi-filetype-psd::before { content: "\f75b"; }
+.bi-filetype-py::before { content: "\f75c"; }
+.bi-filetype-raw::before { content: "\f75d"; }
+.bi-filetype-rb::before { content: "\f75e"; }
+.bi-filetype-sass::before { content: "\f75f"; }
+.bi-filetype-scss::before { content: "\f760"; }
+.bi-filetype-sh::before { content: "\f761"; }
+.bi-filetype-svg::before { content: "\f762"; }
+.bi-filetype-tiff::before { content: "\f763"; }
+.bi-filetype-tsx::before { content: "\f764"; }
+.bi-filetype-ttf::before { content: "\f765"; }
+.bi-filetype-txt::before { content: "\f766"; }
+.bi-filetype-wav::before { content: "\f767"; }
+.bi-filetype-woff::before { content: "\f768"; }
+.bi-filetype-xls::before { content: "\f76a"; }
+.bi-filetype-xml::before { content: "\f76b"; }
+.bi-filetype-yml::before { content: "\f76c"; }
+.bi-heart-arrow::before { content: "\f76d"; }
+.bi-heart-pulse-fill::before { content: "\f76e"; }
+.bi-heart-pulse::before { content: "\f76f"; }
+.bi-heartbreak-fill::before { content: "\f770"; }
+.bi-heartbreak::before { content: "\f771"; }
+.bi-hearts::before { content: "\f772"; }
+.bi-hospital-fill::before { content: "\f773"; }
+.bi-hospital::before { content: "\f774"; }
+.bi-house-heart-fill::before { content: "\f775"; }
+.bi-house-heart::before { content: "\f776"; }
+.bi-incognito::before { content: "\f777"; }
+.bi-magnet-fill::before { content: "\f778"; }
+.bi-magnet::before { content: "\f779"; }
+.bi-person-heart::before { content: "\f77a"; }
+.bi-person-hearts::before { content: "\f77b"; }
+.bi-phone-flip::before { content: "\f77c"; }
+.bi-plugin::before { content: "\f77d"; }
+.bi-postage-fill::before { content: "\f77e"; }
+.bi-postage-heart-fill::before { content: "\f77f"; }
+.bi-postage-heart::before { content: "\f780"; }
+.bi-postage::before { content: "\f781"; }
+.bi-postcard-fill::before { content: "\f782"; }
+.bi-postcard-heart-fill::before { content: "\f783"; }
+.bi-postcard-heart::before { content: "\f784"; }
+.bi-postcard::before { content: "\f785"; }
+.bi-search-heart-fill::before { content: "\f786"; }
+.bi-search-heart::before { content: "\f787"; }
+.bi-sliders2-vertical::before { content: "\f788"; }
+.bi-sliders2::before { content: "\f789"; }
+.bi-trash3-fill::before { content: "\f78a"; }
+.bi-trash3::before { content: "\f78b"; }
+.bi-valentine::before { content: "\f78c"; }
+.bi-valentine2::before { content: "\f78d"; }
+.bi-wrench-adjustable-circle-fill::before { content: "\f78e"; }
+.bi-wrench-adjustable-circle::before { content: "\f78f"; }
+.bi-wrench-adjustable::before { content: "\f790"; }
+.bi-filetype-json::before { content: "\f791"; }
+.bi-filetype-pptx::before { content: "\f792"; }
+.bi-filetype-xlsx::before { content: "\f793"; }
+.bi-1-circle-fill::before { content: "\f796"; }
+.bi-1-circle::before { content: "\f797"; }
+.bi-1-square-fill::before { content: "\f798"; }
+.bi-1-square::before { content: "\f799"; }
+.bi-2-circle-fill::before { content: "\f79c"; }
+.bi-2-circle::before { content: "\f79d"; }
+.bi-2-square-fill::before { content: "\f79e"; }
+.bi-2-square::before { content: "\f79f"; }
+.bi-3-circle-fill::before { content: "\f7a2"; }
+.bi-3-circle::before { content: "\f7a3"; }
+.bi-3-square-fill::before { content: "\f7a4"; }
+.bi-3-square::before { content: "\f7a5"; }
+.bi-4-circle-fill::before { content: "\f7a8"; }
+.bi-4-circle::before { content: "\f7a9"; }
+.bi-4-square-fill::before { content: "\f7aa"; }
+.bi-4-square::before { content: "\f7ab"; }
+.bi-5-circle-fill::before { content: "\f7ae"; }
+.bi-5-circle::before { content: "\f7af"; }
+.bi-5-square-fill::before { content: "\f7b0"; }
+.bi-5-square::before { content: "\f7b1"; }
+.bi-6-circle-fill::before { content: "\f7b4"; }
+.bi-6-circle::before { content: "\f7b5"; }
+.bi-6-square-fill::before { content: "\f7b6"; }
+.bi-6-square::before { content: "\f7b7"; }
+.bi-7-circle-fill::before { content: "\f7ba"; }
+.bi-7-circle::before { content: "\f7bb"; }
+.bi-7-square-fill::before { content: "\f7bc"; }
+.bi-7-square::before { content: "\f7bd"; }
+.bi-8-circle-fill::before { content: "\f7c0"; }
+.bi-8-circle::before { content: "\f7c1"; }
+.bi-8-square-fill::before { content: "\f7c2"; }
+.bi-8-square::before { content: "\f7c3"; }
+.bi-9-circle-fill::before { content: "\f7c6"; }
+.bi-9-circle::before { content: "\f7c7"; }
+.bi-9-square-fill::before { content: "\f7c8"; }
+.bi-9-square::before { content: "\f7c9"; }
+.bi-airplane-engines-fill::before { content: "\f7ca"; }
+.bi-airplane-engines::before { content: "\f7cb"; }
+.bi-airplane-fill::before { content: "\f7cc"; }
+.bi-airplane::before { content: "\f7cd"; }
+.bi-alexa::before { content: "\f7ce"; }
+.bi-alipay::before { content: "\f7cf"; }
+.bi-android::before { content: "\f7d0"; }
+.bi-android2::before { content: "\f7d1"; }
+.bi-box-fill::before { content: "\f7d2"; }
+.bi-box-seam-fill::before { content: "\f7d3"; }
+.bi-browser-chrome::before { content: "\f7d4"; }
+.bi-browser-edge::before { content: "\f7d5"; }
+.bi-browser-firefox::before { content: "\f7d6"; }
+.bi-browser-safari::before { content: "\f7d7"; }
+.bi-c-circle-fill::before { content: "\f7da"; }
+.bi-c-circle::before { content: "\f7db"; }
+.bi-c-square-fill::before { content: "\f7dc"; }
+.bi-c-square::before { content: "\f7dd"; }
+.bi-capsule-pill::before { content: "\f7de"; }
+.bi-capsule::before { content: "\f7df"; }
+.bi-car-front-fill::before { content: "\f7e0"; }
+.bi-car-front::before { content: "\f7e1"; }
+.bi-cassette-fill::before { content: "\f7e2"; }
+.bi-cassette::before { content: "\f7e3"; }
+.bi-cc-circle-fill::before { content: "\f7e6"; }
+.bi-cc-circle::before { content: "\f7e7"; }
+.bi-cc-square-fill::before { content: "\f7e8"; }
+.bi-cc-square::before { content: "\f7e9"; }
+.bi-cup-hot-fill::before { content: "\f7ea"; }
+.bi-cup-hot::before { content: "\f7eb"; }
+.bi-currency-rupee::before { content: "\f7ec"; }
+.bi-dropbox::before { content: "\f7ed"; }
+.bi-escape::before { content: "\f7ee"; }
+.bi-fast-forward-btn-fill::before { content: "\f7ef"; }
+.bi-fast-forward-btn::before { content: "\f7f0"; }
+.bi-fast-forward-circle-fill::before { content: "\f7f1"; }
+.bi-fast-forward-circle::before { content: "\f7f2"; }
+.bi-fast-forward-fill::before { content: "\f7f3"; }
+.bi-fast-forward::before { content: "\f7f4"; }
+.bi-filetype-sql::before { content: "\f7f5"; }
+.bi-fire::before { content: "\f7f6"; }
+.bi-google-play::before { content: "\f7f7"; }
+.bi-h-circle-fill::before { content: "\f7fa"; }
+.bi-h-circle::before { content: "\f7fb"; }
+.bi-h-square-fill::before { content: "\f7fc"; }
+.bi-h-square::before { content: "\f7fd"; }
+.bi-indent::before { content: "\f7fe"; }
+.bi-lungs-fill::before { content: "\f7ff"; }
+.bi-lungs::before { content: "\f800"; }
+.bi-microsoft-teams::before { content: "\f801"; }
+.bi-p-circle-fill::before { content: "\f804"; }
+.bi-p-circle::before { content: "\f805"; }
+.bi-p-square-fill::before { content: "\f806"; }
+.bi-p-square::before { content: "\f807"; }
+.bi-pass-fill::before { content: "\f808"; }
+.bi-pass::before { content: "\f809"; }
+.bi-prescription::before { content: "\f80a"; }
+.bi-prescription2::before { content: "\f80b"; }
+.bi-r-circle-fill::before { content: "\f80e"; }
+.bi-r-circle::before { content: "\f80f"; }
+.bi-r-square-fill::before { content: "\f810"; }
+.bi-r-square::before { content: "\f811"; }
+.bi-repeat-1::before { content: "\f812"; }
+.bi-repeat::before { content: "\f813"; }
+.bi-rewind-btn-fill::before { content: "\f814"; }
+.bi-rewind-btn::before { content: "\f815"; }
+.bi-rewind-circle-fill::before { content: "\f816"; }
+.bi-rewind-circle::before { content: "\f817"; }
+.bi-rewind-fill::before { content: "\f818"; }
+.bi-rewind::before { content: "\f819"; }
+.bi-train-freight-front-fill::before { content: "\f81a"; }
+.bi-train-freight-front::before { content: "\f81b"; }
+.bi-train-front-fill::before { content: "\f81c"; }
+.bi-train-front::before { content: "\f81d"; }
+.bi-train-lightrail-front-fill::before { content: "\f81e"; }
+.bi-train-lightrail-front::before { content: "\f81f"; }
+.bi-truck-front-fill::before { content: "\f820"; }
+.bi-truck-front::before { content: "\f821"; }
+.bi-ubuntu::before { content: "\f822"; }
+.bi-unindent::before { content: "\f823"; }
+.bi-unity::before { content: "\f824"; }
+.bi-universal-access-circle::before { content: "\f825"; }
+.bi-universal-access::before { content: "\f826"; }
+.bi-virus::before { content: "\f827"; }
+.bi-virus2::before { content: "\f828"; }
+.bi-wechat::before { content: "\f829"; }
+.bi-yelp::before { content: "\f82a"; }
+.bi-sign-stop-fill::before { content: "\f82b"; }
+.bi-sign-stop-lights-fill::before { content: "\f82c"; }
+.bi-sign-stop-lights::before { content: "\f82d"; }
+.bi-sign-stop::before { content: "\f82e"; }
+.bi-sign-turn-left-fill::before { content: "\f82f"; }
+.bi-sign-turn-left::before { content: "\f830"; }
+.bi-sign-turn-right-fill::before { content: "\f831"; }
+.bi-sign-turn-right::before { content: "\f832"; }
+.bi-sign-turn-slight-left-fill::before { content: "\f833"; }
+.bi-sign-turn-slight-left::before { content: "\f834"; }
+.bi-sign-turn-slight-right-fill::before { content: "\f835"; }
+.bi-sign-turn-slight-right::before { content: "\f836"; }
+.bi-sign-yield-fill::before { content: "\f837"; }
+.bi-sign-yield::before { content: "\f838"; }
+.bi-ev-station-fill::before { content: "\f839"; }
+.bi-ev-station::before { content: "\f83a"; }
+.bi-fuel-pump-diesel-fill::before { content: "\f83b"; }
+.bi-fuel-pump-diesel::before { content: "\f83c"; }
+.bi-fuel-pump-fill::before { content: "\f83d"; }
+.bi-fuel-pump::before { content: "\f83e"; }
+.bi-0-circle-fill::before { content: "\f83f"; }
+.bi-0-circle::before { content: "\f840"; }
+.bi-0-square-fill::before { content: "\f841"; }
+.bi-0-square::before { content: "\f842"; }
+.bi-rocket-fill::before { content: "\f843"; }
+.bi-rocket-takeoff-fill::before { content: "\f844"; }
+.bi-rocket-takeoff::before { content: "\f845"; }
+.bi-rocket::before { content: "\f846"; }
+.bi-stripe::before { content: "\f847"; }
+.bi-subscript::before { content: "\f848"; }
+.bi-superscript::before { content: "\f849"; }
+.bi-trello::before { content: "\f84a"; }
+.bi-envelope-at-fill::before { content: "\f84b"; }
+.bi-envelope-at::before { content: "\f84c"; }
+.bi-regex::before { content: "\f84d"; }
+.bi-text-wrap::before { content: "\f84e"; }
+.bi-sign-dead-end-fill::before { content: "\f84f"; }
+.bi-sign-dead-end::before { content: "\f850"; }
+.bi-sign-do-not-enter-fill::before { content: "\f851"; }
+.bi-sign-do-not-enter::before { content: "\f852"; }
+.bi-sign-intersection-fill::before { content: "\f853"; }
+.bi-sign-intersection-side-fill::before { content: "\f854"; }
+.bi-sign-intersection-side::before { content: "\f855"; }
+.bi-sign-intersection-t-fill::before { content: "\f856"; }
+.bi-sign-intersection-t::before { content: "\f857"; }
+.bi-sign-intersection-y-fill::before { content: "\f858"; }
+.bi-sign-intersection-y::before { content: "\f859"; }
+.bi-sign-intersection::before { content: "\f85a"; }
+.bi-sign-merge-left-fill::before { content: "\f85b"; }
+.bi-sign-merge-left::before { content: "\f85c"; }
+.bi-sign-merge-right-fill::before { content: "\f85d"; }
+.bi-sign-merge-right::before { content: "\f85e"; }
+.bi-sign-no-left-turn-fill::before { content: "\f85f"; }
+.bi-sign-no-left-turn::before { content: "\f860"; }
+.bi-sign-no-parking-fill::before { content: "\f861"; }
+.bi-sign-no-parking::before { content: "\f862"; }
+.bi-sign-no-right-turn-fill::before { content: "\f863"; }
+.bi-sign-no-right-turn::before { content: "\f864"; }
+.bi-sign-railroad-fill::before { content: "\f865"; }
+.bi-sign-railroad::before { content: "\f866"; }
+.bi-building-add::before { content: "\f867"; }
+.bi-building-check::before { content: "\f868"; }
+.bi-building-dash::before { content: "\f869"; }
+.bi-building-down::before { content: "\f86a"; }
+.bi-building-exclamation::before { content: "\f86b"; }
+.bi-building-fill-add::before { content: "\f86c"; }
+.bi-building-fill-check::before { content: "\f86d"; }
+.bi-building-fill-dash::before { content: "\f86e"; }
+.bi-building-fill-down::before { content: "\f86f"; }
+.bi-building-fill-exclamation::before { content: "\f870"; }
+.bi-building-fill-gear::before { content: "\f871"; }
+.bi-building-fill-lock::before { content: "\f872"; }
+.bi-building-fill-slash::before { content: "\f873"; }
+.bi-building-fill-up::before { content: "\f874"; }
+.bi-building-fill-x::before { content: "\f875"; }
+.bi-building-fill::before { content: "\f876"; }
+.bi-building-gear::before { content: "\f877"; }
+.bi-building-lock::before { content: "\f878"; }
+.bi-building-slash::before { content: "\f879"; }
+.bi-building-up::before { content: "\f87a"; }
+.bi-building-x::before { content: "\f87b"; }
+.bi-buildings-fill::before { content: "\f87c"; }
+.bi-buildings::before { content: "\f87d"; }
+.bi-bus-front-fill::before { content: "\f87e"; }
+.bi-bus-front::before { content: "\f87f"; }
+.bi-ev-front-fill::before { content: "\f880"; }
+.bi-ev-front::before { content: "\f881"; }
+.bi-globe-americas::before { content: "\f882"; }
+.bi-globe-asia-australia::before { content: "\f883"; }
+.bi-globe-central-south-asia::before { content: "\f884"; }
+.bi-globe-europe-africa::before { content: "\f885"; }
+.bi-house-add-fill::before { content: "\f886"; }
+.bi-house-add::before { content: "\f887"; }
+.bi-house-check-fill::before { content: "\f888"; }
+.bi-house-check::before { content: "\f889"; }
+.bi-house-dash-fill::before { content: "\f88a"; }
+.bi-house-dash::before { content: "\f88b"; }
+.bi-house-down-fill::before { content: "\f88c"; }
+.bi-house-down::before { content: "\f88d"; }
+.bi-house-exclamation-fill::before { content: "\f88e"; }
+.bi-house-exclamation::before { content: "\f88f"; }
+.bi-house-gear-fill::before { content: "\f890"; }
+.bi-house-gear::before { content: "\f891"; }
+.bi-house-lock-fill::before { content: "\f892"; }
+.bi-house-lock::before { content: "\f893"; }
+.bi-house-slash-fill::before { content: "\f894"; }
+.bi-house-slash::before { content: "\f895"; }
+.bi-house-up-fill::before { content: "\f896"; }
+.bi-house-up::before { content: "\f897"; }
+.bi-house-x-fill::before { content: "\f898"; }
+.bi-house-x::before { content: "\f899"; }
+.bi-person-add::before { content: "\f89a"; }
+.bi-person-down::before { content: "\f89b"; }
+.bi-person-exclamation::before { content: "\f89c"; }
+.bi-person-fill-add::before { content: "\f89d"; }
+.bi-person-fill-check::before { content: "\f89e"; }
+.bi-person-fill-dash::before { content: "\f89f"; }
+.bi-person-fill-down::before { content: "\f8a0"; }
+.bi-person-fill-exclamation::before { content: "\f8a1"; }
+.bi-person-fill-gear::before { content: "\f8a2"; }
+.bi-person-fill-lock::before { content: "\f8a3"; }
+.bi-person-fill-slash::before { content: "\f8a4"; }
+.bi-person-fill-up::before { content: "\f8a5"; }
+.bi-person-fill-x::before { content: "\f8a6"; }
+.bi-person-gear::before { content: "\f8a7"; }
+.bi-person-lock::before { content: "\f8a8"; }
+.bi-person-slash::before { content: "\f8a9"; }
+.bi-person-up::before { content: "\f8aa"; }
+.bi-scooter::before { content: "\f8ab"; }
+.bi-taxi-front-fill::before { content: "\f8ac"; }
+.bi-taxi-front::before { content: "\f8ad"; }
+.bi-amd::before { content: "\f8ae"; }
+.bi-database-add::before { content: "\f8af"; }
+.bi-database-check::before { content: "\f8b0"; }
+.bi-database-dash::before { content: "\f8b1"; }
+.bi-database-down::before { content: "\f8b2"; }
+.bi-database-exclamation::before { content: "\f8b3"; }
+.bi-database-fill-add::before { content: "\f8b4"; }
+.bi-database-fill-check::before { content: "\f8b5"; }
+.bi-database-fill-dash::before { content: "\f8b6"; }
+.bi-database-fill-down::before { content: "\f8b7"; }
+.bi-database-fill-exclamation::before { content: "\f8b8"; }
+.bi-database-fill-gear::before { content: "\f8b9"; }
+.bi-database-fill-lock::before { content: "\f8ba"; }
+.bi-database-fill-slash::before { content: "\f8bb"; }
+.bi-database-fill-up::before { content: "\f8bc"; }
+.bi-database-fill-x::before { content: "\f8bd"; }
+.bi-database-fill::before { content: "\f8be"; }
+.bi-database-gear::before { content: "\f8bf"; }
+.bi-database-lock::before { content: "\f8c0"; }
+.bi-database-slash::before { content: "\f8c1"; }
+.bi-database-up::before { content: "\f8c2"; }
+.bi-database-x::before { content: "\f8c3"; }
+.bi-database::before { content: "\f8c4"; }
+.bi-houses-fill::before { content: "\f8c5"; }
+.bi-houses::before { content: "\f8c6"; }
+.bi-nvidia::before { content: "\f8c7"; }
+.bi-person-vcard-fill::before { content: "\f8c8"; }
+.bi-person-vcard::before { content: "\f8c9"; }
+.bi-sina-weibo::before { content: "\f8ca"; }
+.bi-tencent-qq::before { content: "\f8cb"; }
+.bi-wikipedia::before { content: "\f8cc"; }
+.bi-alphabet-uppercase::before { content: "\f2a5"; }
+.bi-alphabet::before { content: "\f68a"; }
+.bi-amazon::before { content: "\f68d"; }
+.bi-arrows-collapse-vertical::before { content: "\f690"; }
+.bi-arrows-expand-vertical::before { content: "\f695"; }
+.bi-arrows-vertical::before { content: "\f698"; }
+.bi-arrows::before { content: "\f6a2"; }
+.bi-ban-fill::before { content: "\f6a3"; }
+.bi-ban::before { content: "\f6b6"; }
+.bi-bing::before { content: "\f6c2"; }
+.bi-cake::before { content: "\f6e0"; }
+.bi-cake2::before { content: "\f6ed"; }
+.bi-cookie::before { content: "\f6ee"; }
+.bi-copy::before { content: "\f759"; }
+.bi-crosshair::before { content: "\f769"; }
+.bi-crosshair2::before { content: "\f794"; }
+.bi-emoji-astonished-fill::before { content: "\f795"; }
+.bi-emoji-astonished::before { content: "\f79a"; }
+.bi-emoji-grimace-fill::before { content: "\f79b"; }
+.bi-emoji-grimace::before { content: "\f7a0"; }
+.bi-emoji-grin-fill::before { content: "\f7a1"; }
+.bi-emoji-grin::before { content: "\f7a6"; }
+.bi-emoji-surprise-fill::before { content: "\f7a7"; }
+.bi-emoji-surprise::before { content: "\f7ac"; }
+.bi-emoji-tear-fill::before { content: "\f7ad"; }
+.bi-emoji-tear::before { content: "\f7b2"; }
+.bi-envelope-arrow-down-fill::before { content: "\f7b3"; }
+.bi-envelope-arrow-down::before { content: "\f7b8"; }
+.bi-envelope-arrow-up-fill::before { content: "\f7b9"; }
+.bi-envelope-arrow-up::before { content: "\f7be"; }
+.bi-feather::before { content: "\f7bf"; }
+.bi-feather2::before { content: "\f7c4"; }
+.bi-floppy-fill::before { content: "\f7c5"; }
+.bi-floppy::before { content: "\f7d8"; }
+.bi-floppy2-fill::before { content: "\f7d9"; }
+.bi-floppy2::before { content: "\f7e4"; }
+.bi-gitlab::before { content: "\f7e5"; }
+.bi-highlighter::before { content: "\f7f8"; }
+.bi-marker-tip::before { content: "\f802"; }
+.bi-nvme-fill::before { content: "\f803"; }
+.bi-nvme::before { content: "\f80c"; }
+.bi-opencollective::before { content: "\f80d"; }
+.bi-pci-card-network::before { content: "\f8cd"; }
+.bi-pci-card-sound::before { content: "\f8ce"; }
+.bi-radar::before { content: "\f8cf"; }
+.bi-send-arrow-down-fill::before { content: "\f8d0"; }
+.bi-send-arrow-down::before { content: "\f8d1"; }
+.bi-send-arrow-up-fill::before { content: "\f8d2"; }
+.bi-send-arrow-up::before { content: "\f8d3"; }
+.bi-sim-slash-fill::before { content: "\f8d4"; }
+.bi-sim-slash::before { content: "\f8d5"; }
+.bi-sourceforge::before { content: "\f8d6"; }
+.bi-substack::before { content: "\f8d7"; }
+.bi-threads-fill::before { content: "\f8d8"; }
+.bi-threads::before { content: "\f8d9"; }
+.bi-transparency::before { content: "\f8da"; }
+.bi-twitter-x::before { content: "\f8db"; }
+.bi-type-h4::before { content: "\f8dc"; }
+.bi-type-h5::before { content: "\f8dd"; }
+.bi-type-h6::before { content: "\f8de"; }
+.bi-backpack-fill::before { content: "\f8df"; }
+.bi-backpack::before { content: "\f8e0"; }
+.bi-backpack2-fill::before { content: "\f8e1"; }
+.bi-backpack2::before { content: "\f8e2"; }
+.bi-backpack3-fill::before { content: "\f8e3"; }
+.bi-backpack3::before { content: "\f8e4"; }
+.bi-backpack4-fill::before { content: "\f8e5"; }
+.bi-backpack4::before { content: "\f8e6"; }
+.bi-brilliance::before { content: "\f8e7"; }
+.bi-cake-fill::before { content: "\f8e8"; }
+.bi-cake2-fill::before { content: "\f8e9"; }
+.bi-duffle-fill::before { content: "\f8ea"; }
+.bi-duffle::before { content: "\f8eb"; }
+.bi-exposure::before { content: "\f8ec"; }
+.bi-gender-neuter::before { content: "\f8ed"; }
+.bi-highlights::before { content: "\f8ee"; }
+.bi-luggage-fill::before { content: "\f8ef"; }
+.bi-luggage::before { content: "\f8f0"; }
+.bi-mailbox-flag::before { content: "\f8f1"; }
+.bi-mailbox2-flag::before { content: "\f8f2"; }
+.bi-noise-reduction::before { content: "\f8f3"; }
+.bi-passport-fill::before { content: "\f8f4"; }
+.bi-passport::before { content: "\f8f5"; }
+.bi-person-arms-up::before { content: "\f8f6"; }
+.bi-person-raised-hand::before { content: "\f8f7"; }
+.bi-person-standing-dress::before { content: "\f8f8"; }
+.bi-person-standing::before { content: "\f8f9"; }
+.bi-person-walking::before { content: "\f8fa"; }
+.bi-person-wheelchair::before { content: "\f8fb"; }
+.bi-shadows::before { content: "\f8fc"; }
+.bi-suitcase-fill::before { content: "\f8fd"; }
+.bi-suitcase-lg-fill::before { content: "\f8fe"; }
+.bi-suitcase-lg::before { content: "\f8ff"; }
+.bi-suitcase::before { content: "\f900"; }
+.bi-suitcase2-fill::before { content: "\f901"; }
+.bi-suitcase2::before { content: "\f902"; }
+.bi-vignette::before { content: "\f903"; }
+.bi-bluesky::before { content: "\f7f9"; }
+.bi-tux::before { content: "\f904"; }
+.bi-beaker-fill::before { content: "\f905"; }
+.bi-beaker::before { content: "\f906"; }
+.bi-flask-fill::before { content: "\f907"; }
+.bi-flask-florence-fill::before { content: "\f908"; }
+.bi-flask-florence::before { content: "\f909"; }
+.bi-flask::before { content: "\f90a"; }
+.bi-leaf-fill::before { content: "\f90b"; }
+.bi-leaf::before { content: "\f90c"; }
+.bi-measuring-cup-fill::before { content: "\f90d"; }
+.bi-measuring-cup::before { content: "\f90e"; }
+.bi-unlock2-fill::before { content: "\f90f"; }
+.bi-unlock2::before { content: "\f910"; }
+.bi-battery-low::before { content: "\f911"; }
+.bi-anthropic::before { content: "\f912"; }
+.bi-apple-music::before { content: "\f913"; }
+.bi-claude::before { content: "\f914"; }
+.bi-openai::before { content: "\f915"; }
+.bi-perplexity::before { content: "\f916"; }
+.bi-css::before { content: "\f917"; }
+.bi-javascript::before { content: "\f918"; }
+.bi-typescript::before { content: "\f919"; }
+.bi-fork-knife::before { content: "\f91a"; }
+.bi-globe-americas-fill::before { content: "\f91b"; }
+.bi-globe-asia-australia-fill::before { content: "\f91c"; }
+.bi-globe-central-south-asia-fill::before { content: "\f91d"; }
+.bi-globe-europe-africa-fill::before { content: "\f91e"; }
diff --git a/docs/site_libs/bootstrap/bootstrap-icons.woff b/docs/site_libs/bootstrap/bootstrap-icons.woff
new file mode 100644
index 00000000..a4fa4f02
Binary files /dev/null and b/docs/site_libs/bootstrap/bootstrap-icons.woff differ
diff --git a/docs/site_libs/bootstrap/bootstrap.min.js b/docs/site_libs/bootstrap/bootstrap.min.js
new file mode 100644
index 00000000..e8f21f70
--- /dev/null
+++ b/docs/site_libs/bootstrap/bootstrap.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v5.3.1 (https://getbootstrap.com/)
+ * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
+ */
+!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=I(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return P(s,{delegateTarget:r}),n.oneOff&&N.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return P(n,{delegateTarget:t}),i.oneOff&&N.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function $(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function I(t){return t=t.replace(y,""),T[t]||t}const N={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))$(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==I(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=P(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function P(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function j(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const F={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${j(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${j(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${j(e)}`))};class H{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?F.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?F.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends H{constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),N.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.1"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return n(e)},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;N.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},q=".bs.alert",V=`close${q}`,K=`closed${q}`;class Q extends W{static get NAME(){return"alert"}close(){if(N.trigger(this._element,V).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),N.trigger(this._element,K),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(Q,"close"),m(Q);const X='[data-bs-toggle="button"]';class Y extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=Y.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}N.on(document,"click.bs.button.data-api",X,(t=>{t.preventDefault();const e=t.target.closest(X);Y.getOrCreateInstance(e).toggle()})),m(Y);const U=".bs.swipe",G=`touchstart${U}`,J=`touchmove${U}`,Z=`touchend${U}`,tt=`pointerdown${U}`,et=`pointerup${U}`,it={endCallback:null,leftCallback:null,rightCallback:null},nt={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class st extends H{constructor(t,e){super(),this._element=t,t&&st.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return it}static get DefaultType(){return nt}static get NAME(){return"swipe"}dispose(){N.off(this._element,U)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(N.on(this._element,tt,(t=>this._start(t))),N.on(this._element,et,(t=>this._end(t))),this._element.classList.add("pointer-event")):(N.on(this._element,G,(t=>this._start(t))),N.on(this._element,J,(t=>this._move(t))),N.on(this._element,Z,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const ot=".bs.carousel",rt=".data-api",at="next",lt="prev",ct="left",ht="right",dt=`slide${ot}`,ut=`slid${ot}`,ft=`keydown${ot}`,pt=`mouseenter${ot}`,mt=`mouseleave${ot}`,gt=`dragstart${ot}`,_t=`load${ot}${rt}`,bt=`click${ot}${rt}`,vt="carousel",yt="active",wt=".active",At=".carousel-item",Et=wt+At,Tt={ArrowLeft:ht,ArrowRight:ct},Ct={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},Ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class xt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===vt&&this.cycle()}static get Default(){return Ct}static get DefaultType(){return Ot}static get NAME(){return"carousel"}next(){this._slide(at)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(lt)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?N.one(this._element,ut,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void N.one(this._element,ut,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?at:lt;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&N.on(this._element,ft,(t=>this._keydown(t))),"hover"===this._config.pause&&(N.on(this._element,pt,(()=>this.pause())),N.on(this._element,mt,(()=>this._maybeEnableCycle()))),this._config.touch&&st.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))N.on(t,gt,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(ct)),rightCallback:()=>this._slide(this._directionToOrder(ht)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new st(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=Tt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(wt,this._indicatorsElement);e.classList.remove(yt),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(yt),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===at,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>N.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(dt).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(yt),i.classList.remove(yt,c,l),this._isSliding=!1,r(ut)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(Et,this._element)}_getItems(){return z.find(At,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===ct?lt:at:t===ct?at:lt}_orderToDirection(t){return p()?t===lt?ct:ht:t===lt?ht:ct}static jQueryInterface(t){return this.each((function(){const e=xt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}N.on(document,bt,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(vt))return;t.preventDefault();const i=xt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===F.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),N.on(window,_t,(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)xt.getOrCreateInstance(e)})),m(xt);const kt=".bs.collapse",Lt=`show${kt}`,St=`shown${kt}`,Dt=`hide${kt}`,$t=`hidden${kt}`,It=`click${kt}.data-api`,Nt="show",Pt="collapse",Mt="collapsing",jt=`:scope .${Pt} .${Pt}`,Ft='[data-bs-toggle="collapse"]',Ht={parent:null,toggle:!0},Wt={parent:"(null|element)",toggle:"boolean"};class Bt extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(Ft);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return Ht}static get DefaultType(){return Wt}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>Bt.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(N.trigger(this._element,Lt).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(Pt),this._element.classList.add(Mt),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt,Nt),this._element.style[e]="",N.trigger(this._element,St)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(N.trigger(this._element,Dt).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(Mt),this._element.classList.remove(Pt,Nt);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(Mt),this._element.classList.add(Pt),N.trigger(this._element,$t)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(Nt)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(Ft);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(jt,this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=Bt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}N.on(document,It,Ft,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))Bt.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(Bt);var zt="top",Rt="bottom",qt="right",Vt="left",Kt="auto",Qt=[zt,Rt,qt,Vt],Xt="start",Yt="end",Ut="clippingParents",Gt="viewport",Jt="popper",Zt="reference",te=Qt.reduce((function(t,e){return t.concat([e+"-"+Xt,e+"-"+Yt])}),[]),ee=[].concat(Qt,[Kt]).reduce((function(t,e){return t.concat([e,e+"-"+Xt,e+"-"+Yt])}),[]),ie="beforeRead",ne="read",se="afterRead",oe="beforeMain",re="main",ae="afterMain",le="beforeWrite",ce="write",he="afterWrite",de=[ie,ne,se,oe,re,ae,le,ce,he];function ue(t){return t?(t.nodeName||"").toLowerCase():null}function fe(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function pe(t){return t instanceof fe(t).Element||t instanceof Element}function me(t){return t instanceof fe(t).HTMLElement||t instanceof HTMLElement}function ge(t){return"undefined"!=typeof ShadowRoot&&(t instanceof fe(t).ShadowRoot||t instanceof ShadowRoot)}const _e={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];me(s)&&ue(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});me(n)&&ue(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function be(t){return t.split("-")[0]}var ve=Math.max,ye=Math.min,we=Math.round;function Ae(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Ee(){return!/^((?!chrome|android).)*safari/i.test(Ae())}function Te(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&me(t)&&(s=t.offsetWidth>0&&we(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&we(n.height)/t.offsetHeight||1);var r=(pe(t)?fe(t):window).visualViewport,a=!Ee()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Ce(t){var e=Te(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Oe(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&ge(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function xe(t){return fe(t).getComputedStyle(t)}function ke(t){return["table","td","th"].indexOf(ue(t))>=0}function Le(t){return((pe(t)?t.ownerDocument:t.document)||window.document).documentElement}function Se(t){return"html"===ue(t)?t:t.assignedSlot||t.parentNode||(ge(t)?t.host:null)||Le(t)}function De(t){return me(t)&&"fixed"!==xe(t).position?t.offsetParent:null}function $e(t){for(var e=fe(t),i=De(t);i&&ke(i)&&"static"===xe(i).position;)i=De(i);return i&&("html"===ue(i)||"body"===ue(i)&&"static"===xe(i).position)?e:i||function(t){var e=/firefox/i.test(Ae());if(/Trident/i.test(Ae())&&me(t)&&"fixed"===xe(t).position)return null;var i=Se(t);for(ge(i)&&(i=i.host);me(i)&&["html","body"].indexOf(ue(i))<0;){var n=xe(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function Ie(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Ne(t,e,i){return ve(t,ye(e,i))}function Pe(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function Me(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const je={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=be(i.placement),l=Ie(a),c=[Vt,qt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return Pe("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:Me(t,Qt))}(s.padding,i),d=Ce(o),u="y"===l?zt:Vt,f="y"===l?Rt:qt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=$e(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=Ne(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Oe(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function Fe(t){return t.split("-")[1]}var He={top:"auto",right:"auto",bottom:"auto",left:"auto"};function We(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=Vt,y=zt,w=window;if(c){var A=$e(i),E="clientHeight",T="clientWidth";A===fe(i)&&"static"!==xe(A=Le(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===zt||(s===Vt||s===qt)&&o===Yt)&&(y=Rt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==Vt&&(s!==zt&&s!==Rt||o!==Yt)||(v=qt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&He),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:we(i*s)/s||0,y:we(n*s)/s||0}}({x:f,y:m},fe(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const Be={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:be(e.placement),variation:Fe(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,We(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,We(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var ze={passive:!0};const Re={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=fe(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,ze)})),a&&l.addEventListener("resize",i.update,ze),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,ze)})),a&&l.removeEventListener("resize",i.update,ze)}},data:{}};var qe={left:"right",right:"left",bottom:"top",top:"bottom"};function Ve(t){return t.replace(/left|right|bottom|top/g,(function(t){return qe[t]}))}var Ke={start:"end",end:"start"};function Qe(t){return t.replace(/start|end/g,(function(t){return Ke[t]}))}function Xe(t){var e=fe(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ye(t){return Te(Le(t)).left+Xe(t).scrollLeft}function Ue(t){var e=xe(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ge(t){return["html","body","#document"].indexOf(ue(t))>=0?t.ownerDocument.body:me(t)&&Ue(t)?t:Ge(Se(t))}function Je(t,e){var i;void 0===e&&(e=[]);var n=Ge(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=fe(n),r=s?[o].concat(o.visualViewport||[],Ue(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Je(Se(r)))}function Ze(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function ti(t,e,i){return e===Gt?Ze(function(t,e){var i=fe(t),n=Le(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Ee();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+Ye(t),y:l}}(t,i)):pe(e)?function(t,e){var i=Te(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ze(function(t){var e,i=Le(t),n=Xe(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=ve(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=ve(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+Ye(t),l=-n.scrollTop;return"rtl"===xe(s||i).direction&&(a+=ve(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(Le(t)))}function ei(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?be(s):null,r=s?Fe(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case zt:e={x:a,y:i.y-n.height};break;case Rt:e={x:a,y:i.y+i.height};break;case qt:e={x:i.x+i.width,y:l};break;case Vt:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?Ie(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case Xt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case Yt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ii(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?Ut:a,c=i.rootBoundary,h=void 0===c?Gt:c,d=i.elementContext,u=void 0===d?Jt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=Pe("number"!=typeof g?g:Me(g,Qt)),b=u===Jt?Zt:Jt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Je(Se(t)),i=["absolute","fixed"].indexOf(xe(t).position)>=0&&me(t)?$e(t):t;return pe(i)?e.filter((function(t){return pe(t)&&Oe(t,i)&&"body"!==ue(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=ti(t,i,n);return e.top=ve(s.top,e.top),e.right=ye(s.right,e.right),e.bottom=ye(s.bottom,e.bottom),e.left=ve(s.left,e.left),e}),ti(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(pe(y)?y:y.contextElement||Le(t.elements.popper),l,h,r),A=Te(t.elements.reference),E=ei({reference:A,element:v,strategy:"absolute",placement:s}),T=Ze(Object.assign({},v,E)),C=u===Jt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Jt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[qt,Rt].indexOf(t)>=0?1:-1,i=[zt,Rt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function ni(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?ee:l,h=Fe(n),d=h?a?te:te.filter((function(t){return Fe(t)===h})):Qt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ii(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[be(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const si={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=be(g),b=l||(_!==g&&p?function(t){if(be(t)===Kt)return[];var e=Ve(t);return[Qe(t),e,Qe(e)]}(g):[Ve(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(be(i)===Kt?ni(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C=0,S=L?"width":"height",D=ii(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),$=L?k?qt:Vt:k?Rt:zt;y[S]>w[S]&&($=Ve($));var I=Ve($),N=[];if(o&&N.push(D[x]<=0),a&&N.push(D[$]<=0,D[I]<=0),N.every((function(t){return t}))){T=O,E=!1;break}A.set(O,N)}if(E)for(var P=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==P(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function oi(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function ri(t){return[zt,qt,Rt,Vt].some((function(e){return t[e]>=0}))}const ai={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ii(e,{elementContext:"reference"}),a=ii(e,{altBoundary:!0}),l=oi(r,n),c=oi(a,s,o),h=ri(l),d=ri(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},li={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=ee.reduce((function(t,i){return t[i]=function(t,e,i){var n=be(t),s=[Vt,zt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[Vt,qt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},ci={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=ei({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},hi={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ii(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=be(e.placement),b=Fe(e.placement),v=!b,y=Ie(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?zt:Vt,D="y"===y?Rt:qt,$="y"===y?"height":"width",I=A[y],N=I+g[S],P=I-g[D],M=f?-T[$]/2:0,j=b===Xt?E[$]:T[$],F=b===Xt?-T[$]:-E[$],H=e.elements.arrow,W=f&&H?Ce(H):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=Ne(0,E[$],W[$]),V=v?E[$]/2-M-q-z-O.mainAxis:j-q-z-O.mainAxis,K=v?-E[$]/2+M+q+R+O.mainAxis:F+q+R+O.mainAxis,Q=e.elements.arrow&&$e(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=I+K-Y,G=Ne(f?ye(N,I+V-Y-X):N,I,f?ve(P,U):P);A[y]=G,k[y]=G-I}if(a){var J,Z="x"===y?zt:Vt,tt="x"===y?Rt:qt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[zt,Vt].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=Ne(t,e,i);return n>i?i:n}(at,et,lt):Ne(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function di(t,e,i){void 0===i&&(i=!1);var n,s,o=me(e),r=me(e)&&function(t){var e=t.getBoundingClientRect(),i=we(e.width)/t.offsetWidth||1,n=we(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=Le(e),l=Te(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==ue(e)||Ue(a))&&(c=(n=e)!==fe(n)&&me(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:Xe(n)),me(e)?((h=Te(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=Ye(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function ui(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var fi={placement:"bottom",modifiers:[],strategy:"absolute"};function pi(){for(var t=arguments.length,e=new Array(t),i=0;iNumber.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(F.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ei,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:z.prev(this,Ii)[0]||z.next(this,Ii)[0]||z.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}N.on(document,Si,Ii,qi.dataApiKeydownHandler),N.on(document,Si,Pi,qi.dataApiKeydownHandler),N.on(document,Li,qi.clearMenus),N.on(document,Di,qi.clearMenus),N.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),m(qi);const Vi="backdrop",Ki="show",Qi=`mousedown.bs.${Vi}`,Xi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Yi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends H{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(Ki),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Ki),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(N.off(this._element,Qi),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),N.on(t,Qi,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends H{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),N.off(document,Gi),N.on(document,Ji,(t=>this._handleFocusin(t))),N.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,N.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&F.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=F.getDataAttribute(t,e);null!==i?(F.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",An="show",En="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||N.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(N.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(An),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){N.off(window,hn),N.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(An),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,N.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){N.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),N.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),N.on(this._element,bn,(t=>{N.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),N.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(N.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(En)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(En),this._queueCallback((()=>{this._element.classList.remove(En),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}N.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),N.one(e,pn,(t=>{t.defaultPrevented||N.one(e,fn,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),R(On),m(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,Mn=`hide${xn}`,jn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Wn=`click${xn}${kn}`,Bn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||N.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),N.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(N.trigger(this._element,Mn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),N.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():N.trigger(this._element,jn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){N.on(this._element,Bn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():N.trigger(this._element,jn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}N.on(document,Wn,'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;N.one(e,Fn,(()=>{a(this)&&this.focus()}));const i=z.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),N.on(window,Ln,(()=>{for(const t of z.find(In))qn.getOrCreateInstance(t).show()})),N.on(window,Hn,(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),R(qn),m(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Kn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Qn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Xn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Kn.has(i)||Boolean(Qn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Yn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
"},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends H{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Yn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Xn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends W{constructor(t,e){if(void 0===vi)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),N.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=N.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),N.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.on(t,"mouseover",h);this._queueCallback((()=>{N.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!N.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))N.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),N.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return bi(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)N.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");N.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),N.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},N.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=F.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},As={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class Es extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return As}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(N.off(this._config.target,ms),N.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(bs,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(decodeURI(e.hash),this._element);a(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),N.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=z.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=Es.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(window,gs,(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))Es.getOrCreateInstance(t)})),m(Es);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",Ms="Home",js="End",Fs="active",Hs="fade",Ws="show",Bs=":not(.dropdown-toggle)",zs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',Rs=`.nav-link${Bs}, .list-group-item${Bs}, [role="tab"]${Bs}, ${zs}`,qs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Vs extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),N.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?N.trigger(e,Cs,{relatedTarget:t}):null;N.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),N.trigger(t,ks,{relatedTarget:e})):t.classList.add(Ws)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),N.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Ws)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,Ms,js].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!l(t)));let i;if([Ms,js].includes(t.key))i=e[t.key===Ms?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=b(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Vs.getOrCreateInstance(i).show())}_getChildren(){return z.find(Rs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(".dropdown-toggle",Fs),n(".dropdown-menu",Ws),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(Rs)?t:z.findOne(Rs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Vs.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}N.on(document,Ls,zs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||Vs.getOrCreateInstance(this).show()})),N.on(window,Ds,(()=>{for(const t of z.find(qs))Vs.getOrCreateInstance(t)})),m(Vs);const Ks=".bs.toast",Qs=`mouseover${Ks}`,Xs=`mouseout${Ks}`,Ys=`focusin${Ks}`,Us=`focusout${Ks}`,Gs=`hide${Ks}`,Js=`hidden${Ks}`,Zs=`show${Ks}`,to=`shown${Ks}`,eo="hide",io="show",no="showing",so={animation:"boolean",autohide:"boolean",delay:"number"},oo={animation:!0,autohide:!0,delay:5e3};class ro extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return oo}static get DefaultType(){return so}static get NAME(){return"toast"}show(){N.trigger(this._element,Zs).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(eo),d(this._element),this._element.classList.add(io,no),this._queueCallback((()=>{this._element.classList.remove(no),N.trigger(this._element,to),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(N.trigger(this._element,Gs).defaultPrevented||(this._element.classList.add(no),this._queueCallback((()=>{this._element.classList.add(eo),this._element.classList.remove(no,io),N.trigger(this._element,Js)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(io),super.dispose()}isShown(){return this._element.classList.contains(io)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){N.on(this._element,Qs,(t=>this._onInteraction(t,!0))),N.on(this._element,Xs,(t=>this._onInteraction(t,!1))),N.on(this._element,Ys,(t=>this._onInteraction(t,!0))),N.on(this._element,Us,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ro.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(ro),m(ro),{Alert:Q,Button:Y,Carousel:xt,Collapse:Bt,Dropdown:qi,Modal:On,Offcanvas:qn,Popover:us,ScrollSpy:Es,Tab:Vs,Toast:ro,Tooltip:cs}}));
+//# sourceMappingURL=bootstrap.bundle.min.js.map
\ No newline at end of file
diff --git a/docs/site_libs/clipboard/clipboard.min.js b/docs/site_libs/clipboard/clipboard.min.js
new file mode 100644
index 00000000..1103f811
--- /dev/null
+++ b/docs/site_libs/clipboard/clipboard.min.js
@@ -0,0 +1,7 @@
+/*!
+ * clipboard.js v2.0.11
+ * https://clipboardjs.com/
+ *
+ * Licensed MIT © Zeno Rocha
+ */
+!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return b}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),r=n.n(e);function c(t){try{return document.execCommand(t)}catch(t){return}}var a=function(t){t=r()(t);return c("cut"),t};function o(t,e){var n,o,t=(n=t,o="rtl"===document.documentElement.getAttribute("dir"),(t=document.createElement("textarea")).style.fontSize="12pt",t.style.border="0",t.style.padding="0",t.style.margin="0",t.style.position="absolute",t.style[o?"right":"left"]="-9999px",o=window.pageYOffset||document.documentElement.scrollTop,t.style.top="".concat(o,"px"),t.setAttribute("readonly",""),t.value=n,t);return e.container.appendChild(t),e=r()(t),c("copy"),t.remove(),e}var f=function(t){var e=11&&void 0!==arguments[1]?arguments[1]:null,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n=e[s]=e[s]||[],l={all:n,evt:null,found:null};return t&&i&&P(n)>0&&o(n,(function(e,n){if(e.eventName==t&&e.fn.toString()==i.toString())return l.found=!0,l.evt=n,!1})),l}function a(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.onElement,n=t.withCallback,s=t.avoidDuplicate,l=void 0===s||s,a=t.once,h=void 0!==a&&a,d=t.useCapture,c=void 0!==d&&d,u=arguments.length>2?arguments[2]:void 0,g=i||[];function v(e){T(n)&&n.call(u,e,this),h&&v.destroy()}return C(g)&&(g=document.querySelectorAll(g)),v.destroy=function(){o(g,(function(t){var i=r(t,e,v);i.found&&i.all.splice(i.evt,1),t.removeEventListener&&t.removeEventListener(e,v,c)}))},o(g,(function(t){var i=r(t,e,v);(t.addEventListener&&l&&!i.found||!l)&&(t.addEventListener(e,v,c),i.all.push({eventName:e,fn:v}))})),v}function h(e,t){o(t.split(" "),(function(t){return e.classList.add(t)}))}function d(e,t){o(t.split(" "),(function(t){return e.classList.remove(t)}))}function c(e,t){return e.classList.contains(t)}function u(e,t){for(;e!==document.body;){if(!(e=e.parentElement))return!1;if("function"==typeof e.matches?e.matches(t):e.msMatchesSelector(t))return e}}function g(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!e||""===t)return!1;if("none"===t)return T(i)&&i(),!1;var n=x(),s=t.split(" ");o(s,(function(t){h(e,"g"+t)})),a(n,{onElement:e,avoidDuplicate:!1,once:!0,withCallback:function(e,t){o(s,(function(e){d(t,"g"+e)})),T(i)&&i()}})}function v(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";if(""===t)return e.style.webkitTransform="",e.style.MozTransform="",e.style.msTransform="",e.style.OTransform="",e.style.transform="",!1;e.style.webkitTransform=t,e.style.MozTransform=t,e.style.msTransform=t,e.style.OTransform=t,e.style.transform=t}function f(e){e.style.display="block"}function p(e){e.style.display="none"}function m(e){var t=document.createDocumentFragment(),i=document.createElement("div");for(i.innerHTML=e;i.firstChild;)t.appendChild(i.firstChild);return t}function y(){return{width:window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,height:window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight}}function x(){var e,t=document.createElement("fakeelement"),i={animation:"animationend",OAnimation:"oAnimationEnd",MozAnimation:"animationend",WebkitAnimation:"webkitAnimationEnd"};for(e in i)if(void 0!==t.style[e])return i[e]}function b(e,t,i,n){if(e())t();else{var s;i||(i=100);var l=setInterval((function(){e()&&(clearInterval(l),s&&clearTimeout(s),t())}),i);n&&(s=setTimeout((function(){clearInterval(l)}),n))}}function S(e,t,i){if(I(e))console.error("Inject assets error");else if(T(t)&&(i=t,t=!1),C(t)&&t in window)T(i)&&i();else{var n;if(-1!==e.indexOf(".css")){if((n=document.querySelectorAll('link[href="'+e+'"]'))&&n.length>0)return void(T(i)&&i());var s=document.getElementsByTagName("head")[0],l=s.querySelectorAll('link[rel="stylesheet"]'),o=document.createElement("link");return o.rel="stylesheet",o.type="text/css",o.href=e,o.media="all",l?s.insertBefore(o,l[0]):s.appendChild(o),void(T(i)&&i())}if((n=document.querySelectorAll('script[src="'+e+'"]'))&&n.length>0){if(T(i)){if(C(t))return b((function(){return void 0!==window[t]}),(function(){i()})),!1;i()}}else{var r=document.createElement("script");r.type="text/javascript",r.src=e,r.onload=function(){if(T(i)){if(C(t))return b((function(){return void 0!==window[t]}),(function(){i()})),!1;i()}},document.body.appendChild(r)}}}function w(){return"navigator"in window&&window.navigator.userAgent.match(/(iPad)|(iPhone)|(iPod)|(Android)|(PlayBook)|(BB10)|(BlackBerry)|(Opera Mini)|(IEMobile)|(webOS)|(MeeGo)/i)}function T(e){return"function"==typeof e}function C(e){return"string"==typeof e}function k(e){return!(!e||!e.nodeType||1!=e.nodeType)}function E(e){return Array.isArray(e)}function A(e){return e&&e.length&&isFinite(e.length)}function L(t){return"object"===e(t)&&null!=t&&!T(t)&&!E(t)}function I(e){return null==e}function O(e,t){return null!==e&&hasOwnProperty.call(e,t)}function P(e){if(L(e)){if(e.keys)return e.keys().length;var t=0;for(var i in e)O(e,i)&&t++;return t}return e.length}function M(e){return!isNaN(parseFloat(e))&&isFinite(e)}function z(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1,t=document.querySelectorAll(".gbtn[data-taborder]:not(.disabled)");if(!t.length)return!1;if(1==t.length)return t[0];"string"==typeof e&&(e=parseInt(e));var i=[];o(t,(function(e){i.push(e.getAttribute("data-taborder"))}));var n=Math.max.apply(Math,i.map((function(e){return parseInt(e)}))),s=e<0?1:e+1;s>n&&(s="1");var l=i.filter((function(e){return e>=parseInt(s)})),r=l.sort()[0];return document.querySelector('.gbtn[data-taborder="'.concat(r,'"]'))}function X(e){if(e.events.hasOwnProperty("keyboard"))return!1;e.events.keyboard=a("keydown",{onElement:window,withCallback:function(t,i){var n=(t=t||window.event).keyCode;if(9==n){var s=document.querySelector(".gbtn.focused");if(!s){var l=!(!document.activeElement||!document.activeElement.nodeName)&&document.activeElement.nodeName.toLocaleLowerCase();if("input"==l||"textarea"==l||"button"==l)return}t.preventDefault();var o=document.querySelectorAll(".gbtn[data-taborder]");if(!o||o.length<=0)return;if(!s){var r=z();return void(r&&(r.focus(),h(r,"focused")))}var a=z(s.getAttribute("data-taborder"));d(s,"focused"),a&&(a.focus(),h(a,"focused"))}39==n&&e.nextSlide(),37==n&&e.prevSlide(),27==n&&e.close()}})}function Y(e){return Math.sqrt(e.x*e.x+e.y*e.y)}function q(e,t){var i=function(e,t){var i=Y(e)*Y(t);if(0===i)return 0;var n=function(e,t){return e.x*t.x+e.y*t.y}(e,t)/i;return n>1&&(n=1),Math.acos(n)}(e,t);return function(e,t){return e.x*t.y-t.x*e.y}(e,t)>0&&(i*=-1),180*i/Math.PI}var N=function(){function e(i){t(this,e),this.handlers=[],this.el=i}return n(e,[{key:"add",value:function(e){this.handlers.push(e)}},{key:"del",value:function(e){e||(this.handlers=[]);for(var t=this.handlers.length;t>=0;t--)this.handlers[t]===e&&this.handlers.splice(t,1)}},{key:"dispatch",value:function(){for(var e=0,t=this.handlers.length;e=0)console.log("ignore drag for this touched element",e.target.nodeName.toLowerCase());else{this.now=Date.now(),this.x1=e.touches[0].pageX,this.y1=e.touches[0].pageY,this.delta=this.now-(this.last||this.now),this.touchStart.dispatch(e,this.element),null!==this.preTapPosition.x&&(this.isDoubleTap=this.delta>0&&this.delta<=250&&Math.abs(this.preTapPosition.x-this.x1)<30&&Math.abs(this.preTapPosition.y-this.y1)<30,this.isDoubleTap&&clearTimeout(this.singleTapTimeout)),this.preTapPosition.x=this.x1,this.preTapPosition.y=this.y1,this.last=this.now;var t=this.preV;if(e.touches.length>1){this._cancelLongTap(),this._cancelSingleTap();var i={x:e.touches[1].pageX-this.x1,y:e.touches[1].pageY-this.y1};t.x=i.x,t.y=i.y,this.pinchStartLen=Y(t),this.multipointStart.dispatch(e,this.element)}this._preventTap=!1,this.longTapTimeout=setTimeout(function(){this.longTap.dispatch(e,this.element),this._preventTap=!0}.bind(this),750)}}}},{key:"move",value:function(e){if(e.touches){var t=this.preV,i=e.touches.length,n=e.touches[0].pageX,s=e.touches[0].pageY;if(this.isDoubleTap=!1,i>1){var l=e.touches[1].pageX,o=e.touches[1].pageY,r={x:e.touches[1].pageX-n,y:e.touches[1].pageY-s};null!==t.x&&(this.pinchStartLen>0&&(e.zoom=Y(r)/this.pinchStartLen,this.pinch.dispatch(e,this.element)),e.angle=q(r,t),this.rotate.dispatch(e,this.element)),t.x=r.x,t.y=r.y,null!==this.x2&&null!==this.sx2?(e.deltaX=(n-this.x2+l-this.sx2)/2,e.deltaY=(s-this.y2+o-this.sy2)/2):(e.deltaX=0,e.deltaY=0),this.twoFingerPressMove.dispatch(e,this.element),this.sx2=l,this.sy2=o}else{if(null!==this.x2){e.deltaX=n-this.x2,e.deltaY=s-this.y2;var a=Math.abs(this.x1-this.x2),h=Math.abs(this.y1-this.y2);(a>10||h>10)&&(this._preventTap=!0)}else e.deltaX=0,e.deltaY=0;this.pressMove.dispatch(e,this.element)}this.touchMove.dispatch(e,this.element),this._cancelLongTap(),this.x2=n,this.y2=s,i>1&&e.preventDefault()}}},{key:"end",value:function(e){if(e.changedTouches){this._cancelLongTap();var t=this;e.touches.length<2&&(this.multipointEnd.dispatch(e,this.element),this.sx2=this.sy2=null),this.x2&&Math.abs(this.x1-this.x2)>30||this.y2&&Math.abs(this.y1-this.y2)>30?(e.direction=this._swipeDirection(this.x1,this.x2,this.y1,this.y2),this.swipeTimeout=setTimeout((function(){t.swipe.dispatch(e,t.element)}),0)):(this.tapTimeout=setTimeout((function(){t._preventTap||t.tap.dispatch(e,t.element),t.isDoubleTap&&(t.doubleTap.dispatch(e,t.element),t.isDoubleTap=!1)}),0),t.isDoubleTap||(t.singleTapTimeout=setTimeout((function(){t.singleTap.dispatch(e,t.element)}),250))),this.touchEnd.dispatch(e,this.element),this.preV.x=0,this.preV.y=0,this.zoom=1,this.pinchStartLen=null,this.x1=this.x2=this.y1=this.y2=null}}},{key:"cancelAll",value:function(){this._preventTap=!0,clearTimeout(this.singleTapTimeout),clearTimeout(this.tapTimeout),clearTimeout(this.longTapTimeout),clearTimeout(this.swipeTimeout)}},{key:"cancel",value:function(e){this.cancelAll(),this.touchCancel.dispatch(e,this.element)}},{key:"_cancelLongTap",value:function(){clearTimeout(this.longTapTimeout)}},{key:"_cancelSingleTap",value:function(){clearTimeout(this.singleTapTimeout)}},{key:"_swipeDirection",value:function(e,t,i,n){return Math.abs(e-t)>=Math.abs(i-n)?e-t>0?"Left":"Right":i-n>0?"Up":"Down"}},{key:"on",value:function(e,t){this[e]&&this[e].add(t)}},{key:"off",value:function(e,t){this[e]&&this[e].del(t)}},{key:"destroy",value:function(){return this.singleTapTimeout&&clearTimeout(this.singleTapTimeout),this.tapTimeout&&clearTimeout(this.tapTimeout),this.longTapTimeout&&clearTimeout(this.longTapTimeout),this.swipeTimeout&&clearTimeout(this.swipeTimeout),this.element.removeEventListener("touchstart",this.start),this.element.removeEventListener("touchmove",this.move),this.element.removeEventListener("touchend",this.end),this.element.removeEventListener("touchcancel",this.cancel),this.rotate.del(),this.touchStart.del(),this.multipointStart.del(),this.multipointEnd.del(),this.pinch.del(),this.swipe.del(),this.tap.del(),this.doubleTap.del(),this.longTap.del(),this.singleTap.del(),this.pressMove.del(),this.twoFingerPressMove.del(),this.touchMove.del(),this.touchEnd.del(),this.touchCancel.del(),this.preV=this.pinchStartLen=this.zoom=this.isDoubleTap=this.delta=this.last=this.now=this.tapTimeout=this.singleTapTimeout=this.longTapTimeout=this.swipeTimeout=this.x1=this.x2=this.y1=this.y2=this.preTapPosition=this.rotate=this.touchStart=this.multipointStart=this.multipointEnd=this.pinch=this.swipe=this.tap=this.doubleTap=this.longTap=this.singleTap=this.pressMove=this.touchMove=this.touchEnd=this.touchCancel=this.twoFingerPressMove=null,window.removeEventListener("scroll",this._cancelAllHandler),null}}]),e}();function W(e){var t=function(){var e,t=document.createElement("fakeelement"),i={transition:"transitionend",OTransition:"oTransitionEnd",MozTransition:"transitionend",WebkitTransition:"webkitTransitionEnd"};for(e in i)if(void 0!==t.style[e])return i[e]}(),i=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,n=c(e,"gslide-media")?e:e.querySelector(".gslide-media"),s=u(n,".ginner-container"),l=e.querySelector(".gslide-description");i>769&&(n=s),h(n,"greset"),v(n,"translate3d(0, 0, 0)"),a(t,{onElement:n,once:!0,withCallback:function(e,t){d(n,"greset")}}),n.style.opacity="",l&&(l.style.opacity="")}function B(e){if(e.events.hasOwnProperty("touch"))return!1;var t,i,n,s=y(),l=s.width,o=s.height,r=!1,a=null,g=null,f=null,p=!1,m=1,x=1,b=!1,S=!1,w=null,T=null,C=null,k=null,E=0,A=0,L=!1,I=!1,O={},P={},M=0,z=0,X=document.getElementById("glightbox-slider"),Y=document.querySelector(".goverlay"),q=new _(X,{touchStart:function(t){if(r=!0,(c(t.targetTouches[0].target,"ginner-container")||u(t.targetTouches[0].target,".gslide-desc")||"a"==t.targetTouches[0].target.nodeName.toLowerCase())&&(r=!1),u(t.targetTouches[0].target,".gslide-inline")&&!c(t.targetTouches[0].target.parentNode,"gslide-inline")&&(r=!1),r){if(P=t.targetTouches[0],O.pageX=t.targetTouches[0].pageX,O.pageY=t.targetTouches[0].pageY,M=t.targetTouches[0].clientX,z=t.targetTouches[0].clientY,a=e.activeSlide,g=a.querySelector(".gslide-media"),n=a.querySelector(".gslide-inline"),f=null,c(g,"gslide-image")&&(f=g.querySelector("img")),(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)>769&&(g=a.querySelector(".ginner-container")),d(Y,"greset"),t.pageX>20&&t.pageXo){var a=O.pageX-P.pageX;if(Math.abs(a)<=13)return!1}p=!0;var h,d=s.targetTouches[0].clientX,c=s.targetTouches[0].clientY,u=M-d,m=z-c;if(Math.abs(u)>Math.abs(m)?(L=!1,I=!0):(I=!1,L=!0),t=P.pageX-O.pageX,E=100*t/l,i=P.pageY-O.pageY,A=100*i/o,L&&f&&(h=1-Math.abs(i)/o,Y.style.opacity=h,e.settings.touchFollowAxis&&(E=0)),I&&(h=1-Math.abs(t)/l,g.style.opacity=h,e.settings.touchFollowAxis&&(A=0)),!f)return v(g,"translate3d(".concat(E,"%, 0, 0)"));v(g,"translate3d(".concat(E,"%, ").concat(A,"%, 0)"))}},touchEnd:function(){if(r){if(p=!1,S||b)return C=w,void(k=T);var t=Math.abs(parseInt(A)),i=Math.abs(parseInt(E));if(!(t>29&&f))return t<29&&i<25?(h(Y,"greset"),Y.style.opacity=1,W(g)):void 0;e.close()}},multipointEnd:function(){setTimeout((function(){b=!1}),50)},multipointStart:function(){b=!0,m=x||1},pinch:function(e){if(!f||p)return!1;b=!0,f.scaleX=f.scaleY=m*e.zoom;var t=m*e.zoom;if(S=!0,t<=1)return S=!1,t=1,k=null,C=null,w=null,T=null,void f.setAttribute("style","");t>4.5&&(t=4.5),f.style.transform="scale3d(".concat(t,", ").concat(t,", 1)"),x=t},pressMove:function(e){if(S&&!b){var t=P.pageX-O.pageX,i=P.pageY-O.pageY;C&&(t+=C),k&&(i+=k),w=t,T=i;var n="translate3d(".concat(t,"px, ").concat(i,"px, 0)");x&&(n+=" scale3d(".concat(x,", ").concat(x,", 1)")),v(f,n)}},swipe:function(t){if(!S)if(b)b=!1;else{if("Left"==t.direction){if(e.index==e.elements.length-1)return W(g);e.nextSlide()}if("Right"==t.direction){if(0==e.index)return W(g);e.prevSlide()}}}});e.events.touch=q}var H=function(){function e(i,n){var s=this,l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(t(this,e),this.img=i,this.slide=n,this.onclose=l,this.img.setZoomEvents)return!1;this.active=!1,this.zoomedIn=!1,this.dragging=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.img.addEventListener("mousedown",(function(e){return s.dragStart(e)}),!1),this.img.addEventListener("mouseup",(function(e){return s.dragEnd(e)}),!1),this.img.addEventListener("mousemove",(function(e){return s.drag(e)}),!1),this.img.addEventListener("click",(function(e){return s.slide.classList.contains("dragging-nav")?(s.zoomOut(),!1):s.zoomedIn?void(s.zoomedIn&&!s.dragging&&s.zoomOut()):s.zoomIn()}),!1),this.img.setZoomEvents=!0}return n(e,[{key:"zoomIn",value:function(){var e=this.widowWidth();if(!(this.zoomedIn||e<=768)){var t=this.img;if(t.setAttribute("data-style",t.getAttribute("style")),t.style.maxWidth=t.naturalWidth+"px",t.style.maxHeight=t.naturalHeight+"px",t.naturalWidth>e){var i=e/2-t.naturalWidth/2;this.setTranslate(this.img.parentNode,i,0)}this.slide.classList.add("zoomed"),this.zoomedIn=!0}}},{key:"zoomOut",value:function(){this.img.parentNode.setAttribute("style",""),this.img.setAttribute("style",this.img.getAttribute("data-style")),this.slide.classList.remove("zoomed"),this.zoomedIn=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.onclose&&"function"==typeof this.onclose&&this.onclose()}},{key:"dragStart",value:function(e){e.preventDefault(),this.zoomedIn?("touchstart"===e.type?(this.initialX=e.touches[0].clientX-this.xOffset,this.initialY=e.touches[0].clientY-this.yOffset):(this.initialX=e.clientX-this.xOffset,this.initialY=e.clientY-this.yOffset),e.target===this.img&&(this.active=!0,this.img.classList.add("dragging"))):this.active=!1}},{key:"dragEnd",value:function(e){var t=this;e.preventDefault(),this.initialX=this.currentX,this.initialY=this.currentY,this.active=!1,setTimeout((function(){t.dragging=!1,t.img.isDragging=!1,t.img.classList.remove("dragging")}),100)}},{key:"drag",value:function(e){this.active&&(e.preventDefault(),"touchmove"===e.type?(this.currentX=e.touches[0].clientX-this.initialX,this.currentY=e.touches[0].clientY-this.initialY):(this.currentX=e.clientX-this.initialX,this.currentY=e.clientY-this.initialY),this.xOffset=this.currentX,this.yOffset=this.currentY,this.img.isDragging=!0,this.dragging=!0,this.setTranslate(this.img,this.currentX,this.currentY))}},{key:"onMove",value:function(e){if(this.zoomedIn){var t=e.clientX-this.img.naturalWidth/2,i=e.clientY-this.img.naturalHeight/2;this.setTranslate(this.img,t,i)}}},{key:"setTranslate",value:function(e,t,i){e.style.transform="translate3d("+t+"px, "+i+"px, 0)"}},{key:"widowWidth",value:function(){return window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth}}]),e}(),V=function(){function e(){var i=this,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e);var s=n.dragEl,l=n.toleranceX,o=void 0===l?40:l,r=n.toleranceY,a=void 0===r?65:r,h=n.slide,d=void 0===h?null:h,c=n.instance,u=void 0===c?null:c;this.el=s,this.active=!1,this.dragging=!1,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.direction=null,this.lastDirection=null,this.toleranceX=o,this.toleranceY=a,this.toleranceReached=!1,this.dragContainer=this.el,this.slide=d,this.instance=u,this.el.addEventListener("mousedown",(function(e){return i.dragStart(e)}),!1),this.el.addEventListener("mouseup",(function(e){return i.dragEnd(e)}),!1),this.el.addEventListener("mousemove",(function(e){return i.drag(e)}),!1)}return n(e,[{key:"dragStart",value:function(e){if(this.slide.classList.contains("zoomed"))this.active=!1;else{"touchstart"===e.type?(this.initialX=e.touches[0].clientX-this.xOffset,this.initialY=e.touches[0].clientY-this.yOffset):(this.initialX=e.clientX-this.xOffset,this.initialY=e.clientY-this.yOffset);var t=e.target.nodeName.toLowerCase();e.target.classList.contains("nodrag")||u(e.target,".nodrag")||-1!==["input","select","textarea","button","a"].indexOf(t)?this.active=!1:(e.preventDefault(),(e.target===this.el||"img"!==t&&u(e.target,".gslide-inline"))&&(this.active=!0,this.el.classList.add("dragging"),this.dragContainer=u(e.target,".ginner-container")))}}},{key:"dragEnd",value:function(e){var t=this;e&&e.preventDefault(),this.initialX=0,this.initialY=0,this.currentX=null,this.currentY=null,this.initialX=null,this.initialY=null,this.xOffset=0,this.yOffset=0,this.active=!1,this.doSlideChange&&(this.instance.preventOutsideClick=!0,"right"==this.doSlideChange&&this.instance.prevSlide(),"left"==this.doSlideChange&&this.instance.nextSlide()),this.doSlideClose&&this.instance.close(),this.toleranceReached||this.setTranslate(this.dragContainer,0,0,!0),setTimeout((function(){t.instance.preventOutsideClick=!1,t.toleranceReached=!1,t.lastDirection=null,t.dragging=!1,t.el.isDragging=!1,t.el.classList.remove("dragging"),t.slide.classList.remove("dragging-nav"),t.dragContainer.style.transform="",t.dragContainer.style.transition=""}),100)}},{key:"drag",value:function(e){if(this.active){e.preventDefault(),this.slide.classList.add("dragging-nav"),"touchmove"===e.type?(this.currentX=e.touches[0].clientX-this.initialX,this.currentY=e.touches[0].clientY-this.initialY):(this.currentX=e.clientX-this.initialX,this.currentY=e.clientY-this.initialY),this.xOffset=this.currentX,this.yOffset=this.currentY,this.el.isDragging=!0,this.dragging=!0,this.doSlideChange=!1,this.doSlideClose=!1;var t=Math.abs(this.currentX),i=Math.abs(this.currentY);if(t>0&&t>=Math.abs(this.currentY)&&(!this.lastDirection||"x"==this.lastDirection)){this.yOffset=0,this.lastDirection="x",this.setTranslate(this.dragContainer,this.currentX,0);var n=this.shouldChange();if(!this.instance.settings.dragAutoSnap&&n&&(this.doSlideChange=n),this.instance.settings.dragAutoSnap&&n)return this.instance.preventOutsideClick=!0,this.toleranceReached=!0,this.active=!1,this.instance.preventOutsideClick=!0,this.dragEnd(null),"right"==n&&this.instance.prevSlide(),void("left"==n&&this.instance.nextSlide())}if(this.toleranceY>0&&i>0&&i>=t&&(!this.lastDirection||"y"==this.lastDirection)){this.xOffset=0,this.lastDirection="y",this.setTranslate(this.dragContainer,0,this.currentY);var s=this.shouldClose();return!this.instance.settings.dragAutoSnap&&s&&(this.doSlideClose=!0),void(this.instance.settings.dragAutoSnap&&s&&this.instance.close())}}}},{key:"shouldChange",value:function(){var e=!1;if(Math.abs(this.currentX)>=this.toleranceX){var t=this.currentX>0?"right":"left";("left"==t&&this.slide!==this.slide.parentNode.lastChild||"right"==t&&this.slide!==this.slide.parentNode.firstChild)&&(e=t)}return e}},{key:"shouldClose",value:function(){var e=!1;return Math.abs(this.currentY)>=this.toleranceY&&(e=!0),e}},{key:"setTranslate",value:function(e,t,i){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];e.style.transition=n?"all .2s ease":"",e.style.transform="translate3d(".concat(t,"px, ").concat(i,"px, 0)")}}]),e}();function j(e,t,i,n){var s=e.querySelector(".gslide-media"),l=new Image,o="gSlideTitle_"+i,r="gSlideDesc_"+i;l.addEventListener("load",(function(){T(n)&&n()}),!1),l.src=t.href,""!=t.sizes&&""!=t.srcset&&(l.sizes=t.sizes,l.srcset=t.srcset),l.alt="",I(t.alt)||""===t.alt||(l.alt=t.alt),""!==t.title&&l.setAttribute("aria-labelledby",o),""!==t.description&&l.setAttribute("aria-describedby",r),t.hasOwnProperty("_hasCustomWidth")&&t._hasCustomWidth&&(l.style.width=t.width),t.hasOwnProperty("_hasCustomHeight")&&t._hasCustomHeight&&(l.style.height=t.height),s.insertBefore(l,s.firstChild)}function F(e,t,i,n){var s=this,l=e.querySelector(".ginner-container"),o="gvideo"+i,r=e.querySelector(".gslide-media"),a=this.getAllPlayers();h(l,"gvideo-container"),r.insertBefore(m('
'),r.firstChild);var d=e.querySelector(".gvideo-wrapper");S(this.settings.plyr.css,"Plyr");var c=t.href,u=null==t?void 0:t.videoProvider,g=!1;r.style.maxWidth=t.width,S(this.settings.plyr.js,"Plyr",(function(){if(!u&&c.match(/vimeo\.com\/([0-9]*)/)&&(u="vimeo"),!u&&(c.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||c.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/)||c.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/))&&(u="youtube"),"local"===u||!u){u="local";var l='',l+=''),g=m(l+=" ")}var r=g||m('
'));h(d,"".concat(u,"-video gvideo")),d.appendChild(r),d.setAttribute("data-id",o),d.setAttribute("data-index",i);var v=O(s.settings.plyr,"config")?s.settings.plyr.config:{},f=new Plyr("#"+o,v);f.on("ready",(function(e){a[o]=e.detail.plyr,T(n)&&n()})),b((function(){return e.querySelector("iframe")&&"true"==e.querySelector("iframe").dataset.ready}),(function(){s.resize(e)})),f.on("enterfullscreen",R),f.on("exitfullscreen",R)}))}function R(e){var t=u(e.target,".gslide-media");"enterfullscreen"===e.type&&h(t,"fullscreen"),"exitfullscreen"===e.type&&d(t,"fullscreen")}function G(e,t,i,n){var s,l=this,o=e.querySelector(".gslide-media"),r=!(!O(t,"href")||!t.href)&&t.href.split("#").pop().trim(),d=!(!O(t,"content")||!t.content)&&t.content;if(d&&(C(d)&&(s=m(''.concat(d,"
"))),k(d))){"none"==d.style.display&&(d.style.display="block");var c=document.createElement("div");c.className="ginlined-content",c.appendChild(d),s=c}if(r){var u=document.getElementById(r);if(!u)return!1;var g=u.cloneNode(!0);g.style.height=t.height,g.style.maxWidth=t.width,h(g,"ginlined-content"),s=g}if(!s)return console.error("Unable to append inline slide content",t),!1;o.style.height=t.height,o.style.width=t.width,o.appendChild(s),this.events["inlineclose"+r]=a("click",{onElement:o.querySelectorAll(".gtrigger-close"),withCallback:function(e){e.preventDefault(),l.close()}}),T(n)&&n()}function Z(e,t,i,n){var s=e.querySelector(".gslide-media"),l=function(e){var t=e.url,i=e.allow,n=e.callback,s=e.appendTo,l=document.createElement("iframe");return l.className="vimeo-video gvideo",l.src=t,l.style.width="100%",l.style.height="100%",i&&l.setAttribute("allow",i),l.onload=function(){l.onload=null,h(l,"node-ready"),T(n)&&n()},s&&s.appendChild(l),l}({url:t.href,callback:n});s.parentNode.style.maxWidth=t.width,s.parentNode.style.height=t.height,s.appendChild(l)}var U=function(){function e(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e),this.defaults={href:"",sizes:"",srcset:"",title:"",type:"",videoProvider:"",description:"",alt:"",descPosition:"bottom",effect:"",width:"",height:"",content:!1,zoomable:!0,draggable:!0},L(i)&&(this.defaults=l(this.defaults,i))}return n(e,[{key:"sourceType",value:function(e){var t=e;if(null!==(e=e.toLowerCase()).match(/\.(jpeg|jpg|jpe|gif|png|apn|webp|avif|svg)/))return"image";if(e.match(/(youtube\.com|youtube-nocookie\.com)\/watch\?v=([a-zA-Z0-9\-_]+)/)||e.match(/youtu\.be\/([a-zA-Z0-9\-_]+)/)||e.match(/(youtube\.com|youtube-nocookie\.com)\/embed\/([a-zA-Z0-9\-_]+)/))return"video";if(e.match(/vimeo\.com\/([0-9]*)/))return"video";if(null!==e.match(/\.(mp4|ogg|webm|mov)/))return"video";if(null!==e.match(/\.(mp3|wav|wma|aac|ogg)/))return"audio";if(e.indexOf("#")>-1&&""!==t.split("#").pop().trim())return"inline";return e.indexOf("goajax=true")>-1?"ajax":"external"}},{key:"parseConfig",value:function(e,t){var i=this,n=l({descPosition:t.descPosition},this.defaults);if(L(e)&&!k(e)){O(e,"type")||(O(e,"content")&&e.content?e.type="inline":O(e,"href")&&(e.type=this.sourceType(e.href)));var s=l(n,e);return this.setSize(s,t),s}var r="",a=e.getAttribute("data-glightbox"),h=e.nodeName.toLowerCase();if("a"===h&&(r=e.href),"img"===h&&(r=e.src,n.alt=e.alt),n.href=r,o(n,(function(s,l){O(t,l)&&"width"!==l&&(n[l]=t[l]);var o=e.dataset[l];I(o)||(n[l]=i.sanitizeValue(o))})),n.content&&(n.type="inline"),!n.type&&r&&(n.type=this.sourceType(r)),I(a)){if(!n.title&&"a"==h){var d=e.title;I(d)||""===d||(n.title=d)}if(!n.title&&"img"==h){var c=e.alt;I(c)||""===c||(n.title=c)}}else{var u=[];o(n,(function(e,t){u.push(";\\s?"+t)})),u=u.join("\\s?:|"),""!==a.trim()&&o(n,(function(e,t){var s=a,l=new RegExp("s?"+t+"s?:s?(.*?)("+u+"s?:|$)"),o=s.match(l);if(o&&o.length&&o[1]){var r=o[1].trim().replace(/;\s*$/,"");n[t]=i.sanitizeValue(r)}}))}if(n.description&&"."===n.description.substring(0,1)){var g;try{g=document.querySelector(n.description).innerHTML}catch(e){if(!(e instanceof DOMException))throw e}g&&(n.description=g)}if(!n.description){var v=e.querySelector(".glightbox-desc");v&&(n.description=v.innerHTML)}return this.setSize(n,t,e),this.slideConfig=n,n}},{key:"setSize",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,n="video"==e.type?this.checkSize(t.videosWidth):this.checkSize(t.width),s=this.checkSize(t.height);return e.width=O(e,"width")&&""!==e.width?this.checkSize(e.width):n,e.height=O(e,"height")&&""!==e.height?this.checkSize(e.height):s,i&&"image"==e.type&&(e._hasCustomWidth=!!i.dataset.width,e._hasCustomHeight=!!i.dataset.height),e}},{key:"checkSize",value:function(e){return M(e)?"".concat(e,"px"):e}},{key:"sanitizeValue",value:function(e){return"true"!==e&&"false"!==e?e:"true"===e}}]),e}(),$=function(){function e(i,n,s){t(this,e),this.element=i,this.instance=n,this.index=s}return n(e,[{key:"setContent",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(c(t,"loaded"))return!1;var n=this.instance.settings,s=this.slideConfig,l=w();T(n.beforeSlideLoad)&&n.beforeSlideLoad({index:this.index,slide:t,player:!1});var o=s.type,r=s.descPosition,a=t.querySelector(".gslide-media"),d=t.querySelector(".gslide-title"),u=t.querySelector(".gslide-desc"),g=t.querySelector(".gdesc-inner"),v=i,f="gSlideTitle_"+this.index,p="gSlideDesc_"+this.index;if(T(n.afterSlideLoad)&&(v=function(){T(i)&&i(),n.afterSlideLoad({index:e.index,slide:t,player:e.instance.getSlidePlayerInstance(e.index)})}),""==s.title&&""==s.description?g&&g.parentNode.parentNode.removeChild(g.parentNode):(d&&""!==s.title?(d.id=f,d.innerHTML=s.title):d.parentNode.removeChild(d),u&&""!==s.description?(u.id=p,l&&n.moreLength>0?(s.smallDescription=this.slideShortDesc(s.description,n.moreLength,n.moreText),u.innerHTML=s.smallDescription,this.descriptionEvents(u,s)):u.innerHTML=s.description):u.parentNode.removeChild(u),h(a.parentNode,"desc-".concat(r)),h(g.parentNode,"description-".concat(r))),h(a,"gslide-".concat(o)),h(t,"loaded"),"video"!==o){if("external"!==o)return"inline"===o?(G.apply(this.instance,[t,s,this.index,v]),void(s.draggable&&new V({dragEl:t.querySelector(".gslide-inline"),toleranceX:n.dragToleranceX,toleranceY:n.dragToleranceY,slide:t,instance:this.instance}))):void("image"!==o?T(v)&&v():j(t,s,this.index,(function(){var i=t.querySelector("img");s.draggable&&new V({dragEl:i,toleranceX:n.dragToleranceX,toleranceY:n.dragToleranceY,slide:t,instance:e.instance}),s.zoomable&&i.naturalWidth>i.offsetWidth&&(h(i,"zoomable"),new H(i,t,(function(){e.instance.resize()}))),T(v)&&v()})));Z.apply(this,[t,s,this.index,v])}else F.apply(this.instance,[t,s,this.index,v])}},{key:"slideShortDesc",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:50,i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=document.createElement("div");n.innerHTML=e;var s=n.innerText,l=i;if((e=s.trim()).length<=t)return e;var o=e.substr(0,t-1);return l?(n=null,o+'... '+i+" "):o}},{key:"descriptionEvents",value:function(e,t){var i=this,n=e.querySelector(".desc-more");if(!n)return!1;a("click",{onElement:n,withCallback:function(e,n){e.preventDefault();var s=document.body,l=u(n,".gslide-desc");if(!l)return!1;l.innerHTML=t.description,h(s,"gdesc-open");var o=a("click",{onElement:[s,u(l,".gslide-description")],withCallback:function(e,n){"a"!==e.target.nodeName.toLowerCase()&&(d(s,"gdesc-open"),h(s,"gdesc-closed"),l.innerHTML=t.smallDescription,i.descriptionEvents(l,t),setTimeout((function(){d(s,"gdesc-closed")}),400),o.destroy())}})}})}},{key:"create",value:function(){return m(this.instance.settings.slideHTML)}},{key:"getConfig",value:function(){k(this.element)||this.element.hasOwnProperty("draggable")||(this.element.draggable=this.instance.settings.draggable);var e=new U(this.instance.settings.slideExtraAttributes);return this.slideConfig=e.parseConfig(this.element,this.instance.settings),this.slideConfig}}]),e}(),J=w(),K=null!==w()||void 0!==document.createTouch||"ontouchstart"in window||"onmsgesturechange"in window||navigator.msMaxTouchPoints,Q=document.getElementsByTagName("html")[0],ee={selector:".glightbox",elements:null,skin:"clean",theme:"clean",closeButton:!0,startAt:null,autoplayVideos:!0,autofocusVideos:!0,descPosition:"bottom",width:"900px",height:"506px",videosWidth:"960px",beforeSlideChange:null,afterSlideChange:null,beforeSlideLoad:null,afterSlideLoad:null,slideInserted:null,slideRemoved:null,slideExtraAttributes:null,onOpen:null,onClose:null,loop:!1,zoomable:!0,draggable:!0,dragAutoSnap:!1,dragToleranceX:40,dragToleranceY:65,preload:!0,oneSlidePerOpen:!1,touchNavigation:!0,touchFollowAxis:!0,keyboardNavigation:!0,closeOnOutsideClick:!0,plugins:!1,plyr:{css:"https://cdn.plyr.io/3.6.12/plyr.css",js:"https://cdn.plyr.io/3.6.12/plyr.js",config:{ratio:"16:9",fullscreen:{enabled:!0,iosNative:!0},youtube:{noCookie:!0,rel:0,showinfo:0,iv_load_policy:3},vimeo:{byline:!1,portrait:!1,title:!1,transparent:!1}}},openEffect:"zoom",closeEffect:"zoom",slideEffect:"slide",moreText:"See more",moreLength:60,cssEfects:{fade:{in:"fadeIn",out:"fadeOut"},zoom:{in:"zoomIn",out:"zoomOut"},slide:{in:"slideInRight",out:"slideOutLeft"},slideBack:{in:"slideInLeft",out:"slideOutRight"},none:{in:"none",out:"none"}},svg:{close:' ',next:' ',prev:' '},slideHTML:'',lightboxHTML:'\n
\n
\n
\n
\n
{closeSVG} \n
{prevSVG} \n
{nextSVG} \n
\n
'},te=function(){function e(){var i=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t(this,e),this.customOptions=i,this.settings=l(ee,i),this.effectsClasses=this.getAnimationClasses(),this.videoPlayers={},this.apiEvents=[],this.fullElementsList=!1}return n(e,[{key:"init",value:function(){var e=this,t=this.getSelector();t&&(this.baseEvents=a("click",{onElement:t,withCallback:function(t,i){t.preventDefault(),e.open(i)}})),this.elements=this.getElements()}},{key:"open",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(0===this.elements.length)return!1;this.activeSlide=null,this.prevActiveSlideIndex=null,this.prevActiveSlide=null;var i=M(t)?t:this.settings.startAt;if(k(e)){var n=e.getAttribute("data-gallery");n&&(this.fullElementsList=this.elements,this.elements=this.getGalleryElements(this.elements,n)),I(i)&&(i=this.getElementIndex(e))<0&&(i=0)}M(i)||(i=0),this.build(),g(this.overlay,"none"===this.settings.openEffect?"none":this.settings.cssEfects.fade.in);var s=document.body,l=window.innerWidth-document.documentElement.clientWidth;if(l>0){var o=document.createElement("style");o.type="text/css",o.className="gcss-styles",o.innerText=".gscrollbar-fixer {margin-right: ".concat(l,"px}"),document.head.appendChild(o),h(s,"gscrollbar-fixer")}h(s,"glightbox-open"),h(Q,"glightbox-open"),J&&(h(document.body,"glightbox-mobile"),this.settings.slideEffect="slide"),this.showSlide(i,!0),1===this.elements.length?(h(this.prevButton,"glightbox-button-hidden"),h(this.nextButton,"glightbox-button-hidden")):(d(this.prevButton,"glightbox-button-hidden"),d(this.nextButton,"glightbox-button-hidden")),this.lightboxOpen=!0,this.trigger("open"),T(this.settings.onOpen)&&this.settings.onOpen(),K&&this.settings.touchNavigation&&B(this),this.settings.keyboardNavigation&&X(this)}},{key:"openAt",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.open(null,e)}},{key:"showSlide",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];f(this.loader),this.index=parseInt(t);var n=this.slidesContainer.querySelector(".current");n&&d(n,"current"),this.slideAnimateOut();var s=this.slidesContainer.querySelectorAll(".gslide")[t];if(c(s,"loaded"))this.slideAnimateIn(s,i),p(this.loader);else{f(this.loader);var l=this.elements[t],o={index:this.index,slide:s,slideNode:s,slideConfig:l.slideConfig,slideIndex:this.index,trigger:l.node,player:null};this.trigger("slide_before_load",o),l.instance.setContent(s,(function(){p(e.loader),e.resize(),e.slideAnimateIn(s,i),e.trigger("slide_after_load",o)}))}this.slideDescription=s.querySelector(".gslide-description"),this.slideDescriptionContained=this.slideDescription&&c(this.slideDescription.parentNode,"gslide-media"),this.settings.preload&&(this.preloadSlide(t+1),this.preloadSlide(t-1)),this.updateNavigationClasses(),this.activeSlide=s}},{key:"preloadSlide",value:function(e){var t=this;if(e<0||e>this.elements.length-1)return!1;if(I(this.elements[e]))return!1;var i=this.slidesContainer.querySelectorAll(".gslide")[e];if(c(i,"loaded"))return!1;var n=this.elements[e],s=n.type,l={index:e,slide:i,slideNode:i,slideConfig:n.slideConfig,slideIndex:e,trigger:n.node,player:null};this.trigger("slide_before_load",l),"video"===s||"external"===s?setTimeout((function(){n.instance.setContent(i,(function(){t.trigger("slide_after_load",l)}))}),200):n.instance.setContent(i,(function(){t.trigger("slide_after_load",l)}))}},{key:"prevSlide",value:function(){this.goToSlide(this.index-1)}},{key:"nextSlide",value:function(){this.goToSlide(this.index+1)}},{key:"goToSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(this.prevActiveSlide=this.activeSlide,this.prevActiveSlideIndex=this.index,!this.loop()&&(e<0||e>this.elements.length-1))return!1;e<0?e=this.elements.length-1:e>=this.elements.length&&(e=0),this.showSlide(e)}},{key:"insertSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:-1;t<0&&(t=this.elements.length);var i=new $(e,this,t),n=i.getConfig(),s=l({},n),o=i.create(),r=this.elements.length-1;s.index=t,s.node=!1,s.instance=i,s.slideConfig=n,this.elements.splice(t,0,s);var a=null,h=null;if(this.slidesContainer){if(t>r)this.slidesContainer.appendChild(o);else{var d=this.slidesContainer.querySelectorAll(".gslide")[t];this.slidesContainer.insertBefore(o,d)}(this.settings.preload&&0==this.index&&0==t||this.index-1==t||this.index+1==t)&&this.preloadSlide(t),0===this.index&&0===t&&(this.index=1),this.updateNavigationClasses(),a=this.slidesContainer.querySelectorAll(".gslide")[t],h=this.getSlidePlayerInstance(t),s.slideNode=a}this.trigger("slide_inserted",{index:t,slide:a,slideNode:a,slideConfig:n,slideIndex:t,trigger:null,player:h}),T(this.settings.slideInserted)&&this.settings.slideInserted({index:t,slide:a,player:h})}},{key:"removeSlide",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:-1;if(e<0||e>this.elements.length-1)return!1;var t=this.slidesContainer&&this.slidesContainer.querySelectorAll(".gslide")[e];t&&(this.getActiveSlideIndex()==e&&(e==this.elements.length-1?this.prevSlide():this.nextSlide()),t.parentNode.removeChild(t)),this.elements.splice(e,1),this.trigger("slide_removed",e),T(this.settings.slideRemoved)&&this.settings.slideRemoved(e)}},{key:"slideAnimateIn",value:function(e,t){var i=this,n=e.querySelector(".gslide-media"),s=e.querySelector(".gslide-description"),l={index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,slideNode:this.prevActiveSlide,slideIndex:this.prevActiveSlide,slideConfig:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].slideConfig,trigger:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].node,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},o={index:this.index,slide:this.activeSlide,slideNode:this.activeSlide,slideConfig:this.elements[this.index].slideConfig,slideIndex:this.index,trigger:this.elements[this.index].node,player:this.getSlidePlayerInstance(this.index)};if(n.offsetWidth>0&&s&&(p(s),s.style.display=""),d(e,this.effectsClasses),t)g(e,this.settings.cssEfects[this.settings.openEffect].in,(function(){i.settings.autoplayVideos&&i.slidePlayerPlay(e),i.trigger("slide_changed",{prev:l,current:o}),T(i.settings.afterSlideChange)&&i.settings.afterSlideChange.apply(i,[l,o])}));else{var r=this.settings.slideEffect,a="none"!==r?this.settings.cssEfects[r].in:r;this.prevActiveSlideIndex>this.index&&"slide"==this.settings.slideEffect&&(a=this.settings.cssEfects.slideBack.in),g(e,a,(function(){i.settings.autoplayVideos&&i.slidePlayerPlay(e),i.trigger("slide_changed",{prev:l,current:o}),T(i.settings.afterSlideChange)&&i.settings.afterSlideChange.apply(i,[l,o])}))}setTimeout((function(){i.resize(e)}),100),h(e,"current")}},{key:"slideAnimateOut",value:function(){if(!this.prevActiveSlide)return!1;var e=this.prevActiveSlide;d(e,this.effectsClasses),h(e,"prev");var t=this.settings.slideEffect,i="none"!==t?this.settings.cssEfects[t].out:t;this.slidePlayerPause(e),this.trigger("slide_before_change",{prev:{index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,slideNode:this.prevActiveSlide,slideIndex:this.prevActiveSlideIndex,slideConfig:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].slideConfig,trigger:I(this.prevActiveSlideIndex)?null:this.elements[this.prevActiveSlideIndex].node,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},current:{index:this.index,slide:this.activeSlide,slideNode:this.activeSlide,slideIndex:this.index,slideConfig:this.elements[this.index].slideConfig,trigger:this.elements[this.index].node,player:this.getSlidePlayerInstance(this.index)}}),T(this.settings.beforeSlideChange)&&this.settings.beforeSlideChange.apply(this,[{index:this.prevActiveSlideIndex,slide:this.prevActiveSlide,player:this.getSlidePlayerInstance(this.prevActiveSlideIndex)},{index:this.index,slide:this.activeSlide,player:this.getSlidePlayerInstance(this.index)}]),this.prevActiveSlideIndex>this.index&&"slide"==this.settings.slideEffect&&(i=this.settings.cssEfects.slideBack.out),g(e,i,(function(){var t=e.querySelector(".ginner-container"),i=e.querySelector(".gslide-media"),n=e.querySelector(".gslide-description");t.style.transform="",i.style.transform="",d(i,"greset"),i.style.opacity="",n&&(n.style.opacity=""),d(e,"prev")}))}},{key:"getAllPlayers",value:function(){return this.videoPlayers}},{key:"getSlidePlayerInstance",value:function(e){var t="gvideo"+e,i=this.getAllPlayers();return!(!O(i,t)||!i[t])&&i[t]}},{key:"stopSlideVideo",value:function(e){if(k(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}console.log("stopSlideVideo is deprecated, use slidePlayerPause");var i=this.getSlidePlayerInstance(e);i&&i.playing&&i.pause()}},{key:"slidePlayerPause",value:function(e){if(k(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}var i=this.getSlidePlayerInstance(e);i&&i.playing&&i.pause()}},{key:"playSlideVideo",value:function(e){if(k(e)){var t=e.querySelector(".gvideo-wrapper");t&&(e=t.getAttribute("data-index"))}console.log("playSlideVideo is deprecated, use slidePlayerPlay");var i=this.getSlidePlayerInstance(e);i&&!i.playing&&i.play()}},{key:"slidePlayerPlay",value:function(e){var t;if(!J||null!==(t=this.settings.plyr.config)&&void 0!==t&&t.muted){if(k(e)){var i=e.querySelector(".gvideo-wrapper");i&&(e=i.getAttribute("data-index"))}var n=this.getSlidePlayerInstance(e);n&&!n.playing&&(n.play(),this.settings.autofocusVideos&&n.elements.container.focus())}}},{key:"setElements",value:function(e){var t=this;this.settings.elements=!1;var i=[];e&&e.length&&o(e,(function(e,n){var s=new $(e,t,n),o=s.getConfig(),r=l({},o);r.slideConfig=o,r.instance=s,r.index=n,i.push(r)})),this.elements=i,this.lightboxOpen&&(this.slidesContainer.innerHTML="",this.elements.length&&(o(this.elements,(function(){var e=m(t.settings.slideHTML);t.slidesContainer.appendChild(e)})),this.showSlide(0,!0)))}},{key:"getElementIndex",value:function(e){var t=!1;return o(this.elements,(function(i,n){if(O(i,"node")&&i.node==e)return t=n,!0})),t}},{key:"getElements",value:function(){var e=this,t=[];this.elements=this.elements?this.elements:[],!I(this.settings.elements)&&E(this.settings.elements)&&this.settings.elements.length&&o(this.settings.elements,(function(i,n){var s=new $(i,e,n),o=s.getConfig(),r=l({},o);r.node=!1,r.index=n,r.instance=s,r.slideConfig=o,t.push(r)}));var i=!1;return this.getSelector()&&(i=document.querySelectorAll(this.getSelector())),i?(o(i,(function(i,n){var s=new $(i,e,n),o=s.getConfig(),r=l({},o);r.node=i,r.index=n,r.instance=s,r.slideConfig=o,r.gallery=i.getAttribute("data-gallery"),t.push(r)})),t):t}},{key:"getGalleryElements",value:function(e,t){return e.filter((function(e){return e.gallery==t}))}},{key:"getSelector",value:function(){return!this.settings.elements&&(this.settings.selector&&"data-"==this.settings.selector.substring(0,5)?"*[".concat(this.settings.selector,"]"):this.settings.selector)}},{key:"getActiveSlide",value:function(){return this.slidesContainer.querySelectorAll(".gslide")[this.index]}},{key:"getActiveSlideIndex",value:function(){return this.index}},{key:"getAnimationClasses",value:function(){var e=[];for(var t in this.settings.cssEfects)if(this.settings.cssEfects.hasOwnProperty(t)){var i=this.settings.cssEfects[t];e.push("g".concat(i.in)),e.push("g".concat(i.out))}return e.join(" ")}},{key:"build",value:function(){var e=this;if(this.built)return!1;var t=document.body.childNodes,i=[];o(t,(function(e){e.parentNode==document.body&&"#"!==e.nodeName.charAt(0)&&e.hasAttribute&&!e.hasAttribute("aria-hidden")&&(i.push(e),e.setAttribute("aria-hidden","true"))}));var n=O(this.settings.svg,"next")?this.settings.svg.next:"",s=O(this.settings.svg,"prev")?this.settings.svg.prev:"",l=O(this.settings.svg,"close")?this.settings.svg.close:"",r=this.settings.lightboxHTML;r=m(r=(r=(r=r.replace(/{nextSVG}/g,n)).replace(/{prevSVG}/g,s)).replace(/{closeSVG}/g,l)),document.body.appendChild(r);var d=document.getElementById("glightbox-body");this.modal=d;var g=d.querySelector(".gclose");this.prevButton=d.querySelector(".gprev"),this.nextButton=d.querySelector(".gnext"),this.overlay=d.querySelector(".goverlay"),this.loader=d.querySelector(".gloader"),this.slidesContainer=document.getElementById("glightbox-slider"),this.bodyHiddenChildElms=i,this.events={},h(this.modal,"glightbox-"+this.settings.skin),this.settings.closeButton&&g&&(this.events.close=a("click",{onElement:g,withCallback:function(t,i){t.preventDefault(),e.close()}})),g&&!this.settings.closeButton&&g.parentNode.removeChild(g),this.nextButton&&(this.events.next=a("click",{onElement:this.nextButton,withCallback:function(t,i){t.preventDefault(),e.nextSlide()}})),this.prevButton&&(this.events.prev=a("click",{onElement:this.prevButton,withCallback:function(t,i){t.preventDefault(),e.prevSlide()}})),this.settings.closeOnOutsideClick&&(this.events.outClose=a("click",{onElement:d,withCallback:function(t,i){e.preventOutsideClick||c(document.body,"glightbox-mobile")||u(t.target,".ginner-container")||u(t.target,".gbtn")||c(t.target,"gnext")||c(t.target,"gprev")||e.close()}})),o(this.elements,(function(t,i){e.slidesContainer.appendChild(t.instance.create()),t.slideNode=e.slidesContainer.querySelectorAll(".gslide")[i]})),K&&h(document.body,"glightbox-touch"),this.events.resize=a("resize",{onElement:window,withCallback:function(){e.resize()}}),this.built=!0}},{key:"resize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;if((e=e||this.activeSlide)&&!c(e,"zoomed")){var t=y(),i=e.querySelector(".gvideo-wrapper"),n=e.querySelector(".gslide-image"),s=this.slideDescription,l=t.width,o=t.height;if(l<=768?h(document.body,"glightbox-mobile"):d(document.body,"glightbox-mobile"),i||n){var r=!1;if(s&&(c(s,"description-bottom")||c(s,"description-top"))&&!c(s,"gabsolute")&&(r=!0),n)if(l<=768)n.querySelector("img");else if(r){var a=s.offsetHeight,u=n.querySelector("img");u.setAttribute("style","max-height: calc(100vh - ".concat(a,"px)")),s.setAttribute("style","max-width: ".concat(u.offsetWidth,"px;"))}if(i){var g=O(this.settings.plyr.config,"ratio")?this.settings.plyr.config.ratio:"";if(!g){var v=i.clientWidth,f=i.clientHeight,p=v/f;g="".concat(v/p,":").concat(f/p)}var m=g.split(":"),x=this.settings.videosWidth,b=this.settings.videosWidth,S=(b=M(x)||-1!==x.indexOf("px")?parseInt(x):-1!==x.indexOf("vw")?l*parseInt(x)/100:-1!==x.indexOf("vh")?o*parseInt(x)/100:-1!==x.indexOf("%")?l*parseInt(x)/100:parseInt(i.clientWidth))/(parseInt(m[0])/parseInt(m[1]));if(S=Math.floor(S),r&&(o-=s.offsetHeight),b>l||S>o||ob){var w=i.offsetWidth,T=i.offsetHeight,C=o/T,k={width:w*C,height:T*C};i.parentNode.setAttribute("style","max-width: ".concat(k.width,"px")),r&&s.setAttribute("style","max-width: ".concat(k.width,"px;"))}else i.parentNode.style.maxWidth="".concat(x),r&&s.setAttribute("style","max-width: ".concat(x,";"))}}}}},{key:"reload",value:function(){this.init()}},{key:"updateNavigationClasses",value:function(){var e=this.loop();d(this.nextButton,"disabled"),d(this.prevButton,"disabled"),0==this.index&&this.elements.length-1==0?(h(this.prevButton,"disabled"),h(this.nextButton,"disabled")):0!==this.index||e?this.index!==this.elements.length-1||e||h(this.nextButton,"disabled"):h(this.prevButton,"disabled")}},{key:"loop",value:function(){var e=O(this.settings,"loopAtEnd")?this.settings.loopAtEnd:null;return e=O(this.settings,"loop")?this.settings.loop:e,e}},{key:"close",value:function(){var e=this;if(!this.lightboxOpen){if(this.events){for(var t in this.events)this.events.hasOwnProperty(t)&&this.events[t].destroy();this.events=null}return!1}if(this.closing)return!1;this.closing=!0,this.slidePlayerPause(this.activeSlide),this.fullElementsList&&(this.elements=this.fullElementsList),this.bodyHiddenChildElms.length&&o(this.bodyHiddenChildElms,(function(e){e.removeAttribute("aria-hidden")})),h(this.modal,"glightbox-closing"),g(this.overlay,"none"==this.settings.openEffect?"none":this.settings.cssEfects.fade.out),g(this.activeSlide,this.settings.cssEfects[this.settings.closeEffect].out,(function(){if(e.activeSlide=null,e.prevActiveSlideIndex=null,e.prevActiveSlide=null,e.built=!1,e.events){for(var t in e.events)e.events.hasOwnProperty(t)&&e.events[t].destroy();e.events=null}var i=document.body;d(Q,"glightbox-open"),d(i,"glightbox-open touching gdesc-open glightbox-touch glightbox-mobile gscrollbar-fixer"),e.modal.parentNode.removeChild(e.modal),e.trigger("close"),T(e.settings.onClose)&&e.settings.onClose();var n=document.querySelector(".gcss-styles");n&&n.parentNode.removeChild(n),e.lightboxOpen=!1,e.closing=null}))}},{key:"destroy",value:function(){this.close(),this.clearAllEvents(),this.baseEvents&&this.baseEvents.destroy()}},{key:"on",value:function(e,t){var i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(!e||!T(t))throw new TypeError("Event name and callback must be defined");this.apiEvents.push({evt:e,once:i,callback:t})}},{key:"once",value:function(e,t){this.on(e,t,!0)}},{key:"trigger",value:function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=[];o(this.apiEvents,(function(t,s){var l=t.evt,o=t.once,r=t.callback;l==e&&(r(i),o&&n.push(s))})),n.length&&o(n,(function(e){return t.apiEvents.splice(e,1)}))}},{key:"clearAllEvents",value:function(){this.apiEvents.splice(0,this.apiEvents.length)}},{key:"version",value:function(){return"3.1.0"}}]),e}();return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=new te(e);return t.init(),t}}));
\ No newline at end of file
diff --git a/docs/site_libs/quarto-contrib/glightbox/lightbox.css b/docs/site_libs/quarto-contrib/glightbox/lightbox.css
new file mode 100644
index 00000000..46432d99
--- /dev/null
+++ b/docs/site_libs/quarto-contrib/glightbox/lightbox.css
@@ -0,0 +1,26 @@
+body:not(.glightbox-mobile) div.gslide div.gslide-description,
+body:not(.glightbox-mobile) div.gslide-description .gslide-title,
+body:not(.glightbox-mobile) div.gslide-description .gslide-desc {
+ color: var(--quarto-body-color);
+ background-color: var(--quarto-body-bg);
+}
+
+body:not(.glightbox-mobile) div.gslide-media {
+ background-color: var(--quarto-body-bg);
+}
+
+.goverlay {
+ background: rgba(0, 0, 0, 0.7);
+}
+
+div.gslide-description .gslide-title {
+ margin-top: 0.25em;
+ margin-bottom: 0.25em;
+ font-weight: 500;
+ font-family: inherit;
+}
+
+div.gslide-description .gslide-desc {
+ padding-bottom: 0.5em;
+ font-family: inherit;
+}
diff --git a/docs/site_libs/quarto-html/anchor.min.js b/docs/site_libs/quarto-html/anchor.min.js
new file mode 100644
index 00000000..5ac814d1
--- /dev/null
+++ b/docs/site_libs/quarto-html/anchor.min.js
@@ -0,0 +1,9 @@
+// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
+//
+// AnchorJS - v5.0.0 - 2023-01-18
+// https://www.bryanbraun.com/anchorjs/
+// Copyright (c) 2023 Bryan Braun; Licensed MIT
+//
+// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat
+!function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(globalThis,function(){"use strict";return function(A){function u(A){A.icon=Object.prototype.hasOwnProperty.call(A,"icon")?A.icon:"",A.visible=Object.prototype.hasOwnProperty.call(A,"visible")?A.visible:"hover",A.placement=Object.prototype.hasOwnProperty.call(A,"placement")?A.placement:"right",A.ariaLabel=Object.prototype.hasOwnProperty.call(A,"ariaLabel")?A.ariaLabel:"Anchor",A.class=Object.prototype.hasOwnProperty.call(A,"class")?A.class:"",A.base=Object.prototype.hasOwnProperty.call(A,"base")?A.base:"",A.truncate=Object.prototype.hasOwnProperty.call(A,"truncate")?Math.floor(A.truncate):64,A.titleText=Object.prototype.hasOwnProperty.call(A,"titleText")?A.titleText:""}function d(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new TypeError("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}this.options=A||{},this.elements=[],u(this.options),this.add=function(A){var e,t,o,i,n,s,a,r,l,c,h,p=[];if(u(this.options),0!==(e=d(A=A||"h2, h3, h4, h5, h6")).length){for(null===document.head.querySelector("style.anchorjs")&&((A=document.createElement("style")).className="anchorjs",A.appendChild(document.createTextNode("")),void 0===(h=document.head.querySelector('[rel="stylesheet"],style'))?document.head.appendChild(A):document.head.insertBefore(A,h),A.sheet.insertRule(".anchorjs-link{opacity:0;text-decoration:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}",A.sheet.cssRules.length),A.sheet.insertRule(":hover>.anchorjs-link,.anchorjs-link:focus{opacity:1}",A.sheet.cssRules.length),A.sheet.insertRule("[data-anchorjs-icon]::after{content:attr(data-anchorjs-icon)}",A.sheet.cssRules.length),A.sheet.insertRule('@font-face{font-family:anchorjs-icons;src:url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype")}',A.sheet.cssRules.length)),h=document.querySelectorAll("[id]"),t=[].map.call(h,function(A){return A.id}),i=0;i\]./()*\\\n\t\b\v\u00A0]/g,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&-1<(" "+A.firstChild.className+" ").indexOf(" anchorjs-link "),A=A.lastChild&&-1<(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ");return e||A||!1}}});
+// @license-end
\ No newline at end of file
diff --git a/docs/site_libs/quarto-html/popper.min.js b/docs/site_libs/quarto-html/popper.min.js
new file mode 100644
index 00000000..e3726d72
--- /dev/null
+++ b/docs/site_libs/quarto-html/popper.min.js
@@ -0,0 +1,6 @@
+/**
+ * @popperjs/core v2.11.7 - MIT License
+ */
+
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).Popper={})}(this,(function(e){"use strict";function t(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function n(e){return e instanceof t(e).Element||e instanceof Element}function r(e){return e instanceof t(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof t(e).ShadowRoot||e instanceof ShadowRoot)}var i=Math.max,a=Math.min,s=Math.round;function f(){var e=navigator.userAgentData;return null!=e&&e.brands&&Array.isArray(e.brands)?e.brands.map((function(e){return e.brand+"/"+e.version})).join(" "):navigator.userAgent}function c(){return!/^((?!chrome|android).)*safari/i.test(f())}function p(e,o,i){void 0===o&&(o=!1),void 0===i&&(i=!1);var a=e.getBoundingClientRect(),f=1,p=1;o&&r(e)&&(f=e.offsetWidth>0&&s(a.width)/e.offsetWidth||1,p=e.offsetHeight>0&&s(a.height)/e.offsetHeight||1);var u=(n(e)?t(e):window).visualViewport,l=!c()&&i,d=(a.left+(l&&u?u.offsetLeft:0))/f,h=(a.top+(l&&u?u.offsetTop:0))/p,m=a.width/f,v=a.height/p;return{width:m,height:v,top:h,right:d+m,bottom:h+v,left:d,x:d,y:h}}function u(e){var n=t(e);return{scrollLeft:n.pageXOffset,scrollTop:n.pageYOffset}}function l(e){return e?(e.nodeName||"").toLowerCase():null}function d(e){return((n(e)?e.ownerDocument:e.document)||window.document).documentElement}function h(e){return p(d(e)).left+u(e).scrollLeft}function m(e){return t(e).getComputedStyle(e)}function v(e){var t=m(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function y(e,n,o){void 0===o&&(o=!1);var i,a,f=r(n),c=r(n)&&function(e){var t=e.getBoundingClientRect(),n=s(t.width)/e.offsetWidth||1,r=s(t.height)/e.offsetHeight||1;return 1!==n||1!==r}(n),m=d(n),y=p(e,c,o),g={scrollLeft:0,scrollTop:0},b={x:0,y:0};return(f||!f&&!o)&&(("body"!==l(n)||v(m))&&(g=(i=n)!==t(i)&&r(i)?{scrollLeft:(a=i).scrollLeft,scrollTop:a.scrollTop}:u(i)),r(n)?((b=p(n,!0)).x+=n.clientLeft,b.y+=n.clientTop):m&&(b.x=h(m))),{x:y.left+g.scrollLeft-b.x,y:y.top+g.scrollTop-b.y,width:y.width,height:y.height}}function g(e){var t=p(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function b(e){return"html"===l(e)?e:e.assignedSlot||e.parentNode||(o(e)?e.host:null)||d(e)}function x(e){return["html","body","#document"].indexOf(l(e))>=0?e.ownerDocument.body:r(e)&&v(e)?e:x(b(e))}function w(e,n){var r;void 0===n&&(n=[]);var o=x(e),i=o===(null==(r=e.ownerDocument)?void 0:r.body),a=t(o),s=i?[a].concat(a.visualViewport||[],v(o)?o:[]):o,f=n.concat(s);return i?f:f.concat(w(b(s)))}function O(e){return["table","td","th"].indexOf(l(e))>=0}function j(e){return r(e)&&"fixed"!==m(e).position?e.offsetParent:null}function E(e){for(var n=t(e),i=j(e);i&&O(i)&&"static"===m(i).position;)i=j(i);return i&&("html"===l(i)||"body"===l(i)&&"static"===m(i).position)?n:i||function(e){var t=/firefox/i.test(f());if(/Trident/i.test(f())&&r(e)&&"fixed"===m(e).position)return null;var n=b(e);for(o(n)&&(n=n.host);r(n)&&["html","body"].indexOf(l(n))<0;){var i=m(n);if("none"!==i.transform||"none"!==i.perspective||"paint"===i.contain||-1!==["transform","perspective"].indexOf(i.willChange)||t&&"filter"===i.willChange||t&&i.filter&&"none"!==i.filter)return n;n=n.parentNode}return null}(e)||n}var D="top",A="bottom",L="right",P="left",M="auto",k=[D,A,L,P],W="start",B="end",H="viewport",T="popper",R=k.reduce((function(e,t){return e.concat([t+"-"+W,t+"-"+B])}),[]),S=[].concat(k,[M]).reduce((function(e,t){return e.concat([t,t+"-"+W,t+"-"+B])}),[]),V=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function q(e){var t=new Map,n=new Set,r=[];function o(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var r=t.get(e);r&&o(r)}})),r.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||o(e)})),r}function C(e){return e.split("-")[0]}function N(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&o(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function I(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function _(e,r,o){return r===H?I(function(e,n){var r=t(e),o=d(e),i=r.visualViewport,a=o.clientWidth,s=o.clientHeight,f=0,p=0;if(i){a=i.width,s=i.height;var u=c();(u||!u&&"fixed"===n)&&(f=i.offsetLeft,p=i.offsetTop)}return{width:a,height:s,x:f+h(e),y:p}}(e,o)):n(r)?function(e,t){var n=p(e,!1,"fixed"===t);return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}(r,o):I(function(e){var t,n=d(e),r=u(e),o=null==(t=e.ownerDocument)?void 0:t.body,a=i(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),s=i(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),f=-r.scrollLeft+h(e),c=-r.scrollTop;return"rtl"===m(o||n).direction&&(f+=i(n.clientWidth,o?o.clientWidth:0)-a),{width:a,height:s,x:f,y:c}}(d(e)))}function F(e,t,o,s){var f="clippingParents"===t?function(e){var t=w(b(e)),o=["absolute","fixed"].indexOf(m(e).position)>=0&&r(e)?E(e):e;return n(o)?t.filter((function(e){return n(e)&&N(e,o)&&"body"!==l(e)})):[]}(e):[].concat(t),c=[].concat(f,[o]),p=c[0],u=c.reduce((function(t,n){var r=_(e,n,s);return t.top=i(r.top,t.top),t.right=a(r.right,t.right),t.bottom=a(r.bottom,t.bottom),t.left=i(r.left,t.left),t}),_(e,p,s));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}function U(e){return e.split("-")[1]}function z(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function X(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?C(o):null,a=o?U(o):null,s=n.x+n.width/2-r.width/2,f=n.y+n.height/2-r.height/2;switch(i){case D:t={x:s,y:n.y-r.height};break;case A:t={x:s,y:n.y+n.height};break;case L:t={x:n.x+n.width,y:f};break;case P:t={x:n.x-r.width,y:f};break;default:t={x:n.x,y:n.y}}var c=i?z(i):null;if(null!=c){var p="y"===c?"height":"width";switch(a){case W:t[c]=t[c]-(n[p]/2-r[p]/2);break;case B:t[c]=t[c]+(n[p]/2-r[p]/2)}}return t}function Y(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function G(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function J(e,t){void 0===t&&(t={});var r=t,o=r.placement,i=void 0===o?e.placement:o,a=r.strategy,s=void 0===a?e.strategy:a,f=r.boundary,c=void 0===f?"clippingParents":f,u=r.rootBoundary,l=void 0===u?H:u,h=r.elementContext,m=void 0===h?T:h,v=r.altBoundary,y=void 0!==v&&v,g=r.padding,b=void 0===g?0:g,x=Y("number"!=typeof b?b:G(b,k)),w=m===T?"reference":T,O=e.rects.popper,j=e.elements[y?w:m],E=F(n(j)?j:j.contextElement||d(e.elements.popper),c,l,s),P=p(e.elements.reference),M=X({reference:P,element:O,strategy:"absolute",placement:i}),W=I(Object.assign({},O,M)),B=m===T?W:P,R={top:E.top-B.top+x.top,bottom:B.bottom-E.bottom+x.bottom,left:E.left-B.left+x.left,right:B.right-E.right+x.right},S=e.modifiersData.offset;if(m===T&&S){var V=S[i];Object.keys(R).forEach((function(e){var t=[L,A].indexOf(e)>=0?1:-1,n=[D,A].indexOf(e)>=0?"y":"x";R[e]+=V[n]*t}))}return R}var K={placement:"bottom",modifiers:[],strategy:"absolute"};function Q(){for(var e=arguments.length,t=new Array(e),n=0;n=0?-1:1,i="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=i[0],s=i[1];return a=a||0,s=(s||0)*o,[P,L].indexOf(r)>=0?{x:s,y:a}:{x:a,y:s}}(n,t.rects,i),e}),{}),s=a[t.placement],f=s.x,c=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=f,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=a}},se={left:"right",right:"left",bottom:"top",top:"bottom"};function fe(e){return e.replace(/left|right|bottom|top/g,(function(e){return se[e]}))}var ce={start:"end",end:"start"};function pe(e){return e.replace(/start|end/g,(function(e){return ce[e]}))}function ue(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,s=n.flipVariations,f=n.allowedAutoPlacements,c=void 0===f?S:f,p=U(r),u=p?s?R:R.filter((function(e){return U(e)===p})):k,l=u.filter((function(e){return c.indexOf(e)>=0}));0===l.length&&(l=u);var d=l.reduce((function(t,n){return t[n]=J(e,{placement:n,boundary:o,rootBoundary:i,padding:a})[C(n)],t}),{});return Object.keys(d).sort((function(e,t){return d[e]-d[t]}))}var le={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=void 0===o||o,a=n.altAxis,s=void 0===a||a,f=n.fallbackPlacements,c=n.padding,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.flipVariations,h=void 0===d||d,m=n.allowedAutoPlacements,v=t.options.placement,y=C(v),g=f||(y===v||!h?[fe(v)]:function(e){if(C(e)===M)return[];var t=fe(e);return[pe(e),t,pe(t)]}(v)),b=[v].concat(g).reduce((function(e,n){return e.concat(C(n)===M?ue(t,{placement:n,boundary:p,rootBoundary:u,padding:c,flipVariations:h,allowedAutoPlacements:m}):n)}),[]),x=t.rects.reference,w=t.rects.popper,O=new Map,j=!0,E=b[0],k=0;k=0,S=R?"width":"height",V=J(t,{placement:B,boundary:p,rootBoundary:u,altBoundary:l,padding:c}),q=R?T?L:P:T?A:D;x[S]>w[S]&&(q=fe(q));var N=fe(q),I=[];if(i&&I.push(V[H]<=0),s&&I.push(V[q]<=0,V[N]<=0),I.every((function(e){return e}))){E=B,j=!1;break}O.set(B,I)}if(j)for(var _=function(e){var t=b.find((function(t){var n=O.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return E=t,"break"},F=h?3:1;F>0;F--){if("break"===_(F))break}t.placement!==E&&(t.modifiersData[r]._skip=!0,t.placement=E,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function de(e,t,n){return i(e,a(t,n))}var he={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,s=void 0===o||o,f=n.altAxis,c=void 0!==f&&f,p=n.boundary,u=n.rootBoundary,l=n.altBoundary,d=n.padding,h=n.tether,m=void 0===h||h,v=n.tetherOffset,y=void 0===v?0:v,b=J(t,{boundary:p,rootBoundary:u,padding:d,altBoundary:l}),x=C(t.placement),w=U(t.placement),O=!w,j=z(x),M="x"===j?"y":"x",k=t.modifiersData.popperOffsets,B=t.rects.reference,H=t.rects.popper,T="function"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,R="number"==typeof T?{mainAxis:T,altAxis:T}:Object.assign({mainAxis:0,altAxis:0},T),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,V={x:0,y:0};if(k){if(s){var q,N="y"===j?D:P,I="y"===j?A:L,_="y"===j?"height":"width",F=k[j],X=F+b[N],Y=F-b[I],G=m?-H[_]/2:0,K=w===W?B[_]:H[_],Q=w===W?-H[_]:-B[_],Z=t.elements.arrow,$=m&&Z?g(Z):{width:0,height:0},ee=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},te=ee[N],ne=ee[I],re=de(0,B[_],$[_]),oe=O?B[_]/2-G-re-te-R.mainAxis:K-re-te-R.mainAxis,ie=O?-B[_]/2+G+re+ne+R.mainAxis:Q+re+ne+R.mainAxis,ae=t.elements.arrow&&E(t.elements.arrow),se=ae?"y"===j?ae.clientTop||0:ae.clientLeft||0:0,fe=null!=(q=null==S?void 0:S[j])?q:0,ce=F+ie-fe,pe=de(m?a(X,F+oe-fe-se):X,F,m?i(Y,ce):Y);k[j]=pe,V[j]=pe-F}if(c){var ue,le="x"===j?D:P,he="x"===j?A:L,me=k[M],ve="y"===M?"height":"width",ye=me+b[le],ge=me-b[he],be=-1!==[D,P].indexOf(x),xe=null!=(ue=null==S?void 0:S[M])?ue:0,we=be?ye:me-B[ve]-H[ve]-xe+R.altAxis,Oe=be?me+B[ve]+H[ve]-xe-R.altAxis:ge,je=m&&be?function(e,t,n){var r=de(e,t,n);return r>n?n:r}(we,me,Oe):de(m?we:ye,me,m?Oe:ge);k[M]=je,V[M]=je-me}t.modifiersData[r]=V}},requiresIfExists:["offset"]};var me={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,s=C(n.placement),f=z(s),c=[P,L].indexOf(s)>=0?"height":"width";if(i&&a){var p=function(e,t){return Y("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:G(e,k))}(o.padding,n),u=g(i),l="y"===f?D:P,d="y"===f?A:L,h=n.rects.reference[c]+n.rects.reference[f]-a[f]-n.rects.popper[c],m=a[f]-n.rects.reference[f],v=E(i),y=v?"y"===f?v.clientHeight||0:v.clientWidth||0:0,b=h/2-m/2,x=p[l],w=y-u[c]-p[d],O=y/2-u[c]/2+b,j=de(x,O,w),M=f;n.modifiersData[r]=((t={})[M]=j,t.centerOffset=j-O,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&N(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ve(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function ye(e){return[D,L,A,P].some((function(t){return e[t]>=0}))}var ge={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=J(t,{elementContext:"reference"}),s=J(t,{altBoundary:!0}),f=ve(a,r),c=ve(s,o,i),p=ye(f),u=ye(c);t.modifiersData[n]={referenceClippingOffsets:f,popperEscapeOffsets:c,isReferenceHidden:p,hasPopperEscaped:u},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":u})}},be=Z({defaultModifiers:[ee,te,oe,ie]}),xe=[ee,te,oe,ie,ae,le,he,me,ge],we=Z({defaultModifiers:xe});e.applyStyles=ie,e.arrow=me,e.computeStyles=oe,e.createPopper=we,e.createPopperLite=be,e.defaultModifiers=xe,e.detectOverflow=J,e.eventListeners=ee,e.flip=le,e.hide=ge,e.offset=ae,e.popperGenerator=Z,e.popperOffsets=te,e.preventOverflow=he,Object.defineProperty(e,"__esModule",{value:!0})}));
+
diff --git a/docs/site_libs/quarto-html/quarto-syntax-highlighting-845c23b38eaddc0f92fda52bfe77a8c8.css b/docs/site_libs/quarto-html/quarto-syntax-highlighting-845c23b38eaddc0f92fda52bfe77a8c8.css
new file mode 100644
index 00000000..25101c33
--- /dev/null
+++ b/docs/site_libs/quarto-html/quarto-syntax-highlighting-845c23b38eaddc0f92fda52bfe77a8c8.css
@@ -0,0 +1,236 @@
+/* quarto syntax highlight colors */
+:root {
+ --quarto-hl-ot-color: #003B4F;
+ --quarto-hl-at-color: #657422;
+ --quarto-hl-ss-color: #20794D;
+ --quarto-hl-an-color: #5E5E5E;
+ --quarto-hl-fu-color: #4758AB;
+ --quarto-hl-st-color: #20794D;
+ --quarto-hl-cf-color: #003B4F;
+ --quarto-hl-op-color: #5E5E5E;
+ --quarto-hl-er-color: #AD0000;
+ --quarto-hl-bn-color: #AD0000;
+ --quarto-hl-al-color: #AD0000;
+ --quarto-hl-va-color: #111111;
+ --quarto-hl-bu-color: inherit;
+ --quarto-hl-ex-color: inherit;
+ --quarto-hl-pp-color: #AD0000;
+ --quarto-hl-in-color: #5E5E5E;
+ --quarto-hl-vs-color: #20794D;
+ --quarto-hl-wa-color: #5E5E5E;
+ --quarto-hl-do-color: #5E5E5E;
+ --quarto-hl-im-color: #00769E;
+ --quarto-hl-ch-color: #20794D;
+ --quarto-hl-dt-color: #AD0000;
+ --quarto-hl-fl-color: #AD0000;
+ --quarto-hl-co-color: #5E5E5E;
+ --quarto-hl-cv-color: #5E5E5E;
+ --quarto-hl-cn-color: #8f5902;
+ --quarto-hl-sc-color: #5E5E5E;
+ --quarto-hl-dv-color: #AD0000;
+ --quarto-hl-kw-color: #003B4F;
+}
+
+/* other quarto variables */
+:root {
+ --quarto-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+}
+
+/* syntax highlight based on Pandoc's rules */
+pre > code.sourceCode > span {
+ color: #003B4F;
+}
+
+code.sourceCode > span {
+ color: #003B4F;
+}
+
+div.sourceCode,
+div.sourceCode pre.sourceCode {
+ color: #003B4F;
+}
+
+/* Normal */
+code span {
+ color: #003B4F;
+}
+
+/* Alert */
+code span.al {
+ color: #AD0000;
+ font-style: inherit;
+}
+
+/* Annotation */
+code span.an {
+ color: #5E5E5E;
+ font-style: inherit;
+}
+
+/* Attribute */
+code span.at {
+ color: #657422;
+ font-style: inherit;
+}
+
+/* BaseN */
+code span.bn {
+ color: #AD0000;
+ font-style: inherit;
+}
+
+/* BuiltIn */
+code span.bu {
+ font-style: inherit;
+}
+
+/* ControlFlow */
+code span.cf {
+ color: #003B4F;
+ font-weight: bold;
+ font-style: inherit;
+}
+
+/* Char */
+code span.ch {
+ color: #20794D;
+ font-style: inherit;
+}
+
+/* Constant */
+code span.cn {
+ color: #8f5902;
+ font-style: inherit;
+}
+
+/* Comment */
+code span.co {
+ color: #5E5E5E;
+ font-style: inherit;
+}
+
+/* CommentVar */
+code span.cv {
+ color: #5E5E5E;
+ font-style: italic;
+}
+
+/* Documentation */
+code span.do {
+ color: #5E5E5E;
+ font-style: italic;
+}
+
+/* DataType */
+code span.dt {
+ color: #AD0000;
+ font-style: inherit;
+}
+
+/* DecVal */
+code span.dv {
+ color: #AD0000;
+ font-style: inherit;
+}
+
+/* Error */
+code span.er {
+ color: #AD0000;
+ font-style: inherit;
+}
+
+/* Extension */
+code span.ex {
+ font-style: inherit;
+}
+
+/* Float */
+code span.fl {
+ color: #AD0000;
+ font-style: inherit;
+}
+
+/* Function */
+code span.fu {
+ color: #4758AB;
+ font-style: inherit;
+}
+
+/* Import */
+code span.im {
+ color: #00769E;
+ font-style: inherit;
+}
+
+/* Information */
+code span.in {
+ color: #5E5E5E;
+ font-style: inherit;
+}
+
+/* Keyword */
+code span.kw {
+ color: #003B4F;
+ font-weight: bold;
+ font-style: inherit;
+}
+
+/* Operator */
+code span.op {
+ color: #5E5E5E;
+ font-style: inherit;
+}
+
+/* Other */
+code span.ot {
+ color: #003B4F;
+ font-style: inherit;
+}
+
+/* Preprocessor */
+code span.pp {
+ color: #AD0000;
+ font-style: inherit;
+}
+
+/* SpecialChar */
+code span.sc {
+ color: #5E5E5E;
+ font-style: inherit;
+}
+
+/* SpecialString */
+code span.ss {
+ color: #20794D;
+ font-style: inherit;
+}
+
+/* String */
+code span.st {
+ color: #20794D;
+ font-style: inherit;
+}
+
+/* Variable */
+code span.va {
+ color: #111111;
+ font-style: inherit;
+}
+
+/* VerbatimString */
+code span.vs {
+ color: #20794D;
+ font-style: inherit;
+}
+
+/* Warning */
+code span.wa {
+ color: #5E5E5E;
+ font-style: italic;
+}
+
+.prevent-inlining {
+ content: "";
+}
+
+/*# sourceMappingURL=ac89f0bb514bba72461919f78549e31c.css.map */
diff --git a/docs/site_libs/quarto-html/quarto.js b/docs/site_libs/quarto-html/quarto.js
new file mode 100644
index 00000000..ee807684
--- /dev/null
+++ b/docs/site_libs/quarto-html/quarto.js
@@ -0,0 +1,845 @@
+import * as tabsets from "./tabsets/tabsets.js";
+
+const sectionChanged = new CustomEvent("quarto-sectionChanged", {
+ detail: {},
+ bubbles: true,
+ cancelable: false,
+ composed: false,
+});
+
+const layoutMarginEls = () => {
+ // Find any conflicting margin elements and add margins to the
+ // top to prevent overlap
+ const marginChildren = window.document.querySelectorAll(
+ ".column-margin.column-container > *, .margin-caption, .aside"
+ );
+
+ let lastBottom = 0;
+ for (const marginChild of marginChildren) {
+ if (marginChild.offsetParent !== null) {
+ // clear the top margin so we recompute it
+ marginChild.style.marginTop = null;
+ const top = marginChild.getBoundingClientRect().top + window.scrollY;
+ if (top < lastBottom) {
+ const marginChildStyle = window.getComputedStyle(marginChild);
+ const marginBottom = parseFloat(marginChildStyle["marginBottom"]);
+ const margin = lastBottom - top + marginBottom;
+ marginChild.style.marginTop = `${margin}px`;
+ }
+ const styles = window.getComputedStyle(marginChild);
+ const marginTop = parseFloat(styles["marginTop"]);
+ lastBottom = top + marginChild.getBoundingClientRect().height + marginTop;
+ }
+ }
+};
+
+window.document.addEventListener("DOMContentLoaded", function (_event) {
+ // Recompute the position of margin elements anytime the body size changes
+ if (window.ResizeObserver) {
+ const resizeObserver = new window.ResizeObserver(
+ throttle(() => {
+ layoutMarginEls();
+ if (
+ window.document.body.getBoundingClientRect().width < 990 &&
+ isReaderMode()
+ ) {
+ quartoToggleReader();
+ }
+ }, 50)
+ );
+ resizeObserver.observe(window.document.body);
+ }
+
+ const tocEl = window.document.querySelector('nav.toc-active[role="doc-toc"]');
+ const sidebarEl = window.document.getElementById("quarto-sidebar");
+ const leftTocEl = window.document.getElementById("quarto-sidebar-toc-left");
+ const marginSidebarEl = window.document.getElementById(
+ "quarto-margin-sidebar"
+ );
+ // function to determine whether the element has a previous sibling that is active
+ const prevSiblingIsActiveLink = (el) => {
+ const sibling = el.previousElementSibling;
+ if (sibling && sibling.tagName === "A") {
+ return sibling.classList.contains("active");
+ } else {
+ return false;
+ }
+ };
+
+ // dispatch for htmlwidgets
+ // they use slideenter event to trigger resize
+ function fireSlideEnter() {
+ const event = window.document.createEvent("Event");
+ event.initEvent("slideenter", true, true);
+ window.document.dispatchEvent(event);
+ }
+
+ const tabs = window.document.querySelectorAll('a[data-bs-toggle="tab"]');
+ tabs.forEach((tab) => {
+ tab.addEventListener("shown.bs.tab", fireSlideEnter);
+ });
+
+ // dispatch for shiny
+ // they use BS shown and hidden events to trigger rendering
+ function distpatchShinyEvents(previous, current) {
+ if (window.jQuery) {
+ if (previous) {
+ window.jQuery(previous).trigger("hidden");
+ }
+ if (current) {
+ window.jQuery(current).trigger("shown");
+ }
+ }
+ }
+
+ // tabby.js listener: Trigger event for htmlwidget and shiny
+ document.addEventListener(
+ "tabby",
+ function (event) {
+ fireSlideEnter();
+ distpatchShinyEvents(event.detail.previousTab, event.detail.tab);
+ },
+ false
+ );
+
+ // Track scrolling and mark TOC links as active
+ // get table of contents and sidebar (bail if we don't have at least one)
+ const tocLinks = tocEl
+ ? [...tocEl.querySelectorAll("a[data-scroll-target]")]
+ : [];
+ const makeActive = (link) => tocLinks[link].classList.add("active");
+ const removeActive = (link) => tocLinks[link].classList.remove("active");
+ const removeAllActive = () =>
+ [...Array(tocLinks.length).keys()].forEach((link) => removeActive(link));
+
+ // activate the anchor for a section associated with this TOC entry
+ tocLinks.forEach((link) => {
+ link.addEventListener("click", () => {
+ if (link.href.indexOf("#") !== -1) {
+ const anchor = link.href.split("#")[1];
+ const heading = window.document.querySelector(
+ `[data-anchor-id="${anchor}"]`
+ );
+ if (heading) {
+ // Add the class
+ heading.classList.add("reveal-anchorjs-link");
+
+ // function to show the anchor
+ const handleMouseout = () => {
+ heading.classList.remove("reveal-anchorjs-link");
+ heading.removeEventListener("mouseout", handleMouseout);
+ };
+
+ // add a function to clear the anchor when the user mouses out of it
+ heading.addEventListener("mouseout", handleMouseout);
+ }
+ }
+ });
+ });
+
+ const sections = tocLinks.map((link) => {
+ const target = link.getAttribute("data-scroll-target");
+ if (target.startsWith("#")) {
+ return window.document.getElementById(decodeURI(`${target.slice(1)}`));
+ } else {
+ return window.document.querySelector(decodeURI(`${target}`));
+ }
+ });
+
+ const sectionMargin = 200;
+ let currentActive = 0;
+ // track whether we've initialized state the first time
+ let init = false;
+
+ const updateActiveLink = () => {
+ // The index from bottom to top (e.g. reversed list)
+ let sectionIndex = -1;
+ if (
+ window.innerHeight + window.pageYOffset >=
+ window.document.body.offsetHeight
+ ) {
+ // This is the no-scroll case where last section should be the active one
+ sectionIndex = 0;
+ } else {
+ // This finds the last section visible on screen that should be made active
+ sectionIndex = [...sections].reverse().findIndex((section) => {
+ if (section) {
+ return window.pageYOffset >= section.offsetTop - sectionMargin;
+ } else {
+ return false;
+ }
+ });
+ }
+ if (sectionIndex > -1) {
+ const current = sections.length - sectionIndex - 1;
+ if (current !== currentActive) {
+ removeAllActive();
+ currentActive = current;
+ makeActive(current);
+ if (init) {
+ window.dispatchEvent(sectionChanged);
+ }
+ init = true;
+ }
+ }
+ };
+
+ const inHiddenRegion = (top, bottom, hiddenRegions) => {
+ for (const region of hiddenRegions) {
+ if (top <= region.bottom && bottom >= region.top) {
+ return true;
+ }
+ }
+ return false;
+ };
+
+ const categorySelector = "header.quarto-title-block .quarto-category";
+ const activateCategories = (href) => {
+ // Find any categories
+ // Surround them with a link pointing back to:
+ // #category=Authoring
+ try {
+ const categoryEls = window.document.querySelectorAll(categorySelector);
+ for (const categoryEl of categoryEls) {
+ const categoryText = categoryEl.textContent;
+ if (categoryText) {
+ const link = `${href}#category=${encodeURIComponent(categoryText)}`;
+ const linkEl = window.document.createElement("a");
+ linkEl.setAttribute("href", link);
+ for (const child of categoryEl.childNodes) {
+ linkEl.append(child);
+ }
+ categoryEl.appendChild(linkEl);
+ }
+ }
+ } catch {
+ // Ignore errors
+ }
+ };
+ function hasTitleCategories() {
+ return window.document.querySelector(categorySelector) !== null;
+ }
+
+ function offsetRelativeUrl(url) {
+ const offset = getMeta("quarto:offset");
+ return offset ? offset + url : url;
+ }
+
+ function offsetAbsoluteUrl(url) {
+ const offset = getMeta("quarto:offset");
+ const baseUrl = new URL(offset, window.location);
+
+ const projRelativeUrl = url.replace(baseUrl, "");
+ if (projRelativeUrl.startsWith("/")) {
+ return projRelativeUrl;
+ } else {
+ return "/" + projRelativeUrl;
+ }
+ }
+
+ // read a meta tag value
+ function getMeta(metaName) {
+ const metas = window.document.getElementsByTagName("meta");
+ for (let i = 0; i < metas.length; i++) {
+ if (metas[i].getAttribute("name") === metaName) {
+ return metas[i].getAttribute("content");
+ }
+ }
+ return "";
+ }
+
+ async function findAndActivateCategories() {
+ // Categories search with listing only use path without query
+ const currentPagePath = offsetAbsoluteUrl(
+ window.location.origin + window.location.pathname
+ );
+ const response = await fetch(offsetRelativeUrl("listings.json"));
+ if (response.status == 200) {
+ return response.json().then(function (listingPaths) {
+ const listingHrefs = [];
+ for (const listingPath of listingPaths) {
+ const pathWithoutLeadingSlash = listingPath.listing.substring(1);
+ for (const item of listingPath.items) {
+ const encodedItem = encodeURI(item);
+ if (
+ encodedItem === currentPagePath ||
+ encodedItem === currentPagePath + "index.html"
+ ) {
+ // Resolve this path against the offset to be sure
+ // we already are using the correct path to the listing
+ // (this adjusts the listing urls to be rooted against
+ // whatever root the page is actually running against)
+ const relative = offsetRelativeUrl(pathWithoutLeadingSlash);
+ const baseUrl = window.location;
+ const resolvedPath = new URL(relative, baseUrl);
+ listingHrefs.push(resolvedPath.pathname);
+ break;
+ }
+ }
+ }
+
+ // Look up the tree for a nearby linting and use that if we find one
+ const nearestListing = findNearestParentListing(
+ offsetAbsoluteUrl(window.location.pathname),
+ listingHrefs
+ );
+ if (nearestListing) {
+ activateCategories(nearestListing);
+ } else {
+ // See if the referrer is a listing page for this item
+ const referredRelativePath = offsetAbsoluteUrl(document.referrer);
+ const referrerListing = listingHrefs.find((listingHref) => {
+ const isListingReferrer =
+ listingHref === referredRelativePath ||
+ listingHref === referredRelativePath + "index.html";
+ return isListingReferrer;
+ });
+
+ if (referrerListing) {
+ // Try to use the referrer if possible
+ activateCategories(referrerListing);
+ } else if (listingHrefs.length > 0) {
+ // Otherwise, just fall back to the first listing
+ activateCategories(listingHrefs[0]);
+ }
+ }
+ });
+ }
+ }
+ if (hasTitleCategories()) {
+ findAndActivateCategories();
+ }
+
+ const findNearestParentListing = (href, listingHrefs) => {
+ if (!href || !listingHrefs) {
+ return undefined;
+ }
+ // Look up the tree for a nearby linting and use that if we find one
+ const relativeParts = href.substring(1).split("/");
+ while (relativeParts.length > 0) {
+ const path = relativeParts.join("/");
+ for (const listingHref of listingHrefs) {
+ if (listingHref.startsWith(path)) {
+ return listingHref;
+ }
+ }
+ relativeParts.pop();
+ }
+
+ return undefined;
+ };
+
+ const manageSidebarVisiblity = (el, placeholderDescriptor) => {
+ let isVisible = true;
+ let elRect;
+
+ return (hiddenRegions) => {
+ if (el === null) {
+ return;
+ }
+
+ // Find the last element of the TOC
+ const lastChildEl = el.lastElementChild;
+
+ if (lastChildEl) {
+ // Converts the sidebar to a menu
+ const convertToMenu = () => {
+ for (const child of el.children) {
+ child.style.opacity = 0;
+ child.style.overflow = "hidden";
+ child.style.pointerEvents = "none";
+ }
+
+ nexttick(() => {
+ const toggleContainer = window.document.createElement("div");
+ toggleContainer.style.width = "100%";
+ toggleContainer.classList.add("zindex-over-content");
+ toggleContainer.classList.add("quarto-sidebar-toggle");
+ toggleContainer.classList.add("headroom-target"); // Marks this to be managed by headeroom
+ toggleContainer.id = placeholderDescriptor.id;
+ toggleContainer.style.position = "fixed";
+
+ const toggleIcon = window.document.createElement("i");
+ toggleIcon.classList.add("quarto-sidebar-toggle-icon");
+ toggleIcon.classList.add("bi");
+ toggleIcon.classList.add("bi-caret-down-fill");
+
+ const toggleTitle = window.document.createElement("div");
+ const titleEl = window.document.body.querySelector(
+ placeholderDescriptor.titleSelector
+ );
+ if (titleEl) {
+ toggleTitle.append(
+ titleEl.textContent || titleEl.innerText,
+ toggleIcon
+ );
+ }
+ toggleTitle.classList.add("zindex-over-content");
+ toggleTitle.classList.add("quarto-sidebar-toggle-title");
+ toggleContainer.append(toggleTitle);
+
+ const toggleContents = window.document.createElement("div");
+ toggleContents.classList = el.classList;
+ toggleContents.classList.add("zindex-over-content");
+ toggleContents.classList.add("quarto-sidebar-toggle-contents");
+ for (const child of el.children) {
+ if (child.id === "toc-title") {
+ continue;
+ }
+
+ const clone = child.cloneNode(true);
+ clone.style.opacity = 1;
+ clone.style.pointerEvents = null;
+ clone.style.display = null;
+ toggleContents.append(clone);
+ }
+ toggleContents.style.height = "0px";
+ const positionToggle = () => {
+ // position the element (top left of parent, same width as parent)
+ if (!elRect) {
+ elRect = el.getBoundingClientRect();
+ }
+ toggleContainer.style.left = `${elRect.left}px`;
+ toggleContainer.style.top = `${elRect.top}px`;
+ toggleContainer.style.width = `${elRect.width}px`;
+ };
+ positionToggle();
+
+ toggleContainer.append(toggleContents);
+ el.parentElement.prepend(toggleContainer);
+
+ // Process clicks
+ let tocShowing = false;
+ // Allow the caller to control whether this is dismissed
+ // when it is clicked (e.g. sidebar navigation supports
+ // opening and closing the nav tree, so don't dismiss on click)
+ const clickEl = placeholderDescriptor.dismissOnClick
+ ? toggleContainer
+ : toggleTitle;
+
+ const closeToggle = () => {
+ if (tocShowing) {
+ toggleContainer.classList.remove("expanded");
+ toggleContents.style.height = "0px";
+ tocShowing = false;
+ }
+ };
+
+ // Get rid of any expanded toggle if the user scrolls
+ window.document.addEventListener(
+ "scroll",
+ throttle(() => {
+ closeToggle();
+ }, 50)
+ );
+
+ // Handle positioning of the toggle
+ window.addEventListener(
+ "resize",
+ throttle(() => {
+ elRect = undefined;
+ positionToggle();
+ }, 50)
+ );
+
+ window.addEventListener("quarto-hrChanged", () => {
+ elRect = undefined;
+ });
+
+ // Process the click
+ clickEl.onclick = () => {
+ if (!tocShowing) {
+ toggleContainer.classList.add("expanded");
+ toggleContents.style.height = null;
+ tocShowing = true;
+ } else {
+ closeToggle();
+ }
+ };
+ });
+ };
+
+ // Converts a sidebar from a menu back to a sidebar
+ const convertToSidebar = () => {
+ for (const child of el.children) {
+ child.style.opacity = 1;
+ child.style.overflow = null;
+ child.style.pointerEvents = null;
+ }
+
+ const placeholderEl = window.document.getElementById(
+ placeholderDescriptor.id
+ );
+ if (placeholderEl) {
+ placeholderEl.remove();
+ }
+
+ el.classList.remove("rollup");
+ };
+
+ if (isReaderMode()) {
+ convertToMenu();
+ isVisible = false;
+ } else {
+ // Find the top and bottom o the element that is being managed
+ const elTop = el.offsetTop;
+ const elBottom =
+ elTop + lastChildEl.offsetTop + lastChildEl.offsetHeight;
+
+ if (!isVisible) {
+ // If the element is current not visible reveal if there are
+ // no conflicts with overlay regions
+ if (!inHiddenRegion(elTop, elBottom, hiddenRegions)) {
+ convertToSidebar();
+ isVisible = true;
+ }
+ } else {
+ // If the element is visible, hide it if it conflicts with overlay regions
+ // and insert a placeholder toggle (or if we're in reader mode)
+ if (inHiddenRegion(elTop, elBottom, hiddenRegions)) {
+ convertToMenu();
+ isVisible = false;
+ }
+ }
+ }
+ }
+ };
+ };
+
+ const tabEls = document.querySelectorAll('a[data-bs-toggle="tab"]');
+ for (const tabEl of tabEls) {
+ const id = tabEl.getAttribute("data-bs-target");
+ if (id) {
+ const columnEl = document.querySelector(
+ `${id} .column-margin, .tabset-margin-content`
+ );
+ if (columnEl)
+ tabEl.addEventListener("shown.bs.tab", function (event) {
+ const el = event.srcElement;
+ if (el) {
+ const visibleCls = `${el.id}-margin-content`;
+ // walk up until we find a parent tabset
+ let panelTabsetEl = el.parentElement;
+ while (panelTabsetEl) {
+ if (panelTabsetEl.classList.contains("panel-tabset")) {
+ break;
+ }
+ panelTabsetEl = panelTabsetEl.parentElement;
+ }
+
+ if (panelTabsetEl) {
+ const prevSib = panelTabsetEl.previousElementSibling;
+ if (
+ prevSib &&
+ prevSib.classList.contains("tabset-margin-container")
+ ) {
+ const childNodes = prevSib.querySelectorAll(
+ ".tabset-margin-content"
+ );
+ for (const childEl of childNodes) {
+ if (childEl.classList.contains(visibleCls)) {
+ childEl.classList.remove("collapse");
+ } else {
+ childEl.classList.add("collapse");
+ }
+ }
+ }
+ }
+ }
+
+ layoutMarginEls();
+ });
+ }
+ }
+
+ // Manage the visibility of the toc and the sidebar
+ const marginScrollVisibility = manageSidebarVisiblity(marginSidebarEl, {
+ id: "quarto-toc-toggle",
+ titleSelector: "#toc-title",
+ dismissOnClick: true,
+ });
+ const sidebarScrollVisiblity = manageSidebarVisiblity(sidebarEl, {
+ id: "quarto-sidebarnav-toggle",
+ titleSelector: ".title",
+ dismissOnClick: false,
+ });
+ let tocLeftScrollVisibility;
+ if (leftTocEl) {
+ tocLeftScrollVisibility = manageSidebarVisiblity(leftTocEl, {
+ id: "quarto-lefttoc-toggle",
+ titleSelector: "#toc-title",
+ dismissOnClick: true,
+ });
+ }
+
+ // Find the first element that uses formatting in special columns
+ const conflictingEls = window.document.body.querySelectorAll(
+ '[class^="column-"], [class*=" column-"], aside, [class*="margin-caption"], [class*=" margin-caption"], [class*="margin-ref"], [class*=" margin-ref"]'
+ );
+
+ // Filter all the possibly conflicting elements into ones
+ // the do conflict on the left or ride side
+ const arrConflictingEls = Array.from(conflictingEls);
+ const leftSideConflictEls = arrConflictingEls.filter((el) => {
+ if (el.tagName === "ASIDE") {
+ return false;
+ }
+ return Array.from(el.classList).find((className) => {
+ return (
+ className !== "column-body" &&
+ className.startsWith("column-") &&
+ !className.endsWith("right") &&
+ !className.endsWith("container") &&
+ className !== "column-margin"
+ );
+ });
+ });
+ const rightSideConflictEls = arrConflictingEls.filter((el) => {
+ if (el.tagName === "ASIDE") {
+ return true;
+ }
+
+ const hasMarginCaption = Array.from(el.classList).find((className) => {
+ return className == "margin-caption";
+ });
+ if (hasMarginCaption) {
+ return true;
+ }
+
+ return Array.from(el.classList).find((className) => {
+ return (
+ className !== "column-body" &&
+ !className.endsWith("container") &&
+ className.startsWith("column-") &&
+ !className.endsWith("left")
+ );
+ });
+ });
+
+ const kOverlapPaddingSize = 10;
+ function toRegions(els) {
+ return els.map((el) => {
+ const boundRect = el.getBoundingClientRect();
+ const top =
+ boundRect.top +
+ document.documentElement.scrollTop -
+ kOverlapPaddingSize;
+ return {
+ top,
+ bottom: top + el.scrollHeight + 2 * kOverlapPaddingSize,
+ };
+ });
+ }
+
+ let hasObserved = false;
+ const visibleItemObserver = (els) => {
+ let visibleElements = [...els];
+ const intersectionObserver = new IntersectionObserver(
+ (entries, _observer) => {
+ entries.forEach((entry) => {
+ if (entry.isIntersecting) {
+ if (visibleElements.indexOf(entry.target) === -1) {
+ visibleElements.push(entry.target);
+ }
+ } else {
+ visibleElements = visibleElements.filter((visibleEntry) => {
+ return visibleEntry !== entry;
+ });
+ }
+ });
+
+ if (!hasObserved) {
+ hideOverlappedSidebars();
+ }
+ hasObserved = true;
+ },
+ {}
+ );
+ els.forEach((el) => {
+ intersectionObserver.observe(el);
+ });
+
+ return {
+ getVisibleEntries: () => {
+ return visibleElements;
+ },
+ };
+ };
+
+ const rightElementObserver = visibleItemObserver(rightSideConflictEls);
+ const leftElementObserver = visibleItemObserver(leftSideConflictEls);
+
+ const hideOverlappedSidebars = () => {
+ marginScrollVisibility(toRegions(rightElementObserver.getVisibleEntries()));
+ sidebarScrollVisiblity(toRegions(leftElementObserver.getVisibleEntries()));
+ if (tocLeftScrollVisibility) {
+ tocLeftScrollVisibility(
+ toRegions(leftElementObserver.getVisibleEntries())
+ );
+ }
+ };
+
+ window.quartoToggleReader = () => {
+ // Applies a slow class (or removes it)
+ // to update the transition speed
+ const slowTransition = (slow) => {
+ const manageTransition = (id, slow) => {
+ const el = document.getElementById(id);
+ if (el) {
+ if (slow) {
+ el.classList.add("slow");
+ } else {
+ el.classList.remove("slow");
+ }
+ }
+ };
+
+ manageTransition("TOC", slow);
+ manageTransition("quarto-sidebar", slow);
+ };
+ const readerMode = !isReaderMode();
+ setReaderModeValue(readerMode);
+
+ // If we're entering reader mode, slow the transition
+ if (readerMode) {
+ slowTransition(readerMode);
+ }
+ highlightReaderToggle(readerMode);
+ hideOverlappedSidebars();
+
+ // If we're exiting reader mode, restore the non-slow transition
+ if (!readerMode) {
+ slowTransition(!readerMode);
+ }
+ };
+
+ const highlightReaderToggle = (readerMode) => {
+ const els = document.querySelectorAll(".quarto-reader-toggle");
+ if (els) {
+ els.forEach((el) => {
+ if (readerMode) {
+ el.classList.add("reader");
+ } else {
+ el.classList.remove("reader");
+ }
+ });
+ }
+ };
+
+ const setReaderModeValue = (val) => {
+ if (window.location.protocol !== "file:") {
+ window.localStorage.setItem("quarto-reader-mode", val);
+ } else {
+ localReaderMode = val;
+ }
+ };
+
+ const isReaderMode = () => {
+ if (window.location.protocol !== "file:") {
+ return window.localStorage.getItem("quarto-reader-mode") === "true";
+ } else {
+ return localReaderMode;
+ }
+ };
+ let localReaderMode = null;
+
+ const tocOpenDepthStr = tocEl?.getAttribute("data-toc-expanded");
+ const tocOpenDepth = tocOpenDepthStr ? Number(tocOpenDepthStr) : 1;
+
+ // Walk the TOC and collapse/expand nodes
+ // Nodes are expanded if:
+ // - they are top level
+ // - they have children that are 'active' links
+ // - they are directly below an link that is 'active'
+ const walk = (el, depth) => {
+ // Tick depth when we enter a UL
+ if (el.tagName === "UL") {
+ depth = depth + 1;
+ }
+
+ // It this is active link
+ let isActiveNode = false;
+ if (el.tagName === "A" && el.classList.contains("active")) {
+ isActiveNode = true;
+ }
+
+ // See if there is an active child to this element
+ let hasActiveChild = false;
+ for (const child of el.children) {
+ hasActiveChild = walk(child, depth) || hasActiveChild;
+ }
+
+ // Process the collapse state if this is an UL
+ if (el.tagName === "UL") {
+ if (tocOpenDepth === -1 && depth > 1) {
+ // toc-expand: false
+ el.classList.add("collapse");
+ } else if (
+ depth <= tocOpenDepth ||
+ hasActiveChild ||
+ prevSiblingIsActiveLink(el)
+ ) {
+ el.classList.remove("collapse");
+ } else {
+ el.classList.add("collapse");
+ }
+
+ // untick depth when we leave a UL
+ depth = depth - 1;
+ }
+ return hasActiveChild || isActiveNode;
+ };
+
+ // walk the TOC and expand / collapse any items that should be shown
+ if (tocEl) {
+ updateActiveLink();
+ walk(tocEl, 0);
+ }
+
+ // Throttle the scroll event and walk peridiocally
+ window.document.addEventListener(
+ "scroll",
+ throttle(() => {
+ if (tocEl) {
+ updateActiveLink();
+ walk(tocEl, 0);
+ }
+ if (!isReaderMode()) {
+ hideOverlappedSidebars();
+ }
+ }, 5)
+ );
+ window.addEventListener(
+ "resize",
+ throttle(() => {
+ if (tocEl) {
+ updateActiveLink();
+ walk(tocEl, 0);
+ }
+ if (!isReaderMode()) {
+ hideOverlappedSidebars();
+ }
+ }, 10)
+ );
+ hideOverlappedSidebars();
+ highlightReaderToggle(isReaderMode());
+});
+
+tabsets.init();
+
+function throttle(func, wait) {
+ let waiting = false;
+ return function () {
+ if (!waiting) {
+ func.apply(this, arguments);
+ waiting = true;
+ setTimeout(function () {
+ waiting = false;
+ }, wait);
+ }
+ };
+}
+
+function nexttick(func) {
+ return setTimeout(func, 0);
+}
diff --git a/docs/site_libs/quarto-html/tabsets/tabsets.js b/docs/site_libs/quarto-html/tabsets/tabsets.js
new file mode 100644
index 00000000..51345d0e
--- /dev/null
+++ b/docs/site_libs/quarto-html/tabsets/tabsets.js
@@ -0,0 +1,95 @@
+// grouped tabsets
+
+export function init() {
+ window.addEventListener("pageshow", (_event) => {
+ function getTabSettings() {
+ const data = localStorage.getItem("quarto-persistent-tabsets-data");
+ if (!data) {
+ localStorage.setItem("quarto-persistent-tabsets-data", "{}");
+ return {};
+ }
+ if (data) {
+ return JSON.parse(data);
+ }
+ }
+
+ function setTabSettings(data) {
+ localStorage.setItem(
+ "quarto-persistent-tabsets-data",
+ JSON.stringify(data)
+ );
+ }
+
+ function setTabState(groupName, groupValue) {
+ const data = getTabSettings();
+ data[groupName] = groupValue;
+ setTabSettings(data);
+ }
+
+ function toggleTab(tab, active) {
+ const tabPanelId = tab.getAttribute("aria-controls");
+ const tabPanel = document.getElementById(tabPanelId);
+ if (active) {
+ tab.classList.add("active");
+ tabPanel.classList.add("active");
+ } else {
+ tab.classList.remove("active");
+ tabPanel.classList.remove("active");
+ }
+ }
+
+ function toggleAll(selectedGroup, selectorsToSync) {
+ for (const [thisGroup, tabs] of Object.entries(selectorsToSync)) {
+ const active = selectedGroup === thisGroup;
+ for (const tab of tabs) {
+ toggleTab(tab, active);
+ }
+ }
+ }
+
+ function findSelectorsToSyncByLanguage() {
+ const result = {};
+ const tabs = Array.from(
+ document.querySelectorAll(`div[data-group] a[id^='tabset-']`)
+ );
+ for (const item of tabs) {
+ const div = item.parentElement.parentElement.parentElement;
+ const group = div.getAttribute("data-group");
+ if (!result[group]) {
+ result[group] = {};
+ }
+ const selectorsToSync = result[group];
+ const value = item.innerHTML;
+ if (!selectorsToSync[value]) {
+ selectorsToSync[value] = [];
+ }
+ selectorsToSync[value].push(item);
+ }
+ return result;
+ }
+
+ function setupSelectorSync() {
+ const selectorsToSync = findSelectorsToSyncByLanguage();
+ Object.entries(selectorsToSync).forEach(([group, tabSetsByValue]) => {
+ Object.entries(tabSetsByValue).forEach(([value, items]) => {
+ items.forEach((item) => {
+ item.addEventListener("click", (_event) => {
+ setTabState(group, value);
+ toggleAll(value, selectorsToSync[group]);
+ });
+ });
+ });
+ });
+ return selectorsToSync;
+ }
+
+ const selectorsToSync = setupSelectorSync();
+ for (const [group, selectedName] of Object.entries(getTabSettings())) {
+ const selectors = selectorsToSync[group];
+ // it's possible that stale state gives us empty selections, so we explicitly check here.
+ if (selectors) {
+ toggleAll(selectedName, selectors);
+ }
+ }
+ });
+}
diff --git a/docs/site_libs/quarto-html/tippy.css b/docs/site_libs/quarto-html/tippy.css
new file mode 100644
index 00000000..e6ae635c
--- /dev/null
+++ b/docs/site_libs/quarto-html/tippy.css
@@ -0,0 +1 @@
+.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
\ No newline at end of file
diff --git a/docs/site_libs/quarto-html/tippy.umd.min.js b/docs/site_libs/quarto-html/tippy.umd.min.js
new file mode 100644
index 00000000..ca292be3
--- /dev/null
+++ b/docs/site_libs/quarto-html/tippy.umd.min.js
@@ -0,0 +1,2 @@
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],t):(e=e||self).tippy=t(e.Popper)}(this,(function(e){"use strict";var t={passive:!0,capture:!0},n=function(){return document.body};function r(e,t,n){if(Array.isArray(e)){var r=e[t];return null==r?Array.isArray(n)?n[t]:n:r}return e}function o(e,t){var n={}.toString.call(e);return 0===n.indexOf("[object")&&n.indexOf(t+"]")>-1}function i(e,t){return"function"==typeof e?e.apply(void 0,t):e}function a(e,t){return 0===t?e:function(r){clearTimeout(n),n=setTimeout((function(){e(r)}),t)};var n}function s(e,t){var n=Object.assign({},e);return t.forEach((function(e){delete n[e]})),n}function u(e){return[].concat(e)}function c(e,t){-1===e.indexOf(t)&&e.push(t)}function p(e){return e.split("-")[0]}function f(e){return[].slice.call(e)}function l(e){return Object.keys(e).reduce((function(t,n){return void 0!==e[n]&&(t[n]=e[n]),t}),{})}function d(){return document.createElement("div")}function v(e){return["Element","Fragment"].some((function(t){return o(e,t)}))}function m(e){return o(e,"MouseEvent")}function g(e){return!(!e||!e._tippy||e._tippy.reference!==e)}function h(e){return v(e)?[e]:function(e){return o(e,"NodeList")}(e)?f(e):Array.isArray(e)?e:f(document.querySelectorAll(e))}function b(e,t){e.forEach((function(e){e&&(e.style.transitionDuration=t+"ms")}))}function y(e,t){e.forEach((function(e){e&&e.setAttribute("data-state",t)}))}function w(e){var t,n=u(e)[0];return null!=n&&null!=(t=n.ownerDocument)&&t.body?n.ownerDocument:document}function E(e,t,n){var r=t+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(t){e[r](t,n)}))}function O(e,t){for(var n=t;n;){var r;if(e.contains(n))return!0;n=null==n.getRootNode||null==(r=n.getRootNode())?void 0:r.host}return!1}var x={isTouch:!1},C=0;function T(){x.isTouch||(x.isTouch=!0,window.performance&&document.addEventListener("mousemove",A))}function A(){var e=performance.now();e-C<20&&(x.isTouch=!1,document.removeEventListener("mousemove",A)),C=e}function L(){var e=document.activeElement;if(g(e)){var t=e._tippy;e.blur&&!t.state.isVisible&&e.blur()}}var D=!!("undefined"!=typeof window&&"undefined"!=typeof document)&&!!window.msCrypto,R=Object.assign({appendTo:n,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),k=Object.keys(R);function P(e){var t=(e.plugins||[]).reduce((function(t,n){var r,o=n.name,i=n.defaultValue;o&&(t[o]=void 0!==e[o]?e[o]:null!=(r=R[o])?r:i);return t}),{});return Object.assign({},e,t)}function j(e,t){var n=Object.assign({},t,{content:i(t.content,[e])},t.ignoreAttributes?{}:function(e,t){return(t?Object.keys(P(Object.assign({},R,{plugins:t}))):k).reduce((function(t,n){var r=(e.getAttribute("data-tippy-"+n)||"").trim();if(!r)return t;if("content"===n)t[n]=r;else try{t[n]=JSON.parse(r)}catch(e){t[n]=r}return t}),{})}(e,t.plugins));return n.aria=Object.assign({},R.aria,n.aria),n.aria={expanded:"auto"===n.aria.expanded?t.interactive:n.aria.expanded,content:"auto"===n.aria.content?t.interactive?null:"describedby":n.aria.content},n}function M(e,t){e.innerHTML=t}function V(e){var t=d();return!0===e?t.className="tippy-arrow":(t.className="tippy-svg-arrow",v(e)?t.appendChild(e):M(t,e)),t}function I(e,t){v(t.content)?(M(e,""),e.appendChild(t.content)):"function"!=typeof t.content&&(t.allowHTML?M(e,t.content):e.textContent=t.content)}function S(e){var t=e.firstElementChild,n=f(t.children);return{box:t,content:n.find((function(e){return e.classList.contains("tippy-content")})),arrow:n.find((function(e){return e.classList.contains("tippy-arrow")||e.classList.contains("tippy-svg-arrow")})),backdrop:n.find((function(e){return e.classList.contains("tippy-backdrop")}))}}function N(e){var t=d(),n=d();n.className="tippy-box",n.setAttribute("data-state","hidden"),n.setAttribute("tabindex","-1");var r=d();function o(n,r){var o=S(t),i=o.box,a=o.content,s=o.arrow;r.theme?i.setAttribute("data-theme",r.theme):i.removeAttribute("data-theme"),"string"==typeof r.animation?i.setAttribute("data-animation",r.animation):i.removeAttribute("data-animation"),r.inertia?i.setAttribute("data-inertia",""):i.removeAttribute("data-inertia"),i.style.maxWidth="number"==typeof r.maxWidth?r.maxWidth+"px":r.maxWidth,r.role?i.setAttribute("role",r.role):i.removeAttribute("role"),n.content===r.content&&n.allowHTML===r.allowHTML||I(a,e.props),r.arrow?s?n.arrow!==r.arrow&&(i.removeChild(s),i.appendChild(V(r.arrow))):i.appendChild(V(r.arrow)):s&&i.removeChild(s)}return r.className="tippy-content",r.setAttribute("data-state","hidden"),I(r,e.props),t.appendChild(n),n.appendChild(r),o(e.props,e.props),{popper:t,onUpdate:o}}N.$$tippy=!0;var B=1,H=[],U=[];function _(o,s){var v,g,h,C,T,A,L,k,M=j(o,Object.assign({},R,P(l(s)))),V=!1,I=!1,N=!1,_=!1,F=[],W=a(we,M.interactiveDebounce),X=B++,Y=(k=M.plugins).filter((function(e,t){return k.indexOf(e)===t})),$={id:X,reference:o,popper:d(),popperInstance:null,props:M,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:Y,clearDelayTimeouts:function(){clearTimeout(v),clearTimeout(g),cancelAnimationFrame(h)},setProps:function(e){if($.state.isDestroyed)return;ae("onBeforeUpdate",[$,e]),be();var t=$.props,n=j(o,Object.assign({},t,l(e),{ignoreAttributes:!0}));$.props=n,he(),t.interactiveDebounce!==n.interactiveDebounce&&(ce(),W=a(we,n.interactiveDebounce));t.triggerTarget&&!n.triggerTarget?u(t.triggerTarget).forEach((function(e){e.removeAttribute("aria-expanded")})):n.triggerTarget&&o.removeAttribute("aria-expanded");ue(),ie(),J&&J(t,n);$.popperInstance&&(Ce(),Ae().forEach((function(e){requestAnimationFrame(e._tippy.popperInstance.forceUpdate)})));ae("onAfterUpdate",[$,e])},setContent:function(e){$.setProps({content:e})},show:function(){var e=$.state.isVisible,t=$.state.isDestroyed,o=!$.state.isEnabled,a=x.isTouch&&!$.props.touch,s=r($.props.duration,0,R.duration);if(e||t||o||a)return;if(te().hasAttribute("disabled"))return;if(ae("onShow",[$],!1),!1===$.props.onShow($))return;$.state.isVisible=!0,ee()&&(z.style.visibility="visible");ie(),de(),$.state.isMounted||(z.style.transition="none");if(ee()){var u=re(),p=u.box,f=u.content;b([p,f],0)}A=function(){var e;if($.state.isVisible&&!_){if(_=!0,z.offsetHeight,z.style.transition=$.props.moveTransition,ee()&&$.props.animation){var t=re(),n=t.box,r=t.content;b([n,r],s),y([n,r],"visible")}se(),ue(),c(U,$),null==(e=$.popperInstance)||e.forceUpdate(),ae("onMount",[$]),$.props.animation&&ee()&&function(e,t){me(e,t)}(s,(function(){$.state.isShown=!0,ae("onShown",[$])}))}},function(){var e,t=$.props.appendTo,r=te();e=$.props.interactive&&t===n||"parent"===t?r.parentNode:i(t,[r]);e.contains(z)||e.appendChild(z);$.state.isMounted=!0,Ce()}()},hide:function(){var e=!$.state.isVisible,t=$.state.isDestroyed,n=!$.state.isEnabled,o=r($.props.duration,1,R.duration);if(e||t||n)return;if(ae("onHide",[$],!1),!1===$.props.onHide($))return;$.state.isVisible=!1,$.state.isShown=!1,_=!1,V=!1,ee()&&(z.style.visibility="hidden");if(ce(),ve(),ie(!0),ee()){var i=re(),a=i.box,s=i.content;$.props.animation&&(b([a,s],o),y([a,s],"hidden"))}se(),ue(),$.props.animation?ee()&&function(e,t){me(e,(function(){!$.state.isVisible&&z.parentNode&&z.parentNode.contains(z)&&t()}))}(o,$.unmount):$.unmount()},hideWithInteractivity:function(e){ne().addEventListener("mousemove",W),c(H,W),W(e)},enable:function(){$.state.isEnabled=!0},disable:function(){$.hide(),$.state.isEnabled=!1},unmount:function(){$.state.isVisible&&$.hide();if(!$.state.isMounted)return;Te(),Ae().forEach((function(e){e._tippy.unmount()})),z.parentNode&&z.parentNode.removeChild(z);U=U.filter((function(e){return e!==$})),$.state.isMounted=!1,ae("onHidden",[$])},destroy:function(){if($.state.isDestroyed)return;$.clearDelayTimeouts(),$.unmount(),be(),delete o._tippy,$.state.isDestroyed=!0,ae("onDestroy",[$])}};if(!M.render)return $;var q=M.render($),z=q.popper,J=q.onUpdate;z.setAttribute("data-tippy-root",""),z.id="tippy-"+$.id,$.popper=z,o._tippy=$,z._tippy=$;var G=Y.map((function(e){return e.fn($)})),K=o.hasAttribute("aria-expanded");return he(),ue(),ie(),ae("onCreate",[$]),M.showOnCreate&&Le(),z.addEventListener("mouseenter",(function(){$.props.interactive&&$.state.isVisible&&$.clearDelayTimeouts()})),z.addEventListener("mouseleave",(function(){$.props.interactive&&$.props.trigger.indexOf("mouseenter")>=0&&ne().addEventListener("mousemove",W)})),$;function Q(){var e=$.props.touch;return Array.isArray(e)?e:[e,0]}function Z(){return"hold"===Q()[0]}function ee(){var e;return!(null==(e=$.props.render)||!e.$$tippy)}function te(){return L||o}function ne(){var e=te().parentNode;return e?w(e):document}function re(){return S(z)}function oe(e){return $.state.isMounted&&!$.state.isVisible||x.isTouch||C&&"focus"===C.type?0:r($.props.delay,e?0:1,R.delay)}function ie(e){void 0===e&&(e=!1),z.style.pointerEvents=$.props.interactive&&!e?"":"none",z.style.zIndex=""+$.props.zIndex}function ae(e,t,n){var r;(void 0===n&&(n=!0),G.forEach((function(n){n[e]&&n[e].apply(n,t)})),n)&&(r=$.props)[e].apply(r,t)}function se(){var e=$.props.aria;if(e.content){var t="aria-"+e.content,n=z.id;u($.props.triggerTarget||o).forEach((function(e){var r=e.getAttribute(t);if($.state.isVisible)e.setAttribute(t,r?r+" "+n:n);else{var o=r&&r.replace(n,"").trim();o?e.setAttribute(t,o):e.removeAttribute(t)}}))}}function ue(){!K&&$.props.aria.expanded&&u($.props.triggerTarget||o).forEach((function(e){$.props.interactive?e.setAttribute("aria-expanded",$.state.isVisible&&e===te()?"true":"false"):e.removeAttribute("aria-expanded")}))}function ce(){ne().removeEventListener("mousemove",W),H=H.filter((function(e){return e!==W}))}function pe(e){if(!x.isTouch||!N&&"mousedown"!==e.type){var t=e.composedPath&&e.composedPath()[0]||e.target;if(!$.props.interactive||!O(z,t)){if(u($.props.triggerTarget||o).some((function(e){return O(e,t)}))){if(x.isTouch)return;if($.state.isVisible&&$.props.trigger.indexOf("click")>=0)return}else ae("onClickOutside",[$,e]);!0===$.props.hideOnClick&&($.clearDelayTimeouts(),$.hide(),I=!0,setTimeout((function(){I=!1})),$.state.isMounted||ve())}}}function fe(){N=!0}function le(){N=!1}function de(){var e=ne();e.addEventListener("mousedown",pe,!0),e.addEventListener("touchend",pe,t),e.addEventListener("touchstart",le,t),e.addEventListener("touchmove",fe,t)}function ve(){var e=ne();e.removeEventListener("mousedown",pe,!0),e.removeEventListener("touchend",pe,t),e.removeEventListener("touchstart",le,t),e.removeEventListener("touchmove",fe,t)}function me(e,t){var n=re().box;function r(e){e.target===n&&(E(n,"remove",r),t())}if(0===e)return t();E(n,"remove",T),E(n,"add",r),T=r}function ge(e,t,n){void 0===n&&(n=!1),u($.props.triggerTarget||o).forEach((function(r){r.addEventListener(e,t,n),F.push({node:r,eventType:e,handler:t,options:n})}))}function he(){var e;Z()&&(ge("touchstart",ye,{passive:!0}),ge("touchend",Ee,{passive:!0})),(e=$.props.trigger,e.split(/\s+/).filter(Boolean)).forEach((function(e){if("manual"!==e)switch(ge(e,ye),e){case"mouseenter":ge("mouseleave",Ee);break;case"focus":ge(D?"focusout":"blur",Oe);break;case"focusin":ge("focusout",Oe)}}))}function be(){F.forEach((function(e){var t=e.node,n=e.eventType,r=e.handler,o=e.options;t.removeEventListener(n,r,o)})),F=[]}function ye(e){var t,n=!1;if($.state.isEnabled&&!xe(e)&&!I){var r="focus"===(null==(t=C)?void 0:t.type);C=e,L=e.currentTarget,ue(),!$.state.isVisible&&m(e)&&H.forEach((function(t){return t(e)})),"click"===e.type&&($.props.trigger.indexOf("mouseenter")<0||V)&&!1!==$.props.hideOnClick&&$.state.isVisible?n=!0:Le(e),"click"===e.type&&(V=!n),n&&!r&&De(e)}}function we(e){var t=e.target,n=te().contains(t)||z.contains(t);"mousemove"===e.type&&n||function(e,t){var n=t.clientX,r=t.clientY;return e.every((function(e){var t=e.popperRect,o=e.popperState,i=e.props.interactiveBorder,a=p(o.placement),s=o.modifiersData.offset;if(!s)return!0;var u="bottom"===a?s.top.y:0,c="top"===a?s.bottom.y:0,f="right"===a?s.left.x:0,l="left"===a?s.right.x:0,d=t.top-r+u>i,v=r-t.bottom-c>i,m=t.left-n+f>i,g=n-t.right-l>i;return d||v||m||g}))}(Ae().concat(z).map((function(e){var t,n=null==(t=e._tippy.popperInstance)?void 0:t.state;return n?{popperRect:e.getBoundingClientRect(),popperState:n,props:M}:null})).filter(Boolean),e)&&(ce(),De(e))}function Ee(e){xe(e)||$.props.trigger.indexOf("click")>=0&&V||($.props.interactive?$.hideWithInteractivity(e):De(e))}function Oe(e){$.props.trigger.indexOf("focusin")<0&&e.target!==te()||$.props.interactive&&e.relatedTarget&&z.contains(e.relatedTarget)||De(e)}function xe(e){return!!x.isTouch&&Z()!==e.type.indexOf("touch")>=0}function Ce(){Te();var t=$.props,n=t.popperOptions,r=t.placement,i=t.offset,a=t.getReferenceClientRect,s=t.moveTransition,u=ee()?S(z).arrow:null,c=a?{getBoundingClientRect:a,contextElement:a.contextElement||te()}:o,p=[{name:"offset",options:{offset:i}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!s}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t=e.state;if(ee()){var n=re().box;["placement","reference-hidden","escaped"].forEach((function(e){"placement"===e?n.setAttribute("data-placement",t.placement):t.attributes.popper["data-popper-"+e]?n.setAttribute("data-"+e,""):n.removeAttribute("data-"+e)})),t.attributes.popper={}}}}];ee()&&u&&p.push({name:"arrow",options:{element:u,padding:3}}),p.push.apply(p,(null==n?void 0:n.modifiers)||[]),$.popperInstance=e.createPopper(c,z,Object.assign({},n,{placement:r,onFirstUpdate:A,modifiers:p}))}function Te(){$.popperInstance&&($.popperInstance.destroy(),$.popperInstance=null)}function Ae(){return f(z.querySelectorAll("[data-tippy-root]"))}function Le(e){$.clearDelayTimeouts(),e&&ae("onTrigger",[$,e]),de();var t=oe(!0),n=Q(),r=n[0],o=n[1];x.isTouch&&"hold"===r&&o&&(t=o),t?v=setTimeout((function(){$.show()}),t):$.show()}function De(e){if($.clearDelayTimeouts(),ae("onUntrigger",[$,e]),$.state.isVisible){if(!($.props.trigger.indexOf("mouseenter")>=0&&$.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(e.type)>=0&&V)){var t=oe(!1);t?g=setTimeout((function(){$.state.isVisible&&$.hide()}),t):h=requestAnimationFrame((function(){$.hide()}))}}else ve()}}function F(e,n){void 0===n&&(n={});var r=R.plugins.concat(n.plugins||[]);document.addEventListener("touchstart",T,t),window.addEventListener("blur",L);var o=Object.assign({},n,{plugins:r}),i=h(e).reduce((function(e,t){var n=t&&_(t,o);return n&&e.push(n),e}),[]);return v(e)?i[0]:i}F.defaultProps=R,F.setDefaultProps=function(e){Object.keys(e).forEach((function(t){R[t]=e[t]}))},F.currentInput=x;var W=Object.assign({},e.applyStyles,{effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow)}}),X={mouseover:"mouseenter",focusin:"focus",click:"click"};var Y={name:"animateFill",defaultValue:!1,fn:function(e){var t;if(null==(t=e.props.render)||!t.$$tippy)return{};var n=S(e.popper),r=n.box,o=n.content,i=e.props.animateFill?function(){var e=d();return e.className="tippy-backdrop",y([e],"hidden"),e}():null;return{onCreate:function(){i&&(r.insertBefore(i,r.firstElementChild),r.setAttribute("data-animatefill",""),r.style.overflow="hidden",e.setProps({arrow:!1,animation:"shift-away"}))},onMount:function(){if(i){var e=r.style.transitionDuration,t=Number(e.replace("ms",""));o.style.transitionDelay=Math.round(t/10)+"ms",i.style.transitionDuration=e,y([i],"visible")}},onShow:function(){i&&(i.style.transitionDuration="0ms")},onHide:function(){i&&y([i],"hidden")}}}};var $={clientX:0,clientY:0},q=[];function z(e){var t=e.clientX,n=e.clientY;$={clientX:t,clientY:n}}var J={name:"followCursor",defaultValue:!1,fn:function(e){var t=e.reference,n=w(e.props.triggerTarget||t),r=!1,o=!1,i=!0,a=e.props;function s(){return"initial"===e.props.followCursor&&e.state.isVisible}function u(){n.addEventListener("mousemove",f)}function c(){n.removeEventListener("mousemove",f)}function p(){r=!0,e.setProps({getReferenceClientRect:null}),r=!1}function f(n){var r=!n.target||t.contains(n.target),o=e.props.followCursor,i=n.clientX,a=n.clientY,s=t.getBoundingClientRect(),u=i-s.left,c=a-s.top;!r&&e.props.interactive||e.setProps({getReferenceClientRect:function(){var e=t.getBoundingClientRect(),n=i,r=a;"initial"===o&&(n=e.left+u,r=e.top+c);var s="horizontal"===o?e.top:r,p="vertical"===o?e.right:n,f="horizontal"===o?e.bottom:r,l="vertical"===o?e.left:n;return{width:p-l,height:f-s,top:s,right:p,bottom:f,left:l}}})}function l(){e.props.followCursor&&(q.push({instance:e,doc:n}),function(e){e.addEventListener("mousemove",z)}(n))}function d(){0===(q=q.filter((function(t){return t.instance!==e}))).filter((function(e){return e.doc===n})).length&&function(e){e.removeEventListener("mousemove",z)}(n)}return{onCreate:l,onDestroy:d,onBeforeUpdate:function(){a=e.props},onAfterUpdate:function(t,n){var i=n.followCursor;r||void 0!==i&&a.followCursor!==i&&(d(),i?(l(),!e.state.isMounted||o||s()||u()):(c(),p()))},onMount:function(){e.props.followCursor&&!o&&(i&&(f($),i=!1),s()||u())},onTrigger:function(e,t){m(t)&&($={clientX:t.clientX,clientY:t.clientY}),o="focus"===t.type},onHidden:function(){e.props.followCursor&&(p(),c(),i=!0)}}}};var G={name:"inlinePositioning",defaultValue:!1,fn:function(e){var t,n=e.reference;var r=-1,o=!1,i=[],a={name:"tippyInlinePositioning",enabled:!0,phase:"afterWrite",fn:function(o){var a=o.state;e.props.inlinePositioning&&(-1!==i.indexOf(a.placement)&&(i=[]),t!==a.placement&&-1===i.indexOf(a.placement)&&(i.push(a.placement),e.setProps({getReferenceClientRect:function(){return function(e){return function(e,t,n,r){if(n.length<2||null===e)return t;if(2===n.length&&r>=0&&n[0].left>n[1].right)return n[r]||t;switch(e){case"top":case"bottom":var o=n[0],i=n[n.length-1],a="top"===e,s=o.top,u=i.bottom,c=a?o.left:i.left,p=a?o.right:i.right;return{top:s,bottom:u,left:c,right:p,width:p-c,height:u-s};case"left":case"right":var f=Math.min.apply(Math,n.map((function(e){return e.left}))),l=Math.max.apply(Math,n.map((function(e){return e.right}))),d=n.filter((function(t){return"left"===e?t.left===f:t.right===l})),v=d[0].top,m=d[d.length-1].bottom;return{top:v,bottom:m,left:f,right:l,width:l-f,height:m-v};default:return t}}(p(e),n.getBoundingClientRect(),f(n.getClientRects()),r)}(a.placement)}})),t=a.placement)}};function s(){var t;o||(t=function(e,t){var n;return{popperOptions:Object.assign({},e.popperOptions,{modifiers:[].concat(((null==(n=e.popperOptions)?void 0:n.modifiers)||[]).filter((function(e){return e.name!==t.name})),[t])})}}(e.props,a),o=!0,e.setProps(t),o=!1)}return{onCreate:s,onAfterUpdate:s,onTrigger:function(t,n){if(m(n)){var o=f(e.reference.getClientRects()),i=o.find((function(e){return e.left-2<=n.clientX&&e.right+2>=n.clientX&&e.top-2<=n.clientY&&e.bottom+2>=n.clientY})),a=o.indexOf(i);r=a>-1?a:r}},onHidden:function(){r=-1}}}};var K={name:"sticky",defaultValue:!1,fn:function(e){var t=e.reference,n=e.popper;function r(t){return!0===e.props.sticky||e.props.sticky===t}var o=null,i=null;function a(){var s=r("reference")?(e.popperInstance?e.popperInstance.state.elements.reference:t).getBoundingClientRect():null,u=r("popper")?n.getBoundingClientRect():null;(s&&Q(o,s)||u&&Q(i,u))&&e.popperInstance&&e.popperInstance.update(),o=s,i=u,e.state.isMounted&&requestAnimationFrame(a)}return{onMount:function(){e.props.sticky&&a()}}}};function Q(e,t){return!e||!t||(e.top!==t.top||e.right!==t.right||e.bottom!==t.bottom||e.left!==t.left)}return F.setDefaultProps({plugins:[Y,J,G,K],render:N}),F.createSingleton=function(e,t){var n;void 0===t&&(t={});var r,o=e,i=[],a=[],c=t.overrides,p=[],f=!1;function l(){a=o.map((function(e){return u(e.props.triggerTarget||e.reference)})).reduce((function(e,t){return e.concat(t)}),[])}function v(){i=o.map((function(e){return e.reference}))}function m(e){o.forEach((function(t){e?t.enable():t.disable()}))}function g(e){return o.map((function(t){var n=t.setProps;return t.setProps=function(o){n(o),t.reference===r&&e.setProps(o)},function(){t.setProps=n}}))}function h(e,t){var n=a.indexOf(t);if(t!==r){r=t;var s=(c||[]).concat("content").reduce((function(e,t){return e[t]=o[n].props[t],e}),{});e.setProps(Object.assign({},s,{getReferenceClientRect:"function"==typeof s.getReferenceClientRect?s.getReferenceClientRect:function(){var e;return null==(e=i[n])?void 0:e.getBoundingClientRect()}}))}}m(!1),v(),l();var b={fn:function(){return{onDestroy:function(){m(!0)},onHidden:function(){r=null},onClickOutside:function(e){e.props.showOnCreate&&!f&&(f=!0,r=null)},onShow:function(e){e.props.showOnCreate&&!f&&(f=!0,h(e,i[0]))},onTrigger:function(e,t){h(e,t.currentTarget)}}}},y=F(d(),Object.assign({},s(t,["overrides"]),{plugins:[b].concat(t.plugins||[]),triggerTarget:a,popperOptions:Object.assign({},t.popperOptions,{modifiers:[].concat((null==(n=t.popperOptions)?void 0:n.modifiers)||[],[W])})})),w=y.show;y.show=function(e){if(w(),!r&&null==e)return h(y,i[0]);if(!r||null!=e){if("number"==typeof e)return i[e]&&h(y,i[e]);if(o.indexOf(e)>=0){var t=e.reference;return h(y,t)}return i.indexOf(e)>=0?h(y,e):void 0}},y.showNext=function(){var e=i[0];if(!r)return y.show(0);var t=i.indexOf(r);y.show(i[t+1]||e)},y.showPrevious=function(){var e=i[i.length-1];if(!r)return y.show(e);var t=i.indexOf(r),n=i[t-1]||e;y.show(n)};var E=y.setProps;return y.setProps=function(e){c=e.overrides||c,E(e)},y.setInstances=function(e){m(!0),p.forEach((function(e){return e()})),o=e,m(!1),v(),l(),p=g(y),y.setProps({triggerTarget:a})},p=g(y),y},F.delegate=function(e,n){var r=[],o=[],i=!1,a=n.target,c=s(n,["target"]),p=Object.assign({},c,{trigger:"manual",touch:!1}),f=Object.assign({touch:R.touch},c,{showOnCreate:!0}),l=F(e,p);function d(e){if(e.target&&!i){var t=e.target.closest(a);if(t){var r=t.getAttribute("data-tippy-trigger")||n.trigger||R.trigger;if(!t._tippy&&!("touchstart"===e.type&&"boolean"==typeof f.touch||"touchstart"!==e.type&&r.indexOf(X[e.type])<0)){var s=F(t,f);s&&(o=o.concat(s))}}}}function v(e,t,n,o){void 0===o&&(o=!1),e.addEventListener(t,n,o),r.push({node:e,eventType:t,handler:n,options:o})}return u(l).forEach((function(e){var n=e.destroy,a=e.enable,s=e.disable;e.destroy=function(e){void 0===e&&(e=!0),e&&o.forEach((function(e){e.destroy()})),o=[],r.forEach((function(e){var t=e.node,n=e.eventType,r=e.handler,o=e.options;t.removeEventListener(n,r,o)})),r=[],n()},e.enable=function(){a(),o.forEach((function(e){return e.enable()})),i=!1},e.disable=function(){s(),o.forEach((function(e){return e.disable()})),i=!0},function(e){var n=e.reference;v(n,"touchstart",d,t),v(n,"mouseover",d),v(n,"focusin",d),v(n,"click",d)}(e)})),l},F.hideAll=function(e){var t=void 0===e?{}:e,n=t.exclude,r=t.duration;U.forEach((function(e){var t=!1;if(n&&(t=g(n)?e.reference===n:e.popper===n.popper),!t){var o=e.props.duration;e.setProps({duration:r}),e.hide(),e.state.isDestroyed||e.setProps({duration:o})}}))},F.roundArrow=' ',F}));
+
diff --git a/docs/site_libs/quarto-nav/headroom.min.js b/docs/site_libs/quarto-nav/headroom.min.js
new file mode 100644
index 00000000..b08f1dff
--- /dev/null
+++ b/docs/site_libs/quarto-nav/headroom.min.js
@@ -0,0 +1,7 @@
+/*!
+ * headroom.js v0.12.0 - Give your page some headroom. Hide your header until you need it
+ * Copyright (c) 2020 Nick Williams - http://wicky.nillia.ms/headroom.js
+ * License: MIT
+ */
+
+!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(t=t||self).Headroom=n()}(this,function(){"use strict";function t(){return"undefined"!=typeof window}function d(t){return function(t){return t&&t.document&&function(t){return 9===t.nodeType}(t.document)}(t)?function(t){var n=t.document,o=n.body,s=n.documentElement;return{scrollHeight:function(){return Math.max(o.scrollHeight,s.scrollHeight,o.offsetHeight,s.offsetHeight,o.clientHeight,s.clientHeight)},height:function(){return t.innerHeight||s.clientHeight||o.clientHeight},scrollY:function(){return void 0!==t.pageYOffset?t.pageYOffset:(s||o.parentNode||o).scrollTop}}}(t):function(t){return{scrollHeight:function(){return Math.max(t.scrollHeight,t.offsetHeight,t.clientHeight)},height:function(){return Math.max(t.offsetHeight,t.clientHeight)},scrollY:function(){return t.scrollTop}}}(t)}function n(t,s,e){var n,o=function(){var n=!1;try{var t={get passive(){n=!0}};window.addEventListener("test",t,t),window.removeEventListener("test",t,t)}catch(t){n=!1}return n}(),i=!1,r=d(t),l=r.scrollY(),a={};function c(){var t=Math.round(r.scrollY()),n=r.height(),o=r.scrollHeight();a.scrollY=t,a.lastScrollY=l,a.direction=ls.tolerance[a.direction],e(a),l=t,i=!1}function h(){i||(i=!0,n=requestAnimationFrame(c))}var u=!!o&&{passive:!0,capture:!1};return t.addEventListener("scroll",h,u),c(),{destroy:function(){cancelAnimationFrame(n),t.removeEventListener("scroll",h,u)}}}function o(t){return t===Object(t)?t:{down:t,up:t}}function s(t,n){n=n||{},Object.assign(this,s.options,n),this.classes=Object.assign({},s.options.classes,n.classes),this.elem=t,this.tolerance=o(this.tolerance),this.offset=o(this.offset),this.initialised=!1,this.frozen=!1}return s.prototype={constructor:s,init:function(){return s.cutsTheMustard&&!this.initialised&&(this.addClass("initial"),this.initialised=!0,setTimeout(function(t){t.scrollTracker=n(t.scroller,{offset:t.offset,tolerance:t.tolerance},t.update.bind(t))},100,this)),this},destroy:function(){this.initialised=!1,Object.keys(this.classes).forEach(this.removeClass,this),this.scrollTracker.destroy()},unpin:function(){!this.hasClass("pinned")&&this.hasClass("unpinned")||(this.addClass("unpinned"),this.removeClass("pinned"),this.onUnpin&&this.onUnpin.call(this))},pin:function(){this.hasClass("unpinned")&&(this.addClass("pinned"),this.removeClass("unpinned"),this.onPin&&this.onPin.call(this))},freeze:function(){this.frozen=!0,this.addClass("frozen")},unfreeze:function(){this.frozen=!1,this.removeClass("frozen")},top:function(){this.hasClass("top")||(this.addClass("top"),this.removeClass("notTop"),this.onTop&&this.onTop.call(this))},notTop:function(){this.hasClass("notTop")||(this.addClass("notTop"),this.removeClass("top"),this.onNotTop&&this.onNotTop.call(this))},bottom:function(){this.hasClass("bottom")||(this.addClass("bottom"),this.removeClass("notBottom"),this.onBottom&&this.onBottom.call(this))},notBottom:function(){this.hasClass("notBottom")||(this.addClass("notBottom"),this.removeClass("bottom"),this.onNotBottom&&this.onNotBottom.call(this))},shouldUnpin:function(t){return"down"===t.direction&&!t.top&&t.toleranceExceeded},shouldPin:function(t){return"up"===t.direction&&t.toleranceExceeded||t.top},addClass:function(t){this.elem.classList.add.apply(this.elem.classList,this.classes[t].split(" "))},removeClass:function(t){this.elem.classList.remove.apply(this.elem.classList,this.classes[t].split(" "))},hasClass:function(t){return this.classes[t].split(" ").every(function(t){return this.classList.contains(t)},this.elem)},update:function(t){t.isOutOfBounds||!0!==this.frozen&&(t.top?this.top():this.notTop(),t.bottom?this.bottom():this.notBottom(),this.shouldUnpin(t)?this.unpin():this.shouldPin(t)&&this.pin())}},s.options={tolerance:{up:0,down:0},offset:0,scroller:t()?window:null,classes:{frozen:"headroom--frozen",pinned:"headroom--pinned",unpinned:"headroom--unpinned",top:"headroom--top",notTop:"headroom--not-top",bottom:"headroom--bottom",notBottom:"headroom--not-bottom",initial:"headroom"}},s.cutsTheMustard=!!(t()&&function(){}.bind&&"classList"in document.documentElement&&Object.assign&&Object.keys&&requestAnimationFrame),s});
diff --git a/docs/site_libs/quarto-nav/quarto-nav.js b/docs/site_libs/quarto-nav/quarto-nav.js
new file mode 100644
index 00000000..38cc4305
--- /dev/null
+++ b/docs/site_libs/quarto-nav/quarto-nav.js
@@ -0,0 +1,325 @@
+const headroomChanged = new CustomEvent("quarto-hrChanged", {
+ detail: {},
+ bubbles: true,
+ cancelable: false,
+ composed: false,
+});
+
+const announceDismiss = () => {
+ const annEl = window.document.getElementById("quarto-announcement");
+ if (annEl) {
+ annEl.remove();
+
+ const annId = annEl.getAttribute("data-announcement-id");
+ window.localStorage.setItem(`quarto-announce-${annId}`, "true");
+ }
+};
+
+const announceRegister = () => {
+ const annEl = window.document.getElementById("quarto-announcement");
+ if (annEl) {
+ const annId = annEl.getAttribute("data-announcement-id");
+ const isDismissed =
+ window.localStorage.getItem(`quarto-announce-${annId}`) || false;
+ if (isDismissed) {
+ announceDismiss();
+ return;
+ } else {
+ annEl.classList.remove("hidden");
+ }
+
+ const actionEl = annEl.querySelector(".quarto-announcement-action");
+ if (actionEl) {
+ actionEl.addEventListener("click", function (e) {
+ e.preventDefault();
+ // Hide the bar immediately
+ announceDismiss();
+ });
+ }
+ }
+};
+
+window.document.addEventListener("DOMContentLoaded", function () {
+ let init = false;
+
+ announceRegister();
+
+ // Manage the back to top button, if one is present.
+ let lastScrollTop = window.pageYOffset || document.documentElement.scrollTop;
+ const scrollDownBuffer = 5;
+ const scrollUpBuffer = 35;
+ const btn = document.getElementById("quarto-back-to-top");
+ const hideBackToTop = () => {
+ btn.style.display = "none";
+ };
+ const showBackToTop = () => {
+ btn.style.display = "inline-block";
+ };
+ if (btn) {
+ window.document.addEventListener(
+ "scroll",
+ function () {
+ const currentScrollTop =
+ window.pageYOffset || document.documentElement.scrollTop;
+
+ // Shows and hides the button 'intelligently' as the user scrolls
+ if (currentScrollTop - scrollDownBuffer > lastScrollTop) {
+ hideBackToTop();
+ lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop;
+ } else if (currentScrollTop < lastScrollTop - scrollUpBuffer) {
+ showBackToTop();
+ lastScrollTop = currentScrollTop <= 0 ? 0 : currentScrollTop;
+ }
+
+ // Show the button at the bottom, hides it at the top
+ if (currentScrollTop <= 0) {
+ hideBackToTop();
+ } else if (
+ window.innerHeight + currentScrollTop >=
+ document.body.offsetHeight
+ ) {
+ showBackToTop();
+ }
+ },
+ false
+ );
+ }
+
+ function throttle(func, wait) {
+ var timeout;
+ return function () {
+ const context = this;
+ const args = arguments;
+ const later = function () {
+ clearTimeout(timeout);
+ timeout = null;
+ func.apply(context, args);
+ };
+
+ if (!timeout) {
+ timeout = setTimeout(later, wait);
+ }
+ };
+ }
+
+ function headerOffset() {
+ // Set an offset if there is are fixed top navbar
+ const headerEl = window.document.querySelector("header.fixed-top");
+ if (headerEl) {
+ return headerEl.clientHeight;
+ } else {
+ return 0;
+ }
+ }
+
+ function footerOffset() {
+ const footerEl = window.document.querySelector("footer.footer");
+ if (footerEl) {
+ return footerEl.clientHeight;
+ } else {
+ return 0;
+ }
+ }
+
+ function dashboardOffset() {
+ const dashboardNavEl = window.document.getElementById(
+ "quarto-dashboard-header"
+ );
+ if (dashboardNavEl !== null) {
+ return dashboardNavEl.clientHeight;
+ } else {
+ return 0;
+ }
+ }
+
+ function updateDocumentOffsetWithoutAnimation() {
+ updateDocumentOffset(false);
+ }
+
+ function updateDocumentOffset(animated) {
+ // set body offset
+ const topOffset = headerOffset();
+ const bodyOffset = topOffset + footerOffset() + dashboardOffset();
+ const bodyEl = window.document.body;
+ bodyEl.setAttribute("data-bs-offset", topOffset);
+ bodyEl.style.paddingTop = topOffset + "px";
+
+ // deal with sidebar offsets
+ const sidebars = window.document.querySelectorAll(
+ ".sidebar, .headroom-target"
+ );
+ sidebars.forEach((sidebar) => {
+ if (!animated) {
+ sidebar.classList.add("notransition");
+ // Remove the no transition class after the animation has time to complete
+ setTimeout(function () {
+ sidebar.classList.remove("notransition");
+ }, 201);
+ }
+
+ if (window.Headroom && sidebar.classList.contains("sidebar-unpinned")) {
+ sidebar.style.top = "0";
+ sidebar.style.maxHeight = "100vh";
+ } else {
+ sidebar.style.top = topOffset + "px";
+ sidebar.style.maxHeight = "calc(100vh - " + topOffset + "px)";
+ }
+ });
+
+ // allow space for footer
+ const mainContainer = window.document.querySelector(".quarto-container");
+ if (mainContainer) {
+ mainContainer.style.minHeight = "calc(100vh - " + bodyOffset + "px)";
+ }
+
+ // link offset
+ let linkStyle = window.document.querySelector("#quarto-target-style");
+ if (!linkStyle) {
+ linkStyle = window.document.createElement("style");
+ linkStyle.setAttribute("id", "quarto-target-style");
+ window.document.head.appendChild(linkStyle);
+ }
+ while (linkStyle.firstChild) {
+ linkStyle.removeChild(linkStyle.firstChild);
+ }
+ if (topOffset > 0) {
+ linkStyle.appendChild(
+ window.document.createTextNode(`
+ section:target::before {
+ content: "";
+ display: block;
+ height: ${topOffset}px;
+ margin: -${topOffset}px 0 0;
+ }`)
+ );
+ }
+ if (init) {
+ window.dispatchEvent(headroomChanged);
+ }
+ init = true;
+ }
+
+ // initialize headroom
+ var header = window.document.querySelector("#quarto-header");
+ if (header && window.Headroom) {
+ const headroom = new window.Headroom(header, {
+ tolerance: 5,
+ onPin: function () {
+ const sidebars = window.document.querySelectorAll(
+ ".sidebar, .headroom-target"
+ );
+ sidebars.forEach((sidebar) => {
+ sidebar.classList.remove("sidebar-unpinned");
+ });
+ updateDocumentOffset();
+ },
+ onUnpin: function () {
+ const sidebars = window.document.querySelectorAll(
+ ".sidebar, .headroom-target"
+ );
+ sidebars.forEach((sidebar) => {
+ sidebar.classList.add("sidebar-unpinned");
+ });
+ updateDocumentOffset();
+ },
+ });
+ headroom.init();
+
+ let frozen = false;
+ window.quartoToggleHeadroom = function () {
+ if (frozen) {
+ headroom.unfreeze();
+ frozen = false;
+ } else {
+ headroom.freeze();
+ frozen = true;
+ }
+ };
+ }
+
+ window.addEventListener(
+ "hashchange",
+ function (e) {
+ if (
+ getComputedStyle(document.documentElement).scrollBehavior !== "smooth"
+ ) {
+ window.scrollTo(0, window.pageYOffset - headerOffset());
+ }
+ },
+ false
+ );
+
+ // Observe size changed for the header
+ const headerEl = window.document.querySelector("header.fixed-top");
+ if (headerEl && window.ResizeObserver) {
+ const observer = new window.ResizeObserver(() => {
+ setTimeout(updateDocumentOffsetWithoutAnimation, 0);
+ });
+ observer.observe(headerEl, {
+ attributes: true,
+ childList: true,
+ characterData: true,
+ });
+ } else {
+ window.addEventListener(
+ "resize",
+ throttle(updateDocumentOffsetWithoutAnimation, 50)
+ );
+ }
+ setTimeout(updateDocumentOffsetWithoutAnimation, 250);
+
+ // fixup index.html links if we aren't on the filesystem
+ if (window.location.protocol !== "file:") {
+ const links = window.document.querySelectorAll("a");
+ for (let i = 0; i < links.length; i++) {
+ if (links[i].href) {
+ links[i].dataset.originalHref = links[i].href;
+ links[i].href = links[i].href.replace(/\/index\.html/, "/");
+ }
+ }
+
+ // Fixup any sharing links that require urls
+ // Append url to any sharing urls
+ const sharingLinks = window.document.querySelectorAll(
+ "a.sidebar-tools-main-item, a.quarto-navigation-tool, a.quarto-navbar-tools, a.quarto-navbar-tools-item"
+ );
+ for (let i = 0; i < sharingLinks.length; i++) {
+ const sharingLink = sharingLinks[i];
+ const href = sharingLink.getAttribute("href");
+ if (href) {
+ sharingLink.setAttribute(
+ "href",
+ href.replace("|url|", window.location.href)
+ );
+ }
+ }
+
+ // Scroll the active navigation item into view, if necessary
+ const navSidebar = window.document.querySelector("nav#quarto-sidebar");
+ if (navSidebar) {
+ // Find the active item
+ const activeItem = navSidebar.querySelector("li.sidebar-item a.active");
+ if (activeItem) {
+ // Wait for the scroll height and height to resolve by observing size changes on the
+ // nav element that is scrollable
+ const resizeObserver = new ResizeObserver((_entries) => {
+ // The bottom of the element
+ const elBottom = activeItem.offsetTop;
+ const viewBottom = navSidebar.scrollTop + navSidebar.clientHeight;
+
+ // The element height and scroll height are the same, then we are still loading
+ if (viewBottom !== navSidebar.scrollHeight) {
+ // Determine if the item isn't visible and scroll to it
+ if (elBottom >= viewBottom) {
+ navSidebar.scrollTop = elBottom;
+ }
+
+ // stop observing now since we've completed the scroll
+ resizeObserver.unobserve(navSidebar);
+ }
+ });
+ resizeObserver.observe(navSidebar);
+ }
+ }
+ }
+});
diff --git a/docs/site_libs/quarto-search/autocomplete.umd.js b/docs/site_libs/quarto-search/autocomplete.umd.js
new file mode 100644
index 00000000..6090a552
--- /dev/null
+++ b/docs/site_libs/quarto-search/autocomplete.umd.js
@@ -0,0 +1,3 @@
+/*! @algolia/autocomplete-js 1.19.1 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self)["@algolia/autocomplete-js"]={})}(this,(function(e){"use strict";function t(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function n(e){for(var n=1;n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,u,a=[],l=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=i.call(n)).done)&&(a.push(r.value),a.length!==t);l=!0);}catch(e){c=!0,o=e}finally{try{if(!l&&null!=n.return&&(u=n.return(),Object(u)!==u))return}finally{if(c)throw o}}return a}}(e,t)||c(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(e){return function(e){if(Array.isArray(e))return s(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||c(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e,t){if(e){if("string"==typeof e)return s(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?s(e,t):void 0}}function s(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);ne.length)&&(t=e.length);for(var n=0,r=new Array(t);ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function x(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function N(e){for(var t=1;t1&&void 0!==arguments[1]?arguments[1]:20,n=[],r=0;r=3||2===n&&r>=4||1===n&&r>=10);function i(t,n,r){if(o&&void 0!==r){var i=r[0].__autocomplete_algoliaCredentials,u={"X-Algolia-Application-Id":i.appId,"X-Algolia-API-Key":i.apiKey};e.apply(void 0,[t].concat(D(n),[{headers:u}]))}else e.apply(void 0,[t].concat(D(n)))}return{init:function(t,n){e("init",{appId:t,apiKey:n})},setAuthenticatedUserToken:function(t){e("setAuthenticatedUserToken",t)},setUserToken:function(t){e("setUserToken",t)},clickedObjectIDsAfterSearch:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("clickedObjectIDsAfterSearch",B(t),t[0].items)},clickedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("clickedObjectIDs",B(t),t[0].items)},clickedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["clickedFilters"].concat(n))},convertedObjectIDsAfterSearch:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("convertedObjectIDsAfterSearch",B(t),t[0].items)},convertedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&i("convertedObjectIDs",B(t),t[0].items)},convertedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["convertedFilters"].concat(n))},viewedObjectIDs:function(){for(var e=arguments.length,t=new Array(e),n=0;n0&&t.reduce((function(e,t){var n=t.items,r=k(t,A);return[].concat(D(e),D(q(N(N({},r),{},{objectIDs:(null==n?void 0:n.map((function(e){return e.objectID})))||r.objectIDs})).map((function(e){return{items:n,payload:e}}))))}),[]).forEach((function(e){var t=e.items;return i("viewedObjectIDs",[e.payload],t)}))},viewedFilters:function(){for(var t=arguments.length,n=new Array(t),r=0;r0&&e.apply(void 0,["viewedFilters"].concat(n))}}}function L(e){var t=e.items.reduce((function(e,t){var n;return e[t.__autocomplete_indexName]=(null!==(n=e[t.__autocomplete_indexName])&&void 0!==n?n:[]).concat(t),e}),{});return Object.keys(t).map((function(e){return{index:e,items:t[e],algoliaSource:["autocomplete"]}}))}function F(e){return e.objectID&&e.__autocomplete_indexName&&e.__autocomplete_queryID}function U(e){return U="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},U(e)}function M(e){return function(e){if(Array.isArray(e))return H(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return H(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return H(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function H(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&z({onItemsChange:o,items:n,insights:c,state:t}))}}),0);return{name:"aa.algoliaInsightsPlugin",subscribe:function(e){var t=e.setContext,n=e.onSelect,r=e.onActive;function o(e){t({algoliaInsightsPlugin:{__algoliaSearchParameters:W(W({},a?{clickAnalytics:!0}:{}),e?{userToken:X(e)}:{}),insights:c}})}l("addAlgoliaAgent","insights-plugin"),o(),l("onUserTokenChange",(function(e){o(e)})),l("getUserToken",null,(function(e,t){o(t)})),n((function(e){var t=e.item,n=e.state,r=e.event,o=e.source;F(t)&&i({state:n,event:r,insights:c,item:t,insightsEvents:[W({eventName:"Item Selected"},j({item:t,items:o.getItems().filter(F)}))]})})),r((function(e){var t=e.item,n=e.source,r=e.state,o=e.event;F(t)&&u({state:r,event:o,insights:c,item:t,insightsEvents:[W({eventName:"Item Active"},j({item:t,items:n.getItems().filter(F)}))]})}))},onStateChange:function(e){var t=e.state;m({state:t})},__autocomplete_pluginOptions:e}}function J(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0;return[].concat(M(t),["autocomplete-internal"],M(null!==(e=n.algoliaInsightsPlugin)&&void 0!==e&&e.__automaticInsights?["autocomplete-automatic"]:[]))}function X(e){return"number"==typeof e?e.toString():e}function Y(e,t){var n=t;return{then:function(t,r){return Y(e.then(ee(t,n,e),ee(r,n,e)),n)},catch:function(t){return Y(e.catch(ee(t,n,e)),n)},finally:function(t){return t&&n.onCancelList.push(t),Y(e.finally(ee(t&&function(){return n.onCancelList=[],t()},n,e)),n)},cancel:function(){n.isCanceled=!0;var e=n.onCancelList;n.onCancelList=[],e.forEach((function(e){e()}))},isCanceled:function(){return!0===n.isCanceled}}}function Z(e){return Y(e,{isCanceled:!1,onCancelList:[]})}function ee(e,t,n){return e?function(n){return t.isCanceled?n:e(n)}:n}var te,ne=!0;function re(e,t,n,r){if(!n)return null;if(e<0&&(null===t||null!==r&&0===t))return n+e;var o=(null===t?-1:t)+e;return o<=-1||o>=n?null===r?null:0:o}function oe(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ie(e){for(var t=1;t=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,u=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return u=e.done,e},e:function(e){a=!0,i=e},f:function(){try{u||null==n.return||n.return()}finally{if(a)throw i}}}}function ce(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0?t.wait(Math.max.apply(Math,o)):void 0};function fe(e){var t=function(e){var t=e.collections.map((function(e){return e.items.length})).reduce((function(e,t,n){var r=(e[n-1]||0)+t;return e.push(r),e}),[]).reduce((function(t,n){return n<=e.activeItemId?t+1:t}),0);return e.collections[t]}(e);if(!t)return null;var n=t.items[function(e){for(var t=e.state,n=e.collection,r=!1,o=0,i=0;!1===r;){var u=t.collections[o];if(u===n){r=!0;break}i+=u.items.length,o++}return t.activeItemId-i}({state:e,collection:t})],r=t.source;return{item:n,itemInputValue:r.getItemInputValue({item:n,state:e}),itemUrl:r.getItemUrl({item:n,state:e}),source:r}}function pe(e,t,n){return[e,null==n?void 0:n.sourceId,t].filter(Boolean).join("-").replace(/\s/g,"")}var me=/((gt|sm)-|galaxy nexus)|samsung[- ]|samsungbrowser/i;function ve(e){return e.nativeEvent||e}function de(e){return de="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},de(e)}function ye(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function be(e,t,n){return(t=function(e){var t=function(e,t){if("object"!==de(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==de(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===de(t)?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ge(e,t,n){var r,o=t.initialState;return{getState:function(){return o},dispatch:function(r,i){var u=function(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n0},reshape:function(e){return e.sources}},e),{},{id:null!==(n=e.id)&&void 0!==n?n:d(),plugins:o,initialState:Ae({activeItemId:null,query:"",completion:null,collections:[],isOpen:!1,status:"idle",context:{}},e.initialState),onStateChange:function(t){var n;null===(n=e.onStateChange)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onStateChange)||void 0===n?void 0:n.call(e,t)}))},onSubmit:function(t){var n;null===(n=e.onSubmit)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onSubmit)||void 0===n?void 0:n.call(e,t)}))},onReset:function(t){var n;null===(n=e.onReset)||void 0===n||n.call(e,t),o.forEach((function(e){var n;return null===(n=e.onReset)||void 0===n?void 0:n.call(e,t)}))},getSources:function(n){return Promise.all([].concat(Pe(o.map((function(e){return e.getSources}))),[e.getSources]).filter(Boolean).map((function(e){return function(e,t){var n=[];return Promise.resolve(e(t)).then((function(e){return Promise.all(e.filter((function(e){return Boolean(e)})).map((function(e){if(e.sourceId,n.includes(e.sourceId))throw new Error("[Autocomplete] The `sourceId` ".concat(JSON.stringify(e.sourceId)," is not unique."));n.push(e.sourceId);var t={getItemInputValue:function(e){return e.state.query},getItemUrl:function(){},onSelect:function(e){(0,e.setIsOpen)(!1)},onActive:_,onResolve:_};Object.keys(t).forEach((function(e){t[e].__default=!0}));var r=ie(ie({},t),e);return Promise.resolve(r)})))}))}(e,n)}))).then((function(e){return m(e)})).then((function(e){return e.map((function(e){return Ae(Ae({},e),{},{onSelect:function(n){e.onSelect(n),t.forEach((function(e){var t;return null===(t=e.onSelect)||void 0===t?void 0:t.call(e,n)}))},onActive:function(n){e.onActive(n),t.forEach((function(e){var t;return null===(t=e.onActive)||void 0===t?void 0:t.call(e,n)}))},onResolve:function(n){e.onResolve(n),t.forEach((function(e){var t;return null===(t=e.onResolve)||void 0===t?void 0:t.call(e,n)}))}})}))}))},navigator:Ae({navigate:function(e){var t=e.itemUrl;r.location.assign(t)},navigateNewTab:function(e){var t=e.itemUrl,n=r.open(t,"_blank","noopener");null==n||n.focus()},navigateNewWindow:function(e){var t=e.itemUrl;r.open(t,"_blank","noopener")}},e.navigator)})}function Ce(e){return Ce="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ce(e)}function ke(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function xe(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var Je,Xe,Ye,Ze=null,et=(Je=-1,Xe=-1,Ye=void 0,function(e){var t=++Je;return Promise.resolve(e).then((function(e){return Ye&&t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function lt(e){return lt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},lt(e)}var ct=["props","refresh","store"],st=["inputElement","formElement","panelElement"],ft=["inputElement"],pt=["inputElement","maxLength"],mt=["source"],vt=["item","source"];function dt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function yt(e){for(var t=1;t=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function ht(e){var t=e.props,n=e.refresh,r=e.store,o=gt(e,ct);return{getEnvironmentProps:function(e){var n=e.inputElement,o=e.formElement,i=e.panelElement;function u(e){!r.getState().isOpen&&r.pendingRequests.isEmpty()||e.target===n||!1===[o,i].some((function(t){return n=t,r=e.target,n===r||n.contains(r);var n,r}))&&(r.dispatch("blur",null),t.debug||r.pendingRequests.cancelAll())}return yt({onTouchStart:u,onMouseDown:u,onTouchMove:function(e){!1!==r.getState().isOpen&&n===t.environment.document.activeElement&&e.target!==n&&n.blur()}},gt(e,st))},getRootProps:function(e){return yt({role:"combobox","aria-expanded":r.getState().isOpen,"aria-haspopup":"listbox","aria-controls":r.getState().isOpen?r.getState().collections.map((function(e){var n=e.source;return pe(t.id,"list",n)})).join(" "):void 0,"aria-labelledby":pe(t.id,"label")},e)},getFormProps:function(e){e.inputElement;var i=gt(e,ft),u=function(i){var u;t.onSubmit(yt({event:i,refresh:n,state:r.getState()},o)),r.dispatch("submit",null),null===(u=e.inputElement)||void 0===u||u.blur()};return yt({action:"",noValidate:!0,role:"search",onSubmit:function(e){e.preventDefault();var n=se(t.plugins,r.pendingRequests);void 0!==n?n.then((function(){return u(e)})):u(e)},onReset:function(i){var u;i.preventDefault(),t.onReset(yt({event:i,refresh:n,state:r.getState()},o)),r.dispatch("reset",null),null===(u=e.inputElement)||void 0===u||u.focus()}},i)},getLabelProps:function(e){return yt({htmlFor:pe(t.id,"input"),id:pe(t.id,"label")},e)},getInputProps:function(e){var i;function u(e){(t.openOnFocus||Boolean(r.getState().query))&&tt(yt({event:e,props:t,query:r.getState().completion||r.getState().query,refresh:n,store:r},o)),r.dispatch("focus",null)}var a=e||{};a.inputElement;var l=a.maxLength,c=void 0===l?512:l,s=gt(a,pt),f=fe(r.getState()),p=function(e){return Boolean(e&&e.match(me))}((null===(i=t.environment.navigator)||void 0===i?void 0:i.userAgent)||""),m=t.enterKeyHint||(null!=f&&f.itemUrl&&!p?"go":"search");return yt({"aria-autocomplete":"both","aria-activedescendant":r.getState().isOpen&&null!==r.getState().activeItemId?pe(t.id,"item-".concat(r.getState().activeItemId),null==f?void 0:f.source):void 0,"aria-controls":r.getState().isOpen?r.getState().collections.filter((function(e){return e.items.length>0})).map((function(e){var n=e.source;return pe(t.id,"list",n)})).join(" "):void 0,"aria-labelledby":pe(t.id,"label"),value:r.getState().completion||r.getState().query,id:pe(t.id,"input"),autoComplete:"off",autoCorrect:"off",autoCapitalize:"off",enterKeyHint:m,spellCheck:"false",autoFocus:t.autoFocus,placeholder:t.placeholder,maxLength:c,type:"search",onChange:function(e){var i=e.currentTarget.value;t.ignoreCompositionEvents&&ve(e).isComposing?o.setQuery(i):tt(yt({event:e,props:t,query:i.slice(0,c),refresh:n,store:r},o))},onCompositionEnd:function(e){tt(yt({event:e,props:t,query:e.currentTarget.value.slice(0,c),refresh:n,store:r},o))},onKeyDown:function(e){ve(e).isComposing||function(e){var t=e.event,n=e.props,r=e.refresh,o=e.store,i=at(e,rt);if("ArrowUp"===t.key||"ArrowDown"===t.key){var u=function(){var e=fe(o.getState()),t=n.environment.document.getElementById(pe(n.id,"item-".concat(o.getState().activeItemId),null==e?void 0:e.source));t&&(t.scrollIntoViewIfNeeded?t.scrollIntoViewIfNeeded(!1):t.scrollIntoView(!1))},a=function(){var e=fe(o.getState());if(null!==o.getState().activeItemId&&e){var n=e.item,u=e.itemInputValue,a=e.itemUrl,l=e.source;l.onActive(it({event:t,item:n,itemInputValue:u,itemUrl:a,refresh:r,source:l,state:o.getState()},i))}};t.preventDefault(),!1===o.getState().isOpen&&(n.openOnFocus||Boolean(o.getState().query))?tt(it({event:t,props:n,query:o.getState().query,refresh:r,store:o},i)).then((function(){o.dispatch(t.key,{nextActiveItemId:n.defaultActiveItemId}),a(),setTimeout(u,0)})):(o.dispatch(t.key,{}),a(),u())}else if("Escape"===t.key)t.preventDefault(),o.dispatch(t.key,null),o.pendingRequests.cancelAll();else if("Tab"===t.key)o.dispatch("blur",null),o.pendingRequests.cancelAll();else if("Enter"===t.key){if(null===o.getState().activeItemId||o.getState().collections.every((function(e){return 0===e.items.length}))){var l=se(n.plugins,o.pendingRequests);return void(void 0!==l?l.then(o.pendingRequests.cancelAll):n.debug||o.pendingRequests.cancelAll())}t.preventDefault();var c=fe(o.getState()),s=c.item,f=c.itemInputValue,p=c.itemUrl,m=c.source;if(t.metaKey||t.ctrlKey)void 0!==p&&(m.onSelect(it({event:t,item:s,itemInputValue:f,itemUrl:p,refresh:r,source:m,state:o.getState()},i)),n.navigator.navigateNewTab({itemUrl:p,item:s,state:o.getState()}));else if(t.shiftKey)void 0!==p&&(m.onSelect(it({event:t,item:s,itemInputValue:f,itemUrl:p,refresh:r,source:m,state:o.getState()},i)),n.navigator.navigateNewWindow({itemUrl:p,item:s,state:o.getState()}));else if(t.altKey);else{if(void 0!==p)return m.onSelect(it({event:t,item:s,itemInputValue:f,itemUrl:p,refresh:r,source:m,state:o.getState()},i)),void n.navigator.navigate({itemUrl:p,item:s,state:o.getState()});tt(it({event:t,nextState:{isOpen:!1},props:n,query:f,refresh:r,store:o},i)).then((function(){m.onSelect(it({event:t,item:s,itemInputValue:f,itemUrl:p,refresh:r,source:m,state:o.getState()},i))}))}}}(yt({event:e,props:t,refresh:n,store:r},o))},onFocus:u,onBlur:_,onClick:function(n){e.inputElement!==t.environment.document.activeElement||r.getState().isOpen||u(n)}},s)},getPanelProps:function(e){return yt({onMouseDown:function(e){e.preventDefault()},onMouseLeave:function(){r.dispatch("mouseleave",null)}},e)},getListProps:function(e){var n=e||{},r=n.source,o=gt(n,mt);return yt({role:"listbox","aria-labelledby":pe(t.id,"label"),id:pe(t.id,"list",r)},o)},getItemProps:function(e){var i=e.item,u=e.source,a=gt(e,vt);return yt({id:pe(t.id,"item-".concat(i.__autocomplete_id),u),role:"option","aria-selected":r.getState().activeItemId===i.__autocomplete_id,onMouseMove:function(e){if(i.__autocomplete_id!==r.getState().activeItemId){r.dispatch("mousemove",i.__autocomplete_id);var t=fe(r.getState());if(null!==r.getState().activeItemId&&t){var u=t.item,a=t.itemInputValue,l=t.itemUrl,c=t.source;c.onActive(yt({event:e,item:u,itemInputValue:a,itemUrl:l,refresh:n,source:c,state:r.getState()},o))}}},onMouseDown:function(e){e.preventDefault()},onClick:function(e){var a=u.getItemInputValue({item:i,state:r.getState()}),l=u.getItemUrl({item:i,state:r.getState()});(l?Promise.resolve():tt(yt({event:e,nextState:{isOpen:!1},props:t,query:a,refresh:n,store:r},o))).then((function(){u.onSelect(yt({event:e,item:i,itemInputValue:a,itemUrl:l,refresh:n,source:u,state:r.getState()},o))}))}},a)}}}function _t(e){return _t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_t(e)}function Ot(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function St(e){for(var t=1;t=5&&((o||!e&&5===r)&&(u.push(r,0,o,n),r=6),e&&(u.push(r,e,0,n),r=6)),o=""},l=0;l"===t?(r=1,o=""):o=t+o[0]:i?t===i?i="":o+=t:'"'===t||"'"===t?i=t:">"===t?(a(),r=1):r&&("="===t?(r=5,n=o,o=""):"/"===t&&(r<5||">"===e[l][c+1])?(a(),3===r&&(u=u[0]),r=u,(u=u[0]).push(2,0,r),r=0):" "===t||"\t"===t||"\n"===t||"\r"===t?(a(),r=2):o+=t),3===r&&"!--"===o&&(r=4,u=u[0])}return a(),u}(e)),t),arguments,[])).length>1?t:t[0]}var Ft=function(e){var t=e.environment,n=t.document.createElementNS("http://www.w3.org/2000/svg","svg");n.setAttribute("class","aa-ClearIcon"),n.setAttribute("viewBox","0 0 24 24"),n.setAttribute("width","18"),n.setAttribute("height","18"),n.setAttribute("fill","currentColor");var r=t.document.createElementNS("http://www.w3.org/2000/svg","path");return r.setAttribute("d","M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"),n.appendChild(r),n};function Ut(e,t){if("string"==typeof t){var n=e.document.querySelector(t);return"The element ".concat(JSON.stringify(t)," is not in the document."),n}return t}function Mt(){for(var e=arguments.length,t=new Array(e),n=0;n\n \n',t},nn=function(e){var t=e.environment,n=t.document.createElementNS("http://www.w3.org/2000/svg","svg");n.setAttribute("class","aa-SubmitIcon"),n.setAttribute("viewBox","0 0 24 24"),n.setAttribute("width","20"),n.setAttribute("height","20"),n.setAttribute("fill","currentColor");var r=t.document.createElementNS("http://www.w3.org/2000/svg","path");return r.setAttribute("d","M16.041 15.856c-0.034 0.026-0.067 0.055-0.099 0.087s-0.060 0.064-0.087 0.099c-1.258 1.213-2.969 1.958-4.855 1.958-1.933 0-3.682-0.782-4.95-2.050s-2.050-3.017-2.050-4.95 0.782-3.682 2.050-4.95 3.017-2.050 4.95-2.050 3.682 0.782 4.95 2.050 2.050 3.017 2.050 4.95c0 1.886-0.745 3.597-1.959 4.856zM21.707 20.293l-3.675-3.675c1.231-1.54 1.968-3.493 1.968-5.618 0-2.485-1.008-4.736-2.636-6.364s-3.879-2.636-6.364-2.636-4.736 1.008-6.364 2.636-2.636 3.879-2.636 6.364 1.008 4.736 2.636 6.364 3.879 2.636 6.364 2.636c2.125 0 4.078-0.737 5.618-1.968l3.675 3.675c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414z"),n.appendChild(r),n};function rn(e){var t=e.autocomplete,r=e.autocompleteScopeApi,o=e.classNames,i=e.environment,a=e.isDetached,l=e.placeholder,c=void 0===l?"Search":l,s=e.propGetters,f=e.setIsModalOpen,p=e.state,m=e.translations,v=Zt(i),d=s.getRootProps(n({state:p,props:t.getRootProps({})},r)),y=v("div",n({class:o.root,ariaLabel:m.detachedSearchButtonTitle},d)),b=v("div",{class:o.detachedContainer,onMouseDown:function(e){e.stopPropagation()}}),g=v("div",{class:o.detachedOverlay,children:[b],onMouseDown:function(){f(!1),t.setIsOpen(!1)}}),h=s.getLabelProps(n({state:p,props:t.getLabelProps({})},r)),_=v("button",{class:o.submitButton,type:"submit",title:m.submitButtonTitle,children:[nn({environment:i})]}),O=v("label",n({class:o.label,children:[_],ariaLabel:m.submitButtonTitle},h)),S=v("button",{class:o.clearButton,type:"reset",title:m.clearButtonTitle,children:[Ft({environment:i})]}),j=v("div",{class:o.loadingIndicator,children:[tn({environment:i})]}),P=function(e){var t=e.autocompleteScopeApi,r=e.environment;e.classNames;var o=e.getInputProps,i=e.getInputPropsCore,a=e.isDetached,l=e.state,c=u(e,en),s=Zt(r)("input",c),f=o(n({state:l,props:i({inputElement:s}),inputElement:s},t));return Jt(s,n(n({},f),{},{onKeyDown:function(e){a&&"Tab"===e.key||f.onKeyDown(e)}})),s}({class:o.input,environment:i,state:p,getInputProps:s.getInputProps,getInputPropsCore:t.getInputProps,autocompleteScopeApi:r,isDetached:a}),w=v("div",{class:o.inputWrapperPrefix,children:[O,j]}),I=v("div",{class:o.inputWrapperSuffix,children:[S]}),A=v("div",{class:o.inputWrapper,children:[P]}),E=s.getFormProps(n({state:p,props:t.getFormProps({inputElement:P})},r)),D=v("form",n({class:o.form,children:[w,A,I]},E)),C=s.getPanelProps(n({state:p,props:t.getPanelProps({})},r)),k=v("div",n({class:o.panel},C)),x=v("div",{class:o.detachedSearchButtonQuery,textContent:p.query}),N=v("div",{class:o.detachedSearchButtonPlaceholder,hidden:Boolean(p.query),textContent:c});if(a){var T=v("div",{class:o.detachedSearchButtonIcon,children:[nn({environment:i})]}),q=v("button",{type:"button",class:o.detachedSearchButton,title:m.detachedSearchButtonTitle,id:h.id,onClick:function(){f(!0)},children:[T,N,x]}),B=v("button",{type:"button",class:o.detachedCancelButton,textContent:m.detachedCancelButtonText,onTouchStart:function(e){e.stopPropagation()},onClick:function(){t.setIsOpen(!1),f(!1)}}),R=v("div",{class:o.detachedFormContainer,children:[D,B]});b.appendChild(R),y.appendChild(q)}else y.appendChild(D);return{detachedContainer:b,detachedOverlay:g,detachedSearchButtonQuery:x,detachedSearchButtonPlaceholder:N,inputWrapper:A,input:P,root:y,form:D,label:O,submitButton:_,clearButton:S,loadingIndicator:j,panel:k}}var on,un,an,ln,cn,sn,fn,pn={},mn=[],vn=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i;function dn(e,t){for(var n in t)e[n]=t[n];return e}function yn(e){var t=e.parentNode;t&&t.removeChild(e)}function bn(e,t,n){var r,o,i,u={};for(i in t)"key"==i?r=t[i]:"ref"==i?o=t[i]:u[i]=t[i];if(arguments.length>2&&(u.children=arguments.length>3?on.call(arguments,2):n),"function"==typeof e&&null!=e.defaultProps)for(i in e.defaultProps)void 0===u[i]&&(u[i]=e.defaultProps[i]);return gn(e,u,r,o,null)}function gn(e,t,n,r,o){var i={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:null==o?++an:o};return null==o&&null!=un.vnode&&un.vnode(i),i}function hn(e){return e.children}function _n(e,t){this.props=e,this.context=t}function On(e,t){if(null==t)return e.__?On(e.__,e.__.__k.indexOf(e)+1):null;for(var n;tt&&ln.sort(fn));Pn.__r=0}function wn(e,t,n,r,o,i,u,a,l,c){var s,f,p,m,v,d,y,b=r&&r.__k||mn,g=b.length;for(n.__k=[],s=0;s0?gn(m.type,m.props,m.key,m.ref?m.ref:null,m.__v):m)){if(m.__=n,m.__b=n.__b+1,null===(p=b[s])||p&&m.key==p.key&&m.type===p.type)b[s]=void 0;else for(f=0;f=0;t--)if((n=e.__k[t])&&(r=En(n)))return r;return null}function Dn(e,t,n){"-"===t[0]?e.setProperty(t,null==n?"":n):e[t]=null==n?"":"number"!=typeof n||vn.test(t)?n:n+"px"}function Cn(e,t,n,r,o){var i;e:if("style"===t)if("string"==typeof n)e.style.cssText=n;else{if("string"==typeof r&&(e.style.cssText=r=""),r)for(t in r)n&&t in n||Dn(e.style,t,"");if(n)for(t in n)r&&n[t]===r[t]||Dn(e.style,t,n[t])}else if("o"===t[0]&&"n"===t[1])i=t!==(t=t.replace(/Capture$/,"")),t=t.toLowerCase()in e?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+i]=n,n?r||e.addEventListener(t,i?xn:kn,i):e.removeEventListener(t,i?xn:kn,i);else if("dangerouslySetInnerHTML"!==t){if(o)t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!==t&&"height"!==t&&"href"!==t&&"list"!==t&&"form"!==t&&"tabIndex"!==t&&"download"!==t&&t in e)try{e[t]=null==n?"":n;break e}catch(e){}"function"==typeof n||(null==n||!1===n&&"-"!==t[4]?e.removeAttribute(t):e.setAttribute(t,n))}}function kn(e){return this.l[e.type+!1](un.event?un.event(e):e)}function xn(e){return this.l[e.type+!0](un.event?un.event(e):e)}function Nn(e,t,n,r,o,i,u,a,l){var c,s,f,p,m,v,d,y,b,g,h,_,O,S,j,P=t.type;if(void 0!==t.constructor)return null;null!=n.__h&&(l=n.__h,a=t.__e=n.__e,t.__h=null,i=[a]),(c=un.__b)&&c(t);try{e:if("function"==typeof P){if(y=t.props,b=(c=P.contextType)&&r[c.__c],g=c?b?b.props.value:c.__:r,n.__c?d=(s=t.__c=n.__c).__=s.__E:("prototype"in P&&P.prototype.render?t.__c=s=new P(y,g):(t.__c=s=new _n(y,g),s.constructor=P,s.render=Ln),b&&b.sub(s),s.props=y,s.state||(s.state={}),s.context=g,s.__n=r,f=s.__d=!0,s.__h=[],s._sb=[]),null==s.__s&&(s.__s=s.state),null!=P.getDerivedStateFromProps&&(s.__s==s.state&&(s.__s=dn({},s.__s)),dn(s.__s,P.getDerivedStateFromProps(y,s.__s))),p=s.props,m=s.state,s.__v=t,f)null==P.getDerivedStateFromProps&&null!=s.componentWillMount&&s.componentWillMount(),null!=s.componentDidMount&&s.__h.push(s.componentDidMount);else{if(null==P.getDerivedStateFromProps&&y!==p&&null!=s.componentWillReceiveProps&&s.componentWillReceiveProps(y,g),!s.__e&&null!=s.shouldComponentUpdate&&!1===s.shouldComponentUpdate(y,s.__s,g)||t.__v===n.__v){for(t.__v!==n.__v&&(s.props=y,s.state=s.__s,s.__d=!1),s.__e=!1,t.__e=n.__e,t.__k=n.__k,t.__k.forEach((function(e){e&&(e.__=t)})),h=0;h0&&void 0!==arguments[0]?arguments[0]:[];return{get:function(){return e},add:function(t){var n=e[e.length-1];(null==n?void 0:n.isHighlighted)===t.isHighlighted?e[e.length-1]={value:n.value+t.value,isHighlighted:n.isHighlighted}:e.push(t)}}}(n?[{value:n,isHighlighted:!1}]:[]);return t.forEach((function(e){var t=e.split(Un);r.add({value:t[0],isHighlighted:!0}),""!==t[1]&&r.add({value:t[1],isHighlighted:!1})})),r.get()}function Hn(e){return function(e){if(Array.isArray(e))return Vn(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Vn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Vn(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Vn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n",""":'"',"'":"'"},Kn=new RegExp(/\w/i),$n=/&(amp|quot|lt|gt|#39);/g,zn=RegExp($n.source);function Gn(e,t){var n,r,o,i=e[t],u=(null===(n=e[t+1])||void 0===n?void 0:n.isHighlighted)||!0,a=(null===(r=e[t-1])||void 0===r?void 0:r.isHighlighted)||!0;return Kn.test((o=i.value)&&zn.test(o)?o.replace($n,(function(e){return Qn[e]})):o)||a!==u?i.isHighlighted:a}function Jn(e){return Jn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Jn(e)}function Xn(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Yn(e){for(var t=1;te.length)&&(t=e.length);for(var n=0,r=new Array(t);n=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function vr(e){return function(e){if(Array.isArray(e))return dr(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return dr(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return dr(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function dr(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n0;if(!_.value.core.openOnFocus&&!t.query)return n;var r=Boolean(y.current||_.value.renderer.renderNoResults);return!n&&r||n},__autocomplete_metadata:{userAgents:wr,options:e}}))})),j=f(n({collections:[],completion:null,context:{},isOpen:!1,query:"",activeItemId:null,status:"idle"},_.value.core.initialState)),P={getEnvironmentProps:_.value.renderer.getEnvironmentProps,getFormProps:_.value.renderer.getFormProps,getInputProps:_.value.renderer.getInputProps,getItemProps:_.value.renderer.getItemProps,getLabelProps:_.value.renderer.getLabelProps,getListProps:_.value.renderer.getListProps,getPanelProps:_.value.renderer.getPanelProps,getRootProps:_.value.renderer.getRootProps},w={setActiveItemId:S.value.setActiveItemId,setQuery:S.value.setQuery,setCollections:S.value.setCollections,setIsOpen:S.value.setIsOpen,setStatus:S.value.setStatus,setContext:S.value.setContext,refresh:S.value.refresh,navigator:S.value.navigator},I=m((function(){return Lt.bind(_.value.renderer.renderer.createElement)})),A=m((function(){return rn({autocomplete:S.value,autocompleteScopeApi:w,classNames:_.value.renderer.classNames,environment:_.value.core.environment,isDetached:O.value,placeholder:_.value.core.placeholder,propGetters:P,setIsModalOpen:k,state:j.current,translations:_.value.renderer.translations})}));function E(){Jt(A.value.panel,{style:O.value?{}:Pr({panelPlacement:_.value.renderer.panelPlacement,container:A.value.root,form:A.value.form,environment:_.value.core.environment})})}function D(e){j.current=e;var t={autocomplete:S.value,autocompleteScopeApi:w,classNames:_.value.renderer.classNames,components:_.value.renderer.components,container:_.value.renderer.container,html:I.value,dom:A.value,panelContainer:O.value?A.value.detachedContainer:_.value.renderer.panelContainer,propGetters:P,state:j.current,renderer:_.value.renderer.renderer},r=!b(e)&&!y.current&&_.value.renderer.renderNoResults||_.value.renderer.render;!function(e){var t=e.autocomplete,r=e.autocompleteScopeApi,o=e.dom,i=e.propGetters,u=e.state;Xt(o.root,i.getRootProps(n({state:u,props:t.getRootProps({})},r))),Xt(o.input,i.getInputProps(n({state:u,props:t.getInputProps({inputElement:o.input}),inputElement:o.input},r))),Jt(o.label,{hidden:"stalled"===u.status}),Jt(o.loadingIndicator,{hidden:"stalled"!==u.status}),Jt(o.clearButton,{hidden:!u.query}),Jt(o.detachedSearchButtonQuery,{textContent:u.query}),Jt(o.detachedSearchButtonPlaceholder,{hidden:Boolean(u.query)})}(t),function(e,t){var r=t.autocomplete,o=t.autocompleteScopeApi,u=t.classNames,a=t.html,l=t.dom,c=t.panelContainer,s=t.propGetters,f=t.state,p=t.components,m=t.renderer;if(f.isOpen){c.contains(l.panel)||"loading"===f.status||c.appendChild(l.panel),l.panel.classList.toggle("aa-Panel--stalled","stalled"===f.status);var v=f.collections.filter((function(e){var t=e.source,n=e.items;return t.templates.noResults||n.length>0})).map((function(e,t){var l=e.source,c=e.items;return m.createElement("section",{key:t,className:u.source,"data-autocomplete-source-id":l.sourceId},l.templates.header&&m.createElement("div",{className:u.sourceHeader},l.templates.header({components:p,createElement:m.createElement,Fragment:m.Fragment,items:c,source:l,state:f,html:a})),l.templates.noResults&&0===c.length?m.createElement("div",{className:u.sourceNoResults},l.templates.noResults({components:p,createElement:m.createElement,Fragment:m.Fragment,source:l,state:f,html:a})):m.createElement("ul",i({className:u.list},s.getListProps(n({state:f,props:r.getListProps({source:l})},o))),c.map((function(e){var t=r.getItemProps({item:e,source:l});return m.createElement("li",i({key:t.id,className:u.item},s.getItemProps(n({state:f,props:t},o))),l.templates.item({components:p,createElement:m.createElement,Fragment:m.Fragment,item:e,state:f,html:a}))}))),l.templates.footer&&m.createElement("div",{className:u.sourceFooter},l.templates.footer({components:p,createElement:m.createElement,Fragment:m.Fragment,items:c,source:l,state:f,html:a})))})),d=m.createElement(m.Fragment,null,m.createElement("div",{className:u.panelLayout},v),m.createElement("div",{className:"aa-GradientBottom"})),y=v.reduce((function(e,t){return e[t.props["data-autocomplete-source-id"]]=t,e}),{});e(n(n({children:d,state:f,sections:v,elements:y},m),{},{components:p,html:a},o),l.panel)}else c.contains(l.panel)&&c.removeChild(l.panel)}(r,t)}function C(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};l();var t=_.value.renderer,n=t.components,r=u(t,Ir);g.current=Vt(r,_.value.core,{components:Wt(n,(function(e){return!e.value.hasOwnProperty("__autocomplete_componentName")})),initialState:j.current},e),v(),c(),S.value.refresh().then((function(){D(j.current)}))}function k(e){e!==_.value.core.environment.document.body.contains(A.value.detachedOverlay)&&(e?(_.value.core.environment.document.body.appendChild(A.value.detachedOverlay),_.value.core.environment.document.body.classList.add("aa-Detached"),A.value.input.focus()):(_.value.core.environment.document.body.removeChild(A.value.detachedOverlay),_.value.core.environment.document.body.classList.remove("aa-Detached")))}return a((function(){var e=S.value.getEnvironmentProps({formElement:A.value.form,panelElement:A.value.panel,inputElement:A.value.input});return Jt(_.value.core.environment,e),function(){Jt(_.value.core.environment,Object.keys(e).reduce((function(e,t){return n(n({},e),{},o({},t,void 0))}),{}))}})),a((function(){var e=O.value?_.value.core.environment.document.body:_.value.renderer.panelContainer,t=O.value?A.value.detachedOverlay:A.value.panel;return O.value&&j.current.isOpen&&k(!0),D(j.current),function(){e.contains(t)&&(e.removeChild(t),e.classList.remove("aa-Detached"))}})),a((function(){var e=_.value.renderer.container;return e.appendChild(A.value.root),function(){e.removeChild(A.value.root)}})),a((function(){var e=p((function(e){D(e.state)}),0);return h.current=function(t){var n=t.state,r=t.prevState;(O.value&&r.isOpen!==n.isOpen&&k(n.isOpen),O.value||!n.isOpen||r.isOpen||E(),n.query!==r.query)&&_.value.core.environment.document.querySelectorAll(".aa-Panel--scrollable").forEach((function(e){0!==e.scrollTop&&(e.scrollTop=0)}));e({state:n})},function(){h.current=void 0}})),a((function(){var e=p((function(){var e=O.value;O.value=_.value.core.environment.matchMedia(_.value.renderer.detachedMediaQuery).matches,e!==O.value?C({}):requestAnimationFrame(E)}),20);return _.value.core.environment.addEventListener("resize",e),function(){_.value.core.environment.removeEventListener("resize",e)}})),a((function(){if(!O.value)return function(){};function e(e){A.value.detachedContainer.classList.toggle("aa-DetachedContainer--modal",e)}function t(t){e(t.matches)}var n=_.value.core.environment.matchMedia(getComputedStyle(_.value.core.environment.document.documentElement).getPropertyValue("--aa-detached-modal-media-query"));e(n.matches);var r=Boolean(n.addEventListener);return r?n.addEventListener("change",t):n.addListener(t),function(){r?n.removeEventListener("change",t):n.removeListener(t)}})),a((function(){return requestAnimationFrame(E),function(){}})),n(n({},w),{},{update:C,destroy:function(){l()}})},e.getAlgoliaFacets=function(e){var t=Ar({transformResponse:function(e){return e.facetHits}}),r=e.queries.map((function(e){return n(n({},e),{},{type:"facet"})}));return t(n(n({},e),{},{queries:r}))},e.getAlgoliaResults=Er,Object.defineProperty(e,"__esModule",{value:!0})}));
+
diff --git a/docs/site_libs/quarto-search/fuse.min.js b/docs/site_libs/quarto-search/fuse.min.js
new file mode 100644
index 00000000..adc28356
--- /dev/null
+++ b/docs/site_libs/quarto-search/fuse.min.js
@@ -0,0 +1,9 @@
+/**
+ * Fuse.js v6.6.2 - Lightweight fuzzy-search (http://fusejs.io)
+ *
+ * Copyright (c) 2022 Kiro Risk (http://kiro.me)
+ * All Rights Reserved. Apache Software License 2.0
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ */
+var e,t;e=this,t=function(){"use strict";function e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function t(t){for(var n=1;ne.length)&&(t=e.length);for(var n=0,r=new Array(t);n0&&void 0!==arguments[0]?arguments[0]:1,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=new Map,r=Math.pow(10,t);return{get:function(t){var i=t.match(C).length;if(n.has(i))return n.get(i);var o=1/Math.pow(i,.5*e),c=parseFloat(Math.round(o*r)/r);return n.set(i,c),c},clear:function(){n.clear()}}}var $=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.getFn,i=void 0===n?I.getFn:n,o=t.fieldNormWeight,c=void 0===o?I.fieldNormWeight:o;r(this,e),this.norm=E(c,3),this.getFn=i,this.isCreated=!1,this.setIndexRecords()}return o(e,[{key:"setSources",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.docs=e}},{key:"setIndexRecords",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.records=e}},{key:"setKeys",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.keys=t,this._keysMap={},t.forEach((function(t,n){e._keysMap[t.id]=n}))}},{key:"create",value:function(){var e=this;!this.isCreated&&this.docs.length&&(this.isCreated=!0,g(this.docs[0])?this.docs.forEach((function(t,n){e._addString(t,n)})):this.docs.forEach((function(t,n){e._addObject(t,n)})),this.norm.clear())}},{key:"add",value:function(e){var t=this.size();g(e)?this._addString(e,t):this._addObject(e,t)}},{key:"removeAt",value:function(e){this.records.splice(e,1);for(var t=e,n=this.size();t2&&void 0!==arguments[2]?arguments[2]:{},r=n.getFn,i=void 0===r?I.getFn:r,o=n.fieldNormWeight,c=void 0===o?I.fieldNormWeight:o,a=new $({getFn:i,fieldNormWeight:c});return a.setKeys(e.map(_)),a.setSources(t),a.create(),a}function R(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.errors,r=void 0===n?0:n,i=t.currentLocation,o=void 0===i?0:i,c=t.expectedLocation,a=void 0===c?0:c,s=t.distance,u=void 0===s?I.distance:s,h=t.ignoreLocation,l=void 0===h?I.ignoreLocation:h,f=r/e.length;if(l)return f;var d=Math.abs(a-o);return u?f+d/u:d?1:f}function N(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:I.minMatchCharLength,n=[],r=-1,i=-1,o=0,c=e.length;o=t&&n.push([r,i]),r=-1)}return e[o-1]&&o-r>=t&&n.push([r,o-1]),n}var P=32;function W(e){for(var t={},n=0,r=e.length;n1&&void 0!==arguments[1]?arguments[1]:{},o=i.location,c=void 0===o?I.location:o,a=i.threshold,s=void 0===a?I.threshold:a,u=i.distance,h=void 0===u?I.distance:u,l=i.includeMatches,f=void 0===l?I.includeMatches:l,d=i.findAllMatches,v=void 0===d?I.findAllMatches:d,g=i.minMatchCharLength,y=void 0===g?I.minMatchCharLength:g,p=i.isCaseSensitive,m=void 0===p?I.isCaseSensitive:p,k=i.ignoreLocation,M=void 0===k?I.ignoreLocation:k;if(r(this,e),this.options={location:c,threshold:s,distance:h,includeMatches:f,findAllMatches:v,minMatchCharLength:y,isCaseSensitive:m,ignoreLocation:M},this.pattern=m?t:t.toLowerCase(),this.chunks=[],this.pattern.length){var b=function(e,t){n.chunks.push({pattern:e,alphabet:W(e),startIndex:t})},x=this.pattern.length;if(x>P){for(var w=0,L=x%P,S=x-L;w3&&void 0!==arguments[3]?arguments[3]:{},i=r.location,o=void 0===i?I.location:i,c=r.distance,a=void 0===c?I.distance:c,s=r.threshold,u=void 0===s?I.threshold:s,h=r.findAllMatches,l=void 0===h?I.findAllMatches:h,f=r.minMatchCharLength,d=void 0===f?I.minMatchCharLength:f,v=r.includeMatches,g=void 0===v?I.includeMatches:v,y=r.ignoreLocation,p=void 0===y?I.ignoreLocation:y;if(t.length>P)throw new Error(w(P));for(var m,k=t.length,M=e.length,b=Math.max(0,Math.min(o,M)),x=u,L=b,S=d>1||g,_=S?Array(M):[];(m=e.indexOf(t,L))>-1;){var O=R(t,{currentLocation:m,expectedLocation:b,distance:a,ignoreLocation:p});if(x=Math.min(O,x),L=m+k,S)for(var j=0;j=z;q-=1){var B=q-1,J=n[e.charAt(B)];if(S&&(_[B]=+!!J),K[q]=(K[q+1]<<1|1)&J,F&&(K[q]|=(A[q+1]|A[q])<<1|1|A[q+1]),K[q]&$&&(C=R(t,{errors:F,currentLocation:B,expectedLocation:b,distance:a,ignoreLocation:p}))<=x){if(x=C,(L=B)<=b)break;z=Math.max(1,2*b-L)}}if(R(t,{errors:F+1,currentLocation:b,expectedLocation:b,distance:a,ignoreLocation:p})>x)break;A=K}var U={isMatch:L>=0,score:Math.max(.001,C)};if(S){var V=N(_,d);V.length?g&&(U.indices=V):U.isMatch=!1}return U}(e,n,i,{location:c+o,distance:a,threshold:s,findAllMatches:u,minMatchCharLength:h,includeMatches:r,ignoreLocation:l}),p=y.isMatch,m=y.score,k=y.indices;p&&(g=!0),v+=m,p&&k&&(d=[].concat(f(d),f(k)))}));var y={isMatch:g,score:g?v/this.chunks.length:1};return g&&r&&(y.indices=d),y}}]),e}(),z=function(){function e(t){r(this,e),this.pattern=t}return o(e,[{key:"search",value:function(){}}],[{key:"isMultiMatch",value:function(e){return D(e,this.multiRegex)}},{key:"isSingleMatch",value:function(e){return D(e,this.singleRegex)}}]),e}();function D(e,t){var n=e.match(t);return n?n[1]:null}var K=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"exact"}},{key:"multiRegex",get:function(){return/^="(.*)"$/}},{key:"singleRegex",get:function(){return/^=(.*)$/}}]),n}(z),q=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"$/}},{key:"singleRegex",get:function(){return/^!(.*)$/}}]),n}(z),B=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"prefix-exact"}},{key:"multiRegex",get:function(){return/^\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^\^(.*)$/}}]),n}(z),J=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-prefix-exact"}},{key:"multiRegex",get:function(){return/^!\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^!\^(.*)$/}}]),n}(z),U=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}}],[{key:"type",get:function(){return"suffix-exact"}},{key:"multiRegex",get:function(){return/^"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^(.*)\$$/}}]),n}(z),V=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){var t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-suffix-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^!(.*)\$$/}}]),n}(z),G=function(e){a(n,e);var t=l(n);function n(e){var i,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},c=o.location,a=void 0===c?I.location:c,s=o.threshold,u=void 0===s?I.threshold:s,h=o.distance,l=void 0===h?I.distance:h,f=o.includeMatches,d=void 0===f?I.includeMatches:f,v=o.findAllMatches,g=void 0===v?I.findAllMatches:v,y=o.minMatchCharLength,p=void 0===y?I.minMatchCharLength:y,m=o.isCaseSensitive,k=void 0===m?I.isCaseSensitive:m,M=o.ignoreLocation,b=void 0===M?I.ignoreLocation:M;return r(this,n),(i=t.call(this,e))._bitapSearch=new T(e,{location:a,threshold:u,distance:l,includeMatches:d,findAllMatches:g,minMatchCharLength:p,isCaseSensitive:k,ignoreLocation:b}),i}return o(n,[{key:"search",value:function(e){return this._bitapSearch.searchIn(e)}}],[{key:"type",get:function(){return"fuzzy"}},{key:"multiRegex",get:function(){return/^"(.*)"$/}},{key:"singleRegex",get:function(){return/^(.*)$/}}]),n}(z),H=function(e){a(n,e);var t=l(n);function n(e){return r(this,n),t.call(this,e)}return o(n,[{key:"search",value:function(e){for(var t,n=0,r=[],i=this.pattern.length;(t=e.indexOf(this.pattern,n))>-1;)n=t+i,r.push([t,n-1]);var o=!!r.length;return{isMatch:o,score:o?0:1,indices:r}}}],[{key:"type",get:function(){return"include"}},{key:"multiRegex",get:function(){return/^'"(.*)"$/}},{key:"singleRegex",get:function(){return/^'(.*)$/}}]),n}(z),Q=[K,H,B,J,V,U,q,G],X=Q.length,Y=/ +(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)/;function Z(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.split("|").map((function(e){for(var n=e.trim().split(Y).filter((function(e){return e&&!!e.trim()})),r=[],i=0,o=n.length;i1&&void 0!==arguments[1]?arguments[1]:{},i=n.isCaseSensitive,o=void 0===i?I.isCaseSensitive:i,c=n.includeMatches,a=void 0===c?I.includeMatches:c,s=n.minMatchCharLength,u=void 0===s?I.minMatchCharLength:s,h=n.ignoreLocation,l=void 0===h?I.ignoreLocation:h,f=n.findAllMatches,d=void 0===f?I.findAllMatches:f,v=n.location,g=void 0===v?I.location:v,y=n.threshold,p=void 0===y?I.threshold:y,m=n.distance,k=void 0===m?I.distance:m;r(this,e),this.query=null,this.options={isCaseSensitive:o,includeMatches:a,minMatchCharLength:u,findAllMatches:d,ignoreLocation:l,location:g,threshold:p,distance:k},this.pattern=o?t:t.toLowerCase(),this.query=Z(this.pattern,this.options)}return o(e,[{key:"searchIn",value:function(e){var t=this.query;if(!t)return{isMatch:!1,score:1};var n=this.options,r=n.includeMatches;e=n.isCaseSensitive?e:e.toLowerCase();for(var i=0,o=[],c=0,a=0,s=t.length;a-1&&(n.refIndex=e.idx),t.matches.push(n)}}))}function ve(e,t){t.score=e.score}function ge(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.includeMatches,i=void 0===r?I.includeMatches:r,o=n.includeScore,c=void 0===o?I.includeScore:o,a=[];return i&&a.push(de),c&&a.push(ve),e.map((function(e){var n=e.idx,r={item:t[n],refIndex:n};return a.length&&a.forEach((function(t){t(e,r)})),r}))}var ye=function(){function e(n){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=arguments.length>2?arguments[2]:void 0;r(this,e),this.options=t(t({},I),i),this.options.useExtendedSearch,this._keyStore=new S(this.options.keys),this.setCollection(n,o)}return o(e,[{key:"setCollection",value:function(e,t){if(this._docs=e,t&&!(t instanceof $))throw new Error("Incorrect 'index' type");this._myIndex=t||F(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}},{key:"add",value:function(e){k(e)&&(this._docs.push(e),this._myIndex.add(e))}},{key:"remove",value:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return!1},t=[],n=0,r=this._docs.length;n1&&void 0!==arguments[1]?arguments[1]:{},n=t.limit,r=void 0===n?-1:n,i=this.options,o=i.includeMatches,c=i.includeScore,a=i.shouldSort,s=i.sortFn,u=i.ignoreFieldNorm,h=g(e)?g(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return fe(h,{ignoreFieldNorm:u}),a&&h.sort(s),y(r)&&r>-1&&(h=h.slice(0,r)),ge(h,this._docs,{includeMatches:o,includeScore:c})}},{key:"_searchStringList",value:function(e){var t=re(e,this.options),n=this._myIndex.records,r=[];return n.forEach((function(e){var n=e.v,i=e.i,o=e.n;if(k(n)){var c=t.searchIn(n),a=c.isMatch,s=c.score,u=c.indices;a&&r.push({item:n,idx:i,matches:[{score:s,value:n,norm:o,indices:u}]})}})),r}},{key:"_searchLogical",value:function(e){var t=this,n=function(e,t){var n=(arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}).auto,r=void 0===n||n,i=function e(n){var i=Object.keys(n),o=ue(n);if(!o&&i.length>1&&!se(n))return e(le(n));if(he(n)){var c=o?n[ce]:i[0],a=o?n[ae]:n[c];if(!g(a))throw new Error(x(c));var s={keyId:j(c),pattern:a};return r&&(s.searcher=re(a,t)),s}var u={children:[],operator:i[0]};return i.forEach((function(t){var r=n[t];v(r)&&r.forEach((function(t){u.children.push(e(t))}))})),u};return se(e)||(e=le(e)),i(e)}(e,this.options),r=function e(n,r,i){if(!n.children){var o=n.keyId,c=n.searcher,a=t._findMatches({key:t._keyStore.get(o),value:t._myIndex.getValueForItemAtKeyId(r,o),searcher:c});return a&&a.length?[{idx:i,item:r,matches:a}]:[]}for(var s=[],u=0,h=n.children.length;u1&&void 0!==arguments[1]?arguments[1]:{},n=t.getFn,r=void 0===n?I.getFn:n,i=t.fieldNormWeight,o=void 0===i?I.fieldNormWeight:i,c=e.keys,a=e.records,s=new $({getFn:r,fieldNormWeight:o});return s.setKeys(c),s.setIndexRecords(a),s},ye.config=I,function(){ne.push.apply(ne,arguments)}(te),ye},"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).Fuse=t();
\ No newline at end of file
diff --git a/docs/site_libs/quarto-search/quarto-search.js b/docs/site_libs/quarto-search/quarto-search.js
new file mode 100644
index 00000000..437e38f1
--- /dev/null
+++ b/docs/site_libs/quarto-search/quarto-search.js
@@ -0,0 +1,1457 @@
+const kQueryArg = "q";
+const kResultsArg = "show-results";
+
+// If items don't provide a URL, then both the navigator and the onSelect
+// function aren't called (and therefore, the default implementation is used)
+//
+// We're using this sentinel URL to signal to those handlers that this
+// item is a more item (along with the type) and can be handled appropriately
+const kItemTypeMoreHref = "0767FDFD-0422-4E5A-BC8A-3BE11E5BBA05";
+
+// Capture search params and clean ?q= from URL at module load time, before
+// any DOMContentLoaded handlers run. quarto-nav.js resolves all hrefs
+// against window.location during DOMContentLoaded — if ?q= is still present,
+// every link on the page gets the query param baked into its href.
+const currentUrl = new URL(window.location);
+const kQuery = currentUrl.searchParams.get(kQueryArg);
+if (kQuery) {
+ const replacementUrl = new URL(window.location);
+ replacementUrl.searchParams.delete(kQueryArg);
+ window.history.replaceState({}, "", replacementUrl);
+}
+
+window.document.addEventListener("DOMContentLoaded", function (_event) {
+ // Ensure that search is available on this page. If it isn't,
+ // should return early and not do anything
+ var searchEl = window.document.getElementById("quarto-search");
+ if (!searchEl) return;
+
+ const { autocomplete } = window["@algolia/autocomplete-js"];
+
+ let quartoSearchOptions = {};
+ let language = {};
+ const searchOptionEl = window.document.getElementById(
+ "quarto-search-options"
+ );
+ if (searchOptionEl) {
+ const jsonStr = searchOptionEl.textContent;
+ quartoSearchOptions = JSON.parse(jsonStr);
+ language = quartoSearchOptions.language;
+ }
+
+ // note the search mode
+ if (quartoSearchOptions.type === "overlay") {
+ searchEl.classList.add("type-overlay");
+ } else {
+ searchEl.classList.add("type-textbox");
+ }
+
+ // Used to determine highlighting behavior for this page
+ // A `q` query param is expected when the user follows a search
+ // to this page
+ const query = kQuery;
+ const showSearchResults = currentUrl.searchParams.get(kResultsArg);
+ const mainEl = window.document.querySelector("main");
+
+ // highlight matches on the page
+ if (query && mainEl) {
+ highlight(query, mainEl);
+
+ // Activate tabs on pageshow — after tabsets.js restores localStorage state.
+ // tabsets.js registers its pageshow handler during module execution (before
+ // DOMContentLoaded). By registering ours during DOMContentLoaded, listener
+ // ordering guarantees we run after tabsets.js — so search activation wins.
+ window.addEventListener("pageshow", function (event) {
+ if (!event.persisted) {
+ for (const mark of mainEl.querySelectorAll("mark")) {
+ openAllTabsetsContainingEl(mark);
+ }
+ // Only scroll to first match when there's no hash fragment.
+ // With a hash, the browser already scrolled to the target section.
+ if (!currentUrl.hash) {
+ requestAnimationFrame(() => scrollToFirstVisibleMatch(mainEl));
+ }
+ }
+ }, { once: true });
+ }
+
+ // function to clear highlighting on the page when the search query changes
+ // (e.g. if the user edits the query or clears it)
+ let highlighting = true;
+ const resetHighlighting = (searchTerm) => {
+ if (mainEl && highlighting && query && searchTerm !== query) {
+ clearHighlight(query, mainEl);
+ highlighting = false;
+ }
+ };
+
+ // Responsively switch to overlay mode if the search is present on the navbar
+ // Note that switching the sidebar to overlay mode requires more coordinate (not just
+ // the media query since we generate different HTML for sidebar overlays than we do
+ // for sidebar input UI)
+ const detachedMediaQuery =
+ quartoSearchOptions.type === "overlay" ? "all" : "(max-width: 991px)";
+
+ // If configured, include the analytics client to send insights
+ const plugins = configurePlugins(quartoSearchOptions);
+
+ let lastState = null;
+ const { setIsOpen, setQuery, setCollections } = autocomplete({
+ container: searchEl,
+ detachedMediaQuery: detachedMediaQuery,
+ defaultActiveItemId: 0,
+ panelContainer: "#quarto-search-results",
+ panelPlacement: quartoSearchOptions["panel-placement"],
+ debug: false,
+ openOnFocus: true,
+ plugins,
+ classNames: {
+ form: "d-flex",
+ },
+ placeholder: language["search-text-placeholder"],
+ translations: {
+ clearButtonTitle: language["search-clear-button-title"],
+ detachedCancelButtonText: language["search-detached-cancel-button-title"],
+ submitButtonTitle: language["search-submit-button-title"],
+ },
+ initialState: {
+ query,
+ },
+ getItemUrl({ item }) {
+ return item.href;
+ },
+ onStateChange({ state }) {
+ // If this is a file URL, note that
+
+ // Perhaps reset highlighting
+ resetHighlighting(state.query);
+
+ // If the panel just opened, ensure the panel is positioned properly
+ if (state.isOpen) {
+ if (lastState && !lastState.isOpen) {
+ setTimeout(() => {
+ positionPanel(quartoSearchOptions["panel-placement"]);
+ }, 150);
+ }
+ }
+
+ // Perhaps show the copy link
+ showCopyLink(state.query, quartoSearchOptions);
+
+ lastState = state;
+ },
+ reshape({ sources, state }) {
+ return sources.map((source) => {
+ try {
+ const items = source.getItems();
+
+ // Validate the items
+ validateItems(items);
+
+ // group the items by document
+ const groupedItems = new Map();
+ items.forEach((item) => {
+ const hrefParts = item.href.split("#");
+ const baseHref = hrefParts[0];
+ const isDocumentItem = hrefParts.length === 1;
+
+ const items = groupedItems.get(baseHref);
+ if (!items) {
+ groupedItems.set(baseHref, [item]);
+ } else {
+ // If the href for this item matches the document
+ // exactly, place this item first as it is the item that represents
+ // the document itself
+ if (isDocumentItem) {
+ items.unshift(item);
+ } else {
+ items.push(item);
+ }
+ groupedItems.set(baseHref, items);
+ }
+ });
+
+ const reshapedItems = [];
+ let count = 1;
+ for (const [_key, value] of groupedItems) {
+ const firstItem = value[0];
+ reshapedItems.push({
+ ...firstItem,
+ type: kItemTypeDoc,
+ });
+
+ const collapseMatches = quartoSearchOptions["collapse-after"];
+ const collapseCount =
+ typeof collapseMatches === "number" ? collapseMatches : 1;
+
+ if (value.length > 1) {
+ const target = `search-more-${count}`;
+ const isExpanded =
+ state.context.expanded &&
+ state.context.expanded.includes(target);
+
+ const remainingCount = value.length - collapseCount;
+
+ for (let i = 1; i < value.length; i++) {
+ if (collapseMatches && i === collapseCount) {
+ reshapedItems.push({
+ target,
+ title: isExpanded
+ ? language["search-hide-matches-text"]
+ : remainingCount === 1
+ ? `${remainingCount} ${language["search-more-match-text"]}`
+ : `${remainingCount} ${language["search-more-matches-text"]}`,
+ type: kItemTypeMore,
+ href: kItemTypeMoreHref,
+ });
+ }
+
+ if (isExpanded || !collapseMatches || i < collapseCount) {
+ reshapedItems.push({
+ ...value[i],
+ type: kItemTypeItem,
+ target,
+ });
+ }
+ }
+ }
+ count += 1;
+ }
+
+ return {
+ ...source,
+ getItems() {
+ return reshapedItems;
+ },
+ };
+ } catch (error) {
+ // Some form of error occurred
+ return {
+ ...source,
+ getItems() {
+ return [
+ {
+ title: error.name || "An Error Occurred While Searching",
+ text:
+ error.message ||
+ "An unknown error occurred while attempting to perform the requested search.",
+ type: kItemTypeError,
+ },
+ ];
+ },
+ };
+ }
+ });
+ },
+ navigator: {
+ navigate({ itemUrl }) {
+ if (itemUrl !== offsetURL(kItemTypeMoreHref)) {
+ window.location.assign(itemUrl);
+ }
+ },
+ navigateNewTab({ itemUrl }) {
+ if (itemUrl !== offsetURL(kItemTypeMoreHref)) {
+ const windowReference = window.open(itemUrl, "_blank", "noopener");
+ if (windowReference) {
+ windowReference.focus();
+ }
+ }
+ },
+ navigateNewWindow({ itemUrl }) {
+ if (itemUrl !== offsetURL(kItemTypeMoreHref)) {
+ window.open(itemUrl, "_blank", "noopener");
+ }
+ },
+ },
+ getSources({ state, setContext, setActiveItemId, refresh }) {
+ return [
+ {
+ sourceId: "documents",
+ getItemUrl({ item }) {
+ if (item.href) {
+ return offsetURL(item.href);
+ } else {
+ return undefined;
+ }
+ },
+ onSelect({
+ item,
+ state,
+ setContext,
+ setIsOpen,
+ setActiveItemId,
+ refresh,
+ }) {
+ if (item.type === kItemTypeMore) {
+ toggleExpanded(item, state, setContext, setActiveItemId, refresh);
+
+ // Toggle more
+ setIsOpen(true);
+ }
+ },
+ getItems({ query }) {
+ if (query === null || query === "") {
+ return [];
+ }
+
+ const limit = quartoSearchOptions.limit;
+ if (quartoSearchOptions.algolia) {
+ return algoliaSearch(query, limit, quartoSearchOptions.algolia);
+ } else {
+ // Fuse search options
+ const fuseSearchOptions = {
+ isCaseSensitive: false,
+ shouldSort: true,
+ minMatchCharLength: 2,
+ limit: limit,
+ };
+
+ return readSearchData().then(function (fuse) {
+ return fuseSearch(query, fuse, fuseSearchOptions);
+ });
+ }
+ },
+ templates: {
+ noResults({ createElement }) {
+ const hasQuery = lastState.query;
+
+ return createElement(
+ "div",
+ {
+ class: `quarto-search-no-results${hasQuery ? "" : " no-query"
+ }`,
+ },
+ language["search-no-results-text"]
+ );
+ },
+ header({ items, createElement }) {
+ // count the documents
+ const count = items.filter((item) => {
+ return item.type === kItemTypeDoc;
+ }).length;
+
+ if (count > 0) {
+ return createElement(
+ "div",
+ { class: "search-result-header" },
+ `${count} ${language["search-matching-documents-text"]}`
+ );
+ } else {
+ return createElement(
+ "div",
+ { class: "search-result-header-no-results" },
+ ``
+ );
+ }
+ },
+ footer({ _items, createElement }) {
+ if (
+ quartoSearchOptions.algolia &&
+ quartoSearchOptions.algolia["show-logo"]
+ ) {
+ const libDir = quartoSearchOptions.algolia["libDir"];
+ const logo = createElement("img", {
+ src: offsetURL(
+ `${libDir}/quarto-search/search-by-algolia.svg`
+ ),
+ class: "algolia-search-logo",
+ });
+ return createElement(
+ "a",
+ { href: "http://www.algolia.com/" },
+ logo
+ );
+ }
+ },
+
+ item({ item, createElement }) {
+ if (item.text && item.href && !item.href.includes('?q=')) {
+ const [main, hash] = item.href.split('#')
+ const hashAppend = hash ? '#' + hash : ''
+ item.href = main + '?q=' + encodeURIComponent(state.query) + hashAppend
+ }
+
+ return renderItem(
+ item,
+ createElement,
+ state,
+ setActiveItemId,
+ setContext,
+ refresh,
+ quartoSearchOptions
+ );
+ },
+ },
+ },
+ ];
+ },
+ });
+
+ window.quartoOpenSearch = () => {
+ setIsOpen(false);
+ setIsOpen(true);
+ focusSearchInput();
+ };
+
+ document.addEventListener("keyup", (event) => {
+ const { key } = event;
+ const kbds = quartoSearchOptions["keyboard-shortcut"];
+ const focusedEl = document.activeElement;
+
+ const isFormElFocused = [
+ "input",
+ "select",
+ "textarea",
+ "button",
+ "option",
+ ].find((tag) => {
+ return focusedEl.tagName.toLowerCase() === tag;
+ });
+
+ if (
+ kbds &&
+ kbds.includes(key) &&
+ !isFormElFocused &&
+ !document.activeElement.isContentEditable
+ ) {
+ event.preventDefault();
+ window.quartoOpenSearch();
+ }
+ });
+
+ // Remove the labeleledby attribute since it is pointing
+ // to a non-existent label
+ if (quartoSearchOptions.type === "overlay") {
+ const inputEl = window.document.querySelector(
+ "#quarto-search .aa-Autocomplete"
+ );
+ if (inputEl) {
+ inputEl.removeAttribute("aria-labelledby");
+ }
+ }
+
+ function throttle(func, wait) {
+ let waiting = false;
+ return function () {
+ if (!waiting) {
+ func.apply(this, arguments);
+ waiting = true;
+ setTimeout(function () {
+ waiting = false;
+ }, wait);
+ }
+ };
+ }
+
+ // If the main document scrolls dismiss the search results
+ // (otherwise, since they're floating in the document they can scroll with the document)
+ window.document.body.onscroll = throttle(() => {
+ // Only do this if we're not detached
+ // Bug #7117
+ // This will happen when the keyboard is shown on ios (resulting in a scroll)
+ // which then closed the search UI
+ if (!window.matchMedia(detachedMediaQuery).matches) {
+ setIsOpen(false);
+ }
+ }, 50);
+
+ if (showSearchResults) {
+ setIsOpen(true);
+ focusSearchInput();
+ }
+});
+
+function configurePlugins(quartoSearchOptions) {
+ const autocompletePlugins = [];
+ const algoliaOptions = quartoSearchOptions.algolia;
+ if (
+ algoliaOptions &&
+ algoliaOptions["analytics-events"] &&
+ algoliaOptions["search-only-api-key"] &&
+ algoliaOptions["application-id"]
+ ) {
+ const apiKey = algoliaOptions["search-only-api-key"];
+ const appId = algoliaOptions["application-id"];
+
+ // Aloglia insights may not be loaded because they require cookie consent
+ // Use deferred loading so events will start being recorded when/if consent
+ // is granted.
+ const algoliaInsightsDeferredPlugin = deferredLoadPlugin(() => {
+ if (
+ window.aa &&
+ window["@algolia/autocomplete-plugin-algolia-insights"]
+ ) {
+ // Check if cookie consent is enabled from search options
+ const cookieConsentEnabled = algoliaOptions["cookie-consent-enabled"] || false;
+
+ // Generate random session token only when cookies are disabled
+ const userToken = cookieConsentEnabled ? undefined : Array.from(Array(20), () =>
+ Math.floor(Math.random() * 36).toString(36)
+ ).join("");
+
+ window.aa("init", {
+ appId,
+ apiKey,
+ useCookie: cookieConsentEnabled,
+ userToken: userToken,
+ });
+
+ const { createAlgoliaInsightsPlugin } =
+ window["@algolia/autocomplete-plugin-algolia-insights"];
+ // Register the insights client
+ const algoliaInsightsPlugin = createAlgoliaInsightsPlugin({
+ insightsClient: window.aa,
+ onItemsChange({ insights, insightsEvents }) {
+ const events = insightsEvents.flatMap((event) => {
+ // This API limits the number of items per event to 20
+ const chunkSize = 20;
+ const itemChunks = [];
+ const eventItems = event.items;
+ for (let i = 0; i < eventItems.length; i += chunkSize) {
+ itemChunks.push(eventItems.slice(i, i + chunkSize));
+ }
+ // Split the items into multiple events that can be sent
+ const events = itemChunks.map((items) => {
+ return {
+ ...event,
+ items,
+ };
+ });
+ return events;
+ });
+
+ for (const event of events) {
+ insights.viewedObjectIDs(event);
+ }
+ },
+ });
+ return algoliaInsightsPlugin;
+ }
+ });
+
+ // Add the plugin
+ autocompletePlugins.push(algoliaInsightsDeferredPlugin);
+ return autocompletePlugins;
+ }
+}
+
+// For plugins that may not load immediately, create a wrapper
+// plugin and forward events and plugin data once the plugin
+// is initialized. This is useful for cases like cookie consent
+// which may prevent the analytics insights event plugin from initializing
+// immediately.
+function deferredLoadPlugin(createPlugin) {
+ let plugin = undefined;
+ let subscribeObj = undefined;
+ const wrappedPlugin = () => {
+ if (!plugin && subscribeObj) {
+ plugin = createPlugin();
+ if (plugin && plugin.subscribe) {
+ plugin.subscribe(subscribeObj);
+ }
+ }
+ return plugin;
+ };
+
+ return {
+ subscribe: (obj) => {
+ subscribeObj = obj;
+ },
+ onStateChange: (obj) => {
+ const plugin = wrappedPlugin();
+ if (plugin && plugin.onStateChange) {
+ plugin.onStateChange(obj);
+ }
+ },
+ onSubmit: (obj) => {
+ const plugin = wrappedPlugin();
+ if (plugin && plugin.onSubmit) {
+ plugin.onSubmit(obj);
+ }
+ },
+ onReset: (obj) => {
+ const plugin = wrappedPlugin();
+ if (plugin && plugin.onReset) {
+ plugin.onReset(obj);
+ }
+ },
+ getSources: (obj) => {
+ const plugin = wrappedPlugin();
+ if (plugin && plugin.getSources) {
+ return plugin.getSources(obj);
+ } else {
+ return Promise.resolve([]);
+ }
+ },
+ data: (obj) => {
+ const plugin = wrappedPlugin();
+ if (plugin && plugin.data) {
+ plugin.data(obj);
+ }
+ },
+ };
+}
+
+function validateItems(items) {
+ // Validate the first item
+ if (items.length > 0) {
+ const item = items[0];
+ const missingFields = [];
+ if (item.href == undefined) {
+ missingFields.push("href");
+ }
+ if (!item.title == undefined) {
+ missingFields.push("title");
+ }
+ if (!item.text == undefined) {
+ missingFields.push("text");
+ }
+
+ if (missingFields.length === 1) {
+ throw {
+ name: `Error: Search index is missing the ${missingFields[0]} field.`,
+ message: `The items being returned for this search do not include all the required fields. Please ensure that your index items include the ${missingFields[0]} field or use index-fields in your _quarto.yml file to specify the field names.`,
+ };
+ } else if (missingFields.length > 1) {
+ const missingFieldList = missingFields
+ .map((field) => {
+ return `${field}`;
+ })
+ .join(", ");
+
+ throw {
+ name: `Error: Search index is missing the following fields: ${missingFieldList}.`,
+ message: `The items being returned for this search do not include all the required fields. Please ensure that your index items includes the following fields: ${missingFieldList}, or use index-fields in your _quarto.yml file to specify the field names.`,
+ };
+ }
+ }
+}
+
+let lastQuery = null;
+function showCopyLink(query, options) {
+ const language = options.language;
+ lastQuery = query;
+ // Insert share icon
+ const inputSuffixEl = window.document.body.querySelector(
+ ".aa-Form .aa-InputWrapperSuffix"
+ );
+
+ if (inputSuffixEl) {
+ let copyButtonEl = window.document.body.querySelector(
+ ".aa-Form .aa-InputWrapperSuffix .aa-CopyButton"
+ );
+
+ if (copyButtonEl === null) {
+ copyButtonEl = window.document.createElement("button");
+ copyButtonEl.setAttribute("class", "aa-CopyButton");
+ copyButtonEl.setAttribute("type", "button");
+ copyButtonEl.setAttribute("title", language["search-copy-link-title"]);
+ copyButtonEl.onmousedown = (e) => {
+ e.preventDefault();
+ e.stopPropagation();
+ };
+
+ const linkIcon = "bi-clipboard";
+ const checkIcon = "bi-check2";
+
+ const shareIconEl = window.document.createElement("i");
+ shareIconEl.setAttribute("class", `bi ${linkIcon}`);
+ copyButtonEl.appendChild(shareIconEl);
+ inputSuffixEl.prepend(copyButtonEl);
+
+ const clipboard = new window.ClipboardJS(".aa-CopyButton", {
+ text: function (_trigger) {
+ const copyUrl = new URL(window.location);
+ copyUrl.searchParams.set(kQueryArg, lastQuery);
+ copyUrl.searchParams.set(kResultsArg, "1");
+ return copyUrl.toString();
+ },
+ });
+ clipboard.on("success", function (e) {
+ // Focus the input
+
+ // button target
+ const button = e.trigger;
+ const icon = button.querySelector("i.bi");
+
+ // flash "checked"
+ icon.classList.add(checkIcon);
+ icon.classList.remove(linkIcon);
+ setTimeout(function () {
+ icon.classList.remove(checkIcon);
+ icon.classList.add(linkIcon);
+ }, 1000);
+ });
+ }
+
+ // If there is a query, show the link icon
+ if (copyButtonEl) {
+ if (lastQuery && options["copy-button"]) {
+ copyButtonEl.style.display = "flex";
+ } else {
+ copyButtonEl.style.display = "none";
+ }
+ }
+ }
+}
+
+/* Search Index Handling */
+// create the index
+var fuseIndex = undefined;
+var shownWarning = false;
+
+// fuse index options
+const kFuseIndexOptions = {
+ keys: [
+ { name: "title", weight: 20 },
+ { name: "section", weight: 20 },
+ { name: "text", weight: 10 },
+ ],
+ ignoreLocation: true,
+ threshold: 0.1,
+};
+
+async function readSearchData() {
+ // Initialize the search index on demand
+ if (fuseIndex === undefined) {
+ if (window.location.protocol === "file:" && !shownWarning) {
+ window.alert(
+ "Search requires JavaScript features disabled when running in file://... URLs. In order to use search, please run this document in a web server."
+ );
+ shownWarning = true;
+ return;
+ }
+ const fuse = new window.Fuse([], kFuseIndexOptions);
+
+ // fetch the main search.json
+ const response = await fetch(offsetURL("search.json"));
+ if (response.status == 200) {
+ return response.json().then(function (searchDocs) {
+ searchDocs.forEach(function (searchDoc) {
+ fuse.add(searchDoc);
+ });
+ fuseIndex = fuse;
+ return fuseIndex;
+ });
+ } else {
+ return Promise.reject(
+ new Error(
+ "Unexpected status from search index request: " + response.status
+ )
+ );
+ }
+ }
+
+ return fuseIndex;
+}
+
+function inputElement() {
+ return window.document.body.querySelector(".aa-Form .aa-Input");
+}
+
+function focusSearchInput() {
+ setTimeout(() => {
+ const inputEl = inputElement();
+ if (inputEl) {
+ inputEl.focus();
+ }
+ }, 50);
+}
+
+/* Panels */
+const kItemTypeDoc = "document";
+const kItemTypeMore = "document-more";
+const kItemTypeItem = "document-item";
+const kItemTypeError = "error";
+
+function renderItem(
+ item,
+ createElement,
+ state,
+ setActiveItemId,
+ setContext,
+ refresh,
+ quartoSearchOptions
+) {
+ switch (item.type) {
+ case kItemTypeDoc:
+ return createDocumentCard(
+ createElement,
+ "file-richtext",
+ item.title,
+ item.section,
+ item.text,
+ item.href,
+ item.crumbs,
+ quartoSearchOptions
+ );
+ case kItemTypeMore:
+ return createMoreCard(
+ createElement,
+ item,
+ state,
+ setActiveItemId,
+ setContext,
+ refresh
+ );
+ case kItemTypeItem:
+ return createSectionCard(
+ createElement,
+ item.section,
+ item.text,
+ item.href
+ );
+ case kItemTypeError:
+ return createErrorCard(createElement, item.title, item.text);
+ default:
+ return undefined;
+ }
+}
+
+function createDocumentCard(
+ createElement,
+ icon,
+ title,
+ section,
+ text,
+ href,
+ crumbs,
+ quartoSearchOptions
+) {
+ const iconEl = createElement("i", {
+ class: `bi bi-${icon} search-result-icon`,
+ });
+ const titleEl = createElement("p", { class: "search-result-title" }, title);
+ const titleContents = [iconEl, titleEl];
+ const showParent = quartoSearchOptions["show-item-context"];
+ if (crumbs && showParent) {
+ let crumbsOut = undefined;
+ const crumbClz = ["search-result-crumbs"];
+ if (showParent === "root") {
+ crumbsOut = crumbs.length > 1 ? crumbs[0] : undefined;
+ } else if (showParent === "parent") {
+ crumbsOut = crumbs.length > 1 ? crumbs[crumbs.length - 2] : undefined;
+ } else {
+ crumbsOut = crumbs.length > 1 ? crumbs.join(" > ") : undefined;
+ crumbClz.push("search-result-crumbs-wrap");
+ }
+
+ const crumbEl = createElement(
+ "p",
+ { class: crumbClz.join(" ") },
+ crumbsOut
+ );
+ titleContents.push(crumbEl);
+ }
+
+ const titleContainerEl = createElement(
+ "div",
+ { class: "search-result-title-container" },
+ titleContents
+ );
+
+ const textEls = [];
+ if (section) {
+ const sectionEl = createElement(
+ "p",
+ { class: "search-result-section" },
+ section
+ );
+ textEls.push(sectionEl);
+ }
+ const descEl = createElement("p", {
+ class: "search-result-text",
+ dangerouslySetInnerHTML: {
+ __html: text,
+ },
+ });
+ textEls.push(descEl);
+
+ const textContainerEl = createElement(
+ "div",
+ { class: "search-result-text-container" },
+ textEls
+ );
+
+ const containerEl = createElement(
+ "div",
+ {
+ class: "search-result-container",
+ },
+ [titleContainerEl, textContainerEl]
+ );
+
+ const linkEl = createElement(
+ "a",
+ {
+ href: offsetURL(href),
+ class: "search-result-link",
+ },
+ containerEl
+ );
+
+ const classes = ["search-result-doc", "search-item"];
+ if (!section) {
+ classes.push("document-selectable");
+ }
+
+ return createElement(
+ "div",
+ {
+ class: classes.join(" "),
+ },
+ linkEl
+ );
+}
+
+function createMoreCard(
+ createElement,
+ item,
+ state,
+ setActiveItemId,
+ setContext,
+ refresh
+) {
+ const moreCardEl = createElement(
+ "div",
+ {
+ class: "search-result-more search-item",
+ onClick: (e) => {
+ // Handle expanding the sections by adding the expanded
+ // section to the list of expanded sections
+ toggleExpanded(item, state, setContext, setActiveItemId, refresh);
+ e.stopPropagation();
+ },
+ },
+ item.title
+ );
+
+ return moreCardEl;
+}
+
+function toggleExpanded(item, state, setContext, setActiveItemId, refresh) {
+ const expanded = state.context.expanded || [];
+ if (expanded.includes(item.target)) {
+ setContext({
+ expanded: expanded.filter((target) => target !== item.target),
+ });
+ } else {
+ setContext({ expanded: [...expanded, item.target] });
+ }
+
+ refresh();
+ setActiveItemId(item.__autocomplete_id);
+}
+
+function createSectionCard(createElement, section, text, href) {
+ const sectionEl = createSection(createElement, section, text, href);
+ return createElement(
+ "div",
+ {
+ class: "search-result-doc-section search-item",
+ },
+ sectionEl
+ );
+}
+
+function createSection(createElement, title, text, href) {
+ const descEl = createElement("p", {
+ class: "search-result-text",
+ dangerouslySetInnerHTML: {
+ __html: text,
+ },
+ });
+
+ const titleEl = createElement("p", { class: "search-result-section" }, title);
+ const linkEl = createElement(
+ "a",
+ {
+ href: offsetURL(href),
+ class: "search-result-link",
+ },
+ [titleEl, descEl]
+ );
+ return linkEl;
+}
+
+function createErrorCard(createElement, title, text) {
+ const descEl = createElement("p", {
+ class: "search-error-text",
+ dangerouslySetInnerHTML: {
+ __html: text,
+ },
+ });
+
+ const titleEl = createElement("p", {
+ class: "search-error-title",
+ dangerouslySetInnerHTML: {
+ __html: ` ${title}`,
+ },
+ });
+ const errorEl = createElement("div", { class: "search-error" }, [
+ titleEl,
+ descEl,
+ ]);
+ return errorEl;
+}
+
+function positionPanel(pos) {
+ const panelEl = window.document.querySelector(
+ "#quarto-search-results .aa-Panel"
+ );
+ const inputEl = window.document.querySelector(
+ "#quarto-search .aa-Autocomplete"
+ );
+
+ if (panelEl && inputEl) {
+ panelEl.style.top = `${Math.round(panelEl.offsetTop)}px`;
+ if (pos === "start") {
+ panelEl.style.left = `${Math.round(inputEl.left)}px`;
+ } else {
+ panelEl.style.right = `${Math.round(inputEl.offsetRight)}px`;
+ }
+ }
+}
+
+/* Highlighting */
+// highlighting functions
+function highlightMatch(query, text) {
+ if (text) {
+ const start = text.toLowerCase().indexOf(query.toLowerCase());
+ if (start !== -1) {
+ const startMark = "";
+ const endMark = " ";
+
+ const end = start + query.length;
+ text =
+ text.slice(0, start) +
+ startMark +
+ text.slice(start, end) +
+ endMark +
+ text.slice(end);
+ const startInfo = clipStart(text, start);
+ const endInfo = clipEnd(
+ text,
+ startInfo.position + startMark.length + endMark.length
+ );
+ text =
+ startInfo.prefix +
+ text.slice(startInfo.position, endInfo.position) +
+ endInfo.suffix;
+
+ return text;
+ } else {
+ return text;
+ }
+ } else {
+ return text;
+ }
+}
+
+function clipStart(text, pos) {
+ const clipStart = pos - 50;
+ if (clipStart < 0) {
+ // This will just return the start of the string
+ return {
+ position: 0,
+ prefix: "",
+ };
+ } else {
+ // We're clipping before the start of the string, walk backwards to the first space.
+ const spacePos = findSpace(text, pos, -1);
+ return {
+ position: spacePos.position,
+ prefix: "",
+ };
+ }
+}
+
+function clipEnd(text, pos) {
+ const clipEnd = pos + 200;
+ if (clipEnd > text.length) {
+ return {
+ position: text.length,
+ suffix: "",
+ };
+ } else {
+ const spacePos = findSpace(text, clipEnd, 1);
+ return {
+ position: spacePos.position,
+ suffix: spacePos.clipped ? "…" : "",
+ };
+ }
+}
+
+function findSpace(text, start, step) {
+ let stepPos = start;
+ while (stepPos > -1 && stepPos < text.length) {
+ const char = text[stepPos];
+ if (char === " " || char === "," || char === ":") {
+ return {
+ position: step === 1 ? stepPos : stepPos - step,
+ clipped: stepPos > 1 && stepPos < text.length,
+ };
+ }
+ stepPos = stepPos + step;
+ }
+
+ return {
+ position: stepPos - step,
+ clipped: false,
+ };
+}
+
+// removes highlighting as implemented by the mark tag
+function clearHighlight(searchterm, el) {
+ const childNodes = el.childNodes;
+ for (let i = childNodes.length - 1; i >= 0; i--) {
+ const node = childNodes[i];
+ if (node.nodeType === Node.ELEMENT_NODE) {
+ if (
+ node.tagName === "MARK" &&
+ node.innerText.toLowerCase() === searchterm.toLowerCase()
+ ) {
+ el.replaceChild(document.createTextNode(node.innerText), node);
+ } else {
+ clearHighlight(searchterm, node);
+ }
+ }
+ }
+}
+
+/** Get all html nodes under the given `root` that don't have children. */
+function getLeafNodes(root) {
+ let leaves = [];
+
+ function traverse(node) {
+ if (node.childNodes.length === 0) {
+ leaves.push(node);
+ } else {
+ node.childNodes.forEach(traverse);
+ }
+ }
+
+ traverse(root);
+ return leaves;
+}
+/** create and return `${txt} ` */
+const markEl = txt => {
+ const el = document.createElement("mark");
+ el.appendChild(document.createTextNode(txt));
+ return el
+}
+/** get all ancestors of an element matching the given css selector */
+const matchAncestors = (el, selector) => {
+ let ancestors = [];
+ while (el) {
+ if (el.matches?.(selector)) ancestors.push(el);
+ el = el.parentNode;
+ }
+ return ancestors;
+};
+
+const isWhitespace = s => s.trim().length === 0
+// =================
+// MATCHING CODE
+// =================
+const initMatch = () => ({
+ i: 0,
+ lohisByNode: new Map()
+})
+/**
+ * keeps track of the start (lo) and end (hi) index of the match per node (leaf)
+ * note: mutates the contents of `matchContext`
+ */
+const advanceMatch = (leaf, leafi, matchContext) => {
+ matchContext.i++
+
+ const curLoHi = matchContext.lohisByNode.get(leaf)
+
+ matchContext.lohisByNode.set(leaf, { lo: curLoHi?.lo ?? leafi, hi: leafi })
+}
+/**
+ * Finds all non-overlapping matches for a search string in the document.
+ * The search string may be split between multiple consecutive leaf nodes.
+ *
+ * Whitespace in the search string must be present in the document to match, but
+ * there may be addititional whitespace in the document that is ignored.
+ *
+ * e.g. searching for `dogs rock` would match `dogs \n rock `,
+ * and would contribute the match
+ * `{ i:9, els: new Map([[textNode, {lo:0, hi:8}],[spanNode,{lo:0,hi:5}]]) }`
+ *
+ * @returns {Map[]}
+ */
+function searchMatches(inSearch, el) {
+ // searchText has all sequences of whitespace replaced by a single space
+ const searchText = inSearch.toLowerCase().replace(/\s+/g, ' ')
+ const leafNodes = getLeafNodes(el)
+
+ /** @type {Map[]} */
+ const matches = []
+ /** @type {{i:number; els:Map}[]} */
+ let curMatchContext = initMatch()
+
+ for (const leaf of leafNodes) {
+ const leafStr = leaf.textContent.toLowerCase()
+ // for each character in this leaf's text:
+ for (let leafi = 0; leafi < leafStr.length; leafi++) {
+
+ if (isWhitespace(leafStr[leafi])) {
+ // if there is at least one whitespace in the document
+ // we advance over a search text whitespace.
+ if (isWhitespace(searchText[curMatchContext.i])) advanceMatch(leaf, leafi, curMatchContext)
+ // all sequences of whitespace are otherwise ignored.
+ } else {
+ if (searchText[curMatchContext.i] === leafStr[leafi]) {
+ advanceMatch(leaf, leafi, curMatchContext)
+ } else {
+ curMatchContext = initMatch()
+ // if current character in the document did not match at i in the search text,
+ // reset the search and see if that character matches at 0 in the search text.
+ if (searchText[curMatchContext.i] === leafStr[leafi]) advanceMatch(leaf, leafi, curMatchContext)
+ }
+ }
+
+ const isMatchComplete = curMatchContext.i === searchText.length
+ if (isMatchComplete) {
+ matches.push(curMatchContext.lohisByNode)
+ curMatchContext = initMatch()
+ }
+ }
+ }
+
+ return matches
+}
+
+/**
+ * e.g. `markMatches(myTextNode, [[0,5],[12,15]])` would wrap the
+ * character sequences in myTextNode from 0-5 and 12-15 in marks.
+ * Its important to mark all sequences in a text node at once
+ * because this function replaces the entire text node; so any
+ * other references to that text node will no longer be in the DOM.
+ */
+function markMatches(node, lohis) {
+ const text = node.nodeValue
+
+ const markFragment = document.createDocumentFragment();
+
+ let prevHi = 0
+ for (const [lo, hi] of lohis) {
+ markFragment.append(
+ document.createTextNode(text.slice(prevHi, lo)),
+ markEl(text.slice(lo, hi + 1))
+ )
+ prevHi = hi + 1
+ }
+ markFragment.append(
+ document.createTextNode(text.slice(prevHi, text.length))
+ )
+
+ const parent = node.parentElement
+ parent?.replaceChild(markFragment, node)
+ return parent
+}
+
+// Activate ancestor tabs so a search match inside an inactive pane becomes visible.
+// When multiple panes in the same tabset contain matches, avoid switching away from
+// the currently active pane — the user already sees a match there.
+function openAllTabsetsContainingEl(el) {
+ for (const pane of matchAncestors(el, '.tab-pane')) {
+ const tabContent = pane.closest('.tab-content');
+ if (!tabContent) continue;
+ const activePane = tabContent.querySelector(':scope > .tab-pane.active');
+ if (activePane?.querySelector('mark')) continue;
+ const tabButton = document.querySelector(`[data-bs-target="#${pane.id}"]`);
+ if (tabButton) new bootstrap.Tab(tabButton).show();
+ }
+}
+
+function scrollToFirstVisibleMatch(mainEl) {
+ for (const mark of mainEl.querySelectorAll("mark")) {
+ const isMarkVisible = matchAncestors(mark, '.tab-pane').every(markTabPane =>
+ markTabPane.classList.contains("active")
+ )
+ if (isMarkVisible) {
+ mark.scrollIntoView({ behavior: "smooth", block: "center" });
+ return;
+ }
+ }
+}
+
+/**
+ * e.g.
+ * ```js
+ * const m = new Map()
+ *
+ * arrayMapPush(m, 'dog', 'Max')
+ * console.log(m) // Map { dog->['Max'] }
+ *
+ * arrayMapPush(m, 'dog', 'Samba')
+ * arrayMapPush(m, 'cat', 'Scruffle')
+ * console.log(m) // Map { dog->['Max', 'Samba'], cat->['Scruffle'] }
+ * ```
+ */
+const arrayMapPush = (map, key, item) => {
+ if (!map.has(key)) map.set(key, [])
+ map.set(key, [...map.get(key), item])
+}
+
+// copy&paste any string from a quarto page and
+// this should find that string in the page and highlight it.
+// exception: text that starts outside/inside a tabset and ends
+// inside/outside that tabset.
+function highlight(searchStr, el) {
+ const matches = searchMatches(searchStr, el);
+
+ const matchesGroupedByNode = new Map()
+ for (const match of matches) {
+ for (const [mel, { lo, hi }] of match) {
+ arrayMapPush(matchesGroupedByNode, mel, [lo, hi])
+ }
+ }
+
+ for (const [node, lohis] of matchesGroupedByNode) {
+ markMatches(node, lohis)
+ }
+}
+
+/* Link Handling */
+// get the offset from this page for a given site root relative url
+function offsetURL(url) {
+ var offset = getMeta("quarto:offset");
+ return offset ? offset + url : url;
+}
+
+// read a meta tag value
+function getMeta(metaName) {
+ var metas = window.document.getElementsByTagName("meta");
+ for (let i = 0; i < metas.length; i++) {
+ if (metas[i].getAttribute("name") === metaName) {
+ return metas[i].getAttribute("content");
+ }
+ }
+ return "";
+}
+
+function algoliaSearch(query, limit, algoliaOptions) {
+ const { getAlgoliaResults } = window["@algolia/autocomplete-preset-algolia"];
+
+ const applicationId = algoliaOptions["application-id"];
+ const searchOnlyApiKey = algoliaOptions["search-only-api-key"];
+ const indexName = algoliaOptions["index-name"];
+ const indexFields = algoliaOptions["index-fields"];
+ const searchClient = window.algoliasearch(applicationId, searchOnlyApiKey);
+ const searchParams = algoliaOptions["params"];
+ const searchAnalytics = !!algoliaOptions["analytics-events"];
+
+ return getAlgoliaResults({
+ searchClient,
+ queries: [
+ {
+ indexName: indexName,
+ query,
+ params: {
+ hitsPerPage: limit,
+ clickAnalytics: searchAnalytics,
+ ...searchParams,
+ },
+ },
+ ],
+ transformResponse: (response) => {
+ if (!indexFields) {
+ return response.hits.map((hit) => {
+ return hit.map((item) => {
+ return {
+ ...item,
+ text: highlightMatch(query, item.text),
+ };
+ });
+ });
+ } else {
+ const remappedHits = response.hits.map((hit) => {
+ return hit.map((item) => {
+ const newItem = { ...item };
+ ["href", "section", "title", "text", "crumbs"].forEach(
+ (keyName) => {
+ const mappedName = indexFields[keyName];
+ if (
+ mappedName &&
+ item[mappedName] !== undefined &&
+ mappedName !== keyName
+ ) {
+ newItem[keyName] = item[mappedName];
+ delete newItem[mappedName];
+ }
+ }
+ );
+ newItem.text = highlightMatch(query, newItem.text);
+ return newItem;
+ });
+ });
+ return remappedHits;
+ }
+ },
+ });
+}
+
+let subSearchTerm = undefined;
+let subSearchFuse = undefined;
+const kFuseMaxWait = 125;
+
+async function fuseSearch(query, fuse, fuseOptions) {
+ let index = fuse;
+ // Fuse.js using the Bitap algorithm for text matching which runs in
+ // O(nm) time (no matter the structure of the text). In our case this
+ // means that long search terms mixed with large index gets very slow
+ //
+ // This injects a subIndex that will be used once the terms get long enough
+ // Usually making this subindex is cheap since there will typically be
+ // a subset of results matching the existing query
+ if (subSearchFuse !== undefined && query.startsWith(subSearchTerm)) {
+ // Use the existing subSearchFuse
+ index = subSearchFuse;
+ } else if (subSearchFuse !== undefined) {
+ // The term changed, discard the existing fuse
+ subSearchFuse = undefined;
+ subSearchTerm = undefined;
+ }
+
+ // Search using the active fuse
+ const then = performance.now();
+ const resultsRaw = await index.search(query, fuseOptions);
+ const now = performance.now();
+
+ const results = resultsRaw.map((result) => {
+ const addParam = (url, name, value) => {
+ const anchorParts = url.split("#");
+ const baseUrl = anchorParts[0];
+ const sep = baseUrl.search("\\?") > 0 ? "&" : "?";
+ anchorParts[0] = baseUrl + sep + name + "=" + value;
+ return anchorParts.join("#");
+ };
+
+ return {
+ title: result.item.title,
+ section: result.item.section,
+ href: addParam(result.item.href, kQueryArg, query),
+ text: highlightMatch(query, result.item.text),
+ crumbs: result.item.crumbs,
+ };
+ });
+
+ // If we don't have a subfuse and the query is long enough, go ahead
+ // and create a subfuse to use for subsequent queries
+ if (
+ now - then > kFuseMaxWait &&
+ subSearchFuse === undefined &&
+ resultsRaw.length < fuseOptions.limit
+ ) {
+ subSearchTerm = query;
+ subSearchFuse = new window.Fuse([], kFuseIndexOptions);
+ resultsRaw.forEach((rr) => {
+ subSearchFuse.add(rr.item);
+ });
+ }
+ return results;
+}
diff --git a/figures/discussion/delft_water_depth_intense_rainfall.png b/figures/discussion/delft_water_depth_intense_rainfall.png
new file mode 100644
index 00000000..978cfec7
Binary files /dev/null and b/figures/discussion/delft_water_depth_intense_rainfall.png differ
diff --git a/figures/preliminary/China_flood.jpg b/figures/preliminary/China_flood.jpg
new file mode 100644
index 00000000..c4e6749b
Binary files /dev/null and b/figures/preliminary/China_flood.jpg differ
diff --git a/figures/preliminary/FWEI_6_14_2023_Delft.png b/figures/preliminary/FWEI_6_14_2023_Delft.png
new file mode 100644
index 00000000..7a5022f5
Binary files /dev/null and b/figures/preliminary/FWEI_6_14_2023_Delft.png differ
diff --git a/figures/preliminary/FWEI_7_22_2023_Xian.png b/figures/preliminary/FWEI_7_22_2023_Xian.png
new file mode 100644
index 00000000..c5c4f857
Binary files /dev/null and b/figures/preliminary/FWEI_7_22_2023_Xian.png differ
diff --git a/figures/preliminary/FWEI_8_16_2023_Xian.png b/figures/preliminary/FWEI_8_16_2023_Xian.png
new file mode 100644
index 00000000..f053e5f8
Binary files /dev/null and b/figures/preliminary/FWEI_8_16_2023_Xian.png differ
diff --git a/figures/preliminary/FWEI_9_7_2023_Delft.png b/figures/preliminary/FWEI_9_7_2023_Delft.png
new file mode 100644
index 00000000..bd5966fb
Binary files /dev/null and b/figures/preliminary/FWEI_9_7_2023_Delft.png differ
diff --git a/figures/preliminary/delft_floodmask_change.png b/figures/preliminary/delft_floodmask_change.png
new file mode 100644
index 00000000..3d84c19e
Binary files /dev/null and b/figures/preliminary/delft_floodmask_change.png differ
diff --git a/figures/preliminary/delft_study_area_context_map.pdf b/figures/preliminary/delft_study_area_context_map.pdf
new file mode 100644
index 00000000..6fef7e89
Binary files /dev/null and b/figures/preliminary/delft_study_area_context_map.pdf differ
diff --git a/figures/preliminary/delft_study_area_context_map.png b/figures/preliminary/delft_study_area_context_map.png
new file mode 100644
index 00000000..56a428bd
Binary files /dev/null and b/figures/preliminary/delft_study_area_context_map.png differ
diff --git a/figures/preliminary/green_binary.png b/figures/preliminary/green_binary.png
new file mode 100644
index 00000000..5e675a37
Binary files /dev/null and b/figures/preliminary/green_binary.png differ
diff --git a/figures/preliminary/grid_methodology.png b/figures/preliminary/grid_methodology.png
new file mode 100644
index 00000000..4f80ef42
Binary files /dev/null and b/figures/preliminary/grid_methodology.png differ
diff --git a/figures/preliminary/xian_floodmask_change.png b/figures/preliminary/xian_floodmask_change.png
new file mode 100644
index 00000000..c901cf53
Binary files /dev/null and b/figures/preliminary/xian_floodmask_change.png differ
diff --git a/figures/preliminary/xian_study_area_context_map.pdf b/figures/preliminary/xian_study_area_context_map.pdf
new file mode 100644
index 00000000..0cc5ad99
Binary files /dev/null and b/figures/preliminary/xian_study_area_context_map.pdf differ
diff --git a/figures/preliminary/xian_study_area_context_map.png b/figures/preliminary/xian_study_area_context_map.png
new file mode 100644
index 00000000..e169998f
Binary files /dev/null and b/figures/preliminary/xian_study_area_context_map.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_dem_type.png b/figures/results/combined_typologies/delft_green_flood_dem_type.png
new file mode 100644
index 00000000..5b22ba2b
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_dem_type.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_dem_type_context.png b/figures/results/combined_typologies/delft_green_flood_dem_type_context.png
new file mode 100644
index 00000000..7e92b46b
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_dem_type_context.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_dem_type_context_overview.png b/figures/results/combined_typologies/delft_green_flood_dem_type_context_overview.png
new file mode 100644
index 00000000..2d5ed3b6
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_dem_type_context_overview.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_dem_type_donut.png b/figures/results/combined_typologies/delft_green_flood_dem_type_donut.png
new file mode 100644
index 00000000..371398d7
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_dem_type_donut.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_dem_type_overview.png b/figures/results/combined_typologies/delft_green_flood_dem_type_overview.png
new file mode 100644
index 00000000..80251729
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_dem_type_overview.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_type.png b/figures/results/combined_typologies/delft_green_flood_type.png
new file mode 100644
index 00000000..8412f530
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_type.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_type_context.png b/figures/results/combined_typologies/delft_green_flood_type_context.png
new file mode 100644
index 00000000..a74063b2
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_type_context.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_type_context_overview.png b/figures/results/combined_typologies/delft_green_flood_type_context_overview.png
new file mode 100644
index 00000000..d53be657
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_type_context_overview.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_type_donut.png b/figures/results/combined_typologies/delft_green_flood_type_donut.png
new file mode 100644
index 00000000..36a3f0c7
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_type_donut.png differ
diff --git a/figures/results/combined_typologies/delft_green_flood_type_overview.png b/figures/results/combined_typologies/delft_green_flood_type_overview.png
new file mode 100644
index 00000000..a73d2003
Binary files /dev/null and b/figures/results/combined_typologies/delft_green_flood_type_overview.png differ
diff --git a/figures/results/combined_typologies/green_flood_dem_elbow.png b/figures/results/combined_typologies/green_flood_dem_elbow.png
new file mode 100644
index 00000000..052cabaa
Binary files /dev/null and b/figures/results/combined_typologies/green_flood_dem_elbow.png differ
diff --git a/figures/results/combined_typologies/green_flood_elbow.png b/figures/results/combined_typologies/green_flood_elbow.png
new file mode 100644
index 00000000..34afdc8b
Binary files /dev/null and b/figures/results/combined_typologies/green_flood_elbow.png differ
diff --git a/figures/results/combined_typologies/shared_green_flood_dem_elbow.png b/figures/results/combined_typologies/shared_green_flood_dem_elbow.png
new file mode 100644
index 00000000..6fe5657f
Binary files /dev/null and b/figures/results/combined_typologies/shared_green_flood_dem_elbow.png differ
diff --git a/figures/results/combined_typologies/shared_green_flood_elbow.png b/figures/results/combined_typologies/shared_green_flood_elbow.png
new file mode 100644
index 00000000..27753077
Binary files /dev/null and b/figures/results/combined_typologies/shared_green_flood_elbow.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_dem_type.png b/figures/results/combined_typologies/xian_green_flood_dem_type.png
new file mode 100644
index 00000000..6aa60b44
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_dem_type.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_dem_type_context.png b/figures/results/combined_typologies/xian_green_flood_dem_type_context.png
new file mode 100644
index 00000000..f5f691ff
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_dem_type_context.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_dem_type_context_overview.png b/figures/results/combined_typologies/xian_green_flood_dem_type_context_overview.png
new file mode 100644
index 00000000..e5066f18
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_dem_type_context_overview.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_dem_type_donut.png b/figures/results/combined_typologies/xian_green_flood_dem_type_donut.png
new file mode 100644
index 00000000..d41b37fd
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_dem_type_donut.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_dem_type_overview.png b/figures/results/combined_typologies/xian_green_flood_dem_type_overview.png
new file mode 100644
index 00000000..a6ab1abd
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_dem_type_overview.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_type.png b/figures/results/combined_typologies/xian_green_flood_type.png
new file mode 100644
index 00000000..fd1af90d
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_type.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_type_context.png b/figures/results/combined_typologies/xian_green_flood_type_context.png
new file mode 100644
index 00000000..e063409a
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_type_context.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_type_context_overview.png b/figures/results/combined_typologies/xian_green_flood_type_context_overview.png
new file mode 100644
index 00000000..053e2091
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_type_context_overview.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_type_donut.png b/figures/results/combined_typologies/xian_green_flood_type_donut.png
new file mode 100644
index 00000000..4aa732dc
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_type_donut.png differ
diff --git a/figures/results/combined_typologies/xian_green_flood_type_overview.png b/figures/results/combined_typologies/xian_green_flood_type_overview.png
new file mode 100644
index 00000000..272a0b46
Binary files /dev/null and b/figures/results/combined_typologies/xian_green_flood_type_overview.png differ
diff --git a/figures/results/correlation_overview.png b/figures/results/correlation_overview.png
new file mode 100644
index 00000000..56b30d28
Binary files /dev/null and b/figures/results/correlation_overview.png differ
diff --git a/figures/results/delft_area.png b/figures/results/delft_area.png
new file mode 100644
index 00000000..005903a2
Binary files /dev/null and b/figures/results/delft_area.png differ
diff --git a/figures/results/delft_contig.png b/figures/results/delft_contig.png
new file mode 100644
index 00000000..d162a4df
Binary files /dev/null and b/figures/results/delft_contig.png differ
diff --git a/figures/results/delft_elevation_mean.png b/figures/results/delft_elevation_mean.png
new file mode 100644
index 00000000..23eaddbf
Binary files /dev/null and b/figures/results/delft_elevation_mean.png differ
diff --git a/figures/results/delft_elevation_mean_context.png b/figures/results/delft_elevation_mean_context.png
new file mode 100644
index 00000000..971c539c
Binary files /dev/null and b/figures/results/delft_elevation_mean_context.png differ
diff --git a/figures/results/delft_elevation_min.png b/figures/results/delft_elevation_min.png
new file mode 100644
index 00000000..4a3a40e1
Binary files /dev/null and b/figures/results/delft_elevation_min.png differ
diff --git a/figures/results/delft_enn.png b/figures/results/delft_enn.png
new file mode 100644
index 00000000..30e7e17d
Binary files /dev/null and b/figures/results/delft_enn.png differ
diff --git a/figures/results/delft_flood_clumpy.png b/figures/results/delft_flood_clumpy.png
new file mode 100644
index 00000000..566ee138
Binary files /dev/null and b/figures/results/delft_flood_clumpy.png differ
diff --git a/figures/results/delft_flood_cohesion.png b/figures/results/delft_flood_cohesion.png
new file mode 100644
index 00000000..6247a342
Binary files /dev/null and b/figures/results/delft_flood_cohesion.png differ
diff --git a/figures/results/delft_flood_lpi.png b/figures/results/delft_flood_lpi.png
new file mode 100644
index 00000000..10ccc31f
Binary files /dev/null and b/figures/results/delft_flood_lpi.png differ
diff --git a/figures/results/delft_flood_pattern_type.png b/figures/results/delft_flood_pattern_type.png
new file mode 100644
index 00000000..02cc6282
Binary files /dev/null and b/figures/results/delft_flood_pattern_type.png differ
diff --git a/figures/results/delft_flood_pattern_type_context.png b/figures/results/delft_flood_pattern_type_context.png
new file mode 100644
index 00000000..d31b514e
Binary files /dev/null and b/figures/results/delft_flood_pattern_type_context.png differ
diff --git a/figures/results/delft_flood_pattern_type_context_overview.png b/figures/results/delft_flood_pattern_type_context_overview.png
new file mode 100644
index 00000000..8b5e4596
Binary files /dev/null and b/figures/results/delft_flood_pattern_type_context_overview.png differ
diff --git a/figures/results/delft_flood_pattern_type_donut.png b/figures/results/delft_flood_pattern_type_donut.png
new file mode 100644
index 00000000..b81d97cd
Binary files /dev/null and b/figures/results/delft_flood_pattern_type_donut.png differ
diff --git a/figures/results/delft_flood_pattern_type_elbow.png b/figures/results/delft_flood_pattern_type_elbow.png
new file mode 100644
index 00000000..f3bbdbe1
Binary files /dev/null and b/figures/results/delft_flood_pattern_type_elbow.png differ
diff --git a/figures/results/delft_flood_pattern_type_overview.png b/figures/results/delft_flood_pattern_type_overview.png
new file mode 100644
index 00000000..b0e2f2d5
Binary files /dev/null and b/figures/results/delft_flood_pattern_type_overview.png differ
diff --git a/figures/results/delft_flood_share.png b/figures/results/delft_flood_share.png
new file mode 100644
index 00000000..1567d0fd
Binary files /dev/null and b/figures/results/delft_flood_share.png differ
diff --git a/figures/results/delft_flood_share_context.png b/figures/results/delft_flood_share_context.png
new file mode 100644
index 00000000..b830db27
Binary files /dev/null and b/figures/results/delft_flood_share_context.png differ
diff --git a/figures/results/delft_fwei_change_mean.png b/figures/results/delft_fwei_change_mean.png
new file mode 100644
index 00000000..4abb81e1
Binary files /dev/null and b/figures/results/delft_fwei_change_mean.png differ
diff --git a/figures/results/delft_fwei_change_mean_context.png b/figures/results/delft_fwei_change_mean_context.png
new file mode 100644
index 00000000..36b29959
Binary files /dev/null and b/figures/results/delft_fwei_change_mean_context.png differ
diff --git a/figures/results/delft_green_percent.png b/figures/results/delft_green_percent.png
new file mode 100644
index 00000000..2c84d037
Binary files /dev/null and b/figures/results/delft_green_percent.png differ
diff --git a/figures/results/delft_green_percent_context.png b/figures/results/delft_green_percent_context.png
new file mode 100644
index 00000000..5590bba6
Binary files /dev/null and b/figures/results/delft_green_percent_context.png differ
diff --git a/figures/results/delft_green_type_context.png b/figures/results/delft_green_type_context.png
new file mode 100644
index 00000000..ac68dc56
Binary files /dev/null and b/figures/results/delft_green_type_context.png differ
diff --git a/figures/results/delft_green_type_context_overview.png b/figures/results/delft_green_type_context_overview.png
new file mode 100644
index 00000000..468eec4d
Binary files /dev/null and b/figures/results/delft_green_type_context_overview.png differ
diff --git a/figures/results/delft_green_type_donut.png b/figures/results/delft_green_type_donut.png
new file mode 100644
index 00000000..7d0e1b15
Binary files /dev/null and b/figures/results/delft_green_type_donut.png differ
diff --git a/figures/results/delft_green_type_elbow.png b/figures/results/delft_green_type_elbow.png
new file mode 100644
index 00000000..ae58f9b2
Binary files /dev/null and b/figures/results/delft_green_type_elbow.png differ
diff --git a/figures/results/delft_green_type_overview.png b/figures/results/delft_green_type_overview.png
new file mode 100644
index 00000000..e4c7f915
Binary files /dev/null and b/figures/results/delft_green_type_overview.png differ
diff --git a/figures/results/delft_gyrate.png b/figures/results/delft_gyrate.png
new file mode 100644
index 00000000..33197367
Binary files /dev/null and b/figures/results/delft_gyrate.png differ
diff --git a/figures/results/delft_mean_dist_green.png b/figures/results/delft_mean_dist_green.png
new file mode 100644
index 00000000..f5f038f7
Binary files /dev/null and b/figures/results/delft_mean_dist_green.png differ
diff --git a/figures/results/delft_min_dist_green.png b/figures/results/delft_min_dist_green.png
new file mode 100644
index 00000000..3bf59cde
Binary files /dev/null and b/figures/results/delft_min_dist_green.png differ
diff --git a/figures/results/delft_np_flood.png b/figures/results/delft_np_flood.png
new file mode 100644
index 00000000..63d01b27
Binary files /dev/null and b/figures/results/delft_np_flood.png differ
diff --git a/figures/results/delft_pland_flood.png b/figures/results/delft_pland_flood.png
new file mode 100644
index 00000000..69668cd1
Binary files /dev/null and b/figures/results/delft_pland_flood.png differ
diff --git a/figures/results/delft_shared_flood_pattern_type.png b/figures/results/delft_shared_flood_pattern_type.png
new file mode 100644
index 00000000..220b01ae
Binary files /dev/null and b/figures/results/delft_shared_flood_pattern_type.png differ
diff --git a/figures/results/delft_shared_flood_pattern_type_context.png b/figures/results/delft_shared_flood_pattern_type_context.png
new file mode 100644
index 00000000..a82725e7
Binary files /dev/null and b/figures/results/delft_shared_flood_pattern_type_context.png differ
diff --git a/figures/results/delft_shared_flood_pattern_type_context_overview.png b/figures/results/delft_shared_flood_pattern_type_context_overview.png
new file mode 100644
index 00000000..b9867bed
Binary files /dev/null and b/figures/results/delft_shared_flood_pattern_type_context_overview.png differ
diff --git a/figures/results/delft_shared_flood_pattern_type_donut.png b/figures/results/delft_shared_flood_pattern_type_donut.png
new file mode 100644
index 00000000..73461830
Binary files /dev/null and b/figures/results/delft_shared_flood_pattern_type_donut.png differ
diff --git a/figures/results/delft_shared_flood_pattern_type_overview.png b/figures/results/delft_shared_flood_pattern_type_overview.png
new file mode 100644
index 00000000..45c2c9b1
Binary files /dev/null and b/figures/results/delft_shared_flood_pattern_type_overview.png differ
diff --git a/figures/results/delft_shared_green_type.png b/figures/results/delft_shared_green_type.png
new file mode 100644
index 00000000..16fa2b6a
Binary files /dev/null and b/figures/results/delft_shared_green_type.png differ
diff --git a/figures/results/delft_shared_green_type_context.png b/figures/results/delft_shared_green_type_context.png
new file mode 100644
index 00000000..ba1c2dde
Binary files /dev/null and b/figures/results/delft_shared_green_type_context.png differ
diff --git a/figures/results/delft_shared_green_type_context_overview.png b/figures/results/delft_shared_green_type_context_overview.png
new file mode 100644
index 00000000..739c6fbf
Binary files /dev/null and b/figures/results/delft_shared_green_type_context_overview.png differ
diff --git a/figures/results/delft_shared_green_type_donut.png b/figures/results/delft_shared_green_type_donut.png
new file mode 100644
index 00000000..5a689500
Binary files /dev/null and b/figures/results/delft_shared_green_type_donut.png differ
diff --git a/figures/results/delft_shared_green_type_overview.png b/figures/results/delft_shared_green_type_overview.png
new file mode 100644
index 00000000..b98e1b48
Binary files /dev/null and b/figures/results/delft_shared_green_type_overview.png differ
diff --git a/figures/results/delft_slope_mean.png b/figures/results/delft_slope_mean.png
new file mode 100644
index 00000000..042bf02a
Binary files /dev/null and b/figures/results/delft_slope_mean.png differ
diff --git a/figures/results/delft_typology.png b/figures/results/delft_typology.png
new file mode 100644
index 00000000..dfe2c5a7
Binary files /dev/null and b/figures/results/delft_typology.png differ
diff --git a/figures/results/figures.zip b/figures/results/figures.zip
new file mode 100644
index 00000000..d7ba458e
Binary files /dev/null and b/figures/results/figures.zip differ
diff --git a/figures/results/metric_selection/green_flood_dem_metrics_redundancy_heatmap.png b/figures/results/metric_selection/green_flood_dem_metrics_redundancy_heatmap.png
new file mode 100644
index 00000000..cefa71b2
Binary files /dev/null and b/figures/results/metric_selection/green_flood_dem_metrics_redundancy_heatmap.png differ
diff --git a/figures/results/metric_selection/metric_redundancy_heatmap.png b/figures/results/metric_selection/metric_redundancy_heatmap.png
new file mode 100644
index 00000000..034e1215
Binary files /dev/null and b/figures/results/metric_selection/metric_redundancy_heatmap.png differ
diff --git a/figures/results/metric_selection/redundant_metric_decisions_table.png b/figures/results/metric_selection/redundant_metric_decisions_table.png
new file mode 100644
index 00000000..3a4a97d0
Binary files /dev/null and b/figures/results/metric_selection/redundant_metric_decisions_table.png differ
diff --git a/figures/results/shared_flood_pattern_type_elbow.png b/figures/results/shared_flood_pattern_type_elbow.png
new file mode 100644
index 00000000..0101cbc2
Binary files /dev/null and b/figures/results/shared_flood_pattern_type_elbow.png differ
diff --git a/figures/results/shared_green_type_elbow.png b/figures/results/shared_green_type_elbow.png
new file mode 100644
index 00000000..fbe2ed59
Binary files /dev/null and b/figures/results/shared_green_type_elbow.png differ
diff --git a/figures/results/xian_area.png b/figures/results/xian_area.png
new file mode 100644
index 00000000..bd334de2
Binary files /dev/null and b/figures/results/xian_area.png differ
diff --git a/figures/results/xian_contig.png b/figures/results/xian_contig.png
new file mode 100644
index 00000000..f2168b1c
Binary files /dev/null and b/figures/results/xian_contig.png differ
diff --git a/figures/results/xian_elevation_mean.png b/figures/results/xian_elevation_mean.png
new file mode 100644
index 00000000..f618af0b
Binary files /dev/null and b/figures/results/xian_elevation_mean.png differ
diff --git a/figures/results/xian_elevation_mean_context.png b/figures/results/xian_elevation_mean_context.png
new file mode 100644
index 00000000..e7aca07a
Binary files /dev/null and b/figures/results/xian_elevation_mean_context.png differ
diff --git a/figures/results/xian_elevation_min.png b/figures/results/xian_elevation_min.png
new file mode 100644
index 00000000..c21c4166
Binary files /dev/null and b/figures/results/xian_elevation_min.png differ
diff --git a/figures/results/xian_enn.png b/figures/results/xian_enn.png
new file mode 100644
index 00000000..6c99febb
Binary files /dev/null and b/figures/results/xian_enn.png differ
diff --git a/figures/results/xian_flood_clumpy.png b/figures/results/xian_flood_clumpy.png
new file mode 100644
index 00000000..e4c79967
Binary files /dev/null and b/figures/results/xian_flood_clumpy.png differ
diff --git a/figures/results/xian_flood_cohesion.png b/figures/results/xian_flood_cohesion.png
new file mode 100644
index 00000000..22b3bd08
Binary files /dev/null and b/figures/results/xian_flood_cohesion.png differ
diff --git a/figures/results/xian_flood_lpi.png b/figures/results/xian_flood_lpi.png
new file mode 100644
index 00000000..9c51128e
Binary files /dev/null and b/figures/results/xian_flood_lpi.png differ
diff --git a/figures/results/xian_flood_pattern_type.png b/figures/results/xian_flood_pattern_type.png
new file mode 100644
index 00000000..aeaeb1e4
Binary files /dev/null and b/figures/results/xian_flood_pattern_type.png differ
diff --git a/figures/results/xian_flood_pattern_type_context.png b/figures/results/xian_flood_pattern_type_context.png
new file mode 100644
index 00000000..801efc66
Binary files /dev/null and b/figures/results/xian_flood_pattern_type_context.png differ
diff --git a/figures/results/xian_flood_pattern_type_context_overview.png b/figures/results/xian_flood_pattern_type_context_overview.png
new file mode 100644
index 00000000..ce9e3aae
Binary files /dev/null and b/figures/results/xian_flood_pattern_type_context_overview.png differ
diff --git a/figures/results/xian_flood_pattern_type_donut.png b/figures/results/xian_flood_pattern_type_donut.png
new file mode 100644
index 00000000..450c571a
Binary files /dev/null and b/figures/results/xian_flood_pattern_type_donut.png differ
diff --git a/figures/results/xian_flood_pattern_type_elbow.png b/figures/results/xian_flood_pattern_type_elbow.png
new file mode 100644
index 00000000..0c4671c1
Binary files /dev/null and b/figures/results/xian_flood_pattern_type_elbow.png differ
diff --git a/figures/results/xian_flood_pattern_type_overview.png b/figures/results/xian_flood_pattern_type_overview.png
new file mode 100644
index 00000000..8c616a13
Binary files /dev/null and b/figures/results/xian_flood_pattern_type_overview.png differ
diff --git a/figures/results/xian_flood_share.png b/figures/results/xian_flood_share.png
new file mode 100644
index 00000000..c1cf37e8
Binary files /dev/null and b/figures/results/xian_flood_share.png differ
diff --git a/figures/results/xian_flood_share_context.png b/figures/results/xian_flood_share_context.png
new file mode 100644
index 00000000..efafb244
Binary files /dev/null and b/figures/results/xian_flood_share_context.png differ
diff --git a/figures/results/xian_fwei_change_mean.png b/figures/results/xian_fwei_change_mean.png
new file mode 100644
index 00000000..617ce740
Binary files /dev/null and b/figures/results/xian_fwei_change_mean.png differ
diff --git a/figures/results/xian_fwei_change_mean_context.png b/figures/results/xian_fwei_change_mean_context.png
new file mode 100644
index 00000000..51c580b5
Binary files /dev/null and b/figures/results/xian_fwei_change_mean_context.png differ
diff --git a/figures/results/xian_green_percent.png b/figures/results/xian_green_percent.png
new file mode 100644
index 00000000..9a069ed5
Binary files /dev/null and b/figures/results/xian_green_percent.png differ
diff --git a/figures/results/xian_green_percent_context.png b/figures/results/xian_green_percent_context.png
new file mode 100644
index 00000000..d24eb74e
Binary files /dev/null and b/figures/results/xian_green_percent_context.png differ
diff --git a/figures/results/xian_green_type_context.png b/figures/results/xian_green_type_context.png
new file mode 100644
index 00000000..b9f00568
Binary files /dev/null and b/figures/results/xian_green_type_context.png differ
diff --git a/figures/results/xian_green_type_context_overview.png b/figures/results/xian_green_type_context_overview.png
new file mode 100644
index 00000000..f2bd73b6
Binary files /dev/null and b/figures/results/xian_green_type_context_overview.png differ
diff --git a/figures/results/xian_green_type_donut.png b/figures/results/xian_green_type_donut.png
new file mode 100644
index 00000000..ed5d9cd5
Binary files /dev/null and b/figures/results/xian_green_type_donut.png differ
diff --git a/figures/results/xian_green_type_elbow.png b/figures/results/xian_green_type_elbow.png
new file mode 100644
index 00000000..1645d91a
Binary files /dev/null and b/figures/results/xian_green_type_elbow.png differ
diff --git a/figures/results/xian_green_type_overview.png b/figures/results/xian_green_type_overview.png
new file mode 100644
index 00000000..1698cb10
Binary files /dev/null and b/figures/results/xian_green_type_overview.png differ
diff --git a/figures/results/xian_gyrate.png b/figures/results/xian_gyrate.png
new file mode 100644
index 00000000..8ab39f32
Binary files /dev/null and b/figures/results/xian_gyrate.png differ
diff --git a/figures/results/xian_mean_dist_green.png b/figures/results/xian_mean_dist_green.png
new file mode 100644
index 00000000..55824883
Binary files /dev/null and b/figures/results/xian_mean_dist_green.png differ
diff --git a/figures/results/xian_min_dist_green.png b/figures/results/xian_min_dist_green.png
new file mode 100644
index 00000000..6ce6ff1e
Binary files /dev/null and b/figures/results/xian_min_dist_green.png differ
diff --git a/figures/results/xian_np_flood.png b/figures/results/xian_np_flood.png
new file mode 100644
index 00000000..440e452f
Binary files /dev/null and b/figures/results/xian_np_flood.png differ
diff --git a/figures/results/xian_pland_flood.png b/figures/results/xian_pland_flood.png
new file mode 100644
index 00000000..a18b796f
Binary files /dev/null and b/figures/results/xian_pland_flood.png differ
diff --git a/figures/results/xian_shared_flood_pattern_type.png b/figures/results/xian_shared_flood_pattern_type.png
new file mode 100644
index 00000000..6450a2df
Binary files /dev/null and b/figures/results/xian_shared_flood_pattern_type.png differ
diff --git a/figures/results/xian_shared_flood_pattern_type_context.png b/figures/results/xian_shared_flood_pattern_type_context.png
new file mode 100644
index 00000000..2e7d3563
Binary files /dev/null and b/figures/results/xian_shared_flood_pattern_type_context.png differ
diff --git a/figures/results/xian_shared_flood_pattern_type_context_overview.png b/figures/results/xian_shared_flood_pattern_type_context_overview.png
new file mode 100644
index 00000000..420eb41b
Binary files /dev/null and b/figures/results/xian_shared_flood_pattern_type_context_overview.png differ
diff --git a/figures/results/xian_shared_flood_pattern_type_donut.png b/figures/results/xian_shared_flood_pattern_type_donut.png
new file mode 100644
index 00000000..a8d91f9f
Binary files /dev/null and b/figures/results/xian_shared_flood_pattern_type_donut.png differ
diff --git a/figures/results/xian_shared_flood_pattern_type_overview.png b/figures/results/xian_shared_flood_pattern_type_overview.png
new file mode 100644
index 00000000..e1faa02e
Binary files /dev/null and b/figures/results/xian_shared_flood_pattern_type_overview.png differ
diff --git a/figures/results/xian_shared_green_type.png b/figures/results/xian_shared_green_type.png
new file mode 100644
index 00000000..8254ac03
Binary files /dev/null and b/figures/results/xian_shared_green_type.png differ
diff --git a/figures/results/xian_shared_green_type_context.png b/figures/results/xian_shared_green_type_context.png
new file mode 100644
index 00000000..319076db
Binary files /dev/null and b/figures/results/xian_shared_green_type_context.png differ
diff --git a/figures/results/xian_shared_green_type_context_overview.png b/figures/results/xian_shared_green_type_context_overview.png
new file mode 100644
index 00000000..fa76dae9
Binary files /dev/null and b/figures/results/xian_shared_green_type_context_overview.png differ
diff --git a/figures/results/xian_shared_green_type_donut.png b/figures/results/xian_shared_green_type_donut.png
new file mode 100644
index 00000000..24a81d7d
Binary files /dev/null and b/figures/results/xian_shared_green_type_donut.png differ
diff --git a/figures/results/xian_shared_green_type_overview.png b/figures/results/xian_shared_green_type_overview.png
new file mode 100644
index 00000000..d6b39b82
Binary files /dev/null and b/figures/results/xian_shared_green_type_overview.png differ
diff --git a/figures/results/xian_slope_mean.png b/figures/results/xian_slope_mean.png
new file mode 100644
index 00000000..483baf1b
Binary files /dev/null and b/figures/results/xian_slope_mean.png differ
diff --git a/figures/results/xian_typology.png b/figures/results/xian_typology.png
new file mode 100644
index 00000000..0f4f94ed
Binary files /dev/null and b/figures/results/xian_typology.png differ
diff --git a/final_presentation_groupc.pdf b/final_presentation_groupc.pdf
new file mode 100644
index 00000000..7177361f
Binary files /dev/null and b/final_presentation_groupc.pdf differ
diff --git a/index.qmd b/index.qmd
new file mode 100644
index 00000000..cca7fc04
--- /dev/null
+++ b/index.qmd
@@ -0,0 +1,9 @@
+# Introduction {.unnumbered}
+
+The present document is the report of Group C for the course Applied Spatial Analysis for Sustainable Urban Development (ARFW0501).
+
+The repository of this report can be found [here](https://github.com/Applied-Spatial-Analytics/create-your-report-groupc).
+
+This project investigates the relationship between green space configuration and pluvial flood related surface water change in Delft and Xi’an. Because comparable pluvial flood risk maps were not available for both cities, the Flood/Water Extraction Index (FWEI) was used as a shared proxy for detected surface water change [@farhadi2024fwei].
+
+The report compares two different urban contexts using the same spatial workflow. The main aim is to explore whether the amount and configuration of green space are associated with higher or lower detected surface water patterns.
diff --git a/references.bib b/references.bib
new file mode 100644
index 00000000..6d00e525
--- /dev/null
+++ b/references.bib
@@ -0,0 +1,63 @@
+@article{meerow2019,
+ author = {Meerow, Sara},
+ title = {A Green Infrastructure Spatial Planning Model for Evaluating Ecosystem Service Tradeoffs and Synergies across Three Coastal Megacities},
+ journal = {Environmental Research Letters},
+ year = {2019},
+ volume = {14},
+ number = {12},
+ pages = {125011},
+ doi = {10.1088/1748-9326/ab502c}
+}
+
+@article{brom2023,
+ author = {Brom, Peta and Engemann, Kristine and Breed, Christina and Pasgaard, Maya and Onaolapo, Titilope and Svenning, Jens-Christian},
+ title = {A Decision Support Tool for Green Infrastructure Planning in the Face of Rapid Urbanization},
+ journal = {Land},
+ year = {2023},
+ volume = {12},
+ number = {2},
+ pages = {415},
+ doi = {10.3390/land12020415}
+}
+
+@article{sarabi2022,
+ author = {Sarabi, Shahryar and Han, Qi and de Vries, Bauke and Romme, A. Georges L.},
+ title = {The Nature-Based Solutions Planning Support System: A Playground for Site and Solution Prioritization},
+ journal = {Sustainable Cities and Society},
+ year = {2022},
+ volume = {78},
+ pages = {103608},
+ doi = {10.1016/j.scs.2021.103608}
+}
+
+@article{prokic2019,
+ author = {Proki{\'c}, Marija and Savi{\'c}, Stevan and Pavi{\'c}, Dragoslav},
+ title = {Pluvial Flooding in Urban Areas Across the European Continent},
+ journal = {Geographica Pannonica},
+ year = {2019},
+ volume = {23},
+ number = {4},
+ pages = {216--232},
+ doi = {10.5937/gp23-23508},
+ url = {https://www.dgt.uns.ac.rs/dokumentacija/pannonica/papers/volume23_4a_2.pdf}
+}
+
+@article{farhadi2024fwei,
+ title = {A novel flood/water extraction index ({FWEI}) for identifying water and flooded areas using {Sentinel-2} visible and near-infrared spectral bands},
+ author = {Farhadi, Hadi and Ebadi, Hamid and Kiani, Abbas and Asgary, Ali},
+ journal = {Stochastic Environmental Research and Risk Assessment},
+ year = {2024},
+ volume = {38},
+ pages = {1873--1895},
+ doi = {10.1007/s00477-024-02660-z}
+}
+
+@article{shi2023ugs,
+ title = {{UGS-1m}: Fine-grained urban green space mapping of 31 major cities in China based on the deep learning framework},
+ author = {Shi, Qian and Liu, Mengxi and Marinoni, Andrea and Liu, Xiaoping},
+ journal = {Earth System Science Data},
+ year = {2023},
+ volume = {15},
+ pages = {555--577},
+ doi = {10.5194/essd-15-555-2023}
+}
diff --git a/report.qmd b/report.qmd
index 7f779d4a..0ac3dcc4 100644
--- a/report.qmd
+++ b/report.qmd
@@ -2,16 +2,13 @@
title: "Title of your report"
subtitle: "Project report of Group #"
author:
- - name: "Student 1"
+ - name: "Hassan Osman"
affiliation: "MSc Geomatics"
- - name: "Student 2"
- affiliation: "MSc Landscape Architecture"
- - name: "Student 3"
- affiliation: "MSc Urbanism"
- - name: "Student 4"
- affiliation: "MSc Urbanism"
- - name: "Student 5"
- affiliation: "MSc Landscape Architecture"
+ - name: "Akhil Veeranki"
+ affiliation: "MSc Geomatics"
+ - name: "Daniel Marx"
+ affiliation: "MSc Geomatics"
+
format: html
---
diff --git a/sections/ai_statement.qmd b/sections/ai_statement.qmd
new file mode 100644
index 00000000..dc89b9a4
--- /dev/null
+++ b/sections/ai_statement.qmd
@@ -0,0 +1,24 @@
+# AI statement
+
+Artificial intelligence tools were used at several stages of this project to support the analysis, data processing, and writing workflow. Their use is disclosed here in the interest of transparency and academic integrity.
+
+## R and Spatial Analysis
+
+Claude (Anthropic) and ChatGPT (OpenAI) were used to support the development and debugging of R scripts throughout the project. This included refining code for raster processing with the terra package, landscape metric extraction using landscapemetrics, grid-based spatial aggregation, k-means clustering and elbow plot generation, Pearson correlation analysis and result formatting, and the production of tiled ggplot2 visualisations for typology maps and metric comparisons. The analysis logic, variable selection, and interpretation of results were carried out by the project team. The AI generated code was reviewed, tested, and adapted before use.
+
+## QGIS and Satellite Imagery Workflow
+
+Claude and ChatGPT were used to plan and document the FWEI-based flood detection and flood mask workflow in QGIS, including the sequence of steps for band loading, Raster Calculator operations, sieving, before/after flood mask comparison, and study-area clipping. The actual QGIS operations were performed by the project team.
+
+## Report Writing
+
+Claude (Anthropic) and ChatGPT (OpenAI) were used to support report writing, including improving sentence clarity, restructuring paragraphs, ensuring consistent terminology. All substantive findings, interpretations, and analytical decisions were made by the project team. The final text was reviewed and edited by the authors.
+
+## Tools Used
+
+• Claude (Anthropic) — R scripting support, QGIS workflow documentation, report writing
+• ChatGPT (OpenAI) — R scripting, QGIS workflow, report writing support
+• QGIS 3.x — FWEI calculation, flood mask sieving, raster clipping, study area mapping
+• R 4.5 with terra, sf, landscapemetrics, dplyr, ggplot2, patchwork — spatial analysis and visualisation
+
+The use of AI tools did not replace the analytical judgement, methodological decisions, or spatial data work carried out by the project team.
diff --git a/sections/appendix.qmd b/sections/appendix.qmd
new file mode 100644
index 00000000..e3ae35b2
--- /dev/null
+++ b/sections/appendix.qmd
@@ -0,0 +1,100 @@
+# Additional outputs and unused material
+
+This appendix shows a selection of additional maps and outputs that were produced during the project but were not used as main figures in the report. More complete output files can be found in the GitHub repository, especially in the folders `data/results` and `figures/results`.
+
+The materials included here are mainly intermediate or supporting outputs. They help document the workflow, but the main analysis in the report is based on the selected metrics and the final combined green+flood+DEM typology.
+
+## Green only typologies
+
+Earlier in the project, green only typologies were created using only green space configuration metrics. These outputs were useful during the exploratory stage, but they were not used as the final typology because the final report focuses on combined green+flood+DEM typologies.
+
+{width=100%}
+
+{width=100%}
+
+## Additional metric maps
+
+Some additional metric maps were produced during the analysis but were not included in the main chapters because they were either redundant or mainly used for checking the workflow.
+
+{width=49%}
+{width=49%}
+
+{width=49%}
+{width=49%}
+
+## Intermediate green+flood typology
+
+A green+flood typology was created as an intermediate step before adding DEM variables. This helped compare whether the inclusion of elevation and slope changed the interpretation. The green+flood+DEM typology was selected as the final version because it includes topographic context.
+
+{width=100%}
+
+{width=100%}
+## Full Pearson correlation results
+
+The tables below present the complete pairwise Pearson correlation results between green-space configuration metrics and flood landscape metrics for Delft and Xi’an. All flood metrics were derived from the binary flood mask produced by the FWEI and flood-mask workflow. Green cells indicate statistically significant results at `p < 0.05`. The correlation matrix tables show `r` values only; full pairwise results including exact `p` values are shown below.
+
+### Correlation matrix: Delft
+
+| Green metric | pland_flood | np_flood | cohesion | clumpy | division | lpi |
+| ------------ | ----------: | -------: | -------: | -----: | -------: | ------: |
+| area | -0.009 | -0.105 | -0.059 | +0.093 | +0.001 | +0.007 |
+| gyrate | +0.094* | -0.124 | -0.052 | +0.094 | -0.094 | +0.112* |
+| contig | +0.090 | -0.200* | -0.074 | +0.182 | +0.082 | +0.119 |
+| enn | +0.044 | -0.145 | +0.156 | +0.022 | +0.025 | +0.064 |
+
+Significant pairs (`p < 0.05`): gyrate vs `pland_flood` (`r = +0.197`, `p = 0.049`), contig vs `np_flood` (`r = -0.200`, `p = 0.046`), gyrate vs `lpi` (`r = +0.211`, `p = 0.036`). Asterisks mark significant values in the matrix above.
+
+### Correlation matrix: Xi’an
+
+| Green metric | pland_flood | np_flood | cohesion | clumpy | division | lpi |
+| ------------ | ----------: | -------: | -------: | -----: | -------: | ------: |
+| area | +0.132* | +0.069 | +0.002 | -0.145 | +0.058 | +0.139* |
+| gyrate | +0.160* | +0.101 | -0.032 | -0.225 | +0.012 | +0.162* |
+| contig | +0.183* | +0.118 | +0.038 | -0.163 | +0.179* | +0.188* |
+| enn | +0.152 | -0.092 | +0.130 | +0.091 | +0.168 | +0.136 |
+
+Significant pairs (`p < 0.05`): contig vs `pland_flood` (`r = +0.183`, `p = 0.0004`), area vs `pland_flood` (`r = +0.132`, `p = 0.011`), gyrate vs `pland_flood` (`r = +0.160`, `p = 0.002`), area vs `lpi` (`r = +0.139`, `p = 0.007`), contig vs `lpi` (`r = +0.188`, `p = 0.0003`), gyrate vs `lpi` (`r = +0.162`, `p = 0.002`), contig vs division (`r = +0.179`, `p = 0.0005`). Asterisks mark significant values in the matrix above.
+
+### Full pairwise results with p values: Delft
+
+| Green metric | Flood metric | r | p | Significant |
+| ------------ | ------------ | -----: | ----: | ----------- |
+| contig | pland_flood | +0.154 | 0.127 | No |
+| area | pland_flood | -0.032 | 0.753 | No |
+| gyrate | pland_flood | +0.197 | 0.049 | * Yes |
+| enn | pland_flood | +0.044 | 0.703 | No |
+| contig | np_flood | -0.200 | 0.046 | * Yes |
+| enn | np_flood | -0.145 | 0.209 | No |
+| area | np_flood | -0.156 | 0.120 | No |
+| contig | cohesion | +0.054 | 0.596 | No |
+| area | cohesion | +0.007 | 0.946 | No |
+| enn | cohesion | +0.156 | 0.174 | No |
+| contig | clumpy | +0.005 | 0.959 | No |
+| area | lpi | +0.041 | 0.684 | No |
+| contig | lpi | +0.172 | 0.088 | No |
+| gyrate | lpi | +0.211 | 0.036 | * Yes |
+| enn | division | +0.025 | 0.830 | No |
+| contig | division | +0.135 | 0.180 | No |
+
+### Full pairwise results with p values: Xi’an
+
+| Green metric | Flood metric | r | p | Significant |
+| ------------ | ------------ | -----: | -----: | ----------- |
+| contig | pland_flood | +0.183 | 0.0004 | * Yes |
+| area | pland_flood | +0.132 | 0.011 | * Yes |
+| gyrate | pland_flood | +0.160 | 0.002 | * Yes |
+| enn | pland_flood | +0.152 | 0.120 | No |
+| contig | np_flood | +0.021 | 0.686 | No |
+| enn | np_flood | -0.073 | 0.460 | No |
+| area | np_flood | -0.011 | 0.837 | No |
+| contig | cohesion | +0.053 | 0.303 | No |
+| area | cohesion | +0.034 | 0.510 | No |
+| enn | cohesion | +0.167 | 0.087 | No |
+| contig | clumpy | +0.066 | 0.229 | No |
+| area | lpi | +0.139 | 0.007 | * Yes |
+| contig | lpi | +0.188 | 0.0003 | * Yes |
+| gyrate | lpi | +0.162 | 0.002 | * Yes |
+| enn | division | +0.168 | 0.085 | No |
+| contig | division | +0.179 | 0.0005 | * Yes |
+
+Xi’an has more statistically significant results than Delft. This is mainly because Xi’an has a larger number of cells with both green and flood data, which gives greater statistical power. However, the green-flood relationships are still weak. Most significant correlations in Xi’an are positive, meaning that greener or more compact green-space areas often overlap with detected surface-water patterns rather than clearly reducing them.
diff --git a/sections/conclusion.qmd b/sections/conclusion.qmd
new file mode 100644
index 00000000..8fb6d803
--- /dev/null
+++ b/sections/conclusion.qmd
@@ -0,0 +1,12 @@
+# Conclusion
+
+This study investigated how the spatial configuration of green spaces influences pluvial flooding in urban areas by comparing Xi'an, China, which experienced a major pluvial flood on 11 August 2023, with Delft, the Netherlands, which served as a non flood reference city. The results show that the spatial configuration of green space has only a weak relationship with flooding, and that this relationship depends strongly on the hydrological setting of the city. In Xi'an, the observed relationships mainly reflect where large green spaces are located within natural flood accumulation zones. In Delft, where flooding is largely controlled by engineered drainage, green space configuration shows limited evidence of influencing how surface water is distributed.
+
+The first sub question asked how green space configuration and flood related surface water patterns could be measured and compared between Delft and Xi'an. This study demonstrated that combining FWEI derived flood masks, landscape metrics, DEM variables, Pearson correlation analysis, and k-means typology provides a consistent framework for comparing green space and flood patterns between different cities. The workflow successfully detected extensive flood related surface water change in Xi'an and only limited change in Delft, confirming that the approach can distinguish between a flooded city and a non flood control.
+
+The second sub question asked what spatial patterns emerge when green space, flood related, and topographic indicators are combined. Correlation analysis showed that most relationships between green space configuration and flooding are weak (|r| < 0.20). In Xi'an, a consistent spatial pattern emerged: the grid cells with the most compact, well connected, and spatially expansive green patches are also the cells where flooding is most extensive and where the largest continuous flood areas occur. These cells are concentrated in the open, lower lying areas of the study area where large heritage green spaces are situated. Rather than indicating that green space causes flooding, this pattern reflects the fact that these areas occupy low lying landscape positions where floodwater naturally accumulates. The typology reinforces this by identifying these locations as Type 3 — the class with the highest green cover and highest flood extent (flood share = 0.640 in Delft, 0.610 in Xi'an).
+
+The third sub question examined how the identified patterns differ between Delft and Xi'an and what they imply for urban flood related planning. Xi'an experienced a real flood event, so its results primarily reflect the influence of topography and flood accumulation. Delft showed only 129 grid cells with detectable surface water change, but one important difference emerged: more connected green patches were associated with fewer separate flood patches (r = −0.200, p = 0.046). Although weak, this suggests that where engineered drainage already limits flooding, the arrangement of green space may influence how remaining surface water is organised. No comparable negative relationship was observed in Xi'an, where flood magnitude and topography dominated the spatial pattern.
+
+Taken together, these findings show that simply increasing the amount of green space is unlikely to reduce flooding in areas that already occupy natural flood accumulation zones. Instead, effective flood management should integrate green infrastructure with drainage networks and local topography. The comparison between Xi'an and Delft demonstrates that the effectiveness of green space configuration depends not only on the arrangement of green patches, but also on the wider hydrological and engineering context.
+Future research should combine the FWEI derived flood detection workflow with hydrological modelling and observed flood records to validate these findings and further investigate how different forms of green infrastructure influence urban flooding under contrasting environmental and drainage conditions.
diff --git a/sections/discussion.qmd b/sections/discussion.qmd
new file mode 100644
index 00000000..201bc615
--- /dev/null
+++ b/sections/discussion.qmd
@@ -0,0 +1,119 @@
+# Discussion
+
+This chapter brings together the main analytical results, their interpretation, the limitations of the workflow, and the reproducibility of the project. The separate results are not discussed as isolated outputs here, but are linked back to the research question: how green space configuration relates to pluvial flood related surface water patterns in Delft and Xi’an.
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+library(knitr)
+library(dplyr)
+
+root <- if (dir.exists("../data")) ".." else "."
+
+read_table_safe <- function(x) {
+ if (file.exists(x)) read.csv(x) else data.frame(note = paste("File not found:", x))
+}
+```
+
+## Results and analysis
+
+The correlation analysis compared green space configuration metrics with FWEI derived flood indicators. The main aim was to check whether greener, more compact, or more isolated green space patterns were associated with higher or lower detected surface water values.
+
+| City | Green-space metric | FWEI change mean | Flood share |
+| ----- | -------------------------- | ---------------: | ----------: |
+| Delft | Green percentage | 0.242 | 0.344 |
+| Delft | Contiguity | 0.196 | 0.344 |
+| Delft | Nearest-neighbour distance | -0.087 | -0.083 |
+| Xi’an | Green percentage | 0.158 | 0.367 |
+| Xi’an | Contiguity | 0.073 | 0.216 |
+| Xi’an | Nearest-neighbour distance | -0.039 | -0.054 |
+
+The strongest relationships are found with `flood_share`, not with `fwei_change_mean`. In both cities, green percentage and contiguity have positive correlations with flood share. This means that cells with more green space or more connected green patches also tend to have a larger share of detected surface water increase. The nearest neighbour distance metric has weak negative correlations, meaning that more isolated green patches are not linked to higher detected water values in the same way.
+
+{#fig-correlation-overview width=100%}
+
+The correlation results do not support the simple assumption that more green space automatically means less detected water. Instead, the results show that green space configuration and FWEI derived surface water increase overlap spatially in some parts of both cities.
+
+The final combined typology gives a clearer interpretation than the correlations alone. It combines green space configuration, FWEI derived flood pattern indicators, and DEM variables into one shared classification.
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+final_typology <- read_table_safe(file.path(root, "data/results/final_typology_summary.csv"))
+
+final_typology_small <- data.frame(City = final_typology$city, Type = final_typology$type, Cells = final_typology$n_cells, Share = round(final_typology$percent_cells, 1), Green = round(final_typology$mean_green_percent, 1), Contiguity = round(final_typology$mean_contig, 3), FWEI_change = round(final_typology$mean_fwei_change_mean, 3), Flood_share = round(final_typology$mean_flood_share, 3), Flood_patches = round(final_typology$mean_np_flood, 2), Elevation = round(final_typology$mean_elevation_mean, 2), Slope = round(final_typology$mean_slope_mean, 3))
+
+knitr::kable(final_typology_small, caption = "Main results of the final shared green+flood+DEM typology.")
+```
+
+The main result is that Delft and Xi’an have different dominant typology structures, but the shared Type 3 class contains the strongest FWEI derived surface water values in both cities.
+
+## Interpretation of Delft and Xi’an typologies
+
+In Delft, Type 2 is the dominant combined typology. It covers about 58% of the study area and represents the main background condition. It has lower green coverage and lower detected surface water values than Type 3. Type 3 covers about 21% of the study area, but it has the highest flood share, 0.640, and the highest mean FWEI change, 0.075. This means that the strongest detected surface water pattern in Delft is concentrated in a greener and more connected type, not in the lowest green type.
+
+{#fig-results-delft-final-typology width=100%}
+
+Type 1 also covers about 21% of Delft, but it has almost no detected surface water increase. Type 4 has high green coverage and relatively many detected flood patches, but it covers less than 1% of the study area. It is therefore too small to treat as a major Delft wide pattern.
+
+In Xi’an, Type 4 is the dominant combined typology. It covers about 73% of the study area and represents the main background condition. It has moderate green coverage and moderate flood share, but it also has the highest mean number of detected flood patches. This means that much of Xi’an is classified as a widespread type with fragmented detected surface water patterns.
+
+{#fig-results-xian-final-typology width=100%}
+
+The clearest high water type in Xi’an is Type 3. It covers only about 9% of the study area, but it has the highest green percentage, highest contiguity, highest FWEI change, and highest flood share. Its mean flood share is 0.610 and its mean FWEI change is 0.065. This makes Type 3 the strongest combined green+flood+DEM type in Xi’an, even though it is not the largest type.
+
+A specific issue in Xi’an is the narrow Type 1 band along the northern edge of the typology map. This band is a grid alignment artefact from preprocessing. It is not interpreted as a real typology zone. This also means that the reported Type 1 percentage in Xi’an is overestimated. The corrected share was not recalculated, so the table values are kept as produced by the workflow, but the interpretation does not rely on this edge band.
+
+Overall, Delft has a more mixed typology structure, while Xi’an is more strongly dominated by one background type. However, both cities show that the strongest detected surface water values occur in the greener and more contiguous Type 3 class.
+
+## Nature based solution directions
+
+The final typology was also used to identify which types are most relevant for nature based solution discussion. This is not a measured flood risk ranking. It is only a practical interpretation based on the available green space, FWEI derived flood, and DEM indicators.
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+problematic <- read_table_safe(file.path(root, "data/results/problematic_typology_candidates.csv"))
+
+problematic_small <- data.frame(City = problematic$city, Type = problematic$type, Interpretation = gsub("_", " ", problematic$interpretation), Solution = gsub("_", " ", problematic$possible_solution_direction))
+
+knitr::kable(problematic_small, caption = "Typology candidates for planning interpretation.")
+```
+
+The k-means typology combines green space characteristics, flood metrics, and topographic variables into a single spatial framework. In both cities, Type 3 represents the landscape condition where the highest green cover and the greatest proportion of detected flooding occur together. These areas occupy low lying landscape positions that naturally receive and temporarily store surface water. Consequently, simply increasing the amount of green space within these areas is unlikely to substantially reduce flooding. Instead, future flood management strategies should focus on improving the hydrological performance of green infrastructure — integrating parks with urban drainage systems, improving drainage connectivity, increasing the continuity of green corridors, and designing green spaces with explicit water storage function accounting for local topography.
+
+These interpretations should be treated as spatial associations rather than causal findings. The analysis identifies where green space and detected flooding are found together, but it does not prove that green space is reducing or causing flooding.
+
+For Delft, Type 3 is the main candidate. Since this type already has relatively high green coverage, the planning question is not simply where to add more green space. A more relevant direction is to improve the water storage function of existing green areas. Possible interventions include floodable parks, retention basins, wetland enhancement, and controlled temporary storage areas.
+
+Type 2 in Delft is also relevant because it is the dominant background type. However, its flood values are much lower than Type 3, so it is less urgent as a high water typology. If interventions were considered there, they would more likely focus on small scale improvements such as depaving, rain gardens, and permeable surfaces.
+
+For Xi’an, Type 3 is again the clearest high water green type. Type 4 is also important because it covers most of the study area and has many separate detected flood patches. This suggests a more fragmented surface water pattern across the urban area. Possible interventions could include bioswales, connected pocket parks, green corridors, rain gardens, and local infiltration measures.
+
+These suggestions should be treated as planning directions, not final design proposals. The analysis uses FWEI derived surface water change, not measured flood depth. Therefore, the typology can identify relevant spatial patterns, but it cannot determine exact engineering solutions.
+
+## Limitations
+
+The main limitation is that the Flood/Water Extraction Index (FWEI) is a proxy for flood related surface water change. It does not measure flood depth, water volume, drainage failure, or flood damage. The `flood_share` variable is also based on a threshold applied to FWEI change, so it should be interpreted as detected surface water increase rather than as a confirmed flood depth map.
+
+This limitation became clear during the data search. For Delft, a local dataset for water depth during intense rainfall was available, which would have been more directly useful for analysing pluvial flooding. However, a comparable water depth dataset was not available for Xi’an, so this Delft layer could not be used in the shared analysis. In addition, the Sentinel 2 image acquired after the Xi’an flood was collected five days after the flood peak on 11 August 2023. Some temporary surface water had probably already receded by then, so the detected flood extent likely underestimates maximum inundation.
+
+Future research should therefore try to use comparable pluvial flood depth or flood risk maps for both cities. This would reduce the dependence on FWEI as a proxy and would make it possible to test the relationship between green space configuration and flooding more directly.
+
+
+{#fig-delft-water-depth-discussion width=80%}
+
+Another limitation is that the analysis does not include all factors that influence pluvial flooding. Surface water accumulation is also affected by other variables such as sewer capacity, drainage systems, rainfall intensity, soil type, surface materials, flow accumulation, and impervious surface percentage. Because these variables were not equally available for Delft and Xi’an, they could not be included in the shared typology. This means that some local causes of surface water accumulation are missing from the interpretation. Future work could include these variables where comparable data are available, which would make it easier to separate the role of green space configuration from other flood related factors.
+
+A fourth limitation is the 100 m by 100 m grid. The grid makes comparison easier, but it also simplifies the urban landscape. Small local features such as narrow streets, small green strips, local depressions, or drainage channels can be averaged inside one grid cell. A different grid size could therefore produce somewhat different results. Future work should test different grid sizes, such as 50 m, 100 m, and 200 m, to see how sensitive the results are to spatial scale. Testing different FWEI thresholds would also help show whether the flood share results are stable or depend strongly on the chosen threshold.
+
+The K-means clustering method could also be a limitation. The final typology depends on the selected input variables and the chosen number of clusters. Four clusters were selected because they were interpretable and manageable, but another number of clusters could produce a different typology structure. Future work could compare K-means with other clustering methods or test different numbers of clusters to see whether the typology structure remains stable.
+
+A final limitation is the Xi’an grid alignment issue that produced the Type 1 edge artefact. This issue happened because one part of the Xi’an preprocessing was prepared using an older version of the study area grid, which was positioned slightly further south. When the scripts and datasets were later combined, this mismatch became visible as a narrow Type 1 band along the northern edge of the Xi’an typology map. The artefact was kept in the final output because several layers and outputs had already been clipped, processed, and linked to the existing workflow. However, it was not interpreted as a meaningful spatial typology pattern. Future work should rebuild the Xi’an preprocessing from one single final grid, then rerun the metric calculation and typology construction.
+
diff --git a/sections/methods.qmd b/sections/methods.qmd
new file mode 100644
index 00000000..5d65e0c3
--- /dev/null
+++ b/sections/methods.qmd
@@ -0,0 +1,129 @@
+# Methods
+
+## General workflow
+
+The analysis was carried out using a grid based spatial workflow. The same general method was applied to both Delft and Xi’an, so that the results could be compared between the two cities. The main steps were: preparing the input data, clipping the layers to the selected study areas, calculating metrics per grid cell, checking metric redundancy, and constructing combined typologies.
+
+The workflow was implemented mainly in R, using the packages `terra`, `sf`, `landscapemetrics`, `dplyr`, and `ggplot2`. QGIS was used for initial data preparation, FWEI calculation, flood mask creation, study area clipping of change rasters, and map production. The complete FWEI and flood mask workflow is described in detail in the preceding chapter.
+
+{#fig-grid-methodology width=100%}
+
+The workflow converts the input layers into comparable grid cell metrics, which are then used for metric selection, correlation analysis, and combined typology construction.
+
+## Flood water extraction index (FWEI)
+
+The main flood related input used in this project was the Flood/Water Extraction Index, or FWEI. FWEI is a spectral index developed to identify water and flooded areas from Sentinel 2 visible and near infrared bands [@farhadi2024fwei]. It uses four Sentinel 2 bands at 10 m spatial resolution: blue, green, red, and near infrared.
+
+The FWEI formula is:
+
+$$
+FWEI = \frac{MeanVisible - B08}{MeanVisible + B08}
+$$
+
+where:
+
+$$
+MeanVisible = \frac{B02 + B03 + B04}{3}
+$$
+
+In this formula, B02 is the blue band, B03 is the green band, B04 is the red band, and B08 is the near infrared band. Water surfaces usually reflect strongly in the visible bands and absorb near infrared radiation. Because of this, open water and flooded surfaces tend to produce higher FWEI values, while dry surfaces and vegetation tend to produce lower values.
+
+For Xi’an, the two Sentinel 2 acquisition dates, 22 July 2023 before the event and 16 August 2023 after the event, bracket the documented flood of 11 August 2023. For Delft, the acquisition dates of 14 June 2023 and 7 September 2023 represent a non event period. The same FWEI and flood mask workflow was applied to both image pairs, so that a surface water change signal could be produced for each city.
+
+In this project, FWEI was used in two ways. First, the before and after FWEI rasters were used to calculate a continuous FWEI change raster:
+
+$$
+FWEI_{change} = FWEI_{after} - FWEI_{before}
+$$
+
+This continuous raster was used to calculate fwei_change_mean for each grid cell. This metric represents the average FWEI derived surface water change inside the cell.
+
+Second, the same FWEI change raster was converted into a binary surface water increase layer. A threshold of 0.05 was used. Pixels with an FWEI change above this threshold were classified as detected surface water increase, while pixels below the threshold were classified as no detected surface water increase.
+
+This binary flood mask was then used to calculate flood_share and the flood pattern metrics. Therefore, the analysis did not only use the continuous FWEI value. It used both the continuous FWEI change raster and the thresholded binary flood mask. Below
+
+::: {layout-ncol=2}
+
+{width=100%}
+
+{width=100%}
+
+:::
+
+
+## Green binary dataset
+
+Green space was represented with binary green space rasters. In these rasters, green areas were given the value 1, while all non green areas were given the value 0. This binary format allowed the green space layer to be analysed as categorical raster data when calculating the patch based landscape metrics in R.
+
+At the beginning of the project, more general land cover and satellite based datasets were explored for the green space layer, including ESA WorldCover 2021 v200 and the China Land Cover Dataset 2022 for Xi’an. However, these datasets were not detailed enough for the final analysis. Since the project focused on the spatial structure of green space, including fragmentation, configuration, and patch patterns, a more detailed green space input was needed.
+
+For Delft, the final green space layer was based on a local dataset from the Klimaatatlas. This dataset was processed in QGIS and converted into a binary raster, so that green space and non green space could be clearly separated. For Xi’an, the final green space layer came from the Urban green space (UGS) 1m dataset, which provides detailed urban green space data for several large Chinese cities at around 1 m resolution [@shi2023ugs]. This layer was also converted into a binary raster before it was used for the landscape metric analysis in R. The binary green space rasters, cropped to the Delft and Xi’an study areas, are shown below.
+
+{width=100%}
+
+## Data preparation
+
+Before the analysis, all spatial layers were prepared for the two selected study areas. The main input layers were green space rasters, pre event and post event FWEI rasters, the clipped flood change rasters, DEM rasters, and context layers for mapping. The layers were checked, clipped to the study areas, and transformed to the correct coordinate reference systems where needed.
+
+For Delft, the projected coordinate system used in the workflow was EPSG:28992. For Xi’an, the projected coordinate system used in the workflow was EPSG:32649. Using projected coordinate systems was important because the analysis involved distances, grid cells, patch metrics, and slope calculations.
+
+The main preprocessing steps were:
+
+| Step | Purpose |
+| ------------------------------ | --------------------------------------------------------------------- |
+| Study-area clipping | To make all layers match the selected 10 km by 10 km areas. |
+| CRS alignment | To make sure layers overlap correctly and can be measured in metres. |
+| Raster alignment | To make raster layers comparable before extracting grid-cell values. |
+| Binary green-space preparation | To separate green and non-green areas. |
+| FWEI difference calculation | To estimate surface water change between the before and after images. |
+| DEM preparation | To calculate elevation and slope values for each grid cell. |
+
+## Grid based spatial unit
+
+Both cities were analysed using a 100 m by 100 m grid, resulting in 10,000 grid cells per study area. The grid was used as the common spatial unit for summarising green space, FWEI derived flood, and DEM variables. This allowed raster and vector inputs with different resolutions to be converted into comparable metric tables for Delft and Xi’an.
+
+## Metric calculation and selection
+
+After preparing the input layers, green-space, FWEI-derived flood, and Digital Elevation Model (DEM) variables were calculated for each grid cell. This produced one metric table for Delft and one for Xi’an.
+
+The green-space rasters were binary, with green space coded as `1` and non-green space as `0`. They were aggregated to approximately 5 m resolution to reduce processing time. For each grid cell, green coverage and patch-based landscape metrics were calculated.
+
+For the flood-related metrics, the continuous FWEI change raster was used to calculate mean surface-water change per cell. The same raster was also converted into a binary flood mask using a threshold of `0.05`. This mask was used to calculate `flood_share` and flood-pattern metrics.
+
+DEM data were used to calculate elevation and slope per grid cell. A broader set of metrics was first produced, after which redundant metrics were removed. The final metric selection is explained in the next chapter.
+
+
+## Pearson correlation analysis
+
+Pearson correlation analysis was used to test the relationship between selected green space metrics and FWEI derived flood indicators. Pearson’s correlation coefficient, or `r`, measures the direction and strength of a linear relationship between two variables. Values range from -1 to +1. Positive values indicate that both variables tend to increase together, while negative values indicate that one variable tends to decrease as the other increases.
+
+In this project, the strength of the correlation values was interpreted as follows:
+
+- `|r| < 0.10`: negligible relationship
+- `|r| = 0.10 to 0.29`: weak relationship
+- `|r| = 0.30 to 0.49`: moderate relationship
+- `|r| >= 0.50`: strong relationship
+
+Statistical significance was assessed using `p < 0.05`. However, significance was interpreted separately from practical strength, because a statistically significant result can still represent a weak relationship.
+
+## Combined typology construction
+
+K-means clustering was used to group grid cells into combined typologies. The final typology used the selected green, FWEI derived flood, and DEM metrics. Before clustering, the variables were standardised using `scale()`, so that variables with larger numerical ranges did not dominate the result.
+
+A green+flood typology was first created as an intermediate check. The final typology used green+flood+DEM variables, because topography was considered important for interpreting surface water accumulation.
+
+Four clusters were used. The elbow plot did not show one perfect cluster number, but four clusters were selected because they gave a manageable and interpretable set of spatial types. The same clustering was applied as a shared typology for Delft and Xi’an, meaning both cities were classified using the same type definitions.
+
+## Outputs
+
+The workflow produced spatial and tabular outputs for both cities. The main outputs were grid layers, metric tables, correlation tables, redundancy tables, maps, and combined typology layers.
+
+| Output | Purpose |
+| ------------------------------- | ----------------------------------------------------------------------------------------------- |
+| Grid metric files | Store all calculated green, flood, and DEM metrics per grid cell. |
+| Metric maps | Show spatial variation in each selected metric. |
+| Redundancy tables | Show which metrics were removed or kept. |
+| Combined typology maps | Show the final green+flood+DEM typology in each city. |
+| Typology summary tables | Describe the average characteristics of each type. |
+
+This workflow made it possible to move from separate spatial layers to comparable grid cell metrics and finally to shared typologies for Delft and Xi’an.
diff --git a/sections/metrics.qmd b/sections/metrics.qmd
new file mode 100644
index 00000000..dbaccd95
--- /dev/null
+++ b/sections/metrics.qmd
@@ -0,0 +1,177 @@
+# Metric selection and redundancy check
+
+This chapter explains which metrics were calculated and how the final metric set was selected. At first, a larger set of green-space, FWEI derived flood, distance to green, and DEM metrics was produced for both Delft and Xi’an. However, not all of these metrics were used in the later analysis, because some of them described almost the same spatial pattern.
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+library(knitr)
+
+root <- if (dir.exists("../data")) ".." else "."
+
+read_table_safe <- function(x) {
+ if (file.exists(x)) read.csv(x) else data.frame(note = paste("File not found:", x))
+}
+```
+
+## Collected metrics
+
+The analysis used three main groups of metrics: green space, FWEI flood indicators, and DEM variables. The green space metrics describe how much green is present and how it is arranged. The flood metrics describe where surface water increase was detected and what pattern it forms. The DEM metrics describe elevation and slope, because lower or flatter areas can be more likely to hold water.
+
+The flood metrics in this chapter were derived from the binary flood change mask, the clipped FWEI change raster thresholded at 0.05 in R. Each metric describes the amount or spatial structure of newly detected surface water per 100 m grid cell, tracing back to the FWEI based satellite detection described in the FWEI chapter.
+
+
+| Metric group | Metric | Meaning |
+| ------------------------- | ------------------ | ----------------------------------------------------------------------- |
+| Green-space metrics | `green_percent` | Percentage of each grid cell covered by green space. |
+| Green-space metrics | `area` | Average size of green patches. |
+| Green-space metrics | `gyrate` | Spatial spread of green patches. |
+| Green-space metrics | `contig` | Compactness and internal connectedness of green patches. |
+| Green-space metrics | `enn` | Distance to the nearest neighbouring green patch. |
+| Flood metrics | `fwei_change_mean` | Average FWEI after-minus-before change per grid cell. |
+| Flood metrics | `flood_share` | Share of each grid cell with detected surface-water increase. |
+| Flood metrics | `pland_flood` | Percentage of each grid cell covered by detected flood pixels. |
+| Flood metrics | `np_flood` | Number of separate detected flood patches. |
+| Flood metrics | `flood_cohesion` | Connectedness of detected flood patches. |
+| Flood metrics | `flood_clumpy` | Clustering of detected flood pixels. |
+| Flood metrics | `flood_lpi` | Dominance of the largest detected flood patch. |
+| Distance-to-green metrics | `mean_dist_green` | Average distance from detected water pixels to the nearest green pixel. |
+| Distance-to-green metrics | `min_dist_green` | Minimum distance from detected water pixels to the nearest green pixel. |
+| DEM metrics | `elevation_mean` | Average elevation per grid cell. |
+| DEM metrics | `elevation_min` | Lowest elevation value per grid cell. |
+| DEM metrics | `slope_mean` | Average slope per grid cell. |
+
+## Metric redundancy check
+
+Before selecting the final metrics, the candidate metrics were checked for redundancy. This was necessary because clustering is sensitive to the input variables. If two metrics describe almost the same pattern, including both of them would give that pattern too much influence.
+
+Pearson correlation was used to compare the candidate metrics. A correlation close to `1` or `-1` means that two metrics are strongly related. In this analysis, metric pairs with an absolute correlation above about `0.80` were treated as highly redundant.
+
+{width=100%}
+
+The redundancy check showed that several variables were strongly related. This was especially clear for flood extent metrics and elevation metrics. For example, `flood_share` and `pland_flood` had a correlation of `1.00`, meaning they were identical in practice. `elevation_mean` and `elevation_min` were also almost identical.
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+high_corr <- read_table_safe(file.path(root, "data/results/metric_selection/highly_correlated_metrics.csv"))
+
+if ("correlation" %in% names(high_corr)) high_corr$correlation <- round(high_corr$correlation, 3)
+
+if ("abs_correlation" %in% names(high_corr)) high_corr$abs_correlation <- round(high_corr$abs_correlation, 3)
+
+knitr::kable(high_corr, caption = "Highly correlated metric pairs.")
+```
+
+## Redundant metrics
+
+The table below shows the final decisions for the highly correlated metric pairs. In most cases, one metric was kept and the other was removed from the final metric set.
+
+{width=100%}
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+redundant_decisions <- read_table_safe(file.path(root, "data/results/metric_selection/redundant_metric_decisions.csv"))
+
+knitr::kable(redundant_decisions, caption = "Metric redundancy decisions.")
+```
+
+The main decisions were as follows. `flood_share` was kept instead of `pland_flood`, because both metrics measure detected surface water extent. `flood_lpi` was removed because it was also strongly related to flood extent. `elevation_mean` was kept instead of `elevation_min`, because both showed almost the same elevation pattern. `gyrate` was removed because it strongly overlapped with other green patch metrics. `area` was also removed from the final metric set because it strongly correlated with `green_percent`.
+
+The distance to green metrics, `mean_dist_green` and `min_dist_green`, were not used in the final metric set. They are still useful for interpretation, but they describe the relationship between detected water and green space rather than the main green, flood, or topographic condition of the grid cell.
+
+## Final selected metrics
+
+After the redundancy check, the final metric set was reduced. The aim was to keep one representative metric for each important dimension of the analysis: green amount, green compactness, green isolation, FWEI derived water change, flood extent, flood fragmentation, flood clustering, elevation, and slope.
+
+| Metric group | Final metric | Why it was kept |
+| -------------------- | ------------------ | ----------------------------------------------------------------------- |
+| Green amount | `green_percent` | Represents how much green space is present in each grid cell. |
+| Green configuration | `contig` | Represents the compactness and internal connectedness of green patches. |
+| Green isolation | `enn` | Represents how isolated green patches are from nearby green patches. |
+| Surface-water change | `fwei_change_mean` | Represents the average FWEI-derived surface-water change. |
+| Flood extent | `flood_share` | Represents the share of each cell with detected surface-water increase. |
+| Flood fragmentation | `np_flood` | Represents the number of separate detected flood patches. |
+| Flood clustering | `flood_clumpy` | Represents whether detected water is clustered or scattered. |
+| Topography | `elevation_mean` | Represents average elevation conditions. |
+| Topography | `slope_mean` | Represents average terrain steepness or flatness. |
+
+These selected metrics were then used as the basis for the combined typology analysis. The metric set keeps the main dimensions of the research question while avoiding double counting strongly overlapping variables.
+
+## Final metric maps
+
+The maps below show the final metrics that were kept after the redundancy check. They are shown in tabs so that the spatial patterns can be compared without making the chapter too long.
+
+::: {.panel-tabset}
+
+### Green percent
+
+`green_percent` shows the amount of green space in each grid cell.
+
+{width=49%}
+{width=49%}
+
+### Contiguity
+
+`contig` shows whether green patches are compact and internally connected.
+
+{width=49%}
+{width=49%}
+
+### Nearest-neighbour distance
+
+`enn` shows how isolated green patches are from other green patches.
+
+{width=49%}
+{width=49%}
+
+### FWEI change
+
+`fwei_change_mean` shows the average FWEI-derived surface-water change per grid cell.
+
+{width=49%}
+{width=49%}
+
+### Flood share
+
+`flood_share` shows the proportion of each grid cell where surface-water increase was detected.
+
+{width=49%}
+{width=49%}
+
+### Number of flood patches
+
+`np_flood` shows whether detected water appears as one patch or many separate patches.
+
+{width=49%}
+{width=49%}
+
+### Flood clumpiness
+
+`flood_clumpy` shows whether detected water pixels are clustered or scattered.
+
+{width=49%}
+{width=49%}
+
+### Elevation
+
+`elevation_mean` shows the average elevation per grid cell.
+
+{width=49%}
+{width=49%}
+
+### Slope
+
+`slope_mean` shows the average slope per grid cell.
+
+{width=49%}
+{width=49%}
+
+:::
diff --git a/sections/preliminary.qmd b/sections/preliminary.qmd
new file mode 100644
index 00000000..1ef9305a
--- /dev/null
+++ b/sections/preliminary.qmd
@@ -0,0 +1,28 @@
+# Preliminary maps and research
+
+## Study area selection
+
+The study areas were selected to make the comparison between Delft and Xi’an more balanced. Because the full cities are very different in size, both cases were analysed using the same 10 km by 10 km study-area extent. This allowed the project to compare two contrasting urban contexts without relying on full administrative boundaries.
+
+For Delft, the selected area includes the city itself and parts of the surrounding urban and rural landscape. For Xi’an, the selected area focuses on a central urban section that includes dense urban fabric, green patches, and major open spaces. The aim was not to make the two cities identical, but to apply the same spatial logic to two different urban settings.
+
+::: {layout-ncol=2}
+{#fig-delft-study-area width=100%}
+
+{#fig-xian-study-area width=100%}
+:::
+
+The maps above show the selected study areas in their wider urban context. They also show that the comparison is based on equally sized areas, rather than on the full administrative extent of both cities.
+
+## Delft and Xi’an as comparison cases
+
+Delft and Xi’an represent clearly different urban contexts. Delft is a smaller Dutch city in a low lying delta setting with a dense water network and a highly managed urban landscape. Xi’an is a much larger Chinese city with a different urban structure, land cover pattern, and topographic setting.
+
+For Delft, the 10 km by 10 km study area fully contains the city. This is useful because Delft is relatively compact, so the selected area includes both the municipality and the surrounding landscape. The municipality boundary is shown inside the study area to make clear where Delft itself is located. This also gives context for surrounding canals, green areas, urban edges, and open landscapes, which are relevant for understanding green space configuration and flood related surface water patterns.
+
+For Xi’an, the same 10 km by 10 km study area does not cover the full city. Instead, it captures a central urban subset. This area was selected because it includes the historic city centre and city wall, but also large green and heritage spaces such as Weiyang Palace Relics Park, Hancheng Lake, and Daming Palace National Heritage Park. This makes the area useful for comparing dense urban fabric with larger green and open spaces within the same study area size.
+
+The comparison is therefore not based on the idea that Delft and Xi’an are similar cities. Instead, they are used as contrasting cases. This makes it possible to test whether the same spatial workflow can still identify meaningful green space and flood related patterns in both places.
+
+
+
diff --git a/sections/problem_statement.qmd b/sections/problem_statement.qmd
new file mode 100644
index 00000000..984c06f3
--- /dev/null
+++ b/sections/problem_statement.qmd
@@ -0,0 +1,36 @@
+# Problem statement
+
+## Background
+
+Pluvial flooding is a relevant issue in urban areas. It occurs when intense rainfall creates overland flow or surface ponding before water can enter drainage systems, canals, rivers, or other water bodies [@prokic2019]. In cities, impervious surfaces such as roads, roofs, and pavements can reduce infiltration and increase the amount of water remaining on the surface.
+
+Green infrastructure is often discussed as one way to reduce urban flooding. Green spaces can absorb, store, and slow down rainwater, which may reduce pressure on drainage systems. Stormwater management and flood mitigation are therefore important ecosystem services in green infrastructure planning [@meerow2019]. However, the amount of green space alone is not enough to understand its possible role. The spatial configuration of green space also matters.
+
+For example, one large connected park may function differently from many small isolated green patches. Green spaces can differ in size, compactness, connectivity, and fragmentation. These spatial properties may influence how green areas relate to runoff, storage, and surface water accumulation. Previous work also shows that spatial distribution and connectivity are important in green infrastructure planning [@brom2023].
+
+This project focuses on both the quantity and spatial configuration of green space, and examines how these relate to satellite detected surface water change in two contrasting urban and climatic settings. Xi’an, China, experienced a severe pluvial flood event on 11 August 2023 after extreme rainfall. Delft, the Netherlands, was used as a non event comparison case using dates where major pluvial flooding was not expected in the study area.
+
+## Research gap
+
+Studies linking green infrastructure to flood risk reduction are well established in the literature [@sarabi2022], but cross city comparisons remain difficult. Cities differ in size, climate, data availability, spatial resolution, and land cover structure. Delft and Xi’an are very different in scale and context, so comparing their full administrative areas directly would not be meaningful.
+
+A second challenge was that directly comparable pluvial flood datasets did not exist for both cities. For this reason, the project uses the Flood Water Extraction Index (FWEI) as a shared method for detecting surface water change from Sentinel 2 satellite imagery [@farhadi2024fwei]. For Xi’an, the FWEI before and after comparison captures the surface water change caused by the 11 August 2023 flood event. For Delft, the same method applied to two non event dates serves as a control case, expected to show minimal surface water change. This design, with one city affected by a real flood event and one control case, strengthens the ability to interpret what the FWEI derived signals represent.
+
+## Working assumption
+
+The main assumption is that green space configuration influences how pluvial surface water appears across the urban landscape. More connected and compact green areas are expected to relate differently to surface water than fragmented or isolated green patches.
+
+The project also assumes that this relationship is affected by topography. Therefore, elevation and slope are included in the final typology.
+
+## Research question
+
+How does the spatial configuration of green spaces influence pluvial flooding in urban areas such as Delft and Xi’an?
+
+## Sub questions
+
+1. How can green space configuration and flood related surface water patterns be measured and compared between Delft and Xi’an?
+
+2. What spatial patterns can be identified when green space, flood related, and topographic indicators are combined?
+
+3. How do the identified patterns differ between Delft and Xi’an, and what do they suggest for urban flood related planning?
+
diff --git a/sections/references.qmd b/sections/references.qmd
new file mode 100644
index 00000000..925f7c49
--- /dev/null
+++ b/sections/references.qmd
@@ -0,0 +1,4 @@
+# References {.unnumbered}
+
+::: {#refs}
+:::
diff --git a/sections/reproducibility_statement.qmd b/sections/reproducibility_statement.qmd
new file mode 100644
index 00000000..a241d48a
--- /dev/null
+++ b/sections/reproducibility_statement.qmd
@@ -0,0 +1,46 @@
+# Reproducibility statement
+
+This analysis was designed to be reproducible. All data, scripts, and intermediate outputs are archived so that the complete workflow can be repeated by any researcher with access to the project repository.
+
+## Software
+• R 4.5.3 — terra, sf, landscapemetrics, dplyr, ggplot2, patchwork
+• QGIS 3.x (open source) — FWEI calculation, flood mask sieving, raster clipping, study area mapping
+
+## FWEI Flood Mapping Workflow
+
+The steps below are included here to make the flood mapping workflow transparent and reproducible. Because the FWEI layers were produced through several processing steps in QGIS before being used in R, the final maps alone do not show how the raw Sentinel 2 images were converted into flood change rasters and binary flood masks. Listing the workflow makes it clear how the flood related input was created, what assumptions were made, and how the same method was applied to both Delft and Xi’an.
+
+1. Sentinel 2 Level 2A imagery was downloaded from the Copernicus Browser for Xi’an, using 22 July 2023 and 16 August 2023, and for Delft, using 14 June 2023 and 7 September 2023. Cloud free acquisitions were selected where possible.
+
+2. The Sentinel 2 SAFE folders were extracted, and the 10 m resolution bands B02, B03, B04, and B08 were located.
+
+3. The bands B02, B03, B04, and B08 were loaded into QGIS as raster layers.
+
+4. The visible band mean was calculated in the QGIS Raster Calculator:
+
+ $$
+ MeanVisible = \frac{B02 + B03 + B04}{3}
+ $$
+
+5. FWEI was calculated using the Raster Calculator:
+
+ $$
+ FWEI = \frac{MeanVisible - B08}{MeanVisible + B08}
+ $$
+
+6. The FWEI raster was inspected using Singleband Pseudocolor symbology to check the distribution of water and non water areas.
+
+7. A binary water mask was created using the threshold `FWEI > 0`, where water pixels were given the value 1 and non water pixels were given the value 0.
+
+8. Isolated noisy pixels were removed using the GDAL Sieve tool in QGIS.
+
+9. Steps 3 to 8 were repeated for all four acquisition dates, producing four binary flood masks.
+
+10. For Xi’an, the pre event flood mask was subtracted from the post event flood mask to identify newly inundated pixels. The result was clipped to the Xi’an study area.
+
+11. For Delft, the same before and after comparison was applied as a non event control case. The result was clipped to the Delft study area.
+
+12. The clipped change rasters were loaded into R. A threshold of 0.05 was applied to create the final binary flood mask, which was then used to calculate flood related landscape metrics per grid cell.
+
+
+
diff --git a/sections/typology.qmd b/sections/typology.qmd
new file mode 100644
index 00000000..feeccd00
--- /dev/null
+++ b/sections/typology.qmd
@@ -0,0 +1,106 @@
+# Typology construction
+
+This chapter explains how the combined typologies were constructed and how the four final types were defined.
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+library(knitr)
+library(dplyr)
+
+root <- if (dir.exists("../data")) ".." else "."
+
+read_table_safe <- function(x) {
+ if (file.exists(x)) read.csv(x) else data.frame(note = paste("File not found:", x))
+}
+```
+
+## Purpose of the typology
+
+The typology construction was used to group grid cells with similar combined spatial conditions. Instead of analysing each metric separately, K means clustering was used to combine the selected metrics into four broader spatial types.
+
+The earlier green only typologies were useful for understanding green space structure, but they did not combine the green, flood, and topographic dimensions of the research question. Therefore, the final typology was based on the selected non redundant green, FWEI derived flood, and DEM metrics.
+
+The final green+flood+DEM typology used the following variables:
+
+| Metric group | Metrics used | Meaning |
+| -------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------------------------------ |
+| Green-space configuration | `green_percent`, `contig`, `enn` | Amount, compactness, and isolation of green space. |
+| FWEI-derived flood pattern | `fwei_change_mean`, `flood_share`, `np_flood`, `flood_clumpy` | Magnitude, extent, fragmentation, and clustering of detected surface-water increase. |
+| DEM context | `elevation_mean`, `slope_mean` | Average elevation and terrain steepness. |
+
+A green+flood typology was first created as an intermediate check. However, the green+flood+DEM typology was selected as the final typology because it also includes topographic context. This is relevant because surface water accumulation may be influenced by elevation and slope, not only by green space configuration.
+
+## Clustering method
+
+K-means clustering was used to classify the grid cells into four types. The clustering was shared across Delft and Xi’an, meaning that the two cities were classified using the same type definitions. This makes the typologies directly comparable between the two study areas.
+
+Before clustering, all input variables were standardised. This was necessary because the metrics have different units and numerical ranges. Without standardisation, variables with larger values could dominate the clustering result.
+
+The number of clusters was set to four. The elbow plot was used as a basic check, and four clusters were selected because this produced a manageable number of interpretable spatial types.
+
+{#fig-green-flood-dem-elbow width=80%}
+
+## Final typology overview
+
+The final shared green+flood+DEM typology produced four types. These types were not named automatically by the K-means algorithm. They were interpreted afterwards using their average green, flood, and DEM values.
+
+```{r}
+#| echo: false
+#| message: false
+#| warning: false
+
+final_typology <- read_table_safe(file.path(root, "data/results/final_typology_summary.csv"))
+
+final_typology_small <- final_typology %>%
+ transmute(
+ City = city,
+ Type = type,
+ Cells = n_cells,
+ `Share (%)` = round(percent_cells, 1),
+ `Green (%)` = round(mean_green_percent, 1),
+ Contiguity = round(mean_contig, 3),
+ ENN = round(mean_enn, 1),
+ `FWEI change` = round(mean_fwei_change_mean, 3),
+ `Flood share` = round(mean_flood_share, 3),
+ `Flood patches` = round(mean_np_flood, 2),
+ `Flood clumpiness` = round(mean_flood_clumpy, 3),
+ Elevation = round(mean_elevation_mean, 2),
+ Slope = round(mean_slope_mean, 3)
+ )
+
+knitr::kable(final_typology_small, caption = "Summary of the final shared green+flood+DEM typology.")
+```
+
+| Type | Suggested name | Main character |
+|---|---|---|
+| Type 1 | Low-water / low-flood background | Low detected surface-water increase and limited flood-pattern activity. |
+| Type 2 | Moderate urban background | Moderate green coverage and moderate flood-related values. |
+| Type 3 | Green high-water type | High green coverage, high contiguity, and the strongest detected surface-water values. |
+| Type 4 | Fragmented flood-patch type | Many detected flood patches, with more fragmented surface-water patterns. |
+
+## Delft typology
+
+The green+flood+DEM typology was made for Delft to show how the shared typology classes are distributed across the study area. The map is mainly used here to show the spatial output of the clustering process.
+
+{#fig-delft-final-typology width=100%}
+
+The Delft typology map shows a spatially mixed pattern. The large Type 2 background covers most of the built-up core. Type 3, the type with the highest green coverage and highest flood share, appears in parks, water adjacent open land, and lower lying green zones. Type 1 is concentrated in denser built up areas. Type 4 is scattered and rare.
+
+## Xi’an typology
+
+The green+flood+DEM typology was also made for Xi'an using the same method.
+
+{#fig-xian-final-typology width=100%}
+
+The Xi’an map shows a different typology structure from Delft, with one type covering a larger part of the study area. The narrow Type 1 band along the northern edge of the Xi’an map is a preprocessing artefact caused by a grid alignment issue. It is therefore not interpreted as a meaningful typology zone. The cause of this mismatch issue is discussed in more detail further in the discussion chapter.
+
+## Comparison of typology structure
+
+The shared typology allows Delft and Xi’an to be compared using the same four type definitions. The typology maps show that the two cities have different spatial structures. Delft has a more mixed distribution of types, while Xi’an is more strongly dominated by one type.
+
+The detailed interpretation of these differences, including which typology classes are most relevant for nature based solutions in Delft and Xi’an, is also presented in the next chapter.
+
+
diff --git a/src/01_green_metrics_delft.R b/src/01_green_metrics_delft.R
new file mode 100644
index 00000000..b8a5ec1c
--- /dev/null
+++ b/src/01_green_metrics_delft.R
@@ -0,0 +1,184 @@
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+dir.create("data/results", recursive = TRUE, showWarnings = FALSE)
+
+green_path <- "data/processed/delft_green_binary.tif"
+grid_path <- "data/processed/delft_grid.gpkg"
+fwei_before_path <- "data/processed/delft_fwei_before.tif"
+fwei_after_path <- "data/processed/delft_fwei_after.tif"
+heavy_rain_path <- "data/processed/delft_heavy_rainfall.tif"
+dem_path <- "data/processed/delft_dem.tif"
+
+base_output <- "data/results/delft_green_metrics_base.gpkg"
+flood_output <- "data/results/delft_flood_metrics_base.csv"
+final_output <- "data/results/delft_grid_metrics.gpkg"
+
+flood_threshold <- 0.05
+
+get_green_value <- function(x) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ x <- x[x$class == 1, ]
+ if (nrow(x) == 0) return(NA_real_)
+ mean(x$value, na.rm = TRUE)
+}
+
+get_class_value <- function(x, class_value = 1) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ if ("class" %in% names(x)) {
+ x <- x[x$class == class_value, ]
+ if (nrow(x) == 0) return(NA_real_)
+ }
+ mean(x$value, na.rm = TRUE)
+}
+
+align_raster_to_template <- function(r, template, method = "bilinear") {
+ if (crs(r) != crs(template)) { r <- project(r, template, method = method) } else { r <- resample(r, template, method = method) }
+ return(r)
+}
+
+required_flood_columns <- c("id","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green")
+
+if (file.exists(base_output)) {
+ grid_metrics <- st_read(base_output, quiet = TRUE)
+} else {
+ green <- rast(green_path)
+ grid <- st_read(grid_path, quiet = TRUE)
+ fact <- max(1, round(5 / res(green)[1]))
+ green_5m <- aggregate(green, fact = fact, fun = "modal")
+ grid_v <- vect(grid)
+
+ results <- data.frame(id = grid$id, green_percent = NA_real_, area = NA_real_, gyrate = NA_real_, contig = NA_real_, enn = NA_real_)
+
+ for (i in seq_len(nrow(grid))) {
+ tryCatch({
+ cell <- grid_v[i, ]
+ green_cell <- crop(green_5m, cell)
+ green_cell <- mask(green_cell, cell)
+ vals <- na.omit(values(green_cell))
+ if (length(vals) == 0) next
+ results$green_percent[i] <- mean(vals == 1, na.rm = TRUE) * 100
+ if (!1 %in% vals) next
+ results$area[i] <- get_green_value(lsm_p_area(green_cell))
+ results$gyrate[i] <- get_green_value(lsm_p_gyrate(green_cell))
+ results$contig[i] <- get_green_value(lsm_p_contig(green_cell))
+ results$enn[i] <- get_green_value(lsm_p_enn(green_cell))
+ }, error = function(e) NULL)
+ }
+
+ grid_metrics <- merge(grid, results, by = "id")
+ st_write(grid_metrics, base_output, delete_dsn = TRUE)
+}
+
+grid <- st_read(grid_path, quiet = TRUE)
+grid_v <- vect(grid)
+green <- rast(green_path)
+fact <- max(1, round(5 / res(green)[1]))
+green_5m <- aggregate(green, fact = fact, fun = "modal")
+
+use_existing_flood_cache <- FALSE
+
+if (file.exists(flood_output)) {
+ flood_metrics_cached <- read.csv(flood_output)
+ if (all(required_flood_columns %in% names(flood_metrics_cached))) use_existing_flood_cache <- TRUE
+}
+
+if (use_existing_flood_cache) {
+ flood_metrics_all <- flood_metrics_cached
+} else {
+ fwei_before <- rast(fwei_before_path)
+ fwei_after <- rast(fwei_after_path)
+ fwei_change <- fwei_after - fwei_before
+ fwei_change <- align_raster_to_template(fwei_change, green_5m, method = "bilinear")
+
+ fwei_mean <- terra::extract(fwei_change, grid_v, fun = mean, na.rm = TRUE)
+ names(fwei_mean)[2] <- "fwei_change_mean"
+
+ flood_binary <- classify(fwei_change, rbind(c(-Inf, flood_threshold, 0), c(flood_threshold, Inf, 1)), others = NA)
+
+ flood_share <- terra::extract(flood_binary, grid_v, fun = mean, na.rm = TRUE)
+ names(flood_share)[2] <- "flood_share"
+
+ flood_pattern_metrics <- data.frame(id = grid$id, pland_flood = NA_real_, np_flood = NA_real_, flood_cohesion = NA_real_, flood_clumpy = NA_real_, flood_lpi = NA_real_)
+
+ for (i in seq_len(nrow(grid))) {
+ tryCatch({
+ cell <- grid_v[i, ]
+ flood_cell <- crop(flood_binary, cell)
+ flood_cell <- mask(flood_cell, cell)
+ vals <- na.omit(values(flood_cell))
+ if (length(vals) == 0) next
+ if (!1 %in% vals) {
+ flood_pattern_metrics$pland_flood[i] <- 0
+ flood_pattern_metrics$np_flood[i] <- 0
+ flood_pattern_metrics$flood_lpi[i] <- 0
+ next
+ }
+ flood_pattern_metrics$pland_flood[i] <- get_class_value(lsm_c_pland(flood_cell), 1)
+ flood_pattern_metrics$np_flood[i] <- get_class_value(lsm_c_np(flood_cell), 1)
+ flood_pattern_metrics$flood_cohesion[i] <- get_class_value(lsm_c_cohesion(flood_cell), 1)
+ flood_pattern_metrics$flood_clumpy[i] <- get_class_value(lsm_c_clumpy(flood_cell), 1)
+ flood_pattern_metrics$flood_lpi[i] <- get_class_value(lsm_c_lpi(flood_cell), 1)
+ }, error = function(e) NULL)
+ }
+
+ green_target <- green_5m
+ green_target[green_target != 1] <- NA
+ dist_to_green <- distance(green_target)
+ flood_dist <- mask(dist_to_green, flood_binary, maskvalues = c(0, NA))
+
+ dist_mean <- terra::extract(flood_dist, grid_v, fun = mean, na.rm = TRUE)
+ dist_min <- terra::extract(flood_dist, grid_v, fun = min, na.rm = TRUE)
+
+ names(dist_mean)[2] <- "mean_dist_green"
+ names(dist_min)[2] <- "min_dist_green"
+
+ flood_metrics_all <- data.frame(id = grid$id, fwei_change_mean = fwei_mean$fwei_change_mean, flood_share = flood_share$flood_share)
+ flood_metrics_all <- merge(flood_metrics_all, flood_pattern_metrics, by = "id", all.x = TRUE)
+ flood_metrics_all <- merge(flood_metrics_all, data.frame(id = grid$id, mean_dist_green = dist_mean$mean_dist_green, min_dist_green = dist_min$min_dist_green), by = "id", all.x = TRUE)
+
+ write.csv(flood_metrics_all, flood_output, row.names = FALSE)
+}
+
+grid_metrics <- merge(grid_metrics, flood_metrics_all, by = "id", all.x = TRUE)
+
+if (file.exists(heavy_rain_path)) {
+ heavy_rain <- rast(heavy_rain_path)
+ if (crs(heavy_rain) != crs(grid_v)) heavy_rain <- project(heavy_rain, crs(grid_v), method = "bilinear")
+ heavy_rain <- crop(heavy_rain, grid_v)
+ heavy_rain <- mask(heavy_rain, grid_v)
+
+ rain_mean <- terra::extract(heavy_rain, grid_v, fun = mean, na.rm = TRUE)
+ rain_max <- terra::extract(heavy_rain, grid_v, fun = max, na.rm = TRUE)
+
+ names(rain_mean)[2] <- "heavy_rain_mean"
+ names(rain_max)[2] <- "heavy_rain_max"
+
+ grid_metrics$heavy_rain_mean <- rain_mean$heavy_rain_mean
+ grid_metrics$heavy_rain_max <- rain_max$heavy_rain_max
+}
+
+if (file.exists(dem_path)) {
+ dem <- rast(dem_path)
+ if (crs(dem) != crs(grid_v)) dem <- project(dem, crs(grid_v), method = "bilinear")
+ dem <- crop(dem, grid_v)
+ dem <- mask(dem, grid_v)
+
+ slope <- terrain(dem, v = "slope", unit = "degrees")
+
+ dem_mean <- terra::extract(dem, grid_v, fun = mean, na.rm = TRUE)
+ dem_min <- terra::extract(dem, grid_v, fun = min, na.rm = TRUE)
+ slope_mean <- terra::extract(slope, grid_v, fun = mean, na.rm = TRUE)
+
+ names(dem_mean)[2] <- "elevation_mean"
+ names(dem_min)[2] <- "elevation_min"
+ names(slope_mean)[2] <- "slope_mean"
+
+ grid_metrics$elevation_mean <- dem_mean$elevation_mean
+ grid_metrics$elevation_min <- dem_min$elevation_min
+ grid_metrics$slope_mean <- slope_mean$slope_mean
+}
+
+st_write(grid_metrics, final_output, delete_dsn = TRUE)
+write.csv(st_drop_geometry(grid_metrics), "data/results/delft_grid_metrics.csv", row.names = FALSE)
diff --git a/src/02_green_metrics_xian.R b/src/02_green_metrics_xian.R
new file mode 100644
index 00000000..af6d6a5c
--- /dev/null
+++ b/src/02_green_metrics_xian.R
@@ -0,0 +1,306 @@
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+dir.create("data/results", recursive = TRUE, showWarnings = FALSE)
+
+green_path <- "data/processed/xian_green_binary.tif"
+grid_path <- "data/processed/xian_grid.gpkg"
+fwei_before_path <- "data/processed/xian_fwei_before.tif"
+fwei_after_path <- "data/processed/xian_fwei_after.tif"
+
+dem_path <- "data/processed/xian_dem.tif"
+
+base_output <- "data/results/xian_green_metrics_base.gpkg"
+flood_output <- "data/results/xian_flood_metrics_base.csv"
+final_output <- "data/results/xian_grid_metrics.gpkg"
+
+flood_threshold <- 0.05
+
+get_green_value <- function(x) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ x <- x[x$class == 1, ]
+ if (nrow(x) == 0) return(NA_real_)
+ mean(x$value, na.rm = TRUE)
+}
+
+get_class_value <- function(x, class_value = 1) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ if ("class" %in% names(x)) {
+ x <- x[x$class == class_value, ]
+ if (nrow(x) == 0) return(NA_real_)
+ }
+ mean(x$value, na.rm = TRUE)
+}
+
+align_raster_to_template <- function(r, template, method = "bilinear") {
+ if (crs(r) != crs(template)) {
+ r <- project(r, template, method = method)
+ } else {
+ r <- resample(r, template, method = method)
+ }
+ return(r)
+}
+
+required_flood_columns <- c(
+ "id",
+ "fwei_change_mean",
+ "flood_share",
+ "pland_flood",
+ "np_flood",
+ "flood_cohesion",
+ "flood_clumpy",
+ "flood_lpi",
+ "mean_dist_green",
+ "min_dist_green"
+)
+
+if (file.exists(base_output)) {
+ message("Loading existing Xi'an green metrics...")
+ grid_metrics <- st_read(base_output, quiet = TRUE)
+} else {
+ message("Calculating Xi'an green metrics...")
+
+ green <- rast(green_path)
+ grid <- st_read(grid_path, quiet = TRUE)
+
+ fact <- max(1, round(5 / res(green)[1]))
+ green_5m <- aggregate(green, fact = fact, fun = "modal")
+
+ grid_v <- vect(grid)
+
+ results <- data.frame(
+ id = grid$id,
+ green_percent = NA_real_,
+ area = NA_real_,
+ gyrate = NA_real_,
+ contig = NA_real_,
+ enn = NA_real_
+ )
+
+ for (i in seq_len(nrow(grid))) {
+ message("Xi'an green metrics: ", i, " / ", nrow(grid))
+
+ tryCatch({
+ cell <- grid_v[i, ]
+ green_cell <- crop(green_5m, cell)
+ green_cell <- mask(green_cell, cell)
+
+ vals <- na.omit(values(green_cell))
+ if (length(vals) == 0) next
+
+ results$green_percent[i] <- mean(vals == 1, na.rm = TRUE) * 100
+
+ if (!1 %in% vals) next
+
+ results$area[i] <- get_green_value(lsm_p_area(green_cell))
+ results$gyrate[i] <- get_green_value(lsm_p_gyrate(green_cell))
+ results$contig[i] <- get_green_value(lsm_p_contig(green_cell))
+ results$enn[i] <- get_green_value(lsm_p_enn(green_cell))
+ }, error = function(e) NULL)
+ }
+
+ grid_metrics <- merge(grid, results, by = "id")
+ st_write(grid_metrics, base_output, delete_dsn = TRUE)
+}
+
+grid <- st_read(grid_path, quiet = TRUE)
+grid_v <- vect(grid)
+
+green <- rast(green_path)
+
+fact <- max(1, round(5 / res(green)[1]))
+green_5m <- aggregate(green, fact = fact, fun = "modal")
+
+use_existing_flood_cache <- FALSE
+
+if (file.exists(flood_output)) {
+ flood_metrics_cached <- read.csv(flood_output)
+
+ if (all(required_flood_columns %in% names(flood_metrics_cached))) {
+ use_existing_flood_cache <- TRUE
+ } else {
+ message("Existing Xi'an flood cache is incomplete. Recalculating flood metrics...")
+ }
+}
+
+if (use_existing_flood_cache) {
+ message("Loading existing Xi'an flood metrics...")
+ flood_metrics_all <- flood_metrics_cached
+} else {
+ message("Calculating Xi'an FWEI-derived flood metrics...")
+
+ fwei_before <- rast(fwei_before_path)
+ fwei_after <- rast(fwei_after_path)
+
+ fwei_change <- fwei_after - fwei_before
+ fwei_change <- crop(fwei_change, ext(grid_v))
+ fwei_change <- align_raster_to_template(fwei_change, green_5m, method = "bilinear")
+
+ fwei_mean <- terra::extract(
+ fwei_change,
+ grid_v,
+ fun = mean,
+ na.rm = TRUE
+ )
+
+ names(fwei_mean)[2] <- "fwei_change_mean"
+
+ flood_binary <- classify(
+ fwei_change,
+ rbind(c(-Inf, flood_threshold, 0),
+ c(flood_threshold, Inf, 1)),
+ others = NA
+ )
+
+ flood_share <- terra::extract(
+ flood_binary,
+ grid_v,
+ fun = mean,
+ na.rm = TRUE
+ )
+
+ names(flood_share)[2] <- "flood_share"
+
+ message("Calculating Xi'an FWEI-derived flood-pattern metrics...")
+
+ flood_pattern_metrics <- data.frame(
+ id = grid$id,
+ pland_flood = NA_real_,
+ np_flood = NA_real_,
+ flood_cohesion = NA_real_,
+ flood_clumpy = NA_real_,
+ flood_lpi = NA_real_
+ )
+
+ for (i in seq_len(nrow(grid))) {
+ if (i %% 250 == 0) {
+ message("Xi'an flood metrics: ", i, " / ", nrow(grid))
+ }
+
+ tryCatch({
+ cell <- grid_v[i, ]
+ flood_cell <- crop(flood_binary, cell)
+ flood_cell <- mask(flood_cell, cell)
+
+ vals <- na.omit(values(flood_cell))
+ if (length(vals) == 0) next
+
+ if (!1 %in% vals) {
+ flood_pattern_metrics$pland_flood[i] <- 0
+ flood_pattern_metrics$np_flood[i] <- 0
+ flood_pattern_metrics$flood_lpi[i] <- 0
+ next
+ }
+
+ flood_pattern_metrics$pland_flood[i] <- get_class_value(lsm_c_pland(flood_cell), 1)
+ flood_pattern_metrics$np_flood[i] <- get_class_value(lsm_c_np(flood_cell), 1)
+ flood_pattern_metrics$flood_cohesion[i] <- get_class_value(lsm_c_cohesion(flood_cell), 1)
+ flood_pattern_metrics$flood_clumpy[i] <- get_class_value(lsm_c_clumpy(flood_cell), 1)
+ flood_pattern_metrics$flood_lpi[i] <- get_class_value(lsm_c_lpi(flood_cell), 1)
+ }, error = function(e) NULL)
+ }
+
+ message("Calculating Xi'an distance-to-green metrics...")
+
+ green_target <- green_5m
+ green_target[green_target != 1] <- NA
+
+ dist_to_green <- distance(green_target)
+ flood_dist <- mask(dist_to_green, flood_binary, maskvalues = c(0, NA))
+
+ dist_mean <- terra::extract(
+ flood_dist,
+ grid_v,
+ fun = mean,
+ na.rm = TRUE
+ )
+
+ dist_min <- terra::extract(
+ flood_dist,
+ grid_v,
+ fun = min,
+ na.rm = TRUE
+ )
+
+ names(dist_mean)[2] <- "mean_dist_green"
+ names(dist_min)[2] <- "min_dist_green"
+
+ flood_metrics_all <- data.frame(
+ id = grid$id,
+ fwei_change_mean = fwei_mean$fwei_change_mean,
+ flood_share = flood_share$flood_share
+ )
+
+ flood_metrics_all <- merge(
+ flood_metrics_all,
+ flood_pattern_metrics,
+ by = "id",
+ all.x = TRUE
+ )
+
+ flood_metrics_all <- merge(
+ flood_metrics_all,
+ data.frame(
+ id = grid$id,
+ mean_dist_green = dist_mean$mean_dist_green,
+ min_dist_green = dist_min$min_dist_green
+ ),
+ by = "id",
+ all.x = TRUE
+ )
+
+ write.csv(
+ flood_metrics_all,
+ flood_output,
+ row.names = FALSE
+ )
+
+ message("Xi'an flood metrics saved to: ", flood_output)
+}
+
+grid_metrics <- merge(
+ grid_metrics,
+ flood_metrics_all,
+ by = "id",
+ all.x = TRUE
+)
+
+if (file.exists(dem_path)) {
+ message("Adding Xi'an DEM variables...")
+
+ dem <- rast(dem_path)
+
+ if (crs(dem) != crs(grid_v)) {
+ dem <- project(dem, crs(grid_v), method = "bilinear")
+ }
+
+ dem <- crop(dem, grid_v)
+ dem <- mask(dem, grid_v)
+
+ slope <- terrain(dem, v = "slope", unit = "degrees")
+
+ dem_mean <- terra::extract(dem, grid_v, fun = mean, na.rm = TRUE)
+ dem_min <- terra::extract(dem, grid_v, fun = min, na.rm = TRUE)
+ slope_mean <- terra::extract(slope, grid_v, fun = mean, na.rm = TRUE)
+
+ names(dem_mean)[2] <- "elevation_mean"
+ names(dem_min)[2] <- "elevation_min"
+ names(slope_mean)[2] <- "slope_mean"
+
+ grid_metrics$elevation_mean <- dem_mean$elevation_mean
+ grid_metrics$elevation_min <- dem_min$elevation_min
+ grid_metrics$slope_mean <- slope_mean$slope_mean
+} else {
+ message("No Xi'an DEM found at: ", dem_path)
+}
+
+st_write(grid_metrics, final_output, delete_dsn = TRUE)
+
+write.csv(
+ st_drop_geometry(grid_metrics),
+ "data/results/xian_grid_metrics.csv",
+ row.names = FALSE
+)
+
+message("Xi'an script complete.")
diff --git a/src/03_make_maps_and_plots.R b/src/03_make_maps_and_plots.R
new file mode 100644
index 00000000..6c203a37
--- /dev/null
+++ b/src/03_make_maps_and_plots.R
@@ -0,0 +1,2024 @@
+library(sf)
+library(ggplot2)
+library(dplyr)
+library(readr)
+library(grid)
+
+dir.create("figures/results", recursive = TRUE, showWarnings = FALSE)
+dir.create("data/results", recursive = TRUE, showWarnings = FALSE)
+
+delft <- st_read("data/results/delft_grid_metrics.gpkg", quiet = TRUE)
+xian <- st_read("data/results/xian_grid_metrics.gpkg", quiet = TRUE)
+
+green_metrics <- c(
+ "green_percent",
+ "area",
+ "gyrate",
+ "contig",
+ "enn",
+ "mean_dist_green",
+ "min_dist_green"
+)
+
+green_type_vars <- c(
+ "green_percent",
+ "area",
+ "gyrate",
+ "contig",
+ "enn"
+)
+
+flood_metrics <- c(
+ "fwei_change_mean",
+ "flood_share",
+ "pland_flood",
+ "np_flood",
+ "flood_cohesion",
+ "flood_clumpy",
+ "flood_lpi"
+)
+
+flood_type_vars <- c(
+ "flood_share",
+ "np_flood",
+ "flood_cohesion",
+ "flood_clumpy",
+ "flood_lpi"
+)
+
+optional_metrics <- c(
+ "heavy_rain_mean",
+ "heavy_rain_max",
+ "elevation_mean",
+ "elevation_min",
+ "slope_mean"
+)
+
+context_metric_maps <- c(
+ "green_percent",
+ "fwei_change_mean",
+ "flood_share",
+ "elevation_mean"
+)
+
+green_type_palette <- c(
+ "Type 1" = "#5AA6A9",
+ "Type 2" = "#D06C9F",
+ "Type 3" = "#8797D8",
+ "Type 4" = "#E8B7B0"
+)
+
+flood_type_palette <- c(
+ "Type 1" = "#D8EEF3",
+ "Type 2" = "#7DB9CF",
+ "Type 3" = "#2F7DA3",
+ "Type 4" = "#0B3C5D"
+)
+
+pretty_label <- function(x) {
+ x <- gsub("_", " ", x)
+ x <- gsub("fwei", "FWEI", x)
+ x <- gsub("dem", "DEM", x)
+ x
+}
+
+safe_cor <- function(x, y) {
+ ok <- complete.cases(x, y)
+
+ if (sum(ok) < 3) return(NA_real_)
+ if (sd(x[ok], na.rm = TRUE) == 0) return(NA_real_)
+ if (sd(y[ok], na.rm = TRUE) == 0) return(NA_real_)
+
+ cor(x[ok], y[ok])
+}
+
+read_context_layer <- function(path, target_crs) {
+ if (!file.exists(path)) {
+ message("Context layer missing, skipping: ", path)
+ return(NULL)
+ }
+
+ layer <- st_read(path, quiet = TRUE)
+
+ if (nrow(layer) == 0) {
+ message("Context layer is empty, skipping: ", path)
+ return(NULL)
+ }
+
+ layer <- st_make_valid(layer)
+ layer <- st_transform(layer, target_crs)
+
+ return(layer)
+}
+
+load_city_context <- function(city_name, target_crs) {
+ if (city_name == "Delft") {
+ folder <- "data/context/delft"
+
+ context <- list(
+ buildings = NULL,
+ primary_roads = read_context_layer(file.path(folder, "delft_primary_roads.gpkg"), target_crs),
+ secondary_roads = read_context_layer(file.path(folder, "delft_secondary_roads.gpkg"), target_crs),
+ tertiary_roads = read_context_layer(file.path(folder, "delft_tertiary_roads.gpkg"), target_crs),
+ water = read_context_layer(file.path(folder, "delft_water.gpkg"), target_crs),
+ parks = read_context_layer(file.path(folder, "delft_parks.gpkg"), target_crs),
+ residential = read_context_layer(file.path(folder, "delft_landuse_residential.gpkg"), target_crs),
+ grass = read_context_layer(file.path(folder, "delft_landuse_grass.gpkg"), target_crs),
+ greenfield = read_context_layer(file.path(folder, "delft_landuse_greenfield.gpkg"), target_crs),
+ meadow = read_context_layer(file.path(folder, "delft_landuse_meadow.gpkg"), target_crs),
+ tourism = read_context_layer(file.path(folder, "delft_tourism_attraction.gpkg"), target_crs),
+ municipality_boundary = read_context_layer(file.path(folder, "delft_municipality_boundary.gpkg"), target_crs)
+ )
+ } else {
+ folder <- "data/context/xian"
+
+ context <- list(
+ buildings = NULL,
+ primary_roads = read_context_layer(file.path(folder, "xian_primary_roads.gpkg"), target_crs),
+ secondary_roads = read_context_layer(file.path(folder, "xian_secondary_roads.gpkg"), target_crs),
+ tertiary_roads = read_context_layer(file.path(folder, "xian_tertiary_roads.gpkg"), target_crs),
+ water = read_context_layer(file.path(folder, "xian_water.gpkg"), target_crs),
+ parks = read_context_layer(file.path(folder, "xian_parks.gpkg"), target_crs),
+ residential = read_context_layer(file.path(folder, "xian_landuse_residential.gpkg"), target_crs),
+ grass = read_context_layer(file.path(folder, "xian_landuse_grass.gpkg"), target_crs),
+ greenfield = read_context_layer(file.path(folder, "xian_landuse_greenfield.gpkg"), target_crs),
+ meadow = read_context_layer(file.path(folder, "xian_landuse_meadow.gpkg"), target_crs),
+ tourism = read_context_layer(file.path(folder, "xian_tourism_attraction.gpkg"), target_crs),
+ municipality_boundary = NULL
+ )
+ }
+
+ return(context)
+}
+
+make_study_boundary <- function(data) {
+ boundary <- st_as_sf(st_as_sfc(st_bbox(data)))
+ st_crs(boundary) <- st_crs(data)
+ return(boundary)
+}
+
+add_context_layers <- function(p, context, study_boundary) {
+ if (!is.null(context$residential)) {
+ p <- p + geom_sf(data = context$residential, fill = "#E3DED6", color = NA, alpha = 0.65)
+ }
+
+ if (!is.null(context$grass)) {
+ p <- p + geom_sf(data = context$grass, fill = "#D8EEDC", color = NA, alpha = 0.65)
+ }
+
+ if (!is.null(context$greenfield)) {
+ p <- p + geom_sf(data = context$greenfield, fill = "#CFE8D2", color = NA, alpha = 0.65)
+ }
+
+ if (!is.null(context$meadow)) {
+ p <- p + geom_sf(data = context$meadow, fill = "#E2EBCF", color = NA, alpha = 0.65)
+ }
+
+ if (!is.null(context$parks)) {
+ p <- p + geom_sf(data = context$parks, fill = "#C9E6CF", color = NA, alpha = 0.75)
+ }
+
+ if (!is.null(context$water)) {
+ p <- p + geom_sf(data = context$water, fill = "#A9D7E8", color = "#7EB8CC", linewidth = 0.15, alpha = 0.80)
+ }
+
+ if (!is.null(context$buildings)) {
+ p <- p + geom_sf(data = context$buildings, fill = "#D6D1C8", color = NA, alpha = 0.65)
+ }
+
+ if (!is.null(context$tourism)) {
+ p <- p + geom_sf(data = context$tourism, fill = "#C8B5D8", color = "#8E77A8", linewidth = 0.15, alpha = 0.65)
+ }
+
+ if (!is.null(context$tertiary_roads)) {
+ p <- p + geom_sf(data = context$tertiary_roads, color = "#D2D9DF", linewidth = 0.18, alpha = 0.75)
+ }
+
+ if (!is.null(context$secondary_roads)) {
+ p <- p + geom_sf(data = context$secondary_roads, color = "#B8C2CC", linewidth = 0.28, alpha = 0.80)
+ }
+
+ if (!is.null(context$primary_roads)) {
+ p <- p + geom_sf(data = context$primary_roads, color = "#9CA8B3", linewidth = 0.42, alpha = 0.85)
+ }
+
+ if (!is.null(context$municipality_boundary)) {
+ p <- p + geom_sf(
+ data = context$municipality_boundary,
+ fill = NA,
+ color = "#7FA39A",
+ linewidth = 0.45,
+ linetype = "dashed",
+ alpha = 0.85
+ )
+ }
+
+ p <- p + geom_sf(
+ data = study_boundary,
+ fill = NA,
+ color = "#6F7378",
+ linewidth = 0.65,
+ linetype = "dashed",
+ alpha = 1
+ )
+
+ return(p)
+}
+
+prepare_cluster_values <- function(data, vars) {
+ available_vars <- vars[vars %in% names(data)]
+
+ if (length(available_vars) == 0) {
+ stop("None of the clustering variables are available.")
+ }
+
+ values <- data %>%
+ st_drop_geometry() %>%
+ select(all_of(available_vars))
+
+ for (v in names(values)) {
+ values[[v]][is.nan(values[[v]])] <- NA
+ values[[v]][is.infinite(values[[v]])] <- NA
+ values[[v]][is.na(values[[v]])] <- 0
+ }
+
+ values_scaled <- scale(values)
+
+ return(list(
+ values = values,
+ values_scaled = values_scaled,
+ available_vars = available_vars
+ ))
+}
+
+prepare_combined_cluster_values <- function(delft_data, xian_data, vars) {
+ available_vars <- vars[
+ vars %in% names(delft_data) &
+ vars %in% names(xian_data)
+ ]
+
+ if (length(available_vars) == 0) {
+ stop("None of the shared clustering variables are available.")
+ }
+
+ delft_values <- delft_data %>%
+ st_drop_geometry() %>%
+ select(all_of(available_vars)) %>%
+ mutate(city = "Delft", row_id = row_number())
+
+ xian_values <- xian_data %>%
+ st_drop_geometry() %>%
+ select(all_of(available_vars)) %>%
+ mutate(city = "Xi'an", row_id = row_number())
+
+ combined <- bind_rows(delft_values, xian_values)
+
+ values <- combined %>%
+ select(all_of(available_vars))
+
+ for (v in names(values)) {
+ values[[v]][is.nan(values[[v]])] <- NA
+ values[[v]][is.infinite(values[[v]])] <- NA
+ values[[v]][is.na(values[[v]])] <- 0
+ }
+
+ values_scaled <- scale(values)
+
+ return(list(
+ combined = combined,
+ values = values,
+ values_scaled = values_scaled,
+ available_vars = available_vars
+ ))
+}
+
+make_continuous_map <- function(data, column, title, filename, palette_type = "green") {
+ if (!column %in% names(data)) {
+ message("Skipping missing column: ", column)
+ return(NULL)
+ }
+
+ palette <- switch(
+ palette_type,
+ "green" = c("#F7FCF5", "#C7E9C0", "#74C476", "#238B45", "#00441B"),
+ "flood" = c("#F7FBFF", "#C6DBEF", "#6BAED6", "#2171B5", "#08306B"),
+ "dem" = c("#F7FCB9", "#ADDD8E", "#31A354", "#756BB1", "#54278F"),
+ c("#F7F7F7", "#CCCCCC", "#969696", "#525252")
+ )
+
+ p <- ggplot(data) +
+ geom_sf(aes(fill = .data[[column]]), color = NA) +
+ scale_fill_gradientn(colors = palette, na.value = "grey90") +
+ labs(
+ title = title,
+ fill = pretty_label(column)
+ ) +
+ theme_void() +
+ theme(
+ plot.title = element_text(face = "bold", size = 14),
+ legend.title = element_text(size = 9),
+ legend.text = element_text(size = 8)
+ )
+
+ ggsave(filename, p, width = 8, height = 6, dpi = 300)
+ return(p)
+}
+
+make_continuous_context_map <- function(data, context, column, title, filename, palette_type = "green") {
+ if (!column %in% names(data)) {
+ message("Skipping missing column: ", column)
+ return(NULL)
+ }
+
+ palette <- switch(
+ palette_type,
+ "green" = c("#F7FCF5", "#C7E9C0", "#74C476", "#238B45", "#00441B"),
+ "flood" = c("#F7FBFF", "#C6DBEF", "#6BAED6", "#2171B5", "#08306B"),
+ "dem" = c("#F7FCB9", "#ADDD8E", "#31A354", "#756BB1", "#54278F"),
+ c("#F7F7F7", "#CCCCCC", "#969696", "#525252")
+ )
+
+ study_boundary <- make_study_boundary(data)
+
+ p <- ggplot()
+ p <- add_context_layers(p, context, study_boundary)
+
+ p <- p +
+ geom_sf(
+ data = data,
+ aes(fill = .data[[column]]),
+ color = NA,
+ alpha = 0.62
+ ) +
+ scale_fill_gradientn(colors = palette, na.value = NA) +
+ geom_sf(
+ data = study_boundary,
+ fill = NA,
+ color = "#6F7378",
+ linewidth = 0.70,
+ linetype = "dashed"
+ ) +
+ labs(
+ title = title,
+ fill = pretty_label(column)
+ ) +
+ theme_void() +
+ theme(
+ plot.title = element_text(face = "bold", size = 14),
+ legend.title = element_text(size = 9),
+ legend.text = element_text(size = 8),
+ plot.background = element_rect(fill = "white", color = NA)
+ )
+
+ ggsave(filename, p, width = 8, height = 6, dpi = 300)
+ return(p)
+}
+
+make_type_map <- function(data, type_column, title, filename, palette) {
+ if (!type_column %in% names(data)) {
+ message("Skipping missing type column: ", type_column)
+ return(NULL)
+ }
+
+ p <- ggplot(data) +
+ geom_sf(aes(fill = .data[[type_column]]), color = NA) +
+ scale_fill_manual(values = palette, drop = FALSE, na.value = "grey90") +
+ labs(
+ title = title,
+ fill = "Type"
+ ) +
+ theme_void() +
+ theme(
+ plot.title = element_text(face = "bold", size = 15),
+ legend.title = element_text(size = 9),
+ legend.text = element_text(size = 8)
+ )
+
+ ggsave(filename, p, width = 8, height = 6, dpi = 300)
+ return(p)
+}
+
+make_type_context_map <- function(data, context, type_column, title, filename, palette) {
+ if (!type_column %in% names(data)) {
+ message("Skipping missing type column: ", type_column)
+ return(NULL)
+ }
+
+ study_boundary <- make_study_boundary(data)
+
+ p <- ggplot()
+ p <- add_context_layers(p, context, study_boundary)
+
+ p <- p +
+ geom_sf(
+ data = data,
+ aes(fill = .data[[type_column]]),
+ color = NA,
+ alpha = 0.70
+ ) +
+ scale_fill_manual(values = palette, drop = FALSE, na.value = NA) +
+ geom_sf(
+ data = study_boundary,
+ fill = NA,
+ color = "#6F7378",
+ linewidth = 0.70,
+ linetype = "dashed"
+ ) +
+ labs(
+ title = title,
+ fill = "Type"
+ ) +
+ theme_void() +
+ theme(
+ plot.title = element_text(face = "bold", size = 14),
+ legend.title = element_text(size = 9),
+ legend.text = element_text(size = 8),
+ plot.background = element_rect(fill = "white", color = NA)
+ )
+
+ ggsave(filename, p, width = 8, height = 6, dpi = 300)
+ return(p)
+}
+
+make_donut <- function(data, type_column, title, filename, palette) {
+ if (!type_column %in% names(data)) {
+ message("Skipping missing donut column: ", type_column)
+ return(NULL)
+ }
+
+ counts <- data %>%
+ st_drop_geometry() %>%
+ count(.data[[type_column]], name = "n_cells") %>%
+ rename(type = 1) %>%
+ mutate(
+ percent = n_cells / sum(n_cells) * 100,
+ label = ifelse(
+ percent < 2,
+ paste0(round(percent, 1), "%"),
+ paste0(round(percent), "%")
+ )
+ )
+
+ p <- ggplot(counts, aes(x = 2, y = percent, fill = type)) +
+ geom_col(width = 1, color = "white") +
+ coord_polar(theta = "y") +
+ xlim(0.5, 2.5) +
+ geom_text(
+ aes(label = label),
+ position = position_stack(vjust = 0.5),
+ size = 3.5
+ ) +
+ scale_fill_manual(values = palette, drop = FALSE) +
+ labs(
+ title = title,
+ fill = "Type"
+ ) +
+ theme_void() +
+ theme(
+ plot.title = element_text(face = "bold", size = 16, hjust = 0.5),
+ legend.title = element_text(size = 9),
+ legend.text = element_text(size = 8)
+ )
+
+ ggsave(filename, p, width = 6, height = 6, dpi = 300)
+ return(p)
+}
+
+make_overview <- function(map_plot, donut_plot, filename) {
+ if (is.null(map_plot) || is.null(donut_plot)) {
+ message("Skipping overview because one plot is missing: ", filename)
+ return(NULL)
+ }
+
+ png(filename, width = 3200, height = 1500, res = 300)
+
+ grid.newpage()
+
+ pushViewport(
+ viewport(
+ layout = grid.layout(
+ nrow = 1,
+ ncol = 2,
+ widths = unit(c(1.25, 1), "null")
+ )
+ )
+ )
+
+ print(
+ map_plot,
+ vp = viewport(layout.pos.row = 1, layout.pos.col = 1)
+ )
+
+ print(
+ donut_plot,
+ vp = viewport(layout.pos.row = 1, layout.pos.col = 2)
+ )
+
+ dev.off()
+}
+
+make_elbow_plot <- function(data, vars, city_name, output_png, output_csv) {
+ prepared <- prepare_cluster_values(data, vars)
+ values_scaled <- prepared$values_scaled
+
+ set.seed(123)
+
+ elbow <- data.frame(
+ k = 2:8,
+ within_cluster_ss = NA_real_
+ )
+
+ for (i in seq_along(elbow$k)) {
+ km <- kmeans(
+ values_scaled,
+ centers = elbow$k[i],
+ nstart = 25,
+ iter.max = 1000,
+ algorithm = "MacQueen"
+ )
+
+ elbow$within_cluster_ss[i] <- km$tot.withinss
+ }
+
+ p <- ggplot(elbow, aes(x = k, y = within_cluster_ss)) +
+ geom_line() +
+ geom_point(size = 2.5) +
+ scale_x_continuous(breaks = 2:8) +
+ labs(
+ title = paste("Elbow method for", city_name),
+ x = "Number of clusters (k)",
+ y = "Total within-cluster sum of squares"
+ ) +
+ theme_minimal() +
+ theme(
+ plot.title = element_text(face = "bold", size = 14)
+ )
+
+ ggsave(output_png, p, width = 7, height = 5, dpi = 300)
+ write_csv(elbow, output_csv)
+
+ return(elbow)
+}
+
+make_combined_elbow_plot <- function(delft_data, xian_data, vars, title, output_png, output_csv) {
+ prepared <- prepare_combined_cluster_values(delft_data, xian_data, vars)
+ values_scaled <- prepared$values_scaled
+
+ set.seed(123)
+
+ elbow <- data.frame(
+ k = 2:8,
+ within_cluster_ss = NA_real_
+ )
+
+ for (i in seq_along(elbow$k)) {
+ km <- kmeans(
+ values_scaled,
+ centers = elbow$k[i],
+ nstart = 25,
+ iter.max = 1000,
+ algorithm = "MacQueen"
+ )
+
+ elbow$within_cluster_ss[i] <- km$tot.withinss
+ }
+
+ p <- ggplot(elbow, aes(x = k, y = within_cluster_ss)) +
+ geom_line() +
+ geom_point(size = 2.5) +
+ scale_x_continuous(breaks = 2:8) +
+ labs(
+ title = title,
+ x = "Number of clusters (k)",
+ y = "Total within-cluster sum of squares"
+ ) +
+ theme_minimal() +
+ theme(
+ plot.title = element_text(face = "bold", size = 14)
+ )
+
+ ggsave(output_png, p, width = 7, height = 5, dpi = 300)
+ write_csv(elbow, output_csv)
+
+ return(elbow)
+}
+
+make_cluster_type <- function(data, vars, type_column, centers = 4, seed = 123) {
+ prepared <- prepare_cluster_values(data, vars)
+
+ set.seed(seed)
+
+ km <- kmeans(
+ prepared$values_scaled,
+ centers = centers,
+ nstart = 25,
+ iter.max = 1000,
+ algorithm = "MacQueen"
+ )
+
+ data[[type_column]] <- factor(
+ paste0("Type ", km$cluster),
+ levels = paste0("Type ", 1:centers)
+ )
+
+ centers_scaled <- as.data.frame(km$centers)
+ centers_scaled$type <- paste0("Type ", seq_len(nrow(centers_scaled)))
+ centers_scaled <- centers_scaled %>%
+ select(type, everything())
+
+ raw_values <- prepared$values
+ raw_values[[type_column]] <- data[[type_column]]
+
+ centers_raw <- raw_values %>%
+ group_by(.data[[type_column]]) %>%
+ summarise(
+ across(
+ everything(),
+ ~ mean(.x, na.rm = TRUE)
+ ),
+ .groups = "drop"
+ ) %>%
+ rename(type = 1)
+
+ return(list(
+ data = data,
+ centers_scaled = centers_scaled,
+ centers_raw = centers_raw
+ ))
+}
+
+make_shared_cluster_type <- function(delft_data, xian_data, vars, type_column, centers = 4, seed = 123) {
+ prepared <- prepare_combined_cluster_values(delft_data, xian_data, vars)
+
+ set.seed(seed)
+
+ km <- kmeans(
+ prepared$values_scaled,
+ centers = centers,
+ nstart = 25,
+ iter.max = 1000,
+ algorithm = "MacQueen"
+ )
+
+ combined <- prepared$combined
+ combined[[type_column]] <- factor(
+ paste0("Type ", km$cluster),
+ levels = paste0("Type ", 1:centers)
+ )
+
+ delft_types <- combined %>%
+ filter(city == "Delft") %>%
+ arrange(row_id) %>%
+ pull(.data[[type_column]])
+
+ xian_types <- combined %>%
+ filter(city == "Xi'an") %>%
+ arrange(row_id) %>%
+ pull(.data[[type_column]])
+
+ delft_data[[type_column]] <- factor(delft_types, levels = paste0("Type ", 1:centers))
+ xian_data[[type_column]] <- factor(xian_types, levels = paste0("Type ", 1:centers))
+
+ centers_scaled <- as.data.frame(km$centers)
+ centers_scaled$type <- paste0("Type ", seq_len(nrow(centers_scaled)))
+ centers_scaled <- centers_scaled %>%
+ select(type, everything())
+
+ raw_values <- prepared$values
+ raw_values[[type_column]] <- combined[[type_column]]
+
+ centers_raw <- raw_values %>%
+ group_by(.data[[type_column]]) %>%
+ summarise(
+ across(
+ everything(),
+ ~ mean(.x, na.rm = TRUE)
+ ),
+ .groups = "drop"
+ ) %>%
+ rename(type = 1)
+
+ return(list(
+ delft_data = delft_data,
+ xian_data = xian_data,
+ centers_scaled = centers_scaled,
+ centers_raw = centers_raw
+ ))
+}
+
+summarise_by_type <- function(data, city_name, type_column) {
+ summary_metrics <- c(
+ "green_percent",
+ "area",
+ "gyrate",
+ "contig",
+ "enn",
+ "fwei_change_mean",
+ "flood_share",
+ "pland_flood",
+ "np_flood",
+ "flood_cohesion",
+ "flood_clumpy",
+ "flood_lpi",
+ "mean_dist_green",
+ "min_dist_green",
+ "elevation_mean",
+ "elevation_min",
+ "slope_mean"
+ )
+
+ available_metrics <- summary_metrics[summary_metrics %in% names(data)]
+
+ output <- data %>%
+ st_drop_geometry() %>%
+ mutate(city = city_name) %>%
+ group_by(city, .data[[type_column]]) %>%
+ summarise(
+ n_cells = n(),
+ across(
+ all_of(available_metrics),
+ ~ mean(.x, na.rm = TRUE),
+ .names = "mean_{.col}"
+ ),
+ .groups = "drop"
+ ) %>%
+ rename(type = 2) %>%
+ group_by(city) %>%
+ mutate(percent_cells = n_cells / sum(n_cells) * 100) %>%
+ ungroup() %>%
+ select(city, type, n_cells, percent_cells, everything())
+
+ return(output)
+}
+
+make_correlations <- function(data, city_name) {
+ metrics <- green_metrics[green_metrics %in% names(data)]
+ targets <- flood_metrics[flood_metrics %in% names(data)]
+
+ output <- data.frame()
+
+ for (target in targets) {
+ for (metric in metrics) {
+ value <- safe_cor(data[[metric]], data[[target]])
+
+ output <- rbind(
+ output,
+ data.frame(
+ city = city_name,
+ metric = metric,
+ target = target,
+ correlation = value
+ )
+ )
+ }
+ }
+
+ return(output)
+}
+
+message("Loading context layers...")
+
+delft_context <- load_city_context("Delft", st_crs(delft))
+xian_context <- load_city_context("Xi'an", st_crs(xian))
+
+message("Creating continuous metric maps...")
+
+for (m in green_metrics) {
+ make_continuous_map(
+ delft,
+ m,
+ paste("Delft", pretty_label(m)),
+ paste0("figures/results/delft_", m, ".png"),
+ "green"
+ )
+
+ make_continuous_map(
+ xian,
+ m,
+ paste("Xi'an", pretty_label(m)),
+ paste0("figures/results/xian_", m, ".png"),
+ "green"
+ )
+}
+
+for (m in flood_metrics) {
+ make_continuous_map(
+ delft,
+ m,
+ paste("Delft", pretty_label(m)),
+ paste0("figures/results/delft_", m, ".png"),
+ "flood"
+ )
+
+ make_continuous_map(
+ xian,
+ m,
+ paste("Xi'an", pretty_label(m)),
+ paste0("figures/results/xian_", m, ".png"),
+ "flood"
+ )
+}
+
+for (m in optional_metrics) {
+ make_continuous_map(
+ delft,
+ m,
+ paste("Delft", pretty_label(m)),
+ paste0("figures/results/delft_", m, ".png"),
+ "dem"
+ )
+
+ make_continuous_map(
+ xian,
+ m,
+ paste("Xi'an", pretty_label(m)),
+ paste0("figures/results/xian_", m, ".png"),
+ "dem"
+ )
+}
+
+message("Creating contextual continuous metric maps...")
+
+for (m in context_metric_maps) {
+ palette_type <- ifelse(
+ m %in% c("fwei_change_mean", "flood_share"),
+ "flood",
+ ifelse(m %in% c("elevation_mean", "elevation_min", "slope_mean"), "dem", "green")
+ )
+
+ make_continuous_context_map(
+ delft,
+ delft_context,
+ m,
+ paste("Delft", pretty_label(m), "with urban context"),
+ paste0("figures/results/delft_", m, "_context.png"),
+ palette_type
+ )
+
+ make_continuous_context_map(
+ xian,
+ xian_context,
+ m,
+ paste("Xi'an", pretty_label(m), "with urban context"),
+ paste0("figures/results/xian_", m, "_context.png"),
+ palette_type
+ )
+}
+
+message("Creating correlation table and plot...")
+
+cor_all <- bind_rows(
+ make_correlations(delft, "Delft"),
+ make_correlations(xian, "Xi'an")
+)
+
+write_csv(
+ cor_all,
+ "data/results/correlations_all.csv"
+)
+
+p_cor <- ggplot(cor_all, aes(x = metric, y = correlation, fill = city)) +
+ geom_col(position = "dodge") +
+ geom_hline(yintercept = 0) +
+ coord_flip() +
+ facet_wrap(~ target) +
+ labs(
+ title = "Correlation between green-space metrics and FWEI-derived flood-pattern indicators",
+ x = "Green-space metric",
+ y = "Pearson correlation",
+ fill = "City"
+ ) +
+ theme_minimal() +
+ theme(
+ plot.title = element_text(face = "bold", size = 14),
+ strip.text = element_text(face = "bold"),
+ axis.text.y = element_text(size = 8)
+ )
+
+ggsave(
+ "figures/results/correlation_overview.png",
+ p_cor,
+ width = 12,
+ height = 8,
+ dpi = 300
+)
+
+message("Creating elbow method plots...")
+
+make_elbow_plot(
+ delft,
+ green_type_vars,
+ "Delft city-specific green-space types",
+ "figures/results/delft_green_type_elbow.png",
+ "data/results/delft_green_type_elbow.csv"
+)
+
+make_elbow_plot(
+ xian,
+ green_type_vars,
+ "Xi'an city-specific green-space types",
+ "figures/results/xian_green_type_elbow.png",
+ "data/results/xian_green_type_elbow.csv"
+)
+
+make_elbow_plot(
+ delft,
+ flood_type_vars,
+ "Delft city-specific flood-pattern types",
+ "figures/results/delft_flood_pattern_type_elbow.png",
+ "data/results/delft_flood_pattern_type_elbow.csv"
+)
+
+make_elbow_plot(
+ xian,
+ flood_type_vars,
+ "Xi'an city-specific flood-pattern types",
+ "figures/results/xian_flood_pattern_type_elbow.png",
+ "data/results/xian_flood_pattern_type_elbow.csv"
+)
+
+make_combined_elbow_plot(
+ delft,
+ xian,
+ green_type_vars,
+ "Shared green-space types for Delft and Xi'an",
+ "figures/results/shared_green_type_elbow.png",
+ "data/results/shared_green_type_elbow.csv"
+)
+
+make_combined_elbow_plot(
+ delft,
+ xian,
+ flood_type_vars,
+ "Shared flood-pattern types for Delft and Xi'an",
+ "figures/results/shared_flood_pattern_type_elbow.png",
+ "data/results/shared_flood_pattern_type_elbow.csv"
+)
+
+message("Creating city-specific green-space types...")
+
+delft_green_cluster <- make_cluster_type(
+ delft,
+ green_type_vars,
+ "green_type",
+ centers = 4
+)
+
+xian_green_cluster <- make_cluster_type(
+ xian,
+ green_type_vars,
+ "green_type",
+ centers = 4
+)
+
+delft_typology <- delft_green_cluster$data
+xian_typology <- xian_green_cluster$data
+
+delft_typology$typology <- delft_typology$green_type
+xian_typology$typology <- xian_typology$green_type
+
+write_csv(
+ delft_green_cluster$centers_raw,
+ "data/results/delft_green_type_characteristics.csv"
+)
+
+write_csv(
+ xian_green_cluster$centers_raw,
+ "data/results/xian_green_type_characteristics.csv"
+)
+
+write_csv(
+ delft_green_cluster$centers_scaled,
+ "data/results/delft_green_type_cluster_centres_scaled.csv"
+)
+
+write_csv(
+ xian_green_cluster$centers_scaled,
+ "data/results/xian_green_type_cluster_centres_scaled.csv"
+)
+
+message("Creating city-specific flood-pattern types...")
+
+delft_flood_cluster <- make_cluster_type(
+ delft_typology,
+ flood_type_vars,
+ "flood_pattern_type",
+ centers = 4
+)
+
+xian_flood_cluster <- make_cluster_type(
+ xian_typology,
+ flood_type_vars,
+ "flood_pattern_type",
+ centers = 4
+)
+
+delft_typology <- delft_flood_cluster$data
+xian_typology <- xian_flood_cluster$data
+
+write_csv(
+ delft_flood_cluster$centers_raw,
+ "data/results/delft_flood_pattern_type_characteristics.csv"
+)
+
+write_csv(
+ xian_flood_cluster$centers_raw,
+ "data/results/xian_flood_pattern_type_characteristics.csv"
+)
+
+write_csv(
+ delft_flood_cluster$centers_scaled,
+ "data/results/delft_flood_pattern_type_cluster_centres_scaled.csv"
+)
+
+write_csv(
+ xian_flood_cluster$centers_scaled,
+ "data/results/xian_flood_pattern_type_cluster_centres_scaled.csv"
+)
+
+message("Creating shared green-space types...")
+
+shared_green_cluster <- make_shared_cluster_type(
+ delft_typology,
+ xian_typology,
+ green_type_vars,
+ "shared_green_type",
+ centers = 4
+)
+
+delft_typology <- shared_green_cluster$delft_data
+xian_typology <- shared_green_cluster$xian_data
+
+write_csv(
+ shared_green_cluster$centers_raw,
+ "data/results/shared_green_type_characteristics.csv"
+)
+
+write_csv(
+ shared_green_cluster$centers_scaled,
+ "data/results/shared_green_type_cluster_centres_scaled.csv"
+)
+
+message("Creating shared flood-pattern types...")
+
+shared_flood_cluster <- make_shared_cluster_type(
+ delft_typology,
+ xian_typology,
+ flood_type_vars,
+ "shared_flood_pattern_type",
+ centers = 4
+)
+
+delft_typology <- shared_flood_cluster$delft_data
+xian_typology <- shared_flood_cluster$xian_data
+
+write_csv(
+ shared_flood_cluster$centers_raw,
+ "data/results/shared_flood_pattern_type_characteristics.csv"
+)
+
+write_csv(
+ shared_flood_cluster$centers_scaled,
+ "data/results/shared_flood_pattern_type_cluster_centres_scaled.csv"
+)
+
+message("Saving typology GeoPackages...")
+
+st_write(
+ delft_typology,
+ "data/results/delft_typology.gpkg",
+ delete_dsn = TRUE
+)
+
+st_write(
+ xian_typology,
+ "data/results/xian_typology.gpkg",
+ delete_dsn = TRUE
+)
+
+message("Creating city-specific green-space type maps, donuts, and overviews...")
+
+delft_green_map <- make_type_map(
+ delft_typology,
+ "green_type",
+ "Delft city-specific green-space types",
+ "figures/results/delft_typology.png",
+ green_type_palette
+)
+
+xian_green_map <- make_type_map(
+ xian_typology,
+ "green_type",
+ "Xi'an city-specific green-space types",
+ "figures/results/xian_typology.png",
+ green_type_palette
+)
+
+delft_green_context_map <- make_type_context_map(
+ delft_typology,
+ delft_context,
+ "green_type",
+ "Delft city-specific green-space types with urban context",
+ "figures/results/delft_green_type_context.png",
+ green_type_palette
+)
+
+xian_green_context_map <- make_type_context_map(
+ xian_typology,
+ xian_context,
+ "green_type",
+ "Xi'an city-specific green-space types with urban context",
+ "figures/results/xian_green_type_context.png",
+ green_type_palette
+)
+
+delft_green_donut <- make_donut(
+ delft_typology,
+ "green_type",
+ "Delft",
+ "figures/results/delft_green_type_donut.png",
+ green_type_palette
+)
+
+xian_green_donut <- make_donut(
+ xian_typology,
+ "green_type",
+ "Xi'an",
+ "figures/results/xian_green_type_donut.png",
+ green_type_palette
+)
+
+make_overview(
+ delft_green_map,
+ delft_green_donut,
+ "figures/results/delft_green_type_overview.png"
+)
+
+make_overview(
+ xian_green_map,
+ xian_green_donut,
+ "figures/results/xian_green_type_overview.png"
+)
+
+make_overview(
+ delft_green_context_map,
+ delft_green_donut,
+ "figures/results/delft_green_type_context_overview.png"
+)
+
+make_overview(
+ xian_green_context_map,
+ xian_green_donut,
+ "figures/results/xian_green_type_context_overview.png"
+)
+
+message("Creating shared green-space type maps, donuts, and overviews...")
+
+delft_shared_green_map <- make_type_map(
+ delft_typology,
+ "shared_green_type",
+ "Delft shared green-space types",
+ "figures/results/delft_shared_green_type.png",
+ green_type_palette
+)
+
+xian_shared_green_map <- make_type_map(
+ xian_typology,
+ "shared_green_type",
+ "Xi'an shared green-space types",
+ "figures/results/xian_shared_green_type.png",
+ green_type_palette
+)
+
+delft_shared_green_context_map <- make_type_context_map(
+ delft_typology,
+ delft_context,
+ "shared_green_type",
+ "Delft shared green-space types with urban context",
+ "figures/results/delft_shared_green_type_context.png",
+ green_type_palette
+)
+
+xian_shared_green_context_map <- make_type_context_map(
+ xian_typology,
+ xian_context,
+ "shared_green_type",
+ "Xi'an shared green-space types with urban context",
+ "figures/results/xian_shared_green_type_context.png",
+ green_type_palette
+)
+
+delft_shared_green_donut <- make_donut(
+ delft_typology,
+ "shared_green_type",
+ "Delft",
+ "figures/results/delft_shared_green_type_donut.png",
+ green_type_palette
+)
+
+xian_shared_green_donut <- make_donut(
+ xian_typology,
+ "shared_green_type",
+ "Xi'an",
+ "figures/results/xian_shared_green_type_donut.png",
+ green_type_palette
+)
+
+make_overview(
+ delft_shared_green_map,
+ delft_shared_green_donut,
+ "figures/results/delft_shared_green_type_overview.png"
+)
+
+make_overview(
+ xian_shared_green_map,
+ xian_shared_green_donut,
+ "figures/results/xian_shared_green_type_overview.png"
+)
+
+make_overview(
+ delft_shared_green_context_map,
+ delft_shared_green_donut,
+ "figures/results/delft_shared_green_type_context_overview.png"
+)
+
+make_overview(
+ xian_shared_green_context_map,
+ xian_shared_green_donut,
+ "figures/results/xian_shared_green_type_context_overview.png"
+)
+
+message("Creating city-specific flood-pattern type maps, donuts, and overviews...")
+
+delft_flood_type_map <- make_type_map(
+ delft_typology,
+ "flood_pattern_type",
+ "Delft city-specific FWEI-derived flood-pattern types",
+ "figures/results/delft_flood_pattern_type.png",
+ flood_type_palette
+)
+
+xian_flood_type_map <- make_type_map(
+ xian_typology,
+ "flood_pattern_type",
+ "Xi'an city-specific FWEI-derived flood-pattern types",
+ "figures/results/xian_flood_pattern_type.png",
+ flood_type_palette
+)
+
+delft_flood_context_map <- make_type_context_map(
+ delft_typology,
+ delft_context,
+ "flood_pattern_type",
+ "Delft city-specific FWEI-derived flood-pattern types with urban context",
+ "figures/results/delft_flood_pattern_type_context.png",
+ flood_type_palette
+)
+
+xian_flood_context_map <- make_type_context_map(
+ xian_typology,
+ xian_context,
+ "flood_pattern_type",
+ "Xi'an city-specific FWEI-derived flood-pattern types with urban context",
+ "figures/results/xian_flood_pattern_type_context.png",
+ flood_type_palette
+)
+
+delft_flood_type_donut <- make_donut(
+ delft_typology,
+ "flood_pattern_type",
+ "Delft",
+ "figures/results/delft_flood_pattern_type_donut.png",
+ flood_type_palette
+)
+
+xian_flood_type_donut <- make_donut(
+ xian_typology,
+ "flood_pattern_type",
+ "Xi'an",
+ "figures/results/xian_flood_pattern_type_donut.png",
+ flood_type_palette
+)
+
+make_overview(
+ delft_flood_type_map,
+ delft_flood_type_donut,
+ "figures/results/delft_flood_pattern_type_overview.png"
+)
+
+make_overview(
+ xian_flood_type_map,
+ xian_flood_type_donut,
+ "figures/results/xian_flood_pattern_type_overview.png"
+)
+
+make_overview(
+ delft_flood_context_map,
+ delft_flood_type_donut,
+ "figures/results/delft_flood_pattern_type_context_overview.png"
+)
+
+make_overview(
+ xian_flood_context_map,
+ xian_flood_type_donut,
+ "figures/results/xian_flood_pattern_type_context_overview.png"
+)
+
+message("Creating shared flood-pattern type maps, donuts, and overviews...")
+
+delft_shared_flood_type_map <- make_type_map(
+ delft_typology,
+ "shared_flood_pattern_type",
+ "Delft shared FWEI-derived flood-pattern types",
+ "figures/results/delft_shared_flood_pattern_type.png",
+ flood_type_palette
+)
+
+xian_shared_flood_type_map <- make_type_map(
+ xian_typology,
+ "shared_flood_pattern_type",
+ "Xi'an shared FWEI-derived flood-pattern types",
+ "figures/results/xian_shared_flood_pattern_type.png",
+ flood_type_palette
+)
+
+delft_shared_flood_context_map <- make_type_context_map(
+ delft_typology,
+ delft_context,
+ "shared_flood_pattern_type",
+ "Delft shared FWEI-derived flood-pattern types with urban context",
+ "figures/results/delft_shared_flood_pattern_type_context.png",
+ flood_type_palette
+)
+
+xian_shared_flood_context_map <- make_type_context_map(
+ xian_typology,
+ xian_context,
+ "shared_flood_pattern_type",
+ "Xi'an shared FWEI-derived flood-pattern types with urban context",
+ "figures/results/xian_shared_flood_pattern_type_context.png",
+ flood_type_palette
+)
+
+delft_shared_flood_type_donut <- make_donut(
+ delft_typology,
+ "shared_flood_pattern_type",
+ "Delft",
+ "figures/results/delft_shared_flood_pattern_type_donut.png",
+ flood_type_palette
+)
+
+xian_shared_flood_type_donut <- make_donut(
+ xian_typology,
+ "shared_flood_pattern_type",
+ "Xi'an",
+ "figures/results/xian_shared_flood_pattern_type_donut.png",
+ flood_type_palette
+)
+
+make_overview(
+ delft_shared_flood_type_map,
+ delft_shared_flood_type_donut,
+ "figures/results/delft_shared_flood_pattern_type_overview.png"
+)
+
+make_overview(
+ xian_shared_flood_type_map,
+ xian_shared_flood_type_donut,
+ "figures/results/xian_shared_flood_pattern_type_overview.png"
+)
+
+make_overview(
+ delft_shared_flood_context_map,
+ delft_shared_flood_type_donut,
+ "figures/results/delft_shared_flood_pattern_type_context_overview.png"
+)
+
+make_overview(
+ xian_shared_flood_context_map,
+ xian_shared_flood_type_donut,
+ "figures/results/xian_shared_flood_pattern_type_context_overview.png"
+)
+
+message("Creating summaries...")
+
+city_specific_green_type_summary <- bind_rows(
+ summarise_by_type(delft_typology, "Delft", "green_type"),
+ summarise_by_type(xian_typology, "Xi'an", "green_type")
+)
+
+city_specific_flood_pattern_type_summary <- bind_rows(
+ summarise_by_type(delft_typology, "Delft", "flood_pattern_type"),
+ summarise_by_type(xian_typology, "Xi'an", "flood_pattern_type")
+)
+
+shared_green_type_summary <- bind_rows(
+ summarise_by_type(delft_typology, "Delft", "shared_green_type"),
+ summarise_by_type(xian_typology, "Xi'an", "shared_green_type")
+)
+
+shared_flood_pattern_type_summary <- bind_rows(
+ summarise_by_type(delft_typology, "Delft", "shared_flood_pattern_type"),
+ summarise_by_type(xian_typology, "Xi'an", "shared_flood_pattern_type")
+)
+
+write_csv(
+ city_specific_green_type_summary,
+ "data/results/city_specific_green_type_summary.csv"
+)
+
+write_csv(
+ city_specific_flood_pattern_type_summary,
+ "data/results/city_specific_flood_pattern_type_summary.csv"
+)
+
+write_csv(
+ shared_green_type_summary,
+ "data/results/shared_green_type_summary.csv"
+)
+
+write_csv(
+ shared_flood_pattern_type_summary,
+ "data/results/shared_flood_pattern_type_summary.csv"
+)
+
+write_csv(
+ shared_green_type_summary,
+ "data/results/green_type_summary.csv"
+)
+
+write_csv(
+ shared_flood_pattern_type_summary,
+ "data/results/flood_pattern_type_summary.csv"
+)
+
+write_csv(
+ shared_green_type_summary,
+ "data/results/typology_summary.csv"
+)
+
+print(cor_all)
+print(shared_green_type_summary)
+print(shared_flood_pattern_type_summary)
+
+message("All maps, plots, correlations, shared and city-specific type summaries, elbow plots, and overview figures created.")
+
+message("Checking metric redundancy for the typologies...")
+
+dir.create("data/results/metric_selection", recursive = TRUE, showWarnings = FALSE)
+dir.create("figures/results/metric_selection", recursive = TRUE, showWarnings = FALSE)
+dir.create("figures/results/combined_typologies", recursive = TRUE, showWarnings = FALSE)
+
+all_typology_metrics <- c(
+ "green_percent",
+ "area",
+ "gyrate",
+ "contig",
+ "enn",
+ "fwei_change_mean",
+ "flood_share",
+ "pland_flood",
+ "np_flood",
+ "flood_cohesion",
+ "flood_clumpy",
+ "flood_lpi",
+ "elevation_mean",
+ "elevation_min",
+ "slope_mean"
+)
+
+green_flood_metrics_reduced <- c(
+ "green_percent",
+ "area",
+ "contig",
+ "enn",
+ "fwei_change_mean",
+ "flood_share",
+ "np_flood",
+ "flood_clumpy"
+)
+
+green_flood_dem_metrics_reduced <- c(
+ "green_percent",
+ "area",
+ "contig",
+ "enn",
+ "fwei_change_mean",
+ "flood_share",
+ "np_flood",
+ "flood_clumpy",
+ "elevation_mean",
+ "slope_mean"
+)
+
+metric_selection <- data.frame(
+ metric = all_typology_metrics,
+ decision = ifelse(
+ all_typology_metrics %in% green_flood_dem_metrics_reduced,
+ "kept",
+ "removed"
+ ),
+ reason = c(
+ "green amount",
+ "green patch size",
+ "similar to patch size/spread, so area is kept instead",
+ "green compactness/connectivity",
+ "green patch isolation",
+ "average FWEI surface-water change",
+ "amount of detected surface-water increase",
+ "similar to flood_share, so flood_share is kept instead",
+ "number of separate flood patches",
+ "similar to other flood-pattern metrics, so not used in final typology",
+ "clustering of detected water",
+ "similar to flood extent/dominance, so flood_share is kept instead",
+ "average elevation",
+ "similar to elevation_mean, so elevation_mean is kept instead",
+ "average slope"
+ )
+)
+
+write_csv(
+ metric_selection,
+ "data/results/metric_selection/metric_selection_notes.csv"
+)
+
+write_csv(
+ metric_selection %>% filter(decision == "kept"),
+ "data/results/metric_selection/selected_typology_metrics.csv"
+)
+
+write_csv(
+ metric_selection %>% filter(decision == "removed"),
+ "data/results/metric_selection/removed_redundant_metrics.csv"
+)
+
+get_available_metrics <- function(delft_data, xian_data, metrics) {
+ metrics[
+ metrics %in% names(delft_data) &
+ metrics %in% names(xian_data)
+ ]
+}
+
+make_redundancy_check <- function(delft_data, xian_data, metrics, name) {
+ available_metrics <- get_available_metrics(delft_data, xian_data, metrics)
+
+ delft_values <- delft_data %>%
+ st_drop_geometry() %>%
+ select(all_of(available_metrics)) %>%
+ mutate(city = "Delft")
+
+ xian_values <- xian_data %>%
+ st_drop_geometry() %>%
+ select(all_of(available_metrics)) %>%
+ mutate(city = "Xi'an")
+
+ values <- bind_rows(delft_values, xian_values)
+
+ values_only <- values %>%
+ select(all_of(available_metrics))
+
+ for (m in names(values_only)) {
+ values_only[[m]] <- as.numeric(values_only[[m]])
+ values_only[[m]][is.na(values_only[[m]])] <- 0
+ values_only[[m]][is.nan(values_only[[m]])] <- 0
+ values_only[[m]][is.infinite(values_only[[m]])] <- 0
+ }
+
+ usable_metrics <- names(values_only)[
+ sapply(values_only, function(x) sd(x, na.rm = TRUE) > 0)
+ ]
+
+ values_only <- values_only %>%
+ select(all_of(usable_metrics))
+
+ cor_matrix <- cor(
+ values_only,
+ use = "pairwise.complete.obs",
+ method = "pearson"
+ )
+
+ write.csv(
+ cor_matrix,
+ paste0("data/results/metric_selection/", name, "_correlation_matrix.csv")
+ )
+
+ cor_pairs <- data.frame()
+
+ metric_names <- colnames(cor_matrix)
+
+ for (i in 1:(length(metric_names) - 1)) {
+ for (j in (i + 1):length(metric_names)) {
+ cor_pairs <- rbind(
+ cor_pairs,
+ data.frame(
+ metric_1 = metric_names[i],
+ metric_2 = metric_names[j],
+ correlation = cor_matrix[i, j],
+ abs_correlation = abs(cor_matrix[i, j])
+ )
+ )
+ }
+ }
+
+ cor_pairs <- cor_pairs %>%
+ arrange(desc(abs_correlation))
+
+ high_cor_pairs <- cor_pairs %>%
+ filter(abs_correlation >= 0.80)
+
+ write_csv(
+ cor_pairs,
+ paste0("data/results/metric_selection/", name, "_all_metric_correlations.csv")
+ )
+
+ write_csv(
+ high_cor_pairs,
+ paste0("data/results/metric_selection/", name, "_highly_correlated_metrics.csv")
+ )
+
+ cor_long <- as.data.frame(as.table(cor_matrix))
+ names(cor_long) <- c("metric_1", "metric_2", "correlation")
+
+ p <- ggplot(cor_long, aes(x = metric_1, y = metric_2, fill = correlation)) +
+ geom_tile(color = "white") +
+ geom_text(aes(label = round(correlation, 2)), size = 2.5) +
+ scale_fill_gradient2(
+ low = "#2166AC",
+ mid = "white",
+ high = "#B2182B",
+ midpoint = 0,
+ limits = c(-1, 1)
+ ) +
+ labs(
+ title = "Metric redundancy check",
+ subtitle = "Delft and Xi'an combined",
+ x = NULL,
+ y = NULL,
+ fill = "Pearson r"
+ ) +
+ theme_minimal() +
+ theme(
+ axis.text.x = element_text(angle = 45, hjust = 1),
+ panel.grid = element_blank()
+ )
+
+ ggsave(
+ paste0("figures/results/metric_selection/", name, "_redundancy_heatmap.png"),
+ p,
+ width = 10,
+ height = 8,
+ dpi = 300
+ )
+
+ return(list(
+ available_metrics = usable_metrics,
+ correlation_matrix = cor_matrix,
+ all_pairs = cor_pairs,
+ high_pairs = high_cor_pairs
+ ))
+}
+
+redundancy_check <- make_redundancy_check(
+ delft,
+ xian,
+ all_typology_metrics,
+ "green_flood_dem_metrics"
+)
+
+green_flood_available <- get_available_metrics(
+ delft,
+ xian,
+ green_flood_metrics_reduced
+)
+
+green_flood_dem_available <- get_available_metrics(
+ delft,
+ xian,
+ green_flood_dem_metrics_reduced
+)
+
+write_csv(
+ data.frame(metric = green_flood_available),
+ "data/results/metric_selection/green_flood_metrics_used.csv"
+)
+
+write_csv(
+ data.frame(metric = green_flood_dem_available),
+ "data/results/metric_selection/green_flood_dem_metrics_used.csv"
+)
+
+message("Creating green + flood typology...")
+
+make_combined_elbow_plot(
+ delft_typology,
+ xian_typology,
+ green_flood_available,
+ "Shared green + flood typology",
+ "figures/results/combined_typologies/shared_green_flood_elbow.png",
+ "data/results/shared_green_flood_elbow.csv"
+)
+
+green_flood_cluster <- make_shared_cluster_type(
+ delft_typology,
+ xian_typology,
+ green_flood_available,
+ "green_flood_type",
+ centers = 4
+)
+
+delft_typology <- green_flood_cluster$delft_data
+xian_typology <- green_flood_cluster$xian_data
+
+write_csv(
+ green_flood_cluster$centers_raw,
+ "data/results/green_flood_type_characteristics.csv"
+)
+
+write_csv(
+ green_flood_cluster$centers_scaled,
+ "data/results/green_flood_type_cluster_centres_scaled.csv"
+)
+
+message("Creating green + flood + DEM typology...")
+
+make_combined_elbow_plot(
+ delft_typology,
+ xian_typology,
+ green_flood_dem_available,
+ "Shared green + flood + DEM typology",
+ "figures/results/combined_typologies/shared_green_flood_dem_elbow.png",
+ "data/results/shared_green_flood_dem_elbow.csv"
+)
+
+green_flood_dem_cluster <- make_shared_cluster_type(
+ delft_typology,
+ xian_typology,
+ green_flood_dem_available,
+ "green_flood_dem_type",
+ centers = 4
+)
+
+delft_typology <- green_flood_dem_cluster$delft_data
+xian_typology <- green_flood_dem_cluster$xian_data
+
+write_csv(
+ green_flood_dem_cluster$centers_raw,
+ "data/results/green_flood_dem_type_characteristics.csv"
+)
+
+write_csv(
+ green_flood_dem_cluster$centers_scaled,
+ "data/results/green_flood_dem_type_cluster_centres_scaled.csv"
+)
+
+delft_typology$final_typology <- delft_typology$green_flood_dem_type
+xian_typology$final_typology <- xian_typology$green_flood_dem_type
+
+write_csv(
+ data.frame(final_typology_used = "green_flood_dem_type"),
+ "data/results/final_typology_used.csv"
+)
+
+combined_type_palette <- c(
+ "Type 1" = "#5AA6A9",
+ "Type 2" = "#D06C9F",
+ "Type 3" = "#8797D8",
+ "Type 4" = "#E8B7B0"
+)
+
+message("Making maps for green + flood typology...")
+
+delft_green_flood_map <- make_type_context_map(
+ delft_typology,
+ delft_context,
+ "green_flood_type",
+ "Delft shared green + flood typology with urban context",
+ "figures/results/combined_typologies/delft_green_flood_type_context.png",
+ combined_type_palette
+)
+
+xian_green_flood_map <- make_type_context_map(
+ xian_typology,
+ xian_context,
+ "green_flood_type",
+ "Xi'an shared green + flood typology with urban context",
+ "figures/results/combined_typologies/xian_green_flood_type_context.png",
+ combined_type_palette
+)
+
+delft_green_flood_donut <- make_donut(
+ delft_typology,
+ "green_flood_type",
+ "Delft",
+ "figures/results/combined_typologies/delft_green_flood_type_donut.png",
+ combined_type_palette
+)
+
+xian_green_flood_donut <- make_donut(
+ xian_typology,
+ "green_flood_type",
+ "Xi'an",
+ "figures/results/combined_typologies/xian_green_flood_type_donut.png",
+ combined_type_palette
+)
+
+make_overview(
+ delft_green_flood_map,
+ delft_green_flood_donut,
+ "figures/results/combined_typologies/delft_green_flood_type_overview.png"
+)
+
+make_overview(
+ xian_green_flood_map,
+ xian_green_flood_donut,
+ "figures/results/combined_typologies/xian_green_flood_type_overview.png"
+)
+
+message("Making maps for green + flood + DEM typology...")
+
+delft_green_flood_dem_map <- make_type_context_map(
+ delft_typology,
+ delft_context,
+ "green_flood_dem_type",
+ "Delft shared green + flood + DEM typology with urban context",
+ "figures/results/combined_typologies/delft_green_flood_dem_type_context.png",
+ combined_type_palette
+)
+
+xian_green_flood_dem_map <- make_type_context_map(
+ xian_typology,
+ xian_context,
+ "green_flood_dem_type",
+ "Xi'an shared green + flood + DEM typology with urban context",
+ "figures/results/combined_typologies/xian_green_flood_dem_type_context.png",
+ combined_type_palette
+)
+
+delft_green_flood_dem_donut <- make_donut(
+ delft_typology,
+ "green_flood_dem_type",
+ "Delft",
+ "figures/results/combined_typologies/delft_green_flood_dem_type_donut.png",
+ combined_type_palette
+)
+
+xian_green_flood_dem_donut <- make_donut(
+ xian_typology,
+ "green_flood_dem_type",
+ "Xi'an",
+ "figures/results/combined_typologies/xian_green_flood_dem_type_donut.png",
+ combined_type_palette
+)
+
+make_overview(
+ delft_green_flood_dem_map,
+ delft_green_flood_dem_donut,
+ "figures/results/combined_typologies/delft_green_flood_dem_type_overview.png"
+)
+
+make_overview(
+ xian_green_flood_dem_map,
+ xian_green_flood_dem_donut,
+ "figures/results/combined_typologies/xian_green_flood_dem_type_overview.png"
+)
+
+message("Making final typology summaries...")
+
+green_flood_summary <- bind_rows(
+ summarise_by_type(delft_typology, "Delft", "green_flood_type"),
+ summarise_by_type(xian_typology, "Xi'an", "green_flood_type")
+)
+
+green_flood_dem_summary <- bind_rows(
+ summarise_by_type(delft_typology, "Delft", "green_flood_dem_type"),
+ summarise_by_type(xian_typology, "Xi'an", "green_flood_dem_type")
+)
+
+final_typology_summary <- bind_rows(
+ summarise_by_type(delft_typology, "Delft", "final_typology"),
+ summarise_by_type(xian_typology, "Xi'an", "final_typology")
+)
+
+write_csv(
+ green_flood_summary,
+ "data/results/green_flood_type_summary.csv"
+)
+
+write_csv(
+ green_flood_dem_summary,
+ "data/results/green_flood_dem_type_summary.csv"
+)
+
+write_csv(
+ final_typology_summary,
+ "data/results/final_typology_summary.csv"
+)
+
+scale_01 <- function(x) {
+ if (all(is.na(x))) return(rep(0, length(x)))
+ if (sd(x, na.rm = TRUE) == 0) return(rep(0, length(x)))
+
+ output <- (x - min(x, na.rm = TRUE)) /
+ (max(x, na.rm = TRUE) - min(x, na.rm = TRUE))
+
+ output[is.na(output)] <- 0
+ return(output)
+}
+
+if (!"mean_flood_share" %in% names(final_typology_summary)) {
+ final_typology_summary$mean_flood_share <- 0
+}
+
+if (!"mean_fwei_change_mean" %in% names(final_typology_summary)) {
+ final_typology_summary$mean_fwei_change_mean <- 0
+}
+
+if (!"mean_green_percent" %in% names(final_typology_summary)) {
+ final_typology_summary$mean_green_percent <- 0
+}
+
+if (!"mean_np_flood" %in% names(final_typology_summary)) {
+ final_typology_summary$mean_np_flood <- 0
+}
+
+if (!"mean_elevation_mean" %in% names(final_typology_summary)) {
+ final_typology_summary$mean_elevation_mean <- 0
+}
+
+problematic_types <- final_typology_summary %>%
+ group_by(city) %>%
+ mutate(
+ flood_score = scale_01(mean_flood_share),
+ fwei_score = scale_01(mean_fwei_change_mean),
+ low_green_score = 1 - scale_01(mean_green_percent),
+ patch_score = scale_01(mean_np_flood),
+ low_elevation_score = 1 - scale_01(mean_elevation_mean),
+ problematic_score =
+ 0.35 * flood_score +
+ 0.25 * fwei_score +
+ 0.20 * low_green_score +
+ 0.15 * patch_score +
+ 0.05 * low_elevation_score
+ ) %>%
+ ungroup() %>%
+ arrange(city, desc(problematic_score)) %>%
+ mutate(
+ interpretation = case_when(
+ mean_green_percent < median(mean_green_percent, na.rm = TRUE) &
+ mean_flood_share > median(mean_flood_share, na.rm = TRUE) ~
+ "low green and relatively high detected water",
+ mean_green_percent > median(mean_green_percent, na.rm = TRUE) &
+ mean_flood_share > median(mean_flood_share, na.rm = TRUE) ~
+ "green area with detected water, possibly storage or easier detection",
+ mean_np_flood > median(mean_np_flood, na.rm = TRUE) ~
+ "many separate detected water patches",
+ TRUE ~
+ "less problematic or unclear"
+ ),
+ possible_solution_direction = case_when(
+ interpretation == "low green and relatively high detected water" ~
+ "depaving, rain gardens, permeable surfaces",
+ interpretation == "green area with detected water, possibly storage or easier detection" ~
+ "floodable parks, retention basins, wetland enhancement",
+ interpretation == "many separate detected water patches" ~
+ "bioswales, green corridors, connected pocket parks",
+ TRUE ~
+ "no clear solution from typology alone"
+ )
+ )
+
+write_csv(
+ problematic_types,
+ "data/results/problematic_typology_candidates.csv"
+)
+
+st_write(
+ delft_typology,
+ "data/results/delft_typology.gpkg",
+ delete_dsn = TRUE
+)
+
+st_write(
+ xian_typology,
+ "data/results/xian_typology.gpkg",
+ delete_dsn = TRUE
+)
+
+st_write(
+ delft_typology,
+ "data/results/delft_typology_with_combined_types.gpkg",
+ delete_dsn = TRUE
+)
+
+st_write(
+ xian_typology,
+ "data/results/xian_typology_with_combined_types.gpkg",
+ delete_dsn = TRUE
+)
+
+print(metric_selection)
+print(redundancy_check$high_pairs)
+print(final_typology_summary)
+print(problematic_types)
+
+message("New metric redundancy checks and combined typologies are done.")
diff --git a/src/04_metric_redundancy_check.R b/src/04_metric_redundancy_check.R
new file mode 100644
index 00000000..ffc26c23
--- /dev/null
+++ b/src/04_metric_redundancy_check.R
@@ -0,0 +1,168 @@
+library(ggplot2)
+
+dir.create("data/results/metric_selection", recursive = TRUE, showWarnings = FALSE)
+dir.create("figures/results/metric_selection", recursive = TRUE, showWarnings = FALSE)
+
+delft <- read.csv("data/results/delft_grid_metrics.csv")
+xian <- read.csv("data/results/xian_grid_metrics.csv")
+
+delft$city <- "Delft"
+xian$city <- "Xi'an"
+
+all_data <- rbind(delft, xian)
+
+candidate_metrics <- c(
+ "green_percent",
+ "area",
+ "gyrate",
+ "contig",
+ "enn",
+ "fwei_change_mean",
+ "flood_share",
+ "pland_flood",
+ "np_flood",
+ "flood_cohesion",
+ "flood_clumpy",
+ "flood_lpi",
+ "mean_dist_green",
+ "min_dist_green",
+ "elevation_mean",
+ "elevation_min",
+ "slope_mean"
+)
+
+available_metrics <- candidate_metrics[candidate_metrics %in% names(all_data)]
+
+metric_data <- all_data[, available_metrics]
+
+for (m in names(metric_data)) {
+ metric_data[[m]] <- as.numeric(metric_data[[m]])
+ metric_data[[m]][is.nan(metric_data[[m]])] <- NA
+ metric_data[[m]][is.infinite(metric_data[[m]])] <- NA
+}
+
+usable_metrics <- names(metric_data)[
+ sapply(metric_data, function(x) {
+ sum(!is.na(x)) >= 10 && sd(x, na.rm = TRUE) > 0
+ })
+]
+
+metric_data <- metric_data[, usable_metrics]
+
+cor_matrix <- cor(
+ metric_data,
+ use = "pairwise.complete.obs",
+ method = "pearson"
+)
+
+write.csv(
+ cor_matrix,
+ "data/results/metric_selection/metric_redundancy_matrix.csv"
+)
+
+cor_pairs <- data.frame()
+
+metric_names <- colnames(cor_matrix)
+
+for (i in 1:(length(metric_names) - 1)) {
+ for (j in (i + 1):length(metric_names)) {
+ cor_pairs <- rbind(
+ cor_pairs,
+ data.frame(
+ metric_1 = metric_names[i],
+ metric_2 = metric_names[j],
+ correlation = cor_matrix[i, j],
+ abs_correlation = abs(cor_matrix[i, j])
+ )
+ )
+ }
+}
+
+cor_pairs <- cor_pairs[order(-cor_pairs$abs_correlation), ]
+
+high_cor_pairs <- cor_pairs[
+ !is.na(cor_pairs$abs_correlation) &
+ cor_pairs$abs_correlation >= 0.80,
+]
+
+write.csv(
+ cor_pairs,
+ "data/results/metric_selection/all_metric_correlations.csv",
+ row.names = FALSE
+)
+
+write.csv(
+ high_cor_pairs,
+ "data/results/metric_selection/highly_correlated_metrics.csv",
+ row.names = FALSE
+)
+
+metric_notes <- data.frame(
+ metric = candidate_metrics,
+ included_in_check = candidate_metrics %in% usable_metrics,
+ current_thought = c(
+ "keep: green amount",
+ "keep: green patch size",
+ "possibly remove: similar to patch size/spatial extent",
+ "keep: green compactness/connectivity",
+ "keep: green patch isolation",
+ "keep: average FWEI change",
+ "keep: detected water extent",
+ "possibly remove: similar to flood_share",
+ "keep: number of flood patches",
+ "possibly remove: similar to other connectedness metrics",
+ "keep: flood clustering",
+ "possibly remove: similar to flood extent/dominance",
+ "possibly remove from typology: distance metric, useful for interpretation",
+ "possibly remove from typology: distance metric, useful for interpretation",
+ "keep: average elevation",
+ "possibly remove: similar to elevation_mean",
+ "keep: average slope"
+ )
+)
+
+write.csv(
+ metric_notes,
+ "data/results/metric_selection/metric_notes_before_final_selection.csv",
+ row.names = FALSE
+)
+
+cor_long <- as.data.frame(as.table(cor_matrix))
+names(cor_long) <- c("metric_1", "metric_2", "correlation")
+
+p <- ggplot(cor_long, aes(x = metric_1, y = metric_2, fill = correlation)) +
+ geom_tile(color = "white") +
+ geom_text(aes(label = round(correlation, 2)), size = 2.5) +
+ scale_fill_gradient2(
+ low = "#2166AC",
+ mid = "white",
+ high = "#B2182B",
+ midpoint = 0,
+ limits = c(-1, 1)
+ ) +
+ labs(
+ title = "Metric redundancy check",
+ subtitle = "Delft and Xi'an combined",
+ x = NULL,
+ y = NULL,
+ fill = "Pearson r"
+ ) +
+ theme_minimal() +
+ theme(
+ axis.text.x = element_text(angle = 45, hjust = 1),
+ panel.grid = element_blank()
+ )
+
+ggsave(
+ "figures/results/metric_selection/metric_redundancy_heatmap.png",
+ p,
+ width = 10,
+ height = 8,
+ dpi = 300
+)
+
+print(high_cor_pairs)
+
+message("Metric redundancy check complete.")
+message("Check this file first: data/results/metric_selection/highly_correlated_metrics.csv")
+message("Also check this figure: figures/results/metric_selection/metric_redundancy_heatmap.png")
diff --git a/src/05_shared_combined_typologies.R b/src/05_shared_combined_typologies.R
new file mode 100644
index 00000000..296cbe0d
--- /dev/null
+++ b/src/05_shared_combined_typologies.R
@@ -0,0 +1,386 @@
+library(sf)
+library(ggplot2)
+library(dplyr)
+library(readr)
+library(grid)
+
+dir.create("data/results", recursive = TRUE, showWarnings = FALSE)
+dir.create("data/results/metric_selection", recursive = TRUE, showWarnings = FALSE)
+dir.create("figures/results", recursive = TRUE, showWarnings = FALSE)
+dir.create("figures/results/metric_selection", recursive = TRUE, showWarnings = FALSE)
+dir.create("figures/results/combined_typologies", recursive = TRUE, showWarnings = FALSE)
+
+delft <- st_read("data/results/delft_grid_metrics.gpkg", quiet = TRUE)
+xian <- st_read("data/results/xian_grid_metrics.gpkg", quiet = TRUE)
+
+read_context_layer <- function(path, target_crs) {
+ if (!file.exists(path)) {
+ message("Missing context layer: ", path)
+ return(NULL)
+ }
+
+ layer <- st_read(path, quiet = TRUE)
+
+ if (nrow(layer) == 0) {
+ message("Empty context layer: ", path)
+ return(NULL)
+ }
+
+ layer <- st_make_valid(layer)
+ layer <- st_transform(layer, target_crs)
+
+ return(layer)
+}
+
+load_city_context <- function(city_name, target_crs) {
+ if (city_name == "Delft") {
+ folder <- "data/context/delft"
+
+ context <- list(
+ buildings = read_context_layer(file.path(folder, "delft_buildings.gpkg"), target_crs),
+ primary_roads = read_context_layer(file.path(folder, "delft_primary_roads.gpkg"), target_crs),
+ secondary_roads = read_context_layer(file.path(folder, "delft_secondary_roads.gpkg"), target_crs),
+ tertiary_roads = read_context_layer(file.path(folder, "delft_tertiary_roads.gpkg"), target_crs),
+ water = read_context_layer(file.path(folder, "delft_water.gpkg"), target_crs),
+ parks = read_context_layer(file.path(folder, "delft_parks.gpkg"), target_crs),
+ residential = read_context_layer(file.path(folder, "delft_landuse_residential.gpkg"), target_crs),
+ grass = read_context_layer(file.path(folder, "delft_landuse_grass.gpkg"), target_crs),
+ greenfield = read_context_layer(file.path(folder, "delft_landuse_greenfield.gpkg"), target_crs),
+ meadow = read_context_layer(file.path(folder, "delft_landuse_meadow.gpkg"), target_crs),
+ tourism = read_context_layer(file.path(folder, "delft_tourism_attraction.gpkg"), target_crs),
+ municipality_boundary = read_context_layer(file.path(folder, "delft_municipality_boundary.gpkg"), target_crs)
+ )
+ } else {
+ folder <- "data/context/xian"
+
+ context <- list(
+ buildings = read_context_layer(file.path(folder, "xian_buildings.gpkg"), target_crs),
+ primary_roads = read_context_layer(file.path(folder, "xian_primary_roads.gpkg"), target_crs),
+ secondary_roads = read_context_layer(file.path(folder, "xian_secondary_roads.gpkg"), target_crs),
+ tertiary_roads = read_context_layer(file.path(folder, "xian_tertiary_roads.gpkg"), target_crs),
+ water = read_context_layer(file.path(folder, "xian_water.gpkg"), target_crs),
+ parks = read_context_layer(file.path(folder, "xian_parks.gpkg"), target_crs),
+ residential = read_context_layer(file.path(folder, "xian_landuse_residential.gpkg"), target_crs),
+ grass = read_context_layer(file.path(folder, "xian_landuse_grass.gpkg"), target_crs),
+ greenfield = read_context_layer(file.path(folder, "xian_landuse_greenfield.gpkg"), target_crs),
+ meadow = read_context_layer(file.path(folder, "xian_landuse_meadow.gpkg"), target_crs),
+ tourism = read_context_layer(file.path(folder, "xian_tourism_attraction.gpkg"), target_crs),
+ municipality_boundary = NULL
+ )
+ }
+
+ return(context)
+}
+
+make_study_boundary <- function(data) {
+ boundary <- st_as_sf(st_as_sfc(st_bbox(data)))
+ st_crs(boundary) <- st_crs(data)
+ return(boundary)
+}
+
+add_context_layers <- function(p, context, study_boundary) {
+ if (!is.null(context$residential)) p <- p + geom_sf(data = context$residential, fill = "#E3DED6", color = NA, alpha = 0.65)
+ if (!is.null(context$grass)) p <- p + geom_sf(data = context$grass, fill = "#D8EEDC", color = NA, alpha = 0.65)
+ if (!is.null(context$greenfield)) p <- p + geom_sf(data = context$greenfield, fill = "#CFE8D2", color = NA, alpha = 0.65)
+ if (!is.null(context$meadow)) p <- p + geom_sf(data = context$meadow, fill = "#E2EBCF", color = NA, alpha = 0.65)
+ if (!is.null(context$parks)) p <- p + geom_sf(data = context$parks, fill = "#C9E6CF", color = NA, alpha = 0.75)
+ if (!is.null(context$water)) p <- p + geom_sf(data = context$water, fill = "#A9D7E8", color = "#7EB8CC", linewidth = 0.15, alpha = 0.80)
+ if (!is.null(context$buildings)) p <- p + geom_sf(data = context$buildings, fill = "#D6D1C8", color = NA, alpha = 0.65)
+ if (!is.null(context$tourism)) p <- p + geom_sf(data = context$tourism, fill = "#C8B5D8", color = "#8E77A8", linewidth = 0.15, alpha = 0.65)
+ if (!is.null(context$tertiary_roads)) p <- p + geom_sf(data = context$tertiary_roads, color = "#D2D9DF", linewidth = 0.18, alpha = 0.75)
+ if (!is.null(context$secondary_roads)) p <- p + geom_sf(data = context$secondary_roads, color = "#B8C2CC", linewidth = 0.28, alpha = 0.80)
+ if (!is.null(context$primary_roads)) p <- p + geom_sf(data = context$primary_roads, color = "#9CA8B3", linewidth = 0.42, alpha = 0.85)
+
+ if (!is.null(context$municipality_boundary)) {
+ p <- p + geom_sf(data = context$municipality_boundary, fill = NA, color = "#7FA39A", linewidth = 0.45, linetype = "dashed", alpha = 0.85)
+ }
+
+ p <- p + geom_sf(data = study_boundary, fill = NA, color = "#6F7378", linewidth = 0.65, linetype = "dashed", alpha = 1)
+
+ return(p)
+}
+
+message("Loading context layers...")
+
+delft_context <- load_city_context("Delft", st_crs(delft))
+xian_context <- load_city_context("Xi'an", st_crs(xian))
+
+redundant_table <- data.frame(
+ correlated_metrics = c("flood_share + pland_flood","elevation_mean + elevation_min","flood_share + flood_lpi","pland_flood + flood_lpi","mean_dist_green + min_dist_green","gyrate + contig","area + gyrate","green_percent + area"),
+ correlation = c(1.000,1.000,0.979,0.979,0.924,0.885,0.873,0.837),
+ decision = c("keep flood_share, remove pland_flood","keep elevation_mean, remove elevation_min","keep flood_share, remove flood_lpi","remove pland_flood and flood_lpi","remove both from typology, keep only for interpretation","keep contig, remove gyrate","keep contig, remove gyrate","keep green_percent, remove area"),
+ reason = c("both measure detected water extent","both describe almost the same elevation pattern","largest flood patch mostly follows flood extent","both overlap strongly with flood extent","both measure distance to green space","patch spread overlaps with compactness","patch size overlaps with patch spread","green amount overlaps with patch size")
+)
+
+write_csv(redundant_table, "data/results/metric_selection/redundant_metric_decisions.csv")
+
+png("figures/results/metric_selection/redundant_metric_decisions_table.png", width = 2400, height = 1200, res = 200)
+grid.newpage()
+grid.text("Metric redundancy decisions", x = 0.5, y = 0.95, gp = gpar(fontsize = 18, fontface = "bold"))
+x_pos <- c(0.10, 0.38, 0.61, 0.83)
+headers <- c("Correlated metrics", "r", "Decision", "Reason")
+
+for (i in seq_along(headers)) {
+ grid.text(headers[i], x = x_pos[i], y = 0.88, gp = gpar(fontsize = 11, fontface = "bold"))
+}
+
+y_start <- 0.80
+row_gap <- 0.085
+
+for (i in seq_len(nrow(redundant_table))) {
+ y <- y_start - (i - 1) * row_gap
+ grid.text(redundant_table$correlated_metrics[i], x = x_pos[1], y = y, just = "center", gp = gpar(fontsize = 9))
+ grid.text(round(redundant_table$correlation[i], 3), x = x_pos[2], y = y, just = "center", gp = gpar(fontsize = 9))
+ grid.text(redundant_table$decision[i], x = x_pos[3], y = y, just = "center", gp = gpar(fontsize = 8.5))
+ grid.text(redundant_table$reason[i], x = x_pos[4], y = y, just = "center", gp = gpar(fontsize = 8.5))
+}
+dev.off()
+
+green_flood_metrics <- c("green_percent","contig","enn","fwei_change_mean","flood_share","np_flood","flood_clumpy")
+green_flood_dem_metrics <- c("green_percent","contig","enn","fwei_change_mean","flood_share","np_flood","flood_clumpy","elevation_mean","slope_mean")
+
+selected_metrics_table <- data.frame(
+ typology = c(rep("green_flood", length(green_flood_metrics)), rep("green_flood_dem", length(green_flood_dem_metrics))),
+ metric = c(green_flood_metrics, green_flood_dem_metrics)
+)
+
+write_csv(selected_metrics_table, "data/results/metric_selection/selected_metrics_for_shared_typologies.csv")
+
+type_palette <- c("Type 1" = "#5AA6A9", "Type 2" = "#D06C9F", "Type 3" = "#8797D8", "Type 4" = "#E8B7B0")
+
+get_available_metrics <- function(delft_data, xian_data, metrics) {
+ metrics[metrics %in% names(delft_data) & metrics %in% names(xian_data)]
+}
+
+prepare_shared_values <- function(delft_data, xian_data, metrics) {
+ available_metrics <- get_available_metrics(delft_data, xian_data, metrics)
+
+ delft_values <- delft_data %>% st_drop_geometry() %>% select(all_of(available_metrics)) %>% mutate(city = "Delft", row_id = row_number())
+ xian_values <- xian_data %>% st_drop_geometry() %>% select(all_of(available_metrics)) %>% mutate(city = "Xi'an", row_id = row_number())
+ combined <- bind_rows(delft_values, xian_values)
+ values <- combined %>% select(all_of(available_metrics))
+
+ for (m in names(values)) {
+ values[[m]] <- as.numeric(values[[m]])
+ values[[m]][is.na(values[[m]])] <- 0
+ values[[m]][is.nan(values[[m]])] <- 0
+ values[[m]][is.infinite(values[[m]])] <- 0
+ }
+
+ usable_metrics <- names(values)[sapply(values, function(x) sd(x, na.rm = TRUE) > 0)]
+ values <- values %>% select(all_of(usable_metrics))
+ values_scaled <- scale(values)
+
+ return(list(combined = combined, values = values, values_scaled = values_scaled, usable_metrics = usable_metrics))
+}
+
+make_shared_typology <- function(delft_data, xian_data, metrics, type_column, centers = 4) {
+ prepared <- prepare_shared_values(delft_data, xian_data, metrics)
+ set.seed(123)
+
+ km <- kmeans(prepared$values_scaled, centers = centers, nstart = 25, iter.max = 1000, algorithm = "MacQueen")
+
+ combined <- prepared$combined
+ combined[[type_column]] <- factor(paste0("Type ", km$cluster), levels = paste0("Type ", 1:centers))
+
+ delft_types <- combined %>% filter(city == "Delft") %>% arrange(row_id) %>% pull(.data[[type_column]])
+ xian_types <- combined %>% filter(city == "Xi'an") %>% arrange(row_id) %>% pull(.data[[type_column]])
+
+ delft_data[[type_column]] <- factor(delft_types, levels = paste0("Type ", 1:centers))
+ xian_data[[type_column]] <- factor(xian_types, levels = paste0("Type ", 1:centers))
+
+ centers_scaled <- as.data.frame(km$centers)
+ centers_scaled$type <- paste0("Type ", seq_len(nrow(centers_scaled)))
+ centers_scaled <- centers_scaled %>% select(type, everything())
+
+ raw_values <- prepared$values
+ raw_values[[type_column]] <- combined[[type_column]]
+
+ centers_raw <- raw_values %>% group_by(.data[[type_column]]) %>% summarise(across(everything(), ~ mean(.x, na.rm = TRUE)), .groups = "drop") %>% rename(type = 1)
+
+ return(list(delft_data = delft_data, xian_data = xian_data, centers_scaled = centers_scaled, centers_raw = centers_raw, usable_metrics = prepared$usable_metrics))
+}
+
+make_combined_elbow_plot <- function(delft_data, xian_data, metrics, title, output_png, output_csv) {
+ prepared <- prepare_shared_values(delft_data, xian_data, metrics)
+ set.seed(123)
+
+ elbow <- data.frame(k = 2:8, within_cluster_ss = NA_real_)
+
+ for (i in seq_along(elbow$k)) {
+ km <- kmeans(prepared$values_scaled, centers = elbow$k[i], nstart = 25, iter.max = 1000, algorithm = "MacQueen")
+ elbow$within_cluster_ss[i] <- km$tot.withinss
+ }
+
+ p <- ggplot(elbow, aes(x = k, y = within_cluster_ss)) +
+ geom_line() +
+ geom_point(size = 2.5) +
+ scale_x_continuous(breaks = 2:8) +
+ labs(title = title, x = "Number of clusters (k)", y = "Total within-cluster sum of squares") +
+ theme_minimal() +
+ theme(plot.title = element_text(face = "bold"))
+
+ ggsave(output_png, p, width = 7, height = 5, dpi = 300)
+ write_csv(elbow, output_csv)
+ return(elbow)
+}
+
+make_type_context_map <- function(data, context, type_column, title, filename) {
+ study_boundary <- make_study_boundary(data)
+
+ p <- ggplot()
+ p <- add_context_layers(p, context, study_boundary)
+
+ p <- p +
+ geom_sf(data = data, aes(fill = .data[[type_column]]), color = NA, alpha = 0.62) +
+ scale_fill_manual(values = type_palette, drop = FALSE, na.value = NA) +
+ geom_sf(data = study_boundary, fill = NA, color = "#6F7378", linewidth = 0.70, linetype = "dashed") +
+ labs(title = title, fill = "Type") +
+ theme_void() +
+ theme(plot.title = element_text(face = "bold", size = 14), legend.title = element_text(size = 9), legend.text = element_text(size = 8), plot.background = element_rect(fill = "white", color = NA))
+
+ ggsave(filename, p, width = 8, height = 6, dpi = 300)
+ return(p)
+}
+
+make_donut <- function(data, type_column, title, filename) {
+ counts <- data %>% st_drop_geometry() %>% count(.data[[type_column]], name = "n_cells") %>% rename(type = 1) %>% mutate(percent = n_cells / sum(n_cells) * 100, label = paste0(round(percent), "%"))
+
+ p <- ggplot(counts, aes(x = 2, y = percent, fill = type)) +
+ geom_col(width = 1, color = "white") +
+ coord_polar(theta = "y") +
+ xlim(0.5, 2.5) +
+ geom_text(aes(label = label), position = position_stack(vjust = 0.5), size = 3.5) +
+ scale_fill_manual(values = type_palette, drop = FALSE) +
+ labs(title = title, fill = "Type") +
+ theme_void() +
+ theme(plot.title = element_text(face = "bold", size = 15, hjust = 0.5), legend.title = element_text(size = 9), legend.text = element_text(size = 8))
+
+ ggsave(filename, p, width = 6, height = 6, dpi = 300)
+ return(p)
+}
+
+make_overview <- function(map_plot, donut_plot, filename) {
+ png(filename, width = 3200, height = 1500, res = 300)
+ grid.newpage()
+ pushViewport(viewport(layout = grid.layout(nrow = 1, ncol = 2, widths = unit(c(1.25, 1), "null"))))
+ print(map_plot, vp = viewport(layout.pos.row = 1, layout.pos.col = 1))
+ print(donut_plot, vp = viewport(layout.pos.row = 1, layout.pos.col = 2))
+ dev.off()
+}
+
+summarise_by_type <- function(data, city_name, type_column) {
+ summary_metrics <- c("green_percent","area","gyrate","contig","enn","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green","elevation_mean","elevation_min","slope_mean")
+ available_metrics <- summary_metrics[summary_metrics %in% names(data)]
+
+ output <- data %>%
+ st_drop_geometry() %>%
+ mutate(city = city_name) %>%
+ group_by(city, .data[[type_column]]) %>%
+ summarise(n_cells = n(), across(all_of(available_metrics), ~ mean(.x, na.rm = TRUE), .names = "mean_{.col}"), .groups = "drop") %>%
+ rename(type = 2) %>%
+ group_by(city) %>%
+ mutate(percent_cells = n_cells / sum(n_cells) * 100) %>%
+ ungroup() %>%
+ select(city, type, n_cells, percent_cells, everything())
+
+ return(output)
+}
+
+message("Making elbow plots...")
+
+make_combined_elbow_plot(delft, xian, green_flood_metrics, "Shared green + flood typology", "figures/results/combined_typologies/green_flood_elbow.png", "data/results/green_flood_elbow.csv")
+make_combined_elbow_plot(delft, xian, green_flood_dem_metrics, "Shared green + flood + DEM typology", "figures/results/combined_typologies/green_flood_dem_elbow.png", "data/results/green_flood_dem_elbow.csv")
+
+message("Making shared green + flood typology...")
+
+green_flood_cluster <- make_shared_typology(delft, xian, green_flood_metrics, "green_flood_type", centers = 4)
+delft <- green_flood_cluster$delft_data
+xian <- green_flood_cluster$xian_data
+
+write_csv(green_flood_cluster$centers_raw, "data/results/green_flood_type_characteristics.csv")
+write_csv(green_flood_cluster$centers_scaled, "data/results/green_flood_type_cluster_centres_scaled.csv")
+write_csv(data.frame(metric = green_flood_cluster$usable_metrics), "data/results/metric_selection/green_flood_metrics_used.csv")
+
+message("Making shared green + flood + DEM typology...")
+
+green_flood_dem_cluster <- make_shared_typology(delft, xian, green_flood_dem_metrics, "green_flood_dem_type", centers = 4)
+delft <- green_flood_dem_cluster$delft_data
+xian <- green_flood_dem_cluster$xian_data
+
+write_csv(green_flood_dem_cluster$centers_raw, "data/results/green_flood_dem_type_characteristics.csv")
+write_csv(green_flood_dem_cluster$centers_scaled, "data/results/green_flood_dem_type_cluster_centres_scaled.csv")
+write_csv(data.frame(metric = green_flood_dem_cluster$usable_metrics), "data/results/metric_selection/green_flood_dem_metrics_used.csv")
+
+delft$final_typology <- delft$green_flood_dem_type
+xian$final_typology <- xian$green_flood_dem_type
+
+write_csv(data.frame(final_typology_used = "green_flood_dem_type"), "data/results/final_typology_used.csv")
+
+message("Making maps and donut figures with context as base layer...")
+
+delft_gf_map <- make_type_context_map(delft, delft_context, "green_flood_type", "Delft shared green + flood typology with urban context", "figures/results/combined_typologies/delft_green_flood_type_context.png")
+xian_gf_map <- make_type_context_map(xian, xian_context, "green_flood_type", "Xi'an shared green + flood typology with urban context", "figures/results/combined_typologies/xian_green_flood_type_context.png")
+delft_gf_donut <- make_donut(delft, "green_flood_type", "Delft", "figures/results/combined_typologies/delft_green_flood_type_donut.png")
+xian_gf_donut <- make_donut(xian, "green_flood_type", "Xi'an", "figures/results/combined_typologies/xian_green_flood_type_donut.png")
+
+make_overview(delft_gf_map, delft_gf_donut, "figures/results/combined_typologies/delft_green_flood_type_context_overview.png")
+make_overview(xian_gf_map, xian_gf_donut, "figures/results/combined_typologies/xian_green_flood_type_context_overview.png")
+
+delft_gfd_map <- make_type_context_map(delft, delft_context, "green_flood_dem_type", "Delft shared green + flood + DEM typology with urban context", "figures/results/combined_typologies/delft_green_flood_dem_type_context.png")
+xian_gfd_map <- make_type_context_map(xian, xian_context, "green_flood_dem_type", "Xi'an shared green + flood + DEM typology with urban context", "figures/results/combined_typologies/xian_green_flood_dem_type_context.png")
+delft_gfd_donut <- make_donut(delft, "green_flood_dem_type", "Delft", "figures/results/combined_typologies/delft_green_flood_dem_type_donut.png")
+xian_gfd_donut <- make_donut(xian, "green_flood_dem_type", "Xi'an", "figures/results/combined_typologies/xian_green_flood_dem_type_donut.png")
+
+make_overview(delft_gfd_map, delft_gfd_donut, "figures/results/combined_typologies/delft_green_flood_dem_type_context_overview.png")
+make_overview(xian_gfd_map, xian_gfd_donut, "figures/results/combined_typologies/xian_green_flood_dem_type_context_overview.png")
+
+message("Making summaries...")
+
+green_flood_summary <- bind_rows(summarise_by_type(delft, "Delft", "green_flood_type"), summarise_by_type(xian, "Xi'an", "green_flood_type"))
+green_flood_dem_summary <- bind_rows(summarise_by_type(delft, "Delft", "green_flood_dem_type"), summarise_by_type(xian, "Xi'an", "green_flood_dem_type"))
+final_typology_summary <- bind_rows(summarise_by_type(delft, "Delft", "final_typology"), summarise_by_type(xian, "Xi'an", "final_typology"))
+
+write_csv(green_flood_summary, "data/results/green_flood_type_summary.csv")
+write_csv(green_flood_dem_summary, "data/results/green_flood_dem_type_summary.csv")
+write_csv(final_typology_summary, "data/results/final_typology_summary.csv")
+
+scale_01 <- function(x) {
+ if (all(is.na(x))) return(rep(0, length(x)))
+ if (sd(x, na.rm = TRUE) == 0) return(rep(0, length(x)))
+ output <- (x - min(x, na.rm = TRUE)) / (max(x, na.rm = TRUE) - min(x, na.rm = TRUE))
+ output[is.na(output)] <- 0
+ return(output)
+}
+
+problematic_types <- final_typology_summary %>%
+ group_by(city) %>%
+ mutate(flood_score = scale_01(mean_flood_share), fwei_score = scale_01(mean_fwei_change_mean), low_green_score = 1 - scale_01(mean_green_percent), patch_score = scale_01(mean_np_flood), low_elevation_score = 1 - scale_01(mean_elevation_mean), problematic_score = 0.35 * flood_score + 0.25 * fwei_score + 0.20 * low_green_score + 0.15 * patch_score + 0.05 * low_elevation_score) %>%
+ ungroup() %>%
+ arrange(city, desc(problematic_score)) %>%
+ mutate(
+ interpretation = case_when(
+ mean_green_percent < median(mean_green_percent, na.rm = TRUE) & mean_flood_share > median(mean_flood_share, na.rm = TRUE) ~ "low green and relatively high detected water",
+ mean_green_percent > median(mean_green_percent, na.rm = TRUE) & mean_flood_share > median(mean_flood_share, na.rm = TRUE) ~ "green area with detected water, possibly storage or easier detection",
+ mean_np_flood > median(mean_np_flood, na.rm = TRUE) ~ "many separate detected water patches",
+ TRUE ~ "less problematic or unclear"
+ ),
+ possible_solution_direction = case_when(
+ interpretation == "low green and relatively high detected water" ~ "depaving, rain gardens, permeable surfaces",
+ interpretation == "green area with detected water, possibly storage or easier detection" ~ "floodable parks, retention basins, wetland enhancement",
+ interpretation == "many separate detected water patches" ~ "bioswales, green corridors, connected pocket parks",
+ TRUE ~ "no clear solution from typology alone"
+ )
+ )
+
+write_csv(problematic_types, "data/results/problematic_typology_candidates.csv")
+
+st_write(delft, "data/results/delft_combined_typology.gpkg", delete_dsn = TRUE)
+st_write(xian, "data/results/xian_combined_typology.gpkg", delete_dsn = TRUE)
+
+print(redundant_table)
+print(green_flood_summary)
+print(green_flood_dem_summary)
+print(problematic_types)
+
+message("Script 05 complete.")
diff --git a/src/Green_Space_Flood_Typology_6_20_2207.qmd b/src/Green_Space_Flood_Typology_6_20_2207.qmd
new file mode 100644
index 00000000..b724893d
--- /dev/null
+++ b/src/Green_Space_Flood_Typology_6_20_2207.qmd
@@ -0,0 +1,1195 @@
+---
+title: "Green Space Landscape Metrics & Flood Typology"
+author: "Hassan, Danny and Akhil"
+format: html
+editor: visual
+---
+
+```{r setup, include=FALSE}
+# Base path for all files – change this one line if your drive changes
+base <- "D:/ARFW0501"
+p <- function(...) file.path(base, ...)
+```
+
+------------------------------------------------------------------------
+
+# ── DELFT ──────────────────────────────────────────────────────────────────
+
+# Step 1. Load packages and data (Delft)
+
+```{r}
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+green_delft <- rast(p("delft_green_binary_compressed_new.tif"))
+grid_delft <- st_read(p("grid_10000x10000_delft.gpkg"), quiet = TRUE)
+
+plot(green_delft, main = "Green binary raster - Delft")
+plot(st_geometry(grid_delft), add = TRUE)
+```
+
+# Step 2. Test one grid cell (Delft)
+
+```{r}
+# Step 2. Test one grid cell (Delft)
+
+# Check pixel size vs grid cell size
+cat("Green raster resolution (m):", res(green_delft), "\n")
+cat("Green extent:", as.vector(ext(green_delft)), "\n")
+cat("Grid extent:", as.vector(ext(vect(grid_delft))), "\n")
+cat("Number of grid cells:", nrow(grid_delft), "\n")
+
+# Get centroids of all grid cells
+centroids_delft <- centroids(vect(grid_delft))
+
+# Extract green value at each centroid
+green_at_centroids <- extract(green_delft, centroids_delft)
+head(green_at_centroids)
+cat("Unique values at centroids:", unique(green_at_centroids[, 2]), "\n")
+
+# Find a centroid that falls on a green pixel (value == 1)
+green_cells <- which(green_at_centroids[, 2] == 1)
+cat("Cells with green at centroid:", length(green_cells), "\n")
+
+# Use the first green cell to test
+test_cell_delft <- vect(grid_delft[green_cells[1], ])
+
+cat("Test cell extent:", as.vector(ext(test_cell_delft)), "\n")
+
+# Crop with a buffer to ensure we catch pixels overlapping the cell edge
+green_test_delft <- crop(green_delft, ext(test_cell_delft) + 500)
+green_test_delft <- mask(green_test_delft, test_cell_delft)
+plot(green_test_delft, main = "Test cell - Delft")
+```
+
+# Step 3. Calculate landscape metrics for one cell (Delft)
+
+```{r}
+lsm_p_area(green_test_delft)
+lsm_p_gyrate(green_test_delft)
+lsm_p_contig(green_test_delft)
+lsm_p_enn(green_test_delft)
+# lsm_p_prox(green_test_delft)
+```
+
+# Step 4. Calculate green metrics for all grid cells (Delft)
+
+```{r}
+# Step 4. Calculate green metrics for all grid cells (Delft)
+
+green_delft_5m <- aggregate(green_delft, fact = 20, fun = "modal")
+cat("Resampled resolution:", res(green_delft_5m), "m\n")
+
+grid_delft_v <- vect(grid_delft)
+overlapping_idx <- which(is.related(grid_delft_v,
+ as.polygons(ext(green_delft_5m)),
+ "intersects"))
+cat("Cells to process:", length(overlapping_idx), "out of", nrow(grid_delft), "\n")
+
+results_delft <- data.frame(id = grid_delft$id)
+results_delft$area <- NA
+results_delft$gyrate <- NA
+results_delft$contig <- NA
+results_delft$enn <- NA
+# results_delft$prox <- NA
+
+total <- length(overlapping_idx)
+report <- max(1, round(total / 20))
+
+for (idx in seq_along(overlapping_idx)) {
+ i <- overlapping_idx[idx]
+ if (idx %% report == 0)
+ cat(sprintf("Progress: %d / %d (%.0f%%)\n", idx, total, idx/total*100))
+
+ tryCatch({
+ cell <- grid_delft_v[i, ]
+ green_cell <- crop(green_delft_5m, cell)
+ green_cell <- mask(green_cell, cell)
+
+ vals <- na.omit(values(green_cell))
+ if (length(vals) == 0 || !1 %in% vals) next
+
+ results_delft$area[i] <- mean(
+ lsm_p_area(green_cell)$value[lsm_p_area(green_cell)$class == 1], na.rm = TRUE)
+ results_delft$gyrate[i] <- mean(
+ lsm_p_gyrate(green_cell)$value[lsm_p_gyrate(green_cell)$class == 1], na.rm = TRUE)
+ results_delft$contig[i] <- mean(
+ lsm_p_contig(green_cell)$value[lsm_p_contig(green_cell)$class == 1], na.rm = TRUE)
+ results_delft$enn[i] <- mean(
+ lsm_p_enn(green_cell)$value[lsm_p_enn(green_cell)$class == 1], na.rm = TRUE)
+ # results_delft$prox[i] <- mean(
+ # lsm_p_prox(green_cell)$value[lsm_p_prox(green_cell)$class == 1], na.rm = TRUE)
+
+ }, error = function(e) NULL)
+}
+
+cat("Done! Cells with values:", sum(!is.na(results_delft$area)), "\n")
+head(results_delft[!is.na(results_delft$area), ])
+```
+
+# Step 5. Join green metrics to grid (Delft)
+
+```{r}
+grid_metrics_delft <- merge(grid_delft, results_delft, by = "id")
+```
+
+# Step 6. Plot: Mean Patch Area (Delft)
+
+```{r}
+plot(grid_metrics_delft["area"], main = "Mean Patch Area - Delft")
+```
+
+# Step 7. Plot: Mean Radius of Gyration (Delft)
+
+```{r}
+plot(grid_metrics_delft["gyrate"], main = "Mean Radius of Gyration - Delft")
+```
+
+# Step 8. Plot: Mean Contiguity Index (Delft)
+
+```{r}
+plot(grid_metrics_delft["contig"], main = "Mean Contiguity Index - Delft")
+```
+
+# Step 9. Plot: Mean Nearest-Neighbor Distance (Delft)
+
+```{r}
+plot(grid_metrics_delft["enn"], main = "Mean Nearest-Neighbor Distance - Delft")
+```
+
+# Step 10. Prox skipped (Delft)
+
+```{r}
+# plot(grid_metrics_delft["prox"], main = "Mean Proximity Index - Delft")
+message("Step 10 skipped: prox commented out.")
+```
+
+# Step 11. Load flood raster (Delft)
+
+```{r}
+flood_path_delft <- p("Delft_Sentinel/Afterminusbefore_floodmask_Delft_28992.tif")
+
+file.exists(flood_path_delft)
+file.info(flood_path_delft)$size
+describe(flood_path_delft)
+
+flood_delft <- rast(flood_path_delft)
+plot(flood_delft, main = "Flood change mask - Delft")
+flood_delft
+```
+
+# Step 12. Align flood raster CRS to green raster (Delft)
+
+```{r}
+cat("CRS match Delft flood vs green:", crs(flood_delft) == crs(green_delft), "\n")
+# Uncomment if CRS does NOT match:
+# flood_delft <- project(flood_delft, green_delft)
+```
+
+# Step 13. Extract flood metrics per grid cell (Delft)
+
+```{r}
+# Step 13. Extract flood metrics per grid cell (Delft)
+
+# Resample flood to green raster grid
+flood_aligned_delft <- resample(flood_delft, green_delft_5m, method = "near")
+
+flood_binary_delft <- classify(
+ flood_aligned_delft,
+ rbind(c(-Inf, 0.05, 0),
+ c(0.05, Inf, 1)),
+ others = NA)
+
+cat("Flood binary extent:\n"); print(ext(flood_binary_delft))
+cat("Grid extent:\n"); print(ext(grid_delft))
+
+plot(flood_binary_delft, main = "Flood Binary Mask with Grid - Delft")
+plot(st_geometry(grid_delft), add = TRUE)
+
+# Use freq() instead of unique(values()) - memory safe
+freq(flood_binary_delft)
+
+# Only process overlapping cells
+grid_delft_v <- vect(grid_delft)
+overlapping_delft <- which(is.related(grid_delft_v,
+ as.polygons(ext(flood_binary_delft)),
+ "intersects"))
+cat("Delft flood cells to process:", length(overlapping_delft), "\n")
+
+flood_results_delft <- data.frame(id = grid_delft$id)
+flood_results_delft$pland_flood <- NA
+flood_results_delft$np_flood <- NA
+flood_results_delft$cohesion <- NA
+flood_results_delft$clumpy <- NA
+flood_results_delft$division <- NA
+flood_results_delft$lpi <- NA
+
+total <- length(overlapping_delft)
+report <- max(1, round(total / 20))
+
+for (idx in seq_along(overlapping_delft)) {
+ i <- overlapping_delft[idx]
+ if (idx %% report == 0)
+ cat(sprintf("Delft flood progress: %d / %d (%.0f%%)\n", idx, total, idx/total*100))
+
+ tryCatch({
+ cell <- grid_delft_v[i, ]
+ flood_cell <- crop(flood_binary_delft, cell)
+ flood_cell <- mask(flood_cell, cell)
+
+ vals <- na.omit(values(flood_cell))
+ if (length(vals) == 0 || length(unique(vals)) < 2) next
+
+ pland <- lsm_c_pland(flood_cell)
+ np <- lsm_c_np(flood_cell)
+ coh <- lsm_c_cohesion(flood_cell)
+ clumpy_r <- lsm_c_clumpy(flood_cell)
+ division <- lsm_l_division(flood_cell)
+ lpi <- lsm_c_lpi(flood_cell)
+
+ if (nrow(pland[pland$class == 1, ]) > 0)
+ flood_results_delft$pland_flood[i] <- pland$value[pland$class == 1]
+ if (nrow(np[np$class == 1, ]) > 0)
+ flood_results_delft$np_flood[i] <- np$value[np$class == 1]
+ if (nrow(coh[coh$class == 1, ]) > 0)
+ flood_results_delft$cohesion[i] <- coh$value[coh$class == 1]
+ if (nrow(clumpy_r[clumpy_r$class == 1, ]) > 0)
+ flood_results_delft$clumpy[i] <- clumpy_r$value[clumpy_r$class == 1]
+ if (nrow(division) > 0)
+ flood_results_delft$division[i] <- division$value
+ if (nrow(lpi[lpi$class == 1, ]) > 0)
+ flood_results_delft$lpi[i] <- lpi$value[lpi$class == 1]
+
+ }, error = function(e) NULL)
+}
+
+cat("Cells with flood data (Delft):", sum(!is.na(flood_results_delft$pland_flood)), "\n")
+
+grid_full_delft <- merge(grid_metrics_delft, flood_results_delft, by = "id")
+
+cat("Cells with both contig AND flood (Delft):",
+ sum(!is.na(grid_full_delft$contig) & !is.na(grid_full_delft$pland_flood)), "\n")
+
+par(mfrow = c(2, 3))
+plot(grid_full_delft["pland_flood"], main = "% Cell Flooded - Delft")
+plot(grid_full_delft["np_flood"], main = "N Flood Patches - Delft")
+plot(grid_full_delft["cohesion"], main = "Flood Cohesion - Delft")
+plot(grid_full_delft["clumpy"], main = "Flood Clumpiness - Delft")
+plot(grid_full_delft["division"], main = "Landscape Division - Delft")
+plot(grid_full_delft["lpi"], main = "Largest Flood Patch - Delft")
+par(mfrow = c(1, 1))
+
+st_write(grid_full_delft,
+ p("Delft_Sentinel/grid_full_metrics_delft.gpkg"),
+ append = FALSE)
+
+writeRaster(flood_binary_delft,
+ p("Delft_Sentinel/flood_binary_delft.tif"),
+ overwrite = TRUE)
+```
+
+# Step 14. (Merge done in Step 13 - Delft)
+
+```{r}
+message("Step 14 Delft: merge complete. Rows: ", nrow(grid_full_delft))
+```
+
+# Step 15. Correlate green configuration vs flood extent (Delft)
+
+```{r}
+# Step 15. Correlate green configuration vs flood metrics (Delft)
+library(dplyr)
+
+# ── Helper: print correlation cleanly ─────────────────────────────────────
+cor_print <- function(x, y, xname, yname, data) {
+ result <- cor.test(data[[x]], data[[y]], use = "complete.obs")
+ cat(sprintf("%-20s vs %-15s | r = %+.3f | p = %.4f %s\n",
+ xname, yname,
+ result$estimate,
+ result$p.value,
+ ifelse(result$p.value < 0.05, "*", "")))
+}
+
+cat("=== GREEN CONFIGURATION vs FLOOD EXTENT (pland_flood) ===\n")
+# Does more compact/larger green = less flooding?
+cor_print("contig", "pland_flood", "contig", "pland_flood", grid_full_delft)
+cor_print("area", "pland_flood", "area", "pland_flood", grid_full_delft)
+cor_print("gyrate", "pland_flood", "gyrate", "pland_flood", grid_full_delft)
+cor_print("enn", "pland_flood", "enn", "pland_flood", grid_full_delft)
+
+cat("\n=== GREEN CONFIGURATION vs FLOOD FRAGMENTATION (np_flood) ===\n")
+# Does green fragmentation predict flood fragmentation?
+cor_print("contig", "np_flood", "contig", "np_flood", grid_full_delft)
+cor_print("enn", "np_flood", "enn", "np_flood", grid_full_delft)
+cor_print("area", "np_flood", "area", "np_flood", grid_full_delft)
+
+cat("\n=== GREEN CONFIGURATION vs FLOOD CONNECTIVITY (cohesion + clumpy) ===\n")
+# Does green compactness predict whether flooding is connected or scattered?
+cor_print("contig", "cohesion", "contig", "cohesion", grid_full_delft)
+cor_print("contig", "clumpy", "contig", "clumpy", grid_full_delft)
+cor_print("area", "cohesion", "area", "cohesion", grid_full_delft)
+cor_print("enn", "cohesion", "enn", "cohesion", grid_full_delft)
+
+cat("\n=== GREEN CONFIGURATION vs DOMINANT FLOOD PATCH (lpi) ===\n")
+# Does green patch size predict whether flooding concentrates in one large body?
+cor_print("area", "lpi", "area", "lpi", grid_full_delft)
+cor_print("contig", "lpi", "contig", "lpi", grid_full_delft)
+cor_print("gyrate", "lpi", "gyrate", "lpi", grid_full_delft)
+
+cat("\n=== GREEN ISOLATION vs FLOOD DIVISION ===\n")
+# The most spatial structure pairing: fragmented green <-> fragmented flood?
+cor_print("enn", "division", "enn", "division", grid_full_delft)
+cor_print("contig", "division", "contig", "division", grid_full_delft)
+
+cat("\n* = significant at p < 0.05\n")
+
+# Summary correlation matrix
+cat("\n=== FULL CORRELATION MATRIX ===\n")
+green_vars <- c("area", "gyrate", "contig", "enn")
+flood_vars <- c("pland_flood", "np_flood", "cohesion", "clumpy", "division", "lpi")
+
+cor_matrix <- grid_full_delft %>%
+ st_drop_geometry() %>%
+ select(all_of(c(green_vars, flood_vars))) %>%
+ cor(use = "complete.obs")
+
+print(round(cor_matrix[green_vars, flood_vars], 3))
+library(dplyr)
+
+# ── Helper: print correlation cleanly ─────────────────────────────────────
+cor_print <- function(x, y, xname, yname, data) {
+ result <- cor.test(data[[x]], data[[y]], use = "complete.obs")
+ cat(sprintf("%-20s vs %-15s | r = %+.3f | p = %.4f %s\n",
+ xname, yname,
+ result$estimate,
+ result$p.value,
+ ifelse(result$p.value < 0.05, "*", "")))
+}
+
+cat("=== GREEN CONFIGURATION vs FLOOD EXTENT (pland_flood) ===\n")
+# Does more compact/larger green = less flooding?
+cor_print("contig", "pland_flood", "contig", "pland_flood", grid_full_delft)
+cor_print("area", "pland_flood", "area", "pland_flood", grid_full_delft)
+cor_print("gyrate", "pland_flood", "gyrate", "pland_flood", grid_full_delft)
+cor_print("enn", "pland_flood", "enn", "pland_flood", grid_full_delft)
+
+cat("\n=== GREEN CONFIGURATION vs FLOOD FRAGMENTATION (np_flood) ===\n")
+# Does green fragmentation predict flood fragmentation?
+cor_print("contig", "np_flood", "contig", "np_flood", grid_full_delft)
+cor_print("enn", "np_flood", "enn", "np_flood", grid_full_delft)
+cor_print("area", "np_flood", "area", "np_flood", grid_full_delft)
+
+cat("\n=== GREEN CONFIGURATION vs FLOOD CONNECTIVITY (cohesion + clumpy) ===\n")
+# Does green compactness predict whether flooding is connected or scattered?
+cor_print("contig", "cohesion", "contig", "cohesion", grid_full_delft)
+cor_print("contig", "clumpy", "contig", "clumpy", grid_full_delft)
+cor_print("area", "cohesion", "area", "cohesion", grid_full_delft)
+cor_print("enn", "cohesion", "enn", "cohesion", grid_full_delft)
+
+cat("\n=== GREEN CONFIGURATION vs DOMINANT FLOOD PATCH (lpi) ===\n")
+# Does green patch size predict whether flooding concentrates in one large body?
+cor_print("area", "lpi", "area", "lpi", grid_full_delft)
+cor_print("contig", "lpi", "contig", "lpi", grid_full_delft)
+cor_print("gyrate", "lpi", "gyrate", "lpi", grid_full_delft)
+
+cat("\n=== GREEN ISOLATION vs FLOOD DIVISION ===\n")
+# The most spatial structure pairing: fragmented green <-> fragmented flood?
+cor_print("enn", "division", "enn", "division", grid_full_delft)
+cor_print("contig", "division", "contig", "division", grid_full_delft)
+
+cat("\n* = significant at p < 0.05\n")
+
+# Summary correlation matrix
+cat("\n=== FULL CORRELATION MATRIX ===\n")
+green_vars <- c("area", "gyrate", "contig", "enn")
+flood_vars <- c("pland_flood", "np_flood", "cohesion", "clumpy", "division", "lpi")
+
+cor_matrix <- grid_full_delft %>%
+ st_drop_geometry() %>%
+ select(all_of(c(green_vars, flood_vars))) %>%
+ cor(use = "complete.obs")
+
+print(round(cor_matrix[green_vars, flood_vars], 3))
+
+# Step 16. Plot: green contiguity vs flood extent (Delft)
+
+```{r}
+plot(grid_full_delft$contig, grid_full_delft$pland_flood,
+ xlab = "Mean Green Contiguity",
+ ylab = "% Cell Flooded",
+ main = "Green contiguity vs flood extent - Delft")
+```
+
+------------------------------------------------------------------------
+
+# ── XI'AN ──────────────────────────────────────────────────────────────────
+
+# NOTE: Xi'an green binary raster not yet available.
+
+# Lines referencing green_xian are commented out.
+
+# All flood steps run immediately from the Xi'an flood mask.
+
+# Step 1X. Load packages and data (Xi'an)
+
+```{r}
+green_xian <- rast(p("reprojected_green_cropped_xian_binary_compressed.tif"))
+
+grid_xian <- st_read(p("grid_10000x10000_xian.gpkg"), quiet = TRUE)
+
+ plot(green_xian, main = "Green binary raster - Xi'an")
+# plot(st_geometry(grid_xian), add = TRUE)
+plot(st_geometry(grid_xian), main = "Grid - Xi'an")
+```
+
+
+
+# Step 3X. Landscape metrics for one cell (Xi'an)
+
+```{r}
+lsm_p_area(green_test_xian)
+lsm_p_gyrate(green_test_xian)
+lsm_p_contig(green_test_xian)
+lsm_p_enn(green_test_xian)
+#lsm_p_prox(green_test_xian)
+
+```
+
+# Step 4X. Calculate green metrics for all cells (Xi'an)
+
+```{r}
+
+# Aggregate to 5m first - same as Delft
+green_xian_5m <- aggregate(green_xian, fact = 20, fun = "modal")
+cat("Resampled resolution:", res(green_xian_5m), "m\n")
+
+# Only iterate over cells that actually overlap the green raster
+grid_xian_v <- vect(grid_xian)
+overlapping_xian <- which(is.related(grid_xian_v,
+ as.polygons(ext(green_xian_5m)),
+ "intersects"))
+cat("Cells to process:", length(overlapping_xian), "out of", nrow(grid_xian), "\n")
+
+results_xian <- data.frame(id = grid_xian$id)
+results_xian$area <- NA
+results_xian$gyrate <- NA
+results_xian$contig <- NA
+results_xian$enn <- NA
+# results_xian$prox <- NA
+
+total_x <- length(overlapping_xian)
+report_x <- max(1, round(total_x / 20))
+
+for (idx in seq_along(overlapping_xian)) {
+ i <- overlapping_xian[idx]
+ if (idx %% report_x == 0)
+ cat(sprintf("Xi'an progress: %d / %d (%.0f%%)\n", idx, total_x, idx/total_x*100))
+
+ tryCatch({
+ cell <- grid_xian_v[i, ]
+ green_cell <- crop(green_xian_5m, cell)
+ green_cell <- mask(green_cell, cell)
+
+ vals <- na.omit(values(green_cell))
+ if (length(vals) == 0 || !1 %in% vals) next
+
+ results_xian$area[i] <- mean(
+ lsm_p_area(green_cell)$value[lsm_p_area(green_cell)$class == 1], na.rm = TRUE)
+ results_xian$gyrate[i] <- mean(
+ lsm_p_gyrate(green_cell)$value[lsm_p_gyrate(green_cell)$class == 1], na.rm = TRUE)
+ results_xian$contig[i] <- mean(
+ lsm_p_contig(green_cell)$value[lsm_p_contig(green_cell)$class == 1], na.rm = TRUE)
+ results_xian$enn[i] <- mean(
+ lsm_p_enn(green_cell)$value[lsm_p_enn(green_cell)$class == 1], na.rm = TRUE)
+ # results_xian$prox[i] <- mean(
+ # lsm_p_prox(green_cell)$value[lsm_p_prox(green_cell)$class == 1], na.rm = TRUE)
+
+ }, error = function(e) NULL) # silently skip non-overlapping cells
+}
+
+cat("Done! Cells with values:", sum(!is.na(results_xian$area)), "\n")
+head(results_xian[!is.na(results_xian$area), ])
+```
+
+# Step 5X. Join green metrics to grid (Xi'an)
+
+```{r}
+grid_metrics_xian <- merge(grid_xian, results_xian, by = "id")
+cat("grid_metrics_xian rows:", nrow(grid_metrics_xian), "\n")
+cat("Columns:", names(grid_metrics_xian), "\n")
+```
+
+# Step 6X. Plot: Mean Patch Area (Xi'an)
+
+```{r}
+plot(grid_metrics_xian["area"], main = "Mean Patch Area - Xi'an")
+```
+
+# Step 7X. Plot: Mean Radius of Gyration (Xi'an)
+
+```{r}
+plot(grid_metrics_xian["gyrate"], main = "Mean Radius of Gyration - Xi'an")
+```
+
+# Step 8X. Plot: Mean Contiguity Index (Xi'an)
+
+```{r}
+plot(grid_metrics_xian["contig"], main = "Mean Contiguity Index - Xi'an")
+```
+
+# Step 9X. Plot: Mean Nearest-Neighbor Distance (Xi'an)
+
+```{r}
+plot(grid_metrics_xian["enn"], main = "Mean Nearest-Neighbor Distance - Xi'an")
+```
+
+# Step 10X. Prox skipped (Xi'an)
+
+```{r}
+# plot(grid_metrics_xian["prox"], main = "Mean Proximity Index - Xi'an")
+message("Step 10X skipped: prox commented out.")
+```
+
+# Step 11X. Load flood raster (Xi'an)
+
+```{r}
+#flood_path_xian <- p("Xi'an_Sentinel/After_minus_before_FloodMask_Xian_sieved.tif")
+
+#file.exists(flood_path_xian)
+#file.info(flood_path_xian)$size
+#describe(flood_path_xian)
+
+#flood_xian <- rast(flood_path_xian)
+#plot(flood_xian, main = "Flood change mask - Xi'an")
+#flood_xian
+
+flood_path_xian <- p("Xi'an_Sentinel/After_minus_before_FloodMask_Xian_sieved.tif")
+
+cat("File exists:", file.exists(flood_path_xian), "\n")
+cat("File size (MB):", round(file.info(flood_path_xian)$size / 1e6, 1), "\n")
+
+flood_xian_raw <- rast(flood_path_xian)
+cat("Resolution:", res(flood_xian_raw), "m\n")
+cat("Full size:", ncell(flood_xian_raw), "cells\n")
+cat("Full extent:\n"); print(ext(flood_xian_raw))
+
+flood_xian <- crop(flood_xian_raw, ext(vect(grid_xian)))
+rm(flood_xian_raw)
+gc()
+
+cat("Cropped size:", ncell(flood_xian), "cells\n")
+cat("Cropped extent:\n"); print(ext(flood_xian))
+
+plot(flood_xian, main = "Flood change mask - Xi'an (cropped to grid)")
+plot(st_geometry(grid_xian), add = TRUE)
+flood_xian
+```
+
+```{# Step 11X. Load flood raster (Xi'an) - cropped to grid extent}
+{r}
+
+
+flood_path_xian <- p("Xi'an_Sentinel/After_minus_before_FloodMask_Xian_sieved.tif")
+
+cat("File exists:", file.exists(flood_path_xian), "\n")
+cat("File size (MB):", round(file.info(flood_path_xian)$size / 1e6, 1), "\n")
+
+flood_xian_raw <- rast(flood_path_xian)
+cat("Resolution:", res(flood_xian_raw), "m\n")
+cat("Full size:", ncell(flood_xian_raw), "cells\n")
+cat("Full extent:\n"); print(ext(flood_xian_raw))
+
+flood_xian <- crop(flood_xian_raw, ext(vect(grid_xian)))
+rm(flood_xian_raw)
+gc()
+
+cat("Cropped size:", ncell(flood_xian), "cells\n")
+cat("Cropped extent:\n"); print(ext(flood_xian))
+
+plot(flood_xian, main = "Flood change mask - Xi'an (cropped to grid)")
+plot(st_geometry(grid_xian), add = TRUE)
+flood_xian
+```
+
+# Step 12X. Align flood raster CRS to grid CRS (Xi'an)
+
+```{r}
+grid_crs_xian <- crs(vect(grid_xian))
+
+cat("Flood CRS (Xi'an):\n"); print(crs(flood_xian))
+cat("Grid CRS (Xi'an):\n"); print(grid_crs_xian)
+
+if (crs(flood_xian) != grid_crs_xian) {
+ message("Reprojecting Xi'an flood raster to match grid CRS...")
+ flood_xian <- project(flood_xian, grid_crs_xian)
+} else {
+ message("Xi'an flood and grid CRS already match.")
+}
+```
+
+# Step 13X. Extract flood metrics per grid cell (Xi'an)
+
+```{r}
+
+# Resample flood raster to coarser resolution to avoid memory issues
+# Xi'an flood raster is very large - aggregate to 10m or match green resolution
+cat("Xi'an flood raster resolution:", res(flood_xian), "\n")
+cat("Xi'an flood raster size:", ncell(flood_xian), "cells\n")
+
+# Aggregate to 10m if resolution is finer (avoids 11.9GB allocation)
+if (res(flood_xian)[1] < 10) {
+ fact_xian <- ceiling(10 / res(flood_xian)[1])
+ cat("Aggregating Xi'an flood raster by factor", fact_xian, "...\n")
+ flood_xian <- aggregate(flood_xian, fact = fact_xian, fun = "max")
+ cat("New resolution:", res(flood_xian), "\n")
+}
+
+flood_binary_xian <- classify(
+ flood_xian,
+ rbind(c(-Inf, 0.05, 0),
+ c(0.05, Inf, 1)),
+ others = NA)
+
+cat("Flood binary extent (Xi'an):\n"); print(ext(flood_binary_xian))
+cat("Grid extent (Xi'an):\n"); print(ext(grid_xian))
+
+plot(flood_binary_xian, main = "Flood Binary Mask with Grid - Xi'an")
+plot(st_geometry(grid_xian), add = TRUE)
+
+# Use freq() instead of unique(values()) - memory safe
+freq(flood_binary_xian)
+
+# Make sure grid_metrics_xian exists (from Step 5X)
+if (!exists("grid_metrics_xian")) {
+ grid_metrics_xian <- grid_xian
+ message("grid_metrics_xian was missing - set to bare grid")
+}
+
+# Pre-filter overlapping cells only
+grid_xian_v <- vect(grid_xian)
+overlapping_xian <- which(is.related(grid_xian_v,
+ as.polygons(ext(flood_binary_xian)),
+ "intersects"))
+cat("Xi'an cells to process:", length(overlapping_xian), "\n")
+
+flood_results_xian <- data.frame(id = grid_xian$id)
+flood_results_xian$pland_flood <- NA
+flood_results_xian$np_flood <- NA
+flood_results_xian$cohesion <- NA
+flood_results_xian$clumpy <- NA
+flood_results_xian$division <- NA
+flood_results_xian$lpi <- NA
+
+total_xian <- length(overlapping_xian)
+report_xian <- max(1, round(total_xian / 20))
+
+for (idx in seq_along(overlapping_xian)) {
+ i <- overlapping_xian[idx]
+
+ if (idx %% report_xian == 0)
+ cat(sprintf("Xi'an flood progress: %d / %d (%.0f%%)\n",
+ idx, total_xian, idx/total_xian*100))
+
+ tryCatch({
+ cell <- grid_xian_v[i, ]
+ flood_cell <- crop(flood_binary_xian, cell)
+ flood_cell <- mask(flood_cell, cell)
+
+ vals <- na.omit(values(flood_cell))
+ if (length(vals) == 0 || length(unique(vals)) < 2) next
+
+ pland <- lsm_c_pland(flood_cell)
+ np <- lsm_c_np(flood_cell)
+ coh <- lsm_c_cohesion(flood_cell)
+ clumpy_r <- lsm_c_clumpy(flood_cell)
+ division <- lsm_l_division(flood_cell)
+ lpi <- lsm_c_lpi(flood_cell)
+
+ if (nrow(pland[pland$class == 1, ]) > 0)
+ flood_results_xian$pland_flood[i] <- pland$value[pland$class == 1]
+ if (nrow(np[np$class == 1, ]) > 0)
+ flood_results_xian$np_flood[i] <- np$value[np$class == 1]
+ if (nrow(coh[coh$class == 1, ]) > 0)
+ flood_results_xian$cohesion[i] <- coh$value[coh$class == 1]
+ if (nrow(clumpy_r[clumpy_r$class == 1, ]) > 0)
+ flood_results_xian$clumpy[i] <- clumpy_r$value[clumpy_r$class == 1]
+ if (nrow(division) > 0)
+ flood_results_xian$division[i] <- division$value
+ if (nrow(lpi[lpi$class == 1, ]) > 0)
+ flood_results_xian$lpi[i] <- lpi$value[lpi$class == 1]
+
+ }, error = function(e) NULL)
+}
+
+cat("Cells with flood data (Xi'an):", sum(!is.na(flood_results_xian$pland_flood)), "\n")
+
+grid_full_xian <- merge(grid_metrics_xian, flood_results_xian, by = "id")
+
+par(mfrow = c(2, 3))
+plot(grid_full_xian["pland_flood"], main = "% Cell Flooded - Xi'an")
+plot(grid_full_xian["np_flood"], main = "N Flood Patches - Xi'an")
+plot(grid_full_xian["cohesion"], main = "Flood Cohesion - Xi'an")
+plot(grid_full_xian["clumpy"], main = "Flood Clumpiness - Xi'an")
+plot(grid_full_xian["division"], main = "Landscape Division - Xi'an")
+plot(grid_full_xian["lpi"], main = "Largest Flood Patch - Xi'an")
+par(mfrow = c(1, 1))
+
+st_write(grid_full_xian,
+ p("Xi'an_Sentinel/grid_full_metrics_xian.gpkg"),
+ delete_if_exists = TRUE)
+
+writeRaster(flood_binary_xian,
+ p("Xi'an_Sentinel/flood_binary_xian.tif"),
+ overwrite = TRUE)
+```
+
+# Step 14X. (Merge done in Step 13X - Xi'an)
+
+```{r}
+message("Step 14X Xi'an: merge complete. Rows: ", nrow(grid_full_xian))
+```
+
+
+# Step 15X. Correlate green configuration vs flood metrics (Xi'an)
+
+```{r}
+
+library(dplyr)
+
+cor_print <- function(x, y, xname, yname, data) {
+ result <- cor.test(data[[x]], data[[y]], use = "complete.obs")
+ cat(sprintf("%-20s vs %-15s | r = %+.3f | p = %.4f %s\n",
+ xname, yname,
+ result$estimate,
+ result$p.value,
+ ifelse(result$p.value < 0.05, "*", "")))
+}
+
+cat("=== GREEN CONFIGURATION vs FLOOD EXTENT (pland_flood) ===\n")
+cor_print("contig", "pland_flood", "contig", "pland_flood", grid_full_xian)
+cor_print("area", "pland_flood", "area", "pland_flood", grid_full_xian)
+cor_print("gyrate", "pland_flood", "gyrate", "pland_flood", grid_full_xian)
+cor_print("enn", "pland_flood", "enn", "pland_flood", grid_full_xian)
+
+cat("\n=== GREEN CONFIGURATION vs FLOOD FRAGMENTATION (np_flood) ===\n")
+cor_print("contig", "np_flood", "contig", "np_flood", grid_full_xian)
+cor_print("enn", "np_flood", "enn", "np_flood", grid_full_xian)
+cor_print("area", "np_flood", "area", "np_flood", grid_full_xian)
+
+cat("\n=== GREEN CONFIGURATION vs FLOOD CONNECTIVITY (cohesion + clumpy) ===\n")
+cor_print("contig", "cohesion", "contig", "cohesion", grid_full_xian)
+cor_print("contig", "clumpy", "contig", "clumpy", grid_full_xian)
+cor_print("area", "cohesion", "area", "cohesion", grid_full_xian)
+cor_print("enn", "cohesion", "enn", "cohesion", grid_full_xian)
+
+cat("\n=== GREEN CONFIGURATION vs DOMINANT FLOOD PATCH (lpi) ===\n")
+cor_print("area", "lpi", "area", "lpi", grid_full_xian)
+cor_print("contig", "lpi", "contig", "lpi", grid_full_xian)
+cor_print("gyrate", "lpi", "gyrate", "lpi", grid_full_xian)
+
+cat("\n=== GREEN ISOLATION vs FLOOD DIVISION ===\n")
+cor_print("enn", "division", "enn", "division", grid_full_xian)
+cor_print("contig", "division", "contig", "division", grid_full_xian)
+
+cat("\n* = significant at p < 0.05\n")
+
+cat("\n=== FULL CORRELATION MATRIX ===\n")
+green_vars <- c("area", "gyrate", "contig", "enn")
+flood_vars <- c("pland_flood", "np_flood", "cohesion", "clumpy", "division", "lpi")
+
+cor_matrix_xian <- grid_full_xian %>%
+ st_drop_geometry() %>%
+ select(all_of(c(green_vars, flood_vars))) %>%
+ cor(use = "complete.obs")
+
+print(round(cor_matrix_xian[green_vars, flood_vars], 3))
+
+```
+
+# Step 16X. Plot: green contiguity vs flood extent (Xi'an)
+
+```{r}
+ plot(grid_full_xian$contig, grid_full_xian$pland_flood,
+ xlab = "Mean Green Contiguity",
+ ylab = "% Cell Flooded",
+ main = "Green contiguity vs flood extent - Xi'an")
+message("Step 16X: skipped - Xi'an green not available yet.")
+```
+
+------------------------------------------------------------------------
+
+# ── STEPS 17-19: DISTANCE METRIC, CLUSTERING & TILED MAPS ─────────────────
+
+
+
+# Step 17. Distance from flooded cells to nearest green patch (Delft + Xi'an)
+```{r}
+# ── Delft ────────────────────────────────────────────────────────────────
+green_target_delft <- green_delft
+green_target_delft[green_target_delft != 1] <- NA
+
+dist_to_green_delft <- distance(green_target_delft)
+dist_to_green_delft_5m <- resample(dist_to_green_delft, flood_binary_delft, method = "bilinear")
+flood_dist_delft <- mask(dist_to_green_delft_5m, flood_binary_delft, maskvalues = c(0, NA))
+
+plot(flood_dist_delft, main = "Distance from flooded cells to nearest green - Delft")
+
+grid_full_delft$mean_dist_green <- NA
+grid_full_delft$min_dist_green <- NA
+
+for (i in 1:nrow(grid_delft)) {
+ tryCatch({
+ cell <- vect(grid_delft[i, ])
+ fd_cell <- crop(flood_dist_delft, cell)
+ fd_cell <- mask(fd_cell, cell)
+ vals <- na.omit(values(fd_cell))
+ if (length(vals) == 0) next
+ grid_full_delft$mean_dist_green[i] <- mean(vals)
+ grid_full_delft$min_dist_green[i] <- min(vals)
+ }, error = function(e) NULL)
+}
+
+cat("Delft cells with dist_green values:", sum(!is.na(grid_full_delft$mean_dist_green)), "\n")
+
+# ── Xi'an ────────────────────────────────────────────────────────────────
+green_target_xian <- green_xian
+green_target_xian[green_target_xian != 1] <- NA
+
+dist_to_green_xian <- distance(green_target_xian)
+dist_to_green_xian_5m <- resample(dist_to_green_xian, flood_binary_xian, method = "bilinear")
+flood_dist_xian <- mask(dist_to_green_xian_5m, flood_binary_xian, maskvalues = c(0, NA))
+
+plot(flood_dist_xian, main = "Distance from flooded cells to nearest green - Xi'an")
+
+grid_full_xian$mean_dist_green <- NA
+grid_full_xian$min_dist_green <- NA
+
+for (i in 1:nrow(grid_xian)) {
+ tryCatch({
+ cell <- vect(grid_xian[i, ])
+ fd_cell <- crop(flood_dist_xian, cell)
+ fd_cell <- mask(fd_cell, cell)
+ vals <- na.omit(values(fd_cell))
+ if (length(vals) == 0) next
+ grid_full_xian$mean_dist_green[i] <- mean(vals)
+ grid_full_xian$min_dist_green[i] <- min(vals)
+ }, error = function(e) NULL)
+}
+
+cat("Xi'an cells with dist_green values:", sum(!is.na(grid_full_xian$mean_dist_green)), "\n")
+head(grid_full_xian[!is.na(grid_full_xian$mean_dist_green),
+ c("id", "mean_dist_green", "min_dist_green")])
+```
+
+
+# Step 18. K-means clustering into typologies (Delft + Xi'an)
+```{r}
+library(dplyr)
+
+# ── Delft ────────────────────────────────────────────────────────────────
+vars_delft <- grid_full_delft %>%
+ st_drop_geometry() %>%
+ select(area, gyrate, contig, enn,
+ pland_flood, np_flood, cohesion, clumpy, division, lpi,
+ mean_dist_green, min_dist_green)
+
+vars_delft[is.na(vars_delft)] <- 0
+vars_scaled_delft <- scale(vars_delft)
+
+wss_delft <- sapply(2:8, function(k)
+ kmeans(vars_scaled_delft, k, nstart = 25)$tot.withinss)
+plot(2:8, wss_delft, type = "b",
+ xlab = "Number of clusters (k)", ylab = "Within-cluster SS",
+ main = "Elbow method - Delft")
+
+set.seed(123)
+k_delft <- 4
+km_delft <- kmeans(vars_scaled_delft, centers = k_delft, nstart = 25)
+
+grid_full_delft$typology <- factor(km_delft$cluster,
+ labels = paste0("Typology ", 1:k_delft))
+cat("Typology counts - Delft:\n"); print(table(grid_full_delft$typology))
+
+st_write(grid_full_delft,
+ p("Delft_Sentinel/grid_full_typology_delft.gpkg"),
+ append = FALSE)
+
+# ── Xi'an ────────────────────────────────────────────────────────────────
+vars_xian <- grid_full_xian %>%
+ st_drop_geometry() %>%
+ select(area, gyrate, contig, enn,
+ pland_flood, np_flood, cohesion, clumpy, division, lpi,
+ mean_dist_green, min_dist_green)
+
+vars_xian[is.na(vars_xian)] <- 0
+vars_scaled_xian <- scale(vars_xian)
+
+wss_xian <- sapply(2:8, function(k)
+ kmeans(vars_scaled_xian, k, nstart = 25)$tot.withinss)
+plot(2:8, wss_xian, type = "b",
+ xlab = "Number of clusters (k)", ylab = "Within-cluster SS",
+ main = "Elbow method - Xi'an")
+
+set.seed(123)
+k_xian <- 4
+km_xian <- kmeans(vars_scaled_xian, centers = k_xian, nstart = 25)
+
+grid_full_xian$typology <- factor(km_xian$cluster,
+ labels = paste0("Typology ", 1:k_xian))
+cat("Typology counts - Xi'an:\n"); print(table(grid_full_xian$typology))
+
+st_write(grid_full_xian,
+ p("Xi'an_Sentinel/grid_full_typology_xian.gpkg"),
+ append = FALSE)
+```
+
+
+
+# Step 19. Tiled spatial pattern maps - all metrics, both cities (slide 38 style)
+```{r}
+library(ggplot2)
+library(patchwork)
+library(dplyr)
+
+delft_map <- st_read(p("Delft_Sentinel/grid_full_typology_delft.gpkg"), quiet = TRUE)
+delft_map$city <- "Delft"
+
+# Use the typology file (post-clustering), not the pre-clustering metrics file
+xian_map <- st_read(p("Xi'an_Sentinel/grid_full_typology_xian.gpkg"), quiet = TRUE)
+xian_map$city <- "Xi'an"
+
+typology_colors <- c(
+ "Typology 1" = "#5B9BA8",
+ "Typology 2" = "#8E8FC2",
+ "Typology 3" = "#B4647A",
+ "Typology 4" = "#F2C9C9"
+)
+
+map_theme <- theme_void() +
+ theme(
+ plot.title = element_text(hjust = 1, face = "bold", size = 9),
+ legend.position = "right",
+ legend.key.size = unit(0.3, "cm"),
+ legend.text = element_text(size = 6),
+ legend.title = element_text(size = 7)
+ )
+
+make_panel <- function(data, metric, city_name, shared_limits) {
+ ggplot(data) +
+ geom_sf(aes(fill = .data[[metric]]), color = NA) +
+ scale_fill_viridis_c(option = "magma", na.value = "grey90",
+ name = metric, limits = shared_limits) +
+ labs(title = paste0(city_name, "\n", metric)) +
+ map_theme
+}
+
+make_donut <- function(data, city_name) {
+ d <- data %>%
+ st_drop_geometry() %>%
+ filter(!is.na(typology)) %>%
+ count(typology) %>%
+ mutate(pct = n / sum(n) * 100)
+
+ ggplot(d, aes(x = 2, y = pct, fill = typology)) +
+ geom_col(width = 1, color = "white") +
+ coord_polar(theta = "y") +
+ xlim(0.5, 2.5) +
+ scale_fill_manual(values = typology_colors, drop = FALSE) +
+ geom_text(aes(label = paste0(round(pct), "%")),
+ position = position_stack(vjust = 0.5), size = 3) +
+ labs(title = city_name) +
+ theme_void() +
+ theme(legend.position = "none",
+ plot.title = element_text(hjust = 0.5, face = "bold"))
+}
+
+# Typology maps - both cities now active
+typology_map_delft <- ggplot(delft_map) +
+ geom_sf(aes(fill = typology), color = NA) +
+ scale_fill_manual(values = typology_colors, na.value = "grey90", drop = FALSE) +
+ labs(title = "Delft\nTypology") +
+ map_theme
+
+typology_map_xian <- ggplot(xian_map) +
+ geom_sf(aes(fill = typology), color = NA) +
+ scale_fill_manual(values = typology_colors, na.value = "grey90", drop = FALSE) +
+ labs(title = "Xi'an\nTypology") +
+ map_theme
+
+donut_delft <- make_donut(delft_map, "Delft")
+donut_xian <- make_donut(xian_map, "Xi'an")
+
+# Metrics to tile
+green_metrics <- c("area", "gyrate", "contig", "enn")
+flood_metrics <- c("pland_flood", "np_flood", "cohesion", "clumpy", "division", "lpi")
+dist_metrics <- c("mean_dist_green", "min_dist_green")
+all_metrics <- c(green_metrics, flood_metrics, dist_metrics)
+
+panels <- list()
+for (m in all_metrics) {
+ delft_vals <- if (m %in% names(delft_map)) delft_map[[m]] else numeric(0)
+ xian_vals <- if (m %in% names(xian_map)) xian_map[[m]] else numeric(0)
+ rng <- range(c(delft_vals, xian_vals), na.rm = TRUE)
+ if (any(is.infinite(rng))) rng <- c(0, 1)
+
+ panels[[paste0(m, "_delft")]] <- make_panel(delft_map, m, "Delft", rng)
+ panels[[paste0(m, "_xian")]] <- make_panel(xian_map, m, "Xi'an", rng)
+}
+
+metric_grid <- wrap_plots(panels, ncol = 2)
+
+# Combined typology overview: both cities' maps + donuts
+typology_overview <- (typology_map_delft | donut_delft) / (typology_map_xian | donut_xian) +
+ plot_annotation(title = "Typology spatial pattern - Delft & Xi'an",
+ theme = theme(plot.title = element_text(face = "bold", size = 11)))
+
+typology_overview
+metric_grid
+
+ggsave(p("typology_overview_both_cities.png"),
+ typology_overview, width = 10, height = 9, dpi = 300)
+
+ggsave(p("typology_metrics_tiled.png"),
+ metric_grid,
+ width = 10, height = 4 * length(all_metrics), dpi = 300,
+ limitsize = FALSE)
+
+message("Step 19 complete. Plots saved to D:/ARFW0501/")
+```
+
+# Step 20. Typology interpretation table
+```{r}
+interpret_typologies <- function(grid_data, city_name) {
+ grid_data %>%
+ st_drop_geometry() %>%
+ group_by(typology) %>%
+ summarise(
+ n_cells = n(),
+ mean_area = mean(area, na.rm = TRUE),
+ mean_contig = mean(contig, na.rm = TRUE),
+ mean_enn = mean(enn, na.rm = TRUE),
+ mean_pland_flood = mean(pland_flood, na.rm = TRUE),
+ mean_np_flood = mean(np_flood, na.rm = TRUE),
+ mean_dist_green = mean(mean_dist_green, na.rm = TRUE)
+ ) %>%
+ mutate(city = city_name)
+}
+
+typ_table_delft <- interpret_typologies(grid_full_delft, "Delft")
+typ_table_xian <- interpret_typologies(grid_full_xian, "Xi'an")
+
+typology_summary <- bind_rows(typ_table_delft, typ_table_xian)
+print(typology_summary, n = Inf)
+```
+
+# Step 21. Flood-prone DEM metrics for Xi'an
+```{r}
+dem_path_xian <- p("fab_flood_prone.tif")
+file.exists(dem_path_xian)
+file.info(dem_path_xian)$size
+
+dem_xian_raw <- rast(dem_path_xian)
+cat("DEM resolution:", res(dem_xian_raw), "\n")
+cat("DEM extent:\n"); print(ext(dem_xian_raw))
+cat("DEM CRS:\n"); print(crs(dem_xian_raw, describe = TRUE)$code)
+
+# Reproject grid if needed, then crop DEM to grid extent
+grid_xian_v <- vect(grid_xian)
+if (!identical(crs(dem_xian_raw), crs(grid_xian_v))) {
+ message("Reprojecting DEM to match grid CRS...")
+ dem_xian_raw <- project(dem_xian_raw, crs(grid_xian_v))
+}
+
+dem_xian <- crop(dem_xian_raw, ext(grid_xian_v))
+rm(dem_xian_raw); gc()
+
+cat("Cropped DEM size:", ncell(dem_xian), "cells\n")
+plot(dem_xian, main = "Flood-prone DEM - Xi'an (cropped to grid)")
+plot(st_geometry(grid_xian), add = TRUE)
+
+# Classify DEM into binary flood-prone mask using same threshold logic as flood mask
+dem_binary_xian <- classify(
+ dem_xian,
+ rbind(c(-Inf, 0.05, 0),
+ c(0.05, Inf, 1)),
+ others = NA)
+
+freq(dem_binary_xian)
+
+# Same landscape metrics as the flood mask steps, applied to DEM flood-prone areas
+dem_results_xian <- data.frame(id = grid_xian$id)
+dem_results_xian$pland_demfp <- NA
+dem_results_xian$np_demfp <- NA
+dem_results_xian$cohesion_demfp <- NA
+dem_results_xian$clumpy_demfp <- NA
+dem_results_xian$division_demfp <- NA
+dem_results_xian$lpi_demfp <- NA
+
+overlapping_dem <- which(is.related(grid_xian_v,
+ as.polygons(ext(dem_binary_xian)),
+ "intersects"))
+cat("Xi'an DEM cells to process:", length(overlapping_dem), "\n")
+
+total_d <- length(overlapping_dem)
+report_d <- max(1, round(total_d / 20))
+
+for (idx in seq_along(overlapping_dem)) {
+ i <- overlapping_dem[idx]
+ if (idx %% report_d == 0)
+ cat(sprintf("DEM progress: %d / %d (%.0f%%)\n", idx, total_d, idx/total_d*100))
+
+ tryCatch({
+ cell <- grid_xian_v[i, ]
+ dem_cell <- crop(dem_binary_xian, cell)
+ dem_cell <- mask(dem_cell, cell)
+
+ vals <- na.omit(values(dem_cell))
+ if (length(vals) == 0 || length(unique(vals)) < 2) next
+
+ pland <- lsm_c_pland(dem_cell)
+ np <- lsm_c_np(dem_cell)
+ coh <- lsm_c_cohesion(dem_cell)
+ clumpy_r <- lsm_c_clumpy(dem_cell)
+ division <- lsm_l_division(dem_cell)
+ lpi <- lsm_c_lpi(dem_cell)
+
+ if (nrow(pland[pland$class == 1, ]) > 0)
+ dem_results_xian$pland_demfp[i] <- pland$value[pland$class == 1]
+ if (nrow(np[np$class == 1, ]) > 0)
+ dem_results_xian$np_demfp[i] <- np$value[np$class == 1]
+ if (nrow(coh[coh$class == 1, ]) > 0)
+ dem_results_xian$cohesion_demfp[i] <- coh$value[coh$class == 1]
+ if (nrow(clumpy_r[clumpy_r$class == 1, ]) > 0)
+ dem_results_xian$clumpy_demfp[i] <- clumpy_r$value[clumpy_r$class == 1]
+ if (nrow(division) > 0)
+ dem_results_xian$division_demfp[i] <- division$value
+ if (nrow(lpi[lpi$class == 1, ]) > 0)
+ dem_results_xian$lpi_demfp[i] <- lpi$value[lpi$class == 1]
+
+ }, error = function(e) NULL)
+}
+
+cat("Cells with DEM flood-prone data:", sum(!is.na(dem_results_xian$pland_demfp)), "\n")
+
+grid_full_xian <- merge(grid_full_xian, dem_results_xian, by = "id")
+
+par(mfrow = c(2, 3))
+plot(grid_full_xian["pland_demfp"], main = "% Flood-Prone (DEM) - Xi'an")
+plot(grid_full_xian["np_demfp"], main = "N Flood-Prone Patches - Xi'an")
+plot(grid_full_xian["cohesion_demfp"], main = "Flood-Prone Cohesion - Xi'an")
+plot(grid_full_xian["clumpy_demfp"], main = "Flood-Prone Clumpiness - Xi'an")
+plot(grid_full_xian["division_demfp"], main = "Flood-Prone Division - Xi'an")
+plot(grid_full_xian["lpi_demfp"], main = "Largest Flood-Prone Patch - Xi'an")
+par(mfrow = c(1, 1))
+
+st_write(grid_full_xian,
+ p("Xi'an_Sentinel/grid_full_typology_xian.gpkg"),
+ delete_if_exists = TRUE)
+
+writeRaster(dem_binary_xian,
+ p("Xi'an_Sentinel/dem_flood_prone_binary_xian.tif"),
+ overwrite = TRUE)
+
+
+```
diff --git a/src/metriccalc_delftscripts.R b/src/metriccalc_delftscripts.R
new file mode 100644
index 00000000..8ebf6b77
--- /dev/null
+++ b/src/metriccalc_delftscripts.R
@@ -0,0 +1,158 @@
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+dir.create("data/results", recursive = TRUE, showWarnings = FALSE)
+green_path <- "data/processed/delft_green_binary.tif"
+grid_path <- "data/processed/delft_grid.gpkg"
+fwei_before_path <- "data/processed/delft_fwei_before.tif"
+fwei_after_path <- "data/processed/delft_fwei_after.tif"
+heavy_rain_path <- "data/processed/delft_heavy_rainfall.tif"
+dem_path <- "data/processed/delft_dem.tif"
+base_output <- "data/results/delft_green_metrics_base.gpkg"
+flood_output <- "data/results/delft_flood_metrics_base.csv"
+final_output <- "data/results/delft_grid_metrics.gpkg"
+flood_threshold <- 0.05
+
+get_green_value <- function(x) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ x <- x[x$class == 1, ]
+ if (nrow(x) == 0) return(NA_real_)
+ mean(x$value, na.rm = TRUE)
+}
+get_class_value <- function(x, class_value = 1) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ if ("class" %in% names(x)) {
+ x <- x[x$class == class_value, ]
+ if (nrow(x) == 0) return(NA_real_)
+ }
+ mean(x$value, na.rm = TRUE)
+}
+align_raster_to_template <- function(r, template, method = "bilinear") {
+ if (crs(r) != crs(template)) { r <- project(r, template, method = method) } else { r <- resample(r, template, method = method) }
+ return(r)
+}
+
+required_flood_columns <- c("id","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green")
+
+if (file.exists(base_output)) {
+ grid_metrics <- st_read(base_output, quiet = TRUE)
+} else {
+ green <- rast(green_path)
+ grid <- st_read(grid_path, quiet = TRUE)
+ fact <- max(1, round(5 / res(green)[1]))
+ green_5m <- aggregate(green, fact = fact, fun = "modal")
+ grid_v <- vect(grid)
+ results <- data.frame(id = grid$id, green_percent = NA_real_, area = NA_real_, gyrate = NA_real_, contig = NA_real_, enn = NA_real_)
+ for (i in seq_len(nrow(grid))) {
+ tryCatch({
+ cell <- grid_v[i, ]
+ green_cell <- crop(green_5m, cell)
+ green_cell <- mask(green_cell, cell)
+ vals <- na.omit(values(green_cell))
+ if (length(vals) == 0) next
+ results$green_percent[i] <- mean(vals == 1, na.rm = TRUE) * 100
+ if (!1 %in% vals) next
+ results$area[i] <- get_green_value(lsm_p_area(green_cell))
+ results$gyrate[i] <- get_green_value(lsm_p_gyrate(green_cell))
+ results$contig[i] <- get_green_value(lsm_p_contig(green_cell))
+ results$enn[i] <- get_green_value(lsm_p_enn(green_cell))
+ }, error = function(e) NULL)
+ }
+ grid_metrics <- merge(grid, results, by = "id")
+ st_write(grid_metrics, base_output, delete_dsn = TRUE)
+}
+grid <- st_read(grid_path, quiet = TRUE)
+grid_v <- vect(grid)
+green <- rast(green_path)
+fact <- max(1, round(5 / res(green)[1]))
+green_5m <- aggregate(green, fact = fact, fun = "modal")
+
+use_existing_flood_cache <- FALSE
+if (file.exists(flood_output)) {
+ flood_metrics_cached <- read.csv(flood_output)
+ if (all(required_flood_columns %in% names(flood_metrics_cached))) use_existing_flood_cache <- TRUE
+}
+if (use_existing_flood_cache) {
+ flood_metrics_all <- flood_metrics_cached
+} else {
+ fwei_before <- rast(fwei_before_path)
+ fwei_after <- rast(fwei_after_path)
+ fwei_change <- fwei_after - fwei_before
+ fwei_change <- align_raster_to_template(fwei_change, green_5m, method = "bilinear")
+ fwei_mean <- terra::extract(fwei_change, grid_v, fun = mean, na.rm = TRUE)
+ names(fwei_mean)[2] <- "fwei_change_mean"
+ flood_binary <- classify(fwei_change, rbind(c(-Inf, flood_threshold, 0), c(flood_threshold, Inf, 1)), others = NA)
+ flood_share <- terra::extract(flood_binary, grid_v, fun = mean, na.rm = TRUE)
+ names(flood_share)[2] <- "flood_share"
+ flood_pattern_metrics <- data.frame(id = grid$id, pland_flood = NA_real_, np_flood = NA_real_, flood_cohesion = NA_real_, flood_clumpy = NA_real_, flood_lpi = NA_real_)
+
+ for (i in seq_len(nrow(grid))) {
+ tryCatch({
+ cell <- grid_v[i, ]
+ flood_cell <- crop(flood_binary, cell)
+ flood_cell <- mask(flood_cell, cell)
+ vals <- na.omit(values(flood_cell))
+ if (length(vals) == 0) next
+ if (!1 %in% vals) {
+ flood_pattern_metrics$pland_flood[i] <- 0
+ flood_pattern_metrics$np_flood[i] <- 0
+ flood_pattern_metrics$flood_lpi[i] <- 0
+ next
+ }
+ flood_pattern_metrics$pland_flood[i] <- get_class_value(lsm_c_pland(flood_cell), 1)
+ flood_pattern_metrics$np_flood[i] <- get_class_value(lsm_c_np(flood_cell), 1)
+ flood_pattern_metrics$flood_cohesion[i] <- get_class_value(lsm_c_cohesion(flood_cell), 1)
+ flood_pattern_metrics$flood_clumpy[i] <- get_class_value(lsm_c_clumpy(flood_cell), 1)
+ flood_pattern_metrics$flood_lpi[i] <- get_class_value(lsm_c_lpi(flood_cell), 1)
+ }, error = function(e) NULL)
+ }
+ green_target <- green_5m
+ green_target[green_target != 1] <- NA
+ dist_to_green <- distance(green_target)
+ flood_dist <- mask(dist_to_green, flood_binary, maskvalues = c(0, NA))
+ dist_mean <- terra::extract(flood_dist, grid_v, fun = mean, na.rm = TRUE)
+ dist_min <- terra::extract(flood_dist, grid_v, fun = min, na.rm = TRUE)
+
+ names(dist_mean)[2] <- "mean_dist_green"
+ names(dist_min)[2] <- "min_dist_green"
+
+ flood_metrics_all <- data.frame(id = grid$id, fwei_change_mean = fwei_mean$fwei_change_mean, flood_share = flood_share$flood_share)
+ flood_metrics_all <- merge(flood_metrics_all, flood_pattern_metrics, by = "id", all.x = TRUE)
+ flood_metrics_all <- merge(flood_metrics_all, data.frame(id = grid$id, mean_dist_green = dist_mean$mean_dist_green, min_dist_green = dist_min$min_dist_green), by = "id", all.x = TRUE)
+ write.csv(flood_metrics_all, flood_output, row.names = FALSE)
+}
+grid_metrics <- merge(grid_metrics, flood_metrics_all, by = "id", all.x = TRUE)
+
+if (file.exists(heavy_rain_path)) {
+ heavy_rain <- rast(heavy_rain_path)
+ if (crs(heavy_rain) != crs(grid_v)) heavy_rain <- project(heavy_rain, crs(grid_v), method = "bilinear")
+ heavy_rain <- crop(heavy_rain, grid_v)
+ heavy_rain <- mask(heavy_rain, grid_v)
+ rain_mean <- terra::extract(heavy_rain, grid_v, fun = mean, na.rm = TRUE)
+ rain_max <- terra::extract(heavy_rain, grid_v, fun = max, na.rm = TRUE)
+
+ names(rain_mean)[2] <- "heavy_rain_mean"
+ names(rain_max)[2] <- "heavy_rain_max"
+
+ grid_metrics$heavy_rain_mean <- rain_mean$heavy_rain_mean
+ grid_metrics$heavy_rain_max <- rain_max$heavy_rain_max
+}
+if (file.exists(dem_path)) {
+ dem <- rast(dem_path)
+ if (crs(dem) != crs(grid_v)) dem <- project(dem, crs(grid_v), method = "bilinear")
+ dem <- crop(dem, grid_v)
+ dem <- mask(dem, grid_v)
+ slope <- terrain(dem, v = "slope", unit = "degrees")
+ dem_mean <- terra::extract(dem, grid_v, fun = mean, na.rm = TRUE)
+ dem_min <- terra::extract(dem, grid_v, fun = min, na.rm = TRUE)
+ slope_mean <- terra::extract(slope, grid_v, fun = mean, na.rm = TRUE)
+ names(dem_mean)[2] <- "elevation_mean"
+ names(dem_min)[2] <- "elevation_min"
+ names(slope_mean)[2] <- "slope_mean"
+ grid_metrics$elevation_mean <- dem_mean$elevation_mean
+ grid_metrics$elevation_min <- dem_min$elevation_min
+ grid_metrics$slope_mean <- slope_mean$slope_mean
+}
+st_write(grid_metrics, final_output, delete_dsn = TRUE)
+write.csv(st_drop_geometry(grid_metrics), "data/results/delft_grid_metrics.csv", row.names = FALSE)
diff --git a/src/metriccalc_xXscripts.R b/src/metriccalc_xXscripts.R
new file mode 100644
index 00000000..20492152
--- /dev/null
+++ b/src/metriccalc_xXscripts.R
@@ -0,0 +1,149 @@
+library(terra)
+library(sf)
+library(landscapemetrics)
+
+dir.create("data/results", recursive = TRUE, showWarnings = FALSE)
+
+green_path <- "data/processed/xian_green_binary.tif"
+grid_path <- "data/processed/xian_grid.gpkg"
+fwei_before_path <- "data/processed/xian_fwei_before.tif"
+fwei_after_path <- "data/processed/xian_fwei_after.tif"
+dem_path <- "data/processed/xian_dem.tif"
+base_output <- "data/results/xian_green_metrics_base.gpkg"
+flood_output <- "data/results/xian_flood_metrics_base.csv"
+final_output <- "data/results/xian_grid_metrics.gpkg"
+flood_threshold <- 0.05
+
+get_green_value <- function(x) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ x <- x[x$class == 1, ]
+ if (nrow(x) == 0) return(NA_real_)
+ mean(x$value, na.rm = TRUE)
+}
+
+get_class_value <- function(x, class_value = 1) {
+ if (is.null(x) || nrow(x) == 0) return(NA_real_)
+ if ("class" %in% names(x)) {
+ x <- x[x$class == class_value, ]
+ if (nrow(x) == 0) return(NA_real_)
+ }
+ mean(x$value, na.rm = TRUE)
+}
+
+align_raster_to_template <- function(r, template, method = "bilinear") {
+ if (crs(r) != crs(template)) { r <- project(r, template, method = method) } else { r <- resample(r, template, method = method) }
+ return(r)
+}
+
+required_flood_columns <- c("id","fwei_change_mean","flood_share","pland_flood","np_flood","flood_cohesion","flood_clumpy","flood_lpi","mean_dist_green","min_dist_green")
+if (file.exists(base_output)) {
+ grid_metrics <- st_read(base_output, quiet = TRUE)
+} else {
+ green <- rast(green_path)
+ grid <- st_read(grid_path, quiet = TRUE)
+ fact <- max(1, round(5 / res(green)[1]))
+ green_5m <- aggregate(green, fact = fact, fun = "modal")
+ grid_v <- vect(grid)
+
+ results <- data.frame(id = grid$id, green_percent = NA_real_, area = NA_real_, gyrate = NA_real_, contig = NA_real_, enn = NA_real_)
+
+ for (i in seq_len(nrow(grid))) {
+ tryCatch({
+ cell <- grid_v[i, ]
+ green_cell <- crop(green_5m, cell)
+ green_cell <- mask(green_cell, cell)
+ vals <- na.omit(values(green_cell))
+ if (length(vals) == 0) next
+ results$green_percent[i] <- mean(vals == 1, na.rm = TRUE) * 100
+ if (!1 %in% vals) next
+ results$area[i] <- get_green_value(lsm_p_area(green_cell))
+ results$gyrate[i] <- get_green_value(lsm_p_gyrate(green_cell))
+ results$contig[i] <- get_green_value(lsm_p_contig(green_cell))
+ results$enn[i] <- get_green_value(lsm_p_enn(green_cell))
+ }, error = function(e) NULL)
+ }
+ grid_metrics <- merge(grid, results, by = "id")
+ st_write(grid_metrics, base_output, delete_dsn = TRUE)
+}
+
+grid <- st_read(grid_path, quiet = TRUE)
+grid_v <- vect(grid)
+green <- rast(green_path)
+fact <- max(1, round(5 / res(green)[1]))
+green_5m <- aggregate(green, fact = fact, fun = "modal")
+use_existing_flood_cache <- FALSE
+if (file.exists(flood_output)) {
+ flood_metrics_cached <- read.csv(flood_output)
+ if (all(required_flood_columns %in% names(flood_metrics_cached))) use_existing_flood_cache <- TRUE
+}
+
+if (use_existing_flood_cache) {
+ flood_metrics_all <- flood_metrics_cached
+} else {
+ fwei_before <- rast(fwei_before_path)
+ fwei_after <- rast(fwei_after_path)
+ fwei_change <- fwei_after - fwei_before
+ fwei_change <- crop(fwei_change, ext(grid_v))
+ fwei_change <- align_raster_to_template(fwei_change, green_5m, method = "bilinear")
+ fwei_mean <- terra::extract(fwei_change, grid_v, fun = mean, na.rm = TRUE)
+ names(fwei_mean)[2] <- "fwei_change_mean"
+ flood_binary <- classify(fwei_change, rbind(c(-Inf, flood_threshold, 0), c(flood_threshold, Inf, 1)), others = NA)
+ flood_share <- terra::extract(flood_binary, grid_v, fun = mean, na.rm = TRUE)
+ names(flood_share)[2] <- "flood_share"
+ flood_pattern_metrics <- data.frame(id = grid$id, pland_flood = NA_real_, np_flood = NA_real_, flood_cohesion = NA_real_, flood_clumpy = NA_real_, flood_lpi = NA_real_)
+
+ for (i in seq_len(nrow(grid))) {
+ tryCatch({
+ cell <- grid_v[i, ]
+ flood_cell <- crop(flood_binary, cell)
+ flood_cell <- mask(flood_cell, cell)
+ vals <- na.omit(values(flood_cell))
+ if (length(vals) == 0) next
+ if (!1 %in% vals) {
+ flood_pattern_metrics$pland_flood[i] <- 0
+ flood_pattern_metrics$np_flood[i] <- 0
+ flood_pattern_metrics$flood_lpi[i] <- 0
+ next
+ }
+ flood_pattern_metrics$pland_flood[i] <- get_class_value(lsm_c_pland(flood_cell), 1)
+ flood_pattern_metrics$np_flood[i] <- get_class_value(lsm_c_np(flood_cell), 1)
+ flood_pattern_metrics$flood_cohesion[i] <- get_class_value(lsm_c_cohesion(flood_cell), 1)
+ flood_pattern_metrics$flood_clumpy[i] <- get_class_value(lsm_c_clumpy(flood_cell), 1)
+ flood_pattern_metrics$flood_lpi[i] <- get_class_value(lsm_c_lpi(flood_cell), 1)
+ }, error = function(e) NULL)
+ }
+
+ green_target <- green_5m
+ green_target[green_target != 1] <- NA
+ dist_to_green <- distance(green_target)
+ flood_dist <- mask(dist_to_green, flood_binary, maskvalues = c(0, NA))
+ dist_mean <- terra::extract(flood_dist, grid_v, fun = mean, na.rm = TRUE)
+ dist_min <- terra::extract(flood_dist, grid_v, fun = min, na.rm = TRUE)
+ names(dist_mean)[2] <- "mean_dist_green"
+ names(dist_min)[2] <- "min_dist_green"
+ flood_metrics_all <- data.frame(id = grid$id, fwei_change_mean = fwei_mean$fwei_change_mean, flood_share = flood_share$flood_share)
+ flood_metrics_all <- merge(flood_metrics_all, flood_pattern_metrics, by = "id", all.x = TRUE)
+ flood_metrics_all <- merge(flood_metrics_all, data.frame(id = grid$id, mean_dist_green = dist_mean$mean_dist_green, min_dist_green = dist_min$min_dist_green), by = "id", all.x = TRUE)
+
+ write.csv(flood_metrics_all, flood_output, row.names = FALSE)
+}
+grid_metrics <- merge(grid_metrics, flood_metrics_all, by = "id", all.x = TRUE)
+
+if (file.exists(dem_path)) {
+ dem <- rast(dem_path)
+ if (crs(dem) != crs(grid_v)) dem <- project(dem, crs(grid_v), method = "bilinear")
+ dem <- crop(dem, grid_v)
+ dem <- mask(dem, grid_v)
+ slope <- terrain(dem, v = "slope", unit = "degrees")
+ dem_mean <- terra::extract(dem, grid_v, fun = mean, na.rm = TRUE)
+ dem_min <- terra::extract(dem, grid_v, fun = min, na.rm = TRUE)
+ slope_mean <- terra::extract(slope, grid_v, fun = mean, na.rm = TRUE)
+ names(dem_mean)[2] <- "elevation_mean"
+ names(dem_min)[2] <- "elevation_min"
+ names(slope_mean)[2] <- "slope_mean"
+ grid_metrics$elevation_mean <- dem_mean$elevation_mean
+ grid_metrics$elevation_min <- dem_min$elevation_min
+ grid_metrics$slope_mean <- slope_mean$slope_mean
+}
+st_write(grid_metrics, final_output, delete_dsn = TRUE)
+write.csv(st_drop_geometry(grid_metrics), "data/results/xian_grid_metrics.csv", row.names = FALSE)